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-12-10 12:09:54 +0300 committer: kx <kx@radix.pro> 2023-12-10 12:09:54 +0300 commit: cc573ce4b906521ecb0c9a41faa5f9aedc2b354d parent: 4565416880fd96e7841ade938c17c2606915b484
Commit Summary:
Removed cjs-6.0.0
Diffstat:
3 files changed, 1 insertion, 72 deletions
diff --git a/packages/x/MINT/Makefile b/packages/x/MINT/Makefile
deleted file mode 100644
index 31561a3..0000000
--- a/packages/x/MINT/Makefile
+++ /dev/null
@@ -1,24 +0,0 @@
-
-#
-# Following command helps to cheate SUBDIRS list:
-# $ tree -fid .
-#
-
-SUBDIRS := cjs
-
-
-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/packages/x/MINT/cjs/Makefile b/packages/x/MINT/cjs/Makefile
deleted file mode 100644
index eca6425..0000000
--- a/packages/x/MINT/cjs/Makefile
+++ /dev/null
@@ -1,69 +0,0 @@
-#
-# Project Home:
-# ============
-# https://01.org/linuxmedia/vaapi
-#
-# GitHub:
-# ======
-#   git clone https://github.com/linuxmint/cjs.git
-#
-
-url        = https://github.com/linuxmint
-
-repo_name  = cjs
-pkg_name   = cjs
-
-#
-# List of tags to be extracted (git rev-list -n1 master.mint21):
-# =============================================================
-#                                               hash | tag
-#            ----------------------------------------+-----
-revisions  = 4b29b2bde2cb9361f1da9a582d88d7fe1bf597fe:6.0.0
-
-git_repo   = .git_clone
-
-suffix     = tar.xz
-
-versions   = $(foreach tag, $(revisions), $(shell echo $(tag) | cut -f 2 -d ':'))
-
-tarballs   = $(addsuffix .$(suffix), $(addprefix $(pkg_name)-, $(versions)))
-sha1s      = $(addsuffix .sha1sum, $(tarballs))
-
-TARGETS = repository_clean
-
-all: $(TARGETS)
-
-.PHONY: downloads_clean repository_clean
-
-$(git_repo):
-	@echo -e "\n======= Clone $(repo_name).git repository =======\n"
-	@rm -rf $(repo_name)
-	@git clone $(url)/$(repo_name).git $(repo_name)
-	@touch $@
-
-$(tarballs): $(git_repo)
-	@for revision in $(revisions) ; do \
-	  hash=`echo $$revision    | cut -f 1 -d ':'` ; \
-	  version=`echo $$revision | cut -f 2 -d ':'` ; \
-	  if [ ! -f $(repo_name)-$$version.$(suffix) ]; then \
-	    echo -e "\n======= Creating '$(pkg_name)-$$version.$(suffix)' snapshot =======" ; \
-	    ( cd $(repo_name) && \
-	      git archive --format=tar --prefix=$(pkg_name)-$$version/ $$hash | \
-	      xz >../$(pkg_name)-$$version.$(suffix) ) ; \
-	  fi ; \
-	done
-
-
-$(sha1s): %.$(suffix).sha1sum : %.$(suffix)
-	@for tarball in $< ; do \
-	  echo -e "\n======= Calculation the '$$tarball' sha1sum =======" ; \
-	  sha1sum --binary $$tarball > $$tarball.sha1sum ; \
-	done
-
-repository_clean: $(sha1s)
-	@echo -e "\n======= Remove cloned $(repo_name).git repository =======\n"
-	@rm -rf $(git_repo) $(repo_name)
-
-downloads_clean:
-	@rm -rf $(tarballs) $(sha1s)
-	@rm -rf $(git_repo) $(repo_name)
diff --git a/packages/x/Makefile b/packages/x/Makefile
index e6f6feb..b7a84fa 100644
--- a/packages/x/Makefile
+++ b/packages/x/Makefile
@@ -4,8 +4,7 @@
 # $ tree -fid .
 #
 
-SUBDIRS := MINT                 \
-           Vulkan               \
+SUBDIRS := Vulkan               \
            WindowMaker          \
            WindowMaker-extra    \
            conky                \