Gentoo Archives: gentoo-commits

From: Patrice Clement <monsieurp@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/timestamp/
Date: Tue, 14 Feb 2017 22:46:35
Message-Id: 1487112370.10d5a4ec791351e8daf83ca2b05e4a76e208683a.monsieurp@gentoo
1 commit: 10d5a4ec791351e8daf83ca2b05e4a76e208683a
2 Author: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
3 AuthorDate: Tue Feb 14 22:46:10 2017 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Tue Feb 14 22:46:10 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=10d5a4ec
7
8 app-misc/timestamp: EAPI 6 bump.
9
10 Package-Manager: portage-2.3.3
11
12 app-misc/timestamp/timestamp-1.1-r1.ebuild | 23 +++++++++++++++++++++++
13 1 file changed, 23 insertions(+)
14
15 diff --git a/app-misc/timestamp/timestamp-1.1-r1.ebuild b/app-misc/timestamp/timestamp-1.1-r1.ebuild
16 new file mode 100644
17 index 0000000000..892128bd89
18 --- /dev/null
19 +++ b/app-misc/timestamp/timestamp-1.1-r1.ebuild
20 @@ -0,0 +1,23 @@
21 +# Copyright 1999-2017 Gentoo Foundation
22 +# Distributed under the terms of the GNU General Public License v2
23 +# $Id$
24 +
25 +EAPI=6
26 +
27 +DESCRIPTION="A text filtering pipe that marks each line with a timestamp"
28 +HOMEPAGE="http://math.smsu.edu/~erik/software.php?id=95"
29 +SRC_URI="http://math.smsu.edu/~erik/files/${P}.tar.gz"
30 +
31 +LICENSE="BSD"
32 +SLOT="0"
33 +KEYWORDS="~amd64 ~ppc ~x86"
34 +
35 +DEPEND="!sys-apps/moreutils"
36 +RDEPEND="${DEPEND}"
37 +
38 +DOCS=( ChangeLog )
39 +
40 +src_install() {
41 + emake DESTDIR="${D}" install
42 + einstalldocs
43 +}