Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/partio/
Date: Tue, 01 Sep 2020 10:31:28
Message-Id: 1598956161.93ad57d3ae43b9bc6a222326eb03a59f848c5a0c.mgorny@gentoo
1 commit: 93ad57d3ae43b9bc6a222326eb03a59f848c5a0c
2 Author: Adrian Grigo <agrigo2001 <AT> yahoo <DOT> com <DOT> au>
3 AuthorDate: Tue Aug 18 09:10:40 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Tue Sep 1 10:29:21 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=93ad57d3
7
8 media-libs/partio: Version bump to 1.10.1
9
10 This bumps partio to 1.10.1, and contains support for python 3.7 and
11 3.8
12
13 Signed-off-by: Adrian Grigo <agrigo2001 <AT> yahoo.com.au>
14 Closes: https://bugs.gentoo.org/696600
15 Closes: https://bugs.gentoo.org/737398
16 Package-Manager: Portage-2.3.103, Repoman-2.3.23
17 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
18
19 media-libs/partio/Manifest | 1 +
20 media-libs/partio/partio-1.10.1.ebuild | 48 ++++++++++++++++++++++++++++++++++
21 2 files changed, 49 insertions(+)
22
23 diff --git a/media-libs/partio/Manifest b/media-libs/partio/Manifest
24 index 6ed91b8ecc2..331a9dcc23a 100644
25 --- a/media-libs/partio/Manifest
26 +++ b/media-libs/partio/Manifest
27 @@ -1,2 +1,3 @@
28 DIST partio-1.1.0_p20170829.tar.gz 275959 BLAKE2B 441c2d0ab9dd91fa52a826d49f7448dc4d5d0a8d6b72bdb58793dd3c97d86739b25e582bdff41160599489a2835ad8e68676012cb70ef8edff062df3205ab209 SHA512 daedb23ae2b89d3f2ef36ef13afc624a663b3fab91c22f9a454439ff3bc194b78a87e37c9133f6948567ab3b183eff960bb51951b0427cff8c1c29099b6578d6
29 +DIST partio-1.10.1.tar.gz 333129 BLAKE2B 82d1dd36e9854e221af036d386ecdc558ac032ad7cd720403787ddc83ac236f05fd86e8c07ade07ca93b06a12ac2b834c96a6d43265e396934e44a815df003d3 SHA512 7d3c6449ebd1e8b8a29298a3119acfd1036970b287e9cd5f288a63c7e2b3bf451e9e1ba8fc72f203e225eb2b062d59cd7373817ccc6467de67427d02c0b12477
30 DIST partio-1.5.4.tar.gz 291617 BLAKE2B 638fae984d392e1e6c95862ad9a8dd8b8a0d80b2c83dfd03e887af36e420d15fd67f0b2c71e5e8c335668b512660bf14f03a1329ac0d7a48431674a51043585d SHA512 967da5b648b19c45bd0c3c8ff56f891e2d54a07b2cd113f18d5d0b646cbfabd968e31ee48c0e167bf9a911d8d5af42d5291b355da305a2b9134fa78fc23e5636
31
32 diff --git a/media-libs/partio/partio-1.10.1.ebuild b/media-libs/partio/partio-1.10.1.ebuild
33 new file mode 100644
34 index 00000000000..011f45bc931
35 --- /dev/null
36 +++ b/media-libs/partio/partio-1.10.1.ebuild
37 @@ -0,0 +1,48 @@
38 +# Copyright 1999-2020 Gentoo Authors
39 +# Distributed under the terms of the GNU General Public License v2
40 +
41 +EAPI=7
42 +
43 +PYTHON_COMPAT=( python3_{7,8} )
44 +inherit cmake python-single-r1
45 +
46 +if [[ ${PV} == *9999 ]]; then
47 + inherit git-r3
48 + EGIT_REPO_URI="https://github.com/wdas/partio.git"
49 +else
50 + SRC_URI="https://github.com/wdas/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
51 + KEYWORDS="~amd64 ~x86"
52 +fi
53 +
54 +DESCRIPTION="Library for particle IO and manipulation"
55 +HOMEPAGE="https://www.disneyanimation.com/technology/partio.html"
56 +
57 +LICENSE="BSD"
58 +SLOT="0"
59 +IUSE="doc"
60 +REQUIRED_USE="${PYTHON_REQUIRED_USE}"
61 +
62 +BDEPEND="
63 + dev-lang/swig
64 + doc? (
65 + app-doc/doxygen
66 + dev-texlive/texlive-bibtexextra
67 + dev-texlive/texlive-fontsextra
68 + dev-texlive/texlive-fontutils
69 + dev-texlive/texlive-latex
70 + dev-texlive/texlive-latexextra
71 + )
72 +"
73 +RDEPEND="${PYTHON_DEPS}
74 + media-libs/freeglut
75 + sys-libs/zlib
76 + virtual/opengl
77 +"
78 +DEPEND="${RDEPEND}"
79 +
80 +src_configure() {
81 + local mycmakeargs=(
82 + $(cmake_use_find_package doc Doxygen)
83 + )
84 + cmake_src_configure
85 +}