From 89ce493666037489c3fef29109d7d461185e4ce4 Mon Sep 17 00:00:00 2001 From: charIes17 Date: Tue, 27 Mar 2018 20:01:38 +0200 Subject: lxde-base/lxpanel: Remove old Package-Manager: Portage-2.3.24, Repoman-2.3.6 Closes: https://github.com/gentoo/gentoo/pull/7653 --- lxde-base/lxpanel/Manifest | 2 - lxde-base/lxpanel/lxpanel-0.8.1.ebuild | 71 ---------------------------------- lxde-base/lxpanel/lxpanel-0.8.2.ebuild | 62 ----------------------------- 3 files changed, 135 deletions(-) delete mode 100644 lxde-base/lxpanel/lxpanel-0.8.1.ebuild delete mode 100644 lxde-base/lxpanel/lxpanel-0.8.2.ebuild diff --git a/lxde-base/lxpanel/Manifest b/lxde-base/lxpanel/Manifest index e7a9ded64db4..41f95a25bce2 100644 --- a/lxde-base/lxpanel/Manifest +++ b/lxde-base/lxpanel/Manifest @@ -1,4 +1,2 @@ -DIST lxpanel-0.8.1.tar.xz 1485612 BLAKE2B 0c53be0610300f1edf4e9a2e014e0d299889100dc97f097c909e20484a7d2ed2b9e74dc118443ce110d58cef1f0ea0db44a25dc15de717d09774bddd9556b04d SHA512 cebad5e9399618adcc47ad0f2542bd57ce6cd707d65e9f1f67e2a435607e91e948c14102eb5534bb8d60a964277ef98658ec8d7a0109121a4b4f6067b385e39d -DIST lxpanel-0.8.2.tar.xz 1488548 BLAKE2B 9ded67a0aba220c2f5683e66371a2d3a5362c400dfb2827546682f86be1e4817545b0139e8b9ffdb5d17615e2e5209ba2258dc199b39249135cbd31598d9ba55 SHA512 abab9175c4a4e591a33c39fbc41754e458eea60c79f5a40d56848338b910a867bafed09b4d1f2596a588beb79bfb5efe54c798ff5f7b0ee74f6245a1b0417918 DIST lxpanel-0.9.2.tar.xz 1514748 BLAKE2B 31b0f949b7023364df3eb00b2386c505e14146c2b818407326347baf1dfa09b3e2e0c30c38416430c7dccad04f1fd5731a6ff80b21ea87a930492399027a056f SHA512 d7b5733345233a44466b6786133b8c3f3c9217a5195654b8dde3447a0dfc198082d991b2bc0cc60ddf200ebb95d636885b36d5642c11f4cd913f66228c12bd3a DIST lxpanel-0.9.3.tar.xz 1515144 BLAKE2B f069a519d0e4bd611d57a956ba585b8dde953174198d01dc264e2b111df17e2925c79bd85dc8549d7b2098147122c04ace6ed775d0a3ea7594b0b39c1f9045c0 SHA512 c6aea97f66ee1d576822fda0bf1aed3849b3c74bab856816b7d23331e48b26005f1ba12eddcc0abbf5a6f08add3cb4a0674ccd13f118cec0b6294edd6f1b2343 diff --git a/lxde-base/lxpanel/lxpanel-0.8.1.ebuild b/lxde-base/lxpanel/lxpanel-0.8.1.ebuild deleted file mode 100644 index ec0b3433bfc8..000000000000 --- a/lxde-base/lxpanel/lxpanel-0.8.1.ebuild +++ /dev/null @@ -1,71 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI="5" - -inherit autotools eutils readme.gentoo versionator - -MAJOR_VER="$(get_version_component_range 1-2)" - -DESCRIPTION="Lightweight X11 desktop panel for LXDE" -HOMEPAGE="https://wiki.lxde.org/en/LXPanel" -SRC_URI="mirror://sourceforge/lxde/LXPanel%20%28desktop%20panel%29/LXPanel%20${MAJOR_VER}.x/${P}.tar.xz" - -LICENSE="GPL-2" -KEYWORDS="~alpha amd64 arm ~arm64 ppc x86 ~amd64-linux ~arm-linux ~x86-linux" -SLOT="0" -IUSE="+alsa wifi" -RESTRICT="test" # bug 249598 - -RDEPEND="dev-libs/keybinder:0= - x11-libs/gtk+:2 - >=x11-libs/libfm-1.2.0[gtk] - x11-libs/libwnck:1 - x11-libs/libXmu - x11-libs/libXpm - x11-libs/cairo - x11-libs/gdk-pixbuf - x11-libs/libX11 - lxde-base/lxmenu-data - lxde-base/menu-cache - alsa? ( media-libs/alsa-lib ) - wifi? ( net-wireless/wireless-tools )" -DEPEND="${RDEPEND} - virtual/pkgconfig - sys-devel/gettext" - -DOC_CONTENTS="If you have problems with broken icons shown in the main panel, -you will have to configure panel settings via its menu. -This will not be an issue with first time installations." - -src_prepare() { - #bug #415595 - sed -i "s:-Werror::" configure.ac || die - eautoreconf -} - -src_configure() { - local plugins="netstatus,volume,cpu,deskno,batt, \ - kbled,xkb,thermal,cpufreq,monitors" - - use wifi && plugins+=",netstat" - use alsa && plugins+=",volumealsa" - [[ ${CHOST} == *-interix* ]] && plugins=deskno,kbled,xkb - - econf $(use_enable alsa) --with-x --with-plugins="${plugins}" - # the gtk+ dep already pulls in libX11, so we might as well hardcode with-x -} - -src_install () { - emake DESTDIR="${D}" install - dodoc AUTHORS ChangeLog README - - # Get rid of the .la files. - find "${D}" -name '*.la' -delete - - readme.gentoo_create_doc -} - -pkg_postinst() { - readme.gentoo_print_elog -} diff --git a/lxde-base/lxpanel/lxpanel-0.8.2.ebuild b/lxde-base/lxpanel/lxpanel-0.8.2.ebuild deleted file mode 100644 index 2fe4da6e7e71..000000000000 --- a/lxde-base/lxpanel/lxpanel-0.8.2.ebuild +++ /dev/null @@ -1,62 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI="6" - -inherit readme.gentoo-r1 - -DESCRIPTION="Lightweight X11 desktop panel for LXDE" -HOMEPAGE="https://wiki.lxde.org/en/LXPanel" -SRC_URI="mirror://sourceforge/lxde/${P}.tar.xz" - -LICENSE="GPL-2" -KEYWORDS="~alpha amd64 arm ~arm64 ppc x86 ~amd64-linux ~arm-linux ~x86-linux" -SLOT="0" -IUSE="+alsa wifi" - -RDEPEND="dev-libs/keybinder:0= - x11-libs/gtk+:2 - >=x11-libs/libfm-1.2.0[gtk] - x11-libs/libwnck:1 - x11-libs/libXmu - x11-libs/libXpm - x11-libs/cairo - x11-libs/gdk-pixbuf - x11-libs/libX11 - lxde-base/lxmenu-data - lxde-base/menu-cache - alsa? ( media-libs/alsa-lib ) - wifi? ( net-wireless/wireless-tools )" -DEPEND="${RDEPEND} - virtual/pkgconfig - sys-devel/gettext" - -DOC_CONTENTS="If you have problems with broken icons shown in the main panel, -you will have to configure panel settings via its menu. -This will not be an issue with first time installations." - -src_configure() { - local plugins="netstatus,volume,cpu,deskno,batt, \ - kbled,xkb,thermal,cpufreq,monitors" - - use wifi && plugins+=",netstat" - use alsa && plugins+=",volumealsa" - [[ ${CHOST} == *-interix* ]] && plugins=deskno,kbled,xkb - - econf $(use_enable alsa) --with-x --with-plugins="${plugins}" - # the gtk+ dep already pulls in libX11, so we might as well hardcode with-x -} - -src_install () { - emake DESTDIR="${D}" install - dodoc AUTHORS ChangeLog README - - # Get rid of the .la files. - find "${D}" -name '*.la' -delete - - readme.gentoo_create_doc -} - -pkg_postinst() { - readme.gentoo_print_elog -} -- cgit v1.2.3-65-gdbad