--- python-prctl-1.1.1.orig/COPYING +++ python-prctl-1.1.1/COPYING @@ -13,3 +13,29 @@ You should have received a copy of the GNU General Public License along with this program. If not, see . + +--------------------------------------------------------------------- + +The documentation is heavily based on the linux manpages prctl and +capabilities, which is covered by the following license: + +Permission is granted to make and distribute verbatim copies of this +manual provided the copyright notice and this permission notice are +preserved on all copies. + +Permission is granted to copy and distribute modified versions of this +manual under the conditions for verbatim copying, provided that the +entire resulting derived work is distributed under the terms of a +permission notice identical to this one + +Since the Linux kernel and libraries are constantly changing, this +manual page may be incorrect or out-of-date. The author(s) assume no +responsibility for errors or omissions, or for damages resulting from +the use of the information contained herein. The author(s) may not +have taken the same level of care in the production of this manual, +which is licensed free of charge, as they might when working +professionally. + +Formatted or processed versions of this manual, if unaccompanied by +the source, must acknowledge the copyright and authors of this work. +License. --- python-prctl-1.1.1.orig/debian/changelog +++ python-prctl-1.1.1/debian/changelog @@ -0,0 +1,35 @@ +python-prctl (1.1.1-1.2) unstable; urgency=medium + + * Non-maintainer upload. + * Build using dh-python. Closes: #786312. + + -- Matthias Klose Tue, 18 Aug 2015 18:22:28 +0200 + +python-prctl (1.1.1-1.1) unstable; urgency=low + + * Non-maintainer upload. + * Build documentation in override_dh_auto_build target rather than in build + target (closes: #666322). Thanks to Lucas Nussbaum for the bug report. + + Bump build-dependency on debhelper to >= 7.0.50~. + + -- Jakub Wilk Thu, 26 Apr 2012 18:48:35 +0200 + +python-prctl (1.1.1-1) unstable; urgency=low + + * Allow the running kernel to be < 2.6.26, useful for buildds + * Initial release to debian proper (Closes: #578328) + + -- Dennis Kaarsemaker Mon, 19 Apr 2010 21:55:57 +0200 + +python-prctl (1.1-0~seveas1) lucid; urgency=low + + * New upstream release + - Add full capability handling + + -- Dennis Kaarsemaker Sun, 21 Mar 2010 22:36:00 +0100 + +python-prctl (1.0-0~seveas1) unstable; urgency=low + + * Initial release. + + -- Dennis Kaarsemaker Fri, 12 Mar 2010 21:39:15 +0100 --- python-prctl-1.1.1.orig/debian/compat +++ python-prctl-1.1.1/debian/compat @@ -0,0 +1 @@ +7 --- python-prctl-1.1.1.orig/debian/control +++ python-prctl-1.1.1/debian/control @@ -0,0 +1,18 @@ +Source: python-prctl +Section: python +Priority: extra +Maintainer: Dennis Kaarsemaker +Uploaders: Andrew Pollock +Build-Depends: debhelper (>= 7.0.50~), dh-python, python-all-dev (>= 2.5), libcap-dev (>=2), python-sphinx (>= 0.6) +Standards-Version: 3.8.4 +XS-Python-Version: >= 2.5 +Vcs-Git: http://github.com/seveas/python-prctl + +Package: python-prctl +Architecture: any +Depends: ${python:Depends}, ${shlibs:Depends}, ${misc:Depends} +Description: Python interface to the prctl() syscall + The Linux prctl() function allows you to control specific characteristics of a + process' behaviour. Usage of the function is fairly messy though, due to + limitations in C and Linux. This module provides a nice non-messy Python(ic) + interface. --- python-prctl-1.1.1.orig/debian/copyright +++ python-prctl-1.1.1/debian/copyright @@ -0,0 +1,65 @@ +This work was packaged for Debian by: + + Dennis Kaarsemaker on vr mrt 12 21:52:20 CET 2010 + +It was downloaded from: + + + +Upstream Author: + + Dennis Kaarsemaker + +Copyright: + + Copyright (C) 2010 Dennis Kaarsemaker + +License: + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This package is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . + + --------------------------------------------------------------------- + + The documentation is heavily based on the linux manpages prctl and + capabilities, which is covered by the following license: + + Permission is granted to make and distribute verbatim copies of this + manual provided the copyright notice and this permission notice are + preserved on all copies. + + Permission is granted to copy and distribute modified versions of this + manual under the conditions for verbatim copying, provided that the + entire resulting derived work is distributed under the terms of a + permission notice identical to this one + + Since the Linux kernel and libraries are constantly changing, this + manual page may be incorrect or out-of-date. The author(s) assume no + responsibility for errors or omissions, or for damages resulting from + the use of the information contained herein. The author(s) may not + have taken the same level of care in the production of this manual, + which is licensed free of charge, as they might when working + professionally. + + Formatted or processed versions of this manual, if unaccompanied by + the source, must acknowledge the copyright and authors of this work. + License. + +On Debian systems, the complete text of the GNU General +Public License version 3 can be found in `/usr/share/common-licenses/GPL-3'. + +The Debian packaging is: + + Copyright (C) 2010 Dennis Kaarsemaker + +and is licensed under the GPL version 3, see above. --- python-prctl-1.1.1.orig/debian/docs +++ python-prctl-1.1.1/debian/docs @@ -0,0 +1,3 @@ +README +docs/index.rst +docs/_build/html/index.html --- python-prctl-1.1.1.orig/debian/rules +++ python-prctl-1.1.1/debian/rules @@ -0,0 +1,14 @@ +#!/usr/bin/make -f + +export PRCTL_SKIP_KERNEL_CHECK = 1 + +%: + dh $@ --with python2 + +clean: + dh clean + make -C docs clean + +override_dh_auto_build: + dh_auto_build + make -C docs html