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/techtalk-specflow/files/, dev-dotnet/techtalk-specflow/
Date: Tue, 31 Oct 2017 08:03:03
Message-Id: 1509385108.6b3bd2685edd99bf254dfbfa71e9c06161b1dcaf.cynede@gentoo
1 commit: 6b3bd2685edd99bf254dfbfa71e9c06161b1dcaf
2 Author: ArsenShnurkov <ArsenShnurkov <AT> users <DOT> noreply <DOT> github <DOT> com>
3 AuthorDate: Mon Oct 30 17:38:28 2017 +0000
4 Commit: Mikhail Pukhlikov <cynede <AT> gentoo <DOT> org>
5 CommitDate: Mon Oct 30 17:38:28 2017 +0000
6 URL: https://gitweb.gentoo.org/proj/dotnet.git/commit/?id=6b3bd268
7
8 compilation implemented
9
10 .../files/TechTalk.SpecFlow-1.2.0.0.csproj | 92 ++++++++++++++++++++++
11 .../techtalk-specflow-1.2.0.0.ebuild | 4 +-
12 2 files changed, 94 insertions(+), 2 deletions(-)
13
14 diff --git a/dev-dotnet/techtalk-specflow/files/TechTalk.SpecFlow-1.2.0.0.csproj b/dev-dotnet/techtalk-specflow/files/TechTalk.SpecFlow-1.2.0.0.csproj
15 new file mode 100644
16 index 0000000..ef9eacb
17 --- /dev/null
18 +++ b/dev-dotnet/techtalk-specflow/files/TechTalk.SpecFlow-1.2.0.0.csproj
19 @@ -0,0 +1,92 @@
20 +<?xml version="1.0" encoding="utf-8"?>
21 +<Project ToolsVersion="3.5" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
22 + <PropertyGroup>
23 + <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
24 + <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
25 + <ProjectGuid>{413EE28C-4F89-4C6F-BA1E-2CDEE4CD43B4}</ProjectGuid>
26 + <OutputType>Library</OutputType>
27 + <AppDesignerFolder>Properties</AppDesignerFolder>
28 + <RootNamespace>TechTalk.SpecFlow</RootNamespace>
29 + <AssemblyName>TechTalk.SpecFlow</AssemblyName>
30 + </PropertyGroup>
31 + <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
32 + <DebugSymbols>true</DebugSymbols>
33 + <DebugType>full</DebugType>
34 + <Optimize>false</Optimize>
35 + <OutputPath>bin\Debug\</OutputPath>
36 + <DefineConstants>DEBUG;TRACE</DefineConstants>
37 + <ErrorReport>prompt</ErrorReport>
38 + <WarningLevel>4</WarningLevel>
39 + </PropertyGroup>
40 + <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
41 + <DebugType>pdbonly</DebugType>
42 + <Optimize>true</Optimize>
43 + <OutputPath>bin\Release\</OutputPath>
44 + <DefineConstants>TRACE</DefineConstants>
45 + <ErrorReport>prompt</ErrorReport>
46 + <WarningLevel>4</WarningLevel>
47 + </PropertyGroup>
48 + <ItemGroup>
49 + <Reference Include="System" />
50 + <Reference Include="System.Configuration" />
51 + <Reference Include="System.Core" />
52 + <Reference Include="System.Xml.Linq" />
53 + <Reference Include="System.Data.DataSetExtensions" />
54 + <Reference Include="System.Data" />
55 + <Reference Include="System.Xml" />
56 + </ItemGroup>
57 + <ItemGroup>
58 + <Compile Include="..\VersionInfo.cs">
59 + <Link>VersionInfo.cs</Link>
60 + </Compile>
61 + <Compile Include="StepArgumentTypeConverter.cs" />
62 + <Compile Include="Attributes.cs" />
63 + <Compile Include="ErrorHandling\BindingException.cs" />
64 + <Compile Include="BindingMatch.cs" />
65 + <Compile Include="BindingRegistry.cs" />
66 + <Compile Include="BindingType.cs" />
67 + <Compile Include="Configuration\ConfigurationSectionHandler.cs" />
68 + <Compile Include="Configuration\RuntimeConfiguration.cs" />
69 + <Compile Include="ErrorHandling\MissingStepDefinitionException.cs" />
70 + <Compile Include="ErrorHandling\PendingStepException.cs" />
71 + <Compile Include="ErrorHandling\SpecFlowException.cs" />
72 + <Compile Include="EventBinding.cs" />
73 + <Compile Include="FeatureContext.cs" />
74 + <Compile Include="FeatureInfo.cs" />
75 + <Compile Include="ITestRunner.cs" />
76 + <Compile Include="SpecFlowContext.cs" />
77 + <Compile Include="StepArgs.cs" />
78 + <Compile Include="StringExtensions.cs" />
79 + <Compile Include="Tracing\DefaultListener.cs" />
80 + <Compile Include="ErrorHandling\ErrorProvider.cs" />
81 + <Compile Include="Tracing\LanguageHelper.cs" />
82 + <Compile Include="Tracing\StepDefinitonSkeletonProvider.cs" />
83 + <Compile Include="Tracing\StepFormatter.cs" />
84 + <Compile Include="UnitTestProvider\MsTestRuntimeProvider.cs" />
85 + <Compile Include="UnitTestProvider\NUnitRuntimeProvider.cs" />
86 + <Compile Include="ScenarioContext.cs" />
87 + <Compile Include="ScenarioBlock.cs" />
88 + <Compile Include="ScenarioInfo.cs" />
89 + <Compile Include="StepBinding.cs" />
90 + <Compile Include="Table.cs" />
91 + <Compile Include="TestRunner.cs" />
92 + <Compile Include="Properties\AssemblyInfo.cs" />
93 + <Compile Include="ObjectContainer.cs" />
94 + <Compile Include="Tracing\TestTracer.cs" />
95 + <Compile Include="UnitTestProvider\IUnitTestRuntimeProvider.cs" />
96 + <Compile Include="Tracing\ITraceListener.cs" />
97 + </ItemGroup>
98 + <ItemGroup>
99 + <EmbeddedResource Include="..\Languages.xml">
100 + <Link>Languages.xml</Link>
101 + </EmbeddedResource>
102 + </ItemGroup>
103 + <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
104 + <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
105 + Other similar extension points exist, see Microsoft.Common.targets.
106 + <Target Name="BeforeBuild">
107 + </Target>
108 + <Target Name="AfterBuild">
109 + </Target>
110 + -->
111 +</Project>
112 \ No newline at end of file
113
114 diff --git a/dev-dotnet/techtalk-specflow/techtalk-specflow-1.2.0.0.ebuild b/dev-dotnet/techtalk-specflow/techtalk-specflow-1.2.0.0.ebuild
115 index 0dbd17d..427e485 100644
116 --- a/dev-dotnet/techtalk-specflow/techtalk-specflow-1.2.0.0.ebuild
117 +++ b/dev-dotnet/techtalk-specflow/techtalk-specflow-1.2.0.0.ebuild
118 @@ -30,7 +30,7 @@ RDEPEND="${CDEPEND}
119 DEPEND="${CDEPEND}
120 "
121
122 -PATH_TO_PROJ="TechTalk.SpecFlow"
123 +PATH_TO_PROJ="Runtime"
124 METAFILE_TO_BUILD="TechTalk.SpecFlow"
125 ASSEMBLY_NAME="TechTalk.SpecFlow"
126
127 @@ -48,7 +48,7 @@ function output_filename ( ) {
128 }
129
130 src_prepare() {
131 - #cp "${FILESDIR}/${METAFILE_TO_BUILD}-${PV}.csproj" "${S}/${PATH_TO_PROJ}/${METAFILE_TO_BUILD}.csproj" || die
132 + cp "${FILESDIR}/${METAFILE_TO_BUILD}-${PV}.csproj" "${S}/${PATH_TO_PROJ}/${METAFILE_TO_BUILD}.csproj" || die
133 #cp "${FILESDIR}/CommonAssemblyInfo-${PV}.cs" "${S}/${PATH_TO_PROJ}/../CommonAssemblyInfo.cs" || die
134 eapply_user
135 }