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 8AA41138359 for ; Tue, 22 Sep 2020 11:45:43 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 935B2E0883; Tue, 22 Sep 2020 11:45:42 +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 6E98DE0883 for ; Tue, 22 Sep 2020 11:45:42 +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 44A2E340DB5 for ; Tue, 22 Sep 2020 11:45:41 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BA91835F for ; Tue, 22 Sep 2020 11:45:39 +0000 (UTC) From: "Aisha Tammy" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Aisha Tammy" Message-ID: <1600775129.a88e772ce115f449779d65b81a55d631ce938e8d.epsilon-0@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: sci-chemistry/openbabel/ X-VCS-Repository: proj/sci X-VCS-Files: sci-chemistry/openbabel/metadata.xml sci-chemistry/openbabel/openbabel-9999.ebuild X-VCS-Directories: sci-chemistry/openbabel/ X-VCS-Committer: epsilon-0 X-VCS-Committer-Name: Aisha Tammy X-VCS-Revision: a88e772ce115f449779d65b81a55d631ce938e8d X-VCS-Branch: master Date: Tue, 22 Sep 2020 11:45:39 +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: 6f7d5253-2642-4b76-91fd-15521224272d X-Archives-Hash: 364fa17585d8cbf3ec22b9ff26a485b8 commit: a88e772ce115f449779d65b81a55d631ce938e8d Author: Aisha Tammy aisha cc> AuthorDate: Tue Sep 22 11:43:01 2020 +0000 Commit: Aisha Tammy aisha cc> CommitDate: Tue Sep 22 11:45:29 2020 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=a88e772c sci-chemistry/openbabel: drop package present in ::gentoo Package-Manager: Portage-3.0.7, Repoman-3.0.1 Signed-off-by: Aisha Tammy aisha.cc> sci-chemistry/openbabel/metadata.xml | 26 -------- sci-chemistry/openbabel/openbabel-9999.ebuild | 91 --------------------------- 2 files changed, 117 deletions(-) diff --git a/sci-chemistry/openbabel/metadata.xml b/sci-chemistry/openbabel/metadata.xml deleted file mode 100644 index 1b001391d..000000000 --- a/sci-chemistry/openbabel/metadata.xml +++ /dev/null @@ -1,26 +0,0 @@ - - - - - sci-chemistry@gentoo.org - Gentoo Chemistry Project - - -Open Babel is a chemical toolbox designed to speak the many languages of -chemical data. It's an open, collaborative project allowing anyone to -search, convert, analyze, or store data from molecular modeling, chemistry, -solid-state materials, biochemistry, or related areas. - - - Install API dicumentation. - Enable parallelization using OpenMP. - Install Java bindings. - Install Perl bindings. - Install Python bindings and PyBel. - Install Ruby bindings. - Build Open Babel GUI. - - - openbabel - - diff --git a/sci-chemistry/openbabel/openbabel-9999.ebuild b/sci-chemistry/openbabel/openbabel-9999.ebuild deleted file mode 100644 index 84b2e6f38..000000000 --- a/sci-chemistry/openbabel/openbabel-9999.ebuild +++ /dev/null @@ -1,91 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -WX_GTK_VER="2.8" - -inherit cmake-utils eutils git-r3 wxwidgets - -DESCRIPTION="Interconverts file formats used in molecular modeling" -HOMEPAGE="http://openbabel.sourceforge.net/" -SRC_URI="" -EGIT_REPO_URI="https://github.com/openbabel/openbabel.git" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="" -IUSE="doc java openmp perl python ruby test wxwidgets" - -RDEPEND=" - dev-cpp/eigen:3 - dev-libs/libxml2:2 - !sci-chemistry/babel - sci-libs/inchi - sys-libs/zlib - wxwidgets? ( x11-libs/wxGTK:${WX_GTK_VER}[X] )" -DEPEND="${RDEPEND} - >=dev-util/cmake-2.4.8 - doc? ( app-doc/doxygen )" -PDEPEND=" - java? ( sci-chemistry/openbabel-java ) - perl? ( sci-chemistry/openbabel-perl ) - python? ( sci-chemistry/openbabel-python ) - ruby? ( sci-chemistry/openbabel-ruby )" - -DOCS="AUTHORS NEWS README.md THANKS doc/*.inc doc/README* doc/*.mol2" - -pkg_setup() { - if use openmp; then - if [[ $(tc-getCC) == *gcc ]] && ! tc-has-openmp; then - ewarn "OpenMP is not available in your current selected gcc" - die "need openmp capable gcc" - fi - FORTRAN_NEED_OPENMP=1 - fi -} - -src_configure() { - local mycmakeargs="" - mycmakeargs="${mycmakeargs} - -DOPENBABEL_USE_SYSTEM_INCHI=ON - -DOPTIMIZE_NATIVE=OFF - $(cmake-utils_use_enable openmp OPENMP) - $(cmake-utils_use wxwidgets BUILD_GUI)" - - cmake-utils_src_configure -} - -src_test() { - local mycmakeargs="" - mycmakeargs="${mycmakeargs} - -DOPENBABEL_USE_SYSTEM_INCHI=ON - -DOPTIMIZE_NATIVE=OFF - -DPYTHON_EXECUTABLE=false - $(cmake-utils_use wxwidgets BUILD_GUI) - $(cmake-utils_use_enable openmp OPENMP) - $(cmake-utils_use_enable test TESTS)" - - cmake-utils_src_configure - cmake-utils_src_compile - cmake-utils_src_test -E py -} - -src_install() { - docinto html - dodoc doc/{*.html,*.png} - if use doc; then - docinto html/API - dodoc doc/API/html/* - fi - - cmake-utils_src_install - - # Ensure that modules are allways in openbabel/${PV} - pushd "${ED}/usr/$(get_libdir)/openbabel" > /dev/null || die - ver=$(ls -d * | grep -E '([0-9]+[.]){2}[0-9]+') - if [ "${ver}" != "${PV}" ] ; then - ln -s ${ver} ${PV} || die - fi - popd > /dev/null || die -}