* [gentoo-commits] repo/gentoo:master commit in: dev-libs/xml-security-c/
@ 2016-06-26 12:21 Anthony G. Basile
0 siblings, 0 replies; 3+ messages in thread
From: Anthony G. Basile @ 2016-06-26 12:21 UTC (permalink / raw
To: gentoo-commits
commit: cda42e49857431fd35bd586118f7771277781058
Author: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
AuthorDate: Sun Jun 26 11:58:28 2016 +0000
Commit: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
CommitDate: Sun Jun 26 12:24:35 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cda42e49
dev-libs/xml-security-c: add libressl support
Package-Manager: portage-2.2.28
dev-libs/xml-security-c/xml-security-c-1.7.3.ebuild | 7 ++++---
1 file changed, 4 insertions(+), 3 deletions(-)
diff --git a/dev-libs/xml-security-c/xml-security-c-1.7.3.ebuild b/dev-libs/xml-security-c/xml-security-c-1.7.3.ebuild
index ed8d346..7058fa1 100644
--- a/dev-libs/xml-security-c/xml-security-c-1.7.3.ebuild
+++ b/dev-libs/xml-security-c/xml-security-c-1.7.3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
@@ -14,10 +14,11 @@ LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64 ~x86"
-IUSE="debug examples nss static-libs xalan"
+IUSE="debug examples libressl nss static-libs xalan"
RDEPEND=">=dev-libs/xerces-c-3.1
- dev-libs/openssl
+ !libressl? ( dev-libs/openssl:0= )
+ libressl? ( dev-libs/libressl:0= )
nss? ( dev-libs/nss )
xalan? ( dev-libs/xalan-c )"
DEPEND="${RDEPEND}
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/xml-security-c/
@ 2018-12-06 20:38 Craig Andrews
0 siblings, 0 replies; 3+ messages in thread
From: Craig Andrews @ 2018-12-06 20:38 UTC (permalink / raw
To: gentoo-commits
commit: efc2a5b514dc9b8be29880c2e049e987c9a44976
Author: Craig Andrews <candrews <AT> gentoo <DOT> org>
AuthorDate: Thu Dec 6 20:37:17 2018 +0000
Commit: Craig Andrews <candrews <AT> gentoo <DOT> org>
CommitDate: Thu Dec 6 20:38:00 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=efc2a5b5
dev-libs/xml-security-c: 2.0.2 version bump, EAPI=7
Closes: https://bugs.gentoo.org/show_bug.cgi?id=671140
Closes: https://bugs.gentoo.org/show_bug.cgi?id=671138
Package-Manager: Portage-2.3.52, Repoman-2.3.12
Signed-off-by: Craig Andrews <candrews <AT> gentoo.org>
dev-libs/xml-security-c/Manifest | 1 +
.../xml-security-c/xml-security-c-2.0.2.ebuild | 40 ++++++++++++++++++++++
2 files changed, 41 insertions(+)
diff --git a/dev-libs/xml-security-c/Manifest b/dev-libs/xml-security-c/Manifest
index 1b18c156e11..0d008450a47 100644
--- a/dev-libs/xml-security-c/Manifest
+++ b/dev-libs/xml-security-c/Manifest
@@ -1 +1,2 @@
DIST xml-security-c-1.7.3.tar.gz 909320 BLAKE2B 5fa9f3ae53b93104c191b76f8ae4f9dad69c690d409ae3f13864cf011bbbca740c5378c0718abb496811c9814b5a7f237042af22e697bfa2e5044668ff3fbd2d SHA512 ea46709d6706edf345e19132d9998774e50dc7b5947a7b4a55e3627998f5ac66f976fdff0a5015ef3cee73c03c04f3c4cf993efd397082491c2000c6548b89d2
+DIST xml-security-c-2.0.2.tar.gz 904933 BLAKE2B 8e336dd7539778411755a8d45398daa530a2f602a0d57faa29301d1f0b29ab0a61c3f47ead42b740337ea75a28e03f471ae6735d5cd66d31f56d3d5fe3405b1b SHA512 bebadee2daf27181f5bcc955a909397976e8fd2e67f5e546f5adbede0ca790647cbec9181b0b609da59d525ff3baa9f899af2a3d815bc7a2f3a57bd8b30c011b
diff --git a/dev-libs/xml-security-c/xml-security-c-2.0.2.ebuild b/dev-libs/xml-security-c/xml-security-c-2.0.2.ebuild
new file mode 100644
index 00000000000..ea768c10d66
--- /dev/null
+++ b/dev-libs/xml-security-c/xml-security-c-2.0.2.ebuild
@@ -0,0 +1,40 @@
+# Copyright 1999-2018 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="Apache C++ XML security libraries"
+HOMEPAGE="http://santuario.apache.org/"
+SRC_URI="mirror://apache/santuario/c-library/${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="debug examples libressl nss static-libs xalan"
+
+RDEPEND=">=dev-libs/xerces-c-3.2
+ !libressl? ( dev-libs/openssl:0= )
+ libressl? ( dev-libs/libressl:0= )
+ nss? ( dev-libs/nss )
+ xalan? ( dev-libs/xalan-c )"
+DEPEND="${RDEPEND}"
+BDEPEND="virtual/pkgconfig"
+
+DOCS=( CHANGELOG.txt NOTICE.txt )
+
+src_configure() {
+ econf \
+ --with-openssl \
+ $(use_enable static-libs static) \
+ $(use_enable debug) \
+ $(use_with xalan) \
+ $(use_with nss)
+}
+
+src_install() {
+ default
+ if use examples ; then
+ docinto examples
+ dodoc xsec/samples/*.cpp
+ fi
+}
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/xml-security-c/
@ 2019-04-18 13:29 Michał Górny
0 siblings, 0 replies; 3+ messages in thread
From: Michał Górny @ 2019-04-18 13:29 UTC (permalink / raw
To: gentoo-commits
commit: fea080e093cb588a32f3df469076d53f78bed2d9
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Thu Apr 18 12:58:34 2019 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Thu Apr 18 13:29:43 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fea080e0
dev-libs/xml-security-c: Use https for HOMEPAGE
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-libs/xml-security-c/xml-security-c-2.0.2-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-libs/xml-security-c/xml-security-c-2.0.2-r1.ebuild b/dev-libs/xml-security-c/xml-security-c-2.0.2-r1.ebuild
index afd103f4306..278e534140b 100644
--- a/dev-libs/xml-security-c/xml-security-c-2.0.2-r1.ebuild
+++ b/dev-libs/xml-security-c/xml-security-c-2.0.2-r1.ebuild
@@ -4,7 +4,7 @@
EAPI=7
DESCRIPTION="Apache C++ XML security libraries"
-HOMEPAGE="http://santuario.apache.org/"
+HOMEPAGE="https://santuario.apache.org/"
SRC_URI="mirror://apache/santuario/c-library/${P}.tar.gz"
LICENSE="Apache-2.0"
^ permalink raw reply related [flat|nested] 3+ messages in thread
end of thread, other threads:[~2019-04-18 13:37 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-04-18 13:29 [gentoo-commits] repo/gentoo:master commit in: dev-libs/xml-security-c/ Michał Górny
-- strict thread matches above, loose matches on Subject: below --
2018-12-06 20:38 Craig Andrews
2016-06-26 12:21 Anthony G. Basile
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox