[arch-commits] Commit in httpie/trunk (PKGBUILD)

2020-11-12 Thread Felix Yan via arch-commits
Date: Thursday, November 12, 2020 @ 16:55:29
  Author: felixonmars
Revision: 752093

upgpkg: httpie 2.3.0-3: Python 3.9 rebuild

Modified:
  httpie/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-11-12 16:55:28 UTC (rev 752092)
+++ PKGBUILD2020-11-12 16:55:29 UTC (rev 752093)
@@ -5,7 +5,7 @@
 
 pkgname=httpie
 pkgver=2.3.0
-pkgrel=2
+pkgrel=3
 pkgdesc="cURL for humans"
 url="https://github.com/jakubroztocil/httpie;
 depends=('python-requests'


[arch-commits] Commit in httpie/trunk (PKGBUILD)

2020-11-01 Thread Daurnimator via arch-commits
Date: Monday, November 2, 2020 @ 00:00:03
  Author: daurnimator
Revision: 739059

upgpkg: httpie 2.3.0-2

Add missing dependencies

Modified:
  httpie/trunk/PKGBUILD

--+
 PKGBUILD |9 +++--
 1 file changed, 7 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-11-01 22:49:15 UTC (rev 739058)
+++ PKGBUILD2020-11-02 00:00:03 UTC (rev 739059)
@@ -1,13 +1,18 @@
 # Maintainer: Jelle van der Waa 
+# Maintainer: daurnimator 
 # Contributor: Daniel Micay 
 # Contributor: Thomas Weißschuh 
 
 pkgname=httpie
 pkgver=2.3.0
-pkgrel=1
+pkgrel=2
 pkgdesc="cURL for humans"
 url="https://github.com/jakubroztocil/httpie;
-depends=('python-requests' 'python-pygments' 'python-setuptools')
+depends=('python-requests'
+ 'python-requests-toolbelt'
+ 'python-pygments'
+ 'python-pysocks'
+ 'python-setuptools')
 checkdepends=('python-pytest' 'python-pytest-httpbin' 'python-mock')
 conflicts=(python-httpie)
 replaces=(python-httpie python2-httpie)


[arch-commits] Commit in httpie/trunk (PKGBUILD)

2020-10-29 Thread Daurnimator via arch-commits
Date: Thursday, October 29, 2020 @ 12:53:06
  Author: daurnimator
Revision: 736502

upgpkg: httpie 2.3.0-1

Modified:
  httpie/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-10-29 12:08:52 UTC (rev 736501)
+++ PKGBUILD2020-10-29 12:53:06 UTC (rev 736502)
@@ -3,8 +3,8 @@
 # Contributor: Thomas Weißschuh 
 
 pkgname=httpie
-pkgver=2.2.0
-pkgrel=2
+pkgver=2.3.0
+pkgrel=1
 pkgdesc="cURL for humans"
 url="https://github.com/jakubroztocil/httpie;
 depends=('python-requests' 'python-pygments' 'python-setuptools')
@@ -14,7 +14,7 @@
 license=('BSD')
 arch=('any')
 
source=($pkgname-$pkgver.tar.gz::"https://github.com/jakubroztocil/httpie/archive/$pkgver.tar.gz;)
-sha1sums=('361033d7e8575c5adeaf37acc445f3d0530e51d7')
+sha1sums=('f25005e2c1cf1c5031e26bc6a4d00820df8b77f5')
 
 build() {
   cd $pkgname-$pkgver


[arch-commits] Commit in httpie/trunk (PKGBUILD)

2020-08-28 Thread Frederik Schwan via arch-commits
Date: Friday, August 28, 2020 @ 12:28:54
  Author: freswa
Revision: 690720

fix unquoted variables

Modified:
  httpie/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-08-28 12:28:27 UTC (rev 690719)
+++ PKGBUILD2020-08-28 12:28:54 UTC (rev 690720)
@@ -28,8 +28,8 @@
 
   # Fix upstream, include them in MANIFEST.in and use data_files in setup.py 
to install them automatically
   # TODO: add zsh support
-  install -Dm644 extras/httpie-completion.bash 
$pkgdir/usr/share/bash-completion/completions/http
-  install -Dm644 extras/httpie-completion.fish 
$pkgdir/usr/share/fish/vendor_completions.d/http.fish
+  install -Dm644 extras/httpie-completion.bash 
"$pkgdir"/usr/share/bash-completion/completions/http
+  install -Dm644 extras/httpie-completion.fish 
"$pkgdir"/usr/share/fish/vendor_completions.d/http.fish
 }
 
 check() {


[arch-commits] Commit in httpie/trunk (PKGBUILD)

2020-07-14 Thread Jelle van der Waa via arch-commits
Date: Tuesday, July 14, 2020 @ 12:35:07
  Author: jelle
Revision: 663741

Make httpie reproducible by not generating bytecode for tests

As tests are not run when reproducing no pyc files are generated.

Modified:
  httpie/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-07-14 12:33:06 UTC (rev 663740)
+++ PKGBUILD2020-07-14 12:35:07 UTC (rev 663741)
@@ -4,7 +4,7 @@
 
 pkgname=httpie
 pkgver=2.2.0
-pkgrel=1
+pkgrel=2
 pkgdesc="cURL for humans"
 url="https://github.com/jakubroztocil/httpie;
 depends=('python-requests' 'python-pygments' 'python-setuptools')
@@ -34,5 +34,5 @@
 
 check() {
   cd $pkgname-$pkgver
-  python3 setup.py test
+  PYTHONDONTWRITEBYTECODE=1 python3 setup.py test
 }


[arch-commits] Commit in httpie/trunk (PKGBUILD)

2020-06-21 Thread Jelle van der Waa via arch-commits
Date: Sunday, June 21, 2020 @ 14:53:06
  Author: jelle
Revision: 649389

upgpkg: httpie 2.2.0-1

Modified:
  httpie/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-06-21 13:42:57 UTC (rev 649388)
+++ PKGBUILD2020-06-21 14:53:06 UTC (rev 649389)
@@ -3,7 +3,7 @@
 # Contributor: Thomas Weißschuh 
 
 pkgname=httpie
-pkgver=2.1.0
+pkgver=2.2.0
 pkgrel=1
 pkgdesc="cURL for humans"
 url="https://github.com/jakubroztocil/httpie;
@@ -14,7 +14,7 @@
 license=('BSD')
 arch=('any')
 
source=($pkgname-$pkgver.tar.gz::"https://github.com/jakubroztocil/httpie/archive/$pkgver.tar.gz;)
-sha1sums=('60ded1330bcc2c4342dce341c6285bb117aef149')
+sha1sums=('361033d7e8575c5adeaf37acc445f3d0530e51d7')
 
 build() {
   cd $pkgname-$pkgver


[arch-commits] Commit in httpie/trunk (PKGBUILD)

2020-04-18 Thread Daurnimator via arch-commits
Date: Saturday, April 18, 2020 @ 12:52:26
  Author: daurnimator
Revision: 616068

upgpkg: httpie 2.1.0-1

Modified:
  httpie/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-04-18 12:34:01 UTC (rev 616067)
+++ PKGBUILD2020-04-18 12:52:26 UTC (rev 616068)
@@ -3,8 +3,8 @@
 # Contributor: Thomas Weißschuh 
 
 pkgname=httpie
-pkgver=2.0.0
-pkgrel=2
+pkgver=2.1.0
+pkgrel=1
 pkgdesc="cURL for humans"
 url="https://github.com/jakubroztocil/httpie;
 depends=('python-requests' 'python-pygments' 'python-setuptools')
@@ -14,7 +14,7 @@
 license=('BSD')
 arch=('any')
 
source=($pkgname-$pkgver.tar.gz::"https://github.com/jakubroztocil/httpie/archive/$pkgver.tar.gz;)
-sha1sums=('67a017fd43498dc1da507622367bdb5cceef3222')
+sha1sums=('60ded1330bcc2c4342dce341c6285bb117aef149')
 
 build() {
   cd $pkgname-$pkgver


[arch-commits] Commit in httpie/trunk (PKGBUILD)

2020-02-23 Thread Jelle van der Waa via arch-commits
Date: Sunday, February 23, 2020 @ 14:44:02
  Author: jelle
Revision: 579780

upgpkg: httpie 2.0.0-2

Install fish completion, resolves FS#55786

Modified:
  httpie/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-02-23 14:41:22 UTC (rev 579779)
+++ PKGBUILD2020-02-23 14:44:02 UTC (rev 579780)
@@ -4,7 +4,7 @@
 
 pkgname=httpie
 pkgver=2.0.0
-pkgrel=1
+pkgrel=2
 pkgdesc="cURL for humans"
 url="https://github.com/jakubroztocil/httpie;
 depends=('python-requests' 'python-pygments' 'python-setuptools')
@@ -26,10 +26,10 @@
   install -Dm644 LICENSE "$pkgdir/usr/share/licenses/httpie/LICENSE"
   python3 setup.py install --root="$pkgdir" --optimize=1
 
-  # Fix upstream, inclide them in MANIFEST.in and use data_files in setup.py 
to install them automatically
+  # Fix upstream, include them in MANIFEST.in and use data_files in setup.py 
to install them automatically
   # TODO: add zsh support
-  install -d $pkgdir/usr/share/bash-completion/completions
   install -Dm644 extras/httpie-completion.bash 
$pkgdir/usr/share/bash-completion/completions/http
+  install -Dm644 extras/httpie-completion.fish 
$pkgdir/usr/share/fish/vendor_completions.d/http.fish
 }
 
 check() {


[arch-commits] Commit in httpie/trunk (PKGBUILD)

2020-01-12 Thread Jelle van der Waa via arch-commits
Date: Sunday, January 12, 2020 @ 17:36:02
  Author: jelle
Revision: 552249

upgpkg: httpie 2.0.0-1

Upstream update

Modified:
  httpie/trunk/PKGBUILD

--+
 PKGBUILD |9 +
 1 file changed, 5 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-01-12 17:32:48 UTC (rev 552248)
+++ PKGBUILD2020-01-12 17:36:02 UTC (rev 552249)
@@ -1,9 +1,10 @@
-# Maintainer: Daniel Micay 
+# Maintainer: Jelle van der Waa 
+# Contributor: Daniel Micay 
 # Contributor: Thomas Weißschuh 
 
 pkgname=httpie
-pkgver=1.0.3
-pkgrel=2
+pkgver=2.0.0
+pkgrel=1
 pkgdesc="cURL for humans"
 url="https://github.com/jakubroztocil/httpie;
 depends=('python-requests' 'python-pygments' 'python-setuptools')
@@ -13,7 +14,7 @@
 license=('BSD')
 arch=('any')
 
source=($pkgname-$pkgver.tar.gz::"https://github.com/jakubroztocil/httpie/archive/$pkgver.tar.gz;)
-sha1sums=('f765ce527a0fae0d1dd76c25b78e6e61651ea4ca')
+sha1sums=('67a017fd43498dc1da507622367bdb5cceef3222')
 
 build() {
   cd $pkgname-$pkgver


[arch-commits] Commit in httpie/trunk (PKGBUILD)

2019-11-04 Thread Evangelos Foutras via arch-commits
Date: Monday, November 4, 2019 @ 08:35:08
  Author: foutrelis
Revision: 523775

Python 3.8 rebuild

Modified:
  httpie/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-11-04 08:34:48 UTC (rev 523774)
+++ PKGBUILD2019-11-04 08:35:08 UTC (rev 523775)
@@ -3,7 +3,7 @@
 
 pkgname=httpie
 pkgver=1.0.3
-pkgrel=1
+pkgrel=2
 pkgdesc="cURL for humans"
 url="https://github.com/jakubroztocil/httpie;
 depends=('python-requests' 'python-pygments' 'python-setuptools')


[arch-commits] Commit in httpie/trunk (PKGBUILD)

2019-08-30 Thread Jelle van der Waa via arch-commits
Date: Friday, August 30, 2019 @ 16:02:59
  Author: jelle
Revision: 505288

upgpkg: httpie 1.0.3-1

Upstream update

Modified:
  httpie/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-08-30 15:58:19 UTC (rev 505287)
+++ PKGBUILD2019-08-30 16:02:59 UTC (rev 505288)
@@ -2,7 +2,7 @@
 # Contributor: Thomas Weißschuh 
 
 pkgname=httpie
-pkgver=1.0.2
+pkgver=1.0.3
 pkgrel=1
 pkgdesc="cURL for humans"
 url="https://github.com/jakubroztocil/httpie;
@@ -13,7 +13,7 @@
 license=('BSD')
 arch=('any')
 
source=($pkgname-$pkgver.tar.gz::"https://github.com/jakubroztocil/httpie/archive/$pkgver.tar.gz;)
-sha1sums=('f41cc049b4a0cda463ffbd7c686e321d631dece7')
+sha1sums=('f765ce527a0fae0d1dd76c25b78e6e61651ea4ca')
 
 build() {
   cd $pkgname-$pkgver


[arch-commits] Commit in httpie/trunk (PKGBUILD)

2018-11-28 Thread Jelle van der Waa via arch-commits
Date: Wednesday, November 28, 2018 @ 20:49:34
  Author: jelle
Revision: 410471

upgpkg: httpie 1.0.2-1

Modified:
  httpie/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-11-28 20:33:15 UTC (rev 410470)
+++ PKGBUILD2018-11-28 20:49:34 UTC (rev 410471)
@@ -2,7 +2,7 @@
 # Contributor: Thomas Weißschuh 
 
 pkgname=httpie
-pkgver=1.0.0
+pkgver=1.0.2
 pkgrel=1
 pkgdesc="cURL for humans"
 url="https://github.com/jakubroztocil/httpie;
@@ -13,7 +13,7 @@
 license=('BSD')
 arch=('any')
 
source=($pkgname-$pkgver.tar.gz::"https://github.com/jakubroztocil/httpie/archive/$pkgver.tar.gz;)
-sha1sums=('0470bda0eb5aff60ec48b0728eeec01987e92794')
+sha1sums=('f41cc049b4a0cda463ffbd7c686e321d631dece7')
 
 build() {
   cd $pkgname-$pkgver


[arch-commits] Commit in httpie/trunk (PKGBUILD)

2018-11-04 Thread Jelle van der Waa via arch-commits
Date: Sunday, November 4, 2018 @ 20:11:47
  Author: jelle
Revision: 401519

upgpkg: httpie 1.0.0-1

Modified:
  httpie/trunk/PKGBUILD

--+
 PKGBUILD |   21 -
 1 file changed, 4 insertions(+), 17 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-11-04 19:59:23 UTC (rev 401518)
+++ PKGBUILD2018-11-04 20:11:47 UTC (rev 401519)
@@ -2,8 +2,8 @@
 # Contributor: Thomas Weißschuh 
 
 pkgname=httpie
-pkgver=0.9.9
-pkgrel=6
+pkgver=1.0.0
+pkgrel=1
 pkgdesc="cURL for humans"
 url="https://github.com/jakubroztocil/httpie;
 depends=('python-requests' 'python-pygments' 'python-setuptools')
@@ -12,22 +12,9 @@
 replaces=(python-httpie python2-httpie)
 license=('BSD')
 arch=('any')
-source=($pkgname-$pkgver.tar.gz::"https://github.com/jakubroztocil/httpie/archive/$pkgver.tar.gz;
-
"https://github.com/jakubroztocil/httpie/commit/749b1e2aca11e1ae3e52c8f3894cf0515c917439.patch;
-
"https://github.com/jakubroztocil/httpie/commit/9776a6dea0308e05c23db05b542920ebd6bea6c4.patch;)
-sha1sums=('81fa9b74df29b4acc31a8f93ec658e5224f31a5e'
-  'a1caeb5f2ba538bd8bec1ea27d8368ce7b216a76'
-  '2d0245bdecb2ccb122e927b263affed1cad68374')
+source=($pkgname-$pkgver.tar.gz::"https://github.com/jakubroztocil/httpie/archive/$pkgver.tar.gz;)
+sha1sums=('0470bda0eb5aff60ec48b0728eeec01987e92794')
 
-prepare() {
-  cd $pkgname-$pkgver
-
-  # fix for breaking change by https://github.com/pytest-dev/pytest/pull/2849
-  patch -p1 -i ../749b1e2aca11e1ae3e52c8f3894cf0515c917439.patch
-  # https://github.com/jakubroztocil/httpie/pull/584
-  patch -p1 -i ../9776a6dea0308e05c23db05b542920ebd6bea6c4.patch
-}
-
 build() {
   cd $pkgname-$pkgver
   python3 setup.py build


[arch-commits] Commit in httpie/trunk (PKGBUILD)

2018-08-28 Thread Jelle van der Waa via arch-commits
Date: Tuesday, August 28, 2018 @ 20:28:27
  Author: jelle
Revision: 375018

upgpkg: httpie 0.9.9-6

FS#55786 enable bash completion

Modified:
  httpie/trunk/PKGBUILD

--+
 PKGBUILD |7 ++-
 1 file changed, 6 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-08-28 19:10:16 UTC (rev 375017)
+++ PKGBUILD2018-08-28 20:28:27 UTC (rev 375018)
@@ -4,7 +4,7 @@
 
 pkgname=httpie
 pkgver=0.9.9
-pkgrel=5
+pkgrel=6
 pkgdesc="cURL for humans"
 url="https://github.com/jakubroztocil/httpie;
 depends=('python-requests' 'python-pygments' 'python-setuptools')
@@ -38,6 +38,11 @@
   cd $pkgname-$pkgver
   install -Dm644 LICENSE "$pkgdir/usr/share/licenses/httpie/LICENSE"
   python3 setup.py install --root="$pkgdir" --optimize=1
+
+  # Fix upstream, inclide them in MANIFEST.in and use data_files in setup.py 
to install them automatically
+  # TODO: add zsh support
+  install -d $pkgdir/usr/share/bash-completion/completions
+  install -Dm644 extras/httpie-completion.bash 
$pkgdir/usr/share/bash-completion/completions/http
 }
 
 check() {


[arch-commits] Commit in httpie/trunk (PKGBUILD)

2018-08-21 Thread Eli Schwartz via arch-commits
Date: Tuesday, August 21, 2018 @ 18:41:03
  Author: eschwartz
Revision: 373164

upgpkg: httpie 0.9.9-5

enable tests

Modified:
  httpie/trunk/PKGBUILD

--+
 PKGBUILD |   26 +++---
 1 file changed, 19 insertions(+), 7 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-08-21 18:27:22 UTC (rev 373163)
+++ PKGBUILD2018-08-21 18:41:03 UTC (rev 373164)
@@ -4,18 +4,31 @@
 
 pkgname=httpie
 pkgver=0.9.9
-pkgrel=4
+pkgrel=5
 pkgdesc="cURL for humans"
-url="https://github.com/jkbr/httpie;
+url="https://github.com/jakubroztocil/httpie;
 depends=('python-requests' 'python-pygments' 'python-setuptools')
-checkdepends=('python-pytest')
+checkdepends=('python-pytest' 'python-pytest-httpbin' 'python-mock')
 conflicts=(python-httpie)
 replaces=(python-httpie python2-httpie)
 license=('BSD')
 arch=('any')
-source=($pkgname-$pkgver.tar.gz::"https://github.com/jkbrzt/httpie/archive/$pkgver.tar.gz;)
-sha1sums=('81fa9b74df29b4acc31a8f93ec658e5224f31a5e')
+source=($pkgname-$pkgver.tar.gz::"https://github.com/jakubroztocil/httpie/archive/$pkgver.tar.gz;
+
"https://github.com/jakubroztocil/httpie/commit/749b1e2aca11e1ae3e52c8f3894cf0515c917439.patch;
+
"https://github.com/jakubroztocil/httpie/commit/9776a6dea0308e05c23db05b542920ebd6bea6c4.patch;)
+sha1sums=('81fa9b74df29b4acc31a8f93ec658e5224f31a5e'
+  'a1caeb5f2ba538bd8bec1ea27d8368ce7b216a76'
+  '2d0245bdecb2ccb122e927b263affed1cad68374')
 
+prepare() {
+  cd $pkgname-$pkgver
+
+  # fix for breaking change by https://github.com/pytest-dev/pytest/pull/2849
+  patch -p1 -i ../749b1e2aca11e1ae3e52c8f3894cf0515c917439.patch
+  # https://github.com/jakubroztocil/httpie/pull/584
+  patch -p1 -i ../9776a6dea0308e05c23db05b542920ebd6bea6c4.patch
+}
+
 build() {
   cd $pkgname-$pkgver
   python3 setup.py build
@@ -29,6 +42,5 @@
 
 check() {
   cd $pkgname-$pkgver
-  # Requires: python-raven python-pbr and pytest-httpbin
-  #python3 setup.py test
+  python3 setup.py test
 }


[arch-commits] Commit in httpie/trunk (PKGBUILD)

2018-07-23 Thread Evangelos Foutras via arch-commits
Date: Tuesday, July 24, 2018 @ 05:08:06
  Author: foutrelis
Revision: 363240

Python 3.7 rebuild

Modified:
  httpie/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-07-24 05:08:05 UTC (rev 363239)
+++ PKGBUILD2018-07-24 05:08:06 UTC (rev 363240)
@@ -4,7 +4,7 @@
 
 pkgname=httpie
 pkgver=0.9.9
-pkgrel=3
+pkgrel=4
 pkgdesc="cURL for humans"
 url="https://github.com/jkbr/httpie;
 depends=('python-requests' 'python-pygments' 'python-setuptools')


[arch-commits] Commit in httpie/trunk (PKGBUILD)

2018-07-22 Thread Jelle van der Waa via arch-commits
Date: Sunday, July 22, 2018 @ 17:15:30
  Author: jelle
Revision: 362847

wip tests

Modified:
  httpie/trunk/PKGBUILD

--+
 PKGBUILD |   16 +++-
 1 file changed, 11 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-07-22 16:44:45 UTC (rev 362846)
+++ PKGBUILD2018-07-22 17:15:30 UTC (rev 362847)
@@ -8,21 +8,27 @@
 pkgdesc="cURL for humans"
 url="https://github.com/jkbr/httpie;
 depends=('python-requests' 'python-pygments' 'python-setuptools')
+checkdepends=('python-pytest')
 conflicts=(python-httpie)
 replaces=(python-httpie python2-httpie)
 license=('BSD')
 arch=('any')
-#source=("https://github.com/jkbrzt/httpie/archive/$pkgver.tar.gz;)
-source=("https://pypi.python.org/packages/28/93/4ebf2de4bc74bd517a27a600b2b23a5254a20f28e6e36fc876fd98f7a51b/httpie-0.9.9.tar.gz;)
-md5sums=('13ed0b79b65e793eb288e563db38b2a2')
+source=($pkgname-$pkgver.tar.gz::"https://github.com/jkbrzt/httpie/archive/$pkgver.tar.gz;)
+sha1sums=('81fa9b74df29b4acc31a8f93ec658e5224f31a5e')
 
 build() {
-  cd httpie-$pkgver
+  cd $pkgname-$pkgver
   python3 setup.py build
 }
 
 package() {
-  cd httpie-$pkgver
+  cd $pkgname-$pkgver
   install -Dm644 LICENSE "$pkgdir/usr/share/licenses/httpie/LICENSE"
   python3 setup.py install --root="$pkgdir" --optimize=1
 }
+
+check() {
+  cd $pkgname-$pkgver
+  # Requires: python-raven python-pbr and pytest-httpbin
+  #python3 setup.py test
+}


[arch-commits] Commit in httpie/trunk (PKGBUILD)

2018-07-22 Thread Jelle van der Waa via arch-commits
Date: Sunday, July 22, 2018 @ 13:36:48
  Author: jelle
Revision: 362824

FS#55881 Add missing hard-dep setuptools

Modified:
  httpie/trunk/PKGBUILD

--+
 PKGBUILD |5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-07-22 10:14:52 UTC (rev 362823)
+++ PKGBUILD2018-07-22 13:36:48 UTC (rev 362824)
@@ -4,11 +4,10 @@
 
 pkgname=httpie
 pkgver=0.9.9
-pkgrel=2
+pkgrel=3
 pkgdesc="cURL for humans"
 url="https://github.com/jkbr/httpie;
-depends=('python-requests' 'python-pygments')
-makedepends=('python-setuptools')
+depends=('python-requests' 'python-pygments' 'python-setuptools')
 conflicts=(python-httpie)
 replaces=(python-httpie python2-httpie)
 license=('BSD')


[arch-commits] Commit in httpie/trunk (PKGBUILD)

2018-06-30 Thread Felix Yan via arch-commits
Date: Saturday, June 30, 2018 @ 18:30:48
  Author: felixonmars
Revision: 349004

Python 3.7 rebuild

Modified:
  httpie/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-06-30 18:30:47 UTC (rev 349003)
+++ PKGBUILD2018-06-30 18:30:48 UTC (rev 349004)
@@ -4,7 +4,7 @@
 
 pkgname=httpie
 pkgver=0.9.9
-pkgrel=1
+pkgrel=2
 pkgdesc="cURL for humans"
 url="https://github.com/jkbr/httpie;
 depends=('python-requests' 'python-pygments')


[arch-commits] Commit in httpie/trunk (PKGBUILD)

2017-08-12 Thread Jelle van der Waa
Date: Saturday, August 12, 2017 @ 15:16:23
  Author: jelle
Revision: 250006

upgpkg: httpie 0.9.9-1

Modified:
  httpie/trunk/PKGBUILD

--+
 PKGBUILD |9 +
 1 file changed, 5 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2017-08-12 14:27:12 UTC (rev 250005)
+++ PKGBUILD2017-08-12 15:16:23 UTC (rev 250006)
@@ -3,8 +3,8 @@
 # Contributor: Thomas Weißschuh 
 
 pkgname=httpie
-pkgver=0.9.8
-pkgrel=2
+pkgver=0.9.9
+pkgrel=1
 pkgdesc="cURL for humans"
 url="https://github.com/jkbr/httpie;
 depends=('python-requests' 'python-pygments')
@@ -13,8 +13,9 @@
 replaces=(python-httpie python2-httpie)
 license=('BSD')
 arch=('any')
-source=("https://github.com/jkbrzt/httpie/archive/$pkgver.tar.gz;)
-md5sums=('425a1c92590d9b906a7369f5c17990a4')
+#source=("https://github.com/jkbrzt/httpie/archive/$pkgver.tar.gz;)
+source=("https://pypi.python.org/packages/28/93/4ebf2de4bc74bd517a27a600b2b23a5254a20f28e6e36fc876fd98f7a51b/httpie-0.9.9.tar.gz;)
+md5sums=('13ed0b79b65e793eb288e563db38b2a2')
 
 build() {
   cd httpie-$pkgver


[arch-commits] Commit in httpie/trunk (PKGBUILD)

2016-12-25 Thread Felix Yan
Date: Sunday, December 25, 2016 @ 16:36:25
  Author: felixonmars
Revision: 201920

Python 3.6 rebuild

Modified:
  httpie/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-12-25 16:36:16 UTC (rev 201919)
+++ PKGBUILD2016-12-25 16:36:25 UTC (rev 201920)
@@ -4,7 +4,7 @@
 
 pkgname=httpie
 pkgver=0.9.8
-pkgrel=1
+pkgrel=2
 pkgdesc="cURL for humans"
 url="https://github.com/jkbr/httpie;
 depends=('python-requests' 'python-pygments')


[arch-commits] Commit in httpie/trunk (PKGBUILD)

2016-12-18 Thread Jelle van der Waa
Date: Sunday, December 18, 2016 @ 11:05:01
  Author: jelle
Revision: 200104

upgpkg: httpie 0.9.8-1

Modified:
  httpie/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-12-18 10:55:10 UTC (rev 200103)
+++ PKGBUILD2016-12-18 11:05:01 UTC (rev 200104)
@@ -3,7 +3,7 @@
 # Contributor: Thomas Weißschuh 
 
 pkgname=httpie
-pkgver=0.9.6
+pkgver=0.9.8
 pkgrel=1
 pkgdesc="cURL for humans"
 url="https://github.com/jkbr/httpie;
@@ -14,7 +14,7 @@
 license=('BSD')
 arch=('any')
 source=("https://github.com/jkbrzt/httpie/archive/$pkgver.tar.gz;)
-md5sums=('f7dd071fa00fbbf003bfa8ca83233e69')
+md5sums=('425a1c92590d9b906a7369f5c17990a4')
 
 build() {
   cd httpie-$pkgver


[arch-commits] Commit in httpie/trunk (PKGBUILD)

2016-10-21 Thread Jelle van der Waa
Date: Friday, October 21, 2016 @ 16:56:40
  Author: jelle
Revision: 192876

upgpkg: httpie 0.9.6-1

Modified:
  httpie/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-10-21 15:19:42 UTC (rev 192875)
+++ PKGBUILD2016-10-21 16:56:40 UTC (rev 192876)
@@ -3,7 +3,7 @@
 # Contributor: Thomas Weißschuh 
 
 pkgname=httpie
-pkgver=0.9.4
+pkgver=0.9.6
 pkgrel=1
 pkgdesc="cURL for humans"
 url="https://github.com/jkbr/httpie;
@@ -14,7 +14,7 @@
 license=('BSD')
 arch=('any')
 source=("https://github.com/jkbrzt/httpie/archive/$pkgver.tar.gz;)
-md5sums=('9c5725a889333a7b46c6bc8e17b111fd')
+md5sums=('f7dd071fa00fbbf003bfa8ca83233e69')
 
 build() {
   cd httpie-$pkgver


[arch-commits] Commit in httpie/trunk (PKGBUILD)

2016-08-08 Thread Daniel Micay
Date: Monday, August 8, 2016 @ 19:29:40
  Author: thestinger
Revision: 186082

upgpkg: httpie 0.9.4-1

Modified:
  httpie/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-08-08 18:54:06 UTC (rev 186081)
+++ PKGBUILD2016-08-08 19:29:40 UTC (rev 186082)
@@ -3,7 +3,7 @@
 # Contributor: Thomas Weißschuh 
 
 pkgname=httpie
-pkgver=0.9.3
+pkgver=0.9.4
 pkgrel=1
 pkgdesc="cURL for humans"
 url="https://github.com/jkbr/httpie;
@@ -13,8 +13,8 @@
 replaces=(python-httpie python2-httpie)
 license=('BSD')
 arch=('any')
-source=("https://pypi.python.org/packages/source/h/httpie/httpie-$pkgver.tar.gz;)
-md5sums=('b90ee57ae118f493148a463a13a64ef9')
+source=("https://github.com/jkbrzt/httpie/archive/$pkgver.tar.gz;)
+md5sums=('9c5725a889333a7b46c6bc8e17b111fd')
 
 build() {
   cd httpie-$pkgver


[arch-commits] Commit in httpie/trunk (PKGBUILD)

2016-01-06 Thread Daniel Micay
Date: Thursday, January 7, 2016 @ 03:58:06
  Author: thestinger
Revision: 155614

upgpkg: httpie 0.9.3-1

Modified:
  httpie/trunk/PKGBUILD

--+
 PKGBUILD |8 
 1 file changed, 4 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-01-07 01:47:00 UTC (rev 155613)
+++ PKGBUILD2016-01-07 02:58:06 UTC (rev 155614)
@@ -3,8 +3,8 @@
 # Contributor: Thomas Weißschuh 
 
 pkgname=httpie
-pkgver=0.9.2
-pkgrel=2
+pkgver=0.9.3
+pkgrel=1
 pkgdesc="cURL for humans"
 url="https://github.com/jkbr/httpie;
 depends=('python-requests' 'python-pygments')
@@ -13,8 +13,8 @@
 replaces=(python-httpie python2-httpie)
 license=('BSD')
 arch=('any')
-source=("http://pypi.python.org/packages/source/h/httpie/httpie-$pkgver.tar.gz;)
-md5sums=('8c5a7820c3f5221f30e9a70073efda3c')
+source=("https://pypi.python.org/packages/source/h/httpie/httpie-$pkgver.tar.gz;)
+md5sums=('b90ee57ae118f493148a463a13a64ef9')
 
 build() {
   cd httpie-$pkgver


[arch-commits] Commit in httpie/trunk (PKGBUILD)

2015-09-19 Thread Evangelos Foutras
Date: Saturday, September 19, 2015 @ 18:35:35
  Author: foutrelis
Revision: 140953

Python 3.5 rebuild

Modified:
  httpie/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-09-19 16:35:20 UTC (rev 140952)
+++ PKGBUILD2015-09-19 16:35:35 UTC (rev 140953)
@@ -4,7 +4,7 @@
 
 pkgname=httpie
 pkgver=0.9.2
-pkgrel=1
+pkgrel=2
 pkgdesc="cURL for humans"
 url="https://github.com/jkbr/httpie;
 depends=('python-requests' 'python-pygments')


[arch-commits] Commit in httpie/trunk (PKGBUILD)

2015-03-05 Thread Daniel Micay
Date: Thursday, March 5, 2015 @ 19:18:16
  Author: thestinger
Revision: 128780

upgpkg: httpie 0.9.2-1

Modified:
  httpie/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-03-05 17:41:30 UTC (rev 128779)
+++ PKGBUILD2015-03-05 18:18:16 UTC (rev 128780)
@@ -3,7 +3,7 @@
 # Contributor: Thomas Weißschuh thomas_weissschuh lavabit com
 
 pkgname=httpie
-pkgver=0.9.1
+pkgver=0.9.2
 pkgrel=1
 pkgdesc=cURL for humans
 url=https://github.com/jkbr/httpie;
@@ -14,7 +14,7 @@
 license=('BSD')
 arch=('any')
 
source=(http://pypi.python.org/packages/source/h/httpie/httpie-$pkgver.tar.gz;)
-md5sums=('eaa335be79938c3c0969056a5e392c58')
+md5sums=('8c5a7820c3f5221f30e9a70073efda3c')
 
 build() {
   cd httpie-$pkgver


[arch-commits] Commit in httpie/trunk (PKGBUILD)

2015-02-18 Thread Daniel Micay
Date: Thursday, February 19, 2015 @ 05:22:09
  Author: thestinger
Revision: 127969

upgpkg: httpie 0.9.1-1

Modified:
  httpie/trunk/PKGBUILD

--+
 PKGBUILD |   16 
 1 file changed, 8 insertions(+), 8 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-02-19 00:53:55 UTC (rev 127968)
+++ PKGBUILD2015-02-19 04:22:09 UTC (rev 127969)
@@ -3,8 +3,8 @@
 # Contributor: Thomas Weißschuh thomas_weissschuh lavabit com
 
 pkgname=httpie
-pkgver=0.8.0
-pkgrel=2
+pkgver=0.9.1
+pkgrel=1
 pkgdesc=cURL for humans
 url=https://github.com/jkbr/httpie;
 depends=('python-requests' 'python-pygments')
@@ -14,15 +14,15 @@
 license=('BSD')
 arch=('any')
 
source=(http://pypi.python.org/packages/source/h/httpie/httpie-$pkgver.tar.gz;)
-md5sums=('d78b17be565886f018bff05d6a292a75')
+md5sums=('eaa335be79938c3c0969056a5e392c58')
 
 build() {
-cd $srcdir/httpie-$pkgver
-python3 setup.py build
+  cd httpie-$pkgver
+  python3 setup.py build
 }
 
 package() {
-cd $srcdir/httpie-$pkgver
-install -Dm644 LICENSE $pkgdir/usr/share/licenses/httpie/LICENSE
-python3 setup.py install --root=$pkgdir --optimize=1
+  cd httpie-$pkgver
+  install -Dm644 LICENSE $pkgdir/usr/share/licenses/httpie/LICENSE
+  python3 setup.py install --root=$pkgdir --optimize=1
 }


[arch-commits] Commit in httpie/trunk (PKGBUILD)

2014-03-17 Thread Lukas Jirkovsky
Date: Monday, March 17, 2014 @ 19:18:59
  Author: stativ
Revision: 107532

upgpkg: httpie 0.8.0-2

python 3.4 rebuild

Modified:
  httpie/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-03-17 18:09:56 UTC (rev 107531)
+++ PKGBUILD2014-03-17 18:18:59 UTC (rev 107532)
@@ -4,11 +4,11 @@
 
 pkgname=httpie
 pkgver=0.8.0
-pkgrel=1
+pkgrel=2
 pkgdesc=cURL for humans
 url=https://github.com/jkbr/httpie;
 depends=('python-requests' 'python-pygments')
-makedepends=('python-distribute')
+makedepends=('python-setuptools')
 conflicts=(python-httpie)
 replaces=(python-httpie python2-httpie)
 license=('BSD')



[arch-commits] Commit in httpie/trunk (PKGBUILD)

2014-01-31 Thread Daniel Micay
Date: Friday, January 31, 2014 @ 16:03:03
  Author: thestinger
Revision: 105098

upgpkg: httpie 0.8.0-1

Modified:
  httpie/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-01-31 14:24:59 UTC (rev 105097)
+++ PKGBUILD2014-01-31 15:03:03 UTC (rev 105098)
@@ -3,8 +3,8 @@
 # Contributor: Thomas Weißschuh thomas_weissschuh lavabit com
 
 pkgname=httpie
-pkgver=0.7.2
-pkgrel=2
+pkgver=0.8.0
+pkgrel=1
 pkgdesc=cURL for humans
 url=https://github.com/jkbr/httpie;
 depends=('python-requests' 'python-pygments')
@@ -14,7 +14,7 @@
 license=('BSD')
 arch=('any')
 
source=(http://pypi.python.org/packages/source/h/httpie/httpie-$pkgver.tar.gz;)
-md5sums=('09218336048596da757c4f0cf19642fd')
+md5sums=('d78b17be565886f018bff05d6a292a75')
 
 build() {
 cd $srcdir/httpie-$pkgver



[arch-commits] Commit in httpie/trunk (PKGBUILD)

2013-10-25 Thread Daniel Micay
Date: Friday, October 25, 2013 @ 23:30:24
  Author: thestinger
Revision: 99223

upgpkg: httpie 0.7.2-2

Modified:
  httpie/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-10-25 21:29:45 UTC (rev 99222)
+++ PKGBUILD2013-10-25 21:30:24 UTC (rev 99223)
@@ -4,7 +4,7 @@
 
 pkgname=httpie
 pkgver=0.7.2
-pkgrel=1
+pkgrel=2
 pkgdesc=cURL for humans
 url=https://github.com/jkbr/httpie;
 depends=('python-requests' 'python-pygments')



[arch-commits] Commit in httpie/trunk (PKGBUILD)

2013-10-24 Thread Daniel Micay
Date: Thursday, October 24, 2013 @ 22:49:45
  Author: thestinger
Revision: 99122

upgpkg: httpie 0.7.2-1

Modified:
  httpie/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-10-24 20:42:11 UTC (rev 99121)
+++ PKGBUILD2013-10-24 20:49:45 UTC (rev 99122)
@@ -3,8 +3,8 @@
 # Contributor: Thomas Weißschuh thomas_weissschuh lavabit com
 
 pkgname=httpie
-pkgver=0.6.0
-pkgrel=2
+pkgver=0.7.2
+pkgrel=1
 pkgdesc=cURL for humans
 url=https://github.com/jkbr/httpie;
 depends=('python-requests' 'python-pygments')
@@ -14,7 +14,7 @@
 license=('BSD')
 arch=('any')
 
source=(http://pypi.python.org/packages/source/h/httpie/httpie-$pkgver.tar.gz;)
-md5sums=('441b750a527ba8dcec08a275cd97eab9')
+md5sums=('09218336048596da757c4f0cf19642fd')
 
 build() {
 cd $srcdir/httpie-$pkgver



[arch-commits] Commit in httpie/trunk (PKGBUILD)

2013-08-14 Thread Daniel Micay
Date: Thursday, August 15, 2013 @ 01:21:23
  Author: thestinger
Revision: 95600

upgpkg: httpie 0.6.0-2

Modified:
  httpie/trunk/PKGBUILD

--+
 PKGBUILD |3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-08-14 23:15:17 UTC (rev 95599)
+++ PKGBUILD2013-08-14 23:21:23 UTC (rev 95600)
@@ -4,7 +4,7 @@
 
 pkgname=httpie
 pkgver=0.6.0
-pkgrel=1
+pkgrel=2
 pkgdesc=cURL for humans
 url=https://github.com/jkbr/httpie;
 depends=('python-requests' 'python-pygments')
@@ -23,5 +23,6 @@
 
 package() {
 cd $srcdir/httpie-$pkgver
+install -Dm644 LICENSE $pkgdir/usr/share/licenses/httpie/LICENSE
 python3 setup.py install --root=$pkgdir --optimize=1
 }



[arch-commits] Commit in httpie/trunk (PKGBUILD)

2013-06-05 Thread Daniel Micay
Date: Wednesday, June 5, 2013 @ 20:56:01
  Author: thestinger
Revision: 92463

upgpkg: httpie 0.6.0-1

Modified:
  httpie/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-06-05 18:51:49 UTC (rev 92462)
+++ PKGBUILD2013-06-05 18:56:01 UTC (rev 92463)
@@ -3,7 +3,7 @@
 # Contributor: Thomas Weißschuh thomas_weissschuh lavabit com
 
 pkgname=httpie
-pkgver=0.5.1
+pkgver=0.6.0
 pkgrel=1
 pkgdesc=cURL for humans
 url=https://github.com/jkbr/httpie;
@@ -14,7 +14,7 @@
 license=('BSD')
 arch=('any')
 
source=(http://pypi.python.org/packages/source/h/httpie/httpie-$pkgver.tar.gz;)
-md5sums=('939cec1a6a3e9f40dd4655369dd97dab')
+md5sums=('441b750a527ba8dcec08a275cd97eab9')
 
 build() {
 cd $srcdir/httpie-$pkgver



[arch-commits] Commit in httpie/trunk (PKGBUILD)

2013-05-14 Thread Daniel Micay
Date: Wednesday, May 15, 2013 @ 02:04:46
  Author: thestinger
Revision: 90858

upgpkg: httpie 0.5.1-1

Modified:
  httpie/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-05-14 23:55:29 UTC (rev 90857)
+++ PKGBUILD2013-05-15 00:04:46 UTC (rev 90858)
@@ -3,7 +3,7 @@
 # Contributor: Thomas Weißschuh thomas_weissschuh lavabit com
 
 pkgname=httpie
-pkgver=0.5.0
+pkgver=0.5.1
 pkgrel=1
 pkgdesc=cURL for humans
 url=https://github.com/jkbr/httpie;
@@ -14,7 +14,7 @@
 license=('BSD')
 arch=('any')
 
source=(http://pypi.python.org/packages/source/h/httpie/httpie-$pkgver.tar.gz;)
-md5sums=('ada50384b8acb4726638e48d521cce3d')
+md5sums=('939cec1a6a3e9f40dd4655369dd97dab')
 
 build() {
 cd $srcdir/httpie-$pkgver



[arch-commits] Commit in httpie/trunk (PKGBUILD)

2013-04-27 Thread Federico Cinelli
Date: Sunday, April 28, 2013 @ 03:47:15
  Author: cinelli
Revision: 89202

Upgraded to version .0.5.0

Modified:
  httpie/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-04-27 23:58:00 UTC (rev 89201)
+++ PKGBUILD2013-04-28 01:47:15 UTC (rev 89202)
@@ -3,8 +3,8 @@
 # Contributor: Thomas Weißschuh thomas_weissschuh lavabit com
 
 pkgname=httpie
-pkgver=0.4.1
-pkgrel=2
+pkgver=0.5.0
+pkgrel=1
 pkgdesc=cURL for humans
 url=https://github.com/jkbr/httpie;
 depends=('python-requests' 'python-pygments')
@@ -14,7 +14,7 @@
 license=('BSD')
 arch=('any')
 
source=(http://pypi.python.org/packages/source/h/httpie/httpie-$pkgver.tar.gz;)
-md5sums=('6875e694bc5ed927c77b6619e3fe89b0')
+md5sums=('ada50384b8acb4726638e48d521cce3d')
 
 build() {
 cd $srcdir/httpie-$pkgver



[arch-commits] Commit in httpie/trunk (PKGBUILD)

2013-03-11 Thread Federico Cinelli
Date: Tuesday, March 12, 2013 @ 02:23:37
  Author: cinelli
Revision: 86101

upgpkg: httpie 0.4.1-2

Modified:
  httpie/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-03-12 01:20:09 UTC (rev 86100)
+++ PKGBUILD2013-03-12 01:23:37 UTC (rev 86101)
@@ -4,7 +4,7 @@
 
 pkgname=httpie
 pkgver=0.4.1
-pkgrel=1
+pkgrel=2
 pkgdesc=cURL for humans
 url=https://github.com/jkbr/httpie;
 depends=('python-requests' 'python-pygments')



[arch-commits] Commit in httpie/trunk (PKGBUILD)

2013-02-27 Thread thestinger
Date: Wednesday, February 27, 2013 @ 13:22:47
  Author: thestinger
Revision: 85081

update httpie to 0.4.1

Modified:
  httpie/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-02-27 11:42:43 UTC (rev 85080)
+++ PKGBUILD2013-02-27 12:22:47 UTC (rev 85081)
@@ -3,8 +3,8 @@
 # Contributor: Thomas Weißschuh thomas_weissschuh lavabit com
 
 pkgname=httpie
-pkgver=0.4.0
-pkgrel=2
+pkgver=0.4.1
+pkgrel=1
 pkgdesc=cURL for humans
 url=https://github.com/jkbr/httpie;
 depends=('python-requests' 'python-pygments')
@@ -14,7 +14,7 @@
 license=('BSD')
 arch=('any')
 
source=(http://pypi.python.org/packages/source/h/httpie/httpie-$pkgver.tar.gz;)
-md5sums=('0fb63f8eab5c13a9d78da80b6b00b210')
+md5sums=('6875e694bc5ed927c77b6619e3fe89b0')
 
 build() {
 cd $srcdir/httpie-$pkgver



[arch-commits] Commit in httpie/trunk (PKGBUILD)

2013-02-25 Thread thestinger
Date: Tuesday, February 26, 2013 @ 03:21:57
  Author: thestinger
Revision: 84908

add Id tag

Modified:
  httpie/trunk/PKGBUILD (properties)

Index: httpie/trunk/PKGBUILD
===
--- httpie/trunk/PKGBUILD   2013-02-26 02:19:46 UTC (rev 84907)
+++ httpie/trunk/PKGBUILD   2013-02-26 02:21:57 UTC (rev 84908)

Property changes on: httpie/trunk/PKGBUILD
___
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property


[arch-commits] Commit in httpie/trunk (PKGBUILD)

2013-02-25 Thread thestinger
Date: Tuesday, February 26, 2013 @ 03:22:48
  Author: thestinger
Revision: 84909

fix Id tag

Modified:
  httpie/trunk/PKGBUILD

--+
 PKGBUILD |1 +
 1 file changed, 1 insertion(+)

Modified: PKGBUILD
===
--- PKGBUILD2013-02-26 02:21:57 UTC (rev 84908)
+++ PKGBUILD2013-02-26 02:22:48 UTC (rev 84909)
@@ -1,3 +1,4 @@
+# $Id$
 # Maintainer: Daniel Micay danielmi...@gmail.com
 # Contributor: Thomas Weißschuh thomas_weissschuh lavabit com
 



[arch-commits] Commit in httpie/trunk (PKGBUILD)

2013-02-25 Thread thestinger
Date: Tuesday, February 26, 2013 @ 03:25:17
  Author: thestinger
Revision: 84910

add missing checksum

Modified:
  httpie/trunk/PKGBUILD

--+
 PKGBUILD |3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-02-26 02:22:48 UTC (rev 84909)
+++ PKGBUILD2013-02-26 02:25:17 UTC (rev 84910)
@@ -4,7 +4,7 @@
 
 pkgname=httpie
 pkgver=0.4.0
-pkgrel=1
+pkgrel=2
 pkgdesc=cURL for humans
 url=https://github.com/jkbr/httpie;
 depends=('python-requests' 'python-pygments')
@@ -13,6 +13,7 @@
 license=('BSD')
 arch=('any')
 
source=(http://pypi.python.org/packages/source/h/httpie/httpie-$pkgver.tar.gz;)
+md5sums=('0fb63f8eab5c13a9d78da80b6b00b210')
 
 build() {
 cd $srcdir/httpie-$pkgver



[arch-commits] Commit in httpie/trunk (PKGBUILD)

2013-02-25 Thread thestinger
Date: Tuesday, February 26, 2013 @ 03:25:58
  Author: thestinger
Revision: 84911

add conflicts

Modified:
  httpie/trunk/PKGBUILD

--+
 PKGBUILD |1 +
 1 file changed, 1 insertion(+)

Modified: PKGBUILD
===
--- PKGBUILD2013-02-26 02:25:17 UTC (rev 84910)
+++ PKGBUILD2013-02-26 02:25:58 UTC (rev 84911)
@@ -9,6 +9,7 @@
 url=https://github.com/jkbr/httpie;
 depends=('python-requests' 'python-pygments')
 makedepends=('python-distribute')
+conflicts=(python-httpie)
 replaces=(python-httpie python2-httpie)
 license=('BSD')
 arch=('any')