[python-bitstring] 02/02: initial debianization from first trial

Ghislain Vaillant ghisvail-guest at moszumanska.debian.org
Thu Apr 16 18:35:35 UTC 2015


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

ghisvail-guest pushed a commit to branch master
in repository python-bitstring.

commit 83bc28275d2a65d876b1494afddace5abd5f3e14
Author: Ghislain Antony Vaillant <ghisvail at gmail.com>
Date:   Thu Apr 16 19:33:08 2015 +0100

    initial debianization from first trial
---
 debian/compat        |  1 +
 debian/control       | 44 ++++++++++++++++++++++++++++++++++++++++++++
 debian/copyright     | 35 +++++++++++++++++++++++++++++++++++
 debian/rules         |  6 ++++++
 debian/source/format |  1 +
 5 files changed, 87 insertions(+)

diff --git a/debian/compat b/debian/compat
new file mode 100644
index 0000000..ec63514
--- /dev/null
+++ b/debian/compat
@@ -0,0 +1 @@
+9
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..8f983b0
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,44 @@
+Source: python-bitstring
+Maintainer: Ghislain Antony Vaillant <ghisvail at gmail.com>
+Section: python
+Priority: optional
+Build-Depends: debhelper (>= 9),
+               dh-python,
+               python-all,
+               python-setuptools,
+               python3-all,
+               python3-setuptools
+Standards-Version: 3.9.6
+Homepage: http://python-bitstring.googlecode.com
+
+Package: python-bitstring
+Architecture: all
+Depends: ${misc:Depends},
+         ${python:Depends}
+Description: Python module for manipulation of binary data (Python 2)
+ Bitstring is a pure Python module designed to help make the creation and 
+ analysis of binary data as simple and natural as possible.
+ .
+ Bitstrings can be constructed from integers (big and little endian), hex, 
+ octal, binary, strings or files. They can be sliced, joined, reversed, 
+ inserted into, overwritten, etc. with simple functions or slice notation. 
+ They can also be read from, searched and replaced, and navigated in, similar 
+ to a file or stream.
+ .
+ This package provides the Python 2 version of the module.
+
+Package: python3-bitstring
+Architecture: all
+Depends: ${misc:Depends},
+         ${python3:Depends}
+Description: Python module for manipulation of binary data (Python 3)
+ Bitstring is a pure Python module designed to help make the creation and 
+ analysis of binary data as simple and natural as possible.
+ .
+ Bitstrings can be constructed from integers (big and little endian), hex, 
+ octal, binary, strings or files. They can be sliced, joined, reversed, 
+ inserted into, overwritten, etc. with simple functions or slice notation. 
+ They can also be read from, searched and replaced, and navigated in, similar 
+ to a file or stream.
+ .
+ This package provides the Python 3 version of the module.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..2cf30b5
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,35 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: Scott Griffiths
+Upstream-Contact: scott at griffiths.name
+Source: https://pypi.python.org/pypi/bitstring/
+Files-Excluded:
+ doc
+
+Files: *
+Copyright: 2006-2014 Scott Griffiths
+License: Expat
+
+Files: debian/*
+Copyright: 2014 Ghislain Antony Vaillant
+License: Expat
+
+License: Expat
+ The MIT License
+ .
+ Permission is hereby granted, free of charge, to any person obtaining a copy
+ of this software and associated documentation files (the "Software"), to deal
+ in the Software without restriction, including without limitation the rights
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+ copies of the Software, and to permit persons to whom the Software is
+ furnished to do so, subject to the following conditions:
+ .
+ The above copyright notice and this permission notice shall be included in
+ all copies or substantial portions of the Software.
+ .
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+ THE SOFTWARE.
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..b564fab
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,6 @@
+#!/usr/bin/make -f
+
+export PYBUILD_NAME=bitstring
+%:
+	dh $@ --with python2,python3 --buildsystem=pybuild
+
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)

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



More information about the debian-science-commits mailing list