Сравнение apt-cacher-ng-3.7.4_p1-r2 с apt-cacher-ng-9999

/usr/portage/net-misc/apt-cacher-ng/apt-cacher-ng-9999.ebuild 2026-05-27 19:17:04.702302298 +0300
3 3

  
4 4
EAPI=8
5 5

  
6
inherit cmake tmpfiles
7

  
8
MY_PV="${PV/_p/-}"
9
MY_P="${PN}-debian-${MY_PV}"
6
inherit cmake git-r3 tmpfiles
10 7

  
11 8
DESCRIPTION="Yet another caching HTTP proxy for Debian/Ubuntu software packages"
12 9
HOMEPAGE="https://www.unix-ag.uni-kl.de/~bloch/acng/
13 10
	https://packages.qa.debian.org/a/apt-cacher-ng.html"
14
SRC_URI="https://salsa.debian.org/blade/${PN}/-/archive/debian/${MY_PV}/${MY_P}.tar.gz"
11
EGIT_REPO_URI="https://salsa.debian.org/blade/apt-cacher-ng.git"
12
EGIT_BRANCH="upstream/sid"
15 13

  
16 14
LICENSE="BSD-4 ZLIB public-domain"
17 15
SLOT="0"
18
KEYWORDS="~amd64 ~arm64 ~x86"
19 16
IUSE="doc fuse selinux systemd tcpd"
20 17

  
21 18
DEPEND="acct-user/apt-cacher-ng
......
23 20
	app-arch/bzip2
24 21
	dev-libs/libevent:=[threads(+)]
25 22
	dev-libs/openssl:0=
26
	net-dns/c-ares:=
27 23
	virtual/zlib:=
28 24
	fuse? ( sys-fs/fuse:0 )
29 25
	systemd? ( sys-apps/systemd )
......
36 32
PATCHES=(
37 33
	"${FILESDIR}/${PN}-3.3.1-flags.patch"
38 34
	"${FILESDIR}/${PN}-3.5-perl-syntax.patch"
39
	"${FILESDIR}/${PN}-3.6-optional-systemd.patch"
40
	"${FILESDIR}/${PN}-3.7.4-strlcpy-glibc-2.38.patch"
41
	"${FILESDIR}/${PN}-3.7.4-musl.patch"
42
	"${FILESDIR}/${PN}-3.7.4-gcc14.patch"
43 35
)
44 36

  
45
S="${WORKDIR}/${MY_P}"
37
S="${WORKDIR}/${P/_*}"
46 38

  
47 39
src_prepare() {
48 40
	# Fixup systemd/CMakeLists.txt cmake version requirement
......
52 44
	# switching from mostly custom src_install to relying on build system
53 45
	# installation
54 46
	sed -e "/install/s/LIBDIR/CFGDIR/" \
55
		-e "/install.*acng\.conf/s/)$/ RENAME ${PN}.conf)/" \
56
		-e "/file/s/)$/ \"*hooks\" \"backends_debian\")/" -i conf/CMakeLists.txt || die
57
	sed -ie "/INSTALL.*acngtool/s/LIBDIR/CMAKE_INSTALL_SBINDIR/" src/CMakeLists.txt || die
47
		-e '/install.*acng\.conf/s/)$/ RENAME '"${PN}"'.conf)/' \
48
		-e '/file/s/)$/ "*hooks" "backends_debian")/' -i conf/CMakeLists.txt || die
49
	sed -ie "/INSTALL.*acngtool/s/LIBDIR/CMAKE_INSTALL_SBINDIR/" source/CMakeLists.txt || die
58 50

  
59 51
	cmake_src_prepare
60 52
}
Спасибо!