[Python-modules-commits] [python-sabyenc] 03/04: Initial release.

JCF Ploemen jcfp-guest at moszumanska.debian.org
Sun Aug 27 08:59:19 UTC 2017


This is an automated email from the git hooks/post-receive script.

jcfp-guest pushed a commit to branch master
in repository python-sabyenc.

commit d3eb3d87f98624264492b8cf34330bf379a6af72
Author: jcfp <linux at jcf.pm>
Date:   Sun Aug 27 10:56:39 2017 +0200

    Initial release.
---
 debian/changelog |  5 +++++
 debian/compat    |  1 +
 debian/control   | 30 ++++++++++++++++++++++++++++++
 debian/copyright | 48 ++++++++++++++++++++++++++++++++++++++++++++++++
 debian/rules     |  9 +++++++++
 debian/watch     |  2 ++
 6 files changed, 95 insertions(+)

diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..496978c
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+python-sabyenc (3.0.2-1) UNRELEASED; urgency=medium
+
+  * Initial release.
+
+ -- JCF Ploemen (jcfp) <linux at jcf.pm>  Sun, 27 Aug 2017 08:53:50 +0000
diff --git a/debian/compat b/debian/compat
new file mode 100644
index 0000000..f599e28
--- /dev/null
+++ b/debian/compat
@@ -0,0 +1 @@
+10
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..e0bd6b9
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,30 @@
+Source: python-sabyenc
+Homepage: https://github.com/sabnzbd/sabyenc
+Section: python
+Priority: optional
+Maintainer: JCF Ploemen (jcfp) <linux at jcf.pm>
+Uploaders: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
+Build-Depends:
+ debhelper (>= 10),
+ dh-python,
+ python-all-dev,
+ python-setuptools
+Standards-Version: 4.1.0.0
+X-Python-Version: >= 2.7
+Vcs-Git: https://anonscm.debian.org/git/python-modules/packages/python-sabyenc.git
+Vcs-Browser: https://anonscm.debian.org/cgit/python-modules/packages/python-sabyenc.git
+
+Package: python-sabyenc
+Architecture: any
+Depends: ${shlibs:Depends}, ${misc:Depends}, ${python:Depends}
+Provides: ${python:Provides}
+Description: yEnc extension for Python, optimized for Usenet
+ Modified version of the original python-yenc module by Alessandro Duca,
+ optimized for use within SABnzbd. The module was extended to do header
+ parsing and full yEnc decoding from a Python list of chunks, the way in
+ which data is retrieved from usenet.
+ .
+ This is particularly beneficial when SSL is enabled, which limits the
+ size of each chunk to 16K. Parsing these chunks in Python is much more
+ costly. Additionally, this module releases Python's GIL during decoding,
+ greatly increasing performance of the overall download process.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..d74ac40
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,48 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: SAByenc
+Upstream-Contact: safihre at sabnzbd.org
+Source: https://github.com/sabnzbd/sabyenc
+
+Files: *
+Copyright:
+ 2003, 2011, Alessandro Duca <alessandro.duca at gmail.com>
+ 2016-2017 Safihre <safihre at sabnzbd.org>
+License: LGPL-2.1+
+ This library is free software; you can redistribute it and/or
+ modify it under the terms of the GNU Lesser General Public
+ License as published by the Free Software Foundation; either
+ version 2.1 of the License, or (at your option) any later version.
+ .
+ This library is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ Lesser General Public License for more details.
+ .
+ You should have received a copy of the GNU Lesser General Public
+ License along with this library; if not, write to the Free Software
+ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ .
+ On Debian systems, the complete text of the GNU Lesser General Public
+ License can be found in `/usr/share/common-licenses/LGPL-2.1'.
+
+Files: debian/*
+Copyright:
+ 2007, 2008, Adam Cécile (Le_Vert) <gandalf at le-vert.net>
+ 2013-2017 JCF Ploemen (jcfp) <linux at jcf.pm>
+License: GPL-2+
+ This package is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+ .
+ This package is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ GNU General Public License for more details.
+ .
+ You should have received a copy of the GNU General Public License
+ along with this package; if not, write to the Free Software
+ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+ .
+ On Debian systems, the complete text of the GNU General Public
+ License can be found in `/usr/share/common-licenses/GPL-2'.
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..4addaf3
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,9 @@
+#!/usr/bin/make -f
+
+#export DH_VERBOSE=1
+
+# enable all hardening except pie (ftbfs)
+export DEB_BUILD_MAINT_OPTIONS = hardening=+all,-pie
+
+%:
+	dh $@ --with python2
diff --git a/debian/watch b/debian/watch
new file mode 100644
index 0000000..db44772
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,2 @@
+version=3
+https://pypi.debian.net/sabyenc/sabyenc-(.+)\.(?:zip|tgz|tbz|txz|(?:tar\.(?:gz|bz2|xz)))

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/python-sabyenc.git



More information about the Python-modules-commits mailing list