Date: Saturday, February 19, 2011 @ 14:45:01 Author: ibiru Revision: 110537
rename to fix FS#22914 Added: python2-httplib2/ python2-httplib2/repos/ python2-httplib2/trunk/ python2-httplib2/trunk/COPYING python2-httplib2/trunk/PKGBUILD Modified: httplib2/trunk/PKGBUILD ---------------------------------+ httplib2/trunk/PKGBUILD | 14 +++++++++----- python2-httplib2/trunk/COPYING | 24 ++++++++++++++++++++++++ python2-httplib2/trunk/PKGBUILD | 31 +++++++++++++++++++++++++++++++ 3 files changed, 64 insertions(+), 5 deletions(-) Modified: httplib2/trunk/PKGBUILD =================================================================== --- httplib2/trunk/PKGBUILD 2011-02-19 18:51:51 UTC (rev 110536) +++ httplib2/trunk/PKGBUILD 2011-02-19 19:45:01 UTC (rev 110537) @@ -1,26 +1,30 @@ +# $Id$ # Maintainer: Jan de Groot <[email protected]> # Contributor: Giorgio Lando <[email protected]> # Contributor: Nicolas Quienot <niQo@aur> -pkgname=httplib2 +pkgname=python2-httplib2 +_pkgbasename=httplib2 pkgver=0.6.0 -pkgrel=2 +pkgrel=4 pkgdesc="A comprehensive HTTP client library, supporting many features" url="http://code.google.com/p/httplib2/" license=('MIT') arch=(any) depends=(python2) -source=(http://httplib2.googlecode.com/files/${pkgname}-${pkgver}.tar.gz +provides=(httplib2) +replaces=(httplib2) +source=(http://httplib2.googlecode.com/files/${_pkgbasename}-${pkgver}.tar.gz COPYING) md5sums=('04f73e296c02c9cd7151db33a2671b7c' 'd65321d20730e3d9291dd63b43fdcda9') build() { - cd "${srcdir}/${pkgname}-${pkgver}" + cd "${srcdir}/${_pkgbasename}-${pkgver}" python2 setup.py build } package() { - cd "${srcdir}/${pkgname}-${pkgver}" + cd "${srcdir}/${_pkgbasename}-${pkgver}" python2 setup.py install --root="${pkgdir}" install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}" install -m644 "${srcdir}/COPYING" "${pkgdir}/usr/share/licenses/${pkgname}/" Added: python2-httplib2/trunk/COPYING =================================================================== --- python2-httplib2/trunk/COPYING (rev 0) +++ python2-httplib2/trunk/COPYING 2011-02-19 19:45:01 UTC (rev 110537) @@ -0,0 +1,24 @@ +Httplib2 Software License + +Copyright (c) 2006 by Joe Gregorio + +Permission is hereby granted, free of charge, to any person +obtaining a copy of this software and associated documentation +files (the "Software"), to deal in the Software without restriction, +including without limitation the rights to use, copy, modify, merge, +publish, distribute, sublicense, and/or sell copies of the Software, +and to permit persons to whom the Software is furnished to do so, +subject to the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS +BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN +ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN +CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + Added: python2-httplib2/trunk/PKGBUILD =================================================================== --- python2-httplib2/trunk/PKGBUILD (rev 0) +++ python2-httplib2/trunk/PKGBUILD 2011-02-19 19:45:01 UTC (rev 110537) @@ -0,0 +1,31 @@ +# $Id$ +# Maintainer: Jan de Groot <[email protected]> +# Contributor: Giorgio Lando <[email protected]> +# Contributor: Nicolas Quienot <niQo@aur> +pkgname=python2-httplib2 +_pkgbasename=httplib2 +pkgver=0.6.0 +pkgrel=4 +pkgdesc="A comprehensive HTTP client library, supporting many features" +url="http://code.google.com/p/httplib2/" +license=('MIT') +arch=(any) +depends=(python2) +provides=(httplib2) +replaces=(httplib2) +source=(http://httplib2.googlecode.com/files/${_pkgbasename}-${pkgver}.tar.gz + COPYING) +md5sums=('04f73e296c02c9cd7151db33a2671b7c' + 'd65321d20730e3d9291dd63b43fdcda9') + +build() { + cd "${srcdir}/${_pkgbasename}-${pkgver}" + python2 setup.py build +} + +package() { + cd "${srcdir}/${_pkgbasename}-${pkgver}" + python2 setup.py install --root="${pkgdir}" + install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}" + install -m644 "${srcdir}/COPYING" "${pkgdir}/usr/share/licenses/${pkgname}/" +} Property changes on: python2-httplib2/trunk/PKGBUILD ___________________________________________________________________ Added: svn:keywords + Id
