Gentoo Archives: gentoo-commits

From: Alexis Ballier <aballier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ml/calendar/
Date: Tue, 06 Sep 2016 10:03:27
Message-Id: 1473156195.db6d1633b835a81bb34c020f794ec9c99c113384.aballier@gentoo
1 commit: db6d1633b835a81bb34c020f794ec9c99c113384
2 Author: Alexis Ballier <aballier <AT> gentoo <DOT> org>
3 AuthorDate: Tue Sep 6 10:03:01 2016 +0000
4 Commit: Alexis Ballier <aballier <AT> gentoo <DOT> org>
5 CommitDate: Tue Sep 6 10:03:15 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=db6d1633
7
8 dev-ml/calendar: bump to 2.04
9
10 Package-Manager: portage-2.3.0
11
12 dev-ml/calendar/Manifest | 1 +
13 dev-ml/calendar/calendar-2.04.ebuild | 34 ++++++++++++++++++++++++++++++++++
14 2 files changed, 35 insertions(+)
15
16 diff --git a/dev-ml/calendar/Manifest b/dev-ml/calendar/Manifest
17 index caaba3b..061080a 100644
18 --- a/dev-ml/calendar/Manifest
19 +++ b/dev-ml/calendar/Manifest
20 @@ -1 +1,2 @@
21 DIST calendar-2.03.2.tar.gz 270225 SHA256 0e381faaa3bba522cbac705a7f872e6ecfa15220671f4688d1e311631687fb12 SHA512 c6acc326aaed77d238126f8723a8e3e4054808ddfef974d9aead39731f4ab9f386eff2f34aab17e4eade3825dd1e3b708a404ecde3fc9b82416482c7095de82b WHIRLPOOL 68505b62aee8b41c53aae81a3a3d22776867c4885461f1fac33365b4a03cc8d7e4e1ebfa8bf72fc6665d3eb7eb2ca4ae93b98989bd76f22931103707a1b3712c
22 +DIST calendar-2.04.tar.gz 271522 SHA256 bea6faa0337a1c54b0f3c2b9b45c9eb90e2b2747406e6f0b841e1fd20fd4d9f7 SHA512 3941768428eda47f47912846cc2921ee82c722bda7cf6095c1c8bdcfebc19bb8f64ebb1a25475396d2a49c186b83421af63602a54a261684117b1c036a66cf3d WHIRLPOOL 64e041dd0b9c8ab9128d2b79a7b62d761e2d74b3388822335807b8c05f3a453bc0ca17c58d0728fa56f1255f8f7b6f779ed6ba27c761c525bdbe1f19e1125f4b
23
24 diff --git a/dev-ml/calendar/calendar-2.04.ebuild b/dev-ml/calendar/calendar-2.04.ebuild
25 new file mode 100644
26 index 00000000..cd3126d
27 --- /dev/null
28 +++ b/dev-ml/calendar/calendar-2.04.ebuild
29 @@ -0,0 +1,34 @@
30 +# Copyright 1999-2016 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +# $Id$
33 +
34 +EAPI=5
35 +
36 +inherit findlib eutils
37 +
38 +DESCRIPTION="An Ocaml library to handle dates and time"
39 +HOMEPAGE="http://forge.ocamlcore.org/projects/calendar/"
40 +SRC_URI="http://forge.ocamlcore.org/frs/download.php/1481/${P}.tar.gz"
41 +
42 +LICENSE="LGPL-2.1-with-linking-exception"
43 +SLOT="0/${PV}"
44 +KEYWORDS="~amd64"
45 +IUSE="doc"
46 +
47 +DEPEND=">=dev-lang/ocaml-3.12:=[ocamlopt]"
48 +RDEPEND="${DEPEND}"
49 +
50 +src_compile() {
51 + emake
52 + use doc && emake doc
53 +}
54 +
55 +src_test() {
56 + emake tests
57 +}
58 +
59 +src_install() {
60 + findlib_src_install
61 + dodoc README CHANGES
62 + use doc && dohtml -r doc
63 +}