[iep] 03/03: initial debianization

Ghislain Vaillant ghisvail-guest at moszumanska.debian.org
Mon Dec 15 16:35:01 UTC 2014


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

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

commit 76f18a205198f98c942d2af6dfa265e8b6bee5c1
Author: Ghislain Antony Vaillant <ghisvail at gmail.com>
Date:   Mon Dec 15 11:57:30 2014 +0000

    initial debianization
---
 debian/changelog |  5 +++++
 debian/compat    |  1 +
 debian/control   | 42 ++++++++++++++++++++++++++++++++++++++++++
 debian/copyright | 39 +++++++++++++++++++++++++++++++++++++++
 debian/rules     | 22 ++++++++++++++++++++++
 debian/watch     |  4 ++++
 6 files changed, 113 insertions(+)

diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..2786c2e
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+iep (3.5-1) UNRELEASED; urgency=medium
+
+  * Initial release. (Closes: #XXXXXX)
+
+ -- Ghislain Antony Vaillant <ghisvail at gmail.com>  Thu, 11 Dec 2014 10:54:50 +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..7b92107
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,42 @@
+Source: iep
+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,
+ python3-all,
+ python3-setuptools 
+Standards-Version: 3.9.6
+Vcs-Browser: http://anonscm.debian.org/gitweb/?p=debian-science/packages/iep.git
+Vcs-Git: git://anonscm.debian.org/debian-science/packages/iep.git
+Homepage: http://www.iep-project.org/
+
+Package: iep
+Architecture: all
+Depends:
+ ${misc:Depends},
+ ${python3:Depends},
+ python3-ieplib (= ${binary:Version})
+Description: Interactive Editor for Python (Python 3)
+ This is the Python 3 version of the package.
+
+Package: python3-ieplib
+Architecture: all
+Depends:
+ ${misc:Depends},
+ ${python3:Depends},
+ python3-pyzolib,
+ python3-pyqt4
+Description: Interactive Editor for Python (Python 3 modules)
+ This is the Python 3 version of the package.
+
+#Package: python-ieplib-doc
+#Architecture: all
+#Section: doc
+#Depends:
+# ${misc:Depends},
+# ${sphinxdoc:Depends}
+#Description: Interactive Editor for Python (Documentation)
+# This is the documentation of the package.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..b74a3c8
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,39 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: iep
+Upstream-Contact: Almar Klein <almar.klein at gmail.com>
+Source: https://bitbucket.org/iep-project/iep
+
+Files: *
+Copyright: 2013 The IEP development team
+License: BSD-3-Clause
+
+Files: debian/*
+Copyright: 2014 Ghislain Antony Vaillant
+License: BSD-3-Clause
+
+License: BSD-3-Clause
+ IEP is subject to the (new) BSD license:
+ .
+ Copyright (C) 2013, the IEP development team
+ .
+ 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 its contributors nor their affiliation 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 IEP DEVELOPMENT TEAM 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/rules b/debian/rules
new file mode 100755
index 0000000..53c4566
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,22 @@
+#!/usr/bin/make -f
+# -*- makefile -*-
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+export PYBUILD_NAME=ieplib
+#export PYBUILD_BUILD_ARGS=--no-doc
+#export PYBUILD_INSTALL_ARGS=--no-doc
+
+%:
+	dh $@ --with python3 --buildsystem=pybuild
+
+#override_dh_auto_build:
+#	dh_auto_build
+#	PYTHONPATH=. http_proxy='localhost' sphinx-build -N -bhtml doc/ build/html  # HTML generator
+
+override_dh_auto_install:
+	dh_auto_install
+	# Install the package containing the iep program (Python 3)
+	dh_install --sourcedir=$(CURDIR)/debian/python3-ieplib \
+		--package=iep usr/bin
+	rm -rf $(CURDIR)/debian/python3-ieplib/usr/bin
diff --git a/debian/watch b/debian/watch
new file mode 100644
index 0000000..64c2ca2
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,4 @@
+version=3
+opts=uversionmangle=s/(rc|dev|a|b|c)/~$1/ \
+https://pypi.python.org/packages/source/i/iep/iep-(.*)\.(?:tar\.gz|zip|tar\.bz2)
+

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



More information about the debian-science-commits mailing list