diff options
author | Matt Jolly <Matt.Jolly@footclan.ninja> | 2023-06-17 08:00:15 +1000 |
---|---|---|
committer | Joonas Niilola <juippis@gentoo.org> | 2023-06-29 15:53:53 +0300 |
commit | 16f0b6ac84c57e8d34b6e41f1d49ce4c76f48a96 (patch) | |
tree | 8eace76ffafc6a2fbd413233b70dfdf5a43f6699 /app-arch | |
parent | app-arch/drpm: add 0.5.2; update live (diff) | |
download | gentoo-16f0b6ac84c57e8d34b6e41f1d49ce4c76f48a96.tar.gz gentoo-16f0b6ac84c57e8d34b6e41f1d49ce4c76f48a96.tar.bz2 gentoo-16f0b6ac84c57e8d34b6e41f1d49ce4c76f48a96.zip |
app-arch/drpm: drop 0.5.1
Signed-off-by: Matt Jolly <Matt.Jolly@footclan.ninja>
Closes: https://github.com/gentoo/gentoo/pull/31490
Signed-off-by: Joonas Niilola <juippis@gentoo.org>
Diffstat (limited to 'app-arch')
-rw-r--r-- | app-arch/drpm/Manifest | 1 | ||||
-rw-r--r-- | app-arch/drpm/drpm-0.5.1.ebuild | 48 |
2 files changed, 0 insertions, 49 deletions
diff --git a/app-arch/drpm/Manifest b/app-arch/drpm/Manifest index 351d428aff58..63017e871b0f 100644 --- a/app-arch/drpm/Manifest +++ b/app-arch/drpm/Manifest @@ -1,2 +1 @@ -DIST drpm-0.5.1.tar.gz 138766 BLAKE2B dd64d925fa0e3975e2ca6f87fcddf10e376241d6b69a0f682cc5d6c006ef6aba7c021bcb98d049f4ce171b1561f36a07701e9eb47e0ac3c8315ee2d6d774c7c7 SHA512 5d4be3148075c6e0c560f97169a14e669a01ed48ef9228d8fc299b54da653ddec1110971a5b2bf455cc72cd1538d8c95e817428f73dd1d7ce07773822c05b3c5 DIST drpm-0.5.2.tar.gz 138930 BLAKE2B b2d57e35bf62e94ba23212518a57c22a5638c270a38b07e77799e4c054e82391a08bd40a34adb78e5e5a9cf6c895895146b3619c953a1f0d312a8790652fda55 SHA512 591ffb6b28b1d4c6dda25746a76563c0fa15f48368e2593dbd00a2652dea78b635c8e28f6e50cf824450d9938652ddf3712c877135d66a7b762f1223b38e9ab4 diff --git a/app-arch/drpm/drpm-0.5.1.ebuild b/app-arch/drpm/drpm-0.5.1.ebuild deleted file mode 100644 index 9855a5ab410a..000000000000 --- a/app-arch/drpm/drpm-0.5.1.ebuild +++ /dev/null @@ -1,48 +0,0 @@ -# Copyright 2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit cmake - -DESCRIPTION="A library for making, reading and applying deltarpm packages" -HOMEPAGE="https://github.com/rpm-software-management/drpm" -if [[ ${PV} = 9999* ]]; then - inherit git-r3 - EGIT_REPO_URI="https://github.com/rpm-software-management/drpm/" -else - SRC_URI="https://github.com/rpm-software-management/drpm/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="~amd64 ~x86" -fi - -LICENSE="LGPL-2.1+" -SLOT="0" - -IUSE="lzip test zstd" -RESTRICT="!test? ( test )" - -DEPEND=" - app-arch/bzip2:= - app-arch/rpm - app-arch/xz-utils - dev-libs/openssl:= - sys-libs/zlib - lzip? ( app-arch/lzlib ) - zstd? ( app-arch/zstd:= ) -" -RDEPEND="${DEPEND}" -BDEPEND="${DEPEND} - test? ( dev-util/cmocka ) -" - -PATCHES=( "${FILESDIR}"/${P}-c99.patch ) - -src_configure() { - local mycmakeargs=( - -DHAVE_LZLIB_DEVEL=$(usex lzip ON OFF) - -DWITH_ZSTD=$(usex zstd ON OFF) - -DENABLE_TESTS=$(usex test ON OFF) - ) - - cmake_src_configure -} |