public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: x11-plugins/asmem/
@ 2022-10-11  8:56 Ionen Wolkens
  0 siblings, 0 replies; 8+ messages in thread
From: Ionen Wolkens @ 2022-10-11  8:56 UTC (permalink / raw
  To: gentoo-commits

commit:     7a26867943ada25798484ce203a373605738a815
Author:     Ionen Wolkens <ionen <AT> gentoo <DOT> org>
AuthorDate: Tue Oct 11 08:28:02 2022 +0000
Commit:     Ionen Wolkens <ionen <AT> gentoo <DOT> org>
CommitDate: Tue Oct 11 08:56:04 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7a268679

x11-plugins/asmem: pass -std=gnu89

Does not build with `clang -std=c2x`, early workaround for
when this will become a default.

(not actively hunting for these, merely revisiting packages
previously looked at for clang16 even if not an issue "yet").

Signed-off-by: Ionen Wolkens <ionen <AT> gentoo.org>

 x11-plugins/asmem/asmem-1.12-r2.ebuild | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/x11-plugins/asmem/asmem-1.12-r2.ebuild b/x11-plugins/asmem/asmem-1.12-r2.ebuild
index 02804f6c2ddb..da11dba67c3f 100644
--- a/x11-plugins/asmem/asmem-1.12-r2.ebuild
+++ b/x11-plugins/asmem/asmem-1.12-r2.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=8
 
-inherit toolchain-funcs
+inherit flag-o-matic toolchain-funcs
 
 DESCRIPTION="Monitor the utilization level of memory, cache and swap space"
 HOMEPAGE="http://www.tigr.net/"
@@ -34,6 +34,7 @@ PATCHES=(
 
 src_configure() {
 	tc-export CC # old autoconf
+	append-cflags -std=gnu89 # old codebase, incompatible with c2x
 
 	econf $(use_enable jpeg)
 }


^ permalink raw reply related	[flat|nested] 8+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-plugins/asmem/
@ 2022-10-21 12:48 Ionen Wolkens
  0 siblings, 0 replies; 8+ messages in thread
From: Ionen Wolkens @ 2022-10-21 12:48 UTC (permalink / raw
  To: gentoo-commits

commit:     64b179d4a27441dfe7248a99a8c3451452abb298
Author:     Ionen Wolkens <ionen <AT> gentoo <DOT> org>
AuthorDate: Fri Oct 21 12:43:49 2022 +0000
Commit:     Ionen Wolkens <ionen <AT> gentoo <DOT> org>
CommitDate: Fri Oct 21 12:47:03 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=64b179d4

x11-plugins/asmem: drop c2x workaround

Changed the way test for this, and upon closer look
this one wasn't needed.

Signed-off-by: Ionen Wolkens <ionen <AT> gentoo.org>

 x11-plugins/asmem/asmem-1.12-r2.ebuild | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/x11-plugins/asmem/asmem-1.12-r2.ebuild b/x11-plugins/asmem/asmem-1.12-r2.ebuild
index da11dba67c3f..02804f6c2ddb 100644
--- a/x11-plugins/asmem/asmem-1.12-r2.ebuild
+++ b/x11-plugins/asmem/asmem-1.12-r2.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=8
 
-inherit flag-o-matic toolchain-funcs
+inherit toolchain-funcs
 
 DESCRIPTION="Monitor the utilization level of memory, cache and swap space"
 HOMEPAGE="http://www.tigr.net/"
@@ -34,7 +34,6 @@ PATCHES=(
 
 src_configure() {
 	tc-export CC # old autoconf
-	append-cflags -std=gnu89 # old codebase, incompatible with c2x
 
 	econf $(use_enable jpeg)
 }


^ permalink raw reply related	[flat|nested] 8+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-plugins/asmem/
@ 2022-03-20  0:16 Sam James
  0 siblings, 0 replies; 8+ messages in thread
From: Sam James @ 2022-03-20  0:16 UTC (permalink / raw
  To: gentoo-commits

commit:     1e0e87cee96e6a81c7f476ed4289859decec3fab
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Mar 20 00:15:45 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Mar 20 00:15:45 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1e0e87ce

x11-plugins/asmem: [QA] fix tc-get* quoting

This can cause build problems for e.g. 32-bit (gcc -m32 ...)

Signed-off-by: Sam James <sam <AT> gentoo.org>

 x11-plugins/asmem/asmem-1.12-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/x11-plugins/asmem/asmem-1.12-r1.ebuild b/x11-plugins/asmem/asmem-1.12-r1.ebuild
index 097aecda86b1..b8aeeafc0159 100644
--- a/x11-plugins/asmem/asmem-1.12-r1.ebuild
+++ b/x11-plugins/asmem/asmem-1.12-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -30,7 +30,7 @@ src_configure() {
 }
 
 src_compile() {
-	emake CC=$(tc-getCC) LDFLAGS="${LDFLAGS}"
+	emake CC="$(tc-getCC)" LDFLAGS="${LDFLAGS}"
 }
 
 src_install() {


^ permalink raw reply related	[flat|nested] 8+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-plugins/asmem/
@ 2020-01-13 10:07 David Seifert
  0 siblings, 0 replies; 8+ messages in thread
From: David Seifert @ 2020-01-13 10:07 UTC (permalink / raw
  To: gentoo-commits

commit:     67fb7d863c43b198fc245b94e6f8aed50b289024
Author:     David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Mon Jan 13 10:07:11 2020 +0000
Commit:     David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Mon Jan 13 10:07:11 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=67fb7d86

x11-plugins/asmem: [QA] Fix HomepageInSrcUri

Signed-off-by: David Seifert <soap <AT> gentoo.org>

 x11-plugins/asmem/asmem-1.12-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-plugins/asmem/asmem-1.12-r1.ebuild b/x11-plugins/asmem/asmem-1.12-r1.ebuild
index 2eb08c18251..086b219f479 100644
--- a/x11-plugins/asmem/asmem-1.12-r1.ebuild
+++ b/x11-plugins/asmem/asmem-1.12-r1.ebuild
@@ -7,7 +7,7 @@ inherit toolchain-funcs
 
 DESCRIPTION="Monitor the utilization level of memory, cache and swap space"
 HOMEPAGE="http://www.tigr.net/"
-SRC_URI="${HOMEPAGE}afterstep/download/${PN}/${P}.tar.gz"
+SRC_URI="http://www.tigr.net/afterstep/download/${PN}/${P}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="0"


^ permalink raw reply related	[flat|nested] 8+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-plugins/asmem/
@ 2017-04-27 12:17 Michael Palimaka
  0 siblings, 0 replies; 8+ messages in thread
From: Michael Palimaka @ 2017-04-27 12:17 UTC (permalink / raw
  To: gentoo-commits

commit:     ef651c72dcebb4adccff89d81a555a04f2e60f3d
Author:     Michael Palimaka <kensington <AT> gentoo <DOT> org>
AuthorDate: Thu Apr 27 12:16:37 2017 +0000
Commit:     Michael Palimaka <kensington <AT> gentoo <DOT> org>
CommitDate: Thu Apr 27 12:17:07 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ef651c72

x11-plugins/asmem: remove 1.12-r0

Package-Manager: Portage-2.3.5, Repoman-2.3.2

 x11-plugins/asmem/asmem-1.12.ebuild | 34 ----------------------------------
 1 file changed, 34 deletions(-)

diff --git a/x11-plugins/asmem/asmem-1.12.ebuild b/x11-plugins/asmem/asmem-1.12.ebuild
deleted file mode 100644
index ce06a467e89..00000000000
--- a/x11-plugins/asmem/asmem-1.12.ebuild
+++ /dev/null
@@ -1,34 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-inherit toolchain-funcs
-
-DESCRIPTION="Monitor the utilization level of memory, cache and swap space"
-HOMEPAGE="http://www.tigr.net"
-SRC_URI="http://www.tigr.net/afterstep/download/asmem/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ppc ppc64 sparc x86"
-IUSE="jpeg"
-
-RDEPEND="x11-libs/libX11
-	x11-libs/libICE
-	x11-libs/libSM
-	x11-libs/libXpm
-	x11-libs/libXext
-	jpeg? ( virtual/jpeg )"
-DEPEND="${RDEPEND}
-	x11-proto/xproto"
-
-src_compile() {
-	tc-export CC
-	econf $(use_enable jpeg)
-	emake || die "emake failed."
-}
-
-src_install() {
-	dobin ${PN}
-	newman ${PN}.man ${PN}.1
-	dodoc CHANGES README
-}


^ permalink raw reply related	[flat|nested] 8+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-plugins/asmem/
@ 2017-03-28  9:56 Agostino Sarubbo
  0 siblings, 0 replies; 8+ messages in thread
From: Agostino Sarubbo @ 2017-03-28  9:56 UTC (permalink / raw
  To: gentoo-commits

commit:     8cb94a839c565dd4789c4e37448b20c594cbc2c6
Author:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Tue Mar 28 09:55:41 2017 +0000
Commit:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Tue Mar 28 09:55:41 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8cb94a83

x11-plugins/asmem: amd64 stable wrt bug #613916

Package-Manager: Portage-2.3.3, Repoman-2.3.1
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>

 x11-plugins/asmem/asmem-1.12-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-plugins/asmem/asmem-1.12-r1.ebuild b/x11-plugins/asmem/asmem-1.12-r1.ebuild
index 6597d404d2e..3812b1b6103 100644
--- a/x11-plugins/asmem/asmem-1.12-r1.ebuild
+++ b/x11-plugins/asmem/asmem-1.12-r1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="${HOMEPAGE}afterstep/download/${PN}/${P}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ppc ppc64 ~sparc ~x86"
+KEYWORDS="amd64 ppc ppc64 ~sparc ~x86"
 IUSE="jpeg"
 
 RDEPEND="x11-libs/libX11


^ permalink raw reply related	[flat|nested] 8+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-plugins/asmem/
@ 2017-03-28  7:30 Michael Weber
  0 siblings, 0 replies; 8+ messages in thread
From: Michael Weber @ 2017-03-28  7:30 UTC (permalink / raw
  To: gentoo-commits

commit:     f55228c7bb74ef227d53dd81e2e3b5eb54564563
Author:     Michael Weber <xmw <AT> gentoo <DOT> org>
AuthorDate: Tue Mar 28 07:26:17 2017 +0000
Commit:     Michael Weber <xmw <AT> gentoo <DOT> org>
CommitDate: Tue Mar 28 07:26:17 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f55228c7

x11-plugins/asmem: ppc ppc64 stable (bug 613916).

Package-Manager: Portage-2.3.5, Repoman-2.3.2

 x11-plugins/asmem/asmem-1.12-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/x11-plugins/asmem/asmem-1.12-r1.ebuild b/x11-plugins/asmem/asmem-1.12-r1.ebuild
index acd954ddee1..6597d404d2e 100644
--- a/x11-plugins/asmem/asmem-1.12-r1.ebuild
+++ b/x11-plugins/asmem/asmem-1.12-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -11,7 +11,7 @@ SRC_URI="${HOMEPAGE}afterstep/download/${PN}/${P}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~amd64 ppc ppc64 ~sparc ~x86"
 IUSE="jpeg"
 
 RDEPEND="x11-libs/libX11


^ permalink raw reply related	[flat|nested] 8+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-plugins/asmem/
@ 2017-02-07 17:48 David Seifert
  0 siblings, 0 replies; 8+ messages in thread
From: David Seifert @ 2017-02-07 17:48 UTC (permalink / raw
  To: gentoo-commits

commit:     671e49f7ffacec5056443bd056cb593d9ad128cc
Author:     Harri Nieminen <moikkis <AT> gmail <DOT> com>
AuthorDate: Tue Feb  7 15:41:25 2017 +0000
Commit:     David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Tue Feb  7 17:46:22 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=671e49f7

x11-plugins/asmem: Fix toolong DESCRIPTION

Package-Manager: Portage-2.3.3, Repoman-2.3.1
Closes: https://github.com/gentoo/gentoo/pull/3867

 x11-plugins/asmem/asmem-1.12.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/x11-plugins/asmem/asmem-1.12.ebuild b/x11-plugins/asmem/asmem-1.12.ebuild
index 01d9b01..1482562 100644
--- a/x11-plugins/asmem/asmem-1.12.ebuild
+++ b/x11-plugins/asmem/asmem-1.12.ebuild
@@ -1,10 +1,10 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
 inherit toolchain-funcs
 
-DESCRIPTION="a swallowable applet monitors the utilization level of memory, cache and swap space"
+DESCRIPTION="Monitor the utilization level of memory, cache and swap space"
 HOMEPAGE="http://www.tigr.net"
 SRC_URI="http://www.tigr.net/afterstep/download/asmem/${P}.tar.gz"
 


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

end of thread, other threads:[~2022-10-21 12:48 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-10-11  8:56 [gentoo-commits] repo/gentoo:master commit in: x11-plugins/asmem/ Ionen Wolkens
  -- strict thread matches above, loose matches on Subject: below --
2022-10-21 12:48 Ionen Wolkens
2022-03-20  0:16 Sam James
2020-01-13 10:07 David Seifert
2017-04-27 12:17 Michael Palimaka
2017-03-28  9:56 Agostino Sarubbo
2017-03-28  7:30 Michael Weber
2017-02-07 17:48 David Seifert

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