pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/shells
Module Name: pkgsrc
Committed By: kim
Date: Thu Dec 9 19:55:40 UTC 2021
Modified Files:
pkgsrc/shells/standalone-tcsh: Makefile
pkgsrc/shells/static-tcsh: Makefile
pkgsrc/shells/tcsh: Makefile Makefile.common distinfo
Removed Files:
pkgsrc/shells/tcsh/patches: patch-Makefile.in patch-config_f.h
patch-nls_Makefile.in patch-sh.exp.c patch-sh.func.c patch-sh.h
patch-tcsh.man patch-tw.color.c
Log Message:
{,standalone-,static-}tcsh: Update to 6.23.01
Changes since 6.23.00:
8. V6.23.01 - 20211209
7. add \cc and \Uhhh, and document escape sequences
6. add $'string with escapes' ("dollar-single-quotes") (Kimmo Suominen)
5. don't glob the filetest builtin arguments twice
4. remove the duplicate echo escape parsing code and use parseescape
3. add \x{hh} \xhh \uhhh (H.Merijn Brand)
2. fix and document ln=target
1. Merge in patches from pkgsrc:
- Modernize the installation targets so that they use INSTALL_DATA,
INSTALL_PROGRAM, and MKDIR_P.
- Enable SYSMALLOC and SHORT_STRINGS on NetBSD.
- Enable NO_FIX_MALLOC and SHORT_STRINGS on OpenBSD.
For pkgsrc, items 1, 2, and 5 had already been applied via patches.
To generate a diff of this commit:
cvs rdiff -u -r1.37 -r1.38 pkgsrc/shells/standalone-tcsh/Makefile
cvs rdiff -u -r1.16 -r1.17 pkgsrc/shells/static-tcsh/Makefile
cvs rdiff -u -r1.103 -r1.104 pkgsrc/shells/tcsh/Makefile
cvs rdiff -u -r1.2 -r1.3 pkgsrc/shells/tcsh/Makefile.common
cvs rdiff -u -r1.56 -r1.57 pkgsrc/shells/tcsh/distinfo
cvs rdiff -u -r1.2 -r0 pkgsrc/shells/tcsh/patches/patch-Makefile.in \
pkgsrc/shells/tcsh/patches/patch-sh.h \
pkgsrc/shells/tcsh/patches/patch-tcsh.man \
pkgsrc/shells/tcsh/patches/patch-tw.color.c
cvs rdiff -u -r1.1 -r0 pkgsrc/shells/tcsh/patches/patch-config_f.h \
pkgsrc/shells/tcsh/patches/patch-sh.exp.c
cvs rdiff -u -r1.3 -r0 pkgsrc/shells/tcsh/patches/patch-nls_Makefile.in \
pkgsrc/shells/tcsh/patches/patch-sh.func.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/shells/standalone-tcsh/Makefile
diff -u pkgsrc/shells/standalone-tcsh/Makefile:1.37 pkgsrc/shells/standalone-tcsh/Makefile:1.38
--- pkgsrc/shells/standalone-tcsh/Makefile:1.37 Thu Nov 18 10:20:47 2021
+++ pkgsrc/shells/standalone-tcsh/Makefile Thu Dec 9 19:55:39 2021
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.37 2021/11/18 10:20:47 kim Exp $
+# $NetBSD: Makefile,v 1.38 2021/12/09 19:55:39 kim Exp $
#
# FIXME: This is because of PREFIX=/ below.
@@ -6,7 +6,6 @@ CHECK_FILES_SUPPORTED= no
NOT_FOR_UNPRIVILEGED= yes
PKGNAME= standalone-${DISTNAME}
-PKGREVISION= 3
PATCHDIR= ../../shells/tcsh/patches
PKGDIR= ../../shells/tcsh
Index: pkgsrc/shells/static-tcsh/Makefile
diff -u pkgsrc/shells/static-tcsh/Makefile:1.16 pkgsrc/shells/static-tcsh/Makefile:1.17
--- pkgsrc/shells/static-tcsh/Makefile:1.16 Thu Nov 18 10:20:47 2021
+++ pkgsrc/shells/static-tcsh/Makefile Thu Dec 9 19:55:39 2021
@@ -1,8 +1,7 @@
-# $NetBSD: Makefile,v 1.16 2021/11/18 10:20:47 kim Exp $
+# $NetBSD: Makefile,v 1.17 2021/12/09 19:55:39 kim Exp $
#
PKGNAME= static-${DISTNAME}
-PKGREVISION= 3
.include "../../shells/tcsh/Makefile.common"
Index: pkgsrc/shells/tcsh/Makefile
diff -u pkgsrc/shells/tcsh/Makefile:1.103 pkgsrc/shells/tcsh/Makefile:1.104
--- pkgsrc/shells/tcsh/Makefile:1.103 Thu Nov 18 10:20:47 2021
+++ pkgsrc/shells/tcsh/Makefile Thu Dec 9 19:55:39 2021
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile,v 1.103 2021/11/18 10:20:47 kim Exp $
+# $NetBSD: Makefile,v 1.104 2021/12/09 19:55:39 kim Exp $
.include "../../shells/tcsh/Makefile.common"
-PKGREVISION= 3
+CONFLICTS= static-tcsh-[0-9]*
.include "../../mk/bsd.pkg.mk"
Index: pkgsrc/shells/tcsh/Makefile.common
diff -u pkgsrc/shells/tcsh/Makefile.common:1.2 pkgsrc/shells/tcsh/Makefile.common:1.3
--- pkgsrc/shells/tcsh/Makefile.common:1.2 Mon Nov 15 17:11:58 2021
+++ pkgsrc/shells/tcsh/Makefile.common Thu Dec 9 19:55:39 2021
@@ -1,10 +1,10 @@
-# $NetBSD: Makefile.common,v 1.2 2021/11/15 17:11:58 kim Exp $
+# $NetBSD: Makefile.common,v 1.3 2021/12/09 19:55:39 kim Exp $
#
# used by shells/standalone-tcsh/Makefile
# used by shells/static-tcsh/Makefile
# used by shells/tcsh/Makefile
-DISTNAME= tcsh-6.23.00
+DISTNAME= tcsh-6.23.01
CATEGORIES= shells
MASTER_SITES= ftp://ftp.astron.com/pub/tcsh/
MASTER_SITES+= http://ftp.funet.fi/pub/mirrors/ftp.astron.com/pub/tcsh/
@@ -14,8 +14,6 @@ HOMEPAGE= https://www.tcsh.org/
COMMENT= Extended C-shell with many useful features
LICENSE= original-bsd
-CONFLICTS= static-tcsh-[0-9]*
-
GNU_CONFIGURE= yes
USE_TOOLS+= autoconf:test perl:test
Index: pkgsrc/shells/tcsh/distinfo
diff -u pkgsrc/shells/tcsh/distinfo:1.56 pkgsrc/shells/tcsh/distinfo:1.57
--- pkgsrc/shells/tcsh/distinfo:1.56 Thu Nov 18 10:20:47 2021
+++ pkgsrc/shells/tcsh/distinfo Thu Dec 9 19:55:39 2021
@@ -1,13 +1,5 @@
-$NetBSD: distinfo,v 1.56 2021/11/18 10:20:47 kim Exp $
+$NetBSD: distinfo,v 1.57 2021/12/09 19:55:39 kim Exp $
-BLAKE2s (tcsh-6.23.00.tar.gz) = a61b142efc2ca927cb33ea4eb87c0530cacc0c79ff1c30d5e9022a4404cef72d
-SHA512 (tcsh-6.23.00.tar.gz) = 8ea491e9409f12ab113bf5551398cb827692a50340318b050d0f8278d3cd9c133ba89a407dc692d9c4bd69957ecd6d4d92db7ccfacc7064ace3b09e3bd562f30
-Size (tcsh-6.23.00.tar.gz) = 1010250 bytes
-SHA1 (patch-Makefile.in) = 16ae4c595c8e23be1acbfa0263334df569300a79
-SHA1 (patch-config_f.h) = 715d939e8a8f4917bd219dccd91d5c49ae502939
-SHA1 (patch-nls_Makefile.in) = 58d859e8a50e6436b9bc6514497eb876426d92d7
-SHA1 (patch-sh.exp.c) = c65aeedf8950d2e298d1d0a5dbe2261eba18ff77
-SHA1 (patch-sh.func.c) = f06cddb996915e79e372d56984f3798a68437e05
-SHA1 (patch-sh.h) = 487282e85cd6f21a703d7d5332c47f113ca2fea8
-SHA1 (patch-tcsh.man) = 1265cc74450170f65c282921859c3b29ef6caa39
-SHA1 (patch-tw.color.c) = 39c1f8a0821b8254c6bb4729b5e1504c6a83feb5
+BLAKE2s (tcsh-6.23.01.tar.gz) = 12d0bc4be33bb8ba40ee5ef8f0a1b0339dbb7f6db6d07d0038c09ad021cffaf6
+SHA512 (tcsh-6.23.01.tar.gz) = 7460d86dfedf3f2728dee8fe5b6cddec20020a2c3af374be3f83cbb0835237153e5456f864a259816e56e88edd9e15bc18df92ebe5471a73bbe9ed70656abf92
+Size (tcsh-6.23.01.tar.gz) = 947240 bytes
Home |
Main Index |
Thread Index |
Old Index