Update prezto

master
Taeyeon Mori 9 years ago
parent de5f0b0760
commit 5ec123b26f
  1. 20
      etc/aur.conf
  2. 2
      zsh/prezto
  3. 9
      zsh/zshrc

@ -14,7 +14,9 @@ test -d "$SRCDEST" || mkdir -p "$SRCDEST" || exit 1
export GNUPGHOME="$AURDIR/gnupg" export GNUPGHOME="$AURDIR/gnupg"
test -d "$GNUPGHOME" || mkdir -p "$GNUPGHOME" && chmod go-w "$GNUPGHOME" || exit 1 test -d "$GNUPGHOME" || mkdir -p "$GNUPGHOME" && chmod go-w "$GNUPGHOME" || exit 1
test -e "$GNUPGHOME/gpg.conf" || cat >"$GNUPGHOME/gpg.conf" <<EOF
if ! test -e "$GNUPGHOME/gpg.conf"; then
cat >"$GNUPGHOME/gpg.conf" <<EOF
no-greeting no-greeting
keyserver hkp://pool.sks-keyservers.net keyserver hkp://pool.sks-keyservers.net
keyserver-options auto-key-retrieve keyserver-options auto-key-retrieve
@ -22,10 +24,20 @@ personal-cipher-preferences AES256 AES192 AES
personal-digest-preferences SHA512 SHA384 SHA256 personal-digest-preferences SHA512 SHA384 SHA256
cert-digest-algo SHA512 cert-digest-algo SHA512
EOF EOF
if [ "$?" -eq 0 ]; then if [ "$?" -eq 0 ]; then
dirmngr </dev/null || exit 1 dirmngr </dev/null >/dev/null || exit 1
else else
echo "Failed to initialize aur.sh GnuPG keyring" echo "Failed to initialize aur.sh GnuPG keyring"
exit 1 exit 1
fi
fi
# ABS
if which asp >/dev/null 2>&1; then
ABSDEST="$AURDIR/ABS"
export ASPROOT="$ABSDEST/.asp"
test -d "$ABSDEST" || mkdir -p "$ABSDEST" || exit 1
test -d "$ASPROOT" || mkdir -p "$ASPROOT" || exit 1
fi fi

@ -1 +1 @@
Subproject commit c34098af20cafdf016f68f3e7f612ed60ca93aa1 Subproject commit 7227c4f0bef5f8ae787c65150d7a7403394fff48

@ -22,12 +22,15 @@ function gupf {
set -e set -e
local ORIGIN=${1-origin} local ORIGIN=${1-origin}
local UPSTREAM=${2-upstream} local UPSTREAM=${2-upstream}
local LBRANCH=`git symbolic-ref --short HEAD`
local OBRANCH=${3-$LBRANCH}
local UBRANCH=${4-$OBRANCH}
git fetch $ORIGIN git fetch $ORIGIN
git fetch $UPSTREAM git fetch $UPSTREAM
git checkout $ORIGIN/master git checkout $ORIGIN/$OBRANCH
git checkout -b merge git checkout -b merge
git merge $UPSTREAM/master -m "merge upstream from `git ls-remote --get-url $UPSTREAM`" git merge $UPSTREAM/$UBRANCH -m "merge upstream from `git ls-remote --get-url $UPSTREAM`"
git checkout master git checkout $LBRANCH
git rebase merge git rebase merge
git branch -d merge git branch -d merge
) )

Loading…
Cancel
Save