[arch-commits] Commit in zsh/repos (10 files)
Evangelos Foutras
foutrelis at archlinux.org
Sun Sep 6 18:39:26 UTC 2015
Date: Sunday, September 6, 2015 @ 20:39:26
Author: foutrelis
Revision: 245392
archrelease: copy trunk to staging-i686, staging-x86_64
Added:
zsh/repos/staging-i686/
zsh/repos/staging-i686/PKGBUILD
(from rev 245391, zsh/trunk/PKGBUILD)
zsh/repos/staging-i686/zprofile
(from rev 245391, zsh/trunk/zprofile)
zsh/repos/staging-i686/zsh-doc.install
(from rev 245391, zsh/trunk/zsh-doc.install)
zsh/repos/staging-i686/zsh.install
(from rev 245391, zsh/trunk/zsh.install)
zsh/repos/staging-x86_64/
zsh/repos/staging-x86_64/PKGBUILD
(from rev 245391, zsh/trunk/PKGBUILD)
zsh/repos/staging-x86_64/zprofile
(from rev 245391, zsh/trunk/zprofile)
zsh/repos/staging-x86_64/zsh-doc.install
(from rev 245391, zsh/trunk/zsh-doc.install)
zsh/repos/staging-x86_64/zsh.install
(from rev 245391, zsh/trunk/zsh.install)
--------------------------------+
staging-i686/PKGBUILD | 87 +++++++++++++++++++++++++++++++++++++++
staging-i686/zprofile | 1
staging-i686/zsh-doc.install | 20 ++++++++
staging-i686/zsh.install | 12 +++++
staging-x86_64/PKGBUILD | 87 +++++++++++++++++++++++++++++++++++++++
staging-x86_64/zprofile | 1
staging-x86_64/zsh-doc.install | 20 ++++++++
staging-x86_64/zsh.install | 12 +++++
8 files changed, 240 insertions(+)
Copied: zsh/repos/staging-i686/PKGBUILD (from rev 245391, zsh/trunk/PKGBUILD)
===================================================================
--- staging-i686/PKGBUILD (rev 0)
+++ staging-i686/PKGBUILD 2015-09-06 18:39:26 UTC (rev 245392)
@@ -0,0 +1,87 @@
+# $Id$
+# Maintainer: Pierre Schmitz <pierre at archlinux.de>
+
+pkgbase=zsh
+pkgname=('zsh' 'zsh-doc')
+pkgver=5.1
+pkgrel=2
+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=('fbf736a6540873f4fb7bdaf70cafb1f0'
+ '1cae4809faf084081fb9aa08a3041288'
+ '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}
+ rm Completion/Unix/Command/_systemd
+}
+
+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/staging-i686/zprofile (from rev 245391, zsh/trunk/zprofile)
===================================================================
--- staging-i686/zprofile (rev 0)
+++ staging-i686/zprofile 2015-09-06 18:39:26 UTC (rev 245392)
@@ -0,0 +1 @@
+emulate sh -c 'source /etc/profile'
Copied: zsh/repos/staging-i686/zsh-doc.install (from rev 245391, zsh/trunk/zsh-doc.install)
===================================================================
--- staging-i686/zsh-doc.install (rev 0)
+++ staging-i686/zsh-doc.install 2015-09-06 18:39:26 UTC (rev 245392)
@@ -0,0 +1,20 @@
+infodir=usr/share/info
+filelist=(zsh.info zsh.info-1 zsh.info-2 zsh.info-3 zsh.info-4 zsh.info-5 zsh.info-6)
+
+post_install() {
+ [ -x usr/bin/install-info ] || return 0
+ for file in ${filelist[@]}; do
+ install-info $infodir/$file.gz $infodir/dir 2> /dev/null
+ done
+}
+
+post_upgrade() {
+ post_install
+}
+
+pre_remove() {
+ [ -x usr/bin/install-info ] || return 0
+ for file in ${filelist[@]}; do
+ install-info --delete $infodir/$file.gz $infodir/dir 2> /dev/null
+ done
+}
Copied: zsh/repos/staging-i686/zsh.install (from rev 245391, zsh/trunk/zsh.install)
===================================================================
--- staging-i686/zsh.install (rev 0)
+++ staging-i686/zsh.install 2015-09-06 18:39:26 UTC (rev 245392)
@@ -0,0 +1,12 @@
+post_install() {
+ grep -qe '^/bin/zsh$' etc/shells || echo '/bin/zsh' >> etc/shells
+ grep -qe '^/usr/bin/zsh$' etc/shells || echo '/usr/bin/zsh' >> etc/shells
+}
+
+post_upgrade() {
+ post_install
+}
+
+pre_remove() {
+ sed -i -r '/^(\/usr)?\/bin\/zsh$/d' etc/shells
+}
Copied: zsh/repos/staging-x86_64/PKGBUILD (from rev 245391, zsh/trunk/PKGBUILD)
===================================================================
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2015-09-06 18:39:26 UTC (rev 245392)
@@ -0,0 +1,87 @@
+# $Id$
+# Maintainer: Pierre Schmitz <pierre at archlinux.de>
+
+pkgbase=zsh
+pkgname=('zsh' 'zsh-doc')
+pkgver=5.1
+pkgrel=2
+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=('fbf736a6540873f4fb7bdaf70cafb1f0'
+ '1cae4809faf084081fb9aa08a3041288'
+ '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}
+ rm Completion/Unix/Command/_systemd
+}
+
+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/staging-x86_64/zprofile (from rev 245391, zsh/trunk/zprofile)
===================================================================
--- staging-x86_64/zprofile (rev 0)
+++ staging-x86_64/zprofile 2015-09-06 18:39:26 UTC (rev 245392)
@@ -0,0 +1 @@
+emulate sh -c 'source /etc/profile'
Copied: zsh/repos/staging-x86_64/zsh-doc.install (from rev 245391, zsh/trunk/zsh-doc.install)
===================================================================
--- staging-x86_64/zsh-doc.install (rev 0)
+++ staging-x86_64/zsh-doc.install 2015-09-06 18:39:26 UTC (rev 245392)
@@ -0,0 +1,20 @@
+infodir=usr/share/info
+filelist=(zsh.info zsh.info-1 zsh.info-2 zsh.info-3 zsh.info-4 zsh.info-5 zsh.info-6)
+
+post_install() {
+ [ -x usr/bin/install-info ] || return 0
+ for file in ${filelist[@]}; do
+ install-info $infodir/$file.gz $infodir/dir 2> /dev/null
+ done
+}
+
+post_upgrade() {
+ post_install
+}
+
+pre_remove() {
+ [ -x usr/bin/install-info ] || return 0
+ for file in ${filelist[@]}; do
+ install-info --delete $infodir/$file.gz $infodir/dir 2> /dev/null
+ done
+}
Copied: zsh/repos/staging-x86_64/zsh.install (from rev 245391, zsh/trunk/zsh.install)
===================================================================
--- staging-x86_64/zsh.install (rev 0)
+++ staging-x86_64/zsh.install 2015-09-06 18:39:26 UTC (rev 245392)
@@ -0,0 +1,12 @@
+post_install() {
+ grep -qe '^/bin/zsh$' etc/shells || echo '/bin/zsh' >> etc/shells
+ grep -qe '^/usr/bin/zsh$' etc/shells || echo '/usr/bin/zsh' >> etc/shells
+}
+
+post_upgrade() {
+ post_install
+}
+
+pre_remove() {
+ sed -i -r '/^(\/usr)?\/bin\/zsh$/d' etc/shells
+}
More information about the arch-commits
mailing list