diff options
author | 2017-03-18 18:43:46 +1100 | |
---|---|---|
committer | 2017-03-18 18:43:56 +1100 | |
commit | 9f726acfa6546d1e132d225663b48dfcf0f7fab0 (patch) | |
tree | 60c1ab249906a8d2bffbc9ab5251136c0ab1b4cb | |
parent | sys-block/rtsadmin: Remove last-rited pkg, #599838 (diff) | |
download | gentoo-9f726acfa6546d1e132d225663b48dfcf0f7fab0.tar.gz gentoo-9f726acfa6546d1e132d225663b48dfcf0f7fab0.tar.bz2 gentoo-9f726acfa6546d1e132d225663b48dfcf0f7fab0.zip |
net-misc/bti: version bump 034
Package-Manager: Portage-2.3.5, Repoman-2.3.2
-rw-r--r-- | net-misc/bti/Manifest | 1 | ||||
-rw-r--r-- | net-misc/bti/bti-034.ebuild | 38 |
2 files changed, 39 insertions, 0 deletions
diff --git a/net-misc/bti/Manifest b/net-misc/bti/Manifest index eb52053b5f8a..8a987f20be10 100644 --- a/net-misc/bti/Manifest +++ b/net-misc/bti/Manifest @@ -1 +1,2 @@ DIST bti-031.tar.bz2 89027 SHA256 1b2f509a818ec6b1a036daff9d56a9c7b2640741df3d0ec89376775890187cd5 SHA512 d930013eb45bdfbaa914444460f74448c8bb62f255b2db5c771736ba7c5bb71d0cf4651db76eba0f05fbd6c6a175c7bc8942d7657588bd27e18bf409bf02d9fd WHIRLPOOL 43cf7b10e01cc0f0c076faec79f9ce2f18fdd23350a72d1d081638f2d0c55f323e395fe088379455e6846b12df13a76fcbd4cc6f4bfc2835040e5c961734ed01 +DIST bti-034.tar.xz 93328 SHA256 8b4a1a11f529f83956468acadaea9d11db4f03e82afe07fecb84b2d00e9eae83 SHA512 2b7cd66cff617f7592863a1a8e03754b3dea314c8eeb98bf0993601d4d4db848a74b26941bbd04f57a348bf0d02aefca4e3125f00fed531a67a3f17f36e665ba WHIRLPOOL d75f679aa4d1c766a88a9124073befa4c3b320304c747d756aba0169918cce7c44660b8627002d8fa3503a635bb0b10c68f032837b93504f378f7093dfc02768 diff --git a/net-misc/bti/bti-034.ebuild b/net-misc/bti/bti-034.ebuild new file mode 100644 index 000000000000..65b7eb207a09 --- /dev/null +++ b/net-misc/bti/bti-034.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit bash-completion-r1 + +DESCRIPTION="A command line twitter/identi.ca client" +HOMEPAGE="https://gregkh.github.com/bti/" +SRC_URI="mirror://kernel/software/web/bti/${P}.tar.xz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +COMMON_DEPEND=" + dev-libs/json-c + dev-libs/libpcre + dev-libs/libxml2 + net-libs/liboauth + net-misc/curl +" +DEPEND="${COMMON_DEPEND} + virtual/pkgconfig +" +# Readline is dynamically loaded, for whatever reason, and can use +# libedit as an alternative... +RDEPEND="${COMMON_DEPEND} + || ( sys-libs/readline dev-libs/libedit ) +" + +DOCS=( bti.example ChangeLog README RELEASE-NOTES ) + +src_install() { + default + newbashcomp bti-bashcompletion ${PN} +} |