makedeb


una-bin 3.2.0-1


Una is a simple MPR helper.

Click here to go back to the commit logs for una-bin.

Commit:


Hash: 62eaac391e966615249d4d5add1fda74cce73abe

Message: bump to v3.1.1

Diff


diff --git a/PKGBUILD b/PKGBUILD
index 08dd953..c019658 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,7 +1,7 @@
 # Maintainer: Rudra Saraswat <rs2009@ubuntu.com>
 pkgname=una-bin
-pkgver=3.0.0
-pkgrel=2
+pkgver=3.1.1
+pkgrel=1
 url='https://github.com/AFK-OS/una'
 pkgdesc='Una is a simple MPR helper.'
 arch=('any')
diff --git a/una-completion b/una-completion
deleted file mode 100644
index d9c168f..0000000
--- a/una-completion
+++ /dev/null
@@ -1,25 +0,0 @@
-#/usr/bin/env bash
-
-set +e
-
-_completions() {
-    SUGGESTIONS=()
-
-    if [[ "$COMP_CWORD" == 1 ]]; then
-        SUGGESTIONS=('install' 'upgrade' 'remove' \
-          'update' 'help' 'list' 'info' 'search' )
-    elif [[ "$COMP_CWORD" == 2 ]] && [[ "${COMP_WORDS[1]}" == remove ]]; then
-        for pkg in $(dpkg-query --show --showformat '${Package} '); do
-            SUGGESTIONS+=("${pkg}")
-        done
-    elif [[ "$COMP_CWORD" == 2 ]] && ( [[ "${COMP_WORDS[1]}" == install ]] \
-      || [[ "${COMP_WORDS[1]}" == search ]] || [[ "${COMP_WORDS[1]}" == info ]] ); then
-        for pkg in $(cat /var/lib/una/cache | jq -r '.[].Name' | grep "^${COMP_WORDS[$COMP_CWORD]}" || true) $(apt-cache search --names-only "^${COMP_WORDS[$COMP_CWORD]}" 2>/dev/null | sort -d | awk '{print $1}' || true); do
-            SUGGESTIONS+=("${pkg}")
-        done
-    fi
-
-    COMPREPLY=($(compgen -W "${SUGGESTIONS[*]}" "${COMP_WORDS[$COMP_CWORD]}"))
-}
-
-complete -F _completions -- una
\ No newline at end of file