Gentoo Archives: gentoo-commits

From: Mikhail Pukhlikov <cynede@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/dotnet:master commit in: dev-dotnet/buildtools/files/, dev-dotnet/buildtools/
Date: Wed, 31 Jan 2018 07:48:25
Message-Id: 1517332329.73c3cebd39282d884e0c04ce1c4b6919e8873bcb.cynede@gentoo
1 commit: 73c3cebd39282d884e0c04ce1c4b6919e8873bcb
2 Author: ArsenShnurkov <ArsenShnurkov <AT> users <DOT> noreply <DOT> github <DOT> com>
3 AuthorDate: Tue Jan 30 17:12:09 2018 +0000
4 Commit: Mikhail Pukhlikov <cynede <AT> gentoo <DOT> org>
5 CommitDate: Tue Jan 30 17:12:09 2018 +0000
6 URL: https://gitweb.gentoo.org/proj/dotnet.git/commit/?id=73c3cebd
7
8 remove dependency
9
10 dev-dotnet/buildtools/buildtools-1.0.27.ebuild | 5 +++--
11 .../files/mono-Microsoft.DotNet.Build.Tasks.csproj | 18 ++++++++++++------
12 2 files changed, 15 insertions(+), 8 deletions(-)
13
14 diff --git a/dev-dotnet/buildtools/buildtools-1.0.27.ebuild b/dev-dotnet/buildtools/buildtools-1.0.27.ebuild
15 index d7706b3..222efe0 100644
16 --- a/dev-dotnet/buildtools/buildtools-1.0.27.ebuild
17 +++ b/dev-dotnet/buildtools/buildtools-1.0.27.ebuild
18 @@ -2,9 +2,11 @@
19 # Distributed under the terms of the GNU General Public License v2
20 # $Id$
21
22 -EAPI=6
23 +EAPI="6"
24 +
25 RESTRICT="mirror"
26 KEYWORDS="~amd64"
27 +
28 SLOT="0"
29
30 USE_DOTNET="net45"
31 @@ -30,7 +32,6 @@ COMMON_DEPEND=">=dev-lang/mono-5.2.0.196
32 RDEPEND="${COMMON_DEPEND}
33 "
34 DEPEND="${COMMON_DEPEND}
35 - >=dev-dotnet/msbuildtasks-1.5.0.240
36 "
37
38 PROJ1=Microsoft.DotNet.Build.Tasks
39
40 diff --git a/dev-dotnet/buildtools/files/mono-Microsoft.DotNet.Build.Tasks.csproj b/dev-dotnet/buildtools/files/mono-Microsoft.DotNet.Build.Tasks.csproj
41 index a46b9cf..3a278c6 100644
42 --- a/dev-dotnet/buildtools/files/mono-Microsoft.DotNet.Build.Tasks.csproj
43 +++ b/dev-dotnet/buildtools/files/mono-Microsoft.DotNet.Build.Tasks.csproj
44 @@ -109,15 +109,21 @@
45 <Reference Include="System.IO.Compression.FileSystem" />
46 </ItemGroup>
47 <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
48 - <Import Project="$(MSBuildExtensionsPath)\MSBuild.Community.Tasks.Targets" />
49 <Target Name="BeforeBuild">
50 <PropertyGroup Condition=" '$(VersionNumber)' == '' ">
51 <VersionNumber>1.0.27.0</VersionNumber>
52 </PropertyGroup>
53 - <AssemblyInfo CodeLanguage="C#"
54 - OutputFile="AV.cs"
55 - AssemblyVersion="$(VersionNumber)"
56 - AssemblyFileVersion="$(VersionNumber)"
57 - />
58 + <ItemGroup>
59 + <AssemblyAttributes Include="AssemblyVersion">
60 + <_Parameter1>$(VersionNumber)</_Parameter1>
61 + </AssemblyAttributes>
62 + <AssemblyAttributes Include="AssemblyFileVersion">
63 + <_Parameter1>$(VersionNumber)</_Parameter1>
64 + </AssemblyAttributes>
65 + <AssemblyAttributes Include="AssemblyInformationalVersion">
66 + <_Parameter1>$(VersionNumber)</_Parameter1>
67 + </AssemblyAttributes>
68 + </ItemGroup>
69 + <WriteCodeFragment Language="C#" OutputFile="AV.cs" AssemblyAttributes="@(AssemblyAttributes)" />
70 </Target>
71 </Project>