Gentoo Archives: gentoo-commits

From: Tim Harder <radhermit@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/tinyxml2/
Date: Wed, 12 Dec 2018 08:25:56
Message-Id: 1544603085.d6a8b3d1e656ddfa35edc91cfd3654678ab66d32.radhermit@gentoo
1 commit: d6a8b3d1e656ddfa35edc91cfd3654678ab66d32
2 Author: Tim Harder <radhermit <AT> gentoo <DOT> org>
3 AuthorDate: Wed Dec 12 06:55:24 2018 +0000
4 Commit: Tim Harder <radhermit <AT> gentoo <DOT> org>
5 CommitDate: Wed Dec 12 08:24:45 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d6a8b3d1
7
8 dev-libs/tinyxml2: version bump to 7.0.1
9
10 Signed-off-by: Tim Harder <radhermit <AT> gentoo.org>
11
12 dev-libs/tinyxml2/Manifest | 1 +
13 dev-libs/tinyxml2/tinyxml2-7.0.1.ebuild | 23 +++++++++++++++++++++++
14 2 files changed, 24 insertions(+)
15
16 diff --git a/dev-libs/tinyxml2/Manifest b/dev-libs/tinyxml2/Manifest
17 index 09ad0b3d7bd..db0895d86cb 100644
18 --- a/dev-libs/tinyxml2/Manifest
19 +++ b/dev-libs/tinyxml2/Manifest
20 @@ -1 +1,2 @@
21 DIST tinyxml2-6.2.0.tar.gz 585870 BLAKE2B 6f79ffe0894d625e3a2cccaf897c13962672f090c477b6b13e8685585a304b5cf0f5069d88d61650882e55f23768514dcbeea4795e3a4758b016cb177eee44d4 SHA512 ef784240aeb090ab04aad659352ad4b224c431feecf485f33aca7936bcaa0ef4ab9d0a2e0692d3cf6036ac3e8012019d65665e780a920bbad3d4820f736445b1
22 +DIST tinyxml2-7.0.1.tar.gz 590384 BLAKE2B ea055e9b85c8f1ea789f91d406e549abf1d6e8aacbbf89f5d887b6cc0d8678562810b4352c158de0ee4adedf8146016f970e1b2a221dcb8fd36aac0486d45d9f SHA512 623cd7eff542d20b434a67111ac98110101c95a18767318bf906e5e56d8cc25622269f740f50477fe907a4c52d875b614cb6167f4760d42ab18dc55b9d4bf380
23
24 diff --git a/dev-libs/tinyxml2/tinyxml2-7.0.1.ebuild b/dev-libs/tinyxml2/tinyxml2-7.0.1.ebuild
25 new file mode 100644
26 index 00000000000..f4420188b79
27 --- /dev/null
28 +++ b/dev-libs/tinyxml2/tinyxml2-7.0.1.ebuild
29 @@ -0,0 +1,23 @@
30 +# Copyright 1999-2018 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=6
34 +
35 +inherit cmake-multilib
36 +
37 +DESCRIPTION="A simple, small, efficient, C++ XML parser"
38 +HOMEPAGE="http://www.grinninglizard.com/tinyxml2/ https://github.com/leethomason/tinyxml2/"
39 +SRC_URI="https://github.com/leethomason/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
40 +
41 +LICENSE="ZLIB"
42 +SLOT="0/7"
43 +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc64 ~sparc ~x86"
44 +IUSE="static-libs test"
45 +
46 +multilib_src_configure() {
47 + local mycmakeargs=(
48 + -DBUILD_STATIC_LIBS=$(usex static-libs)
49 + -DBUILD_TESTING=$(usex test)
50 + )
51 + cmake-utils_src_configure
52 +}