Gentoo Archives: gentoo-commits

From: Alexis Ballier <aballier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/sratom/
Date: Wed, 30 Nov 2016 09:25:41
Message-Id: 1480497932.dab551f6f5ddc47d02fa6c9738ecae3dfc2cca55.aballier@gentoo
1 commit: dab551f6f5ddc47d02fa6c9738ecae3dfc2cca55
2 Author: Alexis Ballier <aballier <AT> gentoo <DOT> org>
3 AuthorDate: Wed Nov 30 09:10:32 2016 +0000
4 Commit: Alexis Ballier <aballier <AT> gentoo <DOT> org>
5 CommitDate: Wed Nov 30 09:25:32 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dab551f6
7
8 media-libs/sratom: bump to 0.6.0
9
10 Package-Manager: portage-2.3.2
11
12 media-libs/sratom/Manifest | 1 +
13 media-libs/sratom/sratom-0.6.0.ebuild | 44 +++++++++++++++++++++++++++++++++++
14 2 files changed, 45 insertions(+)
15
16 diff --git a/media-libs/sratom/Manifest b/media-libs/sratom/Manifest
17 index 3aabc60..2c4bcf1 100644
18 --- a/media-libs/sratom/Manifest
19 +++ b/media-libs/sratom/Manifest
20 @@ -1,2 +1,3 @@
21 DIST sratom-0.4.4.tar.bz2 134625 SHA256 fa0c29f4fed822d5d2c41e4b4694d3a01bda1e25ae16af1054b85ad42a2180e0 SHA512 f485da575810348ed9f5016d326b1e82bd9e52d096fa91598c626bdad3f3ba15bbacdd5153b09134f1ad3112fc00132678d096e38f9f7ce2af3cef9f6fe1585a WHIRLPOOL 9dafa3ec0990b8f562d11efe6870e3b0a47e86b15f79665d1677e9cf30b9f75607d3f76a299c6c63b38b2c2a1a364e3e62131ca86aac084dd3ab008808ff272b
22 DIST sratom-0.4.6.tar.bz2 138165 SHA256 a4b9beaeaedc4f651beb15cd1cfedff905b0726a9010548483475ad97d941220 SHA512 198ab8fd7b027bf62db5d215e1af020695304339df552af6a336be661b30228d9c1ab2befeca959fdde0920dad2c33666fbd6bbf833ba1e24e4fde23d850dc0e WHIRLPOOL 82e0f8ab618b911b949da3d4d42e9084f906476f626d743a9920b572b64b6bf472ad1041bf07c64135636e88ec9f5ef62769c75aff3468ad5d4cd93a12b1f281
23 +DIST sratom-0.6.0.tar.bz2 149340 SHA256 440ac2b1f4f0b7878f8b95698faa1e8f8c50929a498f68ec5d066863626a3d43 SHA512 899bb01896e2b65b69482041c7e06edc9e45e9a3466392c82a58f16dfc71462a6c3e3e16a5aa50a6347c8366ea72898468910a59a084762f75eb8c7031ceacf8 WHIRLPOOL 6f7557397e96f3597a60e629987fcf23ea1125d97e5bd4540c7b110d160858a4a6d5689c830126538cc95d9320690d0d13e556251490e67b2b59fcd5746e9cd3
24
25 diff --git a/media-libs/sratom/sratom-0.6.0.ebuild b/media-libs/sratom/sratom-0.6.0.ebuild
26 new file mode 100644
27 index 00000000..93a5f35
28 --- /dev/null
29 +++ b/media-libs/sratom/sratom-0.6.0.ebuild
30 @@ -0,0 +1,44 @@
31 +# Copyright 1999-2016 Gentoo Foundation
32 +# Distributed under the terms of the GNU General Public License v2
33 +# $Id$
34 +
35 +EAPI=4
36 +
37 +PYTHON_COMPAT=( python{2_7,3_4} )
38 +PYTHON_REQ_USE='threads(+)'
39 +inherit python-any-r1 waf-utils
40 +
41 +DESCRIPTION="Library for serialising LV2 atoms to/from RDF, particularly the Turtle syntax"
42 +HOMEPAGE="http://drobilla.net/software/sratom/"
43 +SRC_URI="http://download.drobilla.net/${P}.tar.bz2"
44 +
45 +LICENSE="ISC"
46 +SLOT="0"
47 +KEYWORDS="~amd64 ~ppc ~x86"
48 +IUSE="doc static-libs test"
49 +
50 +RDEPEND=">=media-libs/lv2-1.8.1
51 + >=dev-libs/serd-0.14.0
52 + >=dev-libs/sord-0.12.0"
53 +DEPEND="${RDEPEND}
54 + ${PYTHON_DEPS}
55 + doc? ( app-doc/doxygen )
56 + virtual/pkgconfig"
57 +
58 +DOCS=( "NEWS" "README" )
59 +
60 +src_prepare() {
61 + sed -i -e 's/^.*run_ldconfig/#\0/' wscript || die
62 +}
63 +
64 +src_configure() {
65 + waf-utils_src_configure \
66 + --docdir=/usr/share/doc/${PF} \
67 + $(use test && echo "--test") \
68 + $(use doc && echo "--docs") \
69 + $(use static-libs && echo "--static")
70 +}
71 +
72 +src_test() {
73 + ./waf test || die
74 +}