summaryrefslogtreecommitdiff
path: root/pcr/python2-webob
diff options
context:
space:
mode:
authorAndré Fabian Silva Delgado <emulatorman@parabola.nu>2014-12-18 11:58:30 -0200
committerAndré Fabian Silva Delgado <emulatorman@parabola.nu>2014-12-18 11:58:30 -0200
commite28c22b3aa33f1243d096dfd3b7da6ce7760a144 (patch)
tree3306d7a3261092a14fadaa5eebe1254069ed7f5b /pcr/python2-webob
parent3605270bdc98b3d4ac973eead454c2dcd6d24072 (diff)
remove packages that has been released as Arch official package
Diffstat (limited to 'pcr/python2-webob')
-rw-r--r--pcr/python2-webob/Changelog26
-rw-r--r--pcr/python2-webob/PKGBUILD34
2 files changed, 0 insertions, 60 deletions
diff --git a/pcr/python2-webob/Changelog b/pcr/python2-webob/Changelog
deleted file mode 100644
index d67f3b16b..000000000
--- a/pcr/python2-webob/Changelog
+++ /dev/null
@@ -1,26 +0,0 @@
-2012-10-30 Aaron DeVore <aaron.devore@gmail.com> (1.2.3-1)
-- Version bump to 1.2.3
-- Change WebOb-${pkgver}.zip to WebOb-${pkgver}.tar.gz
-2012-06-07 Aaron DeVore <aaron.devore@gmail.com> (1.2.2-1)
-- Version bump to 1.2.2
-2012-06-07 Aaron DeVore <aaron.devore@gmail.com> (1.2-1)
-- Version bump to 1.2
-2012-10-07 Aaron DeVore <aaron.devore@gmail.com>
-- Version bump to 1.1.1
-2011-8-8 Aaron DeVore <aaron.devore@gmail.com> (1.1b2)
-- Version bump to 1.1b2
-- Add python-sphinx to makedepends
-2011-5-14 Aaron DeVore <aaron.devore@gmail.com> (1.0.7-2)
-- Revert from split build (AUR doesn't work with split builds)
-2011-5-14 Aaron DeVore <aaron.devore@gmail.com> (1.0.7-1)
-- Version bump to 1.0.7
-- Switch to split build
-- Split Sphinx html docs into python-webob-docs package
-- Don't bundle license file (upstream has restored it)
-2011-4-13 Aaron DeVore <aaron.devore@gmail.com> (1.0.6-1)
-- Version bump to 1.0.6
-- Bundle the license file (upstream removed it from the Pypi zip file)
-2011-3-24 Aaron DeVore <aaron.devore@gmail.com> (1.0.5-1)
-- Version bump to 1.0.5
-- Fix source URL (file extension changed on Pypi)
-- Fix some recently change idioms
diff --git a/pcr/python2-webob/PKGBUILD b/pcr/python2-webob/PKGBUILD
deleted file mode 100644
index 328cf35f0..000000000
--- a/pcr/python2-webob/PKGBUILD
+++ /dev/null
@@ -1,34 +0,0 @@
-# Contributor (Arch): Aaron DeVore <aaron.devore@gmail.com>
-# Contributor (Arch): Cilyan Olowen <gaknar@gmail.com>
-# Maintainer : Parabola GNU / Linux-libre Aurelien Desbrieres <aurelien@cwb.IO>
-
-pkgname='python2-webob'
-pkgver='1.2.3'
-pkgrel='1'
-pkgdesc="WebOb provides objects for HTTP requests and responses."
-arch=('any')
-url="http://webob.org/"
-license=('MIT')
-depends=('python2')
-makedepends=('python2-distribute')
-optdepends=('python-webob-docs: documentation')
-changelog='Changelog'
-source=("http://pypi.python.org/packages/source/W/WebOb/WebOb-${pkgver}.tar.gz")
-
-build() {
- cd "$srcdir/WebOb-${pkgver}"
- python2 setup.py build
-}
-
-package() {
- cd "$srcdir/WebOb-${pkgver}"
- python2 setup.py install "--root=$pkgdir" --optimize=1
- install -D -m644 "docs/license.txt" \
- "$pkgdir/usr/share/licenses/$pkgname/license.txt"
-}
-
-check() {
- cd "$srcdir/WebOb-${pkgver}"
- python2 setup.py test
-}
-