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 F417B1382C5 for ; Mon, 9 Apr 2018 15:01:28 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1773CE097E; Mon, 9 Apr 2018 15:01:28 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 E0E39E0978 for ; Mon, 9 Apr 2018 15:01:27 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 4182C335C49 for ; Mon, 9 Apr 2018 15:01:26 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 97CA4260 for ; Mon, 9 Apr 2018 15:01:24 +0000 (UTC) From: "Lars Wendler" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Lars Wendler" Message-ID: <1523285089.7187fd497a63a2ab8e5aff8cf81ead4aeb559ed3.polynomial-c@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/pugixml/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/pugixml/Manifest dev-libs/pugixml/pugixml-1.9.ebuild X-VCS-Directories: dev-libs/pugixml/ X-VCS-Committer: polynomial-c X-VCS-Committer-Name: Lars Wendler X-VCS-Revision: 7187fd497a63a2ab8e5aff8cf81ead4aeb559ed3 X-VCS-Branch: master Date: Mon, 9 Apr 2018 15:01:24 +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-Archives-Salt: 80ed2e77-7010-4072-a4bf-7564c10a8cbb X-Archives-Hash: d7f84156a30d41a63800dec1a019c38a commit: 7187fd497a63a2ab8e5aff8cf81ead4aeb559ed3 Author: Lars Wendler gentoo org> AuthorDate: Mon Apr 9 14:44:49 2018 +0000 Commit: Lars Wendler gentoo org> CommitDate: Mon Apr 9 14:44:49 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7187fd49 dev-libs/pugixml: Bump to version 1.9 Package-Manager: Portage-2.3.28, Repoman-2.3.9 dev-libs/pugixml/Manifest | 1 + dev-libs/pugixml/pugixml-1.9.ebuild | 20 ++++++++++++++++++++ 2 files changed, 21 insertions(+) diff --git a/dev-libs/pugixml/Manifest b/dev-libs/pugixml/Manifest index c0143266512..14f9b1635e9 100644 --- a/dev-libs/pugixml/Manifest +++ b/dev-libs/pugixml/Manifest @@ -1 +1,2 @@ DIST pugixml-1.8.tar.gz 357806 BLAKE2B 7f7b9c0a1e51186b6511c53dfd11a3fabbc28343e87fcb98c0480a6b8216bb6dbbfc7bc6bfa7b06b649061910b542747a60c7b04d76b5683f4d823da5f9d4dcc SHA512 f59d83e6685949ab392fb08a60b9153f709697e7c1f93989c3d07ac1817b381fa13b2bea23914de803c4db090e3f503d943db0baf53597f7f8c7d734e8028f42 +DIST pugixml-1.9.tar.gz 377369 BLAKE2B 39b5b0d63a20e9c15c5634e56f82207aed63843d252900db94dbf06d100d03916a16523ccb9de433cc94ded4a9e9d1dc11f47bfd6fd75e348a9a2af31c305db6 SHA512 853a9d985aae537391c6524d5413ef4de237d99d96cc58ea7fe7152f786df1e408cdacd2e4387697e23c3e67cdc1d42b29de554501309eae16d86edd0e24785f diff --git a/dev-libs/pugixml/pugixml-1.9.ebuild b/dev-libs/pugixml/pugixml-1.9.ebuild new file mode 100644 index 00000000000..38a691d1f58 --- /dev/null +++ b/dev-libs/pugixml/pugixml-1.9.ebuild @@ -0,0 +1,20 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +CMAKE_MAKEFILE_GENERATOR=emake + +inherit cmake-utils + +DESCRIPTION="Light-weight, simple, and fast XML parser for C++ with XPath support" +HOMEPAGE="https://pugixml.org/ https://github.com/zeux/pugixml/" +SRC_URI="https://github.com/zeux/${PN}/releases/download/v${PV}/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~arm ~ia64 ~ppc ~ppc64 ~x86 ~x86-fbsd ~amd64-linux ~x86-linux" + +src_configure() { + local mycmakeargs=( -DBUILD_SHARED_LIBS=ON ) + cmake-utils_src_configure +}