r51948 - in /attic/pygtksourceview/debian: changelog control control.in patches/ patches/reproducible-build.patch patches/series rules

pochu at users.alioth.debian.org pochu at users.alioth.debian.org
Wed Jan 25 22:18:30 UTC 2017


Author: pochu
Date: Wed Jan 25 22:18:29 2017
New Revision: 51948

URL: http://svn.debian.org/wsvn/pkg-gnome/?sc=1&rev=51948
Log:
Add patch from Chris Lamb to make build reproducible. Closes: #835807.

Added:
    attic/pygtksourceview/debian/patches/
    attic/pygtksourceview/debian/patches/reproducible-build.patch
    attic/pygtksourceview/debian/patches/series
Modified:
    attic/pygtksourceview/debian/changelog
    attic/pygtksourceview/debian/control
    attic/pygtksourceview/debian/control.in
    attic/pygtksourceview/debian/rules

Modified: attic/pygtksourceview/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-gnome/attic/pygtksourceview/debian/changelog?rev=51948&op=diff
==============================================================================
--- attic/pygtksourceview/debian/changelog	[utf-8] (original)
+++ attic/pygtksourceview/debian/changelog	[utf-8] Wed Jan 25 22:18:29 2017
@@ -1,6 +1,10 @@
 pygtksourceview (2.10.1-3) UNRELEASED; urgency=low
 
+  [ Josselin Mouette ]
   * Replace python-gobject by python-gobject-2.
+
+  [ Emilio Pozuelo Monfort ]
+  * Add patch from Chris Lamb to make build reproducible. Closes: #835807.
 
  -- Josselin Mouette <joss at debian.org>  Thu, 24 Nov 2011 20:50:28 +0100
 

Modified: attic/pygtksourceview/debian/control
URL: http://svn.debian.org/wsvn/pkg-gnome/attic/pygtksourceview/debian/control?rev=51948&op=diff
==============================================================================
--- attic/pygtksourceview/debian/control	[utf-8] (original)
+++ attic/pygtksourceview/debian/control	[utf-8] Wed Jan 25 22:18:29 2017
@@ -2,14 +2,14 @@
 # 
 # Modifications should be made to debian/control.in instead.
 # This file is regenerated automatically in the clean target.
-
 Source: pygtksourceview
 Section: python
 Priority: optional
 Maintainer: Josselin Mouette <joss at debian.org>
-Uploaders: Debian GNOME Maintainers <pkg-gnome-maintainers at lists.alioth.debian.org>, Emilio Pozuelo Monfort <pochu at debian.org>, Sebastian Dröge <slomo at debian.org>
+Uploaders: Debian GNOME Maintainers <pkg-gnome-maintainers at lists.alioth.debian.org>, Emilio Pozuelo Monfort <pochu at debian.org>, Martin Pitt <mpitt at debian.org>, Sebastian Dröge <slomo at debian.org>
 Build-Depends: debhelper (>= 8),
                cdbs (>= 0.4.73),
+               dh-autoreconf,
                gnome-pkg-tools (>= 0.10),
                python-all-dev (>= 2.6.6-3~),
                python-gobject-2-dev (>= 2.15.2),

Modified: attic/pygtksourceview/debian/control.in
URL: http://svn.debian.org/wsvn/pkg-gnome/attic/pygtksourceview/debian/control.in?rev=51948&op=diff
==============================================================================
--- attic/pygtksourceview/debian/control.in	[utf-8] (original)
+++ attic/pygtksourceview/debian/control.in	[utf-8] Wed Jan 25 22:18:29 2017
@@ -5,6 +5,7 @@
 Uploaders: @GNOME_TEAM@
 Build-Depends: debhelper (>= 8),
                cdbs (>= 0.4.73),
+               dh-autoreconf,
                gnome-pkg-tools (>= 0.10),
                python-all-dev (>= 2.6.6-3~),
                python-gobject-2-dev (>= 2.15.2),

Added: attic/pygtksourceview/debian/patches/reproducible-build.patch
URL: http://svn.debian.org/wsvn/pkg-gnome/attic/pygtksourceview/debian/patches/reproducible-build.patch?rev=51948&op=file
==============================================================================
--- attic/pygtksourceview/debian/patches/reproducible-build.patch	(added)
+++ attic/pygtksourceview/debian/patches/reproducible-build.patch	[utf-8] Wed Jan 25 22:18:29 2017
@@ -0,0 +1,15 @@
+Description: Make the build reproducible
+Author: Chris Lamb <lamby at debian.org>
+Last-Update: 2016-08-28
+
+--- pygtksourceview-2.10.1.orig/docs/Makefile.am
++++ pygtksourceview-2.10.1/docs/Makefile.am
+@@ -66,7 +66,7 @@ $(HTML_DATA): build_stamp
+ if ENABLE_DOCS
+ 
+ reference/builddate.xml: $(REFERENCE_DEPS)
+-	$(PYTHON) -c 'import datetime; print datetime.date.today()' > $@
++	$(PYTHON) -c 'import os, time, datetime; print datetime.datetime.utcfromtimestamp(int(os.environ.get("SOURCE_DATE_EPOCH", time.time()))).date()' > $@
+ 
+ build_stamp: $(REFERENCE_DEPS)reference/builddate.xml
+ 	xsltproc --nonet --xinclude -o $(BUILDDIR)/html/ \

Added: attic/pygtksourceview/debian/patches/series
URL: http://svn.debian.org/wsvn/pkg-gnome/attic/pygtksourceview/debian/patches/series?rev=51948&op=file
==============================================================================
--- attic/pygtksourceview/debian/patches/series	(added)
+++ attic/pygtksourceview/debian/patches/series	[utf-8] Wed Jan 25 22:18:29 2017
@@ -0,0 +1 @@
+reproducible-build.patch

Modified: attic/pygtksourceview/debian/rules
URL: http://svn.debian.org/wsvn/pkg-gnome/attic/pygtksourceview/debian/rules?rev=51948&op=diff
==============================================================================
--- attic/pygtksourceview/debian/rules	[utf-8] (original)
+++ attic/pygtksourceview/debian/rules	[utf-8] Wed Jan 25 22:18:29 2017
@@ -5,6 +5,7 @@
 include /usr/share/cdbs/1/rules/debhelper.mk
 include /usr/share/cdbs/1/class/python-autotools.mk
 include /usr/share/cdbs/1/class/gnome.mk
+include /usr/share/cdbs/1/rules/autoreconf.mk
 include /usr/share/gnome-pkg-tools/1/rules/uploaders.mk
 -include /usr/share/gnome-pkg-tools/1/rules/gnome-get-source.mk
 




More information about the pkg-gnome-commits mailing list