diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2016-05-11 16:43:52 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2016-05-11 16:45:47 +0000 |
commit | 315ddd26b78d81b1c2f0c1d2a85da338b00fdb25 (patch) | |
tree | 47205a7adb60694996874da8c3fc720dcd920501 /unmaintained/blackmagic-grsec/APKBUILD | |
parent | aacae4a7b4456b75cbc938f7656cc7118b1e8646 (diff) | |
download | aports-315ddd26b78d81b1c2f0c1d2a85da338b00fdb25.tar.bz2 aports-315ddd26b78d81b1c2f0c1d2a85da338b00fdb25.tar.xz |
unmaintained/: Purge packages unmaintained since v3.0
Removes packages that have been in aports/unmaintained since the 3.0-stable
branch.
Alpine Linux v3.0 was released on 2014-06-04 and EOL on 2016-05-01, so
these packages have not been touched since at least 23 months.
The files can still be recovered from the 3.3-stable branch.
Diffstat (limited to 'unmaintained/blackmagic-grsec/APKBUILD')
-rw-r--r-- | unmaintained/blackmagic-grsec/APKBUILD | 71 |
1 files changed, 0 insertions, 71 deletions
diff --git a/unmaintained/blackmagic-grsec/APKBUILD b/unmaintained/blackmagic-grsec/APKBUILD deleted file mode 100644 index 0fa38ce5e5..0000000000 --- a/unmaintained/blackmagic-grsec/APKBUILD +++ /dev/null @@ -1,71 +0,0 @@ -# Maintainer: Natanael Copa <ncopa@alpinelinux.org> - -_flavor=grsec -_kpkg=linux-$_flavor -_kver=3.13.7 -_kpkgrel=0 -_mypkgrel=0 - -# verify the kernel version before entering chroot -if [ -f ../linux-${_flavor}/APKBUILD ]; then - . ../linux-${_flavor}/APKBUILD -fi - -_kpkgver="$_kver-r$_kpkgrel" -_abi_release=${_kver}-${_kpkgrel}-${_flavor} -_realname=blackmagic - -pkgname=${_realname}-${_flavor} -pkgver=$_kver -# when chaning _bmdver we *must* bump _mypkgrel -_bmdver=9.8 -pkgrel=$(( $_kpkgrel + $_mypkgrel )) -pkgdesc="Black Magic Design video driver" -url="http://blackmagicdesign.com" -arch="" -license="GPL" -depends="linux-${_flavor}=${_kpkgver}" -makedepends="linux-${_flavor}-dev=${_kpkgver}" -install= -subpackages="" -source=" -http://software.blackmagicdesign.com/DesktopVideo/Blackmagic_Desktop_Video_Linux_$_bmdver.tar.gz - " - -_builddir="$srcdir"/desktopvideo-${_bmdver}a2-x86_64/usr/src/desktopvideo-${_bmdver}a2 -prepare() { - cd "$srcdir" - local _arch="$CARCH" - if [ "$CARCH" = "x86" ]; then - _arch="i386" - fi - msg "unpacking desktopvideo-$_bmdver-$_arch.tar.gz" - tar -zxf desktopvideo-$_bmdver-x86_64.tar.gz - for i in $source; do - case $i in - *.patch|*.diff) - msg "Applying $i" - patch -p1 -i "$srcdir"/$i || return 1 - ;; - esac - done -} - -build() { - cd "$srcdir"/desktopvideo-*/usr/src/desktopvideo-*/ - make KERNELRELEASE="${_abi_release}" \ - || return 1 -} - -package() { - cd "$srcdir"/desktopvideo-*/usr/src/desktopvideo-*/ - make -C /lib/modules/$_abi_release/build M="$PWD" \ - INSTALL_MOD_PATH="$pkgdir" \ - INSTALL_PATH="$pkgdir"/boot \ - modules_install - -} - -md5sums="2897ccc96fcf19e887fdf9c8f6d3d4f5 Blackmagic_Desktop_Video_Linux_9.8.tar.gz" -sha256sums="6977360490c806f9952028d50bc10782d5878e5d42bd7c0f5eb070b3b6e1116c Blackmagic_Desktop_Video_Linux_9.8.tar.gz" -sha512sums="af4ccd5f9732633c4b3756766cd54c3329bf9edeb640462bb316e9c2b782550399806973a51e51c52fa47eaa018a11889b343cc3c1531282cc6524c6f630fce1 Blackmagic_Desktop_Video_Linux_9.8.tar.gz" |