[pyzolib] 01/01: initial debianization

Ghislain Vaillant ghisvail-guest at moszumanska.debian.org
Thu Dec 11 15:37:30 UTC 2014


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

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

commit 1dfc36ea2e172218dacf433c4d774e9e8c349261
Author: Ghislain Antony Vaillant <ghisvail at gmail.com>
Date:   Thu Dec 11 15:35:12 2014 +0000

    initial debianization
---
 debian/changelog      |  5 ++++
 debian/compat         |  1 +
 debian/control        | 70 +++++++++++++++++++++++++++++++++++++++++++++++++++
 debian/copyright      | 17 +++++++++++++
 debian/rules          |  9 +++++++
 debian/source/format  |  1 +
 debian/source/options |  1 +
 debian/watch          |  3 +++
 8 files changed, 107 insertions(+)

diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..852595b
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+pyzolib (0.3.3-1) unstable; urgency=low
+
+  * Initial release (Closes: #772825)
+
+ -- Ghislain Antony Vaillant <ghisvail at gmail.com>  Thu, 20 Nov 2014 14:41:00 +0000
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..d0475c9
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,70 @@
+Source: pyzolib
+Maintainer: Debian Science Maintainers <debian-science-maintainers at lists.alioth.debian.org>
+Uploaders: Ghislain Antony Vaillant <ghisvail at gmail.com>
+Section: science
+Priority: extra
+Build-Depends:
+ debhelper (>= 9),
+ dh-python,
+ python-all (>= 2.6.6-3~),
+ python-setuptools,
+ python3-all,
+ python3-setuptools 
+Standards-Version: 3.9.6
+Vcs-Browser: http://anonscm.debian.org/gitweb/?p=debian-science/packages/pyzolib.git
+Vcs-Git: git://anonscm.debian.org/debian-science/packages/pyzolib.git
+Homepage: https://bitbucket.org/pyzo/pyzolib
+
+Package: python-pyzolib
+Architecture: all
+Depends:
+ ${misc:Depends},
+ ${python:Depends}
+Description: Utilities for the Pyzo environment (Python 2)
+ The pyzolib package provides basic functionality for the Pyzo environment.
+ It contains a collection of modules and small packages that should be
+ imported as "from pyzolib import xxx"
+ .
+ The packages currently are:
+   * path - object oriented path processing (no more os.path.x)
+   * paths - Get paths to useful directories in a cross platform manner.
+   * qt - Proxy for importing QtCore et al. from PySide or PyQt4
+   * ssdf - the Simple Structured Data Format (for config files and 
+     scientific databases)
+   * insertdocs - a sphynx pre-processor to include docstrings in the text,
+     allowing readthedocs.org to host the docs without requiring importing code.
+   * pyximport - for easy on the fly compilation of Cython, using the Pyzo 
+     environment to establish the location of a gcc compiler.
+   * gccutils - used by the above to manage the gcc compiler.
+   * interprerers - list the Python interpreters available on this system.
+   * dllutils - utilities to set the RPATH in dynamic libararies and 
+     remove depndencies on the MSVCR from the embedded manifest.
+ .
+ This is the Python 2 version of the package.
+
+Package: python3-pyzolib
+Architecture: all
+Depends:
+ ${misc:Depends},
+ ${python3:Depends}
+Description: Utilities for the Pyzo environment (Python 3)
+ The pyzolib package provides basic functionality for the Pyzo environment.
+ It contains a collection of modules and small packages that should be
+ imported as "from pyzolib import xxx"
+ .
+ The packages currently are:
+   * path - object oriented path processing (no more os.path.x)
+   * paths - Get paths to useful directories in a cross platform manner.
+   * qt - Proxy for importing QtCore et al. from PySide or PyQt4
+   * ssdf - the Simple Structured Data Format (for config files and 
+     scientific databases)
+   * insertdocs - a sphynx pre-processor to include docstrings in the text,
+     allowing readthedocs.org to host the docs without requiring importing code.
+   * pyximport - for easy on the fly compilation of Cython, using the Pyzo 
+     environment to establish the location of a gcc compiler.
+   * gccutils - used by the above to manage the gcc compiler.
+   * interprerers - list the Python interpreters available on this system.
+   * dllutils - utilities to set the RPATH in dynamic libararies and 
+     remove depndencies on the MSVCR from the embedded manifest.
+ .
+ This is the Python 3 version of the package.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..889256a
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,17 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: pyzolib
+Upstream-Contact: Almar Klein <almar.klein at gmail.com>
+Source: https://bitbucket.org/pyzo/pyzolib
+
+Files: *
+Copyright: 2012 The Pyzo Team
+           2012 Almar Klein
+License: BSD-3-Clause
+
+Files: debian/*
+Copyright: 2014 Ghislain Antony Vaillant
+License: BSD-3-Clause
+
+License: BSD-3-Clause
+ On Debian systems, the complete text of the BSD-3-Clause 
+ License can be found in "/usr/share/common-licenses/BSD".
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..262b337
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,9 @@
+#!/usr/bin/make -f
+# -*- makefile -*-
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+export PYBUILD_NAME=pyzolib
+
+%:
+	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)
diff --git a/debian/source/options b/debian/source/options
new file mode 100644
index 0000000..4d82e22
--- /dev/null
+++ b/debian/source/options
@@ -0,0 +1 @@
+extend-diff-ignore="\.egg-info"
\ No newline at end of file
diff --git a/debian/watch b/debian/watch
new file mode 100644
index 0000000..c7b7a31
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,3 @@
+version=3
+opts=uversionmangle=s/(rc|dev|a|b|c)/~$1/ \
+https://pypi.python.org/packages/source/p/pyzolib/pyzolib-(.*)\.(?:tar\.gz|zip|tar\.bz2)

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



More information about the debian-science-commits mailing list