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 57286138334 for ; Wed, 7 Nov 2018 11:04:53 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 28994E09F4; Wed, 7 Nov 2018 11:04:50 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 00168E09F4 for ; Wed, 7 Nov 2018 11:04:49 +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 25DFD335C8D for ; Wed, 7 Nov 2018 11:04:48 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id F137E44F for ; Wed, 7 Nov 2018 11:04:45 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1541588565.d92b9c4e7dbc07a0d1329dd340aada5e2078382a.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/xdmf2/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-libs/xdmf2/xdmf2-1.0_p141226-r1.ebuild X-VCS-Directories: sci-libs/xdmf2/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: d92b9c4e7dbc07a0d1329dd340aada5e2078382a X-VCS-Branch: master Date: Wed, 7 Nov 2018 11:04:45 +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: 29b3f158-8789-4afb-b876-df91efc60021 X-Archives-Hash: 2df2a8f1216f0e3c3390f4116bea8dc0 commit: d92b9c4e7dbc07a0d1329dd340aada5e2078382a Author: Andreas Sturmlechner gentoo org> AuthorDate: Tue Nov 6 14:21:08 2018 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Wed Nov 7 11:02:45 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d92b9c4e sci-libs/xdmf2: Drop broken xdmf2-1.0_p141226-r1 Signed-off-by: Andreas Sturmlechner gentoo.org> Package-Manager: Portage-2.3.51, Repoman-2.3.11 sci-libs/xdmf2/xdmf2-1.0_p141226-r1.ebuild | 67 ------------------------------ 1 file changed, 67 deletions(-) diff --git a/sci-libs/xdmf2/xdmf2-1.0_p141226-r1.ebuild b/sci-libs/xdmf2/xdmf2-1.0_p141226-r1.ebuild deleted file mode 100644 index a0cf89a2529..00000000000 --- a/sci-libs/xdmf2/xdmf2-1.0_p141226-r1.ebuild +++ /dev/null @@ -1,67 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -PYTHON_COMPAT=( python2_7 ) - -inherit cmake-utils flag-o-matic multilib python-single-r1 - -DESCRIPTION="eXtensible Data Model and Format" -HOMEPAGE="http://xdmf.org/index.php/Main_Page" -SRC_URI="https://dev.gentoo.org/~jlec/distfiles/${P}.tar.xz" - -SLOT="0" -LICENSE="VTK" -KEYWORDS="amd64 ~arm x86 ~amd64-linux ~x86-linux" -IUSE="doc python test" -REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )" - -RDEPEND=" - sci-libs/hdf5:= - dev-libs/libxml2:2 - python? ( ${PYTHON_DEPS} ) - " -DEPEND="${RDEPEND} - doc? ( app-doc/doxygen ) - python? ( dev-lang/swig:0 ) -" - -PATCHES=( "${FILESDIR}"/${P}-module.patch ) - -pkg_setup() { - use python && python-single-r1_pkg_setup && python_export -} - -src_prepare() { - if use python; then - local _site=$(python_get_sitedir) - sed \ - -e "/DESTINATION/s:python:${_site##${EPREFIX}/usr/$(get_libdir)/}:g" \ - -i CMakeLists.txt || die - fi - - sed \ - -e "/DESTINATION/s:lib:$(get_libdir):g" \ - -e "/INSTALL/s:lib:$(get_libdir):g" \ - -i CMakeLists.txt core/CMakeLists.txt || die - cmake-utils_src_prepare -} - -src_configure() { - # bug 619604 - append-cxxflags -std=c++14 - - local mycmakeargs=( - $(cmake-utils_use doc XDMF_BUILD_DOCUMENTATION) - $(cmake-utils_use_build test TESTING) - $(cmake-utils_use python XDMF_WRAP_PYTHON) -# $(cmake-utils_use java XDMF_WRAP_JAVA) - ) - cmake-utils_src_configure -} - -src_install() { - cmake-utils_src_install - dosym XdmfConfig.cmake /usr/share/cmake/Modules/${PN}Config.cmake -}