Gentoo Archives: gentoo-commits

From: Aaron Bauman <bman@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ml/easy-format/
Date: Wed, 02 Dec 2020 17:23:02
Message-Id: 1606929680.f7e101d0964f76370900809d635eb0e72d63c0f0.bman@gentoo
1 commit: f7e101d0964f76370900809d635eb0e72d63c0f0
2 Author: Aaron Bauman <bman <AT> gentoo <DOT> org>
3 AuthorDate: Wed Dec 2 16:23:22 2020 +0000
4 Commit: Aaron Bauman <bman <AT> gentoo <DOT> org>
5 CommitDate: Wed Dec 2 17:21:20 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f7e101d0
7
8 dev-ml/easy-format: drop old
9
10 Signed-off-by: Aaron Bauman <bman <AT> gentoo.org>
11
12 dev-ml/easy-format/Manifest | 1 -
13 dev-ml/easy-format/easy-format-1.0.2.ebuild | 33 -----------------------------
14 2 files changed, 34 deletions(-)
15
16 diff --git a/dev-ml/easy-format/Manifest b/dev-ml/easy-format/Manifest
17 index ebc45c6e83b..0d1ebc2d8a4 100644
18 --- a/dev-ml/easy-format/Manifest
19 +++ b/dev-ml/easy-format/Manifest
20 @@ -1,2 +1 @@
21 -DIST easy-format-1.0.2.tar.gz 13679 BLAKE2B 5f738e521ef8eb59edbcba92f599328ab6f5e497075d8144335191835906832ecb4e4a8c6233c65f6f7aa7c4105aadd1dc1e269ad59a2c3237c54af8b3856e41 SHA512 bb12c13b33a725f4a15616672f7a268398b50e6f054575203f1d26c49aa04978564233fa9fb88eec8b701d7fecbbaeda264422e8c31a60a52d0d8e64bfc5898f
22 DIST easy-format-1.2.0.tar.gz 15632 BLAKE2B 0bf20b87050330e90f3ef5cbe47470049ddc470d22357240f6b0ddd75138d3297935306c071e4355f02ed2fdd01a3155461e90a91df1346fa33180833db77b57 SHA512 375849b1ecd2e37f4b32d1ee12197a95856b17a47e3eb06a7e7320a82234c241156c3c8bfb18ce17bbe73b93d31d755675478860505470aa7ab866277a99603f
23
24 diff --git a/dev-ml/easy-format/easy-format-1.0.2.ebuild b/dev-ml/easy-format/easy-format-1.0.2.ebuild
25 deleted file mode 100644
26 index db163f33fd4..00000000000
27 --- a/dev-ml/easy-format/easy-format-1.0.2.ebuild
28 +++ /dev/null
29 @@ -1,33 +0,0 @@
30 -# Copyright 1999-2015 Gentoo Foundation
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=5
34 -
35 -inherit findlib
36 -
37 -DESCRIPTION="Pretty-printing library for OCaml"
38 -HOMEPAGE="http://mjambon.com/easy-format.html"
39 -SRC_URI="http://mjambon.com/releases/${PN}/${P}.tar.gz"
40 -
41 -SLOT="0/${PV}"
42 -LICENSE="BSD"
43 -KEYWORDS="~amd64"
44 -
45 -IUSE="examples +ocamlopt"
46 -
47 -RDEPEND="dev-lang/ocaml:=[ocamlopt?]"
48 -DEPEND="${RDEPEND}"
49 -
50 -src_compile() {
51 - emake all
52 - use ocamlopt && emake opt
53 -}
54 -
55 -src_install() {
56 - findlib_src_install
57 - dodoc README.md Changes
58 - if use examples ; then
59 - dodoc -r examples
60 - docompress -x /usr/share/doc/${PF}/examples
61 - fi
62 -}