Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/carbon/files/
Date: Sun, 03 Mar 2019 15:27:29
Message-Id: 1551626831.e0cec6c46475e867976403ebd8d914ab4ee89e24.asturm@gentoo
1 commit: e0cec6c46475e867976403ebd8d914ab4ee89e24
2 Author: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com>
3 AuthorDate: Fri Mar 1 17:52:39 2019 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Sun Mar 3 15:27:11 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e0cec6c4
7
8 dev-python/carbon: remove unused patch
9
10 Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail.com>
11 Closes: https://github.com/gentoo/gentoo/pull/11200
12 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
13
14 .../carbon/files/carbon-0.9.14-no-data-files.patch | 32 ----------------------
15 1 file changed, 32 deletions(-)
16
17 diff --git a/dev-python/carbon/files/carbon-0.9.14-no-data-files.patch b/dev-python/carbon/files/carbon-0.9.14-no-data-files.patch
18 deleted file mode 100644
19 index 858d362d296..00000000000
20 --- a/dev-python/carbon/files/carbon-0.9.14-no-data-files.patch
21 +++ /dev/null
22 @@ -1,32 +0,0 @@
23 -diff -ur carbon-0.9.14.orig/setup.py carbon-0.9.14/setup.py
24 ---- setup.py 2015-11-07 13:50:29.000000000 +0800
25 -+++ setup.py 2015-12-27 08:43:46.575905408 +0800
26 -@@ -13,20 +13,6 @@
27 - setup_kwargs = dict()
28 -
29 -
30 --storage_dirs = [ ('storage/whisper',[]), ('storage/lists',[]),
31 -- ('storage/log',[]), ('storage/rrd',[]) ]
32 --conf_files = [ ('conf', glob('conf/*.example')) ]
33 --
34 --install_files = storage_dirs + conf_files
35 --
36 --# Let's include redhat init scripts, despite build platform
37 --# but won't put them in /etc/init.d/ automatically anymore
38 --init_scripts = [ ('examples/init.d', ['distro/redhat/init.d/carbon-cache',
39 -- 'distro/redhat/init.d/carbon-relay',
40 -- 'distro/redhat/init.d/carbon-aggregator']) ]
41 --install_files += init_scripts
42 --
43 --
44 - setup(
45 - name='carbon',
46 - version='0.9.14',
47 -@@ -39,7 +25,6 @@
48 - package_dir={'' : 'lib'},
49 - scripts=glob('bin/*'),
50 - package_data={ 'carbon' : ['*.xml'] },
51 -- data_files=install_files,
52 - install_requires=['twisted', 'txamqp'],
53 - **setup_kwargs
54 - )