summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHans-Christoph Steiner <hans@eds.org>2014-10-23 09:31:55 -0700
committerHans-Christoph Steiner <hans@eds.org>2014-10-23 09:31:55 -0700
commit38d19ef7e6bc6dad3a4924a4c74528fdd642af19 (patch)
tree7e30d03a0b7e62457dd0392cb810f094e09c4df9
parent71a94d66e5de806b50e4056a02d8ae68f1ed3a52 (diff)
parent9187bbc77209e87e0ec89b53067f9625577b72dd (diff)
python-pynzb (0.1.0-2) unstable; urgency=low
* use https:// URL for pypi in debian/watch * clarify description (Closes: #749218) [dgit import unpatched python-pynzb 0.1.0-2]
-rw-r--r--debian/changelog13
-rw-r--r--debian/compat1
-rw-r--r--debian/control35
-rw-r--r--debian/copyright30
-rw-r--r--debian/gbp.conf7
-rwxr-xr-xdebian/rules9
-rw-r--r--debian/source/format1
-rw-r--r--debian/watch2
8 files changed, 98 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..3524f78
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,13 @@
+python-pynzb (0.1.0-2) unstable; urgency=low
+
+ * use https:// URL for pypi in debian/watch
+ * clarify description (Closes: #749218)
+
+ -- Hans-Christoph Steiner <hans@eds.org> Thu, 23 Oct 2014 12:31:55 -0400
+
+python-pynzb (0.1.0-1) unstable; urgency=low
+
+ * source package automatically created by stdeb 0.6.0+git
+ * Initial release (Closes: #723170)
+
+ -- Hans-Christoph Steiner <hans@eds.org> Mon, 16 Sep 2013 22:20:44 -0400
diff --git a/debian/compat b/debian/compat
new file mode 100644
index 0000000..7f8f011
--- /dev/null
+++ b/debian/compat
@@ -0,0 +1 @@
+7
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..09440ee
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,35 @@
+Source: python-pynzb
+Maintainer: Debian Python Modules Team <python-modules-team@lists.alioth.debian.org>
+Uploaders: Hans-Christoph Steiner <hans@eds.org>
+Section: python
+Priority: optional
+Build-Depends: python-setuptools (>= 0.6b3),
+ python-all (>= 2.6.6-3),
+ debhelper (>= 7)
+Standards-Version: 3.9.4
+Homepage: https://pypi.python.org/pypi/pynzb/
+Vcs-Git: git://anonscm.debian.org/collab-maint/python-pynzb.git
+Vcs-Browser: http://anonscm.debian.org/gitweb/?p=collab-maint/python-pynzb.git
+
+Package: python-pynzb
+Architecture: all
+Depends: ${misc:Depends},
+ ${python:Depends},
+ python-lxml
+Description: unified API for parsing NZB files from NNTP (Usenet) servers
+ pynzb is a unified API for parsing NZB files, with several concrete
+ implementations included.
+ .
+ NZB is an XML-based file format for retrieving posts from NNTP (Usenet)
+ servers. Since NZB is XML-based, it's relatively easy to build one-off
+ parsers to parse NZB files. This project is an attempt to consolidate those
+ many one-off NZB parsers into one simple interface.
+ .
+ This package includes three implementations (listed in order of
+ compatibility): one based on expat, another based on ElementTree, and a final
+ implementation based on lxml. The expat version should work on all versions
+ of Python > 2.0. The ElementTree implementation will work on Python > 2.5.
+ The lxml version will work as long as lxml is installed.
+ .
+ Simply import nzb_parser from the pynzb package. It's an instantiated
+ version of the fastest available parser that your system can support.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..1a95484
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,30 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: pynzb
+Upstream-Contact: Eric Florenzano <floguy@gmail.com>
+Source: https://github.com/ericflo/pynzb
+
+Files: *
+Copyright: 2009, Eric Florenzano
+License: BSD
+
+Files: ./debian/*
+Copyright: 2012 Hans-Christoph Steiner <hans@eds.org>
+License: public domain
+
+License: BSD
+ 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.
+ 3. Neither the name of the author nor the names of its contributors
+ may be used to endorse or promote products derived from this software
+ without specific prior written permission.
+
+License: public domain
+ I hereby release these files into the public domain.
+
diff --git a/debian/gbp.conf b/debian/gbp.conf
new file mode 100644
index 0000000..ae1dc36
--- /dev/null
+++ b/debian/gbp.conf
@@ -0,0 +1,7 @@
+[DEFAULT]
+upstream-branch = upstream
+debian-branch = master
+upstream-tag = upstream/%(version)s
+debian-tag = debian/%(version)s
+pristine-tar = True
+sign-tags = True
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..d25abae
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,9 @@
+#!/usr/bin/make -f
+
+# This file was automatically generated by stdeb 0.6.0+git at
+# Mon, 16 Sep 2013 19:42:13 -0400
+
+%:
+ dh $@ --with python2 --buildsystem=python_distutils
+
+
diff --git a/debian/source/format b/debian/source/format
new file mode 100644
index 0000000..163aaf8
--- /dev/null
+++ b/debian/source/format
@@ -0,0 +1 @@
+3.0 (quilt)
diff --git a/debian/watch b/debian/watch
new file mode 100644
index 0000000..6386c8a
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,2 @@
+version=3
+https://pypi.python.org/packages/source/p/pynzb/pynzb-(.*).tar.gz