[python-qwt] 01/01: first working version

Frédéric-Emmanuel Picca picca at moszumanska.debian.org
Wed Aug 26 09:01:42 UTC 2015


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

picca pushed a commit to branch master
in repository python-qwt.

commit 8bfcfeae2e3d906d9d8a9974eea9b44dbede7625
Author: Picca Frédéric-Emmanuel <picca at synchrotron-soleil.fr>
Date:   Wed Aug 26 10:01:55 2015 +0200

    first working version
---
 debian/changelog               |  5 +++
 debian/compat                  |  1 +
 debian/control                 | 79 ++++++++++++++++++++++++++++++++++++++++++
 debian/copyright               | 34 ++++++++++++++++++
 debian/gbp.conf                |  2 ++
 debian/python-qwt-doc.doc-base | 10 ++++++
 debian/python-qwt-doc.docs     |  1 +
 debian/rules                   | 12 +++++++
 debian/source/format           |  1 +
 debian/source/local-options    |  1 +
 debian/watch                   |  3 ++
 11 files changed, 149 insertions(+)

diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..15629b6
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+python-qwt (6.1.2~a3-1~exp1) experimental; urgency=low
+
+  * Initial release (Closes: #796955)
+
+ -- Picca Frédéric-Emmanuel <picca at debian.org>  Wed, 26 Aug 2015 10:30:45 +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..fa39ce4
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,79 @@
+Source: python-qwt
+Maintainer: Debian Science Maintainers <debian-science-maintainers at lists.alioth.debian.org>
+Uploaders: Picca Frédéric-Emmanuel <picca at debian.org>
+Section: science
+Priority: extra
+Build-Depends: debhelper (>= 9),
+               dh-python,
+               python-all,
+	       python-numpy,
+	       python-qt4,
+               python-setuptools,
+	       python-sip,
+               python3-all,
+	       python3-numpy,
+	       python3-pyqt4,
+               python3-setuptools,
+	       python3-sip
+Standards-Version: 3.9.6
+Vcs-Browser: http://anonscm.debian.org/gitweb/?p=debian-science/packages/python-qwt.git
+Vcs-Git: git://anonscm.debian.org/debian-science/packages/python-qwt.git
+Homepage: https://github.com/PierreRaybaut/qwt
+X-Python-Version: >= 2.7
+X-Python3-Version: >= 3.2
+
+Package: python-qwt
+Architecture: all
+Section: python
+Depends: ${misc:Depends},
+         ${python:Depends},
+         python-qt4,
+         spyder-common
+Provides: ${python:Provides}
+Description: Pure Python implementation of Qwt - Python 2
+ The qwt package is a pure Python implementation of Qwt C++ library
+ with the following limitations.
+ .
+ The following `Qwt` classes won't be reimplemented in `qwt` because most 
+ powerful features already exist in `guiqwt`:
+   * QwtPlotZoomer
+   * QwtCounter
+   * QwtEventPattern
+   * QwtPicker
+   * QwtPlotPicker
+ .
+ QwtClipper is not implemented yet (and it will probably be very
+ difficult or impossible to implement it in pure Python without
+ performance issues).  As a consequence, when zooming in a plot curve,
+ the entire curve is still painted (in other words, when working with
+ large amount of data, there is no performance gain when zooming in).
+ .
+ This is the Python 2 version of the package.
+
+Package: python3-qwt
+Architecture: all
+Section: python
+Depends: ${misc:Depends},
+         ${python3:Depends},
+         python3-pyqt4
+Provides: ${python3:Provides}
+Breaks: ${python3:Breaks}
+Description: Pure Python implementation of Qwt - Python 3
+ The qwt package is a pure Python implementation of Qwt C++ library
+ with the following limitations.
+ .
+ The following `Qwt` classes won't be reimplemented in `qwt` because most 
+ powerful features already exist in `guiqwt`:
+   * QwtPlotZoomer
+   * QwtCounter
+   * QwtEventPattern
+   * QwtPicker
+   * QwtPlotPicker
+ .
+ QwtClipper is not implemented yet (and it will probably be very
+ difficult or impossible to implement it in pure Python without
+ performance issues).  As a consequence, when zooming in a plot curve,
+ the entire curve is still painted (in other words, when working with
+ large amount of data, there is no performance gain when zooming in).
+ .
+ This is the Python 3 version of the package.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..2cbef90
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,34 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: Pierre Raybaut <pierre.raybaut at gmail.com>
+Upstream-Contact: pierre.raybaut at gmail.com
+Source: https://github.com/PierreRaybaut/qwt
+
+Files: *
+Copyright: © 2015 Pierre Raybaut <pierre.raybaut at gmail.com>
+License: Expat
+
+Files: debian/*
+Copyright: © 2015, Picca Frédéric-Emmanuel <picca at debian.org>
+License: Expat
+
+License: Expat
+ Permission is hereby granted, free of charge, to any person
+ obtaining a copy of this software and associated documentation
+ files (the "Software"), to deal in the Software without
+ restriction, including without limitation the rights to use,
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
+ copies of the Software, and to permit persons to whom the
+ Software is furnished to do so, subject to the following
+ conditions:
+ .
+ The above copyright notice and this permission notice shall be
+ included in all copies or substantial portions of the Software.
+ .
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
+ OTHER DEALINGS IN THE SOFTWARE.
diff --git a/debian/gbp.conf b/debian/gbp.conf
new file mode 100644
index 0000000..0bdb09f
--- /dev/null
+++ b/debian/gbp.conf
@@ -0,0 +1,2 @@
+[DEFAULT]
+debian-branch=master
diff --git a/debian/python-qwt-doc.doc-base b/debian/python-qwt-doc.doc-base
new file mode 100644
index 0000000..c7d383f
--- /dev/null
+++ b/debian/python-qwt-doc.doc-base
@@ -0,0 +1,10 @@
+Document: python-qwt-manual
+Title: python-qwt documentation manual
+Author: pierre.raybaut at gmail.com
+Abstract: python-qwt_
+ qwt is a pure Python implementation of Qwt C++ library, using PyQt and NumPy
+Section: Programming/Python
+
+Format: HTML
+Index: /usr/share/doc/python-qwt-doc/html/index.html
+Files: /usr/share/doc/python-qwt-doc/html/*
diff --git a/debian/python-qwt-doc.docs b/debian/python-qwt-doc.docs
new file mode 100644
index 0000000..b2dbf19
--- /dev/null
+++ b/debian/python-qwt-doc.docs
@@ -0,0 +1 @@
+build/html
\ No newline at end of file
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..6522138
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,12 @@
+#!/usr/bin/make -f
+# -*- makefile -*-
+
+export PYBUILD_NAME=qwt
+
+%:
+	dh $@ --with python2,python3 --buildsystem=pybuild
+
+override_dh_auto_install:
+	dh_auto_install
+	dh_numpy
+	dh_numpy3
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..4aceb10
--- /dev/null
+++ b/debian/source/local-options
@@ -0,0 +1 @@
+unapply-patches
diff --git a/debian/watch b/debian/watch
new file mode 100644
index 0000000..3d4a485
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,3 @@
+version=3
+opts=uversionmangle=s/(rc|a|b|c)/~$1/ \
+https://pypi.debian.net/qwt/qwt-(.+)\.(?: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-qwt.git



More information about the debian-science-commits mailing list