public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Ian Delaney" <idella4@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/uranium/, dev-python/uranium/files/
Date: Thu, 28 Apr 2016 14:12:32 +0000 (UTC)	[thread overview]
Message-ID: <1461852740.6a0fc3daa7a8586d24ee3c744c0145eadd6abcf2.idella4@gentoo> (raw)

commit:     6a0fc3daa7a8586d24ee3c744c0145eadd6abcf2
Author:     Marshall Brewer (Gentoo Key) <tomboy64 <AT> sina <DOT> cn>
AuthorDate: Fri Apr 15 13:15:51 2016 +0000
Commit:     Ian Delaney <idella4 <AT> gentoo <DOT> org>
CommitDate: Thu Apr 28 14:12:20 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6a0fc3da

dev-python/uranium: initial ebuild, version 2.1.0_beta

Closes: https://github.com/gentoo/gentoo/pull/1298

Signed-off-by: Ian Delaney <idella4 <AT> gentoo.org>

 dev-python/uranium/Manifest                        |  1 +
 .../uranium-2.1.0_beta-fix-install-paths.patch     | 27 ++++++++++
 dev-python/uranium/metadata.xml                    | 23 +++++++++
 dev-python/uranium/uranium-2.1.0_beta.ebuild       | 58 ++++++++++++++++++++++
 4 files changed, 109 insertions(+)

diff --git a/dev-python/uranium/Manifest b/dev-python/uranium/Manifest
new file mode 100644
index 0000000..2f5caad
--- /dev/null
+++ b/dev-python/uranium/Manifest
@@ -0,0 +1 @@
+DIST uranium-2.1.0_beta.tar.gz 436367 SHA256 9e7969fdaccb761a261eaed0b72ea94c7b6c0e4455df8f352f93647a6344673e SHA512 aacddf202e633ed3c7dc216a2700900af2ef5935a021a6534e815d373b666bdc775ab116b34d46cdec1d9b50ef8c81b9d113799f0f6d2b8e229ea14c2d8a0e66 WHIRLPOOL 5050d7fd0b07bf1b36f423d8576a312f2d667efc9574314b5748cee357251b39f36b69cce97203a569d63e56f779ce5db91eacd6ee4a1eda1d121713114bf01e

diff --git a/dev-python/uranium/files/uranium-2.1.0_beta-fix-install-paths.patch b/dev-python/uranium/files/uranium-2.1.0_beta-fix-install-paths.patch
new file mode 100644
index 0000000..a89895c
--- /dev/null
+++ b/dev-python/uranium/files/uranium-2.1.0_beta-fix-install-paths.patch
@@ -0,0 +1,27 @@
+diff -Naur a/CMakeLists.txt b/CMakeLists.txt
+--- a/CMakeLists.txt	2016-04-12 16:28:06.000000000 +0200
++++ b/CMakeLists.txt	2016-04-16 12:34:29.241397806 +0200
+@@ -67,12 +67,18 @@
+     install(DIRECTORY ${CMAKE_BINARY_DIR}/resources DESTINATION ${CMAKE_INSTALL_DATADIR}/uranium/)
+ endif()
+ 
+-if(APPLE OR WIN32)
+-    install(DIRECTORY UM DESTINATION lib/python${PYTHON_VERSION_MAJOR}.${PYTHON_VERSION_MINOR}/site-packages)
+-else()
+-    install(DIRECTORY UM DESTINATION lib/python${PYTHON_VERSION_MAJOR}/dist-packages)
++if(NOT PYTHON_SITE_PACKAGES_DIR) 
++    if(APPLE OR WIN32)
++        set(PYTHON_SITE_PACKAGES_DIR lib/python${PYTHON_VERSION_MAJOR}.${PYTHON_VERSION_MINOR}/site-packages CACHE
++            STRING "Directory to install Python bindings to")
++    else()
++        set(PYTHON_SITE_PACKAGES_DIR lib/python${PYTHON_VERSION_MAJOR}/dist-packages CACHE
++            STRING "Directory to install Python bindings to")
++    endif()
+ endif()
++
++install(DIRECTORY UM DESTINATION ${PYTHON_SITE_PACKAGES_DIR})
+ install(DIRECTORY resources DESTINATION ${CMAKE_INSTALL_DATADIR}/uranium)
+-install(DIRECTORY plugins DESTINATION lib/uranium)
++install(DIRECTORY plugins DESTINATION ${CMAKE_INSTALL_LIBDIR}/uranium)
+ 
+ include(CPackConfig.cmake)

diff --git a/dev-python/uranium/metadata.xml b/dev-python/uranium/metadata.xml
new file mode 100644
index 0000000..dc7980d
--- /dev/null
+++ b/dev-python/uranium/metadata.xml
@@ -0,0 +1,23 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+    <maintainer type="person">
+        <email>tomboy64@sina.cn</email>
+        <name>Matthew Brewer</name>
+    </maintainer>
+    <maintainer type="project">
+        <email>3dprint@gentoo.org</email>
+        <name>Gentoo 3D Printer Project</name>
+    </maintainer>
+    <maintainer type="project">
+        <email>proxy-maint@gentoo.org</email>
+        <name>Gentoo Proxy Maintainers Project</name>
+    </maintainer>
+    <maintainer type="project">
+        <email>python@gentoo.org</email>
+        <name>Gentoo Python Project</name>
+    </maintainer>
+    <upstream>
+		<remote-id type="github">Ultimaker/Uranium</remote-id>
+    </upstream>
+</pkgmetadata>

diff --git a/dev-python/uranium/uranium-2.1.0_beta.ebuild b/dev-python/uranium/uranium-2.1.0_beta.ebuild
new file mode 100644
index 0000000..861956d
--- /dev/null
+++ b/dev-python/uranium/uranium-2.1.0_beta.ebuild
@@ -0,0 +1,58 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+PYTHON_COMPAT=( python3_{4,5} )
+inherit cmake-utils python-single-r1
+
+MY_PN=Uranium
+MY_PV=${PV/_beta}
+
+DESCRIPTION="A Python framework for building 3D printing related applications"
+HOMEPAGE="https://github.com/Ultimaker/Uranium"
+SRC_URI="https://github.com/Ultimaker/${MY_PN}/archive/${MY_PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="AGPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="doc test"
+
+RDEPEND="${PYTHON_DEPS}
+	dev-libs/libarcus:*[${PYTHON_USEDEP}]
+	dev-python/PyQt5[${PYTHON_USEDEP}]
+	dev-python/numpy[${PYTHON_USEDEP}]
+	dev-qt/qtdeclarative:5
+	dev-qt/qtquickcontrols:5
+	sys-devel/gettext"
+DEPEND="${RDEPEND}
+	doc? ( app-doc/doxygen )
+	test? ( dev-python/pytest[${PYTHON_USEDEP}] )"
+S="${WORKDIR}/${MY_PN}-${MY_PV}"
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+PATCHES=( "${FILESDIR}/uranium-2.1.0_beta-fix-install-paths.patch" )
+DOCS=( README.md )
+
+src_configure() {
+	local mycmakeargs=(
+		-DPYTHON_SITE_PACKAGES_DIR="$(python_get_sitedir)" )
+	cmake-utils_src_configure
+}
+
+src_compile() {
+	cmake-utils_src_compile
+	if use doc; then
+		cmake-utils_src_compile doc
+		DOCS+=( html )
+	fi
+}
+
+src_test() {
+	emake -C "${BUILD_DIR}" tests
+}
+
+src_install() {
+	enable_cmake-utils_src_install
+	python_optimize "${D}usr/$(get_libdir)"
+}


             reply	other threads:[~2016-04-28 14:12 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-04-28 14:12 Ian Delaney [this message]
  -- strict thread matches above, loose matches on Subject: below --
2018-06-14 13:11 [gentoo-commits] repo/gentoo:master commit in: dev-python/uranium/, dev-python/uranium/files/ Alexey Shvetsov
2020-05-25 19:42 Alexey Shvetsov

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1461852740.6a0fc3daa7a8586d24ee3c744c0145eadd6abcf2.idella4@gentoo \
    --to=idella4@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox