diff options
author | Tim Harder <radhermit@gentoo.org> | 2017-08-22 11:24:31 -0400 |
---|---|---|
committer | Tim Harder <radhermit@gentoo.org> | 2017-08-22 11:24:31 -0400 |
commit | 905c09dcf636a02419897a6f057295c833216117 (patch) | |
tree | 730fa879933cb61c220be765e9ecd932092e79fc /app-text | |
parent | x11-misc/xdo: version bump to 0.5.6 (diff) | |
download | gentoo-905c09dcf636a02419897a6f057295c833216117.tar.gz gentoo-905c09dcf636a02419897a6f057295c833216117.tar.bz2 gentoo-905c09dcf636a02419897a6f057295c833216117.zip |
app-text/txt2man: version bump to 1.6.0
Diffstat (limited to 'app-text')
-rw-r--r-- | app-text/txt2man/Manifest | 1 | ||||
-rw-r--r-- | app-text/txt2man/txt2man-1.6.0.ebuild | 26 |
2 files changed, 27 insertions, 0 deletions
diff --git a/app-text/txt2man/Manifest b/app-text/txt2man/Manifest index 2555be44189a..fc2fa7d771e8 100644 --- a/app-text/txt2man/Manifest +++ b/app-text/txt2man/Manifest @@ -1 +1,2 @@ DIST txt2man-1.5.6.tar.gz 16293 SHA256 984825c5fd0cb3495160bf3277f327078081a8dc219dc466509e307ec9a2b52a SHA512 dd1cb5a6385d75b459fb61c49e0b73e5cafa5af8b11d9b89e5c206a9c5b65e4daac4d0e768c28963aacde772b715cb11ed0e843e42397b2df894a1f68c70ca65 WHIRLPOOL 50f16463f7ee77f030ca65e9eacdd4c0e7ec43d4e707c8952d5e08d4274beda51d955a624fe227340b436704658e2e7b20d585868bf84f3a01902cb49cdc36c1 +DIST txt2man-1.6.0.tar.gz 16941 SHA256 f6939e333a12e1ecceccaa547b58f4bf901a580cd2d8f822f8c292934c920c99 SHA512 7ec2cc0bb685d890cf06504d4faacf7a02c5a321963effb71ff63b7310f64f092e666c055c1dbdb699958a62272fe4dc0f31f3947ca6895aa425753a11b75379 WHIRLPOOL 98a09378f1415a6b5dc61a72d4b0fba3e4bb73995e28aaec860e6c36321c265bc37fb3daeccac2dca0bc67bb134898c0d211294eb4dcb8de9183a8427784ecc0 diff --git a/app-text/txt2man/txt2man-1.6.0.ebuild b/app-text/txt2man/txt2man-1.6.0.ebuild new file mode 100644 index 000000000000..52ff0bcf6dc6 --- /dev/null +++ b/app-text/txt2man/txt2man-1.6.0.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI="6" + +DESCRIPTION="Scripts to convert regular ASCII text to man pages" +HOMEPAGE="https://github.com/mvertes/txt2man" +SRC_URI="https://github.com/mvertes/txt2man/archive/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~sparc-solaris" +IUSE="" + +RDEPEND="app-shells/bash + sys-apps/gawk" + +S=${WORKDIR}/${PN}-${P} + +src_compile() { :; } + +src_install() { + dobin bookman src2man txt2man + doman *.1 + dodoc Changelog README +} |