Gentoo Archives: gentoo-commits

From: Conrad Kostecki <conikost@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/mxml/
Date: Wed, 02 Nov 2022 20:29:21
Message-Id: 1667420942.c5608a1340c2c95de9437007755329b853a51ea1.conikost@gentoo
1 commit: c5608a1340c2c95de9437007755329b853a51ea1
2 Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
3 AuthorDate: Wed Nov 2 20:28:14 2022 +0000
4 Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
5 CommitDate: Wed Nov 2 20:29:02 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c5608a13
7
8 dev-libs/mxml: drop 3.3
9
10 Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
11
12 dev-libs/mxml/Manifest | 1 -
13 dev-libs/mxml/mxml-3.3.ebuild | 59 -------------------------------------------
14 2 files changed, 60 deletions(-)
15
16 diff --git a/dev-libs/mxml/Manifest b/dev-libs/mxml/Manifest
17 index a9a6f2305cba..905f517aa128 100644
18 --- a/dev-libs/mxml/Manifest
19 +++ b/dev-libs/mxml/Manifest
20 @@ -1,2 +1 @@
21 DIST mxml-3.3.1.tar.gz 1554784 BLAKE2B e0d599fd947dfef72edae40c1e70ea76c92105128dd46e772a7c71f9293cab3339c980396dffe105246cad64d0474935cc1939005ad9a2bffc8e8107f025a466 SHA512 43e6a92806d9c3f5db39fbf960c15ebfa6d92ef98274b7ce39b57724d6c26ad4362d6d8f3c1023efda92e6a815df068e5038a0cd479562b6be9dbdda8e827a41
22 -DIST mxml-3.3.tar.gz 1550358 BLAKE2B 2b815cd8c2031099e2767caad93cc389962ec547fadade92b0a7fb48a2352fd0940c9e434c2081b7419e0cfb489266d7116dacefd6fb9d7ce40d6de0f49cb2a6 SHA512 5a8453bec17e46afc9b100df03dba2219353a076152f34a5dc41b7f042fa570723effc3472680a4380674c412c3ab31e017f6704b1e8308227a4d9b3f13cb197
23
24 diff --git a/dev-libs/mxml/mxml-3.3.ebuild b/dev-libs/mxml/mxml-3.3.ebuild
25 deleted file mode 100644
26 index cd7924fd99c9..000000000000
27 --- a/dev-libs/mxml/mxml-3.3.ebuild
28 +++ /dev/null
29 @@ -1,59 +0,0 @@
30 -# Copyright 1999-2021 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=8
34 -
35 -inherit autotools
36 -
37 -DESCRIPTION="A small XML parsing library that you can use to read XML data files or strings"
38 -HOMEPAGE="
39 - https://github.com/michaelrsweet/mxml
40 - https://www.msweet.org/mxml/
41 -"
42 -SRC_URI="https://github.com/michaelrsweet/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
43 -
44 -LICENSE="Mini-XML"
45 -SLOT="0"
46 -KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ppc ~ppc64 ~riscv ~sparc x86"
47 -IUSE="static-libs threads"
48 -
49 -BDEPEND="virtual/pkgconfig"
50 -
51 -src_prepare() {
52 - default
53 -
54 - # Don't run always tests
55 - # Enable verbose compiling
56 - sed -e '/ALLTARGETS/s/testmxml//g' -e '/.SILENT:/d' -i Makefile.in || die
57 -
58 - # Build only static-libs, when requested by user, also build docs without static-libs in that case
59 - if ! use static-libs; then
60 - local mysedopts=(
61 - -e '/^install:/s/install-libmxml.a//g'
62 - -e '/^mxml.xml:/s/-static//g'
63 - -e '/^mxml.epub:/s/-static//g'
64 - -e '/^valgrind/s/-static//g'
65 - -e 's/.\/mxmldoc-static/LD_LIBRARY_PATH="." .\/mxmldoc/g'
66 - )
67 - sed "${mysedopts[@]}" -i Makefile.in || die
68 - fi
69 -
70 - eautoconf
71 -}
72 -
73 -src_configure() {
74 - local myeconfargs=(
75 - $(use_enable threads)
76 - --with-docdir=/usr/share/doc/"${PF}"
77 - )
78 -
79 - econf "${myeconfargs[@]}"
80 -}
81 -
82 -src_test() {
83 - emake testmxml
84 -}
85 -
86 -src_install() {
87 - emake DSTROOT="${ED}" install
88 -}