app-arch/libarchive-qt: drop 2.0.6-r1, 2.0.7, 9999

Signed-off-by: Takuya Wakazono <pastalian46@gmail.com>
This commit is contained in:
Takuya Wakazono
2024-08-21 23:26:36 +09:00
parent 81584f0a03
commit 85ffb91fe3
4 changed files with 0 additions and 118 deletions

View File

@@ -1,3 +1 @@
DIST libarchive-qt-2.0.6.tar.bz2 90085 BLAKE2B 7b2cec4a1d9cb21a16c89a6b9c35c7182f34d55051993e6e9e849ed4058f032c473365e429411e8e5ba0957f118f24fcf68b23b0b6a8b21bacaf2784d2641958 SHA512 d2690667843a11249bda5b393d34db5dc319959d0d92f09d6eb4dd23b2237c41f61232fb93a5036b8570a8db1014445118712c4f2d686ea6105b5449c1c17111
DIST libarchive-qt-2.0.7.tar.bz2 90068 BLAKE2B f2da9011fe5bed9c1a1ec7272fb62075d2817505d2241955b15c360a40088046bdecf0f2dbc71dec44756ce43ed5e3b8313965bdf8604d10238d25a62c237830 SHA512 658225cff805291786b24a941c6f0dce81b3e2412ed6550281d0e55a95a71efaa1a44dfa4790536ecb75e11f0d7ef0e53da944ea0d08b0be214a85f6d969674c
DIST libarchive-qt-v2.0.8.tar.bz2 62808 BLAKE2B d5ee456e1d14b5e2547319d12bb62c9a8ca4182a68aa31025b14761823f12eebad9692bd09d7af2e3600a0effc060b60a1053e6dbb834758559821ecd69e63e7 SHA512 ce25d207b21659c17efc9110b1e62bfae5270a53b00d2a1e65377fc5df2afb0f3051d31210441d0ea3dadcfbccfb62c994893145d890a4c2215a7bf7dd231d1a

View File

@@ -1,39 +0,0 @@
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit xdg cmake
DESCRIPTION="A Qt based archiving solution with libarchive backend"
HOMEPAGE="https://gitlab.com/marcusbritanicus/libarchive-qt"
if [[ "${PV}" == *9999* ]]; then
inherit git-r3
EGIT_REPO_URI="https://gitlab.com/marcusbritanicus/${PN}.git"
else
SRC_URI="https://gitlab.com/marcusbritanicus/${PN}/-/archive/v${PV}/${PN}-v${PV}.tar.bz2 -> ${P}.tar.bz2"
KEYWORDS="~amd64"
S="${WORKDIR}/${PN}-v${PV}"
fi
LICENSE="LGPL-3"
SLOT="0"
IUSE="static-libs"
RESTRICT="test"
DEPEND="
app-arch/libarchive[lzma,bzip2,zlib(+)]
app-arch/lrzip
app-arch/lzip
app-arch/lzop
dev-qt/qtgui:5
"
RDEPEND="${DEPEND}"
src_configure() {
local mycmakeargs=(
-DINSTALL_STATIC=$(usex static-libs)
)
cmake_src_configure
}

View File

@@ -1,38 +0,0 @@
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit xdg meson
DESCRIPTION="A Qt based archiving solution with libarchive backend"
HOMEPAGE="https://gitlab.com/marcusbritanicus/libarchive-qt"
if [[ "${PV}" == *9999* ]]; then
inherit git-r3
EGIT_REPO_URI="https://gitlab.com/marcusbritanicus/${PN}.git"
else
SRC_URI="https://gitlab.com/marcusbritanicus/${PN}/-/archive/v${PV}/${PN}-v${PV}.tar.bz2 -> ${P}.tar.bz2"
KEYWORDS="~amd64"
S="${WORKDIR}/${PN}-v${PV}"
fi
LICENSE="LGPL-3+"
SLOT="0"
IUSE="qt6"
DEPEND="
app-arch/libarchive:=
sys-libs/zlib
!qt6? ( dev-qt/qtcore:5 )
qt6? ( dev-qt/qtbase:6 )
"
RDEPEND="${DEPEND}"
src_configure() {
local emesonargs=(
-Dinstall_static=false
-Duse_qt_version=$(usex qt6 qt6 qt5)
)
meson_src_configure
}

View File

@@ -1,39 +0,0 @@
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit xdg meson
DESCRIPTION="A Qt based archiving solution with libarchive backend"
HOMEPAGE="https://gitlab.com/marcusbritanicus/libarchive-qt"
if [[ "${PV}" == *9999* ]]; then
inherit git-r3
EGIT_REPO_URI="https://gitlab.com/marcusbritanicus/${PN}.git"
else
SRC_URI="https://gitlab.com/marcusbritanicus/${PN}/-/archive/v${PV}/${PN}-v${PV}.tar.bz2 -> ${P}.tar.bz2"
S="${WORKDIR}/${PN}-v${PV}"
KEYWORDS="~amd64"
fi
LICENSE="LGPL-3"
SLOT="0"
IUSE="static-libs"
RESTRICT="test"
DEPEND="
app-arch/libarchive[lzma,bzip2,zlib(+)]
app-arch/lrzip
app-arch/lzip
app-arch/lzop
dev-qt/qtgui:5
"
RDEPEND="${DEPEND}"
src_configure() {
local emesonargs=(
$(meson_use static-libs install_static)
)
meson_src_configure
}