pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/shells/zsh Update to 5.7.1



details:   https://anonhg.NetBSD.org/pkgsrc/rev/2eedad5b717d
branches:  trunk
changeset: 331245:2eedad5b717d
user:      ryoon <ryoon%pkgsrc.org@localhost>
date:      Fri Mar 15 12:44:13 2019 +0000

description:
Update to 5.7.1

* Move --enable-zsh-mem configure option to non-debug part
  to stabilize zsh with NetBSD's new jemalloc

Changelog:
2019-02-03  dana  <dana%dana.is@localhost>

        * unposted: Config/version.mk, Etc/FAQ.yo, README: Update for
        5.7.1

        * 44034: Completion/Unix/Type/_date_formats: Complete %9./%N,
        adjust some wording

        * 44033: Completion/Unix/Command/_dos2unix: Add completion for
        dos2unix/unix2dos

        * 44030: Src/prompt.c, Test/D01prompt.ztst: Return error for
        unrecognised colour name

2019-01-28  Fredric Silberberg  <fred%silberberg.xyz@localhost>

        * github #32: Completion/Unix/Command/_git: Fix a typo in the
        git tag completion.

2018-01-27  dana  <dana%dana.is@localhost>

        * unposted: Etc/creating-a-release.txt: Document additional
        release steps

        * 44020: Functions/VCS_Info/Backends/VCS_INFO_detect_p4: Fix
        infinite recursion

diffstat:

 shells/zsh/Makefile   |   6 ++++--
 shells/zsh/PLIST      |   3 ++-
 shells/zsh/distinfo   |  10 +++++-----
 shells/zsh/options.mk |   3 +--
 4 files changed, 12 insertions(+), 10 deletions(-)

diffs (72 lines):

diff -r c64f78ee1435 -r 2eedad5b717d shells/zsh/Makefile
--- a/shells/zsh/Makefile       Fri Mar 15 11:52:25 2019 +0000
+++ b/shells/zsh/Makefile       Fri Mar 15 12:44:13 2019 +0000
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.89 2019/01/27 14:42:25 wen Exp $
+# $NetBSD: Makefile,v 1.90 2019/03/15 12:44:13 ryoon Exp $
 
-DISTNAME=      zsh-5.7
+DISTNAME=      zsh-5.7.1
 CATEGORIES=    shells
 MASTER_SITES=  ${MASTER_SITE_SOURCEFORGE:=zsh/}
 EXTRACT_SUFX=  .tar.xz
@@ -18,6 +18,8 @@
 
 CONFIGURE_ARGS+=       --disable-gdbm
 CONFIGURE_ARGS+=       --enable-etcdir=${PKG_SYSCONFDIR:Q}
+# Stabilize zsh without jemalloc in libc
+CONFIGURE_ARGS+=       --enable-zsh-mem
 
 # Ensure we can find initscr(3) otherwise the curses module will not be built.
 CONFIGURE_ARGS+=        --with-term-lib="${BUILDLINK_LIBNAME.curses} ${BUILDLINK_LIBNAME.terminfo}"
diff -r c64f78ee1435 -r 2eedad5b717d shells/zsh/PLIST
--- a/shells/zsh/PLIST  Fri Mar 15 11:52:25 2019 +0000
+++ b/shells/zsh/PLIST  Fri Mar 15 12:44:13 2019 +0000
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.41 2019/01/27 14:42:25 wen Exp $
+@comment $NetBSD: PLIST,v 1.42 2019/03/15 12:44:13 ryoon Exp $
 bin/zsh
 bin/${PKGNAME}
 info/zsh.info
@@ -298,6 +298,7 @@
 share/zsh/${PKGVERSION}/functions/_dns_types
 share/zsh/${PKGVERSION}/functions/_doas
 share/zsh/${PKGVERSION}/functions/_domains
+share/zsh/${PKGVERSION}/functions/_dos2unix
 share/zsh/${PKGVERSION}/functions/_dpatch-edit-patch
 share/zsh/${PKGVERSION}/functions/_dpkg
 share/zsh/${PKGVERSION}/functions/_dpkg-buildpackage
diff -r c64f78ee1435 -r 2eedad5b717d shells/zsh/distinfo
--- a/shells/zsh/distinfo       Fri Mar 15 11:52:25 2019 +0000
+++ b/shells/zsh/distinfo       Fri Mar 15 12:44:13 2019 +0000
@@ -1,8 +1,8 @@
-$NetBSD: distinfo,v 1.67 2019/01/27 14:42:25 wen Exp $
+$NetBSD: distinfo,v 1.68 2019/03/15 12:44:13 ryoon Exp $
 
-SHA1 (zsh-5.7.tar.xz) = 81f1fc27dd85386701db6005317c24866e0c7d93
-RMD160 (zsh-5.7.tar.xz) = 38f7badb243dee398e700bceb4e36556759bddc1
-SHA512 (zsh-5.7.tar.xz) = cfef5604d6ff30aeb081ed2a2660c861027c0a90169231cdb6b19093ffa6d63946be7b1fde527769e60e5b14bb6853b590bf4a207b63d6ec66fffd30d9a94958
-Size (zsh-5.7.tar.xz) = 3124708 bytes
+SHA1 (zsh-5.7.1.tar.xz) = fedd82419881323b1087241d536d2fb1528a9deb
+RMD160 (zsh-5.7.1.tar.xz) = 34ced9b5418bb9210e4b112013f28fe0928f9f48
+SHA512 (zsh-5.7.1.tar.xz) = a6aa88e1955a80229a4784a128866e325f79a8b5f73c922ab480048411036f1835cbb31daa30ab38bd16ab2a50040eda8f4f1f64704b21b6acc3051b1dbf18d0
+Size (zsh-5.7.1.tar.xz) = 3126308 bytes
 SHA1 (patch-aczsh.m4) = 36c270d8d7cf727f48787ef889b2bd89cbf065e2
 SHA1 (patch-configure.ac) = b25808ef62acaa029d624b08c2ab23805161856e
diff -r c64f78ee1435 -r 2eedad5b717d shells/zsh/options.mk
--- a/shells/zsh/options.mk     Fri Mar 15 11:52:25 2019 +0000
+++ b/shells/zsh/options.mk     Fri Mar 15 12:44:13 2019 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: options.mk,v 1.3 2019/03/14 09:45:25 wiz Exp $
+# $NetBSD: options.mk,v 1.4 2019/03/15 12:44:13 ryoon Exp $
 
 PKG_OPTIONS_VAR=               PKG_OPTIONS.zsh
 PKG_SUPPORTED_OPTIONS=         debug static
@@ -9,7 +9,6 @@
 CONFIGURE_ARGS+=       --enable-zsh-debug
 CONFIGURE_ARGS+=       --enable-zsh-hash-debug
 CONFIGURE_ARGS+=       --enable-zsh-heap-debug
-CONFIGURE_ARGS+=       --enable-zsh-mem
 CONFIGURE_ARGS+=       --enable-zsh-mem-debug
 CONFIGURE_ARGS+=       --enable-zsh-mem-warning
 CONFIGURE_ARGS+=       --enable-zsh-secure-free



Home | Main Index | Thread Index | Old Index