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

2020-12-20 Thread Giancarlo Razzolini via arch-commits
Date: Sunday, December 20, 2020 @ 18:52:39
  Author: grazzolini
Revision: 404706

archrelease: copy trunk to testing-x86_64

Added:
  bash/repos/testing-x86_64/
  bash/repos/testing-x86_64/PKGBUILD
(from rev 404705, bash/trunk/PKGBUILD)
  bash/repos/testing-x86_64/dot.bash_logout
(from rev 404705, bash/trunk/dot.bash_logout)
  bash/repos/testing-x86_64/dot.bash_profile
(from rev 404705, bash/trunk/dot.bash_profile)
  bash/repos/testing-x86_64/dot.bashrc
(from rev 404705, bash/trunk/dot.bashrc)
  bash/repos/testing-x86_64/system.bash_logout
(from rev 404705, bash/trunk/system.bash_logout)
  bash/repos/testing-x86_64/system.bashrc
(from rev 404705, bash/trunk/system.bashrc)

+
 PKGBUILD   |   97 +++
 dot.bash_logout|3 +
 dot.bash_profile   |5 ++
 dot.bashrc |9 
 system.bash_logout |3 +
 system.bashrc  |   22 +++
 6 files changed, 139 insertions(+)

Copied: bash/repos/testing-x86_64/PKGBUILD (from rev 404705, 
bash/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2020-12-20 18:52:39 UTC (rev 404706)
@@ -0,0 +1,97 @@
+# Maintainer: Levente Polyak 
+# Maintainer: Giancarlo Razzolini 
+# Contributor:  Bartłomiej Piotrowski 
+# Contributor: Allan McRae 
+# Contributor: Aaron Griffin 
+
+pkgname=bash
+_basever=5.1
+_patchlevel=004
+pkgver=${_basever}.${_patchlevel}
+pkgrel=1
+pkgdesc='The GNU Bourne Again shell'
+arch=(x86_64)
+license=(GPL)
+url='https://www.gnu.org/software/bash/bash.html'
+backup=(etc/bash.bash{rc,_logout} etc/skel/.bash{rc,_profile,_logout})
+depends=(readline libreadline.so glibc ncurses)
+optdepends=('bash-completion: for tab completion')
+provides=('sh')
+source=(https://ftp.gnu.org/gnu/bash/bash-$_basever.tar.gz{,.sig}
+dot.bashrc
+dot.bash_profile
+dot.bash_logout
+system.bashrc
+system.bash_logout)
+validpgpkeys=('7C0135FB088AAF6C66C650B9BB5869F064EA74AB') # Chet Ramey
+
+if [[ $((10#${_patchlevel})) -gt 0 ]]; then
+  for (( _p=1; _p<=$((10#${_patchlevel})); _p++ )); do
+source=(${source[@]} 
https://ftp.gnu.org/gnu/bash/bash-$_basever-patches/bash${_basever//.}-$(printf 
"%03d" $_p){,.sig})
+  done
+fi
+
+prepare() {
+  cd $pkgname-$_basever
+
+  for (( _p=1; _p<=$((10#${_patchlevel})); _p++ )); do
+echo "applying patch bash${_basever//.}-$(printf "%03d" $_p)"
+patch -p0 -i ../bash${_basever//.}-$(printf "%03d" $_p)
+  done
+}
+
+build() {
+  cd $pkgname-$_basever
+
+  
_bashconfig=(-DDEFAULT_PATH_VALUE=\'\"/usr/local/sbin:/usr/local/bin:/usr/bin\"\'
+   -DSTANDARD_UTILS_PATH=\'\"/usr/bin\"\'
+   -DSYS_BASHRC=\'\"/etc/bash.bashrc\"\'
+   -DSYS_BASH_LOGOUT=\'\"/etc/bash.bash_logout\"\'
+   -DNON_INTERACTIVE_LOGIN_SHELLS)
+  export CFLAGS="${CFLAGS} ${_bashconfig[@]}"
+
+  ./configure \
+--prefix=/usr \
+--with-curses \
+--enable-readline \
+--without-bash-malloc \
+--with-installed-readline
+  make
+}
+
+check() {
+  make -C $pkgname-$_basever check
+}
+
+package() {
+  make -C $pkgname-$_basever DESTDIR="$pkgdir" install
+  ln -s bash "$pkgdir/usr/bin/sh"
+
+  # system-wide configuration files
+  install -Dm644 system.bashrc "$pkgdir/etc/bash.bashrc"
+  install -Dm644 system.bash_logout "$pkgdir/etc/bash.bash_logout"
+
+  # user configuration file skeletons
+  install -dm755 "$pkgdir/etc/skel/"
+  install -m644 dot.bashrc "$pkgdir/etc/skel/.bashrc"
+  install -m644 dot.bash_profile "$pkgdir/etc/skel/.bash_profile"
+  install -m644 dot.bash_logout "$pkgdir/etc/skel/.bash_logout"
+}
+
+sha256sums=('cc012bc860406dcf42f64431bcd3d2fa7560c02915a601aba9cd597a39329baa'
+'SKIP'
+'3e22bf86ae6708df7a6bceb88c67a00118275f9c0b5268f453dd388af7c43b53'
+'e149407c2bee17779caec70a7edd3dd172e7e4347429b80cb4d55bcec9c2'
+'4330edf340394d0dae50afb04ac2a621f106fe67fb634ec81c4bfb98be2a1eb5'
+'5fdc20c44bc9058f728d1327f4dbb5598fec4d948dd5265211598667f9f0'
+'025bccfb374a3edce0ff8154d990689f30976b78f7a932dc9a6fcef81821811e'
+'ebb07b3dbadd98598f078125d0ae0d699295978a5cdaef6282fe19adef45b5fa'
+'SKIP'
+'15ea6121a801e48e658ceee712ea9b88d4ded022046a6147550790caf04f5dbe'
+'SKIP'
+'22f2cc262f056b22966281babf4b0a2f84cb7dd2223422e5dcd013c3dcbab6b1'
+'SKIP'
+'9aaeb65664ef0d28c0067e47ba5652b518298b3b92d33327d84b98b28d873c86'
+'SKIP')
+
+# vim: ts=2 sw=2 et:

Copied: bash/repos/testing-x86_64/dot.bash_logout (from rev 404705, 
bash/trunk/dot.bash_logout)
===
--- testing-x86_64/dot.bash_logout  (rev 0)
+++ testing-x86_64/dot.bash_logout  2020-12-20 18:52:39 UTC (rev 

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

2020-12-08 Thread Giancarlo Razzolini via arch-commits
Date: Tuesday, December 8, 2020 @ 19:47:52
  Author: grazzolini
Revision: 403156

archrelease: copy trunk to staging-x86_64

Added:
  bash/repos/staging-x86_64/
  bash/repos/staging-x86_64/PKGBUILD
(from rev 403155, bash/trunk/PKGBUILD)
  bash/repos/staging-x86_64/dot.bash_logout
(from rev 403155, bash/trunk/dot.bash_logout)
  bash/repos/staging-x86_64/dot.bash_profile
(from rev 403155, bash/trunk/dot.bash_profile)
  bash/repos/staging-x86_64/dot.bashrc
(from rev 403155, bash/trunk/dot.bashrc)
  bash/repos/staging-x86_64/system.bash_logout
(from rev 403155, bash/trunk/system.bash_logout)
  bash/repos/staging-x86_64/system.bashrc
(from rev 403155, bash/trunk/system.bashrc)

+
 PKGBUILD   |   89 +++
 dot.bash_logout|3 +
 dot.bash_profile   |5 ++
 dot.bashrc |9 +
 system.bash_logout |3 +
 system.bashrc  |   22 
 6 files changed, 131 insertions(+)

Copied: bash/repos/staging-x86_64/PKGBUILD (from rev 403155, 
bash/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2020-12-08 19:47:52 UTC (rev 403156)
@@ -0,0 +1,89 @@
+# Maintainer: Levente Polyak 
+# Maintainer: Giancarlo Razzolini 
+# Contributor:  Bartłomiej Piotrowski 
+# Contributor: Allan McRae 
+# Contributor: Aaron Griffin 
+
+pkgname=bash
+_basever=5.1
+_patchlevel=0
+pkgver=${_basever}.${_patchlevel}
+pkgrel=2
+pkgdesc='The GNU Bourne Again shell'
+arch=(x86_64)
+license=(GPL)
+url='https://www.gnu.org/software/bash/bash.html'
+backup=(etc/bash.bash{rc,_logout} etc/skel/.bash{rc,_profile,_logout})
+depends=(readline libreadline.so glibc ncurses)
+optdepends=('bash-completion: for tab completion')
+provides=('sh')
+source=(https://ftp.gnu.org/gnu/bash/bash-$_basever.tar.gz{,.sig}
+dot.bashrc
+dot.bash_profile
+dot.bash_logout
+system.bashrc
+system.bash_logout)
+validpgpkeys=('7C0135FB088AAF6C66C650B9BB5869F064EA74AB') # Chet Ramey
+
+if [[ $((10#${_patchlevel})) -gt 0 ]]; then
+  for (( _p=1; _p<=$((10#${_patchlevel})); _p++ )); do
+source=(${source[@]} 
https://ftp.gnu.org/gnu/bash/bash-$_basever-patches/bash${_basever//.}-$(printf 
"%03d" $_p){,.sig})
+  done
+fi
+
+prepare() {
+  cd $pkgname-$_basever
+
+  for (( _p=1; _p<=$((10#${_patchlevel})); _p++ )); do
+echo "applying patch bash${_basever//.}-$(printf "%03d" $_p)"
+patch -p0 -i ../bash${_basever//.}-$(printf "%03d" $_p)
+  done
+}
+
+build() {
+  cd $pkgname-$_basever
+
+  
_bashconfig=(-DDEFAULT_PATH_VALUE=\'\"/usr/local/sbin:/usr/local/bin:/usr/bin\"\'
+   -DSTANDARD_UTILS_PATH=\'\"/usr/bin\"\'
+   -DSYS_BASHRC=\'\"/etc/bash.bashrc\"\'
+   -DSYS_BASH_LOGOUT=\'\"/etc/bash.bash_logout\"\'
+   -DNON_INTERACTIVE_LOGIN_SHELLS)
+  export CFLAGS="${CFLAGS} ${_bashconfig[@]}"
+
+  ./configure \
+--prefix=/usr \
+--with-curses \
+--enable-readline \
+--without-bash-malloc \
+--with-installed-readline
+  make
+}
+
+check() {
+  make -C $pkgname-$_basever check
+}
+
+package() {
+  make -C $pkgname-$_basever DESTDIR="$pkgdir" install
+  ln -s bash "$pkgdir/usr/bin/sh"
+
+  # system-wide configuration files
+  install -Dm644 system.bashrc "$pkgdir/etc/bash.bashrc"
+  install -Dm644 system.bash_logout "$pkgdir/etc/bash.bash_logout"
+
+  # user configuration file skeletons
+  install -dm755 "$pkgdir/etc/skel/"
+  install -m644 dot.bashrc "$pkgdir/etc/skel/.bashrc"
+  install -m644 dot.bash_profile "$pkgdir/etc/skel/.bash_profile"
+  install -m644 dot.bash_logout "$pkgdir/etc/skel/.bash_logout"
+}
+
+sha256sums=('cc012bc860406dcf42f64431bcd3d2fa7560c02915a601aba9cd597a39329baa'
+'SKIP'
+'3e22bf86ae6708df7a6bceb88c67a00118275f9c0b5268f453dd388af7c43b53'
+'e149407c2bee17779caec70a7edd3dd172e7e4347429b80cb4d55bcec9c2'
+'4330edf340394d0dae50afb04ac2a621f106fe67fb634ec81c4bfb98be2a1eb5'
+'5fdc20c44bc9058f728d1327f4dbb5598fec4d948dd5265211598667f9f0'
+'025bccfb374a3edce0ff8154d990689f30976b78f7a932dc9a6fcef81821811e')
+
+# vim: ts=2 sw=2 et:

Copied: bash/repos/staging-x86_64/dot.bash_logout (from rev 403155, 
bash/trunk/dot.bash_logout)
===
--- staging-x86_64/dot.bash_logout  (rev 0)
+++ staging-x86_64/dot.bash_logout  2020-12-08 19:47:52 UTC (rev 403156)
@@ -0,0 +1,3 @@
+#
+# ~/.bash_logout
+#

Copied: bash/repos/staging-x86_64/dot.bash_profile (from rev 403155, 
bash/trunk/dot.bash_profile)
===
--- staging-x86_64/dot.bash_profile (rev 0)
+++ staging-x86_64/dot.bash_profile 2020-12-08 19:47:52 UTC (rev 403156)
@@ -0,0 +1,5 @@
+#
+# ~/.bash_profile

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

2020-12-07 Thread Giancarlo Razzolini via arch-commits
Date: Monday, December 7, 2020 @ 12:59:04
  Author: grazzolini
Revision: 403077

archrelease: copy trunk to testing-x86_64

Added:
  bash/repos/testing-x86_64/
  bash/repos/testing-x86_64/PKGBUILD
(from rev 403076, bash/trunk/PKGBUILD)
  bash/repos/testing-x86_64/dot.bash_logout
(from rev 403076, bash/trunk/dot.bash_logout)
  bash/repos/testing-x86_64/dot.bash_profile
(from rev 403076, bash/trunk/dot.bash_profile)
  bash/repos/testing-x86_64/dot.bashrc
(from rev 403076, bash/trunk/dot.bashrc)
  bash/repos/testing-x86_64/system.bash_logout
(from rev 403076, bash/trunk/system.bash_logout)
  bash/repos/testing-x86_64/system.bashrc
(from rev 403076, bash/trunk/system.bashrc)

+
 PKGBUILD   |   89 +++
 dot.bash_logout|3 +
 dot.bash_profile   |5 ++
 dot.bashrc |9 +
 system.bash_logout |3 +
 system.bashrc  |   22 
 6 files changed, 131 insertions(+)

Copied: bash/repos/testing-x86_64/PKGBUILD (from rev 403076, 
bash/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2020-12-07 12:59:04 UTC (rev 403077)
@@ -0,0 +1,89 @@
+# Maintainer: Levente Polyak 
+# Maintainer: Giancarlo Razzolini 
+# Contributor:  Bartłomiej Piotrowski 
+# Contributor: Allan McRae 
+# Contributor: Aaron Griffin 
+
+pkgname=bash
+_basever=5.1
+_patchlevel=0
+pkgver=${_basever}.${_patchlevel}
+pkgrel=1
+pkgdesc='The GNU Bourne Again shell'
+arch=(x86_64)
+license=(GPL)
+url='https://www.gnu.org/software/bash/bash.html'
+backup=(etc/bash.bash{rc,_logout} etc/skel/.bash{rc,_profile,_logout})
+depends=(readline libreadline.so glibc ncurses)
+optdepends=('bash-completion: for tab completion')
+provides=('sh')
+source=(https://ftp.gnu.org/gnu/bash/bash-$_basever.tar.gz{,.sig}
+dot.bashrc
+dot.bash_profile
+dot.bash_logout
+system.bashrc
+system.bash_logout)
+validpgpkeys=('7C0135FB088AAF6C66C650B9BB5869F064EA74AB') # Chet Ramey
+
+if [[ $((10#${_patchlevel})) -gt 0 ]]; then
+  for (( _p=1; _p<=$((10#${_patchlevel})); _p++ )); do
+source=(${source[@]} 
https://ftp.gnu.org/gnu/bash/bash-$_basever-patches/bash${_basever//.}-$(printf 
"%03d" $_p){,.sig})
+  done
+fi
+
+prepare() {
+  cd $pkgname-$_basever
+
+  for (( _p=1; _p<=$((10#${_patchlevel})); _p++ )); do
+echo "applying patch bash${_basever//.}-$(printf "%03d" $_p)"
+patch -p0 -i ../bash${_basever//.}-$(printf "%03d" $_p)
+  done
+}
+
+build() {
+  cd $pkgname-$_basever
+
+  
_bashconfig=(-DDEFAULT_PATH_VALUE=\'\"/usr/local/sbin:/usr/local/bin:/usr/bin\"\'
+   -DSTANDARD_UTILS_PATH=\'\"/usr/bin\"\'
+   -DSYS_BASHRC=\'\"/etc/bash.bashrc\"\'
+   -DSYS_BASH_LOGOUT=\'\"/etc/bash.bash_logout\"\'
+   -DNON_INTERACTIVE_LOGIN_SHELLS)
+  export CFLAGS="${CFLAGS} ${_bashconfig[@]}"
+
+  ./configure \
+--prefix=/usr \
+--with-curses \
+--enable-readline \
+--without-bash-malloc \
+--with-installed-readline
+  make
+}
+
+check() {
+  make -C $pkgname-$_basever check
+}
+
+package() {
+  make -C $pkgname-$_basever DESTDIR="$pkgdir" install
+  ln -s bash "$pkgdir/usr/bin/sh"
+
+  # system-wide configuration files
+  install -Dm644 system.bashrc "$pkgdir/etc/bash.bashrc"
+  install -Dm644 system.bash_logout "$pkgdir/etc/bash.bash_logout"
+
+  # user configuration file skeletons
+  install -dm755 "$pkgdir/etc/skel/"
+  install -m644 dot.bashrc "$pkgdir/etc/skel/.bashrc"
+  install -m644 dot.bash_profile "$pkgdir/etc/skel/.bash_profile"
+  install -m644 dot.bash_logout "$pkgdir/etc/skel/.bash_logout"
+}
+
+sha256sums=('cc012bc860406dcf42f64431bcd3d2fa7560c02915a601aba9cd597a39329baa'
+'SKIP'
+'3e22bf86ae6708df7a6bceb88c67a00118275f9c0b5268f453dd388af7c43b53'
+'e149407c2bee17779caec70a7edd3dd172e7e4347429b80cb4d55bcec9c2'
+'4330edf340394d0dae50afb04ac2a621f106fe67fb634ec81c4bfb98be2a1eb5'
+'5fdc20c44bc9058f728d1327f4dbb5598fec4d948dd5265211598667f9f0'
+'025bccfb374a3edce0ff8154d990689f30976b78f7a932dc9a6fcef81821811e')
+
+# vim: ts=2 sw=2 et:

Copied: bash/repos/testing-x86_64/dot.bash_logout (from rev 403076, 
bash/trunk/dot.bash_logout)
===
--- testing-x86_64/dot.bash_logout  (rev 0)
+++ testing-x86_64/dot.bash_logout  2020-12-07 12:59:04 UTC (rev 403077)
@@ -0,0 +1,3 @@
+#
+# ~/.bash_logout
+#

Copied: bash/repos/testing-x86_64/dot.bash_profile (from rev 403076, 
bash/trunk/dot.bash_profile)
===
--- testing-x86_64/dot.bash_profile (rev 0)
+++ testing-x86_64/dot.bash_profile 2020-12-07 12:59:04 UTC (rev 403077)
@@ -0,0 +1,5 @@
+#
+# ~/.bash_profile

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

2020-11-20 Thread Levente Polyak via arch-commits
Date: Friday, November 20, 2020 @ 20:30:40
  Author: anthraxx
Revision: 401586

archrelease: copy trunk to testing-x86_64

Added:
  bash/repos/testing-x86_64/
  bash/repos/testing-x86_64/PKGBUILD
(from rev 401585, bash/trunk/PKGBUILD)
  bash/repos/testing-x86_64/dot.bash_logout
(from rev 401585, bash/trunk/dot.bash_logout)
  bash/repos/testing-x86_64/dot.bash_profile
(from rev 401585, bash/trunk/dot.bash_profile)
  bash/repos/testing-x86_64/dot.bashrc
(from rev 401585, bash/trunk/dot.bashrc)
  bash/repos/testing-x86_64/system.bash_logout
(from rev 401585, bash/trunk/system.bash_logout)
  bash/repos/testing-x86_64/system.bashrc
(from rev 401585, bash/trunk/system.bashrc)

+
 PKGBUILD   |  124 +++
 dot.bash_logout|3 +
 dot.bash_profile   |5 ++
 dot.bashrc |9 +++
 system.bash_logout |3 +
 system.bashrc  |   22 +
 6 files changed, 166 insertions(+)

Copied: bash/repos/testing-x86_64/PKGBUILD (from rev 401585, 
bash/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2020-11-20 20:30:40 UTC (rev 401586)
@@ -0,0 +1,124 @@
+# Maintainer: Levente Polyak 
+# Contributor:  Bartłomiej Piotrowski 
+# Contributor: Allan McRae 
+# Contributor: Aaron Griffin 
+
+pkgname=bash
+_basever=5.0
+_patchlevel=018
+pkgver=${_basever}.${_patchlevel}
+pkgrel=2
+pkgdesc='The GNU Bourne Again shell'
+arch=(x86_64)
+license=(GPL)
+url='https://www.gnu.org/software/bash/bash.html'
+backup=(etc/bash.bash{rc,_logout} etc/skel/.bash{rc,_profile,_logout})
+depends=(readline libreadline.so glibc ncurses)
+optdepends=('bash-completion: for tab completion')
+provides=('sh')
+source=(https://ftp.gnu.org/gnu/bash/bash-$_basever.tar.gz{,.sig}
+dot.bashrc
+dot.bash_profile
+dot.bash_logout
+system.bashrc
+system.bash_logout)
+validpgpkeys=('7C0135FB088AAF6C66C650B9BB5869F064EA74AB') # Chet Ramey
+
+if [[ $((10#${_patchlevel})) -gt 0 ]]; then
+  for (( _p=1; _p<=$((10#${_patchlevel})); _p++ )); do
+source=(${source[@]} 
https://ftp.gnu.org/gnu/bash/bash-$_basever-patches/bash${_basever//.}-$(printf 
"%03d" $_p){,.sig})
+  done
+fi
+
+prepare() {
+  cd $pkgname-$_basever
+
+  for (( _p=1; _p<=$((10#${_patchlevel})); _p++ )); do
+echo "applying patch bash${_basever//.}-$(printf "%03d" $_p)"
+patch -p0 -i ../bash${_basever//.}-$(printf "%03d" $_p)
+  done
+}
+
+build() {
+  cd $pkgname-$_basever
+
+  
_bashconfig=(-DDEFAULT_PATH_VALUE=\'\"/usr/local/sbin:/usr/local/bin:/usr/bin\"\'
+   -DSTANDARD_UTILS_PATH=\'\"/usr/bin\"\'
+   -DSYS_BASHRC=\'\"/etc/bash.bashrc\"\'
+   -DSYS_BASH_LOGOUT=\'\"/etc/bash.bash_logout\"\'
+   -DNON_INTERACTIVE_LOGIN_SHELLS)
+  export CFLAGS="${CFLAGS} ${_bashconfig[@]}"
+
+  ./configure \
+--prefix=/usr \
+--with-curses \
+--enable-readline \
+--without-bash-malloc \
+--with-installed-readline
+  make
+}
+
+check() {
+  make -C $pkgname-$_basever check
+}
+
+package() {
+  make -C $pkgname-$_basever DESTDIR="$pkgdir" install
+  ln -s bash "$pkgdir/usr/bin/sh"
+
+  # system-wide configuration files
+  install -Dm644 system.bashrc "$pkgdir/etc/bash.bashrc"
+  install -Dm644 system.bash_logout "$pkgdir/etc/bash.bash_logout"
+
+  # user configuration file skeletons
+  install -dm755 "$pkgdir/etc/skel/"
+  install -m644 dot.bashrc "$pkgdir/etc/skel/.bashrc"
+  install -m644 dot.bash_profile "$pkgdir/etc/skel/.bash_profile"
+  install -m644 dot.bash_logout "$pkgdir/etc/skel/.bash_logout"
+}
+
+sha256sums=('b4a80f2ac66170b2913efbfb9f2594f1f76c7b1afd11f799e22035d63077fb4d'
+'SKIP'
+'3e22bf86ae6708df7a6bceb88c67a00118275f9c0b5268f453dd388af7c43b53'
+'e149407c2bee17779caec70a7edd3dd172e7e4347429b80cb4d55bcec9c2'
+'4330edf340394d0dae50afb04ac2a621f106fe67fb634ec81c4bfb98be2a1eb5'
+'5fdc20c44bc9058f728d1327f4dbb5598fec4d948dd5265211598667f9f0'
+'025bccfb374a3edce0ff8154d990689f30976b78f7a932dc9a6fcef81821811e'
+'f2fe9e1f0faddf14ab9bfa88d450a75e5d028fedafad23b88716bd657c737289'
+'SKIP'
+'87e87d3542e598799adb3e7e01c8165bc743e136a400ed0de015845f7ff68707'
+'SKIP'
+'4eebcdc37b13793a232c5f2f498a5fcbf7da0ecb3da2059391c096db620ec85b'
+'SKIP'
+'14447ad832add8ecfafdce5384badd933697b559c4688d6b9e3d36ff36c62f08'
+'SKIP'
+'5bf54dd9bd2c211d2bfb34a49e2c741f2ed5e338767e9ce9f4d41254bf9f8276'
+'SKIP'
+'d68529a6ff201b6ff5915318ab12fc16b8a0ebb77fda3308303fcc1e13398420'
+'SKIP'
+'17b41e7ee3673d8887dd25992417a398677533ab8827938aa41fad70df19af9b'
+'SKIP'
+

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

2020-08-09 Thread Bartłomiej Piotrowski via arch-commits
Date: Sunday, August 9, 2020 @ 17:02:54
  Author: bpiotrowski
Revision: 393460

archrelease: copy trunk to testing-x86_64

Added:
  bash/repos/testing-x86_64/
  bash/repos/testing-x86_64/PKGBUILD
(from rev 393459, bash/trunk/PKGBUILD)
  bash/repos/testing-x86_64/dot.bash_logout
(from rev 393459, bash/trunk/dot.bash_logout)
  bash/repos/testing-x86_64/dot.bash_profile
(from rev 393459, bash/trunk/dot.bash_profile)
  bash/repos/testing-x86_64/dot.bashrc
(from rev 393459, bash/trunk/dot.bashrc)
  bash/repos/testing-x86_64/system.bash_logout
(from rev 393459, bash/trunk/system.bash_logout)
  bash/repos/testing-x86_64/system.bashrc
(from rev 393459, bash/trunk/system.bashrc)

+
 PKGBUILD   |  117 +++
 dot.bash_logout|3 +
 dot.bash_profile   |5 ++
 dot.bashrc |9 +++
 system.bash_logout |3 +
 system.bashrc  |   22 +
 6 files changed, 159 insertions(+)

Copied: bash/repos/testing-x86_64/PKGBUILD (from rev 393459, 
bash/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2020-08-09 17:02:54 UTC (rev 393460)
@@ -0,0 +1,117 @@
+# Maintainer:  Bartłomiej Piotrowski 
+# Contributor: Allan McRae 
+# Contributor: Aaron Griffin 
+
+pkgname=bash
+_basever=5.0
+_patchlevel=018
+pkgver=${_basever}.${_patchlevel}
+pkgrel=1
+pkgdesc='The GNU Bourne Again shell'
+arch=(x86_64)
+license=(GPL)
+url='https://www.gnu.org/software/bash/bash.html'
+backup=(etc/bash.bash{rc,_logout} etc/skel/.bash{rc,_profile,_logout})
+depends=('readline>=7.0' glibc ncurses)
+optdepends=('bash-completion: for tab completion')
+provides=('sh')
+source=(https://ftp.gnu.org/gnu/bash/bash-$_basever.tar.gz{,.sig}
+dot.bashrc
+dot.bash_profile
+dot.bash_logout
+system.bashrc
+system.bash_logout)
+validpgpkeys=('7C0135FB088AAF6C66C650B9BB5869F064EA74AB') # Chet Ramey
+
+if [[ $((10#${_patchlevel})) -gt 0 ]]; then
+  for (( _p=1; _p<=$((10#${_patchlevel})); _p++ )); do
+source=(${source[@]} 
https://ftp.gnu.org/gnu/bash/bash-$_basever-patches/bash${_basever//.}-$(printf 
"%03d" $_p){,.sig})
+  done
+fi
+
+prepare() {
+  cd $pkgname-$_basever
+
+  for (( _p=1; _p<=$((10#${_patchlevel})); _p++ )); do
+msg "applying patch bash${_basever//.}-$(printf "%03d" $_p)"
+patch -p0 -i ../bash${_basever//.}-$(printf "%03d" $_p)
+  done
+}
+
+build() {
+  cd $pkgname-$_basever
+
+  
_bashconfig=(-DDEFAULT_PATH_VALUE=\'\"/usr/local/sbin:/usr/local/bin:/usr/bin\"\'
+   -DSTANDARD_UTILS_PATH=\'\"/usr/bin\"\'
+   -DSYS_BASHRC=\'\"/etc/bash.bashrc\"\'
+   -DSYS_BASH_LOGOUT=\'\"/etc/bash.bash_logout\"\'
+   -DNON_INTERACTIVE_LOGIN_SHELLS)
+  export CFLAGS="${CFLAGS} ${_bashconfig[@]}"
+
+  ./configure --prefix=/usr --with-curses --enable-readline \
+--without-bash-malloc --with-installed-readline
+  make
+}
+
+check() {
+  make -C $pkgname-$_basever check
+}
+
+package() {
+  make -C $pkgname-$_basever DESTDIR="$pkgdir" install
+  ln -s bash "$pkgdir/usr/bin/sh"
+
+  # system-wide configuration files
+  install -Dm644 system.bashrc "$pkgdir/etc/bash.bashrc"
+  install -Dm644 system.bash_logout "$pkgdir/etc/bash.bash_logout"
+
+  # user configuration file skeletons
+  install -dm755 "$pkgdir/etc/skel/"
+  install -m644 dot.bashrc "$pkgdir/etc/skel/.bashrc"
+  install -m644 dot.bash_profile "$pkgdir/etc/skel/.bash_profile"
+  install -m644 dot.bash_logout "$pkgdir/etc/skel/.bash_logout"
+}
+
+md5sums=('2b44b47b905be16f45709648f671820b'
+ 'SKIP'
+ '027d6bd8f5f6a06b75bb7698cb478089'
+ '2902e0fee7a9168f3a4fd2ccd60ff047'
+ '42f4400ed2314bd7519c020d0187edc5'
+ 'd8f3f334e72c0e30032eae1a1229aef1'
+ '472f536d7c9e8250dc4568ec4cfaf294'
+ 'b026862ab596a5883bb4f0d1077a3819'
+ 'SKIP'
+ '2f4a7787365790ae57f36b311701ea7e'
+ 'SKIP'
+ 'af7f2dd93fd5429fb5e9a642ff74f87d'
+ 'SKIP'
+ 'b60545b273bfa4e00a760f2c648bed9c'
+ 'SKIP'
+ '875a0bedf48b74e453e3997c84b5d8a4'
+ 'SKIP'
+ '4a8ee95adb72c3aba03d9e8c9f96ece6'
+ 'SKIP'
+ '411560d81fde2dc5b17b83c3f3b58c6f'
+ 'SKIP'
+ 'dd7cf7a784d1838822cad8d419315991'
+ 'SKIP'
+ 'c1b3e937cd6dccbb7fd772f32812a0da'
+ 'SKIP'
+ '19b41e73b03602d0e261c471b53e670c'
+ 'SKIP'
+ '414339330a3634137081a97f2c8615a8'
+ 'SKIP'
+ '1870268f62b907221b078ad109e1fa94'
+ 'SKIP'
+ '40d923af4b952b01983ed4c889ae2653'
+ 'SKIP'
+ '57857b22053c8167677e5e5ac5c6669b'
+ 'SKIP'
+ 'c4c6ea23d09a74eaa9385438e48fdf02'
+ 'SKIP'
+ 'a682ed6fa2c2e7a7c3ba6bdeada07fb5'
+ 'SKIP'
+ 'd9dcaa1d8e7a24850449a1aac43a12a9'
+ 'SKIP'
+   

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

2020-05-22 Thread Bartłomiej Piotrowski via arch-commits
Date: Friday, May 22, 2020 @ 12:37:07
  Author: bpiotrowski
Revision: 387414

archrelease: copy trunk to testing-x86_64

Added:
  bash/repos/testing-x86_64/
  bash/repos/testing-x86_64/PKGBUILD
(from rev 387413, bash/trunk/PKGBUILD)
  bash/repos/testing-x86_64/dot.bash_logout
(from rev 387413, bash/trunk/dot.bash_logout)
  bash/repos/testing-x86_64/dot.bash_profile
(from rev 387413, bash/trunk/dot.bash_profile)
  bash/repos/testing-x86_64/dot.bashrc
(from rev 387413, bash/trunk/dot.bashrc)
  bash/repos/testing-x86_64/system.bash_logout
(from rev 387413, bash/trunk/system.bash_logout)
  bash/repos/testing-x86_64/system.bashrc
(from rev 387413, bash/trunk/system.bashrc)

+
 PKGBUILD   |  115 +++
 dot.bash_logout|3 +
 dot.bash_profile   |5 ++
 dot.bashrc |9 +++
 system.bash_logout |3 +
 system.bashrc  |   22 +
 6 files changed, 157 insertions(+)

Copied: bash/repos/testing-x86_64/PKGBUILD (from rev 387413, 
bash/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2020-05-22 12:37:07 UTC (rev 387414)
@@ -0,0 +1,115 @@
+# Maintainer:  Bartłomiej Piotrowski 
+# Contributor: Allan McRae 
+# Contributor: Aaron Griffin 
+
+pkgname=bash
+_basever=5.0
+_patchlevel=017
+pkgver=${_basever}.${_patchlevel}
+pkgrel=1
+pkgdesc='The GNU Bourne Again shell'
+arch=(x86_64)
+license=(GPL)
+url='https://www.gnu.org/software/bash/bash.html'
+backup=(etc/bash.bash{rc,_logout} etc/skel/.bash{rc,_profile,_logout})
+depends=('readline>=7.0' glibc ncurses)
+optdepends=('bash-completion: for tab completion')
+provides=('sh')
+source=(https://ftp.gnu.org/gnu/bash/bash-$_basever.tar.gz{,.sig}
+dot.bashrc
+dot.bash_profile
+dot.bash_logout
+system.bashrc
+system.bash_logout)
+validpgpkeys=('7C0135FB088AAF6C66C650B9BB5869F064EA74AB') # Chet Ramey
+
+if [[ $((10#${_patchlevel})) -gt 0 ]]; then
+  for (( _p=1; _p<=$((10#${_patchlevel})); _p++ )); do
+source=(${source[@]} 
https://ftp.gnu.org/gnu/bash/bash-$_basever-patches/bash${_basever//.}-$(printf 
"%03d" $_p){,.sig})
+  done
+fi
+
+prepare() {
+  cd $pkgname-$_basever
+
+  for (( _p=1; _p<=$((10#${_patchlevel})); _p++ )); do
+msg "applying patch bash${_basever//.}-$(printf "%03d" $_p)"
+patch -p0 -i ../bash${_basever//.}-$(printf "%03d" $_p)
+  done
+}
+
+build() {
+  cd $pkgname-$_basever
+
+  
_bashconfig=(-DDEFAULT_PATH_VALUE=\'\"/usr/local/sbin:/usr/local/bin:/usr/bin\"\'
+   -DSTANDARD_UTILS_PATH=\'\"/usr/bin\"\'
+   -DSYS_BASHRC=\'\"/etc/bash.bashrc\"\'
+   -DSYS_BASH_LOGOUT=\'\"/etc/bash.bash_logout\"\'
+   -DNON_INTERACTIVE_LOGIN_SHELLS)
+  export CFLAGS="${CFLAGS} ${_bashconfig[@]}"
+
+  ./configure --prefix=/usr --with-curses --enable-readline \
+--without-bash-malloc --with-installed-readline
+  make
+}
+
+check() {
+  make -C $pkgname-$_basever check
+}
+
+package() {
+  make -C $pkgname-$_basever DESTDIR="$pkgdir" install
+  ln -s bash "$pkgdir/usr/bin/sh"
+
+  # system-wide configuration files
+  install -Dm644 system.bashrc "$pkgdir/etc/bash.bashrc"
+  install -Dm644 system.bash_logout "$pkgdir/etc/bash.bash_logout"
+
+  # user configuration file skeletons
+  install -dm755 "$pkgdir/etc/skel/"
+  install -m644 dot.bashrc "$pkgdir/etc/skel/.bashrc"
+  install -m644 dot.bash_profile "$pkgdir/etc/skel/.bash_profile"
+  install -m644 dot.bash_logout "$pkgdir/etc/skel/.bash_logout"
+}
+
+md5sums=('2b44b47b905be16f45709648f671820b'
+ 'SKIP'
+ '027d6bd8f5f6a06b75bb7698cb478089'
+ '2902e0fee7a9168f3a4fd2ccd60ff047'
+ '42f4400ed2314bd7519c020d0187edc5'
+ 'd8f3f334e72c0e30032eae1a1229aef1'
+ '472f536d7c9e8250dc4568ec4cfaf294'
+ 'b026862ab596a5883bb4f0d1077a3819'
+ 'SKIP'
+ '2f4a7787365790ae57f36b311701ea7e'
+ 'SKIP'
+ 'af7f2dd93fd5429fb5e9a642ff74f87d'
+ 'SKIP'
+ 'b60545b273bfa4e00a760f2c648bed9c'
+ 'SKIP'
+ '875a0bedf48b74e453e3997c84b5d8a4'
+ 'SKIP'
+ '4a8ee95adb72c3aba03d9e8c9f96ece6'
+ 'SKIP'
+ '411560d81fde2dc5b17b83c3f3b58c6f'
+ 'SKIP'
+ 'dd7cf7a784d1838822cad8d419315991'
+ 'SKIP'
+ 'c1b3e937cd6dccbb7fd772f32812a0da'
+ 'SKIP'
+ '19b41e73b03602d0e261c471b53e670c'
+ 'SKIP'
+ '414339330a3634137081a97f2c8615a8'
+ 'SKIP'
+ '1870268f62b907221b078ad109e1fa94'
+ 'SKIP'
+ '40d923af4b952b01983ed4c889ae2653'
+ 'SKIP'
+ '57857b22053c8167677e5e5ac5c6669b'
+ 'SKIP'
+ 'c4c6ea23d09a74eaa9385438e48fdf02'
+ 'SKIP'
+ 'a682ed6fa2c2e7a7c3ba6bdeada07fb5'
+ 'SKIP'
+ 'd9dcaa1d8e7a24850449a1aac43a12a9'
+ 'SKIP')


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

2020-02-13 Thread Bartłomiej Piotrowski via arch-commits
Date: Thursday, February 13, 2020 @ 19:45:28
  Author: bpiotrowski
Revision: 375561

archrelease: copy trunk to testing-x86_64

Added:
  bash/repos/testing-x86_64/
  bash/repos/testing-x86_64/PKGBUILD
(from rev 375560, bash/trunk/PKGBUILD)
  bash/repos/testing-x86_64/dot.bash_logout
(from rev 375560, bash/trunk/dot.bash_logout)
  bash/repos/testing-x86_64/dot.bash_profile
(from rev 375560, bash/trunk/dot.bash_profile)
  bash/repos/testing-x86_64/dot.bashrc
(from rev 375560, bash/trunk/dot.bashrc)
  bash/repos/testing-x86_64/system.bash_logout
(from rev 375560, bash/trunk/system.bash_logout)
  bash/repos/testing-x86_64/system.bashrc
(from rev 375560, bash/trunk/system.bashrc)

+
 PKGBUILD   |  113 +++
 dot.bash_logout|3 +
 dot.bash_profile   |5 ++
 dot.bashrc |9 
 system.bash_logout |3 +
 system.bashrc  |   22 +
 6 files changed, 155 insertions(+)

Copied: bash/repos/testing-x86_64/PKGBUILD (from rev 375560, 
bash/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2020-02-13 19:45:28 UTC (rev 375561)
@@ -0,0 +1,113 @@
+# Maintainer:  Bartłomiej Piotrowski 
+# Contributor: Allan McRae 
+# Contributor: Aaron Griffin 
+
+pkgname=bash
+_basever=5.0
+_patchlevel=016
+pkgver=${_basever}.${_patchlevel}
+pkgrel=1
+pkgdesc='The GNU Bourne Again shell'
+arch=(x86_64)
+license=(GPL)
+url='https://www.gnu.org/software/bash/bash.html'
+backup=(etc/bash.bash{rc,_logout} etc/skel/.bash{rc,_profile,_logout})
+depends=('readline>=7.0' glibc ncurses)
+optdepends=('bash-completion: for tab completion')
+provides=('sh')
+source=(https://ftp.gnu.org/gnu/bash/bash-$_basever.tar.gz{,.sig}
+dot.bashrc
+dot.bash_profile
+dot.bash_logout
+system.bashrc
+system.bash_logout)
+validpgpkeys=('7C0135FB088AAF6C66C650B9BB5869F064EA74AB') # Chet Ramey
+
+if [[ $((10#${_patchlevel})) -gt 0 ]]; then
+  for (( _p=1; _p<=$((10#${_patchlevel})); _p++ )); do
+source=(${source[@]} 
https://ftp.gnu.org/gnu/bash/bash-$_basever-patches/bash${_basever//.}-$(printf 
"%03d" $_p){,.sig})
+  done
+fi
+
+prepare() {
+  cd $pkgname-$_basever
+
+  for (( _p=1; _p<=$((10#${_patchlevel})); _p++ )); do
+msg "applying patch bash${_basever//.}-$(printf "%03d" $_p)"
+patch -p0 -i ../bash${_basever//.}-$(printf "%03d" $_p)
+  done
+}
+
+build() {
+  cd $pkgname-$_basever
+
+  
_bashconfig=(-DDEFAULT_PATH_VALUE=\'\"/usr/local/sbin:/usr/local/bin:/usr/bin\"\'
+   -DSTANDARD_UTILS_PATH=\'\"/usr/bin\"\'
+   -DSYS_BASHRC=\'\"/etc/bash.bashrc\"\'
+   -DSYS_BASH_LOGOUT=\'\"/etc/bash.bash_logout\"\'
+   -DNON_INTERACTIVE_LOGIN_SHELLS)
+  export CFLAGS="${CFLAGS} ${_bashconfig[@]}"
+
+  ./configure --prefix=/usr --with-curses --enable-readline \
+--without-bash-malloc --with-installed-readline
+  make
+}
+
+check() {
+  make -C $pkgname-$_basever check
+}
+
+package() {
+  make -C $pkgname-$_basever DESTDIR="$pkgdir" install
+  ln -s bash "$pkgdir/usr/bin/sh"
+
+  # system-wide configuration files
+  install -Dm644 system.bashrc "$pkgdir/etc/bash.bashrc"
+  install -Dm644 system.bash_logout "$pkgdir/etc/bash.bash_logout"
+
+  # user configuration file skeletons
+  install -dm755 "$pkgdir/etc/skel/"
+  install -m644 dot.bashrc "$pkgdir/etc/skel/.bashrc"
+  install -m644 dot.bash_profile "$pkgdir/etc/skel/.bash_profile"
+  install -m644 dot.bash_logout "$pkgdir/etc/skel/.bash_logout"
+}
+
+md5sums=('2b44b47b905be16f45709648f671820b'
+ 'SKIP'
+ '027d6bd8f5f6a06b75bb7698cb478089'
+ '2902e0fee7a9168f3a4fd2ccd60ff047'
+ '42f4400ed2314bd7519c020d0187edc5'
+ 'd8f3f334e72c0e30032eae1a1229aef1'
+ '472f536d7c9e8250dc4568ec4cfaf294'
+ 'b026862ab596a5883bb4f0d1077a3819'
+ 'SKIP'
+ '2f4a7787365790ae57f36b311701ea7e'
+ 'SKIP'
+ 'af7f2dd93fd5429fb5e9a642ff74f87d'
+ 'SKIP'
+ 'b60545b273bfa4e00a760f2c648bed9c'
+ 'SKIP'
+ '875a0bedf48b74e453e3997c84b5d8a4'
+ 'SKIP'
+ '4a8ee95adb72c3aba03d9e8c9f96ece6'
+ 'SKIP'
+ '411560d81fde2dc5b17b83c3f3b58c6f'
+ 'SKIP'
+ 'dd7cf7a784d1838822cad8d419315991'
+ 'SKIP'
+ 'c1b3e937cd6dccbb7fd772f32812a0da'
+ 'SKIP'
+ '19b41e73b03602d0e261c471b53e670c'
+ 'SKIP'
+ '414339330a3634137081a97f2c8615a8'
+ 'SKIP'
+ '1870268f62b907221b078ad109e1fa94'
+ 'SKIP'
+ '40d923af4b952b01983ed4c889ae2653'
+ 'SKIP'
+ '57857b22053c8167677e5e5ac5c6669b'
+ 'SKIP'
+ 'c4c6ea23d09a74eaa9385438e48fdf02'
+ 'SKIP'
+ 'a682ed6fa2c2e7a7c3ba6bdeada07fb5'
+ 'SKIP')

Copied: bash/repos/testing-x86_64/dot.bash_logout (from 

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

2019-11-13 Thread Evangelos Foutras via arch-commits
Date: Wednesday, November 13, 2019 @ 17:36:01
  Author: foutrelis
Revision: 368369

archrelease: copy trunk to staging-x86_64

Added:
  bash/repos/staging-x86_64/
  bash/repos/staging-x86_64/PKGBUILD
(from rev 368368, bash/trunk/PKGBUILD)
  bash/repos/staging-x86_64/dot.bash_logout
(from rev 368368, bash/trunk/dot.bash_logout)
  bash/repos/staging-x86_64/dot.bash_profile
(from rev 368368, bash/trunk/dot.bash_profile)
  bash/repos/staging-x86_64/dot.bashrc
(from rev 368368, bash/trunk/dot.bashrc)
  bash/repos/staging-x86_64/system.bash_logout
(from rev 368368, bash/trunk/system.bash_logout)
  bash/repos/staging-x86_64/system.bashrc
(from rev 368368, bash/trunk/system.bashrc)

+
 PKGBUILD   |  103 +++
 dot.bash_logout|3 +
 dot.bash_profile   |5 ++
 dot.bashrc |9 
 system.bash_logout |3 +
 system.bashrc  |   22 ++
 6 files changed, 145 insertions(+)

Copied: bash/repos/staging-x86_64/PKGBUILD (from rev 368368, 
bash/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2019-11-13 17:36:01 UTC (rev 368369)
@@ -0,0 +1,103 @@
+# Maintainer:  Bartłomiej Piotrowski 
+# Contributor: Allan McRae 
+# Contributor: Aaron Griffin 
+
+pkgname=bash
+_basever=5.0
+_patchlevel=011
+pkgver=${_basever}.${_patchlevel}
+pkgrel=2
+pkgdesc='The GNU Bourne Again shell'
+arch=(x86_64)
+license=(GPL)
+url='https://www.gnu.org/software/bash/bash.html'
+backup=(etc/bash.bash{rc,_logout} etc/skel/.bash{rc,_profile,_logout})
+depends=('readline>=7.0' glibc ncurses)
+optdepends=('bash-completion: for tab completion')
+provides=('sh')
+source=(https://ftp.gnu.org/gnu/bash/bash-$_basever.tar.gz{,.sig}
+dot.bashrc
+dot.bash_profile
+dot.bash_logout
+system.bashrc
+system.bash_logout)
+validpgpkeys=('7C0135FB088AAF6C66C650B9BB5869F064EA74AB') # Chet Ramey
+
+if [[ $((10#${_patchlevel})) -gt 0 ]]; then
+  for (( _p=1; _p<=$((10#${_patchlevel})); _p++ )); do
+source=(${source[@]} 
https://ftp.gnu.org/gnu/bash/bash-$_basever-patches/bash${_basever//.}-$(printf 
"%03d" $_p){,.sig})
+  done
+fi
+
+prepare() {
+  cd $pkgname-$_basever
+
+  for (( _p=1; _p<=$((10#${_patchlevel})); _p++ )); do
+msg "applying patch bash${_basever//.}-$(printf "%03d" $_p)"
+patch -p0 -i ../bash${_basever//.}-$(printf "%03d" $_p)
+  done
+}
+
+build() {
+  cd $pkgname-$_basever
+
+  
_bashconfig=(-DDEFAULT_PATH_VALUE=\'\"/usr/local/sbin:/usr/local/bin:/usr/bin\"\'
+   -DSTANDARD_UTILS_PATH=\'\"/usr/bin\"\'
+   -DSYS_BASHRC=\'\"/etc/bash.bashrc\"\'
+   -DSYS_BASH_LOGOUT=\'\"/etc/bash.bash_logout\"\'
+   -DNON_INTERACTIVE_LOGIN_SHELLS)
+  export CFLAGS="${CFLAGS} ${_bashconfig[@]}"
+
+  ./configure --prefix=/usr --with-curses --enable-readline \
+--without-bash-malloc --with-installed-readline
+  make
+}
+
+check() {
+  make -C $pkgname-$_basever check
+}
+
+package() {
+  make -C $pkgname-$_basever DESTDIR="$pkgdir" install
+  ln -s bash "$pkgdir/usr/bin/sh"
+
+  # system-wide configuration files
+  install -Dm644 system.bashrc "$pkgdir/etc/bash.bashrc"
+  install -Dm644 system.bash_logout "$pkgdir/etc/bash.bash_logout"
+
+  # user configuration file skeletons
+  install -dm755 "$pkgdir/etc/skel/"
+  install -m644 dot.bashrc "$pkgdir/etc/skel/.bashrc"
+  install -m644 dot.bash_profile "$pkgdir/etc/skel/.bash_profile"
+  install -m644 dot.bash_logout "$pkgdir/etc/skel/.bash_logout"
+}
+
+md5sums=('2b44b47b905be16f45709648f671820b'
+ 'SKIP'
+ '027d6bd8f5f6a06b75bb7698cb478089'
+ '2902e0fee7a9168f3a4fd2ccd60ff047'
+ '42f4400ed2314bd7519c020d0187edc5'
+ 'd8f3f334e72c0e30032eae1a1229aef1'
+ '472f536d7c9e8250dc4568ec4cfaf294'
+ 'b026862ab596a5883bb4f0d1077a3819'
+ 'SKIP'
+ '2f4a7787365790ae57f36b311701ea7e'
+ 'SKIP'
+ 'af7f2dd93fd5429fb5e9a642ff74f87d'
+ 'SKIP'
+ 'b60545b273bfa4e00a760f2c648bed9c'
+ 'SKIP'
+ '875a0bedf48b74e453e3997c84b5d8a4'
+ 'SKIP'
+ '4a8ee95adb72c3aba03d9e8c9f96ece6'
+ 'SKIP'
+ '411560d81fde2dc5b17b83c3f3b58c6f'
+ 'SKIP'
+ 'dd7cf7a784d1838822cad8d419315991'
+ 'SKIP'
+ 'c1b3e937cd6dccbb7fd772f32812a0da'
+ 'SKIP'
+ '19b41e73b03602d0e261c471b53e670c'
+ 'SKIP'
+ '414339330a3634137081a97f2c8615a8'
+ 'SKIP')

Copied: bash/repos/staging-x86_64/dot.bash_logout (from rev 368368, 
bash/trunk/dot.bash_logout)
===
--- staging-x86_64/dot.bash_logout  (rev 0)
+++ staging-x86_64/dot.bash_logout  2019-11-13 17:36:01 UTC (rev 368369)
@@ -0,0 +1,3 @@
+#
+# ~/.bash_logout
+#

Copied: 

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

2019-08-30 Thread Bartłomiej Piotrowski via arch-commits
Date: Friday, August 30, 2019 @ 06:06:18
  Author: bpiotrowski
Revision: 361410

archrelease: copy trunk to testing-x86_64

Added:
  bash/repos/testing-x86_64/
  bash/repos/testing-x86_64/PKGBUILD
(from rev 361409, bash/trunk/PKGBUILD)
  bash/repos/testing-x86_64/dot.bash_logout
(from rev 361409, bash/trunk/dot.bash_logout)
  bash/repos/testing-x86_64/dot.bash_profile
(from rev 361409, bash/trunk/dot.bash_profile)
  bash/repos/testing-x86_64/dot.bashrc
(from rev 361409, bash/trunk/dot.bashrc)
  bash/repos/testing-x86_64/system.bash_logout
(from rev 361409, bash/trunk/system.bash_logout)
  bash/repos/testing-x86_64/system.bashrc
(from rev 361409, bash/trunk/system.bashrc)

+
 PKGBUILD   |  104 +++
 dot.bash_logout|3 +
 dot.bash_profile   |5 ++
 dot.bashrc |9 
 system.bash_logout |3 +
 system.bashrc  |   22 ++
 6 files changed, 146 insertions(+)

Copied: bash/repos/testing-x86_64/PKGBUILD (from rev 361409, 
bash/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2019-08-30 06:06:18 UTC (rev 361410)
@@ -0,0 +1,104 @@
+# Maintainer:  Bartłomiej Piotrowski 
+# Contributor: Allan McRae 
+# Contributor: Aaron Griffin 
+
+pkgname=bash
+_basever=5.0
+_patchlevel=011
+pkgver=${_basever}.${_patchlevel}
+pkgrel=1
+pkgdesc='The GNU Bourne Again shell'
+arch=(x86_64)
+license=(GPL)
+url='https://www.gnu.org/software/bash/bash.html'
+groups=(base)
+backup=(etc/bash.bash{rc,_logout} etc/skel/.bash{rc,_profile,_logout})
+depends=('readline>=7.0' glibc ncurses)
+optdepends=('bash-completion: for tab completion')
+provides=('sh')
+source=(https://ftp.gnu.org/gnu/bash/bash-$_basever.tar.gz{,.sig}
+dot.bashrc
+dot.bash_profile
+dot.bash_logout
+system.bashrc
+system.bash_logout)
+validpgpkeys=('7C0135FB088AAF6C66C650B9BB5869F064EA74AB') # Chet Ramey
+
+if [[ $((10#${_patchlevel})) -gt 0 ]]; then
+  for (( _p=1; _p<=$((10#${_patchlevel})); _p++ )); do
+source=(${source[@]} 
https://ftp.gnu.org/gnu/bash/bash-$_basever-patches/bash${_basever//.}-$(printf 
"%03d" $_p){,.sig})
+  done
+fi
+
+prepare() {
+  cd $pkgname-$_basever
+
+  for (( _p=1; _p<=$((10#${_patchlevel})); _p++ )); do
+msg "applying patch bash${_basever//.}-$(printf "%03d" $_p)"
+patch -p0 -i ../bash${_basever//.}-$(printf "%03d" $_p)
+  done
+}
+
+build() {
+  cd $pkgname-$_basever
+
+  
_bashconfig=(-DDEFAULT_PATH_VALUE=\'\"/usr/local/sbin:/usr/local/bin:/usr/bin\"\'
+   -DSTANDARD_UTILS_PATH=\'\"/usr/bin\"\'
+   -DSYS_BASHRC=\'\"/etc/bash.bashrc\"\'
+   -DSYS_BASH_LOGOUT=\'\"/etc/bash.bash_logout\"\'
+   -DNON_INTERACTIVE_LOGIN_SHELLS)
+  export CFLAGS="${CFLAGS} ${_bashconfig[@]}"
+
+  ./configure --prefix=/usr --with-curses --enable-readline \
+--without-bash-malloc --with-installed-readline
+  make
+}
+
+check() {
+  make -C $pkgname-$_basever check
+}
+
+package() {
+  make -C $pkgname-$_basever DESTDIR="$pkgdir" install
+  ln -s bash "$pkgdir/usr/bin/sh"
+
+  # system-wide configuration files
+  install -Dm644 system.bashrc "$pkgdir/etc/bash.bashrc"
+  install -Dm644 system.bash_logout "$pkgdir/etc/bash.bash_logout"
+
+  # user configuration file skeletons
+  install -dm755 "$pkgdir/etc/skel/"
+  install -m644 dot.bashrc "$pkgdir/etc/skel/.bashrc"
+  install -m644 dot.bash_profile "$pkgdir/etc/skel/.bash_profile"
+  install -m644 dot.bash_logout "$pkgdir/etc/skel/.bash_logout"
+}
+
+md5sums=('2b44b47b905be16f45709648f671820b'
+ 'SKIP'
+ '027d6bd8f5f6a06b75bb7698cb478089'
+ '2902e0fee7a9168f3a4fd2ccd60ff047'
+ '42f4400ed2314bd7519c020d0187edc5'
+ 'd8f3f334e72c0e30032eae1a1229aef1'
+ '472f536d7c9e8250dc4568ec4cfaf294'
+ 'b026862ab596a5883bb4f0d1077a3819'
+ 'SKIP'
+ '2f4a7787365790ae57f36b311701ea7e'
+ 'SKIP'
+ 'af7f2dd93fd5429fb5e9a642ff74f87d'
+ 'SKIP'
+ 'b60545b273bfa4e00a760f2c648bed9c'
+ 'SKIP'
+ '875a0bedf48b74e453e3997c84b5d8a4'
+ 'SKIP'
+ '4a8ee95adb72c3aba03d9e8c9f96ece6'
+ 'SKIP'
+ '411560d81fde2dc5b17b83c3f3b58c6f'
+ 'SKIP'
+ 'dd7cf7a784d1838822cad8d419315991'
+ 'SKIP'
+ 'c1b3e937cd6dccbb7fd772f32812a0da'
+ 'SKIP'
+ '19b41e73b03602d0e261c471b53e670c'
+ 'SKIP'
+ '414339330a3634137081a97f2c8615a8'
+ 'SKIP')

Copied: bash/repos/testing-x86_64/dot.bash_logout (from rev 361409, 
bash/trunk/dot.bash_logout)
===
--- testing-x86_64/dot.bash_logout  (rev 0)
+++ testing-x86_64/dot.bash_logout  2019-08-30 06:06:18 UTC (rev 361410)
@@ -0,0 +1,3 @@
+#
+# ~/.bash_logout
+#


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

2019-08-17 Thread Bartłomiej Piotrowski via arch-commits
Date: Saturday, August 17, 2019 @ 20:16:56
  Author: bpiotrowski
Revision: 359940

archrelease: copy trunk to testing-x86_64

Added:
  bash/repos/testing-x86_64/
  bash/repos/testing-x86_64/PKGBUILD
(from rev 359939, bash/trunk/PKGBUILD)
  bash/repos/testing-x86_64/dot.bash_logout
(from rev 359939, bash/trunk/dot.bash_logout)
  bash/repos/testing-x86_64/dot.bash_profile
(from rev 359939, bash/trunk/dot.bash_profile)
  bash/repos/testing-x86_64/dot.bashrc
(from rev 359939, bash/trunk/dot.bashrc)
  bash/repos/testing-x86_64/system.bash_logout
(from rev 359939, bash/trunk/system.bash_logout)
  bash/repos/testing-x86_64/system.bashrc
(from rev 359939, bash/trunk/system.bashrc)

+
 PKGBUILD   |  100 +++
 dot.bash_logout|3 +
 dot.bash_profile   |5 ++
 dot.bashrc |9 
 system.bash_logout |3 +
 system.bashrc  |   22 +++
 6 files changed, 142 insertions(+)

Copied: bash/repos/testing-x86_64/PKGBUILD (from rev 359939, 
bash/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2019-08-17 20:16:56 UTC (rev 359940)
@@ -0,0 +1,100 @@
+# Maintainer:  Bartłomiej Piotrowski 
+# Contributor: Allan McRae 
+# Contributor: Aaron Griffin 
+
+pkgname=bash
+_basever=5.0
+_patchlevel=009
+pkgver=${_basever}.${_patchlevel}
+pkgrel=1
+pkgdesc='The GNU Bourne Again shell'
+arch=(x86_64)
+license=(GPL)
+url='https://www.gnu.org/software/bash/bash.html'
+groups=(base)
+backup=(etc/bash.bash{rc,_logout} etc/skel/.bash{rc,_profile,_logout})
+depends=('readline>=7.0' glibc ncurses)
+optdepends=('bash-completion: for tab completion')
+provides=('sh')
+source=(https://ftp.gnu.org/gnu/bash/bash-$_basever.tar.gz{,.sig}
+dot.bashrc
+dot.bash_profile
+dot.bash_logout
+system.bashrc
+system.bash_logout)
+validpgpkeys=('7C0135FB088AAF6C66C650B9BB5869F064EA74AB') # Chet Ramey
+
+if [[ $((10#${_patchlevel})) -gt 0 ]]; then
+  for (( _p=1; _p<=$((10#${_patchlevel})); _p++ )); do
+source=(${source[@]} 
https://ftp.gnu.org/gnu/bash/bash-$_basever-patches/bash${_basever//.}-$(printf 
"%03d" $_p){,.sig})
+  done
+fi
+
+prepare() {
+  cd $pkgname-$_basever
+
+  for (( _p=1; _p<=$((10#${_patchlevel})); _p++ )); do
+msg "applying patch bash${_basever//.}-$(printf "%03d" $_p)"
+patch -p0 -i ../bash${_basever//.}-$(printf "%03d" $_p)
+  done
+}
+
+build() {
+  cd $pkgname-$_basever
+
+  
_bashconfig=(-DDEFAULT_PATH_VALUE=\'\"/usr/local/sbin:/usr/local/bin:/usr/bin\"\'
+   -DSTANDARD_UTILS_PATH=\'\"/usr/bin\"\'
+   -DSYS_BASHRC=\'\"/etc/bash.bashrc\"\'
+   -DSYS_BASH_LOGOUT=\'\"/etc/bash.bash_logout\"\'
+   -DNON_INTERACTIVE_LOGIN_SHELLS)
+  export CFLAGS="${CFLAGS} ${_bashconfig[@]}"
+
+  ./configure --prefix=/usr --with-curses --enable-readline \
+--without-bash-malloc --with-installed-readline
+  make
+}
+
+check() {
+  make -C $pkgname-$_basever check
+}
+
+package() {
+  make -C $pkgname-$_basever DESTDIR="$pkgdir" install
+  ln -s bash "$pkgdir/usr/bin/sh"
+
+  # system-wide configuration files
+  install -Dm644 system.bashrc "$pkgdir/etc/bash.bashrc"
+  install -Dm644 system.bash_logout "$pkgdir/etc/bash.bash_logout"
+
+  # user configuration file skeletons
+  install -dm755 "$pkgdir/etc/skel/"
+  install -m644 dot.bashrc "$pkgdir/etc/skel/.bashrc"
+  install -m644 dot.bash_profile "$pkgdir/etc/skel/.bash_profile"
+  install -m644 dot.bash_logout "$pkgdir/etc/skel/.bash_logout"
+}
+
+md5sums=('2b44b47b905be16f45709648f671820b'
+ 'SKIP'
+ '027d6bd8f5f6a06b75bb7698cb478089'
+ '2902e0fee7a9168f3a4fd2ccd60ff047'
+ '42f4400ed2314bd7519c020d0187edc5'
+ 'd8f3f334e72c0e30032eae1a1229aef1'
+ '472f536d7c9e8250dc4568ec4cfaf294'
+ 'b026862ab596a5883bb4f0d1077a3819'
+ 'SKIP'
+ '2f4a7787365790ae57f36b311701ea7e'
+ 'SKIP'
+ 'af7f2dd93fd5429fb5e9a642ff74f87d'
+ 'SKIP'
+ 'b60545b273bfa4e00a760f2c648bed9c'
+ 'SKIP'
+ '875a0bedf48b74e453e3997c84b5d8a4'
+ 'SKIP'
+ '4a8ee95adb72c3aba03d9e8c9f96ece6'
+ 'SKIP'
+ '411560d81fde2dc5b17b83c3f3b58c6f'
+ 'SKIP'
+ 'dd7cf7a784d1838822cad8d419315991'
+ 'SKIP'
+ 'c1b3e937cd6dccbb7fd772f32812a0da'
+ 'SKIP')

Copied: bash/repos/testing-x86_64/dot.bash_logout (from rev 359939, 
bash/trunk/dot.bash_logout)
===
--- testing-x86_64/dot.bash_logout  (rev 0)
+++ testing-x86_64/dot.bash_logout  2019-08-17 20:16:56 UTC (rev 359940)
@@ -0,0 +1,3 @@
+#
+# ~/.bash_logout
+#

Copied: bash/repos/testing-x86_64/dot.bash_profile (from rev 359939, 
bash/trunk/dot.bash_profile)

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

2019-04-30 Thread Bartłomiej Piotrowski via arch-commits
Date: Tuesday, April 30, 2019 @ 09:18:21
  Author: bpiotrowski
Revision: 352304

archrelease: copy trunk to testing-x86_64

Added:
  bash/repos/testing-x86_64/
  bash/repos/testing-x86_64/PKGBUILD
(from rev 352303, bash/trunk/PKGBUILD)
  bash/repos/testing-x86_64/dot.bash_logout
(from rev 352303, bash/trunk/dot.bash_logout)
  bash/repos/testing-x86_64/dot.bash_profile
(from rev 352303, bash/trunk/dot.bash_profile)
  bash/repos/testing-x86_64/dot.bashrc
(from rev 352303, bash/trunk/dot.bashrc)
  bash/repos/testing-x86_64/system.bash_logout
(from rev 352303, bash/trunk/system.bash_logout)
  bash/repos/testing-x86_64/system.bashrc
(from rev 352303, bash/trunk/system.bashrc)

+
 PKGBUILD   |   96 +++
 dot.bash_logout|3 +
 dot.bash_profile   |5 ++
 dot.bashrc |9 
 system.bash_logout |3 +
 system.bashrc  |   22 +++
 6 files changed, 138 insertions(+)

Copied: bash/repos/testing-x86_64/PKGBUILD (from rev 352303, 
bash/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2019-04-30 09:18:21 UTC (rev 352304)
@@ -0,0 +1,96 @@
+# Maintainer:  Bartłomiej Piotrowski 
+# Contributor: Allan McRae 
+# Contributor: Aaron Griffin 
+
+pkgname=bash
+_basever=5.0
+_patchlevel=007
+pkgver=${_basever}.${_patchlevel}
+pkgrel=1
+pkgdesc='The GNU Bourne Again shell'
+arch=(x86_64)
+license=(GPL)
+url='http://www.gnu.org/software/bash/bash.html'
+groups=(base)
+backup=(etc/bash.bash{rc,_logout} etc/skel/.bash{rc,_profile,_logout})
+depends=('readline>=7.0' glibc ncurses)
+optdepends=('bash-completion: for tab completion')
+provides=('sh')
+source=(https://ftp.gnu.org/gnu/bash/bash-$_basever.tar.gz{,.sig}
+dot.bashrc
+dot.bash_profile
+dot.bash_logout
+system.bashrc
+system.bash_logout)
+validpgpkeys=('7C0135FB088AAF6C66C650B9BB5869F064EA74AB') # Chet Ramey
+
+if [[ $((10#${_patchlevel})) -gt 0 ]]; then
+  for (( _p=1; _p<=$((10#${_patchlevel})); _p++ )); do
+source=(${source[@]} 
https://ftp.gnu.org/gnu/bash/bash-$_basever-patches/bash${_basever//.}-$(printf 
"%03d" $_p){,.sig})
+  done
+fi
+
+prepare() {
+  cd $pkgname-$_basever
+
+  for (( _p=1; _p<=$((10#${_patchlevel})); _p++ )); do
+msg "applying patch bash${_basever//.}-$(printf "%03d" $_p)"
+patch -p0 -i ../bash${_basever//.}-$(printf "%03d" $_p)
+  done
+}
+
+build() {
+  cd $pkgname-$_basever
+
+  
_bashconfig=(-DDEFAULT_PATH_VALUE=\'\"/usr/local/sbin:/usr/local/bin:/usr/bin\"\'
+   -DSTANDARD_UTILS_PATH=\'\"/usr/bin\"\'
+   -DSYS_BASHRC=\'\"/etc/bash.bashrc\"\'
+   -DSYS_BASH_LOGOUT=\'\"/etc/bash.bash_logout\"\'
+   -DNON_INTERACTIVE_LOGIN_SHELLS)
+  export CFLAGS="${CFLAGS} ${_bashconfig[@]}"
+
+  ./configure --prefix=/usr --with-curses --enable-readline \
+--without-bash-malloc --with-installed-readline
+  make
+}
+
+check() {
+  make -C $pkgname-$_basever check
+}
+
+package() {
+  make -C $pkgname-$_basever DESTDIR="$pkgdir" install
+  ln -s bash "$pkgdir/usr/bin/sh"
+
+  # system-wide configuration files
+  install -Dm644 system.bashrc "$pkgdir/etc/bash.bashrc"
+  install -Dm644 system.bash_logout "$pkgdir/etc/bash.bash_logout"
+
+  # user configuration file skeletons
+  install -dm755 "$pkgdir/etc/skel/"
+  install -m644 dot.bashrc "$pkgdir/etc/skel/.bashrc"
+  install -m644 dot.bash_profile "$pkgdir/etc/skel/.bash_profile"
+  install -m644 dot.bash_logout "$pkgdir/etc/skel/.bash_logout"
+}
+
+md5sums=('2b44b47b905be16f45709648f671820b'
+ 'SKIP'
+ '027d6bd8f5f6a06b75bb7698cb478089'
+ '2902e0fee7a9168f3a4fd2ccd60ff047'
+ '42f4400ed2314bd7519c020d0187edc5'
+ 'd8f3f334e72c0e30032eae1a1229aef1'
+ '472f536d7c9e8250dc4568ec4cfaf294'
+ 'b026862ab596a5883bb4f0d1077a3819'
+ 'SKIP'
+ '2f4a7787365790ae57f36b311701ea7e'
+ 'SKIP'
+ 'af7f2dd93fd5429fb5e9a642ff74f87d'
+ 'SKIP'
+ 'b60545b273bfa4e00a760f2c648bed9c'
+ 'SKIP'
+ '875a0bedf48b74e453e3997c84b5d8a4'
+ 'SKIP'
+ '4a8ee95adb72c3aba03d9e8c9f96ece6'
+ 'SKIP'
+ '411560d81fde2dc5b17b83c3f3b58c6f'
+ 'SKIP')

Copied: bash/repos/testing-x86_64/dot.bash_logout (from rev 352303, 
bash/trunk/dot.bash_logout)
===
--- testing-x86_64/dot.bash_logout  (rev 0)
+++ testing-x86_64/dot.bash_logout  2019-04-30 09:18:21 UTC (rev 352304)
@@ -0,0 +1,3 @@
+#
+# ~/.bash_logout
+#

Copied: bash/repos/testing-x86_64/dot.bash_profile (from rev 352303, 
bash/trunk/dot.bash_profile)
===
--- testing-x86_64/dot.bash_profile (rev 0)
+++ 

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

2019-03-30 Thread Bartłomiej Piotrowski via arch-commits
Date: Saturday, March 30, 2019 @ 17:39:22
  Author: bpiotrowski
Revision: 349455

archrelease: copy trunk to testing-x86_64

Added:
  bash/repos/testing-x86_64/
  bash/repos/testing-x86_64/PKGBUILD
(from rev 349454, bash/trunk/PKGBUILD)
  bash/repos/testing-x86_64/dot.bash_logout
(from rev 349454, bash/trunk/dot.bash_logout)
  bash/repos/testing-x86_64/dot.bash_profile
(from rev 349454, bash/trunk/dot.bash_profile)
  bash/repos/testing-x86_64/dot.bashrc
(from rev 349454, bash/trunk/dot.bashrc)
  bash/repos/testing-x86_64/system.bash_logout
(from rev 349454, bash/trunk/system.bash_logout)
  bash/repos/testing-x86_64/system.bashrc
(from rev 349454, bash/trunk/system.bashrc)

+
 PKGBUILD   |   88 +++
 dot.bash_logout|3 +
 dot.bash_profile   |5 ++
 dot.bashrc |9 +
 system.bash_logout |3 +
 system.bashrc  |   22 
 6 files changed, 130 insertions(+)

Copied: bash/repos/testing-x86_64/PKGBUILD (from rev 349454, 
bash/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2019-03-30 17:39:22 UTC (rev 349455)
@@ -0,0 +1,88 @@
+# Maintainer:  Bartłomiej Piotrowski 
+# Contributor: Allan McRae 
+# Contributor: Aaron Griffin 
+
+pkgname=bash
+_basever=5.0
+_patchlevel=003
+pkgver=${_basever}.${_patchlevel}
+pkgrel=1
+pkgdesc='The GNU Bourne Again shell'
+arch=(x86_64)
+license=(GPL)
+url='http://www.gnu.org/software/bash/bash.html'
+groups=(base)
+backup=(etc/bash.bash{rc,_logout} etc/skel/.bash{rc,_profile,_logout})
+depends=('readline>=7.0' glibc ncurses)
+optdepends=('bash-completion: for tab completion')
+provides=('sh')
+source=(https://ftp.gnu.org/gnu/bash/bash-$_basever.tar.gz{,.sig}
+dot.bashrc
+dot.bash_profile
+dot.bash_logout
+system.bashrc
+system.bash_logout)
+validpgpkeys=('7C0135FB088AAF6C66C650B9BB5869F064EA74AB') # Chet Ramey
+
+if [[ $((10#${_patchlevel})) -gt 0 ]]; then
+  for (( _p=1; _p<=$((10#${_patchlevel})); _p++ )); do
+source=(${source[@]} 
https://ftp.gnu.org/gnu/bash/bash-$_basever-patches/bash${_basever//.}-$(printf 
"%03d" $_p){,.sig})
+  done
+fi
+
+prepare() {
+  cd $pkgname-$_basever
+
+  for (( _p=1; _p<=$((10#${_patchlevel})); _p++ )); do
+msg "applying patch bash${_basever//.}-$(printf "%03d" $_p)"
+patch -p0 -i ../bash${_basever//.}-$(printf "%03d" $_p)
+  done
+}
+
+build() {
+  cd $pkgname-$_basever
+
+  
_bashconfig=(-DDEFAULT_PATH_VALUE=\'\"/usr/local/sbin:/usr/local/bin:/usr/bin\"\'
+   -DSTANDARD_UTILS_PATH=\'\"/usr/bin\"\'
+   -DSYS_BASHRC=\'\"/etc/bash.bashrc\"\'
+   -DSYS_BASH_LOGOUT=\'\"/etc/bash.bash_logout\"\'
+   -DNON_INTERACTIVE_LOGIN_SHELLS)
+  export CFLAGS="${CFLAGS} ${_bashconfig[@]}"
+
+  ./configure --prefix=/usr --with-curses --enable-readline \
+--without-bash-malloc --with-installed-readline
+  make
+}
+
+check() {
+  make -C $pkgname-$_basever check
+}
+
+package() {
+  make -C $pkgname-$_basever DESTDIR="$pkgdir" install
+  ln -s bash "$pkgdir/usr/bin/sh"
+
+  # system-wide configuration files
+  install -Dm644 system.bashrc "$pkgdir/etc/bash.bashrc"
+  install -Dm644 system.bash_logout "$pkgdir/etc/bash.bash_logout"
+
+  # user configuration file skeletons
+  install -dm755 "$pkgdir/etc/skel/"
+  install -m644 dot.bashrc "$pkgdir/etc/skel/.bashrc"
+  install -m644 dot.bash_profile "$pkgdir/etc/skel/.bash_profile"
+  install -m644 dot.bash_logout "$pkgdir/etc/skel/.bash_logout"
+}
+
+md5sums=('2b44b47b905be16f45709648f671820b'
+ 'SKIP'
+ '027d6bd8f5f6a06b75bb7698cb478089'
+ '2902e0fee7a9168f3a4fd2ccd60ff047'
+ '42f4400ed2314bd7519c020d0187edc5'
+ 'd8f3f334e72c0e30032eae1a1229aef1'
+ '472f536d7c9e8250dc4568ec4cfaf294'
+ 'b026862ab596a5883bb4f0d1077a3819'
+ 'SKIP'
+ '2f4a7787365790ae57f36b311701ea7e'
+ 'SKIP'
+ 'af7f2dd93fd5429fb5e9a642ff74f87d'
+ 'SKIP')

Copied: bash/repos/testing-x86_64/dot.bash_logout (from rev 349454, 
bash/trunk/dot.bash_logout)
===
--- testing-x86_64/dot.bash_logout  (rev 0)
+++ testing-x86_64/dot.bash_logout  2019-03-30 17:39:22 UTC (rev 349455)
@@ -0,0 +1,3 @@
+#
+# ~/.bash_logout
+#

Copied: bash/repos/testing-x86_64/dot.bash_profile (from rev 349454, 
bash/trunk/dot.bash_profile)
===
--- testing-x86_64/dot.bash_profile (rev 0)
+++ testing-x86_64/dot.bash_profile 2019-03-30 17:39:22 UTC (rev 349455)
@@ -0,0 +1,5 @@
+#
+# ~/.bash_profile
+#
+
+[[ -f ~/.bashrc ]] && . ~/.bashrc

Copied: bash/repos/testing-x86_64/dot.bashrc (from rev 349454, 
bash/trunk/dot.bashrc)

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

2019-03-08 Thread Bartłomiej Piotrowski via arch-commits
Date: Saturday, March 9, 2019 @ 07:16:51
  Author: bpiotrowski
Revision: 347468

archrelease: copy trunk to testing-x86_64

Added:
  bash/repos/testing-x86_64/
  bash/repos/testing-x86_64/PKGBUILD
(from rev 347467, bash/trunk/PKGBUILD)
  bash/repos/testing-x86_64/dot.bash_logout
(from rev 347467, bash/trunk/dot.bash_logout)
  bash/repos/testing-x86_64/dot.bash_profile
(from rev 347467, bash/trunk/dot.bash_profile)
  bash/repos/testing-x86_64/dot.bashrc
(from rev 347467, bash/trunk/dot.bashrc)
  bash/repos/testing-x86_64/system.bash_logout
(from rev 347467, bash/trunk/system.bash_logout)
  bash/repos/testing-x86_64/system.bashrc
(from rev 347467, bash/trunk/system.bashrc)

+
 PKGBUILD   |   86 +++
 dot.bash_logout|3 +
 dot.bash_profile   |5 ++
 dot.bashrc |9 +
 system.bash_logout |3 +
 system.bashrc  |   22 +
 6 files changed, 128 insertions(+)

Copied: bash/repos/testing-x86_64/PKGBUILD (from rev 347467, 
bash/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2019-03-09 07:16:51 UTC (rev 347468)
@@ -0,0 +1,86 @@
+# Maintainer:  Bartłomiej Piotrowski 
+# Contributor: Allan McRae 
+# Contributor: Aaron Griffin 
+
+pkgname=bash
+_basever=5.0
+_patchlevel=002
+pkgver=${_basever}.${_patchlevel}
+pkgrel=1
+pkgdesc='The GNU Bourne Again shell'
+arch=(x86_64)
+license=(GPL)
+url='http://www.gnu.org/software/bash/bash.html'
+groups=(base)
+backup=(etc/bash.bash{rc,_logout} etc/skel/.bash{rc,_profile,_logout})
+depends=('readline>=7.0' glibc ncurses)
+optdepends=('bash-completion: for tab completion')
+provides=('sh')
+source=(https://ftp.gnu.org/gnu/bash/bash-$_basever.tar.gz{,.sig}
+dot.bashrc
+dot.bash_profile
+dot.bash_logout
+system.bashrc
+system.bash_logout)
+validpgpkeys=('7C0135FB088AAF6C66C650B9BB5869F064EA74AB') # Chet Ramey
+
+if [[ $((10#${_patchlevel})) -gt 0 ]]; then
+  for (( _p=1; _p<=$((10#${_patchlevel})); _p++ )); do
+source=(${source[@]} 
https://ftp.gnu.org/gnu/bash/bash-$_basever-patches/bash${_basever//.}-$(printf 
"%03d" $_p){,.sig})
+  done
+fi
+
+prepare() {
+  cd $pkgname-$_basever
+
+  for (( _p=1; _p<=$((10#${_patchlevel})); _p++ )); do
+msg "applying patch bash${_basever//.}-$(printf "%03d" $_p)"
+patch -p0 -i ../bash${_basever//.}-$(printf "%03d" $_p)
+  done
+}
+
+build() {
+  cd $pkgname-$_basever
+
+  
_bashconfig=(-DDEFAULT_PATH_VALUE=\'\"/usr/local/sbin:/usr/local/bin:/usr/bin\"\'
+   -DSTANDARD_UTILS_PATH=\'\"/usr/bin\"\'
+   -DSYS_BASHRC=\'\"/etc/bash.bashrc\"\'
+   -DSYS_BASH_LOGOUT=\'\"/etc/bash.bash_logout\"\'
+   -DNON_INTERACTIVE_LOGIN_SHELLS)
+  export CFLAGS="${CFLAGS} ${_bashconfig[@]}"
+
+  ./configure --prefix=/usr --with-curses --enable-readline \
+--without-bash-malloc --with-installed-readline
+  make
+}
+
+check() {
+  make -C $pkgname-$_basever check
+}
+
+package() {
+  make -C $pkgname-$_basever DESTDIR="$pkgdir" install
+  ln -s bash "$pkgdir/usr/bin/sh"
+
+  # system-wide configuration files
+  install -Dm644 system.bashrc "$pkgdir/etc/bash.bashrc"
+  install -Dm644 system.bash_logout "$pkgdir/etc/bash.bash_logout"
+
+  # user configuration file skeletons
+  install -dm755 "$pkgdir/etc/skel/"
+  install -m644 dot.bashrc "$pkgdir/etc/skel/.bashrc"
+  install -m644 dot.bash_profile "$pkgdir/etc/skel/.bash_profile"
+  install -m644 dot.bash_logout "$pkgdir/etc/skel/.bash_logout"
+}
+
+md5sums=('2b44b47b905be16f45709648f671820b'
+ 'SKIP'
+ '027d6bd8f5f6a06b75bb7698cb478089'
+ '2902e0fee7a9168f3a4fd2ccd60ff047'
+ '42f4400ed2314bd7519c020d0187edc5'
+ 'd8f3f334e72c0e30032eae1a1229aef1'
+ '472f536d7c9e8250dc4568ec4cfaf294'
+ 'b026862ab596a5883bb4f0d1077a3819'
+ 'SKIP'
+ '2f4a7787365790ae57f36b311701ea7e'
+ 'SKIP')

Copied: bash/repos/testing-x86_64/dot.bash_logout (from rev 347467, 
bash/trunk/dot.bash_logout)
===
--- testing-x86_64/dot.bash_logout  (rev 0)
+++ testing-x86_64/dot.bash_logout  2019-03-09 07:16:51 UTC (rev 347468)
@@ -0,0 +1,3 @@
+#
+# ~/.bash_logout
+#

Copied: bash/repos/testing-x86_64/dot.bash_profile (from rev 347467, 
bash/trunk/dot.bash_profile)
===
--- testing-x86_64/dot.bash_profile (rev 0)
+++ testing-x86_64/dot.bash_profile 2019-03-09 07:16:51 UTC (rev 347468)
@@ -0,0 +1,5 @@
+#
+# ~/.bash_profile
+#
+
+[[ -f ~/.bashrc ]] && . ~/.bashrc

Copied: bash/repos/testing-x86_64/dot.bashrc (from rev 347467, 
bash/trunk/dot.bashrc)
===
--- 

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

2019-01-10 Thread Bartłomiej Piotrowski via arch-commits
Date: Thursday, January 10, 2019 @ 14:42:14
  Author: bpiotrowski
Revision: 343323

archrelease: copy trunk to staging-x86_64

Added:
  bash/repos/staging-x86_64/
  bash/repos/staging-x86_64/PKGBUILD
(from rev 343322, bash/trunk/PKGBUILD)
  bash/repos/staging-x86_64/dot.bash_logout
(from rev 343322, bash/trunk/dot.bash_logout)
  bash/repos/staging-x86_64/dot.bash_profile
(from rev 343322, bash/trunk/dot.bash_profile)
  bash/repos/staging-x86_64/dot.bashrc
(from rev 343322, bash/trunk/dot.bashrc)
  bash/repos/staging-x86_64/system.bash_logout
(from rev 343322, bash/trunk/system.bash_logout)
  bash/repos/staging-x86_64/system.bashrc
(from rev 343322, bash/trunk/system.bashrc)

+
 PKGBUILD   |   82 +++
 dot.bash_logout|3 +
 dot.bash_profile   |5 +++
 dot.bashrc |9 +
 system.bash_logout |3 +
 system.bashrc  |   22 +
 6 files changed, 124 insertions(+)

Copied: bash/repos/staging-x86_64/PKGBUILD (from rev 343322, 
bash/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2019-01-10 14:42:14 UTC (rev 343323)
@@ -0,0 +1,82 @@
+# Maintainer:  Bartłomiej Piotrowski 
+# Contributor: Allan McRae 
+# Contributor: Aaron Griffin 
+
+pkgname=bash
+_basever=5.0
+_patchlevel=0
+pkgver=${_basever}.${_patchlevel}
+pkgrel=1
+pkgdesc='The GNU Bourne Again shell'
+arch=(x86_64)
+license=(GPL)
+url='http://www.gnu.org/software/bash/bash.html'
+groups=(base)
+backup=(etc/bash.bash{rc,_logout} etc/skel/.bash{rc,_profile,_logout})
+depends=('readline>=7.0' glibc ncurses)
+optdepends=('bash-completion: for tab completion')
+provides=('sh')
+source=(https://ftp.gnu.org/gnu/bash/bash-$_basever.tar.gz{,.sig}
+dot.bashrc
+dot.bash_profile
+dot.bash_logout
+system.bashrc
+system.bash_logout)
+validpgpkeys=('7C0135FB088AAF6C66C650B9BB5869F064EA74AB') # Chet Ramey
+
+if [[ $((10#${_patchlevel})) -gt 0 ]]; then
+  for (( _p=1; _p<=$((10#${_patchlevel})); _p++ )); do
+source=(${source[@]} 
https://ftp.gnu.org/gnu/bash/bash-$_basever-patches/bash${_basever//.}-$(printf 
"%03d" $_p){,.sig})
+  done
+fi
+
+prepare() {
+  cd $pkgname-$_basever
+
+  for (( _p=1; _p<=$((10#${_patchlevel})); _p++ )); do
+msg "applying patch bash${_basever//.}-$(printf "%03d" $_p)"
+patch -p0 -i ../bash${_basever//.}-$(printf "%03d" $_p)
+  done
+}
+
+build() {
+  cd $pkgname-$_basever
+
+  
_bashconfig=(-DDEFAULT_PATH_VALUE=\'\"/usr/local/sbin:/usr/local/bin:/usr/bin\"\'
+   -DSTANDARD_UTILS_PATH=\'\"/usr/bin\"\'
+   -DSYS_BASHRC=\'\"/etc/bash.bashrc\"\'
+   -DSYS_BASH_LOGOUT=\'\"/etc/bash.bash_logout\"\'
+   -DNON_INTERACTIVE_LOGIN_SHELLS)
+  export CFLAGS="${CFLAGS} ${_bashconfig[@]}"
+
+  ./configure --prefix=/usr --with-curses --enable-readline \
+--without-bash-malloc --with-installed-readline
+  make
+}
+
+check() {
+  make -C $pkgname-$_basever check
+}
+
+package() {
+  make -C $pkgname-$_basever DESTDIR="$pkgdir" install
+  ln -s bash "$pkgdir/usr/bin/sh"
+
+  # system-wide configuration files
+  install -Dm644 system.bashrc "$pkgdir/etc/bash.bashrc"
+  install -Dm644 system.bash_logout "$pkgdir/etc/bash.bash_logout"
+
+  # user configuration file skeletons
+  install -dm755 "$pkgdir/etc/skel/"
+  install -m644 dot.bashrc "$pkgdir/etc/skel/.bashrc"
+  install -m644 dot.bash_profile "$pkgdir/etc/skel/.bash_profile"
+  install -m644 dot.bash_logout "$pkgdir/etc/skel/.bash_logout"
+}
+
+md5sums=('2b44b47b905be16f45709648f671820b'
+ 'SKIP'
+ '027d6bd8f5f6a06b75bb7698cb478089'
+ '2902e0fee7a9168f3a4fd2ccd60ff047'
+ '42f4400ed2314bd7519c020d0187edc5'
+ 'd8f3f334e72c0e30032eae1a1229aef1'
+ '472f536d7c9e8250dc4568ec4cfaf294')

Copied: bash/repos/staging-x86_64/dot.bash_logout (from rev 343322, 
bash/trunk/dot.bash_logout)
===
--- staging-x86_64/dot.bash_logout  (rev 0)
+++ staging-x86_64/dot.bash_logout  2019-01-10 14:42:14 UTC (rev 343323)
@@ -0,0 +1,3 @@
+#
+# ~/.bash_logout
+#

Copied: bash/repos/staging-x86_64/dot.bash_profile (from rev 343322, 
bash/trunk/dot.bash_profile)
===
--- staging-x86_64/dot.bash_profile (rev 0)
+++ staging-x86_64/dot.bash_profile 2019-01-10 14:42:14 UTC (rev 343323)
@@ -0,0 +1,5 @@
+#
+# ~/.bash_profile
+#
+
+[[ -f ~/.bashrc ]] && . ~/.bashrc

Copied: bash/repos/staging-x86_64/dot.bashrc (from rev 343322, 
bash/trunk/dot.bashrc)
===
--- staging-x86_64/dot.bashrc   (rev 0)
+++ staging-x86_64/dot.bashrc   2019-01-10 14:42:14 UTC (rev 

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

2018-06-04 Thread Bartłomiej Piotrowski via arch-commits
Date: Monday, June 4, 2018 @ 08:58:34
  Author: bpiotrowski
Revision: 325767

archrelease: copy trunk to testing-x86_64

Added:
  bash/repos/testing-x86_64/
  bash/repos/testing-x86_64/PKGBUILD
(from rev 325766, bash/trunk/PKGBUILD)
  bash/repos/testing-x86_64/dot.bash_logout
(from rev 325766, bash/trunk/dot.bash_logout)
  bash/repos/testing-x86_64/dot.bash_profile
(from rev 325766, bash/trunk/dot.bash_profile)
  bash/repos/testing-x86_64/dot.bashrc
(from rev 325766, bash/trunk/dot.bashrc)
  bash/repos/testing-x86_64/system.bash_logout
(from rev 325766, bash/trunk/system.bash_logout)
  bash/repos/testing-x86_64/system.bashrc
(from rev 325766, bash/trunk/system.bashrc)

+
 PKGBUILD   |  129 +++
 dot.bash_logout|3 +
 dot.bash_profile   |5 +
 dot.bashrc |9 +++
 system.bash_logout |3 +
 system.bashrc  |   22 
 6 files changed, 171 insertions(+)

Copied: bash/repos/testing-x86_64/PKGBUILD (from rev 325766, 
bash/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2018-06-04 08:58:34 UTC (rev 325767)
@@ -0,0 +1,129 @@
+# $Id$
+# Maintainer:  Bartłomiej Piotrowski 
+# Contributor: Allan McRae 
+# Contributor: Aaron Griffin 
+
+pkgname=bash
+_basever=4.4
+_patchlevel=023
+pkgver=${_basever}.${_patchlevel}
+pkgrel=1
+pkgdesc='The GNU Bourne Again shell'
+arch=(x86_64)
+license=(GPL)
+url='http://www.gnu.org/software/bash/bash.html'
+groups=(base)
+backup=(etc/bash.bash{rc,_logout} etc/skel/.bash{rc,_profile,_logout})
+depends=('readline>=7.0' glibc ncurses)
+optdepends=('bash-completion: for tab completion')
+provides=('sh')
+source=(https://ftp.gnu.org/gnu/bash/bash-$_basever.tar.gz{,.sig}
+dot.bashrc
+dot.bash_profile
+dot.bash_logout
+system.bashrc
+system.bash_logout)
+validpgpkeys=('7C0135FB088AAF6C66C650B9BB5869F064EA74AB') # Chet Ramey
+
+if [[ $((10#${_patchlevel})) -gt 0 ]]; then
+  for (( _p=1; _p<=$((10#${_patchlevel})); _p++ )); do
+source=(${source[@]} 
https://ftp.gnu.org/gnu/bash/bash-$_basever-patches/bash${_basever//.}-$(printf 
"%03d" $_p){,.sig})
+  done
+fi
+
+prepare() {
+  cd $pkgname-$_basever
+
+  for (( _p=1; _p<=$((10#${_patchlevel})); _p++ )); do
+msg "applying patch bash${_basever//.}-$(printf "%03d" $_p)"
+patch -p0 -i ../bash${_basever//.}-$(printf "%03d" $_p)
+  done
+}
+
+build() {
+  cd $pkgname-$_basever
+
+  
_bashconfig=(-DDEFAULT_PATH_VALUE=\'\"/usr/local/sbin:/usr/local/bin:/usr/bin\"\'
+   -DSTANDARD_UTILS_PATH=\'\"/usr/bin\"\'
+   -DSYS_BASHRC=\'\"/etc/bash.bashrc\"\'
+   -DSYS_BASH_LOGOUT=\'\"/etc/bash.bash_logout\"\'
+   -DNON_INTERACTIVE_LOGIN_SHELLS)
+  export CFLAGS="${CFLAGS} ${_bashconfig[@]}"
+
+  ./configure --prefix=/usr --with-curses --enable-readline \
+--without-bash-malloc --with-installed-readline
+  make
+}
+
+check() {
+  make -C $pkgname-$_basever check
+}
+
+package() {
+  make -C $pkgname-$_basever DESTDIR="$pkgdir" install
+  ln -s bash "$pkgdir/usr/bin/sh"
+
+  # system-wide configuration files
+  install -Dm644 system.bashrc "$pkgdir/etc/bash.bashrc"
+  install -Dm644 system.bash_logout "$pkgdir/etc/bash.bash_logout"
+
+  # user configuration file skeletons
+  install -dm755 "$pkgdir/etc/skel/"
+  install -m644 dot.bashrc "$pkgdir/etc/skel/.bashrc"
+  install -m644 dot.bash_profile "$pkgdir/etc/skel/.bash_profile"
+  install -m644 dot.bash_logout "$pkgdir/etc/skel/.bash_logout"
+}
+
+md5sums=('14a7c95ac23705559b6f477dfe25'
+ 'SKIP'
+ '027d6bd8f5f6a06b75bb7698cb478089'
+ '2902e0fee7a9168f3a4fd2ccd60ff047'
+ '42f4400ed2314bd7519c020d0187edc5'
+ 'd8f3f334e72c0e30032eae1a1229aef1'
+ '472f536d7c9e8250dc4568ec4cfaf294'
+ '817d01a6c0af6f79308a8b7b649e53d8'
+ 'SKIP'
+ '765e14cff12c7284009772e8e24f2fe0'
+ 'SKIP'
+ '49e7da93bf07f510a2eb6bb43ac3e5a2'
+ 'SKIP'
+ '4557d674ab5831a5fa98052ab19edaf4'
+ 'SKIP'
+ 'cce96dd77cdd1d293beec10848f6cbb5'
+ 'SKIP'
+ 'd3379f8d8abce5c6ee338f931ad008d5'
+ 'SKIP'
+ 'ec38c76ca439ca7f9c178e9baede84fc'
+ 'SKIP'
+ 'e0ba18c1e3b94f905da9b5bf9d38b58b'
+ 'SKIP'
+ 'e952d4f44e612048930c559d90eb99bb'
+ 'SKIP'
+ '57b5b35955d68f9a09dbef6b86d2c782'
+ 'SKIP'
+ 'cc896e1fa696b93ded568e557e2392d5'
+ 'SKIP'
+ 'fa47fbfa56fb7e9e5367f19a9df5fc9e'
+ 'SKIP'
+ '5e6a20166efe166267972cc78025417b'
+ 'SKIP'
+ '00a8877a8787dbd78d97767db1115b0a'
+ 'SKIP'
+ '2409586fd19e3104197ead86ce549eca'
+ 'SKIP'
+ '4b31183db086daf8be8943d7f7ea7526'
+ 'SKIP'
+ 'c15c8844f1eb87bdbcde71417c9bd342'
+  

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

2018-02-06 Thread Bartłomiej Piotrowski via arch-commits
Date: Wednesday, February 7, 2018 @ 07:33:28
  Author: bpiotrowski
Revision: 316140

archrelease: copy trunk to testing-x86_64

Added:
  bash/repos/testing-x86_64/
  bash/repos/testing-x86_64/PKGBUILD
(from rev 316139, bash/trunk/PKGBUILD)
  bash/repos/testing-x86_64/dot.bash_logout
(from rev 316139, bash/trunk/dot.bash_logout)
  bash/repos/testing-x86_64/dot.bash_profile
(from rev 316139, bash/trunk/dot.bash_profile)
  bash/repos/testing-x86_64/dot.bashrc
(from rev 316139, bash/trunk/dot.bashrc)
  bash/repos/testing-x86_64/system.bash_logout
(from rev 316139, bash/trunk/system.bash_logout)
  bash/repos/testing-x86_64/system.bashrc
(from rev 316139, bash/trunk/system.bashrc)

+
 PKGBUILD   |  121 +++
 dot.bash_logout|3 +
 dot.bash_profile   |5 ++
 dot.bashrc |9 +++
 system.bash_logout |3 +
 system.bashrc  |   22 +
 6 files changed, 163 insertions(+)

Copied: bash/repos/testing-x86_64/PKGBUILD (from rev 316139, 
bash/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2018-02-07 07:33:28 UTC (rev 316140)
@@ -0,0 +1,121 @@
+# $Id$
+# Maintainer:  Bartłomiej Piotrowski 
+# Contributor: Allan McRae 
+# Contributor: Aaron Griffin 
+
+pkgname=bash
+_basever=4.4
+_patchlevel=019
+pkgver=${_basever}.${_patchlevel}
+pkgrel=1
+pkgdesc='The GNU Bourne Again shell'
+arch=(x86_64)
+license=(GPL)
+url='http://www.gnu.org/software/bash/bash.html'
+groups=(base)
+backup=(etc/bash.bash{rc,_logout} etc/skel/.bash{rc,_profile,_logout})
+depends=('readline>=7.0' glibc ncurses)
+optdepends=('bash-completion: for tab completion')
+provides=('sh')
+source=(https://ftp.gnu.org/gnu/bash/bash-$_basever.tar.gz{,.sig}
+dot.bashrc
+dot.bash_profile
+dot.bash_logout
+system.bashrc
+system.bash_logout)
+validpgpkeys=('7C0135FB088AAF6C66C650B9BB5869F064EA74AB') # Chet Ramey
+
+if [[ $((10#${_patchlevel})) -gt 0 ]]; then
+  for (( _p=1; _p<=$((10#${_patchlevel})); _p++ )); do
+source=(${source[@]} 
https://ftp.gnu.org/gnu/bash/bash-$_basever-patches/bash${_basever//.}-$(printf 
"%03d" $_p){,.sig})
+  done
+fi
+
+prepare() {
+  cd $pkgname-$_basever
+
+  for (( _p=1; _p<=$((10#${_patchlevel})); _p++ )); do
+msg "applying patch bash${_basever//.}-$(printf "%03d" $_p)"
+patch -p0 -i ../bash${_basever//.}-$(printf "%03d" $_p)
+  done
+}
+
+build() {
+  cd $pkgname-$_basever
+
+  
_bashconfig=(-DDEFAULT_PATH_VALUE=\'\"/usr/local/sbin:/usr/local/bin:/usr/bin\"\'
+   -DSTANDARD_UTILS_PATH=\'\"/usr/bin\"\'
+   -DSYS_BASHRC=\'\"/etc/bash.bashrc\"\'
+   -DSYS_BASH_LOGOUT=\'\"/etc/bash.bash_logout\"\'
+   -DNON_INTERACTIVE_LOGIN_SHELLS)
+  export CFLAGS="${CFLAGS} ${_bashconfig[@]}"
+
+  ./configure --prefix=/usr --with-curses --enable-readline \
+--without-bash-malloc --with-installed-readline
+  make
+}
+
+check() {
+  make -C $pkgname-$_basever check
+}
+
+package() {
+  make -C $pkgname-$_basever DESTDIR="$pkgdir" install
+  ln -s bash "$pkgdir/usr/bin/sh"
+
+  # system-wide configuration files
+  install -Dm644 system.bashrc "$pkgdir/etc/bash.bashrc"
+  install -Dm644 system.bash_logout "$pkgdir/etc/bash.bash_logout"
+
+  # user configuration file skeletons
+  install -dm755 "$pkgdir/etc/skel/"
+  install -m644 dot.bashrc "$pkgdir/etc/skel/.bashrc"
+  install -m644 dot.bash_profile "$pkgdir/etc/skel/.bash_profile"
+  install -m644 dot.bash_logout "$pkgdir/etc/skel/.bash_logout"
+}
+
+md5sums=('14a7c95ac23705559b6f477dfe25'
+ 'SKIP'
+ '027d6bd8f5f6a06b75bb7698cb478089'
+ '2902e0fee7a9168f3a4fd2ccd60ff047'
+ '42f4400ed2314bd7519c020d0187edc5'
+ 'd8f3f334e72c0e30032eae1a1229aef1'
+ '472f536d7c9e8250dc4568ec4cfaf294'
+ '817d01a6c0af6f79308a8b7b649e53d8'
+ 'SKIP'
+ '765e14cff12c7284009772e8e24f2fe0'
+ 'SKIP'
+ '49e7da93bf07f510a2eb6bb43ac3e5a2'
+ 'SKIP'
+ '4557d674ab5831a5fa98052ab19edaf4'
+ 'SKIP'
+ 'cce96dd77cdd1d293beec10848f6cbb5'
+ 'SKIP'
+ 'd3379f8d8abce5c6ee338f931ad008d5'
+ 'SKIP'
+ 'ec38c76ca439ca7f9c178e9baede84fc'
+ 'SKIP'
+ 'e0ba18c1e3b94f905da9b5bf9d38b58b'
+ 'SKIP'
+ 'e952d4f44e612048930c559d90eb99bb'
+ 'SKIP'
+ '57b5b35955d68f9a09dbef6b86d2c782'
+ 'SKIP'
+ 'cc896e1fa696b93ded568e557e2392d5'
+ 'SKIP'
+ 'fa47fbfa56fb7e9e5367f19a9df5fc9e'
+ 'SKIP'
+ '5e6a20166efe166267972cc78025417b'
+ 'SKIP'
+ '00a8877a8787dbd78d97767db1115b0a'
+ 'SKIP'
+ '2409586fd19e3104197ead86ce549eca'
+ 'SKIP'
+ 

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

2018-01-29 Thread Bartłomiej Piotrowski via arch-commits
Date: Tuesday, January 30, 2018 @ 07:20:28
  Author: bpiotrowski
Revision: 315602

archrelease: copy trunk to testing-x86_64

Added:
  bash/repos/testing-x86_64/
  bash/repos/testing-x86_64/PKGBUILD
(from rev 315601, bash/trunk/PKGBUILD)
  bash/repos/testing-x86_64/dot.bash_logout
(from rev 315601, bash/trunk/dot.bash_logout)
  bash/repos/testing-x86_64/dot.bash_profile
(from rev 315601, bash/trunk/dot.bash_profile)
  bash/repos/testing-x86_64/dot.bashrc
(from rev 315601, bash/trunk/dot.bashrc)
  bash/repos/testing-x86_64/system.bash_logout
(from rev 315601, bash/trunk/system.bash_logout)
  bash/repos/testing-x86_64/system.bashrc
(from rev 315601, bash/trunk/system.bashrc)

+
 PKGBUILD   |  119 +++
 dot.bash_logout|3 +
 dot.bash_profile   |5 ++
 dot.bashrc |9 +++
 system.bash_logout |3 +
 system.bashrc  |   22 +
 6 files changed, 161 insertions(+)

Copied: bash/repos/testing-x86_64/PKGBUILD (from rev 315601, 
bash/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2018-01-30 07:20:28 UTC (rev 315602)
@@ -0,0 +1,119 @@
+# $Id$
+# Maintainer:  Bartłomiej Piotrowski 
+# Contributor: Allan McRae 
+# Contributor: Aaron Griffin 
+
+pkgname=bash
+_basever=4.4
+_patchlevel=018
+pkgver=${_basever}.${_patchlevel}
+pkgrel=1
+pkgdesc='The GNU Bourne Again shell'
+arch=(x86_64)
+license=(GPL)
+url='http://www.gnu.org/software/bash/bash.html'
+groups=(base)
+backup=(etc/bash.bash{rc,_logout} etc/skel/.bash{rc,_profile,_logout})
+depends=('readline>=7.0' glibc ncurses)
+optdepends=('bash-completion: for tab completion')
+provides=('sh')
+source=(https://ftp.gnu.org/gnu/bash/bash-$_basever.tar.gz{,.sig}
+dot.bashrc
+dot.bash_profile
+dot.bash_logout
+system.bashrc
+system.bash_logout)
+validpgpkeys=('7C0135FB088AAF6C66C650B9BB5869F064EA74AB') # Chet Ramey
+
+if [[ $((10#${_patchlevel})) -gt 0 ]]; then
+  for (( _p=1; _p<=$((10#${_patchlevel})); _p++ )); do
+source=(${source[@]} 
https://ftp.gnu.org/gnu/bash/bash-$_basever-patches/bash${_basever//.}-$(printf 
"%03d" $_p){,.sig})
+  done
+fi
+
+prepare() {
+  cd $pkgname-$_basever
+
+  for (( _p=1; _p<=$((10#${_patchlevel})); _p++ )); do
+msg "applying patch bash${_basever//.}-$(printf "%03d" $_p)"
+patch -p0 -i ../bash${_basever//.}-$(printf "%03d" $_p)
+  done
+}
+
+build() {
+  cd $pkgname-$_basever
+
+  
_bashconfig=(-DDEFAULT_PATH_VALUE=\'\"/usr/local/sbin:/usr/local/bin:/usr/bin\"\'
+   -DSTANDARD_UTILS_PATH=\'\"/usr/bin\"\'
+   -DSYS_BASHRC=\'\"/etc/bash.bashrc\"\'
+   -DSYS_BASH_LOGOUT=\'\"/etc/bash.bash_logout\"\'
+   -DNON_INTERACTIVE_LOGIN_SHELLS)
+  export CFLAGS="${CFLAGS} ${_bashconfig[@]}"
+
+  ./configure --prefix=/usr --with-curses --enable-readline \
+--without-bash-malloc --with-installed-readline
+  make
+}
+
+check() {
+  make -C $pkgname-$_basever check
+}
+
+package() {
+  make -C $pkgname-$_basever DESTDIR="$pkgdir" install
+  ln -s bash "$pkgdir/usr/bin/sh"
+
+  # system-wide configuration files
+  install -Dm644 system.bashrc "$pkgdir/etc/bash.bashrc"
+  install -Dm644 system.bash_logout "$pkgdir/etc/bash.bash_logout"
+
+  # user configuration file skeletons
+  install -dm755 "$pkgdir/etc/skel/"
+  install -m644 dot.bashrc "$pkgdir/etc/skel/.bashrc"
+  install -m644 dot.bash_profile "$pkgdir/etc/skel/.bash_profile"
+  install -m644 dot.bash_logout "$pkgdir/etc/skel/.bash_logout"
+}
+
+md5sums=('14a7c95ac23705559b6f477dfe25'
+ 'SKIP'
+ '027d6bd8f5f6a06b75bb7698cb478089'
+ '2902e0fee7a9168f3a4fd2ccd60ff047'
+ '42f4400ed2314bd7519c020d0187edc5'
+ 'd8f3f334e72c0e30032eae1a1229aef1'
+ '472f536d7c9e8250dc4568ec4cfaf294'
+ '817d01a6c0af6f79308a8b7b649e53d8'
+ 'SKIP'
+ '765e14cff12c7284009772e8e24f2fe0'
+ 'SKIP'
+ '49e7da93bf07f510a2eb6bb43ac3e5a2'
+ 'SKIP'
+ '4557d674ab5831a5fa98052ab19edaf4'
+ 'SKIP'
+ 'cce96dd77cdd1d293beec10848f6cbb5'
+ 'SKIP'
+ 'd3379f8d8abce5c6ee338f931ad008d5'
+ 'SKIP'
+ 'ec38c76ca439ca7f9c178e9baede84fc'
+ 'SKIP'
+ 'e0ba18c1e3b94f905da9b5bf9d38b58b'
+ 'SKIP'
+ 'e952d4f44e612048930c559d90eb99bb'
+ 'SKIP'
+ '57b5b35955d68f9a09dbef6b86d2c782'
+ 'SKIP'
+ 'cc896e1fa696b93ded568e557e2392d5'
+ 'SKIP'
+ 'fa47fbfa56fb7e9e5367f19a9df5fc9e'
+ 'SKIP'
+ '5e6a20166efe166267972cc78025417b'
+ 'SKIP'
+ '00a8877a8787dbd78d97767db1115b0a'
+ 'SKIP'
+ '2409586fd19e3104197ead86ce549eca'
+ 'SKIP'
+