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-video/syncplay/
Date: Mon, 27 Apr 2020 08:03:40
Message-Id: 1587974557.5b7011e354c1d8507ef909f6dba6075c861e3bb5.zlogene@gentoo
1 commit: 5b7011e354c1d8507ef909f6dba6075c861e3bb5
2 Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
3 AuthorDate: Mon Apr 27 08:02:37 2020 +0000
4 Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
5 CommitDate: Mon Apr 27 08:02:37 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5b7011e3
7
8 media-video/syncplay: remove last-rited pkg
9
10 Closes: https://bugs.gentoo.org/710240
11
12 Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>
13
14 media-video/syncplay/Manifest | 2 --
15 media-video/syncplay/metadata.xml | 13 -------
16 media-video/syncplay/syncplay-1.5.0.ebuild | 54 ------------------------------
17 media-video/syncplay/syncplay-1.5.1.ebuild | 52 ----------------------------
18 media-video/syncplay/syncplay-9999.ebuild | 53 -----------------------------
19 5 files changed, 174 deletions(-)
20
21 diff --git a/media-video/syncplay/Manifest b/media-video/syncplay/Manifest
22 deleted file mode 100644
23 index 793278dbb8b..00000000000
24 --- a/media-video/syncplay/Manifest
25 +++ /dev/null
26 @@ -1,2 +0,0 @@
27 -DIST syncplay-1.5.0.tar.gz 1588514 BLAKE2B 0f2bddf3500758c3081bdba993b21fe60a0d3af7081c5edd0f684e1d60a2a95edce133a597e79747350e681dd40768226226f0b26e295850a8c218107b1da3e9 SHA512 8a57add8a845c041c02147415fc4b7941a41edfb80fc037c3af4e246d9ca6391be9f3886407470b1b51b8783ad6306e42bb34991e7cbb08eea87e781e3cd2200
28 -DIST syncplay-1.5.1.tar.gz 1603524 BLAKE2B 0d7edb0c2129f67ce457cffb57f5600d0c0d6bee017119efc866d748f63e6e984becd21f88324e19dcac3f0ce52e2e2f1bf65326aab6237ea41b04bdecf26334 SHA512 8d7f99132b49148003dcdc83b5afc3158ebd7ad0b8a161229f8f576e7683e3c432d09793db071239e6344490f6e08d01c9061a32556b5bce6dcd68823b47a0cf
29
30 diff --git a/media-video/syncplay/metadata.xml b/media-video/syncplay/metadata.xml
31 deleted file mode 100644
32 index 7c4c9284a32..00000000000
33 --- a/media-video/syncplay/metadata.xml
34 +++ /dev/null
35 @@ -1,13 +0,0 @@
36 -<?xml version="1.0" encoding="UTF-8"?>
37 -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
38 -<pkgmetadata>
39 - <!-- maintainer-needed -->
40 - <upstream>
41 - <remote-id type="github">Syncplay/syncplay</remote-id>
42 - </upstream>
43 - <use>
44 - <flag name="client">Install Syncplay client</flag>
45 - <flag name="server">Install Syncplay server</flag>
46 - <flag name="vlc">Enable VLC2.x support</flag>
47 - </use>
48 -</pkgmetadata>
49
50 diff --git a/media-video/syncplay/syncplay-1.5.0.ebuild b/media-video/syncplay/syncplay-1.5.0.ebuild
51 deleted file mode 100644
52 index 2300d465955..00000000000
53 --- a/media-video/syncplay/syncplay-1.5.0.ebuild
54 +++ /dev/null
55 @@ -1,54 +0,0 @@
56 -# Copyright 1999-2020 Gentoo Authors
57 -# Distributed under the terms of the GNU General Public License v2
58 -
59 -EAPI=6
60 -
61 -PYTHON_COMPAT=( python2_7 )
62 -
63 -inherit python-r1
64 -
65 -MY_PV=${PV/_rc/-RC}
66 -
67 -DESCRIPTION="Client/server to synchronize media playback"
68 -HOMEPAGE="https://syncplay.pl"
69 -SRC_URI="https://github.com/Syncplay/syncplay/archive/v${MY_PV}.tar.gz -> ${P}.tar.gz"
70 -
71 -LICENSE="Apache-2.0"
72 -SLOT="0"
73 -KEYWORDS="~amd64 x86"
74 -IUSE="+client +server vlc"
75 -REQUIRED_USE="vlc? ( client )
76 - ${PYTHON_REQUIRED_USE}"
77 -
78 -DEPEND=""
79 -RDEPEND="${PYTHON_DEPS}
80 - >=dev-python/twisted-16.0.0[${PYTHON_USEDEP}]
81 - vlc? ( media-video/vlc[lua] )"
82 -
83 -S="${WORKDIR}/${PN}-${MY_PV}"
84 -
85 -src_prepare() {
86 - default
87 - sed -i 's/"noGui": False,/"noGui": True,/' \
88 - syncplay/ui/ConfigurationGetter.py \
89 - || die "Failed to patch ConfigurationGetter.py"
90 -}
91 -
92 -src_compile() {
93 - :
94 -}
95 -
96 -src_install() {
97 - local MY_MAKEOPTS=( DESTDIR="${D}" PREFIX=/usr )
98 - use client && \
99 - emake "${MY_MAKEOPTS[@]}" VLC_SUPPORT=$(usex vlc true false) install-client
100 - use server && \
101 - emake "${MY_MAKEOPTS[@]}" install-server
102 -}
103 -
104 -pkg_postinst() {
105 - if use client; then
106 - einfo "Syncplay supports the following players:"
107 - einfo "media-video/mpv, media-video/mplayer2, media-video/vlc"
108 - fi
109 -}
110
111 diff --git a/media-video/syncplay/syncplay-1.5.1.ebuild b/media-video/syncplay/syncplay-1.5.1.ebuild
112 deleted file mode 100644
113 index 57714f0b4fa..00000000000
114 --- a/media-video/syncplay/syncplay-1.5.1.ebuild
115 +++ /dev/null
116 @@ -1,52 +0,0 @@
117 -# Copyright 1999-2020 Gentoo Authors
118 -# Distributed under the terms of the GNU General Public License v2
119 -
120 -EAPI=6
121 -
122 -PYTHON_COMPAT=( python2_7 )
123 -
124 -inherit python-r1
125 -
126 -DESCRIPTION="Client/server to synchronize media playback"
127 -HOMEPAGE="https://syncplay.pl"
128 -SRC_URI="https://github.com/Syncplay/syncplay/archive/v${PV}.tar.gz -> ${P}.tar.gz"
129 -
130 -LICENSE="Apache-2.0"
131 -SLOT="0"
132 -KEYWORDS="~amd64 ~ppc64 x86"
133 -IUSE="+client +server vlc"
134 -REQUIRED_USE="vlc? ( client )
135 - ${PYTHON_REQUIRED_USE}"
136 -
137 -DEPEND=""
138 -# TODO: investigate the possibility of enabling PyQt5 gui
139 -# possible licensing concerns
140 -RDEPEND="${PYTHON_DEPS}
141 - >=dev-python/twisted-16.0.0[${PYTHON_USEDEP}]
142 - vlc? ( media-video/vlc[lua] )"
143 -
144 -src_prepare() {
145 - default
146 - sed -i 's/"noGui": False,/"noGui": True,/' \
147 - syncplay/ui/ConfigurationGetter.py \
148 - || die "Failed to patch ConfigurationGetter.py"
149 -}
150 -
151 -src_compile() {
152 - :
153 -}
154 -
155 -src_install() {
156 - local MY_MAKEOPTS=( DESTDIR="${D}" PREFIX=/usr )
157 - use client && \
158 - emake "${MY_MAKEOPTS[@]}" VLC_SUPPORT=$(usex vlc true false) install-client
159 - use server && \
160 - emake "${MY_MAKEOPTS[@]}" install-server
161 -}
162 -
163 -pkg_postinst() {
164 - if use client; then
165 - einfo "Syncplay supports the following players:"
166 - einfo "media-video/mpv, media-video/mplayer2, media-video/vlc"
167 - fi
168 -}
169
170 diff --git a/media-video/syncplay/syncplay-9999.ebuild b/media-video/syncplay/syncplay-9999.ebuild
171 deleted file mode 100644
172 index d1c1f6fabbb..00000000000
173 --- a/media-video/syncplay/syncplay-9999.ebuild
174 +++ /dev/null
175 @@ -1,53 +0,0 @@
176 -# Copyright 1999-2020 Gentoo Authors
177 -# Distributed under the terms of the GNU General Public License v2
178 -
179 -EAPI=6
180 -
181 -PYTHON_COMPAT=( python2_7 )
182 -
183 -inherit git-r3 python-r1
184 -
185 -MY_PV=${PV/_rc/-RC}
186 -
187 -DESCRIPTION="Client/server to synchronize media playback"
188 -HOMEPAGE="https://syncplay.pl"
189 -EGIT_REPO_URI="https://github.com/Syncplay/${PN}.git"
190 -
191 -LICENSE="Apache-2.0"
192 -SLOT="0"
193 -IUSE="+client +server vlc"
194 -REQUIRED_USE="vlc? ( client )
195 - ${PYTHON_REQUIRED_USE}"
196 -
197 -DEPEND=""
198 -RDEPEND="${PYTHON_DEPS}
199 - >=dev-python/twisted-16.0.0[${PYTHON_USEDEP}]
200 - vlc? ( media-video/vlc[lua] )"
201 -
202 -S="${WORKDIR}/${PN}-${MY_PV}"
203 -
204 -src_prepare() {
205 - default
206 - sed -i 's/"noGui": False,/"noGui": True,/' \
207 - syncplay/ui/ConfigurationGetter.py \
208 - || die "Failed to patch ConfigurationGetter.py"
209 -}
210 -
211 -src_compile() {
212 - :
213 -}
214 -
215 -src_install() {
216 - local MY_MAKEOPTS=( DESTDIR="${D}" PREFIX=/usr )
217 - use client && \
218 - emake "${MY_MAKEOPTS[@]}" VLC_SUPPORT=$(usex vlc true false) install-client
219 - use server && \
220 - emake "${MY_MAKEOPTS[@]}" install-server
221 -}
222 -
223 -pkg_postinst() {
224 - if use client; then
225 - einfo "Syncplay supports the following players:"
226 - einfo "media-video/mpv, media-video/mplayer2, media-video/vlc"
227 - fi
228 -}