diff options
author | Azamat H. Hackimov <azamat.hackimov@gmail.com> | 2022-11-26 16:14:09 +0300 |
---|---|---|
committer | Joonas Niilola <juippis@gentoo.org> | 2022-12-09 08:53:59 +0200 |
commit | 425fdd4a020ecff998e19036cd41ddf70c56d54d (patch) | |
tree | 7da8400234204b88a52a505af7001519811535ab /app-arch/qpress | |
parent | app-arch/qpress: add 20220819 version (diff) | |
download | gentoo-425fdd4a020ecff998e19036cd41ddf70c56d54d.tar.gz gentoo-425fdd4a020ecff998e19036cd41ddf70c56d54d.tar.bz2 gentoo-425fdd4a020ecff998e19036cd41ddf70c56d54d.zip |
app-arch/qpress: drop 1.1-r1
Signed-off-by: Azamat H. Hackimov <azamat.hackimov@gmail.com>
Bug: https://bugs.gentoo.org/882781
Closes: https://github.com/gentoo/gentoo/pull/28438
Signed-off-by: Joonas Niilola <juippis@gentoo.org>
Diffstat (limited to 'app-arch/qpress')
-rw-r--r-- | app-arch/qpress/Manifest | 1 | ||||
-rw-r--r-- | app-arch/qpress/files/qpress-1.1-fix-build-system.patch | 7 | ||||
-rw-r--r-- | app-arch/qpress/files/qpress-1.1-fix-includes.patch | 7 | ||||
-rw-r--r-- | app-arch/qpress/qpress-1.1-r1.ebuild | 31 |
4 files changed, 0 insertions, 46 deletions
diff --git a/app-arch/qpress/Manifest b/app-arch/qpress/Manifest index ef01d19079e1..6d228f011e70 100644 --- a/app-arch/qpress/Manifest +++ b/app-arch/qpress/Manifest @@ -1,2 +1 @@ -DIST qpress-11-source.zip 26998 BLAKE2B 08dd943f248f7211e8588fbaf7a2c2eee988d33b17aebfb5f1178647d80314fde576caec9b4aab67d69689f5931d086f88fd51204c1df6d3abc2cca583830380 SHA512 986754cca8bb2cdcfc7e197f7e123c6b2da90db840642a6385f14613f49f7ec6b2c18944838405fe35d5382d71fcd5d69050a036dda4c5de2e588d144e16ea6b DIST qpress-20220819.tar.gz 25150 BLAKE2B e19a2bca747ec48507288b1b1ad8e053cfb35558f5936dff4ff83c548a3ab613a640813fc3b793e7acb1b65f371af414635d7e469e92c014b580efce4f84ee90 SHA512 f9cf4f87c25fdaa9b8ed12bbfb8d95c3036a7c5c1a0548042ba460b79787a83d5cd2ad93f2da84e5b6715ade5e137024541a3f29e076d4236d0507e2c604113c diff --git a/app-arch/qpress/files/qpress-1.1-fix-build-system.patch b/app-arch/qpress/files/qpress-1.1-fix-build-system.patch deleted file mode 100644 index b6f7c0f2841b..000000000000 --- a/app-arch/qpress/files/qpress-1.1-fix-build-system.patch +++ /dev/null @@ -1,7 +0,0 @@ ---- a/makefile -+++ b/makefile -@@ -1,2 +1 @@ --g++: qpress.cpp aio.cpp quicklz.c utilities.cpp -- g++ -O3 -o qpress qpress.cpp aio.cpp quicklz.c utilities.cpp -lpthread -\ No newline at end of file -+qpress: aio.o quicklz.o utilities.o diff --git a/app-arch/qpress/files/qpress-1.1-fix-includes.patch b/app-arch/qpress/files/qpress-1.1-fix-includes.patch deleted file mode 100644 index 51bfee465aa9..000000000000 --- a/app-arch/qpress/files/qpress-1.1-fix-includes.patch +++ /dev/null @@ -1,7 +0,0 @@ ---- a/qpress.cpp -+++ b/qpress.cpp -@@ -1,3 +1,4 @@ -+#include <unistd.h> - /*
- qpress - portable high-speed file archiver
- Copyright Lasse Reinhold 2006-2010
diff --git a/app-arch/qpress/qpress-1.1-r1.ebuild b/app-arch/qpress/qpress-1.1-r1.ebuild deleted file mode 100644 index ba05bad121ce..000000000000 --- a/app-arch/qpress/qpress-1.1-r1.ebuild +++ /dev/null @@ -1,31 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -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-1 GPL-2 GPL-3" -SLOT="0" -KEYWORDS="~amd64 ~x86" - -BDEPEND="app-arch/unzip" - -PATCHES=( - "${FILESDIR}/${PN}-1.1-fix-includes.patch" - "${FILESDIR}/${PN}-1.1-fix-build-system.patch" -) - -src_configure() { - tc-export CC CXX - export LDLIBS="-lpthread" -} - -src_install() { - dobin qpress -} |