pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/databases/ruby-sequel-core Update databases/ruby-seque...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/baa9d7bba980
branches:  trunk
changeset: 542015:baa9d7bba980
user:      jlam <jlam%pkgsrc.org@localhost>
date:      Tue Apr 29 18:39:06 2008 +0000

description:
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

diffstat:

 databases/ruby-sequel-core/Makefile |   9 ++-------
 databases/ruby-sequel-core/PLIST    |  11 +++++++----
 databases/ruby-sequel-core/distinfo |   8 ++++----
 3 files changed, 13 insertions(+), 15 deletions(-)

diffs (85 lines):

diff -r 634b3205be73 -r baa9d7bba980 databases/ruby-sequel-core/Makefile
--- a/databases/ruby-sequel-core/Makefile       Tue Apr 29 18:39:02 2008 +0000
+++ b/databases/ruby-sequel-core/Makefile       Tue Apr 29 18:39:06 2008 +0000
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.2 2008/04/13 06:56:27 jlam Exp $
+# $NetBSD: Makefile,v 1.3 2008/04/29 18:39:06 jlam Exp $
 
-DISTNAME=      sequel_core-1.4.0
+DISTNAME=      sequel_core-1.5.0
 PKGNAME=       ${RUBY_PKGPREFIX}-${DISTNAME:S/_/-/g}
 CATEGORIES=    databases
 
@@ -8,12 +8,7 @@
 HOMEPAGE=      http://sequel.rubyforge.org/
 COMMENT=       Core components for Sequel
 
-BUILD_DEPENDS+=        ${RUBY_PKGPREFIX}-rspec>=1.1.3:../../devel/ruby-rspec
 DEPENDS+=      ${RUBY_PKGPREFIX}-metaid>=1.0:../../devel/ruby-metaid
-DEPENDS+=      ${RUBY_PKGPREFIX}-assistance>=0.1:../../devel/ruby-assistance
-DEPENDS+=      ${RUBY_PKGPREFIX}-inline>=3.6.6:../../devel/ruby-inline
-DEPENDS+=      ${RUBY_PKGPREFIX}-parsetree>=2.1.1:../../devel/ruby-parsetree
-DEPENDS+=      ${RUBY_PKGPREFIX}-ruby2ruby>=1.1.8:../../devel/ruby2ruby
 
 .include "../../misc/rubygems/rubygem.mk"
 .include "../../mk/bsd.pkg.mk"
diff -r 634b3205be73 -r baa9d7bba980 databases/ruby-sequel-core/PLIST
--- a/databases/ruby-sequel-core/PLIST  Tue Apr 29 18:39:02 2008 +0000
+++ b/databases/ruby-sequel-core/PLIST  Tue Apr 29 18:39:06 2008 +0000
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.2 2008/04/13 06:56:27 jlam Exp $
+@comment $NetBSD: PLIST,v 1.3 2008/04/29 18:39:06 jlam Exp $
 bin/sequel
 ${GEM_HOME}/cache/sequel_core-${PKGVERSION}.gem
 ${GEM_LIBDIR}/CHANGELOG
@@ -20,18 +20,20 @@
 ${GEM_LIBDIR}/lib/sequel_core/adapters/oracle.rb
 ${GEM_LIBDIR}/lib/sequel_core/adapters/postgres.rb
 ${GEM_LIBDIR}/lib/sequel_core/adapters/sqlite.rb
-${GEM_LIBDIR}/lib/sequel_core/array_keys.rb
+${GEM_LIBDIR}/lib/sequel_core/connection_pool.rb
 ${GEM_LIBDIR}/lib/sequel_core/core_ext.rb
 ${GEM_LIBDIR}/lib/sequel_core/core_sql.rb
 ${GEM_LIBDIR}/lib/sequel_core/database.rb
 ${GEM_LIBDIR}/lib/sequel_core/dataset.rb
 ${GEM_LIBDIR}/lib/sequel_core/dataset/callback.rb
 ${GEM_LIBDIR}/lib/sequel_core/dataset/convenience.rb
+${GEM_LIBDIR}/lib/sequel_core/dataset/pagination.rb
 ${GEM_LIBDIR}/lib/sequel_core/dataset/sequelizer.rb
 ${GEM_LIBDIR}/lib/sequel_core/dataset/sql.rb
+${GEM_LIBDIR}/lib/sequel_core/deprecated.rb
 ${GEM_LIBDIR}/lib/sequel_core/exceptions.rb
 ${GEM_LIBDIR}/lib/sequel_core/migration.rb
-${GEM_LIBDIR}/lib/sequel_core/model.rb
+${GEM_LIBDIR}/lib/sequel_core/object_graph.rb
 ${GEM_LIBDIR}/lib/sequel_core/pretty_table.rb
 ${GEM_LIBDIR}/lib/sequel_core/schema.rb
 ${GEM_LIBDIR}/lib/sequel_core/schema/generator.rb
@@ -42,12 +44,13 @@
 ${GEM_LIBDIR}/spec/adapters/oracle_spec.rb
 ${GEM_LIBDIR}/spec/adapters/postgres_spec.rb
 ${GEM_LIBDIR}/spec/adapters/sqlite_spec.rb
-${GEM_LIBDIR}/spec/array_keys_spec.rb
+${GEM_LIBDIR}/spec/connection_pool_spec.rb
 ${GEM_LIBDIR}/spec/core_ext_spec.rb
 ${GEM_LIBDIR}/spec/core_sql_spec.rb
 ${GEM_LIBDIR}/spec/database_spec.rb
 ${GEM_LIBDIR}/spec/dataset_spec.rb
 ${GEM_LIBDIR}/spec/migration_spec.rb
+${GEM_LIBDIR}/spec/object_graph_spec.rb
 ${GEM_LIBDIR}/spec/pretty_table_spec.rb
 ${GEM_LIBDIR}/spec/rcov.opts
 ${GEM_LIBDIR}/spec/schema_generator_spec.rb
diff -r 634b3205be73 -r baa9d7bba980 databases/ruby-sequel-core/distinfo
--- a/databases/ruby-sequel-core/distinfo       Tue Apr 29 18:39:02 2008 +0000
+++ b/databases/ruby-sequel-core/distinfo       Tue Apr 29 18:39:06 2008 +0000
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.2 2008/04/13 06:56:27 jlam Exp $
+$NetBSD: distinfo,v 1.3 2008/04/29 18:39:06 jlam Exp $
 
-SHA1 (sequel_core-1.4.0.gem) = 305fcf473be336c5c370d3fbf605c0f6de29711e
-RMD160 (sequel_core-1.4.0.gem) = 69549f65e77bf2a46f7aa935b5da3c62935ae3e9
-Size (sequel_core-1.4.0.gem) = 106496 bytes
+SHA1 (sequel_core-1.5.0.gem) = fe15a3fd80c7a0e58cff9e2d5db4fa9b42951da8
+RMD160 (sequel_core-1.5.0.gem) = 51e10defd1faf432a290a56102be44d25182ca50
+Size (sequel_core-1.5.0.gem) = 112128 bytes



Home | Main Index | Thread Index | Old Index