[Python-modules-commits] r24036 - in packages (11 files)
sunweaver at users.alioth.debian.org
sunweaver at users.alioth.debian.org
Sun Apr 28 20:48:24 UTC 2013
Date: Sunday, April 28, 2013 @ 20:48:23
Author: sunweaver
Revision: 24036
Add package: python-xmlserialize by Jonas Haag (upstream author)
Added:
packages/xmlserialize/
packages/xmlserialize/trunk/
packages/xmlserialize/trunk/debian/
packages/xmlserialize/trunk/debian/changelog
packages/xmlserialize/trunk/debian/compat
packages/xmlserialize/trunk/debian/control
packages/xmlserialize/trunk/debian/copyright
packages/xmlserialize/trunk/debian/rules
packages/xmlserialize/trunk/debian/source/
packages/xmlserialize/trunk/debian/source/format
packages/xmlserialize/trunk/debian/watch
Added: packages/xmlserialize/trunk/debian/changelog
===================================================================
--- packages/xmlserialize/trunk/debian/changelog (rev 0)
+++ packages/xmlserialize/trunk/debian/changelog 2013-04-28 20:48:23 UTC (rev 24036)
@@ -0,0 +1,5 @@
+python-xmlserialize (1~git20130428-1) UNRELEASED; urgency=low
+
+ * Initial release. (Closes: #682488).
+
+ -- Mike Gabriel <mike.gabriel at das-netzwerkteam.de> Mon, 16 Jul 2012 14:52:09 +0200
Added: packages/xmlserialize/trunk/debian/compat
===================================================================
--- packages/xmlserialize/trunk/debian/compat (rev 0)
+++ packages/xmlserialize/trunk/debian/compat 2013-04-28 20:48:23 UTC (rev 24036)
@@ -0,0 +1 @@
+9
\ No newline at end of file
Added: packages/xmlserialize/trunk/debian/control
===================================================================
--- packages/xmlserialize/trunk/debian/control (rev 0)
+++ packages/xmlserialize/trunk/debian/control 2013-04-28 20:48:23 UTC (rev 24036)
@@ -0,0 +1,25 @@
+Source: python-xmlserialize
+Section: python
+Priority: optional
+Maintainer: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
+Uploaders:
+ Mike Gabriel <sunweaver at debian.org>
+Build-Depends:
+ cdbs (>= 0.4.90~),
+ debhelper (>= 9),
+ python (>= 2.6.6-3~),
+ python-setuptools
+Standards-Version: 3.9.4
+Homepage: https://github.com/jonashaag/xmlserialize.py
+X-Python-Version: >= 2.6
+
+Package: python-xmlserialize
+Architecture: all
+Depends:
+ ${misc:Depends},
+ ${python:Depends},
+ ${shlibs:Depends},
+ python-lxml
+Description: Python-(to|from)-xml-(un)serializer
+ An extensible Python-(to|from)-xml-(un)serializer in beautiful pure-Python
+ code.
Added: packages/xmlserialize/trunk/debian/copyright
===================================================================
--- packages/xmlserialize/trunk/debian/copyright (rev 0)
+++ packages/xmlserialize/trunk/debian/copyright 2013-04-28 20:48:23 UTC (rev 24036)
@@ -0,0 +1,36 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: xmlserialize.py
+Upstream-Contact: Jonas Haag <jonas at lophus.org>
+Source: https://github.com/jonashaag/xmlserialize.py
+
+Files: *
+Copyright:
+ 2011 Jonas Haag <jonas at lophus.org>
+License: BSD-2-clause
+
+Files: debian/*
+Copyright: 2012-2013 Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
+License: BSD-2-clause
+
+License: BSD-2-clause
+ Redistribution and use in source and binary forms, with or without
+ modification, are permitted provided that the following conditions
+ are met:
+ .
+ 1. Redistributions of source code must retain the above copyright
+ notice, this list of conditions and the following disclaimer.
+ 2. 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.
+ .
+ THIS SOFTWARE IS PROVIDED BY THE REGENTS 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 REGENTS 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.
Added: packages/xmlserialize/trunk/debian/rules
===================================================================
--- packages/xmlserialize/trunk/debian/rules (rev 0)
+++ packages/xmlserialize/trunk/debian/rules 2013-04-28 20:48:23 UTC (rev 24036)
@@ -0,0 +1,18 @@
+#!/usr/bin/make -f
+
+include /usr/share/cdbs/1/rules/debhelper.mk
+include /usr/share/cdbs/1/class/python-distutils.mk
+
+MAIN_VERSION = $(shell dpkg-parsechangelog|sed -n '/^Version/{s/Version: \(.*\)/\1/p}')
+BUILD_VERSION = $(shell echo $(MAIN_VERSION)|sed -n 's/\([0-9.]*\)[-+~].*/\1/p')
+VER = $(BUILD_VERSION)~git$(shell date -u '+%Y%m%d')
+
+get-git-source:
+ dh_testdir
+ rm -rfv .upstream ../python-xmlserialize_$(VER).orig.tar.bz2
+ mkdir .upstream
+ mkdir -p ../tarballs
+ cd .upstream && git clone git://github.com/jonashaag/xmlserialize.py --depth 1
+ find .upstream -type f | while read F; do chmod -x "$$F"; done
+ tar --exclude .git -jvcf ../tarballs/python-xmlserialize_$(VER).orig.tar.bz2 .upstream
+ rm -rfv .upstream
Property changes on: packages/xmlserialize/trunk/debian/rules
___________________________________________________________________
Added: svn:executable
+ *
Added: packages/xmlserialize/trunk/debian/source/format
===================================================================
--- packages/xmlserialize/trunk/debian/source/format (rev 0)
+++ packages/xmlserialize/trunk/debian/source/format 2013-04-28 20:48:23 UTC (rev 24036)
@@ -0,0 +1 @@
+3.0 (quilt)
\ No newline at end of file
Added: packages/xmlserialize/trunk/debian/watch
===================================================================
--- packages/xmlserialize/trunk/debian/watch (rev 0)
+++ packages/xmlserialize/trunk/debian/watch 2013-04-28 20:48:23 UTC (rev 24036)
@@ -0,0 +1,2 @@
+version=3
+https://github.com/jonashaag/xmlserialize.py/downloads .*/xmlserialize-(.*).tar.gz
More information about the Python-modules-commits
mailing list