diff --git a/app-misc/ansiweather/Manifest b/app-misc/ansiweather/Manifest index 326140e0e9de9..c20acbe431a54 100644 --- a/app-misc/ansiweather/Manifest +++ b/app-misc/ansiweather/Manifest @@ -1 +1,2 @@ DIST ansiweather-1.19.0.tar.gz 14232 BLAKE2B b32cf2f4706759f296d5bb725627593a2dc3311bbc957a33cdebf6f7c36245006c84099d7437ee06fb39e8122d8ed5e532bdeefeae2a4d35ae741c2ec81bc2f2 SHA512 1dc521c904041a698fbb1a3a78f5a0b7d5bdc731258ab9cc384ee1a9f750c60723b0038288d7d98875672d167614f7bb8ca69ff1f7d38a28d52916afd5bda0a2 +DIST ansiweather-1.19.1.gh.tar.gz 14358 BLAKE2B 1470593a10d0355333ab5243c9b0537dc3b096a22915b50df75f00f3c18b47b4ac7f082f33a1e720ec1418806eb6861d2be62cb336f6dc67299323a792dd9e26 SHA512 49bce79a504aa51e23c356bbdf9999c75ed646c44c0eaa5b8cdef97a17e16b4b267d787e4e813e33a1e29a6dce246f029a6d42a944abd4d2e386120dda547b70 diff --git a/app-misc/ansiweather/ansiweather-1.19.1.ebuild b/app-misc/ansiweather/ansiweather-1.19.1.ebuild new file mode 100644 index 0000000000000..07ec1d8820839 --- /dev/null +++ b/app-misc/ansiweather/ansiweather-1.19.1.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=9 + +DESCRIPTION="Weather in terminal, with ANSI colors and Unicode symbols" +HOMEPAGE="https://github.com/fcambus/ansiweather/" + +if [[ ${PV} == *9999* ]] ; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/fcambus/${PN}" +else + SRC_URI="https://github.com/fcambus/${PN}/archive/${PV}.tar.gz + -> ${P}.gh.tar.gz" + KEYWORDS="~amd64 ~x86" +fi + +LICENSE="BSD-2" +SLOT="0" + +RDEPEND=" + app-misc/jq + app-alternatives/bc + || ( + net-misc/curl + net-ftp/ftp + net-misc/wget + ) +" + +DOCS=( AUTHORS ChangeLog README.md ansiweatherrc.example ) + +src_install() { + dobin "${PN}" + doman "${PN}.1" + einstalldocs +}