From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from lists.gentoo.org ([140.105.134.102] helo=robin.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1J9NZ8-00047D-V3 for garchives@archives.gentoo.org; Mon, 31 Dec 2007 16:32:39 +0000 Received: from robin.gentoo.org (localhost [127.0.0.1]) by robin.gentoo.org (8.14.2/8.14.0) with SMTP id lBVGWV4g008170; Mon, 31 Dec 2007 16:32:31 GMT Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by robin.gentoo.org (8.14.2/8.14.0) with ESMTP id lBVGWUAv008164 for ; Mon, 31 Dec 2007 16:32:30 GMT Received: from stork.gentoo.org (stork.gentoo.org [64.127.104.133]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTP id 3E4EE65CA8 for ; Mon, 31 Dec 2007 16:32:30 +0000 (UTC) Received: from jurek by stork.gentoo.org with local (Exim 4.68) (envelope-from ) id 1J9NYz-0006o3-6y for gentoo-commits@lists.gentoo.org; Mon, 31 Dec 2007 16:32:29 +0000 From: "Jurek Bartuszek (jurek)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, jurek@gentoo.org Subject: [gentoo-commits] gentoo-x86 commit in dev-dotnet/nant: nant-0.85.ebuild ChangeLog X-VCS-Repository: gentoo-x86 X-VCS-Files: nant-0.85.ebuild ChangeLog X-VCS-Directories: dev-dotnet/nant X-VCS-Committer: jurek X-VCS-Committer-Name: Jurek Bartuszek Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Message-Id: Sender: Jurek Bartuszek Date: Mon, 31 Dec 2007 16:32:29 +0000 Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@gentoo.org X-Archives-Salt: 8b7ae575-829d-4281-8f7f-f2374d54ee86 X-Archives-Hash: 6457f6bec7713886d0ee50204711f387 jurek 07/12/31 16:32:29 Modified: nant-0.85.ebuild ChangeLog Log: dev-dotnet/nant-0.85: fixed threading issue (bug #199748) (Portage version: 2.1.3.19) Revision Changes Path 1.8 dev-dotnet/nant/nant-0.85.ebuild file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-dotnet/nant/nant-0.85.ebuild?rev=1.8&view=markup plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-dotnet/nant/nant-0.85.ebuild?rev=1.8&content-type=text/plain diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-dotnet/nant/nant-0.85.ebuild?r1=1.7&r2=1.8 Index: nant-0.85.ebuild =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-dotnet/nant/nant-0.85.ebuild,v retrieving revision 1.7 retrieving revision 1.8 diff -u -r1.7 -r1.8 --- nant-0.85.ebuild 11 Aug 2007 04:19:49 -0000 1.7 +++ nant-0.85.ebuild 31 Dec 2007 16:32:28 -0000 1.8 @@ -1,6 +1,6 @@ # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/nant/nant-0.85.ebuild,v 1.7 2007/08/11 04:19:49 beandog Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/nant/nant-0.85.ebuild,v 1.8 2007/12/31 16:32:28 jurek Exp $ inherit mono eutils @@ -21,19 +21,22 @@ src_unpack() { unpack ${A} - cd ${S} + cd "${S}" # Fix a problem with duplicate building caused by the doc= target - for file in $(find ${S}/src -name '*.build') ; do + for file in $(find "${S}"/src -name '*.build') ; do sed -i "s: doc=.*>:>:" ${file} done # Build against the .NET 2.0 Framework, as it is backwards compatible sed -i -e "s/-f:NAnt.build/-t:mono-2.0 -f:NAnt.build/" \ - ${S}/Makefile || die "sed failed" + "${S}"/Makefile || die "sed failed" + + # Patch to prevent build from failing due to threading issues (see bug #199748) + epatch "${FILESDIR}"/${P}-threadingfix.patch # Patch to allow building on current mono releases - epatch ${FILESDIR}/${PN}-0.85-obselencense.patch + epatch "${FILESDIR}"/${PN}-0.85-obselencense.patch } src_compile() { @@ -53,7 +56,7 @@ sed -i \ -e "s:${D}::" \ -e "2iexport MONO_SILENT_WARNING=1" \ - ${D}/usr/bin/nant + "${D}"/usr/bin/nant dodoc README.txt } 1.17 dev-dotnet/nant/ChangeLog file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-dotnet/nant/ChangeLog?rev=1.17&view=markup plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-dotnet/nant/ChangeLog?rev=1.17&content-type=text/plain diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-dotnet/nant/ChangeLog?r1=1.16&r2=1.17 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-dotnet/nant/ChangeLog,v retrieving revision 1.16 retrieving revision 1.17 diff -u -r1.16 -r1.17 --- ChangeLog 11 Aug 2007 04:19:49 -0000 1.16 +++ ChangeLog 31 Dec 2007 16:32:28 -0000 1.17 @@ -1,6 +1,10 @@ # ChangeLog for dev-dotnet/nant # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/nant/ChangeLog,v 1.16 2007/08/11 04:19:49 beandog Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/nant/ChangeLog,v 1.17 2007/12/31 16:32:28 jurek Exp $ + + 31 Dec 2007; Jurek Bartuszek + +files/nant-0.85-threadingfix.patch, nant-0.85.ebuild: + Fixed threading issue (bug #199748) 10 Aug 2007; Steve Dibb nant-0.85.ebuild: amd64 stable, bug 186686 -- gentoo-commits@gentoo.org mailing list