Gentoo Archives: gentoo-commits

From: "Andreas K. Hüttel" <dilfridge@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-plugins/vdr-epgsearch/
Date: Mon, 20 Sep 2021 19:40:50
Message-Id: 1632166826.014d395b5afaf387262c158c786f09f1356a3cd1.dilfridge@gentoo
1 commit: 014d395b5afaf387262c158c786f09f1356a3cd1
2 Author: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
3 AuthorDate: Mon Sep 20 18:22:31 2021 +0000
4 Commit: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
5 CommitDate: Mon Sep 20 19:40:26 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=014d395b
7
8 media-plugins/vdr-epgsearch: Remove old
9
10 Bug: https://bugs.gentoo.org/789402
11 Package-Manager: Portage-3.0.20, Repoman-3.0.3
12 Signed-off-by: Andreas K. Huettel <dilfridge <AT> gentoo.org>
13
14 media-plugins/vdr-epgsearch/Manifest | 2 -
15 .../vdr-epgsearch/vdr-epgsearch-2.2.0.ebuild | 84 -------------------
16 .../vdr-epgsearch-2.4.0_p20200402-r1.ebuild | 96 ----------------------
17 3 files changed, 182 deletions(-)
18
19 diff --git a/media-plugins/vdr-epgsearch/Manifest b/media-plugins/vdr-epgsearch/Manifest
20 index 44ad6fb4a12..0728c012ece 100644
21 --- a/media-plugins/vdr-epgsearch/Manifest
22 +++ b/media-plugins/vdr-epgsearch/Manifest
23 @@ -1,3 +1 @@
24 -DIST vdr-epgsearch-2.2.0.tgz 472502 BLAKE2B f98053d95a6fe56aff48bd3e86ae8a37166b3b8556fe3500c956901cb3f8d19c5792b157606d372392b7387c05a72f4d664881a27bbd5b9484640d8de73b8673 SHA512 c0fef60069addc3cca82535c22b7e1f73f01de7466bc6d0b837ba34df7a7dd0fe2cbf7e9b9bc36a523a75a3db18889a1ff9040fb2647c889ea74666067c3a1e4
25 -DIST vdr-epgsearch-2.4.0_p20200402.tar.gz 479998 BLAKE2B 04e83bd2361743669baba7b10a27fab91f22115b81fe69e9252cc5ecd94fb0fda55d8b6ce3fcaeb08e779f07d46d26e37026d1732d6b38c03385c659eacd5ab0 SHA512 586b369a25c32bbf2d33e68997e7298ad7fda50ac78da5321c848a74d91753a51e6f47d70ef6893ca980bfa2c9f167defd611464729ca4ebf704247e8e37a065
26 DIST vdr-epgsearch-2.4.1.tar.gz 481899 BLAKE2B ab0325fbab73d3c6e6753b926ca0cde6ec971fd42f7b8badf4b306671bf3380c5784262fe1f24e6ce57fef1903ef533b450ea03c346242b5a72f26eeba8a6bd9 SHA512 031ee227a5d45bbf1344cc8195dfd38d23ff23303d55c8492e7b2f86f1f53402a68e6500888bf847cd3506ebc2cfbb73aef2b8b0d6ef98f210631642de1d1f9c
27
28 diff --git a/media-plugins/vdr-epgsearch/vdr-epgsearch-2.2.0.ebuild b/media-plugins/vdr-epgsearch/vdr-epgsearch-2.2.0.ebuild
29 deleted file mode 100644
30 index ebf6ebe1eb3..00000000000
31 --- a/media-plugins/vdr-epgsearch/vdr-epgsearch-2.2.0.ebuild
32 +++ /dev/null
33 @@ -1,84 +0,0 @@
34 -# Copyright 2020-2021 Gentoo Authors
35 -# Distributed under the terms of the GNU General Public License v2
36 -
37 -EAPI=7
38 -
39 -inherit vdr-plugin-2
40 -
41 -DESCRIPTION="VDR plugin: create timers from epg content based on saved search expressions"
42 -HOMEPAGE="https://projects.vdr-developer.org/git/vdr-plugin-epgsearch.git"
43 -SRC_URI="https://projects.vdr-developer.org/git/vdr-plugin-${VDRPLUGIN}.git/snapshot/vdr-plugin-${VDRPLUGIN}-${PV}.tar.gz -> ${P}.tgz"
44 -
45 -LICENSE="GPL-2+"
46 -SLOT="0"
47 -KEYWORDS="amd64 x86"
48 -IUSE="+conflictcheckonly +epgsearchonly pcre +quicksearch tre"
49 -
50 -DEPEND="=media-video/vdr-2.2*
51 - pcre? ( dev-libs/libpcre )
52 - tre? ( dev-libs/tre )"
53 -RDEPEND="${DEPEND}"
54 -QA_FLAGS_IGNORED="usr/lib/vdr/plugins/libvdr-.* usr/lib64/vdr/plugins/libvdr-.* usr/bin/createcats"
55 -
56 -REQUIRED_USE="?? ( pcre tre )"
57 -
58 -S="${WORKDIR}/vdr-plugin-${VDRPLUGIN}-${PV}"
59 -
60 -src_prepare() {
61 - # make detection in vdr-plugin-2.eclass for new Makefile handling happy
62 - echo "# SOFILE" >> Makefile
63 -
64 - # remove untranslated .po files
65 - rm "${S}"/po/{ca_ES,da_DK,el_GR,et_EE,hr_HR,hu_HU,nn_NO,pl_PL,pt_PT,ro_RO,ru_RU,sl_SI,sv_SE,tr_TR}.po || die
66 -
67 - eapply "${FILESDIR}/vdr-epgsearch-1.x.makefile.patch"
68 -
69 - use conflictcheckonly || sed -e "s:install-\$(PLUGIN3)::" -i Makefile || die
70 - use epgsearchonly || sed -e "s:install-\$(PLUGIN2)::" -i Makefile || die
71 - use quicksearch || sed -e "s:install-\$(PLUGIN4)::" -i Makefile || die
72 -
73 - vdr-plugin-2_src_prepare
74 -
75 - fix_vdr_libsi_include conflictcheck.c
76 -
77 - # install conf-file disabled
78 - sed -e '/^Menu/s:^:#:' -i conf/epgsearchmenu.conf || die
79 -
80 - # Get rid of the broken symlinks
81 - rm -f README{,.DE} MANUAL || die
82 -}
83 -
84 -src_compile() {
85 - BUILD_PARAMS="SENDMAIL=/usr/sbin/sendmail AUTOCONFIG=0"
86 -
87 - if use pcre; then
88 - BUILD_PARAMS+=" REGEXLIB=pcre"
89 - einfo "Using pcre for regexp searches"
90 - fi
91 -
92 - if use tre; then
93 - BUILD_PARAMS+=" REGEXLIB=tre"
94 - einfo "Using tre for unlimited fuzzy searches"
95 - fi
96 -
97 - vdr-plugin-2_src_compile
98 -}
99 -
100 -src_install() {
101 - vdr-plugin-2_src_install
102 -
103 - diropts "-m755 -o vdr -g vdr"
104 - keepdir /etc/vdr/plugins/epgsearch
105 - insinto /etc/vdr/plugins/epgsearch
106 -
107 - doins conf/epgsearchmenu.conf
108 - doins conf/epgsearchconflmail.templ conf/epgsearchupdmail.templ
109 -
110 - nonfatal dodoc conf/*.templ HISTORY*
111 -
112 - gunzip -f man/en/*.gz || die
113 - doman man/en/*.[0-9]
114 -
115 - gunzip -f man/de/*.gz || die
116 - doman -i18n=de man/de/*.[0-9]
117 -}
118
119 diff --git a/media-plugins/vdr-epgsearch/vdr-epgsearch-2.4.0_p20200402-r1.ebuild b/media-plugins/vdr-epgsearch/vdr-epgsearch-2.4.0_p20200402-r1.ebuild
120 deleted file mode 100644
121 index 042aa1670c6..00000000000
122 --- a/media-plugins/vdr-epgsearch/vdr-epgsearch-2.4.0_p20200402-r1.ebuild
123 +++ /dev/null
124 @@ -1,96 +0,0 @@
125 -# Copyright 2021 Gentoo Authors
126 -# Distributed under the terms of the GNU General Public License v2
127 -
128 -EAPI=7
129 -
130 -inherit vdr-plugin-2
131 -
132 -DESCRIPTION="VDR plugin: create timers from epg content based on saved search expressions"
133 -HOMEPAGE="http://winni.vdr-developer.org/epgsearch/index_eng.html"
134 -GIT_COMMIT_ID="d8cff1a251ef2b54f1de3f8e6ea55a838eeb73c3"
135 -SRC_URI="https://projects.vdr-developer.org/git/vdr-plugin-epgsearch.git/snapshot/vdr-plugin-epgsearch-${GIT_COMMIT_ID}.tar.gz -> ${P}.tar.gz"
136 -
137 -LICENSE="GPL-2+"
138 -SLOT="0"
139 -KEYWORDS="amd64 x86"
140 -IUSE="conflictcheckonly epgsearchonly pcre quicksearch tre"
141 -REQUIRED_USE="?? ( pcre tre )"
142 -
143 -DEPEND="
144 - >=media-video/vdr-2.4
145 - pcre? ( dev-libs/libpcre )
146 - tre? ( dev-libs/tre )"
147 -RDEPEND="${DEPEND}"
148 -BDEPEND="
149 - sys-apps/groff
150 - dev-lang/perl"
151 -
152 -PATCHES=(
153 - "${FILESDIR}/${PN}-2.4.0_makefile.patch"
154 - "${FILESDIR}/${PN}-2.4.0_docsrc2man-no-gzip.patch"
155 - "${FILESDIR}/${P}_clang.patch"
156 -)
157 -
158 -QA_FLAGS_IGNORED="
159 - usr/lib/vdr/plugins/libvdr-.*
160 - usr/lib64/vdr/plugins/libvdr-.*
161 - usr/bin/createcats"
162 -S="${WORKDIR}/vdr-plugin-epgsearch-${GIT_COMMIT_ID}"
163 -
164 -src_prepare() {
165 - # remove untranslated .po files
166 - rm "${S}"/po/{ca_ES,da_DK,el_GR,et_EE,hr_HR,hu_HU,nn_NO,pl_PL,pt_PT,ro_RO,ru_RU,sl_SI,sv_SE,tr_TR}.po \
167 - || die "cannot remove untranslated .po files"
168 -
169 - if ! use conflictcheckonly; then
170 - sed -e "s:install-\$(PLUGIN3)::" -i Makefile || die "cannot modify Makefile"
171 - fi
172 -
173 - if ! use epgsearchonly; then
174 - sed -e "s:install-\$(PLUGIN2)::" -i Makefile || die "cannot modify Makefile"
175 - fi
176 -
177 - if ! use quicksearch; then
178 - sed -e "s:install-\$(PLUGIN4)::" -i Makefile || die "cannot modify Makefile"
179 - fi
180 -
181 - vdr-plugin-2_src_prepare
182 -
183 - fix_vdr_libsi_include conflictcheck.c
184 -
185 - # install conf-file disabled
186 - sed -e '/^Menu/s:^:#:' -i conf/epgsearchmenu.conf || die "cannot modify epgsearchmenu.conf"
187 -
188 - # Get rid of the broken symlink
189 - rm README || die "cannot remove broken symlink"
190 -}
191 -
192 -src_compile() {
193 - BUILD_PARAMS="SENDMAIL=/usr/sbin/sendmail AUTOCONFIG=0"
194 -
195 - if use pcre; then
196 - BUILD_PARAMS+=" REGEXLIB=pcre"
197 - einfo "Using pcre for regexp searches"
198 - fi
199 -
200 - if use tre; then
201 - BUILD_PARAMS+=" REGEXLIB=tre"
202 - einfo "Using tre for unlimited fuzzy searches"
203 - fi
204 -
205 - vdr-plugin-2_src_compile
206 -}
207 -
208 -src_install() {
209 - local DOCS=( conf/*.templ HISTORY* README.Translators )
210 - vdr-plugin-2_src_install
211 -
212 - diropts -m 755 -o vdr -g vdr
213 - insopts -m 644 -o vdr -g vdr
214 - keepdir /etc/vdr/plugins/epgsearch
215 - insinto /etc/vdr/plugins/epgsearch
216 - doins conf/*
217 -
218 - doman man/en/*
219 - doman -i18n=de man/de/*
220 -}