mail-client/bower: upstream release 0.10

See https://notmuchmail.org/pipermail/notmuch/2019/027349.html
for the official announcement text.

Signed-off-by: Ralph Seichter <gentoo@seichter.de>
Package-Manager: Portage-2.3.51, Repoman-2.3.11
Closes: https://github.com/gentoo/gentoo/pull/11052
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
This commit is contained in:
Ralph Seichter
2019-02-14 17:27:13 +01:00
committed by Andreas Sturmlechner
parent ddbbf4f080
commit f386a52fd2
2 changed files with 40 additions and 0 deletions

View File

@@ -1 +1,2 @@
DIST bower-0.10.tar.gz 261487 BLAKE2B 861ee1e17787586f12795fb507cb32fd2d63b8831083354aed9f710c06cc8714ede7421d64c7aa6f2a52aec954be89fe15f1a4a2292d044c9b6a754c754d9667 SHA512 54ba7492008f1f6f1495b0d8a7585965ecf6ba16701bd19234dc761190db701d7cdc9a4e0e5995846f2feb08018a217a0e405dea0dacb3fbfb5681ed66529b9a
DIST bower-0.9.tar.gz 256921 BLAKE2B b8bd1f179209051e5c870ceeb9efec0345a488726497775b81a87329ce6ee3b0aa0c0f6c5be8b8c2481cb9469977b549af15e1ddc302d360f3e6a79cbf560eb8 SHA512 697b5e221356cac8284da9002053e6289df25ba82f0039301643e16e40a1bda6010c9d54dd4c7a3e4c47cdbe9373713248ef2bd182df56bb035db93d089798c2

View File

@@ -0,0 +1,39 @@
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit multiprocessing
DESCRIPTION="A curses terminal client for the Notmuch email system"
HOMEPAGE="https://github.com/wangp/bower"
SRC_URI="https://github.com/wangp/bower/archive/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-3+"
SLOT="0"
KEYWORDS="~amd64"
IUSE=""
COMMON_DEPEND="app-crypt/gpgme:=
sys-libs/ncurses:0="
DEPEND="${COMMON_DEPEND}
>=dev-lang/mercury-11.07"
RDEPEND="${COMMON_DEPEND}
net-mail/notmuch
sys-apps/coreutils"
src_prepare() {
default
if has_version "sys-libs/ncurses:0[tinfo]" ; then
echo "MLLIBS-bower += -ltinfow" >> src/Mercury.params || die
fi
}
src_compile() {
emake PARALLEL="--jobs $(makeopts_jobs) --no-strip --very-verbose"
}
src_install() {
dobin bower
dodoc AUTHORS NEWS README.md bower.conf.sample
}