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 6E418138359 for ; Tue, 22 Sep 2020 11:48:02 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 910B1E085A; Tue, 22 Sep 2020 11:48:01 +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 6F868E085A for ; Tue, 22 Sep 2020 11:48:01 +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 BDEB8340E2C for ; Tue, 22 Sep 2020 11:47:59 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 743DF35F for ; Tue, 22 Sep 2020 11:47:58 +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: <1600775238.48a818cd0ce846487ddfa226874a0ba41ba2fea3.epsilon-0@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: sci-chemistry/openbabel-perl/ X-VCS-Repository: proj/sci X-VCS-Files: sci-chemistry/openbabel-perl/metadata.xml sci-chemistry/openbabel-perl/openbabel-perl-9999.ebuild X-VCS-Directories: sci-chemistry/openbabel-perl/ X-VCS-Committer: epsilon-0 X-VCS-Committer-Name: Aisha Tammy X-VCS-Revision: 48a818cd0ce846487ddfa226874a0ba41ba2fea3 X-VCS-Branch: master Date: Tue, 22 Sep 2020 11:47:58 +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: 8a24deeb-3511-40cd-8f61-b66d7b40737d X-Archives-Hash: 114ee03b06c7cf385fec0476a4c9cd24 commit: 48a818cd0ce846487ddfa226874a0ba41ba2fea3 Author: Aisha Tammy aisha cc> AuthorDate: Tue Sep 22 11:47:18 2020 +0000 Commit: Aisha Tammy aisha cc> CommitDate: Tue Sep 22 11:47:18 2020 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=48a818cd sci-chemistry/openbabel-perl: 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-perl/metadata.xml | 18 ------- .../openbabel-perl/openbabel-perl-9999.ebuild | 62 ---------------------- 2 files changed, 80 deletions(-) diff --git a/sci-chemistry/openbabel-perl/metadata.xml b/sci-chemistry/openbabel-perl/metadata.xml deleted file mode 100644 index 3dc4c5711..000000000 --- a/sci-chemistry/openbabel-perl/metadata.xml +++ /dev/null @@ -1,18 +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. -This package enables to access Open Babel library from Perl programs. - - - openbabel - - diff --git a/sci-chemistry/openbabel-perl/openbabel-perl-9999.ebuild b/sci-chemistry/openbabel-perl/openbabel-perl-9999.ebuild deleted file mode 100644 index b9eaa3570..000000000 --- a/sci-chemistry/openbabel-perl/openbabel-perl-9999.ebuild +++ /dev/null @@ -1,62 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -inherit cmake-utils eutils git-r3 perl-module - -DESCRIPTION="Perl bindings for OpenBabel" -HOMEPAGE="http://openbabel.sourceforge.net/" -EGIT_REPO_URI="https://github.com/openbabel/openbabel.git" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="" -IUSE="" - -RDEPEND=" - dev-lang/perl - ~sci-chemistry/openbabel-${PV}" -DEPEND="${RDEPEND} - >=dev-util/cmake-2.4.8 - >=dev-lang/swig-2" - -src_unpack() { - git-r3_src_unpack -} - -src_configure() { - perl_set_version - local mycmakeargs=( - -DOPTIMIZE_NATIVE=OFF - -DCMAKE_INSTALL_RPATH= - -DBINDINGS_ONLY=ON - -DBABEL_SYSTEM_LIBRARY="${EPREFIX}"/usr/$(get_libdir)/libopenbabel.so - -DOB_MODULE_PATH="${EPREFIX}"/usr/$(get_libdir)/openbabel/${PV} - -DLIB_INSTALL_DIR="${ED}/${VENDOR_ARCH}" - -DPERL_BINDINGS=ON - -DRUN_SWIG=ON - ) - - cmake-utils_src_configure -} - -src_compile() { - cmake-utils_src_compile bindings_perl -} - -src_test() { - mkdir "${BUILD_DIR}/$(get_libdir)/Chemistry" - cp \ - "${CMAKE_USE_DIR}/scripts/perl/OpenBabel.pm" \ - "${BUILD_DIR}/$(get_libdir)/Chemistry/" - for i in "${CMAKE_USE_DIR}"/scripts/perl/t/*; do - einfo "Running test: ${i}" - perl -I"${BUILD_DIR}/$(get_libdir)" "${i}" || die - done -} - -src_install() { - cd "${BUILD_DIR}" || die - cmake -DCOMPONENT=bindings_perl -P cmake_install.cmake -}