[reprounzip] 01/02: Initial debianisation
Ghislain Vaillant
ghisvail-guest at moszumanska.debian.org
Thu May 11 23:16:53 UTC 2017
This is an automated email from the git hooks/post-receive script.
ghisvail-guest pushed a commit to branch master
in repository reprounzip.
commit 45f94702dfd9408a0040ed37eca1e41ad97ced29
Author: Ghislain Antony Vaillant <ghisvail at gmail.com>
Date: Fri Apr 21 22:21:14 2017 +0100
Initial debianisation
---
debian/changelog | 5 ++++
debian/compat | 1 +
debian/control | 55 +++++++++++++++++++++++++++++++++++++
debian/copyright | 39 ++++++++++++++++++++++++++
debian/gbp.conf | 7 +++++
debian/reprounzip.lintian-overrides | 2 ++
debian/rules | 14 ++++++++++
debian/source/format | 1 +
debian/source/local-options | 1 +
debian/tests/control | 14 ++++++++++
debian/watch | 3 ++
11 files changed, 142 insertions(+)
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..e8c78e7
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+reprounzip (1.0.9-1) UNRELEASED; urgency=low
+
+ * Initial release. (Closes: #861646)
+
+ -- Ghislain Antony Vaillant <ghisvail at gmail.com> Fri, 21 Apr 2017 09:50:42 +0100
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..b948e81
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,55 @@
+Source: reprounzip
+Maintainer: Debian Science Maintainers <debian-science-maintainers at lists.alioth.debian.org>
+Uploaders: Ghislain Antony Vaillant <ghisvail at gmail.com>
+Section: science
+Priority: optional
+Build-Depends: debhelper (>= 10),
+ dh-python,
+ python3-all,
+ python3-requests,
+ python3-rpaths,
+ python3-setuptools,
+ python3-usagestats,
+ python3-yaml
+Standards-Version: 3.9.8
+Vcs-Browser: https://anonscm.debian.org/git/debian-science/packages/reprounzip.git
+Vcs-Git: https://anonscm.debian.org/git/debian-science/packages/reprounzip.git
+Homepage: https://www.reprozip.org
+X-Python3-Version: >= 3.3
+
+Package: reprounzip
+Architecture: all
+Section: utils
+Depends: ${misc:Depends},
+ ${python3:Depends},
+ python3-reprounzip
+Description: tool for reproducing scientific experiments (unpacker)
+ ReproZip is a tool aimed at simplifying the process of creating
+ reproducible experiments from command-line executions, a frequently-used
+ common denominator in computational science.
+ .
+ It tracks operating system calls and creates a package that contains
+ all the binaries, files and dependencies required to run a given
+ command on the author’s computational environment (packing step). A
+ reviewer can then extract the experiment in his environment to
+ reproduce the results (unpacking step).
+ .
+ This package provides the ReproZip unpacker.
+
+Package: python3-reprounzip
+Architecture: all
+Section: python
+Depends: ${misc:Depends},
+ ${python3:Depends}
+Description: modules for the ReproZip unpacker
+ ReproZip is a tool aimed at simplifying the process of creating
+ reproducible experiments from command-line executions, a frequently-used
+ common denominator in computational science.
+ .
+ It tracks operating system calls and creates a package that contains
+ all the binaries, files and dependencies required to run a given
+ command on the author’s computational environment (packing step). A
+ reviewer can then extract the experiment in his environment to
+ reproduce the results (unpacking step).
+ .
+ This package provides the modules for Python 3.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..588d551
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,39 @@
+Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: reprounzip
+Source: https://pypi.python.org/pypi/reprozip
+
+Files: *
+Copyright: 2014-2017 New York University
+License: BSD-3-Clause
+
+Files: debian/*
+Copyright: 2017 Ghislain Antony Vaillant <ghisvail at gmail.com>
+License: BSD-3-Clause
+
+License: BSD-3-Clause
+ BSD 3-Clause License
+ .
+ Redistribution and use in source and binary forms, with or without
+ modification, are permitted provided that the following conditions are met:
+ .
+ * Redistributions of source code must retain the above copyright notice, this
+ list of conditions and the following disclaimer.
+ .
+ * 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.
+ .
+ * Neither the name of the copyright holder nor the names of its
+ contributors may be used to endorse or promote products derived from
+ this software without specific prior written permission.
+ .
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
+ AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
+ FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
+ CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
+ OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
diff --git a/debian/gbp.conf b/debian/gbp.conf
new file mode 100644
index 0000000..f53906f
--- /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
+sign-tags = True
+pristine-tar = True
diff --git a/debian/reprounzip.lintian-overrides b/debian/reprounzip.lintian-overrides
new file mode 100644
index 0000000..703ed68
--- /dev/null
+++ b/debian/reprounzip.lintian-overrides
@@ -0,0 +1,2 @@
+# Upstream does not provide manpages for the command-line tools yet.
+binary-without-manpage
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..377d8fc
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,14 @@
+#!/usr/bin/make -f
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE = 1
+
+export PYBUILD_NAME = reprounzip
+
+%:
+ dh $@ --with python3 --buildsystem=pybuild
+
+override_dh_auto_install:
+ dh_auto_install
+ dh_movefiles --package=$(PYBUILD_NAME) \
+ --sourcedir=debian/python3-$(PYBUILD_NAME) usr/bin
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/local-options b/debian/source/local-options
new file mode 100644
index 0000000..b2b7b88
--- /dev/null
+++ b/debian/source/local-options
@@ -0,0 +1 @@
+extend-diff-ignore="^[^/]+\.egg-info/"
diff --git a/debian/tests/control b/debian/tests/control
new file mode 100644
index 0000000..49007a9
--- /dev/null
+++ b/debian/tests/control
@@ -0,0 +1,14 @@
+Test-Command: set -e
+ ; cd "$AUTOPKGTEST_TMP"
+ ; HOME=/tmp
+ ; reprozip usage_report --disable
+ ; reprozip -v trace /bin/echo
+ ; reprozip -v pack echo.rpz
+ ; reprounzip usage_report --disable
+ ; reprounzip -v info echo.rpz
+ ; reprounzip -v directory setup echo.rpz echo
+ ; reprounzip -v directory run echo
+Depends: reprounzip,
+ reprozip
+Restrictions: allow-stderr
+
diff --git a/debian/watch b/debian/watch
new file mode 100644
index 0000000..7e7dc73
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,3 @@
+version=4
+opts=uversionmangle=s/(rc|a|b|c)/~$1/ \
+https://pypi.debian.net/reprounzip/reprounzip@ANY_VERSION@@ARCHIVE_EXT@
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/debian-science/packages/reprounzip.git
More information about the debian-science-commits
mailing list