[Python-modules-commits] [python-setproctitle] 05/13: Import python-setproctitle_1.0.1-1.dsc

Orestis Ioannou oorestisime-guest at moszumanska.debian.org
Sun Sep 18 12:02:48 UTC 2016


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

oorestisime-guest pushed a commit to branch master
in repository python-setproctitle.

commit bbe64d0a8b884185514bd3d9b5857f1071ae5329
Author: Orestis Ioannou <orestis at oioannou.com>
Date:   Wed Sep 14 00:43:12 2016 +0200

    Import python-setproctitle_1.0.1-1.dsc
---
 debian/changelog                   | 16 ++++++++
 debian/compat                      |  1 +
 debian/control                     | 30 +++++++++++++++
 debian/copyright                   | 77 ++++++++++++++++++++++++++++++++++++++
 debian/docs                        |  1 +
 debian/python-setproctitle.install |  1 +
 debian/rules                       | 32 ++++++++++++++++
 debian/source/format               |  1 +
 debian/watch                       |  2 +
 9 files changed, 161 insertions(+)

diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..3a020d6
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,16 @@
+python-setproctitle (1.0.1-1) unstable; urgency=low
+
+  * New upstream version.
+  * Added missing dependency for python, thanks to Sven Joachim for reporting
+    this (Closes: #584078).
+  * Fixed problem when building package more than once, thanks to Jakub Wilk
+    for reporting this (Closes: #583887).
+  * Disabled tests for kfreebsd until setproctitle is fixed in libbsd.
+
+ -- Örjan Persson <orange at fobie.net>  Mon, 31 May 2010 20:58:30 +0200
+
+python-setproctitle (1.0-1) unstable; urgency=low
+
+  * Initial release (Closes: #583506).
+
+ -- Örjan Persson <orange at fobie.net>  Thu, 27 May 2010 20:39:52 +0200
diff --git a/debian/compat b/debian/compat
new file mode 100644
index 0000000..7f8f011
--- /dev/null
+++ b/debian/compat
@@ -0,0 +1 @@
+7
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..b92a82c
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,30 @@
+Source: python-setproctitle
+Section: python
+Priority: extra
+Maintainer: Örjan Persson <orange at fobie.net>
+Uploaders: Andreas Schuldei <andreas at debian.org>
+Build-Depends: debhelper (>= 7.0.50), python-all-dev, gcc (>= 4), python-support, python-nose, procps
+Standards-Version: 3.8.4
+Homepage: http://code.google.com/p/py-setproctitle/
+
+Package: python-setproctitle
+Architecture: any
+Depends: ${shlibs:Depends}, ${misc:Depends}, ${python:Depends}
+Description: A setproctitle implementation for Python
+ The library allows a process to change its title (as displayed by system tools
+ such as ps and top).
+ .
+ Changing the title is mostly useful in multi-process systems, for example when
+ a master process is forked: changing the children's title allows to identify
+ the task each process is busy with. The technique is used by PostgreSQL and
+ the OpenSSH Server for example.
+
+Package: python-setproctitle-dbg
+Section: debug
+Architecture: any
+Depends: ${misc:Depends}, python-setproctitle (= ${binary:Version})
+Description: A setproctitle implementation for Python
+ The library allows a process to change its title (as displayed by system tools
+ such as ps and top).
+ .
+ This is the debugging symbols for setproctitle.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..9202e22
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,77 @@
+This work was packaged for Debian by:
+
+    Örjan Persson <orange at fobie.net> on Thu, 27 May 2010 20:39:52 +0200
+
+It was downloaded from http://pypi.python.org/pypi/setproctitle/
+
+Upstream Author(s):
+
+    Daniele Varrazzo <daniele.varrazzo at gmail.com>
+
+Copyright:
+
+    Copyright (C) 2009 Daniele Varrazzo
+
+License:
+
+    Redistribution and use in source and binary forms, with or without
+    modification, are permitted under the terms of the BSD License.
+
+    THIS SOFTWARE IS PROVIDED BY THE REGENTS 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 REGENTS 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.
+
+On Debian systems, the complete text of the BSD License can be
+found in `/usr/share/common-licenses/BSD'.
+
+The Debian packaging is:
+
+    Copyright (C) 2010 Örjan Persson <orange at fobie.net>
+
+and is licensed under the BSD License.
+
+The files ./src/spt_config.h and ./src/spt_status.{c,h}
+are based on code from PostgreSQL:
+
+    Copyright (c) 2000-2009, PostgreSQL Global Development Group
+    Portions Copyright (c) 1996-2009, PostgreSQL Global Development Group
+    Portions Copyright (c) 1994, The Regents of the University of California
+
+and are licensed under the PostgreSQL License:
+
+    Permission to use, copy, modify, and distribute this software and its
+    documentation for any purpose, without fee, and without a written agreement
+    is hereby granted, provided that the above copyright notice and this
+    paragraph and the following two paragraphs appear in all copies.
+    
+    IN NO EVENT SHALL THE UNIVERSITY OF CALIFORNIA BE LIABLE TO ANY PARTY FOR
+    DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, INCLUDING
+    LOST PROFITS, ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS
+    DOCUMENTATION, EVEN IF THE UNIVERSITY OF CALIFORNIA HAS BEEN ADVISED OF THE
+    POSSIBILITY OF SUCH DAMAGE.
+    
+    THE UNIVERSITY OF CALIFORNIA SPECIFICALLY DISCLAIMS ANY WARRANTIES,
+    INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
+    AND FITNESS FOR A PARTICULAR PURPOSE.  THE SOFTWARE PROVIDED HEREUNDER IS
+    ON AN "AS IS" BASIS, AND THE UNIVERSITY OF CALIFORNIA HAS NO OBLIGATIONS TO
+    PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
+
+The file ./src/strlcpy.c is based on code from PostgreSQL,
+but originates from OpenBSD:
+
+    Portions Copyright (c) 1996-2007, PostgreSQL Global Development Group
+    Copyright (c) 1998 Todd C. Miller <Todd.Miller at courtesan.com>
+
+and the PostgreSQL portions are licensed under the PostgreSQL License,
+see above for license details,
+
+and where the OpenBSD parts are licensed under the BSD License,
+see `/usr/share/common-licenses/BSD'.
diff --git a/debian/docs b/debian/docs
new file mode 100644
index 0000000..e845566
--- /dev/null
+++ b/debian/docs
@@ -0,0 +1 @@
+README
diff --git a/debian/python-setproctitle.install b/debian/python-setproctitle.install
new file mode 100644
index 0000000..444b3d5
--- /dev/null
+++ b/debian/python-setproctitle.install
@@ -0,0 +1 @@
+debian/tmp/usr/lib
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..172898d
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,32 @@
+#!/usr/bin/make -f
+
+PYVERSIONS := $(shell pyversions -sv)
+
+%:
+	dh  $@
+
+override_dh_auto_clean: $(PYVERSIONS:%=clean-%-stamp)
+	dh_auto_clean
+
+clean-%-stamp:
+	rm -rf build/test-$*
+
+override_dh_installchangelogs:
+	dh_installchangelogs HISTORY
+
+override_dh_strip:
+	dh_strip --dbg-package=python-setproctitle-dbg
+
+override_dh_auto_test: $(PYVERSIONS:%=test-%-stamp)
+test-%-stamp:	
+ifeq (,$(findstring nocheck,$(DEB_BUILD_OPTIONS)))
+	rm -rf build/test-$*
+	mkdir build/test-$*
+	python$* setup.py install_lib -d build/test-$*
+ifeq (,$(findstring kfreebsd,$(shell dpkg-architecture -qDEB_BUILD_ARCH_OS)))
+	PYTHONPATH=build/test-$* python$* /usr/bin/nosetests -v tests
+endif
+	touch test-python-$*-stamp
+endif
+
+.PHONY: override_dh_auto_clean override_dh_installchangelogs override_dh_strip override_dh_auto_test
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..9c5fe16
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,2 @@
+version=3
+http://pypi.python.org/packages/source/s/setproctitle/setproctitle-(.*)\.tar\.gz

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



More information about the Python-modules-commits mailing list