[Python-modules-commits] [python-libusb1] 03/03: Initial release. Closes: #834369.

Arnaud Fontaine arnau at moszumanska.debian.org
Fri Nov 18 07:56:13 UTC 2016


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

arnau pushed a commit to branch master
in repository python-libusb1.

commit aa498984a950743b805c8fef1f36429577da3005
Author: Arnaud Fontaine <arnau at debian.org>
Date:   Fri Nov 18 16:54:43 2016 +0900

    Initial release. Closes: #834369.
---
 debian/changelog      |  5 +++++
 debian/compat         |  1 +
 debian/control        | 28 ++++++++++++++++++++++++++++
 debian/copyright      | 27 +++++++++++++++++++++++++++
 debian/docs           |  1 +
 debian/examples       |  1 +
 debian/rules          | 11 +++++++++++
 debian/source/options |  1 +
 debian/watch          |  3 +++
 9 files changed, 78 insertions(+)

diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..a6bda99
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+python-libusb1 (1.5.3-1) UNRELEASED; urgency=medium
+
+  * Initial release. Closes: #834369.
+
+ -- Arnaud Fontaine <arnau at debian.org>  Fri, 18 Nov 2016 16:00:14 +0900
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..4726a87
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,28 @@
+Source: python-libusb1
+Section: python
+Priority: optional
+Maintainer: Arnaud Fontaine <arnau at debian.org>
+Uploaders: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
+Build-Depends: debhelper (>= 10~),
+               dh-python,
+               python-all
+Build-Depends-Indep: python-setuptools
+X-Python-Version: >= 2.4
+Standards-Version: 3.9.8
+Homepage: http://github.com/vpelletier/python-libusb1
+Vcs-Git: https://anonscm.debian.org/git/python-modules/packages/python-libusb1.git
+Vcs-Browser: https://anonscm.debian.org/cgit/python-modules/packages/python-libusb1.git
+
+Package: python-libusb1
+Architecture: all
+Depends: ${python:Depends},
+         ${misc:Depends},
+         libusb-1.0-0
+Description: Python wrapper for libusb1 (Python 2)
+ Makes the whole libusb1 API available to Python. Both synchronous and
+ asynchronous APIs are exposed, giving access to all USB transfer types
+ (control, bulk, interrupt, isochronous).
+ .
+ This python module differs from pyusb in that it only aims to wrap
+ libusb1. As a consequence, it can expose all libusb1 features and not a
+ subset common to various usb libraries.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..f5458aa
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,27 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: libusb1
+Upstream-Contact: Vincent Pelletier <plr.vincent at gmail.com>
+Source: http://github.com/vpelletier/python-libusb1
+
+Files: *
+Copyright: 2010-2016 Vincent Pelletier <plr.vincent at gmail.com>
+License: LGPL-2.1+
+
+Files: debian/*
+Copyright: 2016, Arnaud Fontaine <arnau at debian.org>
+License: LGPL-2.1+
+
+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
diff --git a/debian/docs b/debian/docs
new file mode 100644
index 0000000..a1320b1
--- /dev/null
+++ b/debian/docs
@@ -0,0 +1 @@
+README.rst
diff --git a/debian/examples b/debian/examples
new file mode 100644
index 0000000..e39721e
--- /dev/null
+++ b/debian/examples
@@ -0,0 +1 @@
+examples/*
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..02c3cff
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,11 @@
+#!/usr/bin/make -f
+
+#export DH_VERBOSE=1
+export PYBUILD_NAME=usb1
+
+# Upstream does not install unittest tests so copy it before executing
+# 'pybuild --test' (dh_auto_test)
+export PYBUILD_BEFORE_TEST=cp {dir}/testUSB1.py {build_dir}
+
+%:
+	dh $@ --with python2 --buildsystem=pybuild
diff --git a/debian/source/options b/debian/source/options
new file mode 100644
index 0000000..c5064e7
--- /dev/null
+++ b/debian/source/options
@@ -0,0 +1 @@
+extend-diff-ignore = "\.egg-info"
diff --git a/debian/watch b/debian/watch
new file mode 100644
index 0000000..5bcc164
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,3 @@
+version=3
+opts="dversionmangle=s/\+.*//" \
+  http://pypi.debian.net/libusb1/libusb1-(.+)\.(?: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-libusb1.git



More information about the Python-modules-commits mailing list