public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: x11-misc/xdock/
@ 2020-11-14 20:22 David Seifert
  0 siblings, 0 replies; 5+ messages in thread
From: David Seifert @ 2020-11-14 20:22 UTC (permalink / raw
  To: gentoo-commits

commit:     8f7ccbb5101407d3e00ac2199c28f208aaae956a
Author:     Jakov Smolic <jakov.smolic <AT> sartura <DOT> hr>
AuthorDate: Sat Nov 14 20:20:31 2020 +0000
Commit:     David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Sat Nov 14 20:20:31 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8f7ccbb5

x11-misc/xdock: disable static-libs

Closes: https://bugs.gentoo.org/726294
Package-Manager: Portage-3.0.4, Repoman-3.0.1
Signed-off-by: Jakov Smolic <jakov.smolic <AT> sartura.hr>
Signed-off-by: David Seifert <soap <AT> gentoo.org>

 x11-misc/xdock/xdock-0.3.0.ebuild | 11 ++++++++++-
 1 file changed, 10 insertions(+), 1 deletion(-)

diff --git a/x11-misc/xdock/xdock-0.3.0.ebuild b/x11-misc/xdock/xdock-0.3.0.ebuild
index 63c9381744b..379d89b1ad3 100644
--- a/x11-misc/xdock/xdock-0.3.0.ebuild
+++ b/x11-misc/xdock/xdock-0.3.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -23,3 +23,12 @@ src_prepare() {
 	sed -i -e 's|AM_CONFIG_HEADER|AC_CONFIG_HEADERS|g' configure.ac || die
 	eautoreconf
 }
+
+src_configure() {
+	econf --disable-static
+}
+
+src_install() {
+	default
+	find "${ED}" -name '*.la' -delete || die
+}


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

* [gentoo-commits] repo/gentoo:master commit in: x11-misc/xdock/
@ 2021-04-18  6:06 Sam James
  0 siblings, 0 replies; 5+ messages in thread
From: Sam James @ 2021-04-18  6:06 UTC (permalink / raw
  To: gentoo-commits

commit:     1ee23c2541c59e918182638d4796a58410149706
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Apr 16 14:07:24 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Apr 18 06:05:27 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1ee23c25

x11-misc/xdock: eutils->epatch

Package-Manager: Portage-3.0.14-prefix, Repoman-3.0.2
Signed-off-by: Sam James <sam <AT> gentoo.org>

 x11-misc/xdock/xdock-0.3.0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/x11-misc/xdock/xdock-0.3.0.ebuild b/x11-misc/xdock/xdock-0.3.0.ebuild
index 379d89b1ad3..6cf304a5efb 100644
--- a/x11-misc/xdock/xdock-0.3.0.ebuild
+++ b/x11-misc/xdock/xdock-0.3.0.ebuild
@@ -1,8 +1,8 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
-inherit autotools eutils
+inherit autotools epatch
 
 DESCRIPTION="emulates Window Maker docks (runs in any window manager)"
 HOMEPAGE="http://xdock.sourceforge.net"


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

* [gentoo-commits] repo/gentoo:master commit in: x11-misc/xdock/
@ 2021-04-20  1:42 Sam James
  0 siblings, 0 replies; 5+ messages in thread
From: Sam James @ 2021-04-20  1:42 UTC (permalink / raw
  To: gentoo-commits

commit:     7ab4763ae11611a921ea5fa1784e656fb6d084b0
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Apr 20 01:40:34 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Apr 20 01:42:28 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7ab4763a

x11-misc/xdock: port to EAPI 7

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

 x11-misc/xdock/xdock-0.3.0.ebuild | 15 ++++++++++-----
 1 file changed, 10 insertions(+), 5 deletions(-)

diff --git a/x11-misc/xdock/xdock-0.3.0.ebuild b/x11-misc/xdock/xdock-0.3.0.ebuild
index 6cf304a5efb..dad806f3220 100644
--- a/x11-misc/xdock/xdock-0.3.0.ebuild
+++ b/x11-misc/xdock/xdock-0.3.0.ebuild
@@ -1,25 +1,30 @@
 # Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=5
-inherit autotools epatch
+EAPI=7
 
-DESCRIPTION="emulates Window Maker docks (runs in any window manager)"
+inherit autotools
+
+DESCRIPTION="Emulates Window Maker docks (runs in any window manager)"
 HOMEPAGE="http://xdock.sourceforge.net"
 SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
-IUSE=""
 
 RDEPEND="x11-libs/libX11"
 DEPEND="${RDEPEND}"
 
 DOCS=( API AUTHORS ChangeLog README TODO )
 
+PATCHES=(
+	"${FILESDIR}"/${PN}-0.2.0-ldconfig.patch
+)
+
 src_prepare() {
-	epatch "${FILESDIR}"/${PN}-0.2.0-ldconfig.patch
+	default
+
 	sed -i -e 's|AM_CONFIG_HEADER|AC_CONFIG_HEADERS|g' configure.ac || die
 	eautoreconf
 }


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

* [gentoo-commits] repo/gentoo:master commit in: x11-misc/xdock/
@ 2022-10-14  3:20 Ionen Wolkens
  0 siblings, 0 replies; 5+ messages in thread
From: Ionen Wolkens @ 2022-10-14  3:20 UTC (permalink / raw
  To: gentoo-commits

commit:     917ae3d705cdaa0da2aabf28c6b082f1b69c685d
Author:     Ionen Wolkens <ionen <AT> gentoo <DOT> org>
AuthorDate: Fri Oct 14 03:06:29 2022 +0000
Commit:     Ionen Wolkens <ionen <AT> gentoo <DOT> org>
CommitDate: Fri Oct 14 03:19:44 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=917ae3d7

x11-misc/xdock: EAPI7->8, use https, add xorg-proto

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

 x11-misc/xdock/xdock-0.3.0.ebuild | 17 ++++++++---------
 1 file changed, 8 insertions(+), 9 deletions(-)

diff --git a/x11-misc/xdock/xdock-0.3.0.ebuild b/x11-misc/xdock/xdock-0.3.0.ebuild
index dad806f32209..dd2c66023042 100644
--- a/x11-misc/xdock/xdock-0.3.0.ebuild
+++ b/x11-misc/xdock/xdock-0.3.0.ebuild
@@ -1,12 +1,12 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=7
+EAPI=8
 
 inherit autotools
 
 DESCRIPTION="Emulates Window Maker docks (runs in any window manager)"
-HOMEPAGE="http://xdock.sourceforge.net"
+HOMEPAGE="https://xdock.sourceforge.net/"
 SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
 
 LICENSE="GPL-2"
@@ -14,7 +14,9 @@ SLOT="0"
 KEYWORDS="~amd64 ~x86"
 
 RDEPEND="x11-libs/libX11"
-DEPEND="${RDEPEND}"
+DEPEND="
+	${RDEPEND}
+	x11-base/xorg-proto"
 
 DOCS=( API AUTHORS ChangeLog README TODO )
 
@@ -29,11 +31,8 @@ src_prepare() {
 	eautoreconf
 }
 
-src_configure() {
-	econf --disable-static
-}
-
 src_install() {
 	default
-	find "${ED}" -name '*.la' -delete || die
+
+	find "${ED}" -type f -name '*.la' -delete || die
 }


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

* [gentoo-commits] repo/gentoo:master commit in: x11-misc/xdock/
@ 2023-05-29 11:55 Joonas Niilola
  0 siblings, 0 replies; 5+ messages in thread
From: Joonas Niilola @ 2023-05-29 11:55 UTC (permalink / raw
  To: gentoo-commits

commit:     f06d4f1af681d01c87b7522222f74357e435d23f
Author:     Joonas Niilola <juippis <AT> gentoo <DOT> org>
AuthorDate: Mon May 29 11:55:01 2023 +0000
Commit:     Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Mon May 29 11:55:01 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f06d4f1a

x11-misc/xdock: drop 0.3.0-r1

Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>

 x11-misc/xdock/xdock-0.3.0-r1.ebuild | 39 ------------------------------------
 1 file changed, 39 deletions(-)

diff --git a/x11-misc/xdock/xdock-0.3.0-r1.ebuild b/x11-misc/xdock/xdock-0.3.0-r1.ebuild
deleted file mode 100644
index 4c830a3fe0f3..000000000000
--- a/x11-misc/xdock/xdock-0.3.0-r1.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit autotools
-
-DESCRIPTION="Emulates Window Maker docks (runs in any window manager)"
-HOMEPAGE="https://xdock.sourceforge.net/"
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-RDEPEND="x11-libs/libX11"
-DEPEND="
-	${RDEPEND}
-	x11-base/xorg-proto"
-
-DOCS=( API AUTHORS ChangeLog README TODO )
-
-PATCHES=(
-	"${FILESDIR}"/${PN}-0.2.0-ldconfig.patch
-	"${FILESDIR}"/${P}-clang16.patch
-)
-
-src_prepare() {
-	default
-
-	sed -i -e 's|AM_CONFIG_HEADER|AC_CONFIG_HEADERS|g' configure.ac || die
-	eautoreconf
-}
-
-src_install() {
-	default
-
-	find "${ED}" -type f -name '*.la' -delete || die
-}


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

end of thread, other threads:[~2023-05-29 11:55 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-10-14  3:20 [gentoo-commits] repo/gentoo:master commit in: x11-misc/xdock/ Ionen Wolkens
  -- strict thread matches above, loose matches on Subject: below --
2023-05-29 11:55 Joonas Niilola
2021-04-20  1:42 Sam James
2021-04-18  6:06 Sam James
2020-11-14 20:22 David Seifert

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