Gentoo Archives: gentoo-commits

From: "Jurek Bartuszek (jurek)" <jurek@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-dotnet/nant: nant-0.85.ebuild ChangeLog
Date: Mon, 31 Dec 2007 16:32:39
Message-Id: E1J9NYz-0006o3-6y@stork.gentoo.org
1 jurek 07/12/31 16:32:29
2
3 Modified: nant-0.85.ebuild ChangeLog
4 Log:
5 dev-dotnet/nant-0.85: fixed threading issue (bug #199748)
6 (Portage version: 2.1.3.19)
7
8 Revision Changes Path
9 1.8 dev-dotnet/nant/nant-0.85.ebuild
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-dotnet/nant/nant-0.85.ebuild?rev=1.8&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-dotnet/nant/nant-0.85.ebuild?rev=1.8&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-dotnet/nant/nant-0.85.ebuild?r1=1.7&r2=1.8
14
15 Index: nant-0.85.ebuild
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/dev-dotnet/nant/nant-0.85.ebuild,v
18 retrieving revision 1.7
19 retrieving revision 1.8
20 diff -u -r1.7 -r1.8
21 --- nant-0.85.ebuild 11 Aug 2007 04:19:49 -0000 1.7
22 +++ nant-0.85.ebuild 31 Dec 2007 16:32:28 -0000 1.8
23 @@ -1,6 +1,6 @@
24 # Copyright 1999-2007 Gentoo Foundation
25 # Distributed under the terms of the GNU General Public License v2
26 -# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/nant/nant-0.85.ebuild,v 1.7 2007/08/11 04:19:49 beandog Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/nant/nant-0.85.ebuild,v 1.8 2007/12/31 16:32:28 jurek Exp $
28
29 inherit mono eutils
30
31 @@ -21,19 +21,22 @@
32
33 src_unpack() {
34 unpack ${A}
35 - cd ${S}
36 + cd "${S}"
37
38 # Fix a problem with duplicate building caused by the doc= target
39 - for file in $(find ${S}/src -name '*.build') ; do
40 + for file in $(find "${S}"/src -name '*.build') ; do
41 sed -i "s: doc=.*>:>:" ${file}
42 done
43
44 # Build against the .NET 2.0 Framework, as it is backwards compatible
45 sed -i -e "s/-f:NAnt.build/-t:mono-2.0 -f:NAnt.build/" \
46 - ${S}/Makefile || die "sed failed"
47 + "${S}"/Makefile || die "sed failed"
48 +
49 + # Patch to prevent build from failing due to threading issues (see bug #199748)
50 + epatch "${FILESDIR}"/${P}-threadingfix.patch
51
52 # Patch to allow building on current mono releases
53 - epatch ${FILESDIR}/${PN}-0.85-obselencense.patch
54 + epatch "${FILESDIR}"/${PN}-0.85-obselencense.patch
55 }
56
57 src_compile() {
58 @@ -53,7 +56,7 @@
59 sed -i \
60 -e "s:${D}::" \
61 -e "2iexport MONO_SILENT_WARNING=1" \
62 - ${D}/usr/bin/nant
63 + "${D}"/usr/bin/nant
64
65 dodoc README.txt
66 }
67
68
69
70 1.17 dev-dotnet/nant/ChangeLog
71
72 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-dotnet/nant/ChangeLog?rev=1.17&view=markup
73 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-dotnet/nant/ChangeLog?rev=1.17&content-type=text/plain
74 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-dotnet/nant/ChangeLog?r1=1.16&r2=1.17
75
76 Index: ChangeLog
77 ===================================================================
78 RCS file: /var/cvsroot/gentoo-x86/dev-dotnet/nant/ChangeLog,v
79 retrieving revision 1.16
80 retrieving revision 1.17
81 diff -u -r1.16 -r1.17
82 --- ChangeLog 11 Aug 2007 04:19:49 -0000 1.16
83 +++ ChangeLog 31 Dec 2007 16:32:28 -0000 1.17
84 @@ -1,6 +1,10 @@
85 # ChangeLog for dev-dotnet/nant
86 # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
87 -# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/nant/ChangeLog,v 1.16 2007/08/11 04:19:49 beandog Exp $
88 +# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/nant/ChangeLog,v 1.17 2007/12/31 16:32:28 jurek Exp $
89 +
90 + 31 Dec 2007; Jurek Bartuszek <jurek@g.o>
91 + +files/nant-0.85-threadingfix.patch, nant-0.85.ebuild:
92 + Fixed threading issue (bug #199748)
93
94 10 Aug 2007; Steve Dibb <beandog@g.o> nant-0.85.ebuild:
95 amd64 stable, bug 186686
96
97
98
99 --
100 gentoo-commits@g.o mailing list