[Python-modules-commits] r28972 - in packages/vcversioner/branches/wheezy-backports/debian (8 files)

olasd at users.alioth.debian.org olasd at users.alioth.debian.org
Sun May 18 19:27:00 UTC 2014


    Date: Sunday, May 18, 2014 @ 19:26:59
  Author: olasd
Revision: 28972

Merge from the 1.14.1.1-2 release

Added:
  packages/vcversioner/branches/wheezy-backports/debian/python-vcversioner.docs
    (from rev 28843, packages/vcversioner/trunk/debian/python-vcversioner.docs)
  packages/vcversioner/branches/wheezy-backports/debian/python-vcversioner.install
    (from rev 28843, packages/vcversioner/trunk/debian/python-vcversioner.install)
  packages/vcversioner/branches/wheezy-backports/debian/python3-vcversioner.docs
    (from rev 28843, packages/vcversioner/trunk/debian/python3-vcversioner.docs)
  packages/vcversioner/branches/wheezy-backports/debian/python3-vcversioner.install
    (from rev 28843, packages/vcversioner/trunk/debian/python3-vcversioner.install)
Modified:
  packages/vcversioner/branches/wheezy-backports/debian/changelog
  packages/vcversioner/branches/wheezy-backports/debian/control
  packages/vcversioner/branches/wheezy-backports/debian/copyright
  packages/vcversioner/branches/wheezy-backports/debian/rules

Modified: packages/vcversioner/branches/wheezy-backports/debian/changelog
===================================================================
--- packages/vcversioner/branches/wheezy-backports/debian/changelog	2014-05-18 11:19:51 UTC (rev 28971)
+++ packages/vcversioner/branches/wheezy-backports/debian/changelog	2014-05-18 19:26:59 UTC (rev 28972)
@@ -1,9 +1,20 @@
-vcversioner (1.13.0.0-1~bpo70+1) wheezy-backports; urgency=medium
+vcversioner (1.14.1.1-2) unstable; urgency=medium
 
-  * Rebuild for wheezy-backports.
+  * Add Python3 support
+  * Properly install the readme file as documentation
+  * Update copyright years
 
- -- Nicolas Dandrimont <olasd at debian.org>  Thu, 09 Jan 2014 01:50:52 +0100
+ -- Nicolas Dandrimont <olasd at debian.org>  Sun, 11 May 2014 14:44:06 +0200
 
+vcversioner (1.14.1.1-1) unstable; urgency=medium
+
+  * New upstream release
+    - Add support for mercurial (hg)
+  * Add suggests on git and mercurial
+  * Switch buildsystem to pybuild
+
+ -- Nicolas Dandrimont <olasd at debian.org>  Sun, 11 May 2014 14:26:05 +0200
+
 vcversioner (1.13.0.0-1) unstable; urgency=medium
 
   * Initial release. (Closes: #732837)

Modified: packages/vcversioner/branches/wheezy-backports/debian/control
===================================================================
--- packages/vcversioner/branches/wheezy-backports/debian/control	2014-05-18 11:19:51 UTC (rev 28971)
+++ packages/vcversioner/branches/wheezy-backports/debian/control	2014-05-18 19:26:59 UTC (rev 28972)
@@ -3,10 +3,7 @@
 Priority: optional
 Maintainer: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
 Uploaders: Nicolas Dandrimont <olasd at debian.org>
-Build-Depends:
- debhelper (>= 9),
- python-all (>= 2.6.6-3~),
- python-setuptools
+Build-Depends: debhelper (>= 9), dh-python, python-all (>= 2.6.6-3~), python-setuptools, python3-all, python3-setuptools
 Standards-Version: 3.9.5
 X-Python-Version: >= 2.6
 Homepage: https://github.com/habnabit/vcversioner
@@ -15,9 +12,8 @@
 
 Package: python-vcversioner
 Architecture: all
-Depends:
- ${misc:Depends},
- ${python:Depends}
+Depends: ${misc:Depends}, ${python:Depends}
+Suggests: git, mercurial
 Description: Use version control tags to discover version numbers
  vcversioner autodiscovers a Python project's version number using
  version control system tags. This allows developers to avoid
@@ -27,4 +23,23 @@
  When the package is built, vcversioner generates a version.txt file
  that can be used for release tarballs.
  .
- Currently, vcversioner only supports the git VCS.
+ Currently, vcversioner supports the git and mercurial (hg) VCS.
+ .
+ This module contains vcversioner for Python 2.x
+
+Package: python3-vcversioner
+Architecture: all
+Depends: ${misc:Depends}, ${python3:Depends}
+Suggests: git, mercurial
+Description: Use version control tags to discover version numbers (Python3 version)
+ vcversioner autodiscovers a Python project's version number using
+ version control system tags. This allows developers to avoid
+ duplicating version information between their VCS and their setup.py
+ metadata.
+ .
+ When the package is built, vcversioner generates a version.txt file
+ that can be used for release tarballs.
+ .
+ Currently, vcversioner supports the git and mercurial (hg) VCS.
+ .
+ This package contains vcversioner for Python 3.x

Modified: packages/vcversioner/branches/wheezy-backports/debian/copyright
===================================================================
--- packages/vcversioner/branches/wheezy-backports/debian/copyright	2014-05-18 11:19:51 UTC (rev 28971)
+++ packages/vcversioner/branches/wheezy-backports/debian/copyright	2014-05-18 19:26:59 UTC (rev 28972)
@@ -3,11 +3,11 @@
 Source: https://github.com/habnabit/vcversioner
 
 Files: *
-Copyright: 2013, Aaron Gallagher <_ at habnab.it>
+Copyright: 2013-2014, Aaron Gallagher <_ at habnab.it>
 License: ISC
 
 Files: debian/*
-Copyright: 2013 Nicolas Dandrimont <olasd at debian.org>
+Copyright: 2013-2014 Nicolas Dandrimont <olasd at debian.org>
 License: ISC
 
 License: ISC

Copied: packages/vcversioner/branches/wheezy-backports/debian/python-vcversioner.docs (from rev 28843, packages/vcversioner/trunk/debian/python-vcversioner.docs)
===================================================================
--- packages/vcversioner/branches/wheezy-backports/debian/python-vcversioner.docs	                        (rev 0)
+++ packages/vcversioner/branches/wheezy-backports/debian/python-vcversioner.docs	2014-05-18 19:26:59 UTC (rev 28972)
@@ -0,0 +1 @@
+README.rst

Copied: packages/vcversioner/branches/wheezy-backports/debian/python-vcversioner.install (from rev 28843, packages/vcversioner/trunk/debian/python-vcversioner.install)
===================================================================
--- packages/vcversioner/branches/wheezy-backports/debian/python-vcversioner.install	                        (rev 0)
+++ packages/vcversioner/branches/wheezy-backports/debian/python-vcversioner.install	2014-05-18 19:26:59 UTC (rev 28972)
@@ -0,0 +1 @@
+usr/lib/python2.*

Copied: packages/vcversioner/branches/wheezy-backports/debian/python3-vcversioner.docs (from rev 28843, packages/vcversioner/trunk/debian/python3-vcversioner.docs)
===================================================================
--- packages/vcversioner/branches/wheezy-backports/debian/python3-vcversioner.docs	                        (rev 0)
+++ packages/vcversioner/branches/wheezy-backports/debian/python3-vcversioner.docs	2014-05-18 19:26:59 UTC (rev 28972)
@@ -0,0 +1 @@
+README.rst

Copied: packages/vcversioner/branches/wheezy-backports/debian/python3-vcversioner.install (from rev 28843, packages/vcversioner/trunk/debian/python3-vcversioner.install)
===================================================================
--- packages/vcversioner/branches/wheezy-backports/debian/python3-vcversioner.install	                        (rev 0)
+++ packages/vcversioner/branches/wheezy-backports/debian/python3-vcversioner.install	2014-05-18 19:26:59 UTC (rev 28972)
@@ -0,0 +1 @@
+usr/lib/python3.*

Modified: packages/vcversioner/branches/wheezy-backports/debian/rules
===================================================================
--- packages/vcversioner/branches/wheezy-backports/debian/rules	2014-05-18 11:19:51 UTC (rev 28971)
+++ packages/vcversioner/branches/wheezy-backports/debian/rules	2014-05-18 19:26:59 UTC (rev 28972)
@@ -1,3 +1,3 @@
 #!/usr/bin/make -f
 %:
-	dh $@ --with python2
+	dh $@ --with python2,python3 --buildsystem=pybuild




More information about the Python-modules-commits mailing list