public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-cpp/muParser: ChangeLog muParser-1.32-r1.ebuild
@ 2010-03-20 19:51 Justin Lecher (jlec)
  0 siblings, 0 replies; 3+ messages in thread
From: Justin Lecher (jlec) @ 2010-03-20 19:51 UTC (permalink / raw
  To: gentoo-commits

jlec        10/03/20 19:51:31

  Modified:             ChangeLog
  Added:                muParser-1.32-r1.ebuild
  Log:
  Parallel build fix, #310037, Thanks Kacper Kowalik for patch
  (Portage version: 2.2_rc67/cvs/Linux x86_64)

Revision  Changes    Path
1.14                 dev-cpp/muParser/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/muParser/ChangeLog?rev=1.14&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/muParser/ChangeLog?rev=1.14&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/muParser/ChangeLog?r1=1.13&r2=1.14

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-cpp/muParser/ChangeLog,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- ChangeLog	14 Feb 2010 20:45:26 -0000	1.13
+++ ChangeLog	20 Mar 2010 19:51:30 -0000	1.14
@@ -1,6 +1,12 @@
 # ChangeLog for dev-cpp/muParser
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-cpp/muParser/ChangeLog,v 1.13 2010/02/14 20:45:26 pva Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-cpp/muParser/ChangeLog,v 1.14 2010/03/20 19:51:30 jlec Exp $
+
+*muParser-1.32-r1 (20 Mar 2010)
+
+  20 Mar 2010; Justin Lecher (jlec) <jlec@gentoo.org>
+  +muParser-1.32-r1.ebuild, +files/muParser-1.32-parallel-build.patch:
+  Parallel build fix, #310037, Thanks Kacper Kowalik for patch
 
 *muParser-1.32 (14 Feb 2010)
 



1.1                  dev-cpp/muParser/muParser-1.32-r1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/muParser/muParser-1.32-r1.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/muParser/muParser-1.32-r1.ebuild?rev=1.1&content-type=text/plain

Index: muParser-1.32-r1.ebuild
===================================================================
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-cpp/muParser/muParser-1.32-r1.ebuild,v 1.1 2010/03/20 19:51:30 jlec Exp $

EAPI=2
inherit eutils

MY_PN=${PN/P/p}
MY_P=${MY_PN}_v${PV/./}
DESCRIPTION="Library for parsing mathematical expressions"
HOMEPAGE="http://muparser.sourceforge.net/"
SRC_URI="mirror://sourceforge/${MY_PN}/${MY_P}.tar.gz"

LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
IUSE="doc test"

RDEPEND=""
DEPEND="${RDEPEND}"

S=${WORKDIR}/${MY_P}

src_prepare() {
	# fix destdir and respect cxxflags
	# cant really use autotools cause muparser use bakefile
	# and too lasy to make an ebuild for it.
	epatch "${FILESDIR}"/${P}-build.patch
	epatch "${FILESDIR}"/${P}-parallel-build.patch
}

src_configure() {
	econf $(use_enable test samples)
}

src_test() {
	cat > test.sh <<-EOFTEST
	LD_LIBRARY_PATH=${S}/lib samples/example1/example1 << EOF
	quit
	EOF
	EOFTEST
	sh ./test.sh || die "test failed"
}

src_install() {
	emake DESTDIR="${D}" install || die "emake install failed"
	dodoc Changes.txt  Credits.txt || die "dodoc failed"
	if use doc; then
		insinto /usr/share/doc/${PF}
		doins -r docs/html || die
	fi
}






^ permalink raw reply	[flat|nested] 3+ messages in thread

* [gentoo-commits] gentoo-x86 commit in dev-cpp/muParser: ChangeLog muParser-1.32-r1.ebuild
@ 2010-04-26 20:35 Markus Meier (maekke)
  0 siblings, 0 replies; 3+ messages in thread
From: Markus Meier (maekke) @ 2010-04-26 20:35 UTC (permalink / raw
  To: gentoo-commits

maekke      10/04/26 20:35:19

  Modified:             ChangeLog muParser-1.32-r1.ebuild
  Log:
  amd64/x86 stable, bug #314045
  (Portage version: 2.2_rc67/cvs/Linux x86_64)

Revision  Changes    Path
1.15                 dev-cpp/muParser/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/muParser/ChangeLog?rev=1.15&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/muParser/ChangeLog?rev=1.15&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/muParser/ChangeLog?r1=1.14&r2=1.15

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-cpp/muParser/ChangeLog,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- ChangeLog	20 Mar 2010 19:51:30 -0000	1.14
+++ ChangeLog	26 Apr 2010 20:35:19 -0000	1.15
@@ -1,6 +1,9 @@
 # ChangeLog for dev-cpp/muParser
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-cpp/muParser/ChangeLog,v 1.14 2010/03/20 19:51:30 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-cpp/muParser/ChangeLog,v 1.15 2010/04/26 20:35:19 maekke Exp $
+
+  26 Apr 2010; Markus Meier <maekke@gentoo.org> muParser-1.32-r1.ebuild:
+  amd64/x86 stable, bug #314045
 
 *muParser-1.32-r1 (20 Mar 2010)
 



1.2                  dev-cpp/muParser/muParser-1.32-r1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/muParser/muParser-1.32-r1.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/muParser/muParser-1.32-r1.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/muParser/muParser-1.32-r1.ebuild?r1=1.1&r2=1.2

Index: muParser-1.32-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-cpp/muParser/muParser-1.32-r1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- muParser-1.32-r1.ebuild	20 Mar 2010 19:51:30 -0000	1.1
+++ muParser-1.32-r1.ebuild	26 Apr 2010 20:35:19 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-cpp/muParser/muParser-1.32-r1.ebuild,v 1.1 2010/03/20 19:51:30 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-cpp/muParser/muParser-1.32-r1.ebuild,v 1.2 2010/04/26 20:35:19 maekke Exp $
 
 EAPI=2
 inherit eutils
@@ -13,7 +13,7 @@
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
+KEYWORDS="amd64 ~ppc ~ppc64 x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
 IUSE="doc test"
 
 RDEPEND=""






^ permalink raw reply	[flat|nested] 3+ messages in thread

* [gentoo-commits] gentoo-x86 commit in dev-cpp/muParser: ChangeLog muParser-1.32-r1.ebuild
@ 2011-12-21  8:41 Justin Lecher (jlec)
  0 siblings, 0 replies; 3+ messages in thread
From: Justin Lecher (jlec) @ 2011-12-21  8:41 UTC (permalink / raw
  To: gentoo-commits

jlec        11/12/21 08:41:14

  Modified:             ChangeLog
  Removed:              muParser-1.32-r1.ebuild
  Log:
  Cleaned old
  
  (Portage version: 2.2.0_alpha81/cvs/Linux x86_64)

Revision  Changes    Path
1.23                 dev-cpp/muParser/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/muParser/ChangeLog?rev=1.23&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/muParser/ChangeLog?rev=1.23&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/muParser/ChangeLog?r1=1.22&r2=1.23

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-cpp/muParser/ChangeLog,v
retrieving revision 1.22
retrieving revision 1.23
diff -u -r1.22 -r1.23
--- ChangeLog	21 Dec 2011 08:37:03 -0000	1.22
+++ ChangeLog	21 Dec 2011 08:41:14 -0000	1.23
@@ -1,6 +1,9 @@
 # ChangeLog for dev-cpp/muParser
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-cpp/muParser/ChangeLog,v 1.22 2011/12/21 08:37:03 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-cpp/muParser/ChangeLog,v 1.23 2011/12/21 08:41:14 jlec Exp $
+
+  21 Dec 2011; Justin Lecher <jlec@gentoo.org> -muParser-1.32-r1.ebuild:
+  Cleaned old
 
   21 Dec 2011; Pawel Hajdan jr <phajdan.jr@gentoo.org> muParser-1.34.ebuild:
   x86 stable wrt bug #393903






^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2011-12-21  8:41 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-03-20 19:51 [gentoo-commits] gentoo-x86 commit in dev-cpp/muParser: ChangeLog muParser-1.32-r1.ebuild Justin Lecher (jlec)
  -- strict thread matches above, loose matches on Subject: below --
2010-04-26 20:35 Markus Meier (maekke)
2011-12-21  8:41 Justin Lecher (jlec)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox