[Python-modules-commits] r15535 - in packages/faulthandler/trunk (11 files)

miriam at users.alioth.debian.org miriam at users.alioth.debian.org
Tue Feb 8 01:21:56 UTC 2011


    Date: Tuesday, February 8, 2011 @ 01:21:50
  Author: miriam
Revision: 15535

[svn-inject] Applying Debian modifications (1.3-1) to trunk

Added:
  packages/faulthandler/trunk/debian/
  packages/faulthandler/trunk/debian/README.source
  packages/faulthandler/trunk/debian/changelog
  packages/faulthandler/trunk/debian/compat
  packages/faulthandler/trunk/debian/control
  packages/faulthandler/trunk/debian/copyright
  packages/faulthandler/trunk/debian/docs
  packages/faulthandler/trunk/debian/rules
  packages/faulthandler/trunk/debian/source/
  packages/faulthandler/trunk/debian/source/format
  packages/faulthandler/trunk/debian/source/options


Property changes on: packages/faulthandler/trunk/debian
___________________________________________________________________
Added: mergeWithUpstream
   + 1

Added: packages/faulthandler/trunk/debian/README.source
===================================================================
--- packages/faulthandler/trunk/debian/README.source	                        (rev 0)
+++ packages/faulthandler/trunk/debian/README.source	2011-02-08 01:21:50 UTC (rev 15535)
@@ -0,0 +1 @@
+See /usr/share/doc/quilt/README.source

Added: packages/faulthandler/trunk/debian/changelog
===================================================================
--- packages/faulthandler/trunk/debian/changelog	                        (rev 0)
+++ packages/faulthandler/trunk/debian/changelog	2011-02-08 01:21:50 UTC (rev 15535)
@@ -0,0 +1,5 @@
+faulthandler (1.3-1) UNRELEASED; urgency=low
+
+  * Initial release. Closes: #612363
+
+ -- Miriam Ruiz <little_miry at yahoo.es>  Tue, 08 Feb 2011 01:06:39 +0100

Added: packages/faulthandler/trunk/debian/compat
===================================================================
--- packages/faulthandler/trunk/debian/compat	                        (rev 0)
+++ packages/faulthandler/trunk/debian/compat	2011-02-08 01:21:50 UTC (rev 15535)
@@ -0,0 +1 @@
+7

Added: packages/faulthandler/trunk/debian/control
===================================================================
--- packages/faulthandler/trunk/debian/control	                        (rev 0)
+++ packages/faulthandler/trunk/debian/control	2011-02-08 01:21:50 UTC (rev 15535)
@@ -0,0 +1,20 @@
+Source: faulthandler
+Section: python
+Priority: optional
+Maintainer: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
+Uploaders: Miriam Ruiz <little_miry at yahoo.es>
+Build-Depends: debhelper (>= 7), dh-buildinfo, quilt,
+ python-all-dev, python-support, python-setuptools
+Standards-Version: 3.9.1
+Homepage: http://pypi.python.org/pypi/faulthandler/
+
+Package: python-faulthandler
+Architecture: any
+Depends: ${shlibs:Depends}, ${python:Depends}, ${misc:Depends}
+Provides: ${python:Provides}
+Suggests: python-faulthandler-dbg (= ${binary:Version})
+Description: Display the Python backtrace on a crash
+ Fault handler for SIGSEGV, SIGFPE, SIGBUS and SIGILL signals: it displays
+ the Python backtrace and restores the previous handler. It allocates an
+ alternate stack for this handler, if signaltstack() is available, to be
+ able to allocate memory on the stack, even on stack overflow.

Added: packages/faulthandler/trunk/debian/copyright
===================================================================
--- packages/faulthandler/trunk/debian/copyright	                        (rev 0)
+++ packages/faulthandler/trunk/debian/copyright	2011-02-08 01:21:50 UTC (rev 15535)
@@ -0,0 +1,38 @@
+Format-Specification: http://wiki.debian.org/Proposals/CopyrightFormat
+Upstream-Source: http://pypi.python.org/pypi/faulthandler/
+Upstream-Maintainer: Victor Stinner <victor.stinner at haypocalc.com>
+Debianized-By: Miriam Ruiz <little_miry at yahoo.es>
+Debianized-Date: Tue, 08 Feb 2011 01:06:39 +0100
+
+Files: *
+Copyright: Copyright (C) 2010, Victor Stinner. All rights reserved.
+Licence: BSD-2
+
+Files: debian/*
+Copyright: Copyright (C) 2011, Miriam Ruiz <little_miry at yahoo.es>
+Licence: BSD-2
+
+Licence: BSD-2
+ Redistribution and use in source and binary forms, with or without
+ modification, are permitted provided that the following conditions
+ are met:
+ 1. Redistributions of source code must retain the above copyright
+    notice, this list of conditions and the following disclaimer.
+ 2. Redistributions in binary form must reproduce the above copyright
+    notice, this list of conditions and the following disclaimer in the
+    documentation and/or other materials provided with the distribution.
+ .
+ THIS SOFTWARE IS PROVIDED ``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 AUTHOR 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.
+ .
+ The views and conclusions contained in the software and documentation are
+ those of the authors and should not be interpreted as representing official
+ policies, either expressed or implied, of Victor Stinner.

Added: packages/faulthandler/trunk/debian/docs
===================================================================
--- packages/faulthandler/trunk/debian/docs	                        (rev 0)
+++ packages/faulthandler/trunk/debian/docs	2011-02-08 01:21:50 UTC (rev 15535)
@@ -0,0 +1 @@
+README

Added: packages/faulthandler/trunk/debian/rules
===================================================================
--- packages/faulthandler/trunk/debian/rules	                        (rev 0)
+++ packages/faulthandler/trunk/debian/rules	2011-02-08 01:21:50 UTC (rev 15535)
@@ -0,0 +1,62 @@
+#!/usr/bin/make -f
+
+include /usr/share/quilt/quilt.make
+
+PYVERS=$(shell pyversions -vs)
+
+config: config-stamp
+config-stamp: 
+	dh_testdir
+	[ ! -d debian/patches ] || $(MAKE) -f /usr/share/quilt/quilt.make patch
+	touch $@
+
+build: $(PYVERS:%=build-python%)
+
+build-python%: config-stamp
+	dh_testdir
+	python$* setup.py build
+	touch $@
+
+clean: unpatch
+	dh_testdir
+	dh_testroot
+	rm -f config-stamp build-python?.* install-python?.*
+	rm -f `find . -name "*.pyc"`
+	rm -rf build
+	[ ! -d debian/patches ] || $(MAKE) -f /usr/share/quilt/quilt.make unpatch
+	dh_clean
+
+install: build $(PYVERS:%=install-python%)
+
+install-python%:
+	dh_testdir
+	dh_testroot
+	python$* setup.py install \
+		--no-compile \
+		--root=$(CURDIR)/debian/python-faulthandler
+	touch $@
+
+binary-indep: build install
+
+binary-arch: build install
+	dh_testdir
+	dh_testroot
+	dh_installchangelogs -a
+	dh_installdocs -a
+	dh_installexamples -a
+	dh_install -a
+	dh_installman -a
+	dh_link -a
+	dh_strip -a
+	dh_compress -a
+	dh_fixperms -a
+	dh_pysupport -a
+	[ ! -e /usr/bin/dh_buildinfo ] || dh_buildinfo -a
+	dh_installdeb -a
+	dh_shlibdeps -a
+	dh_gencontrol -a
+	dh_md5sums -a
+	dh_builddeb -a
+
+binary: binary-indep binary-arch
+.PHONY: config build clean binary-indep binary-arch binary install


Property changes on: packages/faulthandler/trunk/debian/rules
___________________________________________________________________
Added: svn:executable
   + *

Added: packages/faulthandler/trunk/debian/source/format
===================================================================
--- packages/faulthandler/trunk/debian/source/format	                        (rev 0)
+++ packages/faulthandler/trunk/debian/source/format	2011-02-08 01:21:50 UTC (rev 15535)
@@ -0,0 +1 @@
+3.0 (quilt)

Added: packages/faulthandler/trunk/debian/source/options
===================================================================
--- packages/faulthandler/trunk/debian/source/options	                        (rev 0)
+++ packages/faulthandler/trunk/debian/source/options	2011-02-08 01:21:50 UTC (rev 15535)
@@ -0,0 +1,5 @@
+# Bzip2 compression for debian.tar
+compression = "bzip2"
+compression-level = 7
+# Do not generate diff for changes in config.(sub|guess)
+extend-diff-ignore = "(^|/)config.(sub|guess)$"




More information about the Python-modules-commits mailing list