fix bz#505083
This commit is contained in:
parent
fef43a095e
commit
b2cd9e515c
@ -4,7 +4,7 @@ Summary: GNU Emacs text editor
|
|||||||
Name: emacs
|
Name: emacs
|
||||||
Epoch: 1
|
Epoch: 1
|
||||||
Version: 23.0.93
|
Version: 23.0.93
|
||||||
Release: 1%{?dist}
|
Release: 2%{?dist}
|
||||||
License: GPLv3+
|
License: GPLv3+
|
||||||
URL: http://www.gnu.org/software/emacs/
|
URL: http://www.gnu.org/software/emacs/
|
||||||
Group: Applications/Editors
|
Group: Applications/Editors
|
||||||
@ -367,6 +367,9 @@ alternatives --install %{_bindir}/etags emacs.etags %{_bindir}/etags.emacs 80 \
|
|||||||
%dir %{_datadir}/emacs/%{version}
|
%dir %{_datadir}/emacs/%{version}
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Thu Jun 11 2009 Daniel Novotny <dnovotny@redhat.com> 1:23.0.93-2
|
||||||
|
- fix bz#505083 - rpm-add-change-log-entry date format rejected by rpmbuild
|
||||||
|
|
||||||
* Mon May 18 2009 Daniel Novotny <dnovotny@redhat.com> 1:23.0.93-1
|
* Mon May 18 2009 Daniel Novotny <dnovotny@redhat.com> 1:23.0.93-1
|
||||||
- new upstream version
|
- new upstream version
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
--- rpm-spec-mode.el.~1~
|
--- rpm-spec-mode.el~ 2009-06-11 11:01:53.000000000 +0200
|
||||||
+++ rpm-spec-mode.el
|
+++ rpm-spec-mode.el 2009-06-11 11:05:24.000000000 +0200
|
||||||
@@ -708,6 +708,17 @@ with no args, if that value is non-nil."
|
@@ -708,6 +708,17 @@
|
||||||
|
|
||||||
;;------------------------------------------------------------
|
;;------------------------------------------------------------
|
||||||
|
|
||||||
@ -18,12 +18,13 @@
|
|||||||
(defun rpm-add-change-log-entry (&optional change-log-entry)
|
(defun rpm-add-change-log-entry (&optional change-log-entry)
|
||||||
"Find change log and add an entry for today."
|
"Find change log and add an entry for today."
|
||||||
(interactive "sChange log entry: ")
|
(interactive "sChange log entry: ")
|
||||||
@@ -715,8 +726,7 @@ with no args, if that value is non-nil."
|
@@ -715,8 +726,8 @@
|
||||||
(rpm-goto-section "changelog")
|
(rpm-goto-section "changelog")
|
||||||
(let* ((address (rpm-spec-user-mail-address))
|
(let* ((address (rpm-spec-user-mail-address))
|
||||||
(fullname (or rpm-spec-user-full-name (user-full-name)))
|
(fullname (or rpm-spec-user-full-name (user-full-name)))
|
||||||
- (string (concat "* " (substring (current-time-string) 0 11)
|
- (string (concat "* " (substring (current-time-string) 0 11)
|
||||||
- (substring (current-time-string) -4) " "
|
- (substring (current-time-string) -4) " "
|
||||||
|
+ (system-time-locale "C")
|
||||||
+ (string (concat "* " (rpm-change-log-date-string) " "
|
+ (string (concat "* " (rpm-change-log-date-string) " "
|
||||||
fullname " <" address ">"
|
fullname " <" address ">"
|
||||||
(and rpm-spec-insert-changelog-version
|
(and rpm-spec-insert-changelog-version
|
||||||
|
Loading…
Reference in New Issue
Block a user