[pyoperators] 01/03: initial debianization via py2dsc

Ghislain Vaillant ghisvail-guest at moszumanska.debian.org
Tue Sep 23 22:28:16 UTC 2014


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

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

commit 5afb62d2d96a74d1f3014a449b6f1c3e5768a1b0
Author: Ghislain Antony Vaillant <ghisvail at gmail.com>
Date:   Tue Sep 23 23:08:41 2014 +0100

    initial debianization via py2dsc
---
 debian/changelog     |  5 +++++
 debian/compat        |  1 +
 debian/control       | 32 ++++++++++++++++++++++++++++++++
 debian/rules         |  8 ++++++++
 debian/source/format |  1 +
 5 files changed, 47 insertions(+)

diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..5c25380
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+pyoperators (0.12.13-1) unstable; urgency=low
+
+  * source package automatically created by stdeb 0.8.2
+
+ -- Ghislain Antony Vaillant <ghisvail at gmail.com>  Tue, 23 Sep 2014 23:01:10 +0100
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..6bd6479
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,32 @@
+Source: pyoperators
+Maintainer: Ghislain Antony Vaillant <ghisvail at gmail.com>
+Section: python
+Priority: optional
+Build-Depends: python-all-dev (>= 2.6.6-3), debhelper (>= 9)
+Standards-Version: 3.9.1
+
+Package: python-pyoperators
+Architecture: any
+Depends: ${misc:Depends}, ${python:Depends}, ${shlibs:Depends}
+Description: Operators and solvers for high-performance computing.
+ ===========
+ PyOperators
+ ===========
+ .
+ The PyOperators package defines operators and solvers for high-performance computing. These operators are multi-dimensional functions with optimised and controlled memory management. If linear, they behave like matrices with a sparse storage footprint.
+ .
+ Getting started
+ ===============
+ .
+ To define an operator, one needs to define a direct function
+ which will replace the usual matrix-vector operation:
+ .
+ >>> def f(x, out):
+ ...     out[...] = 2 * x
+ .
+ Then, you can instantiate an ``Operator``:
+ .
+ >>> A = pyoperators.Operator(direct=f, flags='symmetric')
+ .
+ An alternative way to define an operator is to define a subclass:
+
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..6a564ac
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,8 @@
+#!/usr/bin/make -f
+
+# This file was automatically generated by stdeb 0.8.2 at
+# Tue, 23 Sep 2014 23:01:10 +0100
+export PYBUILD_NAME=pyoperators
+%:
+	dh $@ --with python2 --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/pyoperators.git



More information about the debian-science-commits mailing list