SHA256
1
0
forked from pool/courier-imap
Stephan Kulow 2019-02-08 11:10:21 +00:00 committed by Git OBS Bridge
commit ca7b97afb0
3 changed files with 33 additions and 0 deletions

View File

@ -1,3 +1,8 @@
-------------------------------------------------------------------
Thu Jan 3 10:09:46 UTC 2019 - Bernhard Wiedemann <bwiedemann@suse.com>
- Add reproducible.patch to override build date (boo#1047218)
-------------------------------------------------------------------
Mon Dec 4 11:55:19 UTC 2017 - suse+build@de-korte.org

View File

@ -44,6 +44,8 @@ Patch2: %{name}-ulimit_conf.patch
### Patch for upstream:
## fixes typo in Makefile.am
Patch3: %{name}-Makefile.patch
# PATCH-FIX-UPSTEAM https://github.com/svarshavchik/courier-libs/pull/10
Patch4: reproducible.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%if 0%{?suse_version} > 910
BuildRequires: audit-libs
@ -111,6 +113,7 @@ install the entire Courier server.
%patch0
%patch2
%patch3
%patch4 -p1
%build
%configure \

25
reproducible.patch Normal file
View File

@ -0,0 +1,25 @@
merged upstream: https://github.com/svarshavchik/courier-libs/pull/10
from https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=824037
Date: 2016-05-11
Description: Use SOURCE_DATE_EPOCH for imapd version
Use the environment variable SOURCE_DATE_EPOCH (if set) for imapd
PROGRAMVERSION, to make the build reproducible.
See https://reproducible-builds.org/specs/source-date-epoch/
Author: Alexis Bienvenüe <pado@passoire.fr>
Index: courier-imap-4.18.2/libs/imap/configure
===================================================================
--- courier-imap-4.18.2.orig/libs/imap/configure
+++ courier-imap-4.18.2/libs/imap/configure
@@ -18345,7 +18345,9 @@ courier)
;;
esac
-date=`date`
+SOURCE_DATE_EPOCH="${SOURCE_DATE_EPOCH:-`date +%s`}"
+date=`date -u -d "@$SOURCE_DATE_EPOCH" "+%F %T" 2>/dev/null || date -u -r "$SOURCE_DATE_EPOCH" "+%F %T" 2>/dev/null || date -u "+%F %T"`
+
cat >>confdefs.h <<_ACEOF
#define PROGRAMVERSION "$package/${target_cpu}-${target_vendor}-${target_os}/$date"