Hello community, here is the log from the commit of package zathura-plugin-ps for openSUSE:Factory checked in at 2017-05-29 22:19:36 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/zathura-plugin-ps (Old) and /work/SRC/openSUSE:Factory/.zathura-plugin-ps.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "zathura-plugin-ps" Mon May 29 22:19:36 2017 rev:3 rq:498678 version:0.2.4 Changes: -------- --- /work/SRC/openSUSE:Factory/zathura-plugin-ps/zathura-plugin-ps.changes 2016-02-24 14:26:41.000000000 +0100 +++ /work/SRC/openSUSE:Factory/.zathura-plugin-ps.new/zathura-plugin-ps.changes 2017-05-29 22:19:40.667751761 +0200 @@ -1,0 +2,8 @@ +Sat May 27 04:37:48 UTC 2017 - [email protected] + +- update to 0.2.4 + - Link with -fPIC + - Update Makefile + + +------------------------------------------------------------------- Old: ---- zathura-ps-0.2.3.tar.gz New: ---- zathura-ps-0.2.4.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ zathura-plugin-ps.spec ++++++ --- /var/tmp/diff_new_pack.r9ZqXW/_old 2017-05-29 22:19:41.151683428 +0200 +++ /var/tmp/diff_new_pack.r9ZqXW/_new 2017-05-29 22:19:41.151683428 +0200 @@ -18,13 +18,13 @@ %define realname zathura-ps Name: zathura-plugin-ps -Version: 0.2.3 +Version: 0.2.4 Release: 0 Summary: PS support for zathura via libspectre License: Zlib Group: Productivity/Office/Other -Url: http://pwmt.org/projects/zathura/plugins/zathura-ps/ -Source: http://pwmt.org/projects/zathura/plugins/download/%{realname}-%{version}.tar.gz +Url: https://pwmt.org/projects/%{realname}/ +Source: https://pwmt.org/projects/%{realname}/download/%{realname}-%{version}.tar.gz BuildRequires: pkgconfig(girara-gtk3) BuildRequires: pkgconfig(libspectre) BuildRequires: pkgconfig(zathura) ++++++ zathura-ps-0.2.3.tar.gz -> zathura-ps-0.2.4.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/zathura-ps-0.2.3/LICENSE new/zathura-ps-0.2.4/LICENSE --- old/zathura-ps-0.2.3/LICENSE 2015-12-22 23:49:30.000000000 +0100 +++ new/zathura-ps-0.2.4/LICENSE 2017-01-11 22:12:17.000000000 +0100 @@ -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 -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/zathura-ps-0.2.3/Makefile new/zathura-ps-0.2.4/Makefile --- old/zathura-ps-0.2.3/Makefile 2015-12-22 23:49:30.000000000 +0100 +++ new/zathura-ps-0.2.4/Makefile 2017-01-11 22:12:17.000000000 +0100 @@ -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 -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/zathura-ps-0.2.3/config.mk new/zathura-ps-0.2.4/config.mk --- old/zathura-ps-0.2.3/config.mk 2015-12-22 23:49:30.000000000 +0100 +++ new/zathura-ps-0.2.4/config.mk 2017-01-11 22:12:17.000000000 +0100 @@ -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 -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/zathura-ps-0.2.3/plugin.h new/zathura-ps-0.2.4/plugin.h --- old/zathura-ps-0.2.3/plugin.h 2015-12-22 23:49:30.000000000 +0100 +++ new/zathura-ps-0.2.4/plugin.h 2017-01-11 22:12:17.000000000 +0100 @@ -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);
