[Python-modules-commits] r7761 - in packages/argvalidate/trunk/debian (3 files)

speijnik-guest at users.alioth.debian.org speijnik-guest at users.alioth.debian.org
Wed Feb 25 11:28:26 UTC 2009


    Date: Wednesday, February 25, 2009 @ 11:28:26
  Author: speijnik-guest
Revision: 7761

New upstream release, fixed missing check for "nocheck" in debian/rules' test target, updated debian/copyright to reflect upstream license change.

Modified:
  packages/argvalidate/trunk/debian/changelog
  packages/argvalidate/trunk/debian/copyright
  packages/argvalidate/trunk/debian/rules

Modified: packages/argvalidate/trunk/debian/changelog
===================================================================
--- packages/argvalidate/trunk/debian/changelog	2009-02-25 01:32:07 UTC (rev 7760)
+++ packages/argvalidate/trunk/debian/changelog	2009-02-25 11:28:26 UTC (rev 7761)
@@ -1,6 +1,6 @@
-argvalidate (0.8.0-1) unstable; urgency=low
+argvalidate (0.8.1-1) unstable; urgency=low
 
   * Initial release (Closes: #516880)
 
- -- Stephan Peijnik <debian at sp.or.at>  Tue, 24 Feb 2009 09:22:11 +0100
+ -- Stephan Peijnik <debian at sp.or.at>  Wed, 25 Feb 2009 12:13:14 +0100
 

Modified: packages/argvalidate/trunk/debian/copyright
===================================================================
--- packages/argvalidate/trunk/debian/copyright	2009-02-25 01:32:07 UTC (rev 7760)
+++ packages/argvalidate/trunk/debian/copyright	2009-02-25 11:28:26 UTC (rev 7761)
@@ -14,21 +14,21 @@
 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
+    it under the terms of the GNU Lesser General Public License as published by
     the Free Software Foundation, either version 3 of the License, or
     (at your option) any later version.
 
     This program 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.
+    GNU Lesser General Public License for more details.
 
-    You should have received a copy of the GNU General Public License
+    You should have received a copy of the GNU Lesser General Public License
     along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
-On Debian systems, the complete text of the GNU General
-Public License can be found in `/usr/share/common-licenses/GPL-3'.
+On Debian systems, the complete text of the GNU Lesser General
+Public License can be found in `/usr/share/common-licenses/LGPL-3'.
 
 The Debian packaging is Copyright (C) 2009, Stephan Peijnik <debian at sp.or.at> 
-and is licensed under the GPL, see above.
+and is licensed under the LGPL, see above.
 

Modified: packages/argvalidate/trunk/debian/rules
===================================================================
--- packages/argvalidate/trunk/debian/rules	2009-02-25 01:32:07 UTC (rev 7760)
+++ packages/argvalidate/trunk/debian/rules	2009-02-25 11:28:26 UTC (rev 7761)
@@ -13,7 +13,9 @@
 	dh_clean
 
 test:
-	python setup.py test
+ifeq (,$(findstring nocheck,$(DEB_BUILD_OPTIONS)))
+		python setup.py test
+endif
 
 build:
 	python setup.py build




More information about the Python-modules-commits mailing list