commit: bcbe5c55326786d03d463a9ea04e0ac72067c5c6
Author: ArsenShnurkov <Arsen.Shnurkov <AT> gmail <DOT> com>
AuthorDate: Tue Jul 26 14:09:48 2016 +0000
Commit: Heather Cynede <cynede <AT> gentoo <DOT> org>
CommitDate: Tue Jul 26 14:09:48 2016 +0000
URL: https://gitweb.gentoo.org/proj/dotnet.git/commit/?id=bcbe5c55
initial attempt - no ebuild for xunit
dev-dotnet/libgit2sharp/libgit2sharp-0.22.ebuild | 37 ++++++++++++++++++++++++
dev-dotnet/libgit2sharp/metadata.xml | 16 ++++++++++
2 files changed, 53 insertions(+)
diff --git a/dev-dotnet/libgit2sharp/libgit2sharp-0.22.ebuild
b/dev-dotnet/libgit2sharp/libgit2sharp-0.22.ebuild
new file mode 100644
index 0000000..afbc3e5
--- /dev/null
+++ b/dev-dotnet/libgit2sharp/libgit2sharp-0.22.ebuild
@@ -0,0 +1,37 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+USE_DOTNET="net45"
+IUSE="${USE_DOTNET}"
+
+inherit nupkg
+
+KEYWORDS="amd64 x86 ~ppc-macos"
+
+DESCRIPTION="A C# PInvoke wrapper library for LibGit2 C library"
+
+EGIT_COMMIT="8daef23223e1374141bf496e4b310ded9ae4639e"
+HOMEPAGE="https://github.com/libgit2/libgit2sharp"
+SRC_URI="${HOMEPAGE}/archive/${EGIT_COMMIT}.tar.gz -> ${P}.tar.gz"
+#RESTRICT="mirror"
+
+S="${WORKDIR}/${PN}-${EGIT_COMMIT}"
+
+LICENSE="MIT"
+SLOT="0"
+
+CDEPEND="
+ dev-libs/libgit2
+"
+
+DEPEND="${CDEPEND}
+ dev-dotnet/nuget
+"
+RDEPEND="${CDEPEND}"
+
+src_unpack() {
+ nuget restore ${S}/LibGit2Sharp.sln || die
+}
diff --git a/dev-dotnet/libgit2sharp/metadata.xml
b/dev-dotnet/libgit2sharp/metadata.xml
new file mode 100644
index 0000000..3356044
--- /dev/null
+++ b/dev-dotnet/libgit2sharp/metadata.xml
@@ -0,0 +1,16 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer type="project">
+ <email>[email protected]</email>
+ </maintainer>
+ <longdescription lang="en">
+ libgit2starp is PInvoke wrapper (in C# language) for libgit2,
+ which is a portable, pure C implementation of the Git core
methods provided
+ as a re-entrant linkable library with a solid API, allowing you
to write
+ custom Git applications.
+ </longdescription>
+ <upstream>
+ <remote-id type="github">libgit2/libgit2sharp</remote-id>
+ </upstream>
+</pkgmetadata>