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/pomap/
Date: Sat, 01 Apr 2017 12:25:22
Message-Id: 1491049482.be45b850d2043cd22abfec60874e106bf6a113c8.aballier@gentoo
1 commit: be45b850d2043cd22abfec60874e106bf6a113c8
2 Author: Alexis Ballier <aballier <AT> gentoo <DOT> org>
3 AuthorDate: Sat Apr 1 11:06:35 2017 +0000
4 Commit: Alexis Ballier <aballier <AT> gentoo <DOT> org>
5 CommitDate: Sat Apr 1 12:24:42 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=be45b850
7
8 dev-ml/pomap: Bump to 3.0.7
9
10 Package-Manager: Portage-2.3.5, Repoman-2.3.2
11
12 dev-ml/pomap/Manifest | 1 +
13 dev-ml/pomap/pomap-3.0.7.ebuild | 30 ++++++++++++++++++++++++++++++
14 2 files changed, 31 insertions(+)
15
16 diff --git a/dev-ml/pomap/Manifest b/dev-ml/pomap/Manifest
17 index fba4ec53875..456600d07df 100644
18 --- a/dev-ml/pomap/Manifest
19 +++ b/dev-ml/pomap/Manifest
20 @@ -1 +1,2 @@
21 DIST pomap-3.0.6.tar.gz 75345 SHA256 b9884487c1692d01de3c985894e06f820113f05d08f92909d817528b51e23f55 SHA512 c9b91b7eb3716f4ba735928bb7d33202fe4b05d3908afad36cffa01ffa5fa8f860b3a9d57a0b5bbf2577bb84f3a5b464ec85375e488a3fd5f8d99d7bbcf141a8 WHIRLPOOL b4edb268417d7dbeb31e972f81ba3d4669aac8a82645b24474e8db62b70402c5737402c690a2b69599da101021a99b2350728b03d1f76654008c42bb398966cc
22 +DIST pomap-3.0.7.tar.gz 80880 SHA256 a67e25d2e7cb80ab52f18cf9bb6cbf098c25ff28dfd01e7bab8d7d0e50266464 SHA512 f4f59708c1a638211332444310aae903eead9dfe9900034698a19ead275fe8d95a32f74bd8e062f7d5d671bbd92cdf18052f26a1e2fd07724c37f60b304f66ba WHIRLPOOL fb82d50839e9082251b5d2c4e97f08ddefd6c989c5a190f45bf5d5181d06556a0f7efd31047365a80356c37e72e298d614c9ff5f10850da85e607c57b09d14ae
23
24 diff --git a/dev-ml/pomap/pomap-3.0.7.ebuild b/dev-ml/pomap/pomap-3.0.7.ebuild
25 new file mode 100644
26 index 00000000000..843be10b3fb
27 --- /dev/null
28 +++ b/dev-ml/pomap/pomap-3.0.7.ebuild
29 @@ -0,0 +1,30 @@
30 +# Copyright 1999-2017 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=5
34 +
35 +OASIS_BUILD_DOCS=1
36 +
37 +inherit oasis
38 +
39 +DESCRIPTION="Partially Ordered Map ADT for O'Caml"
40 +HOMEPAGE="http://mmottl.github.io/pomap/"
41 +SRC_URI="https://github.com/mmottl/pomap/releases/download/v${PV}/${P}.tar.gz"
42 +LICENSE="LGPL-2.1-with-linking-exception"
43 +
44 +DEPEND="dev-ml/camlp4:="
45 +RDEPEND="${DEPEND}"
46 +SLOT="0/${PV}"
47 +KEYWORDS="~amd64 ~ppc ~x86"
48 +IUSE="examples"
49 +
50 +DOCS=( "AUTHORS.txt" "CHANGES.txt" "README.md" )
51 +
52 +src_install() {
53 + oasis_src_install
54 + if use examples ; then
55 + insinto /usr/share/doc/${PF}
56 + doins -r examples
57 + docompress -x /usr/share/doc/${PF}/examples
58 + fi
59 +}