[Python-modules-commits] r23955 - in packages (13 files)

hashar-guest at users.alioth.debian.org hashar-guest at users.alioth.debian.org
Thu Apr 18 10:04:58 UTC 2013


    Date: Thursday, April 18, 2013 @ 10:04:56
  Author: hashar-guest
Revision: 23955

voluptuous python module

Closes: ITP #698354

Note that this is upstream version 0.6.1 for now.

Added:
  packages/voluptuous/
  packages/voluptuous/trunk/
  packages/voluptuous/trunk/debian/
  packages/voluptuous/trunk/debian/changelog
  packages/voluptuous/trunk/debian/compat
  packages/voluptuous/trunk/debian/control
  packages/voluptuous/trunk/debian/copyright
  packages/voluptuous/trunk/debian/gbp.conf
  packages/voluptuous/trunk/debian/rules
  packages/voluptuous/trunk/debian/source/
  packages/voluptuous/trunk/debian/source/format
  packages/voluptuous/trunk/debian/source/options
  packages/voluptuous/trunk/debian/watch

Added: packages/voluptuous/trunk/debian/changelog
===================================================================
--- packages/voluptuous/trunk/debian/changelog	                        (rev 0)
+++ packages/voluptuous/trunk/debian/changelog	2013-04-18 10:04:56 UTC (rev 23955)
@@ -0,0 +1,5 @@
+python-voluptuous (0.6.1-1) unstable; urgency=low
+
+  * Initial release. Closes: #698354
+
+ -- Antoine Musso <hashar at free.fr>  Wed, 17 Apr 2013 09:40:58 +0000

Added: packages/voluptuous/trunk/debian/compat
===================================================================
--- packages/voluptuous/trunk/debian/compat	                        (rev 0)
+++ packages/voluptuous/trunk/debian/compat	2013-04-18 10:04:56 UTC (rev 23955)
@@ -0,0 +1 @@
+9

Added: packages/voluptuous/trunk/debian/control
===================================================================
--- packages/voluptuous/trunk/debian/control	                        (rev 0)
+++ packages/voluptuous/trunk/debian/control	2013-04-18 10:04:56 UTC (rev 23955)
@@ -0,0 +1,29 @@
+Source: voluptuous
+Section: python
+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>
+Build-Depends: debhelper (>= 9),
+ python-all (>= 2.6.6-3),
+ python-nose,
+ python-setuptools
+X-Python-Version: >= 2.6
+Standards-Version: 3.9.3
+Homepage: http://github.com/alecthomas/voluptuous
+Vcs-Svn: svn://svn.debian.org/python-modules/packages/voluptuous/trunk/
+Vcs-Browser: http://svn.debian.org/viewsvn/python-modules/packages/voluptuous/trunk/
+
+Package: python-voluptuous
+Architecture: all
+Depends: ${python:Depends}, ${shlibs: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
+ 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/copyright
===================================================================
--- packages/voluptuous/trunk/debian/copyright	                        (rev 0)
+++ packages/voluptuous/trunk/debian/copyright	2013-04-18 10:04:56 UTC (rev 23955)
@@ -0,0 +1,35 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: voluptuous
+Upstream-Contact: Alec Thomas
+Source: https://github.com/alecthomas/voluptuous
+
+Files: *
+Copyright: 2010-2013 Alec Thomas. All rights reserved.
+License: BSD-3-clause
+ Redistribution and use in source and binary forms, with or without
+ modification, are permitted provided that the following conditions are met:
+  - Redistributions of source code must retain the above copyright notice, this
+    list of conditions and the following disclaimer.
+  - Redistributions in binary form must reproduce the above copyright notice,
+    this list of conditions and the following disclaimer in the documentation
+    and/or other materials provided with the distribution.
+  - Neither the name of SwapOff.org nor the names of its contributors may be
+    used to endorse or promote products derived from this software without
+    specific prior written permission.
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
+ ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+ WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
+ FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
+ CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
+ OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+Files: debian/*
+Copyright: 2013 Antoine Musso <amusso at free.fr>
+License: GPL-2
+ On Debian systems, the full text of the GNU General Public
+ License version 2 can be found in the file
+ `/usr/share/common-licenses/GPL-2'.

Added: packages/voluptuous/trunk/debian/gbp.conf
===================================================================
--- packages/voluptuous/trunk/debian/gbp.conf	                        (rev 0)
+++ packages/voluptuous/trunk/debian/gbp.conf	2013-04-18 10:04:56 UTC (rev 23955)
@@ -0,0 +1,12 @@
+[DEFAULT]
+cleaner = /bin/true
+upstream-tag = v%(version)s
+
+[git-buildpackage]
+upstream-tree=tag
+debian-branch=master
+overlay = True
+no-create-orig = True
+tarball-dir = ../tarballs/
+export-dir = ../build-area/
+compression = gzip

Added: packages/voluptuous/trunk/debian/rules
===================================================================
--- packages/voluptuous/trunk/debian/rules	                        (rev 0)
+++ packages/voluptuous/trunk/debian/rules	2013-04-18 10:04:56 UTC (rev 23955)
@@ -0,0 +1,18 @@
+#!/usr/bin/make -f
+# -*- makefile -*-
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+%:
+	dh $@ --with python2
+
+get-orig-source:
+	uscan --noconf --force-download --rename --repack --destdir=. --download-current-version
+
+override_dh_auto_test:
+	set -ex; for python in $(shell pyversions -s); do \
+			$$python -m doctest tests.rst; \
+	done
+	nosetests --verbose
+
+.PHONY: get-orig-source override_dh_auto_test


Property changes on: packages/voluptuous/trunk/debian/rules
___________________________________________________________________
Added: svn:executable
   + *

Added: packages/voluptuous/trunk/debian/source/format
===================================================================
--- packages/voluptuous/trunk/debian/source/format	                        (rev 0)
+++ packages/voluptuous/trunk/debian/source/format	2013-04-18 10:04:56 UTC (rev 23955)
@@ -0,0 +1 @@
+3.0 (quilt)

Added: packages/voluptuous/trunk/debian/source/options
===================================================================
--- packages/voluptuous/trunk/debian/source/options	                        (rev 0)
+++ packages/voluptuous/trunk/debian/source/options	2013-04-18 10:04:56 UTC (rev 23955)
@@ -0,0 +1 @@
+extend-diff-ignore = '^\.gitreview$'

Added: packages/voluptuous/trunk/debian/watch
===================================================================
--- packages/voluptuous/trunk/debian/watch	                        (rev 0)
+++ packages/voluptuous/trunk/debian/watch	2013-04-18 10:04:56 UTC (rev 23955)
@@ -0,0 +1,2 @@
+version=3
+http://githubredir.debian.net/github/alecthomas/voluptuous /(.+)\.tar\.gz




More information about the Python-modules-commits mailing list