From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id B3411138334 for ; Fri, 5 Oct 2018 13:55:16 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AC5E3E0843; Fri, 5 Oct 2018 13:55:15 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 8C540E0843 for ; Fri, 5 Oct 2018 13:55:15 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 62CBA335CDE for ; Fri, 5 Oct 2018 13:55:14 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1A959435 for ; Fri, 5 Oct 2018 13:55:11 +0000 (UTC) From: "Mikle Kolyada" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mikle Kolyada" Message-ID: <1538747702.cf24f89d46bdc15ba13b9c143302822eb6ea2dad.zlogene@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-plugins/wmSpaceWeather/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-plugins/wmSpaceWeather/wmSpaceWeather-1.04_p19.ebuild X-VCS-Directories: x11-plugins/wmSpaceWeather/ X-VCS-Committer: zlogene X-VCS-Committer-Name: Mikle Kolyada X-VCS-Revision: cf24f89d46bdc15ba13b9c143302822eb6ea2dad X-VCS-Branch: master Date: Fri, 5 Oct 2018 13:55:11 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 4fcf3f4a-8075-4cbc-96eb-a4d0df833315 X-Archives-Hash: 2cff6fc73fbd31f90592efb147690a7e commit: cf24f89d46bdc15ba13b9c143302822eb6ea2dad Author: Mikle Kolyada gentoo org> AuthorDate: Fri Oct 5 13:48:23 2018 +0000 Commit: Mikle Kolyada gentoo org> CommitDate: Fri Oct 5 13:55:02 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cf24f89d x11-plugins/wmSpaceWeather: Drop old Signed-off-by: Mikle Kolyada gentoo.org> Package-Manager: Portage-2.3.49, Repoman-2.3.11 .../wmSpaceWeather/wmSpaceWeather-1.04_p19.ebuild | 64 ---------------------- 1 file changed, 64 deletions(-) diff --git a/x11-plugins/wmSpaceWeather/wmSpaceWeather-1.04_p19.ebuild b/x11-plugins/wmSpaceWeather/wmSpaceWeather-1.04_p19.ebuild deleted file mode 100644 index 8a6964c6250..00000000000 --- a/x11-plugins/wmSpaceWeather/wmSpaceWeather-1.04_p19.ebuild +++ /dev/null @@ -1,64 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=0 - -inherit eutils multilib toolchain-funcs - -MY_PN="wmspaceweather" -MY_PV_ORIG="${PV/_p*}" -MY_PV_PATCH="${PV/_p/-}" -MY_P_ORIG="${MY_PN}_${MY_PV_ORIG}.orig" -MY_P_PATCH="${MY_PN}_${MY_PV_PATCH}.diff" - -DESCRIPTION="dockapp showing weather at geosynchronous orbit" -HOMEPAGE="https://www.dockapps.net/wmspaceweather" -SRC_URI="mirror://debian/pool/main/w/${MY_PN}/${MY_P_ORIG}.tar.gz - mirror://debian/pool/main/w/${MY_PN}/${MY_P_PATCH}.gz" - -SLOT="0" -LICENSE="GPL-2" -KEYWORDS="amd64 hppa ~mips ppc sparc x86" -IUSE="" - -CDEPEND="x11-libs/libX11 - x11-libs/libXext - x11-libs/libXpm" -DEPEND="${CDEPEND} - x11-base/xorg-proto" -RDEPEND="${CDEPEND} - net-misc/curl - dev-lang/perl" - -S="${WORKDIR}/${MY_P_ORIG/_/-}/${PN}" - -src_unpack() { - unpack ${MY_P_ORIG}.tar.gz - epatch "${DISTDIR}"/${MY_P_PATCH}.gz - - # need to apply patches from Debian first, do NOT change the order - cd "${S}" - mv ../debian/patches "${WORKDIR}"/patch - EPATCH_SUFFIX="dpatch" EPATCH_FORCE="yes" \ - EPATCH_MULTI_MSG="Applying Debian patches ..." epatch - epatch "${FILESDIR}"/${P}-gentoo.patch - epatch "${FILESDIR}"/${P}-getkp.patch -} - -src_compile() { - emake clean || die "make clean failed" - emake CC="$(tc-getCC)" LIBDIR="/usr/$(get_libdir)" || die "parallel make failed" -} - -src_install() { - emake DESTDIR="${D}" install || die install failed - dodoc ../{BUGS,CHANGES,HINTS,README} -} - -pkg_postinst() { - elog "You need to emerge www-client/firefox or www-client/firefox-bin" - elog "to use the -url functionality - see man ${PN} for more info." - elog - elog "This version uses curl instead of wget. You may edit /usr/share/wmspaceweather/GetKp" - elog "if you don't like it." -}