Gentoo Archives: gentoo-commits

From: Conrad Kostecki <conikost@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-arch/qpress/
Date: Sun, 31 Jul 2022 14:10:04
Message-Id: 1659276590.51fdc546c27f6ebbd151d53cae3d4316d564c2f0.conikost@gentoo
1 commit: 51fdc546c27f6ebbd151d53cae3d4316d564c2f0
2 Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jul 31 14:09:12 2022 +0000
4 Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
5 CommitDate: Sun Jul 31 14:09:50 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=51fdc546
7
8 app-arch/qpress: EAPI 7 -> 8
9
10 Also corrected license.
11
12 Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
13
14 .../qpress/{qpress-1.1.ebuild => qpress-1.1-r1.ebuild} | 15 +++++++--------
15 1 file changed, 7 insertions(+), 8 deletions(-)
16
17 diff --git a/app-arch/qpress/qpress-1.1.ebuild b/app-arch/qpress/qpress-1.1-r1.ebuild
18 similarity index 70%
19 rename from app-arch/qpress/qpress-1.1.ebuild
20 rename to app-arch/qpress/qpress-1.1-r1.ebuild
21 index 21904daf9eb3..ba05bad121ce 100644
22 --- a/app-arch/qpress/qpress-1.1.ebuild
23 +++ b/app-arch/qpress/qpress-1.1-r1.ebuild
24 @@ -1,25 +1,24 @@
25 -# Copyright 1999-2019 Gentoo Authors
26 +# Copyright 1999-2022 Gentoo Authors
27 # Distributed under the terms of the GNU General Public License v2
28
29 -EAPI=7
30 +EAPI=8
31
32 inherit toolchain-funcs
33
34 DESCRIPTION="A portable file archiver using QuickLZ algorithm"
35 HOMEPAGE="http://www.quicklz.com/"
36 SRC_URI="http://www.quicklz.com/${PN}-${PV/./}-source.zip"
37 +S="${WORKDIR}"
38
39 -LICENSE="GPL-3"
40 +LICENSE="GPL-1 GPL-2 GPL-3"
41 SLOT="0"
42 KEYWORDS="~amd64 ~x86"
43
44 BDEPEND="app-arch/unzip"
45
46 -S="${WORKDIR}"
47 -
48 PATCHES=(
49 - "${FILESDIR}"/${PN}-1.1-fix-includes.patch
50 - "${FILESDIR}"/${PN}-1.1-fix-build-system.patch
51 + "${FILESDIR}/${PN}-1.1-fix-includes.patch"
52 + "${FILESDIR}/${PN}-1.1-fix-build-system.patch"
53 )
54
55 src_configure() {
56 @@ -28,5 +27,5 @@ src_configure() {
57 }
58
59 src_install() {
60 - dobin ${PN}
61 + dobin qpress
62 }