[arch-commits] Commit in bup/repos/community-x86_64 (PKGBUILD PKGBUILD changelog.md)

2019-10-17 Thread Christian Rebischke via arch-commits
Date: Thursday, October 17, 2019 @ 17:56:13
  Author: shibumi
Revision: 516505

archrelease: copy trunk to community-x86_64

Added:
  bup/repos/community-x86_64/PKGBUILD
(from rev 516504, bup/trunk/PKGBUILD)
  bup/repos/community-x86_64/changelog.md
(from rev 516504, bup/trunk/changelog.md)
Deleted:
  bup/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |   75 
 changelog.md |  133 +
 2 files changed, 171 insertions(+), 37 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-10-17 17:55:46 UTC (rev 516504)
+++ PKGBUILD2019-10-17 17:56:13 UTC (rev 516505)
@@ -1,37 +0,0 @@
-# Maintainer : Christian Rebischke 
-# Contributor: Bartłomiej Piotrowski 
-# Contributor: Jakob Matthes 
-# Contributor: Bram Schoenmakers 
-# Contributor: henning mueller 
-# Contributor: rakoo (AUR)
-# Contributor: SanskritFritz (gmail)
-
-pkgname=bup
-pkgver=0.29.3
-pkgrel=1
-pkgdesc='Efficient backup system based on the git packfile format'
-arch=('x86_64')
-url='https://bup.github.io/'
-license=('GPL')
-depends=('python2-fuse' 'par2cmdline' 'pylibacl' 'python2-pyxattr' 'git')
-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;)
-sha512sums=('4f500c214a37f781daf064de3a4de27a40be890aadb1d5102b94ca9dc1d52e01ca3884a79412beaac0f4007287df24aef225aedb65f1afb60d4119e4b467f789')
-
-build() {
-  cd "${pkgname}-${pkgver}"
-  ./configure
-  make
-}
-
-check() {
-  cd "${pkgname}-${pkgver}"
-  make test
-}
-
-package() {
-  cd "${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" PREFIX=/usr install
-}

Copied: bup/repos/community-x86_64/PKGBUILD (from rev 516504, 
bup/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-10-17 17:56:13 UTC (rev 516505)
@@ -0,0 +1,38 @@
+# Maintainer : Christian Rebischke 
+# Contributor: Bartłomiej Piotrowski 
+# Contributor: Jakob Matthes 
+# Contributor: Bram Schoenmakers 
+# Contributor: henning mueller 
+# Contributor: rakoo (AUR)
+# Contributor: SanskritFritz (gmail)
+
+pkgname=bup
+pkgver=0.30
+pkgrel=1
+pkgdesc='Efficient backup system based on the git packfile format'
+arch=('x86_64')
+url='https://bup.github.io/'
+license=('GPL')
+depends=('python2-fuse' 'par2cmdline' 'pylibacl' 'python2-pyxattr' 'git')
+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;)
+sha512sums=('8c500568ca2609e6b437b3a67c08976bbdb6fbad39c77eb7e74e503b5ffdc1cbe1e51b5e834e7db0481a3cfc38a55aeae49a8e53657994524b612e54136e7af1')
+changelog=changelog.md
+
+build() {
+  cd "${pkgname}-${pkgver}"
+  ./configure
+  make
+}
+
+check() {
+  cd "${pkgname}-${pkgver}"
+  make test
+}
+
+package() {
+  cd "${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" PREFIX=/usr install
+}

Copied: bup/repos/community-x86_64/changelog.md (from rev 516504, 
bup/trunk/changelog.md)
===
--- changelog.md(rev 0)
+++ changelog.md2019-10-17 17:56:13 UTC (rev 516505)
@@ -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
+  

[arch-commits] Commit in bup/repos/community-x86_64 (PKGBUILD PKGBUILD)

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

archrelease: copy trunk to community-x86_64

Added:
  bup/repos/community-x86_64/PKGBUILD
(from rev 504970, bup/trunk/PKGBUILD)
Deleted:
  bup/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |   74 ++---
 1 file changed, 37 insertions(+), 37 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-29 16:19:42 UTC (rev 504970)
+++ PKGBUILD2019-08-29 16:19:49 UTC (rev 504971)
@@ -1,37 +0,0 @@
-# Maintainer : Christian Rebischke 
-# Contributor: Bartłomiej Piotrowski 
-# Contributor: Jakob Matthes 
-# Contributor: Bram Schoenmakers 
-# Contributor: henning mueller 
-# Contributor: rakoo (AUR)
-# Contributor: SanskritFritz (gmail)
-
-pkgname=bup
-pkgver=0.29.2
-pkgrel=1
-pkgdesc='Efficient backup system based on the git packfile format'
-arch=('x86_64')
-url='https://bup.github.io/'
-license=('GPL')
-depends=('python2-fuse' 'par2cmdline' 'pylibacl' 'python2-pyxattr' 'git')
-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;)
-sha512sums=('10c433d6779b1fd7e1935c587676492d96a330dc3280556332bb55b6e5c62de8631fd755d07d2eaf80cb9fa209dc25b241d5ecf3a6fe2b8210a3d0e1ce4fa4bf')
-
-build() {
-  cd "${pkgname}-${pkgver}"
-  ./configure
-  make
-}
-
-check() {
-  cd "${pkgname}-${pkgver}"
-  make test
-}
-
-package() {
-  cd "${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" PREFIX=/usr install
-}

Copied: bup/repos/community-x86_64/PKGBUILD (from rev 504970, 
bup/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-29 16:19:49 UTC (rev 504971)
@@ -0,0 +1,37 @@
+# Maintainer : Christian Rebischke 
+# Contributor: Bartłomiej Piotrowski 
+# Contributor: Jakob Matthes 
+# Contributor: Bram Schoenmakers 
+# Contributor: henning mueller 
+# Contributor: rakoo (AUR)
+# Contributor: SanskritFritz (gmail)
+
+pkgname=bup
+pkgver=0.29.3
+pkgrel=1
+pkgdesc='Efficient backup system based on the git packfile format'
+arch=('x86_64')
+url='https://bup.github.io/'
+license=('GPL')
+depends=('python2-fuse' 'par2cmdline' 'pylibacl' 'python2-pyxattr' 'git')
+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;)
+sha512sums=('4f500c214a37f781daf064de3a4de27a40be890aadb1d5102b94ca9dc1d52e01ca3884a79412beaac0f4007287df24aef225aedb65f1afb60d4119e4b467f789')
+
+build() {
+  cd "${pkgname}-${pkgver}"
+  ./configure
+  make
+}
+
+check() {
+  cd "${pkgname}-${pkgver}"
+  make test
+}
+
+package() {
+  cd "${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" PREFIX=/usr install
+}


[arch-commits] Commit in bup/repos/community-x86_64 (PKGBUILD PKGBUILD)

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

archrelease: copy trunk to community-x86_64

Added:
  bup/repos/community-x86_64/PKGBUILD
(from rev 398742, bup/trunk/PKGBUILD)
Deleted:
  bup/repos/community-x86_64/PKGBUILD

--+
 PKGBUILD |   75 ++---
 1 file changed, 37 insertions(+), 38 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-10-24 00:17:25 UTC (rev 398742)
+++ PKGBUILD2018-10-24 00:17:38 UTC (rev 398743)
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer : Christian Rebischke 
-# Contributor: Bartłomiej Piotrowski 
-# Contributor: Jakob Matthes 
-# Contributor: Bram Schoenmakers 
-# Contributor: henning mueller 
-# Contributor: rakoo (AUR)
-# Contributor: SanskritFritz (gmail)
-
-pkgname=bup
-pkgver=0.29.1
-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' '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;)
-sha512sums=('2ad142214cf5ee61e2113b49d02761cdf8fdd5928eb4f885230af71f149ba33ee748e1d96e240903f54d3264dc2ad1614e6ece66027b4c7ed1e97b6147a9685e')
-
-build() {
-  cd "${pkgname}-${pkgver}"
-  ./configure
-  make
-}
-
-check() {
-  cd "${pkgname}-${pkgver}"
-  make test
-}
-
-package() {
-  cd "${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" PREFIX=/usr install
-}

Copied: bup/repos/community-x86_64/PKGBUILD (from rev 398742, 
bup/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-10-24 00:17:38 UTC (rev 398743)
@@ -0,0 +1,37 @@
+# Maintainer : Christian Rebischke 
+# Contributor: Bartłomiej Piotrowski 
+# Contributor: Jakob Matthes 
+# Contributor: Bram Schoenmakers 
+# Contributor: henning mueller 
+# Contributor: rakoo (AUR)
+# Contributor: SanskritFritz (gmail)
+
+pkgname=bup
+pkgver=0.29.2
+pkgrel=1
+pkgdesc='Efficient backup system based on the git packfile format'
+arch=('x86_64')
+url='https://bup.github.io/'
+license=('GPL')
+depends=('python2-fuse' 'par2cmdline' 'pylibacl' 'python2-pyxattr' 'git')
+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;)
+sha512sums=('10c433d6779b1fd7e1935c587676492d96a330dc3280556332bb55b6e5c62de8631fd755d07d2eaf80cb9fa209dc25b241d5ecf3a6fe2b8210a3d0e1ce4fa4bf')
+
+build() {
+  cd "${pkgname}-${pkgver}"
+  ./configure
+  make
+}
+
+check() {
+  cd "${pkgname}-${pkgver}"
+  make test
+}
+
+package() {
+  cd "${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" PREFIX=/usr install
+}