public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: x11-themes/iceicons/
@ 2018-02-15 10:55 Lars Wendler
  0 siblings, 0 replies; 2+ messages in thread
From: Lars Wendler @ 2018-02-15 10:55 UTC (permalink / raw
  To: gentoo-commits

commit:     2df2f8c58abbcfa3a76c0356325a0e7926bdfa7e
Author:     Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
AuthorDate: Thu Feb 15 10:54:07 2018 +0000
Commit:     Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
CommitDate: Thu Feb 15 10:55:13 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2df2f8c5

x11-themes/iceicons: EAPI-6 revbump.

Dropped ppc64 keyword as x11-wm/icewm dropped it as well.

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 .../iceicons/{iceicons-0.10.0.ebuild => iceicons-0.10.0-r1.ebuild}  | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/x11-themes/iceicons/iceicons-0.10.0.ebuild b/x11-themes/iceicons/iceicons-0.10.0-r1.ebuild
similarity index 92%
rename from x11-themes/iceicons/iceicons-0.10.0.ebuild
rename to x11-themes/iceicons/iceicons-0.10.0-r1.ebuild
index e90157bf0aa..738f93297aa 100644
--- a/x11-themes/iceicons/iceicons-0.10.0.ebuild
+++ b/x11-themes/iceicons/iceicons-0.10.0-r1.ebuild
@@ -1,13 +1,15 @@
-# Copyright 1999-2012 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
+EAPI=6
+
 DESCRIPTION="IceWM Icons is a set of XPM 16x16, 32x32, and 48x48 XPM and PNG icons for IceWM"
 HOMEPAGE="http://sandbox.cz/~covex/icewm/iceicons/"
 SRC_URI="http://sandbox.cz/~covex/icewm/iceicons/${PN}-default-${PV}.tar.gz"
 LICENSE="LGPL-2.1"
 
 SLOT="0"
-KEYWORDS="amd64 ~ppc ~ppc64 sparc x86"
+KEYWORDS="amd64 ~ppc sparc x86"
 IUSE=""
 
 RDEPEND=">=x11-wm/icewm-1.2.6"


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

* [gentoo-commits] repo/gentoo:master commit in: x11-themes/iceicons/
@ 2023-02-19 22:04 David Seifert
  0 siblings, 0 replies; 2+ messages in thread
From: David Seifert @ 2023-02-19 22:04 UTC (permalink / raw
  To: gentoo-commits

commit:     4100afd11d63d75125c0fe408aad1b30cb2f322b
Author:     David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Sun Feb 19 22:03:38 2023 +0000
Commit:     David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Sun Feb 19 22:03:38 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4100afd1

x11-themes/iceicons: update EAPI 6 -> 8

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

 ...cons-0.10.0-r1.ebuild => iceicons-0.10.0-r2.ebuild} | 18 +++++++++---------
 1 file changed, 9 insertions(+), 9 deletions(-)

diff --git a/x11-themes/iceicons/iceicons-0.10.0-r1.ebuild b/x11-themes/iceicons/iceicons-0.10.0-r2.ebuild
similarity index 78%
rename from x11-themes/iceicons/iceicons-0.10.0-r1.ebuild
rename to x11-themes/iceicons/iceicons-0.10.0-r2.ebuild
index f64d22c2cdf5..708b7b6b4d38 100644
--- a/x11-themes/iceicons/iceicons-0.10.0-r1.ebuild
+++ b/x11-themes/iceicons/iceicons-0.10.0-r2.ebuild
@@ -1,28 +1,28 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=6
+EAPI=8
 
 DESCRIPTION="IceWM Icons is a set of XPM 16x16, 32x32, and 48x48 XPM and PNG icons for IceWM"
 HOMEPAGE="http://sandbox.cz/~covex/icewm/iceicons/"
 SRC_URI="http://sandbox.cz/~covex/icewm/iceicons/${PN}-default-${PV}.tar.gz"
-LICENSE="LGPL-2.1"
+S="${WORKDIR}"
 
+LICENSE="LGPL-2.1"
 SLOT="0"
 KEYWORDS="amd64 ~ppc sparc x86"
-IUSE=""
 
 RDEPEND=">=x11-wm/icewm-1.2.6"
 DEPEND="${RDEPEND}"
 
-S="${WORKDIR}"
 ICEICONSDIR="/usr/share/icewm/icons/iceicons"
 
 src_install() {
-	dodir "${ICEICONSDIR}"
-	cp -pPR icons/* "${D}"/"${ICEICONSDIR}" || die
-	chown -R root:0 "${D}"/"${ICEICONSDIR}" || die
-	chmod -R o-w "${D}"/"${ICEICONSDIR}" || die
+	insinto "${ICEICONSDIR}"
+	doins -r icons/.
+
+	fowners -R root:0 "${ICEICONSDIR}"
+	fperms -R o-w "${ICEICONSDIR}"
 
 	dodoc CHANGELOG README TODO winoptions
 }


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

end of thread, other threads:[~2023-02-19 22:04 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-02-19 22:04 [gentoo-commits] repo/gentoo:master commit in: x11-themes/iceicons/ David Seifert
  -- strict thread matches above, loose matches on Subject: below --
2018-02-15 10:55 Lars Wendler

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