commit: 8c5ad6fdaa3f3e48509809564816bf06822d03a1 Author: Ferenc Erki <erkiferenc <AT> gmail <DOT> com> AuthorDate: Sun Jan 26 20:20:48 2025 +0000 Commit: Florian Schmaus <flow <AT> gentoo <DOT> org> CommitDate: Sat Feb 1 14:47:37 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8c5ad6fd
app-misc/dateutils: add 0.4.11 Signed-off-by: Ferenc Erki <erkiferenc <AT> gmail.com> Closes: https://github.com/gentoo/gentoo/pull/40323 Signed-off-by: Florian Schmaus <flow <AT> gentoo.org> app-misc/dateutils/Manifest | 1 + app-misc/dateutils/dateutils-0.4.11.ebuild | 32 ++++++++++++++++++++++++++++++ 2 files changed, 33 insertions(+) diff --git a/app-misc/dateutils/Manifest b/app-misc/dateutils/Manifest index 31ee987f1cc0..738aff124fec 100644 --- a/app-misc/dateutils/Manifest +++ b/app-misc/dateutils/Manifest @@ -1 +1,2 @@ DIST dateutils-0.4.10.tar.xz 652548 BLAKE2B b1fe3b07edfd223c9265df99888bf2edc37458b487b0f3b913f4c19e23b86d4a7f8cb3f0610bf140e6ce0233a9008ccd26cbe0b1462c5f85b2424cd39ffcbdb7 SHA512 04a9fff177596bb9bc47d3b221865bbeafeafbc708385610845a1cdcb2a7fa379e8d9363cce578836ae121dab7ee64e19f61d82e8f222250e52d23c5f43cf521 +DIST dateutils-0.4.11.tar.xz 670468 BLAKE2B e492b03adf6c57a11e44bb31b20d4f2b0c27d9767bce7b31092a7937979ec7555b83010467ec6fa65bb17b96ccfa87b30179ea9f64d8b87086870a956c6e4f1b SHA512 601fa8197acdb68fe0688aed3fa2ba2fcf66b9a8ad23a0c7cb816a2cba9c645854ec8715a2127e02294cc068f63b09d0596eee60e151a8ad0edff22f54ec9d7a diff --git a/app-misc/dateutils/dateutils-0.4.11.ebuild b/app-misc/dateutils/dateutils-0.4.11.ebuild new file mode 100644 index 000000000000..7698904bd9ac --- /dev/null +++ b/app-misc/dateutils/dateutils-0.4.11.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DESCRIPTION="Command line date and time utilities" +HOMEPAGE="https://www.fresse.org/dateutils/ https://github.com/hroptatyr/dateutils" + +case "${PV}" in + 9999) + inherit autotools git-r3 + EGIT_REPO_URI="https://github.com/hroptatyr/dateutils.git" + ;; + *) + SRC_URI="https://github.com/hroptatyr/dateutils/releases/download/v${PV}/${P}.tar.xz" + KEYWORDS="~amd64 ~x86" +esac + +LICENSE="BSD" +SLOT="0" + +DEPEND="sys-libs/timezone-data" +RDEPEND="${DEPEND}" + +src_prepare() { + default + [[ "${PV}" = 9999 ]] && eautoreconf +} + +src_configure() { + econf CFLAGS="${CFLAGS}" +}
