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 198F9158094 for ; Tue, 26 Jul 2022 19:27:44 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6919FE0B0C; Tue, 26 Jul 2022 19:27:42 +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 4DB0FE0AFB for ; Tue, 26 Jul 2022 19:27:42 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 C56A934117C for ; Tue, 26 Jul 2022 19:27:40 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 25F87560 for ; Tue, 26 Jul 2022 19:27:38 +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: <1658863634.458be8e9173787daf7fa5ee8226a672289c9c27e.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-cdr/uif2iso/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-cdr/uif2iso/uif2iso-0.1.7c-r1.ebuild app-cdr/uif2iso/uif2iso-0.1.7c-r2.ebuild X-VCS-Directories: app-cdr/uif2iso/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: 458be8e9173787daf7fa5ee8226a672289c9c27e X-VCS-Branch: master Date: Tue, 26 Jul 2022 19:27:38 +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: d0efa678-82ea-4e84-a4dd-d8a8946543f6 X-Archives-Hash: 7cbb1735770a4eca58d7a6f804fcca22 commit: 458be8e9173787daf7fa5ee8226a672289c9c27e Author: David Seifert gentoo org> AuthorDate: Tue Jul 26 19:27:14 2022 +0000 Commit: David Seifert gentoo org> CommitDate: Tue Jul 26 19:27:14 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=458be8e9 app-cdr/uif2iso: update EAPI 6 -> 8 Signed-off-by: David Seifert gentoo.org> app-cdr/uif2iso/uif2iso-0.1.7c-r1.ebuild | 42 ----------------------------- app-cdr/uif2iso/uif2iso-0.1.7c-r2.ebuild | 45 ++++++++++++++++++++++++++++++++ 2 files changed, 45 insertions(+), 42 deletions(-) diff --git a/app-cdr/uif2iso/uif2iso-0.1.7c-r1.ebuild b/app-cdr/uif2iso/uif2iso-0.1.7c-r1.ebuild deleted file mode 100644 index 5c029a5a00fb..000000000000 --- a/app-cdr/uif2iso/uif2iso-0.1.7c-r1.ebuild +++ /dev/null @@ -1,42 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="6" -inherit toolchain-funcs - -DESCRIPTION="Convert CD images from uif (MagicISO) to iso" -HOMEPAGE="http://aluigi.altervista.org/mytoolz.htm#uif2iso" -SRC_URI="mirror://gentoo/${P}.zip - test? ( https://yegortimoshenko.s3.amazonaws.com/${PN}-test.iso - https://yegortimoshenko.s3.amazonaws.com/${PN}-test.uif )" - -LICENSE="GPL-2+" -SLOT="0" -KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux ~x64-macos" -IUSE="test" -RESTRICT="!test? ( test )" - -RDEPEND="sys-libs/zlib" -DEPEND="${RDEPEND} - app-arch/unzip" - -S="${WORKDIR}" - -src_compile() { - emake CC="$(tc-getCC)" -C src -f - <<-'EOF' - CPPFLAGS += -DMAGICISO_IS_SHIT - LDLIBS = -lz - uif2iso: $(patsubst %.c,%.o,$(wildcard *.c)) - EOF -} - -src_test() { - einfo "checking that uif -> iso matches the expected output" - src/${PN} "${DISTDIR}/${PN}-test.uif" "${T}/${PN}-test.iso" # always returns 1 - diff "${DISTDIR}/${PN}-test.iso" "${T}/${PN}-test.iso" || die "unexpected iso" -} - -src_install() { - dobin src/${PN} - dodoc ${PN}.txt README -} diff --git a/app-cdr/uif2iso/uif2iso-0.1.7c-r2.ebuild b/app-cdr/uif2iso/uif2iso-0.1.7c-r2.ebuild new file mode 100644 index 000000000000..ae20184cc167 --- /dev/null +++ b/app-cdr/uif2iso/uif2iso-0.1.7c-r2.ebuild @@ -0,0 +1,45 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit toolchain-funcs + +DESCRIPTION="Convert CD images from uif (MagicISO) to iso" +HOMEPAGE="http://aluigi.altervista.org/mytoolz.htm#uif2iso" +SRC_URI=" + mirror://gentoo/${P}.zip + test? ( + https://yegortimoshenko.s3.amazonaws.com/${PN}-test.iso + https://yegortimoshenko.s3.amazonaws.com/${PN}-test.uif + )" +S="${WORKDIR}" + +LICENSE="GPL-2+" +SLOT="0" +KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux ~x64-macos" +IUSE="test" +RESTRICT="!test? ( test )" + +RDEPEND="sys-libs/zlib" +DEPEND="${RDEPEND}" +BDEPEND="app-arch/unzip" + +src_compile() { + emake CC="$(tc-getCC)" -C src -f - <<- 'EOF' + CPPFLAGS += -DMAGICISO_IS_SHIT + LDLIBS = -lz + uif2iso: $(patsubst %.c,%.o,$(wildcard *.c)) + EOF +} + +src_test() { + einfo "checking that uif -> iso matches the expected output" + src/uif2iso "${DISTDIR}"/uif2iso-test.uif "${T}"/uif2iso-test.iso # always returns 1 + diff "${DISTDIR}"/uif2iso-test.iso "${T}"/uif2iso-test.iso || die "unexpected iso" +} + +src_install() { + dobin src/uif2iso + dodoc uif2iso.txt README +}