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/microsoft-web-infrastructure/
Date: Wed, 31 Aug 2016 08:31:51
Message-Id: 1472369707.eb078abcda0a45543c4022ba134544abc94993a2.cynede@gentoo
1 commit: eb078abcda0a45543c4022ba134544abc94993a2
2 Author: ArsenShnurkov <Arsen.Shnurkov <AT> gmail <DOT> com>
3 AuthorDate: Sun Aug 28 07:35:07 2016 +0000
4 Commit: Mikhail Pukhlikov <cynede <AT> gentoo <DOT> org>
5 CommitDate: Sun Aug 28 07:35:07 2016 +0000
6 URL: https://gitweb.gentoo.org/proj/dotnet.git/commit/?id=eb078abc
7
8 copy of ebuild template
9
10 .../microsoft-web-infrastructure/metadata.xml | 20 ++++++++++++++++
11 .../microsoft-web-infrastructure-1.0.0.0.ebuild | 27 ++++++++++++++++++++++
12 2 files changed, 47 insertions(+)
13
14 diff --git a/dev-dotnet/microsoft-web-infrastructure/metadata.xml b/dev-dotnet/microsoft-web-infrastructure/metadata.xml
15 new file mode 100644
16 index 0000000..5875c6f
17 --- /dev/null
18 +++ b/dev-dotnet/microsoft-web-infrastructure/metadata.xml
19 @@ -0,0 +1,20 @@
20 +<?xml version="1.0" encoding="UTF-8"?>
21 +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
22 +<pkgmetadata>
23 + <maintainer type="project">
24 + <email>dotnet@g.o</email>
25 + <description>Gentoo Dotnet Project</description>
26 + </maintainer>
27 + <upstream>
28 + <bugs-to>https://github.com/gentoo/dotnet/issues</bugs-to>
29 + <remote-id type="github">mono/mono</remote-id>
30 + </upstream>
31 + <use>
32 + </use>
33 + <longdescription lang="en">
34 + This package contains the Microsoft.Web.Infrastructure assembly that lets you dynamically register HTTP modules at run time.
35 + </longdescription>
36 + <longdescription lang="ru">
37 + Сборка Microsoft.Web.Infrastructure.dll позволяет регистрировать модули HTTP динамически во время выполнения.
38 + </longdescription>
39 +</pkgmetadata>
40
41 diff --git a/dev-dotnet/microsoft-web-infrastructure/microsoft-web-infrastructure-1.0.0.0.ebuild b/dev-dotnet/microsoft-web-infrastructure/microsoft-web-infrastructure-1.0.0.0.ebuild
42 new file mode 100644
43 index 0000000..a04a3e3
44 --- /dev/null
45 +++ b/dev-dotnet/microsoft-web-infrastructure/microsoft-web-infrastructure-1.0.0.0.ebuild
46 @@ -0,0 +1,27 @@
47 +# Copyright 1999-2016 Gentoo Foundation
48 +# Distributed under the terms of the GNU General Public License v2
49 +# $Id$
50 +
51 +EAPI=6
52 +
53 +USE_DOTNET="net45"
54 +inherit nupkg
55 +IUSE="+${DOTNET}"
56 +
57 +DESCRIPTION="assembly that lets you dynamically register HTTP modules at run time"
58 +HOMEPAGE="https://www.asp.net/"
59 +SRC_URI="http://download.mono-project.com/sources/mono/mono-4.6.0.150.tar.bz2"
60 +
61 +LICENSE="Apache-2.0"
62 +SLOT="0"
63 +
64 +KEYWORDS="~amd64 ~x86"
65 +
66 +COMMONDEPEND="
67 +"
68 +RDEPEND="${COMMONDEPEND}
69 +"
70 +DEPEND="${COMMONDEPEND}
71 +"
72 +
73 +S="${WORKDIR}/${PN}-$(get_version_component_range 1-3)"