[AUR] Bump version, switch to Github source, use Clang

This commit is contained in:
Lucien Cartier-Tilet 2021-07-12 19:52:14 +02:00
parent e11c2701fb
commit 249619f7cd
Signed by: phundrak
GPG Key ID: BD7789E705CB8DCA
1 changed files with 5 additions and 5 deletions

View File

@ -22,8 +22,8 @@
# #
################################################################################ ################################################################################
CHECK= # Run tests. May fail, this is developement after all. CHECK= # Run tests. May fail, this is developement after all.
CLANG= # Use clang. CLANG="YES" # Use clang.
GOLD="YES" # Use the gold linker. GOLD= # Use the gold linker.
LTO="YES" # Enable link-time optimization. Read emacs's INSTALL before LTO="YES" # Enable link-time optimization. Read emacs's INSTALL before
# attempting to use it with clang. # attempting to use it with clang.
JIT="YES" # Enable native just-in-time compilation. libgccjit is in AUR. JIT="YES" # Enable native just-in-time compilation. libgccjit is in AUR.
@ -60,7 +60,7 @@ if [[ $CLI == "YES" ]] ; then
else else
pkgname="emacs-phundrak-git" pkgname="emacs-phundrak-git"
fi fi
pkgver=28.0.50.148754 pkgver=28.0.50.148919
pkgrel=1 pkgrel=1
pkgdesc="GNU Emacs. Development master branch with Phundraks tweaks." pkgdesc="GNU Emacs. Development master branch with Phundraks tweaks."
arch=('x86_64') arch=('x86_64')
@ -72,9 +72,9 @@ makedepends=('git')
provides=('emacs' 'emacs26-git' 'emacs-27-git' 'emacs-seq' 'emacs-nox' 'emacs-git') provides=('emacs' 'emacs26-git' 'emacs-27-git' 'emacs-seq' 'emacs-nox' 'emacs-git')
conflicts=('emacs' 'emacs26-git' 'emacs-27-git' 'emacs-seq' 'emacs-nox' 'emacs-git') conflicts=('emacs' 'emacs26-git' 'emacs-27-git' 'emacs-seq' 'emacs-nox' 'emacs-git')
replaces=('emacs' 'emacs26-git' 'emacs-27-git' 'emacs-seq' 'emacs-nox' 'emacs-git') replaces=('emacs' 'emacs26-git' 'emacs-27-git' 'emacs-seq' 'emacs-nox' 'emacs-git')
source=("emacs-git::git://git.savannah.gnu.org/emacs.git") #source=("emacs-git::git://git.savannah.gnu.org/emacs.git")
# If Savannah fails for reasons, use Github's mirror # If Savannah fails for reasons, use Github's mirror
#source=("emacs-git::git://github.com/emacs-mirror/emacs.git") source=("emacs-git::git://github.com/emacs-mirror/emacs.git")
OPTIONS=(strip docs !libtool !staticlibs emptydirs zipman purge !debug) OPTIONS=(strip docs !libtool !staticlibs emptydirs zipman purge !debug)
md5sums=('SKIP') md5sums=('SKIP')
################################################################################ ################################################################################