Сравнение dhcpcd-9.4.1 с dhcpcd-9.5.1
/usr/portage/net-misc/dhcpcd/dhcpcd-9.5.1.ebuild 2023-10-09 14:52:34.640368480 +0300 | ||
---|---|---|
1 |
# Copyright 1999-2022 Gentoo Authors |
|
1 |
# Copyright 1999-2023 Gentoo Authors |
|
2 | 2 |
# Distributed under the terms of the GNU General Public License v2 |
3 | 3 | |
4 |
EAPI=7 |
|
4 |
EAPI=8 |
|
5 | 5 | |
6 | 6 |
inherit systemd toolchain-funcs |
7 | 7 | |
8 |
if [[ ${PV} == "9999" ]]; then |
|
8 |
if [[ ${PV} == 9999 ]]; then |
|
9 | 9 |
inherit git-r3 |
10 | 10 |
EGIT_REPO_URI="https://github.com/NetworkConfiguration/dhcpcd.git" |
11 | 11 |
else |
12 | 12 |
MY_P="${P/_alpha/-alpha}" |
13 | 13 |
MY_P="${MY_P/_beta/-beta}" |
14 | 14 |
MY_P="${MY_P/_rc/-rc}" |
15 |
SRC_URI="https://roy.marples.name/downloads/${PN}/${MY_P}.tar.xz" |
|
15 |
SRC_URI="https://github.com/NetworkConfiguration/dhcpcd/releases/download/v${PV}/${P}.tar.xz" |
|
16 | ||
16 | 17 |
KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux" |
17 |
S="${WORKDIR}/${MY_P}" |
|
18 | 18 |
fi |
19 | 19 | |
20 | 20 |
DESCRIPTION="A fully featured, yet light weight RFC2131 compliant DHCP client" |
21 |
HOMEPAGE="https://github.com/NetworkConfiguration/dhcpcd/ |
|
22 |
https://roy.marples.name/projects/dhcpcd/" |
|
21 |
HOMEPAGE="https://github.com/NetworkConfiguration/dhcpcd/ https://roy.marples.name/projects/dhcpcd/" |
|
22 | ||
23 | 23 |
LICENSE="BSD-2" |
24 | 24 |
SLOT="0" |
25 | 25 |
IUSE="debug +embedded ipv6 privsep +udev" |
26 | 26 | |
27 |
COMMON_DEPEND="udev? ( virtual/udev )" |
|
28 |
DEPEND="${COMMON_DEPEND}" |
|
27 |
DEPEND="udev? ( virtual/udev )" |
|
29 | 28 |
RDEPEND=" |
30 |
${COMMON_DEPEND} |
|
29 |
${DEPEND} |
|
31 | 30 |
privsep? ( |
32 | 31 |
acct-group/dhcpcd |
33 | 32 |
acct-user/dhcpcd |