Date: Monday, October 17, 2022 @ 06:23:13 Author: arojas Revision: 1329537
archrelease: copy trunk to community-x86_64 Added: bup/repos/community-x86_64/PKGBUILD (from rev 1329536, bup/trunk/PKGBUILD) Deleted: bup/repos/community-x86_64/PKGBUILD bup/repos/community-x86_64/bup-readline.patch --------------------+ PKGBUILD | 74 +++++++++++++++++++++++---------------------------- bup-readline.patch | 19 ------------- 2 files changed, 34 insertions(+), 59 deletions(-) Deleted: PKGBUILD =================================================================== --- PKGBUILD 2022-10-17 06:23:04 UTC (rev 1329536) +++ PKGBUILD 2022-10-17 06:23:13 UTC (rev 1329537) @@ -1,40 +0,0 @@ -# Maintainer: Antonio Rojas <aro...@archlinux.org> -# Contributor: João Figueiredo <jf.mun...@gmail.com> (11/07/2020) -# Contributor: freggel.doe (Fixed i18n problem with make test, 13/07/2020) -# Contributor: Christian Rebischke <chris.rebisc...@archlinux.org> -# Contributor: Bartłomiej Piotrowski <bpiotrow...@archlinux.org> -# Contributor: Jakob Matthes <jakob.matt...@gmail.com> -# Contributor: Bram Schoenmakers <m...@bramschoenmakers.nl> -# Contributor: henning mueller <henn...@orgizm.net> -# Contributor: rakoo (AUR) -# Contributor: SanskritFritz (gmail) - -pkgname=bup -pkgver=0.32 -pkgrel=3 -pkgdesc='Efficient backup system based on the git packfile format' -arch=(x86_64) -url='https://bup.github.io/' -license=(GPL) -depends=(python-fuse par2cmdline python-pyxattr git) -optdepends=('python-tornado: for bup web') -makedepends=(pandoc) -source=(https://github.com/bup/bup/archive/$pkgver/$pkgname-$pkgver.tar.gz - bup-readline.patch) -sha256sums=('a894cfa96c44b9ef48003b2c2104dc5fa6361dd2f4d519261a93178984a51259' - '9c786249699ee5f6580137745045a4030d8b61d85b4e3a3b576f6a91d09b2397') - -prepare() { - patch -d $pkgname-$pkgver -p0 < bup-readline.patch # Fix readline detection -} - -build() { - cd $pkgname-$pkgver - ./configure - make -} - -package() { - cd $pkgname-$pkgver - make DESTDIR="$pkgdir" PREFIX=/usr install -} Copied: bup/repos/community-x86_64/PKGBUILD (from rev 1329536, bup/trunk/PKGBUILD) =================================================================== --- PKGBUILD (rev 0) +++ PKGBUILD 2022-10-17 06:23:13 UTC (rev 1329537) @@ -0,0 +1,34 @@ +# Maintainer: Antonio Rojas <aro...@archlinux.org> +# Contributor: João Figueiredo <jf.mun...@gmail.com> (11/07/2020) +# Contributor: freggel.doe (Fixed i18n problem with make test, 13/07/2020) +# Contributor: Christian Rebischke <chris.rebisc...@archlinux.org> +# Contributor: Bartłomiej Piotrowski <bpiotrow...@archlinux.org> +# Contributor: Jakob Matthes <jakob.matt...@gmail.com> +# Contributor: Bram Schoenmakers <m...@bramschoenmakers.nl> +# Contributor: henning mueller <henn...@orgizm.net> +# Contributor: rakoo (AUR) +# Contributor: SanskritFritz (gmail) + +pkgname=bup +pkgver=0.33 +pkgrel=1 +pkgdesc='Efficient backup system based on the git packfile format' +arch=(x86_64) +url='https://bup.github.io/' +license=(GPL) +depends=(python-fuse par2cmdline python-pyxattr git) +optdepends=('python-tornado: for bup web') +makedepends=(pandoc) +source=(https://github.com/bup/bup/archive/$pkgver/$pkgname-$pkgver.tar.gz) +sha256sums=('2c21b25ab0ab845e1490cf20781bdb46e93b9c06f0c6df4ace760afc07a63fe9') + +build() { + cd $pkgname-$pkgver + ./configure + make +} + +package() { + cd $pkgname-$pkgver + make DESTDIR="$pkgdir" PREFIX=/usr install +} Deleted: bup-readline.patch =================================================================== --- bup-readline.patch 2022-10-17 06:23:04 UTC (rev 1329536) +++ bup-readline.patch 2022-10-17 06:23:13 UTC (rev 1329537) @@ -1,19 +0,0 @@ ---- config/configure.orig 2021-05-21 19:21:49.349482146 +0200 -+++ config/configure 2021-05-21 19:23:05.320738847 +0200 -@@ -207,12 +207,14 @@ - # It looks like it's not uncommon for pkg-config to provide a -I - # that doesn't support the documentation's specified #include - # <readline/readline.h>. See what's really going on. -- if bup_try_c_code "#include <readline/readline.h> $readline_test_code" \ -+ if bup_try_c_code "#include <stdio.h> -+ #include <readline/readline.h> $readline_test_code" \ - "$bup_readline_cflags" - then - bup_have_readline=1 - bup_readline_includes_in_subdir=1 -- elif bup_try_c_code "#include <readline.h> $readline_test_code" \ -+ elif bup_try_c_code "#include <stdio.h> -+ #include <readline.h> $readline_test_code" \ - "$bup_readline_cflags" - then - bup_have_readline=1