From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <gentoo-commits+bounces-1166870-garchives=archives.gentoo.org@lists.gentoo.org>
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 71D1B138350
	for <garchives@archives.gentoo.org>; Fri,  1 May 2020 15:58:20 +0000 (UTC)
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id BB704E0AC6;
	Fri,  1 May 2020 15:58:19 +0000 (UTC)
Received: from smtp.gentoo.org (mail.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 A1170E0AC6
	for <gentoo-commits@lists.gentoo.org>; Fri,  1 May 2020 15:58:19 +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 2720734F031
	for <gentoo-commits@lists.gentoo.org>; Fri,  1 May 2020 15:58:15 +0000 (UTC)
Received: from localhost.localdomain (localhost [IPv6:::1])
	by oystercatcher.gentoo.org (Postfix) with ESMTP id 06E479C
	for <gentoo-commits@lists.gentoo.org>; Fri,  1 May 2020 15:58:13 +0000 (UTC)
From: "Kurt Kanzenbach" <kurt@kmk-computers.de>
To: gentoo-commits@lists.gentoo.org
Content-Transfer-Encoding: 8bit
Content-type: text/plain; charset=UTF-8
Reply-To: gentoo-dev@lists.gentoo.org, "Kurt Kanzenbach" <kurt@kmk-computers.de>
Message-ID: <1588348678.6399c85b6d6266a7e288a3eaff742820b9d7a300.KurtKanzenbach@gentoo>
Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-embedded/rauc/
X-VCS-Repository: repo/proj/guru
X-VCS-Files: dev-embedded/rauc/rauc-1.3.ebuild
X-VCS-Directories: dev-embedded/rauc/
X-VCS-Committer: KurtKanzenbach
X-VCS-Committer-Name: Kurt Kanzenbach
X-VCS-Revision: 6399c85b6d6266a7e288a3eaff742820b9d7a300
X-VCS-Branch: dev
Date: Fri,  1 May 2020 15:58:13 +0000 (UTC)
Precedence: bulk
List-Post: <mailto:gentoo-commits@lists.gentoo.org>
List-Help: <mailto:gentoo-commits+help@lists.gentoo.org>
List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org>
List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org>
List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org>
X-BeenThere: gentoo-commits@lists.gentoo.org
X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply
X-Archives-Salt: 3282bca1-731e-46dc-ab1f-359c75c6f66d
X-Archives-Hash: 5adc610b1543cc1dbd07a64e5c739dc8

commit:     6399c85b6d6266a7e288a3eaff742820b9d7a300
Author:     Kurt Kanzenbach <kurt <AT> kmk-computers <DOT> de>
AuthorDate: Fri May  1 15:49:50 2020 +0000
Commit:     Kurt Kanzenbach <kurt <AT> kmk-computers <DOT> de>
CommitDate: Fri May  1 15:57:58 2020 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=6399c85b

dev-embedded/rauc: Fix compile against different automake version

Call autoreconf due to patching.

Package-Manager: Portage-2.3.89, Repoman-2.3.20
Signed-off-by: Kurt Kanzenbach <kurt <AT> kmk-computers.de>

 dev-embedded/rauc/rauc-1.3.ebuild | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/dev-embedded/rauc/rauc-1.3.ebuild b/dev-embedded/rauc/rauc-1.3.ebuild
index 686a41b..5e7aedc 100644
--- a/dev-embedded/rauc/rauc-1.3.ebuild
+++ b/dev-embedded/rauc/rauc-1.3.ebuild
@@ -6,7 +6,7 @@ EAPI=7
 DOCBUILDER="sphinx"
 DOCDIR="${S}/docs"
 
-inherit docs
+inherit autotools docs
 
 DESCRIPTION="Lightweight update client that runs on your Embedded Linux device"
 HOMEPAGE="https://rauc.io/"
@@ -36,6 +36,11 @@ DEPEND="
 
 PATCHES=( "${FILESDIR}/${P}-tests.patch" )
 
+src_prepare() {
+	default
+	eautoreconf
+}
+
 src_configure() {
 	local myconf=(
 		$(use_enable json)