[Python-modules-commits] r577 - in /packages/nose/trunk/debian: ./ changelog compat control copyright python-nose.postinst python-nose.prerm rules

kov at users.alioth.debian.org kov at users.alioth.debian.org
Sat May 13 14:53:31 UTC 2006


Author: kov
Date: Sat May 13 14:53:30 2006
New Revision: 577

URL: http://svn.debian.org/wsvn/python-modules/?sc=1&rev=577
Log:
Load newtrunk into packages/nose/trunk.

Added:
    packages/nose/trunk/debian/
    packages/nose/trunk/debian/changelog
    packages/nose/trunk/debian/compat
    packages/nose/trunk/debian/control
    packages/nose/trunk/debian/copyright
    packages/nose/trunk/debian/python-nose.postinst
    packages/nose/trunk/debian/python-nose.prerm
    packages/nose/trunk/debian/rules   (with props)

Added: packages/nose/trunk/debian/changelog
URL: http://svn.debian.org/wsvn/python-modules/packages/nose/trunk/debian/changelog?rev=577&op=file
==============================================================================
--- packages/nose/trunk/debian/changelog (added)
+++ packages/nose/trunk/debian/changelog Sat May 13 14:53:30 2006
@@ -1,0 +1,6 @@
+nose (0.8.7-1) UNRELEASED; urgency=low
+
+  * Initial Release (Closes: #366786)
+
+ -- Gustavo Noronha Silva <kov at debian.org>  Sun,  7 May 2006 22:49:58 -0300
+

Added: packages/nose/trunk/debian/compat
URL: http://svn.debian.org/wsvn/python-modules/packages/nose/trunk/debian/compat?rev=577&op=file
==============================================================================
--- packages/nose/trunk/debian/compat (added)
+++ packages/nose/trunk/debian/compat Sat May 13 14:53:30 2006
@@ -1,0 +1,1 @@
+4

Added: packages/nose/trunk/debian/control
URL: http://svn.debian.org/wsvn/python-modules/packages/nose/trunk/debian/control?rev=577&op=file
==============================================================================
--- packages/nose/trunk/debian/control (added)
+++ packages/nose/trunk/debian/control Sat May 13 14:53:30 2006
@@ -1,0 +1,18 @@
+Source: nose
+Section: python
+Priority: optional
+Maintainer: Gustavo Noronha Silva <kov at debian.org>
+Uploaders: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
+Build-Depends: cdbs, debhelper (>= 4.1.0), python, python-setuptools (>= 0.6a9-1)
+Build-Depends-Indep: python-dev
+Standards-Version: 3.7.2
+
+Package: python-nose
+Architecture: all
+Depends: python (>= 2.3), python (<< 2.5), python-support
+Description: test discovery and running for Python's unittest
+ nose provides an alternate test discovery and running process for
+ unittest, one that is intended to mimic the behavior of py.test as
+ much as is reasonably possible without resorting to too much magic
+ .
+  Homepage: http://somethingaboutorange.com/mrl/projects/nose/

Added: packages/nose/trunk/debian/copyright
URL: http://svn.debian.org/wsvn/python-modules/packages/nose/trunk/debian/copyright?rev=577&op=file
==============================================================================
--- packages/nose/trunk/debian/copyright (added)
+++ packages/nose/trunk/debian/copyright Sat May 13 14:53:30 2006
@@ -1,0 +1,27 @@
+This package was debianized by Gustavo Noronha Silva <kov at debian.org> on
+Sun, 07 May 2006 22:54:10 -0300.
+
+It was downloaded from http://www.voidspace.org.uk/python/nose.html
+
+Copyright:
+
+Copyright (C) 2005-2006 Jason Pellerin
+
+License:
+
+ This library is free software; you can redistribute it and/or
+ modify it under the terms of the GNU Lesser General Public
+ License as published by the Free Software Foundation; either
+ version 2 of the License, or (at your option) any later version.
+
+ This library 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
+ Lesser General Public License for more details.
+
+ You should have received a copy of the GNU Lesser General Public
+ License along with this library; if not, write to the Free Software
+ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
+
+ On Debian systems, the LGPL version 2 license can be found at
+ /usr/share/common-licenses/LGPL-2.

Added: packages/nose/trunk/debian/python-nose.postinst
URL: http://svn.debian.org/wsvn/python-modules/packages/nose/trunk/debian/python-nose.postinst?rev=577&op=file
==============================================================================
--- packages/nose/trunk/debian/python-nose.postinst (added)
+++ packages/nose/trunk/debian/python-nose.postinst Sat May 13 14:53:30 2006
@@ -1,0 +1,9 @@
+#!/bin/sh
+
+set -e
+
+#DEBHELPER#
+
+if [ "$1" = "configure" ] && which update-python-modules >/dev/null 2>&1; then
+        update-python-modules -i /usr/share/python-support/python-nose
+fi

Added: packages/nose/trunk/debian/python-nose.prerm
URL: http://svn.debian.org/wsvn/python-modules/packages/nose/trunk/debian/python-nose.prerm?rev=577&op=file
==============================================================================
--- packages/nose/trunk/debian/python-nose.prerm (added)
+++ packages/nose/trunk/debian/python-nose.prerm Sat May 13 14:53:30 2006
@@ -1,0 +1,9 @@
+#!/bin/sh
+
+set -e
+
+#DEBHELPER#
+
+if which update-python-modules >/dev/null 2>&1; then
+        update-python-modules -c -i /usr/share/python-support/python-nose
+fi

Added: packages/nose/trunk/debian/rules
URL: http://svn.debian.org/wsvn/python-modules/packages/nose/trunk/debian/rules?rev=577&op=file
==============================================================================
--- packages/nose/trunk/debian/rules (added)
+++ packages/nose/trunk/debian/rules Sat May 13 14:53:30 2006
@@ -1,0 +1,15 @@
+#!/usr/bin/make -f
+
+include /usr/share/cdbs/1/rules/buildcore.mk
+# python-distutils before debhelper to avoid it calling dh_python
+# itself
+include /usr/share/cdbs/1/class/python-distutils.mk
+include /usr/share/cdbs/1/rules/debhelper.mk
+include /usr/share/cdbs/1/rules/simple-patchsys.mk
+
+DEB_PYTHON_INSTALL_ARGS_ALL += --single-version-externally-managed --install-lib usr/share/python-support/python-nose
+
+clean::
+	# hack (CDBS bug -- see #300149)
+	-rm -rf build
+	-find . -name '*.py[co]' -exec rm {} \;

Propchange: packages/nose/trunk/debian/rules
------------------------------------------------------------------------------
    svn:executable = *




More information about the Python-modules-commits mailing list