aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAisha Tammy <gentoo@aisha.cc>2020-09-22 14:38:06 -0400
committerAisha Tammy <gentoo@aisha.cc>2020-09-22 14:38:24 -0400
commit36d80fe5d703cc4483c7a44aacc143d4ee0a15fc (patch)
tree13aa34a6064ea9972f648086b3148942c2e3fb41
parentdev-python/pyhdf: drop dead package (diff)
downloadsci-36d80fe5d703cc4483c7a44aacc143d4ee0a15fc.tar.gz
sci-36d80fe5d703cc4483c7a44aacc143d4ee0a15fc.tar.bz2
sci-36d80fe5d703cc4483c7a44aacc143d4ee0a15fc.zip
dev-python/omniorbpy: drop dead package
Package-Manager: Portage-3.0.7, Repoman-3.0.1 Signed-off-by: Aisha Tammy <gentoo@aisha.cc>
-rw-r--r--dev-python/omniorbpy/Manifest1
-rw-r--r--dev-python/omniorbpy/metadata.xml11
-rw-r--r--dev-python/omniorbpy/omniorbpy-3.4.ebuild66
3 files changed, 0 insertions, 78 deletions
diff --git a/dev-python/omniorbpy/Manifest b/dev-python/omniorbpy/Manifest
deleted file mode 100644
index 45baa94eb..000000000
--- a/dev-python/omniorbpy/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST omniORBpy-3.4.tar.gz 721891 BLAKE2B 16a57423c8fa9a5238a6804caa64b059d052fff404c7aa00c6ed70fd2b74a8fb346f67e6adab4a9fe05ac4dbae5e59ab9da263e6721521c5657346f89707d15d SHA512 a9f13e78a8aa216aa1357589c7a9d363b3ef4d1d79e6fe763dab78fe0df3ad0b1d7b19d4efb9a09f25fc507d657164e390e897c8e85c3f50c8882c2522043780
diff --git a/dev-python/omniorbpy/metadata.xml b/dev-python/omniorbpy/metadata.xml
deleted file mode 100644
index 39a7f8b65..000000000
--- a/dev-python/omniorbpy/metadata.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="project">
- <email>sci@gentoo.org</email>
- <name>Gentoo Science Project</name>
- </maintainer>
- <upstream>
- <remote-id type="sourceforge">omniorb</remote-id>
- </upstream>
-</pkgmetadata>
diff --git a/dev-python/omniorbpy/omniorbpy-3.4.ebuild b/dev-python/omniorbpy/omniorbpy-3.4.ebuild
deleted file mode 100644
index 4f67c53da..000000000
--- a/dev-python/omniorbpy/omniorbpy-3.4.ebuild
+++ /dev/null
@@ -1,66 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-PYTHON_COMPAT=( python2_7 )
-
-inherit autotools-utils eutils multilib python-r1
-
-MY_P=${P/omniorb/omniORB}
-
-DESCRIPTION="A robust high-performance CORBA ORB for Python"
-HOMEPAGE="http://omniorb.sourceforge.net/"
-SRC_URI="mirror://sourceforge/omniorb/${MY_P}.tar.gz"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="ssl"
-
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-
-DEPEND="${PYTHON_DEPS}
- >=net-misc/omniORB-4.1.3[${PYTHON_USEDEP}]
- ssl? ( dev-libs/openssl:0= )"
-RDEPEND=${DEPEND}
-
-S=${WORKDIR}/${MY_P}
-
-src_prepare() {
- sed \
- -e "s/^CXXDEBUGFLAGS.*/CXXDEBUGFLAGS = ${CXXFLAGS}/" \
- -e "s/^CDEBUGFLAGS.*/CDEBUGFLAGS = ${CFLAGS}/" \
- -e "s/'prefix[\t ]*:= \/usr'/'prefix := \${DESTDIR}\/usr'/" \
- -i "${S}"/mk/beforeauto.mk.in || die
- sed \
- -e 's#^.*compileall[^\\]*#${EPREFIX}/bin/true;#' \
- -i "${S}"/python/dir.mk \
- "${S}"/python/omniORB/dir.mk \
- "${S}"/python/COS/dir.mk \
- "${S}"/python/CosNaming/dir.mk || die
- autotools-utils_src_prepare
-}
-
-src_configure() {
- local myeconfargs=( --with-omniorb="${EPREFIX}/usr" )
-
- use ssl && myconf+=( --with-openssl="${EPREFIX}/usr" )
-
- python_foreach_impl autotools-utils_src_configure
-}
-
-src_compile() {
- python_foreach_impl autotools-utils_src_compile
-}
-
-src_install() {
- python_foreach_impl autotools-utils_src_install
-
- HTML_DOCS=( doc/omniORBpy )
- DOCS=( doc/omniORBpy.p* doc/tex/* )
- einstalldocs
-
- insinto /usr/share/doc/${PF}/
- doins -r examples
-}