commit:     4bc4e869357126929423fdb0d7b6fe07ead14e70
Author:     Conrad Kostecki <conikost <AT> gentoo <DOT> org>
AuthorDate: Wed Dec  8 16:21:02 2021 +0000
Commit:     Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Wed Dec  8 16:22:16 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4bc4e869

dev-libs/mxml: drop 3.2

Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>

 dev-libs/mxml/Manifest                      |  1 -
 dev-libs/mxml/files/mxml-3.2-slibtool.patch | 26 ------------
 dev-libs/mxml/mxml-3.2.ebuild               | 64 -----------------------------
 3 files changed, 91 deletions(-)

diff --git a/dev-libs/mxml/Manifest b/dev-libs/mxml/Manifest
index 5e6f1890a14e..1f5e1737dbcb 100644
--- a/dev-libs/mxml/Manifest
+++ b/dev-libs/mxml/Manifest
@@ -1,2 +1 @@
-DIST mxml-3.2.tar.gz 9267930 BLAKE2B 
f244dab599233b8a26aba5a11526979bf2f4d20b5fce67858f7759abc5bd2f3e2aac19d512c887248839d130cf1314065687cd1ccf91edbf5533ae2d342f286b
 SHA512 
ed3f2b361394ef225a708b0032976a3d191d5eaea3022e190b29e0ee140e8f998f1d65c64e4898872b169516cee44f4f5f18401c6410c3b5aa1e9680b23e8675
 DIST mxml-3.3.tar.gz 1550358 BLAKE2B 
2b815cd8c2031099e2767caad93cc389962ec547fadade92b0a7fb48a2352fd0940c9e434c2081b7419e0cfb489266d7116dacefd6fb9d7ce40d6de0f49cb2a6
 SHA512 
5a8453bec17e46afc9b100df03dba2219353a076152f34a5dc41b7f042fa570723effc3472680a4380674c412c3ab31e017f6704b1e8308227a4d9b3f13cb197

diff --git a/dev-libs/mxml/files/mxml-3.2-slibtool.patch 
b/dev-libs/mxml/files/mxml-3.2-slibtool.patch
deleted file mode 100644
index b5d0df44df7f..000000000000
--- a/dev-libs/mxml/files/mxml-3.2-slibtool.patch
+++ /dev/null
@@ -1,26 +0,0 @@
-From 4e2e31236f731c0b7e880078269d9f98f595bfd3 Mon Sep 17 00:00:00 2001
-From: orbea <[email protected]>
-Date: Wed, 7 Apr 2021 09:17:52 -0700
-Subject: [PATCH] build: Don't use libtool.
-
----
- Makefile.in | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/Makefile.in b/Makefile.in
-index 8c05daf..cdc3450 100644
---- a/Makefile.in
-+++ b/Makefile.in
-@@ -52,10 +52,10 @@ BUILDROOT  =       $(DSTROOT)
- # Install commands...
- #
- 
--INSTALL_BIN   =       $(LIBTOOL) $(INSTALL) -m 755
-+INSTALL_BIN   =       $(INSTALL) -m 755
- INSTALL_DATA  =       $(INSTALL) -m 644
- INSTALL_DIR   =       $(INSTALL) -d
--INSTALL_LIB   =       $(LIBTOOL) $(INSTALL) -m 755
-+INSTALL_LIB   =       $(INSTALL) -m 755
- INSTALL_MAN   =       $(INSTALL) -m 644
- INSTALL_SCRIPT        =       $(INSTALL) -m 755
- 

diff --git a/dev-libs/mxml/mxml-3.2.ebuild b/dev-libs/mxml/mxml-3.2.ebuild
deleted file mode 100644
index b21734763a11..000000000000
--- a/dev-libs/mxml/mxml-3.2.ebuild
+++ /dev/null
@@ -1,64 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit autotools
-
-DESCRIPTION="A small XML parsing library that you can use to read XML data 
files or strings"
-HOMEPAGE="
-       https://github.com/michaelrsweet/mxml
-       https://www.msweet.org/mxml/
-"
-SRC_URI="https://github.com/michaelrsweet/${PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="Mini-XML"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ppc ~ppc64 ~sparc x86"
-IUSE="static-libs threads"
-
-BDEPEND="virtual/pkgconfig"
-
-PATCHES=( "${FILESDIR}/${P}-slibtool.patch" )
-
-src_prepare() {
-       default
-
-       # Respect users CFLAGS
-       sed -e 's/-Os -g//' -i configure.ac || die
-
-       # Don't run always tests
-       # Enable verbose compiling
-       sed -e '/ALLTARGETS/s/testmxml//g' -e '/.SILENT:/d' -i Makefile.in || 
die
-
-       # Build only static-libs, when requested by user, also build docs 
without static-libs in that case
-       if ! use static-libs; then
-               local mysedopts=(
-                       -e '/^install:/s/install-libmxml.a//g'
-                       -e '/^mxml.xml:/s/-static//g'
-                       -e '/^mxml.epub:/s/-static//g'
-                       -e '/^valgrind/s/-static//g'
-                       -e 's/.\/mxmldoc-static/LD_LIBRARY_PATH="." 
.\/mxmldoc/g'
-               )
-               sed "${mysedopts[@]}" -i Makefile.in || die
-       fi
-
-       eautoconf
-}
-
-src_configure() {
-       local myeconfargs=(
-               $(use_enable threads)
-               --with-docdir=/usr/share/doc/"${PF}"
-       )
-
-       econf "${myeconfargs[@]}"
-}
-
-src_test() {
-       emake testmxml
-}
-
-src_install() {
-       emake DSTROOT="${ED}" install
-}

Reply via email to