aboutsummaryrefslogtreecommitdiffstats
path: root/testing/rc
diff options
context:
space:
mode:
authorCarlo Landmeter <clandmeter@gmail.com>2016-08-25 15:26:24 +0200
committerCarlo Landmeter <clandmeter@gmail.com>2016-08-25 15:26:24 +0200
commitb6af1e02efe594039707cd882517663d5370f375 (patch)
treeff9c2d55873e051e82972ba64c017352d3a75d34 /testing/rc
parenta71346b7acebc600960a98c84fb32cfd72fe864b (diff)
downloadaports-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/rc')
-rw-r--r--testing/rc/APKBUILD44
-rw-r--r--testing/rc/rc.post-install3
-rw-r--r--testing/rc/rc.pre-deinstall3
3 files changed, 0 insertions, 50 deletions
diff --git a/testing/rc/APKBUILD b/testing/rc/APKBUILD
deleted file mode 100644
index da1a293262..0000000000
--- a/testing/rc/APKBUILD
+++ /dev/null
@@ -1,44 +0,0 @@
-# Contributor: Sören Tempel <soeren+alpine@soeren-tempel.net>
-# Maintainer: Sören Tempel <soeren+alpine@soeren-tempel.net>
-pkgname=rc
-pkgver=1.7.4
-pkgrel=0
-pkgdesc="An alternative implementation of the plan 9 rc shell"
-url="http://tobold.org/article/rc"
-arch="all"
-license="custom"
-depends=""
-depends_dev=""
-makedepends="readline-dev ncurses-dev"
-install="$pkgname.post-install $pkgname.pre-deinstall"
-subpackages="$pkgname-doc"
-source="http://static.tobold.org/$pkgname/$pkgname-$pkgver.tar.gz"
-
-_builddir="$srcdir"/$pkgname-$pkgver
-build() {
- cd "$_builddir"
- ./configure \
- --build=$CBUILD \
- --host=$CHOST \
- --prefix=/usr \
- --bindir=/bin \
- --sysconfdir=/etc \
- --mandir=/usr/share/man \
- --infodir=/usr/share/info \
- --localstatedir=/var \
- --with-edit=gnu \
- || return 1
- make || return 1
-}
-
-package() {
- cd "$_builddir"
- make DESTDIR="$pkgdir" install
-
- mkdir -p "$pkgdir"/usr/share/licenses/$pkgname
- install -Dm644 COPYING "$pkgdir"/usr/share/licenses/$pkgname/ || return 1
-}
-
-md5sums="f99732d7a8be3f15f81e99c3af46dc95 rc-1.7.4.tar.gz"
-sha256sums="5ed26334dd0c1a616248b15ad7c90ca678ae3066fa02c5ddd0e6936f9af9bfd8 rc-1.7.4.tar.gz"
-sha512sums="49e124207b5370b88b8fba0376dda33451451a58bfb85fabfc06ae59eb88fedf38d7aeaaf292e4f380e2c00efc8301ba68d12180923186d1c53ef94f78f7e435 rc-1.7.4.tar.gz"
diff --git a/testing/rc/rc.post-install b/testing/rc/rc.post-install
deleted file mode 100644
index 4cf16eca8d..0000000000
--- a/testing/rc/rc.post-install
+++ /dev/null
@@ -1,3 +0,0 @@
-#!/bin/sh
-add-shell '/bin/rc'
-exit 0
diff --git a/testing/rc/rc.pre-deinstall b/testing/rc/rc.pre-deinstall
deleted file mode 100644
index 83a26d6253..0000000000
--- a/testing/rc/rc.pre-deinstall
+++ /dev/null
@@ -1,3 +0,0 @@
-#!/bin/sh
-remove-shell '/bin/rc'
-exit 0