Gentoo Archives: gentoo-commits

From: Alfredo Tupone <tupone@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ml/logs/
Date: Fri, 29 Jan 2021 21:41:29
Message-Id: 1611956463.987f1d28080316525e78fc7c8c80a0322e2285e3.tupone@gentoo
1 commit: 987f1d28080316525e78fc7c8c80a0322e2285e3
2 Author: Alfredo Tupone <tupone <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jan 29 21:41:03 2021 +0000
4 Commit: Alfredo Tupone <tupone <AT> gentoo <DOT> org>
5 CommitDate: Fri Jan 29 21:41:03 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=987f1d28
7
8 dev-ml/logs: remove old version
9
10 Closes: https://bugs.gentoo.org/750194
11 Package-Manager: Portage-3.0.13, Repoman-3.0.2
12 Signed-off-by: Alfredo Tupone <tupone <AT> gentoo.org>
13
14 dev-ml/logs/Manifest | 1 -
15 dev-ml/logs/logs-0.6.2.ebuild | 55 -------------------------------------------
16 2 files changed, 56 deletions(-)
17
18 diff --git a/dev-ml/logs/Manifest b/dev-ml/logs/Manifest
19 index 0ba203fd3cf..c3d5031ecb4 100644
20 --- a/dev-ml/logs/Manifest
21 +++ b/dev-ml/logs/Manifest
22 @@ -1,3 +1,2 @@
23 -DIST logs-0.6.2.tbz 18558 BLAKE2B 824bad0b568c3cc08343cb99eab3848d6e8f7deca548599caf12a05f5980e5ecf78978480e5fd95e938ca4b06fb94cee8b4ecf241f4a0238c3d3851c4be8c9f5 SHA512 a669e373652bac6789626ad1d58e414c6d156c646bf0706c9d55b04151850113d45a5c28077707514d1a27d46fcc0f90b39b8652ce7a3980f79675e9874db8b4
24 DIST logs-0.6.3.tbz 17670 BLAKE2B bea90590913c83ef0ac32bb63551542d52cdc63f761e0198ff747f9e03987dcbfacd1b1e351a826218f71768020df8ebe1caa7272fd79e2c1b634645d728bdd6 SHA512 6cdcb3ee19eadb824500e90235a62326194ff5d2a44dca598d2727f2ad358273a79240197965b682aa80986870bb859ee1e57f2cb29c684c92ca146cac8094d1
25 DIST logs-0.7.0.tbz 18458 BLAKE2B 091d1778166af0b67e17e932a775a73e31e5d167b94b1b378063a7112c21bf1ac935c7e51fe29bcc0121cd5e60ea46ed3c7381f4db5df400b463feedfbe89663 SHA512 657f66eeaf5788947a3ff4b2a179f7e192ad4ce086fc8968286066d4b83af476523b3befce50ee58abf2d9b8c8dc65573ba8ed62f9c5e7933db29a7fb769646a
26
27 diff --git a/dev-ml/logs/logs-0.6.2.ebuild b/dev-ml/logs/logs-0.6.2.ebuild
28 deleted file mode 100644
29 index 707b897d968..00000000000
30 --- a/dev-ml/logs/logs-0.6.2.ebuild
31 +++ /dev/null
32 @@ -1,55 +0,0 @@
33 -# Copyright 1999-2020 Gentoo Authors
34 -# Distributed under the terms of the GNU General Public License v2
35 -
36 -EAPI="5"
37 -
38 -inherit findlib
39 -
40 -DESCRIPTION="Logging infrastructure for OCaml"
41 -HOMEPAGE="https://erratique.ch/software/logs https://github.com/dbuenzli/logs"
42 -SRC_URI="https://erratique.ch/software/logs/releases/${P}.tbz"
43 -
44 -LICENSE="ISC"
45 -SLOT="0/${PV}"
46 -KEYWORDS="~amd64"
47 -IUSE="javascript +fmt cli +lwt test"
48 -RESTRICT="!test? ( test )"
49 -
50 -RDEPEND="
51 - dev-ml/result:=[ocamlopt]
52 - dev-lang/ocaml:=[ocamlopt]
53 - javascript? ( dev-ml/js_of_ocaml:= )
54 - fmt? ( dev-ml/fmt:= )
55 - cli? ( dev-ml/cmdliner:=[ocamlopt] )
56 - lwt? ( dev-ml/lwt:= )
57 -"
58 -DEPEND="${RDEPEND}
59 - dev-ml/opam
60 - dev-ml/topkg
61 - dev-ml/ocamlbuild
62 - dev-ml/findlib
63 - test? ( dev-ml/mtime )
64 -"
65 -
66 -src_compile() {
67 - ocaml pkg/pkg.ml build \
68 - --with-js_of_ocaml $(usex javascript true false) \
69 - --with-fmt $(usex fmt true false) \
70 - --with-cmdliner $(usex cli true false) \
71 - --with-lwt $(usex fmt true false) \
72 - --tests $(usex test true false) \
73 - || die
74 -}
75 -
76 -src_test() {
77 - ocaml pkg/pkg.ml test || die
78 -}
79 -
80 -src_install() {
81 - opam-installer -i \
82 - --prefix="${ED}/usr" \
83 - --libdir="${D}/$(ocamlc -where)" \
84 - --docdir="${ED}/usr/share/doc/${PF}" \
85 - ${PN}.install || die
86 - dodoc CHANGES.md README.md
87 -}