diff options
| author | root <root@alpha.trunkmasters.com> | 2026-06-04 05:35:26 -0500 |
|---|---|---|
| committer | root <root@alpha.trunkmasters.com> | 2026-06-04 05:35:26 -0500 |
| commit | f716a9fe6455d39eef01e718aae68dae61c19704 (patch) | |
| tree | 0c52bbae1c242fbc296bd650fcd1167685f81492 /net-misc/zssh | |
| parent | 3f9cf298e89cd5037b982abba06091224ee76daf (diff) | |
| download | baldeagleos-repo-f716a9fe6455d39eef01e718aae68dae61c19704.tar.gz baldeagleos-repo-f716a9fe6455d39eef01e718aae68dae61c19704.tar.xz baldeagleos-repo-f716a9fe6455d39eef01e718aae68dae61c19704.zip | |
Adding metadata
Diffstat (limited to 'net-misc/zssh')
| -rw-r--r-- | net-misc/zssh/Manifest | 1 | ||||
| -rw-r--r-- | net-misc/zssh/files/zssh-1.5a-gentoo-include.diff | 11 | ||||
| -rw-r--r-- | net-misc/zssh/files/zssh-1.5c-C23.patch | 178 | ||||
| -rw-r--r-- | net-misc/zssh/metadata.xml | 8 | ||||
| -rw-r--r-- | net-misc/zssh/zssh-1.5c-r3.ebuild | 50 |
5 files changed, 0 insertions, 248 deletions
diff --git a/net-misc/zssh/Manifest b/net-misc/zssh/Manifest deleted file mode 100644 index e1cd7e6204b9..000000000000 --- a/net-misc/zssh/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST zssh-1.5c.tgz 344964 BLAKE2B 35b41125ec7a49cae741666516b17e3f0b22b159d0fc2b490565e8eaef366bb4b418895ad028822647a4b946577b2ef9dc588e9dbfe657ce7c1c8300207ca603 SHA512 799ce3bbea5e94a800f61e6c38879746a579992396304861b7584b6bad967214b811b6bf9aecb36d9d60a15857377cb2fee80b495ad69778903fc45593efeebd diff --git a/net-misc/zssh/files/zssh-1.5a-gentoo-include.diff b/net-misc/zssh/files/zssh-1.5a-gentoo-include.diff deleted file mode 100644 index d4a6639002a9..000000000000 --- a/net-misc/zssh/files/zssh-1.5a-gentoo-include.diff +++ /dev/null @@ -1,11 +0,0 @@ ---- a/Makefile.in Fri Sep 20 10:34:40 2002 -+++ b/Makefile.in Fri Sep 20 10:34:56 2002 -@@ -19,7 +19,7 @@ - AR = @AR@ - RANLIB = @RANLIB@ - CC = @CC@ --CFLAGS = @CFLAGS@ @DEFS@ @EXTRA_CFLAGS@ -+CFLAGS = @CFLAGS@ @DEFS@ @EXTRA_CFLAGS@ -I. - CPPFLAGS = @CPPFLAGS@ - LIBS = @LIBS@ @EXTRA_LIBS@ - LDFLAGS = @LDFLAGS@ diff --git a/net-misc/zssh/files/zssh-1.5c-C23.patch b/net-misc/zssh/files/zssh-1.5c-C23.patch deleted file mode 100644 index 50fa9ec176d0..000000000000 --- a/net-misc/zssh/files/zssh-1.5c-C23.patch +++ /dev/null @@ -1,178 +0,0 @@ -Fix compilation errors with GCC-14 and C23 -https://bugs.gentoo.org/875242 -https://bugs.gentoo.org/898974 -and also fold linking with ncurces[tinfo] from sed to configure.ac -https://bugs.gentoo.org/527036 -diff -ru a/configure.in b/configure.in ---- a/configure.in 2025-01-08 21:48:25.202798412 +0400 -+++ b/configure.in 2025-01-08 21:50:36.184060767 +0400 -@@ -5,7 +5,7 @@ - EXTRA_DEPS="" - EXTRA_LIBS="" - EXTRA_CFLAGS="" --TERMCAP_LIB="" -+TINFO_LIB="" - - dnl Check configure arguments - AC_MSG_CHECKING(whether to use libreadline for cmd-line editing) -@@ -65,8 +65,8 @@ - if test -z "$fakereadline"; then - - dnl libtermcap (or (n)curses) is only needed by libreadline -- BASH_CHECK_LIB_TERMCAP -- LIBS="$LIBS $TERMCAP_LIB" -+ BASH_CHECK_LIB_TINFO -+ LIBS="$LIBS $TINFO_LIB" - - dnl check for readline headers - AC_CHECK_HEADERS(readline/readline.h readline/history.h, , -@@ -127,7 +127,7 @@ - AC_SUBST(EXTRA_DEPS) - AC_SUBST(EXTRA_CFLAGS) - AC_SUBST(EXTRA_LIBS) --AC_SUBST(TERMCAP_LIB) -+AC_SUBST(TINFO_LIB) - - AC_OUTPUT(Makefile fake_readline/Makefile test/Makefile) - -diff -ru a/completion.c b/completion.c ---- a/completion.c 2025-01-08 21:55:33.535386179 +0400 -+++ b/completion.c 2025-01-08 21:59:46.899959311 +0400 -@@ -41,7 +41,8 @@ - /* Tell the GNU Readline library how to complete. We want to try to complete - on command names if this is the first word in the line, or on filenames - if not. */ --void initialize_readline() -+void -+initialize_readline (void) - { - #ifdef DEBUG - printf("Using readline library version: %s\n", rl_library_version); -@@ -53,7 +54,7 @@ - so that if zssh_completion() fails nothing is completed */ - rl_completion_entry_function = fake_generator; - /* Tell the completer that we want a crack first. */ -- rl_attempted_completion_function = (CPPFunction *) zssh_completion; -+ rl_attempted_completion_function = zssh_completion; - - } - -@@ -62,10 +63,8 @@ - the word to complete. We can use the entire contents of rl_line_buffer - in case we want to do some simple parsing. Return the array of matches, - or NULL if there aren't any. */ --char **zssh_completion(text, start, end) --char *text; --int start; --int end; -+char ** -+zssh_completion (const char *text, int start, int end) - { - char **matches; - -@@ -89,9 +88,8 @@ - /* Generator function for command completion. STATE lets us know whether - to start from scratch; without any state (i.e. STATE == 0), then we - start at the top of the list. */ --char *command_generator(text, state) --const char *text; --int state; -+char * -+command_generator (const char *text, int state) - { - static int list_index, len; - char *name; -@@ -123,9 +121,8 @@ - to start from scratch; without any state (i.e. STATE == 0), then we - start at the top of the list. */ - #if 0 --char *tilde_generator(text, state) --char *text; --int state; -+char * -+tilde_generator (char *text, int state) - { - struct passwd *pwd; - static int len; -@@ -154,9 +151,8 @@ - } - #endif /* 0 */ - --char *fake_generator(text, state) --const char *text; --int state; -+char * -+fake_generator (const char *text, int state) - { - return (0); - } -diff -ru a/fun.h b/fun.h ---- a/fun.h 2025-01-08 21:55:33.531386202 +0400 -+++ b/fun.h 2025-01-08 22:00:12.795813473 +0400 -@@ -1,7 +1,7 @@ - - /* completion.c */ - void initialize_readline(void); --char **zssh_completion(char *text, int start, int end); -+char **zssh_completion(const char *text, int start, int end); - char *command_generator(const char *text, int state); - char *tilde_generator(char *text, int state); - char *fake_generator(const char *text, int state); -diff -ru a/init.c b/init.c ---- a/init.c 2025-01-08 21:55:33.535386179 +0400 -+++ b/init.c 2025-01-08 21:58:35.526361264 +0400 -@@ -90,7 +90,8 @@ - exit (0); - } - --void usage() -+void -+usage (void) - { - printf("\ - Usage: zssh [zssh options] [--] [ssh options]\n\ -@@ -143,7 +144,8 @@ - * ^@ -> C-Space - * ^X -> C-x - */ --char *escape_help() -+char * -+escape_help (void) - { - static char str[40]; - -@@ -154,9 +156,8 @@ - return (str); - } - --void command_line_options(argc,argv) --int *argc; --char ***argv; -+void -+command_line_options (int *argc, char ***argv) - { - int ac = *argc; - char **av = *argv; -@@ -213,9 +214,8 @@ - } - - --void init(argc,argv) --int *argc; --char ***argv; -+void -+init (int *argc, char ***argv) - { - char *str; - -diff -ru a/zssh.h b/zssh.h ---- a/zssh.h 2025-01-08 21:55:33.535386179 +0400 -+++ b/zssh.h 2025-01-08 21:57:02.938882687 +0400 -@@ -45,6 +45,7 @@ - #include <utmp.h> - #include <signal.h> - #include <ctype.h> -+#include <pty.h> - - /*#include <term.h> alpha */ - diff --git a/net-misc/zssh/metadata.xml b/net-misc/zssh/metadata.xml deleted file mode 100644 index dc1330571b5a..000000000000 --- a/net-misc/zssh/metadata.xml +++ /dev/null @@ -1,8 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> - <!-- maintainer-needed --> - <upstream> - <remote-id type="sourceforge">zssh</remote-id> - </upstream> -</pkgmetadata> diff --git a/net-misc/zssh/zssh-1.5c-r3.ebuild b/net-misc/zssh/zssh-1.5c-r3.ebuild deleted file mode 100644 index ac5836450a27..000000000000 --- a/net-misc/zssh/zssh-1.5c-r3.ebuild +++ /dev/null @@ -1,50 +0,0 @@ -# Copyright 1999-2025 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit toolchain-funcs autotools - -DESCRIPTION="SSH wrapper enabling zmodem up/download in ssh" -HOMEPAGE="https://zssh.sourceforge.net/" -SRC_URI="https://downloads.sourceforge.net/${PN}/${P}.tgz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~ppc ~sparc ~x86" -IUSE="nls readline" - -DEPEND=" - readline? ( - sys-libs/ncurses:= - sys-libs/readline:= - ) -" -RDEPEND=" - ${DEPEND} - net-dialup/lrzsz[nls?] - virtual/openssh -" - -PATCHES=( - "${FILESDIR}/${PN}-1.5a-gentoo-include.diff" - "${FILESDIR}/${P}-C23.patch" -) - -src_prepare() { - default - - eautoreconf -} - -src_configure() { - tc-export AR CC RANLIB - econf \ - $(use_enable readline) -} - -src_install() { - dobin ${PN} ztelnet - doman ${PN}.1 ztelnet.1 - dodoc CHANGES FAQ README TODO -} |
