* [gentoo-commits] repo/gentoo:master commit in: x11-plugins/gkrellm-volume/
@ 2016-08-25 12:54 Pacho Ramos
0 siblings, 0 replies; 8+ messages in thread
From: Pacho Ramos @ 2016-08-25 12:54 UTC (permalink / raw
To: gentoo-commits
commit: fc47eff31258f7643d9436ee19feebe379275b6b
Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Thu Aug 25 12:48:57 2016 +0000
Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Thu Aug 25 12:53:57 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fc47eff3
x11-plugins/gkrellm-volume: Drop old
Package-Manager: portage-2.3.0
.../gkrellm-volume/gkrellm-volume-2.1.13.ebuild | 26 ----------------------
1 file changed, 26 deletions(-)
diff --git a/x11-plugins/gkrellm-volume/gkrellm-volume-2.1.13.ebuild b/x11-plugins/gkrellm-volume/gkrellm-volume-2.1.13.ebuild
deleted file mode 100644
index 615e6f1..00000000
--- a/x11-plugins/gkrellm-volume/gkrellm-volume-2.1.13.ebuild
+++ /dev/null
@@ -1,26 +0,0 @@
-# Copyright 1999-2010 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-inherit gkrellm-plugin
-
-IUSE="alsa"
-DESCRIPTION="A mixer control plugin for gkrellm"
-HOMEPAGE="http://gkrellm.luon.net/volume.php"
-SRC_URI="http://gkrellm.luon.net/files/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="2"
-KEYWORDS="alpha amd64 ppc sparc x86"
-
-DEPEND="alsa? ( media-libs/alsa-lib )"
-
-S=${WORKDIR}/${PN}
-
-PLUGIN_SO=volume.so
-
-src_compile() {
- local myconf=""
- use alsa && myconf="${myconf} enable_alsa=1"
- make ${myconf} || die "make failed"
-}
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-plugins/gkrellm-volume/
@ 2018-01-04 9:17 David Seifert
0 siblings, 0 replies; 8+ messages in thread
From: David Seifert @ 2018-01-04 9:17 UTC (permalink / raw
To: gentoo-commits
commit: 635494d3788266cc16df11d7512a27bedac1db22
Author: David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Wed Jan 3 22:34:33 2018 +0000
Commit: David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Thu Jan 4 09:16:07 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=635494d3
x11-plugins/gkrellm-volume: Eclass update
Package-Manager: Portage-2.3.19, Repoman-2.3.6
.../gkrellm-volume/gkrellm-volume-2.1.13-r2.ebuild | 23 +++++++++++-----------
1 file changed, 11 insertions(+), 12 deletions(-)
diff --git a/x11-plugins/gkrellm-volume/gkrellm-volume-2.1.13-r2.ebuild b/x11-plugins/gkrellm-volume/gkrellm-volume-2.1.13-r2.ebuild
index db88433d0fe..208a9d80056 100644
--- a/x11-plugins/gkrellm-volume/gkrellm-volume-2.1.13-r2.ebuild
+++ b/x11-plugins/gkrellm-volume/gkrellm-volume-2.1.13-r2.ebuild
@@ -1,7 +1,8 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
+
inherit gkrellm-plugin toolchain-funcs
DESCRIPTION="A mixer control plugin for gkrellm"
@@ -13,22 +14,20 @@ SLOT="2"
KEYWORDS="~alpha amd64 ~ppc ~sparc x86"
IUSE="alsa"
-DEPEND="alsa? ( media-libs/alsa-lib )"
-RDEPEND="${DEPEND}
- app-admin/gkrellm[X]
-"
-
-S="${WORKDIR}/${PN}"
-
-PLUGIN_SO="volume.so"
+RDEPEND="
+ app-admin/gkrellm:2[X]
+ alsa? ( media-libs/alsa-lib )"
+DEPEND="${RDEPEND}"
+S=${WORKDIR}/${PN}
PATCHES=(
"${FILESDIR}/${P}-reenable.patch"
"${FILESDIR}/${P}-makefile.patch"
)
+PLUGIN_SO=( volume$(get_modname) )
+
src_compile() {
- local myconf=""
- use alsa && myconf="${myconf} enable_alsa=1"
- emake CC="$(tc-getCC)" LDFLAGS="${LDFLAGS}" "${myconf}"
+ use alsa && local myconf="enable_alsa=1"
+ emake CC="$(tc-getCC)" LDFLAGS="${LDFLAGS}" ${myconf}
}
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-plugins/gkrellm-volume/
@ 2022-03-10 22:45 Sam James
0 siblings, 0 replies; 8+ messages in thread
From: Sam James @ 2022-03-10 22:45 UTC (permalink / raw
To: gentoo-commits
commit: 1c4bcab27d44cfaf093249523ea44b8798e82dd9
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Mar 10 22:42:36 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Mar 10 22:42:36 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1c4bcab2
x11-plugins/gkrellm-volume: fix commands in global scope
Closes: https://bugs.gentoo.org/788067
Signed-off-by: Sam James <sam <AT> gentoo.org>
x11-plugins/gkrellm-volume/gkrellm-volume-2.1.13-r2.ebuild | 7 +++++--
1 file changed, 5 insertions(+), 2 deletions(-)
diff --git a/x11-plugins/gkrellm-volume/gkrellm-volume-2.1.13-r2.ebuild b/x11-plugins/gkrellm-volume/gkrellm-volume-2.1.13-r2.ebuild
index 208a9d80056f..e330327d324b 100644
--- a/x11-plugins/gkrellm-volume/gkrellm-volume-2.1.13-r2.ebuild
+++ b/x11-plugins/gkrellm-volume/gkrellm-volume-2.1.13-r2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
@@ -25,7 +25,10 @@ PATCHES=(
"${FILESDIR}/${P}-makefile.patch"
)
-PLUGIN_SO=( volume$(get_modname) )
+src_configure() {
+ PLUGIN_SO=( volume$(get_modname) )
+ default
+}
src_compile() {
use alsa && local myconf="enable_alsa=1"
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-plugins/gkrellm-volume/
@ 2022-08-29 7:18 Agostino Sarubbo
0 siblings, 0 replies; 8+ messages in thread
From: Agostino Sarubbo @ 2022-08-29 7:18 UTC (permalink / raw
To: gentoo-commits
commit: 49b29b4ab6db98ba61408dbb37fdea1cd412f79c
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Mon Aug 29 07:17:43 2022 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Mon Aug 29 07:17:43 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=49b29b4a
x11-plugins/gkrellm-volume: amd64 stable wrt bug #867175
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
x11-plugins/gkrellm-volume/gkrellm-volume-2.1.13-r3.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/x11-plugins/gkrellm-volume/gkrellm-volume-2.1.13-r3.ebuild b/x11-plugins/gkrellm-volume/gkrellm-volume-2.1.13-r3.ebuild
index b3affa03f88b..38c4ee1c2867 100644
--- a/x11-plugins/gkrellm-volume/gkrellm-volume-2.1.13-r3.ebuild
+++ b/x11-plugins/gkrellm-volume/gkrellm-volume-2.1.13-r3.ebuild
@@ -11,7 +11,7 @@ S="${WORKDIR}/${PN}"
LICENSE="GPL-2"
SLOT="2"
-KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~ppc ~sparc ~x86"
IUSE="alsa"
RDEPEND="
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-plugins/gkrellm-volume/
@ 2022-08-29 7:21 Agostino Sarubbo
0 siblings, 0 replies; 8+ messages in thread
From: Agostino Sarubbo @ 2022-08-29 7:21 UTC (permalink / raw
To: gentoo-commits
commit: 1abf382f46bb75020461086b35212d6fa3844558
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Mon Aug 29 07:20:41 2022 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Mon Aug 29 07:20:41 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1abf382f
x11-plugins/gkrellm-volume: x86 stable wrt bug #867175
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
x11-plugins/gkrellm-volume/gkrellm-volume-2.1.13-r3.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/x11-plugins/gkrellm-volume/gkrellm-volume-2.1.13-r3.ebuild b/x11-plugins/gkrellm-volume/gkrellm-volume-2.1.13-r3.ebuild
index 38c4ee1c2867..13e56eab4fa3 100644
--- a/x11-plugins/gkrellm-volume/gkrellm-volume-2.1.13-r3.ebuild
+++ b/x11-plugins/gkrellm-volume/gkrellm-volume-2.1.13-r3.ebuild
@@ -11,7 +11,7 @@ S="${WORKDIR}/${PN}"
LICENSE="GPL-2"
SLOT="2"
-KEYWORDS="~alpha amd64 ~ppc ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~ppc ~sparc x86"
IUSE="alsa"
RDEPEND="
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-plugins/gkrellm-volume/
@ 2022-08-29 8:38 Andreas Sturmlechner
0 siblings, 0 replies; 8+ messages in thread
From: Andreas Sturmlechner @ 2022-08-29 8:38 UTC (permalink / raw
To: gentoo-commits
commit: f87e34547c97e739475cafe3abb5d1d4a5539afe
Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Mon Aug 29 07:35:05 2022 +0000
Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Mon Aug 29 08:36:18 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f87e3454
x11-plugins/gkrellm-volume: drop 2.1.13-r2
Closes: https://bugs.gentoo.org/867175
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
.../gkrellm-volume/gkrellm-volume-2.1.13-r2.ebuild | 36 ----------------------
1 file changed, 36 deletions(-)
diff --git a/x11-plugins/gkrellm-volume/gkrellm-volume-2.1.13-r2.ebuild b/x11-plugins/gkrellm-volume/gkrellm-volume-2.1.13-r2.ebuild
deleted file mode 100644
index e330327d324b..000000000000
--- a/x11-plugins/gkrellm-volume/gkrellm-volume-2.1.13-r2.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit gkrellm-plugin toolchain-funcs
-
-DESCRIPTION="A mixer control plugin for gkrellm"
-HOMEPAGE="http://gkrellm.luon.net/volume.php"
-SRC_URI="http://gkrellm.luon.net/files/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="2"
-KEYWORDS="~alpha amd64 ~ppc ~sparc x86"
-IUSE="alsa"
-
-RDEPEND="
- app-admin/gkrellm:2[X]
- alsa? ( media-libs/alsa-lib )"
-DEPEND="${RDEPEND}"
-
-S=${WORKDIR}/${PN}
-PATCHES=(
- "${FILESDIR}/${P}-reenable.patch"
- "${FILESDIR}/${P}-makefile.patch"
-)
-
-src_configure() {
- PLUGIN_SO=( volume$(get_modname) )
- default
-}
-
-src_compile() {
- use alsa && local myconf="enable_alsa=1"
- emake CC="$(tc-getCC)" LDFLAGS="${LDFLAGS}" ${myconf}
-}
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-plugins/gkrellm-volume/
@ 2023-02-03 11:08 Sam James
0 siblings, 0 replies; 8+ messages in thread
From: Sam James @ 2023-02-03 11:08 UTC (permalink / raw
To: gentoo-commits
commit: 533419b1ed0dd0d4f62828142464966311b58209
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Feb 3 11:07:07 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Feb 3 11:07:07 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=533419b1
x11-plugins/gkrellm-volume: adopt
Help very much still welcome, just adopting so it's not m-n and can fix
the easy bugs at least.
Signed-off-by: Sam James <sam <AT> gentoo.org>
x11-plugins/gkrellm-volume/metadata.xml | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/x11-plugins/gkrellm-volume/metadata.xml b/x11-plugins/gkrellm-volume/metadata.xml
index 85e4ed814fa2..641cbd3703e7 100644
--- a/x11-plugins/gkrellm-volume/metadata.xml
+++ b/x11-plugins/gkrellm-volume/metadata.xml
@@ -1,5 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
-<!-- maintainer-needed -->
+ <maintainer type="person">
+ <email>sam@gentoo.org</email>
+ <name>Sam James</name>
+ </maintainer>
</pkgmetadata>
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-plugins/gkrellm-volume/
@ 2023-02-10 21:14 David Seifert
0 siblings, 0 replies; 8+ messages in thread
From: David Seifert @ 2023-02-10 21:14 UTC (permalink / raw
To: gentoo-commits
commit: 92466f891e604296f288219b048234eba1e90af4
Author: David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Fri Feb 10 21:14:16 2023 +0000
Commit: David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Fri Feb 10 21:14:16 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=92466f89
x11-plugins/gkrellm-volume: fix IndirectInherits on multilib
Signed-off-by: David Seifert <soap <AT> gentoo.org>
x11-plugins/gkrellm-volume/gkrellm-volume-2.1.13-r3.ebuild | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/x11-plugins/gkrellm-volume/gkrellm-volume-2.1.13-r3.ebuild b/x11-plugins/gkrellm-volume/gkrellm-volume-2.1.13-r3.ebuild
index 13e56eab4fa3..8cc643552eee 100644
--- a/x11-plugins/gkrellm-volume/gkrellm-volume-2.1.13-r3.ebuild
+++ b/x11-plugins/gkrellm-volume/gkrellm-volume-2.1.13-r3.ebuild
@@ -1,8 +1,9 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
-inherit gkrellm-plugin toolchain-funcs
+
+inherit gkrellm-plugin multilib toolchain-funcs
DESCRIPTION="A mixer control plugin for gkrellm"
HOMEPAGE="http://gkrellm.luon.net/volume.php"
^ permalink raw reply related [flat|nested] 8+ messages in thread
end of thread, other threads:[~2023-02-10 21:14 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-02-10 21:14 [gentoo-commits] repo/gentoo:master commit in: x11-plugins/gkrellm-volume/ David Seifert
-- strict thread matches above, loose matches on Subject: below --
2023-02-03 11:08 Sam James
2022-08-29 8:38 Andreas Sturmlechner
2022-08-29 7:21 Agostino Sarubbo
2022-08-29 7:18 Agostino Sarubbo
2022-03-10 22:45 Sam James
2018-01-04 9:17 David Seifert
2016-08-25 12:54 Pacho Ramos
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox