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

Accepted postgresql-common 111~bpo50+1 (source all)



-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Format: 1.8
Date: Sun, 26 Sep 2010 21:35:09 +0200
Source: postgresql-common
Binary: postgresql-common postgresql-client-common postgresql-server-dev-all
Architecture: source all
Version: 111~bpo50+1
Distribution: lenny-backports
Urgency: high
Maintainer: Martin Pitt <mpitt@debian.org>
Changed-By: Gerfried Fuchs <rhonda@debian.at>
Description: 
 postgresql-client-common - manager for multiple PostgreSQL client versions
 postgresql-common - PostgreSQL database-cluster manager
 postgresql-server-dev-all - extension build tool for multiple PostgreSQL versions
Closes: 522679 543506 562676 576180 579768 589014 589524 591185 597097 597561 597654
Changes: 
 postgresql-common (111~bpo50+1) lenny-backports; urgency=low
 .
   * Rebuild for lenny-backports.
 .
 postgresql-common (111) unstable; urgency=high
 .
   * Urgency high since this fixes two RC bugs.
   * t/030_errors.t: Check that pg_createcluster leaves the original one intact
     if the cluster already exists, also when the original one is not running.
     This reproduces #597097.
   * pg_createcluster: Be more careful with cleaning up the created cluster if
     an error occurs: Do not start the cleanup until we actually passed our
     sanity checks and created files for the new cluster. Before, it would
     erroneously remove an already existing cluster on a sanity check fail, if
     that cluster happened to not be running at the time. (Closes: #597097)
   * debian/supported-versions: Be more robust against lsb_release failing, e.
     g. in the case where it is not fully configured yet. (Closes: #597561)
   * debian/supported-versions: Drop check for /etc/debian_version if
     lsb_release is not working/existing. Derivatives have debian_version as
     well, and we don't actually evaluate it, so just print a meaningful error
     message and go with the default versions.
   * debian/rules: Put init script priority back to S29/K21 to match the
     previous postgresql-8.4 init script. Fix the priorities on upgrade in
     debian/postgresql-common.preinst. (Closes: #597654)
 .
 postgresql-common (110) unstable; urgency=low
 .
   [ Martin Pitt ]
   * t/080_start.conf.t: Update for common init.d script.
   * debian/rules: Drop installation of lintian overrides and let dh_lintian do
     it for us. Adapt override file accordingly.
   * debian/control: Drop unnecessary debconf dependency from -client-common.
   * Bump Standards-Version to 3.9.1, no changes necessary.
   * debian/postgresql-common.postgresql.init: Fix force-reload, thanks Pascal
     Volk. (Closes: #591185)
   * debian/rules: Stop man page build/clean being package dependent.
   * pg_buildext: Remove bashishms and convert to plain /bin/sh.
 .
   [ Dimitri Fontaine ]
   * Add new package postgresql-server-dev-all:
     - "pb_buildext" tool for easy building of extension packages for multiple
       server versions.
     - pgxs_debian_control.mk debian/rules include for generating
       debian/control.
 .
 postgresql-common (109) unstable; urgency=low
 .
   * pg_lsclusters: Fix "uninitialized value" warning when a cluster's data
     directory is not set. This is a rather fatal problem anyway, but we can
     present it in a nicer way. Thanks Christoph Berg! (Closes: #589014)
   * Migrate to a common init script for all server versions, to avoid
     providing the "postgresql" service in multiple packages (which causes
     insserv to complain bitterly):
     - debian/init.d-functions: Add function get_versions() which returns all
       installed versions, but filters out the ones which have their own init
       script. With that, we can run newer common versions with older server
       packages.
     - debian/maintscripts-functions: Add function stop_version() (to be called
       from "prerm upgrade"), and start cluster in configure_version() if there
       is no version specific init script.
     - Add debian/postgresql-common.postgresql.init: Common init script for all
       installed server versions.
     - debian/rules: Install common init script.
     - (Closes: #589524)
   * Add debian/source/format: 3.0 (native).
   * debian/control: Bump Standards-Version to 3.9.0 (no changes necessary).
 .
 postgresql-common (108) unstable; urgency=low
 .
   * debian/supported-versions: Drop 8.3 from squeeze/unstable. Add 9.0 to all
     Debian/Ubuntu versions to support backports.
   * debian/README.Debian: Talk about 8.3 and 8.4, since those are the versions
     relevant to squeeze installs and upgrades.
   * pg_upgradecluster POD: Describe allowed characters in upgrade script file
     names.
   * debian/supported-versions: Add Ubuntu 10.10. Welcome, Maverick Meerkat!
 .
 postgresql-common (107) unstable; urgency=low
 .
   [ Peter Eisentraut ]
   * Add initial support for 9.0 (pre-release snapshots for now):
     - cleanpg: Remove 9.0 clusters.
     - pg_createcluster: Clone configure_8_4() as configure_9_0().
     - pg_upgradecluster: Migrate obsolete/changed configuration parameters.
   * pg_wrapper: Fix spelling.
   * In maintainer scripts, instead of "#!/bin/sh -e" use a separate "set -e",
     per lintian.
   * debian/control: Bump Standards-Version to 3.8.4; no changes necessary.
 .
   [ Martin Pitt ]
   * cleanpg: Do not remove the /var/log/postgresql/ directory itself, only its
     contents, to avoid logcheck falling over.
   * t/020_create_sql_remove.t: Do not consider $PG_GRANDPARENT_PID an unsafe
     environment, it's set by 9.0 servers.
   * t/060_obsolete_confparams.t: Add a full configuration for 8.4, so that
     upgrades to 9.0 can be tested.
   * t/052_upgrade_encodings.t: Specify 'C' locale when creating the ASCII
     encoded test database for versions >= 8.4, otherwise we have a
     locale/encoding mismatch.
   * t/TestLib.pm: Abort tests on FAILURE=shell and the shell exits with
     nonzero. This avoids endless followup error shells once it's clear that
     the following ones are doomed anyway.
   * PgCommon.pm: Add new function get_db_locales() which reads lc_ctype and
     lc_locales for a particular database. This replaces the
     get_cluster_locales() function for >= 8.4 server versions (which moved
     from global to per-database locales).
   * pg_upgradecluster: Use get_db_locales() instead of get_cluster_locales()
     for upgrades from >= 8.4.
   * pg_ctlcluster: Drop check for valid locales. We can only determine them
     (using pg_controldata through get_cluster_locales()) for <= 8.3 clusters,
     which are obsolete in sid/lenny. For >= 8.4 clusters, we need to start the
     server to find out the locales, at which point the check is pointless.
   * pg_upgradecluster: Run pg_restore with --disable-triggers when running in
     --data-only mode. (Closes: #579768)
   * t/020_create_sql_remove.t: We now assume that /var/log/postgresql/ always
     exists, and is writable by the "postgres" user. Thus if we delete the log,
     running "pg_ctlcluster start" should be able to recreate it. This fixes
     the 020_create_sql_remove.t test failure in "umask 077" mode, and uncovers
     some more inconsistencies wrt. log directory permissions.
   * pg_createcluster, testsuite: Fix permissions of /var/log/postgresql/ if
     this script creates it.
 .
 postgresql-common (106) unstable; urgency=low
 .
   * t/001_packages.t: Check for ".utf8" locale instead of ".UTF-8". This
     seems to be the new canonical spelling now.
   * t/TestLib.pm, check_clean(): Require that /var/log/postgresql/ still
     exists. If we remove it entirely, current versions of logcheck complain
     loudly. This was already fixed a while ago in squeeze, this will ensure it
     stays so. (Closes: #576180)
   * t/040_upgrade.t: Check upgrade of database and table ACL, an ALTER
     DATABASE option, and correct upgrading of a custom pg_hba.conf. This
     reproduces #543506.
   * pg_upgradecluster: Rework logic to use "pg_dumpall -s" instead of
     "pg_dumpall -g", to also catch ACLs, global settings, and the like. Drop
     manual database creation and encoding special-cases, since those are being
     taken care of by the -s commands already. (Closes: #543506, #562676)
   * pg_upgradecluster: Re-enable connections after the upgrade is done, not in
     between.
   * t/120_pg_upgradecluster_scripts.t: Upgrade scripts should not create
     tables in the "init" phase, since they will be overwritten during
     dump/restore. Change the test case to move table changes into the "finish"
     phase, and update documentation in pg_upgradecluster to point out this
     potential problem.
   * debian/init.d-functions, status(): More appropriate output formatting for
     "status" init script commands. (Closes: #522679)
Checksums-Sha1: 
 7f2e2493f93c2aabe8023fe0040ef222576e7f0b 1016 postgresql-common_111~bpo50+1.dsc
 2cb75557daec9e5968d789e24f91eb14850d9676 122837 postgresql-common_111~bpo50+1.tar.gz
 c8770d1611e72849b25aedf06b76baca0bf8d1eb 124286 postgresql-common_111~bpo50+1_all.deb
 f8b04a43433a5d34a55364592fa9fae7cf71fb5d 54612 postgresql-client-common_111~bpo50+1_all.deb
 3d742bba8b7aac4eef9212d939981566345b4529 40002 postgresql-server-dev-all_111~bpo50+1_all.deb
Checksums-Sha256: 
 f8cd0ca96279d6c8a0e608c0f1403abcfe0ab4313f074cf7503fadfa831d4f13 1016 postgresql-common_111~bpo50+1.dsc
 c4287721b1796d21aeabdeae36a8b5f6f7e882085217055e8ade6b95c64c4f9c 122837 postgresql-common_111~bpo50+1.tar.gz
 b21610fe4970b6db4f563d426801aac8afd9ace68d318f1514dd0a636341f782 124286 postgresql-common_111~bpo50+1_all.deb
 49e1b23650c14ed0c3cb2636d2b5cca9cf84b339e364b8162bd34ed1407cdad4 54612 postgresql-client-common_111~bpo50+1_all.deb
 f33e8151d7871a5a2feab7c865a2f36a44ab84801fcdac7c21445cc5d47ae888 40002 postgresql-server-dev-all_111~bpo50+1_all.deb
Files: 
 7dc910ff8a6e14aeb3cc43ab814cebaf 1016 database optional postgresql-common_111~bpo50+1.dsc
 82e9053f3c1f5bb3a69f876b67b519c6 122837 database optional postgresql-common_111~bpo50+1.tar.gz
 17add3171328b888f18312bac52be371 124286 database optional postgresql-common_111~bpo50+1_all.deb
 f03f3e61b91509e4e7638a67e754c5aa 54612 database optional postgresql-client-common_111~bpo50+1_all.deb
 41cbb1d21d49878d5ea04571b9d9af4e 40002 database optional postgresql-server-dev-all_111~bpo50+1_all.deb

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.10 (GNU/Linux)

iEYEARECAAYFAkyfodYACgkQELuA/Ba9d8Y36wCgiev6YWcBv0hSlJRuDybr6g2d
GqwAoKiXTQl2SJkUpyCCYm10AhSm1BDb
=a0Ox
-----END PGP SIGNATURE-----


Accepted:
postgresql-client-common_111~bpo50+1_all.deb
  to main/p/postgresql-common/postgresql-client-common_111~bpo50+1_all.deb
postgresql-common_111~bpo50+1.dsc
  to main/p/postgresql-common/postgresql-common_111~bpo50+1.dsc
postgresql-common_111~bpo50+1.tar.gz
  to main/p/postgresql-common/postgresql-common_111~bpo50+1.tar.gz
postgresql-common_111~bpo50+1_all.deb
  to main/p/postgresql-common/postgresql-common_111~bpo50+1_all.deb
postgresql-server-dev-all_111~bpo50+1_all.deb
  to main/p/postgresql-common/postgresql-server-dev-all_111~bpo50+1_all.deb


Reply to: