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 B659A1382C5 for ; Fri, 26 Jan 2018 21:26:42 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E0F4FE08C0; Fri, 26 Jan 2018 21:26:41 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 BB240E08C0 for ; Fri, 26 Jan 2018 21:26:41 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 AF3B4335C0C for ; Fri, 26 Jan 2018 21:26:40 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3CD9219B for ; Fri, 26 Jan 2018 21:26:39 +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: <1517001995.20c062d056d0d5a9fda5508648aa18e24f22f368.monsieurp@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/gcal/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-misc/gcal/Manifest app-misc/gcal/gcal-4.1.ebuild X-VCS-Directories: app-misc/gcal/ X-VCS-Committer: monsieurp X-VCS-Committer-Name: Patrice Clement X-VCS-Revision: 20c062d056d0d5a9fda5508648aa18e24f22f368 X-VCS-Branch: master Date: Fri, 26 Jan 2018 21:26:39 +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: cc8ab427-561f-428a-9c2d-92a3c5444704 X-Archives-Hash: 4d49afece3179e517103f1b89ad58b45 commit: 20c062d056d0d5a9fda5508648aa18e24f22f368 Author: Alberto Sartori gmail com> AuthorDate: Sat Dec 23 22:22:47 2017 +0000 Commit: Patrice Clement gentoo org> CommitDate: Fri Jan 26 21:26:35 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=20c062d0 app-misc/gcal: version bump to 4.1. Closes: https://github.com/gentoo/gentoo/pull/6614 app-misc/gcal/Manifest | 1 + app-misc/gcal/gcal-4.1.ebuild | 33 +++++++++++++++++++++++++++++++++ 2 files changed, 34 insertions(+) diff --git a/app-misc/gcal/Manifest b/app-misc/gcal/Manifest index dc2b4651588..6e5c89893fa 100644 --- a/app-misc/gcal/Manifest +++ b/app-misc/gcal/Manifest @@ -1 +1,2 @@ DIST gcal-3.6.3.tar.xz 1640172 BLAKE2B 322a3bf34a389ab92daa0262b8b36f99b585c7f76e46e5a921a5e23ced74ae98bf09446e02988c98c29ecadf631b6624cb43e76c8da736a185e52ed34441c334 SHA512 9be7d6e58a55fbb7531f91bd2a6fa51e8d62364636c31d8d65f6ac24415ac2de8af5eaab8496e155c2820b7480ecf926c4395114ff4363deb21bd268dec44963 +DIST gcal-4.1.tar.xz 1658948 BLAKE2B 980b509923d7e3afbd391f1129a77e647f61e09d68aec29490bc16041260e56082097732f015260515036a4560bee18391c8f6aaa5eaff69740f18a37a44d8f2 SHA512 24b9ee87c3dbfd3231b2017fd0a3030cc5b7c7fde032ea1fcf816b0f10dc40d808c646aa8ece86651da4f3928fecf35f84f4c68c0bfdb8cf63e3ecc189d2074d diff --git a/app-misc/gcal/gcal-4.1.ebuild b/app-misc/gcal/gcal-4.1.ebuild new file mode 100644 index 00000000000..da50405b570 --- /dev/null +++ b/app-misc/gcal/gcal-4.1.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit eutils flag-o-matic toolchain-funcs + +DESCRIPTION="The GNU Calendar - a replacement for cal" +HOMEPAGE="https://www.gnu.org/software/gcal/" +SRC_URI="mirror://gnu/gcal/${P}.tar.xz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~arm ~ppc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos" +IUSE="ncurses nls unicode" + +DEPEND=" + app-arch/xz-utils + nls? ( >=sys-devel/gettext-0.17 )" + +RDEPEND="nls? ( virtual/libintl )" + +DOCS=( BUGS LIMITATIONS NEWS README THANKS TODO ) + +src_configure() { + tc-export CC + append-cppflags -D_GNU_SOURCE + econf \ + --disable-rpath \ + $(use_enable nls) \ + $(use_enable ncurses term) \ + $(use_enable unicode) +}