The NetBSD Project

CVS log for pkgsrc/databases/p5-DBD-postgresql/Makefile

[BACK] Up to [cvs.NetBSD.org] / pkgsrc / databases / p5-DBD-postgresql

Request diff between arbitrary revisions


Default branch: MAIN


Revision 1.95 / (download) - annotate - [select for diffs], Thu Jul 6 09:38:21 2023 UTC (4 months, 4 weeks ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2023Q3-base, pkgsrc-2023Q3, HEAD
Changes since 1.94: +2 -2 lines
Diff to previous 1.94 (colored)

*: recursive bump for perl 5.38

Revision 1.94 / (download) - annotate - [select for diffs], Tue Jun 28 11:31:22 2022 UTC (17 months ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2023Q2-base, pkgsrc-2023Q2, pkgsrc-2023Q1-base, pkgsrc-2023Q1, pkgsrc-2022Q4-base, pkgsrc-2022Q4, pkgsrc-2022Q3-base, pkgsrc-2022Q3
Changes since 1.93: +2 -2 lines
Diff to previous 1.93 (colored)

*: recursive bump for perl 5.36

Revision 1.93 / (download) - annotate - [select for diffs], Mon May 24 19:49:34 2021 UTC (2 years, 6 months ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2022Q2-base, pkgsrc-2022Q2, pkgsrc-2022Q1-base, pkgsrc-2022Q1, pkgsrc-2021Q4-base, pkgsrc-2021Q4, pkgsrc-2021Q3-base, pkgsrc-2021Q3, pkgsrc-2021Q2-base, pkgsrc-2021Q2
Changes since 1.92: +2 -1 lines
Diff to previous 1.92 (colored)

*: recursive bump for perl 5.34

Revision 1.92 / (download) - annotate - [select for diffs], Sun Sep 6 20:47:57 2020 UTC (3 years, 2 months ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2021Q1-base, pkgsrc-2021Q1, pkgsrc-2020Q4-base, pkgsrc-2020Q4, pkgsrc-2020Q3-base, pkgsrc-2020Q3
Changes since 1.91: +2 -3 lines
Diff to previous 1.91 (colored)

p5-DBD-postgresql: update to 3.14.2.

Version 3.14.2  (released August 13, 2020)

 - Fix ENV typo in the test suite
   [Gregor Herrmann]

 - Renamed and enhanced test helper script: dbdpg_test_postgres_versions.pl
   [Greg Sabino Mullane]


Version 3.14.1  (released August 12, 2020)

 - Force the version string so undefined errors in the "driver" sub go away.
   [Greg Sabino Mullane]
   (RT ticket #83057)


Version 3.14.0  (released July 19, 2020)

 - The $dbh->primary_key_info and $dbh->foreign_key_info methods will now always return
     a statement handle, even with no matches. Previously, they returned undef directly.
   Callers can check if the returned handle contains any rows.
   [Greg Sabino Mullane]

 - The $dbh->tables method will always return a list, even if it is empty.
   [Greg Sabino Mullane]

 - Add pg_lo_tell64, pg_lo_seek64, and pg_lo_truncate64, for anyone dealing
     with really, really, really large 'large objects'. Requires Postgres 9.3 or better.
   [Greg Sabino Mullane]
   (RT ticket #123561)

 - Allow test to run again when using a non-superuser to connect
   [Greg Sabino Mullane]
   (RT ticket #132865)

 - Adjust tests to force loading proper version of DBD::Pg every time.
   [Greg Sabino Mullane]

 - Removed the long-deprecated _pg_use_catalog method.
   [Greg Sabino Mullane]

 - Many improvements and changes to the test suite.
   [Greg Sabino Mullane]


Version 3.13.0  (released June 17, 2020)

 - Redo the "last_result" internals in dbdimp.c, which
     fixes a memory leak.
   [Greg Sabino Mullane]
   (RT ticket #132812)

 - Fix regression in Perl length() for returned query results
   [Jon Jensen]
   (Github issue #72)

 - Make $sth->finish() do a little less. Notably, even
     after calling finish(), pg_error_field will still work
     on the last action performed.
   [Greg Sabino Mullane]

 - Tweak tests so Windows boxes pass
   [Greg Sabino Mullane]


Version 3.12.3  (released June 5, 2020)

 - Prevent DBI from flipping AutoCommit to 'on' after a failed commit
   [Greg Sabino Mullane]
   (Github issue #71)


Version 3.12.2  (released June 4, 2020)

 - Revert overly aggressive testing shortcut as it can cause installs to fail
   [Greg Sabino Mullane, with apologies]


Version 3.12.1  (released June 3, 2020)

 - Remove test that assumed '(12,34)' is an invalid entry for type "circle",
     as the Postgres source code changed this behavior on April 7, 2020
   [Greg Sabino Mullane]
   (RT ticket #132740)


Version 3.12.0  (released May 7, 2020)

 - Add CONTRIBUTING.md file

 - Return the table info row last in statistics_info.
   This fixes statistics_info on pre-8.3 servers.
   [Dagfinn Ilmari Mannsåker]

 - Fix ASC_OR_DESC field in statistics_info
   [Dagfinn Ilmari Mannsåker]

 - Indicate NULL ordering in statistics_info
   [Dagfinn Ilmari Mannsåker]


Version 3.11.1  (released April 28, 2020)

 - Adjust Makefile to fix failing 'fulltest' target on BSD systems
   [Slaven Rezi]
   (RT ticket #132412)


Version 3.11.0  (released April 23, 2020)

 - Indicate non-key index columns (INCLUDE) in statistics_info
   [Dagfinn Ilmari Mannsåker]

 - Return an empty result set instead of undef from statistics_info
     when the requested table doesn't exist and $unique_only is false.
   [Dagfinn Ilmari Mannsåker]

 - Fix segfault during st destroy
   [Gregory Oschwald]
   (Github pull request #66)
   (Github issue #57)

 - Improve testing for table_info()
   [Greg Sabino Mullane]
   (Github issue #67)

 - Improve UTF-8 wording in docs
   [Felipe Gasper]
   (Github pull request #65)


Version 3.10.5  (released March 23, 2020)

 - Minor adjustment for Windows build
   (RT ticket #131752)

 - Allow test suite to work on an EnterpriseDB server
   [H.Merijn Brand]
   (RT ticket #132203)

 - Add small warning regarding ShowErrorStatement
   (RT ticket #120268)


Version 3.10.4  (released February 3, 2020)

 - Allow localtime from Time::Piece to be used directly as a bind value again.
   This applies to all "magical" arrays.
   [Greg Sabino Mullane]
   (Github issue #63)

 - Force tests to NOT run in parallel.
   [Greg Sabino Mullane]
   (RT ticket #130834)


Version 3.10.3  (released January 20, 2020)

 - Set things cleared via PQclear to NULL as soon as possible, to remove race conditions
   [Greg Sabino Mullane]
   (RT ticket #131522)


Version 3.10.2  (released January 17, 2020)

 - Adjust tests to pass on 32-bit machines
   [Greg Sabino Mullane]
   (RT ticket #131482)


Version 3.10.1  (released January 13, 2020)

 - Prevent double-free memory errors
   [Greg Sabino Mullane]
   (RT ticket #130681)

 - Fix crash when pg_error_field is called
   [Greg Sabino Mullane]
   (RT ticket #130721)

 - Update the list of Postgres reserved words in quote.c


Version 3.10.0  (released September 3, 2019)

 - Prevent memory leak related to pg_error_field
   [Greg Sabino Mullane]
   (RT ticket #130430)

 - Fix for bug by making sure pg_error_field works properly when switching between
     do-with-params and do-without-params.
   [Greg Sabino Mullane]
   (Github issue #57)

 - If a commit or rollback fails, do not set BegunWork
   [Greg Sabino Mullane]
   (Github issue #40)

 - Treat partitioned tables same as regular tables for column_info, table_info,
     and foreign_key_info (i.e. support pg_class.relkind = 'p')
   [Octavian R. Corlade]
   (Github pull request #55)

 - Allow last_insert_id() to work against inherited tables
   [Greg Sabino Mullane]
   (RT ticket #52441)

 - Add DBI SQL_BLOB, SQL_BINARY and SQL_LONGVARBINARY types as alias for PG_BYTEA
   [Pali]
   (Github pull request #58)

Revision 1.91 / (download) - annotate - [select for diffs], Mon Aug 31 18:07:00 2020 UTC (3 years, 3 months ago) by wiz
Branch: MAIN
Changes since 1.90: +2 -1 lines
Diff to previous 1.90 (colored)

*: bump PKGREVISION for perl-5.32.

Revision 1.90 / (download) - annotate - [select for diffs], Fri Aug 23 13:15:05 2019 UTC (4 years, 3 months ago) by adam
Branch: MAIN
CVS Tags: pkgsrc-2020Q2-base, pkgsrc-2020Q2, pkgsrc-2020Q1-base, pkgsrc-2020Q1, pkgsrc-2019Q4-base, pkgsrc-2019Q4, pkgsrc-2019Q3-base, pkgsrc-2019Q3
Changes since 1.89: +2 -3 lines
Diff to previous 1.89 (colored)

p5-DBD-postgresql: updated to 3.9.1

Version 3.9.1:
Bugfix for pg_error_field: make sure we do not feed null to newSVpv,
handle older versions of Postgres better.

Version 3.9.0:
- ShowErrorStatement works for "quickexec" do() calls
- Add :pg_limits to add constants such as PG_MAX_SMALLINT
- Add $dbh->pg_error_field() function
- Fix failing tests due to incorrect 'initdb' check

Version 3.8.1:
- Fix encoding of SQL_VARBINARY type in $dbh->quote() function
- Fix encoding in $dbh->do() function
- Fix E'' string escape handling on architectures with unsigned chars
- Minor fix to allow DBD::Pg to connect to PGbouncer's internal 'pgbouncer' database.
- Fix so table_info test works on non-empty databases

Version 3.8.0:
- Increase minimum supported PostgreSQL version to 8.0
- Add support for foreign tables in table_info() and column_info()
- Return the current database name as TABLE_CAT in info methods
- Handle backslash-escaped quotes in E'' strings
- Fix typo in Makefile.PL
- Fix parsing of PostgreSQL versions >= 10 on Debian/Ubuntu
- Fix client_min_messages=FATAL test when PostgreSQL caps it to ERROR
- Fix ->ping error detection on PostgreSQL 12
- Adjust tests for new pg_ctl output
- Adjust tests for removal of WITH OIDS in PostgreSQL 12
- Fix support for PostgreSQL versions back to 8.0
- Remove usage of deprecated pg_attrdef.adsrc and pg_constraint.consrc columns
- Fix typo in pg_placeholder_colons example
- Support GENERATED ... AS IDENTITY columns in last_insert_id()

Revision 1.89 / (download) - annotate - [select for diffs], Sun Aug 11 13:18:25 2019 UTC (4 years, 3 months ago) by wiz
Branch: MAIN
Changes since 1.88: +2 -2 lines
Diff to previous 1.88 (colored)

Bump PKGREVISIONs for perl 5.30.0

Revision 1.88 / (download) - annotate - [select for diffs], Sun Jun 30 20:14:22 2019 UTC (4 years, 5 months ago) by nia
Branch: MAIN
Changes since 1.87: +2 -2 lines
Diff to previous 1.87 (colored)

Update packages using a search.cpan.org HOMEPAGE to metacpan.org.

The former now redirects to the latter.

This covers the most simple cases where http://search.cpan.org/dist/name
can be changed to https://metacpan.org/release/name.

Reviewed by hand to hopefully make sure no unwanted changes sneak in.

Revision 1.87 / (download) - annotate - [select for diffs], Wed Aug 22 09:43:15 2018 UTC (5 years, 3 months ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2019Q2-base, pkgsrc-2019Q2, pkgsrc-2019Q1-base, pkgsrc-2019Q1, pkgsrc-2018Q4-base, pkgsrc-2018Q4, pkgsrc-2018Q3-base, pkgsrc-2018Q3
Changes since 1.86: +2 -1 lines
Diff to previous 1.86 (colored)

Recursive bump for perl5-5.28.0

Revision 1.86 / (download) - annotate - [select for diffs], Sun Feb 25 16:24:02 2018 UTC (5 years, 9 months ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2018Q2-base, pkgsrc-2018Q2, pkgsrc-2018Q1-base, pkgsrc-2018Q1
Changes since 1.85: +2 -2 lines
Diff to previous 1.85 (colored)

p5-DBD-postgresql: update to 3.7.4.

Version 3.7.4. Released February 12, 2018 (git tag 3.7.4)

  - Fix typo in META.yml
    [CPAN ticket #124405]

Revision 1.85 / (download) - annotate - [select for diffs], Wed Sep 27 19:16:06 2017 UTC (6 years, 2 months ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2017Q4-base, pkgsrc-2017Q4
Changes since 1.84: +2 -3 lines
Diff to previous 1.84 (colored)

p5-DBD-postgresql: update to 3.7.0.

Version 3.7.0  Released September 24, 2017 (git tag 3.7.0)

  - If no placeholders, use PQexec instead of PQexecParams
    [Greg Sabino Mullane]

  - Fix running tests with non-UTF8 server_encoding
    [Dagfinn Ilmari Mannsåker]
    (Github issue #26)

  - Fix crash with missing client_encoding
    [David Christensen, reported by Marko Tiikkaja]
    (Github issue #29)

  - Fix crash with missing server_version
    [David Christensen]

  - Fix leak in ->state methods
    [Dagfinn Ilmari Mannsåker]
    (Github issue #30)

  - Add $sth->{pg_async_status} to determine async status of a statement handle.
    Values can be 0 (no async), 1 (async), or -1 (cancelled)
    [Greg Sabino Mullane, as requested by Dmytro Zagashev (ZDM)]
    (CPAN ticket #116172)

Revision 1.84 / (download) - annotate - [select for diffs], Mon Jun 5 14:22:25 2017 UTC (6 years, 5 months ago) by ryoon
Branch: MAIN
CVS Tags: pkgsrc-2017Q3-base, pkgsrc-2017Q3, pkgsrc-2017Q2-base, pkgsrc-2017Q2
Changes since 1.83: +2 -1 lines
Diff to previous 1.83 (colored)

Recursive revbump from lang/perl5 5.26.0

Revision 1.83 / (download) - annotate - [select for diffs], Mon May 29 10:56:13 2017 UTC (6 years, 6 months ago) by wiz
Branch: MAIN
Changes since 1.82: +2 -2 lines
Diff to previous 1.82 (colored)

Updated p5-DBD-postgresql to 3.6.2.

Version 3.6.2  Released May 23, 2017 (git tag 3.6.2)

  - Remove errant debugging aid from test suite



Version 3.6.1  Released May 22, 2017 (git tag 3.6.1)

  - Various fixes to support testing against Postgres 10beta
    [David Christensen]

Revision 1.82 / (download) - annotate - [select for diffs], Wed Apr 19 13:43:44 2017 UTC (6 years, 7 months ago) by wiz
Branch: MAIN
Changes since 1.81: +2 -3 lines
Diff to previous 1.81 (colored)

Updated p5-DBD-postgresql to 3.6.0.

Version 3.6.0  Released April 17, 2017 (git tag 3.6.0)

  - Make sure we do not inadvertently modify the string passed to prepare() when
    doing the new backslash escape manipulation.
    [Greg Sabino Mullane]
    (CPAN ticket #114000)

  - Fix bug where $DBD::Pg::DBDPG_DEFAULT not picked up as a magic
    string first time it is used in a script.
    [Greg Sabino Mullane]
    (CPAN ticket #112309)

  - Fix UTF8 flag handling in pg_(get|put)copydata
    [Dagfinn Ilmari Mannsåker]

  - Fix UTF8 double-encoding with pg_enable_utf8 = 0
    [Serge Pushkin]
    (CPAN ticket #103137)

  - Fix bug in quote_name which would fail to quote in some circumstances
    (Github Issue #22)

  - Allow clean parsing of new Postgres X.Y version format
    [Erik Rijkers    er at xs4all.nl]

  - Add pg_canonical_ids() and pg_canonical_names(), which returns information
    about each column in the result set.
    [Warstone    warstone at list.ru]
    (CPAN ticket #106858)

  - Map SQL_NUMERIC to PG_NUMERIC (instead of PG_FLOAT8)
    [Alice Maz    alice at alizemaz.com]
    (CPAN ticket #120358)

  - Force real, float, and double precision into SvNVs
    [Greg Sabino Mullane]
    (CPAN ticket #113683 and other places)

  - Support for number of rows greater than an "int". Requires support for same
    from a future version of libpq before it will work completely.
    [Greg Sabino Mullane]
    (CPAN ticket #102444)

  - Fix skipped test counts in Win32 builds
    [Andy Grundman]

  - Allow tests to work against Postgres 8.4 by tweaking client_encoding calls.
    [Pavel Raiskup    praiskup at redhat.com]
    (CPAN ticket #116179)

  - Silence warnings in t/02attribs.t and t/04misc.t
    [Dagfinn Ilmari Mannsåker]

  - Support binary COPY format
    [Dagfinn Ilmari Mannsåker]

  - Ensure tests do not use $ENV{PGSERVICE} or $ENV{PGDATABASE}
    [Erik Rijkers]

  - Switched canonical repo to git://github.com/bucardo/dbdpg.git

Revision 1.81 / (download) - annotate - [select for diffs], Sun Oct 9 21:41:56 2016 UTC (7 years, 1 month ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2017Q1-base, pkgsrc-2017Q1, pkgsrc-2016Q4-base, pkgsrc-2016Q4
Changes since 1.80: +2 -2 lines
Diff to previous 1.80 (colored)

Recursive bump for all users of pgsql now that the default is 95.

Revision 1.80 / (download) - annotate - [select for diffs], Wed Jun 8 19:22:25 2016 UTC (7 years, 5 months ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2016Q3-base, pkgsrc-2016Q3, pkgsrc-2016Q2-base, pkgsrc-2016Q2
Changes since 1.79: +2 -1 lines
Diff to previous 1.79 (colored)

Bump PKGREVISION for perl-5.24.

Revision 1.79 / (download) - annotate - [select for diffs], Sun Oct 4 06:19:52 2015 UTC (8 years, 2 months ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2016Q1-base, pkgsrc-2016Q1, pkgsrc-2015Q4-base, pkgsrc-2015Q4
Changes since 1.78: +2 -2 lines
Diff to previous 1.78 (colored)

Update to 3.5.3:

Version 3.5.3  Released October 1, 2015 (git commit 62ddf200106467ce9ad31d85715a4cdf63e8be14)

  - Minor fix in the test file t/03dbmethod.t

Revision 1.78 / (download) - annotate - [select for diffs], Wed Sep 30 19:23:08 2015 UTC (8 years, 2 months ago) by wiz
Branch: MAIN
Changes since 1.77: +2 -3 lines
Diff to previous 1.77 (colored)

Update to 3.5.2:

Version 3.5.2  Released September 29, 2015 (git commit be8026c9160c4a29580a97dab57cb595c5448949)

  - Fix enum value ordering on Postgres servers 9.1 and greater
    [Dagfinn Ilmari Mannsåker]

  - Return bigint values as plain integer values when they fit
    [Dagfinn Ilmari Mannsåker]

  - Fix typo in sprintf for get_info() SQL_DATA_SOURCE_NAME
    [Craig A. James]
    (CPAN bug #106604)

  - Set the repository in META.yml to github

Revision 1.77 / (download) - annotate - [select for diffs], Sun Jul 12 18:56:08 2015 UTC (8 years, 4 months ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2015Q3-base, pkgsrc-2015Q3
Changes since 1.76: +2 -2 lines
Diff to previous 1.76 (colored)

Comment out dependencies of the style
{perl>=5.16.6,p5-ExtUtils-ParseXS>=3.15}:../../devel/p5-ExtUtils-ParseXS
since pkgsrc enforces the newest perl version anyway, so they
should always pick perl, but sometimes (pkg_add) don't due to the
design of the {,} syntax.

No effective change for the above reason.

Ok joerg

Revision 1.76 / (download) - annotate - [select for diffs], Fri Jun 12 10:48:38 2015 UTC (8 years, 5 months ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2015Q2-base, pkgsrc-2015Q2
Changes since 1.75: +2 -1 lines
Diff to previous 1.75 (colored)

Recursive PKGREVISION bump for all packages mentioning 'perl',
having a PKGNAME of p5-*, or depending such a package,
for perl-5.22.0.

Revision 1.75 / (download) - annotate - [select for diffs], Thu Feb 19 13:19:16 2015 UTC (8 years, 9 months ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2015Q1-base, pkgsrc-2015Q1
Changes since 1.74: +2 -2 lines
Diff to previous 1.74 (colored)

Update to 3.5.1:

Version 3.5.1  Released February 17, 2015 (git commit 6c3457ee20c19ae492d29c490af6800e7e6a0774)

  - Prevent core dump if the second argument to the quote() method
    is anything but a hashref
    [Greg Sabino Mullane]
    (CPAN bug #101980)

  - Better "support" for SQL_ASCII servers in the tests.
    Allow env var DBDPG_TEST_ALWAYS_ENV to force use of DBI_DSN and DBI_USER in tests.
    [Greg Sabino Mullane]

  - Fix client_encoding detection on pre-9.1 servers
    [Dagfinn Ilmari Mannsåker]

  - Fix operator existence check in tests on pre-8.3 servers
    [Dagfinn Ilmari Mannsåker]

  - Documentation fix
    [Stuart A Johnston]

  - Fix pg_switch_prepared database handle documentation
    [Dagfinn Ilmari Mannsåker]

Revision 1.74 / (download) - annotate - [select for diffs], Wed Jan 7 23:21:16 2015 UTC (8 years, 10 months ago) by wiz
Branch: MAIN
Changes since 1.73: +2 -2 lines
Diff to previous 1.73 (colored)

Update to 3.5.0:

Version 3.5.0  Released January 6, 2015

  - Allow "placeholder escaping" by the use of a backslash directly before it, e.g.
    "SELECT 1 FROM jsontable WHERE foo \\? ?"
    will contain a single placeholder, and the first question mark will be sent directly
    to the backend to be parsed as an operator.
    [Greg Sabino Mullane, Tim Bunce]
    (CPAN bug #101030)

  - Improve the workings of the ping() method, so it always tests for
    a valid database backend and returns the correct true/false.
    [Greg Sabino Mullane, with help from Andrew Gierth and Tim Bunce]
    (CPAN bug #100648)

  - Add get_info(9000) => 1 to indicate driver can escape placeholders.
    [Tim Bunce]

  - In tests, force the client_encoding to UTF8, skip tests that involve
    characters not supported by the server_encoding
    [Dagfinn Ilmari Mannsåker <ilmari@ilmari.org>]

  - Fix memory leak when selecting from arrays
    [Dagfinn Ilmari Mannsåker, reported by Krystian Samp]

  - Make get_info much more efficient and slightly simpler.
    [Tim Bunce]

Revision 1.73 / (download) - annotate - [select for diffs], Thu Oct 9 14:06:05 2014 UTC (9 years, 1 month ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2014Q4-base, pkgsrc-2014Q4
Changes since 1.72: +1 -3 lines
Diff to previous 1.72 (colored)

Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles.

Revision 1.72 / (download) - annotate - [select for diffs], Thu Oct 9 13:44:35 2014 UTC (9 years, 1 month ago) by wiz
Branch: MAIN
Changes since 1.71: +1 -2 lines
Diff to previous 1.71 (colored)

Remove SVR4_PKGNAME, per discussion on tech-pkg.

Revision 1.71 / (download) - annotate - [select for diffs], Wed Oct 1 10:42:02 2014 UTC (9 years, 2 months ago) by wiz
Branch: MAIN
Changes since 1.70: +2 -2 lines
Diff to previous 1.70 (colored)

Update to 3.4.2:

Version 3.4.2  Released September 25, 2015 (git commit 61440e1f4ccb6c293c5838676da1942e0df67271)

  - Fix bug where single-quoted type arguments to the table_info()
    method were causing a SQL error.
    [Greg Sabino Mullane] (CPAN bug #99144)

Revision 1.70 / (download) - annotate - [select for diffs], Sat Sep 6 13:35:43 2014 UTC (9 years, 2 months ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2014Q3-base, pkgsrc-2014Q3
Changes since 1.69: +2 -2 lines
Diff to previous 1.69 (colored)

Update to 3.4.1:

Version 3.4.1  Released August 20, 2014 (git commit cfd146effde09c493ac7573408ac29d6d9cbed47)

    - Allow '%' again for the type in table_info() and thus tables()
      It's not documented or tested in DBI, but it used to work until
      DBD::Pg 3.4.0, and the change broke DBIx::Class::Schema::Loader, which
      uses type='%'.
      [Dagfinn Ilmari Mannsåker <ilmari@ilmari.org>]


Version 3.4.0  Released August 16, 2014 (git commit 7a5da12d84b4c2e9879f90fb6168f56c095071fa)

  - Cleanup and improve table_info()
    [Mike Pomraning <mjp@pilcrow.madison.wi.us>] (github issue #7)

    table_info() type searching now supports TABLE, VIEW, SYSTEM TABLE,
      SYSTEM VIEW, and LOCAL TEMPORARY

    table_info() object searching fully supports the above types.

    table_info() object searching no longer ignores invalid types - a filter
      of 'NOSUCH' will return no rows, and 'NOSUCH,LOCAL TEMPORARY' will
      return only temp objects.

    tableinfo() type filters are strictly matched now ... previously a
      search for SYSTEM TABLE would have fetched plain TABLE objects.

    table_info() now treats temporary tables and temporary views as LOCAL TEMPORARY

  - Make sure column_info() and table_info() can handle materialized views.
    [Greg Sabino Mullane] (CPAN bug #97032)

Revision 1.69 / (download) - annotate - [select for diffs], Sun Jul 27 23:37:21 2014 UTC (9 years, 4 months ago) by wen
Branch: MAIN
Changes since 1.68: +2 -3 lines
Diff to previous 1.68 (colored)

Update to 3.3.0

Upstream changes:
Version 3.3.0  Released May 31, 2014 (git commit 055f788cf96b380b9fe0e80b6cedb88f8d1799b8)

  - Major cleanup of UTF-8 support:
      Fix quoting of UTF-8 values
      Add support for UTF-8 statement strings
      Fix UTF-8 support in placeholders and return values
    [Dagfinn Ilmari Mannsæ°ÅÌer] (CPAN bug #95214 and #91655)
      Test that the Pg server agrees with us about the lengths of input strings.
      Refactor Unicode test to use anon hashes to describe the tests to run.
      Test pg_enable_utf8 of -1, in addition to 0 and 1.
      Extend the Unicode round-trip tests to verify ASCII, BMP and non-BMP code points.
      Test that characters created in the server reach the client correctly.
    [Nicholas Clark]

  - Rewrite foreign_key_info to be just one query
    [Dagfinn Ilmari Mannsì²ÅÌer]

  - Remove ODBC support from foreign_key_info
    [Dagfinn Ilmari Mannsì²ÅÌer]

  - Remove use of dTHX in functions in quote.c and types.c
    [Nicholas Clark]


Version 3.2.1  Released May 20, 2014 (git commit a56ef5c4715440d4fc2054df5477996b0e287467)

  - Stricter testing for array slices: disallow number-colon-number from being
    parsed as a placeholder.
    [Greg Sabino Mullane] (CPAN bug #95713)

  - Fix for small leak with AutoInactiveDestroy
    [David Dick] (CPAN bug #95505)

  - Adjust test regex to fix failing t/01_connect.t on some platforms
    [Greg Sabino Mullane]

  - Further tweaks to get PGINITDB working for test suite.
    [Nicholas Clark]


Version 3.2.0  Released May 15, 2014 (git commit 897974c2865259bb9786d8b0989f8e42db0a0d79)

  - Add new attribute pg_placeholder_nocolons to turn off all parsing of
    colons into placeholders.
    [Graham Ollis] (CPAN bug #95173)

  - Fix incorrect skip count for HandleSetErr
    [Greg Sabino Mullane] (CPAN bug #94841)

  - Don't attempt to use the POSIX signalling stuff if the OS is Win
    [Greg Sabino Mullane] (CPAN bug ##94841)

  - Fix missing check for PGINITDB in the test suite.
    [Nicholas Clark]


Version 3.1.1  Released April 6, 2014 (git commit d337f93133e67267d54b65dc22a23f06e6883ad0)

  - Minor adjustments so tests pass in varying locales.


Version 3.1.0  Released April 4, 2014 (git commit 26517a3531f93de79375a02da45a79789cd3caae)

  - Make sure UTF-8 enabled notifications are handled correctly
    [Greg Sabino Mullane]

  - Allow "WITH" and "VALUES" as valid words starting a DML statement
    [Greg Sabino Mullane] (CPAN bug #92724)

Revision 1.68 / (download) - annotate - [select for diffs], Thu May 29 23:35:27 2014 UTC (9 years, 6 months ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2014Q2-base, pkgsrc-2014Q2
Changes since 1.67: +2 -1 lines
Diff to previous 1.67 (colored)

Bump for perl-5.20.0.
Do it for all packages that
* mention perl, or
* have a directory name starting with p5-*, or
* depend on a package starting with p5-
like last time, for 5.18, where this didn't lead to complaints.
Let me know if you have any this time.

Revision 1.67 / (download) - annotate - [select for diffs], Thu Feb 6 13:11:32 2014 UTC (9 years, 9 months ago) by abs
Branch: MAIN
CVS Tags: pkgsrc-2014Q1-base, pkgsrc-2014Q1
Changes since 1.66: +3 -3 lines
Diff to previous 1.66 (colored)

Updated databases/p5-DBD-postgresql to 3.0.0

Version 3.0.0

  - Major change in UTF-8 handling. If client_encoding is set to UTF-8,
    always mark returned Perl strings as utf8. See the pg_enable_utf8 docs
    for more information.
    [Greg Sabino Mullane, David E. Wheeler, David Christensen]

  - Bump DBI requirement to 1.614

  - Bump Perl requirement to 5.8.1

  - Add new handle attribute, switch_prepared, to control when we stop
    using PQexecParams and start using PQexecPrepared. The default is 2:
    in previous versions, the effective behavior was 1 (i.e. PQexecParams
    was never used).
    [Greg Sabino Mullane]

  - Better handling of items inside of arrays, particularly bytea arrays.
    [Greg Sabino Mullane] (CPAN bug #91454)

  - Map SQL_CHAR back to bpchar, not char
    [Greg Sabino Mullane, reported by H.Merijn Brand]

  - Do not force oids to Perl ints
    [Greg Sabino Mullane] (CPAN bug #85836)

  - Return better sqlstate codes on fatal errors
    [Rainer Weikusat]

  - Better prepared statement names to avoid bug
    [Spencer Sun] (CPAN bug #88827)

  - Add pg_expression field to statistics_info output to show
    functional index information
    [Greg Sabino Mullane] (CPAN bug #76608)

  - Adjust lo_import_with_oid check for 8.3
    (CPAN bug #83145)

  - Better handling of libpq errors to return SQLSTATE 08000
    [Stephen Keller]

  - Make sure CREATE TABLE .. AS SELECT returns rows in non do() cases

  - Add support for AutoInactiveDestroy
    [David Dick] (CPAN bug #68893)

  - Fix ORDINAL_POSITION in foreign_key_info
    [Dagfinn Ilmari Mannsåker] (CPAN bug #88794)

  - Fix foreign_key_info with unspecified schema
    [Dagfinn Ilmari Mannsåker] (CPAN bug #88787)

  - Allow foreign_key_info to work when pg_expand_array is off
    [Greg Sabino Mullane and Tim Bunce] (CPAN bug #51780)

  - Remove math.h linking, as we no longer need it
    (CPAN bug #79256)

  - Spelling fixes
    (CPAN bug #78168)

  - Better wording for the AutoCommit docs
    (CPAN bug #82536)

  - Change NOTICE to DEBUG1 in t/02attribs.t test for handle attribute "PrintWarn":
    implicit index creation is now quieter in Postgres.
    [Erik Rijkers]

  - Use correct SQL_BIGINT constant for int8
    [Dagfinn Ilmari Mannsåker]

  - Fix assertion when binding array columns on debug perls >= 5.16
    [Dagfinn Ilmari Mannsåker]

  - Adjust test to use 3 digit exponential values
    [Greg Sabino Mullane] (CPAN bug #59449)

  - Avoid reinstalling driver methods in threads
    [Dagfinn Ilmari Mannsåker] (CPAN bug #83638)

  - Make sure App::Info does not prompt for pg_config location
    if AUTOMATED_TESTING or PERL_MM_USE_DEFAULT is set
    [David E. Wheeler] (CPAN bug #90799)

  - Fix typo in docs for pg_placeholder_dollaronly
    [Bryan Carpenter] (CPAN bug #91400)

  - Cleanup dangling largeobjects in tests
    [Fitz Elliott] (CPAN bug #92212)

  - Fix skip test counting in t/09arrays.t
    [Greg Sabino Mullane] (CPAN bug #79544)

  - Explicitly specify en_US for spell checking
    [Dagfinn Ilmari Mannsåker] (CPAN bug #91804)

Revision 1.66 / (download) - annotate - [select for diffs], Fri May 31 12:39:50 2013 UTC (10 years, 6 months ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2013Q4-base, pkgsrc-2013Q4, pkgsrc-2013Q3-base, pkgsrc-2013Q3, pkgsrc-2013Q2-base, pkgsrc-2013Q2
Changes since 1.65: +2 -1 lines
Diff to previous 1.65 (colored)

Bump all packages for perl-5.18, that
a) refer 'perl' in their Makefile, or
b) have a directory name of p5-*, or
c) have any dependency on any p5-* package

Like last time, where this caused no complaints.

Revision 1.65 / (download) - annotate - [select for diffs], Sun Oct 21 22:05:40 2012 UTC (11 years, 1 month ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2013Q1-base, pkgsrc-2013Q1, pkgsrc-2012Q4-base, pkgsrc-2012Q4
Changes since 1.64: +2 -3 lines
Diff to previous 1.64 (colored)

Update to 2.19.3:

Version 2.19.3  Released August 21, 2012

  - Fix bug in pg_st_split_statement causing segfaults
    (CPAN bug #79035)

Revision 1.64 / (download) - annotate - [select for diffs], Wed Oct 3 21:54:17 2012 UTC (11 years, 2 months ago) by wiz
Branch: MAIN
Changes since 1.63: +2 -2 lines
Diff to previous 1.63 (colored)

Bump all packages that use perl, or depend on a p5-* package, or
are called p5-*.

I hope that's all of them.

Revision 1.63 / (download) - annotate - [select for diffs], Tue Oct 2 21:25:28 2012 UTC (11 years, 2 months ago) by asau
Branch: MAIN
Changes since 1.62: +1 -3 lines
Diff to previous 1.62 (colored)

Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days.

Revision 1.62 / (download) - annotate - [select for diffs], Sun Aug 5 10:02:10 2012 UTC (11 years, 4 months ago) by obache
Branch: MAIN
CVS Tags: pkgsrc-2012Q3-base, pkgsrc-2012Q3
Changes since 1.61: +2 -1 lines
Diff to previous 1.61 (colored)

Bump PKGREVISION for change of PostgreSQL default version to 9.1.

Revision 1.60.6.1 / (download) - annotate - [select for diffs], Sat May 19 10:51:32 2012 UTC (11 years, 6 months ago) by tron
Branch: pkgsrc-2012Q1
Changes since 1.60: +2 -2 lines
Diff to previous 1.60 (colored) next main 1.61 (colored)

Pullup ticket #3791 - requested by he
databases/p5-DBD-postgresql: security update

Revisions pulled up:
- databases/p5-DBD-postgresql/Makefile                          1.61
- databases/p5-DBD-postgresql/distinfo                          1.31

---
   Module Name:	pkgsrc
   Committed By:	he
   Date:		Fri May 18 09:06:58 UTC 2012

   Modified Files:
   	pkgsrc/databases/p5-DBD-postgresql: Makefile distinfo

   Log Message:
   Update to version 2.19.2.  Changes:

   Version 2.19.2  Released March 12, 2012
     - Fix errors when multiple same-named placeholders are used. [GSM]
       (CPAN bug #75713)

   Version 2.19.1  Released March 10, 2012 (git commit db6f6da00467c7ea28d32c4df97e93ccc4d38f2b)
     - Fix crash when passing in an array with undefined elements. [GSM]

   Version 2.19.0  Released March 9, 2012 (git commit 05ab092905ce6891ed83e173412ee70d6cdb8cb5)
     - Use proper formatting for warn() and croak() (CPAN bug #75642)
       [Niko Tyni]
     - Fix localized regex in test (CPAN bug #70759)
     - Fix for named placeholders (CPAN bug #70953) [Jan Pazdziora]
     - Various fixes to the array-marshalling code [Noah Misch, Mark
       Stosberg, and David Christensen] (CPAN bug #58552)
     - Allow hi-bit chars in dollar-quoted identifiers
       [David Christensen] (CPAN bug #73832)
     - Have do() return count for things such as CREATE TABLE .. AS SELECT
       Will only work on 9.0 or better. (CPAN bug #71073) [Pavel Stehule]
     - Better error message when trying to do things post-disconnect [GSM]
     - Always respect pg_server_prepare=0 by using PQexec not PQexecParams. [GSM]
     - Fix error in async docs (CPAN bug #72812)
     - Switch from subversion to git.
       git clone git://bucardo.org/dbdpg.git [GSM]

Revision 1.61 / (download) - annotate - [select for diffs], Fri May 18 09:06:58 2012 UTC (11 years, 6 months ago) by he
Branch: MAIN
CVS Tags: pkgsrc-2012Q2-base, pkgsrc-2012Q2
Changes since 1.60: +2 -2 lines
Diff to previous 1.60 (colored)

Update to version 2.19.2.  Changes:

Version 2.19.2  Released March 12, 2012
  - Fix errors when multiple same-named placeholders are used. [GSM]
    (CPAN bug #75713)

Version 2.19.1  Released March 10, 2012 (git commit db6f6da00467c7ea28d32c4df97e93ccc4d38f2b)
  - Fix crash when passing in an array with undefined elements. [GSM]

Version 2.19.0  Released March 9, 2012 (git commit 05ab092905ce6891ed83e173412ee70d6cdb8cb5)
  - Use proper formatting for warn() and croak() (CPAN bug #75642)
    [Niko Tyni]
  - Fix localized regex in test (CPAN bug #70759)
  - Fix for named placeholders (CPAN bug #70953) [Jan Pazdziora]
  - Various fixes to the array-marshalling code [Noah Misch, Mark
    Stosberg, and David Christensen] (CPAN bug #58552)
  - Allow hi-bit chars in dollar-quoted identifiers
    [David Christensen] (CPAN bug #73832)
  - Have do() return count for things such as CREATE TABLE .. AS SELECT
    Will only work on 9.0 or better. (CPAN bug #71073) [Pavel Stehule]
  - Better error message when trying to do things post-disconnect [GSM]
  - Always respect pg_server_prepare=0 by using PQexec not PQexecParams. [GSM]
  - Fix error in async docs (CPAN bug #72812)
  - Switch from subversion to git.
    git clone git://bucardo.org/dbdpg.git [GSM]

Revision 1.60 / (download) - annotate - [select for diffs], Sat Aug 6 20:31:02 2011 UTC (12 years, 4 months ago) by adam
Branch: MAIN
CVS Tags: pkgsrc-2012Q1-base, pkgsrc-2011Q4-base, pkgsrc-2011Q4, pkgsrc-2011Q3-base, pkgsrc-2011Q3
Branch point for: pkgsrc-2012Q1
Changes since 1.59: +3 -4 lines
Diff to previous 1.59 (colored)

Changes 2.18.1:
* Fix LANG testing issue
* Fix bug when async commands issued immediately after a COPY

Revision 1.59 / (download) - annotate - [select for diffs], Wed May 4 09:46:37 2011 UTC (12 years, 7 months ago) by adam
Branch: MAIN
CVS Tags: pkgsrc-2011Q2-base, pkgsrc-2011Q2
Changes since 1.58: +3 -3 lines
Diff to previous 1.58 (colored)

Changes 2.18.0:
* Fix memory leak when binding arrays
* Fix memory leak with ParamValues
* New cancel() method per DBI spec
* Fix memory leak in handle_old_async (missing PQclear)
* Fix memory leak in pg_db_cancel (missing PQclear)
* Mark pg_getcopydata strings as UTF8 as needed
* Function dequote_bytea returning void should not try to return something
* Fix the number of tests to skip in t/01connect.t when the $DBI_DSN
  environment variable lacks a database specification
* Fix algorithm for skipping tests in t/06bytea.t when running on a version
  of PostgreSQL lower than 9.0
* Small tweaks to get tests working when compiled against Postgres 7.4
* Fix failing test when run as non-superuser

Revision 1.58 / (download) - annotate - [select for diffs], Sat Aug 21 16:32:57 2010 UTC (13 years, 3 months ago) by seb
Branch: MAIN
CVS Tags: pkgsrc-2011Q1-base, pkgsrc-2011Q1, pkgsrc-2010Q4-base, pkgsrc-2010Q4, pkgsrc-2010Q3-base, pkgsrc-2010Q3
Changes since 1.57: +2 -1 lines
Diff to previous 1.57 (colored)

Bump the PKGREVISION for all packages which depend directly on perl,
to trigger/signal a rebuild for the transition 5.10.1 -> 5.12.1.

The list of packages is computed by finding all packages which end
up having either of PERL5_USE_PACKLIST, BUILDLINK_API_DEPENDS.perl,
or PERL5_PACKLIST defined in their make setup (tested via
"make show-vars VARNAMES=..."), minus the packages updated after
the perl package update.

sno@ was right after all, obache@ kindly asked and he@ led the
way. Thanks!

Revision 1.57 / (download) - annotate - [select for diffs], Thu May 20 13:30:49 2010 UTC (13 years, 6 months ago) by adam
Branch: MAIN
CVS Tags: pkgsrc-2010Q2-base, pkgsrc-2010Q2
Changes since 1.56: +2 -4 lines
Diff to previous 1.56 (colored)

Changes 2.17.1:
* Only use lo_import_with_oid if Postgres libraries are 8.4 or better

Changes 2.17.0:
* Do not automatically ROLLBACK on a failed pg_cancel
* Added support for new lo_import_with_oid function.
* Don't limit stored user name to \w in tests
* Allow tests to support versions back to Postgres 7.4

Revision 1.56 / (download) - annotate - [select for diffs], Wed Feb 10 19:34:05 2010 UTC (13 years, 9 months ago) by joerg
Branch: MAIN
CVS Tags: pkgsrc-2010Q1-base, pkgsrc-2010Q1
Changes since 1.55: +2 -1 lines
Diff to previous 1.55 (colored)

Bump revision for change of PostgreSQL default version.

Revision 1.55 / (download) - annotate - [select for diffs], Tue Feb 2 21:54:16 2010 UTC (13 years, 10 months ago) by sno
Branch: MAIN
Changes since 1.54: +3 -4 lines
Diff to previous 1.54 (colored)

Updating databases/p5-DBD-postgresql from 2.16.0 to 2.16.1

pkgsrc changes:
- Correcting license definition

Upstream changes:
2.16.1 Released January 20, 2010
  - Output error messages in UTF-8 as needed. Reported by
    Michael Hofmann. [GSM] (CPAN bug #53854)

Revision 1.54 / (download) - annotate - [select for diffs], Wed Jan 20 15:01:31 2010 UTC (13 years, 10 months ago) by wiz
Branch: MAIN
Changes since 1.53: +2 -2 lines
Diff to previous 1.53 (colored)

Update to 2.16.0:

2.16.0 Released December 17, 2009

 - Put in a test for high-bit characters in bytea handling.
   [Bryce Nesbitt] (see also CPAN bug #39390)

 - Better SQLSTATE code on connection failure (CPAN bug #52863)
   [Chris Travers with help from Andrew Gierth]

 - Fixed POD escapes (CPAN bug #51856) [FWIE@cpan.org]

Revision 1.53 / (download) - annotate - [select for diffs], Sun Aug 16 16:04:38 2009 UTC (14 years, 3 months ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2009Q4-base, pkgsrc-2009Q4, pkgsrc-2009Q3-base, pkgsrc-2009Q3
Changes since 1.52: +2 -2 lines
Diff to previous 1.52 (colored)

Update to 2.15.1:

2.15.1 Released August 7, 2009

  - Release to fix the SIGNATURE file. [GSM]

2.15.0 Released August 4, 2009 (subversion r13164)

  - Use PQexecPrepared even when no placeholders (CPAN bug #48155) [GSM]
  - Allow execute_array and bind_param_array to take oddly numbered items,
    such that DBI will make missing entries undef/null (CPAN bug #39829) [GSM]
  - Put single quotes around array literals when quoting arrays via
    the quote() method. Per report from David Garamond (CPAN bug #48420) [GSM]

2.14.1 Released July 28, 2009 (subversion r13140)

  - Remove invalid bigint assignment [Tim Bunce]

2.14.0 Released July 27, 2009 (subversion r13130)

  - Make quoting of int, floats, and names much safer. (CPAN bug #41565) [GSM]
  - Make quoting of geometric types respect all valid chars (CPAN bug #41565) [GSM]
  - Fix quoting of booleans to respect more Perlish variants (CPAN bug #41565) [GSM]
  - Return ints and bools-cast-to-number from the db as true Perlish numbers.
    (CPAN bug #47619) [GSM]
  - Fix backslash quoting of arrays (CPAN bug #46732) [GSM]
  - Fix error when destringifying array starting with '[x:y]='. Per report from
    Jeff Trout [GSM]
  - Fix problem with foreign_key_info() and NAME_uc (CPAN bug #46109) [GSM]
  - Make foreign_key_info() respect FetchHashKeyName (CPAN bug #46103) [GSM]
  - Fix Makefile.PL to apply POSTGRES_INCLUDE in a saner way.
    (CPAN bug #45769) [GAURAV@cpan.org]
  - Improve Win32 README notes [Curtis Jewell]
  - Fix spelling error in type_info (CPAN bug #47786) [justin.d.hunter@gmail.com]
  - Add functions to support MS VC++ 7.0 (CPAN bug #47858) [Taro Nishino]

Revision 1.52 / (download) - annotate - [select for diffs], Fri Apr 24 07:26:40 2009 UTC (14 years, 7 months ago) by sno
Branch: MAIN
CVS Tags: pkgsrc-2009Q2-base, pkgsrc-2009Q2
Changes since 1.51: +3 -2 lines
Diff to previous 1.51 (colored)

PkgSrc changes:
  - Updating package for p5 module DBD::Pg to 2.13.1 from 2.13.0
  - Setting license to artistic-2.0

Upstream changes:
2.13.1 Released April 23, 2009
  - Fix leak in pg_warn (CPAN bug #45163) [rweikusat@mssgmbh.com]

Revision 1.51 / (download) - annotate - [select for diffs], Wed Apr 15 07:16:26 2009 UTC (14 years, 7 months ago) by sno
Branch: MAIN
Changes since 1.50: +3 -5 lines
Diff to previous 1.50 (colored)

PkgSrc changes:
  - Updating package for p5 module DBD::Pg to 2.13.0
  - Set license to artistic-2.0
  - Add p5-DBI to DEPENDS (according to META.yml)

Upstream changes:
2.13.0 Released April 13, 2009

  - Ensure we always set sqlstate inside of pg_st_prepare_statement
    (CPAN bug #44732) [rweikusat@mssgmbh.com]
  - When libpq has a connection error, return SQLSTATE 08000 ( "CONNECTION EXCEPTION" )
    instead of the more generic 02000 ( "DATA EXCEPTION" ) (CPAN bug #44744)
    [rweikusat@mssgmbh.com]
  - Fix minor Perl::Critic nags (CPAN bug #44704) (Debian #bug 521969) [GSM]
  - Clarify change of $dbh->{Name} behavior (CPAN bug 44985) [GSM]

Revision 1.50 / (download) - annotate - [select for diffs], Sat Apr 11 21:37:46 2009 UTC (14 years, 7 months ago) by sno
Branch: MAIN
Changes since 1.49: +2 -2 lines
Diff to previous 1.49 (colored)

PkgSrc changes:
  - updating module to 1.12.0

Upstream changes:
2.12.0 Released March 28, 2009

  - Change large object interface from lo_* to pg_lo_* and make them accessible
    via direct $dbh calls (e.g. $dbh->pg_lo_import instead of $dbh->func(..,'pg_lo_import').
    The use of $dbh->func(... 'lo_*') is deprecated. [GSM] (CPAN bug #44467)
  - Throw an exception for large_object functions called when AutoCommit is on,
    but allow pg_lo_import and pg_lo_export to work. Reported by Kynn Jones.
    [GSM] (CPAN bug #44461)
  - Fix a memory leak when parsing returned arrays. Reported by B~A!lint Szilakszi.
    [GSM] (CPAN bug #44225)
  - Do proper dequoting of boolean arrays [Armando Santos, GSM] (CPAN bug #43768)
  - Use pg_get_expr in column_info when available [Adam Sj~A,gren]
  - Fix minor bugs in POD docs. [Frank Wiegand] (CPAN bug #44242)
  - Fix minor bug in POD docs. [Tim Mattison]

Revision 1.49 / (download) - annotate - [select for diffs], Sun Jan 18 23:09:00 2009 UTC (14 years, 10 months ago) by he
Branch: MAIN
CVS Tags: pkgsrc-2009Q1-base, pkgsrc-2009Q1
Changes since 1.48: +2 -2 lines
Diff to previous 1.48 (colored)

Update from version 2.11.7 to 2.11.8.

This despite one of the selftests still fail.

Upstream changes:

2.11.8 Released December 28, 2008

  - Fix minor bug in t/12placeholders.t test (CPAN bug #41723)

Revision 1.48 / (download) - annotate - [select for diffs], Thu Dec 18 01:00:43 2008 UTC (14 years, 11 months ago) by he
Branch: MAIN
CVS Tags: pkgsrc-2008Q4-base, pkgsrc-2008Q4
Changes since 1.47: +3 -4 lines
Diff to previous 1.47 (colored)

Update from version 2.2.2nb3 to 2.11.7.

This despite one of the self-tests failing.

Pkgsrc changes:
 o Change HOMEPAGE to using search.cpan.org


Upstream changes:

2.11.7 Released December 13, 2008

  - Fix placeholder parsing logic (CPAN bug #41582)

2.11.6 Released November 30, 2008 (subversion r12126)

  - Only set UTF8 flag on array items after UTF8 test. (CPAN bug #41253)
    [Armando Santos]

2.11.5 Released November 24, 2008 (subversion r12102)

  - Clear prepared_statement name on failure to prepare: prevents
    the wrong error when using prepare_cached. [GSM]

2.11.4 Released November 12, 2008

  - Don't set LC_MESSAGES unless superuser in tests. Remove all
    language-specific string checking for tests. (CPAN bug #40604)

2.11.3 Released November 3, 2008 (subversion r12031)

  - Force LC_MESSAGES to 'C' inside tests (CPAN bug #40604)
  - Minor compiler tweaks.
  - Fix small POD error (CPAN bug #40209)
  - Tweak Perl::Critic policy list (CPAN bug #40130)

2.11.2 Released October 15, 2008 (subversion r11983)

  - Fix core dump when invalid placeholders used. (CPAN bug #40075) [GSM]

2.11.1 Released October 14, 2008 (subversion r11980)

  - $sth->{ParamTypes} returns 'TYPE' when possible.

2.11.0 Released October 13, 2008 (subversion r11976)

  - $sth->{ParamTypes} now returns a hashref per the DBI docs. [GSM]
  - Adjustment of Makefile.PL to fix problem with Strawberry Perl.
    Thanks to Martin Evan (martin.evans@easysoft.com) and Brian
    (elspicyjack@gmail.com) on the dbi-users list.

2.10.7 Released September 22, 2008 (subversion r11869)

  - Fix test issue when dbname contains dashes.
    [Rainer Tammer]
  - Revert META.yml to 1.0, until such time as tools
    can handle 1.1 (CPAN bug #39461) [Taro Nishino]

2.10.6 Released September 19, 2008 (subversion r11830)

  - Correctly quote all bytea characters. (CPAN bug #39390) [Rod Taylor]
  - Prevent core dump when checking $dbh->{standard_conforming_strings}
    on older servers. [GSM]
  - Skip unicode tests if server is set to 'LATIN1' [GSM]

2.10.5 Released September 16, 2008 (subversion r11800)

  - Fix SIGNATURE file

2.10.4 Released September 16, 2008 (subversion r11797)

  - Force use of math library when compiling. Per report
    of AIX problems by Rainer Tammer.

2.10.3 Released August 31, 2008 (subversion r11706)

  - Previous version had wrong SIGNATURE file

2.10.2 Released August 31, 2008 (subversion r11704)

  - Fix minor problem in t/99_yaml.t

2.10.1 Released August 31, 2008 (subversion r11697)

  - Minor testing fix.

2.10.0 Released August 26, 2008 (subversion r11678)

  - Add the 'DBD' trace setting to output only non-DBI trace messages,
    and allow 'dbd_verbose' as a connection attribute for the same
    effect. [GSM]
  - Fix a minor problem with testing against 7.4 databases [GSM]
  - Allow multi-statement do() calls with parameters to work if pg_server_prepare
    is set to 0 (CPAN bug #38623) [GSM]

2.9.2 Released August 18, 2008 (subversion r11664)

  - Empty Postgres arrays should return empty Perl arrays, not undef.
    (CPAN bug #38552) [David E. Wheeler]

2.9.1 Released August 17, 2008 (subversion r11660)

  - Return undef when mapping Postgres array to Perl array and
    the array is empty '{}'. (CPAN bug #38552) [GSM]
  - Minor documentation improvements. [GSM]

2.9.0 Released August 3, 2008 (subversion r11624)

  - Add support for database handle attribute "ReadOnly". This allows
    use of $dbh->{ReadOnly} = 1 to enforce read only mode at
    the server level. [GSM]
  - Move PQexec structures to statement handle, to prevent
    excessive malloc and free within execute function. [GSM]
  - Add more attribute tests, improve testing system. [GSM]
  - Many documentation improvements. [GSM]
  - Win32 build improvements [T.J. Ferraro]

2.8.7 Released July 24, 2008 (subversion r11582)

  - Modify test scripts to work better on FreeBSD boxes. [GSM]
  - Much documentation improvement and POD tweaking. [GSM]

2.8.6 Released July 21, 2008 (subversion r11558)

  - More testing improvements to increase odds of all tests being
    run, especially when testing as root. [GSM]

2.8.5 Released July 13, 2008 (subversion r11529)

  - Fix an obscure bug in which a coredump occurs if client_min_messages
    is set to DEBUG3 or greater, and we then exit without disconnecting
    while AutoCommit is off. The new behavior is to simply not attempt to
    output the debugging information about the final 'rollback'. [GSM]
  - More documentation improvements. [GSM]

2.8.4 Released July 10, 2008 (subversion r11520)

  - Minor Perl::Critic test adjustments. [GSM]
  - Documentation enhancements. [GSM]
  - Yet more minor testing tweaks. [GSM]

2.8.3 Released July 6, 2008 (subversion r11495)

  - Minor testing functionality tweaks, lots of test cleanups, minor doc enhancements. [GSM]

2.8.2 Released June 29, 2008 (subversion r11466)

  - Minor testing tweaks, doc fixes. [GSM]

2.8.1 Released June 11, 2008 (subversion r11417)

  - Force testing to use a custom socket dir, to avoid
    permission problems. Thanks to Frank Wiegand for
    help in uncovering this. [GSM]

2.8.0 Released June 1, 2008 (subversion r11366)

  - Added in payload strings for LISTEN/NOTIFY in 8.4
    via $dbh->pg_notifies() [GSM]
  - Fixed problem preventing some pg_type bind_arrays
    from working [GSM]
  - Fix tests in t.04misc.t to handle Windows newlines.
    (CPAN bug #36237) [Ian Macdonald]
  - Clean up get_info() information. [GSM]

2.7.2 Released May 14, 2008 (subversion r11269)

  - Handle embedded commas in quotes properly when destringifying
    arrays.(CPAN bug #35862) [GSM]
  - Fix typo in docs with trace_parser_flags() (Martin J. Evans)
  - More testing tweaks [GSM]

2.7.1 Released May 11, 2008 (subversion r11250)

  - Yet more minor testing tweaks. [GSM]

2.7.0 Released May 10, 2008 (subversion r11239)

  - Have $dbh->quote() return E'' when server is >= 8.1 and string contains
    backslashes. Fixes any problems with standard_conforming_strings.
    (CPAN bug #27538) [GSM]

2.6.6 Released May 7, 2008 (subversion r11214)

  - Fix minor problem in t/99_spellcheck.t [GSM]

2.6.5 Released May 7, 2008 (subversion r11209)

  - Add spell checker to tests. [GSM]
  - More tweaks to the testing suite. [GSM]

2.6.4 Released May 2, 2008 (subversion r11186)

  - More tweaks to the test suite. [GSM]

2.6.3 Released May 1, 2008 (subversion r11169)

  - Minor tweaks to the test suite. [GSM]

2.6.2 Released April 30, 2008 (subversion r11161)

  - Fix coredump when pg_getcopydata copies 0 rows into a
    freshly created var. (CPAN bug #35556) [David Harris]
  - Allow 'make test' create a test database from scratch if
    it cannot find an existing one to use. [GSM]

2.6.1 Released April 22, 2008 (subversion r11133)

  - Don't free placeholder section, fixes problem when using
    more than one named placeholder with the same name.
    (CPAN bug #35303) [GSM]

2.6.0 Released April 16, 2008 (subversion r11095)

  - Make pg_notifies a true function, so that you can now
    use $dbh->pg_notifies instead of $dbh->func('pg_notifies') [GSM]
  - Various performance improvements [GSM]
  - Fix minor build and compilation issues with Strawberry Perl [GSM]
  - Add Bundle::DBD::Pg [GSM]

2.5.1 Released April 7, 2008 (subversion r11056)

  - Correctly handle negative PID numbers on Win32 systems when
    generating prepared statement names (CPAN bug # 34738) [GSM]

2.5.0 Released March 23, 2008 (subversion r10990)

  - Add pg_enum_values to $dbh->column_info()
    [Dave Rolsky] (CPAN ticket #34351)
  - Minor test fixes. [GSM]

2.4.0 Released March 21, 2008 (subversion r10974)

  - Remove problematic and unneeded Test::Warn test from 00basic.t.
  - Add $sth->{pg_current_row} [GSM]

2.3.0 Released March 19, 2008 (subversion r10951)

  - Add $sth->{pg_bound} and $sth->{pg_numbound} [GSM]
  - Fix broken call to $sth->{pg_segments} [GSM]

Revision 1.47 / (download) - annotate - [select for diffs], Sun Oct 19 19:17:44 2008 UTC (15 years, 1 month ago) by he
Branch: MAIN
Changes since 1.46: +2 -2 lines
Diff to previous 1.46 (colored)

Bump the PKGREVISION for all packages which depend directly on perl,
to trigger/signal a rebuild for the transition 5.8.8 -> 5.10.0.

The list of packages is computed by finding all packages which end
up having either of PERL5_USE_PACKLIST, BUILDLINK_API_DEPENDS.perl,
or PERL5_PACKLIST defined in their make setup (tested via
"make show-vars VARNAMES=...").

Revision 1.46 / (download) - annotate - [select for diffs], Sun Oct 12 21:21:19 2008 UTC (15 years, 1 month ago) by dsainty
Branch: MAIN
Changes since 1.45: +2 -2 lines
Diff to previous 1.45 (colored)

Allow perl-5.10.0 to satisfy the dependency on p5-version.

Don't bother bumping PKGREVISION, p5-version claims to be a NOP in the
presence of built in support.

Revision 1.45 / (download) - annotate - [select for diffs], Fri Jun 20 01:09:11 2008 UTC (15 years, 5 months ago) by joerg
Branch: MAIN
CVS Tags: pkgsrc-2008Q3-base, pkgsrc-2008Q3, pkgsrc-2008Q2-base, pkgsrc-2008Q2, cwrapper, cube-native-xorg-base, cube-native-xorg
Changes since 1.44: +3 -1 lines
Diff to previous 1.44 (colored)

Add DESTDIR support.

Revision 1.44 / (download) - annotate - [select for diffs], Mon Mar 17 13:29:03 2008 UTC (15 years, 8 months ago) by dsainty
Branch: MAIN
CVS Tags: pkgsrc-2008Q1-base, pkgsrc-2008Q1
Changes since 1.43: +4 -2 lines
Diff to previous 1.43 (colored)

Add dependency on p5-version, which appears to be a new requirement.

Bump PKGREVISION, because the package will gladly build and install
without p5-version, it just won't actually work unless p5-version is
available both at build time and at run time.

Revision 1.43 / (download) - annotate - [select for diffs], Thu Mar 13 17:38:48 2008 UTC (15 years, 8 months ago) by joerg
Branch: MAIN
Changes since 1.42: +2 -1 lines
Diff to previous 1.42 (colored)

Make PostgreSQL 8.2 the default version. Bump all packages using it.
Remove PostgreSQL 8.0 as choice.

Revision 1.42 / (download) - annotate - [select for diffs], Thu Mar 13 00:31:12 2008 UTC (15 years, 8 months ago) by tonnerre
Branch: MAIN
Changes since 1.41: +2 -2 lines
Diff to previous 1.41 (colored)

Updated databases/p5-DBD-postgresql 1.49 -> 2.2.2

2.2.2
	- Add parse_trace_flag as statement handle method.

2.2.1
	- Fixed memory leaks in dbdimp.c
	- Fixed strlen problems in dbdimp.c
	- Change local trace_flags to lowercase.

2.1.0
	- Add PERL_NO_GET_CONTEXT #define to improve performance on threaded Perls
	- Raise the minimum DBI version to 1.52.
	- Allow arrayrefs into bind_col

2.0.0
	- Make minimum supported server 7.4.
	- Overhaul COPY functions: deprecate pg_getline, pg_putline,
		and pg_endcopy. The new functions are pg_getcopydata,
		pg_getcopydata_async, pg_putcopydata, and pg_putcopyend.
	- Add support for arrays: can pass in arrayrefs to execute, and
		they are automatically returned as arrays when fetching.
	- Add support for asynchronous queries.
	- Allow raw transaction statements through - in other words,
		do not croak if $dbh->prepare("COMMIT") is attempted.
	- Check transaction status after each command, to allow
		things such as 'PREPARE TRANSACTION' to work properly.
	- Add $dbh->{pg_placeholder_dollaronly} to allow '?' and other symbols
		to be used in prepared statements without getting interpreted as
		placeholders, i.e. the geometric operator '?#'
	- Fix memory leak in bytea quoting.
	- Fix memory leak in pg_notifies.
	- Fix memory leak when using savepoints.
	- Use adbin, not adsrc, when figuring out the sequence name for the
		last_insert_id() method. This allows the function to work properly
		if the sequence name is changed. Note that {pg_cache=>0} should be
		passed to the function if you expect this might happen.
	- Use unsigned chars when parsing passed-in queries, preventing UTF-8
		strings from ruining the prepare. UTF-16 may still cause problems.
	- Fix crash when executing query with two placeholders side by side.
	- Skip item if no matching key in foreign_key_info.
	- Fix bug in last_insert_id.
	- Fix pg_description join in table_info().
	- Make sure arrays handle UTF-8 smoothly.
	- Force column names to respect utf8-ness.
	- Make sure array items are marked as UTF as needed.
	- Force SQL_REAL and SQL_NUMERIC to be float8 not float4.
	- Allow objects with stringification overloading to work with quote().
	- Switch from pow to powf to support AIX compiler issue.
	- Add three new columns to column_info, to return unquoted
		version: pg_schema, pg_table, and pg_columns. Add all
		three to primary_key_info, and the first two to table_info.
	- Change $dbh->{User} to $dbh->{Username}
	- Change $dbh->{Name} to return the entire DSN string, minus the
		'dbi:Pg:' part.
	- Allow data_sources to accept optional arguments.
	- Add private_attribute_info() method.
	- Add SQL_INTERVAL and others to types.c
	- Added statistics_info function
	- Be much more flexible in test connection options.
	- Overhaul test suite, allow tests to be run individually.
	- Quick support for named trace level 'SQL'
	- Very experimental support for bind_param_inout, use with caution.

Revision 1.41 / (download) - annotate - [select for diffs], Sat Jun 9 23:45:18 2007 UTC (16 years, 5 months ago) by abs
Branch: MAIN
CVS Tags: pkgsrc-2007Q4-base, pkgsrc-2007Q4, pkgsrc-2007Q3-base, pkgsrc-2007Q3, pkgsrc-2007Q2-base, pkgsrc-2007Q2
Changes since 1.40: +2 -3 lines
Diff to previous 1.40 (colored)

Updated databases/p5-DBD-postgresql 0.48 -> 0.49

1.49
	- Thanks to Backcountry.com for sponsoring work on this release. [GSM]
	- Add the statement handle attribute ParamTypes, and fix an error
		in ParamValues. ParamTypes requires DBI 1.49 or better. [GSM]
	- Strip the final newline from error messages, so that die can add
		in the line number. (CPAN bug #18900) [GSM]
	- Make workaround for PQresultErrorField not returning proper
		result when an error is set and we are connecting via TCP/IP.
		This allows correct $dbh->state() values. [GSM]
	- Fix incorrect quoting preventing compiling. (CPAN bug #18640)
	- Add support for quoting and binding of geometric types: POINT,
		LINE, LSEG, BOX, PATH, POLYGON, and CIRCLE. Also added the
		TID type. [GSM]

Revision 1.40 / (download) - annotate - [select for diffs], Wed Mar 21 19:44:10 2007 UTC (16 years, 8 months ago) by jwise
Branch: MAIN
CVS Tags: pkgsrc-2007Q1-base, pkgsrc-2007Q1
Changes since 1.39: +2 -2 lines
Diff to previous 1.39 (colored)

Per Juan RP, use pkgsrc-users@ as MAINTAINER of unmaintained pkgs.

Revision 1.39 / (download) - annotate - [select for diffs], Wed Mar 21 18:55:48 2007 UTC (16 years, 8 months ago) by jwise
Branch: MAIN
Changes since 1.38: +2 -2 lines
Diff to previous 1.38 (colored)

I'm not using any of these packages any more, and have not been keeping up
on maintaining them.  Switch MAINTAINER to tech-pkg, so I can focus on those
which I am still using.

Revision 1.38 / (download) - annotate - [select for diffs], Thu Dec 28 12:12:57 2006 UTC (16 years, 11 months ago) by joerg
Branch: MAIN
CVS Tags: pkgsrc-2006Q4-base, pkgsrc-2006Q4
Changes since 1.37: +2 -2 lines
Diff to previous 1.37 (colored)

Change PostgreSQL default version to 8.1 and bump revision of all
packages which have it active by default.

Revision 1.37 / (download) - annotate - [select for diffs], Sun Apr 23 14:22:19 2006 UTC (17 years, 7 months ago) by hiramatsu
Branch: MAIN
CVS Tags: pkgsrc-2006Q3-base, pkgsrc-2006Q3, pkgsrc-2006Q2-base, pkgsrc-2006Q2
Changes since 1.36: +2 -2 lines
Diff to previous 1.36 (colored)

Update p5-DBD-postgresql to 1.48.

Changes from 1.41:

1.48 April 5, 2006
        - Bump minimum DBI version to 1.45 (CPAN bug #18260) (plus problems
                in versions 1.42 and 1.44 [GSM]
        - Fix typo in Pg.pm code (CPAN bug #18537) [marc@sssonline.com]
        - Ensure begin_work is properly set before err. (CPAN bug #18387) [GSM]
        - Force PQexecParams to only run with DML. (CPAN bug #18258) [GSM]
        - Fix bytea encoding problem (CPAN bug #18264) [GSM]
        - Add documentation about connection service files (pg_service.conf).
                [David Fetter]

1.47 March 20, 2006
        - Fix problem with selecting arrays. (CPAN bugs #18128 and
                #18177) [GSM]
        - Fix problem with dollar-sign placeholders. [GSM]

1.46 March 16, 2006
        - Fix problem with dollar-sign placeholders. (husseinp@gmail.com)
                (CPAN bug #18209) [GSM]

1.45 February 27, 2006
        - Fix bug preventing bytea values over 20 characters from showing.
                Spotted by Igor Shevchenko. [GSM]

1.44 February 21, 2006
        - Make sure pg_warn does not warn if the database attribute
                PrintWarn is off. (Tyler MacDonald tyler@yi.org) [GSM]
        - Add SIGNATURE file for Module::Signature verification. [GSM]
        - Fix error in documentation for pg_errorlevel.
                (CPAN bug #17434)
        - Add experimental support for using DEFAULT values inside
                of execute with $DBDPG_DEFAULT. [GSM]
        - Return the proper SQLSTATE codes on connection failures.
                (CPAN bug #17115) [GSM]
        - Fix parser to handle leading parens. (CPAN bug #15481) [GSM]
        - Make statement handles destruction abort early if
                InactiveDestroy is set (CPAN bug #14978) [GSM]
        - Make quote work properly for time/date types
                (CPAN bug #15082) [GSM]
        - Ensure all lo_ functions begin a transaction as needed
                if they are the first action in a script
                (CPAN bug # 13810) [GSM]
        - Fix memory leak in dbdimp.c (k@sawada.cc) [Kenchi Sawada]
        - Fix memory leak in dbdimp.c (dmitri@karasik.eu.org)
                (CPAN bug #16054)
        - Move package declaration lines to fix RPM parser problems
                (CPAN bug #14509) [GSM]
        - Add support for dollar quoting (CPAN bug #13608) [GSM]
        - Added $dbh->{pg_default_port} method [GSM]
        - Overhaul get_info data, add many more values [GSM]
        - Overhaul type_info data (CPAN bug #13806) [GSM]
        - Rewrite some of the quoting functions, reduce dependence
                on libpq versions [GSM]
        - Rewrite and optimize the do() method. Should be much faster
                when called without placeholders. Thanks to Tom Lane
                for suggesting this. [GSM]
        - Double check PQserverVersion return and use alternate
                method if it returns 0 (CPAN bug #14302)
        - Add support for specifying type in $dbh->quote(),
                such as $dbh->quote($var, {pg_type => DBD::Pg::PG_BYTEA})
                Also support type => SQL_xx [GSM] (CPAN bug #13942)
        - Fix pg_notifies() bug (CPAN bug #14232) [door@lcpi.ru]
        - Add pg_ping() method [GSM]
        - Make sure ping returns true, even if in failed transaction state
                [thanks to Bill Moseley] [GSM]
        - Fix COPY-related core dump [GSM]
        - Fix strncpy bug in quote.c [Jun Kuriyama] (CPAN bug #14897)
        - Fix error in is_high_bit_set() [Alexey Tourbin] (CPAN bug #13406)

1.43 June 23, 2005
        - Added README.dev file. [GSM]
        - Fix statement-name related core dump. [GSM]
        - Ensure state() returns an empty string, not 00000 on success.
                (CPAN bug #13237) [michael.bell@web.de of OpenCA] [GSM]
        - Fix rare core dump when $sth still in scope after disconnect [GSM]
        - Enhancements to README.win32 [fenlisesi@gmail.com]
        - Fix incorrect sprintf calls (CPAN bug #12204)
                [Jakub Jelinek]
        - Fix get_info(18) ("ODBCVERSION") (CPAN bug #12968)
                [thanks to szinger@lanl.gov] [GSM]

1.42 May 21, 2005
        - Fix minor issues with copying and bytea quoting on older
                servers. Fix some other memory leaks. [GSM]
        - Fix backslash parsing in statements (CPAN bug #12870)
                [felix.klee@inka.de] [GSM]
        - Make rollback/commit reset copy state (CPAN bug #12866)
                [imb@rentrak.com] [GSM]
        - Make sure lo_creat issues a begin if necessary [GSM]
        - Fix incorrect behavior when AutoCommit switched on. (CPAN bug #12748)
                [thanks to Vivek Khera] [GSM]
        - Have last_insert_id use set_err, not die. (CPAN bug #12503)
                [thanks to Alexandra Walford] [GSM]
        - Fixed tests to correctly handle older DBI versions reporting
                failures on last_insert_id() (CPAN bug #12204)
                [jpo@di.uminho.pt] [GSM]
        - Re-enable REMARKS field on column_info (CPAN bug #12399)
                [thanks to morni@cpan.org] [GSM]
        - Many minor compiler optimizations and cleanups [GSM]
        - Fix two separate memory leaks in dbdimp.c
                [hertzog@debian.org and richardg@eSentire.com]
        - Change VARCHAROID to UNKNOWNOID, suggested by users on mailing
                list [GSM]

Revision 1.36 / (download) - annotate - [select for diffs], Sun Feb 5 23:08:33 2006 UTC (17 years, 10 months ago) by joerg
Branch: MAIN
CVS Tags: pkgsrc-2006Q1-base, pkgsrc-2006Q1
Changes since 1.35: +2 -2 lines
Diff to previous 1.35 (colored)

Recursive revision bump / recommended bump for gettext ABI change.

Revision 1.35 / (download) - annotate - [select for diffs], Mon Dec 5 20:49:58 2005 UTC (18 years ago) by rillig
Branch: MAIN
CVS Tags: pkgsrc-2005Q4-base, pkgsrc-2005Q4
Changes since 1.34: +3 -3 lines
Diff to previous 1.34 (colored)

Fixed pkglint warnings. The warnings are mostly quoting issues, for
example MAKE_ENV+=FOO=${BAR} is changed to MAKE_ENV+=FOO=${BAR:Q}. Some
other changes are outlined in

    http://mail-index.netbsd.org/tech-pkg/2005/12/02/0034.html

Revision 1.34 / (download) - annotate - [select for diffs], Sat Aug 6 06:19:06 2005 UTC (18 years, 4 months ago) by jlam
Branch: MAIN
CVS Tags: pkgsrc-2005Q3-base, pkgsrc-2005Q3
Changes since 1.33: +2 -1 lines
Diff to previous 1.33 (colored)

Bump the PKGREVISIONs of all (638) packages that hardcode the locations
of Perl files to deal with the perl-5.8.7 update that moved all
pkgsrc-installed Perl files into the "vendor" directories.

Revision 1.33 / (download) - annotate - [select for diffs], Wed Jul 13 18:01:21 2005 UTC (18 years, 4 months ago) by jlam
Branch: MAIN
Changes since 1.32: +2 -2 lines
Diff to previous 1.32 (colored)

Turn PERL5_PACKLIST into a relative path instead of an absolute path.
These paths are now relative to PERL5_PACKLIST_DIR, which currently
defaults to ${PERL5_SITEARCH}.  There is no change to the binary
packages.

Revision 1.32 / (download) - annotate - [select for diffs], Mon Apr 11 21:45:13 2005 UTC (18 years, 7 months ago) by tv
Branch: MAIN
CVS Tags: pkgsrc-2005Q2-base, pkgsrc-2005Q2
Changes since 1.31: +1 -2 lines
Diff to previous 1.31 (colored)

Remove USE_BUILDLINK3 and NO_BUILDLINK; these are no longer used.

Revision 1.31 / (download) - annotate - [select for diffs], Fri Apr 8 14:35:08 2005 UTC (18 years, 7 months ago) by jwise
Branch: MAIN
Changes since 1.30: +2 -3 lines
Diff to previous 1.30 (colored)

Update to version 1.41.  Changes since 1.22 (the last pkgsrc version):

1.41
	- ('Greg' is Greg Sabino Mullane, greg@turnstep.com)
	- Make sure tests remove all temporary tables.
		[Frank Bax]
	- Preserve sqlstate if rolling back on deallocate, fix
		potential segfault. [Stephen Clouse]
	- Fix CPAN bug #12004: commit and rollback now return true
		[Greg] (thanks to ivan-dbdpg@420.am)
	- Overhaul and update COPY support; use new protocol.
		New dbh methods: pg_putline, pg_getline, pg_endcopy.
		[Greg]
	- Rewrote version detection code. Compiled version and target
		version are now available via $dbh->{pg_lib_version} and
		$dbh->{pg_server_version} [Greg]
	- Set our default type_id to 0, not 1043 (VARCHAR) when possible.
		Suggested by Abhijit Menon-Sen via David Wheeler. [Greg]
	- Add $dbh methods pg_savepoint(), pg_rollback_to(), and pg_release()
		[Stephen Clouse] [Greg]
1.40 Tue Feb 22 06:06:45 UTC 2005
	- Raise required DBI version to 1.38
	- Execute returns 0 (0E0) not -1 for successful DDL commands.
		[Robert Treat]
	- Change all string lengths to use STRLEN
		[rink@stack.nl]
	- Added $dbh->pg_server_trace($fh) [Greg Sabino Mullane]
	- Added $dbh->{pg_errorlevel}. [Greg Sabino Mullane]
	- Fix utf8 quote() support [Dominic Mitchell <dom@semantico.com>]
	- Added explicit support for types SQL_BOOLEAN, DATE, TIME,
		TIMESTAMP, and TIMESTAMPTZ. Return correct values for
		DATEOID and TIMEOID. [Greg Sabino Mullane]
	- Added tablespace support for table_info and primary_key_info.
		[Greg Sabino Mullane]
	- Added new attributes to $dbh: pg_db, pg_user, pg_pass,
		pg_host, pg_port, pg_options, pg_socket, pg_pid
		[Greg Sabino Mullane]
	- Minor fixes in quote.c, dbdimp.c, and types.h
		[Christophe Martin: schplurtz at free.fr]
	- Added support for SQLSTATE via $dbh->state and $sth->state
		[Greg Sabino Mullane]
	- Major overhaul of prepare/execute to handle new server-side
		prepare system. See Pg.pm for details. [Greg Sabino Mullane]
	- Make the tests honor the DBD_SCHEMA variable instead of
		assuming that the "public" schema is available.
		[Rainer Weikusat]
	- dbdimp.c cleanups: better error messages, ensure commit
		is only called once after a transaction fails.
		[Alexey Slynko]
	- primary_key() returns empty list not undef if no match.
		[Julian Mehnle]
	- Added the pg_protocol database handle attribute
		[Greg Sabino Mullane]
	- Changed "noprefix" to pg_noprefix
1.32 Wed Feb 25 18:24:18 UTC 2004
	- Bugfix for memory allocation problems on win systems
		[Rafael Kitover <caelum@debian.org>]
	- Rewrote the foreign_key_info() method to handle
		multi-column keys. [Greg Sabino Mullane]
	- Rewrote the primary_key_info() and primary_key() methods to
		cleanly handle multi-column primary keys. Also added a "pg_onerow"
		attribute to allow primary_key_info() to return a single
		row containing multiple-column information. [Greg Sabino Mullane]
	- Switched commit behavior from commit->execute->begin
		to begin->execute->commit
		[xelah-junk@xelah.com]
	- Made the _pg_use_catalog subroutine use {private_dbgpg}.
		(CPAN bug #4841) [Greg Sabino Mullane]
	- Changed strdup to safemalloc/strcpy in dbdimp.c
		(CPAN bug #4578) [anonymous CPAN user]
	- Made the data_sources method escape the database names as needed.
		Added support for databases with spaces in their names.
		[Greg Sabino Mullane]
	- Added the "noprefix" attribute to prevent the tables() method
		from prepending the schema name. [Greg Sabino Mullane]
	- Rewrote the testing suite. Many more tests are performed.
		Servers with a low client_min_messages are handled correctly.
		[Greg Sabino Mullane]
	- Fixed bug causing '$\d' to be picked up as a placeholder.
		(CPAN bug #4799) [Greg Sabino Mullane]
	- pg_notifies now catches and reports when PQconsumeInput fails.
		(CPAN bug #4027) [nmueller@cs.wisc.edu]
	- Enabled the "pg_bool_tf" database handle [Greg Sabino Mullane]
	- Added required fields to the type_info() method:
		SQL_DATA_TYPE, SQL_DATETIME_SUB, and INTERVAL PRECISION
		[Greg Sabino Mullane]
	- Fixed bug where the table_attributes() method was incorrectly
		removing the NULLABLE column. [Greg Sabino Mullane]
	- Fixed bug where case was not being preserved by the
		foreign_key_info() method [Greg Sabino Mullane]
	- a fetch on any column that had a type that did not have an entry
		in the type_info array would segfault DBD::Pg.
		(CPAN bugs #4818,4432) [Rudy Lippan]
	- Duplicate rows bug with column_info() REMARKS has been fixed. However,
		support for Postgres 7.1.x which worked briefly for 1.31 has now been
		dropped for this feature. (Mark Stosberg)
	- Bumped required Perl version to 5.6.1 in Makefile.PL. We were already
		already requiring 5.6.1 for Pg.pm since 1.31.
	- Removed extra "return" statement in quote.c to make Solaris happy
		(CPAN bug #4419) [Rudy Lippan]
	- Changed get_info(29) to return (") instead of (\")
		(CPAN bug #4829) [Greg Sabino Mullane]

1.31 Mon Nov 17 21:21:21 UTC 2003
	- $dbh->{TYPE} now returns SQL_TYPE_TIMESTAMP instead of 1114 for
		timestamp columns. (In 1.31_x {x| x<8} $sth->{TYPE} returned 0
		but reported by ["Hirche, Joachim" <Joachim.Hirche@cimconcepts.com>]).
	- Raised required versions to Perl 5.6.1 and DBI 1.35
	- Fix syntax error related to pg_server_version (CPAN bugs #2492,2755,3121)
	- Cache multiple calls to pg_server_version.
	- Notice messages generated by the database now use the perl
		warning mechanism instead of going to stderr.
		[Dominic Mitchell <dom@semantico.com>]
	- $dbh->prepare() rewrites the SQL statement into an internal form,
		striping out comments and whitespace, and if PostgreSQL > 7.3 takes the
		stripped statement and passes that to Postgres' PREPARE statement,
		then rewrites the statement as 'EXECUTE "DBD::PG::cached_query n"
		($1, $2, ... $n, $n+1)' for DBD::Pg's execute.
		-- Currently disabled until PREPARE works a little better
	- Allows the use of :n and :foo bind params. So:
		(SELECT * FROM foo WHERE 1 = :this and 2 = :that) will now work.
	- Complains on execute when unbound bind params are submitted
		(instead of defaulting to NULL)
	- Switched over to use driver.xst.
	- pg_error() removes \n's rather than truncating the message on the first \n.
	- Fixed statement scan problem where the preparse of
		"SELECT foo[3:33] from bar" was scanning :33 as a placeholder
	- Moved the quoting of bind values out of execute() and into
		bind -- as there is no need to requote the value every time execute
		is called.
	- :veryverylongplaceholdername == Long walk, short pier -- fixed.
	- quote() is now in C and uses same code as bind_param.
	- Quoting and dequoting now use libpq quoting functions where available
		(I still need to take the libpq functions swiped out of quote.c and move
		it into libpqswip.c with license info &c., and switch ifndefs to ifdefs)
	- bind_param() will convert from 1,0 to TRUE/FALSE when pg_type
		is PGBOOLOID.
	- Fixed many heap buffer overruns.
	- Added support for the get_info() method [Greg Sabino Mullane]
	- Added tests for POD validation [Mark Stosberg]
	- Several improvements to column_info, including:
		- Fixed column_info so NULLABLE field shows correctly. [kevin@sysexperts.com]
		- REMARKS field works now [Mark Stosberg]
		- COLUMN_DEF fixed
		- COLUMN_SIZE fixed
		- pg_constraint column added to display column constraints
		- additional documentation and tests added
	- make test is now more intelligent and will bail out early if
		db connection fails. [Greg Sabino Mullane]

Revision 1.30 / (download) - annotate - [select for diffs], Mon Dec 20 11:30:57 2004 UTC (18 years, 11 months ago) by grant
Branch: MAIN
CVS Tags: pkgsrc-2005Q1-base, pkgsrc-2005Q1, pkgsrc-2004Q4-base, pkgsrc-2004Q4
Changes since 1.29: +2 -2 lines
Diff to previous 1.29 (colored)

since perl is now built with threads on most platforms, the perl archlib
module directory has changed (eg. "darwin-2level" vs.
"darwin-thread-multi-2level").

binary packages of perl modules need to be distinguishable between
being built against threaded perl and unthreaded perl, so bump the
PKGREVISION of all perl module packages and introduce
BUILDLINK_RECOMMENDED for perl as perl>=5.8.5nb5 so the correct
dependencies are registered and the binary packages are distinct.

addresses PR pkg/28619 from H. Todd Fujinaka.

Revision 1.29 / (download) - annotate - [select for diffs], Sat Jul 24 22:45:15 2004 UTC (19 years, 4 months ago) by recht
Branch: MAIN
CVS Tags: pkgsrc-2004Q3-base, pkgsrc-2004Q3
Changes since 1.28: +4 -4 lines
Diff to previous 1.28 (colored)

Use the new mk/pgsql.buildlink3.mk to select the correct PostgreSQL
version.

Revision 1.28 / (download) - annotate - [select for diffs], Fri Mar 26 02:27:36 2004 UTC (19 years, 8 months ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2004Q2-base, pkgsrc-2004Q2, pkgsrc-2004Q1-base, pkgsrc-2004Q1
Changes since 1.27: +2 -1 lines
Diff to previous 1.27 (colored)

PKGREVISION bump after openssl-security-fix-update to 0.9.6m.
Buildlink files: RECOMMENDED version changed to current version.

Revision 1.27 / (download) - annotate - [select for diffs], Wed Jan 21 09:35:08 2004 UTC (19 years, 10 months ago) by jlam
Branch: MAIN
Changes since 1.26: +6 -1 lines
Diff to previous 1.26 (colored)

Put back MAKE_ENV settings lost in previous commit that told Makefile.PL
where the PostgreSQL headers and libraries were located.

Revision 1.26 / (download) - annotate - [select for diffs], Mon Jan 5 22:16:24 2004 UTC (19 years, 11 months ago) by jlam
Branch: MAIN
Changes since 1.25: +6 -8 lines
Diff to previous 1.25 (colored)

bl3ify

Revision 1.25 / (download) - annotate - [select for diffs], Mon Jul 21 16:39:07 2003 UTC (20 years, 4 months ago) by martti
Branch: MAIN
CVS Tags: pkgsrc-2003Q4-base, pkgsrc-2003Q4
Changes since 1.24: +2 -2 lines
Diff to previous 1.24 (colored)

COMMENT should start with a capital letter.

Revision 1.24 / (download) - annotate - [select for diffs], Thu Jul 17 21:28:36 2003 UTC (20 years, 4 months ago) by grant
Branch: MAIN
Changes since 1.23: +2 -2 lines
Diff to previous 1.23 (colored)

s/netbsd.org/NetBSD.org/

Revision 1.23 / (download) - annotate - [select for diffs], Sun Apr 20 19:47:20 2003 UTC (20 years, 7 months ago) by mjl
Branch: MAIN
Changes since 1.22: +2 -2 lines
Diff to previous 1.22 (colored)

Update p5-DBD-postgresql to 1.22

  - Fix memory allocation problem in bytea escaping
  - Add utf8 support
  - Transform Perl arrays into PostgreSQL arrays
  - Fix for foreign_key_info()
  - Fix PG_TEXT parameter binding
  - Doc cleanups
  - Fix warning from func($table, 'table_attributes')
  - Added suppport for schemas
  - Fix binary to a bytea field conversion

Revision 1.22 / (download) - annotate - [select for diffs], Fri Jan 17 16:41:37 2003 UTC (20 years, 10 months ago) by mjl
Branch: MAIN
CVS Tags: netbsd-1-6-1-base, netbsd-1-6-1
Changes since 1.21: +5 -5 lines
Diff to previous 1.21 (colored)

Update p5-DBD-postgresql to 1.21

      - System tables no longer returned by tables().
      - Fix table_attributes to handle removal of pg_relcheck in 7.3,
      - Properly reset transaction status after failed transaction when
        autocommit is off.  Properly report transaction failure message.
      - New pg_bool_tf database handle that when set to true booleans are
        returned as 't'/'f' rather than 1/0.
      - Maintenance transferred to GBorg.
      - Added implementations of column_info() and table_info(), and
        primary_key_info().
      - The POD formatting was cleaned up.
      - The preparser was updated to better handle escaped characters.
      - Added eg/lotest.pl as a demonstration of using large objects in buffers
        rather than files.
      - Added LISTEN/NOTIFY functionality.
      - Added constants for common PostgreSQL data types.
      - Fixed compile-time warnings.

Revision 1.21 / (download) - annotate - [select for diffs], Sun Jan 5 20:14:24 2003 UTC (20 years, 11 months ago) by jlam
Branch: MAIN
Changes since 1.20: +3 -3 lines
Diff to previous 1.20 (colored)

Bump PKGREVISION due to increase in the major number of libpq.so between
version 7.2.3 and 7.3.1 of databases/postgresql-lib.

Revision 1.20 / (download) - annotate - [select for diffs], Sun Oct 27 19:39:01 2002 UTC (21 years, 1 month ago) by seb
Branch: MAIN
Changes since 1.19: +2 -5 lines
Diff to previous 1.19 (colored)

Use perl5/module.mk.

Revision 1.19 / (download) - annotate - [select for diffs], Fri Sep 20 01:45:27 2002 UTC (21 years, 2 months ago) by grant
Branch: MAIN
Changes since 1.18: +8 -9 lines
Diff to previous 1.18 (colored)

buildlink1 -> buildlink2.

OK'd by jlam.

Revision 1.18 / (download) - annotate - [select for diffs], Wed Aug 21 23:10:38 2002 UTC (21 years, 3 months ago) by mjl
Branch: MAIN
Changes since 1.17: +2 -2 lines
Diff to previous 1.17 (colored)

Fix problems introduced by our local patch: AutoCommit handles wouldn't,
and executes on closed handles crashed perl hard. Fixes PR/18009.

Revision 1.15.2.1 / (download) - annotate - [select for diffs], Sun Jun 23 18:43:32 2002 UTC (21 years, 5 months ago) by jlam
Branch: buildlink2
Changes since 1.15: +3 -2 lines
Diff to previous 1.15 (colored) next main 1.16 (colored)

Merge from pkgsrc-current to buildlink2 branch.

Revision 1.17 / (download) - annotate - [select for diffs], Tue Jun 18 12:43:02 2002 UTC (21 years, 5 months ago) by wiz
Branch: MAIN
CVS Tags: pkgviews-base, pkgviews, netbsd-1-6-RELEASE-base, netbsd-1-6, buildlink2-base
Changes since 1.16: +2 -1 lines
Diff to previous 1.16 (colored)

Bump PKGREVISION for explorer's bugfixes.

Revision 1.16 / (download) - annotate - [select for diffs], Thu May 16 21:19:06 2002 UTC (21 years, 6 months ago) by mjl
Branch: MAIN
Changes since 1.15: +2 -2 lines
Diff to previous 1.15 (colored)

Update p5-DBD-postgresql to 1.13

 - add definition for missing type 'numeric' and fix segfault in pg_type
 - implement missing metadata methods and change existing ones

Revision 1.15 / (download) - annotate - [select for diffs], Thu Mar 14 22:23:36 2002 UTC (21 years, 8 months ago) by mjl
Branch: MAIN
CVS Tags: netbsd-1-5-PATCH003
Branch point for: buildlink2
Changes since 1.14: +3 -3 lines
Diff to previous 1.14 (colored)

Update p5-DBD-postgresql to 1.11

    * Pg.pm (quote): Applied patch to simplfiy and speed up quoting.

Revision 1.14 / (download) - annotate - [select for diffs], Mon Nov 26 06:49:41 2001 UTC (22 years ago) by jlam
Branch: MAIN
Changes since 1.13: +7 -6 lines
Diff to previous 1.13 (colored)

Buildlinkify, in the sense that only the perl headers are found in
${PREFIX} -- everything else is pickup up from ${BUILDLINK_DIR}.

Revision 1.13 / (download) - annotate - [select for diffs], Thu Oct 18 15:20:08 2001 UTC (22 years, 1 month ago) by veego
Branch: MAIN
Changes since 1.12: +2 -1 lines
Diff to previous 1.12 (colored)

SVR4 packages have a limit of 9 chars for a package name.
The automatic truncation in gensolpkg doesn't work for packages which
have the same package name for the first 5-6 chars.
e.g. amanda-server and amanda-client would be named amanda and amanda.
Now, we add a SVR4_PKGNAME and use amacl for amanda-client and amase for
amanda-server.
All svr4 packages also have a vendor tag, so we have to reserve some chars
for this tag, which is normaly 3 or 4 chars. Thats why we can only use 6
or 5 chars for SVR4_PKGNAME. I used 5 for all the packages, to give the
vendor tag enough room.
All p5-* packages and a few other packages have now a SVR4_PKGNAME.

Revision 1.12 / (download) - annotate - [select for diffs], Thu Sep 27 23:17:53 2001 UTC (22 years, 2 months ago) by jlam
Branch: MAIN
Changes since 1.11: +2 -2 lines
Diff to previous 1.11 (colored)

Mechanical changes to 375 files to change dependency patterns of the form
foo-* to foo-[0-9]*.  This is to cause the dependencies to match only the
packages whose base package name is "foo", and not those named "foo-bar".
A concrete example is p5-Net-* matching p5-Net-DNS as well as p5-Net.  Also
change dependency examples in Packages.txt to reflect this.

Revision 1.11 / (download) - annotate - [select for diffs], Fri Aug 10 11:53:15 2001 UTC (22 years, 3 months ago) by mjl
Branch: MAIN
Changes since 1.10: +2 -2 lines
Diff to previous 1.10 (colored)

Update to 1.01

        - fixed core dump when trying to use a BYTEA value with
          a byte outside 0..127

Revision 1.10 / (download) - annotate - [select for diffs], Sat Jun 2 14:56:26 2001 UTC (22 years, 6 months ago) by mjl
Branch: MAIN
Changes since 1.9: +2 -2 lines
Diff to previous 1.9 (colored)

Update to 1.00.

  - Fetching all records now resets Active flag as it should.

Revision 1.9 / (download) - annotate - [select for diffs], Fri May 25 20:40:03 2001 UTC (22 years, 6 months ago) by mjl
Branch: MAIN
Changes since 1.8: +4 -3 lines
Diff to previous 1.8 (colored)

Update to 0.99. Changes are

- fix segmentation fault in pg_error
- bug-fix for core-dump after any failed function call
- add support for the datatype bytea
- fix bug in connect method, which erroneously set the userid and the
  password to the environment variables DBI_USER and DBI_PASS
- which removed the special handling of a backslash when used for octal
  presentation. Now a backslash always will be escaped.
- remove memory-leak in ping function, bug-fix
- correct the recognition of primary keys in table_attributes().
- fix a segmentation fault in DBD::pg::blob_read() when reading LOBs that
  required perl to reallocate space for the variable holding the scalar value
- updated test.pl to create a test blob larger than 256 bytes (now 128 Kbytes)
- fix a seg-fault when inserting large amounts of text.
- remove the newlines from the error messages and quote date placeholders.

Revision 1.8 / (download) - annotate - [select for diffs], Mon May 14 15:04:50 2001 UTC (22 years, 6 months ago) by jlam
Branch: MAIN
Changes since 1.7: +2 -2 lines
Diff to previous 1.7 (colored)

Update postgresql dependencies to look like:

DEPENDS+= postgresql-{6.5.3*,7.0*,lib-*}:../../databases/postgresql-lib

Revision 1.7 / (download) - annotate - [select for diffs], Fri Feb 16 14:17:32 2001 UTC (22 years, 9 months ago) by wiz
Branch: MAIN
CVS Tags: netbsd-1-5-PATCH001
Changes since 1.6: +2 -1 lines
Diff to previous 1.6 (colored)

Update to new COMMENT style: COMMENT var in Makefile instead of pkg/COMMENT.

Revision 1.6 / (download) - annotate - [select for diffs], Thu Dec 7 11:53:50 2000 UTC (23 years ago) by mjl
Branch: MAIN
Changes since 1.5: +2 -2 lines
Diff to previous 1.5 (colored)

Update to 0.95

        - add Win32 port from Bob Kline .
        - applied patch from Rudy Lippan
          which fixes a memory-leak with failed connections.
        - applied patch from Hein Roehrig
          which fixes a bug with escaping a backslash except for
          octal presentation
        - applied patch from Francis J. Lacoste
          to enhance the table_attributes subroutine

Revision 1.5 / (download) - annotate - [select for diffs], Sun Aug 27 10:37:00 2000 UTC (23 years, 3 months ago) by jlam
Branch: MAIN
CVS Tags: netbsd-1-5-RELEASE, netbsd-1-4-PATCH003
Changes since 1.4: +8 -7 lines
Diff to previous 1.4 (colored)

Convert packages to use PERL5_PACKLIST (part 2).  These are the database and
Apache perl modules, and each compiled and installed/de-installed apparently
correctly.

As a side effect of the dynamic PLIST, we no longer need to to have separate
-static and -shared PLISTs.  It's now easier than ever to make a perl5
package for NetBSD :)

Revision 1.4 / (download) - annotate - [select for diffs], Wed May 24 10:35:54 2000 UTC (23 years, 6 months ago) by rh
Branch: MAIN
Changes since 1.3: +2 -2 lines
Diff to previous 1.3 (colored)

Depend on p5-DBI>=1.08, not p5-DBI-1.08 (we are now at 1.13)

Revision 1.3 / (download) - annotate - [select for diffs], Sat May 20 19:52:50 2000 UTC (23 years, 6 months ago) by jlam
Branch: MAIN
Changes since 1.2: +2 -2 lines
Diff to previous 1.2 (colored)

Update dependency on postgresql to >=6.5.3.

Revision 1.2 / (download) - annotate - [select for diffs], Wed May 3 15:50:24 2000 UTC (23 years, 7 months ago) by rh
Branch: MAIN
Changes since 1.1: +3 -3 lines
Diff to previous 1.1 (colored)

Replace hard coded 'i386-netbsd' by ${MACHINE_ARCH}-${LOWER_OPSYS}.  Fixes
PR 9774 by Michael Wolfson.
Adapt for new installation directory structure of postgresql package.

Revision 1.1.1.1 / (download) - annotate - [select for diffs] (vendor branch), Sat Feb 19 23:43:23 2000 UTC (23 years, 9 months ago) by jwise
Branch: TNF
CVS Tags: pkgsrc-base, netbsd-1-4-PATCH002
Changes since 1.1: +0 -0 lines
Diff to previous 1.1 (colored)

Initial import of p5-DBD-postgresql-0.93, the DBD/DBI driver for Postgresql.

Revision 1.1 / (download) - annotate - [select for diffs], Sat Feb 19 23:43:23 2000 UTC (23 years, 9 months ago) by jwise
Branch: MAIN

Initial revision

This form allows you to request diff's 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.




CVSweb <webmaster@jp.NetBSD.org>