[Python-modules-commits] [python-lupa] 02/02: Initial release (Closes: #878973).

Michael Fladischer fladi at moszumanska.debian.org
Wed Oct 18 09:02:39 UTC 2017


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

fladi pushed a commit to branch debian/master
in repository python-lupa.

commit f35640437261dbf85a9ab49b951caaae1a2bed18
Author: Michael Fladischer <FladischerMichael at fladi.at>
Date:   Wed Oct 18 10:54:10 2017 +0200

    Initial release (Closes: #878973).
---
 debian/changelog         |  5 +++++
 debian/clean             |  3 +++
 debian/compat            |  1 +
 debian/control           | 41 +++++++++++++++++++++++++++++++++++++++++
 debian/copyright         | 32 ++++++++++++++++++++++++++++++++
 debian/python3-lupa.docs |  1 +
 debian/rules             | 14 ++++++++++++++
 debian/source/format     |  1 +
 debian/watch             |  4 ++++
 9 files changed, 102 insertions(+)

diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..19eaf59
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+python-lupa (1.5+dfsg-1) unstable; urgency=low
+
+  * Initial release (Closes: #878973).
+
+ -- Michael Fladischer <fladi at debian.org>  Wed, 18 Oct 2017 08:44:42 +0200
diff --git a/debian/clean b/debian/clean
new file mode 100644
index 0000000..b9025e4
--- /dev/null
+++ b/debian/clean
@@ -0,0 +1,3 @@
+lupa/_lupa.c
+lupa/_lupa.*.so
+lupa.egg-info/SOURCES.txt
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..d0047d4
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,41 @@
+Source: python-lupa
+Section: python
+Priority: optional
+Maintainer: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
+Uploaders: Michael Fladischer <fladi at debian.org>
+Build-Depends: cython3,
+               debhelper (>= 10),
+               dh-python,
+               libluajit-5.1-dev,
+               pkg-config,
+               python3-all,
+               python3-all-dev,
+               python3-setuptools
+Standards-Version: 4.1.1
+X-Python3-Version: >= 3.3
+Homepage: https://github.com/scoder/lupa/
+Vcs-Browser: https://anonscm.debian.org/cgit/python-modules/packages/python-lupa.git
+Vcs-Git: https://anonscm.debian.org/git/python-modules/packages/python-lupa.git
+
+Package: python3-lupa
+Architecture: any
+Depends: ${misc:Depends},
+         ${python3:Depends},
+         ${shlibs:Depends}
+Description: Python wrapper around LuaJIT (Python3 version)
+ Lupa integrates the runtimes of Lua or LuaJIT2 into CPython. It is a partial
+ rewrite of LunaticPython in Cython with some additional features such as proper
+ coroutine support.
+ .
+ Features:
+  * separate Lua runtime states through a LuaRuntime class
+  * Python coroutine wrapper for Lua coroutines
+  * iteration support for Python objects in Lua and Lua objects in Python
+  * proper encoding and decoding of strings (configurable per runtime, UTF-8 by
+    default)
+  * frees the GIL and supports threading in separate runtimes when calling into
+    Lua
+  * written for LuaJIT2, but also works with the normal Lua interpreter
+  * easy to hack on and extend as it is written in Cython, not C
+ .
+ This package contains the Python 3 version of the library.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..98f4ffd
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,32 @@
+Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: python-lupa
+Upstream-Contact: Stefan Behnel <stefan_ml at behnel.de>
+Source: https://github.com/scoder/lupa/
+Files-Excluded: third-party
+
+Files: *
+Copyright: 2010, Stefan Behnel <stefan_ml at behnel.de>
+License: Expat
+
+Files: debian/*
+Copyright: 2017, Michael Fladischer <fladi 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/python3-lupa.docs b/debian/python3-lupa.docs
new file mode 100644
index 0000000..a1320b1
--- /dev/null
+++ b/debian/python3-lupa.docs
@@ -0,0 +1 @@
+README.rst
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..6067e52
--- /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 DEB_BUILD_MAINT_OPTIONS = hardening=+all
+DPKG_EXPORT_BUILDFLAGS = 1
+include /usr/share/dpkg/buildflags.mk
+
+export PYBUILD_NAME=lupa
+export PYBUILD_BEFORE_BUILD=rm -f lupa/_lupa.c
+
+%:
+	dh $@ --with 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..a1ae070
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,4 @@
+version=3
+opts=uversionmangle=s/(rc|a|b|c)/~$1/,filenamemangle=s/\S+\/(lupa-[\d\.]+\.tar\.gz)#md5=\w+$/$1/,downloadurlmangle=s/\/simple\/lupa\/\.\.\/\.\.([^#]+).*/$1/,repacksuffix=+dfsg,dversionmangle=s/\+dfsg$// \
+https://pypi.python.org/simple/lupa/ \
+\S+/lupa-(\S+)\.tar\.gz#md5=\w+

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



More information about the Python-modules-commits mailing list