[ubuntu/raring-proposed] python-defaults 2.7.3-3ubuntu1 (Accepted)

Dmitry Shachnev mitya57 at ubuntu.com
Wed Nov 28 15:50:17 UTC 2012


python-defaults (2.7.3-3ubuntu1) raring; urgency=low

  * Resynchronize with Debian unstable, remaining Ubuntu changes:
    - debian/control.in: Build depend on lsb-release to set correct
      Maintainer fields when building on Ubuntu.
    - debian/rules: Ignore version check, as our default versions differ
      from Debian's.
    - debian/control.in, debian/debian_defaults: Drop python2.6 support.
    - debian/rules: Provide Python pkgconfig defaults.
    - debian/rules: Re-add the python2 and python2-config symlinks,
      formerly present in the python2.7 packages (see PEP 394).
    - debian/control.in, debian/rules: Build dependency packages as
      architecture dependent packages (for cross-building python
      extension packages, see LP: #934593).
  * debian/rules: in binary-arch section, use -a argument for dh_* commands.

python-defaults (2.7.3-3) unstable; urgency=low

  [ Piotr Ożarowski ]
  * dh_python2:
    - no longer sensitive to trailing slash in private dir names
      (closes: #686358)
    - ignore /usr/bin/python3 shebangs in all packages, not just in
      python3-* ones
    - generates correct "python (<< 2.X)" dependencies for packages with
      private Python extensions (typo fixed)
  * pyversions.py: fix parsing DEBPYTHON_SUPPORTED env. variable
    (versions should be separated using comma, as in debian_defaults
    config file)

  [ Dmitry Shachnev ]
  * debian/python.{pre,post}rm.in: Handle purge command the same way as
    remove (thanks to Mitsuya Shibata for the bug report)

python-defaults (2.7.3-2) unstable; urgency=low

  * dh_python2: ignore empty files while trying to normalize shebangs
    (Closes: #680793)
  * Fix lack of python-imaging in pydist/dist_fallback
    - Add python-imaging override to pydist/generate_fallback_list.py
    - pydist/dist_fallback: Regenerate to add python-imaging (which wasn't
      recognized before due to .pth file) along with a few automatic
      adjustments

python-defaults (2.7.3-1) unstable; urgency=low

  [ Piotr Ożarowski ]
  * dh_python2:
    - remove even more \.so.* dangling symlinks, thanks to Stefano
      Rivera for providing a test case
    - rewrite shebangs by default (disable via --no-shebang-rewrite),
      examples:
       + "/usr/bin/env python*" → "/usr/bin/python*"
       + "/usr/local/bin/python foo" → "/usr/bin/python foo"
       + "/usr/bin/python2" → "/usr/bin/python"
    - new --shebang option to replace all shebangs in bin dirs
      (example: --shebang /usr/bin/python2.6)
    - no longer generates python2.X | python2.Y depenendies for public modules
      (Closes: 625740)
    - translate Python version numbers into Debian ones for those
      require.txt items that have a pydist file with (uscan like) rules
      or PEP386 flag (Closes: #653740)
  * Improve dh_python2 manpage a bit, add information about cleaning debug
    packages (Closes: #653741)
  * pyversions, dh_python2, pycompile: allow to override system's list of
    supported Python versions via DEBPYTHON_SUPPORTED and default Python
    version via DEBPYTHON_DEFAULT env. variables
  * Debhelper's python2 sequence now inserts dh_python2 before dh_installinit
    (closes: 670418)

  [ Scott Kitterman ]
  * Bump upstream version to match current unstable/wheezy python2.7 version

Date: Wed, 28 Nov 2012 14:50:19 +0400
Changed-By: Dmitry Shachnev <mitya57 at ubuntu.com>
Maintainer: Ubuntu Developers <ubuntu-devel-discuss at lists.ubuntu.com>
Signed-By: Barry Warsaw <barry at canonical.com>
https://launchpad.net/ubuntu/raring/+source/python-defaults/2.7.3-3ubuntu1
-------------- next part --------------
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA256

Format: 1.8
Date: Wed, 28 Nov 2012 14:50:19 +0400
Source: python-defaults
Binary: python python-minimal python-examples python-dev idle python-doc python-dbg python-all python-all-dev python-all-dbg
Architecture: source
Version: 2.7.3-3ubuntu1
Distribution: raring
Urgency: low
Maintainer: Ubuntu Developers <ubuntu-devel-discuss at lists.ubuntu.com>
Changed-By: Dmitry Shachnev <mitya57 at ubuntu.com>
Description: 
 idle       - IDE for Python using Tkinter (default version)
 python     - interactive high-level object-oriented language (default version)
 python-all - package depending on all supported Python runtime versions
 python-all-dbg - package depending on all supported Python debugging packages
 python-all-dev - package depending on all supported Python development packages
 python-dbg - debug build of the Python Interpreter (version 2.7)
 python-dev - header files and a static library for Python (default)
 python-doc - documentation for the high-level object-oriented language Python
 python-examples - examples for the Python language (default version)
 python-minimal - minimal subset of the Python language (default version)
Closes: 625740 653740 653741 670418 680793 686358
Launchpad-Bugs-Fixed: 934593
Changes: 
 python-defaults (2.7.3-3ubuntu1) raring; urgency=low
 .
   * Resynchronize with Debian unstable, remaining Ubuntu changes:
     - debian/control.in: Build depend on lsb-release to set correct
       Maintainer fields when building on Ubuntu.
     - debian/rules: Ignore version check, as our default versions differ
       from Debian's.
     - debian/control.in, debian/debian_defaults: Drop python2.6 support.
     - debian/rules: Provide Python pkgconfig defaults.
     - debian/rules: Re-add the python2 and python2-config symlinks,
       formerly present in the python2.7 packages (see PEP 394).
     - debian/control.in, debian/rules: Build dependency packages as
       architecture dependent packages (for cross-building python
       extension packages, see LP: #934593).
   * debian/rules: in binary-arch section, use -a argument for dh_* commands.
 .
 python-defaults (2.7.3-3) unstable; urgency=low
 .
   [ Piotr Ożarowski ]
   * dh_python2:
     - no longer sensitive to trailing slash in private dir names
       (closes: #686358)
     - ignore /usr/bin/python3 shebangs in all packages, not just in
       python3-* ones
     - generates correct "python (<< 2.X)" dependencies for packages with
       private Python extensions (typo fixed)
   * pyversions.py: fix parsing DEBPYTHON_SUPPORTED env. variable
     (versions should be separated using comma, as in debian_defaults
     config file)
 .
   [ Dmitry Shachnev ]
   * debian/python.{pre,post}rm.in: Handle purge command the same way as
     remove (thanks to Mitsuya Shibata for the bug report)
 .
 python-defaults (2.7.3-2) unstable; urgency=low
 .
   * dh_python2: ignore empty files while trying to normalize shebangs
     (Closes: #680793)
   * Fix lack of python-imaging in pydist/dist_fallback
     - Add python-imaging override to pydist/generate_fallback_list.py
     - pydist/dist_fallback: Regenerate to add python-imaging (which wasn't
       recognized before due to .pth file) along with a few automatic
       adjustments
 .
 python-defaults (2.7.3-1) unstable; urgency=low
 .
   [ Piotr Ożarowski ]
   * dh_python2:
     - remove even more \.so.* dangling symlinks, thanks to Stefano
       Rivera for providing a test case
     - rewrite shebangs by default (disable via --no-shebang-rewrite),
       examples:
        + "/usr/bin/env python*" → "/usr/bin/python*"
        + "/usr/local/bin/python foo" → "/usr/bin/python foo"
        + "/usr/bin/python2" → "/usr/bin/python"
     - new --shebang option to replace all shebangs in bin dirs
       (example: --shebang /usr/bin/python2.6)
     - no longer generates python2.X | python2.Y depenendies for public modules
       (Closes: 625740)
     - translate Python version numbers into Debian ones for those
       require.txt items that have a pydist file with (uscan like) rules
       or PEP386 flag (Closes: #653740)
   * Improve dh_python2 manpage a bit, add information about cleaning debug
     packages (Closes: #653741)
   * pyversions, dh_python2, pycompile: allow to override system's list of
     supported Python versions via DEBPYTHON_SUPPORTED and default Python
     version via DEBPYTHON_DEFAULT env. variables
   * Debhelper's python2 sequence now inserts dh_python2 before dh_installinit
     (closes: 670418)
 .
   [ Scott Kitterman ]
   * Bump upstream version to match current unstable/wheezy python2.7 version
Checksums-Sha1: 
 a7b9e11be03fe80330b7d79f2d0ade299d35ec85 2324 python-defaults_2.7.3-3ubuntu1.dsc
 7286c2f76a5b7e5324f922628b0dc1689bc25224 168272 python-defaults_2.7.3-3ubuntu1.tar.gz
Checksums-Sha256: 
 f49182abe8ac09ed2447af7a54e342a800a848dbc6362aebdbc7e9eba9da533c 2324 python-defaults_2.7.3-3ubuntu1.dsc
 bdcf4caca9d609ed5b808d92d20c1f6e9898b1a0fa1529bcdc6dd69fcbd9add3 168272 python-defaults_2.7.3-3ubuntu1.tar.gz
Files: 
 9a1affa05fbe0f266066fa7cf384e413 2324 python optional python-defaults_2.7.3-3ubuntu1.dsc
 e9f4dfd0dd9172bcc6ef4d4d0a304728 168272 python optional python-defaults_2.7.3-3ubuntu1.tar.gz
Original-Maintainer: Matthias Klose <doko at debian.org>

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

iQIcBAEBCAAGBQJQti6hAAoJEBJutWOnSwa/F6wQAK43o/cMabtekOC3dLomd/oM
qWwGWwV/OBQaKSlF7MvOHUUU1PEYITcjy6yECKVrKBA2z13wz2G8XGqmE0l9p+iu
wZTgwEbFWggJUoVSMciVQVLPem4Wo0htcuXdZzszk070RC/ytSKdQa75rpY2ZMjC
gIISlV3qKmKr99EJsj2Inmhk8pETJQW8i8HvLqzR/mMKwn52/FrtZdIgCaNo0nWS
SyzzNdYgq5/gC9g42rMtdaZ0fEV0swDuwayxMRe3w0Qk3pELnKY0kmdC0N/wgy3C
moX6Wk56wOVLHQjRsVCmlQJrAYUi9BiMRL6DvhG10PZP86Akm+iCB8/1jsJ8AfvY
Nk5ARDsAFNzp5h4wV8A049sVQXi/6JrPLoJ+KHKF90jRdAj3fofcxdWbgCgcw4H/
U8Ulbuj1cK6StNB52fLegVdKCcgK1/uNNNWhysnvA4gBIL6aTg33SCYLQOGgBVZc
OUaja3AADev+FL9jzJir/+S+JieCIxRQgYptIr9Xg8YB9kT0W3JAyp6YviPbDyIf
fAEShcv8PjE7F8fl9ZNb6T3IKP719GiocDAsxkMhMoSJtpBEroySQM85YnvGPUdp
Vq7HhaNbfrVpOmKKmO9FNWLsfCzYsvd9QHdysHdpI+D/59yToEky0UQWZvq95q/y
Y2VQcaqPqu7O69FbZXWW
=vq8T
-----END PGP SIGNATURE-----


More information about the Raring-changes mailing list