[arch-commits] Commit in thefuck/repos/community-any (4 files)

2015-07-07 Thread Felix Yan
Date: Tuesday, July 7, 2015 @ 16:36:40
  Author: fyan
Revision: 136516

archrelease: copy trunk to community-any

Added:
  thefuck/repos/community-any/PKGBUILD
(from rev 136515, thefuck/trunk/PKGBUILD)
Deleted:
  thefuck/repos/community-any/PKGBUILD
  thefuck/repos/community-any/psutil-3.patch
  thefuck/repos/community-any/thefuck.install

-+
 PKGBUILD|   84 +-
 psutil-3.patch  |   33 -
 thefuck.install |3 -
 3 files changed, 39 insertions(+), 81 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-07-07 14:36:29 UTC (rev 136515)
+++ PKGBUILD2015-07-07 14:36:40 UTC (rev 136516)
@@ -1,45 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-
-pkgname=thefuck
-pkgver=1.46
-pkgrel=2
-pkgdesc=Magnificent app which corrects your previous console command
-arch=('any')
-url=https://github.com/nvbn/thefuck;
-license=('MIT')
-depends=('python-setuptools' 'python-psutil' 'python-six' 'python-colorama')
-makedepends=('git')
-checkdepends=('python-pytest-mock' 'python-mock')
-install=thefuck.install
-source=(git+https://github.com/nvbn/thefuck.git#tag=$pkgver;
-psutil-3.patch)
-sha256sums=('SKIP'
-'cc6d7c5569f46171b89686d4b6dc885a20d03386681add15e40bf9f4d00c4933')
-
-prepare() {
-  # pathlib is standard library since Python 3.4
-  sed -i s|install_requires=\['pathlib',|install_requires=[| thefuck/setup.py
-
-  cd thefuck
-  patch -p1 -i ../psutil-3.patch
-}
-
-build() {
-  cd thefuck
-  python setup.py build
-}
-
-check() {
-  cd thefuck
-  PYTHONPATH=$PWD/build/lib:$PYTHONPATH py.test
-}
-
-package() {
-  cd thefuck
-  python3 setup.py install -O1 --prefix=/usr --root=$pkgdir/
-
-  install -Dm644 LICENSE.md $pkgdir/usr/share/licenses/$pkgname/LICENSE.md
-}
-
-# vim:set ts=2 sw=2 et:

Copied: thefuck/repos/community-any/PKGBUILD (from rev 136515, 
thefuck/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-07-07 14:36:40 UTC (rev 136516)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+
+pkgname=thefuck
+pkgver=1.47
+pkgrel=1
+pkgdesc=Magnificent app which corrects your previous console command
+arch=('any')
+url=https://github.com/nvbn/thefuck;
+license=('MIT')
+depends=('python-setuptools' 'python-psutil' 'python-six' 'python-colorama')
+makedepends=('git')
+checkdepends=('python-pytest-mock' 'python-mock')
+source=(git+https://github.com/nvbn/thefuck.git#tag=$pkgver;)
+sha256sums=('SKIP')
+
+prepare() {
+  # pathlib is standard library since Python 3.4
+  sed -i s|install_requires=\['pathlib',|install_requires=[| thefuck/setup.py
+}
+
+build() {
+  cd thefuck
+  python setup.py build
+}
+
+check() {
+  cd thefuck
+  PYTHONPATH=$PWD/build/lib:$PYTHONPATH py.test
+}
+
+package() {
+  cd thefuck
+  python3 setup.py install -O1 --prefix=/usr --root=$pkgdir/
+
+  install -Dm644 LICENSE.md $pkgdir/usr/share/licenses/$pkgname/LICENSE.md
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: psutil-3.patch
===
--- psutil-3.patch  2015-07-07 14:36:29 UTC (rev 136515)
+++ psutil-3.patch  2015-07-07 14:36:40 UTC (rev 136516)
@@ -1,33 +0,0 @@
-From 6a88cc47b61656dc81fe527c2b9be91b125cc11e Mon Sep 17 00:00:00 2001
-From: Pablo Santiago Blum de Aguiar scorp...@gmail.com
-Date: Mon, 15 Jun 2015 09:20:07 -0300
-Subject: [PATCH] =?UTF-8?q?fix(main.wait=5Foutput):=20use=20Process?=
- =?UTF-8?q?=E2=80=99=20children()=20instead=20of=20get=5Fchildren()?=
-MIME-Version: 1.0
-Content-Type: text/plain; charset=UTF-8
-Content-Transfer-Encoding: 8bit
-
-Since psutil 2.0.0 `get_children()` has become deprecated and the use of
-`children()` instead of it has been encouraged. In version 3.0.0, just
-released, `get_children()` has been dropped. Check:
-
-https://github.com/giampaolo/psutil/blob/master/HISTORY.rst
-
-Fix #255

- thefuck/main.py | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/thefuck/main.py b/thefuck/main.py
-index 5772d4e..eebb668 100644
 a/thefuck/main.py
-+++ b/thefuck/main.py
-@@ -62,7 +62,7 @@ def wait_output(settings, popen):
- proc.wait(settings.wait_command)
- return True
- except TimeoutExpired:
--for child in proc.get_children(recursive=True):
-+for child in proc.children(recursive=True):
- child.kill()
- proc.kill()
- return False

Deleted: thefuck.install
===
--- thefuck.install 2015-07-07 14:36:29 UTC (rev 136515)
+++ thefuck.install 2015-07-07 14:36:40 UTC (rev 136516)
@@ -1,3 +0,0 @@
-post_install() {
-  printf '%s\n' '= Add: alias fuck=''$(thefuck $(fc -ln -1))'' to your 
.bashrc or .zshrc.'
-}


[arch-commits] Commit in thefuck/repos/community-any (4 files)

2015-06-07 Thread Felix Yan
Date: Sunday, June 7, 2015 @ 16:54:42
  Author: fyan
Revision: 134952

archrelease: copy trunk to community-any

Added:
  thefuck/repos/community-any/PKGBUILD
(from rev 134951, thefuck/trunk/PKGBUILD)
  thefuck/repos/community-any/thefuck.install
(from rev 134951, thefuck/trunk/thefuck.install)
Deleted:
  thefuck/repos/community-any/PKGBUILD
  thefuck/repos/community-any/thefuck.install

-+
 PKGBUILD|   80 +++---
 thefuck.install |6 ++--
 2 files changed, 43 insertions(+), 43 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-06-07 14:54:30 UTC (rev 134951)
+++ PKGBUILD2015-06-07 14:54:42 UTC (rev 134952)
@@ -1,40 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-
-pkgname=thefuck
-pkgver=1.45
-pkgrel=2
-pkgdesc=Magnificent app which corrects your previous console command
-arch=('any')
-url=https://github.com/nvbn/thefuck;
-license=('MIT')
-depends=('python-setuptools' 'python-psutil' 'python-six' 'python-colorama')
-makedepends=('git')
-checkdepends=('python-pytest-mock' 'python-mock')
-install=thefuck.install
-source=(git+https://github.com/nvbn/thefuck.git#tag=$pkgver;)
-sha256sums=('SKIP')
-
-prepare() {
-  # pathlib is standard library since Python 3.4
-  sed -i s|install_requires=\['pathlib',|install_requires=[| thefuck/setup.py
-}
-
-build() {
-  cd thefuck
-  python setup.py build
-}
-
-check() {
-  cd thefuck
-  PYTHONPATH=$PWD/build/lib:$PYTHONPATH py.test
-}
-
-package() {
-  cd thefuck
-  python3 setup.py install -O1 --prefix=/usr --root=$pkgdir/
-
-  install -Dm644 LICENSE.md $pkgdir/usr/share/licenses/$pkgname/LICENSE.md
-}
-
-# vim:set ts=2 sw=2 et:

Copied: thefuck/repos/community-any/PKGBUILD (from rev 134951, 
thefuck/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-06-07 14:54:42 UTC (rev 134952)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+
+pkgname=thefuck
+pkgver=1.46
+pkgrel=1
+pkgdesc=Magnificent app which corrects your previous console command
+arch=('any')
+url=https://github.com/nvbn/thefuck;
+license=('MIT')
+depends=('python-setuptools' 'python-psutil' 'python-six' 'python-colorama')
+makedepends=('git')
+checkdepends=('python-pytest-mock' 'python-mock')
+install=thefuck.install
+source=(git+https://github.com/nvbn/thefuck.git#tag=$pkgver;)
+sha256sums=('SKIP')
+
+prepare() {
+  # pathlib is standard library since Python 3.4
+  sed -i s|install_requires=\['pathlib',|install_requires=[| thefuck/setup.py
+}
+
+build() {
+  cd thefuck
+  python setup.py build
+}
+
+check() {
+  cd thefuck
+  PYTHONPATH=$PWD/build/lib:$PYTHONPATH py.test
+}
+
+package() {
+  cd thefuck
+  python3 setup.py install -O1 --prefix=/usr --root=$pkgdir/
+
+  install -Dm644 LICENSE.md $pkgdir/usr/share/licenses/$pkgname/LICENSE.md
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: thefuck.install
===
--- thefuck.install 2015-06-07 14:54:30 UTC (rev 134951)
+++ thefuck.install 2015-06-07 14:54:42 UTC (rev 134952)
@@ -1,3 +0,0 @@
-post_install() {
-  printf '%s\n' '= Add: alias fuck=''$(thefuck $(fc -ln -1))'' to your 
.bashrc or .zshrc.'
-}

Copied: thefuck/repos/community-any/thefuck.install (from rev 134951, 
thefuck/trunk/thefuck.install)
===
--- thefuck.install (rev 0)
+++ thefuck.install 2015-06-07 14:54:42 UTC (rev 134952)
@@ -0,0 +1,3 @@
+post_install() {
+  printf '%s\n' '= Add: alias fuck=''$(thefuck $(fc -ln -1))'' to your 
.bashrc or .zshrc.'
+}


[arch-commits] Commit in thefuck/repos/community-any (4 files)

2015-06-03 Thread Felix Yan
Date: Wednesday, June 3, 2015 @ 16:24:18
  Author: fyan
Revision: 134688

archrelease: copy trunk to community-any

Added:
  thefuck/repos/community-any/PKGBUILD
(from rev 134687, thefuck/trunk/PKGBUILD)
  thefuck/repos/community-any/thefuck.install
(from rev 134687, thefuck/trunk/thefuck.install)
Deleted:
  thefuck/repos/community-any/PKGBUILD
  thefuck/repos/community-any/thefuck.install

-+
 PKGBUILD|   75 --
 thefuck.install |6 ++--
 2 files changed, 43 insertions(+), 38 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-06-03 14:24:04 UTC (rev 134687)
+++ PKGBUILD2015-06-03 14:24:18 UTC (rev 134688)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-
-pkgname=thefuck
-pkgver=1.45
-pkgrel=1
-pkgdesc=Magnificent app which corrects your previous console command
-arch=('any')
-url=https://github.com/nvbn/thefuck;
-license=('MIT')
-depends=('python-setuptools' 'python-pathlib' 'python-psutil' 'python-six' 
'python-colorama')
-makedepends=('git')
-checkdepends=('python-pytest-mock' 'python-mock')
-install=thefuck.install
-source=(git+https://github.com/nvbn/thefuck.git#tag=$pkgver;)
-sha256sums=('SKIP')
-
-build() {
-  cd thefuck
-  python setup.py build
-}
-
-check() {
-  cd thefuck
-  PYTHONPATH=$PWD/build/lib:$PYTHONPATH py.test
-}
-
-package() {
-  cd thefuck
-  python3 setup.py install -O1 --prefix=/usr --root=$pkgdir/
-
-  install -Dm644 LICENSE.md $pkgdir/usr/share/licenses/$pkgname/LICENSE.md
-}
-
-# vim:set ts=2 sw=2 et:

Copied: thefuck/repos/community-any/PKGBUILD (from rev 134687, 
thefuck/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-06-03 14:24:18 UTC (rev 134688)
@@ -0,0 +1,40 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+
+pkgname=thefuck
+pkgver=1.45
+pkgrel=2
+pkgdesc=Magnificent app which corrects your previous console command
+arch=('any')
+url=https://github.com/nvbn/thefuck;
+license=('MIT')
+depends=('python-setuptools' 'python-psutil' 'python-six' 'python-colorama')
+makedepends=('git')
+checkdepends=('python-pytest-mock' 'python-mock')
+install=thefuck.install
+source=(git+https://github.com/nvbn/thefuck.git#tag=$pkgver;)
+sha256sums=('SKIP')
+
+prepare() {
+  # pathlib is standard library since Python 3.4
+  sed -i s|install_requires=\['pathlib',|install_requires=[| thefuck/setup.py
+}
+
+build() {
+  cd thefuck
+  python setup.py build
+}
+
+check() {
+  cd thefuck
+  PYTHONPATH=$PWD/build/lib:$PYTHONPATH py.test
+}
+
+package() {
+  cd thefuck
+  python3 setup.py install -O1 --prefix=/usr --root=$pkgdir/
+
+  install -Dm644 LICENSE.md $pkgdir/usr/share/licenses/$pkgname/LICENSE.md
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: thefuck.install
===
--- thefuck.install 2015-06-03 14:24:04 UTC (rev 134687)
+++ thefuck.install 2015-06-03 14:24:18 UTC (rev 134688)
@@ -1,3 +0,0 @@
-post_install() {
-  printf '%s\n' '= Add: alias fuck=''$(thefuck $(fc -ln -1))'' to your 
.bashrc or .zshrc.'
-}

Copied: thefuck/repos/community-any/thefuck.install (from rev 134687, 
thefuck/trunk/thefuck.install)
===
--- thefuck.install (rev 0)
+++ thefuck.install 2015-06-03 14:24:18 UTC (rev 134688)
@@ -0,0 +1,3 @@
+post_install() {
+  printf '%s\n' '= Add: alias fuck=''$(thefuck $(fc -ln -1))'' to your 
.bashrc or .zshrc.'
+}


[arch-commits] Commit in thefuck/repos/community-any (4 files)

2015-06-02 Thread Felix Yan
Date: Tuesday, June 2, 2015 @ 16:05:29
  Author: fyan
Revision: 134549

archrelease: copy trunk to community-any

Added:
  thefuck/repos/community-any/PKGBUILD
(from rev 134548, thefuck/trunk/PKGBUILD)
  thefuck/repos/community-any/thefuck.install
(from rev 134548, thefuck/trunk/thefuck.install)
Deleted:
  thefuck/repos/community-any/PKGBUILD
  thefuck/repos/community-any/thefuck.install

-+
 PKGBUILD|   70 +++---
 thefuck.install |6 ++--
 2 files changed, 38 insertions(+), 38 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-06-02 14:05:09 UTC (rev 134548)
+++ PKGBUILD2015-06-02 14:05:29 UTC (rev 134549)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-
-pkgname=thefuck
-pkgver=1.44
-pkgrel=1
-pkgdesc=Magnificent app which corrects your previous console command
-arch=('any')
-url=https://github.com/nvbn/thefuck;
-license=('MIT')
-depends=('python-setuptools' 'python-pathlib' 'python-psutil' 'python-six' 
'python-colorama')
-makedepends=('git')
-checkdepends=('python-pytest-mock' 'python-mock')
-install=thefuck.install
-source=(git+https://github.com/nvbn/thefuck.git#tag=$pkgver;)
-sha256sums=('SKIP')
-
-build() {
-  cd thefuck
-  python setup.py build
-}
-
-check() {
-  cd thefuck
-  PYTHONPATH=$PWD/build/lib:$PYTHONPATH py.test
-}
-
-package() {
-  cd thefuck
-  python3 setup.py install -O1 --prefix=/usr --root=$pkgdir/
-
-  install -Dm644 LICENSE.md $pkgdir/usr/share/licenses/$pkgname/LICENSE.md
-}
-
-# vim:set ts=2 sw=2 et:

Copied: thefuck/repos/community-any/PKGBUILD (from rev 134548, 
thefuck/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-06-02 14:05:29 UTC (rev 134549)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+
+pkgname=thefuck
+pkgver=1.45
+pkgrel=1
+pkgdesc=Magnificent app which corrects your previous console command
+arch=('any')
+url=https://github.com/nvbn/thefuck;
+license=('MIT')
+depends=('python-setuptools' 'python-pathlib' 'python-psutil' 'python-six' 
'python-colorama')
+makedepends=('git')
+checkdepends=('python-pytest-mock' 'python-mock')
+install=thefuck.install
+source=(git+https://github.com/nvbn/thefuck.git#tag=$pkgver;)
+sha256sums=('SKIP')
+
+build() {
+  cd thefuck
+  python setup.py build
+}
+
+check() {
+  cd thefuck
+  PYTHONPATH=$PWD/build/lib:$PYTHONPATH py.test
+}
+
+package() {
+  cd thefuck
+  python3 setup.py install -O1 --prefix=/usr --root=$pkgdir/
+
+  install -Dm644 LICENSE.md $pkgdir/usr/share/licenses/$pkgname/LICENSE.md
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: thefuck.install
===
--- thefuck.install 2015-06-02 14:05:09 UTC (rev 134548)
+++ thefuck.install 2015-06-02 14:05:29 UTC (rev 134549)
@@ -1,3 +0,0 @@
-post_install() {
-  printf '%s\n' '= Add: alias fuck=''$(thefuck $(fc -ln -1))'' to your 
.bashrc or .zshrc.'
-}

Copied: thefuck/repos/community-any/thefuck.install (from rev 134548, 
thefuck/trunk/thefuck.install)
===
--- thefuck.install (rev 0)
+++ thefuck.install 2015-06-02 14:05:29 UTC (rev 134549)
@@ -0,0 +1,3 @@
+post_install() {
+  printf '%s\n' '= Add: alias fuck=''$(thefuck $(fc -ln -1))'' to your 
.bashrc or .zshrc.'
+}


[arch-commits] Commit in thefuck/repos/community-any (4 files)

2015-05-28 Thread Felix Yan
Date: Friday, May 29, 2015 @ 05:24:25
  Author: fyan
Revision: 134303

archrelease: copy trunk to community-any

Added:
  thefuck/repos/community-any/PKGBUILD
(from rev 134302, thefuck/trunk/PKGBUILD)
  thefuck/repos/community-any/thefuck.install
(from rev 134302, thefuck/trunk/thefuck.install)
Deleted:
  thefuck/repos/community-any/PKGBUILD
  thefuck/repos/community-any/thefuck.install

-+
 PKGBUILD|   70 +++---
 thefuck.install |6 ++--
 2 files changed, 38 insertions(+), 38 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-05-29 03:24:04 UTC (rev 134302)
+++ PKGBUILD2015-05-29 03:24:25 UTC (rev 134303)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-
-pkgname=thefuck
-pkgver=1.43
-pkgrel=1
-pkgdesc=Magnificent app which corrects your previous console command
-arch=('any')
-url=https://github.com/nvbn/thefuck;
-license=('MIT')
-depends=('python-setuptools' 'python-pathlib' 'python-psutil' 'python-six' 
'python-colorama')
-makedepends=('git')
-checkdepends=('python-pytest-mock' 'python-mock')
-install=thefuck.install
-source=(git+https://github.com/nvbn/thefuck.git#tag=$pkgver;)
-sha256sums=('SKIP')
-
-build() {
-  cd thefuck
-  python setup.py build
-}
-
-check() {
-  cd thefuck
-  PYTHONPATH=$PWD/build/lib:$PYTHONPATH py.test
-}
-
-package() {
-  cd thefuck
-  python3 setup.py install -O1 --prefix=/usr --root=$pkgdir/
-
-  install -Dm644 LICENSE.md $pkgdir/usr/share/licenses/$pkgname/LICENSE.md
-}
-
-# vim:set ts=2 sw=2 et:

Copied: thefuck/repos/community-any/PKGBUILD (from rev 134302, 
thefuck/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-05-29 03:24:25 UTC (rev 134303)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+
+pkgname=thefuck
+pkgver=1.44
+pkgrel=1
+pkgdesc=Magnificent app which corrects your previous console command
+arch=('any')
+url=https://github.com/nvbn/thefuck;
+license=('MIT')
+depends=('python-setuptools' 'python-pathlib' 'python-psutil' 'python-six' 
'python-colorama')
+makedepends=('git')
+checkdepends=('python-pytest-mock' 'python-mock')
+install=thefuck.install
+source=(git+https://github.com/nvbn/thefuck.git#tag=$pkgver;)
+sha256sums=('SKIP')
+
+build() {
+  cd thefuck
+  python setup.py build
+}
+
+check() {
+  cd thefuck
+  PYTHONPATH=$PWD/build/lib:$PYTHONPATH py.test
+}
+
+package() {
+  cd thefuck
+  python3 setup.py install -O1 --prefix=/usr --root=$pkgdir/
+
+  install -Dm644 LICENSE.md $pkgdir/usr/share/licenses/$pkgname/LICENSE.md
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: thefuck.install
===
--- thefuck.install 2015-05-29 03:24:04 UTC (rev 134302)
+++ thefuck.install 2015-05-29 03:24:25 UTC (rev 134303)
@@ -1,3 +0,0 @@
-post_install() {
-  printf '%s\n' '= Add: alias fuck=''$(thefuck $(fc -ln -1))'' to your 
.bashrc or .zshrc.'
-}

Copied: thefuck/repos/community-any/thefuck.install (from rev 134302, 
thefuck/trunk/thefuck.install)
===
--- thefuck.install (rev 0)
+++ thefuck.install 2015-05-29 03:24:25 UTC (rev 134303)
@@ -0,0 +1,3 @@
+post_install() {
+  printf '%s\n' '= Add: alias fuck=''$(thefuck $(fc -ln -1))'' to your 
.bashrc or .zshrc.'
+}


[arch-commits] Commit in thefuck/repos/community-any (4 files)

2015-05-20 Thread Felix Yan
Date: Thursday, May 21, 2015 @ 04:35:34
  Author: fyan
Revision: 133900

archrelease: copy trunk to community-any

Added:
  thefuck/repos/community-any/PKGBUILD
(from rev 133899, thefuck/trunk/PKGBUILD)
  thefuck/repos/community-any/thefuck.install
(from rev 133899, thefuck/trunk/thefuck.install)
Deleted:
  thefuck/repos/community-any/PKGBUILD
  thefuck/repos/community-any/thefuck.install

-+
 PKGBUILD|   70 +++---
 thefuck.install |6 ++--
 2 files changed, 38 insertions(+), 38 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-05-21 02:35:11 UTC (rev 133899)
+++ PKGBUILD2015-05-21 02:35:34 UTC (rev 133900)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-
-pkgname=thefuck
-pkgver=1.42
-pkgrel=1
-pkgdesc=Magnificent app which corrects your previous console command
-arch=('any')
-url=https://github.com/nvbn/thefuck;
-license=('MIT')
-depends=('python-setuptools' 'python-pathlib' 'python-psutil' 'python-six' 
'python-colorama')
-makedepends=('git')
-checkdepends=('python-pytest-mock' 'python-mock')
-install=thefuck.install
-source=(git+https://github.com/nvbn/thefuck.git#tag=$pkgver;)
-sha256sums=('SKIP')
-
-build() {
-  cd thefuck
-  python setup.py build
-}
-
-check() {
-  cd thefuck
-  PYTHONPATH=$PWD/build/lib:$PYTHONPATH py.test
-}
-
-package() {
-  cd thefuck
-  python3 setup.py install -O1 --prefix=/usr --root=$pkgdir/
-
-  install -Dm644 LICENSE.md $pkgdir/usr/share/licenses/$pkgname/LICENSE.md
-}
-
-# vim:set ts=2 sw=2 et:

Copied: thefuck/repos/community-any/PKGBUILD (from rev 133899, 
thefuck/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-05-21 02:35:34 UTC (rev 133900)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+
+pkgname=thefuck
+pkgver=1.43
+pkgrel=1
+pkgdesc=Magnificent app which corrects your previous console command
+arch=('any')
+url=https://github.com/nvbn/thefuck;
+license=('MIT')
+depends=('python-setuptools' 'python-pathlib' 'python-psutil' 'python-six' 
'python-colorama')
+makedepends=('git')
+checkdepends=('python-pytest-mock' 'python-mock')
+install=thefuck.install
+source=(git+https://github.com/nvbn/thefuck.git#tag=$pkgver;)
+sha256sums=('SKIP')
+
+build() {
+  cd thefuck
+  python setup.py build
+}
+
+check() {
+  cd thefuck
+  PYTHONPATH=$PWD/build/lib:$PYTHONPATH py.test
+}
+
+package() {
+  cd thefuck
+  python3 setup.py install -O1 --prefix=/usr --root=$pkgdir/
+
+  install -Dm644 LICENSE.md $pkgdir/usr/share/licenses/$pkgname/LICENSE.md
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: thefuck.install
===
--- thefuck.install 2015-05-21 02:35:11 UTC (rev 133899)
+++ thefuck.install 2015-05-21 02:35:34 UTC (rev 133900)
@@ -1,3 +0,0 @@
-post_install() {
-  printf '%s\n' '= Add: alias fuck=''$(thefuck $(fc -ln -1))'' to your 
.bashrc or .zshrc.'
-}

Copied: thefuck/repos/community-any/thefuck.install (from rev 133899, 
thefuck/trunk/thefuck.install)
===
--- thefuck.install (rev 0)
+++ thefuck.install 2015-05-21 02:35:34 UTC (rev 133900)
@@ -0,0 +1,3 @@
+post_install() {
+  printf '%s\n' '= Add: alias fuck=''$(thefuck $(fc -ln -1))'' to your 
.bashrc or .zshrc.'
+}


[arch-commits] Commit in thefuck/repos/community-any (4 files)

2015-05-19 Thread Felix Yan
Date: Wednesday, May 20, 2015 @ 04:43:28
  Author: fyan
Revision: 133865

archrelease: copy trunk to community-any

Added:
  thefuck/repos/community-any/PKGBUILD
(from rev 133864, thefuck/trunk/PKGBUILD)
  thefuck/repos/community-any/thefuck.install
(from rev 133864, thefuck/trunk/thefuck.install)
Deleted:
  thefuck/repos/community-any/PKGBUILD
  thefuck/repos/community-any/thefuck.install

-+
 PKGBUILD|   70 +++---
 thefuck.install |6 ++--
 2 files changed, 38 insertions(+), 38 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-05-20 02:43:11 UTC (rev 133864)
+++ PKGBUILD2015-05-20 02:43:28 UTC (rev 133865)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-
-pkgname=thefuck
-pkgver=1.41
-pkgrel=1
-pkgdesc=Magnificent app which corrects your previous console command
-arch=('any')
-url=https://github.com/nvbn/thefuck;
-license=('MIT')
-depends=('python-setuptools' 'python-pathlib' 'python-psutil' 'python-six' 
'python-colorama')
-makedepends=('git')
-checkdepends=('python-pytest-mock' 'python-mock')
-install=thefuck.install
-source=(git+https://github.com/nvbn/thefuck.git#tag=$pkgver;)
-sha256sums=('SKIP')
-
-build() {
-  cd thefuck
-  python setup.py build
-}
-
-check() {
-  cd thefuck
-  PYTHONPATH=$PWD/build/lib:$PYTHONPATH py.test
-}
-
-package() {
-  cd thefuck
-  python3 setup.py install -O1 --prefix=/usr --root=$pkgdir/
-
-  install -Dm644 LICENSE.md $pkgdir/usr/share/licenses/$pkgname/LICENSE.md
-}
-
-# vim:set ts=2 sw=2 et:

Copied: thefuck/repos/community-any/PKGBUILD (from rev 133864, 
thefuck/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-05-20 02:43:28 UTC (rev 133865)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+
+pkgname=thefuck
+pkgver=1.42
+pkgrel=1
+pkgdesc=Magnificent app which corrects your previous console command
+arch=('any')
+url=https://github.com/nvbn/thefuck;
+license=('MIT')
+depends=('python-setuptools' 'python-pathlib' 'python-psutil' 'python-six' 
'python-colorama')
+makedepends=('git')
+checkdepends=('python-pytest-mock' 'python-mock')
+install=thefuck.install
+source=(git+https://github.com/nvbn/thefuck.git#tag=$pkgver;)
+sha256sums=('SKIP')
+
+build() {
+  cd thefuck
+  python setup.py build
+}
+
+check() {
+  cd thefuck
+  PYTHONPATH=$PWD/build/lib:$PYTHONPATH py.test
+}
+
+package() {
+  cd thefuck
+  python3 setup.py install -O1 --prefix=/usr --root=$pkgdir/
+
+  install -Dm644 LICENSE.md $pkgdir/usr/share/licenses/$pkgname/LICENSE.md
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: thefuck.install
===
--- thefuck.install 2015-05-20 02:43:11 UTC (rev 133864)
+++ thefuck.install 2015-05-20 02:43:28 UTC (rev 133865)
@@ -1,3 +0,0 @@
-post_install() {
-  printf '%s\n' '= Add: alias fuck=''$(thefuck $(fc -ln -1))'' to your 
.bashrc or .zshrc.'
-}

Copied: thefuck/repos/community-any/thefuck.install (from rev 133864, 
thefuck/trunk/thefuck.install)
===
--- thefuck.install (rev 0)
+++ thefuck.install 2015-05-20 02:43:28 UTC (rev 133865)
@@ -0,0 +1,3 @@
+post_install() {
+  printf '%s\n' '= Add: alias fuck=''$(thefuck $(fc -ln -1))'' to your 
.bashrc or .zshrc.'
+}


[arch-commits] Commit in thefuck/repos/community-any (4 files)

2015-05-19 Thread Felix Yan
Date: Tuesday, May 19, 2015 @ 16:20:21
  Author: fyan
Revision: 133834

archrelease: copy trunk to community-any

Added:
  thefuck/repos/community-any/PKGBUILD
(from rev 133833, thefuck/trunk/PKGBUILD)
  thefuck/repos/community-any/thefuck.install
(from rev 133833, thefuck/trunk/thefuck.install)
Deleted:
  thefuck/repos/community-any/PKGBUILD
  thefuck/repos/community-any/thefuck.install

-+
 PKGBUILD|   70 +++---
 thefuck.install |6 ++--
 2 files changed, 38 insertions(+), 38 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-05-19 14:20:05 UTC (rev 133833)
+++ PKGBUILD2015-05-19 14:20:21 UTC (rev 133834)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-
-pkgname=thefuck
-pkgver=1.40
-pkgrel=1
-pkgdesc=Magnificent app which corrects your previous console command
-arch=('any')
-url=https://github.com/nvbn/thefuck;
-license=('MIT')
-depends=('python-setuptools' 'python-pathlib' 'python-psutil' 'python-six' 
'python-colorama')
-makedepends=('git')
-checkdepends=('python-pytest-mock' 'python-mock')
-install=thefuck.install
-source=(git+https://github.com/nvbn/thefuck.git#tag=$pkgver;)
-sha256sums=('SKIP')
-
-build() {
-  cd thefuck
-  python setup.py build
-}
-
-check() {
-  cd thefuck
-  PYTHONPATH=$PWD/build/lib:$PYTHONPATH py.test
-}
-
-package() {
-  cd thefuck
-  python3 setup.py install -O1 --prefix=/usr --root=$pkgdir/
-
-  install -Dm644 LICENSE.md $pkgdir/usr/share/licenses/$pkgname/LICENSE.md
-}
-
-# vim:set ts=2 sw=2 et:

Copied: thefuck/repos/community-any/PKGBUILD (from rev 133833, 
thefuck/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-05-19 14:20:21 UTC (rev 133834)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+
+pkgname=thefuck
+pkgver=1.41
+pkgrel=1
+pkgdesc=Magnificent app which corrects your previous console command
+arch=('any')
+url=https://github.com/nvbn/thefuck;
+license=('MIT')
+depends=('python-setuptools' 'python-pathlib' 'python-psutil' 'python-six' 
'python-colorama')
+makedepends=('git')
+checkdepends=('python-pytest-mock' 'python-mock')
+install=thefuck.install
+source=(git+https://github.com/nvbn/thefuck.git#tag=$pkgver;)
+sha256sums=('SKIP')
+
+build() {
+  cd thefuck
+  python setup.py build
+}
+
+check() {
+  cd thefuck
+  PYTHONPATH=$PWD/build/lib:$PYTHONPATH py.test
+}
+
+package() {
+  cd thefuck
+  python3 setup.py install -O1 --prefix=/usr --root=$pkgdir/
+
+  install -Dm644 LICENSE.md $pkgdir/usr/share/licenses/$pkgname/LICENSE.md
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: thefuck.install
===
--- thefuck.install 2015-05-19 14:20:05 UTC (rev 133833)
+++ thefuck.install 2015-05-19 14:20:21 UTC (rev 133834)
@@ -1,3 +0,0 @@
-post_install() {
-  printf '%s\n' '= Add: alias fuck=''$(thefuck $(fc -ln -1))'' to your 
.bashrc or .zshrc.'
-}

Copied: thefuck/repos/community-any/thefuck.install (from rev 133833, 
thefuck/trunk/thefuck.install)
===
--- thefuck.install (rev 0)
+++ thefuck.install 2015-05-19 14:20:21 UTC (rev 133834)
@@ -0,0 +1,3 @@
+post_install() {
+  printf '%s\n' '= Add: alias fuck=''$(thefuck $(fc -ln -1))'' to your 
.bashrc or .zshrc.'
+}


[arch-commits] Commit in thefuck/repos/community-any (4 files)

2015-05-11 Thread Felix Yan
Date: Tuesday, May 12, 2015 @ 04:57:36
  Author: fyan
Revision: 133285

archrelease: copy trunk to community-any

Added:
  thefuck/repos/community-any/PKGBUILD
(from rev 133284, thefuck/trunk/PKGBUILD)
  thefuck/repos/community-any/thefuck.install
(from rev 133284, thefuck/trunk/thefuck.install)
Deleted:
  thefuck/repos/community-any/PKGBUILD
  thefuck/repos/community-any/thefuck.install

-+
 PKGBUILD|   70 +++---
 thefuck.install |6 ++--
 2 files changed, 38 insertions(+), 38 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-05-12 02:57:12 UTC (rev 133284)
+++ PKGBUILD2015-05-12 02:57:36 UTC (rev 133285)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-
-pkgname=thefuck
-pkgver=1.39
-pkgrel=1
-pkgdesc=Magnificent app which corrects your previous console command
-arch=('any')
-url=https://github.com/nvbn/thefuck;
-license=('MIT')
-depends=('python-setuptools' 'python-pathlib' 'python-psutil' 'python-six' 
'python-colorama')
-makedepends=('git')
-checkdepends=('python-pytest-mock' 'python-mock')
-install=thefuck.install
-source=(git+https://github.com/nvbn/thefuck.git#tag=$pkgver;)
-sha256sums=('SKIP')
-
-build() {
-  cd thefuck
-  python setup.py build
-}
-
-check() {
-  cd thefuck
-  PYTHONPATH=$PWD/build/lib:$PYTHONPATH py.test
-}
-
-package() {
-  cd thefuck
-  python3 setup.py install -O1 --prefix=/usr --root=$pkgdir/
-
-  install -Dm644 LICENSE.md $pkgdir/usr/share/licenses/$pkgname/LICENSE.md
-}
-
-# vim:set ts=2 sw=2 et:

Copied: thefuck/repos/community-any/PKGBUILD (from rev 133284, 
thefuck/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-05-12 02:57:36 UTC (rev 133285)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+
+pkgname=thefuck
+pkgver=1.40
+pkgrel=1
+pkgdesc=Magnificent app which corrects your previous console command
+arch=('any')
+url=https://github.com/nvbn/thefuck;
+license=('MIT')
+depends=('python-setuptools' 'python-pathlib' 'python-psutil' 'python-six' 
'python-colorama')
+makedepends=('git')
+checkdepends=('python-pytest-mock' 'python-mock')
+install=thefuck.install
+source=(git+https://github.com/nvbn/thefuck.git#tag=$pkgver;)
+sha256sums=('SKIP')
+
+build() {
+  cd thefuck
+  python setup.py build
+}
+
+check() {
+  cd thefuck
+  PYTHONPATH=$PWD/build/lib:$PYTHONPATH py.test
+}
+
+package() {
+  cd thefuck
+  python3 setup.py install -O1 --prefix=/usr --root=$pkgdir/
+
+  install -Dm644 LICENSE.md $pkgdir/usr/share/licenses/$pkgname/LICENSE.md
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: thefuck.install
===
--- thefuck.install 2015-05-12 02:57:12 UTC (rev 133284)
+++ thefuck.install 2015-05-12 02:57:36 UTC (rev 133285)
@@ -1,3 +0,0 @@
-post_install() {
-  printf '%s\n' '= Add: alias fuck=''$(thefuck $(fc -ln -1))'' to your 
.bashrc or .zshrc.'
-}

Copied: thefuck/repos/community-any/thefuck.install (from rev 133284, 
thefuck/trunk/thefuck.install)
===
--- thefuck.install (rev 0)
+++ thefuck.install 2015-05-12 02:57:36 UTC (rev 133285)
@@ -0,0 +1,3 @@
+post_install() {
+  printf '%s\n' '= Add: alias fuck=''$(thefuck $(fc -ln -1))'' to your 
.bashrc or .zshrc.'
+}


[arch-commits] Commit in thefuck/repos/community-any (4 files)

2015-05-10 Thread Felix Yan
Date: Sunday, May 10, 2015 @ 16:14:17
  Author: fyan
Revision: 133186

archrelease: copy trunk to community-any

Added:
  thefuck/repos/community-any/PKGBUILD
(from rev 133185, thefuck/trunk/PKGBUILD)
  thefuck/repos/community-any/thefuck.install
(from rev 133185, thefuck/trunk/thefuck.install)
Deleted:
  thefuck/repos/community-any/PKGBUILD
  thefuck/repos/community-any/thefuck.install

-+
 PKGBUILD|   70 +++---
 thefuck.install |6 ++--
 2 files changed, 38 insertions(+), 38 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-05-10 14:14:03 UTC (rev 133185)
+++ PKGBUILD2015-05-10 14:14:17 UTC (rev 133186)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-
-pkgname=thefuck
-pkgver=1.38
-pkgrel=1
-pkgdesc=Magnificent app which corrects your previous console command
-arch=('any')
-url=https://github.com/nvbn/thefuck;
-license=('MIT')
-depends=('python-setuptools' 'python-pathlib' 'python-psutil' 'python-six' 
'python-colorama')
-makedepends=('git')
-checkdepends=('python-pytest-mock' 'python-mock')
-install=thefuck.install
-source=(git+https://github.com/nvbn/thefuck.git#tag=$pkgver;)
-sha256sums=('SKIP')
-
-build() {
-  cd thefuck
-  python setup.py build
-}
-
-check() {
-  cd thefuck
-  PYTHONPATH=$PWD/build/lib:$PYTHONPATH py.test
-}
-
-package() {
-  cd thefuck
-  python3 setup.py install -O1 --prefix=/usr --root=$pkgdir/
-
-  install -Dm644 LICENSE.md $pkgdir/usr/share/licenses/$pkgname/LICENSE.md
-}
-
-# vim:set ts=2 sw=2 et:

Copied: thefuck/repos/community-any/PKGBUILD (from rev 133185, 
thefuck/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-05-10 14:14:17 UTC (rev 133186)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+
+pkgname=thefuck
+pkgver=1.39
+pkgrel=1
+pkgdesc=Magnificent app which corrects your previous console command
+arch=('any')
+url=https://github.com/nvbn/thefuck;
+license=('MIT')
+depends=('python-setuptools' 'python-pathlib' 'python-psutil' 'python-six' 
'python-colorama')
+makedepends=('git')
+checkdepends=('python-pytest-mock' 'python-mock')
+install=thefuck.install
+source=(git+https://github.com/nvbn/thefuck.git#tag=$pkgver;)
+sha256sums=('SKIP')
+
+build() {
+  cd thefuck
+  python setup.py build
+}
+
+check() {
+  cd thefuck
+  PYTHONPATH=$PWD/build/lib:$PYTHONPATH py.test
+}
+
+package() {
+  cd thefuck
+  python3 setup.py install -O1 --prefix=/usr --root=$pkgdir/
+
+  install -Dm644 LICENSE.md $pkgdir/usr/share/licenses/$pkgname/LICENSE.md
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: thefuck.install
===
--- thefuck.install 2015-05-10 14:14:03 UTC (rev 133185)
+++ thefuck.install 2015-05-10 14:14:17 UTC (rev 133186)
@@ -1,3 +0,0 @@
-post_install() {
-  printf '%s\n' '= Add: alias fuck=''$(thefuck $(fc -ln -1))'' to your 
.bashrc or .zshrc.'
-}

Copied: thefuck/repos/community-any/thefuck.install (from rev 133185, 
thefuck/trunk/thefuck.install)
===
--- thefuck.install (rev 0)
+++ thefuck.install 2015-05-10 14:14:17 UTC (rev 133186)
@@ -0,0 +1,3 @@
+post_install() {
+  printf '%s\n' '= Add: alias fuck=''$(thefuck $(fc -ln -1))'' to your 
.bashrc or .zshrc.'
+}


[arch-commits] Commit in thefuck/repos/community-any (4 files)

2015-05-08 Thread Felix Yan
Date: Friday, May 8, 2015 @ 08:48:07
  Author: fyan
Revision: 132941

archrelease: copy trunk to community-any

Added:
  thefuck/repos/community-any/PKGBUILD
(from rev 132940, thefuck/trunk/PKGBUILD)
  thefuck/repos/community-any/thefuck.install
(from rev 132940, thefuck/trunk/thefuck.install)
Deleted:
  thefuck/repos/community-any/PKGBUILD
  thefuck/repos/community-any/thefuck.install

-+
 PKGBUILD|   70 +++---
 thefuck.install |6 ++--
 2 files changed, 38 insertions(+), 38 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-05-08 06:47:42 UTC (rev 132940)
+++ PKGBUILD2015-05-08 06:48:07 UTC (rev 132941)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-
-pkgname=thefuck
-pkgver=1.36
-pkgrel=1
-pkgdesc=Magnificent app which corrects your previous console command
-arch=('any')
-url=https://github.com/nvbn/thefuck;
-license=('MIT')
-depends=('python-setuptools' 'python-pathlib' 'python-psutil' 'python-six' 
'python-colorama')
-makedepends=('git')
-checkdepends=('python-pytest' 'python-mock')
-install=thefuck.install
-source=(git+https://github.com/nvbn/thefuck.git#tag=$pkgver;)
-sha256sums=('SKIP')
-
-build() {
-  cd thefuck
-  python setup.py build
-}
-
-check() {
-  cd thefuck
-  PYTHONPATH=$PWD/build/lib:$PYTHONPATH py.test
-}
-
-package() {
-  cd thefuck
-  python3 setup.py install -O1 --prefix=/usr --root=$pkgdir/
-
-  install -Dm644 LICENSE.md $pkgdir/usr/share/licenses/$pkgname/LICENSE.md
-}
-
-# vim:set ts=2 sw=2 et:

Copied: thefuck/repos/community-any/PKGBUILD (from rev 132940, 
thefuck/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-05-08 06:48:07 UTC (rev 132941)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+
+pkgname=thefuck
+pkgver=1.37
+pkgrel=1
+pkgdesc=Magnificent app which corrects your previous console command
+arch=('any')
+url=https://github.com/nvbn/thefuck;
+license=('MIT')
+depends=('python-setuptools' 'python-pathlib' 'python-psutil' 'python-six' 
'python-colorama')
+makedepends=('git')
+checkdepends=('python-pytest-mock' 'python-mock')
+install=thefuck.install
+source=(git+https://github.com/nvbn/thefuck.git#tag=$pkgver;)
+sha256sums=('SKIP')
+
+build() {
+  cd thefuck
+  python setup.py build
+}
+
+check() {
+  cd thefuck
+  PYTHONPATH=$PWD/build/lib:$PYTHONPATH py.test
+}
+
+package() {
+  cd thefuck
+  python3 setup.py install -O1 --prefix=/usr --root=$pkgdir/
+
+  install -Dm644 LICENSE.md $pkgdir/usr/share/licenses/$pkgname/LICENSE.md
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: thefuck.install
===
--- thefuck.install 2015-05-08 06:47:42 UTC (rev 132940)
+++ thefuck.install 2015-05-08 06:48:07 UTC (rev 132941)
@@ -1,3 +0,0 @@
-post_install() {
-  printf '%s\n' '= Add: alias fuck=''$(thefuck $(fc -ln -1))'' to your 
.bashrc or .zshrc.'
-}

Copied: thefuck/repos/community-any/thefuck.install (from rev 132940, 
thefuck/trunk/thefuck.install)
===
--- thefuck.install (rev 0)
+++ thefuck.install 2015-05-08 06:48:07 UTC (rev 132941)
@@ -0,0 +1,3 @@
+post_install() {
+  printf '%s\n' '= Add: alias fuck=''$(thefuck $(fc -ln -1))'' to your 
.bashrc or .zshrc.'
+}


[arch-commits] Commit in thefuck/repos/community-any (4 files)

2015-05-08 Thread Felix Yan
Date: Saturday, May 9, 2015 @ 07:38:06
  Author: fyan
Revision: 133003

archrelease: copy trunk to community-any

Added:
  thefuck/repos/community-any/PKGBUILD
(from rev 133002, thefuck/trunk/PKGBUILD)
  thefuck/repos/community-any/thefuck.install
(from rev 133002, thefuck/trunk/thefuck.install)
Deleted:
  thefuck/repos/community-any/PKGBUILD
  thefuck/repos/community-any/thefuck.install

-+
 PKGBUILD|   70 +++---
 thefuck.install |6 ++--
 2 files changed, 38 insertions(+), 38 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-05-09 05:37:51 UTC (rev 133002)
+++ PKGBUILD2015-05-09 05:38:06 UTC (rev 133003)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-
-pkgname=thefuck
-pkgver=1.37
-pkgrel=1
-pkgdesc=Magnificent app which corrects your previous console command
-arch=('any')
-url=https://github.com/nvbn/thefuck;
-license=('MIT')
-depends=('python-setuptools' 'python-pathlib' 'python-psutil' 'python-six' 
'python-colorama')
-makedepends=('git')
-checkdepends=('python-pytest-mock' 'python-mock')
-install=thefuck.install
-source=(git+https://github.com/nvbn/thefuck.git#tag=$pkgver;)
-sha256sums=('SKIP')
-
-build() {
-  cd thefuck
-  python setup.py build
-}
-
-check() {
-  cd thefuck
-  PYTHONPATH=$PWD/build/lib:$PYTHONPATH py.test
-}
-
-package() {
-  cd thefuck
-  python3 setup.py install -O1 --prefix=/usr --root=$pkgdir/
-
-  install -Dm644 LICENSE.md $pkgdir/usr/share/licenses/$pkgname/LICENSE.md
-}
-
-# vim:set ts=2 sw=2 et:

Copied: thefuck/repos/community-any/PKGBUILD (from rev 133002, 
thefuck/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-05-09 05:38:06 UTC (rev 133003)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+
+pkgname=thefuck
+pkgver=1.38
+pkgrel=1
+pkgdesc=Magnificent app which corrects your previous console command
+arch=('any')
+url=https://github.com/nvbn/thefuck;
+license=('MIT')
+depends=('python-setuptools' 'python-pathlib' 'python-psutil' 'python-six' 
'python-colorama')
+makedepends=('git')
+checkdepends=('python-pytest-mock' 'python-mock')
+install=thefuck.install
+source=(git+https://github.com/nvbn/thefuck.git#tag=$pkgver;)
+sha256sums=('SKIP')
+
+build() {
+  cd thefuck
+  python setup.py build
+}
+
+check() {
+  cd thefuck
+  PYTHONPATH=$PWD/build/lib:$PYTHONPATH py.test
+}
+
+package() {
+  cd thefuck
+  python3 setup.py install -O1 --prefix=/usr --root=$pkgdir/
+
+  install -Dm644 LICENSE.md $pkgdir/usr/share/licenses/$pkgname/LICENSE.md
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: thefuck.install
===
--- thefuck.install 2015-05-09 05:37:51 UTC (rev 133002)
+++ thefuck.install 2015-05-09 05:38:06 UTC (rev 133003)
@@ -1,3 +0,0 @@
-post_install() {
-  printf '%s\n' '= Add: alias fuck=''$(thefuck $(fc -ln -1))'' to your 
.bashrc or .zshrc.'
-}

Copied: thefuck/repos/community-any/thefuck.install (from rev 133002, 
thefuck/trunk/thefuck.install)
===
--- thefuck.install (rev 0)
+++ thefuck.install 2015-05-09 05:38:06 UTC (rev 133003)
@@ -0,0 +1,3 @@
+post_install() {
+  printf '%s\n' '= Add: alias fuck=''$(thefuck $(fc -ln -1))'' to your 
.bashrc or .zshrc.'
+}


[arch-commits] Commit in thefuck/repos/community-any (4 files)

2015-05-07 Thread Felix Yan
Date: Friday, May 8, 2015 @ 06:42:49
  Author: fyan
Revision: 132935

archrelease: copy trunk to community-any

Added:
  thefuck/repos/community-any/PKGBUILD
(from rev 132934, thefuck/trunk/PKGBUILD)
  thefuck/repos/community-any/thefuck.install
(from rev 132934, thefuck/trunk/thefuck.install)
Deleted:
  thefuck/repos/community-any/PKGBUILD
  thefuck/repos/community-any/thefuck.install

-+
 PKGBUILD|   70 +++---
 thefuck.install |6 ++--
 2 files changed, 38 insertions(+), 38 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-05-08 04:42:25 UTC (rev 132934)
+++ PKGBUILD2015-05-08 04:42:49 UTC (rev 132935)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-
-pkgname=thefuck
-pkgver=1.35
-pkgrel=1
-pkgdesc=Magnificent app which corrects your previous console command
-arch=('any')
-url=https://github.com/nvbn/thefuck;
-license=('MIT')
-depends=('python-setuptools' 'python-pathlib' 'python-psutil' 'python-six' 
'python-colorama')
-makedepends=('git')
-checkdepends=('python-pytest' 'python-mock')
-install=thefuck.install
-source=(git+https://github.com/nvbn/thefuck.git#tag=$pkgver;)
-sha256sums=('SKIP')
-
-build() {
-  cd thefuck
-  python setup.py build
-}
-
-check() {
-  cd thefuck
-  PYTHONPATH=$PWD/build/lib:$PYTHONPATH py.test
-}
-
-package() {
-  cd thefuck
-  python3 setup.py install -O1 --prefix=/usr --root=$pkgdir/
-
-  install -Dm644 LICENSE.md $pkgdir/usr/share/licenses/$pkgname/LICENSE.md
-}
-
-# vim:set ts=2 sw=2 et:

Copied: thefuck/repos/community-any/PKGBUILD (from rev 132934, 
thefuck/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-05-08 04:42:49 UTC (rev 132935)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+
+pkgname=thefuck
+pkgver=1.36
+pkgrel=1
+pkgdesc=Magnificent app which corrects your previous console command
+arch=('any')
+url=https://github.com/nvbn/thefuck;
+license=('MIT')
+depends=('python-setuptools' 'python-pathlib' 'python-psutil' 'python-six' 
'python-colorama')
+makedepends=('git')
+checkdepends=('python-pytest' 'python-mock')
+install=thefuck.install
+source=(git+https://github.com/nvbn/thefuck.git#tag=$pkgver;)
+sha256sums=('SKIP')
+
+build() {
+  cd thefuck
+  python setup.py build
+}
+
+check() {
+  cd thefuck
+  PYTHONPATH=$PWD/build/lib:$PYTHONPATH py.test
+}
+
+package() {
+  cd thefuck
+  python3 setup.py install -O1 --prefix=/usr --root=$pkgdir/
+
+  install -Dm644 LICENSE.md $pkgdir/usr/share/licenses/$pkgname/LICENSE.md
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: thefuck.install
===
--- thefuck.install 2015-05-08 04:42:25 UTC (rev 132934)
+++ thefuck.install 2015-05-08 04:42:49 UTC (rev 132935)
@@ -1,3 +0,0 @@
-post_install() {
-  printf '%s\n' '= Add: alias fuck=''$(thefuck $(fc -ln -1))'' to your 
.bashrc or .zshrc.'
-}

Copied: thefuck/repos/community-any/thefuck.install (from rev 132934, 
thefuck/trunk/thefuck.install)
===
--- thefuck.install (rev 0)
+++ thefuck.install 2015-05-08 04:42:49 UTC (rev 132935)
@@ -0,0 +1,3 @@
+post_install() {
+  printf '%s\n' '= Add: alias fuck=''$(thefuck $(fc -ln -1))'' to your 
.bashrc or .zshrc.'
+}


[arch-commits] Commit in thefuck/repos/community-any (4 files)

2015-05-04 Thread Felix Yan
Date: Monday, May 4, 2015 @ 16:21:05
  Author: fyan
Revision: 132730

archrelease: copy trunk to community-any

Added:
  thefuck/repos/community-any/PKGBUILD
(from rev 132729, thefuck/trunk/PKGBUILD)
  thefuck/repos/community-any/thefuck.install
(from rev 132729, thefuck/trunk/thefuck.install)
Deleted:
  thefuck/repos/community-any/PKGBUILD
  thefuck/repos/community-any/thefuck.install

-+
 PKGBUILD|   70 +++---
 thefuck.install |6 ++--
 2 files changed, 38 insertions(+), 38 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-05-04 14:20:47 UTC (rev 132729)
+++ PKGBUILD2015-05-04 14:21:05 UTC (rev 132730)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-
-pkgname=thefuck
-pkgver=1.34
-pkgrel=1
-pkgdesc=Magnificent app which corrects your previous console command
-arch=('any')
-url=https://github.com/nvbn/thefuck;
-license=('MIT')
-depends=('python-setuptools' 'python-pathlib' 'python-psutil' 'python-six' 
'python-colorama')
-makedepends=('git')
-checkdepends=('python-pytest' 'python-mock')
-install=thefuck.install
-source=(git+https://github.com/nvbn/thefuck.git#tag=$pkgver;)
-sha256sums=('SKIP')
-
-build() {
-  cd thefuck
-  python setup.py build
-}
-
-check() {
-  cd thefuck
-  PYTHONPATH=$PWD/build/lib:$PYTHONPATH py.test
-}
-
-package() {
-  cd thefuck
-  python3 setup.py install -O1 --prefix=/usr --root=$pkgdir/
-
-  install -Dm644 LICENSE.md $pkgdir/usr/share/licenses/$pkgname/LICENSE.md
-}
-
-# vim:set ts=2 sw=2 et:

Copied: thefuck/repos/community-any/PKGBUILD (from rev 132729, 
thefuck/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-05-04 14:21:05 UTC (rev 132730)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+
+pkgname=thefuck
+pkgver=1.35
+pkgrel=1
+pkgdesc=Magnificent app which corrects your previous console command
+arch=('any')
+url=https://github.com/nvbn/thefuck;
+license=('MIT')
+depends=('python-setuptools' 'python-pathlib' 'python-psutil' 'python-six' 
'python-colorama')
+makedepends=('git')
+checkdepends=('python-pytest' 'python-mock')
+install=thefuck.install
+source=(git+https://github.com/nvbn/thefuck.git#tag=$pkgver;)
+sha256sums=('SKIP')
+
+build() {
+  cd thefuck
+  python setup.py build
+}
+
+check() {
+  cd thefuck
+  PYTHONPATH=$PWD/build/lib:$PYTHONPATH py.test
+}
+
+package() {
+  cd thefuck
+  python3 setup.py install -O1 --prefix=/usr --root=$pkgdir/
+
+  install -Dm644 LICENSE.md $pkgdir/usr/share/licenses/$pkgname/LICENSE.md
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: thefuck.install
===
--- thefuck.install 2015-05-04 14:20:47 UTC (rev 132729)
+++ thefuck.install 2015-05-04 14:21:05 UTC (rev 132730)
@@ -1,3 +0,0 @@
-post_install() {
-  printf '%s\n' '= Add: alias fuck=''$(thefuck $(fc -ln -1))'' to your 
.bashrc or .zshrc.'
-}

Copied: thefuck/repos/community-any/thefuck.install (from rev 132729, 
thefuck/trunk/thefuck.install)
===
--- thefuck.install (rev 0)
+++ thefuck.install 2015-05-04 14:21:05 UTC (rev 132730)
@@ -0,0 +1,3 @@
+post_install() {
+  printf '%s\n' '= Add: alias fuck=''$(thefuck $(fc -ln -1))'' to your 
.bashrc or .zshrc.'
+}


[arch-commits] Commit in thefuck/repos/community-any (4 files)

2015-05-03 Thread Felix Yan
Date: Sunday, May 3, 2015 @ 18:14:40
  Author: fyan
Revision: 132655

archrelease: copy trunk to community-any

Added:
  thefuck/repos/community-any/PKGBUILD
(from rev 132654, thefuck/trunk/PKGBUILD)
  thefuck/repos/community-any/thefuck.install
(from rev 132654, thefuck/trunk/thefuck.install)
Deleted:
  thefuck/repos/community-any/PKGBUILD
  thefuck/repos/community-any/thefuck.install

-+
 PKGBUILD|   70 +++---
 thefuck.install |6 ++--
 2 files changed, 38 insertions(+), 38 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-05-03 16:14:26 UTC (rev 132654)
+++ PKGBUILD2015-05-03 16:14:40 UTC (rev 132655)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-
-pkgname=thefuck
-pkgver=1.32
-pkgrel=1
-pkgdesc=Magnificent app which corrects your previous console command
-arch=('any')
-url=https://github.com/nvbn/thefuck;
-license=('MIT')
-depends=('python-setuptools' 'python-pathlib' 'python-psutil' 'python-six' 
'python-colorama')
-makedepends=('git')
-checkdepends=('python-pytest' 'python-mock')
-install=thefuck.install
-source=(git+https://github.com/nvbn/thefuck.git#tag=$pkgver;)
-sha256sums=('SKIP')
-
-build() {
-  cd thefuck
-  python setup.py build
-}
-
-check() {
-  cd thefuck
-  PYTHONPATH=$PWD/build/lib:$PYTHONPATH py.test
-}
-
-package() {
-  cd thefuck
-  python3 setup.py install -O1 --prefix=/usr --root=$pkgdir/
-
-  install -Dm644 LICENSE.md $pkgdir/usr/share/licenses/$pkgname/LICENSE.md
-}
-
-# vim:set ts=2 sw=2 et:

Copied: thefuck/repos/community-any/PKGBUILD (from rev 132654, 
thefuck/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-05-03 16:14:40 UTC (rev 132655)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+
+pkgname=thefuck
+pkgver=1.33
+pkgrel=1
+pkgdesc=Magnificent app which corrects your previous console command
+arch=('any')
+url=https://github.com/nvbn/thefuck;
+license=('MIT')
+depends=('python-setuptools' 'python-pathlib' 'python-psutil' 'python-six' 
'python-colorama')
+makedepends=('git')
+checkdepends=('python-pytest' 'python-mock')
+install=thefuck.install
+source=(git+https://github.com/nvbn/thefuck.git#tag=$pkgver;)
+sha256sums=('SKIP')
+
+build() {
+  cd thefuck
+  python setup.py build
+}
+
+check() {
+  cd thefuck
+  PYTHONPATH=$PWD/build/lib:$PYTHONPATH py.test
+}
+
+package() {
+  cd thefuck
+  python3 setup.py install -O1 --prefix=/usr --root=$pkgdir/
+
+  install -Dm644 LICENSE.md $pkgdir/usr/share/licenses/$pkgname/LICENSE.md
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: thefuck.install
===
--- thefuck.install 2015-05-03 16:14:26 UTC (rev 132654)
+++ thefuck.install 2015-05-03 16:14:40 UTC (rev 132655)
@@ -1,3 +0,0 @@
-post_install() {
-  printf '%s\n' '= Add: alias fuck=''$(thefuck $(fc -ln -1))'' to your 
.bashrc or .zshrc.'
-}

Copied: thefuck/repos/community-any/thefuck.install (from rev 132654, 
thefuck/trunk/thefuck.install)
===
--- thefuck.install (rev 0)
+++ thefuck.install 2015-05-03 16:14:40 UTC (rev 132655)
@@ -0,0 +1,3 @@
+post_install() {
+  printf '%s\n' '= Add: alias fuck=''$(thefuck $(fc -ln -1))'' to your 
.bashrc or .zshrc.'
+}


[arch-commits] Commit in thefuck/repos/community-any (4 files)

2015-05-03 Thread Felix Yan
Date: Sunday, May 3, 2015 @ 18:18:11
  Author: fyan
Revision: 132659

archrelease: copy trunk to community-any

Added:
  thefuck/repos/community-any/PKGBUILD
(from rev 132658, thefuck/trunk/PKGBUILD)
  thefuck/repos/community-any/thefuck.install
(from rev 132658, thefuck/trunk/thefuck.install)
Deleted:
  thefuck/repos/community-any/PKGBUILD
  thefuck/repos/community-any/thefuck.install

-+
 PKGBUILD|   70 +++---
 thefuck.install |6 ++--
 2 files changed, 38 insertions(+), 38 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-05-03 16:17:58 UTC (rev 132658)
+++ PKGBUILD2015-05-03 16:18:11 UTC (rev 132659)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-
-pkgname=thefuck
-pkgver=1.33
-pkgrel=1
-pkgdesc=Magnificent app which corrects your previous console command
-arch=('any')
-url=https://github.com/nvbn/thefuck;
-license=('MIT')
-depends=('python-setuptools' 'python-pathlib' 'python-psutil' 'python-six' 
'python-colorama')
-makedepends=('git')
-checkdepends=('python-pytest' 'python-mock')
-install=thefuck.install
-source=(git+https://github.com/nvbn/thefuck.git#tag=$pkgver;)
-sha256sums=('SKIP')
-
-build() {
-  cd thefuck
-  python setup.py build
-}
-
-check() {
-  cd thefuck
-  PYTHONPATH=$PWD/build/lib:$PYTHONPATH py.test
-}
-
-package() {
-  cd thefuck
-  python3 setup.py install -O1 --prefix=/usr --root=$pkgdir/
-
-  install -Dm644 LICENSE.md $pkgdir/usr/share/licenses/$pkgname/LICENSE.md
-}
-
-# vim:set ts=2 sw=2 et:

Copied: thefuck/repos/community-any/PKGBUILD (from rev 132658, 
thefuck/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-05-03 16:18:11 UTC (rev 132659)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+
+pkgname=thefuck
+pkgver=1.34
+pkgrel=1
+pkgdesc=Magnificent app which corrects your previous console command
+arch=('any')
+url=https://github.com/nvbn/thefuck;
+license=('MIT')
+depends=('python-setuptools' 'python-pathlib' 'python-psutil' 'python-six' 
'python-colorama')
+makedepends=('git')
+checkdepends=('python-pytest' 'python-mock')
+install=thefuck.install
+source=(git+https://github.com/nvbn/thefuck.git#tag=$pkgver;)
+sha256sums=('SKIP')
+
+build() {
+  cd thefuck
+  python setup.py build
+}
+
+check() {
+  cd thefuck
+  PYTHONPATH=$PWD/build/lib:$PYTHONPATH py.test
+}
+
+package() {
+  cd thefuck
+  python3 setup.py install -O1 --prefix=/usr --root=$pkgdir/
+
+  install -Dm644 LICENSE.md $pkgdir/usr/share/licenses/$pkgname/LICENSE.md
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: thefuck.install
===
--- thefuck.install 2015-05-03 16:17:58 UTC (rev 132658)
+++ thefuck.install 2015-05-03 16:18:11 UTC (rev 132659)
@@ -1,3 +0,0 @@
-post_install() {
-  printf '%s\n' '= Add: alias fuck=''$(thefuck $(fc -ln -1))'' to your 
.bashrc or .zshrc.'
-}

Copied: thefuck/repos/community-any/thefuck.install (from rev 132658, 
thefuck/trunk/thefuck.install)
===
--- thefuck.install (rev 0)
+++ thefuck.install 2015-05-03 16:18:11 UTC (rev 132659)
@@ -0,0 +1,3 @@
+post_install() {
+  printf '%s\n' '= Add: alias fuck=''$(thefuck $(fc -ln -1))'' to your 
.bashrc or .zshrc.'
+}


[arch-commits] Commit in thefuck/repos/community-any (4 files)

2015-05-01 Thread Felix Yan
Date: Friday, May 1, 2015 @ 10:53:04
  Author: fyan
Revision: 132577

archrelease: copy trunk to community-any

Added:
  thefuck/repos/community-any/PKGBUILD
(from rev 132576, thefuck/trunk/PKGBUILD)
  thefuck/repos/community-any/thefuck.install
(from rev 132576, thefuck/trunk/thefuck.install)
Deleted:
  thefuck/repos/community-any/PKGBUILD
  thefuck/repos/community-any/thefuck.install

-+
 PKGBUILD|   70 +++---
 thefuck.install |6 ++--
 2 files changed, 38 insertions(+), 38 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-05-01 08:52:50 UTC (rev 132576)
+++ PKGBUILD2015-05-01 08:53:04 UTC (rev 132577)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-
-pkgname=thefuck
-pkgver=1.31
-pkgrel=1
-pkgdesc=Magnificent app which corrects your previous console command
-arch=('any')
-url=https://github.com/nvbn/thefuck;
-license=('MIT')
-depends=('python-setuptools' 'python-pathlib' 'python-psutil' 'python-six' 
'python-colorama')
-makedepends=('git')
-checkdepends=('python-pytest' 'python-mock')
-install=thefuck.install
-source=(git+https://github.com/nvbn/thefuck.git#tag=$pkgver;)
-sha256sums=('SKIP')
-
-build() {
-  cd thefuck
-  python setup.py build
-}
-
-check() {
-  cd thefuck
-  PYTHONPATH=$PWD/build/lib:$PYTHONPATH py.test
-}
-
-package() {
-  cd thefuck
-  python3 setup.py install -O1 --prefix=/usr --root=$pkgdir/
-
-  install -Dm644 LICENSE.md $pkgdir/usr/share/licenses/$pkgname/LICENSE.md
-}
-
-# vim:set ts=2 sw=2 et:

Copied: thefuck/repos/community-any/PKGBUILD (from rev 132576, 
thefuck/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-05-01 08:53:04 UTC (rev 132577)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+
+pkgname=thefuck
+pkgver=1.32
+pkgrel=1
+pkgdesc=Magnificent app which corrects your previous console command
+arch=('any')
+url=https://github.com/nvbn/thefuck;
+license=('MIT')
+depends=('python-setuptools' 'python-pathlib' 'python-psutil' 'python-six' 
'python-colorama')
+makedepends=('git')
+checkdepends=('python-pytest' 'python-mock')
+install=thefuck.install
+source=(git+https://github.com/nvbn/thefuck.git#tag=$pkgver;)
+sha256sums=('SKIP')
+
+build() {
+  cd thefuck
+  python setup.py build
+}
+
+check() {
+  cd thefuck
+  PYTHONPATH=$PWD/build/lib:$PYTHONPATH py.test
+}
+
+package() {
+  cd thefuck
+  python3 setup.py install -O1 --prefix=/usr --root=$pkgdir/
+
+  install -Dm644 LICENSE.md $pkgdir/usr/share/licenses/$pkgname/LICENSE.md
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: thefuck.install
===
--- thefuck.install 2015-05-01 08:52:50 UTC (rev 132576)
+++ thefuck.install 2015-05-01 08:53:04 UTC (rev 132577)
@@ -1,3 +0,0 @@
-post_install() {
-  printf '%s\n' '= Add: alias fuck=''$(thefuck $(fc -ln -1))'' to your 
.bashrc or .zshrc.'
-}

Copied: thefuck/repos/community-any/thefuck.install (from rev 132576, 
thefuck/trunk/thefuck.install)
===
--- thefuck.install (rev 0)
+++ thefuck.install 2015-05-01 08:53:04 UTC (rev 132577)
@@ -0,0 +1,3 @@
+post_install() {
+  printf '%s\n' '= Add: alias fuck=''$(thefuck $(fc -ln -1))'' to your 
.bashrc or .zshrc.'
+}


[arch-commits] Commit in thefuck/repos/community-any (4 files)

2015-04-29 Thread Felix Yan
Date: Wednesday, April 29, 2015 @ 10:43:39
  Author: fyan
Revision: 132498

archrelease: copy trunk to community-any

Added:
  thefuck/repos/community-any/PKGBUILD
(from rev 132497, thefuck/trunk/PKGBUILD)
  thefuck/repos/community-any/thefuck.install
(from rev 132497, thefuck/trunk/thefuck.install)
Deleted:
  thefuck/repos/community-any/PKGBUILD
  thefuck/repos/community-any/thefuck.install

-+
 PKGBUILD|   70 +++---
 thefuck.install |6 ++--
 2 files changed, 38 insertions(+), 38 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-04-29 08:43:14 UTC (rev 132497)
+++ PKGBUILD2015-04-29 08:43:39 UTC (rev 132498)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-
-pkgname=thefuck
-pkgver=1.30
-pkgrel=1
-pkgdesc=Magnificent app which corrects your previous console command
-arch=('any')
-url=https://github.com/nvbn/thefuck;
-license=('MIT')
-depends=('python-setuptools' 'python-pathlib' 'python-psutil' 'python-six' 
'python-colorama')
-makedepends=('git')
-checkdepends=('python-pytest' 'python-mock')
-install=thefuck.install
-source=(git+https://github.com/nvbn/thefuck.git#tag=$pkgver;)
-sha256sums=('SKIP')
-
-build() {
-  cd thefuck
-  python setup.py build
-}
-
-check() {
-  cd thefuck
-  PYTHONPATH=$PWD/build/lib:$PYTHONPATH py.test
-}
-
-package() {
-  cd thefuck
-  python3 setup.py install -O1 --prefix=/usr --root=$pkgdir/
-
-  install -Dm644 LICENSE.md $pkgdir/usr/share/licenses/$pkgname/LICENSE.md
-}
-
-# vim:set ts=2 sw=2 et:

Copied: thefuck/repos/community-any/PKGBUILD (from rev 132497, 
thefuck/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-04-29 08:43:39 UTC (rev 132498)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+
+pkgname=thefuck
+pkgver=1.31
+pkgrel=1
+pkgdesc=Magnificent app which corrects your previous console command
+arch=('any')
+url=https://github.com/nvbn/thefuck;
+license=('MIT')
+depends=('python-setuptools' 'python-pathlib' 'python-psutil' 'python-six' 
'python-colorama')
+makedepends=('git')
+checkdepends=('python-pytest' 'python-mock')
+install=thefuck.install
+source=(git+https://github.com/nvbn/thefuck.git#tag=$pkgver;)
+sha256sums=('SKIP')
+
+build() {
+  cd thefuck
+  python setup.py build
+}
+
+check() {
+  cd thefuck
+  PYTHONPATH=$PWD/build/lib:$PYTHONPATH py.test
+}
+
+package() {
+  cd thefuck
+  python3 setup.py install -O1 --prefix=/usr --root=$pkgdir/
+
+  install -Dm644 LICENSE.md $pkgdir/usr/share/licenses/$pkgname/LICENSE.md
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: thefuck.install
===
--- thefuck.install 2015-04-29 08:43:14 UTC (rev 132497)
+++ thefuck.install 2015-04-29 08:43:39 UTC (rev 132498)
@@ -1,3 +0,0 @@
-post_install() {
-  printf '%s\n' '= Add: alias fuck=''$(thefuck $(fc -ln -1))'' to your 
.bashrc or .zshrc.'
-}

Copied: thefuck/repos/community-any/thefuck.install (from rev 132497, 
thefuck/trunk/thefuck.install)
===
--- thefuck.install (rev 0)
+++ thefuck.install 2015-04-29 08:43:39 UTC (rev 132498)
@@ -0,0 +1,3 @@
+post_install() {
+  printf '%s\n' '= Add: alias fuck=''$(thefuck $(fc -ln -1))'' to your 
.bashrc or .zshrc.'
+}


[arch-commits] Commit in thefuck/repos/community-any (4 files)

2015-04-24 Thread Felix Yan
Date: Saturday, April 25, 2015 @ 05:18:09
  Author: fyan
Revision: 132221

archrelease: copy trunk to community-any

Added:
  thefuck/repos/community-any/PKGBUILD
(from rev 132220, thefuck/trunk/PKGBUILD)
  thefuck/repos/community-any/thefuck.install
(from rev 132220, thefuck/trunk/thefuck.install)
Deleted:
  thefuck/repos/community-any/PKGBUILD
  thefuck/repos/community-any/thefuck.install

-+
 PKGBUILD|   70 +++---
 thefuck.install |6 ++--
 2 files changed, 38 insertions(+), 38 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-04-25 03:17:18 UTC (rev 132220)
+++ PKGBUILD2015-04-25 03:18:09 UTC (rev 132221)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-
-pkgname=thefuck
-pkgver=1.29
-pkgrel=1
-pkgdesc=Magnificent app which corrects your previous console command
-arch=('any')
-url=https://github.com/nvbn/thefuck;
-license=('MIT')
-depends=('python-setuptools' 'python-pathlib' 'python-psutil' 'python-six' 
'python-colorama')
-makedepends=('git')
-checkdepends=('python-pytest' 'python-mock')
-install=thefuck.install
-source=(git+https://github.com/nvbn/thefuck.git#tag=$pkgver;)
-sha256sums=('SKIP')
-
-build() {
-  cd thefuck
-  python setup.py build
-}
-
-check() {
-  cd thefuck
-  PYTHONPATH=$PWD/build/lib:$PYTHONPATH py.test
-}
-
-package() {
-  cd thefuck
-  python3 setup.py install -O1 --prefix=/usr --root=$pkgdir/
-
-  install -Dm644 LICENSE.md $pkgdir/usr/share/licenses/$pkgname/LICENSE.md
-}
-
-# vim:set ts=2 sw=2 et:

Copied: thefuck/repos/community-any/PKGBUILD (from rev 132220, 
thefuck/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-04-25 03:18:09 UTC (rev 132221)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+
+pkgname=thefuck
+pkgver=1.30
+pkgrel=1
+pkgdesc=Magnificent app which corrects your previous console command
+arch=('any')
+url=https://github.com/nvbn/thefuck;
+license=('MIT')
+depends=('python-setuptools' 'python-pathlib' 'python-psutil' 'python-six' 
'python-colorama')
+makedepends=('git')
+checkdepends=('python-pytest' 'python-mock')
+install=thefuck.install
+source=(git+https://github.com/nvbn/thefuck.git#tag=$pkgver;)
+sha256sums=('SKIP')
+
+build() {
+  cd thefuck
+  python setup.py build
+}
+
+check() {
+  cd thefuck
+  PYTHONPATH=$PWD/build/lib:$PYTHONPATH py.test
+}
+
+package() {
+  cd thefuck
+  python3 setup.py install -O1 --prefix=/usr --root=$pkgdir/
+
+  install -Dm644 LICENSE.md $pkgdir/usr/share/licenses/$pkgname/LICENSE.md
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: thefuck.install
===
--- thefuck.install 2015-04-25 03:17:18 UTC (rev 132220)
+++ thefuck.install 2015-04-25 03:18:09 UTC (rev 132221)
@@ -1,3 +0,0 @@
-post_install() {
-  printf '%s\n' '= Add: alias fuck=''$(thefuck $(fc -ln -1))'' to your 
.bashrc or .zshrc.'
-}

Copied: thefuck/repos/community-any/thefuck.install (from rev 132220, 
thefuck/trunk/thefuck.install)
===
--- thefuck.install (rev 0)
+++ thefuck.install 2015-04-25 03:18:09 UTC (rev 132221)
@@ -0,0 +1,3 @@
+post_install() {
+  printf '%s\n' '= Add: alias fuck=''$(thefuck $(fc -ln -1))'' to your 
.bashrc or .zshrc.'
+}


[arch-commits] Commit in thefuck/repos/community-any (4 files)

2015-04-23 Thread Felix Yan
Date: Friday, April 24, 2015 @ 05:01:05
  Author: fyan
Revision: 132083

archrelease: copy trunk to community-any

Added:
  thefuck/repos/community-any/PKGBUILD
(from rev 132082, thefuck/trunk/PKGBUILD)
  thefuck/repos/community-any/thefuck.install
(from rev 132082, thefuck/trunk/thefuck.install)
Deleted:
  thefuck/repos/community-any/PKGBUILD
  thefuck/repos/community-any/thefuck.install

-+
 PKGBUILD|   70 +++---
 thefuck.install |6 ++--
 2 files changed, 38 insertions(+), 38 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-04-24 03:00:47 UTC (rev 132082)
+++ PKGBUILD2015-04-24 03:01:05 UTC (rev 132083)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-
-pkgname=thefuck
-pkgver=1.28
-pkgrel=1
-pkgdesc=Magnificent app which corrects your previous console command
-arch=('any')
-url=https://github.com/nvbn/thefuck;
-license=('MIT')
-depends=('python-setuptools' 'python-pathlib' 'python-psutil' 'python-six' 
'python-colorama')
-makedepends=('git')
-checkdepends=('python-pytest' 'python-mock')
-install=thefuck.install
-source=(git+https://github.com/nvbn/thefuck.git#tag=$pkgver;)
-sha256sums=('SKIP')
-
-build() {
-  cd thefuck
-  python setup.py build
-}
-
-check() {
-  cd thefuck
-  PYTHONPATH=$PWD/build/lib:$PYTHONPATH py.test
-}
-
-package() {
-  cd thefuck
-  python3 setup.py install -O1 --prefix=/usr --root=$pkgdir/
-
-  install -Dm644 LICENSE.md $pkgdir/usr/share/licenses/$pkgname/LICENSE.md
-}
-
-# vim:set ts=2 sw=2 et:

Copied: thefuck/repos/community-any/PKGBUILD (from rev 132082, 
thefuck/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-04-24 03:01:05 UTC (rev 132083)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+
+pkgname=thefuck
+pkgver=1.29
+pkgrel=1
+pkgdesc=Magnificent app which corrects your previous console command
+arch=('any')
+url=https://github.com/nvbn/thefuck;
+license=('MIT')
+depends=('python-setuptools' 'python-pathlib' 'python-psutil' 'python-six' 
'python-colorama')
+makedepends=('git')
+checkdepends=('python-pytest' 'python-mock')
+install=thefuck.install
+source=(git+https://github.com/nvbn/thefuck.git#tag=$pkgver;)
+sha256sums=('SKIP')
+
+build() {
+  cd thefuck
+  python setup.py build
+}
+
+check() {
+  cd thefuck
+  PYTHONPATH=$PWD/build/lib:$PYTHONPATH py.test
+}
+
+package() {
+  cd thefuck
+  python3 setup.py install -O1 --prefix=/usr --root=$pkgdir/
+
+  install -Dm644 LICENSE.md $pkgdir/usr/share/licenses/$pkgname/LICENSE.md
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: thefuck.install
===
--- thefuck.install 2015-04-24 03:00:47 UTC (rev 132082)
+++ thefuck.install 2015-04-24 03:01:05 UTC (rev 132083)
@@ -1,3 +0,0 @@
-post_install() {
-  printf '%s\n' '= Add: alias fuck=''$(thefuck $(fc -ln -1))'' to your 
.bashrc or .zshrc.'
-}

Copied: thefuck/repos/community-any/thefuck.install (from rev 132082, 
thefuck/trunk/thefuck.install)
===
--- thefuck.install (rev 0)
+++ thefuck.install 2015-04-24 03:01:05 UTC (rev 132083)
@@ -0,0 +1,3 @@
+post_install() {
+  printf '%s\n' '= Add: alias fuck=''$(thefuck $(fc -ln -1))'' to your 
.bashrc or .zshrc.'
+}


[arch-commits] Commit in thefuck/repos/community-any (4 files)

2015-04-22 Thread Felix Yan
Date: Thursday, April 23, 2015 @ 05:20:30
  Author: fyan
Revision: 132025

archrelease: copy trunk to community-any

Added:
  thefuck/repos/community-any/PKGBUILD
(from rev 132024, thefuck/trunk/PKGBUILD)
  thefuck/repos/community-any/thefuck.install
(from rev 132024, thefuck/trunk/thefuck.install)
Deleted:
  thefuck/repos/community-any/PKGBUILD
  thefuck/repos/community-any/thefuck.install

-+
 PKGBUILD|   70 +++---
 thefuck.install |6 ++--
 2 files changed, 38 insertions(+), 38 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-04-23 03:20:04 UTC (rev 132024)
+++ PKGBUILD2015-04-23 03:20:30 UTC (rev 132025)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-
-pkgname=thefuck
-pkgver=1.26
-pkgrel=1
-pkgdesc=Magnificent app which corrects your previous console command
-arch=('any')
-url=https://github.com/nvbn/thefuck;
-license=('MIT')
-depends=('python-setuptools' 'python-pathlib' 'python-psutil')
-makedepends=('git')
-checkdepends=('python-pytest' 'python-mock')
-install=thefuck.install
-source=(git+https://github.com/nvbn/thefuck.git#tag=$pkgver;)
-sha256sums=('SKIP')
-
-build() {
-  cd thefuck
-  python setup.py build
-}
-
-check() {
-  cd thefuck
-  PYTHONPATH=$PWD/build/lib:$PYTHONPATH py.test
-}
-
-package() {
-  cd thefuck
-  python3 setup.py install -O1 --prefix=/usr --root=$pkgdir/
-
-  install -Dm644 LICENSE.md $pkgdir/usr/share/licenses/$pkgname/LICENSE.md
-}
-
-# vim:set ts=2 sw=2 et:

Copied: thefuck/repos/community-any/PKGBUILD (from rev 132024, 
thefuck/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-04-23 03:20:30 UTC (rev 132025)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+
+pkgname=thefuck
+pkgver=1.27
+pkgrel=1
+pkgdesc=Magnificent app which corrects your previous console command
+arch=('any')
+url=https://github.com/nvbn/thefuck;
+license=('MIT')
+depends=('python-setuptools' 'python-pathlib' 'python-psutil' 'python-six' 
'python-colorama')
+makedepends=('git')
+checkdepends=('python-pytest' 'python-mock')
+install=thefuck.install
+source=(git+https://github.com/nvbn/thefuck.git#tag=$pkgver;)
+sha256sums=('SKIP')
+
+build() {
+  cd thefuck
+  python setup.py build
+}
+
+check() {
+  cd thefuck
+  PYTHONPATH=$PWD/build/lib:$PYTHONPATH py.test
+}
+
+package() {
+  cd thefuck
+  python3 setup.py install -O1 --prefix=/usr --root=$pkgdir/
+
+  install -Dm644 LICENSE.md $pkgdir/usr/share/licenses/$pkgname/LICENSE.md
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: thefuck.install
===
--- thefuck.install 2015-04-23 03:20:04 UTC (rev 132024)
+++ thefuck.install 2015-04-23 03:20:30 UTC (rev 132025)
@@ -1,3 +0,0 @@
-post_install() {
-  printf '%s\n' '= Add: alias fuck=''$(thefuck $(fc -ln -1))'' to your 
.bashrc or .zshrc.'
-}

Copied: thefuck/repos/community-any/thefuck.install (from rev 132024, 
thefuck/trunk/thefuck.install)
===
--- thefuck.install (rev 0)
+++ thefuck.install 2015-04-23 03:20:30 UTC (rev 132025)
@@ -0,0 +1,3 @@
+post_install() {
+  printf '%s\n' '= Add: alias fuck=''$(thefuck $(fc -ln -1))'' to your 
.bashrc or .zshrc.'
+}


[arch-commits] Commit in thefuck/repos/community-any (4 files)

2015-04-22 Thread Felix Yan
Date: Thursday, April 23, 2015 @ 06:06:55
  Author: fyan
Revision: 132034

archrelease: copy trunk to community-any

Added:
  thefuck/repos/community-any/PKGBUILD
(from rev 132033, thefuck/trunk/PKGBUILD)
  thefuck/repos/community-any/thefuck.install
(from rev 132033, thefuck/trunk/thefuck.install)
Deleted:
  thefuck/repos/community-any/PKGBUILD
  thefuck/repos/community-any/thefuck.install

-+
 PKGBUILD|   70 +++---
 thefuck.install |6 ++--
 2 files changed, 38 insertions(+), 38 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-04-23 04:06:32 UTC (rev 132033)
+++ PKGBUILD2015-04-23 04:06:55 UTC (rev 132034)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-
-pkgname=thefuck
-pkgver=1.27
-pkgrel=1
-pkgdesc=Magnificent app which corrects your previous console command
-arch=('any')
-url=https://github.com/nvbn/thefuck;
-license=('MIT')
-depends=('python-setuptools' 'python-pathlib' 'python-psutil' 'python-six' 
'python-colorama')
-makedepends=('git')
-checkdepends=('python-pytest' 'python-mock')
-install=thefuck.install
-source=(git+https://github.com/nvbn/thefuck.git#tag=$pkgver;)
-sha256sums=('SKIP')
-
-build() {
-  cd thefuck
-  python setup.py build
-}
-
-check() {
-  cd thefuck
-  PYTHONPATH=$PWD/build/lib:$PYTHONPATH py.test
-}
-
-package() {
-  cd thefuck
-  python3 setup.py install -O1 --prefix=/usr --root=$pkgdir/
-
-  install -Dm644 LICENSE.md $pkgdir/usr/share/licenses/$pkgname/LICENSE.md
-}
-
-# vim:set ts=2 sw=2 et:

Copied: thefuck/repos/community-any/PKGBUILD (from rev 132033, 
thefuck/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-04-23 04:06:55 UTC (rev 132034)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+
+pkgname=thefuck
+pkgver=1.28
+pkgrel=1
+pkgdesc=Magnificent app which corrects your previous console command
+arch=('any')
+url=https://github.com/nvbn/thefuck;
+license=('MIT')
+depends=('python-setuptools' 'python-pathlib' 'python-psutil' 'python-six' 
'python-colorama')
+makedepends=('git')
+checkdepends=('python-pytest' 'python-mock')
+install=thefuck.install
+source=(git+https://github.com/nvbn/thefuck.git#tag=$pkgver;)
+sha256sums=('SKIP')
+
+build() {
+  cd thefuck
+  python setup.py build
+}
+
+check() {
+  cd thefuck
+  PYTHONPATH=$PWD/build/lib:$PYTHONPATH py.test
+}
+
+package() {
+  cd thefuck
+  python3 setup.py install -O1 --prefix=/usr --root=$pkgdir/
+
+  install -Dm644 LICENSE.md $pkgdir/usr/share/licenses/$pkgname/LICENSE.md
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: thefuck.install
===
--- thefuck.install 2015-04-23 04:06:32 UTC (rev 132033)
+++ thefuck.install 2015-04-23 04:06:55 UTC (rev 132034)
@@ -1,3 +0,0 @@
-post_install() {
-  printf '%s\n' '= Add: alias fuck=''$(thefuck $(fc -ln -1))'' to your 
.bashrc or .zshrc.'
-}

Copied: thefuck/repos/community-any/thefuck.install (from rev 132033, 
thefuck/trunk/thefuck.install)
===
--- thefuck.install (rev 0)
+++ thefuck.install 2015-04-23 04:06:55 UTC (rev 132034)
@@ -0,0 +1,3 @@
+post_install() {
+  printf '%s\n' '= Add: alias fuck=''$(thefuck $(fc -ln -1))'' to your 
.bashrc or .zshrc.'
+}


[arch-commits] Commit in thefuck/repos/community-any (4 files)

2015-04-21 Thread Felix Yan
Date: Tuesday, April 21, 2015 @ 08:39:40
  Author: fyan
Revision: 131786

archrelease: copy trunk to community-any

Added:
  thefuck/repos/community-any/PKGBUILD
(from rev 131785, thefuck/trunk/PKGBUILD)
  thefuck/repos/community-any/thefuck.install
(from rev 131785, thefuck/trunk/thefuck.install)
Deleted:
  thefuck/repos/community-any/PKGBUILD
  thefuck/repos/community-any/thefuck.install

-+
 PKGBUILD|   70 +++---
 thefuck.install |6 ++--
 2 files changed, 38 insertions(+), 38 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-04-21 06:39:26 UTC (rev 131785)
+++ PKGBUILD2015-04-21 06:39:40 UTC (rev 131786)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-
-pkgname=thefuck
-pkgver=1.17
-pkgrel=1
-pkgdesc=Magnificent app which corrects your previous console command
-arch=('any')
-url=https://github.com/nvbn/thefuck;
-license=('MIT')
-depends=('python-setuptools' 'python-pathlib' 'python-psutil')
-checkdepends=('python-pytest' 'python-mock')
-install=thefuck.install
-source=(https://pypi.python.org/packages/source/t/thefuck/thefuck-$pkgver.tar.gz;)
-sha256sums=('5964e461756991d0b2f3568a4264b819dff30f2070ec9f5969926863617f2140')
-
-build() {
-  cd ${srcdir}/thefuck-$pkgver
-  python setup.py build
-}
-
-check() {
-  # Tests not included in released tarball
-  cd ${srcdir}/thefuck-$pkgver
-  # py.test
-}
-
-package() {
-  cd thefuck-$pkgver
-  python3 setup.py install -O1 --prefix=/usr --root=$pkgdir/
-
-  install -Dm644 LICENSE.md $pkgdir/usr/share/licenses/$pkgname/LICENSE.md
-}
-
-# vim:set ts=2 sw=2 et:

Copied: thefuck/repos/community-any/PKGBUILD (from rev 131785, 
thefuck/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-04-21 06:39:40 UTC (rev 131786)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+
+pkgname=thefuck
+pkgver=1.18
+pkgrel=1
+pkgdesc=Magnificent app which corrects your previous console command
+arch=('any')
+url=https://github.com/nvbn/thefuck;
+license=('MIT')
+depends=('python-setuptools' 'python-pathlib' 'python-psutil')
+makedepends=('git')
+checkdepends=('python-pytest' 'python-mock')
+install=thefuck.install
+source=(git+https://github.com/nvbn/thefuck.git#tag=$pkgver;)
+sha256sums=('SKIP')
+
+build() {
+  cd thefuck
+  python setup.py build
+}
+
+check() {
+  cd thefuck
+  PYTHONPATH=$PWD/build/lib:$PYTHONPATH py.test
+}
+
+package() {
+  cd thefuck
+  python3 setup.py install -O1 --prefix=/usr --root=$pkgdir/
+
+  install -Dm644 LICENSE.md $pkgdir/usr/share/licenses/$pkgname/LICENSE.md
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: thefuck.install
===
--- thefuck.install 2015-04-21 06:39:26 UTC (rev 131785)
+++ thefuck.install 2015-04-21 06:39:40 UTC (rev 131786)
@@ -1,3 +0,0 @@
-post_install() {
-  printf '%s\n' '= Add: alias fuck=''$(thefuck $(fc -ln -1))'' to your 
.bashrc or .zshrc.'
-}

Copied: thefuck/repos/community-any/thefuck.install (from rev 131785, 
thefuck/trunk/thefuck.install)
===
--- thefuck.install (rev 0)
+++ thefuck.install 2015-04-21 06:39:40 UTC (rev 131786)
@@ -0,0 +1,3 @@
+post_install() {
+  printf '%s\n' '= Add: alias fuck=''$(thefuck $(fc -ln -1))'' to your 
.bashrc or .zshrc.'
+}


[arch-commits] Commit in thefuck/repos/community-any (4 files)

2015-04-21 Thread Felix Yan
Date: Tuesday, April 21, 2015 @ 09:20:40
  Author: fyan
Revision: 131796

archrelease: copy trunk to community-any

Added:
  thefuck/repos/community-any/PKGBUILD
(from rev 131795, thefuck/trunk/PKGBUILD)
  thefuck/repos/community-any/thefuck.install
(from rev 131795, thefuck/trunk/thefuck.install)
Deleted:
  thefuck/repos/community-any/PKGBUILD
  thefuck/repos/community-any/thefuck.install

-+
 PKGBUILD|   70 +++---
 thefuck.install |6 ++--
 2 files changed, 38 insertions(+), 38 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-04-21 07:20:26 UTC (rev 131795)
+++ PKGBUILD2015-04-21 07:20:40 UTC (rev 131796)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-
-pkgname=thefuck
-pkgver=1.19
-pkgrel=1
-pkgdesc=Magnificent app which corrects your previous console command
-arch=('any')
-url=https://github.com/nvbn/thefuck;
-license=('MIT')
-depends=('python-setuptools' 'python-pathlib' 'python-psutil')
-makedepends=('git')
-checkdepends=('python-pytest' 'python-mock')
-install=thefuck.install
-source=(git+https://github.com/nvbn/thefuck.git#tag=$pkgver;)
-sha256sums=('SKIP')
-
-build() {
-  cd thefuck
-  python setup.py build
-}
-
-check() {
-  cd thefuck
-  PYTHONPATH=$PWD/build/lib:$PYTHONPATH py.test
-}
-
-package() {
-  cd thefuck
-  python3 setup.py install -O1 --prefix=/usr --root=$pkgdir/
-
-  install -Dm644 LICENSE.md $pkgdir/usr/share/licenses/$pkgname/LICENSE.md
-}
-
-# vim:set ts=2 sw=2 et:

Copied: thefuck/repos/community-any/PKGBUILD (from rev 131795, 
thefuck/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-04-21 07:20:40 UTC (rev 131796)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+
+pkgname=thefuck
+pkgver=1.20
+pkgrel=1
+pkgdesc=Magnificent app which corrects your previous console command
+arch=('any')
+url=https://github.com/nvbn/thefuck;
+license=('MIT')
+depends=('python-setuptools' 'python-pathlib' 'python-psutil')
+makedepends=('git')
+checkdepends=('python-pytest' 'python-mock')
+install=thefuck.install
+source=(git+https://github.com/nvbn/thefuck.git#tag=$pkgver;)
+sha256sums=('SKIP')
+
+build() {
+  cd thefuck
+  python setup.py build
+}
+
+check() {
+  cd thefuck
+  PYTHONPATH=$PWD/build/lib:$PYTHONPATH py.test
+}
+
+package() {
+  cd thefuck
+  python3 setup.py install -O1 --prefix=/usr --root=$pkgdir/
+
+  install -Dm644 LICENSE.md $pkgdir/usr/share/licenses/$pkgname/LICENSE.md
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: thefuck.install
===
--- thefuck.install 2015-04-21 07:20:26 UTC (rev 131795)
+++ thefuck.install 2015-04-21 07:20:40 UTC (rev 131796)
@@ -1,3 +0,0 @@
-post_install() {
-  printf '%s\n' '= Add: alias fuck=''$(thefuck $(fc -ln -1))'' to your 
.bashrc or .zshrc.'
-}

Copied: thefuck/repos/community-any/thefuck.install (from rev 131795, 
thefuck/trunk/thefuck.install)
===
--- thefuck.install (rev 0)
+++ thefuck.install 2015-04-21 07:20:40 UTC (rev 131796)
@@ -0,0 +1,3 @@
+post_install() {
+  printf '%s\n' '= Add: alias fuck=''$(thefuck $(fc -ln -1))'' to your 
.bashrc or .zshrc.'
+}


[arch-commits] Commit in thefuck/repos/community-any (4 files)

2015-04-21 Thread Felix Yan
Date: Tuesday, April 21, 2015 @ 09:08:50
  Author: fyan
Revision: 131794

archrelease: copy trunk to community-any

Added:
  thefuck/repos/community-any/PKGBUILD
(from rev 131793, thefuck/trunk/PKGBUILD)
  thefuck/repos/community-any/thefuck.install
(from rev 131793, thefuck/trunk/thefuck.install)
Deleted:
  thefuck/repos/community-any/PKGBUILD
  thefuck/repos/community-any/thefuck.install

-+
 PKGBUILD|   70 +++---
 thefuck.install |6 ++--
 2 files changed, 38 insertions(+), 38 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-04-21 07:08:35 UTC (rev 131793)
+++ PKGBUILD2015-04-21 07:08:50 UTC (rev 131794)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-
-pkgname=thefuck
-pkgver=1.18
-pkgrel=1
-pkgdesc=Magnificent app which corrects your previous console command
-arch=('any')
-url=https://github.com/nvbn/thefuck;
-license=('MIT')
-depends=('python-setuptools' 'python-pathlib' 'python-psutil')
-makedepends=('git')
-checkdepends=('python-pytest' 'python-mock')
-install=thefuck.install
-source=(git+https://github.com/nvbn/thefuck.git#tag=$pkgver;)
-sha256sums=('SKIP')
-
-build() {
-  cd thefuck
-  python setup.py build
-}
-
-check() {
-  cd thefuck
-  PYTHONPATH=$PWD/build/lib:$PYTHONPATH py.test
-}
-
-package() {
-  cd thefuck
-  python3 setup.py install -O1 --prefix=/usr --root=$pkgdir/
-
-  install -Dm644 LICENSE.md $pkgdir/usr/share/licenses/$pkgname/LICENSE.md
-}
-
-# vim:set ts=2 sw=2 et:

Copied: thefuck/repos/community-any/PKGBUILD (from rev 131793, 
thefuck/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-04-21 07:08:50 UTC (rev 131794)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+
+pkgname=thefuck
+pkgver=1.19
+pkgrel=1
+pkgdesc=Magnificent app which corrects your previous console command
+arch=('any')
+url=https://github.com/nvbn/thefuck;
+license=('MIT')
+depends=('python-setuptools' 'python-pathlib' 'python-psutil')
+makedepends=('git')
+checkdepends=('python-pytest' 'python-mock')
+install=thefuck.install
+source=(git+https://github.com/nvbn/thefuck.git#tag=$pkgver;)
+sha256sums=('SKIP')
+
+build() {
+  cd thefuck
+  python setup.py build
+}
+
+check() {
+  cd thefuck
+  PYTHONPATH=$PWD/build/lib:$PYTHONPATH py.test
+}
+
+package() {
+  cd thefuck
+  python3 setup.py install -O1 --prefix=/usr --root=$pkgdir/
+
+  install -Dm644 LICENSE.md $pkgdir/usr/share/licenses/$pkgname/LICENSE.md
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: thefuck.install
===
--- thefuck.install 2015-04-21 07:08:35 UTC (rev 131793)
+++ thefuck.install 2015-04-21 07:08:50 UTC (rev 131794)
@@ -1,3 +0,0 @@
-post_install() {
-  printf '%s\n' '= Add: alias fuck=''$(thefuck $(fc -ln -1))'' to your 
.bashrc or .zshrc.'
-}

Copied: thefuck/repos/community-any/thefuck.install (from rev 131793, 
thefuck/trunk/thefuck.install)
===
--- thefuck.install (rev 0)
+++ thefuck.install 2015-04-21 07:08:50 UTC (rev 131794)
@@ -0,0 +1,3 @@
+post_install() {
+  printf '%s\n' '= Add: alias fuck=''$(thefuck $(fc -ln -1))'' to your 
.bashrc or .zshrc.'
+}


[arch-commits] Commit in thefuck/repos/community-any (4 files)

2015-04-21 Thread Felix Yan
Date: Tuesday, April 21, 2015 @ 20:19:06
  Author: fyan
Revision: 131856

archrelease: copy trunk to community-any

Added:
  thefuck/repos/community-any/PKGBUILD
(from rev 131855, thefuck/trunk/PKGBUILD)
  thefuck/repos/community-any/thefuck.install
(from rev 131855, thefuck/trunk/thefuck.install)
Deleted:
  thefuck/repos/community-any/PKGBUILD
  thefuck/repos/community-any/thefuck.install

-+
 PKGBUILD|   70 +++---
 thefuck.install |6 ++--
 2 files changed, 38 insertions(+), 38 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-04-21 18:18:48 UTC (rev 131855)
+++ PKGBUILD2015-04-21 18:19:06 UTC (rev 131856)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-
-pkgname=thefuck
-pkgver=1.22
-pkgrel=1
-pkgdesc=Magnificent app which corrects your previous console command
-arch=('any')
-url=https://github.com/nvbn/thefuck;
-license=('MIT')
-depends=('python-setuptools' 'python-pathlib' 'python-psutil')
-makedepends=('git')
-checkdepends=('python-pytest' 'python-mock')
-install=thefuck.install
-source=(git+https://github.com/nvbn/thefuck.git#tag=$pkgver;)
-sha256sums=('SKIP')
-
-build() {
-  cd thefuck
-  python setup.py build
-}
-
-check() {
-  cd thefuck
-  PYTHONPATH=$PWD/build/lib:$PYTHONPATH py.test
-}
-
-package() {
-  cd thefuck
-  python3 setup.py install -O1 --prefix=/usr --root=$pkgdir/
-
-  install -Dm644 LICENSE.md $pkgdir/usr/share/licenses/$pkgname/LICENSE.md
-}
-
-# vim:set ts=2 sw=2 et:

Copied: thefuck/repos/community-any/PKGBUILD (from rev 131855, 
thefuck/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-04-21 18:19:06 UTC (rev 131856)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+
+pkgname=thefuck
+pkgver=1.23
+pkgrel=1
+pkgdesc=Magnificent app which corrects your previous console command
+arch=('any')
+url=https://github.com/nvbn/thefuck;
+license=('MIT')
+depends=('python-setuptools' 'python-pathlib' 'python-psutil')
+makedepends=('git')
+checkdepends=('python-pytest' 'python-mock')
+install=thefuck.install
+source=(git+https://github.com/nvbn/thefuck.git#tag=$pkgver;)
+sha256sums=('SKIP')
+
+build() {
+  cd thefuck
+  python setup.py build
+}
+
+check() {
+  cd thefuck
+  PYTHONPATH=$PWD/build/lib:$PYTHONPATH py.test
+}
+
+package() {
+  cd thefuck
+  python3 setup.py install -O1 --prefix=/usr --root=$pkgdir/
+
+  install -Dm644 LICENSE.md $pkgdir/usr/share/licenses/$pkgname/LICENSE.md
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: thefuck.install
===
--- thefuck.install 2015-04-21 18:18:48 UTC (rev 131855)
+++ thefuck.install 2015-04-21 18:19:06 UTC (rev 131856)
@@ -1,3 +0,0 @@
-post_install() {
-  printf '%s\n' '= Add: alias fuck=''$(thefuck $(fc -ln -1))'' to your 
.bashrc or .zshrc.'
-}

Copied: thefuck/repos/community-any/thefuck.install (from rev 131855, 
thefuck/trunk/thefuck.install)
===
--- thefuck.install (rev 0)
+++ thefuck.install 2015-04-21 18:19:06 UTC (rev 131856)
@@ -0,0 +1,3 @@
+post_install() {
+  printf '%s\n' '= Add: alias fuck=''$(thefuck $(fc -ln -1))'' to your 
.bashrc or .zshrc.'
+}


[arch-commits] Commit in thefuck/repos/community-any (4 files)

2015-04-21 Thread Felix Yan
Date: Tuesday, April 21, 2015 @ 09:38:06
  Author: fyan
Revision: 131804

archrelease: copy trunk to community-any

Added:
  thefuck/repos/community-any/PKGBUILD
(from rev 131803, thefuck/trunk/PKGBUILD)
  thefuck/repos/community-any/thefuck.install
(from rev 131803, thefuck/trunk/thefuck.install)
Deleted:
  thefuck/repos/community-any/PKGBUILD
  thefuck/repos/community-any/thefuck.install

-+
 PKGBUILD|   70 +++---
 thefuck.install |6 ++--
 2 files changed, 38 insertions(+), 38 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-04-21 07:37:52 UTC (rev 131803)
+++ PKGBUILD2015-04-21 07:38:06 UTC (rev 131804)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-
-pkgname=thefuck
-pkgver=1.20
-pkgrel=1
-pkgdesc=Magnificent app which corrects your previous console command
-arch=('any')
-url=https://github.com/nvbn/thefuck;
-license=('MIT')
-depends=('python-setuptools' 'python-pathlib' 'python-psutil')
-makedepends=('git')
-checkdepends=('python-pytest' 'python-mock')
-install=thefuck.install
-source=(git+https://github.com/nvbn/thefuck.git#tag=$pkgver;)
-sha256sums=('SKIP')
-
-build() {
-  cd thefuck
-  python setup.py build
-}
-
-check() {
-  cd thefuck
-  PYTHONPATH=$PWD/build/lib:$PYTHONPATH py.test
-}
-
-package() {
-  cd thefuck
-  python3 setup.py install -O1 --prefix=/usr --root=$pkgdir/
-
-  install -Dm644 LICENSE.md $pkgdir/usr/share/licenses/$pkgname/LICENSE.md
-}
-
-# vim:set ts=2 sw=2 et:

Copied: thefuck/repos/community-any/PKGBUILD (from rev 131803, 
thefuck/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-04-21 07:38:06 UTC (rev 131804)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+
+pkgname=thefuck
+pkgver=1.21
+pkgrel=1
+pkgdesc=Magnificent app which corrects your previous console command
+arch=('any')
+url=https://github.com/nvbn/thefuck;
+license=('MIT')
+depends=('python-setuptools' 'python-pathlib' 'python-psutil')
+makedepends=('git')
+checkdepends=('python-pytest' 'python-mock')
+install=thefuck.install
+source=(git+https://github.com/nvbn/thefuck.git#tag=$pkgver;)
+sha256sums=('SKIP')
+
+build() {
+  cd thefuck
+  python setup.py build
+}
+
+check() {
+  cd thefuck
+  PYTHONPATH=$PWD/build/lib:$PYTHONPATH py.test
+}
+
+package() {
+  cd thefuck
+  python3 setup.py install -O1 --prefix=/usr --root=$pkgdir/
+
+  install -Dm644 LICENSE.md $pkgdir/usr/share/licenses/$pkgname/LICENSE.md
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: thefuck.install
===
--- thefuck.install 2015-04-21 07:37:52 UTC (rev 131803)
+++ thefuck.install 2015-04-21 07:38:06 UTC (rev 131804)
@@ -1,3 +0,0 @@
-post_install() {
-  printf '%s\n' '= Add: alias fuck=''$(thefuck $(fc -ln -1))'' to your 
.bashrc or .zshrc.'
-}

Copied: thefuck/repos/community-any/thefuck.install (from rev 131803, 
thefuck/trunk/thefuck.install)
===
--- thefuck.install (rev 0)
+++ thefuck.install 2015-04-21 07:38:06 UTC (rev 131804)
@@ -0,0 +1,3 @@
+post_install() {
+  printf '%s\n' '= Add: alias fuck=''$(thefuck $(fc -ln -1))'' to your 
.bashrc or .zshrc.'
+}


[arch-commits] Commit in thefuck/repos/community-any (4 files)

2015-04-21 Thread Felix Yan
Date: Tuesday, April 21, 2015 @ 09:46:08
  Author: fyan
Revision: 131809

archrelease: copy trunk to community-any

Added:
  thefuck/repos/community-any/PKGBUILD
(from rev 131808, thefuck/trunk/PKGBUILD)
  thefuck/repos/community-any/thefuck.install
(from rev 131808, thefuck/trunk/thefuck.install)
Deleted:
  thefuck/repos/community-any/PKGBUILD
  thefuck/repos/community-any/thefuck.install

-+
 PKGBUILD|   70 +++---
 thefuck.install |6 ++--
 2 files changed, 38 insertions(+), 38 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-04-21 07:45:40 UTC (rev 131808)
+++ PKGBUILD2015-04-21 07:46:08 UTC (rev 131809)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-
-pkgname=thefuck
-pkgver=1.21
-pkgrel=1
-pkgdesc=Magnificent app which corrects your previous console command
-arch=('any')
-url=https://github.com/nvbn/thefuck;
-license=('MIT')
-depends=('python-setuptools' 'python-pathlib' 'python-psutil')
-makedepends=('git')
-checkdepends=('python-pytest' 'python-mock')
-install=thefuck.install
-source=(git+https://github.com/nvbn/thefuck.git#tag=$pkgver;)
-sha256sums=('SKIP')
-
-build() {
-  cd thefuck
-  python setup.py build
-}
-
-check() {
-  cd thefuck
-  PYTHONPATH=$PWD/build/lib:$PYTHONPATH py.test
-}
-
-package() {
-  cd thefuck
-  python3 setup.py install -O1 --prefix=/usr --root=$pkgdir/
-
-  install -Dm644 LICENSE.md $pkgdir/usr/share/licenses/$pkgname/LICENSE.md
-}
-
-# vim:set ts=2 sw=2 et:

Copied: thefuck/repos/community-any/PKGBUILD (from rev 131808, 
thefuck/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-04-21 07:46:08 UTC (rev 131809)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+
+pkgname=thefuck
+pkgver=1.22
+pkgrel=1
+pkgdesc=Magnificent app which corrects your previous console command
+arch=('any')
+url=https://github.com/nvbn/thefuck;
+license=('MIT')
+depends=('python-setuptools' 'python-pathlib' 'python-psutil')
+makedepends=('git')
+checkdepends=('python-pytest' 'python-mock')
+install=thefuck.install
+source=(git+https://github.com/nvbn/thefuck.git#tag=$pkgver;)
+sha256sums=('SKIP')
+
+build() {
+  cd thefuck
+  python setup.py build
+}
+
+check() {
+  cd thefuck
+  PYTHONPATH=$PWD/build/lib:$PYTHONPATH py.test
+}
+
+package() {
+  cd thefuck
+  python3 setup.py install -O1 --prefix=/usr --root=$pkgdir/
+
+  install -Dm644 LICENSE.md $pkgdir/usr/share/licenses/$pkgname/LICENSE.md
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: thefuck.install
===
--- thefuck.install 2015-04-21 07:45:40 UTC (rev 131808)
+++ thefuck.install 2015-04-21 07:46:08 UTC (rev 131809)
@@ -1,3 +0,0 @@
-post_install() {
-  printf '%s\n' '= Add: alias fuck=''$(thefuck $(fc -ln -1))'' to your 
.bashrc or .zshrc.'
-}

Copied: thefuck/repos/community-any/thefuck.install (from rev 131808, 
thefuck/trunk/thefuck.install)
===
--- thefuck.install (rev 0)
+++ thefuck.install 2015-04-21 07:46:08 UTC (rev 131809)
@@ -0,0 +1,3 @@
+post_install() {
+  printf '%s\n' '= Add: alias fuck=''$(thefuck $(fc -ln -1))'' to your 
.bashrc or .zshrc.'
+}


[arch-commits] Commit in thefuck/repos/community-any (4 files)

2015-04-21 Thread Felix Yan
Date: Wednesday, April 22, 2015 @ 06:24:18
  Author: fyan
Revision: 131866

archrelease: copy trunk to community-any

Added:
  thefuck/repos/community-any/PKGBUILD
(from rev 131865, thefuck/trunk/PKGBUILD)
  thefuck/repos/community-any/thefuck.install
(from rev 131865, thefuck/trunk/thefuck.install)
Deleted:
  thefuck/repos/community-any/PKGBUILD
  thefuck/repos/community-any/thefuck.install

-+
 PKGBUILD|   70 +++---
 thefuck.install |6 ++--
 2 files changed, 38 insertions(+), 38 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-04-22 04:23:47 UTC (rev 131865)
+++ PKGBUILD2015-04-22 04:24:18 UTC (rev 131866)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-
-pkgname=thefuck
-pkgver=1.23
-pkgrel=1
-pkgdesc=Magnificent app which corrects your previous console command
-arch=('any')
-url=https://github.com/nvbn/thefuck;
-license=('MIT')
-depends=('python-setuptools' 'python-pathlib' 'python-psutil')
-makedepends=('git')
-checkdepends=('python-pytest' 'python-mock')
-install=thefuck.install
-source=(git+https://github.com/nvbn/thefuck.git#tag=$pkgver;)
-sha256sums=('SKIP')
-
-build() {
-  cd thefuck
-  python setup.py build
-}
-
-check() {
-  cd thefuck
-  PYTHONPATH=$PWD/build/lib:$PYTHONPATH py.test
-}
-
-package() {
-  cd thefuck
-  python3 setup.py install -O1 --prefix=/usr --root=$pkgdir/
-
-  install -Dm644 LICENSE.md $pkgdir/usr/share/licenses/$pkgname/LICENSE.md
-}
-
-# vim:set ts=2 sw=2 et:

Copied: thefuck/repos/community-any/PKGBUILD (from rev 131865, 
thefuck/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-04-22 04:24:18 UTC (rev 131866)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+
+pkgname=thefuck
+pkgver=1.24
+pkgrel=1
+pkgdesc=Magnificent app which corrects your previous console command
+arch=('any')
+url=https://github.com/nvbn/thefuck;
+license=('MIT')
+depends=('python-setuptools' 'python-pathlib' 'python-psutil')
+makedepends=('git')
+checkdepends=('python-pytest' 'python-mock')
+install=thefuck.install
+source=(git+https://github.com/nvbn/thefuck.git#tag=$pkgver;)
+sha256sums=('SKIP')
+
+build() {
+  cd thefuck
+  python setup.py build
+}
+
+check() {
+  cd thefuck
+  PYTHONPATH=$PWD/build/lib:$PYTHONPATH py.test
+}
+
+package() {
+  cd thefuck
+  python3 setup.py install -O1 --prefix=/usr --root=$pkgdir/
+
+  install -Dm644 LICENSE.md $pkgdir/usr/share/licenses/$pkgname/LICENSE.md
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: thefuck.install
===
--- thefuck.install 2015-04-22 04:23:47 UTC (rev 131865)
+++ thefuck.install 2015-04-22 04:24:18 UTC (rev 131866)
@@ -1,3 +0,0 @@
-post_install() {
-  printf '%s\n' '= Add: alias fuck=''$(thefuck $(fc -ln -1))'' to your 
.bashrc or .zshrc.'
-}

Copied: thefuck/repos/community-any/thefuck.install (from rev 131865, 
thefuck/trunk/thefuck.install)
===
--- thefuck.install (rev 0)
+++ thefuck.install 2015-04-22 04:24:18 UTC (rev 131866)
@@ -0,0 +1,3 @@
+post_install() {
+  printf '%s\n' '= Add: alias fuck=''$(thefuck $(fc -ln -1))'' to your 
.bashrc or .zshrc.'
+}


[arch-commits] Commit in thefuck/repos/community-any (4 files)

2015-04-21 Thread Felix Yan
Date: Wednesday, April 22, 2015 @ 07:24:22
  Author: fyan
Revision: 131870

archrelease: copy trunk to community-any

Added:
  thefuck/repos/community-any/PKGBUILD
(from rev 131869, thefuck/trunk/PKGBUILD)
  thefuck/repos/community-any/thefuck.install
(from rev 131869, thefuck/trunk/thefuck.install)
Deleted:
  thefuck/repos/community-any/PKGBUILD
  thefuck/repos/community-any/thefuck.install

-+
 PKGBUILD|   70 +++---
 thefuck.install |6 ++--
 2 files changed, 38 insertions(+), 38 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2015-04-22 05:23:55 UTC (rev 131869)
+++ PKGBUILD2015-04-22 05:24:22 UTC (rev 131870)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan felixonm...@archlinux.org
-
-pkgname=thefuck
-pkgver=1.24
-pkgrel=1
-pkgdesc=Magnificent app which corrects your previous console command
-arch=('any')
-url=https://github.com/nvbn/thefuck;
-license=('MIT')
-depends=('python-setuptools' 'python-pathlib' 'python-psutil')
-makedepends=('git')
-checkdepends=('python-pytest' 'python-mock')
-install=thefuck.install
-source=(git+https://github.com/nvbn/thefuck.git#tag=$pkgver;)
-sha256sums=('SKIP')
-
-build() {
-  cd thefuck
-  python setup.py build
-}
-
-check() {
-  cd thefuck
-  PYTHONPATH=$PWD/build/lib:$PYTHONPATH py.test
-}
-
-package() {
-  cd thefuck
-  python3 setup.py install -O1 --prefix=/usr --root=$pkgdir/
-
-  install -Dm644 LICENSE.md $pkgdir/usr/share/licenses/$pkgname/LICENSE.md
-}
-
-# vim:set ts=2 sw=2 et:

Copied: thefuck/repos/community-any/PKGBUILD (from rev 131869, 
thefuck/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2015-04-22 05:24:22 UTC (rev 131870)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Felix Yan felixonm...@archlinux.org
+
+pkgname=thefuck
+pkgver=1.26
+pkgrel=1
+pkgdesc=Magnificent app which corrects your previous console command
+arch=('any')
+url=https://github.com/nvbn/thefuck;
+license=('MIT')
+depends=('python-setuptools' 'python-pathlib' 'python-psutil')
+makedepends=('git')
+checkdepends=('python-pytest' 'python-mock')
+install=thefuck.install
+source=(git+https://github.com/nvbn/thefuck.git#tag=$pkgver;)
+sha256sums=('SKIP')
+
+build() {
+  cd thefuck
+  python setup.py build
+}
+
+check() {
+  cd thefuck
+  PYTHONPATH=$PWD/build/lib:$PYTHONPATH py.test
+}
+
+package() {
+  cd thefuck
+  python3 setup.py install -O1 --prefix=/usr --root=$pkgdir/
+
+  install -Dm644 LICENSE.md $pkgdir/usr/share/licenses/$pkgname/LICENSE.md
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: thefuck.install
===
--- thefuck.install 2015-04-22 05:23:55 UTC (rev 131869)
+++ thefuck.install 2015-04-22 05:24:22 UTC (rev 131870)
@@ -1,3 +0,0 @@
-post_install() {
-  printf '%s\n' '= Add: alias fuck=''$(thefuck $(fc -ln -1))'' to your 
.bashrc or .zshrc.'
-}

Copied: thefuck/repos/community-any/thefuck.install (from rev 131869, 
thefuck/trunk/thefuck.install)
===
--- thefuck.install (rev 0)
+++ thefuck.install 2015-04-22 05:24:22 UTC (rev 131870)
@@ -0,0 +1,3 @@
+post_install() {
+  printf '%s\n' '= Add: alias fuck=''$(thefuck $(fc -ln -1))'' to your 
.bashrc or .zshrc.'
+}