Gentoo Archives: gentoo-commits

From: Amy Liffey <amynka@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libarcus/
Date: Mon, 16 Jul 2018 16:02:45
Message-Id: 1531756879.2b97befd27a52654d972034c4d6d6192de8cd477.amynka@gentoo
1 commit: 2b97befd27a52654d972034c4d6d6192de8cd477
2 Author: Amy Liffey <amynka <AT> gentoo <DOT> org>
3 AuthorDate: Mon Jul 16 16:00:33 2018 +0000
4 Commit: Amy Liffey <amynka <AT> gentoo <DOT> org>
5 CommitDate: Mon Jul 16 16:01:19 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2b97befd
7
8 dev-libs/libarcus: version bump 3.4.1
9
10 Bug: https://bugs.gentoo.org/660884
11 Submitted-by: qwertyqwertyq <AT> protonmail.com
12 Package-Manager: Portage-2.3.40, Repoman-2.3.9
13
14 dev-libs/libarcus/Manifest | 1 +
15 dev-libs/libarcus/libarcus-3.4.1.ebuild | 42 +++++++++++++++++++++++++++++++++
16 2 files changed, 43 insertions(+)
17
18 diff --git a/dev-libs/libarcus/Manifest b/dev-libs/libarcus/Manifest
19 index 6d4038b6b1c..8d47b3cb406 100644
20 --- a/dev-libs/libarcus/Manifest
21 +++ b/dev-libs/libarcus/Manifest
22 @@ -1 +1,2 @@
23 DIST libarcus-3.3.0.tar.gz 29695 BLAKE2B a63ca06133cf7db556fe82cc7ea060badd7838d697822d64e09c52aaa81a8509bfa6010037004593da3b1e66dde510767a992524f8e1719e614932b88b9393fe SHA512 a911fb5784ceb835ba2c175ce42cc10544bdd0834e987d8ac1be2517293f00e596f94910d8bf5f37f61e63246ba6e78d28a23bc061809e70b1bb6ad1a21107c9
24 +DIST libarcus-3.4.1.tar.gz 29699 BLAKE2B 73f132ff9d908468f1d67c54b7430ac84c0aebb5dd12282dc894b877a91da3f9822e4db8bf16cb53f313396598d3890be9e06e50737b0a50edfc84543285f251 SHA512 63ed8d8da389641b91ed955624c04ca5488f98d3ef409c4a94ad1962155d6aedd8d61ca0231543cfe4e92ae10beb00001f957eb48f74b0c21447a1bd9b66d85d
25
26 diff --git a/dev-libs/libarcus/libarcus-3.4.1.ebuild b/dev-libs/libarcus/libarcus-3.4.1.ebuild
27 new file mode 100644
28 index 00000000000..d0e49ef66b9
29 --- /dev/null
30 +++ b/dev-libs/libarcus/libarcus-3.4.1.ebuild
31 @@ -0,0 +1,42 @@
32 +# Copyright 1999-2018 Gentoo Foundation
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=6
36 +
37 +PYTHON_COMPAT=( python3_{5,6} )
38 +
39 +inherit cmake-utils python-single-r1
40 +
41 +MY_PN="libArcus"
42 +
43 +DESCRIPTION="This library facilitates communication between Cura and its backend"
44 +HOMEPAGE="https://github.com/Ultimaker/libArcus"
45 +SRC_URI="https://github.com/Ultimaker/${MY_PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
46 +
47 +LICENSE="LGPL-3"
48 +SLOT="0/3"
49 +KEYWORDS="~amd64 ~x86"
50 +IUSE="examples python static-libs"
51 +REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
52 +
53 +RDEPEND="${PYTHON_DEPS}
54 + dev-python/sip[${PYTHON_USEDEP}]
55 + dev-libs/protobuf
56 + python? ( dev-python/protobuf-python[${PYTHON_USEDEP}] )"
57 +DEPEND="${RDEPEND}"
58 +
59 +S="${WORKDIR}/${MY_PN}-${PV}"
60 +
61 +pkg_setup() {
62 + use python && python-single-r1_pkg_setup
63 +}
64 +
65 +src_configure() {
66 + local mycmakeargs=(
67 + -DBUILD_PYTHON=$(usex python ON OFF)
68 + -DBUILD_EXAMPLES=$(usex examples ON OFF)
69 + -DBUILD_STATIC=$(usex static-libs ON OFF)
70 + )
71 + use python && mycmakeargs+=( -DPYTHON_SITE_PACKAGES_DIR="$(python_get_sitedir)" )
72 + cmake-utils_src_configure
73 +}