aboutsummaryrefslogtreecommitdiffstats
path: root/testing
diff options
context:
space:
mode:
authorLeo <thinkabit.ukim@gmail.com>2019-10-23 06:58:51 -0300
committerLeo <thinkabit.ukim@gmail.com>2019-10-23 08:29:17 -0300
commit4aaed4c8eb5f753d96b0798504ff371cbd66c959 (patch)
tree3e442bbb9d55733f28c0734c2468bab687b387d3 /testing
parent8b611005a9eaa22289a671e514390e8c25fc0c50 (diff)
downloadaports-4aaed4c8eb5f753d96b0798504ff371cbd66c959.tar.bz2
aports-4aaed4c8eb5f753d96b0798504ff371cbd66c959.tar.xz
testing/gn: remove, depends on python2
Diffstat (limited to 'testing')
-rw-r--r--testing/gn/APKBUILD37
1 files changed, 0 insertions, 37 deletions
diff --git a/testing/gn/APKBUILD b/testing/gn/APKBUILD
deleted file mode 100644
index 3dcf40af24..0000000000
--- a/testing/gn/APKBUILD
+++ /dev/null
@@ -1,37 +0,0 @@
-# Maintainer: Sven Assmann <sven@d34dl0ck.me>
-pkgname=gn
-pkgver=1530
-pkgrel=0
-pkgdesc="GN is a meta-build system that generates build files for Ninja."
-url="https://gn.googlesource.com/gn/+/1ab6fa2c/README.md"
-arch="all !x86 !armhf !armv7"
-license="BSD-3-Clause"
-depends="libgcc musl"
-makedepends="python2 ninja git clang"
-giturl="https://gn.googlesource.com/gn"
-builddir="$srcdir"
-
-fetch() {
- git clone https://gn.googlesource.com/gn "$builddir/git"
- cd "$builddir/git"
- git reset --hard 1ab6fa2c
-}
-
-prepare() {
- "$builddir/git/build/gen.py"
-}
-
-check() {
- cd "$builddir/git/out/"
-
- ./gn_unittests
-}
-
-build() {
- cd "$builddir/git"
- ninja -C out -j 8
-}
-
-package() {
- install -m755 -D "$builddir/git/out/$pkgname" "$pkgdir/usr/bin/$pkgname"
-}