Compare commits
5 Commits
Author | SHA1 | Date | |
---|---|---|---|
d1becc7836 | |||
b68c7c5949 | |||
8e575157f7 | |||
7d778ecd66 | |||
aa8929ff8e |
76
zpac
76
zpac
@@ -18,10 +18,10 @@ usage() {
|
||||
Flags:
|
||||
-h Show this message.
|
||||
-s Search for <package>.
|
||||
-S Search only in the sync db. Implies -s.
|
||||
-A Search only in AUR. Implies -s.
|
||||
-S Search only in the sync db. Implies -s.
|
||||
-A Search only in AUR. Implies -s.
|
||||
-d Get the package sources (default).
|
||||
-D Get the dependencies also. Implies -d.
|
||||
Set twice to also get the dependencies.
|
||||
EOF
|
||||
}
|
||||
|
||||
@@ -35,7 +35,14 @@ aur.search() {
|
||||
aur_search_results=( $( jshon -e results -a -e Name -u <<< "$aur_api_search_data" ) )
|
||||
|
||||
for i in "${!aur_search_results[@]}"; do
|
||||
printf 'aur/%s\n %s\n' "${aur_search_results[${i}]}" "$( jshon -e results -e $i -e Description -u <<< "$aur_api_search_data" )"
|
||||
{
|
||||
read -r version
|
||||
read -r description
|
||||
} < <(
|
||||
jshon -e results -e $i -e Version -u -p -e Description -u <<< "$aur_api_search_data"
|
||||
)
|
||||
|
||||
printf '%s %s\n %s\n' "aur/${aur_search_results[$i]}" "$version" "$description"
|
||||
done
|
||||
else
|
||||
return 1
|
||||
@@ -56,10 +63,14 @@ aur.info() {
|
||||
aur.get() {
|
||||
local dep_name aur_api_multireq aur_deps_api_data aur_deps_count aur_deps pkg_aur_info pkg_base tarball_path
|
||||
|
||||
read pkg_aur_info
|
||||
read -r pkg_aur_info
|
||||
|
||||
pkg_base=$( jshon -e results -e PackageBase -u <<< "$pkg_aur_info" )
|
||||
tarball_path=$( jshon -e results -e URLPath -u <<< "$pkg_aur_info" )
|
||||
{
|
||||
read -r pkg_base
|
||||
read -r tarball_path
|
||||
} < <(
|
||||
jshon -e results -e PackageBase -u -p -e URLPath -u <<< "$pkg_aur_info"
|
||||
)
|
||||
|
||||
cd "$cfg_workdir"
|
||||
|
||||
@@ -86,7 +97,7 @@ aur.get() {
|
||||
aur_deps_count=$( jshon -e resultcount <<< "$aur_deps_api_data" )
|
||||
|
||||
if (( aur_deps_count )); then
|
||||
aur_deps=$( jshon -e results -a -e Name -u <<< "$aur_deps_api_data" )
|
||||
aur_deps=( $( jshon -e results -a -e Name -u <<< "$aur_deps_api_data" ) )
|
||||
|
||||
for i in "${aur_deps[@]}"; do
|
||||
aur.get < <(aur.info "$i") || {
|
||||
@@ -112,6 +123,40 @@ abs.get() {
|
||||
svn checkout "svn://svn.archlinux.org/${svn_repo}/${1}/trunk" "${cfg_workdir}/${1}"
|
||||
}
|
||||
|
||||
args_norm() {
|
||||
while (( $# )); do
|
||||
unset -v arg opt c keys
|
||||
|
||||
case "$1" in
|
||||
--) printf '%s\n' '--'; break;;
|
||||
|
||||
--*)
|
||||
IFS='=' read -r arg opt <<< "$1"
|
||||
printf '%s\n' "$arg"
|
||||
|
||||
[[ "$opt" ]] && {
|
||||
printf '%s\n' "$opt"
|
||||
}
|
||||
;;
|
||||
|
||||
-*)
|
||||
while read -r -n1 c
|
||||
do
|
||||
case "$c" in
|
||||
-|'') :;;
|
||||
*) keys+=( "-$c" );;
|
||||
esac
|
||||
done <<< "$1"
|
||||
|
||||
printf '%s\n' "${keys[@]}"
|
||||
;;
|
||||
|
||||
*) printf '%s\n' "$1";;
|
||||
esac
|
||||
shift
|
||||
done
|
||||
}
|
||||
|
||||
main() {
|
||||
if [[ -f "$HOME/.config/zpac.rc.sh" ]]; then
|
||||
source "$HOME/.config/zpac.rc.sh"
|
||||
@@ -129,10 +174,13 @@ main() {
|
||||
action='search'
|
||||
flag_search_syncdb=1;;
|
||||
|
||||
(-d) action='get';;
|
||||
(-D)
|
||||
action='get'
|
||||
flag_get_deps=1;;
|
||||
(-d)
|
||||
if [[ "$action" == 'get' ]]; then
|
||||
flag_get_deps=1
|
||||
else
|
||||
action='get'
|
||||
fi
|
||||
;;
|
||||
|
||||
(--) shift; break;;
|
||||
(-*)
|
||||
@@ -176,7 +224,7 @@ main() {
|
||||
if (( ! "$?" )); then
|
||||
repo='aur'
|
||||
else
|
||||
while read; do
|
||||
while read -r; do
|
||||
if [[ "$REPLY" =~ ^Repository ]]; then
|
||||
repo="${REPLY##* }"
|
||||
fi
|
||||
@@ -224,4 +272,4 @@ main() {
|
||||
esac
|
||||
}
|
||||
|
||||
main "$@"
|
||||
main $(args_norm "$@")
|
||||
|
Reference in New Issue
Block a user