[Python-modules-commits] r21638 - in packages/python-cobe/trunk/debian/patches (5 files)

eriol-guest at users.alioth.debian.org eriol-guest at users.alioth.debian.org
Mon May 7 21:55:25 UTC 2012


    Date: Monday, May 7, 2012 @ 21:55:24
  Author: eriol-guest
Revision: 21638

Inverted patchs' order

Added:
  packages/python-cobe/trunk/debian/patches/01_remove-argparse-from-install-requires.patch
    (from rev 21524, packages/python-cobe/trunk/debian/patches/02_remove-argparse-from-install-requires.patch)
  packages/python-cobe/trunk/debian/patches/02_relaxed-versioned-dependencies.patch
    (from rev 21481, packages/python-cobe/trunk/debian/patches/01_relaxed-versioned-dependencies.patch)
Modified:
  packages/python-cobe/trunk/debian/patches/series
Deleted:
  packages/python-cobe/trunk/debian/patches/01_relaxed-versioned-dependencies.patch
  packages/python-cobe/trunk/debian/patches/02_remove-argparse-from-install-requires.patch

Deleted: packages/python-cobe/trunk/debian/patches/01_relaxed-versioned-dependencies.patch
===================================================================
--- packages/python-cobe/trunk/debian/patches/01_relaxed-versioned-dependencies.patch	2012-05-07 21:18:35 UTC (rev 21637)
+++ packages/python-cobe/trunk/debian/patches/01_relaxed-versioned-dependencies.patch	2012-05-07 21:55:24 UTC (rev 21638)
@@ -1,27 +0,0 @@
-Description: Relaxed versioned dependencies.
-Author: Daniele Tricoli <eriol at mornie.org>
-Forwarded: not-needed
-Last-Update: 2012-05-01
-
---- a/setup.py
-+++ b/setup.py
-@@ -16,14 +16,14 @@
-     test_suite = "tests",
-
-     setup_requires = [
--        "nose==1.1.2",
--        "coverage==3.5"
-+        "nose>=1.1.2",
-+        "coverage>=3.4"
-         ],
-
-     install_requires = [
--        "PyStemmer==1.2.0",
--        "argparse==1.2.1",
--        "python-irclib==0.4.6"
-+        "PyStemmer>=1.2.0",
-+        "argparse>=1.2.1",
-+        "python-irclib>=0.4.6"
-         ],
-
-     classifiers = [

Copied: packages/python-cobe/trunk/debian/patches/01_remove-argparse-from-install-requires.patch (from rev 21524, packages/python-cobe/trunk/debian/patches/02_remove-argparse-from-install-requires.patch)
===================================================================
--- packages/python-cobe/trunk/debian/patches/01_remove-argparse-from-install-requires.patch	                        (rev 0)
+++ packages/python-cobe/trunk/debian/patches/01_remove-argparse-from-install-requires.patch	2012-05-07 21:55:24 UTC (rev 21638)
@@ -0,0 +1,17 @@
+Description: Remove argparse from install_requires so dh_python2 shipped by
+ python-defaults (2.7.2-10) won't generate dependencies of the form
+ "python (>= 2.7) | python-argparse" since anyway only from python 2.7.3~rc2-1
+ egg-info metadata for argparse are shipped.
+Author: Daniele Tricoli <eriol at mornie.org>
+Forwarded: not-needed
+Last-Update: 2012-05-07
+
+--- a/setup.py
++++ b/setup.py
+@@ -22,7 +22,6 @@
+
+     install_requires = [
+         "PyStemmer==1.2.0",
+-        "argparse==1.2.1",
+         "python-irclib==0.4.6"
+         ],

Copied: packages/python-cobe/trunk/debian/patches/02_relaxed-versioned-dependencies.patch (from rev 21481, packages/python-cobe/trunk/debian/patches/01_relaxed-versioned-dependencies.patch)
===================================================================
--- packages/python-cobe/trunk/debian/patches/02_relaxed-versioned-dependencies.patch	                        (rev 0)
+++ packages/python-cobe/trunk/debian/patches/02_relaxed-versioned-dependencies.patch	2012-05-07 21:55:24 UTC (rev 21638)
@@ -0,0 +1,25 @@
+Description: Relaxed versioned dependencies.
+Author: Daniele Tricoli <eriol at mornie.org>
+Forwarded: not-needed
+Last-Update: 2012-05-07
+
+--- a/setup.py
++++ b/setup.py
+@@ -16,13 +16,13 @@
+     test_suite = "tests",
+
+     setup_requires = [
+-        "nose==1.1.2",
+-        "coverage==3.5"
++        "nose>=1.1.2",
++        "coverage>=3.4"
+         ],
+
+     install_requires = [
+-        "PyStemmer==1.2.0",
+-        "python-irclib==0.4.6"
++        "PyStemmer>=1.2.0",
++        "python-irclib>=0.4.6"
+         ],
+
+     classifiers = [

Deleted: packages/python-cobe/trunk/debian/patches/02_remove-argparse-from-install-requires.patch
===================================================================
--- packages/python-cobe/trunk/debian/patches/02_remove-argparse-from-install-requires.patch	2012-05-07 21:18:35 UTC (rev 21637)
+++ packages/python-cobe/trunk/debian/patches/02_remove-argparse-from-install-requires.patch	2012-05-07 21:55:24 UTC (rev 21638)
@@ -1,17 +0,0 @@
-Description: Remove argparse from install_requires so dh_python2 shipped by
- python-defaults (2.7.2-10) won't generate dependencies of the form
- "python (>= 2.7) | python-argparse" since anyway only from python 2.7.3~rc2-1
- egg-info metadata for argparse are shipped.
-Author: Daniele Tricoli <eriol at mornie.org>
-Forwarded: not-needed
-Last-Update: 2012-05-03
-
---- a/setup.py
-+++ b/setup.py
-@@ -22,7 +22,6 @@
-
-     install_requires = [
-         "PyStemmer>=1.2.0",
--        "argparse>=1.2.1",
-         "python-irclib>=0.4.6"
-         ],

Modified: packages/python-cobe/trunk/debian/patches/series
===================================================================
--- packages/python-cobe/trunk/debian/patches/series	2012-05-07 21:18:35 UTC (rev 21637)
+++ packages/python-cobe/trunk/debian/patches/series	2012-05-07 21:55:24 UTC (rev 21638)
@@ -1,2 +1,2 @@
-01_relaxed-versioned-dependencies.patch
-02_remove-argparse-from-install-requires.patch
+01_remove-argparse-from-install-requires.patch
+02_relaxed-versioned-dependencies.patch




More information about the Python-modules-commits mailing list