gentoo/app-arch/drpm/drpm-0.5.2.ebuild
Michał Górny ce9200747d
app-*/*: update for virtual/zlib
Update done using:

```
git grep -l zlib app-* | xargs sed -i -e s@sys-libs/zlib@virtual/zlib@g
git diff --name-only | xargs copybump
git diff --name-only | xargs grep -l PYTHON_COMPAT | xargs gpy-impl -@dead
pkgcheck scan --commits -c VisibilityCheck --exit error
```

Signed-off-by: Michał Górny <mgorny@gentoo.org>
2025-11-04 09:01:15 +01:00

51 lines
1.0 KiB
Bash

# Copyright 2023-2025 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:=
virtual/zlib
lzip? ( app-arch/lzlib )
zstd? ( app-arch/zstd:= )
"
RDEPEND="${DEPEND}"
BDEPEND="${DEPEND}
test? ( dev-util/cmocka )
"
PATCHES=(
"${FILESDIR}/${P}-cmake4.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
}