* [gentoo-commits] repo/gentoo:master commit in: x11-plugins/wmdrawer/
@ 2017-05-29 12:19 Bernard Cafarelli
0 siblings, 0 replies; 12+ messages in thread
From: Bernard Cafarelli @ 2017-05-29 12:19 UTC (permalink / raw
To: gentoo-commits
commit: 54dad47e478953c0eb8d892682aa39cf7039f500
Author: Bernard Cafarelli <voyageur <AT> gentoo <DOT> org>
AuthorDate: Mon May 29 12:18:00 2017 +0000
Commit: Bernard Cafarelli <voyageur <AT> gentoo <DOT> org>
CommitDate: Mon May 29 12:19:12 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=54dad47e
x11-plugins/wmdrawer: decompress manpage, bug #619980
Also update EAPI
Package-Manager: Portage-2.3.6, Repoman-2.3.2
x11-plugins/wmdrawer/wmdrawer-0.10.5-r3.ebuild | 46 ++++++++++++++++++++++++++
1 file changed, 46 insertions(+)
diff --git a/x11-plugins/wmdrawer/wmdrawer-0.10.5-r3.ebuild b/x11-plugins/wmdrawer/wmdrawer-0.10.5-r3.ebuild
new file mode 100644
index 00000000000..b27b454cb21
--- /dev/null
+++ b/x11-plugins/wmdrawer/wmdrawer-0.10.5-r3.ebuild
@@ -0,0 +1,46 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+inherit eutils
+
+DESCRIPTION="dockapp which provides a drawer (retractable button bar) to launch applications"
+HOMEPAGE="http://people.easter-eggs.org/~valos/wmdrawer/"
+SRC_URI="http://people.easter-eggs.org/~valos/wmdrawer/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~sparc ~x86"
+IUSE=""
+
+RDEPEND="x11-libs/gtk+:2"
+DEPEND="${RDEPEND}
+ virtual/pkgconfig"
+
+DOCS=( README TODO AUTHORS ChangeLog wmdrawerrc.example )
+PATCHES=( "${FILESDIR}"/${P}-gtk+-2.patch )
+
+src_prepare() {
+ default
+
+ gunzip doc/wmdrawer.1x.gz || die
+
+ # Honour Gentoo CFLAGS
+ sed -i -e "s|-O3|${CFLAGS}|" Makefile || die
+ # Fix LDFLAGS ordering per bug #248640
+ sed -i -e 's/$(CC) $(LDFLAGS) -o $@ $(OBJS)/$(CC) -o $@ $(OBJS) $(LDFLAGS)/' Makefile || die
+ # Do not auto-strip binaries
+ sed -i -e 's/ strip $@//' Makefile || die
+ # Honour Gentoo LDFLAGS
+ sed -i -e 's/$(CC) -o/$(CC) $(REAL_LDFLAGS) -o/' Makefile || die
+}
+
+src_compile() {
+ emake REAL_LDFLAGS="${LDFLAGS}"
+}
+
+src_install() {
+ dobin wmdrawer
+ doman doc/wmdrawer.1x
+ einstalldocs
+}
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-plugins/wmdrawer/
@ 2018-01-04 18:34 Bernard Cafarelli
0 siblings, 0 replies; 12+ messages in thread
From: Bernard Cafarelli @ 2018-01-04 18:34 UTC (permalink / raw
To: gentoo-commits
commit: f6c041527e65da7fad1cb06570b316a5301e9ece
Author: Bernard Cafarelli <voyageur <AT> gentoo <DOT> org>
AuthorDate: Thu Jan 4 18:31:44 2018 +0000
Commit: Bernard Cafarelli <voyageur <AT> gentoo <DOT> org>
CommitDate: Thu Jan 4 18:31:44 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f6c04152
x11-plugins/wmdrawer: add missing x11-libs/gdk-pixbuf:2 dep
Closes: https://bugs.gentoo.org/612280
Package-Manager: Portage-2.3.19, Repoman-2.3.6
x11-plugins/wmdrawer/wmdrawer-0.10.5-r2.ebuild | 5 +++--
x11-plugins/wmdrawer/wmdrawer-0.10.5-r3.ebuild | 5 +++--
2 files changed, 6 insertions(+), 4 deletions(-)
diff --git a/x11-plugins/wmdrawer/wmdrawer-0.10.5-r2.ebuild b/x11-plugins/wmdrawer/wmdrawer-0.10.5-r2.ebuild
index 1cb4c572712..50c9f9de50a 100644
--- a/x11-plugins/wmdrawer/wmdrawer-0.10.5-r2.ebuild
+++ b/x11-plugins/wmdrawer/wmdrawer-0.10.5-r2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
@@ -13,7 +13,8 @@ SLOT="0"
KEYWORDS="amd64 ppc ~sparc x86"
IUSE=""
-RDEPEND="x11-libs/gtk+:2"
+RDEPEND="x11-libs/gdk-pixbuf:2
+ x11-libs/gtk+:2"
DEPEND="${RDEPEND}
virtual/pkgconfig"
diff --git a/x11-plugins/wmdrawer/wmdrawer-0.10.5-r3.ebuild b/x11-plugins/wmdrawer/wmdrawer-0.10.5-r3.ebuild
index b27b454cb21..bcbc70bb32c 100644
--- a/x11-plugins/wmdrawer/wmdrawer-0.10.5-r3.ebuild
+++ b/x11-plugins/wmdrawer/wmdrawer-0.10.5-r3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
@@ -13,7 +13,8 @@ SLOT="0"
KEYWORDS="~amd64 ~ppc ~sparc ~x86"
IUSE=""
-RDEPEND="x11-libs/gtk+:2"
+RDEPEND="x11-libs/gdk-pixbuf:2
+ x11-libs/gtk+:2"
DEPEND="${RDEPEND}
virtual/pkgconfig"
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-plugins/wmdrawer/
@ 2018-01-04 19:27 Bernard Cafarelli
0 siblings, 0 replies; 12+ messages in thread
From: Bernard Cafarelli @ 2018-01-04 19:27 UTC (permalink / raw
To: gentoo-commits
commit: 801844dca1e8b0efe8d9eb5583c71a2003f81cf4
Author: Bernard Cafarelli <voyageur <AT> gentoo <DOT> org>
AuthorDate: Thu Jan 4 19:26:37 2018 +0000
Commit: Bernard Cafarelli <voyageur <AT> gentoo <DOT> org>
CommitDate: Thu Jan 4 19:26:45 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=801844dc
x11-plugins/wmdrawer: fix gdk-pixbuf dep, thanks leio
This uses the legacy gdk-pixbuf-xlib library, only provided with USE=X
Package-Manager: Portage-2.3.19, Repoman-2.3.6
x11-plugins/wmdrawer/wmdrawer-0.10.5-r2.ebuild | 2 +-
x11-plugins/wmdrawer/wmdrawer-0.10.5-r3.ebuild | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/x11-plugins/wmdrawer/wmdrawer-0.10.5-r2.ebuild b/x11-plugins/wmdrawer/wmdrawer-0.10.5-r2.ebuild
index 50c9f9de50a..bc88d1485ea 100644
--- a/x11-plugins/wmdrawer/wmdrawer-0.10.5-r2.ebuild
+++ b/x11-plugins/wmdrawer/wmdrawer-0.10.5-r2.ebuild
@@ -13,7 +13,7 @@ SLOT="0"
KEYWORDS="amd64 ppc ~sparc x86"
IUSE=""
-RDEPEND="x11-libs/gdk-pixbuf:2
+RDEPEND="x11-libs/gdk-pixbuf:2[X]
x11-libs/gtk+:2"
DEPEND="${RDEPEND}
virtual/pkgconfig"
diff --git a/x11-plugins/wmdrawer/wmdrawer-0.10.5-r3.ebuild b/x11-plugins/wmdrawer/wmdrawer-0.10.5-r3.ebuild
index bcbc70bb32c..0f665d5bde3 100644
--- a/x11-plugins/wmdrawer/wmdrawer-0.10.5-r3.ebuild
+++ b/x11-plugins/wmdrawer/wmdrawer-0.10.5-r3.ebuild
@@ -13,7 +13,7 @@ SLOT="0"
KEYWORDS="~amd64 ~ppc ~sparc ~x86"
IUSE=""
-RDEPEND="x11-libs/gdk-pixbuf:2
+RDEPEND="x11-libs/gdk-pixbuf:2[X]
x11-libs/gtk+:2"
DEPEND="${RDEPEND}
virtual/pkgconfig"
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-plugins/wmdrawer/
@ 2018-10-21 8:18 Mikle Kolyada
0 siblings, 0 replies; 12+ messages in thread
From: Mikle Kolyada @ 2018-10-21 8:18 UTC (permalink / raw
To: gentoo-commits
commit: 024c995bba9c30e71c91e8b645daa9578537b353
Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Sun Oct 21 08:03:35 2018 +0000
Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Sun Oct 21 08:03:35 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=024c995b
x11-plugins/wmdrawer: amd64 stable wrt bug #666088
Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>
Package-Manager: Portage-2.3.49, Repoman-2.3.11
x11-plugins/wmdrawer/wmdrawer-0.10.5-r3.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/x11-plugins/wmdrawer/wmdrawer-0.10.5-r3.ebuild b/x11-plugins/wmdrawer/wmdrawer-0.10.5-r3.ebuild
index 70a42459d81..9bec6c6314a 100644
--- a/x11-plugins/wmdrawer/wmdrawer-0.10.5-r3.ebuild
+++ b/x11-plugins/wmdrawer/wmdrawer-0.10.5-r3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
@@ -10,7 +10,7 @@ SRC_URI="http://people.easter-eggs.org/~valos/wmdrawer/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~amd64 ppc ~sparc x86"
+KEYWORDS="amd64 ppc ~sparc x86"
IUSE=""
RDEPEND="x11-libs/gdk-pixbuf:2[X]
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-plugins/wmdrawer/
@ 2018-12-11 14:29 Bernard Cafarelli
0 siblings, 0 replies; 12+ messages in thread
From: Bernard Cafarelli @ 2018-12-11 14:29 UTC (permalink / raw
To: gentoo-commits
commit: 4dfe7de61cea57922e79346461997acd3ff2e8b5
Author: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com>
AuthorDate: Fri Dec 7 14:08:35 2018 +0000
Commit: Bernard Cafarelli <voyageur <AT> gentoo <DOT> org>
CommitDate: Tue Dec 11 14:27:55 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4dfe7de6
x11-plugins/wmdrawer: drop old
Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail.com>
Signed-off-by: Bernard Cafarelli <voyageur <AT> gentoo.org>
x11-plugins/wmdrawer/wmdrawer-0.10.5-r2.ebuild | 42 --------------------------
1 file changed, 42 deletions(-)
diff --git a/x11-plugins/wmdrawer/wmdrawer-0.10.5-r2.ebuild b/x11-plugins/wmdrawer/wmdrawer-0.10.5-r2.ebuild
deleted file mode 100644
index bc88d1485ea..00000000000
--- a/x11-plugins/wmdrawer/wmdrawer-0.10.5-r2.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-inherit eutils
-
-DESCRIPTION="dockapp which provides a drawer (retractable button bar) to launch applications"
-HOMEPAGE="http://people.easter-eggs.org/~valos/wmdrawer/"
-SRC_URI="http://people.easter-eggs.org/~valos/wmdrawer/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ppc ~sparc x86"
-IUSE=""
-
-RDEPEND="x11-libs/gdk-pixbuf:2[X]
- x11-libs/gtk+:2"
-DEPEND="${RDEPEND}
- virtual/pkgconfig"
-
-src_prepare() {
- epatch "${FILESDIR}"/${P}-gtk+-2.patch
-
- # Honour Gentoo CFLAGS
- sed -i -e "s|-O3|${CFLAGS}|" Makefile || die
- # Fix LDFLAGS ordering per bug #248640
- sed -i -e 's/$(CC) $(LDFLAGS) -o $@ $(OBJS)/$(CC) -o $@ $(OBJS) $(LDFLAGS)/' Makefile || die
- # Do not auto-strip binaries
- sed -i -e 's/ strip $@//' Makefile || die
- # Honour Gentoo LDFLAGS
- sed -i -e 's/$(CC) -o/$(CC) $(REAL_LDFLAGS) -o/' Makefile || die
-}
-
-src_compile() {
- emake REAL_LDFLAGS="${LDFLAGS}"
-}
-
-src_install() {
- dobin wmdrawer
- dodoc README TODO AUTHORS ChangeLog wmdrawerrc.example
- doman doc/wmdrawer.1x.gz
-}
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-plugins/wmdrawer/
@ 2020-11-21 18:02 Bernard Cafarelli
0 siblings, 0 replies; 12+ messages in thread
From: Bernard Cafarelli @ 2020-11-21 18:02 UTC (permalink / raw
To: gentoo-commits
commit: cccda91798a0e5a6105be544e98a6d51144fc32b
Author: Bernard Cafarelli <voyageur <AT> gentoo <DOT> org>
AuthorDate: Sat Nov 21 17:59:38 2020 +0000
Commit: Bernard Cafarelli <voyageur <AT> gentoo <DOT> org>
CommitDate: Sat Nov 21 18:02:01 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cccda917
x11-plugins/wmdrawer: update gdk-pixbuf dependency
Closes: https://bugs.gentoo.org/753893
Package-Manager: Portage-3.0.9, Repoman-3.0.2
Signed-off-by: Bernard Cafarelli <voyageur <AT> gentoo.org>
x11-plugins/wmdrawer/wmdrawer-0.10.5-r3.ebuild | 10 ++++++++--
1 file changed, 8 insertions(+), 2 deletions(-)
diff --git a/x11-plugins/wmdrawer/wmdrawer-0.10.5-r3.ebuild b/x11-plugins/wmdrawer/wmdrawer-0.10.5-r3.ebuild
index 9bec6c6314a..214c076d82c 100644
--- a/x11-plugins/wmdrawer/wmdrawer-0.10.5-r3.ebuild
+++ b/x11-plugins/wmdrawer/wmdrawer-0.10.5-r3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
@@ -13,7 +13,13 @@ SLOT="0"
KEYWORDS="amd64 ppc ~sparc x86"
IUSE=""
-RDEPEND="x11-libs/gdk-pixbuf:2[X]
+RDEPEND="|| (
+ (
+ x11-libs/gdk-pixbuf:2[X]
+ >=x11-libs/gdk-pixbuf-2.42.0:2
+ )
+ <x11-libs/gdk-pixbuf-2.42.0:2[X]
+ )
x11-libs/gtk+:2"
DEPEND="${RDEPEND}
virtual/pkgconfig"
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-plugins/wmdrawer/
@ 2020-12-17 14:00 Mart Raudsepp
0 siblings, 0 replies; 12+ messages in thread
From: Mart Raudsepp @ 2020-12-17 14:00 UTC (permalink / raw
To: gentoo-commits
commit: beada567dfb0195d8d8fc68a4e5fb43043c36501
Author: Mart Raudsepp <leio <AT> gentoo <DOT> org>
AuthorDate: Thu Dec 17 13:58:50 2020 +0000
Commit: Mart Raudsepp <leio <AT> gentoo <DOT> org>
CommitDate: Thu Dec 17 13:59:50 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=beada567
x11-plugins/wmdrawer: simplify gdk-pixbuf-xlib dep
Old versions of gdk-pixbuf carrying USE=X are gone, simplify dep.
The previous dep was broken, as completely unsatisfyable now with
<gdk-pixbuf-2.42 gone due to the multiple dep case still depending
on gdk-pixbuf[X] instead of gdk-pixbuf-xlib.
Before it was also holding back gdk-pixbuf upgrade.
Bug: https://bugs.gentoo.org/753893
Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Mart Raudsepp <leio <AT> gentoo.org>
x11-plugins/wmdrawer/wmdrawer-0.10.5-r3.ebuild | 9 ++-------
1 file changed, 2 insertions(+), 7 deletions(-)
diff --git a/x11-plugins/wmdrawer/wmdrawer-0.10.5-r3.ebuild b/x11-plugins/wmdrawer/wmdrawer-0.10.5-r3.ebuild
index 214c076d82c..def55cb05f8 100644
--- a/x11-plugins/wmdrawer/wmdrawer-0.10.5-r3.ebuild
+++ b/x11-plugins/wmdrawer/wmdrawer-0.10.5-r3.ebuild
@@ -13,13 +13,8 @@ SLOT="0"
KEYWORDS="amd64 ppc ~sparc x86"
IUSE=""
-RDEPEND="|| (
- (
- x11-libs/gdk-pixbuf:2[X]
- >=x11-libs/gdk-pixbuf-2.42.0:2
- )
- <x11-libs/gdk-pixbuf-2.42.0:2[X]
- )
+RDEPEND="x11-libs/gdk-pixbuf-xlib
+ >=x11-libs/gdk-pixbuf-2.42.0:2
x11-libs/gtk+:2"
DEPEND="${RDEPEND}
virtual/pkgconfig"
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-plugins/wmdrawer/
@ 2021-04-16 11:23 Sam James
0 siblings, 0 replies; 12+ messages in thread
From: Sam James @ 2021-04-16 11:23 UTC (permalink / raw
To: gentoo-commits
commit: 576c7d6e14e6d1fa9b6e162d04e2d78f7f068337
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Apr 16 08:16:10 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Apr 16 11:23:05 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=576c7d6e
x11-plugins/wmdrawer: eutils--
Signed-off-by: Sam James <sam <AT> gentoo.org>
x11-plugins/wmdrawer/wmdrawer-0.10.5-r3.ebuild | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/x11-plugins/wmdrawer/wmdrawer-0.10.5-r3.ebuild b/x11-plugins/wmdrawer/wmdrawer-0.10.5-r3.ebuild
index def55cb05f8..8ed75478b44 100644
--- a/x11-plugins/wmdrawer/wmdrawer-0.10.5-r3.ebuild
+++ b/x11-plugins/wmdrawer/wmdrawer-0.10.5-r3.ebuild
@@ -1,8 +1,7 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
-inherit eutils
DESCRIPTION="dockapp which provides a drawer (retractable button bar) to launch applications"
HOMEPAGE="http://people.easter-eggs.org/~valos/wmdrawer/"
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-plugins/wmdrawer/
@ 2022-03-04 0:40 Sam James
0 siblings, 0 replies; 12+ messages in thread
From: Sam James @ 2022-03-04 0:40 UTC (permalink / raw
To: gentoo-commits
commit: dd00ff2312207e9b7a43d0291414676be6d7d822
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Mar 3 22:12:54 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Mar 4 00:39:41 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dd00ff23
Revert "x11-plugins/wmdrawer: destabilise for ppc"
This reverts commit 02c115a2eac959afe882b9a2bcb805f6cd3ad682.
Signed-off-by: Sam James <sam <AT> gentoo.org>
x11-plugins/wmdrawer/wmdrawer-0.10.5-r3.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/x11-plugins/wmdrawer/wmdrawer-0.10.5-r3.ebuild b/x11-plugins/wmdrawer/wmdrawer-0.10.5-r3.ebuild
index 1e9428fb385b..8ed75478b444 100644
--- a/x11-plugins/wmdrawer/wmdrawer-0.10.5-r3.ebuild
+++ b/x11-plugins/wmdrawer/wmdrawer-0.10.5-r3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
@@ -9,7 +9,7 @@ SRC_URI="http://people.easter-eggs.org/~valos/wmdrawer/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="amd64 ~ppc ~sparc x86"
+KEYWORDS="amd64 ppc ~sparc x86"
IUSE=""
RDEPEND="x11-libs/gdk-pixbuf-xlib
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-plugins/wmdrawer/
@ 2022-07-09 15:43 Bernard Cafarelli
0 siblings, 0 replies; 12+ messages in thread
From: Bernard Cafarelli @ 2022-07-09 15:43 UTC (permalink / raw
To: gentoo-commits
commit: e55849e2f21b1d1b6cb0d08b59ec708093ca2da8
Author: Bernard Cafarelli <voyageur <AT> gentoo <DOT> org>
AuthorDate: Sat Jul 9 12:39:01 2022 +0000
Commit: Bernard Cafarelli <voyageur <AT> gentoo <DOT> org>
CommitDate: Sat Jul 9 15:40:53 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e55849e2
x11-plugins/wmdrawer: respect CC
Closes: https://bugs.gentoo.org/760591
Signed-off-by: Bernard Cafarelli <voyageur <AT> gentoo.org>
x11-plugins/wmdrawer/wmdrawer-0.10.5-r3.ebuild | 8 +++++---
1 file changed, 5 insertions(+), 3 deletions(-)
diff --git a/x11-plugins/wmdrawer/wmdrawer-0.10.5-r3.ebuild b/x11-plugins/wmdrawer/wmdrawer-0.10.5-r3.ebuild
index 8ed75478b444..d72e2c0e4a88 100644
--- a/x11-plugins/wmdrawer/wmdrawer-0.10.5-r3.ebuild
+++ b/x11-plugins/wmdrawer/wmdrawer-0.10.5-r3.ebuild
@@ -1,8 +1,10 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
+inherit toolchain-funcs
+
DESCRIPTION="dockapp which provides a drawer (retractable button bar) to launch applications"
HOMEPAGE="http://people.easter-eggs.org/~valos/wmdrawer/"
SRC_URI="http://people.easter-eggs.org/~valos/wmdrawer/${P}.tar.gz"
@@ -33,11 +35,11 @@ src_prepare() {
# Do not auto-strip binaries
sed -i -e 's/ strip $@//' Makefile || die
# Honour Gentoo LDFLAGS
- sed -i -e 's/$(CC) -o/$(CC) $(REAL_LDFLAGS) -o/' Makefile || die
+ sed -i -e 's/$(CC) -o/$(CC) $(GENTOO_LDFLAGS) -o/' Makefile || die
}
src_compile() {
- emake REAL_LDFLAGS="${LDFLAGS}"
+ emake CC="$(tc-getCC)" GENTOO_LDFLAGS="${LDFLAGS}"
}
src_install() {
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-plugins/wmdrawer/
@ 2024-04-13 19:01 Arthur Zamarin
0 siblings, 0 replies; 12+ messages in thread
From: Arthur Zamarin @ 2024-04-13 19:01 UTC (permalink / raw
To: gentoo-commits
commit: 0cb833a852c5d6bf9acd5f4840999edaed2ee98f
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sat Apr 13 19:01:06 2024 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sat Apr 13 19:01:06 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0cb833a8
x11-plugins/wmdrawer: Stabilize 0.10.5-r4 ppc, #929944
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
x11-plugins/wmdrawer/wmdrawer-0.10.5-r4.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/x11-plugins/wmdrawer/wmdrawer-0.10.5-r4.ebuild b/x11-plugins/wmdrawer/wmdrawer-0.10.5-r4.ebuild
index 4bd77c220fb1..e563676e4906 100644
--- a/x11-plugins/wmdrawer/wmdrawer-0.10.5-r4.ebuild
+++ b/x11-plugins/wmdrawer/wmdrawer-0.10.5-r4.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2023 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
@@ -11,7 +11,7 @@ SRC_URI="http://people.easter-eggs.org/~valos/wmdrawer/${P}.tar.gz"
LICENSE="GPL-2+"
SLOT="0"
-KEYWORDS="~amd64 ~ppc ~sparc ~x86"
+KEYWORDS="~amd64 ppc ~sparc ~x86"
RDEPEND="x11-libs/gdk-pixbuf-xlib
>=x11-libs/gdk-pixbuf-2.42.0:2
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: x11-plugins/wmdrawer/
@ 2024-04-14 13:48 Arthur Zamarin
0 siblings, 0 replies; 12+ messages in thread
From: Arthur Zamarin @ 2024-04-14 13:48 UTC (permalink / raw
To: gentoo-commits
commit: eee1ff5f3b1a32b30d5ed41b099a8e44ab462f22
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sun Apr 14 13:41:57 2024 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sun Apr 14 13:41:57 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eee1ff5f
x11-plugins/wmdrawer: drop 0.10.5-r3, EAPI6--
Closes: https://bugs.gentoo.org/929944
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
x11-plugins/wmdrawer/wmdrawer-0.10.5-r3.ebuild | 49 --------------------------
1 file changed, 49 deletions(-)
diff --git a/x11-plugins/wmdrawer/wmdrawer-0.10.5-r3.ebuild b/x11-plugins/wmdrawer/wmdrawer-0.10.5-r3.ebuild
deleted file mode 100644
index d72e2c0e4a88..000000000000
--- a/x11-plugins/wmdrawer/wmdrawer-0.10.5-r3.ebuild
+++ /dev/null
@@ -1,49 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit toolchain-funcs
-
-DESCRIPTION="dockapp which provides a drawer (retractable button bar) to launch applications"
-HOMEPAGE="http://people.easter-eggs.org/~valos/wmdrawer/"
-SRC_URI="http://people.easter-eggs.org/~valos/wmdrawer/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ppc ~sparc x86"
-IUSE=""
-
-RDEPEND="x11-libs/gdk-pixbuf-xlib
- >=x11-libs/gdk-pixbuf-2.42.0:2
- x11-libs/gtk+:2"
-DEPEND="${RDEPEND}
- virtual/pkgconfig"
-
-DOCS=( README TODO AUTHORS ChangeLog wmdrawerrc.example )
-PATCHES=( "${FILESDIR}"/${P}-gtk+-2.patch )
-
-src_prepare() {
- default
-
- gunzip doc/wmdrawer.1x.gz || die
-
- # Honour Gentoo CFLAGS
- sed -i -e "s|-O3|${CFLAGS}|" Makefile || die
- # Fix LDFLAGS ordering per bug #248640
- sed -i -e 's/$(CC) $(LDFLAGS) -o $@ $(OBJS)/$(CC) -o $@ $(OBJS) $(LDFLAGS)/' Makefile || die
- # Do not auto-strip binaries
- sed -i -e 's/ strip $@//' Makefile || die
- # Honour Gentoo LDFLAGS
- sed -i -e 's/$(CC) -o/$(CC) $(GENTOO_LDFLAGS) -o/' Makefile || die
-}
-
-src_compile() {
- emake CC="$(tc-getCC)" GENTOO_LDFLAGS="${LDFLAGS}"
-}
-
-src_install() {
- dobin wmdrawer
- doman doc/wmdrawer.1x
- einstalldocs
-}
^ permalink raw reply related [flat|nested] 12+ messages in thread
end of thread, other threads:[~2024-04-14 13:49 UTC | newest]
Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-11-21 18:02 [gentoo-commits] repo/gentoo:master commit in: x11-plugins/wmdrawer/ Bernard Cafarelli
-- strict thread matches above, loose matches on Subject: below --
2024-04-14 13:48 Arthur Zamarin
2024-04-13 19:01 Arthur Zamarin
2022-07-09 15:43 Bernard Cafarelli
2022-03-04 0:40 Sam James
2021-04-16 11:23 Sam James
2020-12-17 14:00 Mart Raudsepp
2018-12-11 14:29 Bernard Cafarelli
2018-10-21 8:18 Mikle Kolyada
2018-01-04 19:27 Bernard Cafarelli
2018-01-04 18:34 Bernard Cafarelli
2017-05-29 12:19 Bernard Cafarelli
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox