diff options
Diffstat (limited to 'admin')
| -rw-r--r-- | admin/admin.el | 8 | ||||
| -rw-r--r-- | admin/authors.el | 2 | ||||
| -rw-r--r-- | admin/find-gc.el | 2 | ||||
| -rw-r--r-- | admin/last-chance.el | 1 | ||||
| -rw-r--r-- | admin/make-tarball.txt | 2 | ||||
| -rwxr-xr-x | admin/update-copyright | 2 |
6 files changed, 7 insertions, 10 deletions
diff --git a/admin/admin.el b/admin/admin.el index 030bd54b521..d3a477fde80 100644 --- a/admin/admin.el +++ b/admin/admin.el | |||
| @@ -138,10 +138,10 @@ Root must be the root of an Emacs source tree." | |||
| 138 | (if (eq 2 (length newversion)) 0 1)))) | 138 | (if (eq 2 (length newversion)) 0 1)))) |
| 139 | (majorbump (and oldversion (not (equal oldmajor newmajor)))) | 139 | (majorbump (and oldversion (not (equal oldmajor newmajor)))) |
| 140 | (minorbump (and oldversion (not majorbump) | 140 | (minorbump (and oldversion (not majorbump) |
| 141 | (or (not (equal (cadr oldversion) | 141 | (or (not (equal (cadr oldversion) (cadr newversion))) |
| 142 | (cadr newversion))) | 142 | ;; Eg 26.2 -> 26.2.50. |
| 143 | (and (equal (cadr oldversion) (cadr newversion)) | 143 | (and (> (length newversion) |
| 144 | (equal (nth 2 newversion) 50))))) | 144 | (length oldversion)))))) |
| 145 | (newsfile (expand-file-name "etc/NEWS" root)) | 145 | (newsfile (expand-file-name "etc/NEWS" root)) |
| 146 | (oldnewsfile (expand-file-name (format "etc/NEWS.%s" oldmajor) root))) | 146 | (oldnewsfile (expand-file-name (format "etc/NEWS.%s" oldmajor) root))) |
| 147 | (unless (> (length newversion) 2) ; pretest or release candidate? | 147 | (unless (> (length newversion) 2) ; pretest or release candidate? |
diff --git a/admin/authors.el b/admin/authors.el index a3f8bdde841..8329f3f581c 100644 --- a/admin/authors.el +++ b/admin/authors.el | |||
| @@ -1,10 +1,8 @@ | |||
| 1 | |||
| 2 | ;;; authors.el --- utility for maintaining Emacs's AUTHORS file | 1 | ;;; authors.el --- utility for maintaining Emacs's AUTHORS file |
| 3 | 2 | ||
| 4 | ;; Copyright (C) 2000-2019 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2000-2019 Free Software Foundation, Inc. |
| 5 | 4 | ||
| 6 | ;; Author: Gerd Moellmann <gerd@gnu.org> | 5 | ;; Author: Gerd Moellmann <gerd@gnu.org> |
| 7 | ;; Maintainer: emacs-devel@gnu.org | ||
| 8 | ;; Keywords: maint | 6 | ;; Keywords: maint |
| 9 | ;; Package: emacs | 7 | ;; Package: emacs |
| 10 | 8 | ||
diff --git a/admin/find-gc.el b/admin/find-gc.el index bf93c4eedf4..9b925565dfb 100644 --- a/admin/find-gc.el +++ b/admin/find-gc.el | |||
| @@ -2,8 +2,6 @@ | |||
| 2 | 2 | ||
| 3 | ;; Copyright (C) 1992, 2001-2019 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 1992, 2001-2019 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Maintainer: emacs-devel@gnu.org | ||
| 6 | |||
| 7 | ;; This file is part of GNU Emacs. | 5 | ;; This file is part of GNU Emacs. |
| 8 | 6 | ||
| 9 | ;; GNU Emacs is free software: you can redistribute it and/or modify | 7 | ;; GNU Emacs is free software: you can redistribute it and/or modify |
diff --git a/admin/last-chance.el b/admin/last-chance.el index 5f993be18e2..ceed1c7cfa3 100644 --- a/admin/last-chance.el +++ b/admin/last-chance.el | |||
| @@ -3,7 +3,6 @@ | |||
| 3 | ;; Copyright (C) 2016-2019 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 2016-2019 Free Software Foundation, Inc. |
| 4 | 4 | ||
| 5 | ;; Author: Thien-Thi Nguyen <ttn@gnu.org> | 5 | ;; Author: Thien-Thi Nguyen <ttn@gnu.org> |
| 6 | ;; Maintainer: emacs-devel@gnu.org | ||
| 7 | ;; Keywords: maint | 6 | ;; Keywords: maint |
| 8 | ;; Package: emacs | 7 | ;; Package: emacs |
| 9 | 8 | ||
diff --git a/admin/make-tarball.txt b/admin/make-tarball.txt index 47b60173f8e..43992a0bb2b 100644 --- a/admin/make-tarball.txt +++ b/admin/make-tarball.txt | |||
| @@ -115,7 +115,7 @@ General steps (for each step, check for possible errors): | |||
| 115 | results against the new tar contents. | 115 | results against the new tar contents. |
| 116 | 116 | ||
| 117 | 7. tar -xf emacs-NEW.tar; cd emacs-NEW | 117 | 7. tar -xf emacs-NEW.tar; cd emacs-NEW |
| 118 | ./configure --prefix=/tmp/emacs && make && make install | 118 | ./configure --prefix=/tmp/emacs && make check && make install |
| 119 | Use 'script' or M-x compile to save the compilation log in | 119 | Use 'script' or M-x compile to save the compilation log in |
| 120 | compile-NEW.log and compare it against an old one. The easiest way | 120 | compile-NEW.log and compare it against an old one. The easiest way |
| 121 | to do that is to visit the old log in Emacs, change the version | 121 | to do that is to visit the old log in Emacs, change the version |
diff --git a/admin/update-copyright b/admin/update-copyright index 44cb84d8cc9..9f360904ce6 100755 --- a/admin/update-copyright +++ b/admin/update-copyright | |||
| @@ -50,6 +50,7 @@ repo_files=$(git ls-files) && | |||
| 50 | # Do not update the copyright of files that have one or more of the | 50 | # Do not update the copyright of files that have one or more of the |
| 51 | # following problems: | 51 | # following problems: |
| 52 | # . They are license files, maintained by the FSF, with their own dates. | 52 | # . They are license files, maintained by the FSF, with their own dates. |
| 53 | # . They are GMP files, maintained by the GMP project, with their own dates. | ||
| 53 | # . Their format cannot withstand changing the contents of copyright strings. | 54 | # . Their format cannot withstand changing the contents of copyright strings. |
| 54 | 55 | ||
| 55 | updatable_files=$(find $repo_files \ | 56 | updatable_files=$(find $repo_files \ |
| @@ -70,6 +71,7 @@ updatable_files=$(find $repo_files \ | |||
| 70 | ! -name hand.cur \ | 71 | ! -name hand.cur \ |
| 71 | ! -name key.pub \ | 72 | ! -name key.pub \ |
| 72 | ! -name key.sec \ | 73 | ! -name key.sec \ |
| 74 | ! -name 'mini-gmp.[ch]' \ | ||
| 73 | -print) && | 75 | -print) && |
| 74 | 76 | ||
| 75 | build-aux/update-copyright $updatable_files | 77 | build-aux/update-copyright $updatable_files |