Accepting request 369540 from devel:languages:python

1

OBS-URL: https://build.opensuse.org/request/show/369540
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-psycopg2?expand=0&rev=20
This commit is contained in:
Dominique Leuenberger 2016-03-16 09:34:59 +00:00 committed by Git OBS Bridge
commit 5e0ea32eb9
2 changed files with 10 additions and 1 deletions

View File

@ -1,3 +1,9 @@
-------------------------------------------------------------------
Wed Mar 9 10:29:20 UTC 2016 - bwiedemann@suse.com
- use the year from source gzip header instead of current one
to make reproducible rpms
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Feb 24 14:52:53 UTC 2015 - tbechtold@suse.com Tue Feb 24 14:52:53 UTC 2015 - tbechtold@suse.com

View File

@ -1,7 +1,7 @@
# #
# spec file for package python-psycopg2 # spec file for package python-psycopg2
# #
# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany. # Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
# #
# All modifications and additions to the file contributed by third parties # All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed # remain the property of their copyright owners, unless otherwise agreed
@ -55,6 +55,9 @@ Documentation and example files for the psycopg python PostgreSQL database adapt
%prep %prep
%setup -q -n psycopg2-%{version} %setup -q -n psycopg2-%{version}
# use the year from source gzip header instead of current one to make reproducible rpms
year=$(perl -e 'sysread(STDIN, $h, 8); print (1900+(gmtime(unpack("l",substr($h,4))))[5])' < %{S:0})
sed -i "s/^year =.*/year=$year/" doc/src/conf.py
%build %build
CFLAGS="%{optflags} -fno-strict-aliasing" python setup.py build CFLAGS="%{optflags} -fno-strict-aliasing" python setup.py build