diff options
author | Aisha Tammy <gentoo@aisha.cc> | 2021-02-04 18:18:49 +0000 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2021-03-12 21:49:23 +0100 |
commit | f8dea25c3e63808189d3e0bd70e01f0ce61f5eb0 (patch) | |
tree | bc73a2ceb5201ae75b52f66fa84451d122536acf /x11-themes/nuovo-icon-theme | |
parent | x11-themes/gargantuan-icon-theme: fix eclass usage (diff) | |
download | gentoo-f8dea25c3e63808189d3e0bd70e01f0ce61f5eb0.tar.gz gentoo-f8dea25c3e63808189d3e0bd70e01f0ce61f5eb0.tar.bz2 gentoo-f8dea25c3e63808189d3e0bd70e01f0ce61f5eb0.zip |
x11-themes/nuovo-icon-theme: fix eclass usage
move to EAPI 7
Package-Manager: Portage-3.0.14, Repoman-3.0.2
Signed-off-by: Aisha Tammy <gentoo@aisha.cc>
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'x11-themes/nuovo-icon-theme')
-rw-r--r-- | x11-themes/nuovo-icon-theme/metadata.xml | 10 | ||||
-rw-r--r-- | x11-themes/nuovo-icon-theme/nuovo-icon-theme-0.5-r1.ebuild (renamed from x11-themes/nuovo-icon-theme/nuovo-icon-theme-0.5.ebuild) | 25 |
2 files changed, 13 insertions, 22 deletions
diff --git a/x11-themes/nuovo-icon-theme/metadata.xml b/x11-themes/nuovo-icon-theme/metadata.xml index cc1ab6847396..52c3f63cafa2 100644 --- a/x11-themes/nuovo-icon-theme/metadata.xml +++ b/x11-themes/nuovo-icon-theme/metadata.xml @@ -1,8 +1,12 @@ <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> <pkgmetadata> -<maintainer type="project"> - <email>desktop-misc@gentoo.org</email> - <name>Gentoo Desktop Miscellaneous Project</name> + <maintainer type="person"> + <email>gentoo@aisha.cc</email> + <name>Aisha Tammy</name> + </maintainer> + <maintainer type="project"> + <email>proxy-maint@gentoo.org</email> + <name>Proxy Maintainers</name> </maintainer> </pkgmetadata> diff --git a/x11-themes/nuovo-icon-theme/nuovo-icon-theme-0.5.ebuild b/x11-themes/nuovo-icon-theme/nuovo-icon-theme-0.5-r1.ebuild index 36ef2e9dd4b0..4aaf9b58c2ab 100644 --- a/x11-themes/nuovo-icon-theme/nuovo-icon-theme-0.5.ebuild +++ b/x11-themes/nuovo-icon-theme/nuovo-icon-theme-0.5-r1.ebuild @@ -1,24 +1,19 @@ -# Copyright 1999-2019 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=5 -inherit xdg-utils +EAPI=7 + +inherit xdg DESCRIPTION="A scalable icon theme called Nuovo" HOMEPAGE="http://www.silvestre.com.ar/" -SRC_URI="http://www.silvestre.com.ar/icons/dlg-nuovo-${PV}.tar.bz2" +SRC_URI="mirror://gentoo/dlg-nuovo-${PV}.tar.bz2" LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~x86" -IUSE="minimal" - -RDEPEND="!minimal? ( x11-themes/adwaita-icon-theme )" -DEPEND="" -RESTRICT="binchecks strip" - -S=${WORKDIR} +S="${WORKDIR}" src_install() { dodoc Nuovo/{AUTHORS,Changelog,README} @@ -27,11 +22,3 @@ src_install() { insinto /usr/share/icons doins -r Nuovo } - -pkg_postinst() { - xdg_icon_cache_update -} - -pkg_postrm() { - xdg_icon_cache_update -} |