Gentoo Archives: gentoo-commits

From: Pacho Ramos <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/libtimidity/, media-libs/libtimidity/files/
Date: Sun, 28 Apr 2019 22:41:45
Message-Id: 1556491083.8667042a286f47a44ac867e3b188c2a366cb73d9.pacho@gentoo
1 commit: 8667042a286f47a44ac867e3b188c2a366cb73d9
2 Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
3 AuthorDate: Sun Apr 28 22:38:03 2019 +0000
4 Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
5 CommitDate: Sun Apr 28 22:38:03 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8667042a
7
8 media-libs/libtimidity: Drop old
9
10 Package-Manager: Portage-2.3.64, Repoman-2.3.12
11 Signed-off-by: Pacho Ramos <pacho <AT> gentoo.org>
12
13 media-libs/libtimidity/Manifest | 3 --
14 .../files/libtimidity-0.1.0-automagic.patch | 30 -------------------
15 .../files/libtimidity-0.1.0-newlen-overflow.patch | 22 --------------
16 media-libs/libtimidity/libtimidity-0.1.0-r2.ebuild | 34 ----------------------
17 media-libs/libtimidity/libtimidity-0.2.0.ebuild | 28 ------------------
18 media-libs/libtimidity/libtimidity-0.2.2.ebuild | 28 ------------------
19 6 files changed, 145 deletions(-)
20
21 diff --git a/media-libs/libtimidity/Manifest b/media-libs/libtimidity/Manifest
22 index 47b448e2b0a..da8dbc42c65 100644
23 --- a/media-libs/libtimidity/Manifest
24 +++ b/media-libs/libtimidity/Manifest
25 @@ -1,4 +1 @@
26 -DIST libtimidity-0.1.0.tar.bz2 273410 BLAKE2B 63bc62a586c3649a8906c256d778fcc9a320448141a8e87805545aecfd123187c453e9be15640a995db367c347f87063ada29dda9e6b8343061b8adc8ae22966 SHA512 7401e9b85c7e93c17871a9d767dfa9434808bf90d7d693522862c5f534f56dcac6c39fe24fc38b097505df349dad9f57e7ea2c6ae2deb9adce7d2ec861184ed1
27 -DIST libtimidity-0.2.0.tar.gz 420643 BLAKE2B beee2a11176f07068654e7ca90f552f8690a7291957d13efccd564345145c18a03c08663beef81cea5114c251f9e219587d7b16a85a73708d72f6ad92cbd31dc SHA512 691f38c69e344d328aa0a98846d6023f22fcb81bac33a6cb4df0c2c05df9c84a1818732f7498ff9aa942c9939dab8f0a318b49769e9f934e417c3ee540af2c55
28 -DIST libtimidity-0.2.2.tar.gz 420174 BLAKE2B 3414277e42bab31d0f23539f2f33c072e430b5b5323e1375a9a2614a45415d914cd7c07ee9c7caec4124cf166ad14220852dec397275122458409518b466fa7a SHA512 07b0a0d0467e746b0e61656b76157e1291f21a9eac1249457feec49d661a423069e2aca95e45819591d2c29f9cd9a8b5f5cb7ce6cb0e8d2c30eb28c80293e624
29 DIST libtimidity-0.2.4.tar.gz 421572 BLAKE2B b92a87ed0adbf00d74c482e17375fe42adbc86896435ebef858b87952f31f5bd4bcc61993aa03fca07f1f85367f57e227f5828f8cb5ff44561a11e5066e84b1b SHA512 185c4ae58a14f69873869a9586cc23a1f7c9b681c67bb7cc9fe3c4ce51f53600004970af6a0d76d3055d9f2cb82a7fd062699006b0c26f90340fb751cb976930
30
31 diff --git a/media-libs/libtimidity/files/libtimidity-0.1.0-automagic.patch b/media-libs/libtimidity/files/libtimidity-0.1.0-automagic.patch
32 deleted file mode 100644
33 index ead93ffd32d..00000000000
34 --- a/media-libs/libtimidity/files/libtimidity-0.1.0-automagic.patch
35 +++ /dev/null
36 @@ -1,30 +0,0 @@
37 -diff -ur libtimidity-0.1.0.orig/configure.ac libtimidity-0.1.0/configure.ac
38 ---- libtimidity-0.1.0.orig/configure.ac 2004-11-23 06:30:46.000000000 +0200
39 -+++ libtimidity-0.1.0/configure.ac 2007-08-02 15:51:47.000000000 +0300
40 -@@ -39,9 +39,24 @@
41 - # Checks for libraries.
42 - LIBTIMIDITY_LIBS=""
43 - AC_CHECK_LIB([m], [pow], [LIBTIMIDITY_LIBS="$TIMIDITY_LIBS -lm"])
44 --have_ao=no
45 --XIPH_PATH_AO([have_ao=yes])
46 -+
47 -+AC_ARG_ENABLE([ao],
48 -+ [AS_HELP_STRING([--enable-ao], [Enable libao (default=disabled)])],
49 -+ [have_ao="$enableval"],
50 -+ [have_ao="no"]
51 -+)
52 -+
53 -+if test "$have_ao" = "yes"; then
54 -+ PKG_CHECK_MODULES([AO], [ao >= 0.8.5])
55 -+ AC_DEFINE([AO], [], [Define when building with ao])
56 -+ HAVE_AO="true"
57 -+else
58 -+ HAVE_AO="false"
59 -+fi
60 -+
61 -+AC_SUBST([ENABLE_AO])
62 - AM_CONDITIONAL([HAVE_AO], [test $have_ao = yes])
63 -+AC_SUBST(AO_LIBS)
64 -
65 - # Checks for header files.
66 - AC_HEADER_STDC
67
68 diff --git a/media-libs/libtimidity/files/libtimidity-0.1.0-newlen-overflow.patch b/media-libs/libtimidity/files/libtimidity-0.1.0-newlen-overflow.patch
69 deleted file mode 100644
70 index 22952a5ebba..00000000000
71 --- a/media-libs/libtimidity/files/libtimidity-0.1.0-newlen-overflow.patch
72 +++ /dev/null
73 @@ -1,22 +0,0 @@
74 -diff -Naur libtimidity-0.1.0/src/resample.c libtimidity-0.1.0-r1/src/resample.c
75 ---- libtimidity-0.1.0/src/resample.c 2004-11-21 23:02:53.000000000 +0100
76 -+++ libtimidity-0.1.0-r1/src/resample.c 2008-02-24 18:46:36.000000000 +0100
77 -@@ -545,7 +545,8 @@
78 - void pre_resample(MidSong *song, MidSample *sp)
79 - {
80 - double a, xdiff;
81 -- sint32 incr, ofs, newlen, count;
82 -+ sint32 incr, ofs, count;
83 -+ unsigned int newlen;
84 - sint16 *newdata, *dest, *src = (sint16 *) sp->data;
85 - sint16 v1, v2, v3, v4, *vptr;
86 - #ifdef DEBUG_CHATTER
87 -@@ -561,7 +562,7 @@
88 -
89 - a = ((double) (sp->sample_rate) * freq_table[(int) (sp->note_to_use)]) /
90 - ((double) (sp->root_freq) * song->rate);
91 -- newlen = (sint32)(sp->data_length / a);
92 -+ newlen = (unsigned int)(sp->data_length / a);
93 - dest = newdata = safe_malloc(newlen >> (FRACTION_BITS - 1));
94 -
95 - count = (newlen >> FRACTION_BITS) - 1;
96
97 diff --git a/media-libs/libtimidity/libtimidity-0.1.0-r2.ebuild b/media-libs/libtimidity/libtimidity-0.1.0-r2.ebuild
98 deleted file mode 100644
99 index 56547205691..00000000000
100 --- a/media-libs/libtimidity/libtimidity-0.1.0-r2.ebuild
101 +++ /dev/null
102 @@ -1,34 +0,0 @@
103 -# Copyright 1999-2015 Gentoo Foundation
104 -# Distributed under the terms of the GNU General Public License v2
105 -
106 -EAPI=5
107 -inherit autotools eutils multilib-minimal
108 -
109 -DESCRIPTION="MIDI to WAVE converter library"
110 -HOMEPAGE="http://libtimidity.sourceforge.net"
111 -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
112 -
113 -LICENSE="LGPL-2.1"
114 -SLOT="0"
115 -KEYWORDS="amd64 hppa ppc ppc64 sparc x86"
116 -IUSE="ao debug"
117 -
118 -RDEPEND="ao? ( >=media-libs/libao-1.1.0-r2[${MULTILIB_USEDEP}] )"
119 -DEPEND="${RDEPEND}
120 - virtual/pkgconfig"
121 -
122 -RESTRICT="test"
123 -DOCS="AUTHORS ChangeLog CHANGES NEWS TODO README*"
124 -
125 -src_prepare() {
126 - epatch "${FILESDIR}"/${P}-newlen-overflow.patch \
127 - "${FILESDIR}"/${P}-automagic.patch
128 - eautoreconf
129 -}
130 -
131 -multilib_src_configure() {
132 - ECONF_SOURCE="${S}" econf \
133 - --disable-static \
134 - $(use_enable ao) \
135 - $(use_enable debug)
136 -}
137
138 diff --git a/media-libs/libtimidity/libtimidity-0.2.0.ebuild b/media-libs/libtimidity/libtimidity-0.2.0.ebuild
139 deleted file mode 100644
140 index 3a948d94033..00000000000
141 --- a/media-libs/libtimidity/libtimidity-0.2.0.ebuild
142 +++ /dev/null
143 @@ -1,28 +0,0 @@
144 -# Copyright 1999-2016 Gentoo Foundation
145 -# Distributed under the terms of the GNU General Public License v2
146 -
147 -EAPI=5
148 -inherit multilib-minimal
149 -
150 -DESCRIPTION="MIDI to WAVE converter library"
151 -HOMEPAGE="http://libtimidity.sourceforge.net"
152 -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
153 -
154 -LICENSE="LGPL-2.1"
155 -SLOT="0/2"
156 -KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
157 -IUSE="ao debug"
158 -
159 -RDEPEND="ao? ( >=media-libs/libao-1.1.0-r2[${MULTILIB_USEDEP}] )"
160 -DEPEND="${RDEPEND}
161 - virtual/pkgconfig"
162 -
163 -RESTRICT="test"
164 -DOCS="AUTHORS ChangeLog CHANGES NEWS TODO README*"
165 -
166 -multilib_src_configure() {
167 - ECONF_SOURCE="${S}" econf \
168 - --disable-static \
169 - $(use_enable ao) \
170 - $(use_enable debug)
171 -}
172
173 diff --git a/media-libs/libtimidity/libtimidity-0.2.2.ebuild b/media-libs/libtimidity/libtimidity-0.2.2.ebuild
174 deleted file mode 100644
175 index 3f7018d75c8..00000000000
176 --- a/media-libs/libtimidity/libtimidity-0.2.2.ebuild
177 +++ /dev/null
178 @@ -1,28 +0,0 @@
179 -# Copyright 1999-2016 Gentoo Foundation
180 -# Distributed under the terms of the GNU General Public License v2
181 -
182 -EAPI=5
183 -inherit multilib-minimal
184 -
185 -DESCRIPTION="MIDI to WAVE converter library"
186 -HOMEPAGE="http://libtimidity.sourceforge.net"
187 -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
188 -
189 -LICENSE="LGPL-2.1"
190 -SLOT="0/2"
191 -KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
192 -IUSE="ao debug"
193 -
194 -RDEPEND="ao? ( >=media-libs/libao-1.1.0-r2[${MULTILIB_USEDEP}] )"
195 -DEPEND="${RDEPEND}
196 - virtual/pkgconfig"
197 -
198 -RESTRICT="test"
199 -DOCS="AUTHORS CHANGES TODO README*"
200 -
201 -multilib_src_configure() {
202 - ECONF_SOURCE="${S}" econf \
203 - --disable-static \
204 - $(use_enable ao) \
205 - $(use_enable debug)
206 -}