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-office/calcurse/
Date: Tue, 10 Mar 2020 11:28:30
Message-Id: 1583839695.34217564ddc5cd46762ffdaeb217aabd905dec6a.monsieurp@gentoo
1 commit: 34217564ddc5cd46762ffdaeb217aabd905dec6a
2 Author: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
3 AuthorDate: Tue Mar 10 10:32:00 2020 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Tue Mar 10 11:28:15 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=34217564
7
8 app-office/calcurse: version bump.
9
10 Package-Manager: Portage-2.3.89, Repoman-2.3.20
11 Signed-off-by: Patrice Clement <monsieurp <AT> gentoo.org>
12
13 app-office/calcurse/Manifest | 1 +
14 app-office/calcurse/calcurse-4.5.0.ebuild | 47 +++++++++++++++++++++++++++++++
15 2 files changed, 48 insertions(+)
16
17 diff --git a/app-office/calcurse/Manifest b/app-office/calcurse/Manifest
18 index a709a800e0c..d61266faf9b 100644
19 --- a/app-office/calcurse/Manifest
20 +++ b/app-office/calcurse/Manifest
21 @@ -1 +1,2 @@
22 DIST calcurse-4.4.0.tar.gz 620263 BLAKE2B 8fbe875f5e757ec3c11b9c23a994260403ee990bfcb3d4c41eefbf06a6db9e76cd5157e32b11c3fdc049896d5db3a9856862724902dab1cb48e0b00ef5df6f73 SHA512 43d30ad68bb39aaa9460644a691e66cbb15b9930737581583da65d00214c70fb1148a0edeca4430abb7a5cef2821b0f4c6fdbed8188d9ea5da5fedc4f95fa07c
23 +DIST calcurse-4.5.0.tar.gz 657976 BLAKE2B 5cad43340cb973d402c92b7963f9c13e46acbb2f802df2ab447221913daa6b28872a323b743bc31be0c7358ea8e7d51d08054c81f3376d3dc07f5837d41be45f SHA512 795eae7c62b89c733049f0c137da398ce3dd5fba78f9a2c323aacdf8b176cf37bd9d0768dbdac0bb1cb64cd248b1d851efd059836fbbbdd9665fa47beff3b872
24
25 diff --git a/app-office/calcurse/calcurse-4.5.0.ebuild b/app-office/calcurse/calcurse-4.5.0.ebuild
26 new file mode 100644
27 index 00000000000..46600edc61f
28 --- /dev/null
29 +++ b/app-office/calcurse/calcurse-4.5.0.ebuild
30 @@ -0,0 +1,47 @@
31 +# Copyright 1999-2020 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +
36 +inherit autotools eutils multilib-minimal
37 +
38 +DESCRIPTION="a text-based calendar and scheduling application"
39 +HOMEPAGE="https://calcurse.org/"
40 +SRC_URI="https://calcurse.org/files/${P}.tar.gz"
41 +
42 +LICENSE="BSD-2"
43 +SLOT="0"
44 +KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
45 +IUSE="doc"
46 +
47 +RDEPEND="
48 + dev-python/httplib2
49 + sys-libs/ncurses:0="
50 +
51 +DEPEND="
52 + ${RDEPEND}
53 + doc? ( app-text/asciidoc )"
54 +
55 +PATCHES=(
56 + "${FILESDIR}"/${PN}-4.2.1-tinfo.patch
57 +)
58 +
59 +# Most tests fail.
60 +RESTRICT="test"
61 +
62 +src_prepare() {
63 + default
64 + eautoreconf
65 +}
66 +
67 +multilib_src_configure() {
68 + ECONF_SOURCE="${S}" econf
69 +}
70 +
71 +src_compile() {
72 + multilib-minimal_src_compile
73 +}
74 +
75 +src_install() {
76 + multilib-minimal_src_install
77 +}