Radix cross Linux 3pp sources

RcL sources – is a tree of Third Party and Radix source tarballs

343 Commits   0 Branches   0 Tags
author: kx <kx@radix.pro> 2023-04-09 23:18:24 +0300 committer: kx <kx@radix.pro> 2023-04-09 23:18:24 +0300 commit: 8b7e76c7ad2445c0920e9d056728f7b6baaa0c43 parent: 3dd1914515dc5c714451bc4148f0abb51672ed06
Commit Summary:
network packages
Diffstat:
2 files changed, 44 insertions, 0 deletions
diff --git a/packages/n/tcp_wrappers/Makefile b/packages/n/tcp_wrappers/Makefile
new file mode 100644
index 0000000..c3d5d65
--- /dev/null
+++ b/packages/n/tcp_wrappers/Makefile
@@ -0,0 +1,47 @@
+#
+# Project Home:
+# ============
+# http://freecode.com/projects/tcp_wrappers
+#
+# Downloads:
+# =========
+# ftp://ftp.porcupine.org/pub/security
+#
+
+url         = ftp://ftp.porcupine.org/pub/security
+
+versions    = 7.6
+
+pkgname     = tcp_wrappers
+suffix      = tar.gz
+
+tarballs    = $(addsuffix .$(suffix), $(addprefix $(pkgname)_, $(versions)))
+signatures  = $(addsuffix .sig, $(tarballs))
+sha1s       = $(addsuffix .sha1sum, $(tarballs))
+
+
+all: $(tarballs) $(signatures) $(sha1s)
+
+.PHONY: downloads_clean
+
+$(tarballs):
+	@echo -e "\n======= Downloading source tarballs =======\n"
+	@for tarball in $(tarballs) ; do \
+	  wget -N $(url)/$$tarball ; \
+	done
+
+$(signatures): %.$(suffix).sig : %.$(suffix)
+	@for signature in $@ ; do \
+	  echo -e "\n======= Downloading '$$signature' signature =======\n" ; \
+	  wget -N $(url)/$$signature ; \
+	  touch $$signature ; \
+	done
+
+$(sha1s): %.$(suffix).sha1sum : %.$(suffix)
+	@for tarball in $< ; do \
+	  echo -e "\n======= Calculation the '$$tarball' sha1sum =======\n" ; \
+	  sha1sum --binary $$tarball > $$tarball.sha1sum ; \
+	done
+
+downloads_clean:
+	@rm -rf $(tarballs) $(signatures) $(sha1s)
diff --git a/packages/n/tcp_wrappers/tcp_wrapper.pdf b/packages/n/tcp_wrappers/tcp_wrapper.pdf
new file mode 100644
index 0000000..ecc1ed1
Binary files /dev/null and b/packages/n/tcp_wrappers/tcp_wrapper.pdf differ
diff --git a/packages/n/tcp_wrappers/tcp_wrappers.txt b/packages/n/tcp_wrappers/tcp_wrappers.txt
new file mode 100644
index 0000000..493092d
--- /dev/null
+++ b/packages/n/tcp_wrappers/tcp_wrappers.txt
@@ -0,0 +1,9 @@
+
+The tcp_wrappers package allows you to monitor and filter incoming requests
+for the SYSTAT, FINGER, FTP, TELNET, RLOGIN, RSH, EXEC, TFTP, TALK, and other
+network services. It provides tiny daemon wrapper programs that can be installed
+without any changes to existing software or to existing configuration files.
+The wrappers report the name of the client host and of the requested service.
+The wrappers do not exchange information with the client or server applications,
+and impose no overhead on the actual conversation between the client and server
+applications.