* [gentoo-commits] gentoo-x86 commit in dev-lang/mozart: mozart-1.4.0-r2.ebuild ChangeLog
@ 2010-11-21 2:10 Keri Harris (keri)
0 siblings, 0 replies; 5+ messages in thread
From: Keri Harris (keri) @ 2010-11-21 2:10 UTC (permalink / raw
To: gentoo-commits
keri 10/11/21 02:10:21
Modified: ChangeLog
Added: mozart-1.4.0-r2.ebuild
Log:
Add examples to IUSE; install demo+examples to /usr/share/doc; install DSS library with platform libs
(Portage version: 2.1.8.3/cvs/Linux x86_64)
Revision Changes Path
1.33 dev-lang/mozart/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/mozart/ChangeLog?rev=1.33&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/mozart/ChangeLog?rev=1.33&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/mozart/ChangeLog?r1=1.32&r2=1.33
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lang/mozart/ChangeLog,v
retrieving revision 1.32
retrieving revision 1.33
diff -u -r1.32 -r1.33
--- ChangeLog 19 Nov 2010 23:54:01 -0000 1.32
+++ ChangeLog 21 Nov 2010 02:10:21 -0000 1.33
@@ -1,6 +1,12 @@
# ChangeLog for dev-lang/mozart
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/mozart/ChangeLog,v 1.32 2010/11/19 23:54:01 keri Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/mozart/ChangeLog,v 1.33 2010/11/21 02:10:21 keri Exp $
+
+*mozart-1.4.0-r2 (21 Nov 2010)
+
+ 21 Nov 2010; <keri@gentoo.org> +mozart-1.4.0-r2.ebuild:
+ Add examples to IUSE; install demo+examples to /usr/share/doc; install DSS
+ library with platform libs
*mozart-1.4.0-r1 (19 Nov 2010)
1.1 dev-lang/mozart/mozart-1.4.0-r2.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/mozart/mozart-1.4.0-r2.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/mozart/mozart-1.4.0-r2.ebuild?rev=1.1&content-type=text/plain
Index: mozart-1.4.0-r2.ebuild
===================================================================
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-lang/mozart/mozart-1.4.0-r2.ebuild,v 1.1 2010/11/21 02:10:21 keri Exp $
EAPI="2"
inherit elisp-common eutils
PATCHSET_VER="3"
MY_P="mozart-${PV}.20080704"
DESCRIPTION="Mozart is an 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 )"
LICENSE="Mozart"
SLOT="0"
KEYWORDS="-amd64 ~ppc -ppc64 ~sparc ~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
dev-lang/tcl ) )"
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
}
^ permalink raw reply [flat|nested] 5+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-lang/mozart: mozart-1.4.0-r2.ebuild ChangeLog
@ 2010-12-02 6:30 Keri Harris (keri)
0 siblings, 0 replies; 5+ messages in thread
From: Keri Harris (keri) @ 2010-12-02 6:30 UTC (permalink / raw
To: gentoo-commits
keri 10/12/02 06:30:57
Modified: mozart-1.4.0-r2.ebuild ChangeLog
Log:
Respect CFLAGS in dss
(Portage version: 2.1.9.24/cvs/Linux x86_64)
Revision Changes Path
1.2 dev-lang/mozart/mozart-1.4.0-r2.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/mozart/mozart-1.4.0-r2.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/mozart/mozart-1.4.0-r2.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/mozart/mozart-1.4.0-r2.ebuild?r1=1.1&r2=1.2
Index: mozart-1.4.0-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lang/mozart/mozart-1.4.0-r2.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- mozart-1.4.0-r2.ebuild 21 Nov 2010 02:10:21 -0000 1.1
+++ mozart-1.4.0-r2.ebuild 2 Dec 2010 06:30:57 -0000 1.2
@@ -1,12 +1,12 @@
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/mozart/mozart-1.4.0-r2.ebuild,v 1.1 2010/11/21 02:10:21 keri Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/mozart/mozart-1.4.0-r2.ebuild,v 1.2 2010/12/02 06:30:57 keri Exp $
EAPI="2"
inherit elisp-common eutils
-PATCHSET_VER="3"
+PATCHSET_VER="4"
MY_P="mozart-${PV}.20080704"
DESCRIPTION="Mozart is an advanced development platform for intelligent, distributed applications"
1.34 dev-lang/mozart/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/mozart/ChangeLog?rev=1.34&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/mozart/ChangeLog?rev=1.34&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/mozart/ChangeLog?r1=1.33&r2=1.34
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lang/mozart/ChangeLog,v
retrieving revision 1.33
retrieving revision 1.34
diff -u -r1.33 -r1.34
--- ChangeLog 21 Nov 2010 02:10:21 -0000 1.33
+++ ChangeLog 2 Dec 2010 06:30:57 -0000 1.34
@@ -1,6 +1,9 @@
# ChangeLog for dev-lang/mozart
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/mozart/ChangeLog,v 1.33 2010/11/21 02:10:21 keri Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/mozart/ChangeLog,v 1.34 2010/12/02 06:30:57 keri Exp $
+
+ 02 Dec 2010; <keri@gentoo.org> mozart-1.4.0-r2.ebuild:
+ Respect CFLAGS in dss
*mozart-1.4.0-r2 (21 Nov 2010)
^ permalink raw reply [flat|nested] 5+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-lang/mozart: mozart-1.4.0-r2.ebuild ChangeLog
@ 2012-02-16 18:02 PaweA Hajdan (phajdan.jr)
0 siblings, 0 replies; 5+ messages in thread
From: PaweA Hajdan (phajdan.jr) @ 2012-02-16 18:02 UTC (permalink / raw
To: gentoo-commits
phajdan.jr 12/02/16 18:02:28
Modified: mozart-1.4.0-r2.ebuild ChangeLog
Log:
x86 stable wrt bug #396885
(Portage version: 2.1.10.44/cvs/Linux i686)
Revision Changes Path
1.3 dev-lang/mozart/mozart-1.4.0-r2.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/mozart/mozart-1.4.0-r2.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/mozart/mozart-1.4.0-r2.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/mozart/mozart-1.4.0-r2.ebuild?r1=1.2&r2=1.3
Index: mozart-1.4.0-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lang/mozart/mozart-1.4.0-r2.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- mozart-1.4.0-r2.ebuild 2 Dec 2010 06:30:57 -0000 1.2
+++ mozart-1.4.0-r2.ebuild 16 Feb 2012 18:02:28 -0000 1.3
@@ -1,6 +1,6 @@
-# Copyright 1999-2010 Gentoo Foundation
+# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/mozart/mozart-1.4.0-r2.ebuild,v 1.2 2010/12/02 06:30:57 keri Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/mozart/mozart-1.4.0-r2.ebuild,v 1.3 2012/02/16 18:02:28 phajdan.jr Exp $
EAPI="2"
@@ -17,7 +17,7 @@
LICENSE="Mozart"
SLOT="0"
-KEYWORDS="-amd64 ~ppc -ppc64 ~sparc ~x86"
+KEYWORDS="-amd64 ~ppc -ppc64 ~sparc x86"
IUSE="doc emacs examples gdbm static tcl threads tk"
RDEPEND="dev-lang/perl
1.35 dev-lang/mozart/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/mozart/ChangeLog?rev=1.35&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/mozart/ChangeLog?rev=1.35&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/mozart/ChangeLog?r1=1.34&r2=1.35
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lang/mozart/ChangeLog,v
retrieving revision 1.34
retrieving revision 1.35
diff -u -r1.34 -r1.35
--- ChangeLog 2 Dec 2010 06:30:57 -0000 1.34
+++ ChangeLog 16 Feb 2012 18:02:28 -0000 1.35
@@ -1,6 +1,9 @@
# ChangeLog for dev-lang/mozart
-# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/mozart/ChangeLog,v 1.34 2010/12/02 06:30:57 keri Exp $
+# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/mozart/ChangeLog,v 1.35 2012/02/16 18:02:28 phajdan.jr Exp $
+
+ 16 Feb 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org> mozart-1.4.0-r2.ebuild:
+ x86 stable wrt bug #396885
02 Dec 2010; <keri@gentoo.org> mozart-1.4.0-r2.ebuild:
Respect CFLAGS in dss
^ permalink raw reply [flat|nested] 5+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-lang/mozart: mozart-1.4.0-r2.ebuild ChangeLog
@ 2012-06-18 10:08 Keri Harris (keri)
0 siblings, 0 replies; 5+ messages in thread
From: Keri Harris (keri) @ 2012-06-18 10:08 UTC (permalink / raw
To: gentoo-commits
keri 12/06/18 10:08:46
Modified: mozart-1.4.0-r2.ebuild ChangeLog
Log:
Support building mozart on PPC with 3.x kernels. Closes #421055
(Portage version: 2.1.10.49/cvs/Linux x86_64)
Revision Changes Path
1.5 dev-lang/mozart/mozart-1.4.0-r2.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/mozart/mozart-1.4.0-r2.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/mozart/mozart-1.4.0-r2.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/mozart/mozart-1.4.0-r2.ebuild?r1=1.4&r2=1.5
Index: mozart-1.4.0-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lang/mozart/mozart-1.4.0-r2.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- mozart-1.4.0-r2.ebuild 18 Mar 2012 15:41:16 -0000 1.4
+++ mozart-1.4.0-r2.ebuild 18 Jun 2012 10:08:46 -0000 1.5
@@ -1,12 +1,12 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/mozart/mozart-1.4.0-r2.ebuild,v 1.4 2012/03/18 15:41:16 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/mozart/mozart-1.4.0-r2.ebuild,v 1.5 2012/06/18 10:08:46 keri Exp $
EAPI="2"
inherit elisp-common eutils
-PATCHSET_VER="4"
+PATCHSET_VER="5"
MY_P="mozart-${PV}.20080704"
DESCRIPTION="Mozart is an advanced development platform for intelligent, distributed applications"
1.37 dev-lang/mozart/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/mozart/ChangeLog?rev=1.37&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/mozart/ChangeLog?rev=1.37&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/mozart/ChangeLog?r1=1.36&r2=1.37
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lang/mozart/ChangeLog,v
retrieving revision 1.36
retrieving revision 1.37
diff -u -r1.36 -r1.37
--- ChangeLog 18 Mar 2012 15:41:16 -0000 1.36
+++ ChangeLog 18 Jun 2012 10:08:46 -0000 1.37
@@ -1,6 +1,10 @@
# ChangeLog for dev-lang/mozart
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/mozart/ChangeLog,v 1.36 2012/03/18 15:41:16 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/mozart/ChangeLog,v 1.37 2012/06/18 10:08:46 keri Exp $
+
+ 15 Jun 2012; <keri@gentoo.org> mozart-1.4.0-r2.ebuild:
+ Support building mozart on PPC with 3.x kernels. Reported and investigated by
+ Michael Weber. Closes #421055
18 Mar 2012; Raúl Porcel <armin76@gentoo.org> mozart-1.3.2.ebuild,
mozart-1.3.2-r1.ebuild, mozart-1.4.0.ebuild, mozart-1.4.0-r1.ebuild,
^ permalink raw reply [flat|nested] 5+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-lang/mozart: mozart-1.4.0-r2.ebuild ChangeLog
@ 2012-08-22 10:42 Michael Weber (xmw)
0 siblings, 0 replies; 5+ messages in thread
From: Michael Weber (xmw) @ 2012-08-22 10:42 UTC (permalink / raw
To: gentoo-commits
xmw 12/08/22 10:42:47
Modified: mozart-1.4.0-r2.ebuild ChangeLog
Log:
ppc stable (bug 396885).
(Portage version: 2.1.11.10/cvs/Linux x86_64)
Revision Changes Path
1.6 dev-lang/mozart/mozart-1.4.0-r2.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/mozart/mozart-1.4.0-r2.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/mozart/mozart-1.4.0-r2.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/mozart/mozart-1.4.0-r2.ebuild?r1=1.5&r2=1.6
Index: mozart-1.4.0-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lang/mozart/mozart-1.4.0-r2.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- mozart-1.4.0-r2.ebuild 18 Jun 2012 10:08:46 -0000 1.5
+++ mozart-1.4.0-r2.ebuild 22 Aug 2012 10:42:47 -0000 1.6
@@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/mozart/mozart-1.4.0-r2.ebuild,v 1.5 2012/06/18 10:08:46 keri Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/mozart/mozart-1.4.0-r2.ebuild,v 1.6 2012/08/22 10:42:47 xmw Exp $
EAPI="2"
@@ -17,7 +17,7 @@
LICENSE="Mozart"
SLOT="0"
-KEYWORDS="-amd64 ~ppc -ppc64 x86"
+KEYWORDS="-amd64 ppc -ppc64 x86"
IUSE="doc emacs examples gdbm static tcl threads tk"
RDEPEND="dev-lang/perl
1.38 dev-lang/mozart/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/mozart/ChangeLog?rev=1.38&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/mozart/ChangeLog?rev=1.38&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/mozart/ChangeLog?r1=1.37&r2=1.38
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lang/mozart/ChangeLog,v
retrieving revision 1.37
retrieving revision 1.38
diff -u -r1.37 -r1.38
--- ChangeLog 18 Jun 2012 10:08:46 -0000 1.37
+++ ChangeLog 22 Aug 2012 10:42:47 -0000 1.38
@@ -1,6 +1,9 @@
# ChangeLog for dev-lang/mozart
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/mozart/ChangeLog,v 1.37 2012/06/18 10:08:46 keri Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/mozart/ChangeLog,v 1.38 2012/08/22 10:42:47 xmw Exp $
+
+ 22 Aug 2012; Michael Weber <xmw@gentoo.org> mozart-1.4.0-r2.ebuild:
+ ppc stable (bug 396885).
15 Jun 2012; <keri@gentoo.org> mozart-1.4.0-r2.ebuild:
Support building mozart on PPC with 3.x kernels. Reported and investigated by
@@ -165,4 +168,3 @@
+files/mozart-1.3.2-ozplatform.patch, +files/mozart-1.3.2-portage.patch,
+metadata.xml, +mozart-1.3.2.ebuild:
Initial import.
-
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2012-08-22 10:43 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-12-02 6:30 [gentoo-commits] gentoo-x86 commit in dev-lang/mozart: mozart-1.4.0-r2.ebuild ChangeLog Keri Harris (keri)
-- strict thread matches above, loose matches on Subject: below --
2012-08-22 10:42 Michael Weber (xmw)
2012-06-18 10:08 Keri Harris (keri)
2012-02-16 18:02 PaweA Hajdan (phajdan.jr)
2010-11-21 2:10 Keri Harris (keri)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox