[arch-commits] Commit in zsh/repos (14 files)

2017-03-21 Thread Bartłomiej Piotrowski
Date: Tuesday, March 21, 2017 @ 09:43:30
  Author: bpiotrowski
Revision: 291145

archrelease: copy trunk to extra-i686, extra-x86_64

Added:
  zsh/repos/extra-i686/40285.patch
(from rev 291144, zsh/trunk/40285.patch)
  zsh/repos/extra-i686/PKGBUILD
(from rev 291144, zsh/trunk/PKGBUILD)
  zsh/repos/extra-i686/zprofile
(from rev 291144, zsh/trunk/zprofile)
  zsh/repos/extra-i686/zsh.install
(from rev 291144, zsh/trunk/zsh.install)
  zsh/repos/extra-x86_64/40285.patch
(from rev 291144, zsh/trunk/40285.patch)
  zsh/repos/extra-x86_64/PKGBUILD
(from rev 291144, zsh/trunk/PKGBUILD)
  zsh/repos/extra-x86_64/zprofile
(from rev 291144, zsh/trunk/zprofile)
  zsh/repos/extra-x86_64/zsh.install
(from rev 291144, zsh/trunk/zsh.install)
Deleted:
  zsh/repos/extra-i686/PKGBUILD
  zsh/repos/extra-i686/zprofile
  zsh/repos/extra-i686/zsh.install
  zsh/repos/extra-x86_64/PKGBUILD
  zsh/repos/extra-x86_64/zprofile
  zsh/repos/extra-x86_64/zsh.install

--+
 /PKGBUILD|  180 +
 /zprofile|2 
 /zsh.install |   24 ++
 extra-i686/40285.patch   |   66 
 extra-i686/PKGBUILD  |   87 -
 extra-i686/zprofile  |1 
 extra-i686/zsh.install   |   12 ---
 extra-x86_64/40285.patch |   66 
 extra-x86_64/PKGBUILD|   87 -
 extra-x86_64/zprofile|1 
 extra-x86_64/zsh.install |   12 ---
 11 files changed, 338 insertions(+), 200 deletions(-)

Copied: zsh/repos/extra-i686/40285.patch (from rev 291144, 
zsh/trunk/40285.patch)
===
--- extra-i686/40285.patch  (rev 0)
+++ extra-i686/40285.patch  2017-03-21 09:43:30 UTC (rev 291145)
@@ -0,0 +1,66 @@
+From 48cadf48ff9c61ce09e826ad9a58e250e999a262 Mon Sep 17 00:00:00 2001
+From: Peter Stephenson 
+Date: Fri, 6 Jan 2017 17:42:13 +
+Subject: [PATCH] 40285: Be more careful with pattern allocation in history
+ isearch.
+
+If there are ZLE hooks to be called, they may use patterns, in
+which case it's not safe to allocate the isearch pattern in the
+static buffer.
+---
+ Src/Zle/zle_hist.c | 11 +++
+ 1 file changed, 7 insertions(+), 4 deletions(-)
+
+diff --git a/Src/Zle/zle_hist.c b/Src/Zle/zle_hist.c
+index abd6e17..434735d 100644
+--- a/Src/Zle/zle_hist.c
 b/Src/Zle/zle_hist.c
+@@ -1220,13 +1220,12 @@ doisearch(char **args, int dir, int pattern)
+   char *patbuf = ztrdup(sbuf);
+   char *patstring;
+   /*
+-   * Use static pattern buffer since we don't need
+-   * to maintain it and won't call other pattern functions
+-   * meanwhile.
++   * Do not use static pattern buffer (PAT_STATIC) since we call 
zle hooks,
++   * which might call other pattern functions. Use PAT_ZDUP 
instead.
+* Use PAT_NOANCH because we don't need the match
+* anchored to the end, even if it is at the start.
+*/
+-  int patflags = PAT_STATIC|PAT_NOANCH;
++  int patflags = PAT_ZDUP|PAT_NOANCH;
+   if (sbuf[0] == '^') {
+   /*
+* We'll handle the anchor later when
+@@ -1521,6 +1520,7 @@ doisearch(char **args, int dir, int pattern)
+   if (only_one || !top_spot || old_sbptr != sbptr)
+   break;
+   }
++  freepatprog(patprog);
+   patprog = NULL;
+   nosearch = 1;
+   skip_pos = 0;
+@@ -1632,6 +1632,7 @@ doisearch(char **args, int dir, int pattern)
+   }
+   strcpy(sbuf + sbptr, paste);
+   sbptr += pastelen;
++  freepatprog(patprog);
+   patprog = NULL;
+   free(paste);
+   } else if (cmd == Th(z_acceptsearch)) {
+@@ -1682,6 +1683,7 @@ doisearch(char **args, int dir, int pattern)
+* always valid at this point.
+*/
+   sbptr += zlecharasstring(LASTFULLCHAR, sbuf + sbptr);
++  freepatprog(patprog);
+   patprog = NULL;
+   }
+   if (feep)
+@@ -1702,6 +1704,7 @@ doisearch(char **args, int dir, int pattern)
+ zsfree(okeymap);
+ if (matchlist)
+   freematchlist(matchlist);
++freepatprog(patprog);
+ isearch_active = 0;
+ /*
+  * Don't allow unused characters provided as a string to the

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2017-03-21 09:43:20 UTC (rev 291144)
+++ extra-i686/PKGBUILD 2017-03-21 09:43:30 UTC (rev 291145)
@@ -1,87 +0,0 @@
-# $Id$
-# Maintainer: Pierre Schmitz 
-
-pkgbase=zsh
-pkgname=('zsh' 'zsh-doc')
-pkgver=5.3.1
-pkgrel=1
-arch=('i686' 'x86_64')
-url='http://www.zsh.org/'
-license=('custom')
-makedepends=('pcre' 'libcap' 'gdbm')
-source=("https://www

[arch-commits] Commit in zsh/repos (14 files)

2016-11-20 Thread Pierre Schmitz
Date: Sunday, November 20, 2016 @ 09:58:32
  Author: pierre
Revision: 281655

archrelease: copy trunk to extra-i686, extra-x86_64

Added:
  zsh/repos/extra-i686/PKGBUILD
(from rev 281654, zsh/trunk/PKGBUILD)
  zsh/repos/extra-i686/zprofile
(from rev 281654, zsh/trunk/zprofile)
  zsh/repos/extra-i686/zsh.install
(from rev 281654, zsh/trunk/zsh.install)
  zsh/repos/extra-x86_64/PKGBUILD
(from rev 281654, zsh/trunk/PKGBUILD)
  zsh/repos/extra-x86_64/zprofile
(from rev 281654, zsh/trunk/zprofile)
  zsh/repos/extra-x86_64/zsh.install
(from rev 281654, zsh/trunk/zsh.install)
Deleted:
  zsh/repos/extra-i686/PKGBUILD
  zsh/repos/extra-i686/zprofile
  zsh/repos/extra-i686/zsh-doc.install
  zsh/repos/extra-i686/zsh.install
  zsh/repos/extra-x86_64/PKGBUILD
  zsh/repos/extra-x86_64/zprofile
  zsh/repos/extra-x86_64/zsh-doc.install
  zsh/repos/extra-x86_64/zsh.install

--+
 /PKGBUILD|  174 +
 /zprofile|2 
 /zsh.install |   24 +
 extra-i686/PKGBUILD  |   86 
 extra-i686/zprofile  |1 
 extra-i686/zsh-doc.install   |   20 
 extra-i686/zsh.install   |   12 --
 extra-x86_64/PKGBUILD|   86 
 extra-x86_64/zprofile|1 
 extra-x86_64/zsh-doc.install |   20 
 extra-x86_64/zsh.install |   12 --
 11 files changed, 200 insertions(+), 238 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2016-11-20 09:58:19 UTC (rev 281654)
+++ extra-i686/PKGBUILD 2016-11-20 09:58:32 UTC (rev 281655)
@@ -1,86 +0,0 @@
-# $Id$
-# Maintainer: Pierre Schmitz 
-
-pkgbase=zsh
-pkgname=('zsh' 'zsh-doc')
-pkgver=5.2
-pkgrel=1
-arch=('i686' 'x86_64')
-url='http://www.zsh.org/'
-license=('custom')
-makedepends=('pcre' 'libcap' 'gdbm')
-source=("http://www.zsh.org/pub/zsh-${pkgver}.tar.xz";
-"http://www.zsh.org/pub/zsh-${pkgver}-doc.tar.xz";
-'zprofile')
-md5sums=('afe96fde08b70e23c1cab1ca7a68fb34'
- '873f1ade1fa5d0d15f9cba16d3ba5f98'
- '24a9335edf77252a7b5f52e079f7aef7')
-
-prepare() {
-   cd "${srcdir}/${pkgbase}-${pkgver}"
-
-   # Set correct keymap path
-   sed -i 's#/usr/share/keymaps#/usr/share/kbd/keymaps#g' 
Completion/Unix/Command/_loadkeys
-
-   # Fix usb.ids path
-   sed -i 's#/usr/share/misc/usb.ids#/usr/share/hwdata/usb.ids#g' 
Completion/Linux/Command/_lsusb
-
-   # Remove unneeded and conflicting completion scripts
-   for _fpath in AIX BSD Cygwin Darwin Debian Mandriva openSUSE Redhat 
Solaris; do
-   rm -rf Completion/$_fpath
-   sed "s#\s*Completion/$_fpath/\*/\*##g" -i Src/Zle/complete.mdd
-   done
-   rm Completion/Linux/Command/_{pkgtool,rpmbuild}
-}
-
-build() {
-   cd "${srcdir}/${pkgbase}-${pkgver}"
-
-   ./configure --prefix=/usr \
-   --docdir=/usr/share/doc/zsh \
-   --htmldir=/usr/share/doc/zsh/html \
-   --enable-etcdir=/etc/zsh \
-   --enable-zshenv=/etc/zsh/zshenv \
-   --enable-zlogin=/etc/zsh/zlogin \
-   --enable-zlogout=/etc/zsh/zlogout \
-   --enable-zprofile=/etc/zsh/zprofile \
-   --enable-zshrc=/etc/zsh/zshrc \
-   --enable-maildir-support \
-   --with-term-lib='ncursesw' \
-   --enable-multibyte \
-   --enable-function-subdirs \
-   --enable-fndir=/usr/share/zsh/functions \
-   --enable-scriptdir=/usr/share/zsh/scripts \
-   --with-tcsetpgrp \
-   --enable-pcre \
-   --enable-cap \
-   --enable-zsh-secure-free
-   make
-}
-
-check() {
-   cd "${srcdir}/${pkgbase}-${pkgver}"
-   HOME="${srcdir}" make check
-}
-
-package_zsh() {
-   pkgdesc='A very advanced and programmable command interpreter (shell) 
for UNIX'
-   depends=('pcre' 'libcap' 'gdbm')
-   backup=('etc/zsh/zprofile')
-   install=zsh.install
-
-   cd "${srcdir}/${pkgbase}-${pkgver}"
-   make DESTDIR="${pkgdir}/" install
-   install -D -m644 "${srcdir}/zprofile" "${pkgdir}/etc/zsh/zprofile"
-   install -D -m644 LICENCE 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}
-
-package_zsh-doc() {
-   pkgdesc='Info, HTML and PDF format of the ZSH documentation'
-   install=zsh-doc.install
-
-   cd "${srcdir}/${pkgbase}-${pkgver}"
-   make DESTDIR="${pkgdir}/" install.info install.html
-   install -D -m644 Doc/zsh.pdf "${pkgdir}/usr/share/doc/zsh/zsh.pdf"
-   install -D -m644 LICENCE 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: zsh/repos/extra-i686/PKGBUILD (from rev 281654, zsh/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUI

[arch-commits] Commit in zsh/repos (14 files)

2012-12-24 Thread Pierre Schmitz
Date: Monday, December 24, 2012 @ 10:21:31
  Author: pierre
Revision: 173826

db-move: moved zsh from [testing] to [extra] (i686, x86_64)

Added:
  zsh/repos/extra-i686/PKGBUILD
(from rev 173825, zsh/repos/testing-i686/PKGBUILD)
  zsh/repos/extra-i686/zprofile
(from rev 173825, zsh/repos/testing-i686/zprofile)
  zsh/repos/extra-i686/zsh.install
(from rev 173825, zsh/repos/testing-i686/zsh.install)
  zsh/repos/extra-x86_64/PKGBUILD
(from rev 173825, zsh/repos/testing-x86_64/PKGBUILD)
  zsh/repos/extra-x86_64/zprofile
(from rev 173825, zsh/repos/testing-x86_64/zprofile)
  zsh/repos/extra-x86_64/zsh.install
(from rev 173825, zsh/repos/testing-x86_64/zsh.install)
Deleted:
  zsh/repos/extra-i686/PKGBUILD
  zsh/repos/extra-i686/zprofile
  zsh/repos/extra-i686/zsh.install
  zsh/repos/extra-x86_64/PKGBUILD
  zsh/repos/extra-x86_64/zprofile
  zsh/repos/extra-x86_64/zsh.install
  zsh/repos/testing-i686/
  zsh/repos/testing-x86_64/

--+
 extra-i686/PKGBUILD  |  134 ++---
 extra-i686/zprofile  |2 
 extra-i686/zsh.install   |   44 +++---
 extra-x86_64/PKGBUILD|  134 ++---
 extra-x86_64/zprofile|2 
 extra-x86_64/zsh.install |   44 +++---
 6 files changed, 180 insertions(+), 180 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-12-24 15:09:23 UTC (rev 173825)
+++ extra-i686/PKGBUILD 2012-12-24 15:21:31 UTC (rev 173826)
@@ -1,67 +0,0 @@
-# $Id$
-# Maintainer: Pierre Schmitz 
-
-pkgname=zsh
-pkgver=5.0.0
-pkgrel=3
-pkgdesc='A very advanced and programmable command interpreter (shell) for UNIX'
-arch=('i686' 'x86_64')
-url='http://www.zsh.org/'
-license=('custom')
-depends=('pcre' 'libcap' 'gdbm')
-backup=('etc/zsh/zprofile')
-install=zsh.install
-source=("ftp://ftp.zsh.org/pub/${pkgname}-${pkgver}.tar.bz2";
-'zprofile')
-md5sums=('e8484468925cec8d9a84b8b04797e764'
- '24a9335edf77252a7b5f52e079f7aef7')
-
-build() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-
-   # FS#16360
-   sed -i 's/init.d/rc.d/g' Doc/Zsh/compsys.yo \
-Doc/zsh.texi \
-Completion/Unix/Type/_services \
-Completion/Unix/Command/_init_d
-
-   # Set correct keymap path
-   sed -i 's#/usr/share/keymaps#/usr/share/kbd/keymaps#g' 
Completion/Unix/Command/_loadkeys
-
-   # Remove unneeded and conflicting completion scripts
-   rm -rf 
Completion/{AIX,BSD,Cygwin,Darwin,Debian,Mandriva,openSUSE,Redhat,Solaris}
-   rm -f  Completion/Linux/Command/_{pkgtool,rpmbuild,yast}
-   rm -f  Completion/Unix/Command/_osc
-
-   ./configure --prefix=/usr \
-   --bindir=/bin \
-   --enable-etcdir=/etc/zsh \
-   --enable-zshenv=/etc/zsh/zshenv \
-   --enable-zlogin=/etc/zsh/zlogin \
-   --enable-zlogout=/etc/zsh/zlogout \
-   --enable-zprofile=/etc/zsh/zprofile \
-   --enable-zshrc=/etc/zsh/zshrc \
-   --enable-maildir-support \
-   --with-term-lib='ncursesw' \
-   --enable-multibyte \
-   --enable-function-subdirs \
-   --enable-fndir=/usr/share/zsh/functions \
-   --enable-scriptdir=/usr/share/zsh/scripts \
-   --with-tcsetpgrp \
-   --enable-pcre \
-   --enable-cap \
-   --enable-zsh-secure-free
-   make all info
-}
-
-check() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   HOME="${srcdir}" make check
-}
-
-package() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   make DESTDIR="${pkgdir}/" install install.info
-   install -D -m644 "${srcdir}/zprofile" "${pkgdir}/etc/zsh/zprofile"
-   install -D -m644 LICENCE 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: zsh/repos/extra-i686/PKGBUILD (from rev 173825, 
zsh/repos/testing-i686/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-12-24 15:21:31 UTC (rev 173826)
@@ -0,0 +1,67 @@
+# $Id$
+# Maintainer: Pierre Schmitz 
+
+pkgname=zsh
+pkgver=5.0.2
+pkgrel=1
+pkgdesc='A very advanced and programmable command interpreter (shell) for UNIX'
+arch=('i686' 'x86_64')
+url='http://www.zsh.org/'
+license=('custom')
+depends=('pcre' 'libcap' 'gdbm')
+backup=('etc/zsh/zprofile')
+install=zsh.install
+source=("ftp://ftp.zsh.org/pub/${pkgname}-${pkgver}.tar.bz2";
+'zprofile')
+md5sums=('b8f2ad691acf58b3252225746480dcad'
+ '24a9335edf77252a7b5f52e079f7aef7')
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+
+   # FS#16360
+   sed -i 's/init.d/rc.d/g' Doc/Zsh/compsys.yo \
+Doc/zsh.texi \
+Completion/U

[arch-commits] Commit in zsh/repos (14 files)

2012-07-24 Thread Pierre Schmitz
Date: Tuesday, July 24, 2012 @ 16:46:25
  Author: pierre
Revision: 164038

db-move: moved zsh from [testing] to [extra] ( i686,  x86_64)

Added:
  zsh/repos/extra-i686/PKGBUILD
(from rev 164037, zsh/repos/testing-i686/PKGBUILD)
  zsh/repos/extra-i686/zprofile
(from rev 164037, zsh/repos/testing-i686/zprofile)
  zsh/repos/extra-i686/zsh.install
(from rev 164037, zsh/repos/testing-i686/zsh.install)
  zsh/repos/extra-x86_64/PKGBUILD
(from rev 164037, zsh/repos/testing-x86_64/PKGBUILD)
  zsh/repos/extra-x86_64/zprofile
(from rev 164037, zsh/repos/testing-x86_64/zprofile)
  zsh/repos/extra-x86_64/zsh.install
(from rev 164037, zsh/repos/testing-x86_64/zsh.install)
Deleted:
  zsh/repos/extra-i686/PKGBUILD
  zsh/repos/extra-i686/zprofile
  zsh/repos/extra-i686/zsh.install
  zsh/repos/extra-x86_64/PKGBUILD
  zsh/repos/extra-x86_64/zprofile
  zsh/repos/extra-x86_64/zsh.install
  zsh/repos/testing-i686/
  zsh/repos/testing-x86_64/

--+
 extra-i686/PKGBUILD  |  130 +++--
 extra-i686/zprofile  |2 
 extra-i686/zsh.install   |   22 +++
 extra-x86_64/PKGBUILD|  130 +++--
 extra-x86_64/zprofile|2 
 extra-x86_64/zsh.install |   22 +++
 6 files changed, 158 insertions(+), 150 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-07-24 20:45:27 UTC (rev 164037)
+++ extra-i686/PKGBUILD 2012-07-24 20:46:25 UTC (rev 164038)
@@ -1,63 +0,0 @@
-# $Id$
-# Maintainer: Pierre Schmitz 
-
-pkgname=zsh
-pkgver=4.3.17
-pkgrel=2
-pkgdesc='A very advanced and programmable command interpreter (shell) for UNIX'
-arch=('i686' 'x86_64')
-url='http://www.zsh.org/'
-license=('custom')
-depends=('pcre' 'libcap' 'gdbm')
-install=zsh.install
-source=("ftp://ftp.zsh.org/pub/${pkgname}-${pkgver}.tar.bz2";
-'zprofile')
-backup=('etc/zsh/zprofile')
-md5sums=('8258967060b2654f30001a011946ac6a'
- '24a9335edf77252a7b5f52e079f7aef7')
-
-build() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   # FS#16360
-   sed -i 's/init.d/rc.d/g' Doc/Zsh/compsys.yo \
-Doc/zsh.texi \
-Completion/Unix/Type/_services \
-Completion/Unix/Command/_init_d
-
-   # Remove unneeded and conflicting completion scripts
-   rm -rf 
Completion/{AIX,BSD,Cygwin,Darwin,Debian,Mandriva,openSUSE,Redhat,Solaris}
-   rm -f  Completion/Linux/Command/_{pkgtool,rpmbuild,yast}
-   rm -f  Completion/Unix/Command/_osc
-
-   ./configure --prefix=/usr \
-   --bindir=/bin \
-   --enable-etcdir=/etc/zsh \
-   --enable-zshenv=/etc/zsh/zshenv \
-   --enable-zlogin=/etc/zsh/zlogin \
-   --enable-zlogout=/etc/zsh/zlogout \
-   --enable-zprofile=/etc/zsh/zprofile \
-   --enable-zshrc=/etc/zsh/zshrc \
-   --enable-maildir-support \
-   --with-term-lib='ncursesw' \
-   --enable-multibyte \
-   --enable-function-subdirs \
-   --enable-fndir=/usr/share/zsh/functions \
-   --enable-scriptdir=/usr/share/zsh/scripts \
-   --with-tcsetpgrp \
-   --enable-pcre \
-   --enable-cap \
-   --enable-zsh-secure-free
-   make
-}
-
-check() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   HOME="${srcdir}" make check
-}
-
-package() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   make DESTDIR="${pkgdir}/" install
-   install -D -m644 "${srcdir}/zprofile" "${pkgdir}/etc/zsh/zprofile"
-   install -D -m644 LICENCE 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: zsh/repos/extra-i686/PKGBUILD (from rev 164037, 
zsh/repos/testing-i686/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-07-24 20:46:25 UTC (rev 164038)
@@ -0,0 +1,67 @@
+# $Id$
+# Maintainer: Pierre Schmitz 
+
+pkgname=zsh
+pkgver=5.0.0
+pkgrel=2
+pkgdesc='A very advanced and programmable command interpreter (shell) for UNIX'
+arch=('i686' 'x86_64')
+url='http://www.zsh.org/'
+license=('custom')
+depends=('pcre' 'libcap' 'gdbm')
+install=zsh.install
+source=("ftp://ftp.zsh.org/pub/${pkgname}-${pkgver}.tar.bz2";
+'zprofile')
+backup=('etc/zsh/zprofile')
+md5sums=('e8484468925cec8d9a84b8b04797e764'
+ '24a9335edf77252a7b5f52e079f7aef7')
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+
+   # FS#16360
+   sed -i 's/init.d/rc.d/g' Doc/Zsh/compsys.yo \
+Doc/zsh.texi \
+Completion/Unix/Type/_services \
+Completion/Unix/Command/_init_d
+
+   # Set correct keymap path
+   sed -i 's#/usr/share/keymaps#/usr/share/kb

[arch-commits] Commit in zsh/repos (14 files)

2012-02-19 Thread Pierre Schmitz
Date: Sunday, February 19, 2012 @ 15:58:33
  Author: pierre
Revision: 150666

archrelease: copy trunk to extra-i686, extra-x86_64

Added:
  zsh/repos/extra-i686/PKGBUILD
(from rev 150665, zsh/trunk/PKGBUILD)
  zsh/repos/extra-i686/zprofile
(from rev 150665, zsh/trunk/zprofile)
  zsh/repos/extra-i686/zsh.install
(from rev 150665, zsh/trunk/zsh.install)
  zsh/repos/extra-x86_64/PKGBUILD
(from rev 150665, zsh/trunk/PKGBUILD)
  zsh/repos/extra-x86_64/zprofile
(from rev 150665, zsh/trunk/zprofile)
  zsh/repos/extra-x86_64/zsh.install
(from rev 150665, zsh/trunk/zsh.install)
Deleted:
  zsh/repos/extra-i686/PKGBUILD
  zsh/repos/extra-i686/svn-1.7.patch
  zsh/repos/extra-i686/zprofile
  zsh/repos/extra-i686/zsh.install
  zsh/repos/extra-x86_64/PKGBUILD
  zsh/repos/extra-x86_64/svn-1.7.patch
  zsh/repos/extra-x86_64/zprofile
  zsh/repos/extra-x86_64/zsh.install

+
 extra-i686/PKGBUILD|  118 ---
 extra-i686/svn-1.7.patch   |   34 
 extra-i686/zprofile|2 
 extra-i686/zsh.install |   22 
 extra-x86_64/PKGBUILD  |  118 ---
 extra-x86_64/svn-1.7.patch |   34 
 extra-x86_64/zprofile  |2 
 extra-x86_64/zsh.install   |   22 
 8 files changed, 138 insertions(+), 214 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-02-19 20:57:52 UTC (rev 150665)
+++ extra-i686/PKGBUILD 2012-02-19 20:58:33 UTC (rev 150666)
@@ -1,61 +0,0 @@
-# $Id$
-# Maintainer: Pierre Schmitz 
-
-pkgname=zsh
-pkgver=4.3.15
-pkgrel=3
-pkgdesc='A very advanced and programmable command interpreter (shell) for UNIX'
-arch=('i686' 'x86_64')
-url='http://www.zsh.org/'
-license=('custom')
-depends=('pcre' 'libcap' 'gdbm')
-install=zsh.install
-source=("ftp://ftp.zsh.org/pub/${pkgname}-${pkgver}.tar.bz2";
-'zprofile' 'svn-1.7.patch')
-backup=('etc/zsh/zprofile')
-md5sums=('11766b0dd674a513810903cd33ffcac4'
- '24a9335edf77252a7b5f52e079f7aef7'
- '4fcbc119fdb624a8c483a278f3a82efd')
-
-build() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   patch -p1 -i "${srcdir}/svn-1.7.patch"
-   # FS#16360
-   sed -i 's/init.d/rc.d/g' Doc/Zsh/compsys.yo \
-Doc/zsh.texi \
-Completion/Unix/Type/_services \
-Completion/Unix/Command/_init_d
-   ./configure --prefix=/usr \
-   --bindir=/bin \
-   --enable-etcdir=/etc/zsh \
-   --enable-zshenv=/etc/zsh/zshenv \
-   --enable-zlogin=/etc/zsh/zlogin \
-   --enable-zlogout=/etc/zsh/zlogout \
-   --enable-zprofile=/etc/zsh/zprofile \
-   --enable-zshrc=/etc/zsh/zshrc \
-   --enable-maildir-support \
-   --with-term-lib='ncursesw' \
-   --enable-multibyte \
-   --enable-function-subdirs \
-   --enable-fndir=/usr/share/zsh/functions \
-   --enable-scriptdir=/usr/share/zsh/scripts \
-   --with-tcsetpgrp \
-   --enable-pcre \
-   --enable-cap \
-   --enable-zsh-secure-free
-   make
-}
-
-check() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   # This test wont work with the noatime mount option
-   rm Test/C02cond.ztst
-   HOME="${srcdir}" make check
-}
-
-package() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   make DESTDIR="${pkgdir}/" install
-   install -D -m644 "${srcdir}/zprofile" "${pkgdir}/etc/zsh/zprofile"
-   install -D -m644 LICENCE 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: zsh/repos/extra-i686/PKGBUILD (from rev 150665, zsh/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-02-19 20:58:33 UTC (rev 150666)
@@ -0,0 +1,57 @@
+# $Id$
+# Maintainer: Pierre Schmitz 
+
+pkgname=zsh
+pkgver=4.3.16
+pkgrel=1
+pkgdesc='A very advanced and programmable command interpreter (shell) for UNIX'
+arch=('i686' 'x86_64')
+url='http://www.zsh.org/'
+license=('custom')
+depends=('pcre' 'libcap' 'gdbm')
+install=zsh.install
+source=("ftp://ftp.zsh.org/pub/${pkgname}-${pkgver}.tar.bz2";
+'zprofile')
+backup=('etc/zsh/zprofile')
+md5sums=('4bf0b8947b5acc0ac4334d75adc87239'
+ '24a9335edf77252a7b5f52e079f7aef7')
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   # FS#16360
+   sed -i 's/init.d/rc.d/g' Doc/Zsh/compsys.yo \
+Doc/zsh.texi \
+Completion/Unix/Type/_services \
+Completion/Unix/Command/_init_d
+   ./configure --prefix=/usr \
+   --bindir=/bin \
+   --enable-etcdir=/etc/zsh \
+   --e

[arch-commits] Commit in zsh/repos (14 files)

2012-01-02 Thread Pierre Schmitz
Date: Monday, January 2, 2012 @ 07:43:36
  Author: pierre
Revision: 145827

archrelease: copy trunk to extra-i686, extra-x86_64

Added:
  zsh/repos/extra-i686/PKGBUILD
(from rev 145826, zsh/trunk/PKGBUILD)
  zsh/repos/extra-i686/svn-1.7.patch
(from rev 145826, zsh/trunk/svn-1.7.patch)
  zsh/repos/extra-i686/zprofile
(from rev 145826, zsh/trunk/zprofile)
  zsh/repos/extra-i686/zsh.install
(from rev 145826, zsh/trunk/zsh.install)
  zsh/repos/extra-x86_64/PKGBUILD
(from rev 145826, zsh/trunk/PKGBUILD)
  zsh/repos/extra-x86_64/svn-1.7.patch
(from rev 145826, zsh/trunk/svn-1.7.patch)
  zsh/repos/extra-x86_64/zprofile
(from rev 145826, zsh/trunk/zprofile)
  zsh/repos/extra-x86_64/zsh.install
(from rev 145826, zsh/trunk/zsh.install)
Deleted:
  zsh/repos/extra-i686/PKGBUILD
  zsh/repos/extra-i686/zprofile
  zsh/repos/extra-i686/zsh.install
  zsh/repos/extra-x86_64/PKGBUILD
  zsh/repos/extra-x86_64/zprofile
  zsh/repos/extra-x86_64/zsh.install

+
 extra-i686/PKGBUILD|  120 +--
 extra-i686/svn-1.7.patch   |   34 
 extra-i686/zprofile|2 
 extra-i686/zsh.install |   22 +++
 extra-x86_64/PKGBUILD  |  120 +--
 extra-x86_64/svn-1.7.patch |   34 
 extra-x86_64/zprofile  |2 
 extra-x86_64/zsh.install   |   22 +++
 8 files changed, 214 insertions(+), 142 deletions(-)

Deleted: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2012-01-02 12:42:51 UTC (rev 145826)
+++ extra-i686/PKGBUILD 2012-01-02 12:43:36 UTC (rev 145827)
@@ -1,59 +0,0 @@
-# $Id$
-# Maintainer: Pierre Schmitz 
-
-pkgname=zsh
-pkgver=4.3.15
-pkgrel=1
-pkgdesc='A very advanced and programmable command interpreter (shell) for UNIX'
-arch=('i686' 'x86_64')
-url='http://www.zsh.org/'
-license=('custom')
-depends=('pcre' 'libcap' 'gdbm')
-install=zsh.install
-source=("ftp://ftp.zsh.org/pub/${pkgname}-${pkgver}.tar.bz2";
-'zprofile')
-backup=('etc/zsh/zprofile')
-md5sums=('11766b0dd674a513810903cd33ffcac4'
- '24a9335edf77252a7b5f52e079f7aef7')
-
-build() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   # FS#16360
-   sed -i 's/init.d/rc.d/g' Doc/Zsh/compsys.yo \
-Doc/zsh.texi \
-Completion/Unix/Type/_services \
-Completion/Unix/Command/_init_d
-   ./configure --prefix=/usr \
-   --bindir=/bin \
-   --enable-etcdir=/etc/zsh \
-   --enable-zshenv=/etc/zsh/zshenv \
-   --enable-zlogin=/etc/zsh/zlogin \
-   --enable-zlogout=/etc/zsh/zlogout \
-   --enable-zprofile=/etc/zsh/zprofile \
-   --enable-zshrc=/etc/zsh/zshrc \
-   --enable-maildir-support \
-   --with-term-lib='ncursesw' \
-   --enable-multibyte \
-   --enable-function-subdirs \
-   --enable-fndir=/usr/share/zsh/functions \
-   --enable-scriptdir=/usr/share/zsh/scripts \
-   --with-tcsetpgrp \
-   --enable-pcre \
-   --enable-cap \
-   --enable-zsh-secure-free
-   make
-}
-
-check() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   # This test wont work with the noatime mount option
-   rm Test/C02cond.ztst
-   HOME="${srcdir}" make check
-}
-
-package() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   make DESTDIR="${pkgdir}/" install
-   install -D -m644 "${srcdir}/zprofile" "${pkgdir}/etc/zsh/zprofile"
-   install -D -m644 LICENCE 
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
-}

Copied: zsh/repos/extra-i686/PKGBUILD (from rev 145826, zsh/trunk/PKGBUILD)
===
--- extra-i686/PKGBUILD (rev 0)
+++ extra-i686/PKGBUILD 2012-01-02 12:43:36 UTC (rev 145827)
@@ -0,0 +1,61 @@
+# $Id$
+# Maintainer: Pierre Schmitz 
+
+pkgname=zsh
+pkgver=4.3.15
+pkgrel=2
+pkgdesc='A very advanced and programmable command interpreter (shell) for UNIX'
+arch=('i686' 'x86_64')
+url='http://www.zsh.org/'
+license=('custom')
+depends=('pcre' 'libcap' 'gdbm')
+install=zsh.install
+source=("ftp://ftp.zsh.org/pub/${pkgname}-${pkgver}.tar.bz2";
+'zprofile' 'svn-1.7.patch')
+backup=('etc/zsh/zprofile')
+md5sums=('11766b0dd674a513810903cd33ffcac4'
+ '24a9335edf77252a7b5f52e079f7aef7'
+ '4fcbc119fdb624a8c483a278f3a82efd')
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   patch -p1 -i "${srcdir}/svn-1.7.patch"
+   # FS#16360
+   sed -i 's/init.d/rc.d/g' Doc/Zsh/compsys.yo \
+Doc/zsh.texi \
+Completion/Unix/Type/_services \
+Completion/Unix/Command/_init_d
+   ./configure --prefix=/usr \
+