Gentoo Archives: gentoo-commits

From: "Jesus Rivero (neurogeek)" <neurogeek@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-db/desktopcouch/files: desktopcouch-0.6.4-setup_hardlinks.patch desktopcouch-setup_hardlinks.patch
Date: Tue, 27 Apr 2010 18:43:30
Message-Id: 20100427184325.E6E9E2C050@corvid.gentoo.org
1 neurogeek 10/04/27 18:43:25
2
3 Added: desktopcouch-0.6.4-setup_hardlinks.patch
4 Removed: desktopcouch-setup_hardlinks.patch
5 Log:
6 Fixed dependency for dev-python/couchdb-python wrt bug #315743. Fixed python ebuild related code wrt bug #312135. Removed older versions.
7 (Portage version: 2.2_rc67/cvs/Linux i686)
8
9 Revision Changes Path
10 1.1 dev-db/desktopcouch/files/desktopcouch-0.6.4-setup_hardlinks.patch
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/desktopcouch/files/desktopcouch-0.6.4-setup_hardlinks.patch?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-db/desktopcouch/files/desktopcouch-0.6.4-setup_hardlinks.patch?rev=1.1&content-type=text/plain
14
15 Index: desktopcouch-0.6.4-setup_hardlinks.patch
16 ===================================================================
17 --- setup.py.orig 2010-04-23 05:19:54.000000000 +0000
18 +++ setup.py 2010-04-23 05:32:47.000000000 +0000
19 @@ -31,19 +31,10 @@
20 test_suite="runtests.get_test_suite",
21 packages=find_packages(),
22 scripts=['bin/desktopcouch-pair'],
23 - data_files = [('/usr/lib/desktopcouch/', ['bin/desktopcouch-service',
24 - 'bin/desktopcouch-get-port',
25 - 'bin/desktopcouch-stop']),
26 - # Be sure all additions are reflected in MANIFEST.in !
27 - ('/usr/share/doc/python-desktopcouch-records/api/',
28 - ['desktopcouch/records/doc/records.txt',
29 - 'desktopcouch/records/doc/field_registry.txt',
30 - 'desktopcouch/contacts/schema.txt']),
31 - ('/etc/xdg/desktop-couch/',
32 + data_files = [('/etc/xdg/desktop-couch/',
33 ['config/desktop-couch/compulsory-auth.ini']),
34 ('/usr/share/desktopcouch/', ['data/couchdb.tmpl']),
35 - ('/usr/share/dbus-1/services/', ['org.desktopcouch.CouchDB.service']),
36 - ('share/man/man1/', ['docs/man/desktopcouch-pair.1'])],
37 + ('/usr/share/dbus-1/services/', ['org.desktopcouch.CouchDB.service'])],
38 cmdclass = { "build" : build_extra.build_extra,
39 "build_i18n" : build_i18n.build_i18n }
40 )