[Python-modules-commits] r26201 - in packages/voluptuous/trunk/debian (4 files)

edmonds at users.alioth.debian.org edmonds at users.alioth.debian.org
Fri Oct 18 19:10:09 UTC 2013


    Date: Friday, October 18, 2013 @ 19:10:07
  Author: edmonds
Revision: 26201

0.8.2-1

Added:
  packages/voluptuous/trunk/debian/docs
Modified:
  packages/voluptuous/trunk/debian/changelog
  packages/voluptuous/trunk/debian/control
  packages/voluptuous/trunk/debian/rules

Modified: packages/voluptuous/trunk/debian/changelog
===================================================================
--- packages/voluptuous/trunk/debian/changelog	2013-10-18 17:22:18 UTC (rev 26200)
+++ packages/voluptuous/trunk/debian/changelog	2013-10-18 19:10:07 UTC (rev 26201)
@@ -1,9 +1,17 @@
-voluptuous (0.6.1-2) UNRELEASED; urgency=low
+voluptuous (0.8.2-1) unstable; urgency=low
 
+  [ Jakub Wilk ]
   * Use canonical URIs for Vcs-* fields.
 
- -- Jakub Wilk <jwilk at debian.org>  Sun, 05 May 2013 16:04:16 +0200
+  [ Robert S. Edmonds ]
+  * New upstream release.
+  * Add myself to Uploaders.
+  * Add python3-voluptous binary package.
+  * Build for only the default Python and Python 3 versions.
+  * Install README.md file.
 
+ -- Robert S. Edmonds <edmonds at debian.org>  Fri, 18 Oct 2013 14:44:42 -0400
+
 voluptuous (0.6.1-1) unstable; urgency=low
 
   * Initial release. Closes: #698354

Modified: packages/voluptuous/trunk/debian/control
===================================================================
--- packages/voluptuous/trunk/debian/control	2013-10-18 17:22:18 UTC (rev 26200)
+++ packages/voluptuous/trunk/debian/control	2013-10-18 19:10:07 UTC (rev 26201)
@@ -3,20 +3,21 @@
 Priority: optional
 Maintainer: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
 Uploaders: Antoine Musso <hashar at free.fr>,
- Paul Belanger <paul.belanger at polybeacon.com>
+ Paul Belanger <paul.belanger at polybeacon.com>,
+ Robert S. Edmonds <edmonds at debian.org>
 Build-Depends: debhelper (>= 9),
- python-all (>= 2.6.6-3),
- python-nose,
- python-setuptools
-X-Python-Version: >= 2.6
-Standards-Version: 3.9.3
+ dh-python,
+ python-all (>= 2.6.6-3), python3-all,
+ python-nose, python3-nose,
+ python-setuptools, python3-setuptools
+Standards-Version: 3.9.4
 Homepage: http://github.com/alecthomas/voluptuous
 Vcs-Svn: svn://anonscm.debian.org/python-modules/packages/voluptuous/trunk/
 Vcs-Browser: http://anonscm.debian.org/viewvc/python-modules/packages/voluptuous/trunk/
 
 Package: python-voluptuous
 Architecture: all
-Depends: ${python:Depends}, ${shlibs:Depends}, ${misc:Depends}
+Depends: ${python:Depends}, ${misc:Depends}
 Description: Python library to validate data
  Voluptuous is primarily intended to validate data coming in to Python
  as JSON, YAML, etc. The aim is to offer a light-weight style with three
@@ -27,3 +28,17 @@
  .
  It has been inspired by Validino and to a lesser extent by jsonvalidator and
  json_schema.
+
+Package: python3-voluptuous
+Architecture: all
+Depends: ${python3:Depends}, ${misc:Depends}
+Description: Python 3 library to validate data
+ Voluptuous is primarily intended to validate data coming in to Python
+ as JSON, YAML, etc. The aim is to offer a light-weight style with three
+ main goals:
+  1. simplicity
+  2. support for complex data structures
+  3. provide useful error messages
+ .
+ It has been inspired by Validino and to a lesser extent by jsonvalidator and
+ json_schema.

Added: packages/voluptuous/trunk/debian/docs
===================================================================
--- packages/voluptuous/trunk/debian/docs	                        (rev 0)
+++ packages/voluptuous/trunk/debian/docs	2013-10-18 19:10:07 UTC (rev 26201)
@@ -0,0 +1 @@
+README.md

Modified: packages/voluptuous/trunk/debian/rules
===================================================================
--- packages/voluptuous/trunk/debian/rules	2013-10-18 17:22:18 UTC (rev 26200)
+++ packages/voluptuous/trunk/debian/rules	2013-10-18 19:10:07 UTC (rev 26201)
@@ -2,19 +2,16 @@
 # -*- makefile -*-
 # Uncomment this to turn on verbose mode.
 #export DH_VERBOSE=1
+export PYBUILD_NAME=voluptuous
 
 %:
-	dh $@ --with python2
+	dh $@ --with python2,python3 --buildsystem=pybuild
 
 get-orig-source:
 	uscan --download-current-version --rename --destdir ../tarballs
 
 override_dh_auto_test:
-ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
-	set -ex; for python in $(shell pyversions -s); do \
-			$$python -m doctest tests.rst; \
-	done
-	nosetests --verbose
-endif
+	PYBUILD_SYSTEM=custom \
+	PYBUILD_TEST_ARGS="nosetests --verbose --with-doctest {build_dir}/ README.md tests.md" dh_auto_test
 
 .PHONY: get-orig-source override_dh_auto_test




More information about the Python-modules-commits mailing list