Hello community,

here is the log from the commit of package poppler-data for openSUSE:Factory 
checked in at 2014-09-10 17:02:30
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/poppler-data (Old)
 and      /work/SRC/openSUSE:Factory/.poppler-data.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "poppler-data"

Changes:
--------
--- /work/SRC/openSUSE:Factory/poppler-data/poppler-data.changes        
2013-03-13 07:33:25.000000000 +0100
+++ /work/SRC/openSUSE:Factory/.poppler-data.new/poppler-data.changes   
2014-09-10 17:03:10.000000000 +0200
@@ -1,0 +2,10 @@
+Tue Sep  9 16:45:49 UTC 2014 - [email protected]
+
+- Update to version 0.4.7:
+  + Add a pkg-config file.
+- Place pkg-config file in main package, as there is no need for a
+  seperate devel-package.
+- Add pkg-config BuildRequires in order to get a pkgconfig()
+  Provides.
+
+-------------------------------------------------------------------

Old:
----
  poppler-data-0.4.6.tar.gz

New:
----
  poppler-data-0.4.7.tar.gz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ poppler-data.spec ++++++
--- /var/tmp/diff_new_pack.LuLmAt/_old  2014-09-10 17:03:11.000000000 +0200
+++ /var/tmp/diff_new_pack.LuLmAt/_new  2014-09-10 17:03:11.000000000 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package poppler-data
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,13 +17,14 @@
 
 
 Name:           poppler-data
-Version:        0.4.6
+Version:        0.4.7
 Release:        0
 Url:            http://poppler.freedesktop.org/
 Summary:        Encoding Files for use with libpoppler
 License:        BSD-3-Clause and GPL-2.0
 Group:          System/Libraries
 Source:         http://poppler.freedesktop.org/%{name}-%{version}.tar.gz
+BuildRequires:  pkg-config
 BuildArch:      noarch
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
 
@@ -46,5 +47,6 @@
 %defattr (-, root, root)
 %doc COPYING COPYING.adobe COPYING.gpl2 README
 %{_datadir}/poppler
+%{_datadir}/pkgconfig/poppler-data.pc
 
 %changelog

++++++ poppler-data-0.4.6.tar.gz -> poppler-data-0.4.7.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/poppler-data-0.4.6/Makefile 
new/poppler-data-0.4.7/Makefile
--- old/poppler-data-0.4.6/Makefile     2012-10-16 23:25:52.000000000 +0200
+++ new/poppler-data-0.4.7/Makefile     2014-08-12 20:46:01.000000000 +0200
@@ -1,26 +1,28 @@
 PACKAGE    = poppler-data
-VERSION    = 0.4.6
+VERSION    = 0.4.7
 distdir    = $(PACKAGE)-$(VERSION)
 prefix     = /usr/local
 datadir    = $(prefix)/share
 pkgdatadir = $(datadir)/poppler
 
-all :
+all : poppler-data.pc
 
-install :
+install : all
        install -d -m 0755 $(DESTDIR)$(pkgdatadir)/cidToUnicode
        install -m 0644 $(cid-to-unicode-files) 
$(DESTDIR)$(pkgdatadir)/cidToUnicode
        install -d -m 0755 $(DESTDIR)$(pkgdatadir)/nameToUnicode
        install -m 0644 $(name-to-unicode-files) 
$(DESTDIR)$(pkgdatadir)/nameToUnicode
        install -d -m 0755 $(DESTDIR)$(pkgdatadir)/unicodeMap
        install -m 0644 $(unicode-map-files) $(DESTDIR)$(pkgdatadir)/unicodeMap
+       install -d -m 0755 $(DESTDIR)$(datadir)/pkgconfig
+       install -m 0644 poppler-data.pc $(DESTDIR)$(datadir)/pkgconfig
 
        for f in $(cmap-files); do                                          \
                install -d -m 0755 $(DESTDIR)$(pkgdatadir)/`dirname $$f`; \
                install -m 0644 $$f $(DESTDIR)$(pkgdatadir)/$$f;            \
        done
 
-distdir : $(DISTFILES)
+distdir : $(DISTFILES) all
        rm -rf $(distdir)
        mkdir $(distdir)
        for f in $(DISTFILES); do                       \
@@ -35,6 +37,15 @@
 clean :
        rm -rf $(distdir)
 
+# poppler-data.pc is not a real PHONY target, but this trick
+# allows to force-generate it when needed.
+.PHONY: poppler-data.pc
+poppler-data.pc : poppler-data.pc.in
+       sed -e 's!@prefix@!$(prefix)!g' \
+               -e 's!@pkgdatadir@!$(pkgdatadir)!g' \
+               -e 's/@VERSION@/$(VERSION)/g' \
+               poppler-data.pc.in > poppler-data.pc
+
 unicode-map-files =                            \
        unicodeMap/Big5                         \
        unicodeMap/Big5ascii                    \
@@ -292,6 +303,8 @@
        cidToUnicode/Adobe-Korea1
 
 DISTFILES =                                    \
+       poppler-data.pc.in                      \
+       poppler-data.pc                         \
        Makefile                                \
        README                                  \
        COPYING                                 \
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/poppler-data-0.4.6/poppler-data.pc 
new/poppler-data-0.4.7/poppler-data.pc
--- old/poppler-data-0.4.6/poppler-data.pc      1970-01-01 01:00:00.000000000 
+0100
+++ new/poppler-data-0.4.7/poppler-data.pc      2014-08-12 20:46:01.000000000 
+0200
@@ -0,0 +1,8 @@
+poppler_datadir=/usr/local/share/poppler
+
+Name: poppler-data
+Description: Encoding files for use with poppler
+Version: 0.4.7
+
+Cflags: -DPOPPLER_DATADIR=/usr/local/share/poppler
+
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/poppler-data-0.4.6/poppler-data.pc.in 
new/poppler-data-0.4.7/poppler-data.pc.in
--- old/poppler-data-0.4.6/poppler-data.pc.in   1970-01-01 01:00:00.000000000 
+0100
+++ new/poppler-data-0.4.7/poppler-data.pc.in   2014-08-12 20:46:01.000000000 
+0200
@@ -0,0 +1,8 @@
+poppler_datadir=@pkgdatadir@
+
+Name: poppler-data
+Description: Encoding files for use with poppler
+Version: @VERSION@
+
+Cflags: -DPOPPLER_DATADIR=@pkgdatadir@
+

-- 
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to