* [gentoo-commits] repo/gentoo:master commit in: dev-libs/log4shib/
@ 2018-06-04 1:12 Aaron Bauman
0 siblings, 0 replies; 4+ messages in thread
From: Aaron Bauman @ 2018-06-04 1:12 UTC (permalink / raw
To: gentoo-commits
commit: cbd9531af2b47e3ec9a116748f2971b4a7966ade
Author: Aaron Bauman <bman <AT> gentoo <DOT> org>
AuthorDate: Sun Jun 3 19:05:38 2018 +0000
Commit: Aaron Bauman <bman <AT> gentoo <DOT> org>
CommitDate: Mon Jun 4 01:12:23 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cbd9531a
dev-libs/log4shib: drop old EAPI
Package-Manager: Portage-2.3.40, Repoman-2.3.9
dev-libs/log4shib/Manifest | 1 -
dev-libs/log4shib/log4shib-1.0.1.ebuild | 37 ---------------------------------
2 files changed, 38 deletions(-)
diff --git a/dev-libs/log4shib/Manifest b/dev-libs/log4shib/Manifest
index 8ece2320e35..984ad1ebdd6 100644
--- a/dev-libs/log4shib/Manifest
+++ b/dev-libs/log4shib/Manifest
@@ -1,2 +1 @@
-DIST log4shib-1.0.1.tar.gz 498381 BLAKE2B b5f849f7f6bd7cd224ec135a3f4308ac4d56f8f51d45d4561ac76bc7ff903afbbc70c21790ee26f9449153384116dcb8d40bbfb9f07194ed22e9d80488cbe882 SHA512 ed64dca5f20c8135944abdfe7e7b66702cd1ae712ba362508759194c8f53c2a9a878142619a4befd3c4180de366fd2c9a6af7af1873b170d45e91b8bf527b836
DIST log4shib-1.0.4.tar.gz 487529 BLAKE2B 8ba4dd17e2f35c6566ba4736b5450c41fab1c5506ab6e994136b97ccab4d399281afb32fcf13935c25acd7ba063d2ed6595bab564614ffbb0d944074b68a5bba SHA512 af31bb436393e1a6a2674c0f4804148dea4f4081bb07b78f158f4109157bef4ed40647a3e4da7ec5eef0ed38b6286aee6d8b8a3320572c2b55df2998850d5245
diff --git a/dev-libs/log4shib/log4shib-1.0.1.ebuild b/dev-libs/log4shib/log4shib-1.0.1.ebuild
deleted file mode 100644
index c1554df5aff..00000000000
--- a/dev-libs/log4shib/log4shib-1.0.1.ebuild
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=0
-
-inherit eutils autotools
-
-DESCRIPTION="Internet2 version for OpenSAML of log4cpp logging framework"
-HOMEPAGE="https://wiki.shibboleth.net/confluence/display/OpenSAML/log4shib"
-SRC_URI="http://shibboleth.internet2.edu/downloads/${PN}/${PV}/${P}.tar.gz"
-
-KEYWORDS="~amd64 ~x86"
-LICENSE="LGPL-2.1"
-SLOT="0"
-IUSE="doc"
-
-DEPEND="doc? ( app-doc/doxygen )"
-RDEPEND=""
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
- # fix sandbox violation by doc installation
- epatch "${FILESDIR}/${PN}-doc.patch"
- AT_M4DIR="m4" eautoreconf
-}
-
-src_compile() {
- econf --without-idsa \
- $(use_enable doc doxygen)
- emake || die "emake failed"
-}
-
-src_install () {
- emake DESTDIR="${D}" install || die "emake install failed"
- dodoc AUTHORS ChangeLog NEWS README THANKS || die "dodoc failed"
-}
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/log4shib/
@ 2019-05-29 4:14 Aaron Bauman
0 siblings, 0 replies; 4+ messages in thread
From: Aaron Bauman @ 2019-05-29 4:14 UTC (permalink / raw
To: gentoo-commits
commit: c67f00d21d6c264d330fdc79034858fb31ce0ab6
Author: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com>
AuthorDate: Sun May 26 09:04:36 2019 +0000
Commit: Aaron Bauman <bman <AT> gentoo <DOT> org>
CommitDate: Wed May 29 04:09:43 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c67f00d2
dev-libs/log4shib: EAPI=7 bump
Closes: https://bugs.gentoo.org/686778
Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/12113
Signed-off-by: Aaron Bauman <bman <AT> gentoo.org>
dev-libs/log4shib/log4shib-1.0.4-r1.ebuild | 22 ++++++++++++++++++++++
1 file changed, 22 insertions(+)
diff --git a/dev-libs/log4shib/log4shib-1.0.4-r1.ebuild b/dev-libs/log4shib/log4shib-1.0.4-r1.ebuild
new file mode 100644
index 00000000000..63ac7a704a4
--- /dev/null
+++ b/dev-libs/log4shib/log4shib-1.0.4-r1.ebuild
@@ -0,0 +1,22 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="Internet2 version for OpenSAML of log4cpp logging framework"
+HOMEPAGE="https://wiki.shibboleth.net/confluence/display/OpenSAML/log4shib"
+SRC_URI="https://shibboleth.net/downloads/${PN}/${PV}/${P}.tar.gz"
+
+KEYWORDS="~amd64 ~x86"
+LICENSE="LGPL-2.1"
+SLOT="0"
+IUSE="debug doc static-libs"
+
+BDEPEND="doc? ( app-doc/doxygen )"
+
+src_configure() {
+ econf --without-idsa \
+ $(use_enable debug) \
+ $(use_enable doc doxygen) \
+ $(use_enable static-libs static)
+}
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/log4shib/
@ 2019-05-29 4:14 Aaron Bauman
0 siblings, 0 replies; 4+ messages in thread
From: Aaron Bauman @ 2019-05-29 4:14 UTC (permalink / raw
To: gentoo-commits
commit: 780cec55b313471886ceeffd33151bf32f2f3b5a
Author: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com>
AuthorDate: Sun May 26 09:01:11 2019 +0000
Commit: Aaron Bauman <bman <AT> gentoo <DOT> org>
CommitDate: Wed May 29 04:09:42 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=780cec55
dev-libs/log4shib: fix SRC_URI
Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail.com>
Signed-off-by: Aaron Bauman <bman <AT> gentoo.org>
dev-libs/log4shib/log4shib-1.0.4.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/dev-libs/log4shib/log4shib-1.0.4.ebuild b/dev-libs/log4shib/log4shib-1.0.4.ebuild
index 6e744c15a90..bc6707fe0f4 100644
--- a/dev-libs/log4shib/log4shib-1.0.4.ebuild
+++ b/dev-libs/log4shib/log4shib-1.0.4.ebuild
@@ -1,11 +1,11 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="4"
DESCRIPTION="Internet2 version for OpenSAML of log4cpp logging framework"
HOMEPAGE="https://wiki.shibboleth.net/confluence/display/OpenSAML/log4shib"
-SRC_URI="http://shibboleth.internet2.edu/downloads/${PN}/${PV}/${P}.tar.gz"
+SRC_URI="https://shibboleth.net/downloads/${PN}/${PV}/${P}.tar.gz"
KEYWORDS="~amd64 ~x86"
LICENSE="LGPL-2.1"
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/log4shib/
@ 2019-06-25 17:57 Andreas Sturmlechner
0 siblings, 0 replies; 4+ messages in thread
From: Andreas Sturmlechner @ 2019-06-25 17:57 UTC (permalink / raw
To: gentoo-commits
commit: 9643738abb3259623d1520017317c6b98833ac01
Author: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com>
AuthorDate: Tue Jun 25 17:35:07 2019 +0000
Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Tue Jun 25 17:57:39 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9643738a
dev-libs/log4shib: remove old
Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail.com>
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
dev-libs/log4shib/log4shib-1.0.4.ebuild | 28 ----------------------------
1 file changed, 28 deletions(-)
diff --git a/dev-libs/log4shib/log4shib-1.0.4.ebuild b/dev-libs/log4shib/log4shib-1.0.4.ebuild
deleted file mode 100644
index bc6707fe0f4..00000000000
--- a/dev-libs/log4shib/log4shib-1.0.4.ebuild
+++ /dev/null
@@ -1,28 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="4"
-
-DESCRIPTION="Internet2 version for OpenSAML of log4cpp logging framework"
-HOMEPAGE="https://wiki.shibboleth.net/confluence/display/OpenSAML/log4shib"
-SRC_URI="https://shibboleth.net/downloads/${PN}/${PV}/${P}.tar.gz"
-
-KEYWORDS="~amd64 ~x86"
-LICENSE="LGPL-2.1"
-SLOT="0"
-IUSE="debug doc static-libs"
-
-DEPEND="doc? ( app-doc/doxygen )"
-RDEPEND=""
-
-src_configure() {
- econf --without-idsa \
- $(use_enable debug) \
- $(use_enable doc doxygen) \
- $(use_enable static-libs static)
-}
-
-src_install () {
- emake DESTDIR="${D}" install
- dodoc AUTHORS ChangeLog NEWS README THANKS
-}
^ permalink raw reply related [flat|nested] 4+ messages in thread
end of thread, other threads:[~2019-06-25 17:57 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-06-04 1:12 [gentoo-commits] repo/gentoo:master commit in: dev-libs/log4shib/ Aaron Bauman
-- strict thread matches above, loose matches on Subject: below --
2019-05-29 4:14 Aaron Bauman
2019-05-29 4:14 Aaron Bauman
2019-06-25 17:57 Andreas Sturmlechner
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox