Update emacs-bzr
This commit is contained in:
parent
391987f3ea
commit
a27eb2dbb8
2 changed files with 3 additions and 31 deletions
|
@ -7,7 +7,7 @@
|
|||
_opt_puresize="1820000"
|
||||
|
||||
pkgname=emacs-bzr
|
||||
pkgver=116544
|
||||
pkgver=116906
|
||||
pkgrel=1
|
||||
pkgdesc='The extensible, customizable, self-documenting real-time display editor from its official Bzr repository'
|
||||
arch=('i686' 'x86_64')
|
||||
|
@ -20,8 +20,7 @@ provides=("emacs=$pkgver")
|
|||
conflicts=('emacs' 'emacs-nox' 'emacs-otf' 'emacs-cvs' 'emacs-git')
|
||||
install=$pkgname.install
|
||||
source=("bzr+http://bzr.savannah.gnu.org/r/emacs/trunk/"
|
||||
'docstrings2.patch'
|
||||
'pkgver.patch')
|
||||
'docstrings2.patch')
|
||||
|
||||
_mandir=/usr/share/man
|
||||
|
||||
|
@ -48,7 +47,6 @@ build() {
|
|||
--with-xft \
|
||||
--with-x-toolkit=lucid || return 1
|
||||
patch -p0 -i "$srcdir"/docstrings2.patch || return 1
|
||||
patch -p0 -i "$srcdir"/pkgver.patch || return 1
|
||||
make bootstrap
|
||||
}
|
||||
|
||||
|
@ -76,5 +74,4 @@ package() {
|
|||
bzr revert
|
||||
}
|
||||
md5sums=('SKIP'
|
||||
'3a868e5b80d5912ded06e6bdc040208a'
|
||||
'96a3a209798a424ab87c37152d5b2cf1')
|
||||
'3a868e5b80d5912ded06e6bdc040208a')
|
||||
|
|
|
@ -1,25 +0,0 @@
|
|||
--- lisp/emacs-lisp/package.el 2014-02-12 01:20:34 +0000
|
||||
+++ lisp/emacs-lisp/package.el 2014-02-20 22:49:57 +0000
|
||||
@@ -1128,6 +1128,8 @@
|
||||
((symbolp dep) `(,dep "0"))
|
||||
((stringp dep)
|
||||
(error "Invalid requirement specifier: %S" dep))
|
||||
+ ((and (listp dep) (null (cdr dep)))
|
||||
+ (list (car dep) "0"))
|
||||
(t dep)))
|
||||
deps))))
|
||||
|
||||
@@ -1155,11 +1157,9 @@
|
||||
;; probably wants us to use it. Otherwise try Version.
|
||||
(pkg-version
|
||||
(or (package-strip-rcs-id (lm-header "package-version"))
|
||||
- (package-strip-rcs-id (lm-header "version"))))
|
||||
+ (package-strip-rcs-id (lm-header "version"))
|
||||
+ "0"))
|
||||
(homepage (lm-homepage)))
|
||||
- (unless pkg-version
|
||||
- (error
|
||||
- "Package lacks a \"Version\" or \"Package-Version\" header"))
|
||||
(package-desc-from-define
|
||||
file-name pkg-version desc
|
||||
(if requires-str
|
Loading…
Reference in a new issue