Gentoo Archives: gentoo-commits

From: Tim Harder <radhermit@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/txt2man/
Date: Tue, 22 Aug 2017 15:25:27
Message-Id: 1503415471.905c09dcf636a02419897a6f057295c833216117.radhermit@gentoo
1 commit: 905c09dcf636a02419897a6f057295c833216117
2 Author: Tim Harder <radhermit <AT> gentoo <DOT> org>
3 AuthorDate: Tue Aug 22 15:24:31 2017 +0000
4 Commit: Tim Harder <radhermit <AT> gentoo <DOT> org>
5 CommitDate: Tue Aug 22 15:24:31 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=905c09dc
7
8 app-text/txt2man: version bump to 1.6.0
9
10 app-text/txt2man/Manifest | 1 +
11 app-text/txt2man/txt2man-1.6.0.ebuild | 26 ++++++++++++++++++++++++++
12 2 files changed, 27 insertions(+)
13
14 diff --git a/app-text/txt2man/Manifest b/app-text/txt2man/Manifest
15 index 2555be44189..fc2fa7d771e 100644
16 --- a/app-text/txt2man/Manifest
17 +++ b/app-text/txt2man/Manifest
18 @@ -1 +1,2 @@
19 DIST txt2man-1.5.6.tar.gz 16293 SHA256 984825c5fd0cb3495160bf3277f327078081a8dc219dc466509e307ec9a2b52a SHA512 dd1cb5a6385d75b459fb61c49e0b73e5cafa5af8b11d9b89e5c206a9c5b65e4daac4d0e768c28963aacde772b715cb11ed0e843e42397b2df894a1f68c70ca65 WHIRLPOOL 50f16463f7ee77f030ca65e9eacdd4c0e7ec43d4e707c8952d5e08d4274beda51d955a624fe227340b436704658e2e7b20d585868bf84f3a01902cb49cdc36c1
20 +DIST txt2man-1.6.0.tar.gz 16941 SHA256 f6939e333a12e1ecceccaa547b58f4bf901a580cd2d8f822f8c292934c920c99 SHA512 7ec2cc0bb685d890cf06504d4faacf7a02c5a321963effb71ff63b7310f64f092e666c055c1dbdb699958a62272fe4dc0f31f3947ca6895aa425753a11b75379 WHIRLPOOL 98a09378f1415a6b5dc61a72d4b0fba3e4bb73995e28aaec860e6c36321c265bc37fb3daeccac2dca0bc67bb134898c0d211294eb4dcb8de9183a8427784ecc0
21
22 diff --git a/app-text/txt2man/txt2man-1.6.0.ebuild b/app-text/txt2man/txt2man-1.6.0.ebuild
23 new file mode 100644
24 index 00000000000..52ff0bcf6dc
25 --- /dev/null
26 +++ b/app-text/txt2man/txt2man-1.6.0.ebuild
27 @@ -0,0 +1,26 @@
28 +# Copyright 1999-2017 Gentoo Foundation
29 +# Distributed under the terms of the GNU General Public License v2
30 +
31 +EAPI="6"
32 +
33 +DESCRIPTION="Scripts to convert regular ASCII text to man pages"
34 +HOMEPAGE="https://github.com/mvertes/txt2man"
35 +SRC_URI="https://github.com/mvertes/txt2man/archive/${P}.tar.gz"
36 +
37 +LICENSE="GPL-2"
38 +SLOT="0"
39 +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~sparc-solaris"
40 +IUSE=""
41 +
42 +RDEPEND="app-shells/bash
43 + sys-apps/gawk"
44 +
45 +S=${WORKDIR}/${PN}-${P}
46 +
47 +src_compile() { :; }
48 +
49 +src_install() {
50 + dobin bookman src2man txt2man
51 + doman *.1
52 + dodoc Changelog README
53 +}