mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-07-30 22:48:07 -07:00
dev-python/uranium: Version bump to 2.3.1
Package-Manager: portage-2.3.2
This commit is contained in:
@@ -1 +1,2 @@
|
||||
DIST uranium-2.1.0_beta.tar.gz 436367 SHA256 9e7969fdaccb761a261eaed0b72ea94c7b6c0e4455df8f352f93647a6344673e SHA512 aacddf202e633ed3c7dc216a2700900af2ef5935a021a6534e815d373b666bdc775ab116b34d46cdec1d9b50ef8c81b9d113799f0f6d2b8e229ea14c2d8a0e66 WHIRLPOOL 5050d7fd0b07bf1b36f423d8576a312f2d667efc9574314b5748cee357251b39f36b69cce97203a569d63e56f779ce5db91eacd6ee4a1eda1d121713114bf01e
|
||||
DIST uranium-2.3.1.tar.gz 509563 SHA256 e1fc3106845e5f635abd81ed75da7e8c095b11351322f4a5fc46c9870c1fa415 SHA512 4d0f959b8850608b6a34aef2901394734c994280b40bd863436b7c87eae2834214c1fe5264c4db6368f605076b42123dc7586a3ac7d217d4edd462edb6af9a88 WHIRLPOOL 519b78bc3fdba780b35c64531fc97de33922235ce7bb9c5f0891df3bef010ebb1439f73eb2307277198a32c00974639fe398693778b8973152c4a7eaa2f79ea0
|
||||
|
||||
@@ -0,0 +1,30 @@
|
||||
diff -urN Uranium-2.3.1.orig/CMakeLists.txt Uranium-2.3.1/CMakeLists.txt
|
||||
--- Uranium-2.3.1.orig/CMakeLists.txt 2016-10-27 18:22:23.000000000 +0300
|
||||
+++ Uranium-2.3.1/CMakeLists.txt 2016-12-05 12:25:53.190933188 +0300
|
||||
@@ -43,14 +43,20 @@
|
||||
# Build Translations
|
||||
CREATE_TRANSLATION_TARGETS()
|
||||
|
||||
-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(FILES ${CMAKE_SOURCE_DIR}/cmake/UraniumTranslationTools.cmake
|
||||
- DESTINATION ${CMAKE_INSTALL_DATADIR}/cmake-${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION}/Modules/ )
|
||||
+ DESTINATION ${CMAKE_INSTALL_DATADIR}/cmake/Modules/ )
|
||||
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)
|
||||
58
dev-python/uranium/uranium-2.3.1.ebuild
Normal file
58
dev-python/uranium/uranium-2.3.1.ebuild
Normal file
@@ -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-${PV}:*[${PYTHON_USEDEP}]
|
||||
dev-python/PyQt5[${PYTHON_USEDEP},declarative,network,svg]
|
||||
dev-python/numpy[${PYTHON_USEDEP}]
|
||||
dev-qt/qtdeclarative:5
|
||||
dev-qt/qtquickcontrols:5"
|
||||
DEPEND="${RDEPEND}
|
||||
sys-devel/gettext
|
||||
doc? ( app-doc/doxygen )
|
||||
test? ( dev-python/pytest[${PYTHON_USEDEP}] )"
|
||||
S="${WORKDIR}/${MY_PN}-${MY_PV}"
|
||||
PATCHES=( "${FILESDIR}/${PN}-2.3.1-fix-install-paths.patch" )
|
||||
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
|
||||
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)"
|
||||
}
|
||||
Reference in New Issue
Block a user