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 852F0138334 for ; Sat, 20 Apr 2019 23:21:59 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E9E24E08E8; Sat, 20 Apr 2019 23:20:21 +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 92F1CE08BD for ; Sat, 20 Apr 2019 23:20:21 +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 5FE1B341EAC for ; Sat, 20 Apr 2019 05:32:21 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3C26557F for ; Sat, 20 Apr 2019 05:32:19 +0000 (UTC) From: "Horea Christian" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Horea Christian" Message-ID: <1555738315.1479fefbd0bfef1a5154474d0e5acf6239bf8579.chymera@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: dev-cpp/castxml/ X-VCS-Repository: proj/sci X-VCS-Files: dev-cpp/castxml/castxml-0.2.0.ebuild X-VCS-Directories: dev-cpp/castxml/ X-VCS-Committer: chymera X-VCS-Committer-Name: Horea Christian X-VCS-Revision: 1479fefbd0bfef1a5154474d0e5acf6239bf8579 X-VCS-Branch: master Date: Sat, 20 Apr 2019 05:32:19 +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: 50b51c50-0f12-42a5-acdb-fecb1083e49a X-Archives-Hash: 08a985e01479f1a7ed27c8e42031848b commit: 1479fefbd0bfef1a5154474d0e5acf6239bf8579 Author: Horea Christian yandex com> AuthorDate: Sat Apr 20 05:31:55 2019 +0000 Commit: Horea Christian gmail com> CommitDate: Sat Apr 20 05:31:55 2019 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=1479fefb dev-cpp/castxml: version bump 0.2.0 Package-Manager: Portage-2.3.62, Repoman-2.3.12 Signed-off-by: Horea Christian yandex.com> dev-cpp/castxml/castxml-0.2.0.ebuild | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/dev-cpp/castxml/castxml-0.2.0.ebuild b/dev-cpp/castxml/castxml-0.2.0.ebuild new file mode 100644 index 000000000..cf81e7209 --- /dev/null +++ b/dev-cpp/castxml/castxml-0.2.0.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit cmake-utils llvm + +MY_PN="CastXML" + +DESCRIPTION="CastXML is a C-family abstract syntax tree XML output tool." +HOMEPAGE="https://github.com/CastXML/CastXML" +SRC_URI="https://github.com/CastXML/CastXML/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +DEPEND="${RDEPEND}" +RDEPEND=" + dev-libs/glib:2 + dev-libs/libxml2 + sys-devel/llvm:= + sys-devel/clang:= + " + +S="${WORKDIR}/${MY_PN}-${PV}" + +src_test() { + cd "${BUILD_DIR}" || die + ctest -j 20 +}