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 697A2138334 for ; Sun, 26 Aug 2018 14:49:15 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 487DDE0831; Sun, 26 Aug 2018 14:49:13 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 1E4A1E0831 for ; Sun, 26 Aug 2018 14:49:11 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id E8B7C335C95 for ; Sun, 26 Aug 2018 14:49:09 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3DBA839D for ; Sun, 26 Aug 2018 14:49:08 +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: <1535294942.f0d53ac90bf31f73069fa3bb81947ee1c5c81df2.monsieurp@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-office/calcurse/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-office/calcurse/calcurse-4.3.0-r1.ebuild X-VCS-Directories: app-office/calcurse/ X-VCS-Committer: monsieurp X-VCS-Committer-Name: Patrice Clement X-VCS-Revision: f0d53ac90bf31f73069fa3bb81947ee1c5c81df2 X-VCS-Branch: master Date: Sun, 26 Aug 2018 14:49:08 +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: ce5d6c5b-60e8-4332-82ed-1f9220f311cd X-Archives-Hash: 255e5ec9f143cd3120d5c3e2453eeeab commit: f0d53ac90bf31f73069fa3bb81947ee1c5c81df2 Author: Patrice Clement gentoo org> AuthorDate: Sun Aug 26 14:48:40 2018 +0000 Commit: Patrice Clement gentoo org> CommitDate: Sun Aug 26 14:49:02 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f0d53ac9 app-office/calcurse: revision bump. ... so as to make Soap happy. Package-Manager: Portage-2.3.40, Repoman-2.3.9 app-office/calcurse/calcurse-4.3.0-r1.ebuild | 45 ++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) diff --git a/app-office/calcurse/calcurse-4.3.0-r1.ebuild b/app-office/calcurse/calcurse-4.3.0-r1.ebuild new file mode 100644 index 00000000000..451271ee693 --- /dev/null +++ b/app-office/calcurse/calcurse-4.3.0-r1.ebuild @@ -0,0 +1,45 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit autotools eutils multilib-minimal + +DESCRIPTION="a text-based calendar and scheduling application" +HOMEPAGE="https://calcurse.org/" +SRC_URI="https://calcurse.org/files/${P}.tar.gz" + +LICENSE="BSD-2" +SLOT="0" +KEYWORDS="~amd64 ~x86 ~ppc ~ppc64" + +RDEPEND=" + dev-python/httplib2 + sys-libs/ncurses:0=" + +DEPEND=" + ${RDEPEND}" + +PATCHES=( + "${FILESDIR}"/${PN}-4.2.1-tinfo.patch +) + +# Most tests fail. +RESTRICT="test" + +src_prepare() { + default + eautoreconf +} + +multilib_src_configure() { + ECONF_SOURCE="${S}" econf +} + +src_compile() { + multilib-minimal_src_compile +} + +src_install() { + multilib-minimal_src_install +}