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

2020-11-12 Thread Felix Yan via arch-commits
Date: Thursday, November 12, 2020 @ 19:40:43
  Author: felixonmars
Revision: 753570

upgpkg: bleachbit 4.0.0-4: Python 3.9 rebuild

Modified:
  bleachbit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-11-12 19:40:34 UTC (rev 753569)
+++ PKGBUILD2020-11-12 19:40:43 UTC (rev 753570)
@@ -8,7 +8,7 @@
 
 pkgname=bleachbit
 pkgver=4.0.0
-pkgrel=3
+pkgrel=4
 pkgdesc='Deletes unneeded files to free disk space and maintain privacy'
 arch=(any)
 url='https://www.bleachbit.org/'


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

2020-10-07 Thread Antonio Rojas via arch-commits
Date: Wednesday, October 7, 2020 @ 20:43:59
  Author: arojas
Revision: 720982

Use signed tag (FS#68128)

Modified:
  bleachbit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-10-07 20:43:23 UTC (rev 720981)
+++ PKGBUILD2020-10-07 20:43:59 UTC (rev 720982)
@@ -14,17 +14,18 @@
 url='https://www.bleachbit.org/'
 license=(GPL3)
 depends=(python-gobject gtk3)
-source=(https://download.bleachbit.org/$pkgname-$pkgver.tar.bz2
-
maximize-infinite-loop.patch::"https://github.com/bleachbit/bleachbit/commit/933ea605.patch";)
-sha256sums=('34dedf9d1f7545bcf039c309f9a8e2b06b71d2a44d27fcf675abd194a981c3b6'
-'005f9e4ab4c1ed39379b0e02a9e15c2a92083a912f85447fef9701b2ffd33466')
+makedepends=(git)
+source=(git+https://github.com/bleachbit/bleachbit.git#tag=v${pkgver}?signed)
+validpgpkeys=(A9E582E4054A159315EDC943D6D447B02B4D4C9D) # Andrew Ziem 

+sha256sums=('SKIP')
 
 prepare() {
-  patch -d $pkgname-$pkgver -p1 -i ../maximize-infinite-loop.patch # Fix 
infinite loop with maximized window
+  cd $pkgname
+  git cherry-pick -n 933ea60506e4805edc77b827c0cea902ad40e5b1 # Fix infinite 
loop with maximized window
 }
 
 package() {
-  cd $pkgname-$pkgver
+  cd $pkgname
 
   make prefix=/usr DESTDIR="$pkgdir" install
 }


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

2020-06-24 Thread Antonio Rojas via arch-commits
Date: Thursday, June 25, 2020 @ 06:09:22
  Author: arojas
Revision: 652688

Fix infinite loop with maximized window (FS#66571)

Modified:
  bleachbit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-06-25 02:29:47 UTC (rev 652687)
+++ PKGBUILD2020-06-25 06:09:22 UTC (rev 652688)
@@ -8,15 +8,21 @@
 
 pkgname=bleachbit
 pkgver=4.0.0
-pkgrel=2
+pkgrel=3
 pkgdesc='Deletes unneeded files to free disk space and maintain privacy'
 arch=(any)
 url='https://www.bleachbit.org/'
 license=(GPL3)
 depends=(python-gobject gtk3)
-source=(https://download.bleachbit.org/$pkgname-$pkgver.tar.bz2)
-sha256sums=('34dedf9d1f7545bcf039c309f9a8e2b06b71d2a44d27fcf675abd194a981c3b6')
+source=(https://download.bleachbit.org/$pkgname-$pkgver.tar.bz2
+
maximize-infinite-loop.patch::"https://github.com/bleachbit/bleachbit/commit/933ea605.patch";)
+sha256sums=('34dedf9d1f7545bcf039c309f9a8e2b06b71d2a44d27fcf675abd194a981c3b6'
+'005f9e4ab4c1ed39379b0e02a9e15c2a92083a912f85447fef9701b2ffd33466')
 
+prepare() {
+  patch -d $pkgname-$pkgver -p1 -i ../maximize-infinite-loop.patch # Fix 
infinite loop with maximized window
+}
+
 package() {
   cd $pkgname-$pkgver
 


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

2020-04-23 Thread Antonio Rojas via arch-commits
Date: Thursday, April 23, 2020 @ 08:54:53
  Author: arojas
Revision: 617807

Drop python-scandir dependency, included in python >=3.5

Modified:
  bleachbit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-04-23 08:54:50 UTC (rev 617806)
+++ PKGBUILD2020-04-23 08:54:53 UTC (rev 617807)
@@ -8,12 +8,12 @@
 
 pkgname=bleachbit
 pkgver=4.0.0
-pkgrel=1
+pkgrel=2
 pkgdesc='Deletes unneeded files to free disk space and maintain privacy'
 arch=(any)
 url='https://www.bleachbit.org/'
 license=(GPL3)
-depends=(python-gobject python-scandir gtk3)
+depends=(python-gobject gtk3)
 source=(https://download.bleachbit.org/$pkgname-$pkgver.tar.bz2)
 sha256sums=('34dedf9d1f7545bcf039c309f9a8e2b06b71d2a44d27fcf675abd194a981c3b6')
 


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

2020-04-19 Thread Antonio Rojas via arch-commits
Date: Sunday, April 19, 2020 @ 17:26:16
  Author: arojas
Revision: 616533

Update to 4.0.0

Modified:
  bleachbit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-04-19 17:23:13 UTC (rev 616532)
+++ PKGBUILD2020-04-19 17:26:16 UTC (rev 616533)
@@ -7,21 +7,16 @@
 # Contributor: Nuno Araujo 
 
 pkgname=bleachbit
-pkgver=3.2.0
+pkgver=4.0.0
 pkgrel=1
 pkgdesc='Deletes unneeded files to free disk space and maintain privacy'
 arch=(any)
 url='https://www.bleachbit.org/'
 license=(GPL3)
-depends=(python2-gobject python2-scandir gtk3)
+depends=(python-gobject python-scandir gtk3)
 source=(https://download.bleachbit.org/$pkgname-$pkgver.tar.bz2)
-sha256sums=('a1acb2200642f980cde4e7a57abdcb6fff60e0bfb7fd5939073e47178fbd5feb')
+sha256sums=('34dedf9d1f7545bcf039c309f9a8e2b06b71d2a44d27fcf675abd194a981c3b6')
 
-prepare() {
-  cd $pkgname-$pkgver
-  sed -e 's|python|python2|g' -i bleachbit/CLI.py
-}
-
 package() {
   cd $pkgname-$pkgver
 


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

2020-02-06 Thread Antonio Rojas via arch-commits
Date: Thursday, February 6, 2020 @ 08:41:31
  Author: arojas
Revision: 563597

Update to 3.2.0

Modified:
  bleachbit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-02-06 07:06:42 UTC (rev 563596)
+++ PKGBUILD2020-02-06 08:41:31 UTC (rev 563597)
@@ -7,8 +7,8 @@
 # Contributor: Nuno Araujo 
 
 pkgname=bleachbit
-pkgver=3.0
-pkgrel=2
+pkgver=3.2.0
+pkgrel=1
 pkgdesc='Deletes unneeded files to free disk space and maintain privacy'
 arch=(any)
 url='https://www.bleachbit.org/'
@@ -15,7 +15,7 @@
 license=(GPL3)
 depends=(python2-gobject python2-scandir gtk3)
 source=(https://download.bleachbit.org/$pkgname-$pkgver.tar.bz2)
-sha256sums=('ed18cb522cc375589cc0c94fbfaf6d7ee6fb94a8a1261400252b1ca32b4cdaa2')
+sha256sums=('a1acb2200642f980cde4e7a57abdcb6fff60e0bfb7fd5939073e47178fbd5feb')
 
 prepare() {
   cd $pkgname-$pkgver


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

2020-01-12 Thread Antonio Rojas via arch-commits
Date: Sunday, January 12, 2020 @ 19:21:17
  Author: arojas
Revision: 552254

Add python2-scandir dependency (FS#65121)

Modified:
  bleachbit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-01-12 17:51:54 UTC (rev 552253)
+++ PKGBUILD2020-01-12 19:21:17 UTC (rev 552254)
@@ -8,12 +8,12 @@
 
 pkgname=bleachbit
 pkgver=3.0
-pkgrel=1
+pkgrel=2
 pkgdesc='Deletes unneeded files to free disk space and maintain privacy'
 arch=(any)
 url='https://www.bleachbit.org/'
 license=(GPL3)
-depends=(python2-gobject gtk3)
+depends=(python2-gobject python2-scandir gtk3)
 source=(https://download.bleachbit.org/$pkgname-$pkgver.tar.bz2)
 sha256sums=('ed18cb522cc375589cc0c94fbfaf6d7ee6fb94a8a1261400252b1ca32b4cdaa2')
 


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

2019-10-23 Thread Antonio Rojas via arch-commits
Date: Thursday, October 24, 2019 @ 06:27:53
  Author: arojas
Revision: 518782

Update to 3.0

Modified:
  bleachbit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-10-24 03:33:21 UTC (rev 518781)
+++ PKGBUILD2019-10-24 06:27:53 UTC (rev 518782)
@@ -7,19 +7,19 @@
 # Contributor: Nuno Araujo 
 
 pkgname=bleachbit
-pkgver=2.2
-pkgrel=2
+pkgver=3.0
+pkgrel=1
 pkgdesc='Deletes unneeded files to free disk space and maintain privacy'
 arch=(any)
 url='https://www.bleachbit.org/'
 license=(GPL3)
-depends=(pygtk)
+depends=(python2-gobject gtk3)
 source=(https://download.bleachbit.org/$pkgname-$pkgver.tar.bz2)
-sha256sums=('0318cd1bc83655971c9ffd6bf27f4866bbe57381e92cfbcf8a2a6833075b49fa')
+sha256sums=('ed18cb522cc375589cc0c94fbfaf6d7ee6fb94a8a1261400252b1ca32b4cdaa2')
 
 prepare() {
   cd $pkgname-$pkgver
-  sed -e 's|python|python2|g' -i Makefile -i bleachbit/CLI.py
+  sed -e 's|python|python2|g' -i bleachbit/CLI.py
 }
 
 package() {


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

2019-09-08 Thread Antonio Rojas via arch-commits
Date: Sunday, September 8, 2019 @ 16:46:36
  Author: arojas
Revision: 509004

Generate bytecode for the correct python version

Modified:
  bleachbit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-09-08 16:15:53 UTC (rev 509003)
+++ PKGBUILD2019-09-08 16:46:36 UTC (rev 509004)
@@ -8,18 +8,22 @@
 
 pkgname=bleachbit
 pkgver=2.2
-pkgrel=1
+pkgrel=2
 pkgdesc='Deletes unneeded files to free disk space and maintain privacy'
 arch=(any)
 url='https://www.bleachbit.org/'
 license=(GPL3)
 depends=(pygtk)
-makedepends=(python)
 source=(https://download.bleachbit.org/$pkgname-$pkgver.tar.bz2)
 sha256sums=('0318cd1bc83655971c9ffd6bf27f4866bbe57381e92cfbcf8a2a6833075b49fa')
 
+prepare() {
+  cd $pkgname-$pkgver
+  sed -e 's|python|python2|g' -i Makefile -i bleachbit/CLI.py
+}
+
 package() {
-cd $pkgname-$pkgver
+  cd $pkgname-$pkgver
 
-make prefix=/usr DESTDIR="$pkgdir" PYTHON=python2 install
+  make prefix=/usr DESTDIR="$pkgdir" install
 }


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

2019-03-20 Thread Antonio Rojas via arch-commits
Date: Wednesday, March 20, 2019 @ 07:20:57
  Author: arojas
Revision: 442832

Update to 2.2

Modified:
  bleachbit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-03-20 02:50:51 UTC (rev 442831)
+++ PKGBUILD2019-03-20 07:20:57 UTC (rev 442832)
@@ -7,7 +7,7 @@
 # Contributor: Nuno Araujo 
 
 pkgname=bleachbit
-pkgver=2.0
+pkgver=2.2
 pkgrel=1
 pkgdesc='Deletes unneeded files to free disk space and maintain privacy'
 arch=(any)
@@ -14,17 +14,12 @@
 url='https://www.bleachbit.org/'
 license=(GPL3)
 depends=(pygtk)
+makedepends=(python)
 source=(https://download.bleachbit.org/$pkgname-$pkgver.tar.bz2)
-sha256sums=('e9b7bec39574af68e64bf1a0fa70cbebc421a18978fa83974878044bfa47495f')
+sha256sums=('0318cd1bc83655971c9ffd6bf27f4866bbe57381e92cfbcf8a2a6833075b49fa')
 
 package() {
 cd $pkgname-$pkgver
 
-for file in $(find . -name '*.py' -print); do
-sed -i -e 's_^#!.*/usr/bin/python_#!/usr/bin/python2_' \
-   -e 's_^#!.*/usr/bin/env.*python_#!/usr/bin/env python2_' "$file"
-done
-sed -i 's/python/python2/g' Makefile
-
 make prefix=/usr DESTDIR="$pkgdir" PYTHON=python2 install
 }


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

2018-02-28 Thread Antonio Rojas via arch-commits
Date: Wednesday, February 28, 2018 @ 08:14:37
  Author: arojas
Revision: 299886

Update to 2.0

Modified:
  bleachbit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-02-28 07:48:40 UTC (rev 299885)
+++ PKGBUILD2018-02-28 08:14:37 UTC (rev 299886)
@@ -8,15 +8,15 @@
 # Contributor: Nuno Araujo 
 
 pkgname=bleachbit
-pkgver=1.12
+pkgver=2.0
 pkgrel=1
 pkgdesc='Deletes unneeded files to free disk space and maintain privacy'
 arch=(any)
 url='https://www.bleachbit.org/'
 license=(GPL3)
-depends=(pygtk desktop-file-utils gtk-update-icon-cache hicolor-icon-theme)
-source=(https://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.bz2)
-md5sums=('b59155f5d0c1ec34a7065e1380482909')
+depends=(pygtk)
+source=(https://download.bleachbit.org/$pkgname-$pkgver.tar.bz2)
+sha256sums=('e9b7bec39574af68e64bf1a0fa70cbebc421a18978fa83974878044bfa47495f')
 
 package() {
 cd $pkgname-$pkgver


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

2017-08-22 Thread Antonio Rojas
Date: Tuesday, August 22, 2017 @ 16:37:07
  Author: arojas
Revision: 252961

https

Modified:
  bleachbit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-08-22 16:36:51 UTC (rev 252960)
+++ PKGBUILD2017-08-22 16:37:07 UTC (rev 252961)
@@ -12,10 +12,10 @@
 pkgrel=1
 pkgdesc='Deletes unneeded files to free disk space and maintain privacy'
 arch=(any)
-url='http://bleachbit.sourceforge.net/'
+url='https://www.bleachbit.org/'
 license=(GPL3)
 depends=(pygtk desktop-file-utils gtk-update-icon-cache hicolor-icon-theme)
-source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.bz2)
+source=(https://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.bz2)
 md5sums=('b59155f5d0c1ec34a7065e1380482909')
 
 package() {


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

2016-07-01 Thread Antonio Rojas
Date: Friday, July 1, 2016 @ 22:26:22
  Author: arojas
Revision: 181763

Update to 1.12

Modified:
  bleachbit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-07-01 21:12:27 UTC (rev 181762)
+++ PKGBUILD2016-07-01 22:26:22 UTC (rev 181763)
@@ -8,8 +8,8 @@
 # Contributor: Nuno Araujo 
 
 pkgname=bleachbit
-pkgver=1.10
-pkgrel=2
+pkgver=1.12
+pkgrel=1
 pkgdesc='Deletes unneeded files to free disk space and maintain privacy'
 arch=(any)
 url='http://bleachbit.sourceforge.net/'
@@ -16,7 +16,7 @@
 license=(GPL3)
 depends=(pygtk desktop-file-utils gtk-update-icon-cache hicolor-icon-theme)
 source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.bz2)
-md5sums=('6741c0db9a01193504c0cfc8bde6185a')
+md5sums=('b59155f5d0c1ec34a7065e1380482909')
 
 package() {
 cd $pkgname-$pkgver


[arch-commits] Commit in bleachbit/trunk (PKGBUILD bleachbit.install)

2016-04-27 Thread Antonio Rojas
Date: Wednesday, April 27, 2016 @ 21:23:50
  Author: arojas
Revision: 172158

Hooks

Modified:
  bleachbit/trunk/PKGBUILD
Deleted:
  bleachbit/trunk/bleachbit.install

---+
 PKGBUILD  |3 +--
 bleachbit.install |   12 
 2 files changed, 1 insertion(+), 14 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-04-27 19:20:38 UTC (rev 172157)
+++ PKGBUILD2016-04-27 19:23:50 UTC (rev 172158)
@@ -9,13 +9,12 @@
 
 pkgname=bleachbit
 pkgver=1.10
-pkgrel=1
+pkgrel=2
 pkgdesc='Deletes unneeded files to free disk space and maintain privacy'
 arch=(any)
 url='http://bleachbit.sourceforge.net/'
 license=(GPL3)
 depends=(pygtk desktop-file-utils gtk-update-icon-cache hicolor-icon-theme)
-install=$pkgname.install
 source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.bz2)
 md5sums=('6741c0db9a01193504c0cfc8bde6185a')
 

Deleted: bleachbit.install
===
--- bleachbit.install   2016-04-27 19:20:38 UTC (rev 172157)
+++ bleachbit.install   2016-04-27 19:23:50 UTC (rev 172158)
@@ -1,12 +0,0 @@
-post_install() {
-  gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
-  update-desktop-database -q
-}
-
-post_upgrade() {
-  post_install $1
-}
-
-post_remove() {
-  post_install $1
-}


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

2016-01-01 Thread Antonio Rojas
Date: Friday, January 1, 2016 @ 21:56:21
  Author: arojas
Revision: 155148

Update to 1.10

Modified:
  bleachbit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-01-01 20:53:44 UTC (rev 155147)
+++ PKGBUILD2016-01-01 20:56:21 UTC (rev 155148)
@@ -8,7 +8,7 @@
 # Contributor: Nuno Araujo 
 
 pkgname=bleachbit
-pkgver=1.8
+pkgver=1.10
 pkgrel=1
 pkgdesc='Deletes unneeded files to free disk space and maintain privacy'
 arch=(any)
@@ -17,7 +17,7 @@
 depends=(pygtk desktop-file-utils gtk-update-icon-cache hicolor-icon-theme)
 install=$pkgname.install
 source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.bz2)
-md5sums=('433f9d655c366aac50ca2d5f9aa8b86d')
+md5sums=('6741c0db9a01193504c0cfc8bde6185a')
 
 package() {
 cd $pkgname-$pkgver


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

2015-06-20 Thread Antonio Rojas
Date: Saturday, June 20, 2015 @ 10:35:54
  Author: arojas
Revision: 135636

Update to 1.8

Modified:
  bleachbit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-06-20 03:55:13 UTC (rev 135635)
+++ PKGBUILD2015-06-20 08:35:54 UTC (rev 135636)
@@ -1,4 +1,5 @@
 # $Id$
+# Maintainer: Antonio Rojas 
 # Contributor: Bartłomiej Piotrowski 
 # Contributor: yugrotavele 
 # Contributor: Arkham 
@@ -7,17 +8,16 @@
 # Contributor: Nuno Araujo 
 
 pkgname=bleachbit
-pkgver=1.6
+pkgver=1.8
 pkgrel=1
 pkgdesc='Deletes unneeded files to free disk space and maintain privacy'
-arch=('any')
+arch=(any)
 url='http://bleachbit.sourceforge.net/'
-license=('GPL3')
-depends=('pygtk' 'python2' 'desktop-file-utils' 'gtk-update-icon-cache'
- 'hicolor-icon-theme')
+license=(GPL3)
+depends=(pygtk desktop-file-utils gtk-update-icon-cache hicolor-icon-theme)
 install=$pkgname.install
 source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.bz2)
-md5sums=('10e12cd3896dcfee2c4e56c83850298d')
+md5sums=('433f9d655c366aac50ca2d5f9aa8b86d')
 
 package() {
 cd $pkgname-$pkgver


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

2014-11-19 Thread Felix Yan
Date: Wednesday, November 19, 2014 @ 16:25:36
  Author: fyan
Revision: 122756

upgpkg: bleachbit 1.6-1

upstream new release

Modified:
  bleachbit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-11-19 14:58:20 UTC (rev 122755)
+++ PKGBUILD2014-11-19 15:25:36 UTC (rev 122756)
@@ -7,7 +7,7 @@
 # Contributor: Nuno Araujo 
 
 pkgname=bleachbit
-pkgver=1.4
+pkgver=1.6
 pkgrel=1
 pkgdesc='Deletes unneeded files to free disk space and maintain privacy'
 arch=('any')
@@ -17,7 +17,7 @@
  'hicolor-icon-theme')
 install=$pkgname.install
 source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.bz2)
-md5sums=('f2d7eb4b61c593338d7a8579473a288c')
+md5sums=('10e12cd3896dcfee2c4e56c83850298d')
 
 package() {
 cd $pkgname-$pkgver


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

2014-09-09 Thread Felix Yan
Date: Wednesday, September 10, 2014 @ 05:48:23
  Author: fyan
Revision: 118738

upgpkg: bleachbit 1.4-1

Modified:
  bleachbit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-09-10 02:06:27 UTC (rev 118737)
+++ PKGBUILD2014-09-10 03:48:23 UTC (rev 118738)
@@ -7,17 +7,17 @@
 # Contributor: Nuno Araujo 
 
 pkgname=bleachbit
-pkgver=1.2
+pkgver=1.4
 pkgrel=1
 pkgdesc='Deletes unneeded files to free disk space and maintain privacy'
 arch=('any')
 url='http://bleachbit.sourceforge.net/'
 license=('GPL3')
-depends=('pygtk>=2' 'python2>=2.6' 'desktop-file-utils' 'gtk-update-icon-cache'
+depends=('pygtk' 'python2' 'desktop-file-utils' 'gtk-update-icon-cache'
  'hicolor-icon-theme')
 install=$pkgname.install
 source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.bz2)
-md5sums=('a4832f2333b76e5647337b8ac2a387a7')
+md5sums=('f2d7eb4b61c593338d7a8579473a288c')
 
 package() {
 cd $pkgname-$pkgver



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

2014-06-11 Thread Eric Bélanger
Date: Thursday, June 12, 2014 @ 04:01:06
  Author: eric
Revision: 113047

upgpkg: bleachbit 1.2-1

Upstream update

Modified:
  bleachbit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-06-11 23:49:50 UTC (rev 113046)
+++ PKGBUILD2014-06-12 02:01:06 UTC (rev 113047)
@@ -7,7 +7,7 @@
 # Contributor: Nuno Araujo 
 
 pkgname=bleachbit
-pkgver=1.0
+pkgver=1.2
 pkgrel=1
 pkgdesc='Deletes unneeded files to free disk space and maintain privacy'
 arch=('any')
@@ -17,7 +17,7 @@
  'hicolor-icon-theme')
 install=$pkgname.install
 source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.bz2)
-md5sums=('2a7a4c587cf88050cc20fbb30bb64813')
+md5sums=('a4832f2333b76e5647337b8ac2a387a7')
 
 package() {
 cd $pkgname-$pkgver
@@ -28,5 +28,5 @@
 done
 sed -i 's/python/python2/g' Makefile
 
-make prefix=/usr DESTDIR=$pkgdir PYTHON=python2 install
+make prefix=/usr DESTDIR="$pkgdir" PYTHON=python2 install
 }



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

2014-02-02 Thread Bartłomiej Piotrowski
Date: Sunday, February 2, 2014 @ 13:03:00
  Author: bpiotrowski
Revision: 105179

update maintainer information

Modified:
  bleachbit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-02-02 12:02:53 UTC (rev 105178)
+++ PKGBUILD2014-02-02 12:03:00 UTC (rev 105179)
@@ -1,5 +1,5 @@
 # $Id$
-# Maintainer:  Bartłomiej Piotrowski 
+# Contributor: Bartłomiej Piotrowski 
 # Contributor: yugrotavele 
 # Contributor: Arkham 
 # Contributor: Christoph Zeiler 



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

2013-11-17 Thread Bartłomiej Piotrowski
Date: Sunday, November 17, 2013 @ 13:54:25
  Author: bpiotrowski
Revision: 101109

upgpkg: bleachbit 1.0-1

- new upstream release

Modified:
  bleachbit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-11-17 12:54:24 UTC (rev 101108)
+++ PKGBUILD2013-11-17 12:54:25 UTC (rev 101109)
@@ -7,7 +7,7 @@
 # Contributor: Nuno Araujo 
 
 pkgname=bleachbit
-pkgver=0.9.6
+pkgver=1.0
 pkgrel=1
 pkgdesc='Deletes unneeded files to free disk space and maintain privacy'
 arch=('any')
@@ -17,14 +17,14 @@
  'hicolor-icon-theme')
 install=$pkgname.install
 source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.bz2)
-md5sums=('f4e47d0f0fdc47ea2b2286feeaeec2b3')
+md5sums=('2a7a4c587cf88050cc20fbb30bb64813')
 
 package() {
-cd $srcdir/$pkgname-$pkgver
+cd $pkgname-$pkgver
 
 for file in $(find . -name '*.py' -print); do
 sed -i -e 's_^#!.*/usr/bin/python_#!/usr/bin/python2_' \
-   -e 's_^#!.*/usr/bin/env.*python_#!/usr/bin/env python2_' $file
+   -e 's_^#!.*/usr/bin/env.*python_#!/usr/bin/env python2_' "$file"
 done
 sed -i 's/python/python2/g' Makefile
 



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

2013-07-04 Thread Bartłomiej Piotrowski
Date: Thursday, July 4, 2013 @ 22:28:19
  Author: bpiotrowski
Revision: 93505

upgpkg: bleachbit 0.9.6-1

- upstream release

Modified:
  bleachbit/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2013-07-04 20:10:31 UTC (rev 93504)
+++ PKGBUILD2013-07-04 20:28:19 UTC (rev 93505)
@@ -7,7 +7,7 @@
 # Contributor: Nuno Araujo 
 
 pkgname=bleachbit
-pkgver=0.9.5
+pkgver=0.9.6
 pkgrel=1
 pkgdesc='Deletes unneeded files to free disk space and maintain privacy'
 arch=('any')
@@ -17,14 +17,14 @@
  'hicolor-icon-theme')
 install=$pkgname.install
 source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.bz2)
-md5sums=('a635f6eba762f91d8897ce9e8d5b6232')
+md5sums=('f4e47d0f0fdc47ea2b2286feeaeec2b3')
 
 package() {
 cd $srcdir/$pkgname-$pkgver
 
 for file in $(find . -name '*.py' -print); do
-sed -i 's_^#!.*/usr/bin/python_#!/usr/bin/python2_' $file
-sed -i 's_^#!.*/usr/bin/env.*python_#!/usr/bin/env python2_' $file
+sed -i -e 's_^#!.*/usr/bin/python_#!/usr/bin/python2_' \
+   -e 's_^#!.*/usr/bin/env.*python_#!/usr/bin/env python2_' $file
 done
 sed -i 's/python/python2/g' Makefile