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

2020-07-07 Thread Felix Yan via arch-commits
Date: Tuesday, July 7, 2020 @ 14:07:25
  Author: felixonmars
Revision: 658711

upgpkg: bup 0.30-2: reproducibility rebuild

Modified:
  bup/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-07-07 14:07:13 UTC (rev 658710)
+++ PKGBUILD2020-07-07 14:07:25 UTC (rev 658711)
@@ -8,7 +8,7 @@
 
 pkgname=bup
 pkgver=0.30
-pkgrel=1
+pkgrel=2
 pkgdesc='Efficient backup system based on the git packfile format'
 arch=('x86_64')
 url='https://bup.github.io/'


[arch-commits] Commit in bup/trunk (PKGBUILD changelog.md)

2019-10-17 Thread Christian Rebischke via arch-commits
Date: Thursday, October 17, 2019 @ 17:55:46
  Author: shibumi
Revision: 516504

upgpkg: bup 0.30-1

Added:
  bup/trunk/changelog.md
Modified:
  bup/trunk/PKGBUILD

--+
 PKGBUILD |5 +-
 changelog.md |  133 +
 2 files changed, 136 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-10-17 17:55:44 UTC (rev 516503)
+++ PKGBUILD2019-10-17 17:55:46 UTC (rev 516504)
@@ -7,7 +7,7 @@
 # Contributor: SanskritFritz (gmail)
 
 pkgname=bup
-pkgver=0.29.3
+pkgver=0.30
 pkgrel=1
 pkgdesc='Efficient backup system based on the git packfile format'
 arch=('x86_64')
@@ -18,7 +18,8 @@
 checkdepends=('rsync' 'python2-tornado')
 optdepends=('python2-tornado: for bup web')
 
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/bup/bup/archive/${pkgver}.tar.gz;)
-sha512sums=('4f500c214a37f781daf064de3a4de27a40be890aadb1d5102b94ca9dc1d52e01ca3884a79412beaac0f4007287df24aef225aedb65f1afb60d4119e4b467f789')
+sha512sums=('8c500568ca2609e6b437b3a67c08976bbdb6fbad39c77eb7e74e503b5ffdc1cbe1e51b5e834e7db0481a3cfc38a55aeae49a8e53657994524b612e54136e7af1')
+changelog=changelog.md
 
 build() {
   cd "${pkgname}-${pkgver}"

Added: changelog.md
===
--- changelog.md(rev 0)
+++ changelog.md2019-10-17 17:55:46 UTC (rev 516504)
@@ -0,0 +1,133 @@
+
+Notable changes in 0.30 as compared to 0.29.3
+=
+
+May require attention
+-
+
+* The minimum `git` version required is now 1.5.6.
+
+* The `prune-older` command now keeps the most recent save in each
+  period group (day, week, month, ...) rather than the oldest.
+
+* `bup` now adds a zero-padded suffix to the names of saves with the
+  same timestamp (e.g. 1970-01-01-214640-07) in order to avoid
+  duplicates.  The sequence number currently represents the save's
+  reversed position in default `git rev-list` order, so that given:
+
+  /foo/1970-01-01-214640-09
+  /foo/1970-01-01-214640-10
+
+  In the normal case, the -10 save would be the next save made after
+  -09 (and the -09 save would be the single parent commit for -10).
+
+* `bup` is not currently compatible with Python 3 and will now refuse
+  to run if the Python version is not 2 unless
+  `BUP_ALLOW_UNEXPECTED_PYTHON_VERSION=true` is set in the environment
+  (which can be useful for development and testing).
+
+* `bup ls -s` now reports the tree hash for commits unless
+  `--commit-hash` is also specified.
+
+General
+---
+
+* `bup get` has been added.  This command allows the transfer or
+  rewriting of data within and between repositories, local or remote.
+  Among other things, it can be used to append remote saves to a local
+  branch, which by extension supports merging repositories.  See
+  `bup-get(1)` for further information, and please note, this is a new
+  *EXPERIMENTAL* command that can (intentionally) modify your data in
+  destructive ways.  It is potentially much more dangerous than most
+  `bup` commands.  Treat with caution.
+
+* `bup` can now restore directly from a remote repository via `bup
+  restore -r host:path ...`.  See `bup-restore(1)` for more
+  information.
+
+* `bup ls` can now report information for remote repositories via `bup
+  ls -r host:path ...`.  See `bup-ls(1)` for more information.
+
+* `bup` should respect the git pack.packSizeLimit setting when writing
+  packfiles, though at the moment it will only affect a remote
+  repository when the option is set there directly.
+
+* `bup save` now stores the size for all links and normal files.  For
+  directories saved using this new format retrieving file sizes for
+  larger files should be notably less expensive.  Among other things
+  this may improve the performance of commands like `bup ls -l` or
+  `find /some/fuse/dir -ls`.
+
+* The VFS (Virtual File System) that underlies many operations, and
+  provides the basis for commands like `restore`, `ls`, etc. has been
+  rewritten in a way that makes remote repository access easier,
+  should decrease the memory footprint in some cases (e.g. for bup
+  fuse), and should make it easier to provide more selective caching.
+  At the moment, data is just evicted at random once a threshold is
+  reached.
+
+* A `--noop <--blobs|--tree>` option has been added to `bup split`
+  which prints the resulting id without storing the data in the
+  repository.
+
+Bugs
+
+
+* The way `bup` handles output from subprocesses (diagnostics,
+  progress, etc.) has been adjusted in a way that should make it less
+  likely that bup might continue running after the main process has
+  exited, say via a C-c (SIGINT).
+
+* `bup` should now respect the specified compression level when
+  writing to a remote repository.
+
+* `bup restore` now creates FIFOs with mkfifo, not 

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

2019-08-29 Thread Christian Rebischke via arch-commits
Date: Thursday, August 29, 2019 @ 16:19:42
  Author: shibumi
Revision: 504970

upgpkg: bup 0.29.3-1

Modified:
  bup/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2019-08-29 16:13:35 UTC (rev 504969)
+++ PKGBUILD2019-08-29 16:19:42 UTC (rev 504970)
@@ -7,7 +7,7 @@
 # Contributor: SanskritFritz (gmail)
 
 pkgname=bup
-pkgver=0.29.2
+pkgver=0.29.3
 pkgrel=1
 pkgdesc='Efficient backup system based on the git packfile format'
 arch=('x86_64')
@@ -18,7 +18,7 @@
 checkdepends=('rsync' 'python2-tornado')
 optdepends=('python2-tornado: for bup web')
 
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/bup/bup/archive/${pkgver}.tar.gz;)
-sha512sums=('10c433d6779b1fd7e1935c587676492d96a330dc3280556332bb55b6e5c62de8631fd755d07d2eaf80cb9fa209dc25b241d5ecf3a6fe2b8210a3d0e1ce4fa4bf')
+sha512sums=('4f500c214a37f781daf064de3a4de27a40be890aadb1d5102b94ca9dc1d52e01ca3884a79412beaac0f4007287df24aef225aedb65f1afb60d4119e4b467f789')
 
 build() {
   cd "${pkgname}-${pkgver}"


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

2018-10-23 Thread Christian Rebischke via arch-commits
Date: Wednesday, October 24, 2018 @ 00:17:25
  Author: shibumi
Revision: 398742

upgpkg: bup 0.29.2-1

Modified:
  bup/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2018-10-23 23:37:33 UTC (rev 398741)
+++ PKGBUILD2018-10-24 00:17:25 UTC (rev 398742)
@@ -7,8 +7,8 @@
 # Contributor: SanskritFritz (gmail)
 
 pkgname=bup
-pkgver=0.29.1
-pkgrel=2
+pkgver=0.29.2
+pkgrel=1
 pkgdesc='Efficient backup system based on the git packfile format'
 arch=('x86_64')
 url='https://bup.github.io/'
@@ -18,7 +18,7 @@
 checkdepends=('rsync' 'python2-tornado')
 optdepends=('python2-tornado: for bup web')
 
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/bup/bup/archive/${pkgver}.tar.gz;)
-sha512sums=('2ad142214cf5ee61e2113b49d02761cdf8fdd5928eb4f885230af71f149ba33ee748e1d96e240903f54d3264dc2ad1614e6ece66027b4c7ed1e97b6147a9685e')
+sha512sums=('10c433d6779b1fd7e1935c587676492d96a330dc3280556332bb55b6e5c62de8631fd755d07d2eaf80cb9fa209dc25b241d5ecf3a6fe2b8210a3d0e1ce4fa4bf')
 
 build() {
   cd "${pkgname}-${pkgver}"


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

2017-08-05 Thread Christian Rebischke
Date: Saturday, August 5, 2017 @ 16:13:55
  Author: shibumi
Revision: 248775

upgpkg: bup 0.29.1-2 enabled PIE

Modified:
  bup/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-08-05 16:10:12 UTC (rev 248774)
+++ PKGBUILD2017-08-05 16:13:55 UTC (rev 248775)
@@ -9,7 +9,7 @@
 
 pkgname=bup
 pkgver=0.29.1
-pkgrel=1
+pkgrel=2
 pkgdesc='Efficient backup system based on the git packfile format'
 arch=('x86_64' 'i686')
 url='https://bup.github.io/'


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

2017-04-02 Thread Christian Rebischke
Date: Sunday, April 2, 2017 @ 14:00:26
  Author: shibumi
Revision: 220321

upgpkg: bup 0.29.1-1

new version

Modified:
  bup/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-04-02 13:33:17 UTC (rev 220320)
+++ PKGBUILD2017-04-02 14:00:26 UTC (rev 220321)
@@ -8,8 +8,8 @@
 # Contributor: SanskritFritz (gmail)
 
 pkgname=bup
-pkgver=0.29
-pkgrel=2
+pkgver=0.29.1
+pkgrel=1
 pkgdesc='Efficient backup system based on the git packfile format'
 arch=('x86_64' 'i686')
 url='https://bup.github.io/'
@@ -19,7 +19,7 @@
 checkdepends=('rsync' 'python2-tornado')
 optdepends=('python2-tornado: for bup web')
 
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/bup/bup/archive/${pkgver}.tar.gz;)
-sha512sums=('3a70d747c6bae2640809d48141b726fa7897f33af9f19047c8d4cfba88abe04ac907980f0ce572847b900e2c8d02a3303e886c8ad7af9a97a7804540c7da1705')
+sha512sums=('2ad142214cf5ee61e2113b49d02761cdf8fdd5928eb4f885230af71f149ba33ee748e1d96e240903f54d3264dc2ad1614e6ece66027b4c7ed1e97b6147a9685e')
 
 build() {
   cd "${pkgname}-${pkgver}"


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

2017-03-25 Thread Christian Rebischke
Date: Sunday, March 26, 2017 @ 01:55:05
  Author: shibumi
Revision: 219044

upgpkg: bup 0.29-2 did minor PKGBUILD changes

Modified:
  bup/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-03-26 01:54:54 UTC (rev 219043)
+++ PKGBUILD2017-03-26 01:55:05 UTC (rev 219044)
@@ -9,7 +9,7 @@
 
 pkgname=bup
 pkgver=0.29
-pkgrel=1
+pkgrel=2
 pkgdesc='Efficient backup system based on the git packfile format'
 arch=('x86_64' 'i686')
 url='https://bup.github.io/'


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

2017-03-25 Thread Christian Rebischke
Date: Sunday, March 26, 2017 @ 01:46:58
  Author: shibumi
Revision: 219034

upgpkg: bup 0.29-1

Modified:
  bup/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-03-26 01:46:47 UTC (rev 219033)
+++ PKGBUILD2017-03-26 01:46:58 UTC (rev 219034)
@@ -1,6 +1,6 @@
 # $Id$
-# Maintainer: Alexander F Rødseth 
-# Contributor:  Bartłomiej Piotrowski 
+# Maintainer : Christian Rebischke 
+# Contributor: Bartłomiej Piotrowski 
 # Contributor: Jakob Matthes 
 # Contributor: Bram Schoenmakers 
 # Contributor: henning mueller 
@@ -18,21 +18,21 @@
 makedepends=('ruby-ronn' 'git' 'setconf' 'pandoc')
 checkdepends=('rsync' 'python2-tornado')
 optdepends=('python2-tornado: for bup web')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/bup/bup/archive/$pkgver.tar.gz;)
-md5sums=('ed717612ff59ec1eb4c0d53f3e11d064')
+source=("${pkgname}-${pkgver}.tar.gz::https://github.com/bup/bup/archive/${pkgver}.tar.gz;)
+sha512sums=('3a70d747c6bae2640809d48141b726fa7897f33af9f19047c8d4cfba88abe04ac907980f0ce572847b900e2c8d02a3303e886c8ad7af9a97a7804540c7da1705')
 
 build() {
-  cd $pkgname-$pkgver
+  cd "${pkgname}-${pkgver}"
   ./configure
   make
 }
 
 check() {
-  cd $pkgname-$pkgver
-  make test -j1
+  cd "${pkgname}-${pkgver}"
+  make test
 }
 
 package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" PREFIX=/usr install
+  cd "${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" PREFIX=/usr install
 }


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

2017-01-01 Thread Antonio Rojas
Date: Sunday, January 1, 2017 @ 17:39:41
  Author: arojas
Revision: 204118

Update to 0.29

Modified:
  bup/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2017-01-01 17:31:44 UTC (rev 204117)
+++ PKGBUILD2017-01-01 17:39:41 UTC (rev 204118)
@@ -8,7 +8,7 @@
 # Contributor: SanskritFritz (gmail)
 
 pkgname=bup
-pkgver=0.28.1
+pkgver=0.29
 pkgrel=1
 pkgdesc='Efficient backup system based on the git packfile format'
 arch=('x86_64' 'i686')
@@ -19,7 +19,7 @@
 checkdepends=('rsync' 'python2-tornado')
 optdepends=('python2-tornado: for bup web')
 
source=("$pkgname-$pkgver.tar.gz::https://github.com/bup/bup/archive/$pkgver.tar.gz;)
-md5sums=('94d47ec13c5edcad4061b8abe2e8dcdd')
+md5sums=('ed717612ff59ec1eb4c0d53f3e11d064')
 
 build() {
   cd $pkgname-$pkgver


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

2016-06-15 Thread Sergej Pupykin
Date: Wednesday, June 15, 2016 @ 21:01:50
  Author: spupykin
Revision: 180298

fix shared cache

Modified:
  bup/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-06-15 18:48:23 UTC (rev 180297)
+++ PKGBUILD2016-06-15 21:01:50 UTC (rev 180298)
@@ -18,7 +18,7 @@
 makedepends=('ruby-ronn' 'git' 'setconf' 'pandoc')
 checkdepends=('rsync' 'python2-tornado')
 optdepends=('python2-tornado: for bup web')
-source=("https://github.com/bup/bup/archive/$pkgver.tar.gz;)
+source=("$pkgname-$pkgver.tar.gz::https://github.com/bup/bup/archive/$pkgver.tar.gz;)
 md5sums=('94d47ec13c5edcad4061b8abe2e8dcdd')
 
 build() {


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

2016-06-12 Thread Antonio Rojas
Date: Sunday, June 12, 2016 @ 22:48:27
  Author: arojas
Revision: 179738

Update to 0.28.1

Modified:
  bup/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-06-12 20:43:42 UTC (rev 179737)
+++ PKGBUILD2016-06-12 20:48:27 UTC (rev 179738)
@@ -8,7 +8,7 @@
 # Contributor: SanskritFritz (gmail)
 
 pkgname=bup
-pkgver=0.28
+pkgver=0.28.1
 pkgrel=1
 pkgdesc='Efficient backup system based on the git packfile format'
 arch=('x86_64' 'i686')
@@ -18,28 +18,21 @@
 makedepends=('ruby-ronn' 'git' 'setconf' 'pandoc')
 checkdepends=('rsync' 'python2-tornado')
 optdepends=('python2-tornado: for bup web')
-source=("git://github.com/bup/bup.git#tag=$pkgver")
-md5sums=('SKIP')
+source=("https://github.com/bup/bup/archive/$pkgver.tar.gz;)
+md5sums=('94d47ec13c5edcad4061b8abe2e8dcdd')
 
-prepare() {
-  cd $pkgname
-
-  # Make test suite happy
-  git config --global user.email "b...@zombo.com"
-}
-
 build() {
-  cd $pkgname
+  cd $pkgname-$pkgver
   ./configure
   make
 }
 
 check() {
-  cd $pkgname
+  cd $pkgname-$pkgver
   make test -j1
 }
 
 package() {
-  cd $pkgname
+  cd $pkgname-$pkgver
   make DESTDIR="$pkgdir" PREFIX=/usr install
 }


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

2016-05-30 Thread Antonio Rojas
Date: Monday, May 30, 2016 @ 23:48:30
  Author: arojas
Revision: 177482

Update to 0.28

Modified:
  bup/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-05-30 20:52:51 UTC (rev 177481)
+++ PKGBUILD2016-05-30 21:48:30 UTC (rev 177482)
@@ -8,7 +8,7 @@
 # Contributor: SanskritFritz (gmail)
 
 pkgname=bup
-pkgver=0.27.1
+pkgver=0.28
 pkgrel=1
 pkgdesc='Efficient backup system based on the git packfile format'
 arch=('x86_64' 'i686')
@@ -16,36 +16,30 @@
 license=('GPL')
 depends=('python2-fuse' 'par2cmdline' 'pylibacl' 'python2-pyxattr' 'git')
 makedepends=('ruby-ronn' 'git' 'setconf' 'pandoc')
-checkdepends=('rsync')
+checkdepends=('rsync' 'python2-tornado')
 optdepends=('python2-tornado: for bup web')
 source=("git://github.com/bup/bup.git#tag=$pkgver")
 md5sums=('SKIP')
 
 prepare() {
-  cd "$pkgname"
+  cd $pkgname
 
-  # Use Python 2
-  setconf Makefile PYTHON python2
-  grep -rl python | xargs sed -i 's:/python:/python2:g'
-  grep -rl python | xargs sed -i 's:python -:python2 -:g'
-  grep -rl python | xargs sed -i 's:env python:env python2:g'
-  sed -i 's:find_prog python:find_prog python2:g' config/configure
-
   # Make test suite happy
   git config --global user.email "b...@zombo.com"
 }
 
 build() {
-  make -C "$pkgname"
+  cd $pkgname
+  ./configure
+  make
 }
 
 check() {
-  make -C "$pkgname" test -j1
+  cd $pkgname
+  make test -j1
 }
 
 package() {
-  make -C "$pkgname" DESTDIR="$pkgdir" install
+  cd $pkgname
+  make DESTDIR="$pkgdir" PREFIX=/usr install
 }
-
-# getver: bup.github.io
-# vim:set ts=2 sw=2 et:


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

2016-05-29 Thread Antonio Rojas
Date: Sunday, May 29, 2016 @ 11:10:45
  Author: arojas
Revision: 177408

Update to 0.27.1

Modified:
  bup/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2016-05-29 09:06:09 UTC (rev 177407)
+++ PKGBUILD2016-05-29 09:10:45 UTC (rev 177408)
@@ -8,8 +8,8 @@
 # Contributor: SanskritFritz (gmail)
 
 pkgname=bup
-pkgver=0.27
-pkgrel=2
+pkgver=0.27.1
+pkgrel=1
 pkgdesc='Efficient backup system based on the git packfile format'
 arch=('x86_64' 'i686')
 url='https://bup.github.io/'


[arch-commits] Commit in bup/trunk (PKGBUILD avoid-using-pandoc.patch)

2016-02-01 Thread Alexander Rødseth
Date: Monday, February 1, 2016 @ 14:41:40
  Author: arodseth
Revision: 159790

upgpkg: bup 0.27-2

Modified:
  bup/trunk/PKGBUILD
Deleted:
  bup/trunk/avoid-using-pandoc.patch

--+
 PKGBUILD |   27 ---
 avoid-using-pandoc.patch |   31 ---
 2 files changed, 12 insertions(+), 46 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-02-01 13:31:50 UTC (rev 159789)
+++ PKGBUILD2016-02-01 13:41:40 UTC (rev 159790)
@@ -1,5 +1,6 @@
 # $Id$
-# Maintainer:  Bartłomiej Piotrowski 
+# Maintainer: Alexander F Rødseth 
+# Contributor:  Bartłomiej Piotrowski 
 # Contributor: Jakob Matthes 
 # Contributor: Bram Schoenmakers 
 # Contributor: henning mueller 
@@ -8,19 +9,17 @@
 
 pkgname=bup
 pkgver=0.27
-pkgrel=1
-pkgdesc='Highly efficient file backup system based on the git packfile format'
-arch=('i686' 'x86_64')
-url='https://github.com/bup/bup'
+pkgrel=2
+pkgdesc='Efficient backup system based on the git packfile format'
+arch=('x86_64' 'i686')
+url='https://bup.github.io/'
 license=('GPL')
 depends=('python2-fuse' 'par2cmdline' 'pylibacl' 'python2-pyxattr' 'git')
-makedepends=('ruby-ronn' 'git' 'setconf')
+makedepends=('ruby-ronn' 'git' 'setconf' 'pandoc')
 checkdepends=('rsync')
 optdepends=('python2-tornado: for bup web')
-source=("git://github.com/bup/bup.git#tag=$pkgver"
-'avoid-using-pandoc.patch')
-sha256sums=('SKIP'
-'d0bfe1e9f21b6552ae46db738ca798c7cef9a655dd8ad899b807d7e4ebaa8a14')
+source=("git://github.com/bup/bup.git#tag=$pkgver")
+md5sums=('SKIP')
 
 prepare() {
   cd "$pkgname"
@@ -32,11 +31,8 @@
   grep -rl python | xargs sed -i 's:env python:env python2:g'
   sed -i 's:find_prog python:find_prog python2:g' config/configure
 
-  # avoid using pandoc
-  patch -p1 -i ../avoid-using-pandoc.patch
-
-  # make test suite happy
-  git config --global user.email "j...@doe.com"
+  # Make test suite happy
+  git config --global user.email "b...@zombo.com"
 }
 
 build() {
@@ -51,4 +47,5 @@
   make -C "$pkgname" DESTDIR="$pkgdir" install
 }
 
+# getver: bup.github.io
 # vim:set ts=2 sw=2 et:

Deleted: avoid-using-pandoc.patch
===
--- avoid-using-pandoc.patch2016-02-01 13:31:50 UTC (rev 159789)
+++ avoid-using-pandoc.patch2016-02-01 13:41:40 UTC (rev 159790)
@@ -1,31 +0,0 @@
-diff --git a/Documentation/Makefile b/Documentation/Makefile
-index 067f698..0532c31 100644
 a/Documentation/Makefile
-+++ b/Documentation/Makefile
-@@ -1,12 +1,5 @@
- PANDOC:=$(shell \
--  if pandoc /dev/null; then \
--  echo pandoc; \
--  touch .docs-available; \
--  else \
--  echo "Warning: pandoc not installed; can't generate manpages." 
>&2; \
--  echo '@echo Skipping: pandoc'; \
--  rm -f .docs-available; \
--  fi)
-+  touch .docs-available)
- BUP_VERSION:=$(shell ../bup version --tag)
- BUP_DATE:=$(shell ../bup version --date)
- 
-@@ -19,10 +12,10 @@ man: $(patsubst %.md,%.1,$(wildcard *.md))
- html: $(patsubst %.md,%.html,$(wildcard *.md))
- 
- %.1: %.md.tmp Makefile
--  $(PANDOC) -s -r markdown -w man -o $@ $<
-+  ronn -r --pipe $< > $@
-   
- %.html: %.md.tmp Makefile
--  $(PANDOC) -s -r markdown -w html -o $@ $<
-+   rdiscount $< > $@
-   
- .PRECIOUS: %.md.tmp
- %.md.tmp: %.md Makefile


[arch-commits] Commit in bup/trunk (PKGBUILD python2.patch)

2015-06-28 Thread Alexander Rødseth
Date: Sunday, June 28, 2015 @ 23:48:51
  Author: arodseth
Revision: 136092

upgpkg: bup 0.27-1

Modified:
  bup/trunk/PKGBUILD
Deleted:
  bup/trunk/python2.patch

---+
 PKGBUILD  |   34 
 python2.patch | 7699 
 2 files changed, 21 insertions(+), 7712 deletions(-)

The diff is longer than the limit of 200KB.
Use svn diff -r 136091:136092 to see the changes.


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

2015-01-24 Thread Bartłomiej Piotrowski
Date: Saturday, January 24, 2015 @ 19:53:39
  Author: bpiotrowski
Revision: 126538

Add python2-tornado to optdepends

Modified:
  bup/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2015-01-24 18:51:21 UTC (rev 126537)
+++ PKGBUILD2015-01-24 18:53:39 UTC (rev 126538)
@@ -16,6 +16,7 @@
 depends=('python2-fuse' 'par2cmdline' 'pylibacl' 'python2-pyxattr' 'git')
 makedepends=('ruby-ronn')
 checkdepends=('rsync')
+optdepends=('python2-tornado: for bup web')
 source=($url/archive/0.26.tar.gz
 python2.patch
 avoid-using-pandoc.patch)


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

2014-09-07 Thread Bartłomiej Piotrowski
Date: Sunday, September 7, 2014 @ 13:51:57
  Author: bpiotrowski
Revision: 118593

Restore check() function.

Modified:
  bup/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-09-07 11:19:41 UTC (rev 118592)
+++ PKGBUILD2014-09-07 11:51:57 UTC (rev 118593)
@@ -15,6 +15,7 @@
 license=('GPL')
 depends=('python2-fuse' 'par2cmdline' 'pylibacl' 'python2-pyxattr' 'git')
 makedepends=('ruby-ronn')
+checkdepends=('rsync')
 source=($url/archive/0.26.tar.gz
 python2.patch
 avoid-using-pandoc.patch)
@@ -26,6 +27,9 @@
   cd $pkgname-$pkgver
   patch -p1 -i ../python2.patch
   patch -p1 -i ../avoid-using-pandoc.patch
+
+  # make test suite happy
+  git config --global user.email j...@doe.com
 }
 
 build() {
@@ -32,6 +36,10 @@
   make -C $pkgname-$pkgver
 }
 
+check() {
+  make -C $pkgname-$pkgver test -j1
+}
+
 package() {
   make -C $pkgname-$pkgver DESTDIR=$pkgdir install
 }



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

2014-09-05 Thread Bartłomiej Piotrowski
Date: Friday, September 5, 2014 @ 12:13:26
  Author: bpiotrowski
Revision: 118335

upgpkg: bup 0.26-1

temporarily drop check()

Modified:
  bup/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2014-09-05 10:07:12 UTC (rev 118334)
+++ PKGBUILD2014-09-05 10:13:26 UTC (rev 118335)
@@ -15,7 +15,6 @@
 license=('GPL')
 depends=('python2-fuse' 'par2cmdline' 'pylibacl' 'python2-pyxattr' 'git')
 makedepends=('ruby-ronn')
-checkdepends=('rsync')
 source=($url/archive/0.26.tar.gz
 python2.patch
 avoid-using-pandoc.patch)
@@ -33,11 +32,6 @@
   make -C $pkgname-$pkgver
 }
 
-check() {
-  # All tests pass as of 2014-09-05, but something further exits with return 
value 2
-  make -C $pkgname-$pkgver test || true
-}
-
 package() {
   make -C $pkgname-$pkgver DESTDIR=$pkgdir install
 }