diff -Nru zathura-ps-0.2.3/config.mk zathura-ps-0.2.4/config.mk --- zathura-ps-0.2.3/config.mk 2015-12-22 22:49:30.000000000 +0000 +++ zathura-ps-0.2.4/config.mk 2017-01-11 21:12:17.000000000 +0000 @@ -2,7 +2,7 @@ VERSION_MAJOR = 0 VERSION_MINOR = 2 -VERSION_REV = 3 +VERSION_REV = 4 VERSION = ${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_REV} # minimum required zathura version @@ -37,9 +37,12 @@ INCS = ${GLIB_INC} ${SPECTRE_INC} ${GIRARA_INC} ${ZATHURA_INC} LIBS = ${GLIB_LIB} ${SPECTRE_LIB} ${GIRARA_LIB} -# flags +# compiler flags CFLAGS += -std=c11 -fPIC -pedantic -Wall -Wno-format-zero-length $(INCS) +# linker flags +LDFLAGS += -fPIC + # debug DFLAGS ?= -g diff -Nru zathura-ps-0.2.3/debian/changelog zathura-ps-0.2.4/debian/changelog --- zathura-ps-0.2.3/debian/changelog 2015-12-22 23:04:19.000000000 +0000 +++ zathura-ps-0.2.4/debian/changelog 2017-01-11 22:39:25.000000000 +0000 @@ -1,3 +1,14 @@ +zathura-ps (0.2.4-1) unstable; urgency=medium + + * New upstream release. + - Sort source files to make build reproducible. (Closes: #843109) + * debian/{control,rules,control}: Bump debhelper compat to 10. + * debian/control: + - Bump Standards-Version. + - Update Vcs-Git. + + -- Sebastian Ramacher Wed, 11 Jan 2017 23:39:25 +0100 + zathura-ps (0.2.3-1) unstable; urgency=medium * New upstream release. diff -Nru zathura-ps-0.2.3/debian/compat zathura-ps-0.2.4/debian/compat --- zathura-ps-0.2.3/debian/compat 2015-12-21 19:28:26.000000000 +0000 +++ zathura-ps-0.2.4/debian/compat 2017-01-11 22:38:04.000000000 +0000 @@ -1 +1 @@ -9 +10 diff -Nru zathura-ps-0.2.3/debian/control zathura-ps-0.2.4/debian/control --- zathura-ps-0.2.3/debian/control 2015-12-21 19:40:23.000000000 +0000 +++ zathura-ps-0.2.4/debian/control 2017-01-11 22:37:54.000000000 +0000 @@ -3,16 +3,16 @@ Priority: optional Maintainer: Sebastian Ramacher Build-Depends: - debhelper (>= 9), + debhelper (>= 10), pkg-config, zathura-dev (>= 0.2.5-1~), libgirara-dev, libglib2.0-dev, libcairo2-dev, libspectre-dev -Standards-Version: 3.9.6 +Standards-Version: 3.9.8 Homepage: http://pwmt.org/projects/zathura -Vcs-Git: git://anonscm.debian.org/collab-maint/zathura-ps.git +Vcs-Git: https://anonscm.debian.org/git/collab-maint/zathura-ps.git Vcs-Browser: https://anonscm.debian.org/cgit/collab-maint/zathura-ps.git Package: zathura-ps diff -Nru zathura-ps-0.2.3/debian/rules zathura-ps-0.2.4/debian/rules --- zathura-ps-0.2.3/debian/rules 2015-12-21 19:28:26.000000000 +0000 +++ zathura-ps-0.2.4/debian/rules 2017-01-11 22:38:10.000000000 +0000 @@ -7,7 +7,7 @@ export VERBOSE=1 %: - dh $@ --parallel + dh $@ override_dh_gencontrol: /usr/share/zathura/dh_zathura diff -Nru zathura-ps-0.2.3/LICENSE zathura-ps-0.2.4/LICENSE --- zathura-ps-0.2.3/LICENSE 2015-12-22 22:49:30.000000000 +0000 +++ zathura-ps-0.2.4/LICENSE 2017-01-11 21:12:17.000000000 +0000 @@ -1,4 +1,4 @@ -Copyright (c) 2011-2012 pwmt.org +Copyright (c) 2011-2017 pwmt.org This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of diff -Nru zathura-ps-0.2.3/Makefile zathura-ps-0.2.4/Makefile --- zathura-ps-0.2.3/Makefile 2015-12-22 22:49:30.000000000 +0000 +++ zathura-ps-0.2.4/Makefile 2017-01-11 21:12:17.000000000 +0000 @@ -5,8 +5,8 @@ PROJECT = zathura-ps PLUGIN = ps -SOURCE = $(shell find . -iname "*.c") -HEADER = $(shell find . -iname "*.h") +SOURCE = $(sort $(wildcard *.c)) +HEADER = $(sort $(wildcard *.h)) OBJECTS = ${SOURCE:.c=.o} DOBJECTS = ${SOURCE:.c=.do} diff -Nru zathura-ps-0.2.3/plugin.h zathura-ps-0.2.4/plugin.h --- zathura-ps-0.2.3/plugin.h 2015-12-22 22:49:30.000000000 +0000 +++ zathura-ps-0.2.4/plugin.h 2017-01-11 21:12:17.000000000 +0000 @@ -15,7 +15,7 @@ * Open a PostScript document * * @param document Zathura document - * @return ZATHURA_ERROR_OK if no error occured otherwise see + * @return ZATHURA_ERROR_OK if no error occurred otherwise see * zathura_error_t */ zathura_error_t ps_document_open(zathura_document_t* document); @@ -24,7 +24,7 @@ * Closes and frees the internal document structure * * @param document Zathura document - * @return ZATHURA_ERROR_OK if no error occured otherwise see + * @return ZATHURA_ERROR_OK if no error occurred otherwise see * zathura_error_t */ zathura_error_t ps_document_free(zathura_document_t* document, SpectreDocument* spectre_document); @@ -34,7 +34,7 @@ * * @param document Zathura document * @param path File path - * @return ZATHURA_ERROR_OK when no error occured, otherwise see + * @return ZATHURA_ERROR_OK when no error occurred, otherwise see * zathura_error_t */ zathura_error_t ps_document_save_as(zathura_document_t* document, SpectreDocument* spectre_document, const char* path); @@ -44,7 +44,7 @@ * * @param document Zathura document * @param error Set to an error value (see zathura_error_t) if an - * error occured + * error occurred * @return List of information entries or NULL if an error occurred */ girara_list_t* ps_document_get_information(zathura_document_t* document, SpectreDocument* @@ -54,7 +54,7 @@ * Returns a reference to a page * * @param page Page object - * @return ZATHURA_ERROR_OK if no error occured otherwise see + * @return ZATHURA_ERROR_OK if no error occurred otherwise see * zathura_error_t */ zathura_error_t ps_page_init(zathura_page_t* page, SpectrePage* spectre_page); @@ -65,7 +65,7 @@ * * @param page Page * @param error Set to an error value (see zathura_error_t) if an - * error occured + * error occurred * @return Image buffer or NULL if an error occurred */ zathura_image_buffer_t* ps_page_render(zathura_page_t* page, SpectrePage* spectre_page, zathura_error_t* error); @@ -77,7 +77,7 @@ * @param page Page * @param cairo Cairo object * @param printing Set to true if page should be rendered for printing - * @return ZATHURA_ERROR_OK if no error occured otherwise see + * @return ZATHURA_ERROR_OK if no error occurred otherwise see * zathura_error_t */ zathura_error_t ps_page_render_cairo(zathura_page_t* page, SpectrePage* spectre_page, cairo_t* cairo, bool printing); @@ -87,7 +87,7 @@ * Frees a PostScript page * * @param page Page - * @return ZATHURA_ERROR_OK if no error occured otherwise see + * @return ZATHURA_ERROR_OK if no error occurred otherwise see * zathura_error_t */ zathura_error_t ps_page_clear(zathura_page_t* page, SpectrePage* spectre_page);