aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSören Tempel <soeren+git@soeren-tempel.net>2019-07-17 00:55:35 +0200
committerSören Tempel <soeren+git@soeren-tempel.net>2019-07-17 00:57:05 +0200
commit1898033c5f9e95dcee43f95e1d1671adbbd6b022 (patch)
treeedfc351c3973da853aebe6b2d1189410b1091e82
parent33c572f256610fbe0fb5c14e8a40c87598ab4fc5 (diff)
downloadaports-1898033c5f9e95dcee43f95e1d1671adbbd6b022.tar.bz2
aports-1898033c5f9e95dcee43f95e1d1671adbbd6b022.tar.xz
community/github-cli: remove aport
From the upstream README [0]: IMPORTANT: github-cli does not function anymore since API v2 has been replaced by API v3. A possible alternative for github-cli that addresses API v3 is Stephen Celis' ghi. Additionally, it still uses python2 which is EOL in less than 6 months. [0]: https://github.com/jsmits/github-cli#github-issues-api-v2---command-line-interface
-rw-r--r--community/github-cli/APKBUILD33
1 files changed, 0 insertions, 33 deletions
diff --git a/community/github-cli/APKBUILD b/community/github-cli/APKBUILD
deleted file mode 100644
index e60e59c74b..0000000000
--- a/community/github-cli/APKBUILD
+++ /dev/null
@@ -1,33 +0,0 @@
-# Contributor: Francesco Colista <fcolista@alpinelinux.org>
-# Maintainer: Francesco Colista <fcolista@alpinelinux.org>
-pkgname=github-cli
-pkgver=1.0.0
-pkgrel=3
-pkgdesc="GitHub issue tracker client"
-url="http://packages.python.org/github-cli/"
-arch="noarch"
-license="BSD"
-depends="python2 py-simplejson py-setuptools"
-makedepends="py-distutils-extra"
-subpackages="$pkgname-doc"
-source="$pkgname-$pkgver.zip::https://github.com/jsmits/$pkgname/archive/$pkgver.zip"
-builddir="$srcdir"/$pkgname-$pkgver
-
-check() {
- cd "$builddir"
- python2 setup.py check
-}
-
-build() {
- cd "$builddir"
- python2 setup.py build
-}
-
-package() {
- cd "$builddir"
- python2 setup.py install --root="$pkgdir" -O1
- install -Dm644 LICENSE.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE.txt"
- install -Dm644 README.rst "$pkgdir/usr/share/doc/$pkgname/README.rst"
-}
-
-sha512sums="ba57bb1a6842da951da2c807e49f0b1f18c36e754dad567cc912dff6e979cd6aefd6063f10bd99d32542f73d8001a5bfcebd54471f445259dc218386e00fe61d github-cli-1.0.0.zip"