* [gentoo-commits] gentoo-x86 commit in sci-electronics/ngspice: ngspice-24.ebuild ChangeLog
@ 2012-05-23 18:43 Denis Dupeyron (calchan)
0 siblings, 0 replies; 3+ messages in thread
From: Denis Dupeyron (calchan) @ 2012-05-23 18:43 UTC (permalink / raw
To: gentoo-commits
calchan 12/05/23 18:43:02
Modified: ChangeLog
Added: ngspice-24.ebuild
Log:
Version bump.
(Portage version: 2.1.10.62/cvs/Linux x86_64)
Revision Changes Path
1.2 sci-electronics/ngspice/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-electronics/ngspice/ChangeLog?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-electronics/ngspice/ChangeLog?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-electronics/ngspice/ChangeLog?r1=1.1&r2=1.2
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-electronics/ngspice/ChangeLog,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- ChangeLog 15 Jul 2011 22:45:58 -0000 1.1
+++ ChangeLog 23 May 2012 18:43:02 -0000 1.2
@@ -1,6 +1,11 @@
# ChangeLog for sci-electronics/ngspice
-# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-electronics/ngspice/ChangeLog,v 1.1 2011/07/15 22:45:58 calchan Exp $
+# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/sci-electronics/ngspice/ChangeLog,v 1.2 2012/05/23 18:43:02 calchan Exp $
+
+*ngspice-24 (23 May 2012)
+
+ 23 May 2012; Denis Dupeyron <calchan@gentoo.org> +ngspice-24.ebuild:
+ Version Bump.
*ngspice-23 (15 Jul 2011)
1.1 sci-electronics/ngspice/ngspice-24.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-electronics/ngspice/ngspice-24.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-electronics/ngspice/ngspice-24.ebuild?rev=1.1&content-type=text/plain
Index: ngspice-24.ebuild
===================================================================
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-electronics/ngspice/ngspice-24.ebuild,v 1.1 2012/05/23 18:43:02 calchan Exp $
EAPI="3"
inherit autotools eutils
DESCRIPTION="The Next Generation Spice (Electronic Circuit Simulator)."
SRC_URI="mirror://sourceforge/ngspice/${P}.tar.gz
mirror://sourceforge/ngspice/${PN}${PV}-manual.pdf.gz"
HOMEPAGE="http://ngspice.sourceforge.net"
LICENSE="BSD GPL-2"
SLOT="0"
IUSE="X debug readline"
KEYWORDS="~amd64 ~ppc ~sparc ~x86"
DEPEND="readline? ( >=sys-libs/readline-5.0 )
X? ( x11-libs/libXaw
x11-libs/libXt
x11-libs/libX11
sci-visualization/xgraph )"
RDEPEND="$DEPEND"
src_prepare() {
sed -e 's/_CFLAGS -O2/_CFLAGS/' -i configure.ac || die "sed failed"
sed -e 's/LDFLAGS =/LDFLAGS +=/' -i src/xspice/icm/makedefs.in || die "sed failed"
eautoreconf
}
src_configure() {
local MYCONF
if use debug ; then
MYCONF="--enable-debug \
--enable-ftedebug \
--enable-cpdebug \
--enable-asdebug \
--enable-stepdebug \
--enable-pzdebug"
else
MYCONF="--disable-debug \
--disable-ftedebug \
--disable-cpdebug \
--disable-asdebug \
--disable-stepdebug \
--disable-pzdebug"
fi
# Those don't compile
MYCONF="${MYCONF} \
--disable-sensdebug \
--disable-blktmsdebug \
--disable-smltmsdebug"
econf \
${MYCONF} \
--enable-xspice \
--enable-cider \
--enable-ndev \
--disable-xgraph \
--disable-dependency-tracking \
--disable-rpath \
$(use_with X x) \
$(use_with readline)
}
# These will need to be looked at some day:
# --enable-adms
# --enable-nodelimiting
# --enable-predictor
# --enable-newtrunc
# --enable-openmp
src_install () {
local infoFile
for infoFile in doc/ngspice.info*; do
echo 'INFO-DIR-SECTION EDA' >> ${infoFile}
echo 'START-INFO-DIR-ENTRY' >> ${infoFile}
echo '* NGSPICE: (ngspice). Electronic Circuit Simulator.' >> ${infoFile}
echo 'END-INFO-DIR-ENTRY' >> ${infoFile}
done
emake DESTDIR="${D}" install || die "make install failed"
dodoc ANALYSES AUTHORS BUGS ChangeLog DEVICES NEWS \
README Stuarts_Poly_Notes || die "failed to install documentation"
insinto /usr/share/doc/${PF}
doins ../${PN}${PV}-manual.pdf || die "failed to install manual"
# We don't need ngmakeidx to be installed
rm "${D}"/usr/bin/ngmakeidx
}
src_test () {
# Bug 108405
true
}
^ permalink raw reply [flat|nested] 3+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sci-electronics/ngspice: ngspice-24.ebuild ChangeLog
@ 2012-07-13 13:14 Diego Petteno (flameeyes)
0 siblings, 0 replies; 3+ messages in thread
From: Diego Petteno (flameeyes) @ 2012-07-13 13:14 UTC (permalink / raw
To: gentoo-commits
flameeyes 12/07/13 13:14:38
Modified: ngspice-24.ebuild ChangeLog
Log:
Fix building with automake 1.11 as well as 1.12. Fixes bug #426354.
(Portage version: 2.2.0_alpha116/cvs/Linux x86_64)
Revision Changes Path
1.3 sci-electronics/ngspice/ngspice-24.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-electronics/ngspice/ngspice-24.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-electronics/ngspice/ngspice-24.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-electronics/ngspice/ngspice-24.ebuild?r1=1.2&r2=1.3
Index: ngspice-24.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-electronics/ngspice/ngspice-24.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- ngspice-24.ebuild 24 Jun 2012 08:55:11 -0000 1.2
+++ ngspice-24.ebuild 13 Jul 2012 13:14:37 -0000 1.3
@@ -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/sci-electronics/ngspice/ngspice-24.ebuild,v 1.2 2012/06/24 08:55:11 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-electronics/ngspice/ngspice-24.ebuild,v 1.3 2012/07/13 13:14:37 flameeyes Exp $
EAPI="3"
@@ -27,7 +27,7 @@
src_prepare() {
sed -e 's/_CFLAGS -O2/_CFLAGS/' -i configure.ac || die "sed failed"
sed -e 's/LDFLAGS =/LDFLAGS +=/' -i src/xspice/icm/makedefs.in || die "sed failed"
- epatch "${FILESDIR}"/${P}-automake-1.12.patch
+ sed -e '/AM_INIT_AUTOMAKE/s:-Werror::' -i configure.ac || die "sed failed"
eautoreconf
}
1.4 sci-electronics/ngspice/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-electronics/ngspice/ChangeLog?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-electronics/ngspice/ChangeLog?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-electronics/ngspice/ChangeLog?r1=1.3&r2=1.4
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-electronics/ngspice/ChangeLog,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- ChangeLog 24 Jun 2012 08:55:11 -0000 1.3
+++ ChangeLog 13 Jul 2012 13:14:37 -0000 1.4
@@ -1,6 +1,10 @@
# ChangeLog for sci-electronics/ngspice
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-electronics/ngspice/ChangeLog,v 1.3 2012/06/24 08:55:11 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-electronics/ngspice/ChangeLog,v 1.4 2012/07/13 13:14:37 flameeyes Exp $
+
+ 13 Jul 2012; Diego E. Pettenò <flameeyes@gentoo.org>
+ -files/ngspice-24-automake-1.12.patch, ngspice-24.ebuild:
+ Fix building with automake 1.11 as well as 1.12. Fixes bug #426354.
24 Jun 2012; Justin Lecher <jlec@gentoo.org> ngspice-24.ebuild,
+files/ngspice-24-automake-1.12.patch, metadata.xml:
@@ -138,4 +142,3 @@
28 Nov 2003; <plasmaroo@gentoo.org> ng-spice-rework-14.ebuild:
Initial commit.
-
^ permalink raw reply [flat|nested] 3+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sci-electronics/ngspice: ngspice-24.ebuild ChangeLog
@ 2012-10-23 17:05 Diego Petteno (flameeyes)
0 siblings, 0 replies; 3+ messages in thread
From: Diego Petteno (flameeyes) @ 2012-10-23 17:05 UTC (permalink / raw
To: gentoo-commits
flameeyes 12/10/23 17:05:45
Modified: ngspice-24.ebuild ChangeLog
Log:
QA: don't pass -s flag in cflags, as that pre-strips the file. Closes bug #439270.
(Portage version: 2.2.0_alpha141/cvs/Linux x86_64, signed Manifest commit with key 1CD13C8AD4301342)
Revision Changes Path
1.4 sci-electronics/ngspice/ngspice-24.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-electronics/ngspice/ngspice-24.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-electronics/ngspice/ngspice-24.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-electronics/ngspice/ngspice-24.ebuild?r1=1.3&r2=1.4
Index: ngspice-24.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-electronics/ngspice/ngspice-24.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- ngspice-24.ebuild 13 Jul 2012 13:14:37 -0000 1.3
+++ ngspice-24.ebuild 23 Oct 2012 17:05:45 -0000 1.4
@@ -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/sci-electronics/ngspice/ngspice-24.ebuild,v 1.3 2012/07/13 13:14:37 flameeyes Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-electronics/ngspice/ngspice-24.ebuild,v 1.4 2012/10/23 17:05:45 flameeyes Exp $
EAPI="3"
@@ -25,6 +25,7 @@
RDEPEND="$DEPEND"
src_prepare() {
+ sed -e '/CFLAGS=/s: -s::' -i configure.ac || die "sed failed"
sed -e 's/_CFLAGS -O2/_CFLAGS/' -i configure.ac || die "sed failed"
sed -e 's/LDFLAGS =/LDFLAGS +=/' -i src/xspice/icm/makedefs.in || die "sed failed"
sed -e '/AM_INIT_AUTOMAKE/s:-Werror::' -i configure.ac || die "sed failed"
1.5 sci-electronics/ngspice/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-electronics/ngspice/ChangeLog?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-electronics/ngspice/ChangeLog?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-electronics/ngspice/ChangeLog?r1=1.4&r2=1.5
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-electronics/ngspice/ChangeLog,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- ChangeLog 13 Jul 2012 13:14:37 -0000 1.4
+++ ChangeLog 23 Oct 2012 17:05:45 -0000 1.5
@@ -1,6 +1,10 @@
# ChangeLog for sci-electronics/ngspice
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-electronics/ngspice/ChangeLog,v 1.4 2012/07/13 13:14:37 flameeyes Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-electronics/ngspice/ChangeLog,v 1.5 2012/10/23 17:05:45 flameeyes Exp $
+
+ 23 Oct 2012; Diego E. Pettenò <flameeyes@gentoo.org> ngspice-24.ebuild:
+ QA: don't pass -s flag in cflags, as that pre-strips the file. Closes bug
+ #439270.
13 Jul 2012; Diego E. Pettenò <flameeyes@gentoo.org>
-files/ngspice-24-automake-1.12.patch, ngspice-24.ebuild:
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2012-10-23 17:05 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-07-13 13:14 [gentoo-commits] gentoo-x86 commit in sci-electronics/ngspice: ngspice-24.ebuild ChangeLog Diego Petteno (flameeyes)
-- strict thread matches above, loose matches on Subject: below --
2012-10-23 17:05 Diego Petteno (flameeyes)
2012-05-23 18:43 Denis Dupeyron (calchan)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox