Gentoo Archives: gentoo-commits

From: Aaron Bauman <bman@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/wiki2beamer/
Date: Sat, 26 Sep 2020 19:40:44
Message-Id: 1601149225.982e60eec4e33c5463210e6ece82951130c7a36a.bman@gentoo
1 commit: 982e60eec4e33c5463210e6ece82951130c7a36a
2 Author: Aaron Bauman <bman <AT> gentoo <DOT> org>
3 AuthorDate: Sat Sep 26 19:36:41 2020 +0000
4 Commit: Aaron Bauman <bman <AT> gentoo <DOT> org>
5 CommitDate: Sat Sep 26 19:40:25 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=982e60ee
7
8 app-text/wiki2beamer: drop old EAPI=5
9
10 Signed-off-by: Aaron Bauman <bman <AT> gentoo.org>
11
12 app-text/wiki2beamer/Manifest | 1 -
13 app-text/wiki2beamer/wiki2beamer-0.9.5-r1.ebuild | 39 ------------------------
14 2 files changed, 40 deletions(-)
15
16 diff --git a/app-text/wiki2beamer/Manifest b/app-text/wiki2beamer/Manifest
17 index 6c5bb28f704..ee3827d8445 100644
18 --- a/app-text/wiki2beamer/Manifest
19 +++ b/app-text/wiki2beamer/Manifest
20 @@ -1,2 +1 @@
21 -DIST wiki2beamer-0.9.5.zip 443288 BLAKE2B a0263ba7044966ff45c892e9f0f78f6916346c051bf57cc8445f4127019cc4cd031719b1b5b61fc7d41a85b42439fa20cdf8fc35fbed43feb28d6d9797c781c7 SHA512 0cad0458c293c335cfb0b2181822652b12662877a2ed66d743e5f258d9983ee91fb34664c032357995606bcf17bebbb7409b6100ba2340b06cc6f253e8c6b0f7
22 DIST wiki2beamer-v0.10.0.tar.gz 164911 BLAKE2B 0a532669915f0db5f1bb8755297bcd36e4175bc57d3b5f14df01566ac74e425c999447ff3f2bd20f2bcd50671bd65accfcf8049476a1656439fc46bab2becafd SHA512 712c719bcdd97f48c65aff1919f2e6a838a0beba1d2e5569063fd1f84bf68eda3137ac20e5dc463dff64c8b4656ce0bf02a0acea090b9a30262374cbee5db433
23
24 diff --git a/app-text/wiki2beamer/wiki2beamer-0.9.5-r1.ebuild b/app-text/wiki2beamer/wiki2beamer-0.9.5-r1.ebuild
25 deleted file mode 100644
26 index c87c19f7d57..00000000000
27 --- a/app-text/wiki2beamer/wiki2beamer-0.9.5-r1.ebuild
28 +++ /dev/null
29 @@ -1,39 +0,0 @@
30 -# Copyright 1999-2020 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=5
34 -
35 -PYTHON_COMPAT=( python3_6 )
36 -
37 -inherit python-single-r1
38 -
39 -DESCRIPTION="Tool to produce LaTeX Beamer code from wiki-like input"
40 -
41 -HOMEPAGE="http://wiki2beamer.sourceforge.net/"
42 -SRC_URI="mirror://sourceforge/${PN}/${P}.zip"
43 -
44 -LICENSE="|| ( GPL-2 GPL-3 ) FDL-1.3"
45 -SLOT="0"
46 -KEYWORDS="~amd64 ~x86"
47 -IUSE="+examples"
48 -REQUIRED_USE="${PYTHON_REQUIRED_USE}"
49 -
50 -RDEPEND="${PYTHON_DEPS}"
51 -DEPEND="${RDEPEND}
52 - app-arch/unzip"
53 -
54 -src_install() {
55 - if use examples; then
56 - # Patch example Makefile
57 - sed -e 's|../../code/wiki2beamer|wiki2beamer|' \
58 - -i doc/example/Makefile \
59 - || die
60 -
61 - dodoc -r doc/example
62 - fi
63 -
64 - doman doc/man/${PN}.1
65 - dodoc ChangeLog README
66 -
67 - python_doscript code/${PN}
68 -}