aballier 15/06/29 09:23:24 Modified: ChangeLog Added: utop-1.18.ebuild Log: version bump Signed-off-by: Alexis Ballier <[email protected]> (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 160F534A)
Revision Changes Path 1.13 dev-ml/utop/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/utop/ChangeLog?rev=1.13&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/utop/ChangeLog?rev=1.13&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/utop/ChangeLog?r1=1.12&r2=1.13 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-ml/utop/ChangeLog,v retrieving revision 1.12 retrieving revision 1.13 diff -u -r1.12 -r1.13 --- ChangeLog 6 Jun 2015 19:48:58 -0000 1.12 +++ ChangeLog 29 Jun 2015 09:23:24 -0000 1.13 @@ -1,6 +1,11 @@ # ChangeLog for dev-ml/utop # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ml/utop/ChangeLog,v 1.12 2015/06/06 19:48:58 jlec Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-ml/utop/ChangeLog,v 1.13 2015/06/29 09:23:24 aballier Exp $ + +*utop-1.18 (29 Jun 2015) + + 29 Jun 2015; Alexis Ballier <[email protected]> +utop-1.18.ebuild: + version bump 06 Jun 2015; Justin Lecher <[email protected]> metadata.xml: Add github to remote-id in metadata.xml 1.1 dev-ml/utop/utop-1.18.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/utop/utop-1.18.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/utop/utop-1.18.ebuild?rev=1.1&content-type=text/plain Index: utop-1.18.ebuild =================================================================== # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-ml/utop/utop-1.18.ebuild,v 1.1 2015/06/29 09:23:24 aballier Exp $ EAPI=5 OASIS_BUILD_DOCS=1 inherit oasis elisp-common DESCRIPTION="A new toplevel for OCaml with completion and colorization" HOMEPAGE="http://github.com/diml/utop" SRC_URI="http://github.com/diml/utop/archive/${PV}.tar.gz -> ${P}.tar.gz" LICENSE="BSD" SLOT="0/${PV}" KEYWORDS="~amd64" IUSE="camlp4 emacs" DEPEND=">=dev-ml/lwt-2.4.0:=[react] >=dev-ml/lambda-term-1.2:= >=dev-ml/zed-1.2:= >=dev-ml/cppo-1.0.1:= emacs? ( virtual/emacs ) camlp4? ( || ( dev-ml/camlp4:= <dev-lang/ocaml-4.02.0 ) )" RDEPEND="${DEPEND}" DOCS=( "CHANGES.md" "README.md" ) SITEFILE="50${PN}-gentoo.el" src_prepare() { sed -i "s/(\"utop.el.*)//" setup.ml } src_configure() { oasis_configure_opts="$(use_enable camlp4)" \ oasis_src_configure } src_compile() { oasis_src_compile if use emacs; then elisp-compile src/top/*.el fi } src_install() { oasis_src_install if use emacs; then elisp-install "${PN}" src/top/*.el src/top/*.elc || die elisp-site-file-install "${FILESDIR}/${SITEFILE}" || die fi } pkg_postinst() { use emacs && elisp-site-regen } pkg_postrm() { use emacs && elisp-site-regen }
