app-misc/ansiweather: bump to 1.19.1

Signed-off-by: Maciej Barć <xgqt@gentoo.org>
This commit is contained in:
Maciej Barć
2026-07-31 14:56:40 +02:00
parent ad35eeb853
commit fc9f3d52e2
2 changed files with 38 additions and 0 deletions

View File

@@ -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

View File

@@ -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
}