The NetBSD Project

CVS log for pkgsrc/databases/ruby-sqlite3/Makefile

[BACK] Up to [cvs.NetBSD.org] / pkgsrc / databases / ruby-sqlite3

Request diff between arbitrary revisions


Keyword substitution: kv
Default branch: MAIN


Revision 1.84: download - view: text, markup, annotated - select for diffs
Thu Nov 14 22:19:13 2024 UTC (11 hours, 47 minutes ago) by wiz
Branches: MAIN
CVS tags: HEAD
Diff to: previous 1.83: preferred, colored
Changes since revision 1.83: +2 -1 lines
*: recursive bump for icu 76 shlib major version bump

Revision 1.83: download - view: text, markup, annotated - select for diffs
Wed Nov 6 13:49:42 2024 UTC (8 days, 20 hours ago) by taca
Branches: MAIN
Diff to: previous 1.82: preferred, colored
Changes since revision 1.82: +2 -3 lines
databases/ruby-sqlite3: update to 2.2.0

2.2.0 (2024-10-30)

Added

* URI filenames are now allowed.  This allows the injection of some behavior
  via recognized query parameters.  See https://www.sqlite.org/uri.html for
  more information.  [#571] @flavorjones

Improved

* SQL Syntax errors during Database#prepare will raise a verbose exception
  with a multiline message indicating with a "^" exactly where in the
  statement the error occurred.  [#554] @fractaledmind @flavorjones

Revision 1.82: download - view: text, markup, annotated - select for diffs
Fri Nov 1 12:51:57 2024 UTC (13 days, 21 hours ago) by wiz
Branches: MAIN
Diff to: previous 1.81: preferred, colored
Changes since revision 1.81: +2 -2 lines
*: revbump for icu downgrade

Revision 1.81: download - view: text, markup, annotated - select for diffs
Fri Nov 1 00:51:11 2024 UTC (2 weeks ago) by wiz
Branches: MAIN
Diff to: previous 1.80: preferred, colored
Changes since revision 1.80: +2 -1 lines
*: recursive bump for icu 76.1 shlib bump

Revision 1.80: download - view: text, markup, annotated - select for diffs
Sun Oct 27 13:31:47 2024 UTC (2 weeks, 4 days ago) by taca
Branches: MAIN
Diff to: previous 1.79: preferred, colored
Changes since revision 1.79: +3 -3 lines
databases/ruby-sqlite3: update to 2.1.1

2.1.1 (2024-10-22)

Dependencies

* Vendored sqlite is updated to v3.47.0 [#570] @flavorjones

Revision 1.79: download - view: text, markup, annotated - select for diffs
Sun Oct 13 16:22:23 2024 UTC (4 weeks, 4 days ago) by taca
Branches: MAIN
Diff to: previous 1.78: preferred, colored
Changes since revision 1.78: +2 -2 lines
databases/ruby-sqlite3: update to 2.1.0

2.1.0 (2024-09-24)

Ruby

* This release drops support for Ruby 3.0. [#563] @flavorjones

Fork safety improvements

Sqlite itself is not fork-safe.  Specifically, writing in a child process to
a database connection that was created in the parent process may corrupt the
database file.  To mitigate this risk, sqlite3-ruby has implemented the
following changes:

* All open writable database connections carried across a fork() will
  immediately be closed in the child process to mitigate the risk of
  corrupting the database file.

* These connections will be incompletely closed ("discarded") which will
  result in a one-time memory leak in the child process.

If it's at all possible, we strongly recommend that you close writable
database connections in the parent before forking.  If absolutely necessary
(and you know what you're doing), you may suppress the fork safety warnings
by calling SQLite3::ForkSafety.suppress_warnings!.

See the README's "Fork Safety" section and adr/2024-09-fork-safety.md for
more information. [#558, #565, #566] @flavorjones

Improved

* Use sqlite3_close_v2 to close databases in a deferred manner if there are
  unclosed prepared statements.  Previously closing a database while
  statements were open resulted in a BusyException.  See
  https://www.sqlite.org/c3ref/close.html for more context.  [#557]
  @flavorjones

* When setting a Database busy_handler, fire the write barrier to prevent
  potential crashes during the GC mark phase.  [#556] @jhawthorn

Documentation

* The FAQ.md has been updated to fix some inaccuracies.  [#562] @rickhull

Revision 1.78: download - view: text, markup, annotated - select for diffs
Wed Sep 18 14:49:40 2024 UTC (8 weeks, 1 day ago) by taca
Branches: MAIN
CVS tags: pkgsrc-2024Q3-base, pkgsrc-2024Q3
Diff to: previous 1.77: preferred, colored
Changes since revision 1.77: +3 -4 lines
databases/ruby-sqlite3: update to 2.0.4

2.0.3 (2024-07-29)

Improved

* Database#quote avoids allocating strings where reusing frozen strings is
  preferable.  #548 @casperisfine

2.0.4 (2024-08-13)

Dependencies

* Vendored sqlite is updated to v3.46.1 @flavorjones

Revision 1.77: download - view: text, markup, annotated - select for diffs
Wed May 29 16:31:54 2024 UTC (5 months, 2 weeks ago) by adam
Branches: MAIN
CVS tags: pkgsrc-2024Q2-base, pkgsrc-2024Q2
Diff to: previous 1.76: preferred, colored
Changes since revision 1.76: +2 -1 lines
revbump after icu and protobuf updates

Revision 1.76: download - view: text, markup, annotated - select for diffs
Sun May 26 14:35:16 2024 UTC (5 months, 2 weeks ago) by taca
Branches: MAIN
Diff to: previous 1.75: preferred, colored
Changes since revision 1.75: +3 -3 lines
databases/ruby-sqlite3: update to 2.0.2

2.0.2 (2024-05-23)

Dependencies

* Vendored sqlite is updated to v3.46.0 @flavorjones

Revision 1.75: download - view: text, markup, annotated - select for diffs
Sun Mar 24 13:39:32 2024 UTC (7 months, 3 weeks ago) by taca
Branches: MAIN
CVS tags: pkgsrc-2024Q1-base, pkgsrc-2024Q1
Diff to: previous 1.74: preferred, colored
Changes since revision 1.74: +3 -3 lines
databases/ruby-sqlite3: update to 1.7.3

1.7.3 (2024-03-15)

Dependencies

* Vendored sqlite is updated to v3.45.2. @flavorjones

Revision 1.74: download - view: text, markup, annotated - select for diffs
Sat Feb 3 15:02:14 2024 UTC (9 months, 1 week ago) by taca
Branches: MAIN
Diff to: previous 1.73: preferred, colored
Changes since revision 1.73: +3 -3 lines
databases/ruby-sqlite3: update to 1.7.2

1.7.1 (2024-01-24)

Dependencies

* Vendored sqlite is update to v3.45.0. @flavorjones


1.7.2 (2024-01-30)

Dependencies

    Vendored sqlite is updated to v3.45.1. @flavorjones

Revision 1.73: download - view: text, markup, annotated - select for diffs
Sun Jan 7 15:24:11 2024 UTC (10 months, 1 week ago) by taca
Branches: MAIN
Diff to: previous 1.72: preferred, colored
Changes since revision 1.72: +2 -2 lines
databases/ruby-sqlite3: update to 1.7.0

1.7.0 (2023-12-27)

Ruby

This release introduces native gem support for Ruby 3.3.

This release ends native gem support for Ruby 2.7, for which upstream
support ended 2023-03-31.  Ruby 2.7 is still generally supported, but will
not be shipped in the native gems.

This release ends support for Ruby 1.9.3, 2.0, 2.1, 2.2, 2.3, 2.4, 2.5, and
2.6.

Improved

* SQLite3::Statement, Database, and Backup objects have been converted to
  use the TypedData API.  See https://bugs.ruby-lang.org/issues/19998 for
  more context.  [#432] @casperisfine

Revision 1.72: download - view: text, markup, annotated - select for diffs
Sun Dec 17 14:08:13 2023 UTC (10 months, 4 weeks ago) by taca
Branches: MAIN
CVS tags: pkgsrc-2023Q4-base, pkgsrc-2023Q4
Diff to: previous 1.71: preferred, colored
Changes since revision 1.71: +3 -3 lines
databases/ruby-sqlite3: update to 1.6.9

1.6.9 (2023-11-26)

Dependencies

* Vendored sqlite is update to v3.44.2. @flavorjones

Added

* Database.new now accepts a :default_transaction_mode option (defaulting to
  :deferred), and Database#transaction no longer requires a transaction mode
  to be specified.  This should allow higher-level adapters to more easily
  choose a transaction mode for a database connection.  [#426]
  @masamitsu-murase

Revision 1.71: download - view: text, markup, annotated - select for diffs
Sat Nov 11 09:53:33 2023 UTC (12 months ago) by taca
Branches: MAIN
Diff to: previous 1.70: preferred, colored
Changes since revision 1.70: +3 -4 lines
databases/ruby-sqlite3: update to 1.6.8

1.6.8 (2023-11-01)

Dependencies

* Vendored sqlite is updated to v3.44.0. @flavorjones
* rake-compiler-dock updated to v1.3.1 for precompiled native
  gems. @flavorjones

Added

* SQLite3::Database.open now returns the block result. Previously this
  returned the Database object. [#415] @toy
* Documentation improvement in lib/sqlite3/database.rb. [#421] @szTheory

Revision 1.70: download - view: text, markup, annotated - select for diffs
Wed Nov 8 13:18:37 2023 UTC (12 months, 1 week ago) by wiz
Branches: MAIN
Diff to: previous 1.69: preferred, colored
Changes since revision 1.69: +2 -1 lines
*: recursive bump for icu 74.1

Revision 1.69: download - view: text, markup, annotated - select for diffs
Tue Oct 24 14:35:08 2023 UTC (12 months, 3 weeks ago) by taca
Branches: MAIN
Diff to: previous 1.68: preferred, colored
Changes since revision 1.68: +3 -3 lines
databases/ruby-sqlite3: update to 1.6.7

1.6.7 / 2023-10-10

Dependencies

Vendored sqlite is updated to v3.43.2.

Upstream release notes:

* Fix a couple of obscure UAF errors and an obscure memory leak.

* Omit the use of the sprintf() function from the standard library in the
  CLI, as this now generates warnings on some platforms.

* Avoid conversion of a double into unsigned long long integer, as some
  platforms do not do such conversions correctly.

Added

* Compile packaged sqlite3 with additional flags to explicitly enable
  FTS5, and set synchronous mode to normal when in WAL mode. [#408]
  (@flavorjones)

Revision 1.68: download - view: text, markup, annotated - select for diffs
Mon Sep 18 17:23:17 2023 UTC (13 months, 4 weeks ago) by taca
Branches: MAIN
CVS tags: pkgsrc-2023Q3-base, pkgsrc-2023Q3
Diff to: previous 1.67: preferred, colored
Changes since revision 1.67: +3 -3 lines
databases/ruby-sqlite3: update to 1.6.6

1.6.6 (2023-09-12)

Dependencies

Vendored sqlite is updated to v3.43.1.

Upstream release notes:

* Fix a regression in the way that the sum(), avg(), and total() aggregate
  functions handle infinities.
* Fix a bug in the json_array_length() function that occurs when the
  argument comes directly from json_remove().
* Fix the omit-unused-subquery-columns optimization (introduced in in
  version 3.42.0) so that it works correctly if the subquery is a compound
  where one arm is DISTINCT and the other is not.
* Other minor fixes.

Revision 1.67: download - view: text, markup, annotated - select for diffs
Sun Sep 10 13:08:03 2023 UTC (14 months ago) by taca
Branches: MAIN
Diff to: previous 1.66: preferred, colored
Changes since revision 1.66: +6 -4 lines
databases/ruby-sqlite3: update to 1.6.5

pkgsrc change: surely remove sqlite3 archive file.

1.6.5 (2023-09-08)

Packaging

* Allow setting compiler flags for the sqlite library via a
  --with-sqlite-cflags argument to extconf.rb.  See INSTALLATION.md for more
  information.  [#401, #402] (@flavorjones)

Revision 1.66: download - view: text, markup, annotated - select for diffs
Sun Aug 27 15:08:17 2023 UTC (14 months, 2 weeks ago) by taca
Branches: MAIN
Diff to: previous 1.65: preferred, colored
Changes since revision 1.65: +2 -2 lines
databases/ruby-sqlite3: update to 1.6.4

1.6.4 (2023-08-26)

Dependencies

* Vendored sqlite is updated to v3.43.0.

Revision 1.65: download - view: text, markup, annotated - select for diffs
Thu May 18 14:03:40 2023 UTC (17 months, 4 weeks ago) by taca
Branches: MAIN
CVS tags: pkgsrc-2023Q2-base, pkgsrc-2023Q2
Diff to: previous 1.64: preferred, colored
Changes since revision 1.64: +2 -3 lines
databases/ruby-sqlite3: update to 1.6.3

1.6.3 (2023-05-16)

Dependencies

* Vendored sqlite is updated to
  [v3.42.0](https://sqlite.org/releaselog/3_42_0.html).

  From the release announcement:

  > This is a regular enhancement release.  The main new features are:
  > * SQLite will now parse and understand JSON5, though it is careful to
  >   generate only pure, canonical JSON.
  > * The secure-delete option has been added to the FTS5 extension.

Revision 1.64: download - view: text, markup, annotated - select for diffs
Wed Apr 19 08:09:34 2023 UTC (18 months, 4 weeks ago) by adam
Branches: MAIN
Diff to: previous 1.63: preferred, colored
Changes since revision 1.63: +2 -1 lines
revbump after textproc/icu update

Revision 1.63: download - view: text, markup, annotated - select for diffs
Sat Apr 8 13:22:51 2023 UTC (19 months, 1 week ago) by taca
Branches: MAIN
Diff to: previous 1.62: preferred, colored
Changes since revision 1.62: +2 -2 lines
databases/ruby-sqlite3: update to 1.6.2

1.6.2 (2023-03-27)

Dependencies

* Vendored sqlite is updated from v3.41.0 to v3.41.2.

Packaging

* Allow compilation against system libraries without the presence of
  mini_portile2, primarily for the convenience of linux distro repackagers.
  [#381] (Thank you, @voxik!)

Revision 1.62: download - view: text, markup, annotated - select for diffs
Thu Feb 23 13:58:57 2023 UTC (20 months, 3 weeks ago) by taca
Branches: MAIN
CVS tags: pkgsrc-2023Q1-base, pkgsrc-2023Q1
Diff to: previous 1.61: preferred, colored
Changes since revision 1.61: +2 -2 lines
databases/ruby-sqlite3: update to 1.6.1

1.6.1 (2023-02-22)

Dependencies

* Vendored sqlite is updated to v3.41.0.

Revision 1.61: download - view: text, markup, annotated - select for diffs
Sat Jan 14 13:33:26 2023 UTC (22 months ago) by taca
Branches: MAIN
Diff to: previous 1.60: preferred, colored
Changes since revision 1.60: +2 -3 lines
databases/ruby-sqlite3: update to 1.6.0

1.6.0 (2023-01-13)

Ruby

This release introduces native gem support for Ruby 3.2.

This release ends native gem support for Ruby 2.6, for which upstream
support ended 2022-04-12.

Dependencies

* Vendored sqlite3 is updated to v3.40.1.

Revision 1.60: download - view: text, markup, annotated - select for diffs
Wed Nov 23 16:19:44 2022 UTC (23 months, 3 weeks ago) by adam
Branches: MAIN
CVS tags: pkgsrc-2022Q4-base, pkgsrc-2022Q4
Diff to: previous 1.59: preferred, colored
Changes since revision 1.59: +2 -1 lines
massive revision bump after textproc/icu update

Revision 1.59: download - view: text, markup, annotated - select for diffs
Sun Nov 20 12:11:12 2022 UTC (23 months, 3 weeks ago) by taca
Branches: MAIN
Diff to: previous 1.58: preferred, colored
Changes since revision 1.58: +2 -2 lines
databases/ruby-sqlite3: update to 1.5.4

1.5.4 (2022-11-18)

Dependencies

* Vendored sqlite is updated to v3.40.0.

Revision 1.58: download - view: text, markup, annotated - select for diffs
Fri Nov 11 13:15:39 2022 UTC (2 years ago) by taca
Branches: MAIN
Diff to: previous 1.57: preferred, colored
Changes since revision 1.57: +2 -2 lines
databases/ruby-sqlite3: update to 1.5.3

1.5.3 (2022-10-11)

Fixed

* Fixed installation of the "ruby" platform gem when building from source on
  Fedora.  In v1.5.0..v1.5.2, installation failed on some systems due to the
  behavior of Fedora's pkg-config implementation.  [#355]

Revision 1.57: download - view: text, markup, annotated - select for diffs
Thu Oct 6 14:19:01 2022 UTC (2 years, 1 month ago) by taca
Branches: MAIN
Diff to: previous 1.56: preferred, colored
Changes since revision 1.56: +2 -3 lines
databases/ruby-sqlite3: update to 1.5.2

1.5.2 (2022-10-01)

Packaging

This version correctly vendors the tarball for sqlite v3.39.4 in the vanilla
"ruby" platform gem package, so that users will not require network access
at installation.

v1.5.0 and v1.5.1 mistakenly packaged the tarball for sqlite v3.38.5 in the
vanilla "ruby" platform gem, resulting in downloading the intended tarball
over the network at installation time (or, if the network was not available,
failure to install).  Note that the precompiled native gems were not
affected by this issue. [#352]

1.5.1 (2022-09-29)

Dependencies

* Vendored sqlite is updated to v3.39.4.

Security

The vendored version of sqlite, v3.39.4, should be considered to be a
security release.  From the release notes:

	 Version 3.39.4 is a minimal patch against the prior release that
	 addresses issues found since the prior release.  In particular, a
	 potential vulnerability in the FTS3 extension has been fixed, so
	 this should be considered a security update.

	 In order to exploit the vulnerability, an attacker must have full
	 SQL access and must be able to construct a corrupt database with
	 over 2GB of FTS3 content.  The problem arises from a 32-bit signed
	 integer overflow.

For more information please see GHSA-mgvv-5mxp-xq67.

Revision 1.56: download - view: text, markup, annotated - select for diffs
Sun Sep 11 16:05:14 2022 UTC (2 years, 2 months ago) by taca
Branches: MAIN
CVS tags: pkgsrc-2022Q3-base, pkgsrc-2022Q3
Diff to: previous 1.55: preferred, colored
Changes since revision 1.55: +2 -1 lines
databases/ruby-sqlite3: really bump PKGREVISION

Revision 1.55: download - view: text, markup, annotated - select for diffs
Sun Sep 11 16:04:27 2022 UTC (2 years, 2 months ago) by taca
Branches: MAIN
Diff to: previous 1.54: preferred, colored
Changes since revision 1.54: +3 -1 lines
databases/ruby-sqlite3: add dependency

Add dependency to misc/ruby-mini_portile2.

Bump PKGREVISION.

Revision 1.54: download - view: text, markup, annotated - select for diffs
Fri Sep 9 13:17:47 2022 UTC (2 years, 2 months ago) by taca
Branches: MAIN
Diff to: previous 1.53: preferred, colored
Changes since revision 1.53: +7 -2 lines
databases/ruby-sqlite3: update to 1.5.0

Here is quote from release note.

1.5.0 (2022-09-08)

Added

* SQLite3::SQLITE_LOADED_VERSION contains the version string of the sqlite3
  library that is dynamically loaded (compare to SQLite3::SQLITE_VERSION
  which is the version at compile-time).

Fixed

* SQLite3::Database#load_extensions now raises a TypeError unless a String
  is passed as the file path.  Previously it was possible to pass a
  non-string and cause a segfault.  [#339]

Revision 1.53: download - view: text, markup, annotated - select for diffs
Thu Aug 11 04:16:28 2022 UTC (2 years, 3 months ago) by taca
Branches: MAIN
Diff to: previous 1.52: preferred, colored
Changes since revision 1.52: +2 -3 lines
databases/ruby-sqlite3: update to 1.4.4

1.4.4 (2022-06-14)

Fixes

* Compilation no longer fails against SQLite3 versions < 3.29.0. This issue
  was introduced in v1.4.3. [#324] (Thank you, @r6e!)

1.4.3 (2022-05-25)

Enhancements

* Disable non-standard support for double-quoted string literals via the
  :strict option. [#317] (Thank you, @casperisfine!)

* Column type names are now explicitly downcased on platforms where they may
  have been in shoutcaps. [#315] (Thank you, @petergoldstein!)

* Support File or Pathname arguments to Database.new. [#283] (Thank you,
  @yb66!)

* Support building on MSVC. [#285] (Thank you, @jmarrec!)

Revision 1.52: download - view: text, markup, annotated - select for diffs
Mon Apr 18 19:10:45 2022 UTC (2 years, 6 months ago) by adam
Branches: MAIN
CVS tags: pkgsrc-2022Q2-base, pkgsrc-2022Q2
Diff to: previous 1.51: preferred, colored
Changes since revision 1.51: +2 -2 lines
revbump for textproc/icu update

Revision 1.51: download - view: text, markup, annotated - select for diffs
Wed Dec 8 16:03:50 2021 UTC (2 years, 11 months ago) by adam
Branches: MAIN
CVS tags: pkgsrc-2022Q1-base, pkgsrc-2022Q1, pkgsrc-2021Q4-base, pkgsrc-2021Q4
Diff to: previous 1.50: preferred, colored
Changes since revision 1.50: +2 -2 lines
revbump for icu and libffi

Revision 1.50: download - view: text, markup, annotated - select for diffs
Wed Apr 21 11:41:20 2021 UTC (3 years, 6 months ago) by adam
Branches: MAIN
CVS tags: pkgsrc-2021Q3-base, pkgsrc-2021Q3, pkgsrc-2021Q2-base, pkgsrc-2021Q2
Diff to: previous 1.49: preferred, colored
Changes since revision 1.49: +2 -2 lines
revbump for textproc/icu

Revision 1.49: download - view: text, markup, annotated - select for diffs
Thu Nov 5 09:07:49 2020 UTC (4 years ago) by ryoon
Branches: MAIN
CVS tags: pkgsrc-2021Q1-base, pkgsrc-2021Q1, pkgsrc-2020Q4-base, pkgsrc-2020Q4
Diff to: previous 1.48: preferred, colored
Changes since revision 1.48: +2 -2 lines
*: Recursive revbump from textproc/icu-68.1

Revision 1.48: download - view: text, markup, annotated - select for diffs
Tue Jun 2 08:23:32 2020 UTC (4 years, 5 months ago) by adam
Branches: MAIN
CVS tags: pkgsrc-2020Q3-base, pkgsrc-2020Q3, pkgsrc-2020Q2-base, pkgsrc-2020Q2
Diff to: previous 1.47: preferred, colored
Changes since revision 1.47: +2 -2 lines
Revbump for icu

Revision 1.47: download - view: text, markup, annotated - select for diffs
Sun Apr 12 08:28:27 2020 UTC (4 years, 7 months ago) by adam
Branches: MAIN
Diff to: previous 1.46: preferred, colored
Changes since revision 1.46: +2 -1 lines
Recursive revision bump after textproc/icu update

Revision 1.46: download - view: text, markup, annotated - select for diffs
Thu Jan 16 15:20:19 2020 UTC (4 years, 10 months ago) by taca
Branches: MAIN
CVS tags: pkgsrc-2020Q1-base, pkgsrc-2020Q1
Diff to: previous 1.45: preferred, colored
Changes since revision 1.45: +2 -2 lines
databases/ruby-sqlite3: update to 1.4.2

Update ruby-sqlite3 to 1.4.2.

=== 1.4.2

* Travis: Drop unused setting "sudo: false"
* The taint mechanism will be deprecated in Ruby 2.7
* Fix Ruby 2.7 rb_check_safe_obj warnings
* Update travis config

Revision 1.45: download - view: text, markup, annotated - select for diffs
Mon May 6 05:16:04 2019 UTC (5 years, 6 months ago) by taca
Branches: MAIN
CVS tags: pkgsrc-2019Q4-base, pkgsrc-2019Q4, pkgsrc-2019Q3-base, pkgsrc-2019Q3, pkgsrc-2019Q2-base, pkgsrc-2019Q2
Diff to: previous 1.44: preferred, colored
Changes since revision 1.44: +2 -3 lines
databases/ruby-sqlite3: update to 1.4.1

Changes from commit log:

* Don't mandate dl functions for the extention build.

Revision 1.44: download - view: text, markup, annotated - select for diffs
Wed Apr 3 00:32:32 2019 UTC (5 years, 7 months ago) by ryoon
Branches: MAIN
Diff to: previous 1.43: preferred, colored
Changes since revision 1.43: +2 -1 lines
Recursive revbump from textproc/icu

Revision 1.43: download - view: text, markup, annotated - select for diffs
Mon Feb 25 14:16:04 2019 UTC (5 years, 8 months ago) by taca
Branches: MAIN
CVS tags: pkgsrc-2019Q1-base, pkgsrc-2019Q1
Diff to: previous 1.42: preferred, colored
Changes since revision 1.42: +2 -3 lines
databases/ruby-sqlite3: update to 1.4.0

=== 1.4.0

* Enhancements
  * Better aggregator support

* Bugfixes
  * Various

Revision 1.42: download - view: text, markup, annotated - select for diffs
Sun Dec 9 18:52:21 2018 UTC (5 years, 11 months ago) by adam
Branches: MAIN
CVS tags: pkgsrc-2018Q4-base, pkgsrc-2018Q4
Diff to: previous 1.41: preferred, colored
Changes since revision 1.41: +2 -2 lines
revbump after updating textproc/icu

Revision 1.41: download - view: text, markup, annotated - select for diffs
Fri Jul 20 03:34:06 2018 UTC (6 years, 3 months ago) by ryoon
Branches: MAIN
CVS tags: pkgsrc-2018Q3-base, pkgsrc-2018Q3
Diff to: previous 1.40: preferred, colored
Changes since revision 1.40: +2 -2 lines
Recursive revbump from textproc/icu-62.1

Revision 1.40: download - view: text, markup, annotated - select for diffs
Sat Apr 14 07:34:14 2018 UTC (6 years, 7 months ago) by adam
Branches: MAIN
CVS tags: pkgsrc-2018Q2-base, pkgsrc-2018Q2
Diff to: previous 1.39: preferred, colored
Changes since revision 1.39: +2 -2 lines
revbump after icu update

Revision 1.39: download - view: text, markup, annotated - select for diffs
Thu Nov 30 16:45:18 2017 UTC (6 years, 11 months ago) by adam
Branches: MAIN
CVS tags: pkgsrc-2018Q1-base, pkgsrc-2018Q1, pkgsrc-2017Q4-base, pkgsrc-2017Q4
Diff to: previous 1.38: preferred, colored
Changes since revision 1.38: +2 -2 lines
Revbump after textproc/icu update

Revision 1.38: download - view: text, markup, annotated - select for diffs
Mon Sep 18 09:53:14 2017 UTC (7 years, 1 month ago) by maya
Branches: MAIN
CVS tags: pkgsrc-2017Q3-base, pkgsrc-2017Q3
Diff to: previous 1.37: preferred, colored
Changes since revision 1.37: +2 -2 lines
revbump for requiring ICU 59.x

Revision 1.37: download - view: text, markup, annotated - select for diffs
Sat Apr 22 21:03:28 2017 UTC (7 years, 6 months ago) by adam
Branches: MAIN
CVS tags: pkgsrc-2017Q2-base, pkgsrc-2017Q2
Diff to: previous 1.36: preferred, colored
Changes since revision 1.36: +2 -1 lines
Revbump after icu update

Revision 1.36: download - view: text, markup, annotated - select for diffs
Sat Mar 11 16:54:35 2017 UTC (7 years, 8 months ago) by taca
Branches: MAIN
CVS tags: pkgsrc-2017Q1-base, pkgsrc-2017Q1
Diff to: previous 1.35: preferred, colored
Changes since revision 1.35: +3 -4 lines
Update ruby-sqlite3 to 1.3.13.

* Fix flags declaration in case of no OPEN_V2.

And other fixes for Windows.

Revision 1.35: download - view: text, markup, annotated - select for diffs
Sun Dec 4 05:17:22 2016 UTC (7 years, 11 months ago) by ryoon
Branches: MAIN
CVS tags: pkgsrc-2016Q4-base, pkgsrc-2016Q4
Diff to: previous 1.34: preferred, colored
Changes since revision 1.34: +2 -1 lines
Recursive revbump from textproc/icu 58.1

Revision 1.34: download - view: text, markup, annotated - select for diffs
Sun Oct 9 13:02:38 2016 UTC (8 years, 1 month ago) by taca
Branches: MAIN
Diff to: previous 1.33: preferred, colored
Changes since revision 1.33: +2 -3 lines
Update ruby-sqlite3 to 1.3.12.

=== 1.3.12

* Bugfixes:
  * OS X install will default to homebrew if available. Fixes #195

Revision 1.33: download - view: text, markup, annotated - select for diffs
Mon Apr 11 19:01:46 2016 UTC (8 years, 7 months ago) by ryoon
Branches: MAIN
CVS tags: pkgsrc-2016Q3-base, pkgsrc-2016Q3, pkgsrc-2016Q2-base, pkgsrc-2016Q2
Diff to: previous 1.32: preferred, colored
Changes since revision 1.32: +2 -1 lines
Recursive revbump from textproc/icu 57.1

Revision 1.32: download - view: text, markup, annotated - select for diffs
Mon Oct 12 15:33:08 2015 UTC (9 years, 1 month ago) by taca
Branches: MAIN
CVS tags: pkgsrc-2016Q1-base, pkgsrc-2016Q1, pkgsrc-2015Q4-base, pkgsrc-2015Q4
Diff to: previous 1.31: preferred, colored
Changes since revision 1.31: +2 -3 lines
Update ruby-sqlite3 to 1.3.11.

=== 1.3.11 / 2015-10-10

* Enhancements:
  * Windows: build against SQLite 3.8.11.1

* Internal:
  * Use rake-compiler-dock to build Windows binaries. Pull #159 [larskanis]
  * Expand Ruby versions being tested for Travis and AppVeyor

Revision 1.31: download - view: text, markup, annotated - select for diffs
Sat Oct 10 01:58:03 2015 UTC (9 years, 1 month ago) by ryoon
Branches: MAIN
Diff to: previous 1.30: preferred, colored
Changes since revision 1.30: +2 -2 lines
Recursive revbump from textproc/icu

Revision 1.30: download - view: text, markup, annotated - select for diffs
Mon Apr 6 08:17:23 2015 UTC (9 years, 7 months ago) by adam
Branches: MAIN
CVS tags: pkgsrc-2015Q3-base, pkgsrc-2015Q3, pkgsrc-2015Q2-base, pkgsrc-2015Q2
Diff to: previous 1.29: preferred, colored
Changes since revision 1.29: +2 -1 lines
Revbump after updating textproc/icu

Revision 1.29: download - view: text, markup, annotated - select for diffs
Sun Mar 1 13:10:42 2015 UTC (9 years, 8 months ago) by taca
Branches: MAIN
CVS tags: pkgsrc-2015Q1-base, pkgsrc-2015Q1
Diff to: previous 1.28: preferred, colored
Changes since revision 1.28: +2 -3 lines
Update ruby-sqlite3 to 1.3.10.

1.3.10 / 2014-10-30

Enhancements:

* Windows: build against SQLite 3.8.7.1. Closes #134, #135 [Hubro]

Revision 1.28: download - view: text, markup, annotated - select for diffs
Tue Oct 7 16:47:21 2014 UTC (10 years, 1 month ago) by adam
Branches: MAIN
CVS tags: pkgsrc-2014Q4-base, pkgsrc-2014Q4
Diff to: previous 1.27: preferred, colored
Changes since revision 1.27: +2 -2 lines
Revbump after updating libwebp and icu

Revision 1.27: download - view: text, markup, annotated - select for diffs
Wed Apr 9 07:27:04 2014 UTC (10 years, 7 months ago) by obache
Branches: MAIN
CVS tags: pkgsrc-2014Q3-base, pkgsrc-2014Q3, pkgsrc-2014Q2-base, pkgsrc-2014Q2
Diff to: previous 1.26: preferred, colored
Changes since revision 1.26: +2 -1 lines
recursive bump from icu shlib major bump.

Revision 1.26: download - view: text, markup, annotated - select for diffs
Thu Mar 13 18:28:12 2014 UTC (10 years, 8 months ago) by taca
Branches: MAIN
CVS tags: pkgsrc-2014Q1-base, pkgsrc-2014Q1
Diff to: previous 1.25: preferred, colored
Changes since revision 1.25: +2 -3 lines
Update ruby-sqlite3 to 1.3.9.

pkgsrc change: add GEM_EXTSDIR support.

=== 1.3.9 / 2014-02-25

* Bugfixes:
  * Reset exception message. Closes #80
  * Reduce warnings due unused pointers. Closes #89
  * Add BSD-3 license reference to gemspec. Refs #99 and #106

Revision 1.25: download - view: text, markup, annotated - select for diffs
Thu Mar 13 11:08:50 2014 UTC (10 years, 8 months ago) by jperkin
Branches: MAIN
Diff to: previous 1.24: preferred, colored
Changes since revision 1.24: +3 -1 lines
Set USE_GCC_RUNTIME=yes for packages which build shared libraries but do
not use libtool to do so.  This is required to correctly depend upon a
gcc runtime package (e.g. gcc47-libs) when using USE_PKGSRC_GCC_RUNTIME.

Revision 1.24: download - view: text, markup, annotated - select for diffs
Sat Oct 19 09:07:02 2013 UTC (11 years ago) by adam
Branches: MAIN
CVS tags: pkgsrc-2013Q4-base, pkgsrc-2013Q4
Diff to: previous 1.23: preferred, colored
Changes since revision 1.23: +2 -2 lines
Revbump after updating textproc/icu

Revision 1.23: download - view: text, markup, annotated - select for diffs
Thu May 9 07:39:32 2013 UTC (11 years, 6 months ago) by adam
Branches: MAIN
CVS tags: pkgsrc-2013Q3-base, pkgsrc-2013Q3, pkgsrc-2013Q2-base, pkgsrc-2013Q2
Diff to: previous 1.22: preferred, colored
Changes since revision 1.22: +2 -2 lines
Massive revbump after updating graphics/ilmbase, graphics/openexr, textproc/icu.

Revision 1.22: download - view: text, markup, annotated - select for diffs
Sat Jan 26 21:37:16 2013 UTC (11 years, 9 months ago) by adam
Branches: MAIN
CVS tags: pkgsrc-2013Q1-base, pkgsrc-2013Q1
Diff to: previous 1.21: preferred, colored
Changes since revision 1.21: +2 -1 lines
Revbump after graphics/jpeg and textproc/icu

Revision 1.21: download - view: text, markup, annotated - select for diffs
Sat Jan 12 04:56:40 2013 UTC (11 years, 10 months ago) by taca
Branches: MAIN
Diff to: previous 1.20: preferred, colored
Changes since revision 1.20: +2 -2 lines
Update ruby-sqlite3 to 1.3.7.

=== 1.3.7

* Bugfixes
  * Closing a bad statement twice will not segv.

* Internal
  * Unset environment variables that could affect cross compilation.

Revision 1.20: download - view: text, markup, annotated - select for diffs
Sat Apr 28 14:09:22 2012 UTC (12 years, 6 months ago) by taca
Branches: MAIN
CVS tags: pkgsrc-2012Q4-base, pkgsrc-2012Q4, pkgsrc-2012Q3-base, pkgsrc-2012Q3, pkgsrc-2012Q2-base, pkgsrc-2012Q2
Diff to: previous 1.19: preferred, colored
Changes since revision 1.19: +2 -3 lines
Update ruby-sqlite3 package to 1.3.6.

=== 1.3.6 / 2012-04-16

* Enhancements
  * Windows: build against SQLite 3.7.11
  * Added SQLite3::ResultSet#each_hash for fetching each row as a hash.
  * Added SQLite3::ResultSet#next_hash for fetching one row as a hash.

* Bugfixes
  * Support both UTF-16LE and UTF-16BE encoding modes on PPC. Closes #63
  * Protect parameters to custom functions from being garbage collected too
    soon. Fixes #60. Thanks hirataya!
  * Fix backwards compatibility with 1.2.5 with bind vars and `query` method.
    Fixes #35.
  * Fix double definition error caused by defining sqlite3_int64/uint64.
  * Fix suspicious version regexp.

* Deprecations
  * ArrayWithTypesAndFields#types is deprecated and the class will be removed
    in version 2.0.0.  Please use the `types` method on the ResultSet class
    that created this object.
  * ArrayWithTypesAndFields#fields is deprecated and the class will be removed
    in version 2.0.0.  Please use the `columns` method on the ResultSet class
    that created this object.
  * The ArrayWithTypesAndFields class will be removed in 2.0.0
  * The ArrayWithTypes class will be removed in 2.0.0
  * HashWithTypesAndFields#types is deprecated and the class will be removed
    in version 2.0.0.  Please use the `types` method on the ResultSet class
    that created this object.
  * HashWithTypesAndFields#fields is deprecated and the class will be removed
    in version 2.0.0.  Please use the `columns` method on the ResultSet class
    that created this object.

Revision 1.19: download - view: text, markup, annotated - select for diffs
Fri Apr 27 12:31:40 2012 UTC (12 years, 6 months ago) by obache
Branches: MAIN
Diff to: previous 1.18: preferred, colored
Changes since revision 1.18: +2 -1 lines
Recursive bump from icu shlib major bumped to 49.

Revision 1.18: download - view: text, markup, annotated - select for diffs
Sun Feb 19 11:27:01 2012 UTC (12 years, 8 months ago) by taca
Branches: MAIN
CVS tags: pkgsrc-2012Q1-base, pkgsrc-2012Q1
Diff to: previous 1.17: preferred, colored
Changes since revision 1.17: +2 -3 lines
Update databases/ruby-sqlite3 package to 1.3.5.

=== 1.3.5 / 2011-12-03 - ZOMG Holidays are here Edition!

* Enhancements
  * Windows: build against SQLite 3.7.9
  * Static: enable SQLITE_ENABLE_COLUMN_METADATA
  * Added Statement#clear_bindings! to set bindings back to nil

* Bugfixes
  * Fixed a segv on Database.new. Fixes #34 (thanks nobu!)
  * Database error is not reset, so don't check it in Statement#reset!
  * Remove conditional around Bignum statement bindings.
    Fixes #52. Fixes #56. Thank you Evgeny Myasishchev.

* Internal
  * Use proper endianness when testing database connection with UTF-16.
    Fixes #40. Fixes #51
  * Use -fPIC for static compilation when host is x86_64.

=== 1.3.4 / 2011-07-25

* Enhancements:
  * Windows: build against SQLite 3.7.7.1
  * Windows: build static binaries that do not depend on sqlite3.dll be
    installed anymore

* Bugfixes
  * Backup API is conditionaly required so that older libsqlite3 can be used.
    Thanks Hongli Lai.
  * Fixed segmentation fault when nil is passed to SQLite3::Statement.new
  * Fix extconf's hardcoded path that affected installation on certain systems.

Revision 1.17: download - view: text, markup, annotated - select for diffs
Fri Jun 10 09:39:51 2011 UTC (13 years, 5 months ago) by obache
Branches: MAIN
CVS tags: pkgsrc-2011Q4-base, pkgsrc-2011Q4, pkgsrc-2011Q3-base, pkgsrc-2011Q3, pkgsrc-2011Q2-base, pkgsrc-2011Q2
Diff to: previous 1.16: preferred, colored
Changes since revision 1.16: +2 -1 lines
recursive bump from textproc/icu shlib major bump.

Revision 1.16: download - view: text, markup, annotated - select for diffs
Tue May 10 13:11:42 2011 UTC (13 years, 6 months ago) by taca
Branches: MAIN
Diff to: previous 1.15: preferred, colored
Changes since revision 1.15: +2 -4 lines
Update ruby-sqlite3 package to 1.3.3.

=== 1.3.3 / unreleased

* Bugfixes
  * Abort on installation if sqlite3_backup_init is missing. Fixes #19
  * Gem has been renamed to 'sqlite3'.  Please use `gem install sqlite3`

Revision 1.14.2.1: download - view: text, markup, annotated - select for diffs
Sun Feb 27 00:26:14 2011 UTC (13 years, 8 months ago) by tron
Branches: pkgsrc-2010Q4
Diff to: previous 1.14: preferred, colored; next MAIN 1.15: preferred, colored
Changes since revision 1.14: +2 -1 lines
Pullup ticket #3361 - requested by taca
archivers/ruby-libarchive: dependence update
comms/ruby-termios: dependence update
converters/ruby-uconv: dependence update
databases/ruby-do_sqlite3: dependence update
databases/ruby-ldap: dependence update
databases/ruby-mysql: dependence update
databases/ruby-odbc: dependence update
databases/ruby-pg: dependence update
databases/ruby-postgresql: dependence update
databases/ruby-qdbm: dependence update
databases/ruby-sqlite: dependence update
databases/ruby-sqlite3: dependence update
databases/ruby-tokyocabinet: dependence update
devel/ruby-SDL: dependence update
devel/ruby-debug-base: dependence update
devel/ruby-eet: dependence update
devel/ruby-eventmachine: dependence update
devel/ruby-ffi: dependence update
devel/ruby-gnome2-atk: dependence update
devel/ruby-gnome2-bonobo: dependence update
devel/ruby-gnome2-bonoboui: dependence update
devel/ruby-gnome2-gconf: dependence update
devel/ruby-gnome2-gio: dependence update
devel/ruby-gnome2-glib: dependence update
devel/ruby-gnome2-libglade: dependence update
devel/ruby-gnome2-pango: dependence update
devel/ruby-linecache: dependence update
devel/ruby-memcache: dependence update
devel/ruby-ncurses: dependence update
devel/ruby-priority-queue: dependence update
devel/ruby-racc: dependence update
devel/ruby-rbtree: dependence update
devel/ruby-rcov: dependence update
devel/ruby-rcsparse: dependence update
devel/ruby-subversion: dependence update
devel/ruby-thrift: dependence update
graphics/ruby-RMagick: dependence update
graphics/ruby-clutter-cairo: dependence update
graphics/ruby-clutter-core: dependence update
graphics/ruby-clutter-gtk: dependence update
graphics/ruby-gd: dependence update
graphics/ruby-gnome2-gdkpixbuf: dependence update
graphics/ruby-gnome2-gnomecanvas: dependence update
graphics/ruby-gnome2-goocanvas: dependence update
graphics/ruby-gnome2-gtkglext: dependence update
graphics/ruby-gnome2-libart: dependence update
graphics/ruby-gnome2-rsvg: dependence update
graphics/ruby-imlib2: dependence update
graphics/ruby-opengl: dependence update
graphics/ruby-rcairo: dependence update
inputmethod/ruby-zinnia: dependence update
lang/ruby: dependence update
lang/ruby18-base: security update
lang/ruby19-base: security update
mail/ruby-tmail: dependence update
math/ruby-rb-gsl: dependence update
multimedia/ruby-clutter-gst: dependence update
multimedia/ruby-gnome2-gstreamer: dependence update
multimedia/ruby-ming: dependence update
print/ruby-gnome2-gnomeprint: dependence update
print/ruby-gnome2-gnomeprintui: dependence update
print/ruby-gnome2-poppler: dependence update
security/ruby-password: dependence update
security/ruby-tcpwrap: dependence update
sysutils/ruby-quota: dependence update
textproc/ruby-bluecloth: dependence update
textproc/ruby-cabocha: dependence update
textproc/ruby-eruby: dependence update
textproc/ruby-ferret: dependence update
textproc/ruby-hpricot: dependence update
textproc/ruby-itex2MML: dependence update
textproc/ruby-json: dependence update
textproc/ruby-libxml: dependence update
textproc/ruby-mecab: dependence update
textproc/ruby-native-hyperestraier: dependence update
textproc/ruby-nokogiri: dependence update
textproc/ruby-oniguruma: dependence update
textproc/ruby-redcloth: dependence update
textproc/ruby-sary: dependence update
textproc/ruby-xmlparser: dependence update
textproc/ruby-xslt: dependence update
textproc/ruby-yamcha: dependence update
www/mongrel: dependence update
www/ruby-clearsilver: dependence update
www/ruby-fcgi: dependence update
www/ruby-gnome2-gtkhtml2: dependence update
www/ruby-gnome2-gtkmozembed: dependence update
www/ruby-patron: dependence update
www/thin: dependence update
x11/ruby-gnome2-gnome: dependence update
x11/ruby-gnome2-gtk: dependence update
x11/ruby-gnome2-gtksourceview: dependence update
x11/ruby-gnome2-gtksourceview2: dependence update
x11/ruby-gnome2-panelapplet: dependence update
x11/ruby-gnome2-vte: dependence update

Revisions pulled up:
- archivers/ruby-libarchive/Makefile				1.2
- comms/ruby-termios/Makefile					1.23
- converters/ruby-uconv/Makefile				1.19
- databases/ruby-do_sqlite3/Makefile				1.2
- databases/ruby-ldap/Makefile					1.7
- databases/ruby-mysql/Makefile					1.34 via patch
- databases/ruby-odbc/Makefile					1.10 via patch
- databases/ruby-pg/Makefile					1.6
- databases/ruby-postgresql/Makefile				1.37
- databases/ruby-qdbm/Makefile					1.12
- databases/ruby-sqlite/Makefile				1.3
- databases/ruby-sqlite3/Makefile				1.15
- databases/ruby-tokyocabinet/Makefile				1.24
- devel/ruby-SDL/Makefile					1.9 via patch
- devel/ruby-debug-base/Makefile				1.7
- devel/ruby-eet/Makefile					1.8
- devel/ruby-eventmachine/Makefile				1.7
- devel/ruby-ffi/Makefile					1.3
- devel/ruby-gnome2-atk/Makefile				1.8
- devel/ruby-gnome2-bonobo/Makefile				patch
- devel/ruby-gnome2-bonoboui/Makefile				patch
- devel/ruby-gnome2-gconf/Makefile				patch
- devel/ruby-gnome2-gio/Makefile				1.3 via patch
- devel/ruby-gnome2-glib/Makefile				1.11
- devel/ruby-gnome2-libglade/Makefile				patch
- devel/ruby-gnome2-pango/Makefile				1.18 via patch
- devel/ruby-linecache/Makefile					1.5
- devel/ruby-memcache/Makefile					1.4
- devel/ruby-ncurses/Makefile					1.9
- devel/ruby-priority-queue/Makefile				1.6
- devel/ruby-racc/Makefile					1.18
- devel/ruby-rbtree/Makefile					1.6
- devel/ruby-rcov/Makefile					1.5
- devel/ruby-rcsparse/Makefile					1.10
- devel/ruby-subversion/Makefile				1.28
- devel/ruby-thrift/Makefile					1.4 via patch
- graphics/ruby-RMagick/Makefile				1.76 via patch
- graphics/ruby-clutter-cairo/Makefile				1.8 via patch
- graphics/ruby-clutter-core/Makefile				1.11 via patch
- graphics/ruby-clutter-gtk/Makefile				1.8 via patch
- graphics/ruby-gd/Makefile					1.34 via patch
- graphics/ruby-gnome2-gdkpixbuf/Makefile			1.20 via patch
- graphics/ruby-gnome2-gnomecanvas/Makefile			patch
- graphics/ruby-gnome2-goocanvas/Makefile			1.12 via patch
- graphics/ruby-gnome2-gtkglext/Makefile			patch
- graphics/ruby-gnome2-libart/Makefile				patch
- graphics/ruby-gnome2-rsvg/Makefile				1.21 va patch
- graphics/ruby-imlib2/Makefile					1.24 va patch
- graphics/ruby-opengl/Makefile					1.31
- graphics/ruby-rcairo/Makefile					1.22 via patch
- inputmethod/ruby-zinnia/Makefile				1.3
- lang/ruby/buildlink3.mk					1.13
- lang/ruby/rubyversion.mk					1.58-1.59
- lang/ruby18-base/distinfo					1.47
- lang/ruby19-base/DEINSTALL					1.2
- lang/ruby19-base/Makefile					1.7
- lang/ruby19-base/PLIST					1.4
- lang/ruby19-base/distinfo					1.4
- lang/ruby19-base/patches/patch-string.c			1.1
- mail/ruby-tmail/Makefile					1.19
- math/ruby-rb-gsl/Makefile					1.9
- multimedia/ruby-clutter-gst/Makefile				1.9 via patch
- multimedia/ruby-gnome2-gstreamer/Makefile			1.7
- multimedia/ruby-ming/Makefile					1.15 via patch
- print/ruby-gnome2-gnomeprint/Makefile				patch
- print/ruby-gnome2-gnomeprintui/Makefile			patch
- print/ruby-gnome2-poppler/Makefile				1.19 via patch
- security/ruby-password/Makefile				1.5
- security/ruby-tcpwrap/Makefile				1.18
- sysutils/ruby-quota/Makefile					1.21
- textproc/ruby-bluecloth/Makefile				1.5
- textproc/ruby-cabocha/Makefile				1.3
- textproc/ruby-eruby/Makefile					1.26
- textproc/ruby-ferret/Makefile					1.6
- textproc/ruby-hpricot/Makefile				1.8
- textproc/ruby-itex2MML/Makefile				1.7
- textproc/ruby-json/Makefile					1.9
- textproc/ruby-libxml/Makefile					1.7
- textproc/ruby-mecab/Makefile					1.6
- textproc/ruby-native-hyperestraier/Makefile			1.6
- textproc/ruby-nokogiri/Makefile				1.4
- textproc/ruby-oniguruma/Makefile				1.6
- textproc/ruby-redcloth/Makefile				1.14
- textproc/ruby-sary/Makefile					1.7
- textproc/ruby-xmlparser/Makefile				1.15
- textproc/ruby-xslt/Makefile					1.7
- textproc/ruby-yamcha/Makefile					1.3
- www/mongrel/Makefile						1.13 via patch
- www/ruby-clearsilver/Makefile					1.15
- www/ruby-fcgi/Makefile					1.15
- www/ruby-gnome2-gtkhtml2/Makefile				patch
- www/ruby-gnome2-gtkmozembed/Makefile				1.17 via patch
- www/ruby-patron/Makefile					1.5
- www/thin/Makefile						1.8 via patch
- x11/ruby-gnome2-gtk/Makefile					1.25 via patch
- x11/ruby-gnome2-gtksourceview/Makefile			patch via 1.12
- x11/ruby-gnome2-gtksourceview2/Makefile			patch
- x11/ruby-gnome2-panelapplet/Makefile				patch
- x11/ruby-gnome2-vte/Makefile					1.16 via patch
---
Module Name:	pkgsrc
Module Name:	pkgsrc
Committed By:	taca
Date:		Mon Feb 21 14:31:06 UTC 2011

Modified Files:
	pkgsrc/lang/ruby: rubyversion.mk

Log Message:
* Start upate of ruby18 and ruby19 packags.
* Remove redundant GEM_HOME definition from PLIST.
---
Module Name:	pkgsrc
Module Name:	pkgsrc
Committed By:	taca
Date:		Mon Feb 21 14:35:38 UTC 2011

Modified Files:
	pkgsrc/lang/ruby18-base: distinfo

Log Message:
Update ruby18-base package to 1.8.7.334 (Ruby 1.8.7p334).

* The FileUtils Vulnerability

	http://www.ruby-lang.org/en/news/2011/02/18/fileutils-is-vulnerable-to-symlink-race-attacks/

* The $SAFE Vulnerability

Fri Feb 18 21:18:55 2011  Shugo Maeda  <[email protected]>

	* test/ruby/test_exception.rb (TestException::test_to_s_taintness_propagation):
	  Test for below.

Fri Feb 18 21:18:55 2011  URABE Shyouhei  <[email protected]>

	* error.c (exc_to_s): untainted strings can be tainted via
	  Exception#to_s, which enables attackers to overwrite sane strings.
	  Reported by: Yusuke Endoh <mame at tsg.ne.jp>.

	* error.c (name_err_to_s): ditto.

Fri Feb 18 21:17:22 2011  Shugo Maeda  <[email protected]>

	* lib/fileutils.rb (FileUtils::remove_entry_secure): there is a
	  race condition in the case where the given path is a directory,
	  and some other user can move that directory, and create a
	  symlink while this method is executing.
	  Reported by: Nicholas Jefferson <nicholas at pythonic.com.au>

Fri Feb 18 19:46:46 2011  NAKAMURA Usaku  <[email protected]>

	* win32/win32.c (init_stdhandle): backport mistake of r29382.
	  some code are needless in ruby 1.8.
	  [ruby-core:34579]

Fri Feb 18 19:22:17 2011  URABE Shyouhei  <[email protected]>

	* configure.in: revert revision r29854.	 This revision introduced
	  binary incompatibilities on some circumstances.  The bug that
	  revision was fixing gets reopened by this reversion.
	  [ruby-dev:43152] cf. [Bug #2553]
---
Module Name:	pkgsrc
Module Name:	pkgsrc
Committed By:	taca
Date:		Mon Feb 21 14:44:11 UTC 2011

Modified Files:
	pkgsrc/lang/ruby19-base: DEINSTALL Makefile PLIST distinfo
Added Files:
	pkgsrc/lang/ruby19-base/patches: patch-string.c

Log Message:
Update ruby19-base package to 1.9.2pl180 (Ruby 1.9.2 p180).

* The FileUtils Vulnerability

    http://www.ruby-lang.org/en/news/2011/02/18/fileutils-is-vulnerable-to-symlink-race-attacks/

* Add a patch r30779 from repository; a bug of utf-8 string handling.

For more detail changes of Ruby 1.9.2pl180, please refer:
	http://svn.ruby-lang.org/repos/ruby/tags/v1_9_2_180/ChangeLog
---
Module Name:	pkgsrc
Module Name:	pkgsrc
Committed By:	taca
Date:		Mon Feb 21 15:00:34 UTC 2011

Modified Files:
	pkgsrc/lang/ruby: buildlink3.mk rubyversion.mk

Log Message:
Introduce RUBY_ABI_VERSION and use it BUILDLINK_ABI_DEPENDS.

There are ABI incompatibility amaong Ruby 1.8.7 patchlevel 302, 330 and 334,
So it would be handle if such problem in future.
---
Module Name:	pkgsrc
Module Name:	pkgsrc
Committed By:	taca
Date:		Mon Feb 21 16:01:24 UTC 2011

Modified Files:
	pkgsrc/archivers/ruby-libarchive: Makefile
	pkgsrc/comms/ruby-termios: Makefile
	pkgsrc/converters/ruby-uconv: Makefile
	pkgsrc/databases/ruby-do_sqlite3: Makefile
	pkgsrc/databases/ruby-ldap: Makefile
	pkgsrc/databases/ruby-mysql: Makefile
	pkgsrc/databases/ruby-odbc: Makefile
	pkgsrc/databases/ruby-pg: Makefile
	pkgsrc/databases/ruby-postgresql: Makefile
	pkgsrc/databases/ruby-qdbm: Makefile
	pkgsrc/databases/ruby-sqlite: Makefile
	pkgsrc/databases/ruby-sqlite3: Makefile
	pkgsrc/databases/ruby-tokyocabinet: Makefile
	pkgsrc/devel/ruby-SDL: Makefile
	pkgsrc/devel/ruby-debug-base: Makefile
	pkgsrc/devel/ruby-eet: Makefile
	pkgsrc/devel/ruby-eventmachine: Makefile
	pkgsrc/devel/ruby-ffi: Makefile
	pkgsrc/devel/ruby-gnome2-atk: Makefile
	pkgsrc/devel/ruby-gnome2-gio: Makefile
	pkgsrc/devel/ruby-gnome2-glib: Makefile
	pkgsrc/devel/ruby-gnome2-pango: Makefile
	pkgsrc/devel/ruby-linecache: Makefile
	pkgsrc/devel/ruby-memcache: Makefile
	pkgsrc/devel/ruby-ncurses: Makefile
	pkgsrc/devel/ruby-priority-queue: Makefile
	pkgsrc/devel/ruby-racc: Makefile
	pkgsrc/devel/ruby-rbtree: Makefile
	pkgsrc/devel/ruby-rcov: Makefile
	pkgsrc/devel/ruby-rcsparse: Makefile
	pkgsrc/devel/ruby-subversion: Makefile
	pkgsrc/devel/ruby-thrift: Makefile
	pkgsrc/graphics/ruby-RMagick: Makefile
	pkgsrc/graphics/ruby-clutter-cairo: Makefile
	pkgsrc/graphics/ruby-clutter-core: Makefile
	pkgsrc/graphics/ruby-clutter-gtk: Makefile
	pkgsrc/graphics/ruby-gd: Makefile
	pkgsrc/graphics/ruby-gnome2-gdkpixbuf: Makefile
	pkgsrc/graphics/ruby-gnome2-goocanvas: Makefile
	pkgsrc/graphics/ruby-gnome2-rsvg: Makefile
	pkgsrc/graphics/ruby-imlib2: Makefile
	pkgsrc/graphics/ruby-opengl: Makefile
	pkgsrc/graphics/ruby-rcairo: Makefile
	pkgsrc/inputmethod/ruby-zinnia: Makefile
	pkgsrc/mail/ruby-tmail: Makefile
	pkgsrc/math/ruby-rb-gsl: Makefile
	pkgsrc/multimedia/ruby-clutter-gst: Makefile
	pkgsrc/multimedia/ruby-gnome2-gstreamer: Makefile
	pkgsrc/multimedia/ruby-ming: Makefile
	pkgsrc/print/ruby-gnome2-poppler: Makefile
	pkgsrc/security/ruby-password: Makefile
	pkgsrc/security/ruby-tcpwrap: Makefile
	pkgsrc/sysutils/ruby-quota: Makefile
	pkgsrc/textproc/ruby-bluecloth: Makefile
	pkgsrc/textproc/ruby-cabocha: Makefile
	pkgsrc/textproc/ruby-eruby: Makefile
	pkgsrc/textproc/ruby-ferret: Makefile
	pkgsrc/textproc/ruby-hpricot: Makefile
	pkgsrc/textproc/ruby-itex2MML: Makefile
	pkgsrc/textproc/ruby-json: Makefile
	pkgsrc/textproc/ruby-libxml: Makefile
	pkgsrc/textproc/ruby-mecab: Makefile
	pkgsrc/textproc/ruby-native-hyperestraier: Makefile
	pkgsrc/textproc/ruby-nokogiri: Makefile
	pkgsrc/textproc/ruby-oniguruma: Makefile
	pkgsrc/textproc/ruby-redcloth: Makefile
	pkgsrc/textproc/ruby-sary: Makefile
	pkgsrc/textproc/ruby-xmlparser: Makefile
	pkgsrc/textproc/ruby-xslt: Makefile
	pkgsrc/textproc/ruby-yamcha: Makefile
	pkgsrc/www/mongrel: Makefile
	pkgsrc/www/ruby-clearsilver: Makefile
	pkgsrc/www/ruby-fcgi: Makefile
	pkgsrc/www/ruby-gnome2-gtkmozembed: Makefile
	pkgsrc/www/ruby-patron: Makefile
	pkgsrc/www/thin: Makefile
	pkgsrc/x11/ruby-gnome2-gtk: Makefile
	pkgsrc/x11/ruby-gnome2-gtksourceview2: Makefile
	pkgsrc/x11/ruby-gnome2-vte: Makefile

Log Message:
Bump PKGREVISION due to ABI change of ruby18-base.

Revision 1.15: download - view: text, markup, annotated - select for diffs
Mon Feb 21 16:01:12 2011 UTC (13 years, 8 months ago) by taca
Branches: MAIN
CVS tags: pkgsrc-2011Q1-base, pkgsrc-2011Q1
Diff to: previous 1.14: preferred, colored
Changes since revision 1.14: +2 -1 lines
Bump PKGREVISION due to ABI change of ruby18-base.

Revision 1.14: download - view: text, markup, annotated - select for diffs
Sat Dec 4 03:47:14 2010 UTC (13 years, 11 months ago) by taca
Branches: MAIN
CVS tags: pkgsrc-2010Q4-base
Branch point for: pkgsrc-2010Q4
Diff to: previous 1.13: preferred, colored
Changes since revision 1.13: +2 -2 lines
Update ruby-sqlite3 package to 1.3.2.


=== 1.3.2 / 2010-10-30 / RubyConf Uruguay Edition!

* Enhancements:
  * Windows: build against 3.7.3 version of SQLite3
  * SQLite3::Database can now be open as readonly

      db = SQLite3::Database.new('my.db', :readonly => true)

  * Added SQLite3::SQLITE_VERSION and SQLite3::SQLITE_VERSION_NUMBER [nurse]

* Bugfixes
  * type_translation= works along with Database#execute and a block
  * defined functions are kept in a hash to prevent GC. #7
  * Removed GCC specific flags from extconf.

* DEPRECATIONS
  * SQLite3::Database#type_translation= will be deprecated in the future with
    no replacement.
  * SQlite3::Version will be deprecated in 2.0.0 with SQLite3::VERSION as the
    replacement.

Revision 1.13: download - view: text, markup, annotated - select for diffs
Fri Sep 10 04:53:25 2010 UTC (14 years, 2 months ago) by taca
Branches: MAIN
CVS tags: pkgsrc-2010Q3-base, pkgsrc-2010Q3
Diff to: previous 1.12: preferred, colored
Changes since revision 1.12: +3 -5 lines
* Use lang/ruby/gem.mk instead of misc/rubygems/rubygem.mk.
* Update HOMEPAGE.
* Add LICENSE.
* Remove default value of GEM_BUILD.

Revision 1.12: download - view: text, markup, annotated - select for diffs
Sat Jul 10 09:29:21 2010 UTC (14 years, 4 months ago) by obache
Branches: MAIN
Diff to: previous 1.11: preferred, colored
Changes since revision 1.11: +2 -2 lines
Update ruby-sqlite3 to 1.3.1.

=== 1.3.1 / 2010-07-09

* Enhancements
  * Custom collations may be defined using SQLite3::Database#collation

* Bugfixes
  * Statements returning 0 columns are automatically stepped. [RF #28308]
  * SQLite3::Database#encoding works on 1.8 and 1.9

Revision 1.11: download - view: text, markup, annotated - select for diffs
Mon Jun 7 09:34:41 2010 UTC (14 years, 5 months ago) by obache
Branches: MAIN
CVS tags: pkgsrc-2010Q2-base, pkgsrc-2010Q2
Diff to: previous 1.10: preferred, colored
Changes since revision 1.10: +2 -2 lines
Update ruby-sqlite3 to 1.3.0.

Changes:
### 1.3.0 / 2010-06-06

* Enhancements
* Complete rewrite of C-based adapter from SWIG to hand-crafted one
  [tenderlove]
  See API_CHANGES document for details.
  This closes: Bug #27300, Bug #27241, Patch #16020
* Improved UTF, Unicode, M17N, all that handling and proper BLOB
  handling [tenderlove, nurse]
* Added support for type translations [tenderlove]

  @db.translator.add_translator('sometime') do |type, thing|
  'output' # this will be returned as value for that column
  end

* Experimental
* Added API to access and load extensions. [kashif]
  These functions maps directly into SQLite3 own enable_load_extension()
  and load_extension() C-API functions. See SQLite3::Database API
  documentation for details.
  This closes: Patches #9178

* Bugfixes
* Corrected gem dependencies (runtime and development)
* Fixed threaded tests [Alexey Borzenkov]
* Removed GitHub gemspec
* Fixed "No definition for" warnings from RDoc
* Generate zip and tgz files for releases
* Added Luis Lavena as gem Author (maintainer)
* Prevent mkmf interfere with Mighty Snow Leopard
* Allow extension compilation search for common lib paths [kashif]
(lookup /usr/local, /opt/local and /usr)
* Corrected extension compilation under MSVC [romuloceccon]
* Define load_extension functionality based on availability [tenderlove]
* Deprecation notices for Database#query. Fixes RF #28192

Revision 1.10: download - view: text, markup, annotated - select for diffs
Sat Oct 17 09:31:43 2009 UTC (15 years, 1 month ago) by taca
Branches: MAIN
CVS tags: pkgsrc-2010Q1-base, pkgsrc-2010Q1, pkgsrc-2009Q4-base, pkgsrc-2009Q4
Diff to: previous 1.9: preferred, colored
Changes since revision 1.9: +3 -6 lines
Update ruby-sqlite3 package to 1.2.5.

* Add LICENSE.


=== 1.2.5 / 25 Jul 2009

* Check for illegal nil before executing SQL [Erik Veenstra]
* Switch to Hoe for gem task management and packaging.
* Advertise rake-compiler as development dependency.
* Build gem binaries for Windows.
* Improved Ruby 1.9 support compatibility.
* Taint returned values. Patch #20325.


=== 1.2.4.1 (internal) / 5 Jul 2009

* Check for illegal nil before executing SQL [Erik Veenstra]
* Switch to Hoe for gem task management and packaging.
* Advertise rake-compiler as development dependency.
* Build gem binaries for Windows.
* Improved Ruby 1.9 support compatibility.

Revision 1.9: download - view: text, markup, annotated - select for diffs
Mon Sep 15 09:26:50 2008 UTC (16 years, 2 months ago) by taca
Branches: MAIN
CVS tags: pkgsrc-2009Q3-base, pkgsrc-2009Q3, pkgsrc-2009Q2-base, pkgsrc-2009Q2, pkgsrc-2009Q1-base, pkgsrc-2009Q1, pkgsrc-2008Q4-base, pkgsrc-2008Q4, pkgsrc-2008Q3-base, pkgsrc-2008Q3
Diff to: previous 1.8: preferred, colored
Changes since revision 1.8: +6 -3 lines
Update ruby-sqlite3 package to 1.2.4.

Release Name: 1.2.4

Notes: This release only updates the generated C file to reflect the
compatibility changes that were made to the SWIG file. Binary builds
(e.g., Windows) are not affected, and need no update. In general, you
will not need this update unless you are using a version of Ruby prior
to 1.8.6.

Release Name: 1.2.3

Notes:
Mostly, this release just fixes the permissions
issue on *nix platforms on the database.rb and
translator.rb files. It also has a few
optimizations and compatibility fixes.


Changes:
=== 1.2.3 / 26 Aug 2008

* Fix incorrect permissions on database.rb and translator.rb [Various]

* Avoid using Object#extend for greater speedups [Erik Veenstra]

* Ruby 1.9 compatibility tweaks for Array#zip [[email protected]]

* Fix linking against Ruby 1.8.5 [Rob Holland <[email protected]>]

Revision 1.8: download - view: text, markup, annotated - select for diffs
Sun Jun 22 15:52:59 2008 UTC (16 years, 4 months ago) by taca
Branches: MAIN
CVS tags: pkgsrc-2008Q2-base, pkgsrc-2008Q2, cwrapper, cube-native-xorg-base, cube-native-xorg
Diff to: previous 1.7: preferred, colored
Changes since revision 1.7: +2 -3 lines
Update ruby-sqlite3 package to 1.2.2.

Changes:
=== 1.2.2 / 31 May 2008

* Make the table_info method adjust the returned default value for the rows
  so that the sqlite3 change in 3.3.8 and greater can be handled
  transparently [Jamis Buck <[email protected]>]

* Ruby 1.9 compatibility tweaks [Roman Le Negrate <[email protected]>]

* Various performance enhancements [thanks Erik Veenstra]

* Correct busy_handler documentation [Rob Holland <[email protected]>]

* Use int_bind64 on Fixnum values larger than a 32bit C int can take. [Rob Holland <[email protected]>]

* Work around a quirk in SQLite's error reporting by calling sqlite3_reset
  to produce a more informative error code upon a failure from
  sqlite3_step. [Rob Holland <[email protected]>]

* Various documentation, test, and style tweaks [Rob Holland <[email protected]>]

* Be more granular with time/data translation [Rob Holland <[email protected]>]

* Use Date directly for parsing rather than going via Time [Rob Holland <[email protected]>]

* Check for the rt library and fdatasync so we link against that when
  needed [Rob Holland <[email protected]>]

* Rename data structures to avoid collision on win32. based on patch
  by: Luis Lavena [Rob Holland <[email protected]>]

* Add test for defaults [Daniel Rodr?guez Troiti?o]

* Correctly unquote double-quoted pragma defaults [?ukasz Dargiewicz <[email protected]>]

Revision 1.7: download - view: text, markup, annotated - select for diffs
Thu Apr 10 07:28:50 2008 UTC (16 years, 7 months ago) by obache
Branches: MAIN
Diff to: previous 1.6: preferred, colored
Changes since revision 1.6: +2 -2 lines
Drop maintainership.
These packages was switched to gem version, I'm not in the area.

Revision 1.6: download - view: text, markup, annotated - select for diffs
Fri Apr 4 15:30:00 2008 UTC (16 years, 7 months ago) by jlam
Branches: MAIN
Diff to: previous 1.5: preferred, colored
Changes since revision 1.5: +5 -19 lines
Install as a gem using the pkgsrc rubygem.mk framework instead of
directly into site_ruby.

Revision 1.5: download - view: text, markup, annotated - select for diffs
Fri Feb 8 15:13:54 2008 UTC (16 years, 9 months ago) by obache
Branches: MAIN
CVS tags: pkgsrc-2008Q1-base, pkgsrc-2008Q1
Diff to: previous 1.4: preferred, colored
Changes since revision 1.4: +7 -5 lines
Add DESTDIR support.

Revision 1.4: download - view: text, markup, annotated - select for diffs
Sun Apr 1 09:10:34 2007 UTC (17 years, 7 months ago) by obache
Branches: MAIN
CVS tags: pkgsrc-2007Q4-base, pkgsrc-2007Q4, pkgsrc-2007Q3-base, pkgsrc-2007Q3, pkgsrc-2007Q2-base, pkgsrc-2007Q2, pkgsrc-2007Q1-base, pkgsrc-2007Q1
Diff to: previous 1.3: preferred, colored
Changes since revision 1.3: +3 -5 lines
Update ruby-sqlite3 to 1.2.1.

Release Name: 1.2.1

Notes:
Only a single change in this release: sqlite3
3.3.8 and higher have changed the format of the
'dflt_value' column for the table_info pragma.
This caused breakage in apps that depend on that
pragma, like Ruby on Rails. This release makes the
Database#table_info helper check the libversion,
and adjust the dflt_value column accordingly. If
you want the new format and not the old, you can
invoke the table_info pragma directly, instead of
using the helper.

Release Name: 1.2.0

Notes:
* Fixed bug that caused crashes when type translation was asked to translate the type of a typeless column (like count(*), etc.)
* Added pre-built sqlite3_api_wrap.c to remove the dependency on SWIG.
* db.transaction should now catch all exceptions (bug #3981)
* Removed lots of warnings when running in -w mode
* Fixed problems with callbacks (thanks Sylvan Joyeux!)
* Named bind parameters may now be specified as symbols, or as strings. You can also leave off the leading colon when specifying them as a string.
* DL (pure-ruby) driver is now deprecated.
* Bignum values may be bound in a prepared statement.
* Get a more detailed error message when the connection cannot be established.
* Reset the statement when binding new variables to a prepared statement.

Revision 1.3: download - view: text, markup, annotated - select for diffs
Sun Apr 1 01:58:37 2007 UTC (17 years, 7 months ago) by obache
Branches: MAIN
Diff to: previous 1.2: preferred, colored
Changes since revision 1.2: +2 -2 lines
Change my mail address to @NetBSD.org.

Revision 1.2: download - view: text, markup, annotated - select for diffs
Wed Apr 5 15:18:34 2006 UTC (18 years, 7 months ago) by minskim
Branches: MAIN
CVS tags: pkgsrc-2006Q4-base, pkgsrc-2006Q4, pkgsrc-2006Q3-base, pkgsrc-2006Q3, pkgsrc-2006Q2-base, pkgsrc-2006Q2
Diff to: previous 1.1: preferred, colored
Changes since revision 1.1: +18 -4 lines
Merge (almost replace) this package with ruby-sqlite3 in pkgsrc-wip
packgaed by OBATA Akio, because the latter is more complete.

Bump PKGREVISION.

Revision 1.1.1.1 (vendor branch): download - view: text, markup, annotated - select for diffs
Thu Mar 30 16:21:14 2006 UTC (18 years, 7 months ago) by minskim
Branches: TNF
CVS tags: pkgsrc-base
Diff to: previous 1.1: preferred, colored
Changes since revision 1.1: +0 -0 lines
Import ruby-sqlite3.

This module allows Ruby programs to interface with the SQLite database
engine.

Revision 1.1: download - view: text, markup, annotated - select for diffs
Thu Mar 30 16:21:14 2006 UTC (18 years, 7 months ago) by minskim
Branches: MAIN
Initial revision

Diff request

This form allows you to request diffs between any two revisions of a file. You may select a symbolic revision name using the selection box or you may type in a numeric name using the type-in text box.

Log view options

CVSweb <[email protected]>