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/hplip | |
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/hplip')
-rw-r--r-- | testing/hplip/APKBUILD | 56 | ||||
-rw-r--r-- | testing/hplip/disable_upgrade.patch | 14 |
2 files changed, 0 insertions, 70 deletions
diff --git a/testing/hplip/APKBUILD b/testing/hplip/APKBUILD deleted file mode 100644 index a8e6fe96fb..0000000000 --- a/testing/hplip/APKBUILD +++ /dev/null @@ -1,56 +0,0 @@ -# Maintainer: -# Contributor: Bartłomiej Piotrowski <bpiotrowski@alpinelinux.org> - -pkgname=hplip -pkgver=3.14.3 -pkgrel=2 -pkgdesc='Drivers for HP printers' -arch=all -url='http://hplipopensource.com' -license='GPL' -depends='python py-dbus' -makedepends='libjpeg-turbo-dev net-snmp-dev cups-dev libusb-dev python-dev' -subpackages="$pkgname-doc" -source="http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz - disable_upgrade.patch" - -_builddir="$srcdir/$pkgname-$pkgver" - -prepare() { - local i - cd "$_builddir" - update_config_sub || return 1 - 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 \ - --disable-qt4 \ - --disable-scan-build \ - --disable-fax-build \ - --disable-dbus-build \ - --enable-cups-ppd-install \ - --enable-foomatic-ppd-install \ - --enable-foomatic-drv-install \ - || return 1 - make || return 1 -} - -package() { - make -C "$_builddir" DESTDIR="$pkgdir" install || return 1 - - cd "$pkgdir" - rm -rf etc/sane.d etc/xdg usr/share/hal etc/init.d etc/udev -} - -md5sums="a0ae59a75d202b92738dc24610b98428 hplip-3.14.3.tar.gz -65bddd5951bd2d12a26bbf7b51bcab27 disable_upgrade.patch" -sha256sums="1805b103639b51b9d908921e1e77db66c6e78b792aa51e405a5415e8e1c55e6e hplip-3.14.3.tar.gz -b3f8d91a07216e6aad4dbfdb79ae19496b03c29f56444059b9b93a32c86ceb8e disable_upgrade.patch" -sha512sums="c51ee7ff1255d56b271a2d2072fb7cdf62ccece323fe4814cdfb2a93fa97144dd83343f09bc5fdcc7e757c3ba16d3158c239689e0324fb2d9295917f94153dea hplip-3.14.3.tar.gz -57e14c581e82a0dd44344524dc4eb4d845843cf0775b60475541cabfb9d67a4fdab501be3977f8ca9888fbbee4d0392e6068c788e7a85cf4c1add5848be21ae7 disable_upgrade.patch" diff --git a/testing/hplip/disable_upgrade.patch b/testing/hplip/disable_upgrade.patch deleted file mode 100644 index f95b4dfe4b..0000000000 --- a/testing/hplip/disable_upgrade.patch +++ /dev/null @@ -1,14 +0,0 @@ ---- a/upgrade.py 2013-10-31 12:46:54.000000000 +0100 -+++ b/upgrade.py 2013-12-04 14:58:03.000000000 +0100 -@@ -134,6 +134,11 @@ except getopt.GetoptError, e: - if os.getenv("HPLIP_DEBUG"): - log.set_level('debug') - -+ -+log.error("HPLIP upgrade is disabled by Alpine Linux for security reasons, see https://bugs.archlinux.org/task/38083") -+clean_exit(1) -+ -+ - for o, a in opts: - if o in ('-h', '--help'): - usage() |