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 603CC138350 for ; Mon, 10 Feb 2020 00:18:42 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 77FA8E08D3; Mon, 10 Feb 2020 00:18:41 +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 5CF48E08D3 for ; Mon, 10 Feb 2020 00:18:41 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 6DB5B34E95D for ; Mon, 10 Feb 2020 00:18:40 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4741E138 for ; Mon, 10 Feb 2020 00:18:37 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1581293896.ee6618e3c33ea3fce11ae1d0821a54c13d5151c4.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/gscanbus/files/, sys-apps/gscanbus/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-apps/gscanbus/files/gscanbus-0.8-Wimplicit-function-declaration.patch sys-apps/gscanbus/gscanbus-0.8.ebuild X-VCS-Directories: sys-apps/gscanbus/files/ sys-apps/gscanbus/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: ee6618e3c33ea3fce11ae1d0821a54c13d5151c4 X-VCS-Branch: master Date: Mon, 10 Feb 2020 00:18:37 +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: dadb6150-a703-4950-a1e3-e3d1df78a41f X-Archives-Hash: 8ea4f43b3457d762286e0524cb7c69bb commit: ee6618e3c33ea3fce11ae1d0821a54c13d5151c4 Author: David Seifert gentoo org> AuthorDate: Mon Feb 10 00:18:16 2020 +0000 Commit: David Seifert gentoo org> CommitDate: Mon Feb 10 00:18:16 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ee6618e3 sys-apps/gscanbus: Port to EAPI 7 Package-Manager: Portage-2.3.88, Repoman-2.3.20 Signed-off-by: David Seifert gentoo.org> ...canbus-0.8-Wimplicit-function-declaration.patch | 22 ++++++++++++++++++++++ sys-apps/gscanbus/gscanbus-0.8.ebuild | 14 +++++++------- 2 files changed, 29 insertions(+), 7 deletions(-) diff --git a/sys-apps/gscanbus/files/gscanbus-0.8-Wimplicit-function-declaration.patch b/sys-apps/gscanbus/files/gscanbus-0.8-Wimplicit-function-declaration.patch new file mode 100644 index 00000000000..79a585694ab --- /dev/null +++ b/sys-apps/gscanbus/files/gscanbus-0.8-Wimplicit-function-declaration.patch @@ -0,0 +1,22 @@ +--- a/decodeselfid.c ++++ b/decodeselfid.c +@@ -25,6 +25,8 @@ + + #include "decodeselfid.h" + ++#include ++ + void printbin(FILE *stream, unsigned int i, unsigned char width) { + int j; + for (j=0; j ++ + void fatal(char *s) { + fprintf(stderr, "Error: %s\n", s); + exit(1); diff --git a/sys-apps/gscanbus/gscanbus-0.8.ebuild b/sys-apps/gscanbus/gscanbus-0.8.ebuild index 693ade0c091..98a308f1c30 100644 --- a/sys-apps/gscanbus/gscanbus-0.8.ebuild +++ b/sys-apps/gscanbus/gscanbus-0.8.ebuild @@ -1,7 +1,7 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=4 +EAPI=7 DESCRIPTION="Bus scanning, testing and topology visualizing tool for Linux IEEE1394 subsystem" HOMEPAGE="https://sourceforge.net/projects/gscanbus.berlios/" @@ -10,11 +10,11 @@ SRC_URI="mirror://sourceforge/${PN}.berlios/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="amd64 ppc x86" -IUSE="" -RDEPEND="sys-libs/libraw1394 +RDEPEND=" + sys-libs/libraw1394 x11-libs/gtk+:2" -DEPEND="${RDEPEND} - virtual/pkgconfig" +DEPEND="${RDEPEND}" +BDEPEND="virtual/pkgconfig" -DOCS=( AUTHORS README TODO ) +PATCHES=( "${FILESDIR}"/${P}-Wimplicit-function-declaration.patch )