public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "David Seifert" <soap@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/xerces-c/
Date: Wed, 21 Dec 2016 08:08:18 +0000 (UTC)	[thread overview]
Message-ID: <1482307692.44485bad3bbf280839f823b81a1051e56db5c93f.soap@gentoo> (raw)

commit:     44485bad3bbf280839f823b81a1051e56db5c93f
Author:     David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Wed Dec 21 08:07:45 2016 +0000
Commit:     David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Wed Dec 21 08:08:12 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=44485bad

dev-libs/xerces-c: Remove old

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 dev-libs/xerces-c/Manifest              |  2 -
 dev-libs/xerces-c/xerces-c-3.1.2.ebuild | 99 ---------------------------------
 dev-libs/xerces-c/xerces-c-3.1.3.ebuild | 99 ---------------------------------
 3 files changed, 200 deletions(-)

diff --git a/dev-libs/xerces-c/Manifest b/dev-libs/xerces-c/Manifest
index 6654a9b..97fc333 100644
--- a/dev-libs/xerces-c/Manifest
+++ b/dev-libs/xerces-c/Manifest
@@ -1,3 +1 @@
-DIST xerces-c-3.1.2.tar.gz 6959894 SHA256 743bd0a029bf8de56a587c270d97031e0099fe2b7142cef03e0da16e282655a0 SHA512 89b61c336b270e124f7773534606706787da02437cf0b9d0374481027eb235692990b99e8ead383cb2d6da52dab2ae5f14fafcf30aba748900e1a0c32957fdc8 WHIRLPOOL 768e6f653345ed30de2b3840f437bd22df381e8c341ddfdaedd08ed48d2331937e2431cdbc503c9d1a9180848cbc6a13f0a0fe359b6d8b7e846f0b49e9e2a43b
-DIST xerces-c-3.1.3.tar.gz 9009575 SHA256 f3d4f73db7c981e16db2b16d9424b0c75d9fbd30ad81747cac047bc6170b5b49 SHA512 587f74360265d148fede240b04b75aaeb17d67d7da007084bcab95af893f6512503ea487766dbf318aaa750c8463bfe1b9b6593925b7181c341dd06ca0113183 WHIRLPOOL 4f0277052f9cc8428f8976ec0d1305439882f67ebc592946e7f8d0905a06e157801413d51d644afca1042d8341dab7261374a8c678c6f78a3d11dbfa96f9a4e2
 DIST xerces-c-3.1.4.tar.gz 6992545 SHA256 c98eedac4cf8a73b09366ad349cb3ef30640e7a3089d360d40a3dde93f66ecf6 SHA512 8afd775bac0345a2714b77a1ae2cfb8ae67f0239ec7370de7d89612dec64d2e1df48612c875fe239ab6f2eb31914c2d3914617e6b34a1bae0bbb14e4dbc787b5 WHIRLPOOL 37e2b7662fc500c1dafe121eb8b3b94822f54dff144682f3a0729bc051609f1bb83a540f3e428fbda6f230b72a37a147edb3088000a9a408bb65fa4ec4126f07

diff --git a/dev-libs/xerces-c/xerces-c-3.1.2.ebuild b/dev-libs/xerces-c/xerces-c-3.1.2.ebuild
deleted file mode 100644
index 2f55f90..00000000
--- a/dev-libs/xerces-c/xerces-c-3.1.2.ebuild
+++ /dev/null
@@ -1,99 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-inherit eutils
-
-DESCRIPTION="A validating XML parser written in a portable subset of C++"
-HOMEPAGE="http://xerces.apache.org/xerces-c/"
-SRC_URI="mirror://apache/xerces/c/3/sources/${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="alpha amd64 ~arm hppa ppc ppc64 sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux"
-
-IUSE="cpu_flags_x86_sse2 curl doc elibc_Darwin elibc_FreeBSD iconv icu static-libs threads"
-
-RDEPEND="icu? ( dev-libs/icu:0= )
-	curl? ( net-misc/curl )
-	virtual/libiconv"
-DEPEND="${RDEPEND}
-	doc? ( app-doc/doxygen )"
-
-DOCS=( CREDITS KEYS NOTICE README version.incl )
-
-pkg_setup() {
-	export ICUROOT="/usr"
-
-	if use iconv && use icu ; then
-		ewarn "This package can use iconv or icu for loading messages"
-		ewarn "and transcoding, but not both. ICU will precede."
-	fi
-}
-
-src_prepare() {
-	use threads || epatch "${FILESDIR}/3.1.1-disable-thread-tests.patch"
-
-	sed -i \
-		-e 's|$(prefix)/msg|$(DESTDIR)/$(prefix)/share/xerces-c/msg|' \
-		-e 's/@mkdir_p@/@MKDIR_P@/' \
-		src/xercesc/util/MsgLoaders/MsgCatalog/Makefile.in || die
-
-	epatch_user
-}
-
-src_configure() {
-	local mloader="inmemory"
-	use iconv && mloader="iconv"
-	use icu && mloader="icu"
-
-	local transcoder="gnuiconv"
-	use elibc_FreeBSD && transcoder="iconv"
-	use elibc_Darwin && transcoder="macosunicodeconverter"
-	use icu && transcoder="icu"
-	# for interix maybe: transcoder="windows"
-
-	# 'cfurl' is only available on OSX and 'socket' isn't supposed to work.
-	# But the docs aren't clear about it, so we would need some testing...
-	local netaccessor="socket"
-	use elibc_Darwin && netaccessor="cfurl"
-	use curl && netaccessor="curl"
-
-	econf \
-		--disable-pretty-make \
-		$(use_enable static-libs static) \
-		$(use_enable threads) \
-		--enable-msgloader-${mloader} \
-		--enable-netaccessor-${netaccessor} \
-		--enable-transcoder-${transcoder} \
-		$(use_enable cpu_flags_x86_sse2 sse2)
-}
-
-src_compile() {
-	default
-
-	if use doc ; then
-		cd "${S}/doc"
-		doxygen || die "making docs failed"
-	fi
-}
-
-src_install () {
-	default
-	prune_libtool_files
-
-	# To make sure an appropriate NLS msg file is around when using the iconv msgloader
-	# ICU has the messages compiled in.
-	if use iconv && ! use icu ; then
-		doenvd "${FILESDIR}/50xerces-c"
-	fi
-
-	if use doc; then
-		insinto /usr/share/doc/${PF}
-		rm -rf samples/Makefile* samples/runConfigure samples/src/*/Makefile* samples/.libs
-		doins -r samples
-		dohtml -r doc/html/*
-	fi
-}

diff --git a/dev-libs/xerces-c/xerces-c-3.1.3.ebuild b/dev-libs/xerces-c/xerces-c-3.1.3.ebuild
deleted file mode 100644
index d8e0f94..00000000
--- a/dev-libs/xerces-c/xerces-c-3.1.3.ebuild
+++ /dev/null
@@ -1,99 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-inherit eutils
-
-DESCRIPTION="A validating XML parser written in a portable subset of C++"
-HOMEPAGE="http://xerces.apache.org/xerces-c/"
-SRC_URI="mirror://apache/xerces/c/3/sources/${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux"
-
-IUSE="cpu_flags_x86_sse2 curl doc elibc_Darwin elibc_FreeBSD iconv icu static-libs threads"
-
-RDEPEND="icu? ( dev-libs/icu:0= )
-	curl? ( net-misc/curl )
-	virtual/libiconv"
-DEPEND="${RDEPEND}
-	doc? ( app-doc/doxygen )"
-
-DOCS=( CREDITS KEYS NOTICE README version.incl )
-
-pkg_setup() {
-	export ICUROOT="/usr"
-
-	if use iconv && use icu ; then
-		ewarn "This package can use iconv or icu for loading messages"
-		ewarn "and transcoding, but not both. ICU will precede."
-	fi
-}
-
-src_prepare() {
-	use threads || epatch "${FILESDIR}/3.1.1-disable-thread-tests.patch"
-
-	sed -i \
-		-e 's|$(prefix)/msg|$(DESTDIR)/$(prefix)/share/xerces-c/msg|' \
-		-e 's/@mkdir_p@/@MKDIR_P@/' \
-		src/xercesc/util/MsgLoaders/MsgCatalog/Makefile.in || die
-
-	epatch_user
-}
-
-src_configure() {
-	local mloader="inmemory"
-	use iconv && mloader="iconv"
-	use icu && mloader="icu"
-
-	local transcoder="gnuiconv"
-	use elibc_FreeBSD && transcoder="iconv"
-	use elibc_Darwin && transcoder="macosunicodeconverter"
-	use icu && transcoder="icu"
-	# for interix maybe: transcoder="windows"
-
-	# 'cfurl' is only available on OSX and 'socket' isn't supposed to work.
-	# But the docs aren't clear about it, so we would need some testing...
-	local netaccessor="socket"
-	use elibc_Darwin && netaccessor="cfurl"
-	use curl && netaccessor="curl"
-
-	econf \
-		--disable-pretty-make \
-		$(use_enable static-libs static) \
-		$(use_enable threads) \
-		--enable-msgloader-${mloader} \
-		--enable-netaccessor-${netaccessor} \
-		--enable-transcoder-${transcoder} \
-		$(use_enable cpu_flags_x86_sse2 sse2)
-}
-
-src_compile() {
-	default
-
-	if use doc ; then
-		cd "${S}/doc"
-		doxygen || die "making docs failed"
-	fi
-}
-
-src_install () {
-	default
-	prune_libtool_files
-
-	# To make sure an appropriate NLS msg file is around when using the iconv msgloader
-	# ICU has the messages compiled in.
-	if use iconv && ! use icu ; then
-		doenvd "${FILESDIR}/50xerces-c"
-	fi
-
-	if use doc; then
-		insinto /usr/share/doc/${PF}
-		rm -rf samples/Makefile* samples/runConfigure samples/src/*/Makefile* samples/.libs
-		doins -r samples
-		dohtml -r doc/html/*
-	fi
-}


             reply	other threads:[~2016-12-21  8:08 UTC|newest]

Thread overview: 67+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-12-21  8:08 David Seifert [this message]
  -- strict thread matches above, loose matches on Subject: below --
2025-04-21 11:52 [gentoo-commits] repo/gentoo:master commit in: dev-libs/xerces-c/ Sam James
2025-01-10  8:37 WANG Xuerui
2024-06-24  5:17 Joonas Niilola
2024-06-24  1:48 Sam James
2024-06-23 16:10 Arthur Zamarin
2024-06-23 16:10 Arthur Zamarin
2024-06-23 16:10 Arthur Zamarin
2024-06-23 16:01 Sam James
2024-06-23 15:45 Arthur Zamarin
2024-05-03 11:03 Sam James
2024-05-03 11:03 Sam James
2023-05-01  6:11 Arthur Zamarin
2023-05-01  2:26 Sam James
2023-05-01  2:26 Sam James
2023-05-01  0:23 Sam James
2023-05-01  0:23 Sam James
2023-05-01  0:09 Sam James
2023-05-01  0:09 Sam James
2023-04-02  2:56 Sam James
2022-04-26 14:38 Sam James
2022-04-12 10:56 Sam James
2022-01-03 23:26 David Seifert
2022-01-02 17:49 David Seifert
2021-08-14 23:15 Marek Szuba
2021-03-08 21:14 Andreas Sturmlechner
2021-03-08  4:49 Sam James
2021-03-07 18:45 Sergei Trofimovich
2021-03-07 14:41 Agostino Sarubbo
2021-03-06 23:10 Sam James
2021-03-06 18:37 Sam James
2021-03-06 18:37 Sam James
2021-03-06 18:36 Sam James
2021-02-15  9:47 Andreas Sturmlechner
2021-02-15  9:03 Andreas Sturmlechner
2020-09-05 15:23 Sam James
2020-09-03 23:57 Sam James
2020-08-19  8:31 Sergei Trofimovich
2020-08-18 23:48 Sam James
2020-08-17 10:01 Agostino Sarubbo
2020-08-17  9:59 Agostino Sarubbo
2020-08-17  9:57 Agostino Sarubbo
2020-08-17  9:55 Agostino Sarubbo
2020-07-13  8:29 Lars Wendler
2020-07-13  8:29 Lars Wendler
2019-05-16 19:30 Aaron Bauman
2019-02-28 14:50 Mikle Kolyada
2019-02-24 19:20 Markus Meier
2019-02-12 21:03 Sergei Trofimovich
2019-02-09 19:29 Sergei Trofimovich
2019-02-09 18:36 Thomas Deutschmann
2019-02-08 20:35 Sergei Trofimovich
2019-02-07 12:31 Tobias Klausmann
2019-02-04 19:41 Sergei Trofimovich
2018-12-09 21:31 Craig Andrews
2018-12-07 19:48 Craig Andrews
2018-12-06 20:38 Craig Andrews
2018-06-15  1:41 Benda XU
2017-07-20 20:57 Sergei Trofimovich
2017-07-07 19:41 Alexis Ballier
2017-02-27 18:55 Michael Weber
2017-02-09 12:56 Guilherme Amadio
2016-10-17  4:52 Jeroen Roovers
2016-10-16 11:16 Tobias Klausmann
2016-10-15 12:48 Agostino Sarubbo
2016-10-15 12:47 Agostino Sarubbo
2016-02-28 12:08 Manuel RĂ¼ger

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1482307692.44485bad3bbf280839f823b81a1051e56db5c93f.soap@gentoo \
    --to=soap@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox