diff options
author | Sam James <sam@gentoo.org> | 2022-08-11 10:41:44 +0100 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2022-08-11 10:42:02 +0100 |
commit | d63cf4ea98e6bff49b67e811d34e27f55a5fa16e (patch) | |
tree | 92178f110b10cc6155af374a6e2485ca493a20a3 /net-misc/chrony/chrony-9999.ebuild | |
parent | kde-frameworks/breeze-icons-rcc: fix PythonAnyMismatchedDepHasVersionCheck (diff) | |
download | gentoo-d63cf4ea98e6bff49b67e811d34e27f55a5fa16e.tar.gz gentoo-d63cf4ea98e6bff49b67e811d34e27f55a5fa16e.tar.bz2 gentoo-d63cf4ea98e6bff49b67e811d34e27f55a5fa16e.zip |
net-misc/chrony: add 4.3_pre1 (unkeyworded)
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'net-misc/chrony/chrony-9999.ebuild')
-rw-r--r-- | net-misc/chrony/chrony-9999.ebuild | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/net-misc/chrony/chrony-9999.ebuild b/net-misc/chrony/chrony-9999.ebuild index 57c2893c3532..c52e4bdbf30f 100644 --- a/net-misc/chrony/chrony-9999.ebuild +++ b/net-misc/chrony/chrony-9999.ebuild @@ -1,14 +1,14 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 +EAPI=8 -inherit systemd tmpfiles toolchain-funcs +inherit edo systemd tmpfiles toolchain-funcs DESCRIPTION="NTP client and server programs" HOMEPAGE="https://chrony.tuxfamily.org/ https://git.tuxfamily.org/chrony/chrony.git" -if [[ ${PV} == "9999" ]] ; then +if [[ ${PV} == 9999 ]] ; then EGIT_REPO_URI="https://git.tuxfamily.org/chrony/chrony.git" inherit git-r3 else @@ -19,7 +19,7 @@ else SRC_URI+=" verify-sig? ( https://download.tuxfamily.org/chrony/${P/_/-}-tar-gz-asc.txt -> ${P/_/-}.tar.gz.asc )" if [[ ${PV} != *_pre* ]] ; then - KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86" + KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~m68k ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86" fi fi @@ -65,7 +65,7 @@ BDEPEND=" ) " -if [[ ${PV} == "9999" ]] ; then +if [[ ${PV} == 9999 ]] ; then # Needed for doc generation in 9999 REQUIRED_USE+=" html" BDEPEND+=" virtual/w3m" @@ -141,12 +141,11 @@ src_configure() { ) # Print the ./configure call - echo sh ./configure "${myconf[@]}" >&2 - sh ./configure "${myconf[@]}" || die + edo ./configure "${myconf[@]}" || die } src_compile() { - if [[ ${PV} == "9999" ]] ; then + if [[ ${PV} == 9999 ]] ; then # Uses w3m emake -C doc man txt fi |