public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Panagiotis Christopoulos (pchrist)" <pchrist@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] gentoo-x86 commit in dev-lang/swig: ChangeLog swig-1.3.40-r1.ebuild
Date: Thu, 29 Apr 2010 11:09:38 +0000 (UTC)	[thread overview]
Message-ID: <20100429110938.CD3482C04C@corvid.gentoo.org> (raw)

pchrist     10/04/29 11:09:38

  Modified:             ChangeLog swig-1.3.40-r1.ebuild
  Log:
  RESTRICT=test for the time being, fixes bug 317733 and broken testsuite once and for all
  (Portage version: 2.1.8.3/cvs/Linux i686)

Revision  Changes    Path
1.133                dev-lang/swig/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/swig/ChangeLog?rev=1.133&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/swig/ChangeLog?rev=1.133&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/swig/ChangeLog?r1=1.132&r2=1.133

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lang/swig/ChangeLog,v
retrieving revision 1.132
retrieving revision 1.133
diff -u -r1.132 -r1.133
--- ChangeLog	21 Apr 2010 07:59:07 -0000	1.132
+++ ChangeLog	29 Apr 2010 11:09:38 -0000	1.133
@@ -1,6 +1,11 @@
 # ChangeLog for dev-lang/swig
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/swig/ChangeLog,v 1.132 2010/04/21 07:59:07 pchrist Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/swig/ChangeLog,v 1.133 2010/04/29 11:09:38 pchrist Exp $
+
+  29 Apr 2010; Panagiotis Christopoulos <pchrist@gentoo.org>
+  swig-1.3.40-r1.ebuild:
+  RESTRICT=test for the time being, fixes bug 317733 and broken testsuite
+  once and for all
 
   21 Apr 2010; Panagiotis Christopoulos <pchrist@gentoo.org>
   swig-1.3.40-r1.ebuild:



1.7                  dev-lang/swig/swig-1.3.40-r1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/swig/swig-1.3.40-r1.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/swig/swig-1.3.40-r1.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-lang/swig/swig-1.3.40-r1.ebuild?r1=1.6&r2=1.7

Index: swig-1.3.40-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lang/swig/swig-1.3.40-r1.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- swig-1.3.40-r1.ebuild	21 Apr 2010 13:48:22 -0000	1.6
+++ swig-1.3.40-r1.ebuild	29 Apr 2010 11:09:38 -0000	1.7
@@ -1,9 +1,8 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/swig/swig-1.3.40-r1.ebuild,v 1.6 2010/04/21 13:48:22 pchrist Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/swig/swig-1.3.40-r1.ebuild,v 1.7 2010/04/29 11:09:38 pchrist Exp $
 
 EAPI="3"
-#inherit autotools #mono #48511
 DESCRIPTION="Simplified Wrapper and Interface Generator"
 HOMEPAGE="http://www.swig.org/"
 SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
@@ -11,29 +10,21 @@
 LICENSE="as-is"
 SLOT="0"
 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~x86-fbsd ~ia64-hpux ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
-IUSE="ccache doc test"
-
-DEPEND="test? ( dev-libs/boost )"
+IUSE="ccache doc"
+RESTRICT="test"
+DEPEND=""
 RDEPEND=""
-#AM_OPTS="--add-missing --copy --force-missing"
+
 src_prepare () {
-	#eautoreconf --verbose || die "reconfiguring the build system failed"
-	#use test && die
 	rm -v aclocal.m4 || die "Unable to remove aclocal.m4"
 	./autogen.sh || die "Autogen script failed"
 }
 
 src_configure () {
-		#--disable-dependency-tracking \
 	econf \
 		$(use_enable ccache)
 }
 
-src_test() {
-	ewarn "It is known that some tests fail, sometimes. Be warned!"
-	time env - make ${MAKEOPTS} check || die "Tests failed"
-}
-
 src_install() {
 	emake DESTDIR="${D}" install || die "target install failed"
 	dodoc ANNOUNCE CHANGES CHANGES.current FUTURE NEW README TODO || die "dodoc failed"






             reply	other threads:[~2010-04-29 11:09 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-04-29 11:09 Panagiotis Christopoulos (pchrist) [this message]
  -- strict thread matches above, loose matches on Subject: below --
2010-07-18 14:52 [gentoo-commits] gentoo-x86 commit in dev-lang/swig: ChangeLog swig-1.3.40-r1.ebuild Raul Porcel (armin76)
2010-07-17 16:08 Tobias Klausmann (klausman)
2010-07-09 18:57 Samuli Suominen (ssuominen)
2010-07-07 12:25 Christian Faulhammer (fauli)
2010-07-01 16:35 Jeroen Roovers (jer)
2010-06-26 17:05 Gysbert Wassenaar (nixnut)
2010-06-24 11:16 Christoph Mende (angelos)
2010-04-21  7:59 Panagiotis Christopoulos (pchrist)
2010-04-16  7:28 Panagiotis Christopoulos (pchrist)

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=20100429110938.CD3482C04C@corvid.gentoo.org \
    --to=pchrist@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