[arch-commits] Commit in autoconf/repos (6 files)

2020-12-23 Thread Allan McRae via arch-commits
"s,^[^']*[\`']\\(/[^']*\\)'.*,\\1,p"] stdout], [0], 
[stdout])
+ AT_CHECK([test -f "`sed -n 1p stdout`"])
+ 
+ # Older libtoolize installed everything but install-sh...
+--
+cgit v0.9.0.2

Copied: autoconf/repos/testing-any/0004-Port-tests-to-Bash-5.patch (from rev 
404968, autoconf/trunk/0004-Port-tests-to-Bash-5.patch)
===
--- testing-any/0004-Port-tests-to-Bash-5.patch (rev 0)
+++ testing-any/0004-Port-tests-to-Bash-5.patch 2020-12-24 07:08:29 UTC (rev 
404969)
@@ -0,0 +1,60 @@
+From 5b9db67786a428164abafe626ab11a2754aad528 Mon Sep 17 00:00:00 2001
+From: Ondrej Dubaj 
+Date: Wed, 28 Aug 2019 07:39:50 +0200
+Subject: [PATCH] Port tests to Bash 5
+
+* tests/local.at (AT_CHECK_ENV, AT_CONFIG_CMP):
+Add BASH_ARGC, BASH_ARGV to list of variables to be ignored when
+comparing variable space dumps.
+(AT_CONFIG_CMP): Also ignore LINENO.
+* tests/m4sh.at: Also unset LINENO in 'reference' and 'test/test-1'.
+---
+ tests/local.at | 5 -
+ tests/m4sh.at  | 4 ++--
+ 2 files changed, 6 insertions(+), 3 deletions(-)
+
+diff --git a/tests/local.at b/tests/local.at
+index a22958c..852be28 100644
+--- a/tests/local.at
 b/tests/local.at
+@@ -325,7 +325,7 @@ if test -f state-env.before && test -f state-env.after; 
then
+   [AWK|LEX|LEXLIB|LEX_OUTPUT_ROOT|LN_S|M4|MKDIR_P|RANLIB|SET_MAKE|YACC],
+   [GREP|[EF]GREP|SED],
+   [[_@]|.[*#?$].],
+-  [argv|ARGC|LINENO|OLDPWD|PIPESTATUS|RANDOM|SECONDS]))=' \
++  
[argv|ARGC|LINENO|BASH_ARGC|BASH_ARGV|OLDPWD|PIPESTATUS|RANDOM|SECONDS]))=' \
+  $act_file ||
+test $? -eq 1 || echo failed >&2
+ ) 2>stderr-$act_file |
+@@ -382,6 +382,9 @@ do
+   /'\'\\\$\''=/ d
+   /^argv=/ d
+   /^ARGC=/ d
++  /^BASH_ARGC=/ d
++  /^BASH_ARGV=/ d
++  /^LINENO=/ d
+   ' $act_file >at_config_vars-$act_file
+ done
+ AT_CMP([at_config_vars-$1], [at_config_vars-$2])[]dnl
+diff --git a/tests/m4sh.at b/tests/m4sh.at
+index e9d70b0..cbdfcb6 100644
+--- a/tests/m4sh.at
 b/tests/m4sh.at
+@@ -254,7 +254,7 @@ AT_CHECK([autom4te -l m4sh $1.as -o $1])
+ # `_oline_', once processed and ran, produces our reference.
+ # We check that we find ourselves by looking at a string which is
+ # available only in the original script: `_oline_'.
+-AT_DATA_LINENO([reference], [false], [__OLINE__], [_oline__])
++AT_DATA_LINENO([reference], [true], [__OLINE__], [_oline__])
+ AT_CHECK([./reference], 0, [stdout])
+ 
+ # The reference:
+@@ -264,7 +264,7 @@ mv stdout expout
+ # Be sure to be out of the PATH.
+ AT_CHECK([mkdir test || exit 77])
+ 
+-AT_DATA_LINENO([test/test-1], [false], [__LINENO__], [LINENO])
++AT_DATA_LINENO([test/test-1], [true], [__LINENO__], [LINENO])
+ AT_CHECK([./test/test-1],  0, [expout])
+ AT_CHECK([(PATH=test$PATH_SEPARATOR$PATH; export PATH; exec test-1)],
+  0, [expout])

Copied: autoconf/repos/testing-any/PKGBUILD (from rev 404968, 
autoconf/trunk/PKGBUILD)
=======
--- testing-any/PKGBUILD(rev 0)
+++ testing-any/PKGBUILD2020-12-24 07:08:29 UTC (rev 404969)
@@ -0,0 +1,43 @@
+# Maintainer: Lukas Fleischer 
+# Contributor: Allan McRae 
+# Contributor: Andreas Radke 
+
+pkgname=autoconf
+pkgver=2.70
+pkgrel=1
+pkgdesc="A GNU tool for automatically configuring source code"
+arch=('any')
+license=('GPL2' 'GPL3' 'custom')
+url="https://www.gnu.org/software/autoconf";
+groups=('base-devel')
+depends=('awk' 'm4' 'diffutils' 'perl' 'sh')
+checkdepends=('gcc-fortran')
+source=("https://ftp.gnu.org/pub/gnu/${pkgname}/${pkgname}-${pkgver}.tar.xz"{,.sig})
+md5sums=('e4453011b18da194b565bf282948f997'
+ 'SKIP')
+validpgpkeys=('82F854F3CE73174B8B63174091FCC32B6769AA64')  # Zack Weinberg
+
+
+build() {
+   cd "${pkgname}-${pkgver}"
+   ./configure --prefix=/usr
+   make
+}
+
+check() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+
+   # test 309 is a false positive due to warning outputted with our build 
flags
+   make check || true
+}
+
+package() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make DESTDIR="${pkgdir}" install
+
+   # license exception
+   install -Dm644 COPYING.EXCEPTION 
"$pkgdir"/usr/share/licenses/autoconf/COPYING.EXCEPTION
+
+   # remove unwanted file
+   rm -f "$pkgdir"/usr/share/info/standards.info
+}


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

2020-12-23 Thread Allan McRae via arch-commits
Date: Thursday, December 24, 2020 @ 07:08:00
  Author: allan
Revision: 404968

upgpkg: autoconf 2.70-1: upstream update

Modified:
  autoconf/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-12-24 03:38:18 UTC (rev 404967)
+++ PKGBUILD2020-12-24 07:08:00 UTC (rev 404968)
@@ -3,8 +3,8 @@
 # Contributor: Andreas Radke 
 
 pkgname=autoconf
-pkgver=2.69
-pkgrel=7
+pkgver=2.70
+pkgrel=1
 pkgdesc="A GNU tool for automatically configuring source code"
 arch=('any')
 license=('GPL2' 'GPL3' 'custom')
@@ -11,35 +11,13 @@
 url="https://www.gnu.org/software/autoconf";
 groups=('base-devel')
 depends=('awk' 'm4' 'diffutils' 'perl' 'sh')
-makedepends=('help2man')  # needed while perl patch is present
 checkdepends=('gcc-fortran')
-source=("https://ftp.gnu.org/pub/gnu/${pkgname}/${pkgname}-${pkgver}.tar.xz"{,.sig}
-'0001-autoconf-2.69-perl-5.22-autoscan.patch'
-'0002-autoconf-2.69-perl-5.28.patch'
-'0003-autoconf-2.69-libtool-compatibility.patch'
-'0004-Port-tests-to-Bash-5.patch')
-md5sums=('50f97f4159805e374639a73e2636f22e'
- 'SKIP'
- 'aa07afe5a671df25bf1878831702d5b9'
- 'f450ce6001458d800907e5d4ad8023fb'
- '87bceda7922ebc2a453568b2ae179e1b'
- 'd656c3a43462f678cf72848ca16ad6e2')
-validpgpkeys=('71C2CC22B1C4602927D2F3AAA7A16B4A2527436A')
+source=("https://ftp.gnu.org/pub/gnu/${pkgname}/${pkgname}-${pkgver}.tar.xz"{,.sig})
+md5sums=('e4453011b18da194b565bf282948f997'
+ 'SKIP')
+validpgpkeys=('82F854F3CE73174B8B63174091FCC32B6769AA64')  # Zack Weinberg
 
 
-prepare() {
-   cd "${pkgname}-${pkgver}"
-
-   # fix incompatibility with recent perl
-   patch -p1 -i "$srcdir"/0001-autoconf-2.69-perl-5.22-autoscan.patch
-   patch -p1 -i "$srcdir"/0002-autoconf-2.69-perl-5.28.patch
-
-   # fix tesetsuite failures with recent libtool
-   patch -p1 -i "$srcdir"/0003-autoconf-2.69-libtool-compatibility.patch
-
-   patch -p1 -i "$srcdir"/0004-Port-tests-to-Bash-5.patch
-}
-
 build() {
cd "${pkgname}-${pkgver}"
./configure --prefix=/usr
@@ -48,7 +26,9 @@
 
 check() {
cd "${srcdir}/${pkgname}-${pkgver}"
-   make check
+
+   # test 309 is a false positive due to warning outputted with our build 
flags
+   make check || true
 }
 
 package() {


[arch-commits] Commit in elfutils/repos (testing-x86_64 testing-x86_64/PKGBUILD)

2020-12-23 Thread Allan McRae via arch-commits
Date: Thursday, December 24, 2020 @ 03:07:54
  Author: allan
Revision: 404966

archrelease: copy trunk to testing-x86_64

Added:
  elfutils/repos/testing-x86_64/
  elfutils/repos/testing-x86_64/PKGBUILD
(from rev 404965, elfutils/trunk/PKGBUILD)

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

Copied: elfutils/repos/testing-x86_64/PKGBUILD (from rev 404965, 
elfutils/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2020-12-24 03:07:54 UTC (rev 404966)
@@ -0,0 +1,53 @@
+# Maintainer: Laurent Carlier 
+# Contributor: Stéphane Gaudreault 
+# Contributor: Andrej Gelenberg 
+
+pkgbase=elfutils
+pkgname=(elfutils libelf)
+pkgver=0.182
+pkgrel=1
+pkgdesc='Utilities to handle ELF object files and DWARF debugging information'
+arch=(x86_64)
+url='https://sourceware.org/elfutils/'
+license=(LGPL3 GPL GPL3)
+makedepends=(gcc-libs zlib bzip2 xz libmicrohttpd sqlite libarchive curl)
+options=(staticlibs)
+source=(https://sourceware.org/elfutils/ftp/${pkgver}/elfutils-${pkgver}.tar.bz2{,.sig})
+sha512sums=('8ab0735bbe11b4383169341bf674ace360038b6ae5239f1d5a991c46260cd4bce545e078735b7de3b8fab132bb5da41f60689ff1b1d7ebccfada117a954a2c81'
+'SKIP')
+validpgpkeys=('47CC0331081B8BC6D0FD4DA08370665B57816A6A')  # Mark J. Wielaard 

+validpgpkeys+=('EC3CFE88F6CA0788774F5C1D1AA44BE649DE760A') # Mark Wielaard 

+
+build() {
+  cd $pkgbase-$pkgver
+
+  CFLAGS+=" -g"  # required for test-suite success
+  ./configure --prefix=/usr --program-prefix="eu-" 
--enable-deterministic-archives
+
+  make
+}
+
+check() {
+  cd $pkgbase-$pkgver
+
+  # Some tests fail due to limited capabilities of build chroot
+  make check || :
+}
+
+package_elfutils() {
+  depends=(gcc-libs zlib bzip2 xz libmicrohttpd sqlite libarchive curl
+   "libelf=$pkgver-$pkgrel")
+
+  cd $pkgbase-$pkgver
+  make DESTDIR="$pkgdir" install
+
+  mkdir "$srcdir/libelf" 
+  mv "$pkgdir"/usr/{lib,include} "$srcdir/libelf/"
+}
+
+package_libelf() {
+  pkgdesc='Libraries to handle ELF object files and DWARF debugging 
information'
+  depends=(gcc-libs zlib bzip2 xz curl)
+
+  mv libelf "$pkgdir/usr"
+}


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

2020-12-23 Thread Allan McRae via arch-commits
Date: Thursday, December 24, 2020 @ 03:07:40
  Author: allan
Revision: 404965

upgpkg: elfutils 0.182-1: upstream update

Modified:
  elfutils/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-12-24 03:01:35 UTC (rev 404964)
+++ PKGBUILD2020-12-24 03:07:40 UTC (rev 404965)
@@ -4,7 +4,7 @@
 
 pkgbase=elfutils
 pkgname=(elfutils libelf)
-pkgver=0.181
+pkgver=0.182
 pkgrel=1
 pkgdesc='Utilities to handle ELF object files and DWARF debugging information'
 arch=(x86_64)
@@ -13,7 +13,7 @@
 makedepends=(gcc-libs zlib bzip2 xz libmicrohttpd sqlite libarchive curl)
 options=(staticlibs)
 
source=(https://sourceware.org/elfutils/ftp/${pkgver}/elfutils-${pkgver}.tar.bz2{,.sig})
-sha512sums=('d565541d5817f409dc89ebb1ee593366f69c371a1531308eeb67ff934b14a0fab0c9009fd7c23240efbaa1b4e04edac5c425e47d80e3e66ba03dcaf000afea36'
+sha512sums=('8ab0735bbe11b4383169341bf674ace360038b6ae5239f1d5a991c46260cd4bce545e078735b7de3b8fab132bb5da41f60689ff1b1d7ebccfada117a954a2c81'
 'SKIP')
 validpgpkeys=('47CC0331081B8BC6D0FD4DA08370665B57816A6A')  # Mark J. Wielaard 

 validpgpkeys+=('EC3CFE88F6CA0788774F5C1D1AA44BE649DE760A') # Mark Wielaard 



[arch-commits] Commit in libmpc/repos (testing-x86_64 testing-x86_64/PKGBUILD)

2020-12-23 Thread Allan McRae via arch-commits
Date: Thursday, December 24, 2020 @ 03:01:35
  Author: allan
Revision: 404964

archrelease: copy trunk to testing-x86_64

Added:
  libmpc/repos/testing-x86_64/
  libmpc/repos/testing-x86_64/PKGBUILD
(from rev 404963, libmpc/trunk/PKGBUILD)

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

Copied: libmpc/repos/testing-x86_64/PKGBUILD (from rev 404963, 
libmpc/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2020-12-24 03:01:35 UTC (rev 404964)
@@ -0,0 +1,31 @@
+# Maintainer: Allan McRae 
+
+pkgname=libmpc
+pkgver=1.2.1
+pkgrel=1
+pkgdesc="Library for the arithmetic of complex numbers with arbitrarily high 
precision"
+arch=('x86_64')
+url="http://www.multiprecision.org/";
+license=('LGPL')
+depends=('mpfr')
+source=(https://ftp.gnu.org/gnu/mpc/mpc-${pkgver/_/-}.tar.gz{,.sig})
+md5sums=('9f16c976c25bb0f76b50be749cd7a3a8'
+ 'SKIP')
+validpgpkeys=('AD17A21EF8AED8F1CC02DBD9F7D5C9BF765C61E3')  # Andreas Enge
+
+build() {
+  cd "${srcdir}/mpc-${pkgver}"
+  ./configure --prefix=/usr
+  make
+}
+
+check() {
+  cd "${srcdir}/mpc-${pkgver}"
+  make check
+}
+
+package() {
+  cd "${srcdir}/mpc-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+  mv ${pkgdir}/usr/share/info/{mpc,libmpc}.info
+}


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

2020-12-23 Thread Allan McRae via arch-commits
Date: Thursday, December 24, 2020 @ 03:01:20
  Author: allan
Revision: 404963

upgpkg: libmpc 1.2.1-1: upstream update

Modified:
  libmpc/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-12-24 02:36:13 UTC (rev 404962)
+++ PKGBUILD2020-12-24 03:01:20 UTC (rev 404963)
@@ -1,8 +1,8 @@
 # Maintainer: Allan McRae 
 
 pkgname=libmpc
-pkgver=1.1.0
-pkgrel=2
+pkgver=1.2.1
+pkgrel=1
 pkgdesc="Library for the arithmetic of complex numbers with arbitrarily high 
precision"
 arch=('x86_64')
 url="http://www.multiprecision.org/";
@@ -9,7 +9,7 @@
 license=('LGPL')
 depends=('mpfr')
 source=(https://ftp.gnu.org/gnu/mpc/mpc-${pkgver/_/-}.tar.gz{,.sig})
-md5sums=('4125404e41e482ec68282a2e687f6c73'
+md5sums=('9f16c976c25bb0f76b50be749cd7a3a8'
  'SKIP')
 validpgpkeys=('AD17A21EF8AED8F1CC02DBD9F7D5C9BF765C61E3')  # Andreas Enge
 


[arch-commits] Commit in gmp/repos (testing-x86_64 testing-x86_64/PKGBUILD)

2020-12-23 Thread Allan McRae via arch-commits
Date: Thursday, December 24, 2020 @ 02:33:54
  Author: allan
Revision: 404958

archrelease: copy trunk to testing-x86_64

Added:
  gmp/repos/testing-x86_64/
  gmp/repos/testing-x86_64/PKGBUILD
(from rev 404957, gmp/trunk/PKGBUILD)

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

Copied: gmp/repos/testing-x86_64/PKGBUILD (from rev 404957, gmp/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2020-12-24 02:33:54 UTC (rev 404958)
@@ -0,0 +1,35 @@
+# Maintainer: Allan McRae 
+# Contributer: Jan de Groot 
+
+pkgname=gmp
+pkgver=6.2.1
+pkgrel=1
+pkgdesc='A free library for arbitrary precision arithmetic'
+arch=(x86_64)
+url='https://gmplib.org/'
+depends=(gcc-libs sh)
+license=(LGPL3 GPL)
+source=(https://gmplib.org/download/gmp/gmp-$pkgver.tar.lz{,.sig})
+md5sums=('03a31d8cbaf29d136252f8f38875ed82'
+ 'SKIP')
+validpgpkeys=('343C2FF0FBEE5EC2EDBEF399F3599FF828C67298')   # Niels Möller
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./configure --build=${CHOST} \
+--prefix=/usr \
+--enable-cxx \
+--enable-fat
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  make check
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="${pkgdir}" install
+}


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

2020-12-23 Thread Allan McRae via arch-commits
Date: Thursday, December 24, 2020 @ 02:33:35
  Author: allan
Revision: 404957

upgpkg: gmp 6.2.1-1: upstream bugfix release

Modified:
  gmp/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-12-24 00:22:30 UTC (rev 404956)
+++ PKGBUILD2020-12-24 02:33:35 UTC (rev 404957)
@@ -2,7 +2,7 @@
 # Contributer: Jan de Groot 
 
 pkgname=gmp
-pkgver=6.2.0
+pkgver=6.2.1
 pkgrel=1
 pkgdesc='A free library for arbitrary precision arithmetic'
 arch=(x86_64)
@@ -10,7 +10,7 @@
 depends=(gcc-libs sh)
 license=(LGPL3 GPL)
 source=(https://gmplib.org/download/gmp/gmp-$pkgver.tar.lz{,.sig})
-md5sums=('e3e08ac185842a882204ba3c37985127'
+md5sums=('03a31d8cbaf29d136252f8f38875ed82'
  'SKIP')
 validpgpkeys=('343C2FF0FBEE5EC2EDBEF399F3599FF828C67298')   # Niels Möller
 


[arch-commits] Commit in pacman/repos/extra-x86_64 (6 files)

2020-06-30 Thread Allan McRae via arch-commits
Date: Wednesday, July 1, 2020 @ 01:57:56
  Author: allan
Revision: 390679

archrelease: copy trunk to extra-x86_64

Added:
  pacman/repos/extra-x86_64/PKGBUILD
(from rev 390678, pacman/trunk/PKGBUILD)
  pacman/repos/extra-x86_64/makepkg.conf
(from rev 390678, pacman/trunk/makepkg.conf)
  pacman/repos/extra-x86_64/pacman.conf
(from rev 390678, pacman/trunk/pacman.conf)
Deleted:
  pacman/repos/extra-x86_64/PKGBUILD
  pacman/repos/extra-x86_64/makepkg.conf
  pacman/repos/extra-x86_64/pacman.conf

--+
 PKGBUILD |  112 ++---
 makepkg.conf |  294 -
 pacman.conf  |  198 +++---
 3 files changed, 302 insertions(+), 302 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-07-01 01:55:58 UTC (rev 390678)
+++ PKGBUILD2020-07-01 01:57:56 UTC (rev 390679)
@@ -1,56 +0,0 @@
-# vim: set ts=2 sw=2 et:
-# Maintainer: Dan McGee 
-# Maintainer: Dave Reisner 
-
-pkgname=pacman
-pkgver=5.2.2
-pkgrel=1
-pkgdesc="A library-based package manager with dependency support"
-arch=('x86_64')
-url="https://www.archlinux.org/pacman/";
-license=('GPL')
-groups=('base-devel')
-depends=('bash' 'glibc' 'libarchive' 'curl'
- 'gpgme' 'pacman-mirrorlist' 'archlinux-keyring')
-makedepends=('asciidoc')
-checkdepends=('python' 'fakechroot')
-optdepends=('perl-locale-gettext: translation support in makepkg-template')
-provides=('libalpm.so')
-backup=(etc/pacman.conf
-etc/makepkg.conf)
-options=('strip' 'debug')
-validpgpkeys=('6645B0A8C7005E78DB1D7864F99FFE0FEAE999BD'  # Allan McRae 

-  'B8151B117037781095514CA7BBDFFC92306B1121') # Andrew Gregory 
(pacman) 
-source=(https://sources.archlinux.org/other/pacman/$pkgname-$pkgver.tar.gz{,.sig}
-pacman.conf
-makepkg.conf)
-sha256sums=('bb201a9f2fb53c28d011f661d50028efce6eef2c1d2a36728bdd0130189349a0'
-'SKIP'
-'3353f363088c73f1f86a890547c0f87c7473e5caf43bbbc768c2e9a7397f2aa2'
-'9c769f13c09a6f24c393a9762474eded2f269d8966e7764d9160d62232a7919b')
-
-
-build() {
-  cd "$pkgname-$pkgver"
-
-  ./configure --prefix=/usr --sysconfdir=/etc \
---localstatedir=/var --enable-doc \
---with-scriptlet-shell=/usr/bin/bash \
---with-ldconfig=/usr/bin/ldconfig
-  make V=1
-}
-
-check() {
-  make -C "$pkgname-$pkgver" check
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-
-  make DESTDIR="$pkgdir" install
-
-  # install Arch specific stuff
-  install -dm755 "$pkgdir/etc"
-  install -m644 "$srcdir/pacman.conf" "$pkgdir/etc"
-  install -m644 "$srcdir/makepkg.conf" "$pkgdir/etc"
-}

Copied: pacman/repos/extra-x86_64/PKGBUILD (from rev 390678, 
pacman/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-07-01 01:57:56 UTC (rev 390679)
@@ -0,0 +1,56 @@
+# vim: set ts=2 sw=2 et:
+# Maintainer: Dan McGee 
+# Maintainer: Dave Reisner 
+
+pkgname=pacman
+pkgver=5.2.2
+pkgrel=1
+pkgdesc="A library-based package manager with dependency support"
+arch=('x86_64')
+url="https://www.archlinux.org/pacman/";
+license=('GPL')
+groups=('base-devel')
+depends=('bash' 'glibc' 'libarchive' 'curl'
+ 'gpgme' 'pacman-mirrorlist' 'archlinux-keyring')
+makedepends=('asciidoc')
+checkdepends=('python' 'fakechroot')
+optdepends=('perl-locale-gettext: translation support in makepkg-template')
+provides=('libalpm.so')
+backup=(etc/pacman.conf
+etc/makepkg.conf)
+options=('strip' 'debug')
+validpgpkeys=('6645B0A8C7005E78DB1D7864F99FFE0FEAE999BD'  # Allan McRae 

+  'B8151B117037781095514CA7BBDFFC92306B1121') # Andrew Gregory 
(pacman) 
+source=(https://sources.archlinux.org/other/pacman/$pkgname-$pkgver.tar.gz{,.sig}
+pacman.conf
+makepkg.conf)
+sha256sums=('bb201a9f2fb53c28d011f661d50028efce6eef2c1d2a36728bdd0130189349a0'
+'SKIP'
+'3353f363088c73f1f86a890547c0f87c7473e5caf43bbbc768c2e9a7397f2aa2'
+'9c769f13c09a6f24c393a9762474eded2f269d8966e7764d9160d62232a7919b')
+
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  ./configure --prefix=/usr --sysconfdir=/etc \
+--localstatedir=/var --enable-doc \
+--with-scriptlet-shell=/usr/bin/bash \
+--with-ldconfig=/usr/b

[arch-commits] Commit in pacman/repos (4 files)

2020-06-30 Thread Allan McRae via arch-commits
Date: Wednesday, July 1, 2020 @ 01:55:58
  Author: allan
Revision: 390678

archrelease: copy trunk to extra-x86_64

Added:
  pacman/repos/extra-x86_64/
  pacman/repos/extra-x86_64/PKGBUILD
(from rev 390677, pacman/trunk/PKGBUILD)
  pacman/repos/extra-x86_64/makepkg.conf
(from rev 390677, pacman/trunk/makepkg.conf)
  pacman/repos/extra-x86_64/pacman.conf
(from rev 390677, pacman/trunk/pacman.conf)

--+
 PKGBUILD |   56 +
 makepkg.conf |  147 +
 pacman.conf  |   99 ++
 3 files changed, 302 insertions(+)

Copied: pacman/repos/extra-x86_64/PKGBUILD (from rev 390677, 
pacman/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD   (rev 0)
+++ extra-x86_64/PKGBUILD   2020-07-01 01:55:58 UTC (rev 390678)
@@ -0,0 +1,56 @@
+# vim: set ts=2 sw=2 et:
+# Maintainer: Dan McGee 
+# Maintainer: Dave Reisner 
+
+pkgname=pacman
+pkgver=5.2.2
+pkgrel=1
+pkgdesc="A library-based package manager with dependency support"
+arch=('x86_64')
+url="https://www.archlinux.org/pacman/";
+license=('GPL')
+groups=('base-devel')
+depends=('bash' 'glibc' 'libarchive' 'curl'
+ 'gpgme' 'pacman-mirrorlist' 'archlinux-keyring')
+makedepends=('asciidoc')
+checkdepends=('python' 'fakechroot')
+optdepends=('perl-locale-gettext: translation support in makepkg-template')
+provides=('libalpm.so')
+backup=(etc/pacman.conf
+etc/makepkg.conf)
+options=('strip' 'debug')
+validpgpkeys=('6645B0A8C7005E78DB1D7864F99FFE0FEAE999BD'  # Allan McRae 

+  'B8151B117037781095514CA7BBDFFC92306B1121') # Andrew Gregory 
(pacman) 
+source=(https://sources.archlinux.org/other/pacman/$pkgname-$pkgver.tar.gz{,.sig}
+pacman.conf
+makepkg.conf)
+sha256sums=('bb201a9f2fb53c28d011f661d50028efce6eef2c1d2a36728bdd0130189349a0'
+'SKIP'
+'3353f363088c73f1f86a890547c0f87c7473e5caf43bbbc768c2e9a7397f2aa2'
+'9c769f13c09a6f24c393a9762474eded2f269d8966e7764d9160d62232a7919b')
+
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  ./configure --prefix=/usr --sysconfdir=/etc \
+--localstatedir=/var --enable-doc \
+--with-scriptlet-shell=/usr/bin/bash \
+--with-ldconfig=/usr/bin/ldconfig
+  make V=1
+}
+
+check() {
+  make -C "$pkgname-$pkgver" check
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+
+  make DESTDIR="$pkgdir" install
+
+  # install Arch specific stuff
+  install -dm755 "$pkgdir/etc"
+  install -m644 "$srcdir/pacman.conf" "$pkgdir/etc"
+  install -m644 "$srcdir/makepkg.conf" "$pkgdir/etc"
+}

Copied: pacman/repos/extra-x86_64/makepkg.conf (from rev 390677, 
pacman/trunk/makepkg.conf)
===
--- extra-x86_64/makepkg.conf   (rev 0)
+++ extra-x86_64/makepkg.conf   2020-07-01 01:55:58 UTC (rev 390678)
@@ -0,0 +1,147 @@
+#!/hint/bash
+#
+# /etc/makepkg.conf
+#
+
+#
+# SOURCE ACQUISITION
+#
+#
+#-- The download utilities that makepkg should use to acquire sources
+#  Format: 'protocol::agent'
+DLAGENTS=('file::/usr/bin/curl -gqC - -o %o %u'
+  'ftp::/usr/bin/curl -gqfC - --ftp-pasv --retry 3 --retry-delay 3 -o 
%o %u'
+  'http::/usr/bin/curl -gqb "" -fLC - --retry 3 --retry-delay 3 -o %o 
%u'
+  'https::/usr/bin/curl -gqb "" -fLC - --retry 3 --retry-delay 3 -o %o 
%u'
+  'rsync::/usr/bin/rsync --no-motd -z %u %o'
+  'scp::/usr/bin/scp -C %u %o')
+
+# Other common tools:
+# /usr/bin/snarf
+# /usr/bin/lftpget -c
+# /usr/bin/wget
+
+#-- The package required by makepkg to download VCS sources
+#  Format: 'protocol::package'
+VCSCLIENTS=('bzr::bzr'
+'git::git'
+'hg::mercurial'
+'svn::subversion')
+
+#
+# ARCHITECTURE, COMPILE FLAGS
+#
+#
+CARCH="x86_64"
+CHOST="x86_64-pc-linux-gnu"
+
+#-- Compiler and Linker Flags
+CPPFLAGS="-D_FORTIFY_SOURCE=2"
+CFLAGS="-march=x86-64 -mtune=generic -O2 -pipe -fno-plt"
+CXXFLAGS="-march=x86-64 -mtune=generic -O2 -pipe -fno-plt"
+LDFLAGS="-Wl,-O1,--sort-common,--as-needed,-z,rel

[arch-commits] Commit in pacman/trunk (5 files)

2020-06-30 Thread Allan McRae via arch-commits
Date: Wednesday, July 1, 2020 @ 01:55:36
  Author: allan
Revision: 390677

upgpkg: pacman 5.2.2-1: upstream update

Modified:
  pacman/trunk/PKGBUILD
  pacman/trunk/makepkg.conf
Deleted:
  pacman/trunk/makepkg-fix-one-more-file-seccomp-issue.patch
  pacman/trunk/pacman-5.2.1-fix-pactest-package-tar-format.patch
  pacman/trunk/pacman-5.2.1-reproducible-libprovides.patch

---+
 PKGBUILD  |   20 ++--
 makepkg-fix-one-more-file-seccomp-issue.patch |   30 --
 makepkg.conf  |6 ++-
 pacman-5.2.1-fix-pactest-package-tar-format.patch |   32 
 pacman-5.2.1-reproducible-libprovides.patch   |   13 
 5 files changed, 8 insertions(+), 93 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-07-01 00:57:10 UTC (rev 390676)
+++ PKGBUILD2020-07-01 01:55:36 UTC (rev 390677)
@@ -3,8 +3,8 @@
 # Maintainer: Dave Reisner 
 
 pkgname=pacman
-pkgver=5.2.1
-pkgrel=6
+pkgver=5.2.2
+pkgrel=1
 pkgdesc="A library-based package manager with dependency support"
 arch=('x86_64')
 url="https://www.archlinux.org/pacman/";
@@ -22,25 +22,13 @@
 validpgpkeys=('6645B0A8C7005E78DB1D7864F99FFE0FEAE999BD'  # Allan McRae 

   'B8151B117037781095514CA7BBDFFC92306B1121') # Andrew Gregory 
(pacman) 
 
source=(https://sources.archlinux.org/other/pacman/$pkgname-$pkgver.tar.gz{,.sig}
-pacman-5.2.1-fix-pactest-package-tar-format.patch
-makepkg-fix-one-more-file-seccomp-issue.patch
-pacman-5.2.1-reproducible-libprovides.patch
 pacman.conf
 makepkg.conf)
-sha256sums=('1930c407265fd039cb3a8e6edc82f69e122aa9239d216d9d57b9d1b9315af312'
+sha256sums=('bb201a9f2fb53c28d011f661d50028efce6eef2c1d2a36728bdd0130189349a0'
 'SKIP'
-'824a5c9dd458fb27b05a9a0b4b5d75b7a392de0dae79a18f5cfe8beaf4d82f0c'
-'e481a161bba76729cd434c97e0b319ddfcb1d93b2e4890d72b4e8a32982531d9'
-'667ba659f85e3740fda9808e4751a44a63e0484072594d961b87e474c607b79c'
 '3353f363088c73f1f86a890547c0f87c7473e5caf43bbbc768c2e9a7397f2aa2'
-'8c100b64450f5a19a16325dd05c143d49395bdeb96bd957f863cde4b95d3cb86')
+'9c769f13c09a6f24c393a9762474eded2f269d8966e7764d9160d62232a7919b')
 
-prepare() {
-  cd "$pkgname-$pkgver"
-  patch -Np1 < ../pacman-5.2.1-fix-pactest-package-tar-format.patch
-  patch -Np1 < ../makepkg-fix-one-more-file-seccomp-issue.patch
-  patch -Np1 < ../pacman-5.2.1-reproducible-libprovides.patch
-}
 
 build() {
   cd "$pkgname-$pkgver"

Deleted: makepkg-fix-one-more-file-seccomp-issue.patch
===
--- makepkg-fix-one-more-file-seccomp-issue.patch   2020-07-01 00:57:10 UTC 
(rev 390676)
+++ makepkg-fix-one-more-file-seccomp-issue.patch   2020-07-01 01:55:36 UTC 
(rev 390677)
@@ -1,30 +0,0 @@
-From 00cfc6c5c9700b597c384743c2f057a2ba7125e2 Mon Sep 17 00:00:00 2001
-From: Eli Schwartz 
-Date: Thu, 9 Jan 2020 20:49:17 -0500
-Subject: [pacman-dev] [PATCH] makepkg: fix one more file-seccomp issue
-
-When file is called via fakeroot, it doesn't matter whether you use -z
-or not, it is still incompatible with seccomp. Fix by configuring it
-with FILECMD when used in the fakeroot 'tidy' run.
-
-Signed-off-by: Eli Schwartz 

- scripts/libmakepkg/tidy/strip.sh.in | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/scripts/libmakepkg/tidy/strip.sh.in 
b/scripts/libmakepkg/tidy/strip.sh.in
-index 1bd810f0..876f00f0 100644
 a/scripts/libmakepkg/tidy/strip.sh.in
-+++ b/scripts/libmakepkg/tidy/strip.sh.in
-@@ -111,7 +111,7 @@ tidy_strip() {
- 
-   local binary strip_flags
-   find . -type f -perm -u+w -print0 2>/dev/null | while IFS= read 
-rd '' binary ; do
--  case "$(file -bi "$binary")" in
-+  case "$(@FILECMD@ -bi "$binary")" in
-   *application/x-sharedlib*)  # Libraries (.so)
-   strip_flags="$STRIP_SHARED";;
-   *application/x-archive*)# Libraries (.a)
--- 
-2.24.1
-

Modified: makepkg.conf
===
--- makepkg.conf2020-07-01 00:57:10 UTC (rev 390676)
+++ makepkg.conf2020-07-01 01:55:36 UTC (rev 390677)
@@ -40,11 +40,13 @@
 CFLAGS="-march=x86-64 -mtune=generic -O2 -pipe -fno-plt"
 CXXFLAGS="-march=x86-64 -mtune=generic -O2 -pipe -fno-plt"
 LDFLAGS="-Wl,-O1,--sort-common,--as

[arch-commits] Commit in a2ps/repos/extra-x86_64 (24 files)

2020-06-05 Thread Allan McRae via arch-commits
Date: Friday, June 5, 2020 @ 08:01:02
  Author: allan
Revision: 388331

archrelease: copy trunk to extra-x86_64

Added:
  a2ps/repos/extra-x86_64/CVE-2014-0466.patch
(from rev 388330, a2ps/trunk/CVE-2014-0466.patch)
  a2ps/repos/extra-x86_64/CVE-2015-8107.patch
(from rev 388330, a2ps/trunk/CVE-2015-8107.patch)
  a2ps/repos/extra-x86_64/PKGBUILD
(from rev 388330, a2ps/trunk/PKGBUILD)
  a2ps/repos/extra-x86_64/a2ps-4.13-manpage-chmod.patch
(from rev 388330, a2ps/trunk/a2ps-4.13-manpage-chmod.patch)
  a2ps/repos/extra-x86_64/a2ps-4.13-security.patch
(from rev 388330, a2ps/trunk/a2ps-4.13-security.patch)
  a2ps/repos/extra-x86_64/a2ps-4.13c-emacs.patch
(from rev 388330, a2ps/trunk/a2ps-4.13c-emacs.patch)
  a2ps/repos/extra-x86_64/a2ps-4.13c-fnmatch-replacement.patch
(from rev 388330, a2ps/trunk/a2ps-4.13c-fnmatch-replacement.patch)
  a2ps/repos/extra-x86_64/a2ps-4.14-check-mempcpy.patch
(from rev 388330, a2ps/trunk/a2ps-4.14-check-mempcpy.patch)
  a2ps/repos/extra-x86_64/a2ps-4.14-fix-stpcpy-proto.patch
(from rev 388330, a2ps/trunk/a2ps-4.14-fix-stpcpy-proto.patch)
  a2ps/repos/extra-x86_64/a2ps-adhere-source-date-epoch.patch
(from rev 388330, a2ps/trunk/a2ps-adhere-source-date-epoch.patch)
  a2ps/repos/extra-x86_64/a2ps-texinfo5.patch
(from rev 388330, a2ps/trunk/a2ps-texinfo5.patch)
  a2ps/repos/extra-x86_64/a2ps-texinfo67.patch
(from rev 388330, a2ps/trunk/a2ps-texinfo67.patch)
Deleted:
  a2ps/repos/extra-x86_64/CVE-2014-0466.patch
  a2ps/repos/extra-x86_64/CVE-2015-8107.patch
  a2ps/repos/extra-x86_64/PKGBUILD
  a2ps/repos/extra-x86_64/a2ps-4.13-manpage-chmod.patch
  a2ps/repos/extra-x86_64/a2ps-4.13-security.patch
  a2ps/repos/extra-x86_64/a2ps-4.13c-emacs.patch
  a2ps/repos/extra-x86_64/a2ps-4.13c-fnmatch-replacement.patch
  a2ps/repos/extra-x86_64/a2ps-4.14-check-mempcpy.patch
  a2ps/repos/extra-x86_64/a2ps-4.14-fix-stpcpy-proto.patch
  a2ps/repos/extra-x86_64/a2ps-texinfo5.patch
  a2ps/repos/extra-x86_64/a2ps-texinfo67.patch
  a2ps/repos/extra-x86_64/adhere-source-date-epoch.patch

--+
 CVE-2014-0466.patch  |   50 ++--
 CVE-2015-8107.patch  |  134 
 PKGBUILD |  136 -
 a2ps-4.13-manpage-chmod.patch|   24 ++---
 a2ps-4.13-security.patch |  130 +++
 a2ps-4.13c-emacs.patch   |   20 ++--
 a2ps-4.13c-fnmatch-replacement.patch |   86 ++--
 a2ps-4.14-check-mempcpy.patch|   24 ++---
 a2ps-4.14-fix-stpcpy-proto.patch |   34 
 a2ps-adhere-source-date-epoch.patch  |   22 +
 a2ps-texinfo5.patch  |   92 +++---
 a2ps-texinfo67.patch |   76 +-
 adhere-source-date-epoch.patch   |   22 -
 13 files changed, 425 insertions(+), 425 deletions(-)

Deleted: CVE-2014-0466.patch
===
--- CVE-2014-0466.patch 2020-06-05 08:00:06 UTC (rev 388330)
+++ CVE-2014-0466.patch 2020-06-05 08:01:02 UTC (rev 388331)
@@ -1,25 +0,0 @@
-From 5ea5ff8bc0094ca1eda0dd0e011d860e994c0a88 Mon Sep 17 00:00:00 2001
-From: David Seifert 
-Date: Sun, 17 Sep 2017 23:26:32 +0200
-Subject: Add fix for CVE-2014-0466
-

- contrib/fixps.in | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/contrib/fixps.in b/contrib/fixps.in
-index 45eeafc..bd6244e 100644
 a/contrib/fixps.in
-+++ b/contrib/fixps.in
-@@ -393,7 +393,7 @@ if test $task != check; then
-   eval "$command" ;;
-   gs)
- $verbose "$program: making a full rewrite of the file ($gs)." >&2
--  $gs -q -dNOPAUSE -dBATCH -sDEVICE=pswrite -sOutputFile=- -c save pop -f 
$file ;;
-+$gs -q -dSAFER -dNOPAUSE -dBATCH -sDEVICE=pswrite -sOutputFile=- -c 
save pop -f $file ;;
- esac
-   )
- fi
--- 
-cgit v1.2.1
-

Copied: a2ps/repos/extra-x86_64/CVE-2014-0466.patch (from rev 388330, 
a2ps/trunk/CVE-2014-0466.patch)
===
--- CVE-2014-0466.patch (rev 0)
+++ CVE-2014-0466.patch 2020-06-05 08:01:02 UTC (rev 388331)
@@ -0,0 +1,25 @@
+From 5ea5ff8bc0094ca1eda0dd0e011d860e994c0a88 Mon Sep 17 00:00:00 2001
+From: David Seifert 
+Date: Sun, 17 Sep 2017 23:26:32 +0200
+Subject: Add fix for CVE-2014-0466
+
+---
+ contrib/fixps.in | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/contrib/fixps.in b/contrib/fixps.in
+index 45eeafc..bd6244e 100644
+--- a/contrib/fixps.in
 b/contrib/fixps.in
+@@ -393,7 +393,7 @@ if test $task != check; then
+   eval "$command" ;;
+   gs)
+ $verbose "$program: making a full rewrite of the file ($gs)." >&2
+-  $gs -q -dNOPAUSE -dBATCH -sDEVICE=pswrite -sOutputFile=- -c save pop -f 
$file ;;
++$gs -q -dSAFER -dNOPAUSE -dBATCH -sDEVICE=pswrite -sOutputFile=- -

[arch-commits] Commit in a2ps/trunk (3 files)

2020-06-05 Thread Allan McRae via arch-commits
Date: Friday, June 5, 2020 @ 08:00:06
  Author: allan
Revision: 388330

upgpkg: a2ps 4.14-11: make reproducible for more than a day

Added:
  a2ps/trunk/a2ps-adhere-source-date-epoch.patch
(from rev 388329, a2ps/trunk/adhere-source-date-epoch.patch)
Modified:
  a2ps/trunk/PKGBUILD
Deleted:
  a2ps/trunk/adhere-source-date-epoch.patch

-+
 PKGBUILD|8 
 a2ps-adhere-source-date-epoch.patch |   22 ++
 adhere-source-date-epoch.patch  |   22 --
 3 files changed, 26 insertions(+), 26 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-06-05 07:31:07 UTC (rev 388329)
+++ PKGBUILD2020-06-05 08:00:06 UTC (rev 388330)
@@ -2,7 +2,7 @@
 
 pkgname=a2ps
 pkgver=4.14
-pkgrel=10
+pkgrel=11
 pkgdesc="An Any to PostScript filter"
 arch=('x86_64')
 url="https://www.gnu.org/software/a2ps/";
@@ -18,7 +18,7 @@
CVE-2014-0466.patch
CVE-2015-8107.patch
a2ps-texinfo67.patch
-adhere-source-date-epoch.patch)
+a2ps-adhere-source-date-epoch.patch)
 sha1sums=('365abbbe4b7128bf70dad16d06e23c5701874852'
   'SKIP'
   '8783952d3410d8d59ed953e1db45e2ef1a0b8f65'
@@ -31,7 +31,7 @@
   '0a04f4c145d3aef8f3c7537eb00cb4040c7209c9'
   '08c51a9361eaefe76af61b70392fa5ac1c4356c7'
   'f54b6b319a5c134e0ee9be8dc9c8f80a65dc98d6'
-  'd53042daa93db3969fbb5564c4f93ddc91ef6334')
+  '6f37363785adf4357977de3d595d7938d63f0993')
 validpgpkeys=('6EB39358D8328FE3CDC903A8CB6FA340E7075A54')
 
 prepare() {
@@ -50,7 +50,7 @@
   patch -p1 -i "${srcdir}/CVE-2014-0466.patch"
   patch -p1 -i "${srcdir}/CVE-2015-8107.patch"
   patch -p1 -i "${srcdir}/a2ps-texinfo67.patch"
-  patch -p1 -i "${srcdir}/adhere-source-date-epoch.patch"
+  patch -p1 -i "${srcdir}/a2ps-adhere-source-date-epoch.patch"
 }
 
 build() {

Copied: a2ps/trunk/a2ps-adhere-source-date-epoch.patch (from rev 388329, 
a2ps/trunk/adhere-source-date-epoch.patch)
===
--- a2ps-adhere-source-date-epoch.patch (rev 0)
+++ a2ps-adhere-source-date-epoch.patch 2020-06-05 08:00:06 UTC (rev 388330)
@@ -0,0 +1,22 @@
+diff -aur a2ps-4.14.old/etc/Makefile.am a2ps-4.14/etc/Makefile.am
+--- a2ps-4.14.old/etc/Makefile.am  2020-05-15 16:22:46.236954254 +0200
 a2ps-4.14/etc/Makefile.am  2020-05-15 16:58:42.382348094 +0200
+@@ -44,5 +44,5 @@
+ 
+ # Building a time stamp to know the version.
+ README: README.in Makefile
+-  sed "s!@date@!`date`!g;s!@version@!$(VERSION)!g"\
++  sed "s!@date@!$(shell date --utc --date="@${SOURCE_DATE_EPOCH:-$(date 
+%s)}")!g;s!@version@!$(VERSION)!g"   \
+   $(srcdir)/README.in > README
+diff -aur a2ps-4.14.old/etc/Makefile.in a2ps-4.14/etc/Makefile.in
+--- a2ps-4.14.old/etc/Makefile.in  2020-05-15 16:22:46.236954254 +0200
 a2ps-4.14/etc/Makefile.in  2020-05-15 16:59:00.132720058 +0200
+@@ -486,7 +486,7 @@
+ 
+ # Building a time stamp to know the version.
+ README: README.in Makefile
+-  sed "s!@date@!`date`!g;s!@version@!$(VERSION)!g"\
++  sed "s!@date@!$(shell date --utc --date="@${SOURCE_DATE_EPOCH:-$(date 
+%s)}")!g;s!@version@!$(VERSION)!g"   \
+   $(srcdir)/README.in > README
+ # Tell versions [3.59,3.63) of GNU make to not export all variables.
+ # Otherwise a system limit (for SysV at least) may be exceeded.

Deleted: adhere-source-date-epoch.patch
===
--- adhere-source-date-epoch.patch  2020-06-05 07:31:07 UTC (rev 388329)
+++ adhere-source-date-epoch.patch  2020-06-05 08:00:06 UTC (rev 388330)
@@ -1,22 +0,0 @@
-diff -aur a2ps-4.14.old/etc/Makefile.am a2ps-4.14/etc/Makefile.am
 a2ps-4.14.old/etc/Makefile.am  2020-05-15 16:22:46.236954254 +0200
-+++ a2ps-4.14/etc/Makefile.am  2020-05-15 16:58:42.382348094 +0200
-@@ -44,5 +44,5 @@
- 
- # Building a time stamp to know the version.
- README: README.in Makefile
--  sed "s!@date@!`date`!g;s!@version@!$(VERSION)!g"\
-+  sed "s!@date@!$(shell date --utc --date="${SOURCE_DATE_EPOCH:-$(date 
+%s)}")!g;s!@version@!$(VERSION)!g"\
-   $(srcdir)/README.in > README
-diff -aur a2ps-4.14.old/etc/Makefile.in a2ps-4.14/etc/Makefile.in
 a2ps-4.14.old/etc/Makefile.in  2020-05-15 16:22:46.236954254 +0200
-+++ a2ps-4.14/etc/Makefile.in  2020-05-15 16:59:00.132720058 +0200
-@@ -486,7 +486,7 @@
- 
- # Building a time stamp to know the version.
- README: README.in Makefile
--  sed "s!@date@!`date`!g;s!@version@!$(VERSION)!g"\
-+  sed "s!@date@!$(shell date --utc --date="${SOURCE_DATE_EPOCH:-$(date 
+%s)}")!g;s!@version@!$(VERSION)!g"\
-   $(srcdir)/README.in > README
- # Tell versions [3.59,3.63) of GNU make to not export all variables.
- # Otherwise a system limit (for SysV at least) ma

[arch-commits] Commit in lsof/repos/extra-x86_64 (4 files)

2020-06-04 Thread Allan McRae via arch-commits
Date: Friday, June 5, 2020 @ 01:18:49
  Author: allan
Revision: 388322

archrelease: copy trunk to extra-x86_64

Added:
  lsof/repos/extra-x86_64/PKGBUILD
(from rev 388321, lsof/trunk/PKGBUILD)
  lsof/repos/extra-x86_64/license.txt
(from rev 388321, lsof/trunk/license.txt)
Deleted:
  lsof/repos/extra-x86_64/PKGBUILD
  lsof/repos/extra-x86_64/license.txt

-+
 PKGBUILD|   91 +++---
 license.txt |   54 +-
 2 files changed, 76 insertions(+), 69 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-06-05 01:18:29 UTC (rev 388321)
+++ PKGBUILD2020-06-05 01:18:49 UTC (rev 388322)
@@ -1,42 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: Tom Gundersen 
-# Contributor: Angel Velasquez 
-# Contributor: Daniel J Griffiths 
-# Contributor: Aaron Griffin 
-# Contributor: Jochem Kossen 
-
-pkgname=lsof
-pkgver=4.93.2
-pkgrel=2
-pkgdesc='Lists open files for running Unix processes'
-url='https://github.com/lsof-org/lsof'
-arch=('x86_64')
-license=('custom')
-depends=('glibc' 'libtirpc')
-source=(https://github.com/lsof-org/lsof/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz
-license.txt)
-sha512sums=('3c4a4d503391b1a648a08a4947c2e72a9629b169eddf50738b16a16a82f2a26967e4db2902e4a9157de5a73ae638db48e392117ffbd591e9fafd6b1725cd01a0'
-
'3bdbc8f213e9bdba946636498d21486e2b79d8ae44a45b284b4dff8875e76f992ab0977e3ed510525a8f74203028acb6b15315fda963666012874be4ce4fdd93')
-
-prepare() {
-  cd lsof-${pkgver}
-  sed -i 's|/\* #define\tHASSECURITY\t1 \*/|#define\tHASSECURITY\t1|' 
dialects/linux/machine.h
-  sed -i "s|.so ./version|.ds VN ${pkgver}|" -i Lsof.8
-}
-
-build() {
-  cd lsof-${pkgver}
-  ./Configure -n linux
-  make CC="cc ${CFLAGS} ${CPPFLAGS} ${LDFLAGS}"
-}
-
-package() {
-  cd lsof-${pkgver}
-
-  install -Dm 755 lsof -t "${pkgdir}"/usr/bin
-  install -Dm 644 Lsof.8 "${pkgdir}"/usr/share/man/man8/lsof.8
-  install -Dm 644 "${srcdir}"/license.txt \
-   "${pkgdir}"/usr/share/licenses/lsof/LICENSE
-}
-
-# vim: ts=2 sw=2 et:

Copied: lsof/repos/extra-x86_64/PKGBUILD (from rev 388321, lsof/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-06-05 01:18:49 UTC (rev 388322)
@@ -0,0 +1,49 @@
+# Maintainer: Levente Polyak 
+# Contributor: Tom Gundersen 
+# Contributor: Angel Velasquez 
+# Contributor: Daniel J Griffiths 
+# Contributor: Aaron Griffin 
+# Contributor: Jochem Kossen 
+# Contributor: Hendrik Meyer 
+
+pkgname=lsof
+pkgver=4.93.2
+pkgrel=3
+pkgdesc='Lists open files for running Unix processes'
+url='https://github.com/lsof-org/lsof'
+arch=('x86_64')
+license=('custom')
+depends=('glibc' 'libtirpc')
+source=(https://github.com/lsof-org/lsof/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz
+   
"lsof-reproducible.patch::https://github.com/lsof-org/lsof/commit/3e404f637c76949917435f4a086c40e644e0089c.patch";
+license.txt)
+sha512sums=('3c4a4d503391b1a648a08a4947c2e72a9629b169eddf50738b16a16a82f2a26967e4db2902e4a9157de5a73ae638db48e392117ffbd591e9fafd6b1725cd01a0'
+
'ccb263eb04d3cc6a879f6a6bada680dee473920ea6460c4e048e7551a2716b937007bc91f21751fb3dd0a43320f9b263983e7c04e2bac46d45472ce97e50047b'
+
'3bdbc8f213e9bdba946636498d21486e2b79d8ae44a45b284b4dff8875e76f992ab0977e3ed510525a8f74203028acb6b15315fda963666012874be4ce4fdd93')
+
+prepare() {
+  cd lsof-${pkgver}
+
+  # patch accepted upstream - in queue to be committed
+  patch -p1 -i "${srcdir}/lsof-reproducible.patch"
+
+  sed -i 's|/\* #define\tHASSECURITY\t1 \*/|#define\tHASSECURITY\t1|' 
dialects/linux/machine.h
+  sed -i "s|.so ./version|.ds VN ${pkgver}|" -i Lsof.8
+}
+
+build() {
+  cd lsof-${pkgver}
+  ./Configure -n linux
+  make CC="cc ${CFLAGS} ${CPPFLAGS} ${LDFLAGS}"
+}
+
+package() {
+  cd lsof-${pkgver}
+
+  install -Dm 755 lsof -t "${pkgdir}"/usr/bin
+  install -Dm 644 Lsof.8 "${pkgdir}"/usr/share/man/man8/lsof.8
+  install -Dm 644 "${srcdir}"/license.txt \
+   "${pkgdir}"/usr/share/licenses/lsof/LICENSE
+}
+
+# vim: ts=2 sw=2 et:

Deleted: license.txt
===
--- license.txt 2020-06-05 01:18:29 UTC (rev 388321)
+++ license.txt 2020-06-05 01:18:49 UTC (rev 388322)
@@ -1,27 +0,0 @@
-Copyright 2002 Purdue Research Foundation, West Lafayette,
-Indiana 47907.  All rights reserved.
-
-Written by Victor A. Abell
-
-This software is not subject to any license of the American
-Telephone and Telegraph Company or the Regents of the
-University of California.
-
-Permission is granted to anyone to use this software for
-any purpose on any computer system, and to alter it and
-redistribute it freely, subject to the following
-restrictions:
-
-1. Neither the authors nor Purdue University are responsible
-   for any consequences of the use of this software.
-
-2. The or

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

2020-06-04 Thread Allan McRae via arch-commits
Date: Friday, June 5, 2020 @ 01:18:29
  Author: allan
Revision: 388321

upgpkg: lsof 4.93.2-3: fix reproducibility

Modified:
  lsof/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-06-05 00:40:13 UTC (rev 388320)
+++ PKGBUILD2020-06-05 01:18:29 UTC (rev 388321)
@@ -4,10 +4,11 @@
 # Contributor: Daniel J Griffiths 
 # Contributor: Aaron Griffin 
 # Contributor: Jochem Kossen 
+# Contributor: Hendrik Meyer 
 
 pkgname=lsof
 pkgver=4.93.2
-pkgrel=2
+pkgrel=3
 pkgdesc='Lists open files for running Unix processes'
 url='https://github.com/lsof-org/lsof'
 arch=('x86_64')
@@ -14,12 +15,18 @@
 license=('custom')
 depends=('glibc' 'libtirpc')
 
source=(https://github.com/lsof-org/lsof/archive/${pkgver}/${pkgname}-${pkgver}.tar.gz
+   
"lsof-reproducible.patch::https://github.com/lsof-org/lsof/commit/3e404f637c76949917435f4a086c40e644e0089c.patch";
 license.txt)
 
sha512sums=('3c4a4d503391b1a648a08a4947c2e72a9629b169eddf50738b16a16a82f2a26967e4db2902e4a9157de5a73ae638db48e392117ffbd591e9fafd6b1725cd01a0'
+
'ccb263eb04d3cc6a879f6a6bada680dee473920ea6460c4e048e7551a2716b937007bc91f21751fb3dd0a43320f9b263983e7c04e2bac46d45472ce97e50047b'
 
'3bdbc8f213e9bdba946636498d21486e2b79d8ae44a45b284b4dff8875e76f992ab0977e3ed510525a8f74203028acb6b15315fda963666012874be4ce4fdd93')
 
 prepare() {
   cd lsof-${pkgver}
+
+  # patch accepted upstream - in queue to be committed
+  patch -p1 -i "${srcdir}/lsof-reproducible.patch"
+
   sed -i 's|/\* #define\tHASSECURITY\t1 \*/|#define\tHASSECURITY\t1|' 
dialects/linux/machine.h
   sed -i "s|.so ./version|.ds VN ${pkgver}|" -i Lsof.8
 }


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

2020-05-31 Thread Allan McRae via arch-commits
Date: Sunday, May 31, 2020 @ 11:15:11
  Author: allan
Revision: 387960

upgpkg: python-hyperlink 19.0.0-6: fix reproducibility of .pyc files - attempt 
#2

Modified:
  python-hyperlink/trunk/PKGBUILD

--+
 PKGBUILD |5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-05-31 09:56:03 UTC (rev 387959)
+++ PKGBUILD2020-05-31 11:15:11 UTC (rev 387960)
@@ -3,7 +3,7 @@
 pkgbase=python-hyperlink
 pkgname=('python-hyperlink' 'python2-hyperlink')
 pkgver=19.0.0
-pkgrel=5
+pkgrel=6
 pkgdesc='A featureful, correct URL for Python'
 arch=('any')
 license=('BSD')
@@ -29,6 +29,9 @@
   cd "$srcdir"/hyperlink-$pkgver
   python setup.py pytest
 
+  # clean-up non-reproducible files generated during test
+  rm -rf hyperlink/test/__pycache__/
+
   cd "$srcdir"/hyperlink-$pkgver-py2
   python2 setup.py pytest
 }


[arch-commits] Commit in python-hyperlink/repos/extra-any (PKGBUILD PKGBUILD)

2020-05-31 Thread Allan McRae via arch-commits
Date: Sunday, May 31, 2020 @ 11:15:28
  Author: allan
Revision: 387961

archrelease: copy trunk to extra-any

Added:
  python-hyperlink/repos/extra-any/PKGBUILD
(from rev 387960, python-hyperlink/trunk/PKGBUILD)
Deleted:
  python-hyperlink/repos/extra-any/PKGBUILD

--+
 PKGBUILD |  115 +++--
 1 file changed, 59 insertions(+), 56 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-31 11:15:11 UTC (rev 387960)
+++ PKGBUILD2020-05-31 11:15:28 UTC (rev 387961)
@@ -1,56 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgbase=python-hyperlink
-pkgname=('python-hyperlink' 'python2-hyperlink')
-pkgver=19.0.0
-pkgrel=5
-pkgdesc='A featureful, correct URL for Python'
-arch=('any')
-license=('BSD')
-url='https://github.com/python-hyper/hyperlink'
-makedepends=('python-idna' 'python2-idna' 'python-setuptools' 
'python2-setuptools')
-checkdepends=('python-pytest-runner' 'python2-pytest-runner')
-source=("$pkgbase-$pkgver.tar.gz::https://github.com/python-hyper/hyperlink/archive/v$pkgver.tar.gz";)
-sha512sums=('5a2848d55de1cd1373c140cf3063b4a32c944f4f762f27196a402095afcb65143551af55eab28926c794dc55b8337527266de4db377a635c18a477cd398cc3ee')
-
-prepare() {
-  cp -a hyperlink-$pkgver{,-py2}
-}
-
-build() {
-  cd "$srcdir"/hyperlink-$pkgver
-  python setup.py build
-
-  cd "$srcdir"/hyperlink-$pkgver-py2
-  python2 setup.py build
-}
-
-check() {
-  cd "$srcdir"/hyperlink-$pkgver
-  python setup.py pytest
-
-  cd "$srcdir"/hyperlink-$pkgver-py2
-  python2 setup.py pytest
-}
-
-package_python-hyperlink() {
-  depends=('python-idna')
-
-  cd hyperlink-$pkgver
-
-  # reproducible .pyc files
-  export PYTHONHASHSEED=0
-
-  python setup.py install --root="$pkgdir" --optimize=1
-  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_python2-hyperlink() {
-  depends=('python2-idna')
-
-  cd hyperlink-$pkgver-py2
-  python2 setup.py install --root="$pkgdir" --optimize=1
-  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-hyperlink/repos/extra-any/PKGBUILD (from rev 387960, 
python-hyperlink/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-31 11:15:28 UTC (rev 387961)
@@ -0,0 +1,59 @@
+# Maintainer: Felix Yan 
+
+pkgbase=python-hyperlink
+pkgname=('python-hyperlink' 'python2-hyperlink')
+pkgver=19.0.0
+pkgrel=6
+pkgdesc='A featureful, correct URL for Python'
+arch=('any')
+license=('BSD')
+url='https://github.com/python-hyper/hyperlink'
+makedepends=('python-idna' 'python2-idna' 'python-setuptools' 
'python2-setuptools')
+checkdepends=('python-pytest-runner' 'python2-pytest-runner')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/python-hyper/hyperlink/archive/v$pkgver.tar.gz";)
+sha512sums=('5a2848d55de1cd1373c140cf3063b4a32c944f4f762f27196a402095afcb65143551af55eab28926c794dc55b8337527266de4db377a635c18a477cd398cc3ee')
+
+prepare() {
+  cp -a hyperlink-$pkgver{,-py2}
+}
+
+build() {
+  cd "$srcdir"/hyperlink-$pkgver
+  python setup.py build
+
+  cd "$srcdir"/hyperlink-$pkgver-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/hyperlink-$pkgver
+  python setup.py pytest
+
+  # clean-up non-reproducible files generated during test
+  rm -rf hyperlink/test/__pycache__/
+
+  cd "$srcdir"/hyperlink-$pkgver-py2
+  python2 setup.py pytest
+}
+
+package_python-hyperlink() {
+  depends=('python-idna')
+
+  cd hyperlink-$pkgver
+
+  # reproducible .pyc files
+  export PYTHONHASHSEED=0
+
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python2-hyperlink() {
+  depends=('python2-idna')
+
+  cd hyperlink-$pkgver-py2
+  python2 setup.py install --root="$pkgdir" --optimize=1
+  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:


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

2020-05-31 Thread Allan McRae via arch-commits
Date: Sunday, May 31, 2020 @ 09:21:06
  Author: allan
Revision: 387956

upgpkg: python-hyperlink 19.0.0-5: fix reproducibility of .pyc files

Modified:
  python-hyperlink/trunk/PKGBUILD

--+
 PKGBUILD |6 +-
 1 file changed, 5 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-05-31 05:56:22 UTC (rev 387955)
+++ PKGBUILD2020-05-31 09:21:06 UTC (rev 387956)
@@ -3,7 +3,7 @@
 pkgbase=python-hyperlink
 pkgname=('python-hyperlink' 'python2-hyperlink')
 pkgver=19.0.0
-pkgrel=4
+pkgrel=5
 pkgdesc='A featureful, correct URL for Python'
 arch=('any')
 license=('BSD')
@@ -37,6 +37,10 @@
   depends=('python-idna')
 
   cd hyperlink-$pkgver
+
+  # reproducible .pyc files
+  export PYTHONHASHSEED=0
+
   python setup.py install --root="$pkgdir" --optimize=1
   install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
 }


[arch-commits] Commit in python-hyperlink/repos/extra-any (PKGBUILD PKGBUILD)

2020-05-31 Thread Allan McRae via arch-commits
Date: Sunday, May 31, 2020 @ 09:21:24
  Author: allan
Revision: 387957

archrelease: copy trunk to extra-any

Added:
  python-hyperlink/repos/extra-any/PKGBUILD
(from rev 387956, python-hyperlink/trunk/PKGBUILD)
Deleted:
  python-hyperlink/repos/extra-any/PKGBUILD

--+
 PKGBUILD |  108 +++--
 1 file changed, 56 insertions(+), 52 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-31 09:21:06 UTC (rev 387956)
+++ PKGBUILD2020-05-31 09:21:24 UTC (rev 387957)
@@ -1,52 +0,0 @@
-# Maintainer: Felix Yan 
-
-pkgbase=python-hyperlink
-pkgname=('python-hyperlink' 'python2-hyperlink')
-pkgver=19.0.0
-pkgrel=4
-pkgdesc='A featureful, correct URL for Python'
-arch=('any')
-license=('BSD')
-url='https://github.com/python-hyper/hyperlink'
-makedepends=('python-idna' 'python2-idna' 'python-setuptools' 
'python2-setuptools')
-checkdepends=('python-pytest-runner' 'python2-pytest-runner')
-source=("$pkgbase-$pkgver.tar.gz::https://github.com/python-hyper/hyperlink/archive/v$pkgver.tar.gz";)
-sha512sums=('5a2848d55de1cd1373c140cf3063b4a32c944f4f762f27196a402095afcb65143551af55eab28926c794dc55b8337527266de4db377a635c18a477cd398cc3ee')
-
-prepare() {
-  cp -a hyperlink-$pkgver{,-py2}
-}
-
-build() {
-  cd "$srcdir"/hyperlink-$pkgver
-  python setup.py build
-
-  cd "$srcdir"/hyperlink-$pkgver-py2
-  python2 setup.py build
-}
-
-check() {
-  cd "$srcdir"/hyperlink-$pkgver
-  python setup.py pytest
-
-  cd "$srcdir"/hyperlink-$pkgver-py2
-  python2 setup.py pytest
-}
-
-package_python-hyperlink() {
-  depends=('python-idna')
-
-  cd hyperlink-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_python2-hyperlink() {
-  depends=('python2-idna')
-
-  cd hyperlink-$pkgver-py2
-  python2 setup.py install --root="$pkgdir" --optimize=1
-  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-# vim:set ts=2 sw=2 et:

Copied: python-hyperlink/repos/extra-any/PKGBUILD (from rev 387956, 
python-hyperlink/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-31 09:21:24 UTC (rev 387957)
@@ -0,0 +1,56 @@
+# Maintainer: Felix Yan 
+
+pkgbase=python-hyperlink
+pkgname=('python-hyperlink' 'python2-hyperlink')
+pkgver=19.0.0
+pkgrel=5
+pkgdesc='A featureful, correct URL for Python'
+arch=('any')
+license=('BSD')
+url='https://github.com/python-hyper/hyperlink'
+makedepends=('python-idna' 'python2-idna' 'python-setuptools' 
'python2-setuptools')
+checkdepends=('python-pytest-runner' 'python2-pytest-runner')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/python-hyper/hyperlink/archive/v$pkgver.tar.gz";)
+sha512sums=('5a2848d55de1cd1373c140cf3063b4a32c944f4f762f27196a402095afcb65143551af55eab28926c794dc55b8337527266de4db377a635c18a477cd398cc3ee')
+
+prepare() {
+  cp -a hyperlink-$pkgver{,-py2}
+}
+
+build() {
+  cd "$srcdir"/hyperlink-$pkgver
+  python setup.py build
+
+  cd "$srcdir"/hyperlink-$pkgver-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/hyperlink-$pkgver
+  python setup.py pytest
+
+  cd "$srcdir"/hyperlink-$pkgver-py2
+  python2 setup.py pytest
+}
+
+package_python-hyperlink() {
+  depends=('python-idna')
+
+  cd hyperlink-$pkgver
+
+  # reproducible .pyc files
+  export PYTHONHASHSEED=0
+
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python2-hyperlink() {
+  depends=('python2-idna')
+
+  cd hyperlink-$pkgver-py2
+  python2 setup.py install --root="$pkgdir" --optimize=1
+  install -D -m644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:


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

2020-05-30 Thread Allan McRae via arch-commits
Date: Sunday, May 31, 2020 @ 05:56:06
  Author: allan
Revision: 387954

upgpkg: django 3.0.6-2: fix reproducibility of .pyc files

Modified:
  django/trunk/PKGBUILD

--+
 PKGBUILD |6 +-
 1 file changed, 5 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-05-31 05:19:51 UTC (rev 387953)
+++ PKGBUILD2020-05-31 05:56:06 UTC (rev 387954)
@@ -5,7 +5,7 @@
 pkgbase=django
 pkgname=('python-django')
 pkgver=3.0.6
-pkgrel=1
+pkgrel=2
 pkgdesc="A high-level Python Web framework that encourages rapid development 
and clean design"
 arch=('any')
 license=('BSD')
@@ -24,6 +24,10 @@
 
 package_python-django() {
   cd "$srcdir/Django-$pkgver"
+
+  # fix reproducibility of .pyc files
+  export PYTHONHASHSEED=0
+
   python setup.py install --root="$pkgdir" --optimize=1
 
   ln -s django-admin.py "$pkgdir"/usr/bin/django-admin3.py


[arch-commits] Commit in django/repos/extra-any (PKGBUILD PKGBUILD)

2020-05-30 Thread Allan McRae via arch-commits
Date: Sunday, May 31, 2020 @ 05:56:22
  Author: allan
Revision: 387955

archrelease: copy trunk to extra-any

Added:
  django/repos/extra-any/PKGBUILD
(from rev 387954, django/trunk/PKGBUILD)
Deleted:
  django/repos/extra-any/PKGBUILD

--+
 PKGBUILD |   92 +++--
 1 file changed, 48 insertions(+), 44 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-31 05:56:06 UTC (rev 387954)
+++ PKGBUILD2020-05-31 05:56:22 UTC (rev 387955)
@@ -1,44 +0,0 @@
-# Maintainer: Angel Velasquez 
-# Maintainer: Dan McGee 
-# Contributor: Shahar Weiss 
-
-pkgbase=django
-pkgname=('python-django')
-pkgver=3.0.6
-pkgrel=1
-pkgdesc="A high-level Python Web framework that encourages rapid development 
and clean design"
-arch=('any')
-license=('BSD')
-url="http://www.djangoproject.com/";
-checkdepends=('python-pytest' 'python-tblib')
-makedepends=('python' 'python-setuptools')
-depends=('python' 'python-setuptools' 'python-pytz' 'python-sqlparse' 
'python-asgiref')
-optdepends=('python-psycopg2: for PostgreSQL backend')
-source=("Django-$pkgver.tar.gz::https://www.djangoproject.com/download/$pkgver/tarball/";)
-sha512sums=('4c92c51386919c389037d6c6d1de3cb6ec443bd1f216f20797fb20fb24ea8d021701a03805ba693deadfa82b1aee38ae0d7fc03cae94cd744b1d1fa47ddc46ad')
-
-build() {
-  cd "$srcdir/Django-$pkgver"
-  python setup.py build
-}
-
-package_python-django() {
-  cd "$srcdir/Django-$pkgver"
-  python setup.py install --root="$pkgdir" --optimize=1
-
-  ln -s django-admin.py "$pkgdir"/usr/bin/django-admin3.py
-  ln -s django-admin "$pkgdir"/usr/bin/django-admin3
-  install -Dm644 extras/django_bash_completion \
-"$pkgdir"/usr/share/bash-completion/completions/django-admin.py
-  ln -s django-admin.py \
-"$pkgdir"/usr/share/bash-completion/completions/django-admin
-  ln -s django-admin.py \
-"$pkgdir"/usr/share/bash-completion/completions/manage.py
-
-  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-check() {
-  cd "$srcdir/Django-$pkgver"
-  PYTHONPATH="$PWD" python tests/runtests.py || echo 'tests failed'
-}

Copied: django/repos/extra-any/PKGBUILD (from rev 387954, django/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-31 05:56:22 UTC (rev 387955)
@@ -0,0 +1,48 @@
+# Maintainer: Angel Velasquez 
+# Maintainer: Dan McGee 
+# Contributor: Shahar Weiss 
+
+pkgbase=django
+pkgname=('python-django')
+pkgver=3.0.6
+pkgrel=2
+pkgdesc="A high-level Python Web framework that encourages rapid development 
and clean design"
+arch=('any')
+license=('BSD')
+url="http://www.djangoproject.com/";
+checkdepends=('python-pytest' 'python-tblib')
+makedepends=('python' 'python-setuptools')
+depends=('python' 'python-setuptools' 'python-pytz' 'python-sqlparse' 
'python-asgiref')
+optdepends=('python-psycopg2: for PostgreSQL backend')
+source=("Django-$pkgver.tar.gz::https://www.djangoproject.com/download/$pkgver/tarball/";)
+sha512sums=('4c92c51386919c389037d6c6d1de3cb6ec443bd1f216f20797fb20fb24ea8d021701a03805ba693deadfa82b1aee38ae0d7fc03cae94cd744b1d1fa47ddc46ad')
+
+build() {
+  cd "$srcdir/Django-$pkgver"
+  python setup.py build
+}
+
+package_python-django() {
+  cd "$srcdir/Django-$pkgver"
+
+  # fix reproducibility of .pyc files
+  export PYTHONHASHSEED=0
+
+  python setup.py install --root="$pkgdir" --optimize=1
+
+  ln -s django-admin.py "$pkgdir"/usr/bin/django-admin3.py
+  ln -s django-admin "$pkgdir"/usr/bin/django-admin3
+  install -Dm644 extras/django_bash_completion \
+"$pkgdir"/usr/share/bash-completion/completions/django-admin.py
+  ln -s django-admin.py \
+"$pkgdir"/usr/share/bash-completion/completions/django-admin
+  ln -s django-admin.py \
+"$pkgdir"/usr/share/bash-completion/completions/manage.py
+
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+check() {
+  cd "$srcdir/Django-$pkgver"
+  PYTHONPATH="$PWD" python tests/runtests.py || echo 'tests failed'
+}


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

2020-05-30 Thread Allan McRae via arch-commits
Date: Sunday, May 31, 2020 @ 05:19:33
  Author: allan
Revision: 387952

upgpkg: python-cffi 1.14.0-3: fix reproducibility when check() is not run

Modified:
  python-cffi/trunk/PKGBUILD

--+
 PKGBUILD |   10 +-
 1 file changed, 9 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-05-31 03:49:09 UTC (rev 387951)
+++ PKGBUILD2020-05-31 05:19:33 UTC (rev 387952)
@@ -4,7 +4,7 @@
 pkgbase=python-cffi
 pkgname=(python-cffi python2-cffi)
 pkgver=1.14.0
-pkgrel=2
+pkgrel=3
 pkgdesc="Foreign Function Interface for Python calling C code"
 arch=('x86_64')
 url="https://cffi.readthedocs.org/";
@@ -39,6 +39,10 @@
   depends=('python-pycparser')
 
   cd cffi-$pkgver
+
+  # remove files created during check() for reproducible SOURCES.txt
+  rm -rf testing/cffi{0,1}/__pycache__/
+
   python setup.py install --root="$pkgdir" --optimize=1
   install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
 }
@@ -47,6 +51,10 @@
   depends=('python2-pycparser')
 
   cd cffi-$pkgver-py2
+
+  # remove files created during check() for reproducible SOURCES.txt
+  rm -rf testing/cffi{0,1}/__pycache__/
+
   python2 setup.py install --root="$pkgdir" --optimize=1
   install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
 }


[arch-commits] Commit in python-cffi/repos/extra-x86_64 (PKGBUILD PKGBUILD)

2020-05-30 Thread Allan McRae via arch-commits
Date: Sunday, May 31, 2020 @ 05:19:51
  Author: allan
Revision: 387953

archrelease: copy trunk to extra-x86_64

Added:
  python-cffi/repos/extra-x86_64/PKGBUILD
(from rev 387952, python-cffi/trunk/PKGBUILD)
Deleted:
  python-cffi/repos/extra-x86_64/PKGBUILD

--+
 PKGBUILD |  112 -
 1 file changed, 60 insertions(+), 52 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-31 05:19:33 UTC (rev 387952)
+++ PKGBUILD2020-05-31 05:19:51 UTC (rev 387953)
@@ -1,52 +0,0 @@
-# Maintainer: Felix Yan 
-# Contributor: lilydjwg 
-
-pkgbase=python-cffi
-pkgname=(python-cffi python2-cffi)
-pkgver=1.14.0
-pkgrel=2
-pkgdesc="Foreign Function Interface for Python calling C code"
-arch=('x86_64')
-url="https://cffi.readthedocs.org/";
-license=('MIT')
-makedepends=('python-setuptools' 'python2-setuptools' 'python-pycparser' 
'python2-pycparser')
-checkdepends=('python-pytest-runner' 'python2-pytest-runner')
-source=("$pkgbase-$pkgver.tar.gz::https://bitbucket.org/cffi/cffi/get/v$pkgver.tar.gz";)
-sha512sums=('4efe1933ddee9cfaf95dbc5c3c11278e50353b2d246d1fc7707442c48129317d21f6946e670219c2b6397b63093db4c3f421ecaa33d86f6b68007a6186e1b607')
-
-prepare() {
-  mv cffi-cffi-* cffi-$pkgver
-  cp -a cffi-$pkgver{,-py2}
-}
-
-build() {
-  cd "$srcdir"/cffi-$pkgver
-  python setup.py build
-
-  cd "$srcdir"/cffi-$pkgver-py2
-  python2 setup.py build
-}
-
-check() {
-  cd "$srcdir"/cffi-$pkgver
-  python setup.py pytest
-
-  cd "$srcdir"/cffi-$pkgver-py2
-  python2 setup.py pytest
-}
-
-package_python-cffi() {
-  depends=('python-pycparser')
-
-  cd cffi-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}
-
-package_python2-cffi() {
-  depends=('python2-pycparser')
-
-  cd cffi-$pkgver-py2
-  python2 setup.py install --root="$pkgdir" --optimize=1
-  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
-}

Copied: python-cffi/repos/extra-x86_64/PKGBUILD (from rev 387952, 
python-cffi/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-31 05:19:51 UTC (rev 387953)
@@ -0,0 +1,60 @@
+# Maintainer: Felix Yan 
+# Contributor: lilydjwg 
+
+pkgbase=python-cffi
+pkgname=(python-cffi python2-cffi)
+pkgver=1.14.0
+pkgrel=3
+pkgdesc="Foreign Function Interface for Python calling C code"
+arch=('x86_64')
+url="https://cffi.readthedocs.org/";
+license=('MIT')
+makedepends=('python-setuptools' 'python2-setuptools' 'python-pycparser' 
'python2-pycparser')
+checkdepends=('python-pytest-runner' 'python2-pytest-runner')
+source=("$pkgbase-$pkgver.tar.gz::https://bitbucket.org/cffi/cffi/get/v$pkgver.tar.gz";)
+sha512sums=('4efe1933ddee9cfaf95dbc5c3c11278e50353b2d246d1fc7707442c48129317d21f6946e670219c2b6397b63093db4c3f421ecaa33d86f6b68007a6186e1b607')
+
+prepare() {
+  mv cffi-cffi-* cffi-$pkgver
+  cp -a cffi-$pkgver{,-py2}
+}
+
+build() {
+  cd "$srcdir"/cffi-$pkgver
+  python setup.py build
+
+  cd "$srcdir"/cffi-$pkgver-py2
+  python2 setup.py build
+}
+
+check() {
+  cd "$srcdir"/cffi-$pkgver
+  python setup.py pytest
+
+  cd "$srcdir"/cffi-$pkgver-py2
+  python2 setup.py pytest
+}
+
+package_python-cffi() {
+  depends=('python-pycparser')
+
+  cd cffi-$pkgver
+
+  # remove files created during check() for reproducible SOURCES.txt
+  rm -rf testing/cffi{0,1}/__pycache__/
+
+  python setup.py install --root="$pkgdir" --optimize=1
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python2-cffi() {
+  depends=('python2-pycparser')
+
+  cd cffi-$pkgver-py2
+
+  # remove files created during check() for reproducible SOURCES.txt
+  rm -rf testing/cffi{0,1}/__pycache__/
+
+  python2 setup.py install --root="$pkgdir" --optimize=1
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}


[arch-commits] Commit in (misdnuser)

2020-05-30 Thread Allan McRae via arch-commits
Date: Sunday, May 31, 2020 @ 03:49:09
  Author: allan
Revision: 387951

Remove from repos following isdn4k-utils removal

Deleted:
  misdnuser/


[arch-commits] Commit in (capi4hylafax)

2020-05-30 Thread Allan McRae via arch-commits
Date: Sunday, May 31, 2020 @ 03:48:56
  Author: allan
Revision: 387950

Remove from repos following isdn4k-utils removal

Deleted:
  capi4hylafax/


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

2020-05-30 Thread Allan McRae via arch-commits
Date: Sunday, May 31, 2020 @ 03:22:22
  Author: allan
Revision: 387946

upgpkg: breezy 3.0.2.3-3: fix reproducibility

Modified:
  breezy/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-05-31 02:52:57 UTC (rev 387945)
+++ PKGBUILD2020-05-31 03:22:22 UTC (rev 387946)
@@ -3,7 +3,7 @@
 
 pkgname=breezy
 pkgver=3.0.2.3
-pkgrel=2
+pkgrel=3
 pkgdesc='A decentralized revision control system with support for Bazaar and 
Git file formats'
 arch=(x86_64)
 url=https://www.breezy-vcs.org/
@@ -40,6 +40,7 @@
 package() {
   cd breezy
 
+  export PYTHONHASHSEED=0
   python setup.py install --root="${pkgdir}" --install-data=usr/share 
--optimize=1 --skip-build
   ln -s brz "${pkgdir}"/usr/bin/bzr # backwards compatibility
 }


[arch-commits] Commit in breezy/repos/extra-x86_64 (PKGBUILD PKGBUILD)

2020-05-30 Thread Allan McRae via arch-commits
Date: Sunday, May 31, 2020 @ 03:22:41
  Author: allan
Revision: 387947

archrelease: copy trunk to extra-x86_64

Added:
  breezy/repos/extra-x86_64/PKGBUILD
(from rev 387946, breezy/trunk/PKGBUILD)
Deleted:
  breezy/repos/extra-x86_64/PKGBUILD

--+
 PKGBUILD |   95 ++---
 1 file changed, 48 insertions(+), 47 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-31 03:22:22 UTC (rev 387946)
+++ PKGBUILD2020-05-31 03:22:41 UTC (rev 387947)
@@ -1,47 +0,0 @@
-# Maintainer: Maxime Gauduin 
-# Contributor: Adam Fontenot 
-
-pkgname=breezy
-pkgver=3.0.2.3
-pkgrel=2
-pkgdesc='A decentralized revision control system with support for Bazaar and 
Git file formats'
-arch=(x86_64)
-url=https://www.breezy-vcs.org/
-license=(GPL2)
-depends=(
-  python-configobj
-  python-dulwich
-  python-fastimport
-  python-patiencediff
-  python-six
-)
-makedepends=(
-  git
-  python-setuptools
-)
-provides=(bzr)
-conflicts=(bzr)
-replaces=(bzr)
-source=(git+https://github.com/breezy-team/breezy.git#tag=aa1875e6a279e8c3eb9f86e143193d4967358207)
-sha256sums=(SKIP)
-
-pkgver() {
-  cd breezy
-
-  git describe --tags | sed 's/-/./g'
-}
-
-build() {
-  cd breezy
-
-  python setup.py build
-}
-
-package() {
-  cd breezy
-
-  python setup.py install --root="${pkgdir}" --install-data=usr/share 
--optimize=1 --skip-build
-  ln -s brz "${pkgdir}"/usr/bin/bzr # backwards compatibility
-}
-
-# vim: ts=2 sw=2 et:

Copied: breezy/repos/extra-x86_64/PKGBUILD (from rev 387946, 
breezy/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-31 03:22:41 UTC (rev 387947)
@@ -0,0 +1,48 @@
+# Maintainer: Maxime Gauduin 
+# Contributor: Adam Fontenot 
+
+pkgname=breezy
+pkgver=3.0.2.3
+pkgrel=3
+pkgdesc='A decentralized revision control system with support for Bazaar and 
Git file formats'
+arch=(x86_64)
+url=https://www.breezy-vcs.org/
+license=(GPL2)
+depends=(
+  python-configobj
+  python-dulwich
+  python-fastimport
+  python-patiencediff
+  python-six
+)
+makedepends=(
+  git
+  python-setuptools
+)
+provides=(bzr)
+conflicts=(bzr)
+replaces=(bzr)
+source=(git+https://github.com/breezy-team/breezy.git#tag=aa1875e6a279e8c3eb9f86e143193d4967358207)
+sha256sums=(SKIP)
+
+pkgver() {
+  cd breezy
+
+  git describe --tags | sed 's/-/./g'
+}
+
+build() {
+  cd breezy
+
+  python setup.py build
+}
+
+package() {
+  cd breezy
+
+  export PYTHONHASHSEED=0
+  python setup.py install --root="${pkgdir}" --install-data=usr/share 
--optimize=1 --skip-build
+  ln -s brz "${pkgdir}"/usr/bin/bzr # backwards compatibility
+}
+
+# vim: ts=2 sw=2 et:


[arch-commits] Commit in perl-perl4-corelibs/repos/extra-any (PKGBUILD PKGBUILD)

2020-05-30 Thread Allan McRae via arch-commits
Date: Sunday, May 31, 2020 @ 01:16:18
  Author: allan
Revision: 387943

archrelease: copy trunk to extra-any

Added:
  perl-perl4-corelibs/repos/extra-any/PKGBUILD
(from rev 387942, perl-perl4-corelibs/trunk/PKGBUILD)
Deleted:
  perl-perl4-corelibs/repos/extra-any/PKGBUILD

--+
 PKGBUILD |   68 ++---
 1 file changed, 38 insertions(+), 30 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-31 01:16:01 UTC (rev 387942)
+++ PKGBUILD2020-05-31 01:16:18 UTC (rev 387943)
@@ -1,30 +0,0 @@
-# Maintainer: 
-
-pkgname=perl-perl4-corelibs
-pkgver=0.004
-pkgrel=4
-pkgdesc="Libraries historically supplied with Perl 4"
-arch=('any')
-url="https://metacpan.org/release/Perl4-CoreLibs";
-license=('PerlArtistic' 'GPL')
-depends=('perl')
-makedepends=('perl-module-build')
-options=('!emptydirs')
-source=("http://search.cpan.org/CPAN/authors/id/Z/ZE/ZEFRAM/Perl4-CoreLibs-$pkgver.tar.gz";)
-sha512sums=('71083f1640e95559ee4bc5a7f1bbe6beacec048a073e211ab7f6ee4de26463f6ae3d87e99e00a41ea8f2f93a5e96367bafe907ef3367e400de35123c22eb7b88')
-
-build() {
-  cd Perl4-CoreLibs-$pkgver
-  perl Build.PL
-  ./Build
-}
-
-check() {
-  cd Perl4-CoreLibs-$pkgver
-  ./Build test
-}
-
-package() {
-  cd Perl4-CoreLibs-$pkgver
-  ./Build install installdirs=vendor destdir="$pkgdir"
-}

Copied: perl-perl4-corelibs/repos/extra-any/PKGBUILD (from rev 387942, 
perl-perl4-corelibs/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-31 01:16:18 UTC (rev 387943)
@@ -0,0 +1,38 @@
+# Maintainer: 
+
+pkgname=perl-perl4-corelibs
+pkgver=0.004
+pkgrel=5
+pkgdesc="Libraries historically supplied with Perl 4"
+arch=('any')
+url="https://metacpan.org/release/Perl4-CoreLibs";
+license=('PerlArtistic' 'GPL')
+depends=('perl')
+makedepends=('perl-module-build')
+options=('!emptydirs')
+source=("https://search.cpan.org/CPAN/authors/id/Z/ZE/ZEFRAM/Perl4-CoreLibs-$pkgver.tar.gz";)
+sha512sums=('71083f1640e95559ee4bc5a7f1bbe6beacec048a073e211ab7f6ee4de26463f6ae3d87e99e00a41ea8f2f93a5e96367bafe907ef3367e400de35123c22eb7b88')
+
+prepare() {
+  cd Perl4-CoreLibs-$pkgver
+
+  # issue in testsuite - delay issue until 2040...
+  # https://rt.cpan.org/Public/Bug/Display.html?id=131341
+  sed -i "s#< 70#< 90#" t/timelocal.t
+}
+
+build() {
+  cd Perl4-CoreLibs-$pkgver
+  perl Build.PL
+  ./Build
+}
+
+check() {
+  cd Perl4-CoreLibs-$pkgver
+  ./Build test
+}
+
+package() {
+  cd Perl4-CoreLibs-$pkgver
+  ./Build install installdirs=vendor destdir="$pkgdir"
+}


[arch-commits] Commit in perl-perl4-corelibs/trunk (PKGBUILD)

2020-05-30 Thread Allan McRae via arch-commits
Date: Sunday, May 31, 2020 @ 01:16:01
  Author: allan
Revision: 387942

upgpkg: perl-perl4-corelibs 0.004-5: fix ftbfs, make package reproducible

Modified:
  perl-perl4-corelibs/trunk/PKGBUILD

--+
 PKGBUILD |   10 +-
 1 file changed, 9 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-05-31 01:02:41 UTC (rev 387941)
+++ PKGBUILD2020-05-31 01:16:01 UTC (rev 387942)
@@ -2,7 +2,7 @@
 
 pkgname=perl-perl4-corelibs
 pkgver=0.004
-pkgrel=4
+pkgrel=5
 pkgdesc="Libraries historically supplied with Perl 4"
 arch=('any')
 url="https://metacpan.org/release/Perl4-CoreLibs";
@@ -13,6 +13,14 @@
 
source=("https://search.cpan.org/CPAN/authors/id/Z/ZE/ZEFRAM/Perl4-CoreLibs-$pkgver.tar.gz";)
 
sha512sums=('71083f1640e95559ee4bc5a7f1bbe6beacec048a073e211ab7f6ee4de26463f6ae3d87e99e00a41ea8f2f93a5e96367bafe907ef3367e400de35123c22eb7b88')
 
+prepare() {
+  cd Perl4-CoreLibs-$pkgver
+
+  # issue in testsuite - delay issue until 2040...
+  # https://rt.cpan.org/Public/Bug/Display.html?id=131341
+  sed -i "s#< 70#< 90#" t/timelocal.t
+}
+
 build() {
   cd Perl4-CoreLibs-$pkgver
   perl Build.PL


[arch-commits] Commit in libfido2/repos/extra-x86_64 (PKGBUILD PKGBUILD)

2020-05-30 Thread Allan McRae via arch-commits
Date: Sunday, May 31, 2020 @ 01:02:41
  Author: allan
Revision: 387941

archrelease: copy trunk to extra-x86_64

Added:
  libfido2/repos/extra-x86_64/PKGBUILD
(from rev 387940, libfido2/trunk/PKGBUILD)
Deleted:
  libfido2/repos/extra-x86_64/PKGBUILD

--+
 PKGBUILD |   92 +
 1 file changed, 50 insertions(+), 42 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-31 01:02:22 UTC (rev 387940)
+++ PKGBUILD2020-05-31 01:02:41 UTC (rev 387941)
@@ -1,42 +0,0 @@
-# Maintainer: Levente Polyak 
-# Contributor: Karol Babioch 
-
-pkgname=libfido2
-pkgver=1.4.0
-pkgrel=3
-pkgdesc='Library functionality for FIDO 2.0, including communication with a 
device over USB'
-url='https://developers.yubico.com/libfido2/'
-arch=('x86_64')
-license=('BSD')
-depends=('glibc' 'openssl' 'libcbor' 'libcbor.so' 'hidapi' 'systemd-libs'  
'libudev.so')
-makedepends=('cmake')
-provides=('libfido2.so')
-source=(https://developers.yubico.com/libfido2/Releases/libfido2-${pkgver}.tar.gz{,.sig})
-sha512sums=('5cf2f2d70bdba893fd33bf3ca91940c7eded5ed1728b517ff3fc46cbde58bf64f16da4104138b20dcea1d9a1cec730e532bc4938cdcba4ad86343e51a1c3c513'
-'SKIP')
-b2sums=('d45ff3e1a5605c5ea4c5bddbe423bb69e6237e7a359fcc58469a86c503c934ce4491b98fdd673130d419cabe09acab7e201592f923ffe3908568b2b0888ae32a'
-'SKIP')
-validpgpkeys=(
-  'EE90AE0D19774C8386628FAAB428949EF7914718' # pedro martelletto 

-  '1D7308B0055F5AEF36944A8F27A9C24D9588EA0F' # Aveen Ismail 

-  '7FBB6186957496D58C751AC20E777DD85755AA4A' # Konstantinos Georgantas 

-)
-
-build() {
-  cd ${pkgname}-${pkgver}
-  cmake -B build \
--DCMAKE_INSTALL_PREFIX=/usr \
--DCMAKE_INSTALL_LIBDIR=lib \
--DCMAKE_BUILD_TYPE=Release \
--DCMAKE_C_FLAGS="${CFLAGS} ${CPPFLAGS}"
-  make -C build VERBOSE=1
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make -C build DESTDIR="${pkgdir}" install
-  install -Dm 644 NEWS README.adoc -t "${pkgdir}/usr/share/doc/${pkgname}"
-  install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
-}
-
-# vim: ts=2 sw=2 et:

Copied: libfido2/repos/extra-x86_64/PKGBUILD (from rev 387940, 
libfido2/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-31 01:02:41 UTC (rev 387941)
@@ -0,0 +1,50 @@
+# Maintainer: Levente Polyak 
+# Contributor: Karol Babioch 
+
+pkgname=libfido2
+pkgver=1.4.0
+pkgrel=4
+pkgdesc='Library functionality for FIDO 2.0, including communication with a 
device over USB'
+url='https://developers.yubico.com/libfido2/'
+arch=('x86_64')
+license=('BSD')
+depends=('glibc' 'openssl' 'libcbor' 'libcbor.so' 'hidapi' 'systemd-libs'  
'libudev.so')
+makedepends=('cmake' 'systemd')
+provides=('libfido2.so')
+source=(https://developers.yubico.com/libfido2/Releases/libfido2-${pkgver}.tar.gz{,.sig}
+
gzip-timestamp.patch::https://github.com/Yubico/libfido2/commit/e79f7d7996e70d6b2ae9826fce81d61659cab4f6.patch)
+sha512sums=('5cf2f2d70bdba893fd33bf3ca91940c7eded5ed1728b517ff3fc46cbde58bf64f16da4104138b20dcea1d9a1cec730e532bc4938cdcba4ad86343e51a1c3c513'
+'SKIP'
+
'c5433485b45944f4dfbf7e6be13b1d9b3ac3a8fcb2427e03e41ffa2247f6b9c55a3a478a8df7ebedfaecb4c2981570d68964e484113a4089d3e035d04339d4b4')
+b2sums=('d45ff3e1a5605c5ea4c5bddbe423bb69e6237e7a359fcc58469a86c503c934ce4491b98fdd673130d419cabe09acab7e201592f923ffe3908568b2b0888ae32a'
+'SKIP'
+
'7f8025bacbf48536edd473edca0eaced6a416d0bb6467aa4a925e952a8fa0b345fa2345efd32759a0f249180fef76d28b223cb9e2ed73bebd94b8a065fbec39c')
+validpgpkeys=(
+  'EE90AE0D19774C8386628FAAB428949EF7914718' # pedro martelletto 

+  '1D7308B0055F5AEF36944A8F27A9C24D9588EA0F' # Aveen Ismail 

+  '7FBB6186957496D58C751AC20E777DD85755AA4A' # Konstantinos Georgantas 

+)
+
+prepare() {
+  cd ${pkgname}-${pkgver}
+  patch -p1 -i ${srcdir}/gzip-timestamp.patch
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+  cmake -B build \
+-DCMAKE_INSTALL_PREFIX=/usr \
+-DCMAKE_INSTALL_LIBDIR=lib \
+-DCMAKE_BUILD_TYPE=Release \
+-DCMAKE_C_FLAGS="${CFLAGS} ${CPPFLAGS}"
+  make -C build VERBOSE=1
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make -C build DESTDIR="${pkgdir}" install
+  install -Dm 644 NEWS README.adoc -t "${pkgdir}/usr/share/doc/${pkgname}"
+  install -Dm 644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
+}
+
+# vim: ts=2 sw=2 et:


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

2020-05-30 Thread Allan McRae via arch-commits
Date: Sunday, May 31, 2020 @ 01:02:22
  Author: allan
Revision: 387940

upgpkg: libfido2 1.4.0-4: fix gzip timestamps, fix ftbfs

Modified:
  libfido2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-05-30 22:23:08 UTC (rev 387939)
+++ PKGBUILD2020-05-31 01:02:22 UTC (rev 387940)
@@ -3,19 +3,22 @@
 
 pkgname=libfido2
 pkgver=1.4.0
-pkgrel=3
+pkgrel=4
 pkgdesc='Library functionality for FIDO 2.0, including communication with a 
device over USB'
 url='https://developers.yubico.com/libfido2/'
 arch=('x86_64')
 license=('BSD')
 depends=('glibc' 'openssl' 'libcbor' 'libcbor.so' 'hidapi' 'systemd-libs'  
'libudev.so')
-makedepends=('cmake')
+makedepends=('cmake' 'systemd')
 provides=('libfido2.so')
-source=(https://developers.yubico.com/libfido2/Releases/libfido2-${pkgver}.tar.gz{,.sig})
+source=(https://developers.yubico.com/libfido2/Releases/libfido2-${pkgver}.tar.gz{,.sig}
+
gzip-timestamp.patch::https://github.com/Yubico/libfido2/commit/e79f7d7996e70d6b2ae9826fce81d61659cab4f6.patch)
 
sha512sums=('5cf2f2d70bdba893fd33bf3ca91940c7eded5ed1728b517ff3fc46cbde58bf64f16da4104138b20dcea1d9a1cec730e532bc4938cdcba4ad86343e51a1c3c513'
-'SKIP')
+'SKIP'
+
'c5433485b45944f4dfbf7e6be13b1d9b3ac3a8fcb2427e03e41ffa2247f6b9c55a3a478a8df7ebedfaecb4c2981570d68964e484113a4089d3e035d04339d4b4')
 
b2sums=('d45ff3e1a5605c5ea4c5bddbe423bb69e6237e7a359fcc58469a86c503c934ce4491b98fdd673130d419cabe09acab7e201592f923ffe3908568b2b0888ae32a'
-'SKIP')
+'SKIP'
+
'7f8025bacbf48536edd473edca0eaced6a416d0bb6467aa4a925e952a8fa0b345fa2345efd32759a0f249180fef76d28b223cb9e2ed73bebd94b8a065fbec39c')
 validpgpkeys=(
   'EE90AE0D19774C8386628FAAB428949EF7914718' # pedro martelletto 

   '1D7308B0055F5AEF36944A8F27A9C24D9588EA0F' # Aveen Ismail 

@@ -22,6 +25,11 @@
   '7FBB6186957496D58C751AC20E777DD85755AA4A' # Konstantinos Georgantas 

 )
 
+prepare() {
+  cd ${pkgname}-${pkgver}
+  patch -p1 -i ${srcdir}/gzip-timestamp.patch
+}
+
 build() {
   cd ${pkgname}-${pkgver}
   cmake -B build \


[arch-commits] Commit in apricots/repos/extra-x86_64 (8 files)

2020-05-29 Thread Allan McRae via arch-commits
Date: Saturday, May 30, 2020 @ 03:21:13
  Author: allan
Revision: 387888

archrelease: copy trunk to extra-x86_64

Added:
  apricots/repos/extra-x86_64/PKGBUILD
(from rev 387887, apricots/trunk/PKGBUILD)
  apricots/repos/extra-x86_64/apricots-0.2.6-freealut.patch
(from rev 387887, apricots/trunk/apricots-0.2.6-freealut.patch)
  apricots/repos/extra-x86_64/apricots.desktop
(from rev 387887, apricots/trunk/apricots.desktop)
  apricots/repos/extra-x86_64/apricots.png
(from rev 387887, apricots/trunk/apricots.png)
Deleted:
  apricots/repos/extra-x86_64/PKGBUILD
  apricots/repos/extra-x86_64/apricots-0.2.6-freealut.patch
  apricots/repos/extra-x86_64/apricots.desktop
  apricots/repos/extra-x86_64/apricots.png

---+
 PKGBUILD  |   82 ++---
 apricots-0.2.6-freealut.patch |  152 
 apricots.desktop  |   20 ++---
 3 files changed, 127 insertions(+), 127 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-30 03:20:40 UTC (rev 387887)
+++ PKGBUILD2020-05-30 03:21:13 UTC (rev 387888)
@@ -1,41 +0,0 @@
-# Contributor: Damir Perisa 
-
-pkgname=apricots
-pkgver=0.2.6
-pkgrel=11
-pkgdesc="A simple 2D flying/bombing game similar to basic side scrollers"
-url="https://web.archive.org/web/20060426053238/http://www.fishies.org.uk/apricots.html";
-arch=(x86_64)
-license=(GPL)
-depends=(gcc-libs sdl freealut hicolor-icon-theme)
-backup=(etc/apricots.cfg)
-source=("https://web.archive.org/web/20060426053238/http://www.fishies.org.uk/apricots-0.2.6.tar.gz";
-apricots.desktop apricots.png
-apricots-0.2.6-freealut.patch)
-sha512sums=('37f72f527eff0df9de8e7b69c8c6efc8857445095282e6a6a5493533aa75d967ddfc33a4f3776972f46b43d7040aff011e3888e91eff4ee831fab610bf9695b6'
-
'9f2255f440fef17dccb38474edc5bef9f9770d026bbbc074e0a4dbd4bcc6fb639e00e7c6f370c67f478d6bc0d869f3c40bcfc0b493a08bff531fd754b7282d75'
-
'77061be211c4f03e21af3b6c0f43d1be6b1d2b323415d7e0c03daf1b29d6010ac69b1f7e27057ff399f91987f6b10b8e78f66d669cb81f396ae2cfc209b41983'
-
'002cc098dc0239c2fb771560d0957b93242d03055ade9a02e015e8a1e867ef06feb66499e3a39d1fea5261ede98b7193e256a0fc2cccb785df4e709cd3ca6efc')
-
-prepare() {
-  cd $pkgname-$pkgver
-  patch -Np1 -i ../apricots-0.2.6-freealut.patch
-  autoreconf -fvi
-}
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr
-  install -Dt . /usr/bin/libtool
-  make
-}
-
-package() {
-  make -C $pkgname-$pkgver install prefix="$pkgdir/usr"
-
-  install -Dt "$pkgdir/etc" -m644 "$pkgdir/usr/share/apricots/apricots.cfg"
-  ln -srft "$pkgdir/usr/share/apricots" "$pkgdir/etc/apricots.cfg"
-
-  install -Dt "$pkgdir/usr/share/applications" -m644 apricots.desktop
-  install -Dt "$pkgdir/usr/share/icons/hicolor/24x24/apps" -m644 apricots.png
-}

Copied: apricots/repos/extra-x86_64/PKGBUILD (from rev 387887, 
apricots/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-30 03:21:13 UTC (rev 387888)
@@ -0,0 +1,41 @@
+# Contributor: Damir Perisa 
+
+pkgname=apricots
+pkgver=0.2.6
+pkgrel=12
+pkgdesc="A simple 2D flying/bombing game similar to basic side scrollers"
+url="https://web.archive.org/web/20060426053238/http://www.fishies.org.uk/apricots.html";
+arch=(x86_64)
+license=(GPL)
+depends=(gcc-libs sdl freealut hicolor-icon-theme)
+backup=(etc/apricots.cfg)
+source=("https://web.archive.org/web/20060426053238/http://www.fishies.org.uk/apricots-0.2.6.tar.gz";
+apricots.desktop apricots.png
+apricots-0.2.6-freealut.patch)
+sha512sums=('37f72f527eff0df9de8e7b69c8c6efc8857445095282e6a6a5493533aa75d967ddfc33a4f3776972f46b43d7040aff011e3888e91eff4ee831fab610bf9695b6'
+
'9f2255f440fef17dccb38474edc5bef9f9770d026bbbc074e0a4dbd4bcc6fb639e00e7c6f370c67f478d6bc0d869f3c40bcfc0b493a08bff531fd754b7282d75'
+
'77061be211c4f03e21af3b6c0f43d1be6b1d2b323415d7e0c03daf1b29d6010ac69b1f7e27057ff399f91987f6b10b8e78f66d669cb81f396ae2cfc209b41983'
+
'002cc098dc0239c2fb771560d0957b93242d03055ade9a02e015e8a1e867ef06feb66499e3a39d1fea5261ede98b7193e256a0fc2cccb785df4e709cd3ca6efc')
+
+prepare() {
+  cd $pkgname-$pkgver
+  patch -Np1 -i ../apricots-0.2.6-freealut.patch
+  autoreconf -fvi
+}
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  install -Dt . /usr/bin/libtool
+  make
+}
+
+package() {
+  make -C $pkgname-$pkgver install prefix="$pkgdir/usr"
+
+  install -Dt "$pkgdir/etc" -m644 "$pkgdir/usr/share/apricots/apricots.cfg"
+  ln -srft "$pkgdir/usr/share/apricots" "$pkgdir/etc/apricots.cfg"
+
+  install -Dt "$pkgdir/usr/share/applications" -m644 apricots.desktop
+  install -Dt "$pkgdir/usr/share/icons/hicolor/24x24/apps" -m644 apricots.png
+}

Deleted: apricots-0.2.6-freealut.patch

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

2020-05-29 Thread Allan McRae via arch-commits
Date: Saturday, May 30, 2020 @ 03:20:40
  Author: allan
Revision: 387887

upgpkg: apricots 0.2.6-12: rebuild for reproducibility

Modified:
  apricots/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-05-30 03:11:55 UTC (rev 387886)
+++ PKGBUILD2020-05-30 03:20:40 UTC (rev 387887)
@@ -2,7 +2,7 @@
 
 pkgname=apricots
 pkgver=0.2.6
-pkgrel=11
+pkgrel=12
 pkgdesc="A simple 2D flying/bombing game similar to basic side scrollers"
 
url="https://web.archive.org/web/20060426053238/http://www.fishies.org.uk/apricots.html";
 arch=(x86_64)


[arch-commits] Commit in glibc/repos (10 files)

2020-05-24 Thread Allan McRae via arch-commits
Date: Sunday, May 24, 2020 @ 22:04:17
  Author: allan
Revision: 387511

archrelease: copy trunk to testing-x86_64

Added:
  glibc/repos/testing-x86_64/
  glibc/repos/testing-x86_64/PKGBUILD
(from rev 387510, glibc/trunk/PKGBUILD)
  glibc/repos/testing-x86_64/bz20338.patch
(from rev 387510, glibc/trunk/bz20338.patch)
  glibc/repos/testing-x86_64/glibc.install
(from rev 387510, glibc/trunk/glibc.install)
  glibc/repos/testing-x86_64/lib32-glibc.conf
(from rev 387510, glibc/trunk/lib32-glibc.conf)
  glibc/repos/testing-x86_64/locale-gen
(from rev 387510, glibc/trunk/locale-gen)
  glibc/repos/testing-x86_64/locale.gen.txt
(from rev 387510, glibc/trunk/locale.gen.txt)
  glibc/repos/testing-x86_64/sdt-config.h
(from rev 387510, glibc/trunk/sdt-config.h)
  glibc/repos/testing-x86_64/sdt.h
(from rev 387510, glibc/trunk/sdt.h)
Modified:
  glibc/repos/core-x86_64/PKGBUILD

-+
 core-x86_64/PKGBUILD|2 
 testing-x86_64/PKGBUILD |  230 
 testing-x86_64/bz20338.patch|  114 ++
 testing-x86_64/glibc.install|5 
 testing-x86_64/lib32-glibc.conf |1 
 testing-x86_64/locale-gen   |   42 +++
 testing-x86_64/locale.gen.txt   |   23 ++
 testing-x86_64/sdt-config.h |6 
 testing-x86_64/sdt.h|  430 ++
 9 files changed, 852 insertions(+), 1 deletion(-)

Modified: core-x86_64/PKGBUILD
===
--- core-x86_64/PKGBUILD2020-05-24 22:03:37 UTC (rev 387510)
+++ core-x86_64/PKGBUILD2020-05-24 22:04:17 UTC (rev 387511)
@@ -136,7 +136,7 @@
   sed -i '/FORTIFY/d' configparms
 
   # some failures are "expected"
-  make check || true
+#  make check || true
 }
 
 package_glibc() {

Copied: glibc/repos/testing-x86_64/PKGBUILD (from rev 387510, 
glibc/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2020-05-24 22:04:17 UTC (rev 387511)
@@ -0,0 +1,230 @@
+# Maintainer:  Bartłomiej Piotrowski 
+# Contributor: Allan McRae 
+
+# toolchain build order: 
linux-api-headers->glibc->binutils->gcc->binutils->glibc
+# NOTE: valgrind requires rebuilt with each major glibc version
+
+pkgbase=glibc
+pkgname=(glibc lib32-glibc)
+pkgver=2.31
+pkgrel=5
+arch=(x86_64)
+url='https://www.gnu.org/software/libc'
+license=(GPL LGPL)
+makedepends=(git gd lib32-gcc-libs python)
+options=(!strip staticlibs)
+#source=(https://ftp.gnu.org/gnu/glibc/glibc-$pkgver.tar.xz{,.sig}
+_commit=18fdba553dd9b907e9812b90d2cea593f776058f
+source=(git+https://sourceware.org/git/glibc.git#commit=$_commit
+locale.gen.txt
+locale-gen
+lib32-glibc.conf
+sdt.h sdt-config.h
+bz20338.patch)
+validpgpkeys=(7273542B39962DF7B299931416792B4EA25340F8 # Carlos O'Donell
+  BC7C7372637EC10C57D7AA6579C43DFBF1CF2187) # Siddhesh Poyarekar
+md5sums=('SKIP'
+ '07ac979b6ab5eeb778d55f041529d623'
+ '476e9113489f93b348b21e144b6a8fcf'
+ '6e052f1cb693d5d3203f50f9d4e8c33b'
+ '91fec3b7e75510ae2ac42533aa2e695e'
+ '680df504c683640b02ed4a805797c0b2'
+ '430673eccc78e52c249aa4b0f1786450')
+
+prepare() {
+  mkdir -p glibc-build lib32-glibc-build
+
+  [[ -d glibc-$pkgver ]] && ln -s glibc-$pkgver glibc 
+  cd glibc
+
+  local i; for i in ${source[@]}; do
+case ${i%::*} in
+  *.patch)
+echo "  -> Applying ${i}"
+patch -p1 -i "$srcdir/${i}"
+;;
+esac
+  done
+}
+
+build() {
+  local _configure_flags=(
+  --prefix=/usr
+  --with-headers=/usr/include
+  --with-bugurl=https://bugs.archlinux.org/
+  --enable-add-ons
+  --enable-bind-now
+  --enable-cet
+  --enable-lock-elision
+  --enable-multi-arch
+  --enable-stack-protector=strong
+  --enable-stackguard-randomization
+  --enable-static-pie
+  --enable-systemtap
+  --disable-profile
+  --disable-werror
+  )
+
+  cd "$srcdir/glibc-build"
+
+  echo "slibdir=/usr/lib" >> configparms
+  echo "rtlddir=/usr/lib" >> configparms
+  echo "sbindir=/usr/bin" >> configparms
+  echo "rootsbindir=/usr/bin" >> configparms
+
+  # remove fortify for building libraries
+  CPPFLAGS=${CPPFLAGS/-D_FORTIFY_SOURCE=2/}
+
+  #
+  CFLAGS=${CFLAGS/-fno-plt/}
+  CXXFLAGS=${CXXFLAGS/-fno-plt/}
+  LDFLAGS=${LDFLAGS/,-z,now/}
+
+  "$srcdir/glibc/configure" \
+  --libdir=/usr/lib \
+  --libexecdir=/usr/lib \
+  ${_configure_flags[@]}
+
+  # build libraries with fortify disabled
+  echo "build-programs=no" >> configparms
+  make
+
+  # re-enable fortify for programs

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

2020-05-24 Thread Allan McRae via arch-commits
Date: Sunday, May 24, 2020 @ 22:03:37
  Author: allan
Revision: 387510

upgpkg: glibc 2.31-5: build info pages manually for reproducibility

Modified:
  glibc/trunk/PKGBUILD

--+
 PKGBUILD |5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-05-24 19:31:56 UTC (rev 387509)
+++ PKGBUILD2020-05-24 22:03:37 UTC (rev 387510)
@@ -7,7 +7,7 @@
 pkgbase=glibc
 pkgname=(glibc lib32-glibc)
 pkgver=2.31
-pkgrel=4
+pkgrel=5
 arch=(x86_64)
 url='https://www.gnu.org/software/libc'
 license=(GPL LGPL)
@@ -96,6 +96,9 @@
   echo "CXX += -D_FORTIFY_SOURCE=2" >> configparms
   make
 
+  # build info pages manually for reprducibility
+  make info
+
   cd "$srcdir/lib32-glibc-build"
   export CC="gcc -m32 -mstackrealign"
   export CXX="g++ -m32 -mstackrealign"


[arch-commits] Commit in gnupg/repos (4 files)

2020-05-23 Thread Allan McRae via arch-commits
Date: Sunday, May 24, 2020 @ 06:06:09
  Author: allan
Revision: 387477

archrelease: copy trunk to testing-x86_64

Added:
  gnupg/repos/testing-x86_64/
  gnupg/repos/testing-x86_64/PKGBUILD
(from rev 387476, gnupg/trunk/PKGBUILD)
  gnupg/repos/testing-x86_64/install
(from rev 387476, gnupg/trunk/install)
  gnupg/repos/testing-x86_64/self-sigs-only.patch
(from rev 387476, gnupg/trunk/self-sigs-only.patch)

--+
 PKGBUILD |   69 +
 install  |   31 ++
 self-sigs-only.patch |   56 +++
 3 files changed, 156 insertions(+)

Copied: gnupg/repos/testing-x86_64/PKGBUILD (from rev 387476, 
gnupg/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2020-05-24 06:06:09 UTC (rev 387477)
@@ -0,0 +1,69 @@
+# Maintainer: Gaetan Bisson 
+# Contributor: Tobias Powalowski 
+# Contributor: Andreas Radke 
+# Contributor: Judd Vinet 
+
+pkgname=gnupg
+pkgver=2.2.20
+pkgrel=2
+pkgdesc='Complete and free implementation of the OpenPGP standard'
+url='https://www.gnupg.org/'
+license=('GPL')
+arch=('x86_64')
+checkdepends=('openssh')
+makedepends=('libldap' 'libusb-compat' 'pcsclite')
+depends=('npth' 'libgpg-error' 'libgcrypt' 'libksba' 'libassuan'
+ 'pinentry' 'bzip2' 'readline' 'gnutls' 'sqlite')
+optdepends=('libldap: gpg2keys_ldap'
+'libusb-compat: scdaemon'
+'pcsclite: scdaemon')
+validpgpkeys=('D8692123C4065DEA5E0F3AB5249B39D24F25E3B6'
+  '46CC730865BB5C78EBABADCF04376F3EE0856959'
+  '031EC2536E580D8EA286A9F22071B08A33BD3F06'
+  '5B80C5754298F0CB55D8ED6ABCEF7E294B092E28')
+source=("https://gnupg.org/ftp/gcrypt/${pkgname}/${pkgname}-${pkgver}.tar.bz2"{,.sig}
+'self-sigs-only.patch')
+sha256sums=('04a7c9d48b74c399168ee8270e548588ddbe52218c337703d7f06373d326ca30'
+'SKIP'
+'0130c43321c16f53ab2290833007212f8a26b1b73bd4edc2b2b1c9db2b2d0218')
+
+install=install
+
+prepare() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   sed '/noinst_SCRIPTS = gpg-zip/c sbin_SCRIPTS += gpg-zip' -i 
tools/Makefile.in
+   patch -R -p1 -i ../self-sigs-only.patch
+
+   # remove to ensure this is built for reproducibility
+   rm doc/gnupg.info*
+}
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   ./configure \
+   --prefix=/usr \
+   --sysconfdir=/etc \
+   --sbindir=/usr/bin \
+   --libexecdir=/usr/lib/gnupg \
+   --enable-maintainer-mode \
+   --enable-symcryptrun \
+
+   make
+}
+
+check() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make check
+}
+
+package() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   make DESTDIR="${pkgdir}" install
+   ln -s gpg "${pkgdir}"/usr/bin/gpg2
+   ln -s gpgv "${pkgdir}"/usr/bin/gpgv2
+
+   cd doc/examples/systemd-user
+   for i in *.*; do
+   install -Dm644 "$i" "${pkgdir}/usr/lib/systemd/user/$i"
+   done
+}

Copied: gnupg/repos/testing-x86_64/install (from rev 387476, 
gnupg/trunk/install)
===
--- testing-x86_64/install  (rev 0)
+++ testing-x86_64/install  2020-05-24 06:06:09 UTC (rev 387477)
@@ -0,0 +1,31 @@
+_global_units() {
+   _units=(dirmngr.socket gpg-agent.socket 
gpg-agent-{browser,extra,ssh}.socket)
+   _dir=/etc/systemd/user/sockets.target.wants
+
+   case $1 in
+   enable)
+   mkdir -p $_dir
+   for _u in "${_units[@]}"; do
+   ln -sf /usr/lib/systemd/user/$_u $_dir/$_u
+   done
+   ;;
+   disable)
+   for _u in "${_units[@]}"; do
+   rm -f $_dir/$_u
+   done
+   rmdir -p --ignore-fail-on-non-empty $_dir
+   ;;
+   esac
+}
+
+post_install() {
+   # See FS#42798 and FS#47371
+   dirmngr /dev/null
+
+   # Let systemd supervise daemons by default
+   _global_units enable
+}
+
+pre_remove() {
+   _global_units disable
+}

Copied: gnupg/repos/testing-x86_64/self-sigs-only.patch (from rev 387476, 
gnupg/trunk/self-sigs-only.patch)
===
--- testing-x86_64/self-sigs-only.patch (rev 0)
+++ testing-x86_64/self-sigs-only.patch 2020-05-24 06:06:09 UTC (rev 387477)
@@ -0,0 +1,56 @@
+From: Werner Koch 
+Date: Thu, 4 Jul 2019 13:45:39 + (+0200)
+Subject: gpg: Add "self-sigs-only" and "import-clean" to the keyserver options.
+X-Git-Url: 
http://git.gnupg.org/cgi-bin/gitweb.cgi?p=gnupg.git;a=commitdiff_plain;h=23c978640812d123eaff

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

2020-05-23 Thread Allan McRae via arch-commits
Date: Sunday, May 24, 2020 @ 06:05:19
  Author: allan
Revision: 387476

upgpkg: gnupg 2.2.20-2: fix for reproducibility

Modified:
  gnupg/trunk/PKGBUILD

--+
 PKGBUILD |5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-05-24 00:21:22 UTC (rev 387475)
+++ PKGBUILD2020-05-24 06:05:19 UTC (rev 387476)
@@ -5,7 +5,7 @@
 
 pkgname=gnupg
 pkgver=2.2.20
-pkgrel=1
+pkgrel=2
 pkgdesc='Complete and free implementation of the OpenPGP standard'
 url='https://www.gnupg.org/'
 license=('GPL')
@@ -33,6 +33,9 @@
cd "${srcdir}/${pkgname}-${pkgver}"
sed '/noinst_SCRIPTS = gpg-zip/c sbin_SCRIPTS += gpg-zip' -i 
tools/Makefile.in
patch -R -p1 -i ../self-sigs-only.patch
+
+   # remove to ensure this is built for reproducibility
+   rm doc/gnupg.info*
 }
 
 build() {


[arch-commits] Commit in glib2/repos (5 files)

2020-05-23 Thread Allan McRae via arch-commits
Date: Saturday, May 23, 2020 @ 11:10:00
  Author: allan
Revision: 387449

archrelease: copy trunk to testing-x86_64

Added:
  glib2/repos/testing-x86_64/
  glib2/repos/testing-x86_64/PKGBUILD
(from rev 387448, glib2/trunk/PKGBUILD)
  glib2/repos/testing-x86_64/gio-querymodules.hook
(from rev 387448, glib2/trunk/gio-querymodules.hook)
  glib2/repos/testing-x86_64/glib-compile-schemas.hook
(from rev 387448, glib2/trunk/glib-compile-schemas.hook)
  glib2/repos/testing-x86_64/noisy-glib-compile-schemas.diff
(from rev 387448, glib2/trunk/noisy-glib-compile-schemas.diff)

-+
 PKGBUILD|   81 ++
 gio-querymodules.hook   |   11 +
 glib-compile-schemas.hook   |   12 +
 noisy-glib-compile-schemas.diff |   24 +++
 4 files changed, 128 insertions(+)

Copied: glib2/repos/testing-x86_64/PKGBUILD (from rev 387448, 
glib2/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2020-05-23 11:10:00 UTC (rev 387449)
@@ -0,0 +1,81 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Maintainer: Jan de Groot 
+
+pkgbase=glib2
+pkgname=(glib2 glib2-docs)
+pkgver=2.64.3
+pkgrel=2
+pkgdesc="Low level core library"
+url="https://wiki.gnome.org/Projects/GLib";
+license=(LGPL2.1)
+arch=(x86_64)
+depends=(pcre libffi libutil-linux zlib)
+makedepends=(gettext gtk-doc shared-mime-info python libelf git util-linux
+ meson dbus)
+checkdepends=(desktop-file-utils)
+_commit=af1edc1c338d9a8b2a99bdd0e6cc6bede51f40b4  # tags/2.64.3^0
+source=("git+https://gitlab.gnome.org/GNOME/glib.git#commit=$_commit";
+noisy-glib-compile-schemas.diff
+glib-compile-schemas.hook gio-querymodules.hook)
+sha256sums=('SKIP'
+'81a4df0b638730cffb7fa263c04841f7ca6b9c9578ee5045db6f30ff0c3fc531'
+'64ae5597dda3cc160fc74be038dbe6267d41b525c0c35da9125fbf0de27f9b25'
+'557c88177f011ced17bdeac1af3f882b2ca33b386a866fdf900b35f927a2bbe8')
+
+pkgver() {
+  cd glib
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd glib
+
+  # Suppress noise from glib-compile-schemas.hook
+  git apply -3 ../noisy-glib-compile-schemas.diff
+}
+
+build() {
+  CFLAGS+=" -DG_DISABLE_CAST_CHECKS"
+  arch-meson glib build \
+-D selinux=disabled \
+-D man=true \
+-D gtk_doc=true
+  meson compile -C build
+}
+
+check() {
+  meson test -C build --no-suite flaky --print-errorlogs
+}
+
+package_glib2() {
+  depends+=(libmount.so)
+  provides+=(libgio-2.0.so libglib-2.0.so libgmodule-2.0.so libgobject-2.0.so
+ libgthread-2.0.so)
+  optdepends=('python: gdbus-codegen, glib-genmarshal, glib-mkenums, 
gtester-report'
+  'libelf: gresource inspection tool')
+
+  DESTDIR="$pkgdir" meson install -C build
+  install -Dt "$pkgdir/usr/share/libalpm/hooks" -m644 *.hook
+
+  export PYTHONHASHSEED=0
+  python -m compileall -d /usr/share/glib-2.0/codegen \
+"$pkgdir/usr/share/glib-2.0/codegen"
+  python -O -m compileall -d /usr/share/glib-2.0/codegen \
+"$pkgdir/usr/share/glib-2.0/codegen"
+
+  # Split docs
+  mv "$pkgdir/usr/share/gtk-doc" "$srcdir"
+}
+
+package_glib2-docs() {
+  pkgdesc="Documentation for GLib"
+  depends=()
+  license+=(custom)
+
+  mkdir -p "$pkgdir/usr/share"
+  mv gtk-doc "$pkgdir/usr/share"
+
+  install -Dt "$pkgdir/usr/share/licenses/glib2-docs" -m644 
glib/docs/reference/COPYING
+}
+
+# vim:set sw=2 et:

Copied: glib2/repos/testing-x86_64/gio-querymodules.hook (from rev 387448, 
glib2/trunk/gio-querymodules.hook)
===
--- testing-x86_64/gio-querymodules.hook(rev 0)
+++ testing-x86_64/gio-querymodules.hook2020-05-23 11:10:00 UTC (rev 
387449)
@@ -0,0 +1,11 @@
+[Trigger]
+Type = Path
+Operation = Install
+Operation = Upgrade
+Operation = Remove
+Target = usr/lib/gio/modules/*.so
+
+[Action]
+Description = Updating GIO module cache...
+When = PostTransaction
+Exec = /usr/bin/gio-querymodules /usr/lib/gio/modules

Copied: glib2/repos/testing-x86_64/glib-compile-schemas.hook (from rev 387448, 
glib2/trunk/glib-compile-schemas.hook)
===
--- testing-x86_64/glib-compile-schemas.hook(rev 0)
+++ testing-x86_64/glib-compile-schemas.hook2020-05-23 11:10:00 UTC (rev 
387449)
@@ -0,0 +1,12 @@
+[Trigger]
+Type = Path
+Operation = Install
+Operation = Upgrade
+Operation = Remove
+Target = usr/share/glib-2.0/schemas/*.gschema.xml
+Target = usr/share/glib-2.0/schemas/*.gschema.override
+
+[Action]
+Description = Compiling GSettings XML schema files...
+When = PostTransaction
+Exec = /usr/bin/glib-compile-schemas /usr/share/glib-2.0/schemas

Copied: glib2/repos/testing-x86_64/noisy-glib-compile-schemas.diff (from rev 
387448, glib2/trunk/

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

2020-05-23 Thread Allan McRae via arch-commits
Date: Saturday, May 23, 2020 @ 11:01:32
  Author: allan
Revision: 387448

fix reproducibility

Modified:
  glib2/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-05-23 10:04:35 UTC (rev 387447)
+++ PKGBUILD2020-05-23 11:01:32 UTC (rev 387448)
@@ -4,7 +4,7 @@
 pkgbase=glib2
 pkgname=(glib2 glib2-docs)
 pkgver=2.64.3
-pkgrel=1
+pkgrel=2
 pkgdesc="Low level core library"
 url="https://wiki.gnome.org/Projects/GLib";
 license=(LGPL2.1)
@@ -57,6 +57,7 @@
   DESTDIR="$pkgdir" meson install -C build
   install -Dt "$pkgdir/usr/share/libalpm/hooks" -m644 *.hook
 
+  export PYTHONHASHSEED=0
   python -m compileall -d /usr/share/glib-2.0/codegen \
 "$pkgdir/usr/share/glib-2.0/codegen"
   python -O -m compileall -d /usr/share/glib-2.0/codegen \


[arch-commits] Commit in pacman/repos (7 files)

2020-05-23 Thread Allan McRae via arch-commits
Date: Saturday, May 23, 2020 @ 10:04:35
  Author: allan
Revision: 387447

archrelease: copy trunk to testing-x86_64

Added:
  pacman/repos/testing-x86_64/
  pacman/repos/testing-x86_64/PKGBUILD
(from rev 387446, pacman/trunk/PKGBUILD)
  pacman/repos/testing-x86_64/makepkg-fix-one-more-file-seccomp-issue.patch
(from rev 387446, 
pacman/trunk/makepkg-fix-one-more-file-seccomp-issue.patch)
  pacman/repos/testing-x86_64/makepkg.conf
(from rev 387446, pacman/trunk/makepkg.conf)
  pacman/repos/testing-x86_64/pacman-5.2.1-fix-pactest-package-tar-format.patch
(from rev 387446, 
pacman/trunk/pacman-5.2.1-fix-pactest-package-tar-format.patch)
  pacman/repos/testing-x86_64/pacman-5.2.1-reproducible-libprovides.patch
(from rev 387446, pacman/trunk/pacman-5.2.1-reproducible-libprovides.patch)
  pacman/repos/testing-x86_64/pacman.conf
(from rev 387446, pacman/trunk/pacman.conf)

---+
 PKGBUILD  |   68 +
 makepkg-fix-one-more-file-seccomp-issue.patch |   30 
 makepkg.conf  |  145 
 pacman-5.2.1-fix-pactest-package-tar-format.patch |   32 
 pacman-5.2.1-reproducible-libprovides.patch   |   13 +
 pacman.conf   |   99 +
 6 files changed, 387 insertions(+)

Copied: pacman/repos/testing-x86_64/PKGBUILD (from rev 387446, 
pacman/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2020-05-23 10:04:35 UTC (rev 387447)
@@ -0,0 +1,68 @@
+# vim: set ts=2 sw=2 et:
+# Maintainer: Dan McGee 
+# Maintainer: Dave Reisner 
+
+pkgname=pacman
+pkgver=5.2.1
+pkgrel=6
+pkgdesc="A library-based package manager with dependency support"
+arch=('x86_64')
+url="https://www.archlinux.org/pacman/";
+license=('GPL')
+groups=('base-devel')
+depends=('bash' 'glibc' 'libarchive' 'curl'
+ 'gpgme' 'pacman-mirrorlist' 'archlinux-keyring')
+makedepends=('asciidoc')
+checkdepends=('python' 'fakechroot')
+optdepends=('perl-locale-gettext: translation support in makepkg-template')
+provides=('libalpm.so')
+backup=(etc/pacman.conf
+etc/makepkg.conf)
+options=('strip' 'debug')
+validpgpkeys=('6645B0A8C7005E78DB1D7864F99FFE0FEAE999BD'  # Allan McRae 

+  'B8151B117037781095514CA7BBDFFC92306B1121') # Andrew Gregory 
(pacman) 
+source=(https://sources.archlinux.org/other/pacman/$pkgname-$pkgver.tar.gz{,.sig}
+pacman-5.2.1-fix-pactest-package-tar-format.patch
+makepkg-fix-one-more-file-seccomp-issue.patch
+pacman-5.2.1-reproducible-libprovides.patch
+pacman.conf
+makepkg.conf)
+sha256sums=('1930c407265fd039cb3a8e6edc82f69e122aa9239d216d9d57b9d1b9315af312'
+'SKIP'
+'824a5c9dd458fb27b05a9a0b4b5d75b7a392de0dae79a18f5cfe8beaf4d82f0c'
+'e481a161bba76729cd434c97e0b319ddfcb1d93b2e4890d72b4e8a32982531d9'
+'667ba659f85e3740fda9808e4751a44a63e0484072594d961b87e474c607b79c'
+'3353f363088c73f1f86a890547c0f87c7473e5caf43bbbc768c2e9a7397f2aa2'
+'8c100b64450f5a19a16325dd05c143d49395bdeb96bd957f863cde4b95d3cb86')
+
+prepare() {
+  cd "$pkgname-$pkgver"
+  patch -Np1 < ../pacman-5.2.1-fix-pactest-package-tar-format.patch
+  patch -Np1 < ../makepkg-fix-one-more-file-seccomp-issue.patch
+  patch -Np1 < ../pacman-5.2.1-reproducible-libprovides.patch
+}
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  ./configure --prefix=/usr --sysconfdir=/etc \
+--localstatedir=/var --enable-doc \
+--with-scriptlet-shell=/usr/bin/bash \
+--with-ldconfig=/usr/bin/ldconfig
+  make V=1
+}
+
+check() {
+  make -C "$pkgname-$pkgver" check
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+
+  make DESTDIR="$pkgdir" install
+
+  # install Arch specific stuff
+  install -dm755 "$pkgdir/etc"
+  install -m644 "$srcdir/pacman.conf" "$pkgdir/etc"
+  install -m644 "$srcdir/makepkg.conf" "$pkgdir/etc"
+}

Copied: 
pacman/repos/testing-x86_64/makepkg-fix-one-more-file-seccomp-issue.patch (from 
rev 387446, pacman/trunk/makepkg-fix-one-more-file-seccomp-issue.patch)
===
--- testing-x86_64/makepkg-fix-one-more-file-seccomp-issue.patch
(rev 0)
+++ testing-x86_64/makepkg-fix-one-more-file-seccomp-issue.patch
2020-05-23 10:04:35 UTC (rev 387447)
@@ -0,0 +1,30 @@
+From 00cfc6c5c9700b597c384743c2f057a2ba7125e2 Mon Sep 17 00:00:00 2001

[arch-commits] Commit in pacman/trunk (2 files)

2020-05-23 Thread Allan McRae via arch-commits
Date: Saturday, May 23, 2020 @ 10:04:04
  Author: allan
Revision: 387446

upgpkg: pacman 5.2.1-6: backport reproducibility patch

Added:
  pacman/trunk/pacman-5.2.1-reproducible-libprovides.patch
Modified:
  pacman/trunk/PKGBUILD

-+
 PKGBUILD|5 -
 pacman-5.2.1-reproducible-libprovides.patch |   13 +
 2 files changed, 17 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-05-23 08:52:02 UTC (rev 387445)
+++ PKGBUILD2020-05-23 10:04:04 UTC (rev 387446)
@@ -4,7 +4,7 @@
 
 pkgname=pacman
 pkgver=5.2.1
-pkgrel=5
+pkgrel=6
 pkgdesc="A library-based package manager with dependency support"
 arch=('x86_64')
 url="https://www.archlinux.org/pacman/";
@@ -24,6 +24,7 @@
 
source=(https://sources.archlinux.org/other/pacman/$pkgname-$pkgver.tar.gz{,.sig}
 pacman-5.2.1-fix-pactest-package-tar-format.patch
 makepkg-fix-one-more-file-seccomp-issue.patch
+pacman-5.2.1-reproducible-libprovides.patch
 pacman.conf
 makepkg.conf)
 sha256sums=('1930c407265fd039cb3a8e6edc82f69e122aa9239d216d9d57b9d1b9315af312'
@@ -30,6 +31,7 @@
 'SKIP'
 '824a5c9dd458fb27b05a9a0b4b5d75b7a392de0dae79a18f5cfe8beaf4d82f0c'
 'e481a161bba76729cd434c97e0b319ddfcb1d93b2e4890d72b4e8a32982531d9'
+'667ba659f85e3740fda9808e4751a44a63e0484072594d961b87e474c607b79c'
 '3353f363088c73f1f86a890547c0f87c7473e5caf43bbbc768c2e9a7397f2aa2'
 '8c100b64450f5a19a16325dd05c143d49395bdeb96bd957f863cde4b95d3cb86')
 
@@ -37,6 +39,7 @@
   cd "$pkgname-$pkgver"
   patch -Np1 < ../pacman-5.2.1-fix-pactest-package-tar-format.patch
   patch -Np1 < ../makepkg-fix-one-more-file-seccomp-issue.patch
+  patch -Np1 < ../pacman-5.2.1-reproducible-libprovides.patch
 }
 
 build() {

Added: pacman-5.2.1-reproducible-libprovides.patch
===
--- pacman-5.2.1-reproducible-libprovides.patch (rev 0)
+++ pacman-5.2.1-reproducible-libprovides.patch 2020-05-23 10:04:04 UTC (rev 
387446)
@@ -0,0 +1,13 @@
+diff --git a/scripts/makepkg.sh.in b/scripts/makepkg.sh.in
+index d1416d15..b95a03af 100644
+--- a/scripts/makepkg.sh.in
 b/scripts/makepkg.sh.in
+@@ -521,7 +521,7 @@ find_libprovides() {
+   missing=0
+   case "$p" in
+   *.so)
+-  mapfile -t filename < <(find "$pkgdir" -type f 
-name $p\*)
++  mapfile -t filename < <(find "$pkgdir" -type f 
-name $p\* | LC_ALL=C sort)
+   if [[ $filename ]]; then
+   # packages may provide multiple 
versions of the same library
+   for fn in "${filename[@]}"; do


[arch-commits] Commit in gpgme/repos/testing-x86_64 (PKGBUILD PKGBUILD)

2020-05-23 Thread Allan McRae via arch-commits
Date: Saturday, May 23, 2020 @ 08:42:50
  Author: allan
Revision: 387443

archrelease: copy trunk to testing-x86_64

Added:
  gpgme/repos/testing-x86_64/PKGBUILD
(from rev 387442, gpgme/trunk/PKGBUILD)
Deleted:
  gpgme/repos/testing-x86_64/PKGBUILD

--+
 PKGBUILD |  165 ++---
 1 file changed, 82 insertions(+), 83 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-23 08:37:10 UTC (rev 387442)
+++ PKGBUILD2020-05-23 08:42:50 UTC (rev 387443)
@@ -1,83 +0,0 @@
-# Maintainer: Tobias Powalowski 
-# Contributor: Roman Kyrylych 
-# Contributor: Sarah Hay 
-
-pkgbase=gpgme
-pkgname=(gpgme qgpgme python-gpgme)
-pkgver=1.13.1
-pkgrel=6
-_python_ver=3.8
-pkgdesc="A C wrapper library for GnuPG"
-arch=('x86_64')
-url='https://www.gnupg.org/related_software/gpgme/'
-license=('LGPL')
-makedepends=('libgpg-error' 'gnupg' 'qt5-base' 'python' 'swig')
-source=("https://www.gnupg.org/ftp/gcrypt/${pkgbase}/${pkgbase}-${pkgver}.tar.bz2"{,.sig})
-sha256sums=('c4e30b227682374c23cddc7fdb9324a99694d907e79242a25a4deeedb393be46'
-'SKIP')
-validpgpkeys=('D8692123C4065DEA5E0F3AB5249B39D24F25E3B6') # Werner Koch
-
-prepare() {
-  cd ${pkgbase}-${pkgver}
-
-  # touch python files for reproducibility
-  find lang/python -name *.py
-}
-
-build() {
-  cd ${pkgbase}-${pkgver}
-
-  export PYTHONHASHSEED=0
-  ./configure \
---prefix=/usr \
---disable-fd-passing \
---disable-static \
---disable-gpgsm-test
-  make
-
-  # ensure reproducibility of .pyc files
-  touch -d @$SOURCE_DATE_EPOCH lang/python/version.py
-  touch -d @$SOURCE_DATE_EPOCH 
lang/python/python${_python_ver}-gpg/lib.linux-x86_64-${_python_ver}/gpg/gpgme.py
-}
-
-check() {
-  cd ${pkgbase}-${pkgver}
-
-  # this test fails with gnupg (FS#66572)
-  sed -i 's#"t-keylist-secret",##' tests/json/t-json.c
-
-  make check
-}
-
-package_gpgme() {
-  depends=('libgpg-error' 'gnupg>=2')
-  options=('!emptydirs')
-  provides=('libgpgme.so'
-'libgpgmepp.so')
-
-  cd ${pkgbase}-${pkgver}
-
-  make DESTDIR="${pkgdir}" install
-
-  # split qgpgme
-  rm -r "${pkgdir}"/usr/include/{qgpgme,QGpgME}/
-  rm -r "${pkgdir}"/usr/lib/{cmake/QGpgme/,libqgpgme.*}
-  rm -r "${pkgdir}"/usr/lib/python*
-}
-
-package_qgpgme() {
-  pkgdesc="Qt bindings for GPGme"
-  depends=('gpgme' 'qt5-base')
-
-  cd ${pkgbase}-${pkgver}/lang/qt
-
-  make DESTDIR="${pkgdir}" install
-}
-
-package_python-gpgme() {
-  pkgdesc="Python bindings for GPGme"
-  depends=('gpgme' 'python')
-
-  cd ${pkgbase}-${pkgver}/lang/python
-  make DESTDIR="${pkgdir}" install
-}

Copied: gpgme/repos/testing-x86_64/PKGBUILD (from rev 387442, 
gpgme/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-23 08:42:50 UTC (rev 387443)
@@ -0,0 +1,82 @@
+# Maintainer: Tobias Powalowski 
+# Contributor: Roman Kyrylych 
+# Contributor: Sarah Hay 
+
+pkgbase=gpgme
+pkgname=(gpgme qgpgme python-gpgme)
+pkgver=1.13.1
+pkgrel=7
+_python_ver=3.8
+pkgdesc="A C wrapper library for GnuPG"
+arch=('x86_64')
+url='https://www.gnupg.org/related_software/gpgme/'
+license=('LGPL')
+makedepends=('libgpg-error' 'gnupg' 'qt5-base' 'python' 'swig')
+source=("https://www.gnupg.org/ftp/gcrypt/${pkgbase}/${pkgbase}-${pkgver}.tar.bz2"{,.sig})
+sha256sums=('c4e30b227682374c23cddc7fdb9324a99694d907e79242a25a4deeedb393be46'
+'SKIP')
+validpgpkeys=('D8692123C4065DEA5E0F3AB5249B39D24F25E3B6') # Werner Koch
+
+build() {
+  cd ${pkgbase}-${pkgver}
+
+  export PYTHONHASHSEED=0
+  ./configure \
+--prefix=/usr \
+--disable-fd-passing \
+--disable-static \
+--disable-gpgsm-test
+  make
+
+  # ensure reproducibility of .pyc files
+  touch -d @$SOURCE_DATE_EPOCH lang/python/version.py
+  touch -d @$SOURCE_DATE_EPOCH 
lang/python/python${_python_ver}-gpg/lib.linux-x86_64-${_python_ver}/gpg/gpgme.py
+  
+  # .pyc files will be created if check() is used - generate them here
+  
+}
+
+check() {
+  cd ${pkgbase}-${pkgver}
+
+  # this test fails with gnupg (FS#66572)
+  sed -i 's#"t-keylist-secret",##' tests/json/t-json.c
+
+  make check
+
+  # ensure reproducibilty whether test-suite is run or not
+  find . -name *.pyc -exec rm {} +
+}
+
+package_gpgme() {
+  depends=('libgpg-error' 'gnupg>=2')
+  options=('!emptydirs')
+  provides=('libgpgme.so'
+'libgpgmepp.so')
+
+  cd ${pkgbase}-${pkgver}
+
+  make DESTDIR="${pkgdir}" install
+
+  # split qgpgme
+  rm -r "${pkgdir}"/usr/include/{qgpgme,QGpgME}/
+  rm -r "${pkgdir}"/usr/lib/{cmake/QGpgme/,libqgpgme.*}
+  rm -r "${pkgdir}"/usr/lib/python*
+}
+
+package_qgpgme() {
+  pkgdesc="Qt bindings for GPGme"
+  depends=('gpgme' 'qt5-base')
+
+  cd ${pkgbase}-${pkgver}/lang/qt
+
+  make DESTDIR="${pkgdir}" install
+}
+
+package_python-gpgme() {
+  pkgdesc="Python bindings for GPGme"
+  depends=('gpgme' 'python')
+
+  cd ${pkgbase

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

2020-05-23 Thread Allan McRae via arch-commits
Date: Saturday, May 23, 2020 @ 08:37:10
  Author: allan
Revision: 387442

reproducibilty attempt 2

Modified:
  gpgme/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-05-23 06:52:59 UTC (rev 387441)
+++ PKGBUILD2020-05-23 08:37:10 UTC (rev 387442)
@@ -5,7 +5,7 @@
 pkgbase=gpgme
 pkgname=(gpgme qgpgme python-gpgme)
 pkgver=1.13.1
-pkgrel=6
+pkgrel=7
 _python_ver=3.8
 pkgdesc="A C wrapper library for GnuPG"
 arch=('x86_64')
@@ -17,13 +17,6 @@
 'SKIP')
 validpgpkeys=('D8692123C4065DEA5E0F3AB5249B39D24F25E3B6') # Werner Koch
 
-prepare() {
-  cd ${pkgbase}-${pkgver}
-
-  # touch python files for reproducibility
-  find lang/python -name *.py
-}
-
 build() {
   cd ${pkgbase}-${pkgver}
 
@@ -38,6 +31,9 @@
   # ensure reproducibility of .pyc files
   touch -d @$SOURCE_DATE_EPOCH lang/python/version.py
   touch -d @$SOURCE_DATE_EPOCH 
lang/python/python${_python_ver}-gpg/lib.linux-x86_64-${_python_ver}/gpg/gpgme.py
+  
+  # .pyc files will be created if check() is used - generate them here
+  
 }
 
 check() {
@@ -47,6 +43,9 @@
   sed -i 's#"t-keylist-secret",##' tests/json/t-json.c
 
   make check
+
+  # ensure reproducibilty whether test-suite is run or not
+  find . -name *.pyc -exec rm {} +
 }
 
 package_gpgme() {


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

2020-05-22 Thread Allan McRae via arch-commits
Date: Saturday, May 23, 2020 @ 06:52:36
  Author: allan
Revision: 387440

upgpkg: gpgme 1.13.1-6: python-gpgme should now be reproducible

Modified:
  gpgme/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-05-23 03:50:48 UTC (rev 387439)
+++ PKGBUILD2020-05-23 06:52:36 UTC (rev 387440)
@@ -6,6 +6,7 @@
 pkgname=(gpgme qgpgme python-gpgme)
 pkgver=1.13.1
 pkgrel=6
+_python_ver=3.8
 pkgdesc="A C wrapper library for GnuPG"
 arch=('x86_64')
 url='https://www.gnupg.org/related_software/gpgme/'
@@ -16,6 +17,13 @@
 'SKIP')
 validpgpkeys=('D8692123C4065DEA5E0F3AB5249B39D24F25E3B6') # Werner Koch
 
+prepare() {
+  cd ${pkgbase}-${pkgver}
+
+  # touch python files for reproducibility
+  find lang/python -name *.py
+}
+
 build() {
   cd ${pkgbase}-${pkgver}
 
@@ -26,6 +34,10 @@
 --disable-static \
 --disable-gpgsm-test
   make
+
+  # ensure reproducibility of .pyc files
+  touch -d @$SOURCE_DATE_EPOCH lang/python/version.py
+  touch -d @$SOURCE_DATE_EPOCH 
lang/python/python${_python_ver}-gpg/lib.linux-x86_64-${_python_ver}/gpg/gpgme.py
 }
 
 check() {
@@ -67,7 +79,5 @@
   depends=('gpgme' 'python')
 
   cd ${pkgbase}-${pkgver}/lang/python
-
-  export PYTHONHASHSEED=0
   make DESTDIR="${pkgdir}" install
 }


[arch-commits] Commit in gpgme/repos (testing-x86_64 testing-x86_64/PKGBUILD)

2020-05-22 Thread Allan McRae via arch-commits
Date: Saturday, May 23, 2020 @ 06:52:59
  Author: allan
Revision: 387441

archrelease: copy trunk to testing-x86_64

Added:
  gpgme/repos/testing-x86_64/
  gpgme/repos/testing-x86_64/PKGBUILD
(from rev 387440, gpgme/trunk/PKGBUILD)

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

Copied: gpgme/repos/testing-x86_64/PKGBUILD (from rev 387440, 
gpgme/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2020-05-23 06:52:59 UTC (rev 387441)
@@ -0,0 +1,83 @@
+# Maintainer: Tobias Powalowski 
+# Contributor: Roman Kyrylych 
+# Contributor: Sarah Hay 
+
+pkgbase=gpgme
+pkgname=(gpgme qgpgme python-gpgme)
+pkgver=1.13.1
+pkgrel=6
+_python_ver=3.8
+pkgdesc="A C wrapper library for GnuPG"
+arch=('x86_64')
+url='https://www.gnupg.org/related_software/gpgme/'
+license=('LGPL')
+makedepends=('libgpg-error' 'gnupg' 'qt5-base' 'python' 'swig')
+source=("https://www.gnupg.org/ftp/gcrypt/${pkgbase}/${pkgbase}-${pkgver}.tar.bz2"{,.sig})
+sha256sums=('c4e30b227682374c23cddc7fdb9324a99694d907e79242a25a4deeedb393be46'
+'SKIP')
+validpgpkeys=('D8692123C4065DEA5E0F3AB5249B39D24F25E3B6') # Werner Koch
+
+prepare() {
+  cd ${pkgbase}-${pkgver}
+
+  # touch python files for reproducibility
+  find lang/python -name *.py
+}
+
+build() {
+  cd ${pkgbase}-${pkgver}
+
+  export PYTHONHASHSEED=0
+  ./configure \
+--prefix=/usr \
+--disable-fd-passing \
+--disable-static \
+--disable-gpgsm-test
+  make
+
+  # ensure reproducibility of .pyc files
+  touch -d @$SOURCE_DATE_EPOCH lang/python/version.py
+  touch -d @$SOURCE_DATE_EPOCH 
lang/python/python${_python_ver}-gpg/lib.linux-x86_64-${_python_ver}/gpg/gpgme.py
+}
+
+check() {
+  cd ${pkgbase}-${pkgver}
+
+  # this test fails with gnupg (FS#66572)
+  sed -i 's#"t-keylist-secret",##' tests/json/t-json.c
+
+  make check
+}
+
+package_gpgme() {
+  depends=('libgpg-error' 'gnupg>=2')
+  options=('!emptydirs')
+  provides=('libgpgme.so'
+'libgpgmepp.so')
+
+  cd ${pkgbase}-${pkgver}
+
+  make DESTDIR="${pkgdir}" install
+
+  # split qgpgme
+  rm -r "${pkgdir}"/usr/include/{qgpgme,QGpgME}/
+  rm -r "${pkgdir}"/usr/lib/{cmake/QGpgme/,libqgpgme.*}
+  rm -r "${pkgdir}"/usr/lib/python*
+}
+
+package_qgpgme() {
+  pkgdesc="Qt bindings for GPGme"
+  depends=('gpgme' 'qt5-base')
+
+  cd ${pkgbase}-${pkgver}/lang/qt
+
+  make DESTDIR="${pkgdir}" install
+}
+
+package_python-gpgme() {
+  pkgdesc="Python bindings for GPGme"
+  depends=('gpgme' 'python')
+
+  cd ${pkgbase}-${pkgver}/lang/python
+  make DESTDIR="${pkgdir}" install
+}


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

2020-05-22 Thread Allan McRae via arch-commits
Date: Saturday, May 23, 2020 @ 03:50:48
  Author: allan
Revision: 387439

more repro attempts...

Modified:
  gpgme/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-05-23 02:59:47 UTC (rev 387438)
+++ PKGBUILD2020-05-23 03:50:48 UTC (rev 387439)
@@ -16,16 +16,10 @@
 'SKIP')
 validpgpkeys=('D8692123C4065DEA5E0F3AB5249B39D24F25E3B6') # Werner Koch
 
-prepare() {
-  cd ${pkgbase}-${pkgver}
-
-  # touch python sources for reproducibility
-  find lang/python -name *.py -exec touch -d @$SOURCE_DATE_EPOCH {} +
-}
-
 build() {
   cd ${pkgbase}-${pkgver}
 
+  export PYTHONHASHSEED=0
   ./configure \
 --prefix=/usr \
 --disable-fd-passing \
@@ -74,5 +68,6 @@
 
   cd ${pkgbase}-${pkgver}/lang/python
 
+  export PYTHONHASHSEED=0
   make DESTDIR="${pkgdir}" install
 }


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

2020-05-22 Thread Allan McRae via arch-commits
Date: Saturday, May 23, 2020 @ 02:59:47
  Author: allan
Revision: 387438

reproducibility fixes, disable broken test

Modified:
  gpgme/trunk/PKGBUILD

--+
 PKGBUILD |   12 +++-
 1 file changed, 11 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-05-23 02:55:39 UTC (rev 387437)
+++ PKGBUILD2020-05-23 02:59:47 UTC (rev 387438)
@@ -5,7 +5,7 @@
 pkgbase=gpgme
 pkgname=(gpgme qgpgme python-gpgme)
 pkgver=1.13.1
-pkgrel=5
+pkgrel=6
 pkgdesc="A C wrapper library for GnuPG"
 arch=('x86_64')
 url='https://www.gnupg.org/related_software/gpgme/'
@@ -16,6 +16,13 @@
 'SKIP')
 validpgpkeys=('D8692123C4065DEA5E0F3AB5249B39D24F25E3B6') # Werner Koch
 
+prepare() {
+  cd ${pkgbase}-${pkgver}
+
+  # touch python sources for reproducibility
+  find lang/python -name *.py -exec touch -d @$SOURCE_DATE_EPOCH {} +
+}
+
 build() {
   cd ${pkgbase}-${pkgver}
 
@@ -30,6 +37,9 @@
 check() {
   cd ${pkgbase}-${pkgver}
 
+  # this test fails with gnupg (FS#66572)
+  sed -i 's#"t-keylist-secret",##' tests/json/t-json.c
+
   make check
 }
 


[arch-commits] Commit in rcs/repos/extra-x86_64 (5 files)

2020-05-20 Thread Allan McRae via arch-commits
Date: Thursday, May 21, 2020 @ 05:28:12
  Author: allan
Revision: 387353

archrelease: copy trunk to extra-x86_64

Added:
  rcs/repos/extra-x86_64/PKGBUILD
(from rev 387352, rcs/trunk/PKGBUILD)
  rcs/repos/extra-x86_64/rcs-c++11.patch
(from rev 387352, rcs/trunk/rcs-c++11.patch)
  rcs/repos/extra-x86_64/t810.diff
(from rev 387352, rcs/trunk/t810.diff)
Deleted:
  rcs/repos/extra-x86_64/PKGBUILD
  rcs/repos/extra-x86_64/rcs-c++11.patch

-+
 PKGBUILD|   79 +++---
 rcs-c++11.patch |  186 +++---
 t810.diff   |   14 
 3 files changed, 148 insertions(+), 131 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-21 05:27:50 UTC (rev 387352)
+++ PKGBUILD2020-05-21 05:28:12 UTC (rev 387353)
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer: Gaetan Bisson 
-# Contributor: dorphell 
-
-pkgname=rcs
-pkgver=5.9.4
-pkgrel=2
-pkgdesc='Revision Control System: manages multiple revisions of files'
-url='http://www.gnu.org/software/rcs/'
-license=('GPL3')
-arch=('x86_64')
-depends=('ed')
-validpgpkeys=('748EA0E81CB8A7489BFA6CE4670322244C807502')
-source=("ftp://ftp.gnu.org/gnu/${pkgname}/${pkgname}-${pkgver}.tar.xz"{,.sig} 
rcs-c++11.patch)
-sha256sums=('063d5a0d7da1821754b80c639cdae2c82b535c8ff4131f75dc7bbf0cd63a5dff'
-'SKIP'
-'569a8d5c851d2619393474a681e05c2eb83912e71adcf1124b895478c91e1fbb')
-
-prepare() {
-  cd $pkgname-$pkgver
-  patch -p1 -i ../rcs-c++11.patch # Fix build with C++11
-}
-
-build() {
-  cd ${pkgname}-${pkgver}
-  ./configure --prefix=/usr
-  make
-}
-
-check() {
-  cd ${pkgname}-${pkgver}
-  make check
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make prefix="${pkgdir}/usr" install
-}

Copied: rcs/repos/extra-x86_64/PKGBUILD (from rev 387352, rcs/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-21 05:28:12 UTC (rev 387353)
@@ -0,0 +1,41 @@
+# Maintainer: Gaetan Bisson 
+# Contributor: dorphell 
+
+pkgname=rcs
+pkgver=5.9.4
+pkgrel=3
+pkgdesc='Revision Control System: manages multiple revisions of files'
+url='https://www.gnu.org/software/rcs/'
+license=('GPL3')
+arch=('x86_64')
+depends=('ed')
+validpgpkeys=('748EA0E81CB8A7489BFA6CE4670322244C807502')
+source=("https://ftp.gnu.org/gnu/${pkgname}/${pkgname}-${pkgver}.tar.xz"{,.sig}
+rcs-c++11.patch
+t810.diff)
+sha256sums=('063d5a0d7da1821754b80c639cdae2c82b535c8ff4131f75dc7bbf0cd63a5dff'
+'SKIP'
+'569a8d5c851d2619393474a681e05c2eb83912e71adcf1124b895478c91e1fbb'
+'f7d8f458c6c7a0d435183378eb44e07d9d66c8013b2fea4efca9a3e66a6d')
+
+prepare() {
+  cd $pkgname-$pkgver
+  patch -p1 -i ../rcs-c++11.patch # Fix build with C++11
+  patch -p1 -i $srcdir/t810.diff # fix test suite failure - git 
f2330a6268d244e97f47a97f4767736fc3b31455
+}
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr
+  make
+}
+
+check() {
+  cd ${pkgname}-${pkgver}
+  make check
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make prefix="${pkgdir}/usr" install
+}

Deleted: rcs-c++11.patch
===
--- rcs-c++11.patch 2020-05-21 05:27:50 UTC (rev 387352)
+++ rcs-c++11.patch 2020-05-21 05:28:12 UTC (rev 387353)
@@ -1,93 +0,0 @@
-From 260704a9164dd34cf7128d6b1e88075ffa3be054 Mon Sep 17 00:00:00 2001
-From: Thien-Thi Nguyen 
-Date: Thu, 18 Jun 2015 21:25:53 +0200
-Subject: [PATCH] =?UTF-8?q?[C=20slog]=20Move=20=E2=80=98exiting=E2=80=99?=
- =?UTF-8?q?=20to=20beginning=20of=20func=20decl.?=
-MIME-Version: 1.0
-Content-Type: text/plain; charset=UTF-8
-Content-Transfer-Encoding: 8bit
-
-Apparently, ‘gcc --std=c11’ does not abide the ‘exiting’
-attribute appearing at the end of the func decl.
-Reported by Romain Francoise.
-See also .
-
-* src/b-complain.h (generic_fatal, fatal_syntax, fatal_sys)
-* src/b-fb.h (Ierror, Oerror)
-* src/base.h (unexpected_EOF, thank_you_and_goodnight):
-Move ‘exiting’ attribute to beginning of func decl.

- src/b-complain.h | 10 ++
- src/b-fb.h   |  6 --
- src/base.h   |  8 
-
-diff --git a/src/b-complain.h b/src/b-complain.h
-index 0ffd157..ea0ffc5 100644
 a/src/b-complain.h
-+++ b/src/b-complain.h
-@@ -32,12 +32,14 @@ extern void generic_warn (char const *who, char const 
*fmt, ...)
-   printf_string (2, 3);
- extern void generic_error (char const *who, char const *fmt, ...)
-   printf_string (2, 3);
-+exiting
- extern void generic_fatal (char const *who, char const *fmt, ...)
--  printf_string (2, 3) exiting;
-+  printf_string (2, 3);
-+exiting
- extern void fatal_syntax (size_t lno, char const *fmt, ...)
--  printf_string (2, 3) exiting;
--extern void fatal_sys (char const *who)
--  exiting;
-+  printf_string (2, 3);
-+exiting
-+extern void fatal_sys (char 

[arch-commits] Commit in rcs/trunk (PKGBUILD t810.diff)

2020-05-20 Thread Allan McRae via arch-commits
Date: Thursday, May 21, 2020 @ 05:27:50
  Author: allan
Revision: 387352

upgpkg: rcs 5.9.4-3: fix FTBFS

Added:
  rcs/trunk/t810.diff
Modified:
  rcs/trunk/PKGBUILD

---+
 PKGBUILD  |   10 +++---
 t810.diff |   14 ++
 2 files changed, 21 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-05-21 05:16:35 UTC (rev 387351)
+++ PKGBUILD2020-05-21 05:27:50 UTC (rev 387352)
@@ -3,7 +3,7 @@
 
 pkgname=rcs
 pkgver=5.9.4
-pkgrel=2
+pkgrel=3
 pkgdesc='Revision Control System: manages multiple revisions of files'
 url='https://www.gnu.org/software/rcs/'
 license=('GPL3')
@@ -10,14 +10,18 @@
 arch=('x86_64')
 depends=('ed')
 validpgpkeys=('748EA0E81CB8A7489BFA6CE4670322244C807502')
-source=("https://ftp.gnu.org/gnu/${pkgname}/${pkgname}-${pkgver}.tar.xz"{,.sig}
 rcs-c++11.patch)
+source=("https://ftp.gnu.org/gnu/${pkgname}/${pkgname}-${pkgver}.tar.xz"{,.sig}
+rcs-c++11.patch
+t810.diff)
 sha256sums=('063d5a0d7da1821754b80c639cdae2c82b535c8ff4131f75dc7bbf0cd63a5dff'
 'SKIP'
-'569a8d5c851d2619393474a681e05c2eb83912e71adcf1124b895478c91e1fbb')
+'569a8d5c851d2619393474a681e05c2eb83912e71adcf1124b895478c91e1fbb'
+'f7d8f458c6c7a0d435183378eb44e07d9d66c8013b2fea4efca9a3e66a6d')
 
 prepare() {
   cd $pkgname-$pkgver
   patch -p1 -i ../rcs-c++11.patch # Fix build with C++11
+  patch -p1 -i $srcdir/t810.diff # fix test suite failure - git 
f2330a6268d244e97f47a97f4767736fc3b31455
 }
 
 build() {

Added: t810.diff
===
--- t810.diff   (rev 0)
+++ t810.diff   2020-05-21 05:27:50 UTC (rev 387352)
@@ -0,0 +1,14 @@
+diff --git a/tests/t810 b/tests/t810
+index ad3c00d..2e1c653 100644
+--- a/tests/t810
 b/tests/t810
+@@ -27,7 +27,8 @@ split_std_out_err no
+ 
+ must 'echo new line >> $w'
+ must 'ci -mm -l -d -T $w'
+-test $w -nt $v && problem "$w newer than $v"
++test 1 = `./btdt mtimecmp $w $v` \
++&& problem "$w newer than $v"
+ 
+ exit 0
+ 
\ No newline at end of file


[arch-commits] Commit in sound-juicer/repos/extra-x86_64 (PKGBUILD PKGBUILD)

2020-05-20 Thread Allan McRae via arch-commits
Date: Thursday, May 21, 2020 @ 05:16:35
  Author: allan
Revision: 387351

archrelease: copy trunk to extra-x86_64

Added:
  sound-juicer/repos/extra-x86_64/PKGBUILD
(from rev 387350, sound-juicer/trunk/PKGBUILD)
Deleted:
  sound-juicer/repos/extra-x86_64/PKGBUILD

--+
 PKGBUILD |   77 ++---
 1 file changed, 39 insertions(+), 38 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-21 05:16:18 UTC (rev 387350)
+++ PKGBUILD2020-05-21 05:16:35 UTC (rev 387351)
@@ -1,38 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Jan de Groot 
-# Contributor: Ben 
-
-pkgname=sound-juicer
-pkgver=3.24.0+2+gb8380d2d
-pkgrel=2
-pkgdesc="A lean and friendly audio CD extractor for GNOME"
-url="https://wiki.gnome.org/Apps/SoundJuicer";
-arch=(x86_64)
-license=(GPL)
-depends=(libmusicbrainz5 libdiscid gtk3 gst-plugins-base gst-plugins-good 
brasero iso-codes)
-makedepends=(intltool itstool gnome-common appstream-glib git)
-_commit=b8380d2da3b799560d5703ae8159a492877cd411  # master
-source=("git+https://git.gnome.org/browse/sound-juicer#commit=$_commit";)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/-/+/g'
-}
-
-prepare() {
-  cd $pkgname
-  NOCONFIGURE=1 ./autogen.sh
-}
-
-build() {
-  cd $pkgname
-  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
---enable-compile-warnings=minimum
-  make
-}
-
-package() {
-  cd $pkgname
-  make DESTDIR="${pkgdir}" install
-}

Copied: sound-juicer/repos/extra-x86_64/PKGBUILD (from rev 387350, 
sound-juicer/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-21 05:16:35 UTC (rev 387351)
@@ -0,0 +1,39 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Jan de Groot 
+# Contributor: Ben 
+
+pkgname=sound-juicer
+pkgver=3.24.0+2+gb8380d2d
+pkgrel=3
+pkgdesc="A lean and friendly audio CD extractor for GNOME"
+url="https://wiki.gnome.org/Apps/SoundJuicer";
+arch=(x86_64)
+license=(GPL)
+depends=(libmusicbrainz5 libdiscid gtk3 gst-plugins-base gst-plugins-good 
brasero iso-codes)
+makedepends=(intltool itstool gnome-common appstream-glib git)
+_commit=b8380d2da3b799560d5703ae8159a492877cd411  # master
+source=("git+https://git.gnome.org/browse/sound-juicer#commit=$_commit";)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+  sed -i "/^AM_GNU_GETTEXT_VERSION.*/a 
AM_GNU_GETTEXT_REQUIRE_VERSION([0.19.6])" configure.ac  
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+  cd $pkgname
+  ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+--enable-compile-warnings=minimum
+  make
+}
+
+package() {
+  cd $pkgname
+  make DESTDIR="${pkgdir}" install
+}


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

2020-05-20 Thread Allan McRae via arch-commits
Date: Thursday, May 21, 2020 @ 05:16:18
  Author: allan
Revision: 387350

upgpkg: sound-juicer 3.24.0+2+gb8380d2d-3: fix FTBFS

Modified:
  sound-juicer/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-05-21 00:22:11 UTC (rev 387349)
+++ PKGBUILD2020-05-21 05:16:18 UTC (rev 387350)
@@ -4,7 +4,7 @@
 
 pkgname=sound-juicer
 pkgver=3.24.0+2+gb8380d2d
-pkgrel=2
+pkgrel=3
 pkgdesc="A lean and friendly audio CD extractor for GNOME"
 url="https://wiki.gnome.org/Apps/SoundJuicer";
 arch=(x86_64)
@@ -22,6 +22,7 @@
 
 prepare() {
   cd $pkgname
+  sed -i "/^AM_GNU_GETTEXT_VERSION.*/a 
AM_GNU_GETTEXT_REQUIRE_VERSION([0.19.6])" configure.ac  
   NOCONFIGURE=1 ./autogen.sh
 }
 


[arch-commits] Commit in libmilter/trunk (PKGBUILD sendmail-8.15.2-glibc-2.30.patch)

2020-05-19 Thread Allan McRae via arch-commits
Date: Wednesday, May 20, 2020 @ 06:00:05
  Author: allan
Revision: 386983

upgpkg: libmilter 8.15.2-3: fix FTBFS

Added:
  libmilter/trunk/sendmail-8.15.2-glibc-2.30.patch
Modified:
  libmilter/trunk/PKGBUILD

--+
 PKGBUILD |   13 ++--
 sendmail-8.15.2-glibc-2.30.patch |   57 +
 2 files changed, 67 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-05-20 05:27:14 UTC (rev 386982)
+++ PKGBUILD2020-05-20 06:00:05 UTC (rev 386983)
@@ -5,7 +5,7 @@
 pkgname=libmilter
 _pkgname=sendmail
 pkgver=8.15.2
-pkgrel=2
+pkgrel=3
 pkgdesc='Implementation of the sendmail Mail Filter API'
 url='https://www.proofpoint.com/us/sendmail-open-source'
 arch=('x86_64')
@@ -13,14 +13,18 @@
 license=('custom:Sendmail open source license')
 validpgpkeys=('30BCA74705FA415455731D7BAAF5B5DE05BDCC53')
 source=("https://ftp.sendmail.org/${_pkgname}.${pkgver}.tar.gz"{,.sig}
-'fd-passing-libmilter.patch')
+'fd-passing-libmilter.patch'
+'sendmail-8.15.2-glibc-2.30.patch')
 sha256sums=('24f94b5fd76705f15897a78932a5f2439a32b1a2fdc35769bb1a5f5d9b4db439'
 'SKIP'
-'b856ebc17e39151652bda93f40f79756ac83eb4a0b67e6d55c049f3ebde42983')
+'b856ebc17e39151652bda93f40f79756ac83eb4a0b67e6d55c049f3ebde42983'
+'f5378261028782c95014b0c91546e87132c13d4a39d81f61fc6039a0738a0c71')
 
+
 prepare() {
cd "${srcdir}/${_pkgname}-${pkgver}"
patch -p1 -i ../fd-passing-libmilter.patch # FS#49421
+   patch -p0 -i ../sendmail-8.15.2-glibc-2.30.patch
 
# From 
http://www.j-chkmail.org/wiki/doku.php/doc/installation/start#libmilter
cat >> devtools/Site/site.config.m4 h_addrtype != family)
+   {


[arch-commits] Commit in libmilter/repos/extra-x86_64 (5 files)

2020-05-19 Thread Allan McRae via arch-commits
Date: Wednesday, May 20, 2020 @ 06:00:33
  Author: allan
Revision: 386984

archrelease: copy trunk to extra-x86_64

Added:
  libmilter/repos/extra-x86_64/PKGBUILD
(from rev 386983, libmilter/trunk/PKGBUILD)
  libmilter/repos/extra-x86_64/fd-passing-libmilter.patch
(from rev 386983, libmilter/trunk/fd-passing-libmilter.patch)
  libmilter/repos/extra-x86_64/sendmail-8.15.2-glibc-2.30.patch
(from rev 386983, libmilter/trunk/sendmail-8.15.2-glibc-2.30.patch)
Deleted:
  libmilter/repos/extra-x86_64/PKGBUILD
  libmilter/repos/extra-x86_64/fd-passing-libmilter.patch

--+
 PKGBUILD |  109 +
 fd-passing-libmilter.patch   |  160 ++---
 sendmail-8.15.2-glibc-2.30.patch |   57 +
 3 files changed, 195 insertions(+), 131 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-20 06:00:05 UTC (rev 386983)
+++ PKGBUILD2020-05-20 06:00:33 UTC (rev 386984)
@@ -1,51 +0,0 @@
-# Maintainer: Gaetan Bisson 
-# Contributor: Sergej Pupykin 
-# Contributor: mutantmonkey 
-
-pkgname=libmilter
-_pkgname=sendmail
-pkgver=8.15.2
-pkgrel=2
-pkgdesc='Implementation of the sendmail Mail Filter API'
-url='https://www.proofpoint.com/us/sendmail-open-source'
-arch=('x86_64')
-options=('staticlibs')
-license=('custom:Sendmail open source license')
-validpgpkeys=('30BCA74705FA415455731D7BAAF5B5DE05BDCC53')
-source=("http://ftp.sendmail.org/${_pkgname}.${pkgver}.tar.gz"{,.sig}
-'fd-passing-libmilter.patch')
-sha256sums=('24f94b5fd76705f15897a78932a5f2439a32b1a2fdc35769bb1a5f5d9b4db439'
-'SKIP'
-'b856ebc17e39151652bda93f40f79756ac83eb4a0b67e6d55c049f3ebde42983')
-
-prepare() {
-   cd "${srcdir}/${_pkgname}-${pkgver}"
-   patch -p1 -i ../fd-passing-libmilter.patch # FS#49421
-
-   # From 
http://www.j-chkmail.org/wiki/doku.php/doc/installation/start#libmilter
-   cat >> devtools/Site/site.config.m4 <
+# Contributor: Sergej Pupykin 
+# Contributor: mutantmonkey 
+
+pkgname=libmilter
+_pkgname=sendmail
+pkgver=8.15.2
+pkgrel=3
+pkgdesc='Implementation of the sendmail Mail Filter API'
+url='https://www.proofpoint.com/us/sendmail-open-source'
+arch=('x86_64')
+options=('staticlibs')
+license=('custom:Sendmail open source license')
+validpgpkeys=('30BCA74705FA415455731D7BAAF5B5DE05BDCC53')
+source=("https://ftp.sendmail.org/${_pkgname}.${pkgver}.tar.gz"{,.sig}
+'fd-passing-libmilter.patch'
+'sendmail-8.15.2-glibc-2.30.patch')
+sha256sums=('24f94b5fd76705f15897a78932a5f2439a32b1a2fdc35769bb1a5f5d9b4db439'
+'SKIP'
+'b856ebc17e39151652bda93f40f79756ac83eb4a0b67e6d55c049f3ebde42983'
+'f5378261028782c95014b0c91546e87132c13d4a39d81f61fc6039a0738a0c71')
+
+
+prepare() {
+   cd "${srcdir}/${_pkgname}-${pkgver}"
+   patch -p1 -i ../fd-passing-libmilter.patch # FS#49421
+   patch -p0 -i ../sendmail-8.15.2-glibc-2.30.patch
+
+   # From 
http://www.j-chkmail.org/wiki/doku.php/doc/installation/start#libmilter
+   cat >> devtools/Site/site.config.m4 <{unix|local}:/path/to/file -- A named pipe.
-   inet:port@{hostname|ip-address} -- An IPV4 socket.
-   inet6:port@{hostname|ip-address} -- An IPV6 socket.
-+  fd:number -- Pre-opened file descriptor.
-   
-   
- 
-diff --git a/libmilter/listener.c b/libmilter/listener.c
-index 48c552f..2249a1f 100644
 a/libmilter/listener.c
-+++ b/libmilter/listener.c
-@@ -197,6 +197,11 @@ mi_milteropen(conn, backlog, rmsocket, name)
-   L_socksize = sizeof addr.sin6;
-   }
- #endif /* NETINET6 */
-+  else if (strcasecmp(p, "fd") == 0)
-+  {
-+  addr.sa.sa_family = AF_UNSPEC;
-+  L_socksize = sizeof (_SOCK_ADDR);
-+  }
-   else
-   {
-   smi_log(SMI_LOG_ERR, "%s: unknown socket type %s",
-@@ -443,7 +448,21 @@ mi_milteropen(conn, backlog, rmsocket, name)
-   }
- #endif /* NETINET || NETINET6 */
- 
--  sock = socket(addr.sa.sa_family, SOCK_STREAM, 0);
-+  if (addr.sa.sa_family == AF_UNSPEC)
-+  {
-+  char *end;
-+  sock = strtol(colon, &end, 10);
-+  if (*end != '\0' || sock < 0)
-+  {
-+  smi_log(SMI_LOG_ERR, "%s: expected positive integer as 
fd, got %s", name, colon);
-+  return INVALID_SOCKET;
-+  }
-+  }
-+  else
-+  {
-+  sock = socket(addr.sa.sa_family, SOCK_STREAM, 0);
-+  }
-+
-   if (!ValidSocket(sock))
-   {
-   smi_log(SMI_LOG_ERR,
-@@ -466,6 +485,7 @@ mi_milteropen(conn, backlog, rmsocket, name)
- #if NETUNIX
-   addr.sa.sa_family != AF_UNIX &&
- #endif /* NETUNIX */
-+  addr.sa.sa_family != AF_UNSPEC &&
-   setsockopt(sock, SOL_SOCKE

[arch-commits] Commit in libgme/repos/extra-x86_64 (PKGBUILD PKGBUILD)

2020-05-19 Thread Allan McRae via arch-commits
Date: Wednesday, May 20, 2020 @ 01:32:36
  Author: allan
Revision: 386974

archrelease: copy trunk to extra-x86_64

Added:
  libgme/repos/extra-x86_64/PKGBUILD
(from rev 386973, libgme/trunk/PKGBUILD)
Deleted:
  libgme/repos/extra-x86_64/PKGBUILD

--+
 PKGBUILD |   60 +---
 1 file changed, 29 insertions(+), 31 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-20 01:32:21 UTC (rev 386973)
+++ PKGBUILD2020-05-20 01:32:36 UTC (rev 386974)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-# Contributer: Emmanuel Gil Peyrot 
-
-pkgname=libgme
-pkgver=0.6.2
-pkgrel=1
-pkgdesc="Video game music file emulation/playback library"
-url="https://bitbucket.org/mpyne/game-music-emu";
-license=('LGPL')
-arch=('x86_64')
-depends=('gcc-libs')
-makedepends=('cmake')
-source=("https://bitbucket.org/mpyne/game-music-emu/downloads/game-music-emu-$pkgver.tar.xz"{,.asc})
-sha256sums=('5046cb471d422dbe948b5f5dd4e5552aaef52a0899c4b2688e5a68a556af7342'
-'SKIP')
-validpgpkeys=(5406ECE83665DA9D201D35720BAF0C9C7B6AE9F2) # Michael Pyne 

-
-build() {
-  cd game-music-emu-${pkgver}
-  mkdir build
-  cd build
-
-  cmake .. -DCMAKE_INSTALL_PREFIX=/usr
-  make
-}
-
-package() {
-  cd game-music-emu-${pkgver}/build
-  make DESTDIR="${pkgdir}" install
-}

Copied: libgme/repos/extra-x86_64/PKGBUILD (from rev 386973, 
libgme/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-20 01:32:36 UTC (rev 386974)
@@ -0,0 +1,29 @@
+# Maintainer: Jan de Groot 
+# Contributer: Emmanuel Gil Peyrot 
+
+pkgname=libgme
+pkgver=0.6.3
+pkgrel=1
+pkgdesc="Video game music file emulation/playback library"
+url="https://bitbucket.org/mpyne/game-music-emu";
+license=('LGPL')
+arch=('x86_64')
+depends=('gcc-libs')
+makedepends=('cmake')
+source=("https://bitbucket.org/mpyne/game-music-emu/downloads/game-music-emu-$pkgver.tar.xz";)
+sha256sums=('aba34e53ef0ec6a34b58b84e28bf8cfbccee6585cebca25333604c35db3e051d')
+validpgpkeys=(5406ECE83665DA9D201D35720BAF0C9C7B6AE9F2) # Michael Pyne 

+
+build() {
+  cd game-music-emu-${pkgver}
+  mkdir build
+  cd build
+
+  cmake .. -DCMAKE_INSTALL_PREFIX=/usr
+  make
+}
+
+package() {
+  cd game-music-emu-${pkgver}/build
+  make DESTDIR="${pkgdir}" install
+}


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

2020-05-19 Thread Allan McRae via arch-commits
Date: Wednesday, May 20, 2020 @ 01:31:57
  Author: allan
Revision: 386971

upgpkg: ecl 16.1.3-4: fix FTBFS

Modified:
  ecl/trunk/PKGBUILD

--+
 PKGBUILD |   10 +-
 1 file changed, 9 insertions(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-05-19 22:44:08 UTC (rev 386970)
+++ PKGBUILD2020-05-20 01:31:57 UTC (rev 386971)
@@ -3,7 +3,7 @@
 
 pkgname=ecl
 pkgver=16.1.3
-pkgrel=3
+pkgrel=4
 pkgdesc="Embeddable Common Lisp"
 arch=('x86_64')
 url="https://common-lisp.net/project/ecl/";
@@ -15,9 +15,17 @@
 
source=("https://common-lisp.net/project/ecl/static/files/release/${pkgname}-${pkgver}.tgz";)
 sha256sums=('76a585c616e8fa83a6b7209325a309da5bc0ca68e0658f396f49955638111254')
 
+prepare() {
+  cd $srcdir/$pkgname-$pkgver
+
+  # upstream patch: 
https://gitlab.com/sagemath/dev/trac/-/commit/ed7bc14f751a76ad88c506cd33beb7f3e1030ff5
+  sed -i "s/FFI_SYSV/FFI_UNIX64/" src/c/ffi.d
+}
+
 build() {
   cd $srcdir/$pkgname-$pkgver
   sed -i 's|-Wl,--rpath,~A|-Wl,--rpath,/usr/lib/ecl|' src/configure
+  CFLAGS+=" -fcommon"
   ./configure \
 --build=$CHOST \
 --prefix=/usr \


[arch-commits] Commit in ecl/repos/extra-x86_64 (PKGBUILD PKGBUILD)

2020-05-19 Thread Allan McRae via arch-commits
Date: Wednesday, May 20, 2020 @ 01:32:13
  Author: allan
Revision: 386972

archrelease: copy trunk to extra-x86_64

Added:
  ecl/repos/extra-x86_64/PKGBUILD
(from rev 386971, ecl/trunk/PKGBUILD)
Deleted:
  ecl/repos/extra-x86_64/PKGBUILD

--+
 PKGBUILD |   86 +
 1 file changed, 47 insertions(+), 39 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-20 01:31:57 UTC (rev 386971)
+++ PKGBUILD2020-05-20 01:32:13 UTC (rev 386972)
@@ -1,39 +0,0 @@
-# Contributor: John Proctor 
-# Maintainer: juergen 
-
-pkgname=ecl
-pkgver=16.1.3
-pkgrel=3
-pkgdesc="Embeddable Common Lisp"
-arch=('x86_64')
-url="https://common-lisp.net/project/ecl/";
-license=('LGPL')
-depends=('bash' 'gmp')
-makedepends=('texinfo')
-provides=('common-lisp' 'cl-asdf')
-options=('!makeflags')
-source=("https://common-lisp.net/project/ecl/static/files/release/${pkgname}-${pkgver}.tgz";)
-sha256sums=('76a585c616e8fa83a6b7209325a309da5bc0ca68e0658f396f49955638111254')
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-  sed -i 's|-Wl,--rpath,~A|-Wl,--rpath,/usr/lib/ecl|' src/configure
-  ./configure \
---build=$CHOST \
---prefix=/usr \
---with-tcp \
---with-serve-event \
---with-clos-streams \
---with-system-gmp \
---without-x \
---without-clx \
---enable-threads \
---enable-shared \
---enable-boehm=included \
-
-  make
-}
-
-package() {
-  make -C $srcdir/$pkgname-$pkgver DESTDIR=$pkgdir install
-}

Copied: ecl/repos/extra-x86_64/PKGBUILD (from rev 386971, ecl/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-20 01:32:13 UTC (rev 386972)
@@ -0,0 +1,47 @@
+# Contributor: John Proctor 
+# Maintainer: juergen 
+
+pkgname=ecl
+pkgver=16.1.3
+pkgrel=4
+pkgdesc="Embeddable Common Lisp"
+arch=('x86_64')
+url="https://common-lisp.net/project/ecl/";
+license=('LGPL')
+depends=('bash' 'gmp')
+makedepends=('texinfo')
+provides=('common-lisp' 'cl-asdf')
+options=('!makeflags')
+source=("https://common-lisp.net/project/ecl/static/files/release/${pkgname}-${pkgver}.tgz";)
+sha256sums=('76a585c616e8fa83a6b7209325a309da5bc0ca68e0658f396f49955638111254')
+
+prepare() {
+  cd $srcdir/$pkgname-$pkgver
+
+  # upstream patch: 
https://gitlab.com/sagemath/dev/trac/-/commit/ed7bc14f751a76ad88c506cd33beb7f3e1030ff5
+  sed -i "s/FFI_SYSV/FFI_UNIX64/" src/c/ffi.d
+}
+
+build() {
+  cd $srcdir/$pkgname-$pkgver
+  sed -i 's|-Wl,--rpath,~A|-Wl,--rpath,/usr/lib/ecl|' src/configure
+  CFLAGS+=" -fcommon"
+  ./configure \
+--build=$CHOST \
+--prefix=/usr \
+--with-tcp \
+--with-serve-event \
+--with-clos-streams \
+--with-system-gmp \
+--without-x \
+--without-clx \
+--enable-threads \
+--enable-shared \
+--enable-boehm=included \
+
+  make
+}
+
+package() {
+  make -C $srcdir/$pkgname-$pkgver DESTDIR=$pkgdir install
+}


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

2020-05-19 Thread Allan McRae via arch-commits
Date: Wednesday, May 20, 2020 @ 01:32:21
  Author: allan
Revision: 386973

upgpkg: libgme 0.6.3-1: reproducibility rebuid and update

Modified:
  libgme/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-05-20 01:32:13 UTC (rev 386972)
+++ PKGBUILD2020-05-20 01:32:21 UTC (rev 386973)
@@ -2,7 +2,7 @@
 # Contributer: Emmanuel Gil Peyrot 
 
 pkgname=libgme
-pkgver=0.6.2
+pkgver=0.6.3
 pkgrel=1
 pkgdesc="Video game music file emulation/playback library"
 url="https://bitbucket.org/mpyne/game-music-emu";
@@ -10,9 +10,8 @@
 arch=('x86_64')
 depends=('gcc-libs')
 makedepends=('cmake')
-source=("https://bitbucket.org/mpyne/game-music-emu/downloads/game-music-emu-$pkgver.tar.xz"{,.asc})
-sha256sums=('5046cb471d422dbe948b5f5dd4e5552aaef52a0899c4b2688e5a68a556af7342'
-'SKIP')
+source=("https://bitbucket.org/mpyne/game-music-emu/downloads/game-music-emu-$pkgver.tar.xz";)
+sha256sums=('aba34e53ef0ec6a34b58b84e28bf8cfbccee6585cebca25333604c35db3e051d')
 validpgpkeys=(5406ECE83665DA9D201D35720BAF0C9C7B6AE9F2) # Michael Pyne 

 
 build() {


[arch-commits] Commit in abiword/repos/extra-x86_64 (15 files)

2020-05-19 Thread Allan McRae via arch-commits
Date: Tuesday, May 19, 2020 @ 07:35:02
  Author: allan
Revision: 386026

archrelease: copy trunk to extra-x86_64

Added:
  abiword/repos/extra-x86_64/PKGBUILD
(from rev 386025, abiword/trunk/PKGBUILD)
  abiword/repos/extra-x86_64/abiword-3.0.0-librevenge.patch
(from rev 386025, abiword/trunk/abiword-3.0.0-librevenge.patch)
  abiword/repos/extra-x86_64/abiword-3.0.1-libwps-0.4.patch
(from rev 386025, abiword/trunk/abiword-3.0.1-libwps-0.4.patch)
  abiword/repos/extra-x86_64/aiksaurus-plugin.m4
(from rev 386025, abiword/trunk/aiksaurus-plugin.m4)
  abiword/repos/extra-x86_64/boost-asio.patch
(from rev 386025, abiword/trunk/boost-asio.patch)
  abiword/repos/extra-x86_64/command-plugin.m4
(from rev 386025, abiword/trunk/command-plugin.m4)
  abiword/repos/extra-x86_64/enchant-2.1.patch
(from rev 386025, abiword/trunk/enchant-2.1.patch)
  abiword/repos/extra-x86_64/python-override.patch
(from rev 386025, abiword/trunk/python-override.patch)
Deleted:
  abiword/repos/extra-x86_64/PKGBUILD
  abiword/repos/extra-x86_64/abiword-3.0.0-librevenge.patch
  abiword/repos/extra-x86_64/abiword-3.0.1-libwps-0.4.patch
  abiword/repos/extra-x86_64/aiksaurus-plugin.m4
  abiword/repos/extra-x86_64/command-plugin.m4
  abiword/repos/extra-x86_64/enchant-2.1.patch
  abiword/repos/extra-x86_64/python-override.patch

+
 PKGBUILD   |  175 +-
 abiword-3.0.0-librevenge.patch | 2372 +++
 abiword-3.0.1-libwps-0.4.patch |   82 -
 aiksaurus-plugin.m4|   92 -
 boost-asio.patch   |  164 ++
 command-plugin.m4  |   94 -
 enchant-2.1.patch  |   58 
 python-override.patch  |   62 -
 8 files changed, 1633 insertions(+), 1466 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-19 07:33:52 UTC (rev 386025)
+++ PKGBUILD2020-05-19 07:35:02 UTC (rev 386026)
@@ -1,86 +0,0 @@
-# Maintainer: Jan de Groot 
-# Contributor: Giovanni Scafora 
-# Contributor: Maël Lavault 
-
-pkgname=abiword
-pkgver=3.0.4
-pkgrel=1
-pkgdesc='Fully-featured word processor'
-arch=('x86_64')
-license=('GPL')
-url='https://www.abisource.com'
-depends=('fribidi' 'wv' 'goffice' 'librsvg' 'enchant' 'desktop-file-utils'
- 'redland' 'libical' 'gtk-update-icon-cache' 'loudmouth' 'libwpg' 
'libwps' 'libwmf' 'link-grammar' 
- 'gtkmathview' 'aiksaurus' 'libxslt' 'libsoup' 'libots' 'libgsf' 
'psiconv')
-makedepends=('pkgconfig' 'asio' 'boost' 'gobject-introspection' 'libwpd' 
'libwps' 'python2-gobject' 'python-gobject' 'autoconf-archive')
-conflicts=('abiword-plugins')
-replaces=('abiword-plugins')
-options=('!makeflags')
-source=(https://www.abisource.com/downloads/$pkgname/$pkgver/source/$pkgname-$pkgver.tar.gz{,.asc}
-abiword-3.0.0-librevenge.patch
-   abiword-3.0.1-libwps-0.4.patch
-aiksaurus-plugin.m4
-command-plugin.m4
-python-override.patch
-enchant-2.1.patch)
-sha256sums=('e93096cb192e5bc19d62e180fc5eda643206465315a710113ae5036bc2a1a5d7'
-'SKIP'
-'77b52a3722096cec3bfbe4fff3802f51b6c9e0ff7aaa30028c29825fd4e6a65f'
-'f1375b2ab7af2959717cba0259ba546c8e75ef849e84263bdc253019e849cb2a'
-'5f80a2f94f9929cdba9809c5e1a87cd5d537a2518bb879bfb9eab51a71c8dac1'
-'2f26826e9d59d80dacd0dae4aceb815804eaa75954e47507a0897794f33e45be'
-'dba1e3265cd42589f17b41fea1a39c8aa4b83c7203b9d5944b578d0ff9c858be'
-'444dc2aadea3c80310a509b690097541573f6d2652c573d04da66a0f385fcfb2')
-validpgpkeys=('6C44DB3E0BF3EAF5B433239A5FEE05E6A56E15A3') # Hubert Figuiere 

-
-prepare() {
-  cd $pkgname-$pkgver
-
-  # fix build with librevenge based import filters
-  patch -Np0 -i ../abiword-3.0.0-librevenge.patch
-
-  # Fix libwpd 0.4 detection
-  patch -Np1 -i ../abiword-3.0.1-libwps-0.4.patch
-
-  # Fix python override code to work with Python 3.x
-  patch -Np1 -i ../python-override.patch
-
-  # Replace deprecated enchant functions
-  patch -Np1 -i ../enchant-2.1.patch
-
-  # Install missing m4 file
-  install -m644 ../aiksaurus-plugin.m4 plugins/aiksaurus/plugin.m4
-  install -m644 ../command-plugin.m4 plugins/command/plugin.m4
-
-  # Generate m4 file for configure
-  find plugins -name plugin.m4 | xargs cat > plugin-configure.m4
-
-  # enchant-2 naming change
-  sed -i 's/enchant >=/enchant-2 >=/' configure.ac
-
-  libtoolize --force
-  autoreconf -fi
-}
-
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr \
---enable-shared \
---disable-static \
---enable-clipart \
---enable-templates \
---enable-plugins \
---enable-introspection
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-
-  cd src/gi-overrides
-  sed -i 's/python -c/python2 -c/' Makefile
-  make DESTDIR="$pkgdir" PYTHON=python2 install
-}

Copied

[arch-commits] Commit in abiword/trunk (PKGBUILD boost-asio.patch)

2020-05-19 Thread Allan McRae via arch-commits
Date: Tuesday, May 19, 2020 @ 07:33:52
  Author: allan
Revision: 386025

upgpkg: abiword 3.0.4-2: fix FTBFS

Added:
  abiword/trunk/boost-asio.patch
Modified:
  abiword/trunk/PKGBUILD

--+
 PKGBUILD |   11 ++-
 boost-asio.patch |  164 +
 2 files changed, 171 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-05-19 06:10:37 UTC (rev 386024)
+++ PKGBUILD2020-05-19 07:33:52 UTC (rev 386025)
@@ -4,7 +4,7 @@
 
 pkgname=abiword
 pkgver=3.0.4
-pkgrel=1
+pkgrel=2
 pkgdesc='Fully-featured word processor'
 arch=('x86_64')
 license=('GPL')
@@ -12,7 +12,7 @@
 depends=('fribidi' 'wv' 'goffice' 'librsvg' 'enchant' 'desktop-file-utils'
  'redland' 'libical' 'gtk-update-icon-cache' 'loudmouth' 'libwpg' 
'libwps' 'libwmf' 'link-grammar' 
  'gtkmathview' 'aiksaurus' 'libxslt' 'libsoup' 'libots' 'libgsf' 
'psiconv')
-makedepends=('pkgconfig' 'asio' 'boost' 'gobject-introspection' 'libwpd' 
'libwps' 'python2-gobject' 'python-gobject' 'autoconf-archive')
+makedepends=('pkgconfig' 'boost' 'gobject-introspection' 'libwpd' 'libwps' 
'python2-gobject' 'python-gobject' 'autoconf-archive')
 conflicts=('abiword-plugins')
 replaces=('abiword-plugins')
 options=('!makeflags')
@@ -22,7 +22,9 @@
 aiksaurus-plugin.m4
 command-plugin.m4
 python-override.patch
-enchant-2.1.patch)
+enchant-2.1.patch
+# 
https://github.com/AbiWord/abiword/commit/de5dc5fd94a5fe321791d44e88d209a4972264ba
+boost-asio.patch)  
 sha256sums=('e93096cb192e5bc19d62e180fc5eda643206465315a710113ae5036bc2a1a5d7'
 'SKIP'
 '77b52a3722096cec3bfbe4fff3802f51b6c9e0ff7aaa30028c29825fd4e6a65f'
@@ -30,7 +32,8 @@
 '5f80a2f94f9929cdba9809c5e1a87cd5d537a2518bb879bfb9eab51a71c8dac1'
 '2f26826e9d59d80dacd0dae4aceb815804eaa75954e47507a0897794f33e45be'
 'dba1e3265cd42589f17b41fea1a39c8aa4b83c7203b9d5944b578d0ff9c858be'
-'444dc2aadea3c80310a509b690097541573f6d2652c573d04da66a0f385fcfb2')
+'444dc2aadea3c80310a509b690097541573f6d2652c573d04da66a0f385fcfb2'
+'3d119595c8080f90570ce09e02d6765a0cb84b16f4cc51ef8eee4ff289c19e77')
 validpgpkeys=('6C44DB3E0BF3EAF5B433239A5FEE05E6A56E15A3') # Hubert Figuiere 

 
 prepare() {

Added: boost-asio.patch
===
--- boost-asio.patch(rev 0)
+++ boost-asio.patch2020-05-19 07:33:52 UTC (rev 386025)
@@ -0,0 +1,164 @@
+From de5dc5fd94a5fe321791d44e88d209a4972264ba Mon Sep 17 00:00:00 2001
+From: Hubert Figuiere 
+Date: Sun, 5 Feb 2017 02:52:37 +
+Subject: [PATCH] Bug 13839 - Detect boost::asio
+
+Patch by Adam Majer 
+
+git-svn-id: svn+ssh://svn.abisource.com/svnroot/abiword/trunk@35397 
bcba8976-2d24-0410-9c9c-aab3bd5fdfd6
+---
+ .../collab/backends/service/xp/AsyncWorker.h   |  7 ++-
+ .../backends/service/xp/RealmConnection.h  |  6 +-
+ .../collab/backends/service/xp/RealmProtocol.h |  6 +-
+ .../collab/backends/service/xp/tls_tunnel.h|  6 +-
+ .../collab/backends/tcp/xp/IOServerHandler.h   |  6 +-
+ plugins/collab/plugin.m4   | 18 +++---
+ 6 files changed, 37 insertions(+), 12 deletions(-)
+
+diff --git a/plugins/collab/backends/service/xp/AsyncWorker.h 
b/plugins/collab/backends/service/xp/AsyncWorker.h
+index ab0437c29f..2e527f9254 100644
+--- a/plugins/collab/backends/service/xp/AsyncWorker.h
 b/plugins/collab/backends/service/xp/AsyncWorker.h
+@@ -19,7 +19,12 @@
+ #ifndef __ASYNC_WORKER__
+ #define __ASYNC_WORKER__
+ 
+-#include 
++#if defined(HAVE_BOOST_ASIO_HPP)
++# include 
++#else
++# include 
++#endif
++
+ #include 
+ #include 
+ #include 
+diff --git a/plugins/collab/backends/service/xp/RealmConnection.h 
b/plugins/collab/backends/service/xp/RealmConnection.h
+index 7dc715548c..214b12316b 100644
+--- a/plugins/collab/backends/service/xp/RealmConnection.h
 b/plugins/collab/backends/service/xp/RealmConnection.h
+@@ -21,7 +21,11 @@
+ 
+ #include 
+ #include 
+-#include 
++#if defined(HAVE_BOOST_ASIO_HPP)
++# include 
++#else
++# include 
++#endif
+ #include 
+ #include 
+ #include "ut_types.h"
+diff --git a/plugins/collab/backends/service/xp/RealmProtocol.h 
b/plugins/collab/backends/service/xp/RealmProtocol.h
+index 772ad891dd..03fa536dea 100644
+--- a/plugins/collab/backends/service/xp/RealmProtocol.h
 b/plugins/collab/backends/service/xp/RealmProtocol.h
+@@ -9,7 +9,11 @@
+ #include 
+ #endif
+ #include 
+-#include 
++#if defined(HAVE_BOOST_ASIO_HPP)
++# include 
++#else
++# include 
++#endif
+ 
+ namespace realm {
+ 
+diff --git a/plugins/collab/backends/service/xp/tls_tunnel.h 
b/plugins/collab/backends/service/xp/tls_tunnel.h
+index ea07151c70..a78f7815c3 100644
+--- a/plugins/collab/backends/service/xp/tls_tunnel.h
 b/plugins/collab/

[arch-commits] Commit in efitools/repos/extra-x86_64 (PKGBUILD PKGBUILD)

2020-05-18 Thread Allan McRae via arch-commits
Date: Tuesday, May 19, 2020 @ 06:10:37
  Author: allan
Revision: 386024

archrelease: copy trunk to extra-x86_64

Added:
  efitools/repos/extra-x86_64/PKGBUILD
(from rev 386023, efitools/trunk/PKGBUILD)
Deleted:
  efitools/repos/extra-x86_64/PKGBUILD

--+
 PKGBUILD |   89 ++---
 1 file changed, 45 insertions(+), 44 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-19 06:10:22 UTC (rev 386023)
+++ PKGBUILD2020-05-19 06:10:37 UTC (rev 386024)
@@ -1,44 +0,0 @@
-# Maintainer: Tobias Powalowski 
-# Contributor: Mirco Tischler 
-# Contributor: Keshav Amburay <(the ddoott ridikulus ddoott rat) (aatt) 
(gemmaeiil) (ddoott) (ccoomm)>
-
-pkgname="efitools"
-pkgver=1.9.2
-pkgrel=1
-pkgdesc="Tools for manipulating UEFI secure boot platforms"
-url="http://git.kernel.org/cgit/linux/kernel/git/jejb/efitools.git";
-arch=('x86_64')
-replaces=('prebootloader')
-license=('GPL' 'LGPL2.1')
-options=('!strip' '!makeflags')
-makedepends=('gnu-efi-libs' 'help2man' 'sbsigntools' 'perl-file-slurp' 'git')
-depends=('openssl')
-_commit=392836a46ce3c92b55dc88a1aebbcfdfc5dcddce # master
-source=("git+https://git.kernel.org/pub/scm/linux/kernel/git/jejb/$pkgname.git#commit=$_commit";)
-md5sums=('SKIP')
-
-pkgver() {
-   cd "${pkgname}"
-   echo "$(git describe --tags)" | sed -e 's|-|\.|g' -e 's|^v||g'
-}
-
-prepare() {
-   cd "${pkgname}"
-   git clean -x -d -f
-   sed -i "s/-O2/${CFLAGS} -Wno-pointer-sign/" Make.rules
-}
-
-build() {
-   cd "${pkgname}"
-   # fix PreLoader.efi building on x86_64 #49314
-   export ARCH="${CARCH}"
-   make
-}
-
-package() {
-   # http://www.rodsbooks.com/efi-bootloaders/secureboot.html#prebootloader
-   # http://blog.hansenpartnership.com/uefi-secure-boot/
-   # 
http://blog.hansenpartnership.com/linux-foundation-secure-boot-system-released
-   cd "${pkgname}"
-   make DESTDIR="${pkgdir}" install
-}

Copied: efitools/repos/extra-x86_64/PKGBUILD (from rev 386023, 
efitools/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-19 06:10:37 UTC (rev 386024)
@@ -0,0 +1,45 @@
+# Maintainer: Tobias Powalowski 
+# Contributor: Mirco Tischler 
+# Contributor: Keshav Amburay <(the ddoott ridikulus ddoott rat) (aatt) 
(gemmaeiil) (ddoott) (ccoomm)>
+
+pkgname="efitools"
+pkgver=1.9.2
+pkgrel=2
+pkgdesc="Tools for manipulating UEFI secure boot platforms"
+url="https://git.kernel.org/cgit/linux/kernel/git/jejb/efitools.git";
+arch=('x86_64')
+replaces=('prebootloader')
+license=('GPL' 'LGPL2.1')
+options=('!strip' '!makeflags')
+makedepends=('gnu-efi-libs' 'help2man' 'sbsigntools' 'perl-file-slurp' 'git')
+depends=('openssl')
+_commit=392836a46ce3c92b55dc88a1aebbcfdfc5dcddce # master
+source=("git+https://git.kernel.org/pub/scm/linux/kernel/git/jejb/$pkgname.git#commit=$_commit";)
+md5sums=('SKIP')
+
+pkgver() {
+   cd "${pkgname}"
+   echo "$(git describe --tags)" | sed -e 's|-|\.|g' -e 's|^v||g'
+}
+
+prepare() {
+   cd "${pkgname}"
+   git clean -x -d -f
+   sed -i "s/-O2/${CFLAGS} -Wno-pointer-sign/" Make.rules
+   sed -i "s/EFI_WARN_UNKOWN_GLYPH/EFI_WARN_UNKNOWN_GLYPH/" lib/console.c
+}
+
+build() {
+   cd "${pkgname}"
+   # fix PreLoader.efi building on x86_64 #49314
+   export ARCH="${CARCH}"
+   make
+}
+
+package() {
+   # http://www.rodsbooks.com/efi-bootloaders/secureboot.html#prebootloader
+   # http://blog.hansenpartnership.com/uefi-secure-boot/
+   # 
http://blog.hansenpartnership.com/linux-foundation-secure-boot-system-released
+   cd "${pkgname}"
+   make DESTDIR="${pkgdir}" install
+}


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

2020-05-18 Thread Allan McRae via arch-commits
Date: Tuesday, May 19, 2020 @ 06:10:22
  Author: allan
Revision: 386023

upgpkg: efitools 1.9.2-2: FTBFS fix

Modified:
  efitools/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-05-19 06:08:39 UTC (rev 386022)
+++ PKGBUILD2020-05-19 06:10:22 UTC (rev 386023)
@@ -4,7 +4,7 @@
 
 pkgname="efitools"
 pkgver=1.9.2
-pkgrel=1
+pkgrel=2
 pkgdesc="Tools for manipulating UEFI secure boot platforms"
 url="https://git.kernel.org/cgit/linux/kernel/git/jejb/efitools.git";
 arch=('x86_64')
@@ -26,6 +26,7 @@
cd "${pkgname}"
git clean -x -d -f
sed -i "s/-O2/${CFLAGS} -Wno-pointer-sign/" Make.rules
+   sed -i "s/EFI_WARN_UNKOWN_GLYPH/EFI_WARN_UNKNOWN_GLYPH/" lib/console.c
 }
 
 build() {


[arch-commits] Commit in libfreehand/repos/extra-x86_64 (3 files)

2020-05-18 Thread Allan McRae via arch-commits
Date: Tuesday, May 19, 2020 @ 04:40:09
  Author: allan
Revision: 386021

archrelease: copy trunk to extra-x86_64

Added:
  libfreehand/repos/extra-x86_64/PKGBUILD
(from rev 386020, libfreehand/trunk/PKGBUILD)
  libfreehand/repos/extra-x86_64/libfreehand-0.1.2-icu-fix.patch
(from rev 386020, libfreehand/trunk/libfreehand-0.1.2-icu-fix.patch)
Deleted:
  libfreehand/repos/extra-x86_64/PKGBUILD

-+
 PKGBUILD|   65 +-
 libfreehand-0.1.2-icu-fix.patch |   29 
 2 files changed, 65 insertions(+), 29 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-19 04:39:50 UTC (rev 386020)
+++ PKGBUILD2020-05-19 04:40:09 UTC (rev 386021)
@@ -1,29 +0,0 @@
-# Maintainer: AndyRTR 
-
-pkgname=libfreehand
-pkgver=0.1.2
-pkgrel=2
-pkgdesc="a library for import of Aldus/Macromedia/Adobe FreeHand documents"
-arch=('x86_64')
-url="https://wiki.documentfoundation.org/DLP/Libraries/libfreehand";
-license=('MPL2')
-depends=('librevenge' 'lcms2')
-makedepends=('boost' 'cppunit' 'gperf' 'doxygen')
-source=("https://dev-www.libreoffice.org/src/libfreehand/$pkgname-$pkgver.tar.xz";)
-sha256sums=('0e422d1564a6dbf22a9af598535425271e583514c0f7ba7d9091676420de34ac')
-
-build() {
-   cd "$pkgname-$pkgver"
-   ./configure --prefix=/usr --disable-werror
-   make
-}
-
-check() {
-   cd "$pkgname-$pkgver"
-   make check
-}
-
-package() {
-   cd "$pkgname-$pkgver"
-   make DESTDIR="$pkgdir/" install
-}

Copied: libfreehand/repos/extra-x86_64/PKGBUILD (from rev 386020, 
libfreehand/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-19 04:40:09 UTC (rev 386021)
@@ -0,0 +1,36 @@
+# Maintainer: AndyRTR 
+
+pkgname=libfreehand
+pkgver=0.1.2
+pkgrel=3
+pkgdesc="a library for import of Aldus/Macromedia/Adobe FreeHand documents"
+arch=('x86_64')
+url="https://wiki.documentfoundation.org/DLP/Libraries/libfreehand";
+license=('MPL2')
+depends=('librevenge' 'lcms2')
+makedepends=('boost' 'cppunit' 'gperf' 'doxygen')
+source=("https://dev-www.libreoffice.org/src/libfreehand/$pkgname-$pkgver.tar.xz";
+'libfreehand-0.1.2-icu-fix.patch')
+sha256sums=('0e422d1564a6dbf22a9af598535425271e583514c0f7ba7d9091676420de34ac'
+'11b5b5fcbb4f427486e83ee042cd3f2b030bcf8238f5d1925942416067d0254b')
+
+prepare() {
+   cd "$pkgname-$pkgver"
+   patch -p1 -i $srcdir/libfreehand-0.1.2-icu-fix.patch
+}
+
+build() {
+   cd "$pkgname-$pkgver"
+   ./configure --prefix=/usr --disable-werror
+   make
+}
+
+check() {
+   cd "$pkgname-$pkgver"
+   make check
+}
+
+package() {
+   cd "$pkgname-$pkgver"
+   make DESTDIR="$pkgdir/" install
+}

Copied: libfreehand/repos/extra-x86_64/libfreehand-0.1.2-icu-fix.patch (from 
rev 386020, libfreehand/trunk/libfreehand-0.1.2-icu-fix.patch)
===
--- libfreehand-0.1.2-icu-fix.patch (rev 0)
+++ libfreehand-0.1.2-icu-fix.patch 2020-05-19 04:40:09 UTC (rev 386021)
@@ -0,0 +1,29 @@
+From af3197f795625f5188602073205a34369698b6df Mon Sep 17 00:00:00 2001
+From: Heiko Becker 
+Date: Fri, 4 Oct 2019 01:46:12 +0200
+Subject: [PATCH] Add missing semicolon to fix build with icu 65.1
+
+Change-Id: I7a0b0d600e9f7770245a7485813a944bfac4f088
+Reviewed-on: https://gerrit.libreoffice.org/80224
+Reviewed-by: Miklos Vajna 
+Tested-by: Miklos Vajna 
+---
+ src/lib/libfreehand_utils.cpp | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/src/lib/libfreehand_utils.cpp b/src/lib/libfreehand_utils.cpp
+index 439c457..32f23e0 100644
+--- a/src/lib/libfreehand_utils.cpp
 b/src/lib/libfreehand_utils.cpp
+@@ -162,7 +162,7 @@ void libfreehand::_appendUTF16(librevenge::RVNGString 
&text, std::vector

[arch-commits] Commit in libfreehand/trunk (PKGBUILD libfreehand-0.1.2-icu-fix.patch)

2020-05-18 Thread Allan McRae via arch-commits
Date: Tuesday, May 19, 2020 @ 04:39:50
  Author: allan
Revision: 386020

upgpkg: libfreehand 0.1.2-3: FTBFS fix

Added:
  libfreehand/trunk/libfreehand-0.1.2-icu-fix.patch
Modified:
  libfreehand/trunk/PKGBUILD

-+
 PKGBUILD|   13 ++---
 libfreehand-0.1.2-icu-fix.patch |   29 +
 2 files changed, 39 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-05-19 01:33:14 UTC (rev 386019)
+++ PKGBUILD2020-05-19 04:39:50 UTC (rev 386020)
@@ -2,7 +2,7 @@
 
 pkgname=libfreehand
 pkgver=0.1.2
-pkgrel=2
+pkgrel=3
 pkgdesc="a library for import of Aldus/Macromedia/Adobe FreeHand documents"
 arch=('x86_64')
 url="https://wiki.documentfoundation.org/DLP/Libraries/libfreehand";
@@ -9,9 +9,16 @@
 license=('MPL2')
 depends=('librevenge' 'lcms2')
 makedepends=('boost' 'cppunit' 'gperf' 'doxygen')
-source=("https://dev-www.libreoffice.org/src/libfreehand/$pkgname-$pkgver.tar.xz";)
-sha256sums=('0e422d1564a6dbf22a9af598535425271e583514c0f7ba7d9091676420de34ac')
+source=("https://dev-www.libreoffice.org/src/libfreehand/$pkgname-$pkgver.tar.xz";
+'libfreehand-0.1.2-icu-fix.patch')
+sha256sums=('0e422d1564a6dbf22a9af598535425271e583514c0f7ba7d9091676420de34ac'
+'11b5b5fcbb4f427486e83ee042cd3f2b030bcf8238f5d1925942416067d0254b')
 
+prepare() {
+   cd "$pkgname-$pkgver"
+   patch -p1 -i $srcdir/libfreehand-0.1.2-icu-fix.patch
+}
+
 build() {
cd "$pkgname-$pkgver"
./configure --prefix=/usr --disable-werror

Added: libfreehand-0.1.2-icu-fix.patch
===
--- libfreehand-0.1.2-icu-fix.patch (rev 0)
+++ libfreehand-0.1.2-icu-fix.patch 2020-05-19 04:39:50 UTC (rev 386020)
@@ -0,0 +1,29 @@
+From af3197f795625f5188602073205a34369698b6df Mon Sep 17 00:00:00 2001
+From: Heiko Becker 
+Date: Fri, 4 Oct 2019 01:46:12 +0200
+Subject: [PATCH] Add missing semicolon to fix build with icu 65.1
+
+Change-Id: I7a0b0d600e9f7770245a7485813a944bfac4f088
+Reviewed-on: https://gerrit.libreoffice.org/80224
+Reviewed-by: Miklos Vajna 
+Tested-by: Miklos Vajna 
+---
+ src/lib/libfreehand_utils.cpp | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/src/lib/libfreehand_utils.cpp b/src/lib/libfreehand_utils.cpp
+index 439c457..32f23e0 100644
+--- a/src/lib/libfreehand_utils.cpp
 b/src/lib/libfreehand_utils.cpp
+@@ -162,7 +162,7 @@ void libfreehand::_appendUTF16(librevenge::RVNGString 
&text, std::vector

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

2020-05-14 Thread Allan McRae via arch-commits
Date: Friday, May 15, 2020 @ 02:48:23
  Author: allan
Revision: 383461

upgpkg: xorg-xvinfo 1.1.4-2: rebuild to fix reproducibility

Modified:
  xorg-xvinfo/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-05-15 02:03:35 UTC (rev 383460)
+++ PKGBUILD2020-05-15 02:48:23 UTC (rev 383461)
@@ -2,7 +2,7 @@
 
 pkgname=xorg-xvinfo
 pkgver=1.1.4
-pkgrel=1
+pkgrel=2
 pkgdesc="Prints out the capabilities of any video adaptors associated with the 
display that are accessible through the X-Video extension"
 arch=('x86_64')
 url="https://xorg.freedesktop.org/";


[arch-commits] Commit in xorg-xvinfo/repos/extra-x86_64 (PKGBUILD PKGBUILD)

2020-05-14 Thread Allan McRae via arch-commits
Date: Friday, May 15, 2020 @ 02:48:46
  Author: allan
Revision: 383462

archrelease: copy trunk to extra-x86_64

Added:
  xorg-xvinfo/repos/extra-x86_64/PKGBUILD
(from rev 383461, xorg-xvinfo/trunk/PKGBUILD)
Deleted:
  xorg-xvinfo/repos/extra-x86_64/PKGBUILD

--+
 PKGBUILD |   56 
 1 file changed, 28 insertions(+), 28 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-15 02:48:23 UTC (rev 383461)
+++ PKGBUILD2020-05-15 02:48:46 UTC (rev 383462)
@@ -1,28 +0,0 @@
-# Maintainer: Jan de Groot 
-
-pkgname=xorg-xvinfo
-pkgver=1.1.4
-pkgrel=1
-pkgdesc="Prints out the capabilities of any video adaptors associated with the 
display that are accessible through the X-Video extension"
-arch=('x86_64')
-url="https://xorg.freedesktop.org/";
-license=('custom')
-depends=('libx11' 'libxv')
-makedepends=('xorg-util-macros')
-groups=('xorg-apps' 'xorg')
-source=(https://xorg.freedesktop.org/archive/individual/app/xvinfo-${pkgver}.tar.bz2{,.sig})
-sha512sums=('85e1f936c5c826f0fdde3670bd77d5cde8641c6e8e7849e42142e91b5aa01d7e0e60d2b064eb6fef4f5666321813ca2dc9f9656756ccbe6dcda37b119ee8a63e'
-'SKIP')
-validpgpkeys=('4A193C06D35E7C670FA4EF0BA2FB9E081F2D130E') #Alan Coopersmith 

-
-build() {
-  cd xvinfo-${pkgver}
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd xvinfo-${pkgver}
-  make DESTDIR="${pkgdir}" install
-  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
-}

Copied: xorg-xvinfo/repos/extra-x86_64/PKGBUILD (from rev 383461, 
xorg-xvinfo/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-15 02:48:46 UTC (rev 383462)
@@ -0,0 +1,28 @@
+# Maintainer: Jan de Groot 
+
+pkgname=xorg-xvinfo
+pkgver=1.1.4
+pkgrel=2
+pkgdesc="Prints out the capabilities of any video adaptors associated with the 
display that are accessible through the X-Video extension"
+arch=('x86_64')
+url="https://xorg.freedesktop.org/";
+license=('custom')
+depends=('libx11' 'libxv')
+makedepends=('xorg-util-macros')
+groups=('xorg-apps' 'xorg')
+source=(https://xorg.freedesktop.org/archive/individual/app/xvinfo-${pkgver}.tar.bz2{,.sig})
+sha512sums=('85e1f936c5c826f0fdde3670bd77d5cde8641c6e8e7849e42142e91b5aa01d7e0e60d2b064eb6fef4f5666321813ca2dc9f9656756ccbe6dcda37b119ee8a63e'
+'SKIP')
+validpgpkeys=('4A193C06D35E7C670FA4EF0BA2FB9E081F2D130E') #Alan Coopersmith 

+
+build() {
+  cd xvinfo-${pkgver}
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd xvinfo-${pkgver}
+  make DESTDIR="${pkgdir}" install
+  install -Dm644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/COPYING"
+}


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

2020-05-14 Thread Allan McRae via arch-commits
Date: Friday, May 15, 2020 @ 02:03:18
  Author: allan
Revision: 383459

upgpkg: xorg-xwininfo 1.1.5-2: rebuild to fix reproducibility

Modified:
  xorg-xwininfo/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-05-15 01:18:34 UTC (rev 383458)
+++ PKGBUILD2020-05-15 02:03:18 UTC (rev 383459)
@@ -3,7 +3,7 @@
 
 pkgname=xorg-xwininfo
 pkgver=1.1.5
-pkgrel=1
+pkgrel=2
 pkgdesc="Command-line utility to print information about windows on an X 
server"
 arch=(x86_64)
 url="https://xorg.freedesktop.org/";


[arch-commits] Commit in xorg-xwininfo/repos/extra-x86_64 (PKGBUILD PKGBUILD)

2020-05-14 Thread Allan McRae via arch-commits
Date: Friday, May 15, 2020 @ 02:03:35
  Author: allan
Revision: 383460

archrelease: copy trunk to extra-x86_64

Added:
  xorg-xwininfo/repos/extra-x86_64/PKGBUILD
(from rev 383459, xorg-xwininfo/trunk/PKGBUILD)
Deleted:
  xorg-xwininfo/repos/extra-x86_64/PKGBUILD

--+
 PKGBUILD |   60 ++--
 1 file changed, 30 insertions(+), 30 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-15 02:03:18 UTC (rev 383459)
+++ PKGBUILD2020-05-15 02:03:35 UTC (rev 383460)
@@ -1,30 +0,0 @@
-# Maintainer: Andreas Radke 
-# Maintainer: Jan de Groot 
-
-pkgname=xorg-xwininfo
-pkgver=1.1.5
-pkgrel=1
-pkgdesc="Command-line utility to print information about windows on an X 
server"
-arch=(x86_64)
-url="https://xorg.freedesktop.org/";
-license=('custom')
-depends=('libxcb')
-makedepends=('xorg-util-macros' 'libx11')
-groups=('xorg-apps' 'xorg')
-source=(https://xorg.freedesktop.org/archive/individual/app/xwininfo-${pkgver}.tar.bz2{,.sig})
-sha512sums=('a3268bbafac94e589fdd47554a965910d40df7cc3d9c36c7c24fa4f5dd49615484d5916ccb41efca9cd4cf9d8981a4c60953b921220b3f4f57f9cce0e1a6'
-'SKIP')
-validpgpkeys=('4A193C06D35E7C670FA4EF0BA2FB9E081F2D130E') # "Alan Coopersmith 
"
-
-build() {
-  cd xwininfo-${pkgver}
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd xwininfo-${pkgver}
-  make DESTDIR="${pkgdir}" install
-  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
-  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
-}

Copied: xorg-xwininfo/repos/extra-x86_64/PKGBUILD (from rev 383459, 
xorg-xwininfo/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-15 02:03:35 UTC (rev 383460)
@@ -0,0 +1,30 @@
+# Maintainer: Andreas Radke 
+# Maintainer: Jan de Groot 
+
+pkgname=xorg-xwininfo
+pkgver=1.1.5
+pkgrel=2
+pkgdesc="Command-line utility to print information about windows on an X 
server"
+arch=(x86_64)
+url="https://xorg.freedesktop.org/";
+license=('custom')
+depends=('libxcb')
+makedepends=('xorg-util-macros' 'libx11')
+groups=('xorg-apps' 'xorg')
+source=(https://xorg.freedesktop.org/archive/individual/app/xwininfo-${pkgver}.tar.bz2{,.sig})
+sha512sums=('a3268bbafac94e589fdd47554a965910d40df7cc3d9c36c7c24fa4f5dd49615484d5916ccb41efca9cd4cf9d8981a4c60953b921220b3f4f57f9cce0e1a6'
+'SKIP')
+validpgpkeys=('4A193C06D35E7C670FA4EF0BA2FB9E081F2D130E') # "Alan Coopersmith 
"
+
+build() {
+  cd xwininfo-${pkgver}
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd xwininfo-${pkgver}
+  make DESTDIR="${pkgdir}" install
+  install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
+}


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

2020-05-14 Thread Allan McRae via arch-commits
Date: Friday, May 15, 2020 @ 01:18:18
  Author: allan
Revision: 383457

upgpkg: zvbi 0.2.35-4: rebuild to fix reproducibility

Modified:
  zvbi/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-05-14 20:15:59 UTC (rev 383456)
+++ PKGBUILD2020-05-15 01:18:18 UTC (rev 383457)
@@ -4,7 +4,7 @@
 
 pkgname=zvbi
 pkgver=0.2.35
-pkgrel=3
+pkgrel=4
 pkgdesc='VBI capture and decoding library'
 url='http://zapping.sourceforge.net/cgi-bin/view/ZVBI/WebHome'
 arch=('x86_64')


[arch-commits] Commit in zvbi/repos/extra-x86_64 (PKGBUILD PKGBUILD)

2020-05-14 Thread Allan McRae via arch-commits
Date: Friday, May 15, 2020 @ 01:18:34
  Author: allan
Revision: 383458

archrelease: copy trunk to extra-x86_64

Added:
  zvbi/repos/extra-x86_64/PKGBUILD
(from rev 383457, zvbi/trunk/PKGBUILD)
Deleted:
  zvbi/repos/extra-x86_64/PKGBUILD

--+
 PKGBUILD |   63 ++---
 1 file changed, 31 insertions(+), 32 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-15 01:18:18 UTC (rev 383457)
+++ PKGBUILD2020-05-15 01:18:34 UTC (rev 383458)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer: Maxime Gauduin 
-# Contributor: Alexander Baldeck 
-# Contributor: dorphell 
-
-pkgname=zvbi
-pkgver=0.2.35
-pkgrel=3
-pkgdesc='VBI capture and decoding library'
-url='http://zapping.sourceforge.net/cgi-bin/view/ZVBI/WebHome'
-arch=('x86_64')
-depends=('libpng' 'libx11')
-license=('GPL')
-source=("https://downloads.sourceforge.net/sourceforge/zapping/${pkgname}-${pkgver}.tar.bz2";)
-sha256sums=('fc883c34111a487c4a783f91b1b2bb5610d8d8e58dcba80c7ab31e67e4765318')
-
-build() {
-  cd zvbi-${pkgver}
-
-  ./configure \
---prefix='/usr' \
---sbindir='/usr/bin'
-  make
-}
-
-package() {
-  cd zvbi-${pkgver}
-
-  make DESTDIR="${pkgdir}" install
-}
-
-# vim: ts=2 sw=2 et:

Copied: zvbi/repos/extra-x86_64/PKGBUILD (from rev 383457, zvbi/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-15 01:18:34 UTC (rev 383458)
@@ -0,0 +1,31 @@
+# Maintainer: Maxime Gauduin 
+# Contributor: Alexander Baldeck 
+# Contributor: dorphell 
+
+pkgname=zvbi
+pkgver=0.2.35
+pkgrel=4
+pkgdesc='VBI capture and decoding library'
+url='http://zapping.sourceforge.net/cgi-bin/view/ZVBI/WebHome'
+arch=('x86_64')
+depends=('libpng' 'libx11')
+license=('GPL')
+source=("https://downloads.sourceforge.net/sourceforge/zapping/${pkgname}-${pkgver}.tar.bz2";)
+sha256sums=('fc883c34111a487c4a783f91b1b2bb5610d8d8e58dcba80c7ab31e67e4765318')
+
+build() {
+  cd zvbi-${pkgver}
+
+  ./configure \
+--prefix='/usr' \
+--sbindir='/usr/bin'
+  make
+}
+
+package() {
+  cd zvbi-${pkgver}
+
+  make DESTDIR="${pkgdir}" install
+}
+
+# vim: ts=2 sw=2 et:


[arch-commits] Commit in aalib/repos/extra-x86_64 (4 files)

2020-05-14 Thread Allan McRae via arch-commits
Date: Thursday, May 14, 2020 @ 14:37:07
  Author: allan
Revision: 383409

archrelease: copy trunk to extra-x86_64

Added:
  aalib/repos/extra-x86_64/PKGBUILD
(from rev 383407, aalib/trunk/PKGBUILD)
  aalib/repos/extra-x86_64/aclocal-fixes.patch
(from rev 383407, aalib/trunk/aclocal-fixes.patch)
Deleted:
  aalib/repos/extra-x86_64/PKGBUILD
  aalib/repos/extra-x86_64/aclocal-fixes.patch

-+
 PKGBUILD|   62 +-
 aclocal-fixes.patch |   22 -
 2 files changed, 42 insertions(+), 42 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-14 14:36:57 UTC (rev 383408)
+++ PKGBUILD2020-05-14 14:37:07 UTC (rev 383409)
@@ -1,31 +0,0 @@
-# Maintainer: Eric Bélanger 
-
-pkgname=aalib
-pkgver=1.4rc5
-pkgrel=13
-pkgdesc="A portable ASCII art graphic library"
-arch=('x86_64')
-url="http://aa-project.sourceforge.net/aalib/";
-license=('LGPL')
-depends=('gpm' 'libx11')
-makedepends=('libxt')
-source=(https://downloads.sourceforge.net/sourceforge/aa-project/${pkgname}-${pkgver}.tar.gz
-   aclocal-fixes.patch)
-sha1sums=('a23269e950a249d2ef93625837cace45ddbce03b'
-  '98d8c5a13672a8107945d694ff4520e0bc87d3e9')
-
-prepare() {
-  cd ${pkgname}-1.4.0
-  patch -p0 -i "${srcdir}/aclocal-fixes.patch"
-}
-
-build() {
-  cd ${pkgname}-1.4.0
-  ./configure --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info
-  make
-}
-
-package() {
-  cd ${pkgname}-1.4.0
-  make DESTDIR="${pkgdir}" install
-}

Copied: aalib/repos/extra-x86_64/PKGBUILD (from rev 383407, 
aalib/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-14 14:37:07 UTC (rev 383409)
@@ -0,0 +1,31 @@
+# Maintainer: Eric Bélanger 
+
+pkgname=aalib
+pkgver=1.4rc5
+pkgrel=14
+pkgdesc="A portable ASCII art graphic library"
+arch=('x86_64')
+url="http://aa-project.sourceforge.net/aalib/";
+license=('LGPL')
+depends=('gpm' 'libx11')
+makedepends=('libxt')
+source=(https://downloads.sourceforge.net/sourceforge/aa-project/${pkgname}-${pkgver}.tar.gz
+   aclocal-fixes.patch)
+sha1sums=('a23269e950a249d2ef93625837cace45ddbce03b'
+  '98d8c5a13672a8107945d694ff4520e0bc87d3e9')
+
+prepare() {
+  cd ${pkgname}-1.4.0
+  patch -p0 -i "${srcdir}/aclocal-fixes.patch"
+}
+
+build() {
+  cd ${pkgname}-1.4.0
+  ./configure --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info
+  make
+}
+
+package() {
+  cd ${pkgname}-1.4.0
+  make DESTDIR="${pkgdir}" install
+}

Deleted: aclocal-fixes.patch
===
--- aclocal-fixes.patch 2020-05-14 14:36:57 UTC (rev 383408)
+++ aclocal-fixes.patch 2020-05-14 14:37:07 UTC (rev 383409)
@@ -1,11 +0,0 @@
 aalib.m4.orig  2006-03-05 13:58:21.0 +
-+++ aalib.m4   2006-03-05 13:58:32.0 +
-@@ -9,7 +9,7 @@
- dnl AM_PATH_AALIB([MINIMUM-VERSION, [ACTION-IF-FOUND [, 
ACTION-IF-NOT-FOUND]]])
- dnl Test for AALIB, and define AALIB_CFLAGS and AALIB_LIBS
- dnl
--AC_DEFUN(AM_PATH_AALIB,
-+AC_DEFUN([AM_PATH_AALIB],
- [dnl 
- dnl Get the cflags and libraries from the aalib-config script
- dnl

Copied: aalib/repos/extra-x86_64/aclocal-fixes.patch (from rev 383407, 
aalib/trunk/aclocal-fixes.patch)
===
--- aclocal-fixes.patch (rev 0)
+++ aclocal-fixes.patch 2020-05-14 14:37:07 UTC (rev 383409)
@@ -0,0 +1,11 @@
+--- aalib.m4.orig  2006-03-05 13:58:21.0 +
 aalib.m4   2006-03-05 13:58:32.0 +
+@@ -9,7 +9,7 @@
+ dnl AM_PATH_AALIB([MINIMUM-VERSION, [ACTION-IF-FOUND [, 
ACTION-IF-NOT-FOUND]]])
+ dnl Test for AALIB, and define AALIB_CFLAGS and AALIB_LIBS
+ dnl
+-AC_DEFUN(AM_PATH_AALIB,
++AC_DEFUN([AM_PATH_AALIB],
+ [dnl 
+ dnl Get the cflags and libraries from the aalib-config script
+ dnl


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

2020-05-14 Thread Allan McRae via arch-commits
Date: Thursday, May 14, 2020 @ 14:36:42
  Author: allan
Revision: 383407

upgpkg: aalib 1.4rc5-14: rebuild to fix reproducibility

Modified:
  aalib/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-05-14 14:34:33 UTC (rev 383406)
+++ PKGBUILD2020-05-14 14:36:42 UTC (rev 383407)
@@ -2,7 +2,7 @@
 
 pkgname=aalib
 pkgver=1.4rc5
-pkgrel=13
+pkgrel=14
 pkgdesc="A portable ASCII art graphic library"
 arch=('x86_64')
 url="http://aa-project.sourceforge.net/aalib/";


[arch-commits] Commit in a52dec/repos/extra-x86_64 (6 files)

2020-05-14 Thread Allan McRae via arch-commits
Date: Thursday, May 14, 2020 @ 14:09:41
  Author: allan
Revision: 383401

archrelease: copy trunk to extra-x86_64

Added:
  a52dec/repos/extra-x86_64/PKGBUILD
(from rev 383400, a52dec/trunk/PKGBUILD)
  a52dec/repos/extra-x86_64/a52dec-0.7.4-build.patch
(from rev 383400, a52dec/trunk/a52dec-0.7.4-build.patch)
  a52dec/repos/extra-x86_64/stderr.patch
(from rev 383400, a52dec/trunk/stderr.patch)
Deleted:
  a52dec/repos/extra-x86_64/PKGBUILD
  a52dec/repos/extra-x86_64/a52dec-0.7.4-build.patch
  a52dec/repos/extra-x86_64/stderr.patch

--+
 PKGBUILD |   80 ++---
 a52dec-0.7.4-build.patch |   54 +++---
 stderr.patch |   34 +--
 3 files changed, 84 insertions(+), 84 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-14 14:09:16 UTC (rev 383400)
+++ PKGBUILD2020-05-14 14:09:41 UTC (rev 383401)
@@ -1,40 +0,0 @@
-# Maintainer: Jan de Groot 
-# Maintainer: Tom Gundersen 
-# Contributor: Thomas Baechler 
-# Contributor: Sarah Hay 
-
-pkgname=a52dec
-pkgver=0.7.4
-pkgrel=10
-pkgdesc="A free library for decoding ATSC A/52 streams"
-url="http://liba52.sourceforge.net/";
-arch=('x86_64')
-license=('GPL2')
-depends=('glibc')
-source=("http://liba52.sourceforge.net/files/${pkgname}-${pkgver}.tar.gz";
-'a52dec-0.7.4-build.patch'
-'stderr.patch')
-md5sums=('caa9f5bc44232dc8aeea773fea56be80'
- 'fa16f224a7dceb7613824380abef0052'
- '52f57e003259a24516eaab08b64ae703')
-
-prepare() {
-  cd "${pkgname}-${pkgver}"
-  patch -Np1 -i ../a52dec-0.7.4-build.patch
-  patch -Np1 -i ../stderr.patch
-  sed -i 's/AM_CONFIG_HEADER/AC_CONFIG_HEADERS/' configure.in
-  mv configure.in configure.ac
-  ./bootstrap
-}
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --enable-shared
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-  install -m644 liba52/a52_internal.h "${pkgdir}/usr/include/a52dec/"
-}

Copied: a52dec/repos/extra-x86_64/PKGBUILD (from rev 383400, 
a52dec/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-14 14:09:41 UTC (rev 383401)
@@ -0,0 +1,40 @@
+# Maintainer: Jan de Groot 
+# Maintainer: Tom Gundersen 
+# Contributor: Thomas Baechler 
+# Contributor: Sarah Hay 
+
+pkgname=a52dec
+pkgver=0.7.4
+pkgrel=11
+pkgdesc="A free library for decoding ATSC A/52 streams"
+url="http://liba52.sourceforge.net/";
+arch=('x86_64')
+license=('GPL2')
+depends=('glibc')
+source=("http://liba52.sourceforge.net/files/${pkgname}-${pkgver}.tar.gz";
+'a52dec-0.7.4-build.patch'
+'stderr.patch')
+md5sums=('caa9f5bc44232dc8aeea773fea56be80'
+ 'fa16f224a7dceb7613824380abef0052'
+ '52f57e003259a24516eaab08b64ae703')
+
+prepare() {
+  cd "${pkgname}-${pkgver}"
+  patch -Np1 -i ../a52dec-0.7.4-build.patch
+  patch -Np1 -i ../stderr.patch
+  sed -i 's/AM_CONFIG_HEADER/AC_CONFIG_HEADERS/' configure.in
+  mv configure.in configure.ac
+  ./bootstrap
+}
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --enable-shared
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+  install -m644 liba52/a52_internal.h "${pkgdir}/usr/include/a52dec/"
+}

Deleted: a52dec-0.7.4-build.patch
===
--- a52dec-0.7.4-build.patch2020-05-14 14:09:16 UTC (rev 383400)
+++ a52dec-0.7.4-build.patch2020-05-14 14:09:41 UTC (rev 383401)
@@ -1,27 +0,0 @@
-diff -Naur a52dec-0.7.4.orig/liba52/Makefile.am a52dec-0.7.4/liba52/Makefile.am
 a52dec-0.7.4.orig/liba52/Makefile.am   2002-01-27 20:36:48.0 
-0800
-+++ a52dec-0.7.4/liba52/Makefile.am2004-11-05 01:10:21.317401872 -0800
-@@ -1,4 +1,3 @@
--CFLAGS = @CFLAGS@ @LIBA52_CFLAGS@
- 
- lib_LTLIBRARIES = liba52.la
- 
-diff -Naur a52dec-0.7.4.orig/liba52/configure.incl 
a52dec-0.7.4/liba52/configure.incl
 a52dec-0.7.4.orig/liba52/configure.incl2002-01-27 20:36:48.0 
-0800
-+++ a52dec-0.7.4/liba52/configure.incl 2004-11-05 01:11:38.172672216 -0800
-@@ -2,7 +2,6 @@
- AC_SUBST([LIBA52_LIBS])
- 
- dnl avoid -fPIC when possible
--LIBA52_CFLAGS="$LIBA52_CFLAGS -prefer-non-pic"
- 
- AC_ARG_ENABLE([double],
- [  --enable-double use double-precision samples])
-diff -Naur a52dec-0.7.4.orig/src/Makefile.am a52dec-0.7.4/src/Makefile.am
 a52dec-0.7.4.orig/src/Makefile.am  2002-06-22 18:51:57.0 -0700
-+++ a52dec-0.7.4/src/Makefile.am   2004-11-05 01:10:21.320401375 -0800
-@@ -1,4 +1,3 @@
--CFLAGS = @A52DEC_CFLAGS@
- 
- bin_PROGRAMS = a52dec extract_a52
- a52dec_SOURCES = a52dec.c getopt.c gettimeofday.c

Copied: a52dec/repos/extra-x86_64/a52dec-0.7.4-build.patch (from rev 383400, 
a52dec/trunk/a52dec-0.7.4-build.patch

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

2020-05-14 Thread Allan McRae via arch-commits
Date: Thursday, May 14, 2020 @ 14:09:16
  Author: allan
Revision: 383400

upgpkg: a52dec 0.7.4-11: rebuild to fix reproducibility

Modified:
  a52dec/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-05-14 12:16:47 UTC (rev 383399)
+++ PKGBUILD2020-05-14 14:09:16 UTC (rev 383400)
@@ -5,7 +5,7 @@
 
 pkgname=a52dec
 pkgver=0.7.4
-pkgrel=10
+pkgrel=11
 pkgdesc="A free library for decoding ATSC A/52 streams"
 url="http://liba52.sourceforge.net/";
 arch=('x86_64')


[arch-commits] Commit in libcddb/repos/extra-x86_64 (PKGBUILD PKGBUILD)

2020-05-11 Thread Allan McRae via arch-commits
Date: Monday, May 11, 2020 @ 10:46:45
  Author: allan
Revision: 383189

archrelease: copy trunk to extra-x86_64

Added:
  libcddb/repos/extra-x86_64/PKGBUILD
(from rev 383188, libcddb/trunk/PKGBUILD)
Deleted:
  libcddb/repos/extra-x86_64/PKGBUILD

--+
 PKGBUILD |   48 
 1 file changed, 24 insertions(+), 24 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-11 10:46:28 UTC (rev 383188)
+++ PKGBUILD2020-05-11 10:46:45 UTC (rev 383189)
@@ -1,24 +0,0 @@
-# Maintainer: Hugo Doria 
-# Contributor: Sarah Hay 
-
-pkgname=libcddb
-pkgver=1.3.2
-pkgrel=5
-arch=('x86_64')
-pkgdesc="Library that implements the different protocols (CDDBP, HTTP, SMTP) 
to access data on a CDDB server (e.g. http://freedb.org)."
-url="https://sourceforge.net/projects/libcddb/";
-license=('LGPL')
-depends=('glibc')
-source=("https://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.bz2";)
-sha256sums=('35ce0ee1741ea38def304ddfe84a958901413aa829698357f0bee5bb8f0a223b')
-
-build() {
-  cd ${pkgname}-${pkgver}
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make DESTDIR="${pkgdir}" install
-}

Copied: libcddb/repos/extra-x86_64/PKGBUILD (from rev 383188, 
libcddb/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-11 10:46:45 UTC (rev 383189)
@@ -0,0 +1,24 @@
+# Maintainer: Hugo Doria 
+# Contributor: Sarah Hay 
+
+pkgname=libcddb
+pkgver=1.3.2
+pkgrel=6
+arch=('x86_64')
+pkgdesc="Library that implements the different protocols (CDDBP, HTTP, SMTP) 
to access data on a CDDB server (e.g. http://freedb.org)."
+url="https://sourceforge.net/projects/libcddb/";
+license=('LGPL')
+depends=('glibc')
+source=("https://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.bz2";)
+sha256sums=('35ce0ee1741ea38def304ddfe84a958901413aa829698357f0bee5bb8f0a223b')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+}


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

2020-05-11 Thread Allan McRae via arch-commits
Date: Monday, May 11, 2020 @ 10:46:28
  Author: allan
Revision: 383188

upgpkg: libcddb 1.3.2-6: .BUILDINFO rebuild

Modified:
  libcddb/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-05-11 10:43:35 UTC (rev 383187)
+++ PKGBUILD2020-05-11 10:46:28 UTC (rev 383188)
@@ -3,7 +3,7 @@
 
 pkgname=libcddb
 pkgver=1.3.2
-pkgrel=5
+pkgrel=6
 arch=('x86_64')
 pkgdesc="Library that implements the different protocols (CDDBP, HTTP, SMTP) 
to access data on a CDDB server (e.g. http://freedb.org)."
 url="https://sourceforge.net/projects/libcddb/";


[arch-commits] Commit in libexif/repos/extra-x86_64 (PKGBUILD PKGBUILD)

2020-05-11 Thread Allan McRae via arch-commits
Date: Monday, May 11, 2020 @ 10:43:35
  Author: allan
Revision: 383187

archrelease: copy trunk to extra-x86_64

Added:
  libexif/repos/extra-x86_64/PKGBUILD
(from rev 383186, libexif/trunk/PKGBUILD)
Deleted:
  libexif/repos/extra-x86_64/PKGBUILD

--+
 PKGBUILD |   49 -
 1 file changed, 24 insertions(+), 25 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-11 10:41:53 UTC (rev 383186)
+++ PKGBUILD2020-05-11 10:43:35 UTC (rev 383187)
@@ -1,25 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-# Contributor: Tobias Kieslich 
-
-pkgname=libexif
-pkgver=0.6.21
-pkgrel=3
-pkgdesc="A library to parse an EXIF file and read the data from those tags"
-arch=(i686 x86_64)
-license=('LGPL')
-url="https://sourceforge.net/projects/libexif";
-depends=('glibc')
-source=(https://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.bz2)
-sha256sums=('16cdaeb62eb3e6dfab2435f7d7bccd2f37438d21c5218ec4e58efa9157d4d41a')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-}

Copied: libexif/repos/extra-x86_64/PKGBUILD (from rev 383186, 
libexif/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-11 10:43:35 UTC (rev 383187)
@@ -0,0 +1,24 @@
+# Maintainer: Jan de Groot 
+# Contributor: Tobias Kieslich 
+
+pkgname=libexif
+pkgver=0.6.21
+pkgrel=3
+pkgdesc="A library to parse an EXIF file and read the data from those tags"
+arch=(x86_64)
+license=('LGPL')
+url="https://sourceforge.net/projects/libexif";
+depends=('glibc')
+source=(https://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.bz2)
+sha256sums=('16cdaeb62eb3e6dfab2435f7d7bccd2f37438d21c5218ec4e58efa9157d4d41a')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+}


[arch-commits] Commit in libcddb/repos/extra-x86_64 (PKGBUILD PKGBUILD)

2020-05-11 Thread Allan McRae via arch-commits
Date: Monday, May 11, 2020 @ 10:41:53
  Author: allan
Revision: 383186

archrelease: copy trunk to extra-x86_64

Added:
  libcddb/repos/extra-x86_64/PKGBUILD
(from rev 383185, libcddb/trunk/PKGBUILD)
Deleted:
  libcddb/repos/extra-x86_64/PKGBUILD

--+
 PKGBUILD |   49 -
 1 file changed, 24 insertions(+), 25 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-11 10:39:49 UTC (rev 383185)
+++ PKGBUILD2020-05-11 10:41:53 UTC (rev 383186)
@@ -1,25 +0,0 @@
-# $Id$
-# Maintainer: Hugo Doria 
-# Contributor: Sarah Hay 
-
-pkgname=libcddb
-pkgver=1.3.2
-pkgrel=5
-arch=('x86_64')
-pkgdesc="Library that implements the different protocols (CDDBP, HTTP, SMTP) 
to access data on a CDDB server (e.g. http://freedb.org)."
-url="https://sourceforge.net/projects/libcddb/";
-license=('LGPL')
-depends=('glibc')
-source=("https://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.bz2";)
-sha256sums=('35ce0ee1741ea38def304ddfe84a958901413aa829698357f0bee5bb8f0a223b')
-
-build() {
-  cd ${pkgname}-${pkgver}
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make DESTDIR="${pkgdir}" install
-}

Copied: libcddb/repos/extra-x86_64/PKGBUILD (from rev 383185, 
libcddb/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-11 10:41:53 UTC (rev 383186)
@@ -0,0 +1,24 @@
+# Maintainer: Hugo Doria 
+# Contributor: Sarah Hay 
+
+pkgname=libcddb
+pkgver=1.3.2
+pkgrel=5
+arch=('x86_64')
+pkgdesc="Library that implements the different protocols (CDDBP, HTTP, SMTP) 
to access data on a CDDB server (e.g. http://freedb.org)."
+url="https://sourceforge.net/projects/libcddb/";
+license=('LGPL')
+depends=('glibc')
+source=("https://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.bz2";)
+sha256sums=('35ce0ee1741ea38def304ddfe84a958901413aa829698357f0bee5bb8f0a223b')
+
+build() {
+  cd ${pkgname}-${pkgver}
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd ${pkgname}-${pkgver}
+  make DESTDIR="${pkgdir}" install
+}


[arch-commits] Commit in libavc1394/repos/extra-x86_64 (PKGBUILD PKGBUILD)

2020-05-11 Thread Allan McRae via arch-commits
Date: Monday, May 11, 2020 @ 10:39:49
  Author: allan
Revision: 383185

archrelease: copy trunk to extra-x86_64

Added:
  libavc1394/repos/extra-x86_64/PKGBUILD
(from rev 383184, libavc1394/trunk/PKGBUILD)
Deleted:
  libavc1394/repos/extra-x86_64/PKGBUILD

--+
 PKGBUILD |   49 -
 1 file changed, 24 insertions(+), 25 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-11 10:39:33 UTC (rev 383184)
+++ PKGBUILD2020-05-11 10:39:49 UTC (rev 383185)
@@ -1,25 +0,0 @@
-# $Id$
-# Maintainer: damir 
-# Contributor: Robert Emil Berge 
-
-pkgname=libavc1394
-pkgver=0.5.4
-pkgrel=3
-pkgdesc="A library to control A/V devices using the 1394ta AV/C commands."
-arch=("i686" "x86_64")
-url="https://sourceforge.net/projects/libavc1394/";
-license=('LGPL')
-depends=('libraw1394')
-source=("https://downloads.sourceforge.net/sourceforge/libavc1394/${pkgname}-${pkgver}.tar.gz";)
-sha256sums=('7cb1ff09506ae911ca9860bef4af08c2403f3e131f6c913a2cbd6ddca4215b53')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  ./configure --prefix=/usr --mandir=/usr/share/man --disable-static
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-}

Copied: libavc1394/repos/extra-x86_64/PKGBUILD (from rev 383184, 
libavc1394/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-11 10:39:49 UTC (rev 383185)
@@ -0,0 +1,24 @@
+# Maintainer: damir 
+# Contributor: Robert Emil Berge 
+
+pkgname=libavc1394
+pkgver=0.5.4
+pkgrel=4
+pkgdesc="A library to control A/V devices using the 1394ta AV/C commands."
+arch=("x86_64")
+url="https://sourceforge.net/projects/libavc1394/";
+license=('LGPL')
+depends=('libraw1394')
+source=("https://downloads.sourceforge.net/sourceforge/libavc1394/${pkgname}-${pkgver}.tar.gz";)
+sha256sums=('7cb1ff09506ae911ca9860bef4af08c2403f3e131f6c913a2cbd6ddca4215b53')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  ./configure --prefix=/usr --mandir=/usr/share/man --disable-static
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+}


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

2020-05-11 Thread Allan McRae via arch-commits
Date: Monday, May 11, 2020 @ 10:39:33
  Author: allan
Revision: 383184

upgpkg: libavc1394 0.5.4-4: .BUILDINFO rebuild

Modified:
  libavc1394/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-05-11 10:37:16 UTC (rev 383183)
+++ PKGBUILD2020-05-11 10:39:33 UTC (rev 383184)
@@ -3,7 +3,7 @@
 
 pkgname=libavc1394
 pkgver=0.5.4
-pkgrel=3
+pkgrel=4
 pkgdesc="A library to control A/V devices using the 1394ta AV/C commands."
 arch=("x86_64")
 url="https://sourceforge.net/projects/libavc1394/";


[arch-commits] Commit in libass/repos/extra-x86_64 (PKGBUILD PKGBUILD)

2020-05-11 Thread Allan McRae via arch-commits
Date: Monday, May 11, 2020 @ 10:37:16
  Author: allan
Revision: 383183

archrelease: copy trunk to extra-x86_64

Added:
  libass/repos/extra-x86_64/PKGBUILD
(from rev 383182, libass/trunk/PKGBUILD)
Deleted:
  libass/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-11 10:37:00 UTC (rev 383182)
+++ PKGBUILD2020-05-11 10:37:16 UTC (rev 383183)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Giovanni Scafora 
-# Maintainer: Maxime Gauduin 
-# Contributor: G_Syme 
-
-pkgname=libass
-pkgver=0.14.0
-pkgrel=1
-pkgdesc='A portable library for SSA/ASS subtitles rendering'
-arch=('x86_64')
-url='https://github.com/libass/libass/'
-license=('BSD')
-depends=('fontconfig' 'fribidi' 'glib2' 'glibc' 'harfbuzz'
- 'libfreetype.so')
-makedepends=('nasm')
-provides=('libass.so')
-source=("https://github.com/libass/libass/releases/download/${pkgver}/libass-${pkgver}.tar.xz";)
-sha256sums=('881f2382af48aead75b7a0e02e65d88c5ebd369fe46bc77d9270a94aa8fd38a2')
-
-build() {
-  cd libass-${pkgver}
-
-  ./configure \
---prefix='/usr' \
---enable-harfbuzz \
---enable-fontconfig
-  make
-}
-
-package() {
-  cd libass-${pkgver}
-
-  make DESTDIR="${pkgdir}" install
-  install -Dm 644 COPYING -t "${pkgdir}"/usr/share/licenses/libass/
-}
-
-# vim: ts=2 sw=2 et:

Copied: libass/repos/extra-x86_64/PKGBUILD (from rev 383182, 
libass/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-11 10:37:16 UTC (rev 383183)
@@ -0,0 +1,36 @@
+# Maintainer: Giovanni Scafora 
+# Maintainer: Maxime Gauduin 
+# Contributor: G_Syme 
+
+pkgname=libass
+pkgver=0.14.0
+pkgrel=2
+pkgdesc='A portable library for SSA/ASS subtitles rendering'
+arch=('x86_64')
+url='https://github.com/libass/libass/'
+license=('BSD')
+depends=('fontconfig' 'fribidi' 'glib2' 'glibc' 'harfbuzz'
+ 'libfreetype.so')
+makedepends=('nasm')
+provides=('libass.so')
+source=("https://github.com/libass/libass/releases/download/${pkgver}/libass-${pkgver}.tar.xz";)
+sha256sums=('881f2382af48aead75b7a0e02e65d88c5ebd369fe46bc77d9270a94aa8fd38a2')
+
+build() {
+  cd libass-${pkgver}
+
+  ./configure \
+--prefix='/usr' \
+--enable-harfbuzz \
+--enable-fontconfig
+  make
+}
+
+package() {
+  cd libass-${pkgver}
+
+  make DESTDIR="${pkgdir}" install
+  install -Dm 644 COPYING -t "${pkgdir}"/usr/share/licenses/libass/
+}
+
+# vim: ts=2 sw=2 et:


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

2020-05-11 Thread Allan McRae via arch-commits
Date: Monday, May 11, 2020 @ 10:37:00
  Author: allan
Revision: 383182

upgpkg: libass 0.14.0-2: .BUILDINFO rebuild

Modified:
  libass/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-05-11 10:35:11 UTC (rev 383181)
+++ PKGBUILD2020-05-11 10:37:00 UTC (rev 383182)
@@ -4,7 +4,7 @@
 
 pkgname=libass
 pkgver=0.14.0
-pkgrel=1
+pkgrel=2
 pkgdesc='A portable library for SSA/ASS subtitles rendering'
 arch=('x86_64')
 url='https://github.com/libass/libass/'


[arch-commits] Commit in libart-lgpl/repos/extra-x86_64 (PKGBUILD PKGBUILD)

2020-05-11 Thread Allan McRae via arch-commits
Date: Monday, May 11, 2020 @ 10:35:11
  Author: allan
Revision: 383181

archrelease: copy trunk to extra-x86_64

Added:
  libart-lgpl/repos/extra-x86_64/PKGBUILD
(from rev 383180, libart-lgpl/trunk/PKGBUILD)
Deleted:
  libart-lgpl/repos/extra-x86_64/PKGBUILD

--+
 PKGBUILD |   45 ++---
 1 file changed, 22 insertions(+), 23 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-11 10:34:49 UTC (rev 383180)
+++ PKGBUILD2020-05-11 10:35:11 UTC (rev 383181)
@@ -1,23 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-
-pkgname=libart-lgpl
-pkgver=2.3.21
-pkgrel=4
-pkgdesc="A library for high-performance 2D graphics"
-url="http://www.levien.com/libart/";
-arch=('i686' 'x86_64')
-license=('LGPL')
-source=(https://download.gnome.org/sources/libart_lgpl/2.3/libart_lgpl-${pkgver}.tar.bz2)
-sha256sums=('fdc11e74c10fc9ffe4188537e2b370c0abacca7d89021d4d303afdf7fd7476fa')
-
-build() {
-  cd "${srcdir}/libart_lgpl-${pkgver}"
-  ./configure --prefix=/usr --disable-static
-  make
-}
-
-package() {
-  cd "${srcdir}/libart_lgpl-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-}

Copied: libart-lgpl/repos/extra-x86_64/PKGBUILD (from rev 383180, 
libart-lgpl/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-11 10:35:11 UTC (rev 383181)
@@ -0,0 +1,22 @@
+# Maintainer: Jan de Groot 
+
+pkgname=libart-lgpl
+pkgver=2.3.21
+pkgrel=5
+pkgdesc="A library for high-performance 2D graphics"
+url="https://www.levien.com/libart/";
+arch=('x86_64')
+license=('LGPL')
+source=(https://download.gnome.org/sources/libart_lgpl/2.3/libart_lgpl-${pkgver}.tar.bz2)
+sha256sums=('fdc11e74c10fc9ffe4188537e2b370c0abacca7d89021d4d303afdf7fd7476fa')
+
+build() {
+  cd "${srcdir}/libart_lgpl-${pkgver}"
+  ./configure --prefix=/usr --disable-static
+  make
+}
+
+package() {
+  cd "${srcdir}/libart_lgpl-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+}


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

2020-05-11 Thread Allan McRae via arch-commits
Date: Monday, May 11, 2020 @ 10:34:49
  Author: allan
Revision: 383180

upgpkg: libart-lgpl 2.3.21-5: .BUILDINFO rebuild

Modified:
  libart-lgpl/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-05-11 10:32:35 UTC (rev 383179)
+++ PKGBUILD2020-05-11 10:34:49 UTC (rev 383180)
@@ -2,7 +2,7 @@
 
 pkgname=libart-lgpl
 pkgver=2.3.21
-pkgrel=4
+pkgrel=5
 pkgdesc="A library for high-performance 2D graphics"
 url="https://www.levien.com/libart/";
 arch=('x86_64')


[arch-commits] Commit in l-smash/repos/extra-x86_64 (PKGBUILD PKGBUILD)

2020-05-11 Thread Allan McRae via arch-commits
Date: Monday, May 11, 2020 @ 10:32:35
  Author: allan
Revision: 383179

archrelease: copy trunk to extra-x86_64

Added:
  l-smash/repos/extra-x86_64/PKGBUILD
(from rev 383178, l-smash/trunk/PKGBUILD)
Deleted:
  l-smash/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-11 10:32:19 UTC (rev 383178)
+++ PKGBUILD2020-05-11 10:32:35 UTC (rev 383179)
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer: Maxime Gauduin 
-# Contributor: Gustavo Alvarez 
-
-pkgname=l-smash
-pkgver=2.14.5
-pkgrel=1
-pkgdesc='MP4 muxer and other tools'
-arch=('x86_64')
-url='https://github.com/l-smash/l-smash'
-license=('custom')
-depends=('glibc')
-provides=('liblsmash.so')
-source=("l-smash-${pkgver}.tar.gz::https://github.com/l-smash/l-smash/archive/v${pkgver}.tar.gz";)
-sha256sums=('e6f7c31de684f4b89ee27e5cd6262bf96f2a5b117ba938d2d606cf6220f05935')
-
-build() {
-  cd l-smash-${pkgver}
-
-  ./configure \
---prefix='/usr' \
---enable-shared \
---disable-static \
---extra-cflags="$CFLAGS" \
---extra-ldflags="$LDFLAGS"
-  make
-}
-
-package() {
-  cd l-smash-${pkgver}
-
-  make DESTDIR="${pkgdir}" install
-
-  install -dm 755 "${pkgdir}"/usr/share/licenses/l-smash
-  install -m 644 LICENSE "${pkgdir}"/usr/share/licenses/l-smash/
-}
-
-# vim: ts=2 sw=2 et:

Copied: l-smash/repos/extra-x86_64/PKGBUILD (from rev 383178, 
l-smash/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-11 10:32:35 UTC (rev 383179)
@@ -0,0 +1,37 @@
+# Maintainer: Maxime Gauduin 
+# Contributor: Gustavo Alvarez 
+
+pkgname=l-smash
+pkgver=2.14.5
+pkgrel=2
+pkgdesc='MP4 muxer and other tools'
+arch=('x86_64')
+url='https://github.com/l-smash/l-smash'
+license=('custom')
+depends=('glibc')
+provides=('liblsmash.so')
+source=("l-smash-${pkgver}.tar.gz::https://github.com/l-smash/l-smash/archive/v${pkgver}.tar.gz";)
+sha256sums=('e6f7c31de684f4b89ee27e5cd6262bf96f2a5b117ba938d2d606cf6220f05935')
+
+build() {
+  cd l-smash-${pkgver}
+
+  ./configure \
+--prefix='/usr' \
+--enable-shared \
+--disable-static \
+--extra-cflags="$CFLAGS" \
+--extra-ldflags="$LDFLAGS"
+  make
+}
+
+package() {
+  cd l-smash-${pkgver}
+
+  make DESTDIR="${pkgdir}" install
+
+  install -dm 755 "${pkgdir}"/usr/share/licenses/l-smash
+  install -m 644 LICENSE "${pkgdir}"/usr/share/licenses/l-smash/
+}
+
+# vim: ts=2 sw=2 et:


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

2020-05-11 Thread Allan McRae via arch-commits
Date: Monday, May 11, 2020 @ 10:32:19
  Author: allan
Revision: 383178

upgpkg: l-smash 2.14.5-2: .BUILDINFO rebuild

Modified:
  l-smash/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-05-11 10:29:16 UTC (rev 383177)
+++ PKGBUILD2020-05-11 10:32:19 UTC (rev 383178)
@@ -3,7 +3,7 @@
 
 pkgname=l-smash
 pkgver=2.14.5
-pkgrel=1
+pkgrel=2
 pkgdesc='MP4 muxer and other tools'
 arch=('x86_64')
 url='https://github.com/l-smash/l-smash'


[arch-commits] Commit in hicolor-icon-theme/trunk (PKGBUILD)

2020-05-11 Thread Allan McRae via arch-commits
Date: Monday, May 11, 2020 @ 10:29:00
  Author: allan
Revision: 383176

upgpkg: hicolor-icon-theme 0.17-2: .BUILDINFO rebuild

Modified:
  hicolor-icon-theme/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-05-11 10:25:28 UTC (rev 383175)
+++ PKGBUILD2020-05-11 10:29:00 UTC (rev 383176)
@@ -2,7 +2,7 @@
 
 pkgname=hicolor-icon-theme
 pkgver=0.17
-pkgrel=1
+pkgrel=2
 pkgdesc="Freedesktop.org Hicolor icon theme"
 arch=('any')
 url="https://www.freedesktop.org/wiki/Software/icon-theme/";


[arch-commits] Commit in hicolor-icon-theme/repos/extra-any (PKGBUILD PKGBUILD)

2020-05-11 Thread Allan McRae via arch-commits
Date: Monday, May 11, 2020 @ 10:29:16
  Author: allan
Revision: 383177

archrelease: copy trunk to extra-any

Added:
  hicolor-icon-theme/repos/extra-any/PKGBUILD
(from rev 383176, hicolor-icon-theme/trunk/PKGBUILD)
Deleted:
  hicolor-icon-theme/repos/extra-any/PKGBUILD

--+
 PKGBUILD |   45 ++---
 1 file changed, 22 insertions(+), 23 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-11 10:29:00 UTC (rev 383176)
+++ PKGBUILD2020-05-11 10:29:16 UTC (rev 383177)
@@ -1,23 +0,0 @@
-# $Id$
-# Maintainer: Jan De Groot 
-
-pkgname=hicolor-icon-theme
-pkgver=0.17
-pkgrel=1
-pkgdesc="Freedesktop.org Hicolor icon theme"
-arch=('any')
-url="https://www.freedesktop.org/wiki/Software/icon-theme/";
-license=('GPL2')
-source=("https://icon-theme.freedesktop.org/releases/${pkgname}-${pkgver}.tar.xz";)
-sha256sums=('317484352271d18cbbcfac3868eab798d67fff1b8402e740baa6ff41d588a9d8')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="${pkgdir}" install
-}

Copied: hicolor-icon-theme/repos/extra-any/PKGBUILD (from rev 383176, 
hicolor-icon-theme/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-11 10:29:16 UTC (rev 383177)
@@ -0,0 +1,22 @@
+# Maintainer: Jan De Groot 
+
+pkgname=hicolor-icon-theme
+pkgver=0.17
+pkgrel=2
+pkgdesc="Freedesktop.org Hicolor icon theme"
+arch=('any')
+url="https://www.freedesktop.org/wiki/Software/icon-theme/";
+license=('GPL2')
+source=("https://icon-theme.freedesktop.org/releases/${pkgname}-${pkgver}.tar.xz";)
+sha256sums=('317484352271d18cbbcfac3868eab798d67fff1b8402e740baa6ff41d588a9d8')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="${pkgdir}" install
+}


[arch-commits] Commit in habak/repos/extra-x86_64 (PKGBUILD PKGBUILD)

2020-05-11 Thread Allan McRae via arch-commits
Date: Monday, May 11, 2020 @ 10:25:28
  Author: allan
Revision: 383175

archrelease: copy trunk to extra-x86_64

Added:
  habak/repos/extra-x86_64/PKGBUILD
(from rev 383174, habak/trunk/PKGBUILD)
Deleted:
  habak/repos/extra-x86_64/PKGBUILD

--+
 PKGBUILD |   61 ++---
 1 file changed, 30 insertions(+), 31 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-11 10:25:03 UTC (rev 383174)
+++ PKGBUILD2020-05-11 10:25:28 UTC (rev 383175)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Ronald van Haren 
-# Contributor: Simo Leone 
-
-pkgname=habak
-pkgver=0.2.5
-pkgrel=6
-pkgdesc="A background changing app"
-url="http://fvwm-crystal.org";
-license=('GPL2')
-depends=('imlib2')
-source=("http://archive.debian.org/debian/pool/main/h/habak/habak_$pkgver.orig.tar.gz";)
-arch=('x86_64')
-options=('!makeflags')
-md5sums=('6c1410a16a57d3483c41fad6ed2f6f49')
-
-prepare() {
-  cd "$srcdir/$pkgname-$pkgver"
-  sed -i 's|^\(LDFLAGS.*$\)|\1 -lX11|' src/Makefile
-}
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-  export LDFLAGS=${LDFLAGS/,--sort-common,--as-needed//}
-  make
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-  install -m755 -D habak "$pkgdir/usr/bin/habak"
-}

Copied: habak/repos/extra-x86_64/PKGBUILD (from rev 383174, 
habak/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-11 10:25:28 UTC (rev 383175)
@@ -0,0 +1,30 @@
+# Maintainer: Ronald van Haren 
+# Contributor: Simo Leone 
+
+pkgname=habak
+pkgver=0.2.5
+pkgrel=7
+pkgdesc="A background changing app"
+url="https://sourceforge.net/projects/fvwm-crystal/";
+license=('GPL2')
+depends=('imlib2')
+source=("http://archive.debian.org/debian/pool/main/h/habak/habak_$pkgver.orig.tar.gz";)
+arch=('x86_64')
+options=('!makeflags')
+md5sums=('6c1410a16a57d3483c41fad6ed2f6f49')
+
+prepare() {
+  cd "$srcdir/$pkgname-$pkgver"
+  sed -i 's|^\(LDFLAGS.*$\)|\1 -lX11|' src/Makefile
+}
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+  export LDFLAGS=${LDFLAGS/,--sort-common,--as-needed//}
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+  install -m755 -D habak "$pkgdir/usr/bin/habak"
+}


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

2020-05-11 Thread Allan McRae via arch-commits
Date: Monday, May 11, 2020 @ 10:25:03
  Author: allan
Revision: 383174

upgpkg: habak 0.2.5-7: .BUILDINFO rebuild

Modified:
  habak/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-05-11 10:20:56 UTC (rev 383173)
+++ PKGBUILD2020-05-11 10:25:03 UTC (rev 383174)
@@ -3,7 +3,7 @@
 
 pkgname=habak
 pkgver=0.2.5
-pkgrel=6
+pkgrel=7
 pkgdesc="A background changing app"
 url="https://sourceforge.net/projects/fvwm-crystal/";
 license=('GPL2')


[arch-commits] Commit in gnome-themes-extra/repos/extra-x86_64 (PKGBUILD PKGBUILD)

2020-05-11 Thread Allan McRae via arch-commits
Date: Monday, May 11, 2020 @ 10:20:56
  Author: allan
Revision: 383173

archrelease: copy trunk to extra-x86_64

Added:
  gnome-themes-extra/repos/extra-x86_64/PKGBUILD
(from rev 383172, gnome-themes-extra/trunk/PKGBUILD)
Deleted:
  gnome-themes-extra/repos/extra-x86_64/PKGBUILD

--+
 PKGBUILD |   91 ++---
 1 file changed, 45 insertions(+), 46 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-11 10:20:40 UTC (rev 383172)
+++ PKGBUILD2020-05-11 10:20:56 UTC (rev 383173)
@@ -1,46 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-
-pkgname=gnome-themes-extra
-pkgver=3.28
-pkgrel=1
-pkgdesc="Extra Themes for GNOME Applications"
-url="https://gitlab.gnome.org/GNOME/gnome-themes-extra";
-arch=(x86_64)
-license=(LGPL2.1)
-depends=(cantarell-fonts)
-makedepends=(intltool gtk2 gtk3 git)
-optdepends=('gtk-engines: HighContrast GTK2 theme')
-provides=("gnome-themes-standard=$pkgver")
-conflicts=(gnome-themes-standard)
-replaces=('gnome-themes-standard<3.27.92')
-groups=(gnome)
-_commit=9f581269243dd7e76b3eb8cec9cf4128ab17da9e  # tags/3.28^0
-source=("git+https://gitlab.gnome.org/GNOME/gnome-themes-extra.git#commit=$_commit";)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/-/+/g'
-}
-
-prepare() {
-  cd $pkgname
-  mkdir m4
-  intltoolize
-  autoreconf -fvi
-}
-
-build() {
-  cd $pkgname
-  ./configure --prefix=/usr
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-  make
-}
-
-package() {
-  cd $pkgname
-  make DESTDIR="$pkgdir" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: gnome-themes-extra/repos/extra-x86_64/PKGBUILD (from rev 383172, 
gnome-themes-extra/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-11 10:20:56 UTC (rev 383173)
@@ -0,0 +1,45 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+
+pkgname=gnome-themes-extra
+pkgver=3.28
+pkgrel=2
+pkgdesc="Extra Themes for GNOME Applications"
+url="https://gitlab.gnome.org/GNOME/gnome-themes-extra";
+arch=(x86_64)
+license=(LGPL2.1)
+depends=(cantarell-fonts)
+makedepends=(intltool gtk2 gtk3 git)
+optdepends=('gtk-engines: HighContrast GTK2 theme')
+provides=("gnome-themes-standard=$pkgver")
+conflicts=(gnome-themes-standard)
+replaces=('gnome-themes-standard<3.27.92')
+groups=(gnome)
+_commit=9f581269243dd7e76b3eb8cec9cf4128ab17da9e  # tags/3.28^0
+source=("git+https://gitlab.gnome.org/GNOME/gnome-themes-extra.git#commit=$_commit";)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+  mkdir m4
+  intltoolize
+  autoreconf -fvi
+}
+
+build() {
+  cd $pkgname
+  ./configure --prefix=/usr
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+package() {
+  cd $pkgname
+  make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:


[arch-commits] Commit in gnome-themes-extra/trunk (PKGBUILD)

2020-05-11 Thread Allan McRae via arch-commits
Date: Monday, May 11, 2020 @ 10:20:40
  Author: allan
Revision: 383172

upgpkg: gnome-themes-extra 3.28-2: .BUILDINFO rebuild

Modified:
  gnome-themes-extra/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-05-11 10:12:21 UTC (rev 383171)
+++ PKGBUILD2020-05-11 10:20:40 UTC (rev 383172)
@@ -2,7 +2,7 @@
 
 pkgname=gnome-themes-extra
 pkgver=3.28
-pkgrel=1
+pkgrel=2
 pkgdesc="Extra Themes for GNOME Applications"
 url="https://gitlab.gnome.org/GNOME/gnome-themes-extra";
 arch=(x86_64)


[arch-commits] Commit in gnome-system-log/trunk (PKGBUILD)

2020-05-11 Thread Allan McRae via arch-commits
Date: Monday, May 11, 2020 @ 10:12:03
  Author: allan
Revision: 383170

upgpkg: gnome-system-log 3.9.90+160+g4b07190-2: .BUILDINFO rebuild

Modified:
  gnome-system-log/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-05-11 09:30:09 UTC (rev 383169)
+++ PKGBUILD2020-05-11 10:12:03 UTC (rev 383170)
@@ -2,7 +2,7 @@
 
 pkgname=gnome-system-log
 pkgver=3.9.90+160+g4b07190
-pkgrel=1
+pkgrel=2
 pkgdesc="View your system logs"
 arch=(x86_64)
 url="https://git.gnome.org/browse/gnome-system-log";


[arch-commits] Commit in gnome-system-log/repos/extra-x86_64 (PKGBUILD PKGBUILD)

2020-05-11 Thread Allan McRae via arch-commits
Date: Monday, May 11, 2020 @ 10:12:21
  Author: allan
Revision: 383171

archrelease: copy trunk to extra-x86_64

Added:
  gnome-system-log/repos/extra-x86_64/PKGBUILD
(from rev 383170, gnome-system-log/trunk/PKGBUILD)
Deleted:
  gnome-system-log/repos/extra-x86_64/PKGBUILD

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

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-11 10:12:03 UTC (rev 383170)
+++ PKGBUILD2020-05-11 10:12:21 UTC (rev 383171)
@@ -1,38 +0,0 @@
-# $Id$
-# Contributor: Ionut Biru 
-
-pkgname=gnome-system-log
-pkgver=3.9.90+160+g4b07190
-pkgrel=1
-pkgdesc="View your system logs"
-arch=(i686 x86_64)
-url="https://git.gnome.org/browse/gnome-system-log";
-license=(GPL2)
-depends=(dconf gtk3)
-makedepends=(intltool itstool docbook-xsl git gnome-common)
-_commit=4b071909a0ca38a73a9cc5b287ffc2b0a744566b  # master
-source=("git+https://git.gnome.org/browse/gnome-system-log#commit=$_commit";)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/-/+/g'
-}
-
-prepare() {
-  cd $pkgname
-  NOCONFIGURE=1 ./autogen.sh
-}
-
-build() {
-  cd $pkgname
-  ./configure --prefix=/usr --disable-schemas-compile
-  make
-}
-
-package() {
-  cd $pkgname
-  make DESTDIR="$pkgdir" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: gnome-system-log/repos/extra-x86_64/PKGBUILD (from rev 383170, 
gnome-system-log/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-11 10:12:21 UTC (rev 383171)
@@ -0,0 +1,37 @@
+# Contributor: Ionut Biru 
+
+pkgname=gnome-system-log
+pkgver=3.9.90+160+g4b07190
+pkgrel=2
+pkgdesc="View your system logs"
+arch=(x86_64)
+url="https://git.gnome.org/browse/gnome-system-log";
+license=(GPL2)
+depends=(dconf gtk3)
+makedepends=(intltool itstool docbook-xsl git gnome-common)
+_commit=4b071909a0ca38a73a9cc5b287ffc2b0a744566b  # master
+source=("git+https://git.gnome.org/browse/gnome-system-log#commit=$_commit";)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+  cd $pkgname
+  ./configure --prefix=/usr --disable-schemas-compile
+  make
+}
+
+package() {
+  cd $pkgname
+  make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:


[arch-commits] Commit in gnome-nettool/repos/extra-x86_64 (PKGBUILD PKGBUILD)

2020-05-10 Thread Allan McRae via arch-commits
Date: Monday, May 11, 2020 @ 06:23:48
  Author: allan
Revision: 383160

archrelease: copy trunk to extra-x86_64

Added:
  gnome-nettool/repos/extra-x86_64/PKGBUILD
(from rev 383159, gnome-nettool/trunk/PKGBUILD)
Deleted:
  gnome-nettool/repos/extra-x86_64/PKGBUILD

--+
 PKGBUILD |   85 ++---
 1 file changed, 42 insertions(+), 43 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-11 06:23:22 UTC (rev 383159)
+++ PKGBUILD2020-05-11 06:23:48 UTC (rev 383160)
@@ -1,43 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) 
-# Contributor: Jan de Groot 
-# Contributor: Kritoke 
-
-pkgname=gnome-nettool
-pkgver=3.8.1+205+g8550eef
-pkgrel=2
-pkgdesc="Graphical interface for various networking tools"
-url="https://git.gnome.org/browse/gnome-nettool";
-arch=(x86_64)
-license=(GPL)
-depends=(gtk3 libgtop dnsutils iputils dconf whois)
-makedepends=(nmap net-tools git meson itstool)
-optdepends=('nmap: Port scanning'
-'net-tools: Network statistics')
-groups=(gnome-extra)
-_commit=8550eef45eb228fb4a4c816bde33ec24da0aa06e  # master
-source=("git+https://git.gnome.org/browse/gnome-nettool#commit=$_commit";)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/^gnome-nettool-//;s/-/./;s/-/./;s/-/+/g'
-}
-
-prepare() {
-  cd $pkgname
-}
-
-build() {
-  arch-meson $pkgname build
-  ninja -C build
-}
-
-check() {
-  cd build
-  meson test
-}
-
-package() {
-  DESTDIR="$pkgdir" ninja -C build install
-}

Copied: gnome-nettool/repos/extra-x86_64/PKGBUILD (from rev 383159, 
gnome-nettool/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-11 06:23:48 UTC (rev 383160)
@@ -0,0 +1,42 @@
+# Maintainer: Jan Alexander Steffens (heftig) 
+# Contributor: Jan de Groot 
+# Contributor: Kritoke 
+
+pkgname=gnome-nettool
+pkgver=3.8.1+205+g8550eef
+pkgrel=3
+pkgdesc="Graphical interface for various networking tools"
+url="https://git.gnome.org/browse/gnome-nettool";
+arch=(x86_64)
+license=(GPL)
+depends=(gtk3 libgtop ldns iputils dconf whois)
+makedepends=(nmap net-tools git meson itstool)
+optdepends=('nmap: Port scanning'
+'net-tools: Network statistics')
+groups=(gnome-extra)
+_commit=8550eef45eb228fb4a4c816bde33ec24da0aa06e  # master
+source=("git+https://git.gnome.org/browse/gnome-nettool#commit=$_commit";)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/^gnome-nettool-//;s/-/./;s/-/./;s/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+}
+
+build() {
+  arch-meson $pkgname build
+  ninja -C build
+}
+
+check() {
+  cd build
+  meson test
+}
+
+package() {
+  DESTDIR="$pkgdir" ninja -C build install
+}


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

2020-05-10 Thread Allan McRae via arch-commits
Date: Monday, May 11, 2020 @ 06:23:22
  Author: allan
Revision: 383159

upgpkg: gnome-nettool 3.8.1+205+g8550eef-3: .BUILDINFO rebuild

Modified:
  gnome-nettool/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-05-11 06:07:52 UTC (rev 383158)
+++ PKGBUILD2020-05-11 06:23:22 UTC (rev 383159)
@@ -4,7 +4,7 @@
 
 pkgname=gnome-nettool
 pkgver=3.8.1+205+g8550eef
-pkgrel=2
+pkgrel=3
 pkgdesc="Graphical interface for various networking tools"
 url="https://git.gnome.org/browse/gnome-nettool";
 arch=(x86_64)


[arch-commits] Commit in gmime/repos/extra-x86_64 (4 files)

2020-05-10 Thread Allan McRae via arch-commits
Date: Monday, May 11, 2020 @ 06:07:52
  Author: allan
Revision: 383158

archrelease: copy trunk to extra-x86_64

Added:
  gmime/repos/extra-x86_64/0001-Avoid-non-UTF-8-code.patch
(from rev 383157, gmime/trunk/0001-Avoid-non-UTF-8-code.patch)
  gmime/repos/extra-x86_64/PKGBUILD
(from rev 383157, gmime/trunk/PKGBUILD)
Deleted:
  gmime/repos/extra-x86_64/0001-Avoid-non-UTF-8-code.patch
  gmime/repos/extra-x86_64/PKGBUILD

-+
 0001-Avoid-non-UTF-8-code.patch |  220 +++---
 PKGBUILD|  105 --
 2 files changed, 162 insertions(+), 163 deletions(-)

Deleted: 0001-Avoid-non-UTF-8-code.patch
===
--- 0001-Avoid-non-UTF-8-code.patch 2020-05-11 06:04:33 UTC (rev 383157)
+++ 0001-Avoid-non-UTF-8-code.patch 2020-05-11 06:07:52 UTC (rev 383158)
@@ -1,110 +0,0 @@
-From 864f03034d9af34386cd854d105c9bddbc06ab3a Mon Sep 17 00:00:00 2001
-Message-Id: 
<864f03034d9af34386cd854d105c9bddbc06ab3a.1511519809.git.jan.steff...@gmail.com>
-From: "Jan Alexander Steffens (heftig)" 
-Date: Fri, 24 Nov 2017 11:36:33 +0100
-Subject: [PATCH] Avoid non-UTF-8 code
-

- gmime/gmime-filter-charset.c |  4 ++--
- gmime/gmime-iconv-utils.c|  4 ++--
- tests/test-iconv.c   | 48 ++--
- 3 files changed, 28 insertions(+), 28 deletions(-)
-
-diff --git a/gmime/gmime-filter-charset.c b/gmime/gmime-filter-charset.c
-index 052268e15c519af0..023823cf8a1251e9 100644
 a/gmime/gmime-filter-charset.c
-+++ b/gmime/gmime-filter-charset.c
-@@ -243,8 +243,8 @@ filter_complete (GMimeFilter *filter, char *in, size_t 
len, size_t prespace,
-   inleft--;
-   } else if (errno == EINVAL) {
-   /*
--   * EINVAL  An  incomplete  multibyte sequence 
has been encoun�
--   * tered in the input.
-+   * EINVAL  An  incomplete  multibyte sequence 
has been
-+   * encountered in the input.
-*
-* We assume that this can only happen if we've 
run out of
-* bytes for a multibyte sequence, if not we're 
in trouble.
-diff --git a/gmime/gmime-iconv-utils.c b/gmime/gmime-iconv-utils.c
-index 94ddf36e2554493e..a6a874e8218c08f6 100644
 a/gmime/gmime-iconv-utils.c
-+++ b/gmime/gmime-iconv-utils.c
-@@ -132,8 +132,8 @@ g_mime_iconv_strndup (iconv_t cd, const char *str, size_t 
n)
-   converted = iconv (cd, (char **) &inbuf, &inleft, &outbuf, 
&outleft);
-   if (converted != (size_t) -1 || errno == EINVAL) {
-   /*
--   * EINVAL  An  incomplete  multibyte sequence has been 
encoun�
--   * tered in the input.
-+   * EINVAL  An  incomplete  multibyte sequence has been
-+   * encountered in the input.
-*
-* We'll just have to ignore it...
-*/
-diff --git a/tests/test-iconv.c b/tests/test-iconv.c
-index c1eaab821963f703..8f04f918c8a73925 100644
 a/tests/test-iconv.c
-+++ b/tests/test-iconv.c
-@@ -111,36 +111,36 @@ struct {
-   const char *charset;
- } tests[] = {
-   { "Ətraflı", "utf-8" },/* az */
--  { "�� ��", "windows-cp1251" },  /* bg */
--  { "C�njuge", "iso-8859-1" },/* ca */
--  { "Avanceret s�gning", "iso-8859-1" },  /* da */
--  { "L�schen", "iso-8859-1" },/* de */
-+  { "\xc4\xee\xe1\xe0\xe2\xe8 \xd3\xf1\xeb\xf3\xe3\xe0", "windows-cp1251" 
},  /* bg */
-+  { "C\xf2njuge", "iso-8859-1" },/* ca */
-+  { "Avanceret s\xf8gning", "iso-8859-1" },  /* da */
-+  { "L\xf6schen", "iso-8859-1" },/* de */
-   { "some text", "iso-8859-1" },  /* en */
--  { "p�iv��", "iso-8859-15" },/* fi */
--  { "Modifi�", "iso-8859-1" },/* fr */
--  { "Tid�al", "iso-8859-1" }, /* ga */
--  { "F�brica", "iso-8859-1" },/* gl */
--  { "Szem-B�lyh�v�-A ", "iso-8859-2" },/* hu */
--  { "Non c'� corrispondenza", "iso-8859-1" }, /* it */
--  { "$(B>e5i8!:w(B", "euc-jp" },   /* ja */
--  { "$(C0m1^(B $(C0K;v(B", "euc-kr" },  /* ko */
--  { "I�sami paie�ka", "iso-8859-13" },/* lt */
--  { "Papla�in�t� Mekl��ana", "iso-8859-13" }, /* lv */
--  { "Kopi�ren", "iso-8859-15" },  /* nl */
--  { "�ydelagd S�k", "iso-8859-1" },   /* nn */
--  { "Avansert s�k", "iso-8859-1" },   /* no */
--  { "-B�r�d�a-A ksi-B��ki

[arch-commits] Commit in expect/repos/extra-x86_64 (PKGBUILD PKGBUILD)

2020-05-10 Thread Allan McRae via arch-commits
Date: Monday, May 11, 2020 @ 06:04:33
  Author: allan
Revision: 383157

archrelease: copy trunk to extra-x86_64

Added:
  expect/repos/extra-x86_64/PKGBUILD
(from rev 383156, expect/trunk/PKGBUILD)
Deleted:
  expect/repos/extra-x86_64/PKGBUILD

--+
 PKGBUILD |   61 ++---
 1 file changed, 30 insertions(+), 31 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-11 06:04:17 UTC (rev 383156)
+++ PKGBUILD2020-05-11 06:04:33 UTC (rev 383157)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer:  Bartłomiej Piotrowski 
-# Contributor: Allan McRae 
-
-pkgname=expect
-pkgver=5.45.4
-pkgrel=1
-pkgdesc='A tool for automating interactive applications'
-arch=(x86_64)
-url='http://www.nist.gov/el/msid/expect.cfm'
-license=(custom)
-depends=(tcl)
-source=(https://downloads.sourceforge.net/project/expect/Expect/$pkgver/expect${pkgver}.tar.gz)
-sha256sums=('49a7da83b0bdd9f46d04a04deec19c7767bb9a323e40c4781f89caf760b92c34')
-
-build() {
-  cd expect${pkgver}
-  ./configure --prefix=/usr --mandir=/usr/share/man 
-  make
-}
-
-check() {
-  cd expect${pkgver}
-  make test
-}
-
-package() {
-  cd expect${pkgver}
-  make DESTDIR="$pkgdir" install
-  install -Dm644 README "$pkgdir/usr/share/licenses/$pkgname/README"
-}

Copied: expect/repos/extra-x86_64/PKGBUILD (from rev 383156, 
expect/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-11 06:04:33 UTC (rev 383157)
@@ -0,0 +1,30 @@
+# Maintainer:  Bartłomiej Piotrowski 
+# Contributor: Allan McRae 
+
+pkgname=expect
+pkgver=5.45.4
+pkgrel=2
+pkgdesc='A tool for automating interactive applications'
+arch=(x86_64)
+url='https://www.nist.gov/el/msid/expect.cfm'
+license=(custom)
+depends=(tcl)
+source=(https://downloads.sourceforge.net/project/expect/Expect/$pkgver/expect${pkgver}.tar.gz)
+sha256sums=('49a7da83b0bdd9f46d04a04deec19c7767bb9a323e40c4781f89caf760b92c34')
+
+build() {
+  cd expect${pkgver}
+  ./configure --prefix=/usr --mandir=/usr/share/man 
+  make
+}
+
+check() {
+  cd expect${pkgver}
+  make test
+}
+
+package() {
+  cd expect${pkgver}
+  make DESTDIR="$pkgdir" install
+  install -Dm644 README "$pkgdir/usr/share/licenses/$pkgname/README"
+}


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

2020-05-10 Thread Allan McRae via arch-commits
Date: Monday, May 11, 2020 @ 06:04:17
  Author: allan
Revision: 383156

upgpkg: expect 5.45.4-2: .BUILDINFO rebuild

Modified:
  expect/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-05-11 06:01:45 UTC (rev 383155)
+++ PKGBUILD2020-05-11 06:04:17 UTC (rev 383156)
@@ -3,7 +3,7 @@
 
 pkgname=expect
 pkgver=5.45.4
-pkgrel=1
+pkgrel=2
 pkgdesc='A tool for automating interactive applications'
 arch=(x86_64)
 url='https://www.nist.gov/el/msid/expect.cfm'


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

2020-05-10 Thread Allan McRae via arch-commits
Date: Monday, May 11, 2020 @ 06:01:28
  Author: allan
Revision: 383154

upgpkg: dbus-glib 0.110-2: .BUILDINFO rebuild

Modified:
  dbus-glib/trunk/PKGBUILD

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

Modified: PKGBUILD
===
--- PKGBUILD2020-05-11 05:58:58 UTC (rev 383153)
+++ PKGBUILD2020-05-11 06:01:28 UTC (rev 383154)
@@ -2,7 +2,7 @@
 
 pkgname=dbus-glib
 pkgver=0.110
-pkgrel=1
+pkgrel=2
 pkgdesc="GLib bindings for DBUS"
 url="https://www.freedesktop.org/wiki/Software/DBusBindings";
 arch=(x86_64)


[arch-commits] Commit in dbus-glib/repos/extra-x86_64 (PKGBUILD PKGBUILD)

2020-05-10 Thread Allan McRae via arch-commits
Date: Monday, May 11, 2020 @ 06:01:45
  Author: allan
Revision: 383155

archrelease: copy trunk to extra-x86_64

Added:
  dbus-glib/repos/extra-x86_64/PKGBUILD
(from rev 383154, dbus-glib/trunk/PKGBUILD)
Deleted:
  dbus-glib/repos/extra-x86_64/PKGBUILD

--+
 PKGBUILD |   69 ++---
 1 file changed, 34 insertions(+), 35 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-11 06:01:28 UTC (rev 383154)
+++ PKGBUILD2020-05-11 06:01:45 UTC (rev 383155)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot 
-
-pkgname=dbus-glib
-pkgver=0.110
-pkgrel=1
-pkgdesc="GLib bindings for DBUS"
-url="https://www.freedesktop.org/wiki/Software/DBusBindings";
-arch=(x86_64)
-license=('GPL')
-depends=('dbus' 'glib2')
-makedepends=('python' 'gtk-doc')
-source=(https://dbus.freedesktop.org/releases/${pkgname}/${pkgname}-${pkgver}.tar.gz{,.asc})
-sha256sums=('7ce4760cf66c69148f6bd6c92feaabb8812dee30846b24cd0f7395c436d7e825'
-'SKIP')
-validpgpkeys=('DA98F25C0871C49A59EAFF2C4DE8FF2A63C7CC90')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure \
---prefix=/usr \
---sysconfdir=/etc \
---localstatedir=/var \
---libexecdir=/usr/lib \
---enable-gtk-doc \
---disable-static
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  _c=/usr/share/bash-completion/completions
-  make DESTDIR="$pkgdir" install completiondir=$_c
-  mv "$pkgdir$_c"/{dbus-bash-completion.sh,dbus-send}
-}

Copied: dbus-glib/repos/extra-x86_64/PKGBUILD (from rev 383154, 
dbus-glib/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-11 06:01:45 UTC (rev 383155)
@@ -0,0 +1,34 @@
+# Maintainer: Jan de Groot 
+
+pkgname=dbus-glib
+pkgver=0.110
+pkgrel=2
+pkgdesc="GLib bindings for DBUS"
+url="https://www.freedesktop.org/wiki/Software/DBusBindings";
+arch=(x86_64)
+license=('GPL')
+depends=('dbus' 'glib2')
+makedepends=('python' 'gtk-doc')
+source=(https://dbus.freedesktop.org/releases/${pkgname}/${pkgname}-${pkgver}.tar.gz{,.asc})
+sha256sums=('7ce4760cf66c69148f6bd6c92feaabb8812dee30846b24cd0f7395c436d7e825'
+'SKIP')
+validpgpkeys=('DA98F25C0871C49A59EAFF2C4DE8FF2A63C7CC90')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure \
+--prefix=/usr \
+--sysconfdir=/etc \
+--localstatedir=/var \
+--libexecdir=/usr/lib \
+--enable-gtk-doc \
+--disable-static
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  _c=/usr/share/bash-completion/completions
+  make DESTDIR="$pkgdir" install completiondir=$_c
+  mv "$pkgdir$_c"/{dbus-bash-completion.sh,dbus-send}
+}


  1   2   3   4   5   6   7   8   9   10   >