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-06 10:37:52 +0300 committer: kx <kx@radix.pro> 2023-04-06 10:37:52 +0300 commit: f7e1268e0895b2d6ec7467de603a5ef8a45cf556 parent: b8d9de0a8bff1b815a7f84df279cb608fe2e962b
Commit Summary:
Dictionaries
Diffstat:
11 files changed, 318 insertions, 0 deletions
diff --git a/dict/Makefile b/dict/Makefile
new file mode 100644
index 0000000..8bd6d51
--- /dev/null
+++ b/dict/Makefile
@@ -0,0 +1,33 @@
+
+#
+# Following command helps to cheate SUBDIRS list:
+# $ tree -fid .
+#
+
+SUBDIRS := scowl         \
+           aspell/ca     \
+           aspell/de     \
+           aspell/de-alt \
+           aspell/en     \
+           aspell/es     \
+           aspell/fi     \
+           aspell/fr     \
+           aspell/it     \
+           aspell/ru
+
+
+all-recursive downloads_clean-recursive:
+	@set fnord $(MAKEFLAGS); amf=$$2; \
+	target=`echo $@ | sed s/-recursive//`; \
+	list='$(SUBDIRS)'; for subdir in $$list; do \
+	  echo "Making $$target in $$subdir"; \
+	  local_target="$$target"; \
+	  (cd $$subdir && $(MAKE) $$fnord $$local_target) \
+	   || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \
+	done; test -z "$$fail"
+
+all: all-recursive
+
+downloads_clean: downloads_clean-recursive
+
+.PHONY: all-recursive downloads_clean-recursive all downloads_clean
diff --git a/dict/aspell/ca/Makefile b/dict/aspell/ca/Makefile
new file mode 100644
index 0000000..2de7904
--- /dev/null
+++ b/dict/aspell/ca/Makefile
@@ -0,0 +1,38 @@
+#
+# Project Home:
+# ============
+# ftp://ftp.gnu.org/gnu/aspell/dict/0index.html
+#
+# Downloads:
+# =========
+# ftp://ftp.gnu.org/gnu/aspell/dict/ca
+#
+
+url         = https://ftp.gnu.org/gnu/aspell/dict/ca
+
+versions    = 6-ca-2.1.5-1
+pkgname     = aspell
+suffix      = tar.bz2
+
+tarballs    = $(addsuffix .$(suffix), $(addprefix $(pkgname), $(versions)))
+sha1s       = $(addsuffix .sha1sum, $(tarballs))
+
+
+all: $(tarballs) $(sha1s)
+
+.PHONY: downloads_clean
+
+$(tarballs):
+	@echo -e "\n======= Downloading source tarballs =======\n"
+	@for tarball in $(tarballs) ; do \
+	  wget -N $(url)/$$tarball ; \
+	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) $(sha1s)
diff --git a/dict/aspell/de-alt/Makefile b/dict/aspell/de-alt/Makefile
new file mode 100644
index 0000000..e224e79
--- /dev/null
+++ b/dict/aspell/de-alt/Makefile
@@ -0,0 +1,38 @@
+#
+# Project Home:
+# ============
+# ftp://ftp.gnu.org/gnu/aspell/dict/0index.html
+#
+# Downloads:
+# =========
+# ftp://ftp.gnu.org/gnu/aspell/dict/de-alt
+#
+
+url         = https://ftp.gnu.org/gnu/aspell/dict/de-alt
+
+versions    = 6-de-alt-2.1-1
+pkgname     = aspell
+suffix      = tar.bz2
+
+tarballs    = $(addsuffix .$(suffix), $(addprefix $(pkgname), $(versions)))
+sha1s       = $(addsuffix .sha1sum, $(tarballs))
+
+
+all: $(tarballs) $(sha1s)
+
+.PHONY: downloads_clean
+
+$(tarballs):
+	@echo -e "\n======= Downloading source tarballs =======\n"
+	@for tarball in $(tarballs) ; do \
+	  wget -N $(url)/$$tarball ; \
+	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) $(sha1s)
diff --git a/dict/aspell/de/Makefile b/dict/aspell/de/Makefile
new file mode 100644
index 0000000..77a09b1
--- /dev/null
+++ b/dict/aspell/de/Makefile
@@ -0,0 +1,38 @@
+#
+# Project Home:
+# ============
+# ftp://ftp.gnu.org/gnu/aspell/dict/0index.html
+#
+# Downloads:
+# =========
+# ftp://ftp.gnu.org/gnu/aspell/dict/de
+#
+
+url         = https://ftp.gnu.org/gnu/aspell/dict/de
+
+versions    = -de-0.50-2 6-de-20030222-1 6-de-20161207-7-0
+pkgname     = aspell
+suffix      = tar.bz2
+
+tarballs    = $(addsuffix .$(suffix), $(addprefix $(pkgname), $(versions)))
+sha1s       = $(addsuffix .sha1sum, $(tarballs))
+
+
+all: $(tarballs) $(sha1s)
+
+.PHONY: downloads_clean
+
+$(tarballs):
+	@echo -e "\n======= Downloading source tarballs =======\n"
+	@for tarball in $(tarballs) ; do \
+	  wget -N $(url)/$$tarball ; \
+	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) $(sha1s)
diff --git a/dict/aspell/en/Makefile b/dict/aspell/en/Makefile
new file mode 100644
index 0000000..81c224c
--- /dev/null
+++ b/dict/aspell/en/Makefile
@@ -0,0 +1,38 @@
+#
+# Project Home:
+# ============
+# ftp://ftp.gnu.org/gnu/aspell/dict/0index.html
+#
+# Downloads:
+# =========
+# ftp://ftp.gnu.org/gnu/aspell/dict/en
+#
+
+url         = https://ftp.gnu.org/gnu/aspell/dict/en
+
+versions    = 6-en-7.1-0 6-en-2019.10.06-0 6-en-2020.12.07-0
+pkgname     = aspell
+suffix      = tar.bz2
+
+tarballs    = $(addsuffix .$(suffix), $(addprefix $(pkgname), $(versions)))
+sha1s       = $(addsuffix .sha1sum, $(tarballs))
+
+
+all: $(tarballs) $(sha1s)
+
+.PHONY: downloads_clean
+
+$(tarballs):
+	@echo -e "\n======= Downloading source tarballs =======\n"
+	@for tarball in $(tarballs) ; do \
+	  wget -N $(url)/$$tarball ; \
+	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) $(sha1s)
diff --git a/dict/aspell/es/Makefile b/dict/aspell/es/Makefile
new file mode 100644
index 0000000..2232fbb
--- /dev/null
+++ b/dict/aspell/es/Makefile
@@ -0,0 +1,38 @@
+#
+# Project Home:
+# ============
+# ftp://ftp.gnu.org/gnu/aspell/dict/0index.html
+#
+# Downloads:
+# =========
+# ftp://ftp.gnu.org/gnu/aspell/dict/es
+#
+
+url         = https://ftp.gnu.org/gnu/aspell/dict/es
+
+versions    = 6-es-1.11-2
+pkgname     = aspell
+suffix      = tar.bz2
+
+tarballs    = $(addsuffix .$(suffix), $(addprefix $(pkgname), $(versions)))
+sha1s       = $(addsuffix .sha1sum, $(tarballs))
+
+
+all: $(tarballs) $(sha1s)
+
+.PHONY: downloads_clean
+
+$(tarballs):
+	@echo -e "\n======= Downloading source tarballs =======\n"
+	@for tarball in $(tarballs) ; do \
+	  wget -N $(url)/$$tarball ; \
+	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) $(sha1s)
diff --git a/dict/aspell/fi/Makefile b/dict/aspell/fi/Makefile
new file mode 100644
index 0000000..85be338
--- /dev/null
+++ b/dict/aspell/fi/Makefile
@@ -0,0 +1,38 @@
+#
+# Project Home:
+# ============
+# ftp://ftp.gnu.org/gnu/aspell/dict/0index.html
+#
+# Downloads:
+# =========
+# ftp://ftp.gnu.org/gnu/aspell/dict/fi
+#
+
+url         = https://ftp.gnu.org/gnu/aspell/dict/fi
+
+versions    = 6-fi-0.7-0
+pkgname     = aspell
+suffix      = tar.bz2
+
+tarballs    = $(addsuffix .$(suffix), $(addprefix $(pkgname), $(versions)))
+sha1s       = $(addsuffix .sha1sum, $(tarballs))
+
+
+all: $(tarballs) $(sha1s)
+
+.PHONY: downloads_clean
+
+$(tarballs):
+	@echo -e "\n======= Downloading source tarballs =======\n"
+	@for tarball in $(tarballs) ; do \
+	  wget -N $(url)/$$tarball ; \
+	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) $(sha1s)
diff --git a/dict/aspell/fr/Makefile b/dict/aspell/fr/Makefile
new file mode 100644
index 0000000..3d0414d
--- /dev/null
+++ b/dict/aspell/fr/Makefile
@@ -0,0 +1,38 @@
+#
+# Project Home:
+# ============
+# ftp://ftp.gnu.org/gnu/aspell/dict/0index.html
+#
+# Downloads:
+# =========
+# ftp://ftp.gnu.org/gnu/aspell/dict/fr
+#
+
+url         = https://ftp.gnu.org/gnu/aspell/dict/fr
+
+versions    = -fr-0.50-3
+pkgname     = aspell
+suffix      = tar.bz2
+
+tarballs    = $(addsuffix .$(suffix), $(addprefix $(pkgname), $(versions)))
+sha1s       = $(addsuffix .sha1sum, $(tarballs))
+
+
+all: $(tarballs) $(sha1s)
+
+.PHONY: downloads_clean
+
+$(tarballs):
+	@echo -e "\n======= Downloading source tarballs =======\n"
+	@for tarball in $(tarballs) ; do \
+	  wget -N $(url)/$$tarball ; \
+	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) $(sha1s)
diff --git a/dict/aspell/it/Makefile b/dict/aspell/it/Makefile
new file mode 100644
index 0000000..8b75294
--- /dev/null
+++ b/dict/aspell/it/Makefile
@@ -0,0 +1,38 @@
+#
+# Project Home:
+# ============
+# ftp://ftp.gnu.org/gnu/aspell/dict/0index.html
+#
+# Downloads:
+# =========
+# ftp://ftp.gnu.org/gnu/aspell/dict/fr
+#
+
+url         = https://ftp.gnu.org/gnu/aspell/dict/it
+
+versions    = 6-it-2.2_20050523-0
+pkgname     = aspell
+suffix      = tar.bz2
+
+tarballs    = $(addsuffix .$(suffix), $(addprefix $(pkgname), $(versions)))
+sha1s       = $(addsuffix .sha1sum, $(tarballs))
+
+
+all: $(tarballs) $(sha1s)
+
+.PHONY: downloads_clean
+
+$(tarballs):
+	@echo -e "\n======= Downloading source tarballs =======\n"
+	@for tarball in $(tarballs) ; do \
+	  wget -N $(url)/$$tarball ; \
+	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) $(sha1s)
diff --git a/dict/aspell/ru/Makefile b/dict/aspell/ru/Makefile
new file mode 100644
index 0000000..3dc19b4
--- /dev/null
+++ b/dict/aspell/ru/Makefile
@@ -0,0 +1,38 @@
+#
+# Project Home:
+# ============
+# ftp://ftp.gnu.org/gnu/aspell/dict/0index.html
+#
+# Downloads:
+# =========
+# ftp://ftp.gnu.org/gnu/aspell/dict/ru
+#
+
+url         = https://ftp.gnu.org/gnu/aspell/dict/ru
+
+versions    = 6-ru-0.99f7-1
+pkgname     = aspell
+suffix      = tar.bz2
+
+tarballs    = $(addsuffix .$(suffix), $(addprefix $(pkgname), $(versions)))
+sha1s       = $(addsuffix .sha1sum, $(tarballs))
+
+
+all: $(tarballs) $(sha1s)
+
+.PHONY: downloads_clean
+
+$(tarballs):
+	@echo -e "\n======= Downloading source tarballs =======\n"
+	@for tarball in $(tarballs) ; do \
+	  wget -N $(url)/$$tarball ; \
+	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) $(sha1s)
diff --git a/dict/scowl/Makefile b/dict/scowl/Makefile
new file mode 100644
index 0000000..ca1f8b5
--- /dev/null
+++ b/dict/scowl/Makefile
@@ -0,0 +1,40 @@
+#
+# Project Home:
+# ============
+# http://wordlist.aspell.net
+# http://sourceforge.net/projects/wordlist
+#
+# Downloads:
+# =========
+# http://sourceforge.net/projects/wordlist/files/SCOWL
+#
+
+url         = http://downloads.sourceforge.net/project/wordlist/SCOWL
+
+versions    = 2019.10.06 2020.12.07
+pkgname     = scowl
+suffix      = tar.gz
+
+tarballs    = $(addsuffix .$(suffix), $(addprefix $(pkgname)-, $(versions)))
+sha1s       = $(addsuffix .sha1sum, $(tarballs))
+
+
+all: $(tarballs) $(sha1s)
+
+.PHONY: downloads_clean
+
+$(tarballs):
+	@echo -e "\n======= Downloading source tarballs =======\n"
+	@for tarball in $(tarballs) ; do \
+	  version=`echo $$tarball | sed 's/\([a-zA-Z-]*\)\(.*\)\(.$(suffix)\)/\2/'` ; \
+	  wget -N $(url)/$$version/$$tarball ; \
+	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) $(sha1s)