Tue Apr 29 18:39:06 2008 UTC ()
Update databases/ruby-sequel-core to 1.5.0.  Changes from version 1.4.0
include:

* SECURITY: Fix backslash escaping of strings

* No longer depend on ParseTree, RubyInline, or ruby2ruby, but you still
  need them if you want to use the block filters

* Paginating an already paginated/limited dataset now raises an error
* Added support for arbitrary index types (including spatial indexes)
* Allow joining of multiple datasets, by making the table alias different
  for each dataset joined
* Add ability to create a graph of objects from a query, with the result
  split into corresponding tables

* Set a timeout in the Sqlite adapter, default to 5 seconds
* Quote column names in SQL generated for SQLite

* Add support for PostgreSQL partial indexes
* Support storing microseconds in postgres timestamp fields

* Fix table joining in MySQL
* Fix MySQL default values insert
* Fix renaming columns on MySQL with type :varchar

* Fix ODBC adapter improperly escaping date and timestamp values
* Fix connecting to an MSSQL server via ODBC using domain user credentials


(jlam)
diff -r1.2 -r1.3 pkgsrc/databases/ruby-sequel-core/Makefile
diff -r1.2 -r1.3 pkgsrc/databases/ruby-sequel-core/PLIST
diff -r1.2 -r1.3 pkgsrc/databases/ruby-sequel-core/distinfo

cvs diff -r1.2 -r1.3 pkgsrc/databases/ruby-sequel-core/Attic/Makefile (expand / switch to unified diff)

--- pkgsrc/databases/ruby-sequel-core/Attic/Makefile 2008/04/13 06:56:27 1.2
+++ pkgsrc/databases/ruby-sequel-core/Attic/Makefile 2008/04/29 18:39:06 1.3
@@ -1,19 +1,14 @@ @@ -1,19 +1,14 @@
1# $NetBSD: Makefile,v 1.2 2008/04/13 06:56:27 jlam Exp $ 1# $NetBSD: Makefile,v 1.3 2008/04/29 18:39:06 jlam Exp $
2 2
3DISTNAME= sequel_core-1.4.0 3DISTNAME= sequel_core-1.5.0
4PKGNAME= ${RUBY_PKGPREFIX}-${DISTNAME:S/_/-/g} 4PKGNAME= ${RUBY_PKGPREFIX}-${DISTNAME:S/_/-/g}
5CATEGORIES= databases 5CATEGORIES= databases
6 6
7MAINTAINER= pkgsrc-users@NetBSD.org 7MAINTAINER= pkgsrc-users@NetBSD.org
8HOMEPAGE= http://sequel.rubyforge.org/ 8HOMEPAGE= http://sequel.rubyforge.org/
9COMMENT= Core components for Sequel 9COMMENT= Core components for Sequel
10 10
11BUILD_DEPENDS+= ${RUBY_PKGPREFIX}-rspec>=1.1.3:../../devel/ruby-rspec 
12DEPENDS+= ${RUBY_PKGPREFIX}-metaid>=1.0:../../devel/ruby-metaid 11DEPENDS+= ${RUBY_PKGPREFIX}-metaid>=1.0:../../devel/ruby-metaid
13DEPENDS+= ${RUBY_PKGPREFIX}-assistance>=0.1:../../devel/ruby-assistance 
14DEPENDS+= ${RUBY_PKGPREFIX}-inline>=3.6.6:../../devel/ruby-inline 
15DEPENDS+= ${RUBY_PKGPREFIX}-parsetree>=2.1.1:../../devel/ruby-parsetree 
16DEPENDS+= ${RUBY_PKGPREFIX}-ruby2ruby>=1.1.8:../../devel/ruby2ruby 
17 12
18.include "../../misc/rubygems/rubygem.mk" 13.include "../../misc/rubygems/rubygem.mk"
19.include "../../mk/bsd.pkg.mk" 14.include "../../mk/bsd.pkg.mk"

cvs diff -r1.2 -r1.3 pkgsrc/databases/ruby-sequel-core/Attic/PLIST (expand / switch to unified diff)

--- pkgsrc/databases/ruby-sequel-core/Attic/PLIST 2008/04/13 06:56:27 1.2
+++ pkgsrc/databases/ruby-sequel-core/Attic/PLIST 2008/04/29 18:39:06 1.3
@@ -1,63 +1,66 @@ @@ -1,63 +1,66 @@
1@comment $NetBSD: PLIST,v 1.2 2008/04/13 06:56:27 jlam Exp $ 1@comment $NetBSD: PLIST,v 1.3 2008/04/29 18:39:06 jlam Exp $
2bin/sequel 2bin/sequel
3${GEM_HOME}/cache/sequel_core-${PKGVERSION}.gem 3${GEM_HOME}/cache/sequel_core-${PKGVERSION}.gem
4${GEM_LIBDIR}/CHANGELOG 4${GEM_LIBDIR}/CHANGELOG
5${GEM_LIBDIR}/COPYING 5${GEM_LIBDIR}/COPYING
6${GEM_LIBDIR}/README 6${GEM_LIBDIR}/README
7${GEM_LIBDIR}/Rakefile 7${GEM_LIBDIR}/Rakefile
8${GEM_LIBDIR}/bin/sequel 8${GEM_LIBDIR}/bin/sequel
9${GEM_LIBDIR}/lib/sequel_core.rb 9${GEM_LIBDIR}/lib/sequel_core.rb
10${GEM_LIBDIR}/lib/sequel_core/adapters/adapter_skeleton.rb 10${GEM_LIBDIR}/lib/sequel_core/adapters/adapter_skeleton.rb
11${GEM_LIBDIR}/lib/sequel_core/adapters/ado.rb 11${GEM_LIBDIR}/lib/sequel_core/adapters/ado.rb
12${GEM_LIBDIR}/lib/sequel_core/adapters/db2.rb 12${GEM_LIBDIR}/lib/sequel_core/adapters/db2.rb
13${GEM_LIBDIR}/lib/sequel_core/adapters/dbi.rb 13${GEM_LIBDIR}/lib/sequel_core/adapters/dbi.rb
14${GEM_LIBDIR}/lib/sequel_core/adapters/informix.rb 14${GEM_LIBDIR}/lib/sequel_core/adapters/informix.rb
15${GEM_LIBDIR}/lib/sequel_core/adapters/jdbc.rb 15${GEM_LIBDIR}/lib/sequel_core/adapters/jdbc.rb
16${GEM_LIBDIR}/lib/sequel_core/adapters/mysql.rb 16${GEM_LIBDIR}/lib/sequel_core/adapters/mysql.rb
17${GEM_LIBDIR}/lib/sequel_core/adapters/odbc.rb 17${GEM_LIBDIR}/lib/sequel_core/adapters/odbc.rb
18${GEM_LIBDIR}/lib/sequel_core/adapters/odbc_mssql.rb 18${GEM_LIBDIR}/lib/sequel_core/adapters/odbc_mssql.rb
19${GEM_LIBDIR}/lib/sequel_core/adapters/openbase.rb 19${GEM_LIBDIR}/lib/sequel_core/adapters/openbase.rb
20${GEM_LIBDIR}/lib/sequel_core/adapters/oracle.rb 20${GEM_LIBDIR}/lib/sequel_core/adapters/oracle.rb
21${GEM_LIBDIR}/lib/sequel_core/adapters/postgres.rb 21${GEM_LIBDIR}/lib/sequel_core/adapters/postgres.rb
22${GEM_LIBDIR}/lib/sequel_core/adapters/sqlite.rb 22${GEM_LIBDIR}/lib/sequel_core/adapters/sqlite.rb
23${GEM_LIBDIR}/lib/sequel_core/array_keys.rb 23${GEM_LIBDIR}/lib/sequel_core/connection_pool.rb
24${GEM_LIBDIR}/lib/sequel_core/core_ext.rb 24${GEM_LIBDIR}/lib/sequel_core/core_ext.rb
25${GEM_LIBDIR}/lib/sequel_core/core_sql.rb 25${GEM_LIBDIR}/lib/sequel_core/core_sql.rb
26${GEM_LIBDIR}/lib/sequel_core/database.rb 26${GEM_LIBDIR}/lib/sequel_core/database.rb
27${GEM_LIBDIR}/lib/sequel_core/dataset.rb 27${GEM_LIBDIR}/lib/sequel_core/dataset.rb
28${GEM_LIBDIR}/lib/sequel_core/dataset/callback.rb 28${GEM_LIBDIR}/lib/sequel_core/dataset/callback.rb
29${GEM_LIBDIR}/lib/sequel_core/dataset/convenience.rb 29${GEM_LIBDIR}/lib/sequel_core/dataset/convenience.rb
 30${GEM_LIBDIR}/lib/sequel_core/dataset/pagination.rb
30${GEM_LIBDIR}/lib/sequel_core/dataset/sequelizer.rb 31${GEM_LIBDIR}/lib/sequel_core/dataset/sequelizer.rb
31${GEM_LIBDIR}/lib/sequel_core/dataset/sql.rb 32${GEM_LIBDIR}/lib/sequel_core/dataset/sql.rb
 33${GEM_LIBDIR}/lib/sequel_core/deprecated.rb
32${GEM_LIBDIR}/lib/sequel_core/exceptions.rb 34${GEM_LIBDIR}/lib/sequel_core/exceptions.rb
33${GEM_LIBDIR}/lib/sequel_core/migration.rb 35${GEM_LIBDIR}/lib/sequel_core/migration.rb
34${GEM_LIBDIR}/lib/sequel_core/model.rb 36${GEM_LIBDIR}/lib/sequel_core/object_graph.rb
35${GEM_LIBDIR}/lib/sequel_core/pretty_table.rb 37${GEM_LIBDIR}/lib/sequel_core/pretty_table.rb
36${GEM_LIBDIR}/lib/sequel_core/schema.rb 38${GEM_LIBDIR}/lib/sequel_core/schema.rb
37${GEM_LIBDIR}/lib/sequel_core/schema/generator.rb 39${GEM_LIBDIR}/lib/sequel_core/schema/generator.rb
38${GEM_LIBDIR}/lib/sequel_core/schema/sql.rb 40${GEM_LIBDIR}/lib/sequel_core/schema/sql.rb
39${GEM_LIBDIR}/lib/sequel_core/worker.rb 41${GEM_LIBDIR}/lib/sequel_core/worker.rb
40${GEM_LIBDIR}/spec/adapters/informix_spec.rb 42${GEM_LIBDIR}/spec/adapters/informix_spec.rb
41${GEM_LIBDIR}/spec/adapters/mysql_spec.rb 43${GEM_LIBDIR}/spec/adapters/mysql_spec.rb
42${GEM_LIBDIR}/spec/adapters/oracle_spec.rb 44${GEM_LIBDIR}/spec/adapters/oracle_spec.rb
43${GEM_LIBDIR}/spec/adapters/postgres_spec.rb 45${GEM_LIBDIR}/spec/adapters/postgres_spec.rb
44${GEM_LIBDIR}/spec/adapters/sqlite_spec.rb 46${GEM_LIBDIR}/spec/adapters/sqlite_spec.rb
45${GEM_LIBDIR}/spec/array_keys_spec.rb 47${GEM_LIBDIR}/spec/connection_pool_spec.rb
46${GEM_LIBDIR}/spec/core_ext_spec.rb 48${GEM_LIBDIR}/spec/core_ext_spec.rb
47${GEM_LIBDIR}/spec/core_sql_spec.rb 49${GEM_LIBDIR}/spec/core_sql_spec.rb
48${GEM_LIBDIR}/spec/database_spec.rb 50${GEM_LIBDIR}/spec/database_spec.rb
49${GEM_LIBDIR}/spec/dataset_spec.rb 51${GEM_LIBDIR}/spec/dataset_spec.rb
50${GEM_LIBDIR}/spec/migration_spec.rb 52${GEM_LIBDIR}/spec/migration_spec.rb
 53${GEM_LIBDIR}/spec/object_graph_spec.rb
51${GEM_LIBDIR}/spec/pretty_table_spec.rb 54${GEM_LIBDIR}/spec/pretty_table_spec.rb
52${GEM_LIBDIR}/spec/rcov.opts 55${GEM_LIBDIR}/spec/rcov.opts
53${GEM_LIBDIR}/spec/schema_generator_spec.rb 56${GEM_LIBDIR}/spec/schema_generator_spec.rb
54${GEM_LIBDIR}/spec/schema_spec.rb 57${GEM_LIBDIR}/spec/schema_spec.rb
55${GEM_LIBDIR}/spec/sequelizer_spec.rb 58${GEM_LIBDIR}/spec/sequelizer_spec.rb
56${GEM_LIBDIR}/spec/spec.opts 59${GEM_LIBDIR}/spec/spec.opts
57${GEM_LIBDIR}/spec/spec_config.rb.example 60${GEM_LIBDIR}/spec/spec_config.rb.example
58${GEM_LIBDIR}/spec/spec_helper.rb 61${GEM_LIBDIR}/spec/spec_helper.rb
59${GEM_LIBDIR}/spec/worker_spec.rb 62${GEM_LIBDIR}/spec/worker_spec.rb
60${GEM_HOME}/specifications/sequel_core-${PKGVERSION}.gemspec 63${GEM_HOME}/specifications/sequel_core-${PKGVERSION}.gemspec
61@dirrm ${GEM_LIBDIR}/spec/adapters 64@dirrm ${GEM_LIBDIR}/spec/adapters
62@dirrm ${GEM_LIBDIR}/spec 65@dirrm ${GEM_LIBDIR}/spec
63@dirrm ${GEM_LIBDIR}/lib/sequel_core/schema 66@dirrm ${GEM_LIBDIR}/lib/sequel_core/schema

cvs diff -r1.2 -r1.3 pkgsrc/databases/ruby-sequel-core/Attic/distinfo (expand / switch to unified diff)

--- pkgsrc/databases/ruby-sequel-core/Attic/distinfo 2008/04/13 06:56:27 1.2
+++ pkgsrc/databases/ruby-sequel-core/Attic/distinfo 2008/04/29 18:39:06 1.3
@@ -1,5 +1,5 @@ @@ -1,5 +1,5 @@
1$NetBSD: distinfo,v 1.2 2008/04/13 06:56:27 jlam Exp $ 1$NetBSD: distinfo,v 1.3 2008/04/29 18:39:06 jlam Exp $
2 2
3SHA1 (sequel_core-1.4.0.gem) = 305fcf473be336c5c370d3fbf605c0f6de29711e 3SHA1 (sequel_core-1.5.0.gem) = fe15a3fd80c7a0e58cff9e2d5db4fa9b42951da8
4RMD160 (sequel_core-1.4.0.gem) = 69549f65e77bf2a46f7aa935b5da3c62935ae3e9 4RMD160 (sequel_core-1.5.0.gem) = 51e10defd1faf432a290a56102be44d25182ca50
5Size (sequel_core-1.4.0.gem) = 106496 bytes 5Size (sequel_core-1.5.0.gem) = 112128 bytes