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/utop/
Date: Fri, 14 Oct 2016 13:16:54
Message-Id: 1476450754.94e42a80a94f6c6bffffd97572e56a1025bc16b0.aballier@gentoo
1 commit: 94e42a80a94f6c6bffffd97572e56a1025bc16b0
2 Author: Alexis Ballier <aballier <AT> gentoo <DOT> org>
3 AuthorDate: Fri Oct 14 13:12:34 2016 +0000
4 Commit: Alexis Ballier <aballier <AT> gentoo <DOT> org>
5 CommitDate: Fri Oct 14 13:12:34 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=94e42a80
7
8 dev-ml/utop: remove old
9
10 Package-Manager: portage-2.3.2
11
12 dev-ml/utop/Manifest | 1 -
13 dev-ml/utop/utop-1.19.2-r1.ebuild | 59 ---------------------------------------
14 2 files changed, 60 deletions(-)
15
16 diff --git a/dev-ml/utop/Manifest b/dev-ml/utop/Manifest
17 index 130679b..4ee8df4 100644
18 --- a/dev-ml/utop/Manifest
19 +++ b/dev-ml/utop/Manifest
20 @@ -1,2 +1 @@
21 -DIST utop-1.19.2.tar.gz 104616 SHA256 509ab26f13cf5d0cf401fb0a313751ed19727b6dff65ef7df81ac05cf15cbe43 SHA512 4160b0576b1e860a54ecf8487bb9cd7259cc434d06a4da409671337bcc8342e4738cd5fa864ece54fa2b9f811597e8462556cf81d184d9d9c81e4463d76559c6 WHIRLPOOL aa608b95d8846fb48cafcea5d34a4a4fb984bf2265387378be1f3496afc63cbfcca6c2ca319503e7a942b81d1937acd44a9478256a652a32a12f584ca785f7d1
22 DIST utop-1.19.3.tar.gz 105213 SHA256 9dbca07b8c55700473cca1d9dd975abb9c6cd03e715dec4857f1249bee16e09b SHA512 97b3fec8b6f930efa742230058eba6fb846900d71e5758903dcefe03fa08e93b54e32642a5b8b6ad02aed7e81ccd6146e87a92805eb74aa4fae275a1188818cd WHIRLPOOL 470e5739639440b11905fbd4f755643aa3117f9fe76690723df7e2fba07e1bdcfcb7ad796a9dc2d00b3be3a6f0eba1afa335ce826a8c715ac40681ad38165599
23
24 diff --git a/dev-ml/utop/utop-1.19.2-r1.ebuild b/dev-ml/utop/utop-1.19.2-r1.ebuild
25 deleted file mode 100644
26 index c451a6b..00000000
27 --- a/dev-ml/utop/utop-1.19.2-r1.ebuild
28 +++ /dev/null
29 @@ -1,59 +0,0 @@
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 -OASIS_BUILD_DOCS=1
37 -inherit oasis elisp-common
38 -
39 -DESCRIPTION="A new toplevel for OCaml with completion and colorization"
40 -HOMEPAGE="https://github.com/diml/utop"
41 -SRC_URI="https://github.com/diml/utop/archive/${PV}.tar.gz -> ${P}.tar.gz"
42 -
43 -LICENSE="BSD"
44 -SLOT="0/${PV}"
45 -KEYWORDS="~amd64"
46 -IUSE="camlp4 emacs"
47 -
48 -DEPEND=">=dev-ml/lwt-2.4.0:=[react]
49 - >=dev-ml/lambda-term-1.2:=
50 - >=dev-ml/zed-1.2:=
51 - >=dev-ml/cppo-1.0.1:=
52 - emacs? ( virtual/emacs )
53 - camlp4? ( dev-ml/camlp4:= )"
54 -RDEPEND="${DEPEND}"
55 -
56 -DOCS=( "CHANGES.md" "README.md" )
57 -SITEFILE="50${PN}-gentoo.el"
58 -
59 -src_prepare() {
60 - sed -i "s/(\"utop.el.*)//" setup.ml
61 -}
62 -
63 -src_configure() {
64 - oasis_configure_opts="$(use_enable camlp4)" \
65 - oasis_src_configure
66 -}
67 -src_compile() {
68 - oasis_src_compile
69 - if use emacs; then
70 - elisp-compile src/top/*.el
71 - fi
72 -}
73 -
74 -src_install() {
75 - oasis_src_install
76 - if use emacs; then
77 - elisp-install "${PN}" src/top/*.el src/top/*.elc || die
78 - elisp-site-file-install "${FILESDIR}/${SITEFILE}" || die
79 - fi
80 -}
81 -
82 -pkg_postinst() {
83 - use emacs && elisp-site-regen
84 -}
85 -
86 -pkg_postrm() {
87 - use emacs && elisp-site-regen
88 -}