Gentoo Archives: gentoo-commits

From: Mike Auty <ikelos@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] dev/ikelos:master commit in: dev-python/pythonnet/
Date: Sat, 02 Jul 2016 15:45:02
Message-Id: 1466068278.e086f559cc44527d662c8e4ace519bdb70933be1.ikelos@gentoo
1 commit: e086f559cc44527d662c8e4ace519bdb70933be1
2 Author: layman <layman <AT> localhost>
3 AuthorDate: Thu Jun 16 09:11:18 2016 +0000
4 Commit: Mike Auty <ikelos <AT> gentoo <DOT> org>
5 CommitDate: Thu Jun 16 09:11:18 2016 +0000
6 URL: https://gitweb.gentoo.org/dev/ikelos.git/commit/?id=e086f559
7
8 Add in initial Python for .NET code.
9
10 dev-python/pythonnet/Manifest | 1 +
11 dev-python/pythonnet/pythonnet-2.1.0.ebuild | 21 +++++++++++++++++++++
12 2 files changed, 22 insertions(+)
13
14 diff --git a/dev-python/pythonnet/Manifest b/dev-python/pythonnet/Manifest
15 new file mode 100644
16 index 0000000..390cab0
17 --- /dev/null
18 +++ b/dev-python/pythonnet/Manifest
19 @@ -0,0 +1 @@
20 +DIST pythonnet-2.1.0.tar.gz 738139 SHA256 6cb02d715b4d7b2696af7c88edad7b01e22080db5bcee00fba8779599696d408 SHA512 92df62d0389ac5ef933afb573cf08209a7deb42094ffe77e73fe2479887a461ad0e4465ca5bec51333c20322dec612eb211dc941852b64363ab0c2e2be22ecdf WHIRLPOOL f8919eb297eac2a34e5e92e7a58482e49d16d6adb91339d310647d9deeb915150a4535680b69fce2e13d3f348bbd47eff7e5ecb037ca7c11c34d9b70b2cd7b89
21
22 diff --git a/dev-python/pythonnet/pythonnet-2.1.0.ebuild b/dev-python/pythonnet/pythonnet-2.1.0.ebuild
23 new file mode 100644
24 index 0000000..8399b2b
25 --- /dev/null
26 +++ b/dev-python/pythonnet/pythonnet-2.1.0.ebuild
27 @@ -0,0 +1,21 @@
28 +# Copyright 1999-2016 Gentoo Foundation
29 +# Distributed under the terms of the GNU General Public License v2
30 +# $Id$
31 +
32 +EAPI=6
33 +
34 +PYTHON_COMPAT=( python2_7 python3_4 )
35 +inherit distutils-r1
36 +
37 +DESCRIPTION="Python bindings to use .NET and mono assemblies."
38 +HOMEPAGE="http://pythonnet.github.io/"
39 +SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
40 +
41 +LICENSE=""
42 +SLOT="0"
43 +KEYWORDS="~amd64 ~x86"
44 +IUSE=""
45 +
46 +DEPEND="dev-lang/mono
47 + sys-devel/clang[python]"
48 +RDEPEND="${DEPEND}"