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 263611382C5 for ; Sat, 2 Jan 2021 23:32:42 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 68E79E081B; Sat, 2 Jan 2021 23:32:41 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 277ADE081A for ; Sat, 2 Jan 2021 23:32:41 +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 E1656340FE6 for ; Sat, 2 Jan 2021 23:32:38 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DBC69488 for ; Sat, 2 Jan 2021 23:32:36 +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: <1609630339.5c0943933f9e5a6875b801c2b9b3fd81585023c4.voyageur@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-plugins/wmweather+/files/, x11-plugins/wmweather+/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-plugins/wmweather+/files/wmweather+-2.18-ar.patch x11-plugins/wmweather+/wmweather+-2.18.ebuild X-VCS-Directories: x11-plugins/wmweather+/ x11-plugins/wmweather+/files/ X-VCS-Committer: voyageur X-VCS-Committer-Name: Bernard Cafarelli X-VCS-Revision: 5c0943933f9e5a6875b801c2b9b3fd81585023c4 X-VCS-Branch: master Date: Sat, 2 Jan 2021 23:32:36 +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: aea275ef-1362-48a1-bce2-958286cf0411 X-Archives-Hash: f3b901986c070549d6873e45942f37da commit: 5c0943933f9e5a6875b801c2b9b3fd81585023c4 Author: Bernard Cafarelli gentoo org> AuthorDate: Sat Jan 2 23:27:09 2021 +0000 Commit: Bernard Cafarelli gentoo org> CommitDate: Sat Jan 2 23:32:19 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5c094393 x11-plugins/wmweather+: do not call ar directly Closes: https://bugs.gentoo.org/726248 Package-Manager: Portage-3.0.12, Repoman-3.0.2 Signed-off-by: Bernard Cafarelli gentoo.org> x11-plugins/wmweather+/files/wmweather+-2.18-ar.patch | 11 +++++++++++ x11-plugins/wmweather+/wmweather+-2.18.ebuild | 10 +++++++++- 2 files changed, 20 insertions(+), 1 deletion(-) diff --git a/x11-plugins/wmweather+/files/wmweather+-2.18-ar.patch b/x11-plugins/wmweather+/files/wmweather+-2.18-ar.patch new file mode 100644 index 00000000000..f87fdfa0ef0 --- /dev/null +++ b/x11-plugins/wmweather+/files/wmweather+-2.18-ar.patch @@ -0,0 +1,11 @@ +diff -Naur wmweather+-2.18.orig/configure.ac wmweather+-2.18/configure.ac +--- wmweather+-2.18.orig/configure.ac 2020-04-24 20:31:43.000000000 +0200 ++++ wmweather+-2.18/configure.ac 2021-01-03 00:25:30.443705781 +0100 +@@ -18,6 +18,7 @@ + AC_SUBST(WMGENERAL_GUI) + + # Checks for programs. ++AM_PROG_AR + AC_PROG_AWK + AC_PROG_CC + AC_PROG_CC_STDC diff --git a/x11-plugins/wmweather+/wmweather+-2.18.ebuild b/x11-plugins/wmweather+/wmweather+-2.18.ebuild index 01b450a84cc..7dffde689df 100644 --- a/x11-plugins/wmweather+/wmweather+-2.18.ebuild +++ b/x11-plugins/wmweather+/wmweather+-2.18.ebuild @@ -1,7 +1,8 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 +inherit autotools DESCRIPTION="A dockapp for displaying data collected from METAR, AVN, ETA, and MRF forecasts" HOMEPAGE="https://www.sourceforge.net/projects/wmweatherplus/" @@ -19,3 +20,10 @@ DEPEND="dev-libs/libpcre x11-libs/libX11 x11-wm/windowmaker" RDEPEND="${DEPEND}" + +PATCHES=( "${FILESDIR}"/${P}-ar.patch ) + +src_prepare() { + default + eautoreconf +}