* [gentoo-commits] repo/gentoo:master commit in: x11-plugins/gkrellm-mailwatch/
@ 2017-07-26 11:34 Pacho Ramos
0 siblings, 0 replies; 6+ messages in thread
From: Pacho Ramos @ 2017-07-26 11:34 UTC (permalink / raw
To: gentoo-commits
commit: cba559e6b4e38f86927cf45b9d8a8f5c4aa86172
Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Wed Jul 26 10:48:13 2017 +0000
Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Wed Jul 26 11:34:19 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cba559e6
x11-plugins/gkrellm-mailwatch: Fix dependency on gkrellm[X]
Package-Manager: Portage-2.3.6, Repoman-2.3.2
...-r1.ebuild => gkrellm-mailwatch-2.4.3-r2.ebuild} | 21 +++++++++++++--------
1 file changed, 13 insertions(+), 8 deletions(-)
diff --git a/x11-plugins/gkrellm-mailwatch/gkrellm-mailwatch-2.4.3-r1.ebuild b/x11-plugins/gkrellm-mailwatch/gkrellm-mailwatch-2.4.3-r2.ebuild
similarity index 51%
rename from x11-plugins/gkrellm-mailwatch/gkrellm-mailwatch-2.4.3-r1.ebuild
rename to x11-plugins/gkrellm-mailwatch/gkrellm-mailwatch-2.4.3-r2.ebuild
index ea4d0400830..d46420e8824 100644
--- a/x11-plugins/gkrellm-mailwatch/gkrellm-mailwatch-2.4.3-r1.ebuild
+++ b/x11-plugins/gkrellm-mailwatch/gkrellm-mailwatch-2.4.3-r2.ebuild
@@ -1,11 +1,9 @@
-# Copyright 1999-2010 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-EAPI="3"
-inherit gkrellm-plugin toolchain-funcs eutils
+EAPI=6
+inherit gkrellm-plugin toolchain-funcs
-IUSE=""
-S=${WORKDIR}/${PN}
DESCRIPTION="A GKrellM2 plugin that shows the status of additional mail boxes"
SRC_URI="http://gkrellm.luon.net/files/${P}.tar.gz"
HOMEPAGE="http://gkrellm.luon.net/mailwatch.php"
@@ -13,12 +11,19 @@ HOMEPAGE="http://gkrellm.luon.net/mailwatch.php"
SLOT="2"
LICENSE="GPL-2"
KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86"
+IUSE=""
PLUGIN_SO=mailwatch.so
+S="${WORKDIR}/${PN}"
-src_prepare() {
- epatch "${FILESDIR}"/${PV}-*
-}
+RDEPEND="app-admin/gkrellm[X]"
+
+PATCHES=(
+ "${FILESDIR}"/2.4.3-0001-Respect-LDFLAGS.patch
+ "${FILESDIR}"/2.4.3-0002-Use-gkrellm_gkd_string_width.patch
+ "${FILESDIR}"/2.4.3-0003-Remove-a-few-more-GCC-warnings.patch
+ "${FILESDIR}"/2.4.3-0004-Do-not-force-O2-in-CFLAGS.patch
+)
src_compile() {
tc-export CC
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-plugins/gkrellm-mailwatch/
@ 2018-01-04 9:17 David Seifert
0 siblings, 0 replies; 6+ messages in thread
From: David Seifert @ 2018-01-04 9:17 UTC (permalink / raw
To: gentoo-commits
commit: 3d301bde909e554be39f3086156a2042adc7378c
Author: David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Wed Jan 3 22:34:34 2018 +0000
Commit: David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Thu Jan 4 09:16:27 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3d301bde
x11-plugins/gkrellm-mailwatch: Eclass update
Package-Manager: Portage-2.3.19, Repoman-2.3.6
.../gkrellm-mailwatch/gkrellm-mailwatch-2.4.3-r2.ebuild | 17 +++++++++--------
1 file changed, 9 insertions(+), 8 deletions(-)
diff --git a/x11-plugins/gkrellm-mailwatch/gkrellm-mailwatch-2.4.3-r2.ebuild b/x11-plugins/gkrellm-mailwatch/gkrellm-mailwatch-2.4.3-r2.ebuild
index d46420e8824..2fb046fa145 100644
--- a/x11-plugins/gkrellm-mailwatch/gkrellm-mailwatch-2.4.3-r2.ebuild
+++ b/x11-plugins/gkrellm-mailwatch/gkrellm-mailwatch-2.4.3-r2.ebuild
@@ -1,23 +1,23 @@
-# Copyright 1999-2017 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 GKrellM2 plugin that shows the status of additional mail boxes"
SRC_URI="http://gkrellm.luon.net/files/${P}.tar.gz"
HOMEPAGE="http://gkrellm.luon.net/mailwatch.php"
-SLOT="2"
LICENSE="GPL-2"
+SLOT="2"
KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86"
IUSE=""
-PLUGIN_SO=mailwatch.so
-S="${WORKDIR}/${PN}"
-
-RDEPEND="app-admin/gkrellm[X]"
+RDEPEND="app-admin/gkrellm:2[X]"
+DEPEND="${RDEPEND}"
+S=${WORKDIR}/${PN}
PATCHES=(
"${FILESDIR}"/2.4.3-0001-Respect-LDFLAGS.patch
"${FILESDIR}"/2.4.3-0002-Use-gkrellm_gkd_string_width.patch
@@ -25,7 +25,8 @@ PATCHES=(
"${FILESDIR}"/2.4.3-0004-Do-not-force-O2-in-CFLAGS.patch
)
-src_compile() {
+PLUGIN_SO=( mailwatch$(get_modname) )
+
+src_configure() {
tc-export CC
- default_src_compile
}
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-plugins/gkrellm-mailwatch/
@ 2022-03-10 22:45 Sam James
0 siblings, 0 replies; 6+ messages in thread
From: Sam James @ 2022-03-10 22:45 UTC (permalink / raw
To: gentoo-commits
commit: 7c82123fa3bf6766df06c2a49e415936b85786a8
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Mar 10 22:40:32 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Mar 10 22:40:32 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7c82123f
x11-plugins/gkrellm-mailwatch: fix commands in global scope
Closes: https://bugs.gentoo.org/788067
Signed-off-by: Sam James <sam <AT> gentoo.org>
x11-plugins/gkrellm-mailwatch/gkrellm-mailwatch-2.4.3-r2.ebuild | 8 +++++---
1 file changed, 5 insertions(+), 3 deletions(-)
diff --git a/x11-plugins/gkrellm-mailwatch/gkrellm-mailwatch-2.4.3-r2.ebuild b/x11-plugins/gkrellm-mailwatch/gkrellm-mailwatch-2.4.3-r2.ebuild
index 2fb046fa1453..e02392547a60 100644
--- a/x11-plugins/gkrellm-mailwatch/gkrellm-mailwatch-2.4.3-r2.ebuild
+++ b/x11-plugins/gkrellm-mailwatch/gkrellm-mailwatch-2.4.3-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,8 +25,10 @@ PATCHES=(
"${FILESDIR}"/2.4.3-0004-Do-not-force-O2-in-CFLAGS.patch
)
-PLUGIN_SO=( mailwatch$(get_modname) )
-
src_configure() {
tc-export CC
+
+ PLUGIN_SO=( mailwatch$(get_modname) )
+
+ default
}
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-plugins/gkrellm-mailwatch/
@ 2022-08-28 19:37 Andreas Sturmlechner
0 siblings, 0 replies; 6+ messages in thread
From: Andreas Sturmlechner @ 2022-08-28 19:37 UTC (permalink / raw
To: gentoo-commits
commit: a13ef6c64c48d69d62c2b74a089c6f10ef6572c5
Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Sun Aug 28 18:50:26 2022 +0000
Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Sun Aug 28 19:36:48 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a13ef6c6
x11-plugins/gkrellm-mailwatch: drop 2.4.3-r2, EAPI-6--
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
.../gkrellm-mailwatch-2.4.3-r2.ebuild | 34 ----------------------
1 file changed, 34 deletions(-)
diff --git a/x11-plugins/gkrellm-mailwatch/gkrellm-mailwatch-2.4.3-r2.ebuild b/x11-plugins/gkrellm-mailwatch/gkrellm-mailwatch-2.4.3-r2.ebuild
deleted file mode 100644
index e02392547a60..000000000000
--- a/x11-plugins/gkrellm-mailwatch/gkrellm-mailwatch-2.4.3-r2.ebuild
+++ /dev/null
@@ -1,34 +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 GKrellM2 plugin that shows the status of additional mail boxes"
-SRC_URI="http://gkrellm.luon.net/files/${P}.tar.gz"
-HOMEPAGE="http://gkrellm.luon.net/mailwatch.php"
-
-LICENSE="GPL-2"
-SLOT="2"
-KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86"
-IUSE=""
-
-RDEPEND="app-admin/gkrellm:2[X]"
-DEPEND="${RDEPEND}"
-
-S=${WORKDIR}/${PN}
-PATCHES=(
- "${FILESDIR}"/2.4.3-0001-Respect-LDFLAGS.patch
- "${FILESDIR}"/2.4.3-0002-Use-gkrellm_gkd_string_width.patch
- "${FILESDIR}"/2.4.3-0003-Remove-a-few-more-GCC-warnings.patch
- "${FILESDIR}"/2.4.3-0004-Do-not-force-O2-in-CFLAGS.patch
-)
-
-src_configure() {
- tc-export CC
-
- PLUGIN_SO=( mailwatch$(get_modname) )
-
- default
-}
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-plugins/gkrellm-mailwatch/
@ 2023-02-03 11:08 Sam James
0 siblings, 0 replies; 6+ messages in thread
From: Sam James @ 2023-02-03 11:08 UTC (permalink / raw
To: gentoo-commits
commit: 08cc07d8efc36e6df06e19f7cf72391b8ee0791f
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Feb 3 11:06:40 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Feb 3 11:06:40 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=08cc07d8
x11-plugins/gkrellm-mailwatch: 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-mailwatch/metadata.xml | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/x11-plugins/gkrellm-mailwatch/metadata.xml b/x11-plugins/gkrellm-mailwatch/metadata.xml
index 85e4ed814fa2..641cbd3703e7 100644
--- a/x11-plugins/gkrellm-mailwatch/metadata.xml
+++ b/x11-plugins/gkrellm-mailwatch/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] 6+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-plugins/gkrellm-mailwatch/
@ 2023-02-10 21:14 David Seifert
0 siblings, 0 replies; 6+ messages in thread
From: David Seifert @ 2023-02-10 21:14 UTC (permalink / raw
To: gentoo-commits
commit: a1dc023731e63c2a0a378b11ccfafa0a6c316e18
Author: David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Fri Feb 10 21:14:12 2023 +0000
Commit: David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Fri Feb 10 21:14:12 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a1dc0237
x11-plugins/gkrellm-mailwatch: fix IndirectInherits on multilib
Signed-off-by: David Seifert <soap <AT> gentoo.org>
x11-plugins/gkrellm-mailwatch/gkrellm-mailwatch-2.4.3-r3.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/x11-plugins/gkrellm-mailwatch/gkrellm-mailwatch-2.4.3-r3.ebuild b/x11-plugins/gkrellm-mailwatch/gkrellm-mailwatch-2.4.3-r3.ebuild
index 54c18b282740..a95fd891b314 100644
--- a/x11-plugins/gkrellm-mailwatch/gkrellm-mailwatch-2.4.3-r3.ebuild
+++ b/x11-plugins/gkrellm-mailwatch/gkrellm-mailwatch-2.4.3-r3.ebuild
@@ -1,9 +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 GKrellM2 plugin that shows the status of additional mail boxes"
HOMEPAGE="http://gkrellm.luon.net/mailwatch.php"
^ permalink raw reply related [flat|nested] 6+ messages in thread
end of thread, other threads:[~2023-02-10 21:14 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-01-04 9:17 [gentoo-commits] repo/gentoo:master commit in: x11-plugins/gkrellm-mailwatch/ David Seifert
-- strict thread matches above, loose matches on Subject: below --
2023-02-10 21:14 David Seifert
2023-02-03 11:08 Sam James
2022-08-28 19:37 Andreas Sturmlechner
2022-03-10 22:45 Sam James
2017-07-26 11:34 Pacho Ramos
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox