Compare commits
6 Commits
Author | SHA256 | Date | |
---|---|---|---|
|
6c03a4c1c1 | ||
|
860a010059 | ||
|
dc367da08f | ||
|
2e550a0fb6 | ||
|
cf712016dd | ||
|
e4e823ad11 |
@ -1,44 +1,20 @@
|
|||||||
---
|
---
|
||||||
system/linux | 10 ++++++++++
|
config_f.h | 11 ++++++++---
|
||||||
config_f.h | 9 +++++++--
|
|
||||||
glob.h | 3 ++-
|
glob.h | 3 ++-
|
||||||
host.defs | 9 +++------
|
host.defs | 9 +++------
|
||||||
pathnames.h | 2 +-
|
pathnames.h | 2 +-
|
||||||
sh.c | 3 +++
|
sh.c | 3 +++
|
||||||
|
system/linux | 10 ++++++++++
|
||||||
tc.alloc.c | 10 ++++++----
|
tc.alloc.c | 10 ++++++----
|
||||||
tc.func.c | 8 ++++++--
|
tc.func.c | 8 ++++++--
|
||||||
tc.str.c | 2 +-
|
tc.str.c | 2 +-
|
||||||
tc.who.c | 3 +++
|
tc.who.c | 3 +++
|
||||||
tcsh.man.in | 2 +-
|
tcsh.man.in | 2 +-
|
||||||
tw.h | 4 ++++
|
tw.h | 4 ++++
|
||||||
12 files changed, 47 insertions(+), 18 deletions(-)
|
12 files changed, 48 insertions(+), 19 deletions(-)
|
||||||
|
|
||||||
--- system/linux
|
|
||||||
+++ system/linux 2021-04-27 07:41:53.192829973 +0000
|
|
||||||
@@ -99,6 +99,9 @@
|
|
||||||
#ifndef _SVID_SOURCE
|
|
||||||
# define _SVID_SOURCE
|
|
||||||
#endif
|
|
||||||
+#ifndef _DEFAULT_SOURCE
|
|
||||||
+# define _DEFAULT_SOURCE
|
|
||||||
+#endif
|
|
||||||
#ifndef _POSIX_SOURCE
|
|
||||||
# define _POSIX_SOURCE
|
|
||||||
#endif
|
|
||||||
@@ -139,4 +142,11 @@
|
|
||||||
# define POSIX
|
|
||||||
#endif
|
|
||||||
|
|
||||||
+#if !defined(PW_SHADOW)
|
|
||||||
+# define PW_SHADOW
|
|
||||||
+#endif
|
|
||||||
+#if !defined(SuSE)
|
|
||||||
+# define SuSE
|
|
||||||
+#endif
|
|
||||||
+
|
|
||||||
#endif /* _h_config */
|
|
||||||
--- config_f.h
|
--- config_f.h
|
||||||
+++ config_f.h 2021-04-27 07:41:53.192829973 +0000
|
+++ config_f.h 2024-11-28 09:55:11.062052907 +0000
|
||||||
@@ -72,7 +72,12 @@
|
@@ -72,7 +72,12 @@
|
||||||
/*
|
/*
|
||||||
* LOGINFIRST Source ~/.login before ~/.cshrc
|
* LOGINFIRST Source ~/.login before ~/.cshrc
|
||||||
@ -63,7 +39,7 @@
|
|||||||
/*
|
/*
|
||||||
* COLOR_LS_F Do you want to use builtin color ls-F ?
|
* COLOR_LS_F Do you want to use builtin color ls-F ?
|
||||||
--- glob.h
|
--- glob.h
|
||||||
+++ glob.h 2021-04-27 07:41:53.192829973 +0000
|
+++ glob.h 2024-11-28 09:54:10.575159476 +0000
|
||||||
@@ -72,6 +72,7 @@ typedef struct {
|
@@ -72,6 +72,7 @@ typedef struct {
|
||||||
#define GLOB_NOSYS (-4) /* Implementation does not support function. */
|
#define GLOB_NOSYS (-4) /* Implementation does not support function. */
|
||||||
|
|
||||||
@ -82,7 +58,7 @@
|
|||||||
int glob (const char *, int, int (*)(const char *, int), glob_t *);
|
int glob (const char *, int, int (*)(const char *, int), glob_t *);
|
||||||
void globfree (glob_t *);
|
void globfree (glob_t *);
|
||||||
--- host.defs
|
--- host.defs
|
||||||
+++ host.defs 2021-05-28 09:44:03.337584826 +0000
|
+++ host.defs 2024-11-28 09:54:10.575159476 +0000
|
||||||
@@ -189,9 +189,8 @@ static void populate(void)
|
@@ -189,9 +189,8 @@ static void populate(void)
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
@ -107,7 +83,7 @@
|
|||||||
machtype = "unknown";
|
machtype = "unknown";
|
||||||
#endif
|
#endif
|
||||||
--- pathnames.h
|
--- pathnames.h
|
||||||
+++ pathnames.h 2021-04-27 07:41:53.192829973 +0000
|
+++ pathnames.h 2024-11-28 09:54:10.575159476 +0000
|
||||||
@@ -83,7 +83,7 @@
|
@@ -83,7 +83,7 @@
|
||||||
# endif /* !_PATH_DOTLOGIN */
|
# endif /* !_PATH_DOTLOGIN */
|
||||||
#endif /* sgi || OREO || cray || AMIX || CDC */
|
#endif /* sgi || OREO || cray || AMIX || CDC */
|
||||||
@ -118,7 +94,7 @@
|
|||||||
#endif /* _CRAYCOM && !_PATH_TCSHELL */
|
#endif /* _CRAYCOM && !_PATH_TCSHELL */
|
||||||
|
|
||||||
--- sh.c
|
--- sh.c
|
||||||
+++ sh.c 2021-04-27 07:41:53.192829973 +0000
|
+++ sh.c 2024-11-28 09:54:10.579159403 +0000
|
||||||
@@ -1348,6 +1348,9 @@ main(int argc, char **argv)
|
@@ -1348,6 +1348,9 @@ main(int argc, char **argv)
|
||||||
setintr = osetintr;
|
setintr = osetintr;
|
||||||
parintr = oparintr;
|
parintr = oparintr;
|
||||||
@ -129,8 +105,32 @@
|
|||||||
#ifdef LOGINFIRST
|
#ifdef LOGINFIRST
|
||||||
if (loginsh)
|
if (loginsh)
|
||||||
(void) srccat(varval(STRhome), STRsldotlogin);
|
(void) srccat(varval(STRhome), STRsldotlogin);
|
||||||
|
--- system/linux
|
||||||
|
+++ system/linux 2024-11-28 09:54:10.575159476 +0000
|
||||||
|
@@ -99,6 +99,9 @@
|
||||||
|
#ifndef _SVID_SOURCE
|
||||||
|
# define _SVID_SOURCE
|
||||||
|
#endif
|
||||||
|
+#ifndef _DEFAULT_SOURCE
|
||||||
|
+# define _DEFAULT_SOURCE
|
||||||
|
+#endif
|
||||||
|
#ifndef _POSIX_SOURCE
|
||||||
|
# define _POSIX_SOURCE
|
||||||
|
#endif
|
||||||
|
@@ -139,4 +142,11 @@
|
||||||
|
# define POSIX
|
||||||
|
#endif
|
||||||
|
|
||||||
|
+#if !defined(PW_SHADOW)
|
||||||
|
+# define PW_SHADOW
|
||||||
|
+#endif
|
||||||
|
+#if !defined(SuSE)
|
||||||
|
+# define SuSE
|
||||||
|
+#endif
|
||||||
|
+
|
||||||
|
#endif /* _h_config */
|
||||||
--- tc.alloc.c
|
--- tc.alloc.c
|
||||||
+++ tc.alloc.c 2021-04-27 07:41:53.192829973 +0000
|
+++ tc.alloc.c 2024-11-28 09:54:10.579159403 +0000
|
||||||
@@ -518,7 +518,7 @@ smalloc(size_t n)
|
@@ -518,7 +518,7 @@ smalloc(size_t n)
|
||||||
{
|
{
|
||||||
ptr_t ptr;
|
ptr_t ptr;
|
||||||
@ -171,7 +171,7 @@
|
|||||||
|
|
||||||
#endif /* SYSMALLOC */
|
#endif /* SYSMALLOC */
|
||||||
--- tc.func.c
|
--- tc.func.c
|
||||||
+++ tc.func.c 2021-04-27 07:41:53.196829900 +0000
|
+++ tc.func.c 2024-11-28 09:54:10.579159403 +0000
|
||||||
@@ -743,9 +743,13 @@ auto_lock(void)
|
@@ -743,9 +743,13 @@ auto_lock(void)
|
||||||
handle_pending_signals();
|
handle_pending_signals();
|
||||||
errno = 0;
|
errno = 0;
|
||||||
@ -187,7 +187,7 @@
|
|||||||
|
|
||||||
#else
|
#else
|
||||||
|
|
||||||
@@ -1965,7 +1965,7 @@ getremotehost(int dest_fd)
|
@@ -1965,7 +1969,7 @@ getremotehost(int dest_fd)
|
||||||
* have not caught up yet.
|
* have not caught up yet.
|
||||||
*/
|
*/
|
||||||
addr.s_addr = inet_addr(name);
|
addr.s_addr = inet_addr(name);
|
||||||
@ -197,7 +197,7 @@
|
|||||||
else {
|
else {
|
||||||
if (sptr != name) {
|
if (sptr != name) {
|
||||||
--- tc.str.c
|
--- tc.str.c
|
||||||
+++ tc.str.c 2021-04-27 07:41:53.196829900 +0000
|
+++ tc.str.c 2024-11-28 09:54:10.579159403 +0000
|
||||||
@@ -347,7 +347,7 @@ s_strlen(const Char *str)
|
@@ -347,7 +347,7 @@ s_strlen(const Char *str)
|
||||||
{
|
{
|
||||||
size_t n;
|
size_t n;
|
||||||
@ -208,7 +208,7 @@
|
|||||||
return (n);
|
return (n);
|
||||||
}
|
}
|
||||||
--- tc.who.c
|
--- tc.who.c
|
||||||
+++ tc.who.c 2021-04-27 07:41:53.196829900 +0000
|
+++ tc.who.c 2024-11-28 09:54:10.579159403 +0000
|
||||||
@@ -259,6 +259,9 @@ watch_login(int force)
|
@@ -259,6 +259,9 @@ watch_login(int force)
|
||||||
}
|
}
|
||||||
stlast = sta.st_mtime;
|
stlast = sta.st_mtime;
|
||||||
@ -220,7 +220,7 @@
|
|||||||
#else
|
#else
|
||||||
if ((utmpfd = xopen(TCSH_PATH_UTMP, O_RDONLY|O_LARGEFILE)) < 0) {
|
if ((utmpfd = xopen(TCSH_PATH_UTMP, O_RDONLY|O_LARGEFILE)) < 0) {
|
||||||
--- tcsh.man.in
|
--- tcsh.man.in
|
||||||
+++ tcsh.man.in 2021-04-27 07:41:53.196829900 +0000
|
+++ tcsh.man.in 2024-11-28 09:54:10.579159403 +0000
|
||||||
@@ -1012,7 +1012,7 @@ much like
|
@@ -1012,7 +1012,7 @@ much like
|
||||||
.Ic history-search-backward
|
.Ic history-search-backward
|
||||||
does.
|
does.
|
||||||
@ -231,7 +231,7 @@
|
|||||||
See also
|
See also
|
||||||
.Ic delete-char-or-list-or-eof .
|
.Ic delete-char-or-list-or-eof .
|
||||||
--- tw.h
|
--- tw.h
|
||||||
+++ tw.h 2021-04-27 07:41:53.196829900 +0000
|
+++ tw.h 2024-11-28 09:54:10.579159403 +0000
|
||||||
@@ -32,6 +32,10 @@
|
@@ -32,6 +32,10 @@
|
||||||
#ifndef _h_tw
|
#ifndef _h_tw
|
||||||
#define _h_tw
|
#define _h_tw
|
||||||
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:1e927d52e9c85d162bf985f24d13c6ccede9beb880d86fec492ed15480a5c71a
|
|
||||||
size 958563
|
|
@ -1,16 +0,0 @@
|
|||||||
-----BEGIN PGP SIGNATURE-----
|
|
||||||
|
|
||||||
iQIzBAABCAAdFiEErYcQl2PY2MLJTLqAZcJuRx9FsSMFAmZpN8wACgkQZcJuRx9F
|
|
||||||
sSMckRAAoCbOtzFRvgiAKP8Nekec6vRdSAJUY56+4ppfgyA51amS7G8Yi1x4VP0a
|
|
||||||
/QdeyQEU8CmVDXXsj9InGb3dlGnTutY6v9Am+Zixkt4A2yUg/DCAXcQjtB6G9YEU
|
|
||||||
1mciICVuDCWs4Q+z8jn/MCE6Lif/gnc+Egwn2Pj3CxL+k2Cik1Qf6qpyV7MA0PPE
|
|
||||||
1Dx4ofI44AHoTv9Dkcl477tDcKd8KBc5vOsnBLMaDBz5jcaL1/dQc6DWWRE5dGBv
|
|
||||||
IuNr/LHHdjaBY/35jIyzCzzCeW5qCGnRYa44KNVZ27NdYjTH1lapZKKTS244Z4kB
|
|
||||||
rv77NCoLnv0d2oZVveTATHKX9EPNLzFJWqALL7EpC2pWCD9KLvM8N0K4g96NBume
|
|
||||||
2m6gUmZ+id+U6ImJA20jWa+L+3Z8OwkLoXoXQAC5jnPUthZxtVEsBfVOmytNA7B0
|
|
||||||
t1dO6uZrcZUxEizw/ztYYF1K9sZ6SrYNZvFW2Pne1TyZTSlI6KVmDEQRjElqnJ4u
|
|
||||||
R201PdB1XlC5nhQvBcuzkjg/Nxx9AOT9yMjUPapWHRt4fTJe3QmwjtLO3Yks7pR+
|
|
||||||
lKpSF8fz4BoFlRoFFMVP0e+Umy4l9NGtUh0t9AmvGKIZPovcYWWYKSimR+m6BbUv
|
|
||||||
JuIyx70pZpyWJcJ3WzLjeAJ9jb2XY3q1umQQjqr0UniRiuf3dIU=
|
|
||||||
=E8Cm
|
|
||||||
-----END PGP SIGNATURE-----
|
|
BIN
tcsh-6.24.15.tar.gz
(Stored with Git LFS)
Normal file
BIN
tcsh-6.24.15.tar.gz
(Stored with Git LFS)
Normal file
Binary file not shown.
16
tcsh-6.24.15.tar.gz.asc
Normal file
16
tcsh-6.24.15.tar.gz.asc
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
-----BEGIN PGP SIGNATURE-----
|
||||||
|
|
||||||
|
iQIzBAABCAAdFiEErYcQl2PY2MLJTLqAZcJuRx9FsSMFAmeiVUgACgkQZcJuRx9F
|
||||||
|
sSOHDQ/8CEyuR2AooAK4vwy4292hf4LjR42DBvNFgxWsxTJ1h9qvfCxM4gvp6Egb
|
||||||
|
XuyBZiKdD6+mZL90/ESpzSPMPhsJcAOyYptgH0XAkgoKkJogVwbjgRGhTDPg6stH
|
||||||
|
7WwpojYdfEceeycHfZ8wadV1pmqJiybBqbgXx3xbQAIfyN5U+NBu6nep5kmyR6zq
|
||||||
|
x/3xnnovUGN08EJrdvjrhlyHksVC2yRzh2jWdW44O/1bkM5WYhiQCx52fnTdDO3J
|
||||||
|
TXFGNGEOWcu+C4XiEFhq+1JBO4wi/lP/zBehzmyhT/TZThNkeHHxwCYVxNr6zJYL
|
||||||
|
tebnsZfHVihXm9xTsk2lr3zLv50CoU2VDRQTSNP/RVxYcDjLEHcS9rTvbfEu4/Oo
|
||||||
|
BOZH2fyIaiPy6AeJBx5lP4mvSodKAfMwPRdoj3sH8n8jgbApZflUzrrXnlpE1ltK
|
||||||
|
fbaHDi5G0aK3s5tJi8t2QhHxwcogckamUWvzXDdVEfOY4MbCBJkZZZifwAS7/Odb
|
||||||
|
J1/pzVHnSLTyniRnSvqP2IGrMKZnhY7e8D19EHoTJ0aCM/AXRotfSFil/ZTI+gEO
|
||||||
|
/tYanfr8vOLzuH9MJZrM/vQmUoDlFL03TufU/Wmoi6HjK1+fOgu/kh4BXPtraeT9
|
||||||
|
VtddG4YNJODEPImSbumbwrXLWPZGYAq5o00mTBcr/g1kGsrbHNs=
|
||||||
|
=Z8yG
|
||||||
|
-----END PGP SIGNATURE-----
|
18
tcsh.changes
18
tcsh.changes
@ -1,3 +1,21 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Feb 5 07:25:17 UTC 2025 - Dr. Werner Fink <werner@suse.de>
|
||||||
|
|
||||||
|
- Update to tcsh 6.24.15 - 2025-02-04
|
||||||
|
* This release provides fixes for some compilation failures
|
||||||
|
introduced in the previous release
|
||||||
|
- Port patch tcsh-6.21.00.dif means remove temporary fix now upstream
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Nov 28 08:44:43 UTC 2024 - Dr. Werner Fink <werner@suse.de>
|
||||||
|
|
||||||
|
- Update to tcsh 6.24.14 - 2024-11-26
|
||||||
|
* Fix issues with S-JIS handling (T. Nosaka)
|
||||||
|
* Handle redirections in bracketed expressions
|
||||||
|
if { foo > /dev/null } (christos)
|
||||||
|
* Recognize history searches in history expansion
|
||||||
|
!?foo<tab> (christos)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Jun 12 07:48:40 UTC 2024 - Dr. Werner Fink <werner@suse.de>
|
Wed Jun 12 07:48:40 UTC 2024 - Dr. Werner Fink <werner@suse.de>
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package tcsh
|
# spec file for package tcsh
|
||||||
#
|
#
|
||||||
# Copyright (c) 2024 SUSE LLC
|
# Copyright (c) 2025 SUSE LLC
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@ -17,7 +17,7 @@
|
|||||||
|
|
||||||
|
|
||||||
Name: tcsh
|
Name: tcsh
|
||||||
Version: 6.24.13
|
Version: 6.24.15
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: The C SHell
|
Summary: The C SHell
|
||||||
License: BSD-3-Clause
|
License: BSD-3-Clause
|
||||||
@ -41,6 +41,7 @@ BuildRequires: fdupes
|
|||||||
BuildRequires: ncurses-devel
|
BuildRequires: ncurses-devel
|
||||||
BuildRequires: screen
|
BuildRequires: screen
|
||||||
Requires: gawk
|
Requires: gawk
|
||||||
|
Requires: hostname
|
||||||
Requires: textutils
|
Requires: textutils
|
||||||
Recommends: tcsh-lang = %{version}
|
Recommends: tcsh-lang = %{version}
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
|
Loading…
x
Reference in New Issue
Block a user