* [gentoo-commits] gentoo-x86 commit in dev-dotnet/nant: nant-0.85.ebuild ChangeLog
@ 2007-12-31 16:32 Jurek Bartuszek (jurek)
0 siblings, 0 replies; 3+ messages in thread
From: Jurek Bartuszek (jurek) @ 2007-12-31 16:32 UTC (permalink / raw
To: gentoo-commits
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 <jurek@gentoo.org>
+ +files/nant-0.85-threadingfix.patch, nant-0.85.ebuild:
+ Fixed threading issue (bug #199748)
10 Aug 2007; Steve Dibb <beandog@gentoo.org> nant-0.85.ebuild:
amd64 stable, bug 186686
--
gentoo-commits@gentoo.org mailing list
^ permalink raw reply [flat|nested] 3+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-dotnet/nant: nant-0.85.ebuild ChangeLog
@ 2008-05-30 23:05 Jurek Bartuszek (jurek)
0 siblings, 0 replies; 3+ messages in thread
From: Jurek Bartuszek (jurek) @ 2008-05-30 23:05 UTC (permalink / raw
To: gentoo-commits
jurek 08/05/30 23:05:35
Modified: nant-0.85.ebuild ChangeLog
Log:
dev-dotnet/nant: Added dev-util/pkgconfig dependency (bug #216416)
(Portage version: 2.1.4.4)
Revision Changes Path
1.9 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.9&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-dotnet/nant/nant-0.85.ebuild?rev=1.9&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-dotnet/nant/nant-0.85.ebuild?r1=1.8&r2=1.9
Index: nant-0.85.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-dotnet/nant/nant-0.85.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- nant-0.85.ebuild 31 Dec 2007 16:32:28 -0000 1.8
+++ nant-0.85.ebuild 30 May 2008 23:05:34 -0000 1.9
@@ -1,6 +1,6 @@
-# Copyright 1999-2007 Gentoo Foundation
+# Copyright 1999-2008 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.8 2007/12/31 16:32:28 jurek Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/nant/nant-0.85.ebuild,v 1.9 2008/05/30 23:05:34 jurek Exp $
inherit mono eutils
@@ -13,7 +13,8 @@
KEYWORDS="amd64 ppc x86"
IUSE=""
-DEPEND=">=dev-lang/mono-1.2.2.1"
+DEPEND=">=dev-lang/mono-1.2.2.1
+ dev-util/pkgconfig"
RDEPEND="${DEPEND}"
# This build is not parallel build friendly
1.19 dev-dotnet/nant/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-dotnet/nant/ChangeLog?rev=1.19&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-dotnet/nant/ChangeLog?rev=1.19&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-dotnet/nant/ChangeLog?r1=1.18&r2=1.19
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-dotnet/nant/ChangeLog,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -r1.18 -r1.19
--- ChangeLog 12 Mar 2008 13:56:41 -0000 1.18
+++ ChangeLog 30 May 2008 23:05:34 -0000 1.19
@@ -1,6 +1,9 @@
# ChangeLog for dev-dotnet/nant
# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/nant/ChangeLog,v 1.18 2008/03/12 13:56:41 phreak Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/nant/ChangeLog,v 1.19 2008/05/30 23:05:34 jurek Exp $
+
+ 30 May 2008; Jurek Bartuszek <jurek@gentoo.org> nant-0.85.ebuild:
+ Added dev-util/pkgconfig dependency (bug #216416)
12 Mar 2008; Christian Heim <phreak@gentoo.org> metadata.xml:
Removing Peter Johanson (latexer, #206688) from metadata.xml.
--
gentoo-commits@lists.gentoo.org mailing list
^ permalink raw reply [flat|nested] 3+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-dotnet/nant: nant-0.85.ebuild ChangeLog
@ 2008-06-01 11:21 Jurek Bartuszek (jurek)
0 siblings, 0 replies; 3+ messages in thread
From: Jurek Bartuszek (jurek) @ 2008-06-01 11:21 UTC (permalink / raw
To: gentoo-commits
jurek 08/06/01 11:21:09
Modified: nant-0.85.ebuild ChangeLog
Log:
dev-dotnet/nant: Fixed mono-1.9 compatibility issues - removed usage of deprecated method (bug #218613)
(Portage version: 2.1.4.4)
Revision Changes Path
1.10 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.10&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-dotnet/nant/nant-0.85.ebuild?rev=1.10&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-dotnet/nant/nant-0.85.ebuild?r1=1.9&r2=1.10
Index: nant-0.85.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-dotnet/nant/nant-0.85.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- nant-0.85.ebuild 30 May 2008 23:05:34 -0000 1.9
+++ nant-0.85.ebuild 1 Jun 2008 11:21:09 -0000 1.10
@@ -1,6 +1,6 @@
# Copyright 1999-2008 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.9 2008/05/30 23:05:34 jurek Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/nant/nant-0.85.ebuild,v 1.10 2008/06/01 11:21:09 jurek Exp $
inherit mono eutils
@@ -37,7 +37,7 @@
epatch "${FILESDIR}"/${P}-threadingfix.patch
# Patch to allow building on current mono releases
- epatch "${FILESDIR}"/${PN}-0.85-obselencense.patch
+ epatch "${FILESDIR}"/${P}-obselencense.patch
}
src_compile() {
1.20 dev-dotnet/nant/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-dotnet/nant/ChangeLog?rev=1.20&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-dotnet/nant/ChangeLog?rev=1.20&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-dotnet/nant/ChangeLog?r1=1.19&r2=1.20
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-dotnet/nant/ChangeLog,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -r1.19 -r1.20
--- ChangeLog 30 May 2008 23:05:34 -0000 1.19
+++ ChangeLog 1 Jun 2008 11:21:09 -0000 1.20
@@ -1,6 +1,11 @@
# ChangeLog for dev-dotnet/nant
# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/nant/ChangeLog,v 1.19 2008/05/30 23:05:34 jurek Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/nant/ChangeLog,v 1.20 2008/06/01 11:21:09 jurek Exp $
+
+ 01 Jun 2008; Jurek Bartuszek <jurek@gentoo.org>
+ files/nant-0.85-obselencense.patch, nant-0.85.ebuild:
+ Fixed mono-1.9 compatibility issues - removed usage of deprecated method
+ (bug #218613)
30 May 2008; Jurek Bartuszek <jurek@gentoo.org> nant-0.85.ebuild:
Added dev-util/pkgconfig dependency (bug #216416)
--
gentoo-commits@lists.gentoo.org mailing list
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2008-06-01 11:21 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-05-30 23:05 [gentoo-commits] gentoo-x86 commit in dev-dotnet/nant: nant-0.85.ebuild ChangeLog Jurek Bartuszek (jurek)
-- strict thread matches above, loose matches on Subject: below --
2008-06-01 11:21 Jurek Bartuszek (jurek)
2007-12-31 16:32 Jurek Bartuszek (jurek)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox