diff options
author | taca <taca@pkgsrc.org> | 2012-02-23 14:18:23 +0000 |
---|---|---|
committer | taca <taca@pkgsrc.org> | 2012-02-23 14:18:23 +0000 |
commit | 8467289bf84e3796c9f528a83582a744f7a7ca05 (patch) | |
tree | 36fe09b8cac790336ccb716946fad9819d6440f4 /databases/ruby-pg | |
parent | 6c015655e5a7e1c87843769a47ab31444d2861ac (diff) | |
download | pkgsrc-8467289bf84e3796c9f528a83582a744f7a7ca05.tar.gz |
Update databases/ruby-pg package to 0.13.2.
== v0.13.2 [2012-02-22] Michael Granger <ged@FaerieMUD.org>
- Make builds against PostgreSQL earlier than 8.3 fail with a descriptive
message instead of a compile failure.
== v0.13.1 [2012-02-12] Michael Granger <ged@FaerieMUD.org>
- Made use of a finished PG::Connection raise a PG::Error instead of
a fatal error (#110).
- Added missing BSDL license file (#108)
== v0.13.0 [] Michael Granger <ged@FaerieMUD.org>
Reorganization of modules/classes to be better Ruby citizens (with backward-compatible aliases):
- Created toplevel namespace 'PG' to correspond with the gem name.
- Renamed PGconn to PG::Connection (with ::PGconn alias)
- Renamed PGresult to PG::Result (with ::PGresult alias)
- Renamed PGError to PG::Error (with ::PGError alias)
- Declare all constants inside PG::Constants, then include them in
PG::Connection and PG::Result for backward-compatibility, and
in PG for convenience.
- Split the extension source up by class/module.
- Removed old compatibility code for PostgreSQL versions < 8.3
Documentation:
- Clarified licensing, updated to Ruby 1.9's license.
- Merged authors list, added some missing people to the Contributor's
list.
- Cleaned up the sample/ directory
- Making contact info a bit clearer, link to the Google+ page and
the mailing list
Enhancements:
- Added a convenience method: PG.connect -> PG::Connection.new
Bugfixes:
- Fixed LATIN5-LATIN10 Postgres<->Ruby encoding conversions
Diffstat (limited to 'databases/ruby-pg')
-rw-r--r-- | databases/ruby-pg/Makefile | 6 | ||||
-rw-r--r-- | databases/ruby-pg/PLIST | 31 | ||||
-rw-r--r-- | databases/ruby-pg/distinfo | 8 |
3 files changed, 22 insertions, 23 deletions
diff --git a/databases/ruby-pg/Makefile b/databases/ruby-pg/Makefile index a819935f4a6..7661f338d97 100644 --- a/databases/ruby-pg/Makefile +++ b/databases/ruby-pg/Makefile @@ -1,13 +1,13 @@ -# $NetBSD: Makefile,v 1.9 2011/12/15 15:02:03 taca Exp $ +# $NetBSD: Makefile,v 1.10 2012/02/23 14:18:23 taca Exp $ -DISTNAME= pg-0.12.0 +DISTNAME= pg-0.13.2 PKGNAME= ${RUBY_PKGPREFIX}-${DISTNAME:C/postgres/&ql/} CATEGORIES= databases MAINTAINER= pkgsrc-users@NetBSD.org HOMEPAGE= http://bitbucket.org/ged/ruby-pg/ COMMENT= Ruby extension for PostgreSQL -LICENSE= gnu-gpl-v2 OR ruby-license +LICENSE= 2-clause-bsd OR ruby-license GEM_CLEANBUILD= ext/* CONFIGURE_ARGS= --with-pgsql-include-dir=${PGSQL_PREFIX}/include/postgresql \ diff --git a/databases/ruby-pg/PLIST b/databases/ruby-pg/PLIST index 70bf78eb093..3a33a73db7e 100644 --- a/databases/ruby-pg/PLIST +++ b/databases/ruby-pg/PLIST @@ -1,47 +1,46 @@ -@comment $NetBSD: PLIST,v 1.6 2011/12/15 15:02:03 taca Exp $ +@comment $NetBSD: PLIST,v 1.7 2012/02/23 14:18:23 taca Exp $ ${GEM_HOME}/cache/${GEM_NAME}.gem ${GEM_LIBDIR}/.gemtest -${GEM_LIBDIR}/BSD +${GEM_LIBDIR}/BSDL ${GEM_LIBDIR}/ChangeLog ${GEM_LIBDIR}/Contributors.rdoc -${GEM_LIBDIR}/GPL ${GEM_LIBDIR}/History.rdoc ${GEM_LIBDIR}/LICENSE ${GEM_LIBDIR}/Manifest.txt -${GEM_LIBDIR}/README.OS_X.rdoc +${GEM_LIBDIR}/POSTGRES +${GEM_LIBDIR}/README-OS_X.rdoc +${GEM_LIBDIR}/README-Windows.rdoc ${GEM_LIBDIR}/README.ja.rdoc ${GEM_LIBDIR}/README.rdoc -${GEM_LIBDIR}/README.windows.rdoc ${GEM_LIBDIR}/Rakefile ${GEM_LIBDIR}/Rakefile.cross -${GEM_LIBDIR}/ext/compat.c -${GEM_LIBDIR}/ext/compat.h ${GEM_LIBDIR}/ext/extconf.rb ${GEM_LIBDIR}/ext/pg.c ${GEM_LIBDIR}/ext/pg.h +${GEM_LIBDIR}/ext/pg_connection.c +${GEM_LIBDIR}/ext/pg_result.c ${GEM_LIBDIR}/ext/vc/pg.sln ${GEM_LIBDIR}/ext/vc/pg_18/pg.vcproj ${GEM_LIBDIR}/ext/vc/pg_19/pg_19.vcproj ${GEM_LIBDIR}/lib/pg.rb +${GEM_LIBDIR}/lib/pg/connection.rb +${GEM_LIBDIR}/lib/pg/constants.rb +${GEM_LIBDIR}/lib/pg/exceptions.rb +${GEM_LIBDIR}/lib/pg/result.rb ${GEM_LIBDIR}/lib/pg_ext.${RUBY_DLEXT} -${GEM_LIBDIR}/misc/openssl-pg-segfault.rb ${GEM_LIBDIR}/sample/async_api.rb ${GEM_LIBDIR}/sample/async_copyto.rb +${GEM_LIBDIR}/sample/async_mixed.rb ${GEM_LIBDIR}/sample/copyfrom.rb ${GEM_LIBDIR}/sample/copyto.rb ${GEM_LIBDIR}/sample/cursor.rb ${GEM_LIBDIR}/sample/losample.rb ${GEM_LIBDIR}/sample/notify_wait.rb -${GEM_LIBDIR}/sample/psql.rb -${GEM_LIBDIR}/sample/psqlHelp.rb -${GEM_LIBDIR}/sample/test1.rb -${GEM_LIBDIR}/sample/test2.rb -${GEM_LIBDIR}/sample/test4.rb ${GEM_LIBDIR}/sample/test_binary_values.rb ${GEM_LIBDIR}/spec/data/expected_trace.out ${GEM_LIBDIR}/spec/data/random_binary_data ${GEM_LIBDIR}/spec/lib/helpers.rb -${GEM_LIBDIR}/spec/m17n_spec.rb -${GEM_LIBDIR}/spec/pgconn_spec.rb -${GEM_LIBDIR}/spec/pgresult_spec.rb +${GEM_LIBDIR}/spec/pg/connection_spec.rb +${GEM_LIBDIR}/spec/pg/result_spec.rb +${GEM_LIBDIR}/spec/pg_spec.rb ${GEM_HOME}/specifications/${GEM_NAME}.gemspec diff --git a/databases/ruby-pg/distinfo b/databases/ruby-pg/distinfo index 8369f730165..cb7c6ade2ae 100644 --- a/databases/ruby-pg/distinfo +++ b/databases/ruby-pg/distinfo @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.6 2011/12/15 15:02:03 taca Exp $ +$NetBSD: distinfo,v 1.7 2012/02/23 14:18:23 taca Exp $ -SHA1 (pg-0.12.0.gem) = 28df0b4432daa90683213e0449a1ee975b7240a4 -RMD160 (pg-0.12.0.gem) = 3d50977babf23043beade3379f50abaca0c569c7 -Size (pg-0.12.0.gem) = 107008 bytes +SHA1 (pg-0.13.2.gem) = 263f8047efb018d9fc4d51f0ff5b1aed775c57aa +RMD160 (pg-0.13.2.gem) = 40c89a8c4a97dfcbd10b24f3080d640e00b96c6f +Size (pg-0.13.2.gem) = 91648 bytes |