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 8CB97158094 for ; Sun, 31 Jul 2022 14:10:04 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B960FE0886; Sun, 31 Jul 2022 14:10:03 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 97513E0886 for ; Sun, 31 Jul 2022 14:10:03 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id BE97433BEE9 for ; Sun, 31 Jul 2022 14:10:02 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 53F75500 for ; Sun, 31 Jul 2022 14:10:01 +0000 (UTC) From: "Conrad Kostecki" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Conrad Kostecki" Message-ID: <1659276590.51fdc546c27f6ebbd151d53cae3d4316d564c2f0.conikost@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-arch/qpress/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-arch/qpress/qpress-1.1-r1.ebuild app-arch/qpress/qpress-1.1.ebuild X-VCS-Directories: app-arch/qpress/ X-VCS-Committer: conikost X-VCS-Committer-Name: Conrad Kostecki X-VCS-Revision: 51fdc546c27f6ebbd151d53cae3d4316d564c2f0 X-VCS-Branch: master Date: Sun, 31 Jul 2022 14:10:01 +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: 539d4afe-34a5-4bf2-ad99-1e1e49ccbf10 X-Archives-Hash: 3adb599e934a6d4b4a2e4d0110a457fd commit: 51fdc546c27f6ebbd151d53cae3d4316d564c2f0 Author: Conrad Kostecki gentoo org> AuthorDate: Sun Jul 31 14:09:12 2022 +0000 Commit: Conrad Kostecki gentoo org> CommitDate: Sun Jul 31 14:09:50 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=51fdc546 app-arch/qpress: EAPI 7 -> 8 Also corrected license. Signed-off-by: Conrad Kostecki gentoo.org> .../qpress/{qpress-1.1.ebuild => qpress-1.1-r1.ebuild} | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/app-arch/qpress/qpress-1.1.ebuild b/app-arch/qpress/qpress-1.1-r1.ebuild similarity index 70% rename from app-arch/qpress/qpress-1.1.ebuild rename to app-arch/qpress/qpress-1.1-r1.ebuild index 21904daf9eb3..ba05bad121ce 100644 --- a/app-arch/qpress/qpress-1.1.ebuild +++ b/app-arch/qpress/qpress-1.1-r1.ebuild @@ -1,25 +1,24 @@ -# 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 inherit toolchain-funcs DESCRIPTION="A portable file archiver using QuickLZ algorithm" HOMEPAGE="http://www.quicklz.com/" SRC_URI="http://www.quicklz.com/${PN}-${PV/./}-source.zip" +S="${WORKDIR}" -LICENSE="GPL-3" +LICENSE="GPL-1 GPL-2 GPL-3" SLOT="0" KEYWORDS="~amd64 ~x86" BDEPEND="app-arch/unzip" -S="${WORKDIR}" - PATCHES=( - "${FILESDIR}"/${PN}-1.1-fix-includes.patch - "${FILESDIR}"/${PN}-1.1-fix-build-system.patch + "${FILESDIR}/${PN}-1.1-fix-includes.patch" + "${FILESDIR}/${PN}-1.1-fix-build-system.patch" ) src_configure() { @@ -28,5 +27,5 @@ src_configure() { } src_install() { - dobin ${PN} + dobin qpress }