From 47a3723632b82a0d3caf79dbe8ada1eae60dd976 Mon Sep 17 00:00:00 2001 From: Cem Keylan Date: Sat, 25 Jul 2020 11:20:55 +0300 Subject: rename to cpt-extra --- other/cpt-changelog | 11 +++++++++++ other/cpt-orphans | 23 +++++++++++++++++++++++ other/kiss-changelog | 11 ----------- other/kiss-orphans | 23 ----------------------- 4 files changed, 34 insertions(+), 34 deletions(-) create mode 100755 other/cpt-changelog create mode 100755 other/cpt-orphans delete mode 100755 other/kiss-changelog delete mode 100755 other/kiss-orphans (limited to 'other') diff --git a/other/cpt-changelog b/other/cpt-changelog new file mode 100755 index 0000000..ed323d8 --- /dev/null +++ b/other/cpt-changelog @@ -0,0 +1,11 @@ +#!/bin/sh -e +# Print the git log of the specific package + +case "$1" in ''|--help|-h) printf '\033[1;33m-> \033[m%s\n' "usage: ${0##*/} [pkg]"; exit 0; esac + +kiss s "$1" >/dev/null +cd "$(kiss s "$1" | sed 1q)" + +# Pipe to cat so it doesn't automatically paged +# by git. +git log --format='<%as> [%an] %s - %h' . | cat diff --git a/other/cpt-orphans b/other/cpt-orphans new file mode 100755 index 0000000..fd8b9d1 --- /dev/null +++ b/other/cpt-orphans @@ -0,0 +1,23 @@ +#!/bin/sh -e +# List orphaned packages + +# Copyright (C) 2019-2020 - Dylan Araps. +# Distributed under the terms of the MIT License. + +case "$1" in ''|--help|-h) + printf '\033[1;33m-> \033[m%s\n' \ + "${0##*/}: lists packages that do not have any packages depending on them" >&2 + exit 0 +esac + +cd "$KISS_ROOT/var/db/kiss/installed/" + +for pkg in *; do + case $pkg in + baseinit|baselayout|gcc|pkgconf|e2fsprogs|musl|\ + make|busybox|bzip2|grub|kiss|git|linux-headers) + continue + esac + + grep -q "^$pkg$" ./*/depends || printf '%s\n' "$pkg" +done diff --git a/other/kiss-changelog b/other/kiss-changelog deleted file mode 100755 index ed323d8..0000000 --- a/other/kiss-changelog +++ /dev/null @@ -1,11 +0,0 @@ -#!/bin/sh -e -# Print the git log of the specific package - -case "$1" in ''|--help|-h) printf '\033[1;33m-> \033[m%s\n' "usage: ${0##*/} [pkg]"; exit 0; esac - -kiss s "$1" >/dev/null -cd "$(kiss s "$1" | sed 1q)" - -# Pipe to cat so it doesn't automatically paged -# by git. -git log --format='<%as> [%an] %s - %h' . | cat diff --git a/other/kiss-orphans b/other/kiss-orphans deleted file mode 100755 index fd8b9d1..0000000 --- a/other/kiss-orphans +++ /dev/null @@ -1,23 +0,0 @@ -#!/bin/sh -e -# List orphaned packages - -# Copyright (C) 2019-2020 - Dylan Araps. -# Distributed under the terms of the MIT License. - -case "$1" in ''|--help|-h) - printf '\033[1;33m-> \033[m%s\n' \ - "${0##*/}: lists packages that do not have any packages depending on them" >&2 - exit 0 -esac - -cd "$KISS_ROOT/var/db/kiss/installed/" - -for pkg in *; do - case $pkg in - baseinit|baselayout|gcc|pkgconf|e2fsprogs|musl|\ - make|busybox|bzip2|grub|kiss|git|linux-headers) - continue - esac - - grep -q "^$pkg$" ./*/depends || printf '%s\n' "$pkg" -done -- cgit v1.2.3