From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 350CB1388C2 for ; Thu, 14 Jan 2016 00:28:09 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 05B7921C002; Thu, 14 Jan 2016 00:28:07 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 9833721C002 for ; Thu, 14 Jan 2016 00:28:06 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 4EF5C3406F2 for ; Thu, 14 Jan 2016 00:28:05 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 08C9CA91 for ; Thu, 14 Jan 2016 00:28:03 +0000 (UTC) From: "Tim Harder" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Tim Harder" Message-ID: <1452731254.21a5a4ce7f2166b8d1776f46e4275c2c6beada63.radhermit@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/when/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-misc/when/Manifest app-misc/when/when-1.1.35.ebuild X-VCS-Directories: app-misc/when/ X-VCS-Committer: radhermit X-VCS-Committer-Name: Tim Harder X-VCS-Revision: 21a5a4ce7f2166b8d1776f46e4275c2c6beada63 X-VCS-Branch: master Date: Thu, 14 Jan 2016 00:28:03 +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: 7835c3e7-38b3-4855-adb4-469a1436d2a7 X-Archives-Hash: 3bfb9eed5b345f069cb76668adf25492 commit: 21a5a4ce7f2166b8d1776f46e4275c2c6beada63 Author: Tim Harder gentoo org> AuthorDate: Thu Jan 14 00:27:06 2016 +0000 Commit: Tim Harder gentoo org> CommitDate: Thu Jan 14 00:27:34 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=21a5a4ce app-misc/when: version bump to 1.1.35 app-misc/when/Manifest | 1 + app-misc/when/when-1.1.35.ebuild | 38 ++++++++++++++++++++++++++++++++++++++ 2 files changed, 39 insertions(+) diff --git a/app-misc/when/Manifest b/app-misc/when/Manifest index 9a8ee2e..3bac698 100644 --- a/app-misc/when/Manifest +++ b/app-misc/when/Manifest @@ -1 +1,2 @@ DIST when-1.1.33.tar.gz 49740 SHA256 568a49e999363a018186e03c38d116c587b332f7fcf60820f9cfc34779050ab0 SHA512 5c0934257133f75a7de984499f99f68dde5343d51051acf1b454f04dae82254c733e946a6c5ead546dc3c07cd113d938a48c95af39b80cbfc04ee6d748223c83 WHIRLPOOL 9bcbe73a4034b817fc34d302689a0b404563081163c692ee23e484fbb9ab993a90a5d468f2586e7f5327abad98f4033ebd7546255f682898e899a9fdd7629c97 +DIST when-1.1.35.tar.gz 51308 SHA256 f880c0d80b1023a05df99690e36be133c46071657b9921fc9e8d16115fb13ae6 SHA512 b9acd1e3ea69c3ea9672eb16bd291c79612bbd037b4b96f6350d44da1400729a62bfc320eed2637646a728c243abacd7e26f22e76b5b12006dbd0c70bcb4a7da WHIRLPOOL 04ac240b99c5a0a3a2e0f80e7edd6ab0fd85939676016877f595d5698c8238d754ca4deb697eea507744bb936f64f6011548aa062751d99ffcc47a24362dbf4f diff --git a/app-misc/when/when-1.1.35.ebuild b/app-misc/when/when-1.1.35.ebuild new file mode 100644 index 0000000..3be6849 --- /dev/null +++ b/app-misc/when/when-1.1.35.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +DESCRIPTION="Extremely simple personal calendar program aimed at the Unix geek who wants something minimalistic" +HOMEPAGE="http://www.lightandmatter.com/when/when.html" +SRC_URI="http://www.lightandmatter.com/when/when.tar.gz -> ${P}.tar.gz" + +LICENSE="Artistic" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86 ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos" + +DEPEND="dev-lang/perl" +RDEPEND="${DEPEND}" + +S=${WORKDIR}/when_dist + +src_prepare() { + # Fix path for tests + sed -i 's,^ when, ./when,' Makefile || die 'sed failed' +} + +src_compile() { :; } + +src_test() { + # The when command requires these files, or attempts to run setup function. + mkdir "${HOME}"/.when || die 'mkdir failed' + touch "${HOME}"/.when/{calendar,preferences} || die 'touch failed' + emake test +} + +src_install() { + dobin ${PN} + doman ${PN}.1 + dodoc README +}