summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMikle Kolyada <zlogene@gentoo.org>2020-03-15 11:07:36 +0300
committerMikle Kolyada <zlogene@gentoo.org>2020-03-15 11:07:36 +0300
commit5b506157c0365d5da1ffc2fd998a72f570d129e9 (patch)
tree5df6b94ab9283993e2fd8091f7fe3541a585cbe9 /sys-apps
parentnet-im/coccinella: remove last-rited pkg (diff)
downloadgentoo-5b506157c0365d5da1ffc2fd998a72f570d129e9.tar.gz
gentoo-5b506157c0365d5da1ffc2fd998a72f570d129e9.tar.bz2
gentoo-5b506157c0365d5da1ffc2fd998a72f570d129e9.zip
sys-apps/hbaapi: remove last-rited pkg
Signed-off-by: Mikle Kolyada <zlogene@gentoo.org>
Diffstat (limited to 'sys-apps')
-rw-r--r--sys-apps/hbaapi/Manifest2
-rw-r--r--sys-apps/hbaapi/files/hba.conf43
-rw-r--r--sys-apps/hbaapi/files/hbaapi-2.2-qa.patch37
-rw-r--r--sys-apps/hbaapi/hbaapi-2.2.ebuild46
-rw-r--r--sys-apps/hbaapi/metadata.xml11
5 files changed, 0 insertions, 139 deletions
diff --git a/sys-apps/hbaapi/Manifest b/sys-apps/hbaapi/Manifest
deleted file mode 100644
index 46c2b75acbf1..000000000000
--- a/sys-apps/hbaapi/Manifest
+++ /dev/null
@@ -1,2 +0,0 @@
-DIST hbaapi-2.2.Makefile.gz 1356 BLAKE2B f1015d32da1fdf1caf32085d9470dbea3729cef66f9e8bbe7ed851d210408897aa9af2c0eecd6f97b3318bc8bcbbe1241b5e3771a09522060920a666054bb434 SHA512 1d02546c0dc9143baf1538f3b57e23da4a6b9e685e125c279afac252ae6b4dcd4c8890ed888f8177b5e86c3f76dfabcc9a8d489102c6c68a5d80bf5399118545
-DIST hbaapi_src_2.2.tgz 30232 BLAKE2B 250c720b9f6e1f601991393ac16411e278290d64db1d4677fae44b34d75815fa97aff711ba9b5d4762fb00096fcd7d99e1ac24b520095fd7f3fd67c2e82eb654 SHA512 83d8d3df0208f632016acac65bc03b9610eb47d98e99565e2bdbe543382b141c0b6d148272dffc421a36f16ee511027899ee2b70a04435a6ef221e0bc559e511
diff --git a/sys-apps/hbaapi/files/hba.conf b/sys-apps/hbaapi/files/hba.conf
deleted file mode 100644
index 347c24b80e36..000000000000
--- a/sys-apps/hbaapi/files/hba.conf
+++ /dev/null
@@ -1,43 +0,0 @@
-#
-# This file contains names and references to HBA libraries
-#
-# Format:
-#
-# <library name> <library pathname>
-#
-# The library name should be prepended with the domain of
-# the manufacturer or driver author.
-#
-# 32bit/64bit implementation note:
-# If a 32bit implementation tries to load a 64 bit library,
-# the load will fail with the result that the 64 bit vendor
-# library is ignored.
-# Likewise, if a 64bit implementation tries to load a 32 bit library,
-# the load will fail with the result that the 32 bit vendor
-# library is ignored.
-
-#org.snia.sample32 /usr/lib/libsample.so
-#com.qlogic.qla32 /usr/lib/libhbaapiqla.so
-#com.emulex.lightpulse32 /usr/lib/libhbaapiemu.so
-#com.emulex.lightpulse64 /usr/lib/sparcv9/libhbaapiemu.so
-#JniHbaLib /opt/JNIsnia/Solaris/Jni/32bit/JniHbaLib.so
-#JniHbaLib /opt/JNIsnia/Solaris/Jni/64bit/JniHbaLib.so
-
-#INSERT_LIB_MARKER - Do not edit this line - Gentoo will insert items after this
-
-
-# Set a debug level (depends on compilation switches)
-#
-# Format:
-#
-# "debuglevel" <debug level>
-#
-# 0 is default, 1 show vendor library opens,
-# 2 shows function calls, 3 shows callback events
-#
-# Uncomment the next line to specify a level
-#debuglevel 3
-
-
-
-
diff --git a/sys-apps/hbaapi/files/hbaapi-2.2-qa.patch b/sys-apps/hbaapi/files/hbaapi-2.2-qa.patch
deleted file mode 100644
index 240cc1d2d473..000000000000
--- a/sys-apps/hbaapi/files/hbaapi-2.2-qa.patch
+++ /dev/null
@@ -1,37 +0,0 @@
---- hbaapi_src_2.2.orig/HBAAPILIB.c
-+++ hbaapi_src_2.2/HBAAPILIB.c
-@@ -30,7 +30,6 @@
-
- #ifdef WIN32
- #include <windows.h>
--#include <string.h>
- /*
- * Next define forces entry points in the dll to be exported
- * See hbaapi.h to see what it does.
-@@ -40,6 +39,7 @@
- #include <dlfcn.h>
- #include <strings.h>
- #endif
-+#include <string.h>
- #include <stdio.h>
- #include <time.h>
- #include "hbaapi.h"
-@@ -395,7 +395,7 @@
- GRAB_MUTEX(&_hbaapi_APSE_mutex);
- GRAB_MUTEX(&_hbaapi_TE_mutex);
- GRAB_MUTEX(&_hbaapi_LE_mutex);
-- for(listp = cb_lists_array, found = 0; found == 0, *listp != NULL; listp++) {
-+ for(listp = cb_lists_array, found = 0; found == 0 && *listp != NULL; listp++) {
- lastp = *listp;
- for(cbp=**listp; cbp != NULL; cbp = cbp->next) {
- if(cbhandle != (HBA_CALLBACKHANDLE)cbp) {
---- hbaapi_src_2.2.orig/hbaapitest.c
-+++ hbaapi_src_2.2/hbaapitest.c
-@@ -28,6 +28,7 @@
-
-
- #include <stdio.h>
-+#include <stdlib.h>
- #ifndef WIN32
- #include <dlfcn.h> /* Dynamic library support for Solaris */
- #include <time.h>
diff --git a/sys-apps/hbaapi/hbaapi-2.2.ebuild b/sys-apps/hbaapi/hbaapi-2.2.ebuild
deleted file mode 100644
index 9086d5cb1f00..000000000000
--- a/sys-apps/hbaapi/hbaapi-2.2.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=4
-
-inherit eutils toolchain-funcs
-
-MY_PN="${PN}_src"
-MY_P="${MY_PN}_${PV}"
-DESCRIPTION="The Host Bus Adapter API for managing Fibre Channel Host Bus Adapters"
-HOMEPAGE="http://hbaapi.sourceforge.net/"
-SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tgz
- mirror://gentoo/${P}.Makefile.gz"
-
-LICENSE="SNIA"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
-IUSE=""
-
-RESTRICT="test"
-
-S="${WORKDIR}/${MY_P}"
-
-src_prepare() {
- mv "${WORKDIR}"/${P}.Makefile "${S}"/Makefile
-
- sed -i -e "s/-g -c/${CFLAGS} -c/" \
- -e "s/-shared/\0 ${LDFLAGS}/" \
- Makefile || die
-
- epatch "${FILESDIR}"/${P}-qa.patch
-}
-
-src_compile() {
- # not parallel safe!
- emake -j1 CC="$(tc-getCC)" all
-}
-
-src_install() {
- into /usr
- dolib.so libHBAAPI.so
- dosbin hbaapitest
- insinto /etc
- doins "${FILESDIR}"/hba.conf
- dodoc readme.txt
-}
diff --git a/sys-apps/hbaapi/metadata.xml b/sys-apps/hbaapi/metadata.xml
deleted file mode 100644
index 4ca0373a86f9..000000000000
--- a/sys-apps/hbaapi/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>base-system@gentoo.org</email>
- <name>Gentoo Base System</name>
-</maintainer>
-<upstream>
- <remote-id type="sourceforge">hbaapi</remote-id>
-</upstream>
-</pkgmetadata>