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 A79441382C5 for ; Wed, 27 May 2020 21:20:34 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E2668E08AA; Wed, 27 May 2020 21:20:33 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 C5C53E08AA for ; Wed, 27 May 2020 21:20:33 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 1D03634EC6F for ; Wed, 27 May 2020 21:20:32 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 08B3A9C for ; Wed, 27 May 2020 21:20:21 +0000 (UTC) From: "Tim Harder" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Tim Harder" Message-ID: <1590614350.a67742286190ae8e50a25d2c4f6086131a474e67.radhermit@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/tinyxml2/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/tinyxml2/Manifest dev-libs/tinyxml2/tinyxml2-8.0.0.ebuild X-VCS-Directories: dev-libs/tinyxml2/ X-VCS-Committer: radhermit X-VCS-Committer-Name: Tim Harder X-VCS-Revision: a67742286190ae8e50a25d2c4f6086131a474e67 X-VCS-Branch: master Date: Wed, 27 May 2020 21:20:21 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: c126d562-781f-4652-bab5-220c8e6a7d84 X-Archives-Hash: 075304f9a3ac579375d6e84dfd7ccf5c commit: a67742286190ae8e50a25d2c4f6086131a474e67 Author: Tim Harder gentoo org> AuthorDate: Wed May 27 21:12:54 2020 +0000 Commit: Tim Harder gentoo org> CommitDate: Wed May 27 21:19:10 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a6774228 dev-libs/tinyxml2: version bump to 8.0.0 Signed-off-by: Tim Harder gentoo.org> dev-libs/tinyxml2/Manifest | 1 + dev-libs/tinyxml2/tinyxml2-8.0.0.ebuild | 22 ++++++++++++++++++++++ 2 files changed, 23 insertions(+) diff --git a/dev-libs/tinyxml2/Manifest b/dev-libs/tinyxml2/Manifest index 57f0230c11b..98d44932bd8 100644 --- a/dev-libs/tinyxml2/Manifest +++ b/dev-libs/tinyxml2/Manifest @@ -1 +1,2 @@ DIST tinyxml2-7.1.0.tar.gz 592717 BLAKE2B 5936356d472b8642bebb9f02579e6beda14446d57749f1e7a869ff941a03a5ad30624c4db4b2eaaaca48d7f339e3100fddfd58f96bbcfc22737a23d9c9198c9a SHA512 09d5f37018f79a593ff35e33d4296c9ec643a22e83c0cee4c37949300f86201eee07e9b7e6ba55044d8abb438d5d21b70d5843a96ae4652389bb164047ec31e1 +DIST tinyxml2-8.0.0.tar.gz 593833 BLAKE2B afc21220e28a1c139b1abd89e67f8e64980d2ba9bc6f60a33d435a4a02cb40ecacc27ac28bd9702ac3a435f66764ebb752b597a1b1e178d0b549e366d5b669dd SHA512 bcbb065c2af34ea681ec556377fd22e720b6f5d4caa73f432b1e34e08603a96f2233763f0ec5ae86b9ee71ddbe3062f58d3794cd3a162ce6903435530de0bba6 diff --git a/dev-libs/tinyxml2/tinyxml2-8.0.0.ebuild b/dev-libs/tinyxml2/tinyxml2-8.0.0.ebuild new file mode 100644 index 00000000000..7dd8bbfaa18 --- /dev/null +++ b/dev-libs/tinyxml2/tinyxml2-8.0.0.ebuild @@ -0,0 +1,22 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +CMAKE_ECLASS=cmake +inherit cmake-multilib + +DESCRIPTION="A simple, small, efficient, C++ XML parser" +HOMEPAGE="http://www.grinninglizard.com/tinyxml2/ https://github.com/leethomason/tinyxml2/" +SRC_URI="https://github.com/leethomason/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="ZLIB" +SLOT="0/8" +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc64 ~sparc ~x86" +IUSE="test" +RESTRICT="!test? ( test )" + +multilib_src_configure() { + local mycmakeargs=( -DBUILD_TESTING=$(usex test) ) + cmake_src_configure +}