From 57390e23f2613174bbb0fb71a6c878ca477471e3 Mon Sep 17 00:00:00 2001 From: Kefu Chai Date: Sun, 17 Jul 2016 17:47:49 +0800 Subject: [PATCH] build-ceph-rpm.sh: fix the bogus date in changelog rpmbuild complains at seeing the bogus date: ``` warning: bogus date in %changelog: Tue Mar 10 2013 Gary Lowell - 1-0 warning: bogus date in %changelog: Tue Aug 27 2012 Gary Lowell - 1-0 ``` so update the weekday to applease it. also follows https://docs.fedoraproject.org/en-US/Fedora_Draft_Documentation/0.1/html/Packagers_Guide/sect-Packagers_Guide-Creating_a_Basic_Spec_File.html to remove the hyphen before version number. Signed-off-by: Kefu Chai --- build-ceph-rpm.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-ceph-rpm.sh b/build-ceph-rpm.sh index 4e74a4a..64c0a94 100755 --- a/build-ceph-rpm.sh +++ b/build-ceph-rpm.sh @@ -174,11 +174,11 @@ install -pm 644 %{SOURCE0} \ #/etc/pki/rpm-gpg/* %changelog -* Tue Mar 10 2013 Gary Lowell - 1-0 +* Sun Mar 10 2013 Gary Lowell 1-1 - Handle both yum and zypper - Use URL to ceph git repo for key - remove config attribute from repo file -* Tue Aug 27 2012 Gary Lowell - 1-0 +* Mon Aug 27 2012 Gary Lowell 1-0 - Initial Package EOF # End of ceph-release.spec file. -- 2.39.5