Skip to content

Commit

Permalink
v2.4.4: Minor improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
Gitea committed Apr 26, 2021
1 parent 8a7b6b7 commit 735b2ea
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 7 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## v2.4.4

* `lib/dnf`: Minor improvements (#148)

## v2.4.3

* `lib/homebrew`: Support `cask` (fix #117)
Expand Down
16 changes: 9 additions & 7 deletions pacapt
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
# Purpose: A wrapper for all Unix package managers
# License: Fair license (http://www.opensource.org/licenses/fair)
# Source : http://github.com/icy/pacapt/
# Version: 2.4.3
# Version: 2.4.4
# Authors: Anh K. Huynh et al.

# Copyright (C) 2010 - 2020 \
# Copyright (C) 2010 - 2021 \
# | 10sr (10sr)
# | Alexander Dupuy (dupuy)
# | Anh K. Huynh (icy)
Expand All @@ -30,6 +30,7 @@
# | Kevin Brubeck (unhammer)
# | Konrad Borowski (xfix)
# | Kylie McClain (somasis)
# | Gen Li (Rami3L)
# | Valerio Pizzi (Pival81)
# | Siôn Le Roux (sinisterstuf)
# | Thiago Perrotta (thiagowfx)
Expand All @@ -44,9 +45,9 @@

_print_pacapt_version() {
cat <<_EOF_
pacapt version '2.4.3'
pacapt version '2.4.4'
Copyright (C) 2010 - 2020 \\
Copyright (C) 2010 - 2021 \\
| 10sr (10sr)
| Alexander Dupuy (dupuy)
| Anh K. Huynh (icy)
Expand All @@ -70,6 +71,7 @@ Copyright (C) 2010 - 2020 \\
| Kevin Brubeck (unhammer)
| Konrad Borowski (xfix)
| Kylie McClain (somasis)
| Gen Li (Rami3L)
| Valerio Pizzi (Pival81)
| Siôn Le Roux (sinisterstuf)
| Thiago Perrotta (thiagowfx)
Expand All @@ -83,7 +85,7 @@ DISCLAIMER: THE WORKS ARE WITHOUT WARRANTY.
_EOF_
}

export PACAPT_VERSION='2.4.3'
export PACAPT_VERSION='2.4.4'

_help() {
cat <<'EOF'
Expand Down Expand Up @@ -755,7 +757,7 @@ dnf_Sccc() {
}

dnf_Si() {
dnf info "$@"
dnf info "$@" && dnf repoquery --deplist "$@"
}

dnf_Sg() {
Expand Down Expand Up @@ -809,7 +811,7 @@ dnf_Qe() {
}

dnf_Qi() {
dnf info "$@"
dnf info --installed "$@" && dnf repoquery --deplist "$@"
}

dnf_Ql() {
Expand Down

0 comments on commit 735b2ea

Please sign in to comment.