Hello community,

here is the log from the commit of package postgresql93-plr for 
openSUSE:Factory checked in at 2017-03-02 19:26:38
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/postgresql93-plr (Old)
 and      /work/SRC/openSUSE:Factory/.postgresql93-plr.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "postgresql93-plr"

Thu Mar  2 19:26:38 2017 rev:4 rq:459055 version:8.3.0.17

Changes:
--------
--- /work/SRC/openSUSE:Factory/postgresql93-plr/postgresql93-plr.changes        
2015-02-25 02:16:57.000000000 +0100
+++ /work/SRC/openSUSE:Factory/.postgresql93-plr.new/postgresql93-plr.changes   
2017-03-02 19:26:40.482152115 +0100
@@ -1,0 +2,23 @@
+Sat Jan 14 17:28:25 UTC 2017 - br...@ioda-net.ch
+
+- Undo the rename of postgresql-plr.changes.in to make happy 
+  factory auto-bot 
+
+-------------------------------------------------------------------
+Wed Jan 11 17:13:28 UTC 2017 - br...@ioda-net.ch
+
+- Update to 08.03.00.17 version - Bring support to postgresql96
+- Packaging
+  + Move source to github and adapt packaging for that
+  + Add plr-US.pdf as documentation, html being not delivered
+    Documentation is build outside of the package to avoid texlive
+  + Redone patch-Makefile-ldflags.patch to current sources
+  + Rename postgresql-plr.changes.in to postgresql-plr.changes to
+    ease osc vc edition, adapt pre_checking.sh to this change. 
+
+Fri Dec  21 07:35:00 UTC 2015 - br...@ioda-net.ch
+-------------------------------------------------------------------
+
+- Fix postun/postin ldconfig call (see comment in sr#345782)
+
+-------------------------------------------------------------------

Old:
----
  plr-8.3.0.16.tar.gz

New:
----
  REL8_3_0_17.tar.gz
  plr-US.pdf

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

Other differences:
------------------
++++++ postgresql93-plr.spec ++++++
--- /var/tmp/diff_new_pack.WForZN/_old  2017-03-02 19:26:41.254042932 +0100
+++ /var/tmp/diff_new_pack.WForZN/_new  2017-03-02 19:26:41.258042367 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package postgresql93-plr
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX 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,7 +17,9 @@
 
 
 %define pgversion 93
+# Thanks upstream :-)
 %define sname plr
+%define sversion REL8_3_0_17
 # Make our path like what postgresql packager decide
 
 %if 0%{?sles_version} == 11
@@ -31,11 +33,11 @@
 License:        GPL-2.0+
 Group:          Productivity/Databases/Servers
 Name:           postgresql%{pgversion}-%{sname}
-Version:        8.3.0.16
+Version:        8.3.0.17
 Release:        1.0
-# Source:       https://github.com/jconway/plr
-Source0:        %{sname}-%{version}.tar.gz
+Source:         https://github.com/postgres-plr/plr/archive/%{sversion}.tar.gz
 Source1:        readme.SUSE
+Source2:        plr-US.pdf
 Patch0:         patch-Makefile-ldflags.patch
 Url:            http://www.joeconway.com/plr/
 BuildRequires:  R-base
@@ -82,10 +84,11 @@
 
 %prep
 # plr.so know where R is located
-%setup -q -n %{sname}
+%setup -q -n %{sname}-%{sversion}
 %patch0 -p1
 # Need to fix spurious rights in doc and root
 find ./ -type f -exec chmod 0644 {} \;
+cp -v %{S:2} doc/
 
 %build
 # Picked from main obs postgresql
@@ -116,13 +119,9 @@
 
 cp -a %{S:1} .
 
-%post 
-#%%{_sbindir}/ldconfig
-/sbin/ldconfig 
-
-%postun 
-#%%{_sbindir}/ldconfig
-/sbin/ldconfig 
+%post -p /sbin/ldconfig 
+
+%postun -p /sbin/ldconfig 
 
 %files
 %defattr(644, root, root, 0755)

++++++ patch-Makefile-ldflags.patch ++++++
--- /var/tmp/diff_new_pack.WForZN/_old  2017-03-02 19:26:41.286038407 +0100
+++ /var/tmp/diff_new_pack.WForZN/_new  2017-03-02 19:26:41.286038407 +0100
@@ -1,21 +1,20 @@
 diff -rup a/Makefile b/Makefile
---- a/Makefile 2015-02-08 20:48:53.000000000 +0100
-+++ b/Makefile 2015-02-09 18:12:39.288724128 +0100
+--- a/Makefile 2016-09-28 15:26:14.000000000 +0200
++++ b/Makefile 2017-01-11 15:30:03.883047804 +0100
 @@ -21,7 +21,7 @@ MODULE_big   = plr
  PG_CPPFLAGS   += $(r_includespec)
  SRCS          += plr.c pg_conversion.c pg_backend_support.c pg_userfuncs.c 
pg_rsupport.c
  OBJS          := $(SRCS:.c=.o)
 -SHLIB_LINK    += -L$(r_libdir1x) -L$(r_libdir2x) -lR
-+SHLIB_LINK    += -L$(r_libdir1x) -L$(r_libdir2x) -lR $(LDFLAGS)
++SHLIB_LINK  += -L$(r_libdir1x) -L$(r_libdir2x) -lR $(LDFLAGS)
  DATA_built    = plr.sql
- DATA          = plr--8.3.0.16.sql plr--unpackaged--8.3.0.16.sql
+ DATA          = plr--8.3.0.17.sql plr--unpackaged--8.3.0.17.sql
  DOCS          = README.plr
-@@ -72,7 +72,7 @@ ifneq (,$(findstring yes, $(shared_libr)
+@@ -72,6 +72,7 @@ ifneq (,$(findstring yes, $(shared_libr)
  override CPPFLAGS := -I"$(srcdir)" -I"$(r_includespec)" $(CPPFLAGS)
  override CPPFLAGS += -DPKGLIBDIR=\"$(pkglibdir)\" -DDLSUFFIX=\"$(DLSUFFIX)\"
  override CPPFLAGS += -DR_HOME_DEFAULT=\"$(rhomedef)\"
--
 +override CPPFLAGS += $(LDFLAGS)
+ 
  else # can't build
  
- all:

++++++ postgresql-plr.changes.in ++++++
--- /var/tmp/diff_new_pack.WForZN/_old  2017-03-02 19:26:41.318033881 +0100
+++ /var/tmp/diff_new_pack.WForZN/_new  2017-03-02 19:26:41.318033881 +0100
@@ -1,4 +1,27 @@
 -------------------------------------------------------------------
+Sat Jan 14 17:28:25 UTC 2017 - br...@ioda-net.ch
+
+- Undo the rename of postgresql-plr.changes.in to make happy 
+  factory auto-bot 
+
+-------------------------------------------------------------------
+Wed Jan 11 17:13:28 UTC 2017 - br...@ioda-net.ch
+
+- Update to 08.03.00.17 version - Bring support to postgresql96
+- Packaging
+  + Move source to github and adapt packaging for that
+  + Add plr-US.pdf as documentation, html being not delivered
+    Documentation is build outside of the package to avoid texlive
+  + Redone patch-Makefile-ldflags.patch to current sources
+  + Rename postgresql-plr.changes.in to postgresql-plr.changes to
+    ease osc vc edition, adapt pre_checking.sh to this change. 
+
+Fri Dec  21 07:35:00 UTC 2015 - br...@ioda-net.ch
+-------------------------------------------------------------------
+
+- Fix postun/postin ldconfig call (see comment in sr#345782)
+
+-------------------------------------------------------------------
 Fri Feb  13 13:13:13 UTC 2015 - br...@ioda-net.ch
 
 - Update to last upstream tar.gz 

++++++ postgresql-plr.spec.in ++++++
--- /var/tmp/diff_new_pack.WForZN/_old  2017-03-02 19:26:41.338031052 +0100
+++ /var/tmp/diff_new_pack.WForZN/_new  2017-03-02 19:26:41.342030486 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package postgresql-plr
 #
-# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 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
@@ -16,7 +16,9 @@
 #
 
 %define pgversion ##
+# Thanks upstream :-)
 %define sname plr
+%define sversion REL8_3_0_17
 # Make our path like what postgresql packager decide
 
 %if 0%{?sles_version} == 11
@@ -30,11 +32,11 @@
 License:        GPL-2.0+
 Group:          Productivity/Databases/Servers
 Name:           postgresql%{pgversion}-%{sname}
-Version:        8.3.0.16
+Version:        8.3.0.17
 Release:        1.0
-# Source:       https://github.com/jconway/plr
-Source0:        %{sname}-%{version}.tar.gz
+Source:         https://github.com/postgres-plr/plr/archive/%{sversion}.tar.gz
 Source1:        readme.SUSE
+Source2:        plr-US.pdf
 Patch0:         patch-Makefile-ldflags.patch
 Url:            http://www.joeconway.com/plr/
 BuildRequires:  R-base
@@ -81,10 +83,11 @@
 
 %prep
 # plr.so know where R is located
-%setup -q -n %{sname}
+%setup -q -n %{sname}-%{sversion}
 %patch0 -p1
 # Need to fix spurious rights in doc and root
 find ./ -type f -exec chmod 0644 {} \;
+cp -v %{S:2} doc/
 
 %build
 # Picked from main obs postgresql
@@ -115,13 +118,9 @@
 
 cp -a %{S:1} .
 
-%post 
-#%%{_sbindir}/ldconfig
-/sbin/ldconfig 
-
-%postun 
-#%%{_sbindir}/ldconfig
-/sbin/ldconfig 
+%post -p /sbin/ldconfig 
+
+%postun -p /sbin/ldconfig 
 
 %files
 %defattr(644, root, root, 0755)

++++++ pre_checkin.sh ++++++
--- /var/tmp/diff_new_pack.WForZN/_old  2017-03-02 19:26:41.358028223 +0100
+++ /var/tmp/diff_new_pack.WForZN/_new  2017-03-02 19:26:41.358028223 +0100
@@ -1,6 +1,6 @@
 #!/bin/sh
 #
-VERS="91 92 93 94"
+VERS="91 92 93 94 95 96"
 #
 spec=postgresql-plr.spec.in
 


Reply via email to