[Python-modules-commits] r6544 - in packages/python-couchdb/trunk/debian/patches (2 files)

nslater-guest at users.alioth.debian.org nslater-guest at users.alioth.debian.org
Fri Sep 19 11:26:05 UTC 2008


    Date: Friday, September 19, 2008 @ 11:26:03
  Author: nslater-guest
Revision: 6544

renamed patch

Added:
  packages/python-couchdb/trunk/debian/patches/improve-bin-scripts.patch
    (from rev 6202, packages/python-couchdb/trunk/debian/patches/remove-pkg_resources.patch)
Deleted:
  packages/python-couchdb/trunk/debian/patches/remove-pkg_resources.patch

Copied: packages/python-couchdb/trunk/debian/patches/improve-bin-scripts.patch (from rev 6202, packages/python-couchdb/trunk/debian/patches/remove-pkg_resources.patch)
===================================================================
--- packages/python-couchdb/trunk/debian/patches/improve-bin-scripts.patch	                        (rev 0)
+++ packages/python-couchdb/trunk/debian/patches/improve-bin-scripts.patch	2008-09-19 11:26:03 UTC (rev 6544)
@@ -0,0 +1,44 @@
+diff -Nur -x '*.orig' -x '*~' CouchDB-0.4/couchdb-dump CouchDB-0.4.new/couchdb-dump
+--- CouchDB-0.4/couchdb-dump	1970-01-01 01:00:00.000000000 +0100
++++ CouchDB-0.4.new/couchdb-dump	2008-07-03 20:02:56.000000000 +0100
+@@ -0,0 +1,5 @@
++#!/usr/bin/python
++
++from couchdb.tools import dump
++
++dump.main()
+diff -Nur -x '*.orig' -x '*~' CouchDB-0.4/couchdb-load CouchDB-0.4.new/couchdb-load
+--- CouchDB-0.4/couchdb-load	1970-01-01 01:00:00.000000000 +0100
++++ CouchDB-0.4.new/couchdb-load	2008-07-03 20:02:56.000000000 +0100
+@@ -0,0 +1,5 @@
++#!/usr/bin/python
++
++from couchdb.tools import load
++
++load.main()
+diff -Nur -x '*.orig' -x '*~' CouchDB-0.4/couchpy CouchDB-0.4.new/couchpy
+--- CouchDB-0.4/couchpy	1970-01-01 01:00:00.000000000 +0100
++++ CouchDB-0.4.new/couchpy	2008-07-03 20:02:56.000000000 +0100
+@@ -0,0 +1,5 @@
++#!/usr/bin/python
++
++from couchdb import view
++
++view.main()
+diff -Nur -x '*.orig' -x '*~' CouchDB-0.4/setup.py CouchDB-0.4.new/setup.py
+--- CouchDB-0.4/setup.py	2008-07-03 20:00:43.000000000 +0100
++++ CouchDB-0.4.new/setup.py	2008-07-03 20:02:56.000000000 +0100
+@@ -128,13 +128,5 @@
+ 
+     install_requires = ['httplib2', 'simplejson'],
+ 
+-    entry_points = {
+-        'console_scripts': [
+-            'couchpy = couchdb.view:main',
+-            'couchdb-dump = couchdb.tools.dump:main',
+-            'couchdb-load = couchdb.tools.load:main'
+-        ],
+-    },
+-
+     cmdclass = {'build_doc': build_doc, 'test_doc': test_doc}
+ )


Property changes on: packages/python-couchdb/trunk/debian/patches/improve-bin-scripts.patch
___________________________________________________________________
Name: svn:mime-type
   + text/x-patch
Name: svn:mergeinfo
   + 

Deleted: packages/python-couchdb/trunk/debian/patches/remove-pkg_resources.patch
===================================================================
--- packages/python-couchdb/trunk/debian/patches/remove-pkg_resources.patch	2008-09-18 20:23:02 UTC (rev 6543)
+++ packages/python-couchdb/trunk/debian/patches/remove-pkg_resources.patch	2008-09-19 11:26:03 UTC (rev 6544)
@@ -1,44 +0,0 @@
-diff -Nur -x '*.orig' -x '*~' CouchDB-0.4/couchdb-dump CouchDB-0.4.new/couchdb-dump
---- CouchDB-0.4/couchdb-dump	1970-01-01 01:00:00.000000000 +0100
-+++ CouchDB-0.4.new/couchdb-dump	2008-07-03 20:02:56.000000000 +0100
-@@ -0,0 +1,5 @@
-+#!/usr/bin/python
-+
-+from couchdb.tools import dump
-+
-+dump.main()
-diff -Nur -x '*.orig' -x '*~' CouchDB-0.4/couchdb-load CouchDB-0.4.new/couchdb-load
---- CouchDB-0.4/couchdb-load	1970-01-01 01:00:00.000000000 +0100
-+++ CouchDB-0.4.new/couchdb-load	2008-07-03 20:02:56.000000000 +0100
-@@ -0,0 +1,5 @@
-+#!/usr/bin/python
-+
-+from couchdb.tools import load
-+
-+load.main()
-diff -Nur -x '*.orig' -x '*~' CouchDB-0.4/couchpy CouchDB-0.4.new/couchpy
---- CouchDB-0.4/couchpy	1970-01-01 01:00:00.000000000 +0100
-+++ CouchDB-0.4.new/couchpy	2008-07-03 20:02:56.000000000 +0100
-@@ -0,0 +1,5 @@
-+#!/usr/bin/python
-+
-+from couchdb import view
-+
-+view.main()
-diff -Nur -x '*.orig' -x '*~' CouchDB-0.4/setup.py CouchDB-0.4.new/setup.py
---- CouchDB-0.4/setup.py	2008-07-03 20:00:43.000000000 +0100
-+++ CouchDB-0.4.new/setup.py	2008-07-03 20:02:56.000000000 +0100
-@@ -128,13 +128,5 @@
- 
-     install_requires = ['httplib2', 'simplejson'],
- 
--    entry_points = {
--        'console_scripts': [
--            'couchpy = couchdb.view:main',
--            'couchdb-dump = couchdb.tools.dump:main',
--            'couchdb-load = couchdb.tools.load:main'
--        ],
--    },
--
-     cmdclass = {'build_doc': build_doc, 'test_doc': test_doc}
- )




More information about the Python-modules-commits mailing list