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: Mon, 25 Feb 2019 21:54:41
Message-Id: 1551131667.85916a1e6c7c7936c5653dbc1a0d7c23e8718a97.monsieurp@gentoo
1 commit: 85916a1e6c7c7936c5653dbc1a0d7c23e8718a97
2 Author: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
3 AuthorDate: Mon Feb 25 21:53:23 2019 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Mon Feb 25 21:54:27 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=85916a1e
7
8 app-office/calcurse: version bump.
9
10 Signed-off-by: Patrice Clement <monsieurp <AT> gentoo.org>
11 Package-Manager: Portage-2.3.51, Repoman-2.3.11
12
13 app-office/calcurse/Manifest | 1 +
14 app-office/calcurse/calcurse-4.4.0.ebuild | 45 +++++++++++++++++++++++++++++++
15 2 files changed, 46 insertions(+)
16
17 diff --git a/app-office/calcurse/Manifest b/app-office/calcurse/Manifest
18 index 9f074535d00..e38d2b49e77 100644
19 --- a/app-office/calcurse/Manifest
20 +++ b/app-office/calcurse/Manifest
21 @@ -1 +1,2 @@
22 DIST calcurse-4.3.0.tar.gz 597490 BLAKE2B 7fe31fc09cae12438173d4846a1e4b0a55f9e9416ab23ffc8b78e9d0f621072d8aca96b4161d5659db088e1007f685228e9669aae2d5606939c6564252826e1d SHA512 d948354b512d406f4915ce37107d3f529031e7698d7b38465913ff37120a93283e01f09f5267ebb19bf39ea133d6fac579b218d6dfd6056003b6222f9038f4b3
23 +DIST calcurse-4.4.0.tar.gz 620263 BLAKE2B 8fbe875f5e757ec3c11b9c23a994260403ee990bfcb3d4c41eefbf06a6db9e76cd5157e32b11c3fdc049896d5db3a9856862724902dab1cb48e0b00ef5df6f73 SHA512 43d30ad68bb39aaa9460644a691e66cbb15b9930737581583da65d00214c70fb1148a0edeca4430abb7a5cef2821b0f4c6fdbed8188d9ea5da5fedc4f95fa07c
24
25 diff --git a/app-office/calcurse/calcurse-4.4.0.ebuild b/app-office/calcurse/calcurse-4.4.0.ebuild
26 new file mode 100644
27 index 00000000000..0ce4d324c9e
28 --- /dev/null
29 +++ b/app-office/calcurse/calcurse-4.4.0.ebuild
30 @@ -0,0 +1,45 @@
31 +# Copyright 1999-2019 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=6
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 +
46 +RDEPEND="
47 + dev-python/httplib2
48 + sys-libs/ncurses:0="
49 +
50 +DEPEND="
51 + ${RDEPEND}"
52 +
53 +PATCHES=(
54 + "${FILESDIR}"/${PN}-4.2.1-tinfo.patch
55 +)
56 +
57 +# Most tests fail.
58 +RESTRICT="test"
59 +
60 +src_prepare() {
61 + default
62 + eautoreconf
63 +}
64 +
65 +multilib_src_configure() {
66 + ECONF_SOURCE="${S}" econf
67 +}
68 +
69 +src_compile() {
70 + multilib-minimal_src_compile
71 +}
72 +
73 +src_install() {
74 + multilib-minimal_src_install
75 +}