diff options
author | Mikle Kolyada <zlogene@gentoo.org> | 2021-02-22 17:01:54 +0300 |
---|---|---|
committer | Mikle Kolyada <zlogene@gentoo.org> | 2021-02-22 17:02:29 +0300 |
commit | 22b91dce308cbe2e6eb3dd7a1bf4c6f7136c2f4b (patch) | |
tree | 18f307f1acf9765419fad1cdfba42084c756955a /app-text/wgetpaste | |
parent | sys-apps/portage: Bump to version 3.0.15 (diff) | |
download | gentoo-22b91dce308cbe2e6eb3dd7a1bf4c6f7136c2f4b.tar.gz gentoo-22b91dce308cbe2e6eb3dd7a1bf4c6f7136c2f4b.tar.bz2 gentoo-22b91dce308cbe2e6eb3dd7a1bf4c6f7136c2f4b.zip |
app-text/wgetpaste: Version bump (v2.30_p20210222)
Package-Manager: Portage-3.0.13, Repoman-3.0.2
Signed-off-by: Mikle Kolyada <zlogene@gentoo.org>
Diffstat (limited to 'app-text/wgetpaste')
-rw-r--r-- | app-text/wgetpaste/Manifest | 1 | ||||
-rw-r--r-- | app-text/wgetpaste/wgetpaste-2.30_p20210222.ebuild | 30 |
2 files changed, 31 insertions, 0 deletions
diff --git a/app-text/wgetpaste/Manifest b/app-text/wgetpaste/Manifest index d09e0e617ae7..4f70da2f752b 100644 --- a/app-text/wgetpaste/Manifest +++ b/app-text/wgetpaste/Manifest @@ -1 +1,2 @@ +DIST f9b08c50009485817e8b44300f79a92e37fe9f22.tar.gz 14654 BLAKE2B e74332826f7faec3c2be2dddfd5f81d1ec14aec92888f27cdcd081b59262ac742003f2f48af3c3ca25be9e02f583a37dd1bec315236ab54912ebf6cf61308a10 SHA512 467daff5531fd6361ade87913ab867f67f72d5ffc07a35c263cd3dad65774ed31b3a6b0d69d2b52726a24419758d784c23e8c587f23e9028afd0e0a27966f32f DIST wgetpaste-2.29.tar.bz2 12988 BLAKE2B 838b84632754f6e07c25fe3648e14bf939dff4e08ae8e8064e94008beb436f77738e4f54859115321fbf445a323641ebfecf5fd7d09bbbb46c72e913687deb07 SHA512 6596842733bb5d1d52cbb3cbcf61ba714f0cbfdc13acb4d6025ccfd27c214adaf886ac3a0a11baefaa4af3f33165619e5a3360b4e0807d29e8dc8ef5ff819bb6 diff --git a/app-text/wgetpaste/wgetpaste-2.30_p20210222.ebuild b/app-text/wgetpaste/wgetpaste-2.30_p20210222.ebuild new file mode 100644 index 000000000000..29a23db93233 --- /dev/null +++ b/app-text/wgetpaste/wgetpaste-2.30_p20210222.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI="7" + +DESCRIPTION="Command-line interface to various pastebins" +HOMEPAGE="http://wgetpaste.zlin.dk/" + +COMMIT_HASH="f9b08c50009485817e8b44300f79a92e37fe9f22" +SRC_URI="https://github.com/zlin/wgetpaste/archive/${COMMIT_HASH}.tar.gz" + +LICENSE="public-domain" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos" +IUSE="+ssl" + +RDEPEND="net-misc/wget[ssl?]" + +S="${WORKDIR}/${PN}-${COMMIT_HASH}" + +src_prepare() { + sed -i -e "s:/etc:\"${EPREFIX}\"/etc:g" wgetpaste || die + default +} + +src_install() { + dobin ${PN} + insinto /usr/share/zsh/site-functions + doins _wgetpaste +} |