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/pcre-ocaml/
Date: Wed, 24 Feb 2016 09:41:46
Message-Id: 1456306875.2a066a9878fb35d346d642645f070123d3493892.aballier@gentoo
1 commit: 2a066a9878fb35d346d642645f070123d3493892
2 Author: Alexis Ballier <aballier <AT> gentoo <DOT> org>
3 AuthorDate: Wed Feb 24 09:41:00 2016 +0000
4 Commit: Alexis Ballier <aballier <AT> gentoo <DOT> org>
5 CommitDate: Wed Feb 24 09:41:15 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2a066a98
7
8 dev-ml/pcre-ocaml: bump to 7.2.2
9
10 Package-Manager: portage-2.2.27
11 Signed-off-by: Alexis Ballier <aballier <AT> gentoo.org>
12
13 dev-ml/pcre-ocaml/Manifest | 1 +
14 dev-ml/pcre-ocaml/pcre-ocaml-7.2.2.ebuild | 31 +++++++++++++++++++++++++++++++
15 2 files changed, 32 insertions(+)
16
17 diff --git a/dev-ml/pcre-ocaml/Manifest b/dev-ml/pcre-ocaml/Manifest
18 index 2884110..8779dc0 100644
19 --- a/dev-ml/pcre-ocaml/Manifest
20 +++ b/dev-ml/pcre-ocaml/Manifest
21 @@ -1,2 +1,3 @@
22 DIST pcre-ocaml-6.2.5.tar.gz 60724 SHA256 f1774028a4525d22d1f4cf4ce0121c99d85a75aed7a498c3e8ab0f5e39888e47 SHA512 9665643165beea8515f22d90a6a0f079108826ec46ce89248c795e982f9b4ddecc0e882a32a9893acac1001d810aad7f3bc7d7b6162ab1260fa4f698c91e04b9 WHIRLPOOL c99da092f8e78de19ea624a021a088b3e19b1accd2b33bc084179f7c1b88e8ac2b51c143321a792067e325568d6ea4c059fc57ac9da477e998cda3936140567c
23 DIST pcre-ocaml-7.1.6.tar.gz 88104 SHA256 7f88d1fb44a394026f20c692170d36f7331cbeea20ca95b841334b8c188efbef SHA512 604bf27324eab3548c8320bee91cd8c8d0c6459aa7c02b576149b6a2beb43ddd9733e7e344c20c100241cabc84be61ef8c4a5515cdd994a7c3105dd3da74782d WHIRLPOOL 25ba4642e4d10300d849993dd5cb18cb9c8216ba17b07756bca866b46460b8cc7399c91cc6390e44250765d40aa81a5ff3c0372bb3ead614c27c9b4a4f3da3d2
24 +DIST pcre-ocaml-7.2.2.tar.gz 88275 SHA256 64b2956c638f3428e72c481de766d977a86cab9e7f158bb745469b740f2db786 SHA512 99d8f9fce7d7e05a86dc1c6280dd0718d904ccbfaa0a858a2d97c2cbff94156c39b3875c29032582dafae3b11c01ee13af3896181dad1d8843843d8625721083 WHIRLPOOL eb4e1734478c5037efe72dddd6b8903d8ff29848218808c2ad54bcad1869e8897cf746c65c365f9cb523f36feb70d5191865d255fd5dbc913b13c9f3c7249b23
25
26 diff --git a/dev-ml/pcre-ocaml/pcre-ocaml-7.2.2.ebuild b/dev-ml/pcre-ocaml/pcre-ocaml-7.2.2.ebuild
27 new file mode 100644
28 index 0000000..4eea14f
29 --- /dev/null
30 +++ b/dev-ml/pcre-ocaml/pcre-ocaml-7.2.2.ebuild
31 @@ -0,0 +1,31 @@
32 +# Copyright 1999-2014 Gentoo Foundation
33 +# Distributed under the terms of the GNU General Public License v2
34 +# $Id$
35 +
36 +EAPI=5
37 +
38 +OASIS_BUILD_DOCS=1
39 +
40 +inherit oasis
41 +
42 +DESCRIPTION="Perl Compatibility Regular Expressions for O'Caml"
43 +HOMEPAGE="http://mmottl.github.io/pcre-ocaml/ https://github.com/mmottl/pcre-ocaml"
44 +SRC_URI="https://github.com/mmottl/pcre-ocaml/releases/download/v${PV}/${P}.tar.gz"
45 +LICENSE="LGPL-2.1-with-linking-exception"
46 +IUSE="examples"
47 +SLOT="0/${PV}"
48 +KEYWORDS="~amd64 ~ppc ~x86 ~x86-fbsd"
49 +
50 +RDEPEND=">=dev-libs/libpcre-4.5
51 + >=dev-lang/ocaml-4:="
52 +DEPEND="${RDEPEND}"
53 +
54 +DOCS=( "AUTHORS.txt" "CHANGES.txt" "README.md" )
55 +
56 +src_install() {
57 + oasis_src_install
58 + if use examples ; then
59 + insinto /usr/share/doc/${PF}
60 + doins -r examples
61 + fi
62 +}