From 834b2aa4e228e32ddd2f9ada22c5c2e440140212 Mon Sep 17 00:00:00 2001 From: Paul Zander Date: Fri, 17 Oct 2025 11:29:03 +0200 Subject: [PATCH] dev-libs/collada-dom: drop unused patches Signed-off-by: Paul Zander Part-of: https://github.com/gentoo/gentoo/pull/44218 Signed-off-by: Andreas Sturmlechner --- dev-libs/collada-dom/files/take_snapshot.sh | 14 -------------- 1 file changed, 14 deletions(-) delete mode 100755 dev-libs/collada-dom/files/take_snapshot.sh diff --git a/dev-libs/collada-dom/files/take_snapshot.sh b/dev-libs/collada-dom/files/take_snapshot.sh deleted file mode 100755 index fcf9c75e34231..0000000000000 --- a/dev-libs/collada-dom/files/take_snapshot.sh +++ /dev/null @@ -1,14 +0,0 @@ -#!/bin/sh -VERSION=$(date +%Y%m%d) -PACKAGE="collada-dom-2.4.3_pre${VERSION}" - -git clone https://github.com/rdiankov/collada-dom ${PACKAGE} - -find "${PACKAGE}" -type d -name '.git' -prune -print0 | xargs -0 rm -rf - -tar cJf ${PACKAGE}.tar.xz ${PACKAGE} -rm -rf ${PACKAGE}/ - -echo "Tarball: \"${PACKAGE}.tar.xz\"" - -echo "** all done **"