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 9E7891382C5 for ; Sun, 14 Mar 2021 01:34:05 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DDB1BE0891; Sun, 14 Mar 2021 01:34:04 +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 C4A34E0891 for ; Sun, 14 Mar 2021 01:34:04 +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 BABA0335D32 for ; Sun, 14 Mar 2021 01:34:03 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 28356590 for ; Sun, 14 Mar 2021 01:34:02 +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: <1615685626.bad99a991dd41e119987f5bb058f1a268d82dd58.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.4.3.ebuild X-VCS-Directories: dev-cpp/castxml/ X-VCS-Committer: chymera X-VCS-Committer-Name: Horea Christian X-VCS-Revision: bad99a991dd41e119987f5bb058f1a268d82dd58 X-VCS-Branch: master Date: Sun, 14 Mar 2021 01:34:02 +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: 64cbfa56-5506-4e25-88bb-fea0ed0d2556 X-Archives-Hash: 0af5083f3fb2d6cf79c6b71920f3055e commit: bad99a991dd41e119987f5bb058f1a268d82dd58 Author: Horea Christian chymera eu> AuthorDate: Sun Mar 14 01:33:46 2021 +0000 Commit: Horea Christian gmail com> CommitDate: Sun Mar 14 01:33:46 2021 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=bad99a99 dev-cpp/castxml: version bump 0.4.3 Package-Manager: Portage-3.0.17, Repoman-3.0.2 Signed-off-by: Horea Christian chymera.eu> dev-cpp/castxml/castxml-0.4.3.ebuild | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) diff --git a/dev-cpp/castxml/castxml-0.4.3.ebuild b/dev-cpp/castxml/castxml-0.4.3.ebuild new file mode 100644 index 000000000..6fb7ac720 --- /dev/null +++ b/dev-cpp/castxml/castxml-0.4.3.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit cmake llvm + +MY_PN="CastXML" + +DESCRIPTION="CastXML is a C-family abstract syntax tree XML output tool." +HOMEPAGE="https://github.com/CastXML/CastXML" +if [[ ${PV} == 9999 ]]; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/CastXML/CastXML" +else + SRC_URI="https://github.com/CastXML/CastXML/archive/v${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~amd64 ~x86" +fi + +LICENSE="Apache-2.0" +SLOT="0" +IUSE="test" +RESTRICT="!test? ( test )" + +DEPEND="${RDEPEND}" +RDEPEND=" + dev-libs/glib:2 + dev-libs/libxml2 + sys-devel/llvm:= + sys-devel/clang:= +" + +S="${WORKDIR}/${MY_PN}-${PV}" + +PATCHES=( "${FILESDIR}"/${PN}-0.3.6-install-paths.patch )