[packages/ejabberd] Fix permissions on the eimp binary

2018-08-10 Thread jajcus
commit 105db1e0c00542f22c7cc4d2edd13e697a3a19bf
Author: Jacek Konieczny 
Date:   Fri Aug 10 10:34:36 2018 +0200

Fix permissions on the eimp binary

When it is not executable then ejabberd may fail to start.

Release: 2

 ejabberd.spec | 9 +++--
 1 file changed, 7 insertions(+), 2 deletions(-)
---
diff --git a/ejabberd.spec b/ejabberd.spec
index 1d6d60e..f9dbd45 100644
--- a/ejabberd.spec
+++ b/ejabberd.spec
@@ -9,7 +9,7 @@ Summary:Fault-tolerant distributed Jabber/XMPP server
 Summary(pl.UTF-8): Odporny na awarie rozproszony serwer Jabbera/XMPP
 Name:  ejabberd
 Version:   18.04
-Release:   1
+Release:   2
 License:   GPL
 Group: Applications/Communications
 Source0:   
http://www.process-one.net/downloads/ejabberd/%{version}/%{name}-%{version}.tgz
@@ -330,7 +330,12 @@ fi
 %{_libdir}/ejabberd-%{version}
 %{_libdir}/base64url-*
 %{_libdir}/cache_tab-*
-%{_libdir}/eimp-*
+%dir %{_libdir}/eimp-*
+%dir %{_libdir}/eimp-*/priv
+%dir %{_libdir}/eimp-*/priv/bin
+%attr(755,root,root) %{_libdir}/eimp-*/priv/bin/eimp
+%{_libdir}/eimp-*/ebin
+%{_libdir}/eimp-*/LICENSE.txt
 %{_libdir}/elixir-*
 %{_libdir}/ezlib-*
 %{_libdir}/fast_tls-*


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/ejabberd.git/commitdiff/105db1e0c00542f22c7cc4d2edd13e697a3a19bf

___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


[projects/geninitrd] ramdisk_size warning makes no sense for initramfs.

2018-08-10 Thread arekm
commit 256e0bedb591a982ce87fb2ca1b38e1353d5b33a
Author: Arkadiusz Miśkiewicz 
Date:   Fri Aug 10 10:40:59 2018 +0200

ramdisk_size warning makes no sense for initramfs.

 geninitrd | 16 +---
 1 file changed, 9 insertions(+), 7 deletions(-)
---
diff --git a/geninitrd b/geninitrd
index c75c22b..025674d 100755
--- a/geninitrd
+++ b/geninitrd
@@ -1759,14 +1759,16 @@ case "$INITRDFS" in
die "Filesystem $INITRDFS not supported by $PROGRAM"
 esac
 
-CONFIG_BLK_DEV_RAM_SIZE=$(ikconfig | awk -F= '/^CONFIG_BLK_DEV_RAM_SIZE/{print 
$2}')
-if [ -z "$CONFIG_BLK_DEV_RAM_SIZE" ]; then
-   CONFIG_BLK_DEV_RAM_SIZE=4096
-   warn "No CONFIG_BLK_DEV_RAM_SIZE detected, fallback to 
$CONFIG_BLK_DEV_RAM_SIZE"
-fi
+if [ "$INITRDFS" != "initramfs" ]; then
+   CONFIG_BLK_DEV_RAM_SIZE=$(ikconfig | awk -F= 
'/^CONFIG_BLK_DEV_RAM_SIZE/{print $2}')
+   if [ -z "$CONFIG_BLK_DEV_RAM_SIZE" ]; then
+   CONFIG_BLK_DEV_RAM_SIZE=4096
+   warn "No CONFIG_BLK_DEV_RAM_SIZE detected, fallback to 
$CONFIG_BLK_DEV_RAM_SIZE"
+   fi
 
-if [ "$IMAGESIZE" -gt $CONFIG_BLK_DEV_RAM_SIZE ]; then
-   warn "Your image size is larger than $CONFIG_BLK_DEV_RAM_SIZE, Be sure 
to boot kernel with ramdisk_size=$IMAGESIZE!"
+   if [ "$IMAGESIZE" -gt $CONFIG_BLK_DEV_RAM_SIZE ]; then
+   warn "Your image size is larger than $CONFIG_BLK_DEV_RAM_SIZE, 
Be sure to boot kernel with ramdisk_size=$IMAGESIZE!"
+   fi
 fi
 
 if ! is_no "$COMPRESS"; then


 gitweb:

http://git.pld-linux.org/gitweb.cgi/projects/geninitrd.git/commitdiff/256e0bedb591a982ce87fb2ca1b38e1353d5b33a

___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


[packages/geninitrd] - rel 8; silence ramdisk_size warning for initramfs

2018-08-10 Thread arekm
commit ce25c101295b15018a154730a166c52ddccbe52c
Author: Arkadiusz Miśkiewicz 
Date:   Fri Aug 10 10:47:48 2018 +0200

- rel 8; silence ramdisk_size warning for initramfs

 geninitrd-git.patch | 34 ++
 geninitrd.spec  |  2 +-
 2 files changed, 35 insertions(+), 1 deletion(-)
---
diff --git a/geninitrd.spec b/geninitrd.spec
index 5305cd3..2bfddc5 100644
--- a/geninitrd.spec
+++ b/geninitrd.spec
@@ -7,7 +7,7 @@ Summary:Creates an initial ramdisk image for preloading 
modules
 Summary(pl.UTF-8): Narzędzie do tworzenia inicjalnego ramdysku używanego 
przy starcie systemu
 Name:  geninitrd
 Version:   12757
-Release:   8
+Release:   9
 License:   GPL
 Group: Applications/System
 Source0:   %{name}-%{version}.tar.gz
diff --git a/geninitrd-git.patch b/geninitrd-git.patch
index a6ac79d..26658e8 100644
--- a/geninitrd-git.patch
+++ b/geninitrd-git.patch
@@ -95,3 +95,37 @@ index 0a18298..c75c22b 100755
crc-t10dif)
find_depmod "-crct10dif-pclmul"
find_depmod "-crct10dif"
+commit 256e0bedb591a982ce87fb2ca1b38e1353d5b33a
+Author: Arkadiusz Miśkiewicz 
+Date:   Fri Aug 10 10:40:59 2018 +0200
+
+ramdisk_size warning makes no sense for initramfs.
+
+diff --git a/geninitrd b/geninitrd
+index c75c22b..025674d 100755
+--- a/geninitrd
 b/geninitrd
+@@ -1759,14 +1759,16 @@ case "$INITRDFS" in
+   die "Filesystem $INITRDFS not supported by $PROGRAM"
+ esac
+ 
+-CONFIG_BLK_DEV_RAM_SIZE=$(ikconfig | awk -F= 
'/^CONFIG_BLK_DEV_RAM_SIZE/{print $2}')
+-if [ -z "$CONFIG_BLK_DEV_RAM_SIZE" ]; then
+-  CONFIG_BLK_DEV_RAM_SIZE=4096
+-  warn "No CONFIG_BLK_DEV_RAM_SIZE detected, fallback to 
$CONFIG_BLK_DEV_RAM_SIZE"
+-fi
++if [ "$INITRDFS" != "initramfs" ]; then
++  CONFIG_BLK_DEV_RAM_SIZE=$(ikconfig | awk -F= 
'/^CONFIG_BLK_DEV_RAM_SIZE/{print $2}')
++  if [ -z "$CONFIG_BLK_DEV_RAM_SIZE" ]; then
++  CONFIG_BLK_DEV_RAM_SIZE=4096
++  warn "No CONFIG_BLK_DEV_RAM_SIZE detected, fallback to 
$CONFIG_BLK_DEV_RAM_SIZE"
++  fi
+ 
+-if [ "$IMAGESIZE" -gt $CONFIG_BLK_DEV_RAM_SIZE ]; then
+-  warn "Your image size is larger than $CONFIG_BLK_DEV_RAM_SIZE, Be sure 
to boot kernel with ramdisk_size=$IMAGESIZE!"
++  if [ "$IMAGESIZE" -gt $CONFIG_BLK_DEV_RAM_SIZE ]; then
++  warn "Your image size is larger than $CONFIG_BLK_DEV_RAM_SIZE, 
Be sure to boot kernel with ramdisk_size=$IMAGESIZE!"
++  fi
+ fi
+ 
+ if ! is_no "$COMPRESS"; then


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/geninitrd.git/commitdiff/ce25c101295b15018a154730a166c52ddccbe52c

___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


DISTFILES: kernel: linux-4.14.tar.xz patch-4.14.62.xz

2018-08-10 Thread arekm
Request by: arekm


Files fetched: 1

ALREADY GOT: https://www.kernel.org/pub/linux/kernel/v4.x/linux-4.14.tar.xz
bacdb9ffdcd922aa069a5e1520160e24  linux-4.14.tar.xz
STORED: https://www.kernel.org/pub/linux/kernel/v4.x/patch-4.14.62.xz
725687486363ba8f6b21e7c56e8066ea  patch-4.14.62.xz
Size: 1567892 bytes


-- 
Virtually Yours: distfiles.
___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


[packages/kernel/LINUX_4_14] - up to 4.14.62

2018-08-10 Thread arekm
commit 1d3f2be5873ecb82451f4d736e1b9c02b922189e
Author: Arkadiusz Miśkiewicz 
Date:   Fri Aug 10 11:09:48 2018 +0200

- up to 4.14.62

 kernel.spec | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/kernel.spec b/kernel.spec
index 9997f194..fcadf841 100644
--- a/kernel.spec
+++ b/kernel.spec
@@ -70,7 +70,7 @@
 
 %definerel 1
 %definebasever 4.14
-%definepostver .60
+%definepostver .62
 
 # define this to '-%{basever}' for longterm branch
 %defineversuffix   -%{basever}
@@ -122,7 +122,7 @@ Source0:
https://www.kernel.org/pub/linux/kernel/v4.x/linux-%{basever}.tar.xz
 # Source0-md5: bacdb9ffdcd922aa069a5e1520160e24
 %if "%{postver}" != ".0"
 Patch0:
https://www.kernel.org/pub/linux/kernel/v4.x/patch-%{version}.xz
-# Patch0-md5:  b563a7360c2ffd1ee26202a0793fd8ec
+# Patch0-md5:  725687486363ba8f6b21e7c56e8066ea
 %endif
 Source1:   kernel.sysconfig
 


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/kernel.git/commitdiff/1d3f2be5873ecb82451f4d736e1b9c02b922189e

___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


[packages/lvm2] - rel 4; obsolete lvm2-initrd (otherwise broken lvm2-initrd stays on people systems)

2018-08-10 Thread arekm
commit 8a4b19398bf7a8e5ff747a8bddeb627312534727
Author: Arkadiusz Miśkiewicz 
Date:   Fri Aug 10 12:33:34 2018 +0200

- rel 4; obsolete lvm2-initrd (otherwise broken lvm2-initrd stays on people 
systems)

 lvm2.spec | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)
---
diff --git a/lvm2.spec b/lvm2.spec
index 082ee8a..ba59d8b 100644
--- a/lvm2.spec
+++ b/lvm2.spec
@@ -59,7 +59,7 @@ Summary:  The new version of Logical Volume Manager for 
Linux
 Summary(pl.UTF-8): Nowa wersja Logical Volume Managera dla Linuksa
 Name:  lvm2
 Version:   2.02.173
-Release:   3
+Release:   4
 License:   GPL v2 and LGPL v2.1
 Group: Applications/System
 Source0:   ftp://sources.redhat.com/pub/lvm2/LVM2.%{version}.tgz
@@ -110,6 +110,8 @@ BuildConflicts: device-mapper-dietlibc
 %endif
 %{?with_glibc:BuildRequires:   glibc-static}
 %{?with_uClibc:BuildRequires:  uClibc-static >= 2:0.9.29}
+%else
+Obsoletes: lvm2-initrd
 %endif
 %if %{with cluster}
 BuildRequires: corosync-devel


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/lvm2.git/commitdiff/8a4b19398bf7a8e5ff747a8bddeb627312534727

___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


[packages/dovecot] - rel 2; fix crypt segfaults on glibc 2.28

2018-08-10 Thread arekm
commit 873b8c347160fa707617919cd75ea2f4c5546377
Author: Arkadiusz Miśkiewicz 
Date:   Fri Aug 10 12:35:23 2018 +0200

- rel 2; fix crypt segfaults on glibc 2.28

 crypt.patch  | 10 ++
 dovecot.spec |  4 +++-
 2 files changed, 13 insertions(+), 1 deletion(-)
---
diff --git a/dovecot.spec b/dovecot.spec
index 79e1500..b8d3969 100644
--- a/dovecot.spec
+++ b/dovecot.spec
@@ -12,7 +12,7 @@ Summary:  IMAP and POP3 server written with security 
primarily in mind
 Summary(pl.UTF-8): Serwer IMAP i POP3 pisany głównie z myślą o 
bezpieczeństwie
 Name:  dovecot
 Version:   2.3.2.1
-Release:   1
+Release:   2
 Epoch: 1
 License:   MIT (libraries), LGPL v2.1 (the rest)
 Group: Networking/Daemons
@@ -24,6 +24,7 @@ Source3:  %{name}.sysconfig
 Source4:   %{name}.tmpfiles
 Patch0:%{name}-config.patch
 Patch1:%{name}-rpath.patch
+Patch2:crypt.patch
 URL:   http://dovecot.org/
 BuildRequires: autoconf
 BuildRequires: automake
@@ -160,6 +161,7 @@ Pakiet programistyczny do tworzenia wtyczek dla Dovecota.
 %setup -q
 %patch0 -p1
 %patch1 -p1
+%patch2 -p1
 
 %{__sed} -i 's,/usr/lib/dovecot,%{_libdir}/dovecot,g' 
doc/example-config/*.conf doc/example-config/conf.d/*.conf
 
diff --git a/crypt.patch b/crypt.patch
new file mode 100644
index 000..3e17cb9
--- /dev/null
+++ b/crypt.patch
@@ -0,0 +1,10 @@
+--- dovecot-2.3.2.1/src/auth/mycrypt.c~2018-04-30 15:52:04.0 
+0200
 dovecot-2.3.2.1/src/auth/mycrypt.c 2018-08-10 12:30:04.828556600 +0200
+@@ -14,6 +14,7 @@
+ #  define _XPG6 /* Some Solaris versions require this, some break with this */
+ #endif
+ #include 
++#include 
+ 
+ #include "mycrypt.h"
+ 


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/dovecot.git/commitdiff/873b8c347160fa707617919cd75ea2f4c5546377

___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


[packages/hatari] - Up to 2.1.0. Builds on current TH.

2018-08-10 Thread lmasko
commit ebdc20bd0883123adc5b570668ddf441a1349c3e
Author: Łukasz Maśko 
Date:   Fri Aug 10 15:49:14 2018 +0200

- Up to 2.1.0. Builds on current TH.

 hatari-python_init.patch | 22 --
 hatari.spec  |  7 +--
 2 files changed, 5 insertions(+), 24 deletions(-)
---
diff --git a/hatari.spec b/hatari.spec
index 64c6d07..7307351 100644
--- a/hatari.spec
+++ b/hatari.spec
@@ -6,12 +6,12 @@
 Summary:   hatari - an Atari ST and STE emulator for Linux
 Summary(pl.UTF-8): hatari - emulator Atari ST i STE dla Linuksa
 Name:  hatari
-Version:   1.9.0
+Version:   2.1.0
 Release:   1
 License:   GPL v2+
 Group: Applications/Emulators
 Source0:   
http://download.tuxfamily.org/hatari/%{version}/%{name}-%{version}.tar.bz2
-# Source0-md5: 24e54b19958943dbe5ac1b1f6f32b284
+# Source0-md5: f9c4b73695b28e7cf715373e88e4f683
 Patch0:%{name}-useless_files.patch
 Patch1:%{name}-python_init.patch
 Patch2:%{name}-desktop.patch
@@ -109,4 +109,7 @@ rm -rf $RPM_BUILD_ROOT
 %{_desktopdir}/hatari.desktop
 %{_iconsdir}/hicolor/*/apps/hatari.*
 %{_iconsdir}/hicolor/*/mimetypes/application-x-st-disk-image.*
+%{_iconsdir}/hicolor/*/mimetypes/application-vnd.fastcopy-disk-image.*
+%{_iconsdir}/hicolor/*/mimetypes/application-vnd.msa-disk-image.*
+%{_iconsdir}/hicolor/*/mimetypes/application-x-stx-disk-image.*
 %{_datadir}/mime/packages/hatari.xml
diff --git a/hatari-python_init.patch b/hatari-python_init.patch
index 634af01..d30da9a 100644
--- a/hatari-python_init.patch
+++ b/hatari-python_init.patch
@@ -9,25 +9,3 @@
# Assume package has been relocated, try relative data directory:
path=${0%/*}/../share/hatari/hatariui
  fi
-@@ -20,18 +20,18 @@
- export HATARI_SYSTEM_CONFDIR=$conf
- 
- # example setup for Hatari UI
--$path/$name.py --right "about,|,run,pause,forward,|,reset,|,quit" --embed $*
-+python $path/$name.pyc --right "about,|,run,pause,forward,|,reset,|,quit" 
--embed $*
- exit 0
- 
- # test setup without embedding, duplicate toggles
--$path/$name.py --top "about,run,pause,quit" \
-+python $path/$name.pyc --top "about,run,pause,quit" \
- --panel "Testpanel,pause,>,close" \
- --bottom "sound,|,forward,pause,|,Testpanel" \
- $*
- exit 0
- 
- # test setup with embedding and all available controls
--$path/$name.py --embed \
-+python $path/$name.pyc --embed \
- --top "about,|,run,pause,|,reset,debug,|,quit" \
- --left "run,pause,reset,machine,about" \
- --panel 
"Keys,F1=59,F2=60,F3=61,F4=62,F5=63,F6=64,F7=65,F8=66,F9=67,F10=68,>,Macro=Test,Undo=97,Help=98,Enter=114,>,close"
 \


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/hatari.git/commitdiff/ebdc20bd0883123adc5b570668ddf441a1349c3e

___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


DISTFILES: hatari: hatari-2.1.0.tar.bz2

2018-08-10 Thread lmasko
Request by: lmasko


Files fetched: 1

STORED: http://download.tuxfamily.org/hatari/2.1.0/hatari-2.1.0.tar.bz2
f9c4b73695b28e7cf715373e88e4f683  hatari-2.1.0.tar.bz2
Size: 4072778 bytes


-- 
Virtually Yours: distfiles.
___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


DISTFILES: scons: scons-3.0.1.tar.gz

2018-08-10 Thread adwol
Request by: adwol


Files fetched: 1

STORED: http://downloads.sourceforge.net/scons/scons-3.0.1.tar.gz
b6a292e251b34b82c203b56cfa3968b3  scons-3.0.1.tar.gz
Size: 634815 bytes


-- 
Virtually Yours: distfiles.
___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


[packages/scons] - up to 3.0.1

2018-08-10 Thread adwol
commit bb96ff5463581d722f9004e634b6d695bcafacb0
Author: Adam Osuchowski 
Date:   Fri Aug 10 21:33:39 2018 +0200

- up to 3.0.1

 scons.spec | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/scons.spec b/scons.spec
index b227258..2ed2560 100644
--- a/scons.spec
+++ b/scons.spec
@@ -1,12 +1,12 @@
 Summary:   An Open Source software construction tool
 Summary(pl.UTF-8): OpenSourcowe narzędzie do tworzenia oprogramowania
 Name:  scons
-Version:   2.3.5
+Version:   3.0.1
 Release:   1
 License:   MIT
 Group: Development/Tools
 Source0:   http://downloads.sourceforge.net/scons/%{name}-%{version}.tar.gz
-# Source0-md5: a8988c7ef11133bb3b6ccf0af67ce010
+# Source0-md5: b6a292e251b34b82c203b56cfa3968b3
 URL:   http://www.scons.org/
 BuildRequires: python-devel >= 1:2.4
 BuildRequires: rpm-pythonprov


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/scons.git/commitdiff/bb96ff5463581d722f9004e634b6d695bcafacb0

___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


[packages/binutils] - rel 3; replace fix with official upstream one

2018-08-10 Thread arekm
commit 57f170acc9bf96ed433a7773f859db165d9ce3f0
Author: Arkadiusz Miśkiewicz 
Date:   Fri Aug 10 22:37:26 2018 +0200

- rel 3; replace fix with official upstream one

 binutils-bug-23499.patch   | 70 ++
 ...ils-do-not-provide-shared-section-symbols.patch | 25 
 binutils.spec  |  5 +-
 3 files changed, 72 insertions(+), 28 deletions(-)
---
diff --git a/binutils.spec b/binutils.spec
index 01dc57d..fc23ef8 100644
--- a/binutils.spec
+++ b/binutils.spec
@@ -24,7 +24,7 @@ Summary(tr.UTF-8):GNU geliştirme araçları
 Summary(uk.UTF-8): Набір інструментів GNU для побудови виконуваних програм
 Name:  binutils
 Version:   2.31.1
-Release:   2
+Release:   3
 Epoch: 4
 License:   GPL v3+
 Group: Development/Tools
@@ -43,8 +43,7 @@ Patch7:   %{name}-libtool-m.patch
 Patch8:%{name}-build-id.patch
 Patch9:%{name}-tooldir.patch
 Patch10:   %{name}-sanity-check.patch
-# https://bugzilla.redhat.com/show_bug.cgi?id=1599521
-Patch11:   binutils-do-not-provide-shared-section-symbols.patch
+Patch11:   binutils-bug-23499.patch
 Patch12:   fd-leak.patch
 URL:   http://sources.redhat.com/binutils/
 BuildRequires: autoconf >= 2.64
diff --git a/binutils-bug-23499.patch b/binutils-bug-23499.patch
new file mode 100644
index 000..698fc2f
--- /dev/null
+++ b/binutils-bug-23499.patch
@@ -0,0 +1,70 @@
+commit 48e30f5238c70e738f44474d595c476ef4e4ec38
+Author: H.J. Lu 
+Date:   Fri Aug 10 12:21:58 2018 -0700
+
+Always clear h->verinfo.verdef when overriding a dynamic definition
+
+When linker defines a symbol to override a dynamic definition, it should
+always clear h->verinfo.verdef so that the symbol won't be associated
+with the version information from the dynamic object.  This happened to
+the symbol "_edata" when creating an unversioned dynamic object linking
+against:
+
+1. libKF5ConfigCore.so.5.49.0
+2. libKF5CoreAddons.so.5.49.0
+3. libKF5I18n.so.5.49.0
+4. libKF5DBusAddons.so.5.49.0
+5. libQt5Xml.so.5.11.1
+6. libQt5DBus.so.5.11.1
+7. libQt5Core.so.5.11.1
+
+Among them
+
+libQt5Xml.so.5.11.1
+   299: 0003e000 0 NOTYPE  GLOBAL DEFAULT   18 _edata@@Qt_5
+libQt5DBus.so.5.11.1
+   597: 00092018 0 NOTYPE  GLOBAL DEFAULT   18 _edata@@Qt_5
+libQt5Core.so.5.11.1
+  2292: 004df640 0 NOTYPE  GLOBAL DEFAULT   21 _edata@Qt_5
+  2293: 004df640 0 NOTYPE  GLOBAL DEFAULT   21 _edata@Qt_5
+
+The problem is triggered by 2 duplicated entries of _edata@Qt_5 in
+libQt5Core.so.5.11.1 which was created by gold.  Before this commit,
+ld created the dynamic object with "_edata" in its dynamic symbol table
+which was linker defined and associated with the version information
+from libQt5Core.so.5.11.1.  The code in question was there when the
+binutils source was imported to sourceware.org.  When such a dynamic
+object was used later, we got:
+
+/usr/bin/ld: bin/libKF5Service.so.5.49.0: _edata: invalid version 21 (max 
0)
+/usr/bin/ld: bin/libKF5Service.so.5.49.0: error adding symbols: bad value
+
+Tested with many ELF targets.
+
+PR ld/23499
+* elflink.c (bfd_elf_record_link_assignment): Always clear
+h->verinfo.verdef when overriding a dynamic definition.
+
+diff --git a/bfd/elflink.c b/bfd/elflink.c
+index b24fb95848..02618bed8f 100644
+--- a/bfd/elflink.c
 b/bfd/elflink.c
+@@ -686,13 +686,11 @@ bfd_elf_record_link_assignment (bfd *output_bfd,
+   && !h->def_regular)
+ h->root.type = bfd_link_hash_undefined;
+ 
+-  /* If this symbol is not being provided by the linker script, and it is
+- currently defined by a dynamic object, but not by a regular object,
+- then clear out any version information because the symbol will not be
+- associated with the dynamic object any more.  */
+-  if (!provide
+-  && h->def_dynamic
+-  && !h->def_regular)
++  /* If this symbol is currently defined by a dynamic object, but not
++ by a regular object, then clear out any version information because
++ the symbol will not be associated with the dynamic object any
++ more.  */
++  if (h->def_dynamic && !h->def_regular)
+ h->verinfo.verdef = NULL;
+ 
+   /* Make sure this symbol is not garbage collected.  */
diff --git a/binutils-do-not-provide-shared-section-symbols.patch 
b/binutils-do-not-provide-shared-section-symbols.patch
deleted file mode 100644
index 02a7350..000
--- a/binutils-do-not-provide-shared-section-symbols.patch
+++ /dev/null
@@ -1,25 +0,0 @@
-diff --git a/ld/scripttempl/elf.sc b/ld/scripttempl/elf.sc
-index 444aef2942..8a3858d32b 100644
 a/ld/scripttempl/elf.sc
-+++ b/ld/scripttempl/elf.sc
-@@ -637,9 +637,9 @@ cat 

[packages/perl-Excel-Writer-XLSX] - up to 0.98

2018-08-10 Thread adwol
commit e2eb9acff1a5ece4851e198549f0fece8c6a3d45
Author: Adam Osuchowski 
Date:   Fri Aug 10 23:03:21 2018 +0200

- up to 0.98

 perl-Excel-Writer-XLSX.spec | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/perl-Excel-Writer-XLSX.spec b/perl-Excel-Writer-XLSX.spec
index d14f8c8..0f1a569 100644
--- a/perl-Excel-Writer-XLSX.spec
+++ b/perl-Excel-Writer-XLSX.spec
@@ -7,13 +7,13 @@
 %include   /usr/lib/rpm/macros.perl
 Summary:   Excel::Writer::XLSX - Create a new file in the Excel 2007+ XLSX 
format
 Name:  perl-Excel-Writer-XLSX
-Version:   0.95
+Version:   0.98
 Release:   1
 # same as perl
 License:   GPL v1+ or Artistic
 Group: Development/Languages/Perl
 Source0:   
http://www.cpan.org/modules/by-module/%{pdir}/%{pdir}-%{pnam}-%{version}.tar.gz
-# Source0-md5: 377094b38e541afdbb21a02a7d433ac3
+# Source0-md5: 10c9bd6bb77fc08da41c385d994ce20d
 URL:   http://search.cpan.org/dist/Excel-Writer-XLSX/
 BuildRequires: perl-devel >= 1:5.8.0
 BuildRequires: perl-modules >= 5.6.1


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/perl-Excel-Writer-XLSX.git/commitdiff/e2eb9acff1a5ece4851e198549f0fece8c6a3d45

___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


DISTFILES: perl-Excel-Writer-XLSX: Excel-Writer-XLSX-0.98.tar.gz

2018-08-10 Thread adwol
Request by: adwol


Files fetched: 1

STORED: 
http://www.cpan.org/modules/by-module/Excel/Excel-Writer-XLSX-0.98.tar.gz
10c9bd6bb77fc08da41c385d994ce20d  Excel-Writer-XLSX-0.98.tar.gz
Size: 2029288 bytes


-- 
Virtually Yours: distfiles.
___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


DISTFILES: glibc: glibc-2.28.tar.xz glibc-man-pages.tar.xz glibc-git.patch

2018-08-10 Thread arekm
Request by: arekm


Files fetched: 1

ALREADY GOT: http://ftp.gnu.org/gnu/glibc/glibc-2.28.tar.xz
c81d2388896379997bc359d4f2084239  glibc-2.28.tar.xz
ALREADY GOT: no-url://glibc-man-pages.tar.xz
78a8f7f8dfc63123f47a614e99136e61  glibc-man-pages.tar.xz
STORED: no-url://glibc-git.patch
2e96e436298fad6af616e52b910ea508  glibc-git.patch
Size: 13001 bytes


-- 
Virtually Yours: distfiles.
___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


[packages/glibc] - rel 2; compat getdents64 fix

2018-08-10 Thread arekm
commit b8aaa694679cc1605ff6ad77a087b8832d452a30
Author: Arkadiusz Miśkiewicz 
Date:   Fri Aug 10 23:10:50 2018 +0200

- rel 2; compat getdents64 fix

 glibc.spec | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/glibc.spec b/glibc.spec
index d73fbc0..c368a24 100644
--- a/glibc.spec
+++ b/glibc.spec
@@ -41,7 +41,7 @@ Summary(tr.UTF-8):GNU libc
 Summary(uk.UTF-8): GNU libc версії
 Name:  glibc
 Version:   %{core_version}
-Release:   1
+Release:   2
 Epoch: 6
 License:   LGPL v2.1+
 Group: Libraries
@@ -58,7 +58,7 @@ Source7:  %{name}-LD-path.c
 Source9:   nscd.tmpfiles
 # use branch.sh to update glibc-git.patch
 Patch0:glibc-git.patch
-# Patch0-md5:  ad1cb11073f706d94c1cbbfd291cc14a
+# Patch0-md5:  2e96e436298fad6af616e52b910ea508
 # against GNU TP (libc domain)
 #Patch1:   %{name}-pl.po-update.patch
 Patch2:%{name}-pld.patch


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/glibc.git/commitdiff/b8aaa694679cc1605ff6ad77a087b8832d452a30

___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit