summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorPedro A. López-Valencia2022-04-18 17:40:26 -0500
committerPedro A. López-Valencia2022-04-18 17:40:26 -0500
commitef6ba67be9b0ec2f68a782bc3e24645e61bf7ef3 (patch)
tree580c5681711464f92fffdeebec44080e8f8f254a
parentc49983360abf234f42de2bbd2ee9b555129c2ee1 (diff)
downloadaur-ef6ba67be9b0ec2f68a782bc3e24645e61bf7ef3.tar.gz
* Unbreaking the lot.
-rw-r--r--.SRCINFO4
-rw-r--r--PKGBUILD9
2 files changed, 7 insertions, 6 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 58db263c96e9..28bde1080925 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,6 +1,6 @@
pkgbase = emacs-git
pkgdesc = GNU Emacs. Development master branch.
- pkgver = 29.0.50.155758
+ pkgver = 29.0.50.155762
pkgrel = 1
url = http://www.gnu.org/software/emacs/
install = emacs-git.install
@@ -43,7 +43,7 @@ pkgbase = emacs-git
replaces = emacs-seq
replaces = emacs-nox
options = !strip
- source = emacs-git::git://git.savannah.gnu.org/emacs.git
+ source = emacs-git::git+https://git.savannah.gnu.org/git/emacs.git
b2sums = SKIP
pkgname = emacs-git
diff --git a/PKGBUILD b/PKGBUILD
index 18874e4055f9..89cece31020d 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -80,7 +80,7 @@ if [[ $CLI == "YES" ]] ; then
else
pkgname="emacs-git"
fi
-pkgver=29.0.50.155758
+pkgver=29.0.50.155762
pkgrel=1
pkgdesc="GNU Emacs. Development master branch."
arch=('x86_64')
@@ -92,7 +92,8 @@ makedepends=('git')
provides=('emacs' 'emacs-pretest' 'emacs26-git' 'emacs-27-git' 'emacs28-git' 'emacs-seq' 'emacs-nox')
conflicts=('emacs' 'emacs-pretest' 'emacs26-git' 'emacs-27-git' 'emacs28-git' 'emacs-seq' 'emacs-nox')
replaces=('emacs' 'emacs-pretest' 'emacs26-git' 'emacs-27-git' 'emacs28-git' 'emacs-seq' 'emacs-nox')
-source=("emacs-git::git://git.savannah.gnu.org/emacs.git")
+#source=("emacs-git::git://git.savannah.gnu.org/emacs.git")
+source=("emacs-git::git+https://git.savannah.gnu.org/git/emacs.git")
options=(!strip)
install=emacs-git.install
b2sums=('SKIP')
@@ -208,9 +209,9 @@ pkgver() {
# There is no need to run autogen.sh after first checkout.
# Doing so, breaks incremental compilation.
prepare() {
+ cd "$srcdir/emacs-git"
+ [[ -x configure ]] || ( ./autogen.sh git && ./autogen.sh autoconf )
mkdir -p "$srcdir/emacs-git/build"
- cd "$srcdir/emacs-git/build"
- [[ -x ../configure ]] || ( ../autogen.sh git && ../autogen.sh autoconf )
}
if [[ $CHECK == "YES" ]]; then