diff options
author | Julien Roy <julien@jroy.ca> | 2024-04-15 16:23:53 -0400 |
---|---|---|
committer | Julien Roy <julien@jroy.ca> | 2024-04-15 16:26:47 -0400 |
commit | 03c008ab93e1f23e37d5c41624cc5d5dbec5aba3 (patch) | |
tree | b779a060f1e41eb9aec82597a5bd1e2ab99c595b /app-shells | |
parent | app-misc/yazi: add 0.2.4 (diff) | |
download | guru-03c008ab93e1f23e37d5c41624cc5d5dbec5aba3.tar.gz guru-03c008ab93e1f23e37d5c41624cc5d5dbec5aba3.tar.bz2 guru-03c008ab93e1f23e37d5c41624cc5d5dbec5aba3.zip |
Revert "app-shells/wttr-in: curl wrapper, maybe will be extended in the future"
This reverts commit 2b3560eb47f1a78a2c3480129ce104925796391e.
See-also: https://bugs.gentoo.org/927922#c39
See-also: https://bugs.gentoo.org/927922#c41
Signed-off-by: Julien Roy <julien@jroy.ca>
Diffstat (limited to 'app-shells')
-rw-r--r-- | app-shells/wttr-in/metadata.xml | 8 | ||||
-rw-r--r-- | app-shells/wttr-in/wttr-in-9999.ebuild | 30 |
2 files changed, 0 insertions, 38 deletions
diff --git a/app-shells/wttr-in/metadata.xml b/app-shells/wttr-in/metadata.xml deleted file mode 100644 index 812e586b9..000000000 --- a/app-shells/wttr-in/metadata.xml +++ /dev/null @@ -1,8 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> - <maintainer type="person"> - <name>Vitaly Zdanevich</name> - <email>zdanevich.vitaly@ya.ru</email> - </maintainer> -</pkgmetadata> diff --git a/app-shells/wttr-in/wttr-in-9999.ebuild b/app-shells/wttr-in/wttr-in-9999.ebuild deleted file mode 100644 index e1f8bc8f4..000000000 --- a/app-shells/wttr-in/wttr-in-9999.ebuild +++ /dev/null @@ -1,30 +0,0 @@ -# Copyright 2024 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -DESCRIPTION="Weather in terminal - just a curl to wttr.in" -HOMEPAGE="https://wttr.in/" -LICENSE="GPL-3" - -SLOT="0" -KEYWORDS="~amd64" - -RDEPEND="net-misc/curl" - -S="$WORKDIR" - -src_install() { - dodir /usr/bin/ - echo "curl wttr.in/\$@" > "$ED/usr/bin/weather" - fperms +x "/usr/bin/weather" - # TODO add options from https://github.com/chubin/wttr.in#one-line-output - # TODO wrap in a script to add support of '-h'? - # TODO add `curl v2.wttr.in/batumi` -} - -pkg_postinst() { - einfo "Run weather command" - einfo "You can specify the city with 'weather batumi'" - einfo "For help: 'weather :help'" -} |