Gentoo Archives: gentoo-commits

From: Mikle Kolyada <zlogene@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/jack/, media-sound/jack/files/
Date: Wed, 02 Sep 2020 07:52:11
Message-Id: 1599033123.dedf81771fd7952c600669874174103c3d6d4759.zlogene@gentoo
1 commit: dedf81771fd7952c600669874174103c3d6d4759
2 Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
3 AuthorDate: Wed Sep 2 07:48:33 2020 +0000
4 Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
5 CommitDate: Wed Sep 2 07:52:03 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dedf8177
7
8 media-sound/jack: remove last-rited pkg
9
10 Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>
11
12 media-sound/jack/Manifest | 1 -
13 .../jack-3.1.1-add-cddbserver-musicbrainz.patch | 15 -------
14 media-sound/jack/files/jack-3.1.1-python26.patch | 12 ------
15 .../files/jack-3.1.1-setup-and-cursesmodule.patch | 47 ----------------------
16 media-sound/jack/jack-3.1.1-r3.ebuild | 47 ----------------------
17 media-sound/jack/metadata.xml | 16 --------
18 6 files changed, 138 deletions(-)
19
20 diff --git a/media-sound/jack/Manifest b/media-sound/jack/Manifest
21 deleted file mode 100644
22 index 86efcb0b52f..00000000000
23 --- a/media-sound/jack/Manifest
24 +++ /dev/null
25 @@ -1 +0,0 @@
26 -DIST jack-3.1.1.tar.gz 318119 BLAKE2B 20ab3aa16cf9f52e23fa9e11d0aea2c31d97afe546e7c199758363d579b99f39c5c864156e8727e04ef4d573ed5398c96916a19e69103bb0998e94526f475a1b SHA512 e34bec0ae89a7619e1f446d1259be06415f57697d1b925799d00554940b4cb6cb40eba9e6e7cf9f2f9eacddbed9fe7a9a48e395530c8a701be3979162a9379d7
27
28 diff --git a/media-sound/jack/files/jack-3.1.1-add-cddbserver-musicbrainz.patch b/media-sound/jack/files/jack-3.1.1-add-cddbserver-musicbrainz.patch
29 deleted file mode 100644
30 index 150c4409064..00000000000
31 --- a/media-sound/jack/files/jack-3.1.1-add-cddbserver-musicbrainz.patch
32 +++ /dev/null
33 @@ -1,15 +0,0 @@
34 ---- a/jack_freedb.py
35 -+++ b/jack_freedb.py
36 -@@ -46,6 +46,12 @@
37 - 'mail': "freedb-submit@××××××.org",
38 - 'my_mail': "default"
39 - },
40 -+ 'musicbrainz': {
41 -+ 'host': "freedb.musicbrainz.org",
42 -+ 'id': prog_name + " " + prog_version,
43 -+ 'mail': "",
44 -+ 'my_mail': "default"
45 -+ },
46 - }
47 -
48 - def interpret_db_file(all_tracks, freedb_form_file, verb, dirs = 0, warn = None):
49
50 diff --git a/media-sound/jack/files/jack-3.1.1-python26.patch b/media-sound/jack/files/jack-3.1.1-python26.patch
51 deleted file mode 100644
52 index c3e0a0c9f85..00000000000
53 --- a/media-sound/jack/files/jack-3.1.1-python26.patch
54 +++ /dev/null
55 @@ -1,12 +0,0 @@
56 ---- a/jack_functions.py
57 -+++ b/jack_functions.py
58 -@@ -219,9 +219,9 @@
59 - ff = blocks % CDDA_BLOCKS_PER_SECOND
60 - return mm, ss, ff, blocks
61 -
62 --def starts_with(str, with):
63 -- "checks whether str starts with with"
64 -- return str[0:len(with)] == with
65 -+def starts_with(str, withstr):
66 -+ "checks whether str starts with withstr"
67 -+ return str[0:len(withstr)] == withstr
68
69 diff --git a/media-sound/jack/files/jack-3.1.1-setup-and-cursesmodule.patch b/media-sound/jack/files/jack-3.1.1-setup-and-cursesmodule.patch
70 deleted file mode 100644
71 index d3e016289a8..00000000000
72 --- a/media-sound/jack/files/jack-3.1.1-setup-and-cursesmodule.patch
73 +++ /dev/null
74 @@ -1,47 +0,0 @@
75 ---- a/jack_t_curses.py
76 -+++ b/jack_t_curses.py
77 -@@ -35,11 +35,9 @@
78 - try:
79 - from jack_curses import endwin, resizeterm, A_REVERSE, newwin, newpad, initscr, noecho, cbreak, echo, nocbreak
80 - except ImportError:
81 -- warning("jack_curses module not found, trying normal curses...")
82 -+ info("jack_curses module not found, using normal curses...")
83 - try:
84 -- from curses import endwin, A_REVERSE, newwin, newpad, initscr, noecho, cbreak, echo, nocbreak
85 -- def resizeterm(y, x):
86 -- pass
87 -+ from curses import endwin, resizeterm, A_REVERSE, newwin, newpad, initscr, noecho, cbreak, echo, nocbreak
88 - except ImportError:
89 - print "curses module not found or too old, please install it (see README)"
90 -
91 ---- a/setup.py
92 -+++ b/setup.py
93 -@@ -2,7 +2,7 @@
94 -
95 - """Setup script for the jack module distribution."""
96 -
97 --from distutils.core import setup, Extension
98 -+from distutils.core import setup
99 -
100 - setup( # Distribution meta-data
101 - name = "jack",
102 -@@ -11,11 +11,7 @@
103 - author = "Arne Zellentin",
104 - author_email = "zarne@××××××××.net",
105 - url = "http://www.home.unix-ag.org/arne/jack/",
106 --
107 -- # Description of the modules and packages in the distribution
108 -- ext_modules = [ Extension('jack_cursesmodule',
109 -- ['cursesmodule/jack_cursesmodule.c'], libraries=["ncurses"],
110 -- extra_compile_args=["-Wno-strict-prototypes"]) ],
111 -+ scripts=['jack'],
112 -
113 - py_modules = [ 'jack_CDTime', 'jack_TOC', 'jack_TOCentry', 'jack_argv',
114 - 'jack_checkopts', 'jack_children', 'jack_config', 'jack_constants',
115 -@@ -26,6 +22,3 @@
116 - 'jack_ripstuff', 'jack_status', 'jack_t_curses', 'jack_t_dumb', 'jack_tag',
117 - 'jack_targets', 'jack_term', 'jack_utils', 'jack_version', 'jack_workers']
118 - )
119 --
120 --print "If you have installed the modules, copy jack to some place in your $PATH,"
121 --print "like /usr/local/bin/."
122
123 diff --git a/media-sound/jack/jack-3.1.1-r3.ebuild b/media-sound/jack/jack-3.1.1-r3.ebuild
124 deleted file mode 100644
125 index f1953b5662e..00000000000
126 --- a/media-sound/jack/jack-3.1.1-r3.ebuild
127 +++ /dev/null
128 @@ -1,47 +0,0 @@
129 -# Copyright 1999-2020 Gentoo Authors
130 -# Distributed under the terms of the GNU General Public License v2
131 -
132 -EAPI=6
133 -
134 -PYTHON_COMPAT=( python2_7 )
135 -PYTHON_REQ_USE="ncurses"
136 -DISTUTILS_SINGLE_IMPL=1
137 -
138 -inherit distutils-r1
139 -
140 -DESCRIPTION="A frontend for several cd-rippers and mp3 encoders"
141 -HOMEPAGE="http://www.home.unix-ag.org/arne/jack/"
142 -SRC_URI="http://www.home.unix-ag.org/arne/jack/${P}.tar.gz"
143 -
144 -LICENSE="GPL-2"
145 -SLOT="0"
146 -KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86"
147 -IUSE=""
148 -
149 -RDEPEND="
150 - $(python_gen_cond_dep '
151 - dev-python/cddb-py[${PYTHON_MULTI_USEDEP}]
152 - dev-python/id3-py[${PYTHON_MULTI_USEDEP}]
153 - dev-python/pyid3lib[${PYTHON_MULTI_USEDEP}]
154 - dev-python/pyvorbis[${PYTHON_MULTI_USEDEP}]
155 - ')
156 - media-libs/flac
157 - media-sound/lame
158 - media-sound/cdparanoia"
159 -
160 -PATCHES=(
161 - "${FILESDIR}/${PN}-3.1.1-python26.patch"
162 - "${FILESDIR}/${PN}-3.1.1-setup-and-cursesmodule.patch"
163 - "${FILESDIR}/${PN}-3.1.1-add-cddbserver-musicbrainz.patch"
164 -)
165 -
166 -python_install_all() {
167 - insinto /etc
168 - newins example.etc.jackrc jackrc
169 -
170 - newman jack.man jack.1
171 -
172 - local DOCS=( README doc/ChangeLog doc/TODO )
173 - local HTML_DOCS=( doc/*.{html,css,gif} )
174 - distutils-r1_python_install_all
175 -}
176
177 diff --git a/media-sound/jack/metadata.xml b/media-sound/jack/metadata.xml
178 deleted file mode 100644
179 index e89252b7a39..00000000000
180 --- a/media-sound/jack/metadata.xml
181 +++ /dev/null
182 @@ -1,16 +0,0 @@
183 -<?xml version="1.0" encoding="UTF-8"?>
184 -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
185 -<pkgmetadata>
186 - <maintainer type="person">
187 - <email>martin.dummer@×××.net</email>
188 - <name>Martin Dummer</name>
189 - </maintainer>
190 - <maintainer type="project">
191 - <email>proxy-maint@g.o</email>
192 - <name>Proxy Maintainers</name>
193 - </maintainer>
194 - <maintainer type="project">
195 - <email>sound@g.o</email>
196 - <name>Gentoo Sound project</name>
197 - </maintainer>
198 -</pkgmetadata>