[python-pyorick] 01/01: python-pyorick (1.4-1) unstable; urgency=low

Thibaut Jean-Claude Paumard thibaut at moszumanska.debian.org
Tue May 19 13:50:45 UTC 2015


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

thibaut pushed a commit to branch master
in repository python-pyorick.

commit 1c719e7f6fb9af17aa20fb79493440f58979738f
Author: Thibaut Paumard <paumard at users.sourceforge.net>
Date:   Tue May 19 15:44:36 2015 +0200

    python-pyorick (1.4-1) unstable; urgency=low
    
      * Initial revision (Closes: 785604)
    
     -- Thibaut Paumard <thibaut at debian.org>  Tue, 19 May 2015 14:22:22 +0200
---
 debian/changelog            |  6 +++++
 debian/compat               |  1 +
 debian/control              | 55 +++++++++++++++++++++++++++++++++++++++++++++
 debian/copyright            | 34 ++++++++++++++++++++++++++++
 debian/python-pyorick.docs  |  1 +
 debian/python3-pyorick.docs |  1 +
 debian/rules                |  7 ++++++
 debian/source/format        |  1 +
 debian/watch                |  3 +++
 9 files changed, 109 insertions(+)

diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..da2c493
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,6 @@
+python-pyorick (1.4-1) unstable; urgency=low
+
+  * Initial revision (Closes: 785604)
+
+ -- Thibaut Paumard <thibaut at debian.org>  Tue, 19 May 2015 14:22:22 +0200
+
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..c1a3c8c
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,55 @@
+Source: python-pyorick
+Section: python
+Priority: extra
+Maintainer: Debian Science Maintainers <debian-science-maintainers at lists.alioth.debian.org>
+Uploaders: Thibaut Paumard <thibaut at debian.org>
+Build-Depends: debhelper (>= 9~), dh-python, python-all (>= 2.6.6-3~),
+	       python-setuptools, python3-all, python3-setuptools
+X-Python-Version: >= 2.6
+X-Python3-Version: >= 3.2
+Standards-Version: 3.9.6
+Vcs-Git: git://anonscm.debian.org/debian-science/packages/python-pyorick.git
+Vcs-Browser: http://anonscm.debian.org/gitweb/?p=debian-science/packages/python-pyorick.git
+Homepage: https://github.com/dhmunro/pyorick/
+
+Package: python-pyorick
+Architecture: all
+Depends: ${python:Depends}, ${misc:Depends}, yorick (>=2.2.04+dfsg-2~)
+Suggests: python3-pyorick
+Description: Python 2 module to execute Yorick code
+ The pyorick package starts Yorick as a subprocess and provides an
+ interface between Python and Yorick interpreted code.
+ .
+ Features:
+  + exec or eval arbitrary Yorick code strings
+  + get or set Yorick variables
+  + call Yorick functions or subroutines with Python arguments
+  + get or set slices of large Yorick arrays
+  + terminal mode to interact with Yorick by keyboard through Python
+ .
+ Most of the data is exchanged via binary pipes between the two
+ interpreters. Yorick runs in a request-reply mode. Python prints
+ anything Yorick sends to stdout or stderr except prompts.
+ .
+ This package contains the module for Python 2.
+
+Package: python3-pyorick
+Architecture: all
+Depends: ${python3:Depends}, ${misc:Depends}, yorick (>=2.2.04+dfsg-2~)
+Suggests: python-pyorick
+Description: Python 3 module to execute Yorick code
+ The pyorick package starts Yorick as a subprocess and provides an
+ interface between Python and Yorick interpreted code.
+ .
+ Features:
+  + exec or eval arbitrary Yorick code strings
+  + get or set Yorick variables
+  + call Yorick functions or subroutines with Python arguments
+  + get or set slices of large Yorick arrays
+  + terminal mode to interact with Yorick by keyboard through Python
+ .
+ Most of the data is exchanged via binary pipes between the two
+ interpreters. Yorick runs in a request-reply mode. Python prints
+ anything Yorick sends to stdout or stderr except prompts.
+ .
+ This package contains the module for Python 3.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..196162e
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,34 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: pyorick
+Upstream-Contact: David Munro <dhmunro at users.sourceforge.net>
+Source: https://pypi.python.org/pypi/pyorick/
+
+Files: *
+Copyright: 2014 David H. Munro and John E. Field
+License: BSD-2-clause
+ Copyright (c) 2014, David H. Munro and John E. Field
+ All rights reserved.
+ .
+ Redistribution and use in source and binary forms, with or without
+ modification, are permitted provided that the following conditions are
+ met:
+ .
+ 1. Redistributions of source code must retain the above copyright
+    notice, this list of conditions and the following disclaimer.
+ .
+ 2. 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.
+ .
+ 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/python-pyorick.docs b/debian/python-pyorick.docs
new file mode 100644
index 0000000..baee6c7
--- /dev/null
+++ b/debian/python-pyorick.docs
@@ -0,0 +1 @@
+DESCRIPTION.rst
diff --git a/debian/python3-pyorick.docs b/debian/python3-pyorick.docs
new file mode 100644
index 0000000..baee6c7
--- /dev/null
+++ b/debian/python3-pyorick.docs
@@ -0,0 +1 @@
+DESCRIPTION.rst
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..e6586a2
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,7 @@
+#!/usr/bin/make -f
+
+#export DH_VERBOSE = 1
+export PYBUILD_NAME = pyorick
+
+%:
+	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/watch b/debian/watch
new file mode 100644
index 0000000..5b7623a
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,3 @@
+version=3
+opts=uversionmangle=s/(rc|a|b|c)/~$1/ \
+http://pypi.debian.net/pyorick/pyorick-(.+)\.(?:zip|tgz|tbz|txz|(?:tar\.(?:gz|bz2|xz)))
\ No newline at end of file

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



More information about the debian-science-commits mailing list