summaryrefslogtreecommitdiff
path: root/kde-graph.sh
diff options
context:
space:
mode:
authorHartmut Goebel <h.goebel@crazy-compilers.com>2019-06-12 11:43:11 +0200
committerHartmut Goebel <h.goebel@crazy-compilers.com>2021-01-31 16:25:48 +0100
commit7ecc2c2ab27bbc5cd6d85424c49ee689e828e8f5 (patch)
treed2f7ccb1d18f48a8aeafd1b7ba7c5f8da67e04ff /kde-graph.sh
parented000b6d2bf27229f2aab8470fc4c7a64f345193 (diff)
TEMP Add some scripts for maintaining KDE packages.
Diffstat (limited to 'kde-graph.sh')
-rw-r--r--kde-graph.sh13
1 files changed, 13 insertions, 0 deletions
diff --git a/kde-graph.sh b/kde-graph.sh
new file mode 100644
index 0000000000..e55c43ee3f
--- /dev/null
+++ b/kde-graph.sh
@@ -0,0 +1,13 @@
+#!bash
+#
+# Copyright © 2016-2019 Hartmut Goebel <h.goebel@crazy-compilers.com>
+# License: GPLv3
+
+graph () {
+ WHICH="$1" ; shift
+ ./pre-inst-env guix package -A | grep -E "$WHICH" | \
+ head | cut -f 1 | xargs ./pre-inst-env guix graph | dot -Tpdf > kde-graph.pdf
+}
+
+#graph '/kde(|-frameworks|-plasma)\.scm'
+graph '/kde-frameworks.scm'