From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id EBFCA138334 for ; Thu, 14 Jun 2018 13:11:45 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C011AE09B1; Thu, 14 Jun 2018 13:11:41 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 4C66DE09A8 for ; Thu, 14 Jun 2018 13:11:40 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B5510335C7A for ; Thu, 14 Jun 2018 13:11:38 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A1B102D9 for ; Thu, 14 Jun 2018 13:11:35 +0000 (UTC) From: "Alexey Shvetsov" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alexey Shvetsov" Message-ID: <1528981126.ebb409252ad317aa2a1dc45a5b4ae59faaf4e6d9.alexxy@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libsavitar/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/libsavitar/Manifest dev-libs/libsavitar/libsavitar-3.3.0.ebuild dev-libs/libsavitar/metadata.xml X-VCS-Directories: dev-libs/libsavitar/ X-VCS-Committer: alexxy X-VCS-Committer-Name: Alexey Shvetsov X-VCS-Revision: ebb409252ad317aa2a1dc45a5b4ae59faaf4e6d9 X-VCS-Branch: master Date: Thu, 14 Jun 2018 13:11:35 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 251b389e-661d-4fe9-b286-d2382bea0f69 X-Archives-Hash: 8e10ef9d62f1416c9da51b79ad773c66 commit: ebb409252ad317aa2a1dc45a5b4ae59faaf4e6d9 Author: Alexey Shvetsov omrb pnpi spb ru> AuthorDate: Thu Jun 14 12:58:46 2018 +0000 Commit: Alexey Shvetsov gentoo org> CommitDate: Thu Jun 14 12:58:46 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ebb40925 dev-libs/libsavitar: New package Closes: https://bugs.gentoo.org/630620 Closes: https://bugs.gentoo.org/648130 Closes: https://github.com/gentoo/gentoo/pull/8258 Package-Manager: Portage-2.3.40, Repoman-2.3.9 dev-libs/libsavitar/Manifest | 1 + dev-libs/libsavitar/libsavitar-3.3.0.ebuild | 39 +++++++++++++++++++++++++++++ dev-libs/libsavitar/metadata.xml | 18 +++++++++++++ 3 files changed, 58 insertions(+) diff --git a/dev-libs/libsavitar/Manifest b/dev-libs/libsavitar/Manifest new file mode 100644 index 00000000000..f7b6846a7b5 --- /dev/null +++ b/dev-libs/libsavitar/Manifest @@ -0,0 +1 @@ +DIST libsavitar-3.3.0.tar.gz 92460 BLAKE2B 7b68e42b41092986452684f5778873a2636741fcd5659d2ff543b3a81fbe1e9fc7a216b77506873e08e9a1c76dfa8d365d7524a83b974db864ca60727a6a8d4e SHA512 9b64e18496dac00f521294ae2401002b0cca1249a80426ac0c1a1edb0d41984aba957a0c2e9acbd1ac1678307f2778617dab3c88db5d244bd746314d1a991eba diff --git a/dev-libs/libsavitar/libsavitar-3.3.0.ebuild b/dev-libs/libsavitar/libsavitar-3.3.0.ebuild new file mode 100644 index 00000000000..8506fac4bb7 --- /dev/null +++ b/dev-libs/libsavitar/libsavitar-3.3.0.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +PYTHON_COMPAT=( python{3_5,3_6} ) +inherit cmake-utils python-single-r1 + +MY_PN="libSavitar" + +DESCRIPTION="C++ implementation of 3mf loading with SIP python bindings" +HOMEPAGE="https://github.com/Ultimaker/libSavitar" +SRC_URI="https://github.com/Ultimaker/${MY_PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="LGPL-3" +SLOT="0/3" +KEYWORDS="~amd64 ~x86" +IUSE="python static-libs" +REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )" + +RDEPEND="${PYTHON_DEPS} + dev-python/sip[${PYTHON_USEDEP}]" + +DEPEND="${RDEPEND}" + +S="${WORKDIR}/${MY_PN}-${PV}" + +pkg_setup() { + use python && python-single-r1_pkg_setup +} + +src_configure() { + local mycmakeargs=( + -DBUILD_PYTHON=$(usex python ON OFF) + -DBUILD_STATIC=$(usex static-libs ON OFF) + ) + use python && mycmakeargs+=( -DPYTHON_SITE_PACKAGES_DIR="$(python_get_sitedir)" ) + cmake-utils_src_configure +} diff --git a/dev-libs/libsavitar/metadata.xml b/dev-libs/libsavitar/metadata.xml new file mode 100644 index 00000000000..fe13ca85a30 --- /dev/null +++ b/dev-libs/libsavitar/metadata.xml @@ -0,0 +1,18 @@ + + + + + proxy-maint@gentoo.org + Gentoo Proxy Maintainers Project + + + 3dprint@gentoo.org + Gentoo 3D Printer Project + + + soname major version number + + + Ultimaker/libSavitar + +