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 EEBA4158030 for ; Thu, 2 Mar 2023 21:05:31 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0F085E086D; Thu, 2 Mar 2023 21:05:31 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 EB24EE086D for ; Thu, 2 Mar 2023 21:05:30 +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 A690E33FECD for ; Thu, 2 Mar 2023 21:05:28 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 820C08CA for ; Thu, 2 Mar 2023 21:05:25 +0000 (UTC) From: "Ben Kohler" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ben Kohler" Message-ID: <1677791115.a518db94e168e101fdad9e81c3fcc87db092960d.bkohler@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-misc/bbweather/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-misc/bbweather/bbweather-0.6.3-r2.ebuild X-VCS-Directories: x11-misc/bbweather/ X-VCS-Committer: bkohler X-VCS-Committer-Name: Ben Kohler X-VCS-Revision: a518db94e168e101fdad9e81c3fcc87db092960d X-VCS-Branch: master Date: Thu, 2 Mar 2023 21:05:25 +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: 4ee0dc8f-9e6b-41a3-9796-6dd26d684946 X-Archives-Hash: 5578a13b6ddf605cb0f120469a5982ad commit: a518db94e168e101fdad9e81c3fcc87db092960d Author: Ben Kohler gentoo org> AuthorDate: Thu Mar 2 21:04:38 2023 +0000 Commit: Ben Kohler gentoo org> CommitDate: Thu Mar 2 21:05:15 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a518db94 x11-misc/bbweather: -Wregister fixes Closes: https://bugs.gentoo.org/898874 Signed-off-by: Ben Kohler gentoo.org> x11-misc/bbweather/bbweather-0.6.3-r2.ebuild | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/x11-misc/bbweather/bbweather-0.6.3-r2.ebuild b/x11-misc/bbweather/bbweather-0.6.3-r2.ebuild index 7f45dd7000ed..d232bb5c4dbf 100644 --- a/x11-misc/bbweather/bbweather-0.6.3-r2.ebuild +++ b/x11-misc/bbweather/bbweather-0.6.3-r2.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -25,12 +25,16 @@ PATCHES=( "${FILESDIR}"/${PN}-asneeded.patch ) src_prepare() { default gunzip doc/*.gz || die + mv configure.{in,ac} || die sed -i \ -e "s:man_DATA:man1_MANS:;s:.gz::g;/^mandir/d" \ doc/Makefile.am || die sed -i \ -e 's|-helvetica-|-*-|g' \ resource.cpp data/${PN}.{nobb,style} || die + sed -i \ + -e 's|register ||' \ + Image.cpp || die eautoreconf }