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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 1BE0F158089 for ; Tue, 19 Sep 2023 20:49:16 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 13D242BC06A; Tue, 19 Sep 2023 20:49:14 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id F0F052BC06A for ; Tue, 19 Sep 2023 20:49:13 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id C573A335CEE for ; Tue, 19 Sep 2023 20:49:12 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E221B11ED for ; Tue, 19 Sep 2023 20:49:09 +0000 (UTC) From: "Bernard Cafarelli" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Bernard Cafarelli" Message-ID: <1695155851.7e716439390fd79bb149717652b7c524eb75de8b.voyageur@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-plugins/wmweather/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-plugins/wmweather/wmweather-2.4.7-r1.ebuild X-VCS-Directories: x11-plugins/wmweather/ X-VCS-Committer: voyageur X-VCS-Committer-Name: Bernard Cafarelli X-VCS-Revision: 7e716439390fd79bb149717652b7c524eb75de8b X-VCS-Branch: master Date: Tue, 19 Sep 2023 20:49:09 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: a665a5d3-c3f6-4241-becb-3ecfcc7acf2c X-Archives-Hash: 8685f8a648a4565a2d62fe50268ac062 commit: 7e716439390fd79bb149717652b7c524eb75de8b Author: Michael Mair-Keimberger levelnine at> AuthorDate: Mon Sep 18 17:13:03 2023 +0000 Commit: Bernard Cafarelli gentoo org> CommitDate: Tue Sep 19 20:37:31 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7e716439 x11-plugins/wmweather: EAPI8 bump Signed-off-by: Michael Mair-Keimberger levelnine.at> Closes: https://github.com/gentoo/gentoo/pull/32909 Signed-off-by: Bernard Cafarelli gentoo.org> x11-plugins/wmweather/wmweather-2.4.7-r1.ebuild | 34 +++++++++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/x11-plugins/wmweather/wmweather-2.4.7-r1.ebuild b/x11-plugins/wmweather/wmweather-2.4.7-r1.ebuild new file mode 100644 index 000000000000..c8f8ee534cc3 --- /dev/null +++ b/x11-plugins/wmweather/wmweather-2.4.7-r1.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DESCRIPTION="Dockable weather monitor for standard METAR stations using ICAO location" +HOMEPAGE="https://people.debian.org/~godisch/wmweather/" +SRC_URI="mirror://debian/pool/main/w/${PN}/${PN}_${PV}.orig.tar.gz" +S="${WORKDIR}/${P}/src" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~mips ~ppc ~ppc64 ~sparc ~x86" + +RDEPEND="x11-libs/libX11 + x11-libs/libXext + x11-libs/libXpm + x11-libs/libICE + x11-apps/xmessage + net-misc/curl" +DEPEND="${RDEPEND} + x11-base/xorg-proto" + +DOCS=( + "${WORKDIR}"/${P}/CHANGES + "${WORKDIR}"/${P}/README + ) + +src_prepare() { + default + + pushd "${WORKDIR}"/${P} || die + eapply "${FILESDIR}"/${P}-fno-common.patch +}