From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <gentoo-commits+bounces-1459878-garchives=archives.gentoo.org@lists.gentoo.org>
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 3FFAE158020
	for <garchives@archives.gentoo.org>; Thu, 24 Nov 2022 01:12:36 +0000 (UTC)
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id 5BE21E0982;
	Thu, 24 Nov 2022 01:12:35 +0000 (UTC)
Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183])
	(using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)
	 key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256)
	(No client certificate requested)
	by pigeon.gentoo.org (Postfix) with ESMTPS id 448CAE0982
	for <gentoo-commits@lists.gentoo.org>; Thu, 24 Nov 2022 01:12:35 +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) server-digest SHA256)
	(No client certificate requested)
	by smtp.gentoo.org (Postfix) with ESMTPS id 319FC340FC2
	for <gentoo-commits@lists.gentoo.org>; Thu, 24 Nov 2022 01:12:34 +0000 (UTC)
Received: from localhost.localdomain (localhost [IPv6:::1])
	by oystercatcher.gentoo.org (Postfix) with ESMTP id 7DAD7755
	for <gentoo-commits@lists.gentoo.org>; Thu, 24 Nov 2022 01:12:32 +0000 (UTC)
From: "Sam James" <sam@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Content-Transfer-Encoding: 8bit
Content-type: text/plain; charset=UTF-8
Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" <sam@gentoo.org>
Message-ID: <1669252169.c6dd328c2de4c30494d9c3ff28a6aa76dad48294.sam@gentoo>
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-block/devio/
X-VCS-Repository: repo/gentoo
X-VCS-Files: sys-block/devio/devio-1.2-r1.ebuild sys-block/devio/devio-1.2.ebuild
X-VCS-Directories: sys-block/devio/
X-VCS-Committer: sam
X-VCS-Committer-Name: Sam James
X-VCS-Revision: c6dd328c2de4c30494d9c3ff28a6aa76dad48294
X-VCS-Branch: master
Date: Thu, 24 Nov 2022 01:12:32 +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: c0a0090b-f996-4ec6-9395-043a91aa1b31
X-Archives-Hash: 705ca2f6f27924e9596661de97a2a241

commit:     c6dd328c2de4c30494d9c3ff28a6aa76dad48294
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Nov 24 01:09:29 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Nov 24 01:09:29 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c6dd328c

sys-block/devio: fix configure w/ clang 16

Signed-off-by: Sam James <sam <AT> gentoo.org>

 sys-block/devio/{devio-1.2.ebuild => devio-1.2-r1.ebuild} | 15 ++++++++++++---
 1 file changed, 12 insertions(+), 3 deletions(-)

diff --git a/sys-block/devio/devio-1.2.ebuild b/sys-block/devio/devio-1.2-r1.ebuild
similarity index 53%
rename from sys-block/devio/devio-1.2.ebuild
rename to sys-block/devio/devio-1.2-r1.ebuild
index e726f3424a48..62241d9573f7 100644
--- a/sys-block/devio/devio-1.2.ebuild
+++ b/sys-block/devio/devio-1.2-r1.ebuild
@@ -1,12 +1,21 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=7
+EAPI=8
 
-DESCRIPTION="correctly read (or write) a region of a block device"
+inherit autotools
+
+DESCRIPTION="Correctly read (or write) a region of a block device"
 HOMEPAGE="http://devio.sourceforge.net/"
 SRC_URI="mirror://sourceforge/devio/${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
 KEYWORDS="~amd64 arm x86"
+
+src_prepare() {
+	default
+
+	# Clang 16
+	eautoreconf
+}