From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 43F6F139694 for ; Tue, 14 Feb 2017 22:46:35 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7316CE0D1D; Tue, 14 Feb 2017 22:46:33 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 54F69E0D1D for ; Tue, 14 Feb 2017 22:46:33 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id DCBB3341645 for ; Tue, 14 Feb 2017 22:46:31 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 539BD47CB for ; Tue, 14 Feb 2017 22:46:30 +0000 (UTC) From: "Patrice Clement" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Patrice Clement" Message-ID: <1487112370.10d5a4ec791351e8daf83ca2b05e4a76e208683a.monsieurp@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/timestamp/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-misc/timestamp/timestamp-1.1-r1.ebuild X-VCS-Directories: app-misc/timestamp/ X-VCS-Committer: monsieurp X-VCS-Committer-Name: Patrice Clement X-VCS-Revision: 10d5a4ec791351e8daf83ca2b05e4a76e208683a X-VCS-Branch: master Date: Tue, 14 Feb 2017 22:46:30 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: b6fb58d8-9e02-4cd1-ae01-965e7a608a30 X-Archives-Hash: 4fc5ed0c448e4b9901ff4e2d3b66d7c2 commit: 10d5a4ec791351e8daf83ca2b05e4a76e208683a Author: Patrice Clement gentoo org> AuthorDate: Tue Feb 14 22:46:10 2017 +0000 Commit: Patrice Clement gentoo org> CommitDate: Tue Feb 14 22:46:10 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=10d5a4ec app-misc/timestamp: EAPI 6 bump. Package-Manager: portage-2.3.3 app-misc/timestamp/timestamp-1.1-r1.ebuild | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/app-misc/timestamp/timestamp-1.1-r1.ebuild b/app-misc/timestamp/timestamp-1.1-r1.ebuild new file mode 100644 index 0000000000..892128bd89 --- /dev/null +++ b/app-misc/timestamp/timestamp-1.1-r1.ebuild @@ -0,0 +1,23 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +DESCRIPTION="A text filtering pipe that marks each line with a timestamp" +HOMEPAGE="http://math.smsu.edu/~erik/software.php?id=95" +SRC_URI="http://math.smsu.edu/~erik/files/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" + +DEPEND="!sys-apps/moreutils" +RDEPEND="${DEPEND}" + +DOCS=( ChangeLog ) + +src_install() { + emake DESTDIR="${D}" install + einstalldocs +}