Gentoo Archives: gentoo-commits

From: Patrice Clement <monsieurp@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/jpype/
Date: Thu, 25 Feb 2016 00:54:49
Message-Id: 1456360798.759459fffe014945e1e564cceb31935b7dc3ca16.monsieurp@gentoo
1 commit: 759459fffe014945e1e564cceb31935b7dc3ca16
2 Author: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
3 AuthorDate: Thu Feb 25 00:39:48 2016 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Thu Feb 25 00:39:58 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=759459ff
7
8 dev-python/jpype: Add jpype to the tree.
9
10 JPype is an effort to allow Python programs full access to Java class libraries.
11
12 Gentoo-Bug: https://bugs.gentoo.org/304325
13 URL: https://github.com/originell/jpype
14
15 Package-Manager: portage-2.2.26
16 Signed-off-by: Patrice Clement <monsieurp <AT> gentoo.org>
17
18 dev-python/jpype/Manifest | 1 +
19 dev-python/jpype/jpype-0.6.1.ebuild | 42 +++++++++++++++++++++++++++++++++++++
20 dev-python/jpype/metadata.xml | 19 +++++++++++++++++
21 3 files changed, 62 insertions(+)
22
23 diff --git a/dev-python/jpype/Manifest b/dev-python/jpype/Manifest
24 new file mode 100644
25 index 0000000..06504b3
26 --- /dev/null
27 +++ b/dev-python/jpype/Manifest
28 @@ -0,0 +1 @@
29 +DIST jpype-0.6.1.zip 251407 SHA256 63ad841bae8d4a75e657f867122ef569ef6e9545d6880d30da63930bc74816e5 SHA512 e3cdae95a394f5b57049f444e4da442a75938279f77d74304ac6a45bf00eb4110d3a63b5580e30d82777764f195f848639f6b4e973e48510d0f5cd60c475ce2f WHIRLPOOL 5ae85f6a1e52f8fc26242f8772f467df06bca15447db9ac3881e1688bb86966aa3eeb542ad228779b286be3b7ece46cba13b15835bb6914eb2861122f614429f
30
31 diff --git a/dev-python/jpype/jpype-0.6.1.ebuild b/dev-python/jpype/jpype-0.6.1.ebuild
32 new file mode 100644
33 index 0000000..f8d469f
34 --- /dev/null
35 +++ b/dev-python/jpype/jpype-0.6.1.ebuild
36 @@ -0,0 +1,42 @@
37 +# Copyright 1999-2016 Gentoo Foundation
38 +# Distributed under the terms of the GNU General Public License v2
39 +# $Id$
40 +
41 +EAPI=5
42 +
43 +PYTHON_COMPAT=( python2_7 python3_{3,4,5} )
44 +
45 +inherit distutils-r1 java-pkg-opt-2
46 +
47 +DESCRIPTION="JPype is an effort to allow Python programs full access to Java class libraries"
48 +HOMEPAGE="https://github.com/originell/jpype"
49 +SRC_URI="https://github.com/originell/${PN}/archive/v${PV}.zip -> ${P}.zip"
50 +
51 +LICENSE="Apache-1.1"
52 +SLOT="0"
53 +KEYWORDS="~amd64 ~x86"
54 +IUSE="doc examples"
55 +
56 +S="${WORKDIR}/${P}"
57 +
58 +DEPEND="
59 + dev-python/setuptools[${PYTHON_USEDEP}]
60 + >=virtual/jdk-1.6"
61 +
62 +pkg_setup() {
63 + java-pkg_init
64 +}
65 +
66 +python_compile() {
67 + if ! python_is_python3; then
68 + local CXXFLAGS="${CXXFLAGS} -fno-strict-aliasing"
69 + export CXXFLAGS
70 + fi
71 + distutils-r1_python_compile
72 +}
73 +
74 +python_install() {
75 + use doc && local DOCS=( doc/* )
76 + use examples && local EXAMPLES=( examples/. )
77 + distutils-r1_python_install
78 +}
79
80 diff --git a/dev-python/jpype/metadata.xml b/dev-python/jpype/metadata.xml
81 new file mode 100644
82 index 0000000..c8bb153
83 --- /dev/null
84 +++ b/dev-python/jpype/metadata.xml
85 @@ -0,0 +1,19 @@
86 +<?xml version="1.0" encoding="UTF-8"?>
87 +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
88 +<pkgmetadata>
89 + <upstream>
90 + <remote-id type="github">originell/jpype</remote-id>
91 + </upstream>
92 + <maintainer type="person">
93 + <email>monsieurp@g.o</email>
94 + <name>Patrice Clement</name>
95 + </maintainer>
96 + <maintainer type="project">
97 + <email>python@g.o</email>
98 + <name>Python</name>
99 + </maintainer>
100 + <maintainer type="project">
101 + <email>java@g.o</email>
102 + <name>Java</name>
103 + </maintainer>
104 +</pkgmetadata>