summaryrefslogtreecommitdiff
path: root/pcr
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@lukeshu.com>2019-02-23 13:03:16 -0500
committerLuke Shumaker <lukeshu@lukeshu.com>2019-02-23 13:03:16 -0500
commite992bb10b168e5f57113d0b2613ffcff8d347fe0 (patch)
tree0db9623b55b87a2648203f5587196c54d3ff4ae6 /pcr
parentd63db1cb049550a50469f047ae3ce5a082938135 (diff)
Remove some unused python 3.6 packages owned by ex-hackers
- python-pygame-sdl2 (coadde) - python-unidiff (g4jc) - python-uritools-git (emulatorman)
Diffstat (limited to 'pcr')
-rw-r--r--pcr/python-pygame-sdl2/PKGBUILD40
-rw-r--r--pcr/python-unidiff/PKGBUILD21
-rw-r--r--pcr/python-uritools-git/PKGBUILD48
3 files changed, 0 insertions, 109 deletions
diff --git a/pcr/python-pygame-sdl2/PKGBUILD b/pcr/python-pygame-sdl2/PKGBUILD
deleted file mode 100644
index 84fd441db..000000000
--- a/pcr/python-pygame-sdl2/PKGBUILD
+++ /dev/null
@@ -1,40 +0,0 @@
-# Maintainer (Arch): Maxime Gauduin <alucryd@archlinux.org>
-# Contributor (Arch): Cravix <dr.neemous@gmail.com>
-# Maintainer: Márcio Silva <coadde@hyperbola.info>
-
-pkgname=python-pygame-sdl2
-pkgver=2.1.0.r328.ce2578c
-pkgrel=1
-epoch=1
-pkgdesc='Reimplementation of portions of the pygame API using SDL2'
-arch=('i686' 'x86_64' 'armv7h')
-url='https://github.com/renpy/pygame_sdl2'
-license=('LGPL2.1' 'zlib')
-depends=('python' 'sdl2_image' 'sdl2_mixer' 'sdl2_ttf')
-makedepends=('cython' 'git')
-_commit='ce2578cbd5730bdb1950d1a6ea560203b6d610e4'
-source=("git+https://github.com/renpy/pygame_sdl2.git#commit=${_commit}")
-sha256sums=('SKIP')
-
-pkgver() {
- cd pygame_sdl2
-
- echo "2.1.0.r$(git rev-list --count HEAD).$(git rev-parse --short HEAD)"
-}
-
-build() {
- cd pygame_sdl2
-
- python setup.py build
-}
-
-package() {
- cd pygame_sdl2
-
- python setup.py install --root="${pkgdir}" --prefix='/usr' --optimize='1'
-
- install -dm 755 "${pkgdir}"/usr/share/licenses/python-pygame-sdl2
- install -m 644 COPYING.ZLIB "${pkgdir}"/usr/share/licenses/python-pygame-sdl2/
-}
-
-# vim: ts=2 sw=2 et:
diff --git a/pcr/python-unidiff/PKGBUILD b/pcr/python-unidiff/PKGBUILD
deleted file mode 100644
index 54ebe5afe..000000000
--- a/pcr/python-unidiff/PKGBUILD
+++ /dev/null
@@ -1,21 +0,0 @@
-# Maintainer: Luke R. <g4jc@openmailbox.org> GPG: rsa4096/3EAE8697
-# Contributor: jc_gargma <jc_gargma@iserlohn-fortress.net>
-
-_pkgname=unidiff
-pkgname=python-$_pkgname
-pkgver=0.5.4
-pkgrel=1
-pkgdesc="Simple Python library to parse and interact with unified diff data."
-arch=('any')
-url="https://github.com/matiasb/python-unidiff"
-license=('MIT')
-depends=('python')
-makedepends=('python-setuptools')
-source=("https://github.com/matiasb/python-unidiff/archive/v$pkgver.tar.gz")
-sha512sums=('c597795d77166dfd788cbe30d7b12c7b37d2e2bd0f078a22ff5f95f067e3060f70727c87262af688860bb2fa6303b67ac149c4c2eff418168e084056ff53cd2e')
-
-package() {
- cd "$srcdir/$pkgname-$pkgver"
- python setup.py install --root="$pkgdir/" --optimize=1
-}
-
diff --git a/pcr/python-uritools-git/PKGBUILD b/pcr/python-uritools-git/PKGBUILD
deleted file mode 100644
index fba15a278..000000000
--- a/pcr/python-uritools-git/PKGBUILD
+++ /dev/null
@@ -1,48 +0,0 @@
-# Maintainer (Arch): Frederik "Freso" S. Olesen <freso.dk@gmail.com>
-
-_pkgname=uritools
-pkgname=("python-${_pkgname}-git" "python2-${_pkgname}-git")
-pkgver=2.0.0.r3.gc871941
-pkgrel=1
-pkgdesc='RFC 3986 compliant, Unicode-aware, scheme-agnostic replacement for urlparse'
-arch=('any')
-url="https://github.com/tkem/${_pkgname}"
-license=('MIT')
-depends=('python')
-makedepends=('git' 'python-pip' 'python2-pip')
-provides=("python-${_pkgname}")
-conflicts=("$provides")
-source=("git+${url}.git")
-md5sums=('SKIP')
-
-pkgver() {
- cd "$srcdir/$_pkgname"
- git describe --long --tags | sed -r 's/^v//;s/([^-]*-g)/r\1/;s/-/./g'
-}
-
-check() {
- cd "$srcdir/$_pkgname"
- python setup.py test
-}
-
-package_python-uritools-git() {
- cd "$srcdir/$_pkgname"
- python setup.py install --root="$pkgdir/" --optimize=1
- install -d "$pkgdir/usr/share/doc/python-${_pkgname}/"
- install -pm644 CHANGES.rst README.rst "$pkgdir/usr/share/doc/python-${_pkgname}/"
- install -Dpm644 LICENSE "$pkgdir/usr/share/licenses/python-${_pkgname}/LICENSE"
-}
-
-package_python2-uritools-git() {
- depends=('python2' 'python2-ipaddress')
- provides=("python2-${_pkgname}")
- conflicts=("$provides")
-
- cd "$srcdir/$_pkgname"
- python2 setup.py install --root="$pkgdir/" --optimize=1
- install -d "$pkgdir/usr/share/doc/python2-${_pkgname}/"
- install -pm644 CHANGES.rst README.rst "$pkgdir/usr/share/doc/python2-${_pkgname}/"
- install -Dpm644 LICENSE "$pkgdir/usr/share/licenses/python2-${_pkgname}/LICENSE"
-}
-
-# vim:set ts=2 sw=2 et: