public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Justin Lecher" <jlec@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lang/mozart/
Date: Wed, 11 Nov 2015 11:35:24 +0000 (UTC)	[thread overview]
Message-ID: <1447241720.67c9d7700ff53e418a14ecc8683590c3f28d1567.jlec@gentoo> (raw)

commit:     67c9d7700ff53e418a14ecc8683590c3f28d1567
Author:     Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Wed Nov 11 10:49:00 2015 +0000
Commit:     Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Wed Nov 11 11:35:20 2015 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=67c9d770

dev-lang/mozart: Drop old

Package-Manager: portage-2.2.23
Signed-off-by: Justin Lecher <jlec <AT> gentoo.org>

 dev-lang/mozart/metadata.xml           |   8 +-
 dev-lang/mozart/mozart-1.4.0-r2.ebuild | 131 ---------------------------------
 2 files changed, 4 insertions(+), 135 deletions(-)

diff --git a/dev-lang/mozart/metadata.xml b/dev-lang/mozart/metadata.xml
index b60aa8b..f3395b7 100644
--- a/dev-lang/mozart/metadata.xml
+++ b/dev-lang/mozart/metadata.xml
@@ -1,8 +1,8 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
 <pkgmetadata>
-<maintainer>
-  <email>keri@gentoo.org</email>
-  <name>Keri Harris</name>
-</maintainer>
+  <maintainer>
+    <email>keri@gentoo.org</email>
+    <name>Keri Harris</name>
+  </maintainer>
 </pkgmetadata>

diff --git a/dev-lang/mozart/mozart-1.4.0-r2.ebuild b/dev-lang/mozart/mozart-1.4.0-r2.ebuild
deleted file mode 100644
index c6c8428..0000000
--- a/dev-lang/mozart/mozart-1.4.0-r2.ebuild
+++ /dev/null
@@ -1,131 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="2"
-
-inherit elisp-common eutils
-
-PATCHSET_VER="5"
-MY_P="mozart-${PV}.20080704"
-
-DESCRIPTION="Advanced development platform for intelligent, distributed applications"
-HOMEPAGE="http://www.mozart-oz.org/"
-SRC_URI="
-	http://www.mozart-oz.org/download/mozart-ftp/store/1.4.0-2008-07-02-tar/mozart-1.4.0.20080704-src.tar.gz
-	mirror://gentoo/${P}-gentoo-patchset-${PATCHSET_VER}.tar.gz
-	doc? ( http://www.mozart-oz.org/download/mozart-ftp/store/1.4.0-2008-07-02-tar/mozart-1.4.0.20080704-doc.tar.gz )"
-
-SLOT="0"
-LICENSE="Mozart"
-KEYWORDS="-amd64 ppc -ppc64 x86"
-IUSE="doc emacs examples gdbm static tcl threads tk"
-
-RDEPEND="
-	dev-lang/perl
-	dev-libs/gmp
-	sys-libs/zlib
-	emacs? ( virtual/emacs )
-	gdbm? ( sys-libs/gdbm  )
-	tcl? (
-		tk? (
-			dev-lang/tk:0
-			dev-lang/tcl:0
-		)
-	)"
-DEPEND="${RDEPEND}
-	sys-devel/bison
-	sys-devel/flex"
-
-SITEFILE=50${PN}-gentoo.el
-
-S="${WORKDIR}"/${MY_P}
-
-src_prepare() {
-	EPATCH_FORCE=yes
-	EPATCH_SUFFIX=patch
-	epatch "${WORKDIR}"/${PV}
-}
-
-src_configure() {
-	local myconf="\
-			--without-global-oz \
-			--enable-opt=none"
-
-	if use tcl && use tk ; then
-		myconf="${myconf} --enable-wish"
-	else
-		myconf="${myconf} --disable-wish"
-	fi
-
-	econf \
-		${myconf} \
-		--disable-doc \
-		--enable-contrib \
-		--disable-contrib-micq \
-		$(use_enable doc contrib-doc) \
-		$(use_enable gdbm contrib-gdbm) \
-		$(use_enable tk contrib-tk) \
-		$(use_enable emacs compile-elisp) \
-		$(use_enable static link-static) \
-		$(use_enable threads threaded)
-}
-
-src_compile() {
-	emake bootstrap || die "emake bootstrap failed"
-}
-
-src_test() {
-	# Mozart tests must be run single-threaded
-	cd "${S}"/share/test
-	emake -j1 boot-oztest || die "emake boot-oztest failed"
-	emake -j1 boot-check || die "emake boot-check failed"
-}
-
-src_install() {
-	emake \
-		PREFIX="${D}"/usr/lib/mozart \
-		ELISPDIR="${D}${SITELISP}/${PN}" \
-		install || die "emake install failed"
-
-	dosym /usr/lib/mozart/bin/convertTextPickle /usr/bin/convertTextPickle || die
-	dosym /usr/lib/mozart/bin/oldpickle2text /usr/bin/oldpickle2text || die
-	dosym /usr/lib/mozart/bin/ozc /usr/bin/ozc || die
-	dosym /usr/lib/mozart/bin/ozd /usr/bin/ozd || die
-	dosym /usr/lib/mozart/bin/ozengine /usr/bin/ozengine || die
-	dosym /usr/lib/mozart/bin/ozl /usr/bin/ozl || die
-	dosym /usr/lib/mozart/bin/ozplatform /usr/bin/ozplatform || die
-	dosym /usr/lib/mozart/bin/oztool /usr/bin/oztool || die
-	dosym /usr/lib/mozart/bin/pickle2text /usr/bin/pickle2text || die
-	dosym /usr/lib/mozart/bin/text2pickle /usr/bin/text2pickle || die
-
-	if use emacs; then
-		dosym /usr/lib/mozart/bin/oz /usr/bin/oz || die
-		elisp-site-file-install "${FILESDIR}/${SITEFILE}" \
-			|| die "elisp-site-file-install failed"
-	fi
-
-	if use doc ; then
-		dohtml -r "${WORKDIR}"/mozart/doc/* || die
-	fi
-
-	if use examples; then
-		cd "${S}"/share
-		insinto /usr/share/doc/${PF}/examples
-		doins -r examples/* || die
-		doins -r demo/* || die
-		rm -rf $(find "${D}"/usr/share/doc/${PF}/examples \
-			-name Makefile -o -name Makefile.in)
-	fi
-
-	cd "${S}"
-	dodoc README || die
-}
-
-pkg_postinst() {
-	use emacs && elisp-site-regen
-}
-
-pkg_postrm() {
-	use emacs && elisp-site-regen
-}


             reply	other threads:[~2015-11-11 11:35 UTC|newest]

Thread overview: 17+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-11-11 11:35 Justin Lecher [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-04-30  8:15 [gentoo-commits] repo/gentoo:master commit in: dev-lang/mozart/ Florian Schmaus
2022-10-16  0:01 Sam James
2021-08-03 15:13 Keri Harris
2021-07-25 23:23 Sam James
2021-05-09 20:54 Andreas Sturmlechner
2020-09-11 14:39 Keri Harris
2020-07-28 19:33 Keri Harris
2020-06-24 14:10 Keri Harris
2020-06-23 16:14 Keri Harris
2020-06-22 15:48 Keri Harris
2020-06-22 13:32 Keri Harris
2020-05-27 14:36 Keri Harris
2019-04-09 22:21 Patrice Clement
2019-04-09 22:21 Patrice Clement
2015-11-11 11:35 Justin Lecher
2015-11-11 10:39 Agostino Sarubbo

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1447241720.67c9d7700ff53e418a14ecc8683590c3f28d1567.jlec@gentoo \
    --to=jlec@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox