diff options
author | Carlo Landmeter <clandmeter@gmail.com> | 2016-08-25 15:26:24 +0200 |
---|---|---|
committer | Carlo Landmeter <clandmeter@gmail.com> | 2016-08-25 15:26:24 +0200 |
commit | b6af1e02efe594039707cd882517663d5370f375 (patch) | |
tree | ff9c2d55873e051e82972ba64c017352d3a75d34 /testing/ipmiutil | |
parent | a71346b7acebc600960a98c84fb32cfd72fe864b (diff) | |
download | aports-b6af1e02efe594039707cd882517663d5370f375.tar.bz2 aports-b6af1e02efe594039707cd882517663d5370f375.tar.xz |
testing/[multiple]: move unmaintained packages
This moves all packages from testing to unmaintained which have not been
updated for atleast 6 months. If you are affected by this commit please follow
this proceddure:
* make sure your packages build on all architectures
* move your pacakge(s) back to testing
* if you want to keep this package and can maintain it (or find somebody to
maintain it for you) for a minimum of 6 months ask it to be moved to community
Diffstat (limited to 'testing/ipmiutil')
-rw-r--r-- | testing/ipmiutil/APKBUILD | 54 | ||||
-rw-r--r-- | testing/ipmiutil/fixups.patch | 33 |
2 files changed, 0 insertions, 87 deletions
diff --git a/testing/ipmiutil/APKBUILD b/testing/ipmiutil/APKBUILD deleted file mode 100644 index f56c02f0ee..0000000000 --- a/testing/ipmiutil/APKBUILD +++ /dev/null @@ -1,54 +0,0 @@ -# Contributor: Carlo Landmeter <clandmeter@gmail.com> -# Maintainer: -pkgname=ipmiutil -pkgver=2.9.2 -pkgrel=1 -pkgdesc="IPMI Management Utilities" -url="http://ipmiutil.sourceforge.net/" -arch="all" -license="BSD" -depends="" -depends_dev="openssl-dev" -makedepends="$depends_dev" -install="" -subpackages="$pkgname-dev $pkgname-doc" -source="http://switch.dl.sourceforge.net/project/ipmiutil/ipmiutil-$pkgver.tar.gz -fixups.patch" - -_builddir="$srcdir"/ipmiutil-$pkgver -prepare() { - local i - cd "$_builddir" - for i in $source; do - case $i in - *.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;; - esac - done -} - -build() { - cd "$_builddir" - ./configure \ - --prefix=/usr \ - --sysconfdir=/etc \ - --mandir=/usr/share/man \ - --infodir=/usr/share/info \ - --localstatedir=/var \ - --disable-systemd \ - --enable-sha256 \ - --enable-gpl \ - || return 1 - make || return 1 -} - -package() { - cd "$_builddir" - make DESTDIR="$pkgdir" install || return 1 -} - -md5sums="17637b9b5569e5646806d86f595ba596 ipmiutil-2.9.2.tar.gz -2759e748ae36b0dfa4a283e7c0f948e4 fixups.patch" -sha256sums="c32687d233390364a91d16920dcd7df80c06365ade9e51d74b2af5c5d1acead8 ipmiutil-2.9.2.tar.gz -87b9165ca06254256a35bf7666d60479ded78747a44b91adbbec5257b57254de fixups.patch" -sha512sums="8c7643042232792ba51cf0546e756f409e055433940fc54907de07eb39de504128fa4613f8253997ea145c17d6e38a8888cf6b98b8e45c7130f383ad18798264 ipmiutil-2.9.2.tar.gz -3b7dd14ab2db875419b7110f56d40c1032e1c105ef3b2dd5ceec1efe206dbff66a967ac4b781dc4f1e36e24bdf832408a173e3de3082ae7b8649680f57f85f2f fixups.patch" diff --git a/testing/ipmiutil/fixups.patch b/testing/ipmiutil/fixups.patch deleted file mode 100644 index dea7adae02..0000000000 --- a/testing/ipmiutil/fixups.patch +++ /dev/null @@ -1,33 +0,0 @@ ---- a/util/imb_api.h -+++ b/util/imb_api.h -@@ -49,8 +49,8 @@ - /* DOS defines wchar_t in stdlib.h */ - #else - // defined(LINUX) | defined(SOLARIS) --#ifndef _WCHAR_T --#define _WCHAR_T -+#ifndef __DEFINED_wchar_t -+#define __DEFINED_wchar_t - typedef long wchar_t; - #endif - #endif ---- a/util/mem_if.c -+++ b/util/mem_if.c -@@ -65,6 +65,7 @@ - #include <sys/param.h> - #include <sys/mman.h> - #include <sys/ioctl.h> -+#include <linux/param.h> - #endif - #if defined(SOLARIS) || defined(BSD) - #define EXEC_PAGESIZE 4096 ---- a/util/ipmimv.c -+++ b/util/ipmimv.c -@@ -62,6 +62,7 @@ - #include <time.h> - #include <errno.h> - #include <sys/ioctl.h> -+#include <sys/select.h> - #if defined(MACOS) - #include <sys/time.h> - #else |