pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/shells/bash
Module Name: pkgsrc
Committed By: wiz
Date: Sat Jul 5 08:28:44 UTC 2025
Modified Files:
pkgsrc/shells/bash: Makefile PLIST distinfo
Removed Files:
pkgsrc/shells/bash/patches: patch-builtins_printf.def
patch-builtins_psize.c patch-builtins_ulimit.def patch-configure
patch-examples_loadables_getconf.c patch-lib_malloc_malloc.c
patch-support_shobj-conf
Log Message:
bash: update to 5.3.
1. New Features in Bash
a. When checking whether a script file argument is a binary file, check the
first two lines of a script if the first line begins with `#!'.
b. Bash does a better job of preserving user-supplied quotes around a word
completion, instead of requoting it.
c. Bash reports the starting line number in an error message about an
unterminated compound command like `if' without a `fi'.
d. Implement the POSIX requirement that running the `jobs' builtin removes
jobs from the jobs list.
f. Call bash signal handlers while executing programmable completion commands,
instead of readline's.
g. Print an error message if a regular expression used with [[ fails to compile.
h. The `umask' builtin now has additional features for full POSIX conformance.
i. `type -a -P' reports both hashed pathnames and the result of a $PATH search.
j. `trap' has a new -P option that prints the trap action associated with each
signal argument.
k. The `command' builtin preceding a declaration builtin (e.g., `declare')
preserves the special asisgnment statement parsing for the declaration
builtin. This is a new POSIX requirement.
l. `printf' uses the `alternate form' for %q and %Q to force single quoting.
m. `printf' now interprets %ls (%S) and %lc (%C) as referring to wide strings
and characters, respectively, when in a multibyte locale.
n. The shell can be compiled with a different default value for the
patsub_replacement option.
o. Check for window size changes during trap commands, `bind -x' commands,
and programmable completion.
p. Treat a NULL value for $PATH as equivalent to ".".
p. New loadable builtins: kv, strptime
q. GLOBSORT: new variable to specify how to sort the results of pathname
expansion (name, size, blocks, mtime, atime, ctime, numeric, none) in
ascending or descending order.
r. `compgen' has a new option: -V varname. If supplied, it stores the generated
completions into VARNAME instead of printing them on stdout.
s. New form of command substitution: ${ command; } or ${|command;} to capture
the output of COMMAND without forking a child process and using pipes.
t. array_expand_once: new shopt option, replaces assoc_expand_once
u. complete/compopt new option: fullquote; sets rl_full_quoting_desired so all
possible completions are quoted as if they were filenames.
v. Command timing now allows precisions up to 6 digits instead of 3 in
$TIMEFORMAT.
w. BASH_MONOSECONDS: new dynamic variable that returns the value of the
system's monotonic clock, if one is available.
x. BASH_TRAPSIG: new variable, set to the numeric signal number of the trap
being executed while it's running.
y. The checkwinsize option can be used in subshell commands started from
interactive shells.
z. In posix mode, the test command < and > binary primaries compare strings
using the current locale.
aa. bind -x allows new key binding syntax: separate the key sequence and the
command string with whitespace, but require the command string to be
double-quoted if this is used. This allows different quoting options for
the command string.
bb. Print commands bound to key sequences using `bind -x' with the new key
binding syntax it allows.
cc. `read' has a new `-E' option to use readline but with the default bash
completion (including programmable completion).
dd. New bindable readline command name: `bash-vi-complete'.
ee. New test builtin behavior when parsing a parenthesized subexpression and
test was given more than 4 arguments: scan forward for a closing paren and
call posixtest() if there are 4 or fewer arguments between the parentheses.
Added for compatibility with coreutils test, dependent on the shell
compatibility level. Such expressions remain ambiguous.
ff. MULTIPLE_COPROCS is now enabled by default.
gg. The `bind' builtin interprets additional non-option arguments after -p or
-P as bindable command names and restricts output to the bindings for
those names.
hh. Bash now uses the login shell for $BASH if the shell is named `su' or `-su'.
ii. Bash now prints job notifications if an interactive shell is running a trap,
even though the shell is not interactive at that moment.
jj. Programmable completion allows a new compspec loaded after a completion
function returns 124 to be used in more cases.
kk. ./source has a new -p PATH option, which makes it use the PATH argument
instead of $PATH to look for the file.
ll. Documentation has been significantly updated.
mm. `wait -n' can now return terminated process substitutions, jobs about
which the user has already been notified (like `wait' without options),
nn. `wait -n' removes jobs from the jobs table or list of terminated children
when in posix mode.
oo. Changed the `wait' builtin behavior regarding process substitutions to
match the documentation.
pp. There is a new `bash_source_fullpath' shopt option, which makes bash put
full pathnames into BASH_SOURCE, and a way to set a default value for it
at configure time.
qq. Posix mode now forces job notifications to occur when the new edition of
POSIX specifies (since it now specifies them).
rr. Interactive shells don't print job notifications while sourcing scripts.
ss. The parser prints more information about the command it's trying to parse
when it encounters EOF before completing the command.
tt. Posix mode no longer requires function names to be valid shell identifiers.
uu. If `exit' is run in a trap and not supplied an exit status argument, it
uses the value of $? from before the trap only if it's run at the trap's
`top level' and would cause the trap to end (that is, not in a subshell).
This is from Posix interp 1602.
vv. There is a new `fltexpr' loadable builtin to perform floating-point
arithmetic similarly to `let'.
ww. The `install-strip' and `strip' Makefile targets now deal with cross-
compiling.
To generate a diff of this commit:
cvs rdiff -u -r1.116 -r1.117 pkgsrc/shells/bash/Makefile
cvs rdiff -u -r1.12 -r1.13 pkgsrc/shells/bash/PLIST
cvs rdiff -u -r1.85 -r1.86 pkgsrc/shells/bash/distinfo
cvs rdiff -u -r1.1 -r0 pkgsrc/shells/bash/patches/patch-builtins_printf.def \
pkgsrc/shells/bash/patches/patch-builtins_psize.c
cvs rdiff -u -r1.3 -r0 pkgsrc/shells/bash/patches/patch-builtins_ulimit.def \
pkgsrc/shells/bash/patches/patch-lib_malloc_malloc.c \
pkgsrc/shells/bash/patches/patch-support_shobj-conf
cvs rdiff -u -r1.2 -r0 pkgsrc/shells/bash/patches/patch-configure
cvs rdiff -u -r1.4 -r0 \
pkgsrc/shells/bash/patches/patch-examples_loadables_getconf.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/bash/Makefile
diff -u pkgsrc/shells/bash/Makefile:1.116 pkgsrc/shells/bash/Makefile:1.117
--- pkgsrc/shells/bash/Makefile:1.116 Tue Sep 24 17:01:30 2024
+++ pkgsrc/shells/bash/Makefile Sat Jul 5 08:28:43 2025
@@ -1,22 +1,15 @@
-# $NetBSD: Makefile,v 1.116 2024/09/24 17:01:30 kre Exp $
+# $NetBSD: Makefile,v 1.117 2025/07/05 08:28:43 wiz Exp $
-BASH_VERSION= 5.2
-BASH_PATCHLEVEL= 37
+BASH_VERSION= 5.3
+#BASH_PATCHLEVEL= 37
DISTNAME= bash-${BASH_VERSION}
-PKGNAME= bash-${BASH_VERSION}.${BASH_PATCHLEVEL}
+#PKGNAME= bash-${BASH_VERSION}.${BASH_PATCHLEVEL}
CATEGORIES= shells
MASTER_SITES= ${MASTER_SITE_GNU:=bash/}
-PATCH_SITES= ${MASTER_SITES:=bash-5.2-patches/}
-PATCHFILES+= bash52-001 bash52-002 bash52-003 bash52-004 bash52-005
-PATCHFILES+= bash52-006 bash52-007 bash52-008 bash52-009 bash52-010
-PATCHFILES+= bash52-011 bash52-012 bash52-013 bash52-014 bash52-015
-PATCHFILES+= bash52-016 bash52-017 bash52-018 bash52-019 bash52-020
-PATCHFILES+= bash52-021 bash52-022 bash52-023 bash52-024 bash52-025
-PATCHFILES+= bash52-026 bash52-027 bash52-028 bash52-029 bash52-030
-PATCHFILES+= bash52-031 bash52-032 bash52-033 bash52-034 bash52-035
-PATCHFILES+= bash52-036 bash52-037
+#PATCH_SITES= ${MASTER_SITES:=bash-5.3-patches/}
+#PATCHFILES+= bash52-001 bash52-002 bash52-003 bash52-004 bash52-005
MAINTAINER= pkgsrc-users%NetBSD.org@localhost
HOMEPAGE= https://www.gnu.org/software/bash/bash.html
Index: pkgsrc/shells/bash/PLIST
diff -u pkgsrc/shells/bash/PLIST:1.12 pkgsrc/shells/bash/PLIST:1.13
--- pkgsrc/shells/bash/PLIST:1.12 Mon Oct 3 12:50:27 2022
+++ pkgsrc/shells/bash/PLIST Sat Jul 5 08:28:43 2025
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.12 2022/10/03 12:50:27 wiz Exp $
+@comment $NetBSD: PLIST,v 1.13 2025/07/05 08:28:43 wiz Exp $
bin/bash
bin/bashbug
include/bash/alias.h
@@ -34,6 +34,7 @@ include/bash/include/memalloc.h
include/bash/include/ocache.h
include/bash/include/posixdir.h
include/bash/include/posixjmp.h
+include/bash/include/posixselect.h
include/bash/include/posixstat.h
include/bash/include/posixtime.h
include/bash/include/posixwait.h
@@ -43,8 +44,10 @@ include/bash/include/shtty.h
include/bash/include/stat-time.h
include/bash/include/stdc.h
include/bash/include/systimes.h
+include/bash/include/timer.h
include/bash/include/typemax.h
include/bash/include/unionwait.h
+include/bash/include/unlocked-io.h
include/bash/jobs.h
include/bash/make_cmd.h
include/bash/pathnames.h
@@ -65,15 +68,18 @@ lib/bash/Makefile.inc
lib/bash/Makefile.sample
lib/bash/accept
lib/bash/basename
+lib/bash/chmod
lib/bash/csv
lib/bash/cut
lib/bash/dirname
lib/bash/dsv
lib/bash/fdflags
lib/bash/finfo
+lib/bash/fltexpr
lib/bash/getconf
lib/bash/head
lib/bash/id
+lib/bash/kv
lib/bash/ln
lib/bash/loadables.h
lib/bash/logname
@@ -93,6 +99,7 @@ lib/bash/setpgid
lib/bash/sleep
lib/bash/stat
lib/bash/strftime
+lib/bash/strptime
lib/bash/sync
lib/bash/tee
lib/bash/truefalse
@@ -134,6 +141,7 @@ ${PLIST.nls}share/locale/hu/LC_MESSAGES/
${PLIST.nls}share/locale/id/LC_MESSAGES/bash.mo
${PLIST.nls}share/locale/it/LC_MESSAGES/bash.mo
${PLIST.nls}share/locale/ja/LC_MESSAGES/bash.mo
+${PLIST.nls}share/locale/ka/LC_MESSAGES/bash.mo
${PLIST.nls}share/locale/ko/LC_MESSAGES/bash.mo
${PLIST.nls}share/locale/lt/LC_MESSAGES/bash.mo
${PLIST.nls}share/locale/nb/LC_MESSAGES/bash.mo
@@ -145,6 +153,7 @@ ${PLIST.nls}share/locale/ro/LC_MESSAGES/
${PLIST.nls}share/locale/ru/LC_MESSAGES/bash.mo
${PLIST.nls}share/locale/sk/LC_MESSAGES/bash.mo
${PLIST.nls}share/locale/sl/LC_MESSAGES/bash.mo
+${PLIST.nls}share/locale/sq/LC_MESSAGES/bash.mo
${PLIST.nls}share/locale/sr/LC_MESSAGES/bash.mo
${PLIST.nls}share/locale/sv/LC_MESSAGES/bash.mo
${PLIST.nls}share/locale/tr/LC_MESSAGES/bash.mo
Index: pkgsrc/shells/bash/distinfo
diff -u pkgsrc/shells/bash/distinfo:1.85 pkgsrc/shells/bash/distinfo:1.86
--- pkgsrc/shells/bash/distinfo:1.85 Sun Mar 30 21:16:22 2025
+++ pkgsrc/shells/bash/distinfo Sat Jul 5 08:28:43 2025
@@ -1,125 +1,7 @@
-$NetBSD: distinfo,v 1.85 2025/03/30 21:16:22 wiz Exp $
+$NetBSD: distinfo,v 1.86 2025/07/05 08:28:43 wiz Exp $
-BLAKE2s (bash-5.2.tar.gz) = 430755ea2af4903dba2bdbeffd4d861edb9f54c248071362f0d14f15171764cd
-SHA512 (bash-5.2.tar.gz) = 5647636223ba336bf33e0c65e516d8ebcf6932de8b44f37bc468eedb87579c628ad44213f78534beb10f47aebb9c6fa670cb0bed3b4e7717e5faf7e9a1ef81ae
-Size (bash-5.2.tar.gz) = 10950833 bytes
-BLAKE2s (bash52-001) = 6b618f14e67c2133268a4bfec8649032adbd91a7cb438ffac51e873001fbc930
-SHA512 (bash52-001) = d1e5d508a4a1888052434adff551732c4215372174adb19dce9514faa18c78ee690e1c0fd9858e15c76fbb910ccace7e62751c3c266f5db253dbffda8c882409
-Size (bash52-001) = 1381 bytes
-BLAKE2s (bash52-002) = 63fc1b73de77a9e46a7ded54564dfdd6ea5f978d14133d425fb2f783fa3e441e
-SHA512 (bash52-002) = 2484262d6cb32303c761793af2c352062421054149fcf3f591a590e409bb21985683a1e50669547e396eea46f1081ae0821076c3975357dc6c850f94cdd527c1
-Size (bash52-002) = 1328 bytes
-BLAKE2s (bash52-003) = b1e967bd7c6a231c2168c9140e0a6fd77a99b94861069188872fa597755c633e
-SHA512 (bash52-003) = c8dac54c8b1805dc756efd06be3092a4de1c45bc1e97b574ca49bf4152515a545d154a84c1d9a82747c79d676b8330254856380bc929d8e835b10af743d66cbb
-Size (bash52-003) = 2157 bytes
-BLAKE2s (bash52-004) = 01ca0280b58aeb052f4a9b6dad1cffd883ad4d84526cb488ad712e453fc74332
-SHA512 (bash52-004) = 64bab53225ab2f0b974988c9b1ad5d2d2bb256ce384bb9d4646d1e75411a8eefc7ce2a7ee470345bff276e71147e9b5149a5d9b25bd5308f7bad77b8f68b5c84
-Size (bash52-004) = 2016 bytes
-BLAKE2s (bash52-005) = b61834620ea1e3283069d54ae0996305a65b43496465e7a3eb20fd38d566655b
-SHA512 (bash52-005) = 9971ebef50d2a776226d68dbb11feaac85522f66824a0e54faa97b0a14cc242eb8daae2c4364ec59cea5413824be7cbc149c02d1452f211588c505f030b13ee0
-Size (bash52-005) = 1515 bytes
-BLAKE2s (bash52-006) = 05870aa3e8e05b4426b0456aeffc7a7a6d284a51ff9d492f9423c65327bca2cd
-SHA512 (bash52-006) = aa46d8a5523374a269ea3d1b4b75ae4e3d918ef4f6d89331bed5da24505bcfac321864071f29161e56487c611d35fe1351c2a2ea226ccaeecef55d01a5a5f2c7
-Size (bash52-006) = 8790 bytes
-BLAKE2s (bash52-007) = e1facea4c08002405baacadbe68755ab24adbeab8a1bf8b42cada4f0c5e110d8
-SHA512 (bash52-007) = a2f5ce78c651ec220852989a8b2325d0f1a3739f6494796124324e5883290f74b7e360f91d540c339e1ca3030e54b91301241bb481e965f9fdf915d5fd5accd1
-Size (bash52-007) = 9072 bytes
-BLAKE2s (bash52-008) = c59b3d683d4bbd9d3ed09bc897c00aaa68ffd8b505cf0861001afb5ee64ca221
-SHA512 (bash52-008) = 1f317f3c2313ede7b67c4e396dfad453787f4a30ff77fc53aae482c7dbb752f60c1f33cb414dcc3055a55b77c8c80aeda9626e5b066a79af8a082c6e056340e2
-Size (bash52-008) = 1771 bytes
-BLAKE2s (bash52-009) = e91a935ace0ba2650e91ce0fe7482cdccbff37c9d0ebab148e682feece5953f1
-SHA512 (bash52-009) = 71fffb71e5876e7abea7e769f4438f2f8d3843d7dfec13f1ba7e79ead5b001d7543c92eb3a628b393f8652bf136e4768c1d1c7b55c155cafe83886b900396e68
-Size (bash52-009) = 1316 bytes
-BLAKE2s (bash52-010) = 1c2e9c5012b29feca17550832ab8c46b371d6f46b3d5f6bf20c5dd825a1c342a
-SHA512 (bash52-010) = 12d120e39593d3f23aa86e510b0eda514ec69ef42e910e5855e4c7510354e8504e5d6949770448f5632ce482c9ab468f4ba82a8a38b4a8237cdd7b54f742946a
-Size (bash52-010) = 2045 bytes
-BLAKE2s (bash52-011) = 04bd4027dac0079da2dbbaa47a2cc00dcf4b994689693a56a51babcd55b63518
-SHA512 (bash52-011) = 83a7584ca8ee512839183e329183476a2c8bcb995e3dc9d5188f04f11760bd3cb0f2d29d12bca2661b7ce8ab125d44d35d839f735992ca6c27f936d609ac4683
-Size (bash52-011) = 1229 bytes
-BLAKE2s (bash52-012) = b980049d0314616909334aa332dbe55e7f2c4be0cab342a2b35342ca98d4c9af
-SHA512 (bash52-012) = 8f969cb36ee81ac47a4c3c6ee7fbe62159192fa4f14cb48973eccd55c458e6a093adc3045ee1c379544d8183d77813977a43cad5d225322d8816540a1cb8893b
-Size (bash52-012) = 9107 bytes
-BLAKE2s (bash52-013) = 6771a5b6fae141f922ac1f38202ea9a1c64d555471ae0cf2560da1147b4d66a3
-SHA512 (bash52-013) = 5aaa82d88ec98382e241cbf1a4356a9e69888432301f1c974038b59fd8be08ad2a52b782f51ac673bad72bc4e07d1eb45b926595ebe6d53223dcb7f15f3883a7
-Size (bash52-013) = 1503 bytes
-BLAKE2s (bash52-014) = fdea5b5eed371df252f732dfc2fd015524bc3063c66a8451492b4b791650bb1d
-SHA512 (bash52-014) = 5b6e846b30691e398ee5628226278ffd9def64ef1edd8d77dd4bd681405c339fce39f820837cf8e09c0478b39ecb3a8db01c3e0afb88bdecb7bf362d797e4884
-Size (bash52-014) = 3245 bytes
-BLAKE2s (bash52-015) = ad6658c68d0ac6c40341d3e1c7ee43a3b8ee4e382b45e1fea31a6bf089288bce
-SHA512 (bash52-015) = eb1bd6b3bf8811d765f222cd48360eb7f3f0aaa4f29f1b6c1f17635b819e5e4734ec4e7fcfde551fd7a6299a7d67869ea0bc5cc86cc523bc4a64d30e433df493
-Size (bash52-015) = 8088 bytes
-BLAKE2s (bash52-016) = 07203a6a4ae3e2678ac3402b3739d2c754769da1f85fb1a59c6eeb923fa53179
-SHA512 (bash52-016) = 11c3197870570050767887a7497b52549caf2bf74e69c5a4eb95ff316942177da0a1150819f7051eb690841796b98d9a81f784204d18ad176cd2c29473e466d4
-Size (bash52-016) = 1225 bytes
-BLAKE2s (bash52-017) = 08678163a8661d7f7c6177a40590430262e7ce5d0c8e46443fb3cac5b810bb82
-SHA512 (bash52-017) = 1844d1f4fbce0ae1dd8f2b9c152decc7cc645b7c0c66e84ed129072251e990f2da2220917957e98dd8b1299d2d10fb2dd23e184e40457063c1d554bb132ef1e5
-Size (bash52-017) = 1396 bytes
-BLAKE2s (bash52-018) = 963bff57ea63d6f14d99415932f9c9a577c5a23a19ae91f9ab705cad744fda61
-SHA512 (bash52-018) = b454ba8a311b0943f9669425891499fe8d4b5f1a90899bf6c4d0969699e21f8f8e08d0b0e23a7cf5c97aa6b21384ae907ed710254053e7edd43328aa6003780c
-Size (bash52-018) = 151467 bytes
-BLAKE2s (bash52-019) = 860a8e163707481b42601921fabe41875bcbd89bf8685bb97e180c7d9cfa6b94
-SHA512 (bash52-019) = d009b0a571a3e23ab723c6c6fd4b28c48db1a927d690b4c42d7ed2fa51052aaf662026a2de9e4ee3676087eac844f8b57adae567556228c4fd8fb4ed3c8a1b94
-Size (bash52-019) = 2548 bytes
-BLAKE2s (bash52-020) = 55118bb23608eea47252d2aa3941c317acfa149ffd810a6ede7945ea6d2e41f8
-SHA512 (bash52-020) = a5a927e90ac3daead54e90f8ff99dbda0fd652c3df83b7bcde0adb136fc4ba8498810e5bfa1d7f0c143422bf1f4622a4669c96e505bccad7c9a271d7e0668187
-Size (bash52-020) = 1459 bytes
-BLAKE2s (bash52-021) = 323342e574ace61041f5d9238de72aaa37e4093eacca443ec751d859f983ae6a
-SHA512 (bash52-021) = c3a61e975819919d7ba120f322fc5e9a420b21f03d7bf989a5e7b6a99bfe35372744277040e88361ee383ab53b05d607d52ff2000b401de038af67c91728b48f
-Size (bash52-021) = 1890 bytes
-BLAKE2s (bash52-022) = b5f7daa956e81d040555c968c85972d8d00623941529b80c6358e61ab4a92b33
-SHA512 (bash52-022) = 12a669f3b6ba936be31a85c50bfe52689f3deea02eedb31100ab113b1e74d8104934e615965b4bf7f3b1cf5ad71870211b0bd910bf0862e8ce603505b4b1db3f
-Size (bash52-022) = 1305 bytes
-BLAKE2s (bash52-023) = 582754e708d881f3286133c0a7b5ca4123d308a558775e9f07ffa59adbed40fc
-SHA512 (bash52-023) = 59a2e9e4ee4938ba868552eecdbed5f5d797e143bf6f69fde5c50a4e478c19ce36d562b9f51f65d7da5fe216050276bfe1eb430c151c845cffa77d3fdc9ce771
-Size (bash52-023) = 1817 bytes
-BLAKE2s (bash52-024) = c9e07ff67af63a40b0581259efae0fef35b5a49d122c4ef1fde9f6e7a342320d
-SHA512 (bash52-024) = ff77920ba4c8df7cb8841d94f483a5678a65ff2aab3f03b02b21eba7daaea15d05af26d2fc7f468509c2047f682908d78cd94254e0688496280e345d010aac24
-Size (bash52-024) = 2298 bytes
-BLAKE2s (bash52-025) = e0e9df6638237c359a4a788e2685af538e34f5bd14b7730828c43ed714af3729
-SHA512 (bash52-025) = 20e708ff483ae2ba655c069fbaccdef59d81f52ba787d97fd1b997522248e9e7e1d7773a35f3a6e44c4521a7a5be273ffa25c580533e6d1d1bfb5e49040530c3
-Size (bash52-025) = 1454 bytes
-BLAKE2s (bash52-026) = a80b13836a08e48795b3b71b645b1032ace336efe80b4058af4bcc7d16f4d343
-SHA512 (bash52-026) = 571993da2b8067ef5b7b705aee65dd414ee70b216ffbcb9fab7c08807b87a72465594c3f1576c795ae86bf951911cdde70ad1037e851b88ee379c4237ccff6fe
-Size (bash52-026) = 1372 bytes
-BLAKE2s (bash52-027) = d932658b26464a88f9de8dd9d67d950ef7a95009f10da1cc5393fe5ba8952afe
-SHA512 (bash52-027) = 644ef1ea0ce002913b443cfc74d1376b3b8d1c7c976c88cfcec663313563ea905af3aa7ab7236e0ee8336195b01cfc7f2a5a738c5f787a637be92cda937f571e
-Size (bash52-027) = 1881 bytes
-BLAKE2s (bash52-028) = f3a6a571eb08ea8d7f931773790027740ee69987de240d93fd0237482c216def
-SHA512 (bash52-028) = 0e59ee230c2f9394814578e56270efa93e5ed8ed2fbf0c0777fdfad4d3f01f560923a80792998789c901068d88371f984f539fdebbec726759eeb7966d324328
-Size (bash52-028) = 1571 bytes
-BLAKE2s (bash52-029) = ceadada59280578658f913b50a85195081738c1ff754359185aaf427bca91d72
-SHA512 (bash52-029) = b0b134347fbe0916b9c0fc60a9dbc6b6ebc7439bd5a12d0cda29a0012cbbcc16414392597764c24b8ca716ce727bce7da7fae39acc3cdba9506efb01014a43ae
-Size (bash52-029) = 3619 bytes
-BLAKE2s (bash52-030) = d5051e89445a0d2dde48a315578011b7d7e0e474188b70fae79191b4a946d526
-SHA512 (bash52-030) = 515902fd567dfbbca3d4f6d98a7f2f5a9d1ad323d829f9b90839de4807592708dea3d52f67cb868617278f9c8c6bb299ab3310d898be344d63e824043f17fe2d
-Size (bash52-030) = 4111 bytes
-BLAKE2s (bash52-031) = dec3101117a83108c784e6f1e1171053823b9fd002e470967402d0d6e2c3cbd9
-SHA512 (bash52-031) = 08f3e3cb6a6554ea6d1b1f5cbcd156cb75f9c0c5350801b67352a1c2ffec0d02d90c0947736fd52de304e549a1b919ea0ff42e23a8cf63a721a351ea1732bea5
-Size (bash52-031) = 1159 bytes
-BLAKE2s (bash52-032) = 8be333184548feb834e8eb84a047417c881c9569e7fd433c5db02770fc3f4609
-SHA512 (bash52-032) = 9eb277d2d92b9ec49f70582e52305bc45b425b189ba2a15c51c537e07ccf9cb894c1ca44fa399b04297fe51027aff7f169f41efe2d60895ca55c421c0778ef32
-Size (bash52-032) = 1529 bytes
-BLAKE2s (bash52-033) = 3399ddd5bcfb566000dfd465e846fade93008050bcd9c4b19dda5a22909c2ca1
-SHA512 (bash52-033) = 698b7917c0c7147ef4d7a6f488013c10b4156b7f6bfda6e974010728eb17bfaae3666cfabe361afe7693fe9480bf44ec9ba6e73e7b572bf438f072d04ab6d4bc
-Size (bash52-033) = 2131 bytes
-BLAKE2s (bash52-034) = 5441d380ebc4e420c76a349d020403e9d28ed123619eafa5f2a6dc3a88d008a5
-SHA512 (bash52-034) = 4891a417a5aadb3249c89dcfce66ac6c42e06cfa9e85c86bde82472ac0b27c58e49650aa69b10333e7b7d6ff0b7f557054b72919c45359402060e0ab491a96ac
-Size (bash52-034) = 4134 bytes
-BLAKE2s (bash52-035) = 4478921b997a3fea22e6e75734894129f44c81900253058c81c98a80b2da5031
-SHA512 (bash52-035) = 100fa9fe308fb98b1985f915e0298d4d62ec57612af2c42acf08b86343c1f570c92890c6b6e355340ef6ed14cfd6849dbf1d3908602fcfae1369a9d52c11d4fd
-Size (bash52-035) = 3413 bytes
-BLAKE2s (bash52-036) = 73e5c693593d623a04eec605cd03bfae7666b28341cd5140a21f4f6ccbf5b243
-SHA512 (bash52-036) = d27a582172309087da82be97fab2b80163918d2c98659eda9686a13a5a567927ea260cd46daaed0cf22bde453575e94570b0545f0be9b8ea56576df8dac3b18a
-Size (bash52-036) = 5941 bytes
-BLAKE2s (bash52-037) = 1b4e9aca30cf015ba719729ec56ddcf0a6e22b199404e102bbb0b0501a1c0587
-SHA512 (bash52-037) = 3e104dff63dabceea2f56f9dc58869d48a71ce61c3c8aff4f289d2f4a47d4325e70178d520c265a25ddb2227e0b78f08177fcd594470e5e81f4116aad282b4de
-Size (bash52-037) = 2835 bytes
+BLAKE2s (bash-5.3.tar.gz) = 48e50ced4874740dc0f36bd19d0f7aab0cb5d6d4b04899e27143707fcab41d4c
+SHA512 (bash-5.3.tar.gz) = 05ef640e8ba011d10f858a270c626daa42ed5a75789d0298ae0ced9b2ebaf93d94d8ed5a211ac30cd34e82af8865e50024144c88a3c979bee7c38e449350e02e
+Size (bash-5.3.tar.gz) = 11354270 bytes
SHA1 (patch-Makefile.in) = 5e5333bfbb7ea03207e01ea75caeca0d9c9ecdc0
-SHA1 (patch-builtins_printf.def) = e26e3209902247263884cfebc11a2f7e43245062
-SHA1 (patch-builtins_psize.c) = cd3b151e3bb045d2bb609c0a03d7d3df2c871f47
-SHA1 (patch-builtins_ulimit.def) = 1390069344607204eb3abbd6ddeb148ff590c55e
-SHA1 (patch-configure) = c4e1ab53a1ee85f3e6121047f0aca8ceb85e6e5d
SHA1 (patch-examples_loadables_Makefile.in) = 0d27f82399c4ae9fae8ac0f8c48c68a23a3dcbd8
-SHA1 (patch-examples_loadables_getconf.c) = f41865ab9e6c257d1e78fcbfa0a1e48686b8e606
-SHA1 (patch-lib_malloc_malloc.c) = 6e500228972eac0cb4d4defb02e9cf573b7fa207
-SHA1 (patch-support_shobj-conf) = 010d5058262a23add420deed6c44a605bb16aa26
Home |
Main Index |
Thread Index |
Old Index