public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: media-libs/adplug/
@ 2017-11-06  7:10 David Seifert
  0 siblings, 0 replies; 13+ messages in thread
From: David Seifert @ 2017-11-06  7:10 UTC (permalink / raw
  To: gentoo-commits

commit:     58bcfd144656b78ed114b1b986b39b05ba24fdce
Author:     David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Mon Nov  6 07:10:40 2017 +0000
Commit:     David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Mon Nov  6 07:10:40 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=58bcfd14

media-libs/adplug: Update to EAPI 6

Package-Manager: Portage-2.3.13, Repoman-2.3.4

 media-libs/adplug/adplug-2.2.1.ebuild | 8 +++-----
 1 file changed, 3 insertions(+), 5 deletions(-)

diff --git a/media-libs/adplug/adplug-2.2.1.ebuild b/media-libs/adplug/adplug-2.2.1.ebuild
index dc62bad7856..ab8068472a1 100644
--- a/media-libs/adplug/adplug-2.2.1.ebuild
+++ b/media-libs/adplug/adplug-2.2.1.ebuild
@@ -1,7 +1,7 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=4
+EAPI=6
 
 DESCRIPTION="A free, cross-platform, hardware independent AdLib sound player library"
 HOMEPAGE="http://adplug.sourceforge.net"
@@ -16,8 +16,6 @@ RDEPEND=">=dev-cpp/libbinio-1.4"
 DEPEND="${RDEPEND}
 	virtual/pkgconfig"
 
-DOCS=( AUTHORS BUGS ChangeLog NEWS README TODO )
-
 src_configure() {
 	econf \
 		$(use_enable static-libs static) \
@@ -26,5 +24,5 @@ src_configure() {
 
 src_install() {
 	default
-	rm -f "${ED}"usr/lib*/lib${PN}.la
+	find "${D}" -name '*.la' -delete || die
 }


^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: media-libs/adplug/
@ 2017-11-15 15:25 David Seifert
  0 siblings, 0 replies; 13+ messages in thread
From: David Seifert @ 2017-11-15 15:25 UTC (permalink / raw
  To: gentoo-commits

commit:     2dd89bebd8a6ffb5dfb74d9dc2cc13c014bc4707
Author:     David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Tue Nov 14 16:30:41 2017 +0000
Commit:     David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Wed Nov 15 15:25:07 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2dd89beb

media-libs/adplug: Add live ebuild

Package-Manager: Portage-2.3.13, Repoman-2.3.4

 media-libs/adplug/adplug-9999.ebuild | 39 ++++++++++++++++++++++++++++++++++++
 1 file changed, 39 insertions(+)

diff --git a/media-libs/adplug/adplug-9999.ebuild b/media-libs/adplug/adplug-9999.ebuild
new file mode 100644
index 00000000000..b44d43a3eae
--- /dev/null
+++ b/media-libs/adplug/adplug-9999.ebuild
@@ -0,0 +1,39 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+DESCRIPTION="A free, cross-platform, hardware independent AdLib sound player library"
+HOMEPAGE="http://adplug.sourceforge.net"
+
+if [[ ${PV} == *9999 ]]; then
+	inherit autotools git-r3
+	EGIT_REPO_URI="https://github.com/adplug/adplug.git"
+else
+	SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
+	KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86"
+fi
+
+LICENSE="LGPL-2.1"
+SLOT="0"
+IUSE="debug static-libs"
+
+RDEPEND=">=dev-cpp/libbinio-1.4"
+DEPEND="${RDEPEND}
+	virtual/pkgconfig"
+
+src_prepare() {
+	default
+	[[ ${PV} == *9999 ]] && eautoreconf
+}
+
+src_configure() {
+	econf \
+		$(use_enable static-libs static) \
+		$(use_enable debug)
+}
+
+src_install() {
+	default
+	find "${D}" -name '*.la' -delete || die
+}


^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: media-libs/adplug/
@ 2017-11-20 17:51 David Seifert
  0 siblings, 0 replies; 13+ messages in thread
From: David Seifert @ 2017-11-20 17:51 UTC (permalink / raw
  To: gentoo-commits

commit:     91c02b6a97e4cc6ac17457640bb32c3d708093b3
Author:     David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Mon Nov 20 17:50:54 2017 +0000
Commit:     David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Mon Nov 20 17:50:54 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=91c02b6a

media-libs/adplug: Build live ebuild out of source

Package-Manager: Portage-2.3.14, Repoman-2.3.6

 media-libs/adplug/adplug-9999.ebuild | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/media-libs/adplug/adplug-9999.ebuild b/media-libs/adplug/adplug-9999.ebuild
index b44d43a3eae..888886e9b78 100644
--- a/media-libs/adplug/adplug-9999.ebuild
+++ b/media-libs/adplug/adplug-9999.ebuild
@@ -3,6 +3,8 @@
 
 EAPI=6
 
+inherit out-of-source
+
 DESCRIPTION="A free, cross-platform, hardware independent AdLib sound player library"
 HOMEPAGE="http://adplug.sourceforge.net"
 
@@ -27,13 +29,13 @@ src_prepare() {
 	[[ ${PV} == *9999 ]] && eautoreconf
 }
 
-src_configure() {
+my_src_configure() {
 	econf \
 		$(use_enable static-libs static) \
 		$(use_enable debug)
 }
 
-src_install() {
-	default
+my_src_install_all() {
+	einstalldocs
 	find "${D}" -name '*.la' -delete || die
 }


^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: media-libs/adplug/
@ 2017-11-20 20:27 David Seifert
  0 siblings, 0 replies; 13+ messages in thread
From: David Seifert @ 2017-11-20 20:27 UTC (permalink / raw
  To: gentoo-commits

commit:     1aadca1a6f6ec810f34d6e84ad551e51d3f8d246
Author:     David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Mon Nov 20 20:26:50 2017 +0000
Commit:     David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Mon Nov 20 20:27:21 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1aadca1a

media-libs/adplug: Sync live ebuild

Package-Manager: Portage-2.3.14, Repoman-2.3.6

 media-libs/adplug/adplug-9999.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/adplug/adplug-9999.ebuild b/media-libs/adplug/adplug-9999.ebuild
index 888886e9b78..12fcc15d3f9 100644
--- a/media-libs/adplug/adplug-9999.ebuild
+++ b/media-libs/adplug/adplug-9999.ebuild
@@ -12,7 +12,7 @@ if [[ ${PV} == *9999 ]]; then
 	inherit autotools git-r3
 	EGIT_REPO_URI="https://github.com/adplug/adplug.git"
 else
-	SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
+	SRC_URI="https://github.com/adplug/${PN}/releases/download/${P}/${P}.tar.bz2"
 	KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86"
 fi
 


^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: media-libs/adplug/
@ 2017-11-20 20:27 David Seifert
  0 siblings, 0 replies; 13+ messages in thread
From: David Seifert @ 2017-11-20 20:27 UTC (permalink / raw
  To: gentoo-commits

commit:     1713780be34c291036483fc06dd67a1ed7c4ac39
Author:     David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Mon Nov 20 20:25:46 2017 +0000
Commit:     David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Mon Nov 20 20:27:15 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1713780b

media-libs/adplug: Version bump to 2.3

Bug: https://bugs.gentoo.org/509660
Bug: https://bugs.gentoo.org/580992
Package-Manager: Portage-2.3.14, Repoman-2.3.6

 media-libs/adplug/Manifest          |  1 +
 media-libs/adplug/adplug-2.3.ebuild | 41 +++++++++++++++++++++++++++++++++++++
 2 files changed, 42 insertions(+)

diff --git a/media-libs/adplug/Manifest b/media-libs/adplug/Manifest
index 4c15b5cb9a8..67a99aec465 100644
--- a/media-libs/adplug/Manifest
+++ b/media-libs/adplug/Manifest
@@ -1 +1,2 @@
 DIST adplug-2.2.1.tar.bz2 810257 SHA256 f95a015268a0dfe9ff5782f3ea7b2a69e09b8d36ccd19ebf4d979d767b6e53ef SHA512 e9b434ad58114a6677907e8f7007a325fa908f9228fbe283d72d1e2394fa27850b929309e038c84ae94f64f8db003b871775502ee8b231219caa51f6ba5d787f WHIRLPOOL 3f337b914f1779f9702014108d4cb4dc816830d1cadc0623751d979bd81213286d431225aa7d28a7aeb35fb32bc614cf581915b6e27357f3f6dc51f30ae58d19
+DIST adplug-2.3.tar.bz2 1462858 SHA256 f64a37f6243836bd0c9c1b7c3a563e47f4b15676d30c074e88b75b2415bfdf6a SHA512 591192032772fbedfec67924693fce3fc490e5bccb1898eea8d38b6d10f066373ebdc4868751041dd21461b5112b349f0be7ff047d7ccaa896fe4ece88ebab74 WHIRLPOOL 073898dab4bdf17a82cd0f4fd31e50381369cc7287da5aafc04932619aaaba726c0bae55aab5f0607b100a7b64b7ebfabfc35b990d261b55600da704fc94761e

diff --git a/media-libs/adplug/adplug-2.3.ebuild b/media-libs/adplug/adplug-2.3.ebuild
new file mode 100644
index 00000000000..12fcc15d3f9
--- /dev/null
+++ b/media-libs/adplug/adplug-2.3.ebuild
@@ -0,0 +1,41 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit out-of-source
+
+DESCRIPTION="A free, cross-platform, hardware independent AdLib sound player library"
+HOMEPAGE="http://adplug.sourceforge.net"
+
+if [[ ${PV} == *9999 ]]; then
+	inherit autotools git-r3
+	EGIT_REPO_URI="https://github.com/adplug/adplug.git"
+else
+	SRC_URI="https://github.com/adplug/${PN}/releases/download/${P}/${P}.tar.bz2"
+	KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86"
+fi
+
+LICENSE="LGPL-2.1"
+SLOT="0"
+IUSE="debug static-libs"
+
+RDEPEND=">=dev-cpp/libbinio-1.4"
+DEPEND="${RDEPEND}
+	virtual/pkgconfig"
+
+src_prepare() {
+	default
+	[[ ${PV} == *9999 ]] && eautoreconf
+}
+
+my_src_configure() {
+	econf \
+		$(use_enable static-libs static) \
+		$(use_enable debug)
+}
+
+my_src_install_all() {
+	einstalldocs
+	find "${D}" -name '*.la' -delete || die
+}


^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: media-libs/adplug/
@ 2018-04-22  9:27 David Seifert
  0 siblings, 0 replies; 13+ messages in thread
From: David Seifert @ 2018-04-22  9:27 UTC (permalink / raw
  To: gentoo-commits

commit:     327e2b1f72feb4609bd92b7cad56b87497677313
Author:     David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Sun Apr 22 09:26:18 2018 +0000
Commit:     David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Sun Apr 22 09:26:49 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=327e2b1f

media-libs/adplug: Version bump to 2.3.1

Closes: https://bugs.gentoo.org/645296
Package-Manager: Portage-2.3.31, Repoman-2.3.9

 media-libs/adplug/Manifest            |  1 +
 media-libs/adplug/adplug-2.3.1.ebuild | 41 +++++++++++++++++++++++++++++++++++
 2 files changed, 42 insertions(+)

diff --git a/media-libs/adplug/Manifest b/media-libs/adplug/Manifest
index 5573e8db859..ab7d3d4ff75 100644
--- a/media-libs/adplug/Manifest
+++ b/media-libs/adplug/Manifest
@@ -1,2 +1,3 @@
 DIST adplug-2.2.1.tar.bz2 810257 BLAKE2B a51c85a10af6a1cc308a7ccfa657daab1e627800a0617f6cf8b874726a115bdef188dc3d82fb6af9fd2aadc2b28b12f0707ea12cb52f6656d2b8654849bad806 SHA512 e9b434ad58114a6677907e8f7007a325fa908f9228fbe283d72d1e2394fa27850b929309e038c84ae94f64f8db003b871775502ee8b231219caa51f6ba5d787f
+DIST adplug-2.3.1.tar.bz2 1478424 BLAKE2B 8c2b65d11d3b12b4a3337bc9c6ada2920b07279ac0199d4bdf1fa2ceec2f51748a1bb9357456b3e7aba7c906253691066b274e7a7c7578c777d1e2e77f5131f0 SHA512 324ce084ecf5b0d180b335ebcacd5ab80806a5c9fbdeed6ef7cbd6c2f2cb476d9d9f38f596b7d6100e3d6cab42294300559200297b4b3f34190c1f516454c8c3
 DIST adplug-2.3.tar.bz2 1462858 BLAKE2B e350c65827d1bfbcbc495bd2986e312a7f572d2f29708ef17566c912bad8ddd2a52d49e065f147fec6ee657def0f2ddedfe65ca6d3b7b0d37d371cf4150ada87 SHA512 591192032772fbedfec67924693fce3fc490e5bccb1898eea8d38b6d10f066373ebdc4868751041dd21461b5112b349f0be7ff047d7ccaa896fe4ece88ebab74

diff --git a/media-libs/adplug/adplug-2.3.1.ebuild b/media-libs/adplug/adplug-2.3.1.ebuild
new file mode 100644
index 00000000000..bb4e78f1159
--- /dev/null
+++ b/media-libs/adplug/adplug-2.3.1.ebuild
@@ -0,0 +1,41 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit out-of-source
+
+DESCRIPTION="A free, cross-platform, hardware independent AdLib sound player library"
+HOMEPAGE="http://adplug.sourceforge.net"
+
+if [[ ${PV} == *9999 ]]; then
+	inherit autotools git-r3
+	EGIT_REPO_URI="https://github.com/adplug/adplug.git"
+else
+	SRC_URI="https://github.com/adplug/${PN}/releases/download/${P}/${P}.tar.bz2"
+	KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86"
+fi
+
+LICENSE="LGPL-2.1"
+SLOT="0/${PV}"
+IUSE="debug static-libs"
+
+RDEPEND=">=dev-cpp/libbinio-1.4"
+DEPEND="${RDEPEND}
+	virtual/pkgconfig"
+
+src_prepare() {
+	default
+	[[ ${PV} == *9999 ]] && eautoreconf
+}
+
+my_src_configure() {
+	econf \
+		$(use_enable static-libs static) \
+		$(use_enable debug)
+}
+
+my_src_install_all() {
+	einstalldocs
+	find "${D}" -name '*.la' -delete || die
+}


^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: media-libs/adplug/
@ 2018-04-22 10:20 David Seifert
  0 siblings, 0 replies; 13+ messages in thread
From: David Seifert @ 2018-04-22 10:20 UTC (permalink / raw
  To: gentoo-commits

commit:     41c50426f227276579a73c79c7a733f651b39669
Author:     David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Sun Apr 22 09:29:22 2018 +0000
Commit:     David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Sun Apr 22 10:20:27 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=41c50426

media-libs/adplug: Remove old

Package-Manager: Portage-2.3.31, Repoman-2.3.9

 media-libs/adplug/Manifest          |  1 -
 media-libs/adplug/adplug-2.3.ebuild | 41 -------------------------------------
 2 files changed, 42 deletions(-)

diff --git a/media-libs/adplug/Manifest b/media-libs/adplug/Manifest
index ab7d3d4ff75..70a0de78ad4 100644
--- a/media-libs/adplug/Manifest
+++ b/media-libs/adplug/Manifest
@@ -1,3 +1,2 @@
 DIST adplug-2.2.1.tar.bz2 810257 BLAKE2B a51c85a10af6a1cc308a7ccfa657daab1e627800a0617f6cf8b874726a115bdef188dc3d82fb6af9fd2aadc2b28b12f0707ea12cb52f6656d2b8654849bad806 SHA512 e9b434ad58114a6677907e8f7007a325fa908f9228fbe283d72d1e2394fa27850b929309e038c84ae94f64f8db003b871775502ee8b231219caa51f6ba5d787f
 DIST adplug-2.3.1.tar.bz2 1478424 BLAKE2B 8c2b65d11d3b12b4a3337bc9c6ada2920b07279ac0199d4bdf1fa2ceec2f51748a1bb9357456b3e7aba7c906253691066b274e7a7c7578c777d1e2e77f5131f0 SHA512 324ce084ecf5b0d180b335ebcacd5ab80806a5c9fbdeed6ef7cbd6c2f2cb476d9d9f38f596b7d6100e3d6cab42294300559200297b4b3f34190c1f516454c8c3
-DIST adplug-2.3.tar.bz2 1462858 BLAKE2B e350c65827d1bfbcbc495bd2986e312a7f572d2f29708ef17566c912bad8ddd2a52d49e065f147fec6ee657def0f2ddedfe65ca6d3b7b0d37d371cf4150ada87 SHA512 591192032772fbedfec67924693fce3fc490e5bccb1898eea8d38b6d10f066373ebdc4868751041dd21461b5112b349f0be7ff047d7ccaa896fe4ece88ebab74

diff --git a/media-libs/adplug/adplug-2.3.ebuild b/media-libs/adplug/adplug-2.3.ebuild
deleted file mode 100644
index 12fcc15d3f9..00000000000
--- a/media-libs/adplug/adplug-2.3.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit out-of-source
-
-DESCRIPTION="A free, cross-platform, hardware independent AdLib sound player library"
-HOMEPAGE="http://adplug.sourceforge.net"
-
-if [[ ${PV} == *9999 ]]; then
-	inherit autotools git-r3
-	EGIT_REPO_URI="https://github.com/adplug/adplug.git"
-else
-	SRC_URI="https://github.com/adplug/${PN}/releases/download/${P}/${P}.tar.bz2"
-	KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86"
-fi
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-IUSE="debug static-libs"
-
-RDEPEND=">=dev-cpp/libbinio-1.4"
-DEPEND="${RDEPEND}
-	virtual/pkgconfig"
-
-src_prepare() {
-	default
-	[[ ${PV} == *9999 ]] && eautoreconf
-}
-
-my_src_configure() {
-	econf \
-		$(use_enable static-libs static) \
-		$(use_enable debug)
-}
-
-my_src_install_all() {
-	einstalldocs
-	find "${D}" -name '*.la' -delete || die
-}


^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: media-libs/adplug/
@ 2018-07-09 16:20 Mikle Kolyada
  0 siblings, 0 replies; 13+ messages in thread
From: Mikle Kolyada @ 2018-07-09 16:20 UTC (permalink / raw
  To: gentoo-commits

commit:     3501b675a46196a61ab122e48275e33f5b9c8e22
Author:     Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Mon Jul  9 16:20:47 2018 +0000
Commit:     Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Mon Jul  9 16:20:54 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3501b675

media-libs/adplug: amd64 stable wrt bug #659668

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 media-libs/adplug/adplug-2.3.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/adplug/adplug-2.3.1.ebuild b/media-libs/adplug/adplug-2.3.1.ebuild
index df3d368a177..b1a8021b952 100644
--- a/media-libs/adplug/adplug-2.3.1.ebuild
+++ b/media-libs/adplug/adplug-2.3.1.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == *9999 ]]; then
 	EGIT_REPO_URI="https://github.com/adplug/adplug.git"
 else
 	SRC_URI="https://github.com/adplug/${PN}/releases/download/${P}/${P}.tar.bz2"
-	KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ppc ~ppc64 x86"
+	KEYWORDS="~alpha amd64 ~arm ~hppa ~ppc ~ppc64 x86"
 fi
 
 LICENSE="LGPL-2.1"


^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: media-libs/adplug/
@ 2018-07-21  8:03 Tobias Klausmann
  0 siblings, 0 replies; 13+ messages in thread
From: Tobias Klausmann @ 2018-07-21  8:03 UTC (permalink / raw
  To: gentoo-commits

commit:     629cf03679e403fee3db860db4c8090c2c9402f5
Author:     Tobias Klausmann <klausman <AT> gentoo <DOT> org>
AuthorDate: Sat Jul 21 08:02:35 2018 +0000
Commit:     Tobias Klausmann <klausman <AT> gentoo <DOT> org>
CommitDate: Sat Jul 21 08:03:05 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=629cf036

media-libs/adplug-2.3.1-r0: alpha stable

Gentoo-Bug: http://bugs.gentoo.org/659668

 media-libs/adplug/adplug-2.3.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/adplug/adplug-2.3.1.ebuild b/media-libs/adplug/adplug-2.3.1.ebuild
index b1a8021b952..6cd391f3d98 100644
--- a/media-libs/adplug/adplug-2.3.1.ebuild
+++ b/media-libs/adplug/adplug-2.3.1.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == *9999 ]]; then
 	EGIT_REPO_URI="https://github.com/adplug/adplug.git"
 else
 	SRC_URI="https://github.com/adplug/${PN}/releases/download/${P}/${P}.tar.bz2"
-	KEYWORDS="~alpha amd64 ~arm ~hppa ~ppc ~ppc64 x86"
+	KEYWORDS="alpha amd64 ~arm ~hppa ~ppc ~ppc64 x86"
 fi
 
 LICENSE="LGPL-2.1"


^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: media-libs/adplug/
@ 2018-07-23 21:54 Mikle Kolyada
  0 siblings, 0 replies; 13+ messages in thread
From: Mikle Kolyada @ 2018-07-23 21:54 UTC (permalink / raw
  To: gentoo-commits

commit:     e399cb735537229c83f03262a3349548bc540e93
Author:     Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Mon Jul 23 21:54:02 2018 +0000
Commit:     Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Mon Jul 23 21:54:02 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e399cb73

media-libs/adplug: arm stable wrt bug #659668

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 media-libs/adplug/adplug-2.3.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/adplug/adplug-2.3.1.ebuild b/media-libs/adplug/adplug-2.3.1.ebuild
index 6cd391f3d98..9c558b46964 100644
--- a/media-libs/adplug/adplug-2.3.1.ebuild
+++ b/media-libs/adplug/adplug-2.3.1.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == *9999 ]]; then
 	EGIT_REPO_URI="https://github.com/adplug/adplug.git"
 else
 	SRC_URI="https://github.com/adplug/${PN}/releases/download/${P}/${P}.tar.bz2"
-	KEYWORDS="alpha amd64 ~arm ~hppa ~ppc ~ppc64 x86"
+	KEYWORDS="alpha amd64 arm ~hppa ~ppc ~ppc64 x86"
 fi
 
 LICENSE="LGPL-2.1"


^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: media-libs/adplug/
@ 2018-07-26  6:20 David Seifert
  0 siblings, 0 replies; 13+ messages in thread
From: David Seifert @ 2018-07-26  6:20 UTC (permalink / raw
  To: gentoo-commits

commit:     57736f8f9e67fbdabd1e6bfe7d8392b0cfd8ff37
Author:     David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Thu Jul 26 05:48:34 2018 +0000
Commit:     David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Thu Jul 26 06:20:31 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=57736f8f

media-libs/adplug: Remove old

Closes: https://bugs.gentoo.org/509660
Closes: https://bugs.gentoo.org/580992
Package-Manager: Portage-2.3.43, Repoman-2.3.10

 media-libs/adplug/Manifest            |  1 -
 media-libs/adplug/adplug-2.2.1.ebuild | 28 ----------------------------
 2 files changed, 29 deletions(-)

diff --git a/media-libs/adplug/Manifest b/media-libs/adplug/Manifest
index 70a0de78ad4..e8b959360bd 100644
--- a/media-libs/adplug/Manifest
+++ b/media-libs/adplug/Manifest
@@ -1,2 +1 @@
-DIST adplug-2.2.1.tar.bz2 810257 BLAKE2B a51c85a10af6a1cc308a7ccfa657daab1e627800a0617f6cf8b874726a115bdef188dc3d82fb6af9fd2aadc2b28b12f0707ea12cb52f6656d2b8654849bad806 SHA512 e9b434ad58114a6677907e8f7007a325fa908f9228fbe283d72d1e2394fa27850b929309e038c84ae94f64f8db003b871775502ee8b231219caa51f6ba5d787f
 DIST adplug-2.3.1.tar.bz2 1478424 BLAKE2B 8c2b65d11d3b12b4a3337bc9c6ada2920b07279ac0199d4bdf1fa2ceec2f51748a1bb9357456b3e7aba7c906253691066b274e7a7c7578c777d1e2e77f5131f0 SHA512 324ce084ecf5b0d180b335ebcacd5ab80806a5c9fbdeed6ef7cbd6c2f2cb476d9d9f38f596b7d6100e3d6cab42294300559200297b4b3f34190c1f516454c8c3

diff --git a/media-libs/adplug/adplug-2.2.1.ebuild b/media-libs/adplug/adplug-2.2.1.ebuild
deleted file mode 100644
index ab8068472a1..00000000000
--- a/media-libs/adplug/adplug-2.2.1.ebuild
+++ /dev/null
@@ -1,28 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-DESCRIPTION="A free, cross-platform, hardware independent AdLib sound player library"
-HOMEPAGE="http://adplug.sourceforge.net"
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ppc ppc64 x86"
-IUSE="debug static-libs"
-
-RDEPEND=">=dev-cpp/libbinio-1.4"
-DEPEND="${RDEPEND}
-	virtual/pkgconfig"
-
-src_configure() {
-	econf \
-		$(use_enable static-libs static) \
-		$(use_enable debug)
-}
-
-src_install() {
-	default
-	find "${D}" -name '*.la' -delete || die
-}


^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: media-libs/adplug/
@ 2019-11-15  1:30 Andreas Sturmlechner
  0 siblings, 0 replies; 13+ messages in thread
From: Andreas Sturmlechner @ 2019-11-15  1:30 UTC (permalink / raw
  To: gentoo-commits

commit:     a43e1ae75cfcd8e8ba7ab727254152305825f405
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Fri Nov 15 01:16:05 2019 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Fri Nov 15 01:29:50 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a43e1ae7

media-libs/adplug: Project moved to GitHub

Package-Manager: Portage-2.3.79, Repoman-2.3.18
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 media-libs/adplug/adplug-2.3.1.ebuild | 4 ++--
 media-libs/adplug/adplug-9999.ebuild  | 4 ++--
 media-libs/adplug/metadata.xml        | 2 +-
 3 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/media-libs/adplug/adplug-2.3.1.ebuild b/media-libs/adplug/adplug-2.3.1.ebuild
index 9c558b46964..877f8033846 100644
--- a/media-libs/adplug/adplug-2.3.1.ebuild
+++ b/media-libs/adplug/adplug-2.3.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -6,7 +6,7 @@ EAPI=6
 inherit out-of-source
 
 DESCRIPTION="A free, cross-platform, hardware independent AdLib sound player library"
-HOMEPAGE="http://adplug.sourceforge.net"
+HOMEPAGE="http://adplug.github.io/"
 
 if [[ ${PV} == *9999 ]]; then
 	inherit autotools git-r3

diff --git a/media-libs/adplug/adplug-9999.ebuild b/media-libs/adplug/adplug-9999.ebuild
index 12fcc15d3f9..3be26a1cfba 100644
--- a/media-libs/adplug/adplug-9999.ebuild
+++ b/media-libs/adplug/adplug-9999.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -6,7 +6,7 @@ EAPI=6
 inherit out-of-source
 
 DESCRIPTION="A free, cross-platform, hardware independent AdLib sound player library"
-HOMEPAGE="http://adplug.sourceforge.net"
+HOMEPAGE="http://adplug.github.io/"
 
 if [[ ${PV} == *9999 ]]; then
 	inherit autotools git-r3

diff --git a/media-libs/adplug/metadata.xml b/media-libs/adplug/metadata.xml
index 3be2784242d..72259cedf74 100644
--- a/media-libs/adplug/metadata.xml
+++ b/media-libs/adplug/metadata.xml
@@ -6,6 +6,6 @@
 		<name>Gentoo Sound project</name>
 	</maintainer>
 	<upstream>
-		<remote-id type="sourceforge">adplug</remote-id>
+		<remote-id type="github">adplug/adplug</remote-id>
 	</upstream>
 </pkgmetadata>


^ permalink raw reply related	[flat|nested] 13+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: media-libs/adplug/
@ 2020-02-28  8:11 Mikle Kolyada
  0 siblings, 0 replies; 13+ messages in thread
From: Mikle Kolyada @ 2020-02-28  8:11 UTC (permalink / raw
  To: gentoo-commits

commit:     ae5535d902b84a4d7a56a889d9b26d185b82d740
Author:     Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Fri Feb 28 08:09:15 2020 +0000
Commit:     Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Fri Feb 28 08:11:06 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ae5535d9

media-libs/adplug: cleanup

Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>

 media-libs/adplug/Manifest            |  1 -
 media-libs/adplug/adplug-2.3.1.ebuild | 41 -----------------------------------
 media-libs/adplug/adplug-9999.ebuild  | 41 -----------------------------------
 media-libs/adplug/metadata.xml        | 11 ----------
 4 files changed, 94 deletions(-)

diff --git a/media-libs/adplug/Manifest b/media-libs/adplug/Manifest
deleted file mode 100644
index e8b959360bd..00000000000
--- a/media-libs/adplug/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST adplug-2.3.1.tar.bz2 1478424 BLAKE2B 8c2b65d11d3b12b4a3337bc9c6ada2920b07279ac0199d4bdf1fa2ceec2f51748a1bb9357456b3e7aba7c906253691066b274e7a7c7578c777d1e2e77f5131f0 SHA512 324ce084ecf5b0d180b335ebcacd5ab80806a5c9fbdeed6ef7cbd6c2f2cb476d9d9f38f596b7d6100e3d6cab42294300559200297b4b3f34190c1f516454c8c3

diff --git a/media-libs/adplug/adplug-2.3.1.ebuild b/media-libs/adplug/adplug-2.3.1.ebuild
deleted file mode 100644
index f6a919007c4..00000000000
--- a/media-libs/adplug/adplug-2.3.1.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit out-of-source
-
-DESCRIPTION="A free, cross-platform, hardware independent AdLib sound player library"
-HOMEPAGE="http://adplug.github.io/"
-
-if [[ ${PV} == *9999 ]]; then
-	inherit autotools git-r3
-	EGIT_REPO_URI="https://github.com/adplug/adplug.git"
-else
-	SRC_URI="https://github.com/adplug/${PN}/releases/download/${P}/${P}.tar.bz2"
-	KEYWORDS="~alpha amd64 arm ~hppa ~ppc ~ppc64 x86"
-fi
-
-LICENSE="LGPL-2.1"
-SLOT="0/${PV}"
-IUSE="debug static-libs"
-
-RDEPEND=">=dev-cpp/libbinio-1.4"
-DEPEND="${RDEPEND}
-	virtual/pkgconfig"
-
-src_prepare() {
-	default
-	[[ ${PV} == *9999 ]] && eautoreconf
-}
-
-my_src_configure() {
-	econf \
-		$(use_enable static-libs static) \
-		$(use_enable debug)
-}
-
-my_src_install_all() {
-	einstalldocs
-	find "${D}" -name '*.la' -delete || die
-}

diff --git a/media-libs/adplug/adplug-9999.ebuild b/media-libs/adplug/adplug-9999.ebuild
deleted file mode 100644
index 3be26a1cfba..00000000000
--- a/media-libs/adplug/adplug-9999.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit out-of-source
-
-DESCRIPTION="A free, cross-platform, hardware independent AdLib sound player library"
-HOMEPAGE="http://adplug.github.io/"
-
-if [[ ${PV} == *9999 ]]; then
-	inherit autotools git-r3
-	EGIT_REPO_URI="https://github.com/adplug/adplug.git"
-else
-	SRC_URI="https://github.com/adplug/${PN}/releases/download/${P}/${P}.tar.bz2"
-	KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86"
-fi
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-IUSE="debug static-libs"
-
-RDEPEND=">=dev-cpp/libbinio-1.4"
-DEPEND="${RDEPEND}
-	virtual/pkgconfig"
-
-src_prepare() {
-	default
-	[[ ${PV} == *9999 ]] && eautoreconf
-}
-
-my_src_configure() {
-	econf \
-		$(use_enable static-libs static) \
-		$(use_enable debug)
-}
-
-my_src_install_all() {
-	einstalldocs
-	find "${D}" -name '*.la' -delete || die
-}

diff --git a/media-libs/adplug/metadata.xml b/media-libs/adplug/metadata.xml
deleted file mode 100644
index 72259cedf74..00000000000
--- a/media-libs/adplug/metadata.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-	<maintainer type="project">
-		<email>sound@gentoo.org</email>
-		<name>Gentoo Sound project</name>
-	</maintainer>
-	<upstream>
-		<remote-id type="github">adplug/adplug</remote-id>
-	</upstream>
-</pkgmetadata>


^ permalink raw reply related	[flat|nested] 13+ messages in thread

end of thread, other threads:[~2020-02-28  8:11 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-07-09 16:20 [gentoo-commits] repo/gentoo:master commit in: media-libs/adplug/ Mikle Kolyada
  -- strict thread matches above, loose matches on Subject: below --
2020-02-28  8:11 Mikle Kolyada
2019-11-15  1:30 Andreas Sturmlechner
2018-07-26  6:20 David Seifert
2018-07-23 21:54 Mikle Kolyada
2018-07-21  8:03 Tobias Klausmann
2018-04-22 10:20 David Seifert
2018-04-22  9:27 David Seifert
2017-11-20 20:27 David Seifert
2017-11-20 20:27 David Seifert
2017-11-20 17:51 David Seifert
2017-11-15 15:25 David Seifert
2017-11-06  7:10 David Seifert

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox