[packages/zathura-pdf-poppler] - updated Source URL

2018-10-21 Thread qboosh
commit a3bf1a311ae5a529c20151c087cb3f8eee459a2c
Author: Jakub Bogusz 
Date:   Sun Oct 21 09:06:28 2018 +0200

- updated Source URL

 zathura-pdf-poppler.spec | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
---
diff --git a/zathura-pdf-poppler.spec b/zathura-pdf-poppler.spec
index 22e01c6..fe85c0c 100644
--- a/zathura-pdf-poppler.spec
+++ b/zathura-pdf-poppler.spec
@@ -5,7 +5,7 @@ Version:0.2.9
 Release:   1
 License:   BSD-like
 Group: Applications/Publishing
-Source0:   
https://pwmt.org/projects/zathura-pdf-poppler/%{name}-%{version}.tar.xz
+Source0:   
https://pwmt.org/projects/zathura-pdf-poppler/download/%{name}-%{version}.tar.xz
 # Source0-md5: d0eafd167baa2521fcf572fcf66cb396
 URL:   https://pwmt.org/projects/zathura/zathura-pdf-poppler/
 BuildRequires: cairo-devel


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/zathura-pdf-poppler.git/commitdiff/a3bf1a311ae5a529c20151c087cb3f8eee459a2c

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


[packages/mixxx] - added libdir patch to honour libdir setting (place plugins in appropriate lib* depending on their

2018-10-21 Thread qboosh
commit a932171d678de9c524417c7cfe49a035e99ece84
Author: Jakub Bogusz 
Date:   Sun Oct 21 09:29:17 2018 +0200

- added libdir patch to honour libdir setting (place plugins in appropriate 
lib* depending on their ABI); release 6

 mixxx-libdir.patch | 44 
 mixxx.spec |  8 ++--
 2 files changed, 50 insertions(+), 2 deletions(-)
---
diff --git a/mixxx.spec b/mixxx.spec
index be5a2e6..37bad3d 100644
--- a/mixxx.spec
+++ b/mixxx.spec
@@ -3,12 +3,13 @@ Summary(hu.UTF-8):Mixxx - DJ program
 Summary(pl.UTF-8): Mixxx - narzędzie dla DJ-ów
 Name:  mixxx
 Version:   1.11.0
-Release:   5
+Release:   6
 License:   GPL v2+
 Group: X11/Applications/Multimedia
 Source0:   
http://downloads.mixxx.org/mixxx-%{version}/%{name}-%{version}-src.tar.gz
 # Source0-md5: 89ee8ba60824919d8dd1194287bda259
 Patch0:desktop.patch
+Patch1:%{name}-libdir.patch
 URL:   http://mixxx.org/
 BuildRequires: OpenGL-GLU-devel
 BuildRequires: Qt3Support-devel >= 4.6
@@ -84,6 +85,7 @@ Podstawowe skórki dla programu Mixxx.
 %prep
 %setup -q
 %patch0 -p1
+%patch1 -p1
 
 %build
 export CXXFLAGS="%{rpmcxxflags}"
@@ -91,6 +93,7 @@ export CCFLAGS="%{rpmcflags}"
 export CXX="%{__cxx}"
 export QMAKE_CXX="%{__cxx}"
 %scons \
+   libdir=%{_libdir} \
faad=1 \
wv=1
 # ffmpeg=1 is "NOT-WORKING"
@@ -104,7 +107,8 @@ export CCFLAGS="%{rpmcflags}"
 export CXX="%{__cxx}"
 export QMAKE_CXX="%{__cxx}"
 %scons install \
-   install_root=$RPM_BUILD_ROOT%{_prefix}
+   install_root=$RPM_BUILD_ROOT \
+   libdir=%{_libdir}
 
 %{__rm} -r $RPM_BUILD_ROOT%{_docdir}/mixxx
 
diff --git a/mixxx-libdir.patch b/mixxx-libdir.patch
new file mode 100644
index 000..2acb8ec
--- /dev/null
+++ b/mixxx-libdir.patch
@@ -0,0 +1,44 @@
+--- mixxx-1.11.0/build/depends.py.orig 2013-05-09 01:20:26.0 +0200
 mixxx-1.11.0/build/depends.py  2018-10-21 08:31:44.564677062 +0200
+@@ -898,9 +898,11 @@
+ # RESOURCE_PATH that covers Win and OSX too:
+ if build.platform_is_linux or build.platform_is_bsd:
+ prefix = SCons.ARGUMENTS.get('prefix', '/usr/local')
+-share_path = os.path.join(prefix, 'share/mixxx')
++datadir = SCons.ARGUMENTS.get('datadir', os.path.join(prefix, 
'share'))
++share_path = os.path.join(datadir, 'mixxx')
+ build.env.Append(CPPDEFINES=('UNIX_SHARE_PATH', r'\"%s\"' % 
share_path))
+-lib_path = os.path.join(prefix, 'lib/mixxx')
++libdir = SCons.ARGUMENTS.get('libdir', os.path.join(prefix, 
'lib'))
++lib_path = os.path.join(libdir, 'mixxx')
+ build.env.Append(CPPDEFINES=('UNIX_LIB_PATH', r'\"%s\"' % 
lib_path))
+ 
+ def depends(self, build):
+--- mixxx-1.11.0/src/SConscript.orig   2013-05-09 01:20:26.0 +0200
 mixxx-1.11.0/src/SConscript2018-10-21 08:35:27.378007853 +0200
+@@ -237,6 +237,9 @@
+ 
+ if build.platform_is_linux or build.platform_is_bsd:
+ flags['prefix'] = ARGUMENTS.get('prefix', '/usr/local')
++flags['datadir'] = ARGUMENTS.get('datadir', 
os.path.join(flags['prefix'], 'share'))
++flags['bindir'] = ARGUMENTS.get('bindir', 
os.path.join(flags['prefix'], 'bin'))
++flags['libdir'] = ARGUMENTS.get('libdir', 
os.path.join(flags['prefix'], 'lib'))
+ if not os.path.exists(flags['prefix']):
+ print "Error: Prefix path does not exist!"
+ Exit(1)
+@@ -245,11 +248,11 @@
+ #Basically, the flags['prefix'] is compiled into strings in 
Mixxx, whereas the install_root is not. When you're
+ #building a Debian package, pbuilder wants to install Mixxx 
to a temporary directory, but you still need
+ #the compiled-in strings using /usr as the prefix. That's why 
we have install_root and flags['prefix'].
+-install_root = ARGUMENTS.get('install_root', flags['prefix'])
++install_root = ARGUMENTS.get('install_root', '')
+ print "Install root: " + install_root
+-unix_share_path = os.path.join(install_root, 'share')
+-unix_bin_path = os.path.join(install_root, 'bin')
+-unix_lib_path = os.path.join(install_root, 'lib')
++unix_share_path = install_root + flags['datadir']
++unix_bin_path = install_root + flags['bindir']
++unix_lib_path = install_root + flags['libdir']
+ 
+ binary = env.Install(unix_bin_path, binary_files)
+ resource = env.Install(os.path.join(unix_share_path, 
'mixxx'), resource_files)


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/mixxx.git/commitdiff/a932171d678de9c524417c7cfe49a035e99ece84

___
pld-cvs-commit mailing list
pld-cvs-commit@lis

DISTFILES: ckermit: cku302.tar.gz

2018-10-21 Thread baggins
Request by: baggins


Files fetched: 1

STORED: ftp://kermit.columbia.edu/kermit/archives/cku302.tar.gz
eac4dbf18b45775e4cdee5a7c74762b0  cku302.tar.gz
Size: 3122219 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/ckermit] - started update to 9.0.302

2018-10-21 Thread baggins
commit 724f6a602b0dc2d4843fcfe7a46365395f86cf17
Author: Jan Rękorajski 
Date:   Sun Oct 21 09:44:07 2018 +0200

- started update to 9.0.302

 ckermit-openssl-clash.patch | 11 ---
 ckermit.spec| 12 +---
 2 files changed, 5 insertions(+), 18 deletions(-)
---
diff --git a/ckermit.spec b/ckermit.spec
index 3f94b52..e744fb5 100644
--- a/ckermit.spec
+++ b/ckermit.spec
@@ -5,19 +5,18 @@
 Summary:   The quintessential all-purpose communications program
 Summary(pl.UTF-8): Kwintesencja programów komunikacyjnych
 Name:  ckermit
-Version:   8.0.211
-Release:   9
+Version:   9.0.302
+Release:   0.1
 License:   Special (see Copyright Notice)
 Group: Applications/Communications
-Source0:   ftp://kermit.columbia.edu/kermit/archives/cku211.tar.gz
-# Source0-md5: e9e5f3e988a526e49cf177ca18719827
+Source0:   ftp://kermit.columbia.edu/kermit/archives/cku302.tar.gz
+# Source0-md5: eac4dbf18b45775e4cdee5a7c74762b0
 Source1:   cku-%{name}.local.ini
 Source2:   cku-%{name}.modem.generic.ini
 Source3:   cku-%{name}.locale.ini
 Source4:   cku-%{name}.phone
 Patch0:cku-makefile.patch
 Patch1:%{name}-gcc4.patch
-Patch2:%{name}-openssl-clash.patch
 Patch3:build.patch
 Patch4:050-consider-OPENSSL_NO_SSL3.patch
 URL:   http://www.columbia.edu/kermit/
@@ -46,8 +45,7 @@ komunikacyjnych.
 %prep
 %setup -q -c
 %patch0 -p1
-%patch1 -p1
-%patch2 -p1
+#%patch1 -p1
 %patch3 -p1
 %patch4 -p1
 
diff --git a/ckermit-openssl-clash.patch b/ckermit-openssl-clash.patch
deleted file mode 100644
index 7680bed..000
--- a/ckermit-openssl-clash.patch
+++ /dev/null
@@ -1,11 +0,0 @@
 ckermit-8.0.211/ckcasc.h~  2004-01-07 19:16:20.0 +0100
-+++ ckermit-8.0.211/ckcasc.h   2007-04-01 01:38:09.0 +0200
-@@ -42,7 +42,7 @@
- #define SYN   22/* SYN, Ctrl-V */
- #define ETB   23/* Ctrl-W */
- #define CAN   24/* CAN, Ctrl-X */
--#define EM25/* Ctrl-Y */
-+#define __EM  25/* Ctrl-Y */
- #define SUB   26/* SUB Ctrl-Z */
- #define ESC   27/* Escape Ctrl-[ */
- #define XFS   28/* Field Separator,  Ctrl-Backslash */


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/ckermit.git/commitdiff/724f6a602b0dc2d4843fcfe7a46365395f86cf17

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


DISTFILES: zathura-djvu: zathura-djvu-0.2.8.tar.xz

2018-10-21 Thread qboosh
Request by: qboosh


Files fetched: 1

STORED: 
https://pwmt.org/projects/zathura-djvu/download/zathura-djvu-0.2.8.tar.xz
e92d09832e8104283467caa78488b52d  zathura-djvu-0.2.8.tar.xz
Size: 8860 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/zathura-djvu] Created branch master

2018-10-21 Thread qboosh
The branch 'master' was created.

Summary of new commits:

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


[packages/zathura-djvu] - new

2018-10-21 Thread qboosh
commit 9407dbad8eac48c430b59534bc5b9c735d7a2b53
Author: Jakub Bogusz 
Date:   Sun Oct 21 09:53:38 2018 +0200

- new

 zathura-djvu.spec | 55 +++
 1 file changed, 55 insertions(+)
---
diff --git a/zathura-djvu.spec b/zathura-djvu.spec
new file mode 100644
index 000..bab91e5
--- /dev/null
+++ b/zathura-djvu.spec
@@ -0,0 +1,55 @@
+Summary:   DjVu support for zathura
+Summary(pl.UTF-8): Obsługa DjVu dla zathury
+Name:  zathura-djvu
+Version:   0.2.8
+Release:   1
+License:   BSD-like
+Group: Applications/Publishing
+Source0:   
https://pwmt.org/projects/zathura-djvu/download/%{name}-%{version}.tar.xz
+# Source0-md5: e92d09832e8104283467caa78488b52d
+URL:   https://pwmt.org/projects/zathura-djvu/
+BuildRequires: cairo-devel
+BuildRequires: djvulibre-devel
+# C11
+BuildRequires: gcc >= 6:4.7
+BuildRequires: glib2-devel >= 2.0
+BuildRequires: girara-devel >= 0.1.8
+BuildRequires: meson >= 0.43
+BuildRequires: ninja
+BuildRequires: pkgconfig
+BuildRequires: rpmbuild(macros) >= 1.727
+BuildRequires: zathura-devel >= 0.3.8
+Requires:  girara >= 0.1.8
+Requires:  zathura >= 0.3.8
+BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
+
+%description
+The zathura-djvu plugin adds DjVu support to zathura by using the
+djvulibre library.
+
+%description -l pl.UTF-8
+Wtyczka zathura-djvu dodaje do zathury obsługę DjVu z wykorzystaniem
+biblioteki djvulibre.
+
+%prep
+%setup -q
+
+%build
+%meson build
+
+%meson_build -C build
+
+%install
+rm -rf $RPM_BUILD_ROOT
+
+%meson_install -C build
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%files
+%defattr(644,root,root,755)
+%doc AUTHORS LICENSE
+%attr(755,root,root) %{_libdir}/zathura/libdjvu.so
+%{_desktopdir}/org.pwmt.zathura-djvu.desktop
+%{_datadir}/metainfo/org.pwmt.zathura-djvu.metainfo.xml


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/zathura-djvu.git/commitdiff/9407dbad8eac48c430b59534bc5b9c735d7a2b53

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


DISTFILES: zathura-ps: zathura-ps-0.2.6.tar.xz

2018-10-21 Thread qboosh
Request by: qboosh


Files fetched: 1

STORED: https://pwmt.org/projects/zathura-ps/download/zathura-ps-0.2.6.tar.xz
77a159b5458abb2894f0e23ffc625f2c  zathura-ps-0.2.6.tar.xz
Size: 4336 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/zathura-ps] Created branch master

2018-10-21 Thread qboosh
The branch 'master' was created.

Summary of new commits:

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


[packages/zathura-ps] - new

2018-10-21 Thread qboosh
commit 1297069c76304dfeae08d26c814b85cbda50bdbc
Author: Jakub Bogusz 
Date:   Sun Oct 21 10:16:01 2018 +0200

- new

 zathura-ps.spec | 55 +++
 1 file changed, 55 insertions(+)
---
diff --git a/zathura-ps.spec b/zathura-ps.spec
new file mode 100644
index 000..27a9898
--- /dev/null
+++ b/zathura-ps.spec
@@ -0,0 +1,55 @@
+Summary:   PostScript support for zathura
+Summary(pl.UTF-8): Obsługa PostScriptu dla zathury
+Name:  zathura-ps
+Version:   0.2.6
+Release:   1
+License:   BSD-like
+Group: Applications/Publishing
+Source0:   
https://pwmt.org/projects/zathura-ps/download/%{name}-%{version}.tar.xz
+# Source0-md5: 77a159b5458abb2894f0e23ffc625f2c
+URL:   https://pwmt.org/projects/zathura-ps/
+BuildRequires: cairo-devel
+# C11
+BuildRequires: gcc >= 6:4.7
+BuildRequires: glib2-devel >= 2.0
+BuildRequires: girara-devel >= 0.1.8
+BuildRequires: libspectre-devel
+BuildRequires: meson >= 0.43
+BuildRequires: ninja
+BuildRequires: pkgconfig
+BuildRequires: rpmbuild(macros) >= 1.727
+BuildRequires: zathura-devel >= 0.3.8
+Requires:  girara >= 0.1.8
+Requires:  zathura >= 0.3.8
+BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
+
+%description
+The zathura-ps plugin adds PostScript support to zathura by using the
+libspectre library.
+
+%description -l pl.UTF-8
+Wtyczka zathura-ps dodaje do zathury obsługę PostScriptu z
+wykorzystaniem biblioteki libspectre.
+
+%prep
+%setup -q
+
+%build
+%meson build
+
+%meson_build -C build
+
+%install
+rm -rf $RPM_BUILD_ROOT
+
+%meson_install -C build
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%files
+%defattr(644,root,root,755)
+%doc AUTHORS LICENSE
+%attr(755,root,root) %{_libdir}/zathura/libps.so
+%{_desktopdir}/org.pwmt.zathura-ps.desktop
+%{_datadir}/metainfo/org.pwmt.zathura-ps.metainfo.xml


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/zathura-ps.git/commitdiff/1297069c76304dfeae08d26c814b85cbda50bdbc

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


[packages/zathura-cb] Created branch master

2018-10-21 Thread qboosh
The branch 'master' was created.

Summary of new commits:

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


DISTFILES: zathura-cb: zathura-cb-0.1.8.tar.xz

2018-10-21 Thread qboosh
Request by: qboosh


Files fetched: 1

STORED: https://pwmt.org/projects/zathura-cb/download/zathura-cb-0.1.8.tar.xz
992d12813d3a8e65093a0e0aa2b81677  zathura-cb-0.1.8.tar.xz
Size: 5616 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/zathura-cb] - new

2018-10-21 Thread qboosh
commit 1b5a2af13de3c7680148f1bd37a1aa7b7d948f9c
Author: Jakub Bogusz 
Date:   Sun Oct 21 10:26:41 2018 +0200

- new

 zathura-cb.spec | 53 +
 1 file changed, 53 insertions(+)
---
diff --git a/zathura-cb.spec b/zathura-cb.spec
new file mode 100644
index 000..0e5369b
--- /dev/null
+++ b/zathura-cb.spec
@@ -0,0 +1,53 @@
+Summary:   Comic book support for zathura
+Summary(pl.UTF-8): Obsługa komiksów dla zathury
+Name:  zathura-cb
+Version:   0.1.8
+Release:   1
+License:   BSD-like
+Group: Applications/Publishing
+Source0:   
https://pwmt.org/projects/zathura-cb/download/%{name}-%{version}.tar.xz
+# Source0-md5: 992d12813d3a8e65093a0e0aa2b81677
+URL:   https://pwmt.org/projects/zathura-cb/
+BuildRequires: cairo-devel
+# C11
+BuildRequires: gcc >= 6:4.7
+BuildRequires: glib2-devel >= 2.0
+BuildRequires: girara-devel >= 0.1.8
+BuildRequires: libarchive-devel
+BuildRequires: meson >= 0.43
+BuildRequires: ninja
+BuildRequires: pkgconfig
+BuildRequires: rpmbuild(macros) >= 1.727
+BuildRequires: zathura-devel >= 0.3.8
+Requires:  girara >= 0.1.8
+Requires:  zathura >= 0.3.8
+BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
+
+%description
+The zathura-cb plugin adds comic book support to zathura.
+
+%description -l pl.UTF-8
+Wtyczka zathura-ps dodaje do zathury obsługę komiksów.
+
+%prep
+%setup -q
+
+%build
+%meson build
+
+%meson_build -C build
+
+%install
+rm -rf $RPM_BUILD_ROOT
+
+%meson_install -C build
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%files
+%defattr(644,root,root,755)
+%doc AUTHORS LICENSE README
+%attr(755,root,root) %{_libdir}/zathura/libcb.so
+%{_desktopdir}/org.pwmt.zathura-cb.desktop
+%{_datadir}/metainfo/org.pwmt.zathura-cb.metainfo.xml


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/zathura-cb.git/commitdiff/1b5a2af13de3c7680148f1bd37a1aa7b7d948f9c

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


[packages/vlc] - updated libwayland-egl package name (Mesa-libwayland-egl -> wayland-egl); release 3 (rebuild with

2018-10-21 Thread qboosh
commit 94702d09529631168ad51fdb67da8b2d513d678b
Author: Jakub Bogusz 
Date:   Sun Oct 21 10:44:25 2018 +0200

- updated libwayland-egl package name (Mesa-libwayland-egl -> wayland-egl); 
release 3 (rebuild with protobuf 3.6)

 vlc.spec | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/vlc.spec b/vlc.spec
index 37d1a14..6c902ab 100644
--- a/vlc.spec
+++ b/vlc.spec
@@ -64,7 +64,7 @@ Summary:  VLC - a multimedia player and stream server
 Summary(pl.UTF-8): VLC - odtwarzacz multimedialny oraz serwer strumieni
 Name:  vlc
 Version:   3.0.4
-Release:   2
+Release:   3
 License:   GPL v2+
 Group: X11/Applications/Multimedia
 Source0:   
http://download.videolan.org/pub/videolan/vlc/%{version}/%{name}-%{version}.tar.xz
@@ -77,7 +77,6 @@ Patch4:   no-cache.patch
 URL:   http://www.videolan.org/vlc/
 # 1.0 for X11 or GLESv1, 1.1 for GLESv2
 BuildRequires: EGL-devel >= %{?with_glesv2:1.1}%{!?with_glesv2:1.0}
-BuildRequires: Mesa-libwayland-egl-devel
 BuildRequires: OpenGL-devel
 %{?with_glesv1:BuildRequires:  OpenGLESv1-devel >= 1.1}
 %{?with_glesv2:BuildRequires:  OpenGLESv2-devel >= 2.0}
@@ -210,6 +209,7 @@ BuildRequires:  tremor-devel
 %{?with_udev:BuildRequires:udev-devel >= 1:142}
 %{?with_vsxu:BuildRequires:vsxu-devel}
 BuildRequires: wayland-devel >= 1.5.91
+BuildRequires: wayland-egl-devel
 BuildRequires: wayland-protocols >= 1.4
 BuildRequires: xcb-util-keysyms-devel >= 0.3.4
 BuildRequires: xorg-lib-libX11-devel


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/vlc.git/commitdiff/94702d09529631168ad51fdb67da8b2d513d678b

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


DISTFILES: harfbuzz: harfbuzz-2.0.2.tar.bz2

2018-10-21 Thread atler
Request by: atler


Files fetched: 1

STORED: 
https://www.freedesktop.org/software/harfbuzz/release/harfbuzz-2.0.2.tar.bz2
e899bc8ae1acc58f8cd1c116edd4d70b  harfbuzz-2.0.2.tar.bz2
Size: 4322171 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/harfbuzz] up to 2.0.2

2018-10-21 Thread atler
commit 3bc8d4c93121f0c30542ecdaecc2cc65fe620c95
Author: Jan Palus 
Date:   Sun Oct 21 12:27:37 2018 +0200

up to 2.0.2

 harfbuzz.spec | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/harfbuzz.spec b/harfbuzz.spec
index ff21566..5995280 100644
--- a/harfbuzz.spec
+++ b/harfbuzz.spec
@@ -8,12 +8,12 @@
 Summary:   HarfBuzz - internationalized text shaping library
 Summary(pl.UTF-8): HarfBuzz - biblioteka rysująca tekst z obsługą wielu 
języków
 Name:  harfbuzz
-Version:   2.0.0
+Version:   2.0.2
 Release:   1
 License:   MIT
 Group: Libraries
 Source0:   
https://www.freedesktop.org/software/harfbuzz/release/%{name}-%{version}.tar.bz2
-# Source0-md5: 6d1373dba3e8540c448c6a562f2e0a00
+# Source0-md5: e899bc8ae1acc58f8cd1c116edd4d70b
 Patch0:pc_deps.patch
 URL:   https://www.freedesktop.org/wiki/HarfBuzz
 BuildRequires: autoconf >= 2.64


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/harfbuzz.git/commitdiff/3bc8d4c93121f0c30542ecdaecc2cc65fe620c95

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


DISTFILES: subversion: subversion-1.10.3.tar.bz2

2018-10-21 Thread atler
Request by: atler


Files fetched: 1

STORED: http://www.apache.org/dist/subversion/subversion-1.10.3.tar.bz2
34b493f22988956af2e2e8fdb2ad0151  subversion-1.10.3.tar.bz2
Size: 8374465 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/subversion] up to 1.10.3

2018-10-21 Thread atler
commit 57356ff34e785b193159abe98c9878248ab6f4c5
Author: Jan Palus 
Date:   Sun Oct 21 12:38:07 2018 +0200

up to 1.10.3

 subversion.spec | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/subversion.spec b/subversion.spec
index 425f5ca..7797ac7 100644
--- a/subversion.spec
+++ b/subversion.spec
@@ -50,12 +50,12 @@ Summary:A Concurrent Versioning system similar to but 
better than CVS
 Summary(pl.UTF-8): System kontroli wersji podobny, ale lepszy, niż CVS
 Summary(pt_BR.UTF-8):  Sistema de versionamento concorrente
 Name:  subversion
-Version:   1.10.2
-Release:   3
+Version:   1.10.3
+Release:   1
 License:   Apache v2.0
 Group: Development/Version Control
 Source0:   http://www.apache.org/dist/subversion/%{name}-%{version}.tar.bz2
-# Source0-md5: e05fb3b25b1599b395ecc36d5ef1a145
+# Source0-md5: 34b493f22988956af2e2e8fdb2ad0151
 Source1:   %{name}-dav_svn.conf
 Source2:   %{name}-authz_svn.conf
 Source3:   %{name}-svnserve.init


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/subversion.git/commitdiff/57356ff34e785b193159abe98c9878248ab6f4c5

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


[packages/cairo] up to 1.16.0

2018-10-21 Thread atler
commit a619b3f984551ed2de7b6892e1d7ffd3e1017b7d
Author: Jan Palus 
Date:   Sun Oct 21 13:02:34 2018 +0200

up to 1.16.0

 cairo.spec | 8 
 1 file changed, 4 insertions(+), 4 deletions(-)
---
diff --git a/cairo.spec b/cairo.spec
index 1268d1c..99df5fc 100644
--- a/cairo.spec
+++ b/cairo.spec
@@ -24,12 +24,12 @@
 Summary:   Cairo - multi-platform 2D graphics library
 Summary(pl.UTF-8): Cairo - wieloplatformowa biblioteka graficzna 2D
 Name:  cairo
-Version:   1.14.12
-Release:   2
+Version:   1.16.0
+Release:   1
 License:   LGPL v2.1 or MPL v1.1
 Group: Libraries
 Source0:   https://www.cairographics.org/releases/%{name}-%{version}.tar.xz
-# Source0-md5: 9f0db9dbfca0966be8acd682e636d165
+# Source0-md5: f19e0353828269c22bd72e271243a552
 Patch0:%{name}-link.patch
 Patch1:%{name}-gobject-deps.patch
 URL:   https://www.cairographics.org/
@@ -52,7 +52,7 @@ BuildRequires:fontconfig-devel >= 2.2.95
 BuildRequires: freetype-devel >= 1:2.3.0
 BuildRequires: glib2-devel >= 1:2.14
 %{?with_apidocs:BuildRequires: gtk-doc >= 1.15}
-%{?with_drm:BuildRequires: libdrm-devel}
+%{?with_drm:BuildRequires: libdrm-devel >= 2.4}
 BuildRequires: libpng-devel >= 2:1.4.0
 %if %{with svg} && %{with tests}
 BuildRequires: librsvg-devel >= 2.35.0


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/cairo.git/commitdiff/a619b3f984551ed2de7b6892e1d7ffd3e1017b7d

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


DISTFILES: cairo: cairo-1.16.0.tar.xz

2018-10-21 Thread atler
Request by: atler


Files fetched: 1

STORED: https://www.cairographics.org/releases/cairo-1.16.0.tar.xz
f19e0353828269c22bd72e271243a552  cairo-1.16.0.tar.xz
Size: 41997432 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/ckermit] - fix build with openssl 1.1.1

2018-10-21 Thread baggins
commit c09d4c891eec9e39f2ef977d0bc49ab59c4aef71
Author: Jan Rękorajski 
Date:   Sun Oct 21 13:20:51 2018 +0200

- fix build with openssl 1.1.1

 ckermit-gcc4.patch  |  13 --
 ckermit.spec|   6 +-
 cku-makefile.patch  |   6 +-
 openssl-1.1.1.patch | 535 
 4 files changed, 541 insertions(+), 19 deletions(-)
---
diff --git a/ckermit.spec b/ckermit.spec
index e744fb5..816a476 100644
--- a/ckermit.spec
+++ b/ckermit.spec
@@ -6,7 +6,7 @@ Summary:The quintessential all-purpose communications 
program
 Summary(pl.UTF-8): Kwintesencja programów komunikacyjnych
 Name:  ckermit
 Version:   9.0.302
-Release:   0.1
+Release:   1
 License:   Special (see Copyright Notice)
 Group: Applications/Communications
 Source0:   ftp://kermit.columbia.edu/kermit/archives/cku302.tar.gz
@@ -16,9 +16,9 @@ Source2:  cku-%{name}.modem.generic.ini
 Source3:   cku-%{name}.locale.ini
 Source4:   cku-%{name}.phone
 Patch0:cku-makefile.patch
-Patch1:%{name}-gcc4.patch
 Patch3:build.patch
 Patch4:050-consider-OPENSSL_NO_SSL3.patch
+Patch5:openssl-1.1.1.patch
 URL:   http://www.columbia.edu/kermit/
 %{?with_kerberos5:BuildRequires:   heimdal-devel}
 BuildRequires: ncurses-devel
@@ -45,9 +45,9 @@ komunikacyjnych.
 %prep
 %setup -q -c
 %patch0 -p1
-#%patch1 -p1
 %patch3 -p1
 %patch4 -p1
+%patch5 -p1
 
 %build
 %if %{with kerberos5}
diff --git a/ckermit-gcc4.patch b/ckermit-gcc4.patch
deleted file mode 100644
index 7bafc2c..000
--- a/ckermit-gcc4.patch
+++ /dev/null
@@ -1,13 +0,0 @@
 ckermit-8.0.211/ck_crp.c.orig  2004-03-14 18:05:52.0 +0100
-+++ ckermit-8.0.211/ck_crp.c   2005-06-12 17:07:45.0 +0200
-@@ -467,8 +467,8 @@
-  * These function pointers point to the current routines
-  * for encrypting and decrypting data.
-  */
--static VOID (*encrypt_output) P((unsigned char *, int));
--static int  (*decrypt_input) P((int));
-+VOID (*encrypt_output) P((unsigned char *, int));
-+int  (*decrypt_input) P((int));
- 
- #ifdef DEBUG
- static int encrypt_debug_mode = 1;
diff --git a/cku-makefile.patch b/cku-makefile.patch
index 7823092..2547eb4 100644
--- a/cku-makefile.patch
+++ b/cku-makefile.patch
@@ -14,7 +14,7 @@
 +  \
 +  -I/usr/include/security -I/usr/include/openssl -I/usr/include/ncurses \
 +  -I/usr/include/krb5 -I/usr/include/et $(KFLAGS)" "LNKFLAGS = 
$(LNKFLAGS)" \
-+  "LIBS = -lm -lncurses -lssl -lcrypto -lgssapi_krb5 \
++  "LIBS = -lm -lncurses -lssl -lcrypto -lgssapi_krb5 -lutil \
 +  -lkrb5 -lcom_err -lk5crypto -lcrypt -lresolv -lpam -ldl -lz -ltinfo"
 +
 +linux-PLD+krb5heimdal+openssl+zlib+pam+shadow:
@@ -27,7 +27,7 @@
 +  -DHEIMDAL \
 +  -I/usr/include/security -I/usr/include/openssl -I/usr/include/ncurses \
 +  -I/usr/include/krb5 -I/usr/include/et $(KFLAGS)" "LNKFLAGS = 
$(LNKFLAGS)" \
-+  "LIBS = -lm -lncurses -lssl -lcrypto -lgssapi \
++  "LIBS = -lm -lncurses -lssl -lcrypto -lgssapi -lutil \
 +  -lkrb5 -lcom_err -lcrypt -lresolv -lpam -ldl -lz -ltinfo"
 +
 +linux-PLD+openssl+zlib+pam+shadow:
@@ -40,7 +40,7 @@
 +  \
 +  -I/usr/include/security -I/usr/include/openssl -I/usr/include/ncurses \
 +  -I/usr/include/krb5 -I/usr/include/et $(KFLAGS)" "LNKFLAGS = 
$(LNKFLAGS)" \
-+  "LIBS = -lm -lncurses -lssl -lcrypto \
++  "LIBS = -lm -lncurses -lssl -lcrypto -lutil \
 +  -lcrypt -lresolv -lpam -ldl -lz -ltinfo"
 +
  linuxnotcp:
diff --git a/openssl-1.1.1.patch b/openssl-1.1.1.patch
new file mode 100644
index 000..b174166
--- /dev/null
+++ b/openssl-1.1.1.patch
@@ -0,0 +1,535 @@
+diff -ur ckermit-9.0.302/ck_crp.c ckermit-9.0.302.openssl111/ck_crp.c
+--- ckermit-9.0.302/ck_crp.c   2011-08-20 23:02:21.0 +0200
 ckermit-9.0.302.openssl111/ck_crp.c2018-10-21 13:18:30.581182834 
+0200
+@@ -295,7 +295,7 @@
+ #define des_new_random_keydes_random_key
+ #define des_set_random_generator_seed des_random_seed
+ #endif /* UNIX */
+-#define des_fixup_key_parity  des_set_odd_parity
++#define des_fixup_key_parity  DES_set_odd_parity
+ #ifdef OPENSSL_097
+ #define OPENSSL_ENABLE_OLD_DES_SUPPORT
+ #include 
+@@ -394,7 +394,7 @@
+ void
+ des_set_random_generator_seed(Block B)
+ {
+-des_random_seed(B);
++//DES_random_seed(B);
+ return;
+ }
+ 
+@@ -403,7 +403,7 @@
+ void
+ des_fixup_key_parity(Block B)
+ {
+-des_set_odd_parity(B);
++DES_set_odd_parity(B);
+ return;
+ }
+ #endif /* COMMENT */
+@@ -415,7 +415,7 @@
+This might need to have the "rc = " removed because this
+is VOID in later, and maybe even all, versions.
+ */   
+-rc = des_random_key(B);
++rc = DES_random_key(B);
+ return(rc);
+ }
+ 
+@@ -2138,8 +2138,9 @@
+ }
+ 
+ #else /* MIT_CURRENT */
+-des_new_random_key(fbp->temp_feed);
+-des_ecb_en

DISTFILES: opus: opus-1.3.tar.gz

2018-10-21 Thread atler
Request by: atler


Files fetched: 1

STORED: https://archive.mozilla.org/pub/opus/opus-1.3.tar.gz
c4143b6823f2f0d5520d1be2155db2eb  opus-1.3.tar.gz
Size: 1032750 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/opus] up to 1.3

2018-10-21 Thread atler
commit b69c9fb8948be4bc7d924f1b4dd9af1658e3decf
Author: Jan Palus 
Date:   Sun Oct 21 13:35:29 2018 +0200

up to 1.3

 opus.spec | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/opus.spec b/opus.spec
index f7c6427..3f5b108 100644
--- a/opus.spec
+++ b/opus.spec
@@ -1,14 +1,14 @@
 Summary:   IETF Opus Interactive Audio Codec
 Summary(pl.UTF-8): Opus - interaktywny kodek dźwięku wg projektu IETF
 Name:  opus
-Version:   1.2.1
+Version:   1.3
 Release:   1
 License:   BSD
 Group: Libraries
 # releases <= 1.2 also on
 #Source0:  
http://downloads.xiph.org/releases/opus/%{name}-%{version}.tar.gz
 Source0:   https://archive.mozilla.org/pub/opus/%{name}-%{version}.tar.gz
-# Source0-md5: 54bc867f13066407bc7b95be1fede090
+# Source0-md5: c4143b6823f2f0d5520d1be2155db2eb
 URL:   http://opus-codec.org/
 BuildRequires: autoconf >= 2.59
 BuildRequires: automake >= 1.6


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/opus.git/commitdiff/b69c9fb8948be4bc7d924f1b4dd9af1658e3decf

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


[packages/hydra] - release 2 (by relup.sh)

2018-10-21 Thread baggins
commit 4448eccb93f3cc4af2fb490313a4c09fda54ec28
Author: Jan Rękorajski 
Date:   Sun Oct 21 13:38:53 2018 +0200

- release 2 (by relup.sh)

 hydra.spec | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
---
diff --git a/hydra.spec b/hydra.spec
index 686bdcb..396e7f8 100644
--- a/hydra.spec
+++ b/hydra.spec
@@ -5,7 +5,7 @@ Summary:Parallized network authentication cracker
 Summary(pl.UTF-8): Zrównoleglony łamacz uwierzytelnień sieciowych
 Name:  hydra
 Version:   8.6
-Release:   1
+Release:   2
 License:   GPL
 Group: Networking
 Source0:   
https://github.com/vanhauser-thc/THC-Archive/blob/master/Tools/%{name}-%{version}.tar.gz?raw=true


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/hydra.git/commitdiff/4448eccb93f3cc4af2fb490313a4c09fda54ec28

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


[packages/monodevelop] - update BRs

2018-10-21 Thread baggins
commit 5226a43ec7cdaa20f576fc9ba4d0d253300612be
Author: Jan Rękorajski 
Date:   Sun Oct 21 14:08:32 2018 +0200

- update BRs

 monodevelop.spec | 1 +
 1 file changed, 1 insertion(+)
---
diff --git a/monodevelop.spec b/monodevelop.spec
index 0375c9a..cd56d8f 100644
--- a/monodevelop.spec
+++ b/monodevelop.spec
@@ -26,6 +26,7 @@ URL:  http://monodevelop.com/
 BuildRequires: autoconf >= 2.53
 BuildRequires: automake >= 1:1.10
 # gconf-sharp, gnome-sharp, gnome-vfs-sharp
+BuildRequires: dotnet-gconf-sharp-devel
 BuildRequires: dotnet-gnome-sharp-devel >= 2.16.0
 BuildRequires: dotnet-gtk-sharp2-devel >= 2.12.8
 BuildRequires: dotnet-newtonsoft-json-devel >= 6.0


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/monodevelop.git/commitdiff/5226a43ec7cdaa20f576fc9ba4d0d253300612be

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


[packages/monodevelop] - release 3 (by relup.sh)

2018-10-21 Thread baggins
commit ce22c8dbbf38e2e38e93d016da2fc25010080617
Author: Jan Rękorajski 
Date:   Sun Oct 21 14:34:28 2018 +0200

- release 3 (by relup.sh)

 monodevelop.spec | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
---
diff --git a/monodevelop.spec b/monodevelop.spec
index cd56d8f..c2393bf 100644
--- a/monodevelop.spec
+++ b/monodevelop.spec
@@ -9,7 +9,7 @@ Summary:Mono IDE
 Summary(pl.UTF-8): IDE dla Mono
 Name:  monodevelop
 Version:   5.10.0.871
-Release:   2
+Release:   3
 # most of code is MIT-licensed, some parts LGPL v2
 License:   LGPL v2, MIT
 Group: Development/Tools


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/monodevelop.git/commitdiff/ce22c8dbbf38e2e38e93d016da2fc25010080617

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


[packages/mythtv] - fix missiong major() and minor() defs - rel 11

2018-10-21 Thread baggins
commit aaa586125710c14be614d9d905525c02de8cb132
Author: Jan Rękorajski 
Date:   Sun Oct 21 14:39:29 2018 +0200

- fix missiong major() and minor() defs
- rel 11

 major-minor.patch | 10 ++
 mythtv.spec   |  8 +---
 2 files changed, 15 insertions(+), 3 deletions(-)
---
diff --git a/mythtv.spec b/mythtv.spec
index 3d30eda..a8295c6 100644
--- a/mythtv.spec
+++ b/mythtv.spec
@@ -50,7 +50,7 @@ Summary:  A personal video recorder (PVR) application
 Summary(pl.UTF-8): Osobista aplikacja do nagrywania obrazu (PVR)
 Name:  mythtv
 Version:   0.26.1
-Release:   10
+Release:   11
 License:   GPL v2
 Group: Applications/Multimedia
 Source0:   ftp://ftp.osuosl.org/pub/mythtv/%{name}-%{version}.tar.bz2
@@ -70,6 +70,7 @@ Patch1:   system-zeromq.patch
 Patch2:python-install.patch
 Patch3:moc.patch
 Patch4:cxx11.patch
+Patch5:major-minor.patch
 Patch20:   %{name}-compile_fixes_for_qt_4_7.patch
 Patch30:   %{name}-dshowserver-0.22.patch
 URL:   http://www.mythtv.org/
@@ -355,6 +356,7 @@ Ten pakiet zawiera moduły PHP do tworzenia dodatków dla 
mythtv.
 %patch2  -p1
 %patch3  -p1
 %patch4  -p1
+%patch5  -p1
 %{?with_dshowserver:%patch20 -p1}
 #%patch30 -p1
 
@@ -423,8 +425,8 @@ fi
--disable-ccache \
--disable-distcc \
--compile-type=%{?debug:debug}%{!?debug:release} \
-   --extra-cflags="%{rpmcflags} -fomit-frame-pointer -fno-devirtualize 
-Wno-narrowing" \
-   --extra-cxxflags="%{rpmcxxflags} -fomit-frame-pointer -fno-devirtualize 
-Wno-narrowing" \
+   --extra-cflags="%{rpmcflags} -fpermissive -fomit-frame-pointer 
-fno-devirtualize -Wno-narrowing" \
+   --extra-cxxflags="%{rpmcxxflags} -fpermissive -fomit-frame-pointer 
-fno-devirtualize -Wno-narrowing" \
 %if %{with cpu_autodetect}
--enable-proc-opt \
 %else
diff --git a/major-minor.patch b/major-minor.patch
new file mode 100644
index 000..c38c53d
--- /dev/null
+++ b/major-minor.patch
@@ -0,0 +1,10 @@
+--- mythtv-0.26.1/libs/libmythtv/videosource.cpp~  2013-08-15 
16:44:02.0 +0200
 mythtv-0.26.1/libs/libmythtv/videosource.cpp   2018-10-21 
14:27:32.946282606 +0200
+@@ -5,6 +5,7 @@
+ #include 
+ #include 
+ #include 
++#include 
+ 
+ // C++ headers
+ #include 


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/mythtv.git/commitdiff/aaa586125710c14be614d9d905525c02de8cb132

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


[packages/kicad] - updated to 5.0.1

2018-10-21 Thread bszx
commit 71a2e80356ceca630a2359249e2d58f37a0ceeb4
Author: Bartek Szady 
Date:   Sun Oct 21 14:59:03 2018 +0200

- updated to 5.0.1

 kicad.spec | 18 +-
 1 file changed, 9 insertions(+), 9 deletions(-)
---
diff --git a/kicad.spec b/kicad.spec
index 2e88e94..1f8140a 100644
--- a/kicad.spec
+++ b/kicad.spec
@@ -4,25 +4,25 @@
 Summary:   KiCad - is a GPL'd suite of programs for EDA
 Summary(pl.UTF-8): KiCad - zestaw programów na licencji GPL zaliczany do 
kategorii EDA
 Name:  kicad
-Version:   5.0.0
-Release:   2
+Version:   5.0.1
+Release:   1
 Epoch: 1
 License:   GPL v2+
 Group: X11/Applications
 Source0:   
https://launchpad.net/kicad/5.0/%{version}/+download/%{name}-%{version}.tar.xz
-# Source0-md5: 99a39910a3f7d8320b605bb9a9ff3af8
+# Source0-md5: b76a87ec9a14d502326de9102c75fb05
 Source1:   
https://github.com/KiCad/kicad-doc/archive/%{version}/%{name}-doc-%{version}.tar.gz
-# Source1-md5: 0d6e78e1087a04c8e6385f76c0727bf7
+# Source1-md5: 22525368367fa27cb89957a47c3cefe4
 Source2:   
https://github.com/KiCad/kicad-i18n/archive/%{version}/%{name}-i18n-%{version}.tar.gz
-# Source2-md5: 1e1503b89c575c80ff51583d40667c14
+# Source2-md5: 8089b0b09b0f74daf630695113c5ca10
 Source3:   
https://github.com/KiCad/kicad-symbols/archive/%{version}/%{name}-symbols-%{version}.tar.gz
-# Source3-md5: 03cb33312062571118a277bafd01c06d
+# Source3-md5: 76a2a87bd420090dff4928907fb94ece
 Source4:   
https://github.com/KiCad/kicad-footprints/archive/%{version}/%{name}-footprints-%{version}.tar.gz
-# Source4-md5: e8ce40c47b108280d7878f858899ab10
+# Source4-md5: a3a06afd7518d627ef675d3027f00acb
 Source5:   
https://github.com/KiCad/kicad-packages3D/archive/%{version}/%{name}-packages3D-%{version}.tar.gz
-# Source5-md5: aac66499bbbd9f21ad3e90af7ba854d2
+# Source5-md5: b1444fde8313b68b59f77e80dba94d0b
 Source6:   
https://github.com/KiCad/kicad-templates/archive/%{version}/%{name}-templates-%{version}.tar.gz
-# Source6-md5: d8a5c09a33588a73eb8552c83bdb0381
+# Source6-md5: 4240769799635e18c02da87791a088a6
 Patch0:nostrip.patch
 # https://code.launchpad.net/~lkundrak/kicad/appstream-data/+merge/293391
 Patch1:lto.patch


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/kicad.git/commitdiff/71a2e80356ceca630a2359249e2d58f37a0ceeb4

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


DISTFILES: kicad: kicad-5.0.1.tar.xz kicad-doc-5.0.1.tar.gz kicad-i18n-5.0.1.tar.gz kicad-symbols-5.0.1.tar.gz kicad-footprints-5.0.1.tar.gz kicad-packages3D-5.0.1.tar.gz kicad-templates-5.0.1.tar.gz

2018-10-21 Thread bszx
Request by: bszx


Files fetched: 7

STORED: https://launchpad.net/kicad/5.0/5.0.1/+download/kicad-5.0.1.tar.xz
b76a87ec9a14d502326de9102c75fb05  kicad-5.0.1.tar.xz
Size: 14241544 bytes
STORED: https://github.com/KiCad/kicad-doc/archive/5.0.1/kicad-doc-5.0.1.tar.gz
22525368367fa27cb89957a47c3cefe4  kicad-doc-5.0.1.tar.gz
Size: 68998124 bytes
STORED: 
https://github.com/KiCad/kicad-i18n/archive/5.0.1/kicad-i18n-5.0.1.tar.gz
8089b0b09b0f74daf630695113c5ca10  kicad-i18n-5.0.1.tar.gz
Size: 4062609 bytes
STORED: 
https://github.com/KiCad/kicad-symbols/archive/5.0.1/kicad-symbols-5.0.1.tar.gz
76a2a87bd420090dff4928907fb94ece  kicad-symbols-5.0.1.tar.gz
Size: 2715790 bytes
STORED: 
https://github.com/KiCad/kicad-footprints/archive/5.0.1/kicad-footprints-5.0.1.tar.gz
a3a06afd7518d627ef675d3027f00acb  kicad-footprints-5.0.1.tar.gz
Size: 5074166 bytes
STORED: 
https://github.com/KiCad/kicad-packages3D/archive/5.0.1/kicad-packages3D-5.0.1.tar.gz
b1444fde8313b68b59f77e80dba94d0b  kicad-packages3D-5.0.1.tar.gz
Size: 791951390 bytes
STORED: 
https://github.com/KiCad/kicad-templates/archive/5.0.1/kicad-templates-5.0.1.tar.gz
4240769799635e18c02da87791a088a6  kicad-templates-5.0.1.tar.gz
Size: 1621185 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/alsa-lib] - release 2: added conf.d dirs

2018-10-21 Thread qboosh
commit f50a2c4c06a0a2fb659212de4f322ab12abd888e
Author: Jakub Bogusz 
Date:   Sun Oct 21 15:16:09 2018 +0200

- release 2: added conf.d dirs

 alsa-lib.spec | 16 +---
 1 file changed, 13 insertions(+), 3 deletions(-)
---
diff --git a/alsa-lib.spec b/alsa-lib.spec
index bd81eea..824 100644
--- a/alsa-lib.spec
+++ b/alsa-lib.spec
@@ -14,7 +14,7 @@ Summary(ru.UTF-8):Библиотека API для работы с драйве
 Summary(uk.UTF-8): Бібліотека API для роботи з драйвером ALSA
 Name:  alsa-lib
 Version:   1.1.7
-Release:   1
+Release:   2
 License:   LGPL v2.1+
 Group: Libraries
 Source0:   ftp://ftp.alsa-project.org/pub/lib/%{name}-%{version}.tar.bz2
@@ -234,7 +234,7 @@ cd ..
 
 %install
 rm -rf $RPM_BUILD_ROOT
-install -d $RPM_BUILD_ROOT{/%{_lib},%{_sysconfdir}/alsa,/etc/modprobe.d}
+install -d 
$RPM_BUILD_ROOT{/%{_lib},%{_sysconfdir}/alsa/conf.d,%{_datadir}/alsa/alsa.conf.d,/etc/modprobe.d}
 
 %if %{with static_libs}
 %{__make} -C build-static/src install-libLTLIBRARIES \
@@ -272,8 +272,18 @@ rm -rf $RPM_BUILD_ROOT
 %attr(755,root,root) %{_libdir}/alsa-lib/smixer/smixer-ac97.so
 %attr(755,root,root) %{_libdir}/alsa-lib/smixer/smixer-hda.so
 %attr(755,root,root) %{_libdir}/alsa-lib/smixer/smixer-sbase.so
-%{_datadir}/alsa
+%dir %{_datadir}/alsa
+%{_datadir}/alsa/cards
+%{_datadir}/alsa/pcm
+%{_datadir}/alsa/topology
+%{_datadir}/alsa/ucm
+%{_datadir}/alsa/alsa.conf
+# directory for "global" config files (not accessed directly, but through 
symlinks in %{_sysconfdir}/alsa/conf.d)
+%dir %{_datadir}/alsa/alsa.conf.d
+%{_datadir}/alsa/smixer.conf
 %dir %{_sysconfdir}/alsa
+# directory for "local" config files (loaded from %{_datadir}/alsa/alsa.conf)
+%dir %{_sysconfdir}/alsa/conf.d
 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/asound.conf
 %config(noreplace) %verify(not md5 mtime size) /etc/modprobe.d/alsa-base.conf
 


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/alsa-lib.git/commitdiff/f50a2c4c06a0a2fb659212de4f322ab12abd888e

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


[packages/nx] - partial fix for openssl 1.1.1

2018-10-21 Thread baggins
commit 0cd1deb8301038b3d875bd33864a43d4b8b1b0da
Author: Jan Rękorajski 
Date:   Sun Oct 21 15:17:31 2018 +0200

- partial fix for openssl 1.1.1

 nx.spec |   2 +
 openssl-1.1.1.patch | 210 
 2 files changed, 212 insertions(+)
---
diff --git a/nx.spec b/nx.spec
index d20cae1..984260d 100644
--- a/nx.spec
+++ b/nx.spec
@@ -41,6 +41,7 @@ Patch1:   nx-syslibs.patch
 Patch2:nx-libpng15.patch
 Patch3:format-security.patch
 Patch4:openssl.patch
+Patch5:openssl-1.1.1.patch
 URL:   http://www.nomachine.com/
 #BuildRequires:Xaw3d-devel
 BuildRequires: autoconf
@@ -94,6 +95,7 @@ zdalnych sesjach X11 nawet przy prędkosci 56k albo większej.
 %patch2 -p0
 %patch3 -p1
 %patch4 -p1
+%patch5 -p1
 
 cat <>nx-X11/config/cf/host.def
 #define UseRpath YES
diff --git a/openssl-1.1.1.patch b/openssl-1.1.1.patch
new file mode 100644
index 000..273d119
--- /dev/null
+++ b/openssl-1.1.1.patch
@@ -0,0 +1,210 @@
+diff -ur nx-3.5.0/nxssh/authfd.c nx-3.5.0-openssl111/nxssh/authfd.c
+--- nx-3.5.0/nxssh/authfd.c2006-09-01 07:38:36.0 +0200
 nx-3.5.0-openssl111/nxssh/authfd.c 2018-10-21 14:58:30.300117373 +0200
+@@ -330,13 +330,13 @@
+   case 1:
+   key = key_new(KEY_RSA1);
+   bits = buffer_get_int(&auth->identities);
+-  buffer_get_bignum(&auth->identities, key->rsa->e);
+-  buffer_get_bignum(&auth->identities, key->rsa->n);
++  buffer_get_bignum(&auth->identities, RSA_get0_e(key->rsa));
++  buffer_get_bignum(&auth->identities, RSA_get0_n(key->rsa));
+   *comment = buffer_get_string(&auth->identities, NULL);
+-  keybits = BN_num_bits(key->rsa->n);
++  keybits = BN_num_bits(RSA_get0_n(key->rsa));
+   if (keybits < 0 || bits != (u_int)keybits)
+   logit("Warning: identity keysize mismatch: actual %d, 
announced %u",
+-  BN_num_bits(key->rsa->n), bits);
++  BN_num_bits(RSA_get0_n(key->rsa)), bits);
+   break;
+   case 2:
+   blob = buffer_get_string(&auth->identities, &blen);
+@@ -380,9 +380,9 @@
+   }
+   buffer_init(&buffer);
+   buffer_put_char(&buffer, SSH_AGENTC_RSA_CHALLENGE);
+-  buffer_put_int(&buffer, BN_num_bits(key->rsa->n));
+-  buffer_put_bignum(&buffer, key->rsa->e);
+-  buffer_put_bignum(&buffer, key->rsa->n);
++  buffer_put_int(&buffer, BN_num_bits(RSA_get0_n(key->rsa)));
++  buffer_put_bignum(&buffer, RSA_get0_e(key->rsa));
++  buffer_put_bignum(&buffer, RSA_get0_n(key->rsa));
+   buffer_put_bignum(&buffer, challenge);
+   buffer_append(&buffer, session_id, 16);
+   buffer_put_int(&buffer, response_type);
+@@ -459,14 +459,14 @@
+ static void
+ ssh_encode_identity_rsa1(Buffer *b, RSA *key, const char *comment)
+ {
+-  buffer_put_int(b, BN_num_bits(key->n));
+-  buffer_put_bignum(b, key->n);
+-  buffer_put_bignum(b, key->e);
+-  buffer_put_bignum(b, key->d);
++  buffer_put_int(b, BN_num_bits(RSA_get0_n(key)));
++  buffer_put_bignum(b, RSA_get0_n(key));
++  buffer_put_bignum(b, RSA_get0_e(key));
++  buffer_put_bignum(b, RSA_get0_d(key));
+   /* To keep within the protocol: p < q for ssh. in SSL p > q */
+-  buffer_put_bignum(b, key->iqmp);/* ssh key->u */
+-  buffer_put_bignum(b, key->q);   /* ssh key->p, SSL key->q */
+-  buffer_put_bignum(b, key->p);   /* ssh key->q, SSL key->p */
++  buffer_put_bignum(b, RSA_get0_iqmp(key));   /* ssh key->u */
++  buffer_put_bignum(b, RSA_get0_q(key));  /* ssh key->p, SSL key->q */
++  buffer_put_bignum(b, RSA_get0_p(key));  /* ssh key->q, SSL key->p */
+   buffer_put_cstring(b, comment);
+ }
+ 
+@@ -476,19 +476,19 @@
+   buffer_put_cstring(b, key_ssh_name(key));
+   switch (key->type) {
+   case KEY_RSA:
+-  buffer_put_bignum2(b, key->rsa->n);
+-  buffer_put_bignum2(b, key->rsa->e);
+-  buffer_put_bignum2(b, key->rsa->d);
+-  buffer_put_bignum2(b, key->rsa->iqmp);
+-  buffer_put_bignum2(b, key->rsa->p);
+-  buffer_put_bignum2(b, key->rsa->q);
++  buffer_put_bignum2(b, RSA_get0_n(key->rsa));
++  buffer_put_bignum2(b, RSA_get0_e(key->rsa));
++  buffer_put_bignum2(b, RSA_get0_d(key->rsa));
++  buffer_put_bignum2(b, RSA_get0_iqmp(key->rsa));
++  buffer_put_bignum2(b, RSA_get0_p(key->rsa));
++  buffer_put_bignum2(b, RSA_get0_q(key->rsa));
+   break;
+   case KEY_DSA:
+-  buffer_put_bignum2(b, key->dsa->p);
+-  buffer_put_bignum2(b, key->dsa->q);
+-  buffer_put_bignum2(b, key->dsa->g);
+-  buffer_put_bignum2(b, key->dsa->pub_key);
+-  buffer_put_bignum2(

[packages/freeradius-server] - rel 1

2018-10-21 Thread baggins
commit b4151e316e82b528b6ecf190193dc79d47f3b32f
Author: Jan Rękorajski 
Date:   Sun Oct 21 15:18:00 2018 +0200

- rel 1

 freeradius-server.spec | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
---
diff --git a/freeradius-server.spec b/freeradius-server.spec
index 38d2249..4bd5645 100644
--- a/freeradius-server.spec
+++ b/freeradius-server.spec
@@ -16,7 +16,7 @@ Summary:  High-performance and highly configurable RADIUS 
server
 Summary(pl.UTF-8): Szybki i wysoce konfigurowalny serwer RADIUS
 Name:  freeradius-server
 Version:   3.0.17
-Release:   0.1
+Release:   1
 License:   GPL v2
 Group: Networking/Daemons/Radius
 Source0:   ftp://ftp.freeradius.org/pub/radius/%{name}-%{version}.tar.bz2


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/freeradius-server.git/commitdiff/b4151e316e82b528b6ecf190193dc79d47f3b32f

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


[packages/openvswitch] - rel 1

2018-10-21 Thread baggins
commit 8ca8b67c5407c3c6b45eac78e8b1c230cbd14829
Author: Jan Rękorajski 
Date:   Sun Oct 21 15:23:32 2018 +0200

- rel 1

 openvswitch.spec | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
---
diff --git a/openvswitch.spec b/openvswitch.spec
index cb02c30..e3512e8 100644
--- a/openvswitch.spec
+++ b/openvswitch.spec
@@ -21,7 +21,7 @@ exit 1
 %define_enable_debug_packages  0
 %endif
 
-%definerel 0.1
+%definerel 1
 %definepname   openvswitch
 Summary:   Production Quality, Multilayer Open Virtual Switch
 #Summary(pl.UTF-8):-


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/openvswitch.git/commitdiff/8ca8b67c5407c3c6b45eac78e8b1c230cbd14829

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


[packages/mupdf] - fixed curl dependency, release 3

2018-10-21 Thread qboosh
commit 1f72a42c82a53dbd3260176270df2b1060203d92
Author: Jakub Bogusz 
Date:   Sun Oct 21 15:38:58 2018 +0200

- fixed curl dependency, release 3

 mupdf.spec | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/mupdf.spec b/mupdf.spec
index 2afc3fb..2851121 100644
--- a/mupdf.spec
+++ b/mupdf.spec
@@ -2,7 +2,7 @@ Summary:MuPDF - lightweight PDF, XPS and CBZ viewer and 
parser/rendering librar
 Summary(pl.UTF-8): MuPDF - lekka przeglądarka PDF, XPS, CBZ
 Name:  mupdf
 Version:   1.14.0
-Release:   2
+Release:   3
 License:   AGPL v3+
 Group: Applications/Text
 Source0:   
https://www.mupdf.com/downloads/archive/%{name}-%{version}-source.tar.gz
@@ -24,7 +24,7 @@ BuildRequires:pkgconfig
 BuildRequires: xorg-lib-libX11-devel
 BuildRequires: xorg-lib-libXext-devel
 BuildRequires: zlib-devel >= 1.2.11
-Requires:  curl-libs-devel >= 7.51.0
+Requires:  curl-libs >= 7.51.0
 Requires:  freetype >= 1:2.9.1
 Requires:  harfbuzz >= 1.9.0
 Requires:  jbig2dec >= 0.14


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/mupdf.git/commitdiff/1f72a42c82a53dbd3260176270df2b1060203d92

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


DISTFILES: pam-pam_p11: pam_p11-0.2.0.tar.gz

2018-10-21 Thread baggins
Request by: baggins


Files fetched: 1

STORED: 
https://github.com/OpenSC/pam_p11/releases/download/pam_p11-0.2.0/pam_p11-0.2.0.tar.gz
05ca327726120bd6cd31ac298691a762  pam_p11-0.2.0.tar.gz
Size: 417550 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/pam-pam_p11] - up to 0.2.0

2018-10-21 Thread baggins
commit 4358cf88287f1b98505b49b563cdf9a02a7dea4b
Author: Jan Rękorajski 
Date:   Sun Oct 21 15:42:18 2018 +0200

- up to 0.2.0

 openssl-1.1.1.patch | 11 +++
 pam-pam_p11.spec| 11 ++-
 2 files changed, 17 insertions(+), 5 deletions(-)
---
diff --git a/pam-pam_p11.spec b/pam-pam_p11.spec
index e2d1baf..2d9e0de 100644
--- a/pam-pam_p11.spec
+++ b/pam-pam_p11.spec
@@ -1,13 +1,14 @@
 Summary:   PAM module for using cryptographic tokens
 Summary(pl.UTF-8): Moduł PAM umożliwiający używanie tokenów 
kryptograficznych
 Name:  pam-pam_p11
-Version:   0.1.6
-Release:   2
+Version:   0.2.0
+Release:   1
 License:   LGPL v2.1+
 Group: Libraries
 #Source0Download: https://github.com/OpenSC/pam_p11/releases
 Source0:   
https://github.com/OpenSC/pam_p11/releases/download/pam_p11-%{version}/pam_p11-%{version}.tar.gz
-# Source0-md5: 2198d5451654ca5c1736343544cc78f5
+# Source0-md5: 05ca327726120bd6cd31ac298691a762
+Patch0:openssl-1.1.1.patch
 URL:   https://github.com/OpenSC/pam_p11
 BuildRequires: libp11-devel >= 0.2.4
 BuildRequires: openssl-devel >= 0.9.7d
@@ -32,6 +33,7 @@ karty procesorowe i tokeny kryptograficzne USB.
 
 %prep
 %setup -q -n pam_p11-%{version}
+%patch0 -p1
 
 %build
 %configure \
@@ -54,5 +56,4 @@ rm -rf $RPM_BUILD_ROOT
 %files
 %defattr(644,root,root,755)
 %doc NEWS
-%attr(755,root,root) /%{_lib}/security/pam_p11_opensc.so
-%attr(755,root,root) /%{_lib}/security/pam_p11_openssh.so
+%attr(755,root,root) /%{_lib}/security/pam_p11.so
diff --git a/openssl-1.1.1.patch b/openssl-1.1.1.patch
new file mode 100644
index 000..0c968d8
--- /dev/null
+++ b/openssl-1.1.1.patch
@@ -0,0 +1,11 @@
+--- pam_p11-0.2.0/src/pam_p11.c~   2018-05-04 16:52:04.0 +0200
 pam_p11-0.2.0/src/pam_p11.c2018-10-21 15:40:13.939277013 +0200
+@@ -590,7 +590,7 @@
+   || !EVP_SignInit(md_ctx, md)
+   || !EVP_SignUpdate(md_ctx, challenge, sizeof challenge)
+   || !EVP_SignFinal(md_ctx, signature, &siglen, privkey)
+-  || !EVP_MD_CTX_cleanup(md_ctx)
++  || !EVP_MD_CTX_reset(md_ctx)
+   || !EVP_VerifyInit(md_ctx, md)
+   || !EVP_VerifyUpdate(md_ctx, challenge, sizeof 
challenge)
+   || 1 != EVP_VerifyFinal(md_ctx, signature, siglen, 
pubkey)) {


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/pam-pam_p11.git/commitdiff/4358cf88287f1b98505b49b563cdf9a02a7dea4b

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


[packages/alsa-plugins] - updated to 1.1.7 - removed obsolete no-lavcreate patch - lavcrate renamed to lavrate (following up

2018-10-21 Thread qboosh
commit a523c2119cd2fe8c6b507fd78224978e71f26cc8
Author: Jakub Bogusz 
Date:   Sun Oct 21 15:54:54 2018 +0200

- updated to 1.1.7
- removed obsolete no-lavcreate patch
- lavcrate renamed to lavrate (following upstream)

 alsa-plugins.spec  | 85 +++---
 no-lavcreate.patch | 11 ---
 2 files changed, 55 insertions(+), 41 deletions(-)
---
diff --git a/alsa-plugins.spec b/alsa-plugins.spec
index 534f569..47013f6 100644
--- a/alsa-plugins.spec
+++ b/alsa-plugins.spec
@@ -1,20 +1,19 @@
 #
 # Conditional build:
-%bcond_withlavcrate# build lavcrate plugin (requires ffmpeg < 4)
+%bcond_withlavrate # build lavrate plugin (requires ffmpeg < 4)
 #
 Summary:   Advanced Linux Sound Architecture - plugins
 Summary(pl.UTF-8): Advanced Linux Sound Architecture - wtyczki
 Name:  alsa-plugins
-Version:   1.1.6
-Release:   2
+Version:   1.1.7
+Release:   1
 License:   LGPL v2.1+
 Group: Libraries
 Source0:   
ftp://ftp.alsa-project.org/pub/plugins/%{name}-%{version}.tar.bz2
-# Source0-md5: 8387279e99feeb2ecffaac5f293223d7
+# Source0-md5: c86cd9c069cfec2e8a491aaa7d3c584c
 Source1:   %{name}-pulse.conf
-Patch0:no-lavcreate.patch
 URL:   http://www.alsa-project.org/
-BuildRequires: alsa-lib-devel >= 1.0.18
+BuildRequires: alsa-lib-devel >= 1.1.6
 BuildRequires: autoconf >= 2.59
 BuildRequires: automake
 BuildRequires: dbus-devel >= 0.35
@@ -39,7 +38,7 @@ Wtyczki ALSA.
 Summary:   A52 output plugin for ALSA
 Summary(pl.UTF-8): Wtyczka wyjściowa A52 dla systemu ALSA
 Group: Libraries
-Requires:  alsa-lib >= 1.0.18
+Requires:  alsa-lib >= 1.1.6
 
 %description a52
 A52 output plugin for ALSA.
@@ -51,7 +50,7 @@ Wtyczka wyjściowa A52 dla systemu ALSA.
 Summary:   Controls for an Arcam AV amplifier
 Summary(pl.UTF-8): Kontrolki do wzmacniacza Arcam AV
 Group: Libraries
-Requires:  alsa-lib >= 1.0.18
+Requires:  alsa-lib >= 1.1.6
 
 %description arcam-av
 This plugin exposes the controls for an Arcam AV amplifier (see:
@@ -65,7 +64,7 @@ Wtyczka ta umożliwia kontrolę nad wzmacniaczem Arcam AV
 Summary:   JACK <--> ALSA PCM plugin
 Summary(pl.UTF-8): Wtyczka PCM JACK <--> ALSA
 Group: Libraries
-Requires:  alsa-lib >= 1.0.18
+Requires:  alsa-lib >= 1.1.6
 Requires:  jack-audio-connection-kit >= 0.98
 
 %description jack
@@ -79,23 +78,24 @@ Kit). Aplikacje korzystające natywnie z biblioteki ALSA 
mogą w sposób
 przezroczysty działać z jackd zarówno przy odtwarzaniu dźwięku, jak i
 nagrywaniu.
 
-%package lavcrate
+%package lavrate
 Summary:   libavcodec-based rate converter plugin for ALSA
 Summary(pl.UTF-8): Wtyczka konwertera tempa dla systemu ALSA oparta na 
libavcodec
 Group: Libraries
-Requires:  alsa-lib >= 1.0.18
+Requires:  alsa-lib >= 1.1.6
+Obsoletes: alsa-plugins-lavcrate < 1.1.7
 
-%description lavcrate
+%description lavrate
 libavcodec-based rate converter plugin for ALSA.
 
-%description lavcrate -l pl.UTF-8
+%description lavrate -l pl.UTF-8
 Wtyczka konwertera tempa dla systemu ALSA oparta na libavcodec.
 
 %package maemo
 Summary:   ALSA plugins for Nokia DSP
 Summary(pl.UTF-8): Wtyczki systemu ALSA dla DSP Nokii
 Group: Libraries
-Requires:  alsa-lib >= 1.0.18
+Requires:  alsa-lib >= 1.1.6
 
 %description maemo
 ALSA plugins for Nokia DSP.
@@ -107,7 +107,7 @@ Wtyczki systemu ALSA dla DSP Nokii.
 Summary:   Up/down mixing plugins for ALSA
 Summary(pl.UTF-8): Wtyczki up/down-mix dla systemu ALSA
 Group: Libraries
-Requires:  alsa-lib >= 1.0.18
+Requires:  alsa-lib >= 1.1.6
 
 %description mix
 Up/down mixing plugins for ALSA.
@@ -119,7 +119,7 @@ Wtyczki up/down-mix dla systemu ALSA.
 Summary:   OSS <--> ALSA plugins
 Summary(pl.UTF-8): Wtyczki OSS <--> ALSA
 Group: Libraries
-Requires:  alsa-lib >= 1.0.18
+Requires:  alsa-lib >= 1.1.6
 
 %description oss
 These plugins converts the ALSA API over OSS API. ALSA native
@@ -133,7 +133,7 @@ natywnie z biblioteki ALSA mogą działać na sterownikach OSS.
 Summary:   PulseAudio <--> ALSA plugins
 Summary(pl.UTF-8): Wtyczki PulseAudio <--> ALSA
 Group: Libraries
-Requires:  alsa-lib >= 1.0.18
+Requires:  alsa-lib >= 1.1.6
 Requires:  pulseaudio-libs >= 0.9.11
 Obsoletes: alsa-plugins-polyp
 
@@ -151,7 +151,7 @@ odtwarzać i nagrywać dźwięk poprzez sieć.
 Summary:   libsamplerate-based rate converter plugin for ALSA
 Summary(pl.UTF-8): Wtyczka konwertera tempa dla systemu ALSA oparta na 
libsamplerate
 Group: Libraries
-Requires:  alsa-lib >= 1.0.18
+Requires:  alsa-lib >= 1.1.6
 
 %description samplerate
 libsamplerate-based rate converter plugin for ALSA.
@@ -164,7 +164,7 @@ Summary:speex-based PCM plugin for ALSA
 Summary(pl.UTF-8): Wtyczka PCM speex dla systemu ALSA
 License:   BSD
 Group:   

DISTFILES: alsa-plugins: alsa-plugins-1.1.7.tar.bz2

2018-10-21 Thread qboosh
Request by: qboosh


Files fetched: 1

STORED: ftp://ftp.alsa-project.org/pub/plugins/alsa-plugins-1.1.7.tar.bz2
c86cd9c069cfec2e8a491aaa7d3c584c  alsa-plugins-1.1.7.tar.bz2
Size: 369866 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/alsa-plugins] - enable lavrate plugins by default

2018-10-21 Thread qboosh
commit 1492ea023e918162c6ca8dc33ce3450cab4a5429
Author: Jakub Bogusz 
Date:   Sun Oct 21 15:58:25 2018 +0200

- enable lavrate plugins by default

 alsa-plugins.spec | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
---
diff --git a/alsa-plugins.spec b/alsa-plugins.spec
index 47013f6..af91e08 100644
--- a/alsa-plugins.spec
+++ b/alsa-plugins.spec
@@ -1,6 +1,6 @@
 #
 # Conditional build:
-%bcond_withlavrate # build lavrate plugin (requires ffmpeg < 4)
+%bcond_without lavrate # lavrate plugins
 #
 Summary:   Advanced Linux Sound Architecture - plugins
 Summary(pl.UTF-8): Advanced Linux Sound Architecture - wtyczki


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/alsa-plugins.git/commitdiff/1492ea023e918162c6ca8dc33ce3450cab4a5429

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


[packages/cairo] - finished updating dependencies (freetype 2.5.1 for colour fonts feature) - handle glesv3 backend (

2018-10-21 Thread qboosh
commit ba3569743dc73d7406a388331d8b8969fba849fd
Author: Jakub Bogusz 
Date:   Sun Oct 21 16:02:54 2018 +0200

- finished updating dependencies (freetype 2.5.1 for colour fonts feature)
- handle glesv3 backend (disabled by default)

 cairo.spec | 29 +
 1 file changed, 21 insertions(+), 8 deletions(-)
---
diff --git a/cairo.spec b/cairo.spec
index 99df5fc..1fa2599 100644
--- a/cairo.spec
+++ b/cairo.spec
@@ -5,7 +5,8 @@
 %bcond_withdirectfb# DirectFB surface backend
 %bcond_withdrm # DRM surface backend
 %bcond_withgl  # OpenGL surface backend, 
http://lists.pld-linux.org/mailman/pipermail/pld-devel-en/2015-May/024387.html
-%bcond_withglesv2  # OpenGLESv2 surface backend (mutually 
exclusive with gl)
+%bcond_withglesv2  # OpenGLESv2 surface backend (mutually 
exclusive with gl and glesv3)
+%bcond_withglesv3  # OpenGLESv3 surface backend (mutually 
exclusive with gl and glesv2)
 %bcond_withopenvg  # OpenVG surface backend
 %bcond_without pdf # PDF surface backend
 %bcond_without ps  # PS surface backend
@@ -18,9 +19,12 @@
 %endif
 %bcond_withtests   # perform tests (can fail due to out of memory)
 
-%if %{with glesv2}
+%if %{with glesv2} || %{with glesv3}
 %undefine  with_gl
 %endif
+%if %{with glesv3}
+%undefine  with_glesv2
+%endif
 Summary:   Cairo - multi-platform 2D graphics library
 Summary(pl.UTF-8): Cairo - wieloplatformowa biblioteka graficzna 2D
 Name:  cairo
@@ -34,7 +38,7 @@ Patch0:   %{name}-link.patch
 Patch1:%{name}-gobject-deps.patch
 URL:   https://www.cairographics.org/
 %{?with_directfb:BuildRequires:DirectFB-devel}
-%if %{with gl} || %{with glesv2} || %{with openvg}
+%if %{with gl} || %{with glesv2} || %{with glesv3} || %{with openvg}
 BuildRequires: EGL-devel >= 1.1
 %endif
 %if %{with gl} || %{with openvg}
@@ -42,6 +46,7 @@ BuildRequires:OpenGL-GLX-devel
 %endif
 %{?with_gl:BuildRequires:  OpenGL-devel}
 %{?with_glesv2:BuildRequires:  OpenGLESv2-devel >= 2.0}
+%{?with_glesv3:BuildRequires:  OpenGLESv3-devel >= 3.0}
 %{?with_openvg:BuildRequires:  OpenVG-devel}
 %{?with_qt:BuildRequires:  QtGui-devel >= 4.4.0}
 BuildRequires: autoconf >= 2.63
@@ -49,8 +54,11 @@ BuildRequires:   automake >= 1:1.11
 BuildRequires: binutils-devel
 %{?with_cogl:BuildRequires:cogl-devel}
 BuildRequires: fontconfig-devel >= 2.2.95
-BuildRequires: freetype-devel >= 1:2.3.0
+BuildRequires: freetype-devel >= 1:2.5.1
 BuildRequires: glib2-devel >= 1:2.14
+%if %{with svg} && %{with tests}
+BuildRequires: gtk+2-devel >= 1:2.0
+%endif
 %{?with_apidocs:BuildRequires: gtk-doc >= 1.15}
 %{?with_drm:BuildRequires: libdrm-devel >= 2.4}
 BuildRequires: libpng-devel >= 2:1.4.0
@@ -83,7 +91,8 @@ BuildRequires:xz
 BuildRequires: zlib-devel
 %{?with_qt:Requires:   QtGui >= 4.4.0}
 Requires:  fontconfig-libs >= 2.2.95
-Requires:  freetype >= 1:2.3.0
+Requires:  freetype >= 1:2.5.1
+%{?with_drm:Requires:  libdrm >= 2.4}
 %{?with_xcb:Requires:  libxcb >= 1.6}
 Requires:  pixman >= 0.30.0
 %{?with_drm:Requires:  udev-libs >= 1:136}
@@ -128,12 +137,13 @@ Requires: EGL-devel >= 1.1
 %endif
 %{?with_gl:Requires:   OpenGL-devel}
 %{?with_glesv2:Requires:   OpenGLESv2-devel >= 2.0}
+%{?with_glesv3:Requires:   OpenGLESv3-devel >= 3.0}
 %{?with_openvg:Requires:   OpenVG-devel}
 %{?with_qt:Requires:   QtGui-devel >= 4.4.0}
 %{?with_cogl:Requires: cogl-devel}
 Requires:  fontconfig-devel >= 2.2.95
-Requires:  freetype-devel >= 1:2.3.0
-%{?with_drm:Requires:  libdrm-devel}
+Requires:  freetype-devel >= 1:2.5.1
+%{?with_drm:Requires:  libdrm-devel >= 2.4}
 Requires:  libpng-devel >= 2:1.4.0
 %{?with_xcb:Requires:  libxcb-devel >= 1.6}
 Requires:  lzo-devel >= 2
@@ -251,6 +261,7 @@ Dokumentacja API Cairo.
%{__enable_disable directfb} \
%{__enable_disable gl} \
%{__enable_disable glesv2} \
+   %{__enable_disable glesv3} \
%{__enable_disable apidocs gtk-doc} \
%{__enable_disable pdf} \
%{__enable_disable ps} \
@@ -308,12 +319,14 @@ rm -rf $RPM_BUILD_ROOT
 %exclude %{_includedir}/cairo/cairo-gobject.h
 %{_pkgconfigdir}/cairo.pc
 %{?with_directfb:%{_pkgconfigdir}/cairo-directfb.pc}
-%if %{with gl} || %{with glesv2} || %{with openvg}
+%if %{with gl} || %{with glesv2} || %{with glesv3} || %{with openvg}
 %{_pkgconfigdir}/cairo-egl.pc
 %endif
 %{_pkgconfigdir}/cairo-fc.pc
 %{_pkgconfigdir}/cairo-ft.pc
 %{?with_gl:%{_pkgconfigdir}/cairo-gl.pc}
+%{?with_glesv2:%{_pkgconfigdir}/cairo-glesv2.pc}
+%{?with_glesv3:%{_pkgconfigdir}/cairo-glesv3.pc}
 %if %{with gl} || %{with openvg}
 %{_pkgconfigdir}/cairo-glx.pc
 %endif


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/cairo.git/commitdiff/ba3569743dc73d7406a388331d8b8969fb

[packages/asterisk] - fix deps, rel 5

2018-10-21 Thread baggins
commit 8065b6312535bb86b143f18c2007dfc5d88c3b7d
Author: Jan Rękorajski 
Date:   Sun Oct 21 16:08:23 2018 +0200

- fix deps, rel 5

 asterisk.spec | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)
---
diff --git a/asterisk.spec b/asterisk.spec
index 785ce0b..44ee4ec 100644
--- a/asterisk.spec
+++ b/asterisk.spec
@@ -52,7 +52,7 @@ Summary:  Asterisk PBX
 Summary(pl.UTF-8): Centralka (PBX) Asterisk
 Name:  asterisk
 Version:   15.6.0
-Release:   4
+Release:   5
 License:   GPL v2
 Group: Applications/System
 Source0:   
http://downloads.digium.com/pub/asterisk/releases/%{name}-%{version}.tar.gz
@@ -522,7 +522,9 @@ Moduł Asteriska wykorzystujący sterowniki dźwięku OSS.
 Summary:   PJSIP Asterisk modules
 Summary(pl.UTF-8): Moduły Asteriska PJSIP
 Group: Applications/Networking
+%if %{with system_pjproject} && %{with pjsip}
 Requires:  pjproject >= 2.6-4
+%endif
 Requires:  %{name} = %{version}-%{release}
 
 %description pjsip


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/asterisk.git/commitdiff/8065b6312535bb86b143f18c2007dfc5d88c3b7d

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


[packages/perl-Git-Wrapper] Created branch master

2018-10-21 Thread baggins
The branch 'master' was created.

Summary of new commits:

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


DISTFILES: perl-Git-Wrapper: Git-Wrapper-0.048.tar.gz

2018-10-21 Thread baggins
Request by: baggins


Files fetched: 1

STORED: http://www.cpan.org/modules/by-module/Git/Git-Wrapper-0.048.tar.gz
8dcb01a160c400b655c0ba69f57f054f  Git-Wrapper-0.048.tar.gz
Size: 31531 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/perl-Git-Wrapper] - new

2018-10-21 Thread baggins
commit 4b67f8286b9291f6995b3c93b8fdb52578edaa14
Author: Jan Rękorajski 
Date:   Sun Oct 21 16:26:57 2018 +0200

- new

 perl-Git-Wrapper.spec | 58 +++
 1 file changed, 58 insertions(+)
---
diff --git a/perl-Git-Wrapper.spec b/perl-Git-Wrapper.spec
new file mode 100644
index 000..11be1c1
--- /dev/null
+++ b/perl-Git-Wrapper.spec
@@ -0,0 +1,58 @@
+#
+# Conditional build:
+%bcond_without tests   # do not perform "make test"
+#
+%definepdirGit
+%definepnamWrapper
+%include   /usr/lib/rpm/macros.perl
+Summary:   Git::Wrapper - Wrap git(7) command-line interface
+Name:  perl-Git-Wrapper
+Version:   0.048
+Release:   1
+# same as perl
+License:   GPL v1+ or Artistic
+Group: Development/Languages/Perl
+Source0:   
http://www.cpan.org/modules/by-module/Git/%{pdir}-%{pnam}-%{version}.tar.gz
+# Source0-md5: 8dcb01a160c400b655c0ba69f57f054f
+URL:   https://metacpan.org/release/Git-Wrapper/
+BuildRequires: perl-devel >= 1:5.8.0
+BuildRequires: rpm-perlprov >= 4.1-13
+BuildRequires: perl-Devel-CheckBin
+%if %{with tests}
+BuildRequires: perl-File-chdir
+BuildRequires: perl-Sort-Versions
+BuildRequires: perl-Test-Deep
+BuildRequires: perl-Test-Exception
+%endif
+BuildArch: noarch
+BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
+
+%description
+Git::Wrapper provides an API for git(7) that uses Perl data structures for
+argument passing, instead of CLI-style --options as Git does.
+
+%prep
+%setup -q -n %{pdir}-%{pnam}-%{version}
+
+%build
+%{__perl} Makefile.PL \
+   INSTALLDIRS=vendor
+%{__make}
+
+%{?with_tests:%{__make} test}
+
+%install
+rm -rf $RPM_BUILD_ROOT
+
+%{__make} pure_install \
+   DESTDIR=$RPM_BUILD_ROOT
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%files
+%defattr(644,root,root,755)
+%doc Changes INSTALL
+%{perl_vendorlib}/Git/*.pm
+%{perl_vendorlib}/Git/Wrapper
+%{_mandir}/man3/*


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/perl-Git-Wrapper.git/commitdiff/4b67f8286b9291f6995b3c93b8fdb52578edaa14

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


[packages/ghostpdl] - up to 9.25

2018-10-21 Thread baggins
commit 838207cc5566814dce4338a81933b0612c6c9253
Author: Jan Rękorajski 
Date:   Sun Oct 21 16:30:58 2018 +0200

- up to 9.25

 ghostpdl.spec | 9 -
 1 file changed, 4 insertions(+), 5 deletions(-)
---
diff --git a/ghostpdl.spec b/ghostpdl.spec
index 9412b05..e3ba579 100644
--- a/ghostpdl.spec
+++ b/ghostpdl.spec
@@ -8,13 +8,13 @@
 Summary:   PostScript, PDF and XPS interpreter and renderer
 Summary(pl.UTF-8): Interpreter i renderer PostScriptu, PDF oraz XPS
 Name:  ghostpdl
-Version:   9.22
-Release:   3
+Version:   9.25
+Release:   1
 License:   AGPL v3+
 Group: Applications/Graphics
 #Source0Download: 
https://github.com/ArtifexSoftware/ghostpdl-downloads/releases
-Source0:   
https://github.com/ArtifexSoftware/ghostpdl-downloads/releases/download/gs922/%{name}-%{version}.tar.xz
-# Source0-md5: 4b6fd53f0b7ffca24cdf98456fecc22e
+Source0:   
https://github.com/ArtifexSoftware/ghostpdl-downloads/releases/download/gs925/%{name}-%{version}.tar.xz
+# Source0-md5: 0ba30d0a36c1f9b09ad280f9fe08004d
 Patch0:%{name}-fonts_locations.patch
 Patch1:%{name}-make.patch
 Patch2:%{name}-system-libs.patch
@@ -98,7 +98,6 @@ oparciu o Ghostscript.
 # (unmodified) libjpeg 9a is built with different configuration 
(D_MAX_BLOCKS_IN_MCU=64)
 # openjpeg is 2.1.0 + fixes; stick to bundled for now
 # lcms2 is 2.6 with some minor future changes (one already in 2.7, two 
post-2.7, extra_xform.h ???)
-%{?with_system_lcms2:%{__rm} -r lcms2}
 %{?with_system_expat:%{__rm} -r expat}
 %{__autoconf}
 %configure \


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/ghostpdl.git/commitdiff/838207cc5566814dce4338a81933b0612c6c9253

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


DISTFILES: ghostpdl: ghostpdl-9.25.tar.xz

2018-10-21 Thread baggins
Request by: baggins


Files fetched: 1

STORED: 
https://github.com/ArtifexSoftware/ghostpdl-downloads/releases/download/gs925/ghostpdl-9.25.tar.xz
0ba30d0a36c1f9b09ad280f9fe08004d  ghostpdl-9.25.tar.xz
Size: 38341720 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/gnuastro] - release 2 (by relup.sh)

2018-10-21 Thread baggins
commit 8fa665ef287af8f9c75babc39bf4bbefc47fd35a
Author: Jan Rękorajski 
Date:   Sun Oct 21 16:35:21 2018 +0200

- release 2 (by relup.sh)

 gnuastro.spec | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
---
diff --git a/gnuastro.spec b/gnuastro.spec
index 1f1f13f..c54e9a9 100644
--- a/gnuastro.spec
+++ b/gnuastro.spec
@@ -6,7 +6,7 @@ Summary:GNU Astronomy Utilities
 Summary(pl.UTF-8): Narzędzia astronomiczne GNU
 Name:  gnuastro
 Version:   0.5
-Release:   1
+Release:   2
 License:   GPL v3+
 Group: Applications/Science
 Source0:   http://ftp.gnu.org/gnu/gnuastro/%{name}-%{version}.tar.lz


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/gnuastro.git/commitdiff/8fa665ef287af8f9c75babc39bf4bbefc47fd35a

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


[packages/libp11] - fix openssl engines dir - rel 2

2018-10-21 Thread baggins
commit 2ad230379d11b42e7e9ae10f2a802425e43502af
Author: Jan Rękorajski 
Date:   Sun Oct 21 16:37:21 2018 +0200

- fix openssl engines dir
- rel 2

 libp11.spec | 10 +-
 1 file changed, 5 insertions(+), 5 deletions(-)
---
diff --git a/libp11.spec b/libp11.spec
index 7218ea5..a2f2aef 100644
--- a/libp11.spec
+++ b/libp11.spec
@@ -2,7 +2,7 @@ Summary:Layer on top of PKCS#11 API to make using 
PKCS#11 implementations easie
 Summary(pl.UTF-8): Warstwa powyżej API PKCS#11 ułatwiająca używanie 
implementacji PKCS#11
 Name:  libp11
 Version:   0.4.9
-Release:   1
+Release:   2
 License:   LGPL v2.1+
 Group: Libraries
 #Source0Download: https://github.com/OpenSC/libp11/releases
@@ -91,7 +91,7 @@ takim jak OpenSC.
 %configure \
--enable-api-doc \
--disable-silent-rules \
-   --with-enginesdir=/%{_lib}/engines
+   --with-enginesdir=/%{_lib}/engines-1.1
 %{__make}
 
 %install
@@ -106,7 +106,7 @@ cp -af examples/* 
$RPM_BUILD_ROOT%{_examplesdir}/%{name}-%{version}
 # obsoleted by pkgconfig
 %{__rm} $RPM_BUILD_ROOT%{_libdir}/libp11.la
 # loadable module
-%{__rm} $RPM_BUILD_ROOT/%{_lib}/engines/*.la
+%{__rm} $RPM_BUILD_ROOT/%{_lib}/engines-1.1/*.la
 # packaged as %doc
 %{__rm} -r $RPM_BUILD_ROOT%{_docdir}/libp11
 
@@ -140,5 +140,5 @@ rm -rf $RPM_BUILD_ROOT
 
 %files -n openssl-engine-pkcs11
 %defattr(644,root,root,755)
-%attr(755,root,root) /%{_lib}/engines/libpkcs11.so
-%attr(755,root,root) /%{_lib}/engines/pkcs11.so
+%attr(755,root,root) /%{_lib}/engines-1.1/libpkcs11.so
+%attr(755,root,root) /%{_lib}/engines-1.1/pkcs11.so


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/libp11.git/commitdiff/2ad230379d11b42e7e9ae10f2a802425e43502af

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


[packages/pidgin] - release 3 (by relup.sh)

2018-10-21 Thread baggins
commit 2541ef2ca3ebf0cd52b538e3583bab96bd49af79
Author: Jan Rękorajski 
Date:   Sun Oct 21 16:49:29 2018 +0200

- release 3 (by relup.sh)

 pidgin.spec | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
---
diff --git a/pidgin.spec b/pidgin.spec
index 29e6a4d..bdcf450 100644
--- a/pidgin.spec
+++ b/pidgin.spec
@@ -49,7 +49,7 @@ Summary(pl.UTF-8):Oparty na GTK+ klient komunikatorów 
obsługujący wiele prot
 Summary(pt_BR.UTF-8):  Um cliente para o AOL Instant Messenger (AIM)
 Name:  pidgin
 Version:   2.13.0
-Release:   2
+Release:   3
 License:   GPL v2+
 Group: Applications/Communications
 Source0:   
http://downloads.sourceforge.net/pidgin/%{name}-%{version}.tar.bz2


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/pidgin.git/commitdiff/2541ef2ca3ebf0cd52b538e3583bab96bd49af79

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


[packages/crossmingw32-harfbuzz] - updated to 2.0.2

2018-10-21 Thread qboosh
commit b2db0705e8962d3966cf6012b038f31b218af5d8
Author: Jakub Bogusz 
Date:   Sun Oct 21 17:04:22 2018 +0200

- updated to 2.0.2

 crossmingw32-harfbuzz.spec | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/crossmingw32-harfbuzz.spec b/crossmingw32-harfbuzz.spec
index 0fd377c..ca882a5 100644
--- a/crossmingw32-harfbuzz.spec
+++ b/crossmingw32-harfbuzz.spec
@@ -1,12 +1,12 @@
 Summary:   HarfBuzz - internationalized text shaping library - MinGW32 
cross version
 Summary(pl.UTF-8): Rasteryzer fontów TrueType - wersja skrośna dla MinGW32
 Name:  crossmingw32-harfbuzz
-Version:   2.0.0
+Version:   2.0.2
 Release:   1
 License:   MIT
 Group: Development/Libraries
 Source0:   
https://www.freedesktop.org/software/harfbuzz/release/harfbuzz-%{version}.tar.bz2
-# Source0-md5: 6d1373dba3e8540c448c6a562f2e0a00
+# Source0-md5: e899bc8ae1acc58f8cd1c116edd4d70b
 Patch0:harfbuzz-win32.patch
 URL:   https://www.freedesktop.org/wiki/HarfBuzz
 BuildRequires: autoconf >= 2.64


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/crossmingw32-harfbuzz.git/commitdiff/b2db0705e8962d3966cf6012b038f31b218af5d8

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


[packages/pspp] - fix building with glibc 2.28+ - rel 4

2018-10-21 Thread baggins
commit 870dcc6a3db0052b97e6c159b0767f9c7cb1c2a0
Author: Jan Rękorajski 
Date:   Sun Oct 21 17:03:25 2018 +0200

- fix building with glibc 2.28+
- rel 4

 glibc.patch | 11 +++
 pspp.spec   |  6 --
 2 files changed, 15 insertions(+), 2 deletions(-)
---
diff --git a/pspp.spec b/pspp.spec
index 9af5ce4..47cc50b 100644
--- a/pspp.spec
+++ b/pspp.spec
@@ -1,6 +1,6 @@
 #
 # Conditional build:
-%bcond_without glade   # Glade extensions for PSPP development
+%bcond_without glade   # Glade extensions for PSPP development
 %bcond_without perl# Perl module
 
 %include   /usr/lib/rpm/macros.perl
@@ -8,7 +8,7 @@ Summary:GNU PSPP - program for statistical analysis of 
sampled data
 Summary(pl.UTF-8): GNU PSPP - program do analizy statystycznej danych 
próbkowanych
 Name:  pspp
 Version:   1.0.1
-Release:   3
+Release:   4
 License:   GPL v3+
 Group: Applications/Science
 Source0:   http://ftp.gnu.org/gnu/pspp/%{name}-%{version}.tar.gz
@@ -16,6 +16,7 @@ Source0:  
http://ftp.gnu.org/gnu/pspp/%{name}-%{version}.tar.gz
 Patch0:%{name}-info.patch
 Patch1:%{name}-perl.patch
 Patch2:%{name}-glade.patch
+Patch3:glibc.patch
 URL:   http://www.gnu.org/software/pspp/
 BuildRequires: autoconf >= 2.63
 BuildRequires: automake
@@ -100,6 +101,7 @@ Rozszerzenia Glade do rozwijania PSPP.
 %patch0 -p1
 %patch1 -p1
 %patch2 -p1
+%patch3 -p1
 
 %build
 %{__libtoolize}
diff --git a/glibc.patch b/glibc.patch
new file mode 100644
index 000..21c2b09
--- /dev/null
+++ b/glibc.patch
@@ -0,0 +1,11 @@
+--- pspp-1.0.1/gl/fseterr.c~   2017-07-16 00:06:38.0 +0200
 pspp-1.0.1/gl/fseterr.c2018-10-21 17:00:26.932630785 +0200
+@@ -29,7 +29,7 @@
+   /* Most systems provide FILE as a struct and the necessary bitmask in
+  , because they need it for implementing getc() and putc() as
+  fast macros.  */
+-#if defined _IO_ftrylockfile || __GNU_LIBRARY__ == 1 /* GNU libc, BeOS, 
Haiku, Linux libc5 */
++#if defined _IO_EOF_SEEN || __GNU_LIBRARY__ == 1 /* GNU libc, BeOS, Haiku, 
Linux libc5 */
+   fp->_flags |= _IO_ERR_SEEN;
+ #elif defined __sferror || defined __DragonFly__ || defined __ANDROID__
+   /* FreeBSD, NetBSD, OpenBSD, DragonFly, Mac OS X, Cygwin, Minix 3, Android 
*/


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/pspp.git/commitdiff/870dcc6a3db0052b97e6c159b0767f9c7cb1c2a0

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


[packages/weston] - fix deps - rel 3

2018-10-21 Thread baggins
commit 124210ef8223ba313769ae402cfdf938d5e739b2
Author: Jan Rękorajski 
Date:   Sun Oct 21 17:05:54 2018 +0200

- fix deps
- rel 3

 weston.spec | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/weston.spec b/weston.spec
index 4afb4f7..cf2628c 100644
--- a/weston.spec
+++ b/weston.spec
@@ -16,7 +16,7 @@ Summary:  Weston - Wayland demos
 Summary(pl.UTF-8): Weston - programy demonstracyjne dla protokołu Wayland
 Name:  weston
 Version:   5.0.0
-Release:   2
+Release:   3
 License:   MIT
 Group: Applications
 #Source0Download: https://wayland.freedesktop.org/releases.html
@@ -151,7 +151,7 @@ Requires:   libva-drm >= 1.2.0
 %{?with_drm:Requires:  mtdev >= 1.1.0}
 %{?with_wlaunch:Requires:  systemd-libs >= 1:209}
 %{?with_drm:Requires:  udev-libs >= 1:136}
-Requires:  wayland-egl >= 9.0-2
+Requires:  wayland-egl
 
 %description libs
 Weston compositor libraries.


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/weston.git/commitdiff/124210ef8223ba313769ae402cfdf938d5e739b2

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


[packages/xtrabackup] - release 3 (by relup.sh)

2018-10-21 Thread baggins
commit accd84a841db384bdaf0561d43867ed45f092788
Author: Jan Rękorajski 
Date:   Sun Oct 21 17:18:59 2018 +0200

- release 3 (by relup.sh)

 xtrabackup.spec | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
---
diff --git a/xtrabackup.spec b/xtrabackup.spec
index 8dd0e38..8883799 100644
--- a/xtrabackup.spec
+++ b/xtrabackup.spec
@@ -3,7 +3,7 @@
 Summary:   XtraBackup online backup for MySQL / InnoDB
 Name:  xtrabackup
 Version:   2.4.12
-Release:   2
+Release:   3
 License:   GPL v2
 Group: Applications/Databases
 Source0:   
https://www.percona.com/downloads/XtraBackup/Percona-XtraBackup-%{version}/source/tarball/percona-%{name}-%{version}.tar.gz


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/xtrabackup.git/commitdiff/accd84a841db384bdaf0561d43867ed45f092788

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


[packages/mono] - do not generate requires if not generating provides - rel 2

2018-10-21 Thread baggins
commit 4bcfa2a10daf13c165b37dd6bf2faddade2d3061
Author: Jan Rękorajski 
Date:   Sun Oct 21 17:35:58 2018 +0200

- do not generate requires if not generating provides
- rel 2

 mono.spec | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)
---
diff --git a/mono.spec b/mono.spec
index c8176fe..6706a1e 100644
--- a/mono.spec
+++ b/mono.spec
@@ -14,7 +14,7 @@ Summary:  Common Language Infrastructure implementation
 Summary(pl.UTF-8): Implementacja Common Language Infrastructure
 Name:  mono
 Version:   4.8.1.0
-Release:   1
+Release:   2
 License:   LGPL v2 (VM), MIT/GPL v2 (C# compilers), MIT/MSPL/Apache v2.0 
(classes), MIT/GPL v2 (tools)
 Group: Development/Languages
 Source0:   
http://download.mono-project.com/sources/mono/%{name}-%{version}.tar.bz2
@@ -27,6 +27,7 @@ Patch7:   %{name}-fix-null-requirement.patch
 Patch8:%{name}-docs-build.patch
 Patch9:%{name}-format-security.patch
 Patch10:   %{name}-x32.patch
+Patch11:   consistent-rpm-prov-req.patch
 URL:   http://www.mono-project.com/
 %if %(test -r /dev/random; echo $?)
 BuildRequires: ACCESSIBLE_/dev/random
@@ -222,6 +223,7 @@ oraz dotGNU.
 %patch8 -p1
 %patch9 -p1
 #patch10 -p1
+%patch11 -p1
 
 # for jay
 cat >> mcs/build/config-default.make <<'EOF'


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/mono.git/commitdiff/4bcfa2a10daf13c165b37dd6bf2faddade2d3061

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


[packages/mono] - missing patch

2018-10-21 Thread baggins
commit b681ddf83efaf49373a6aa7ad406c2cacfd0c4d2
Author: Jan Rękorajski 
Date:   Sun Oct 21 17:37:25 2018 +0200

- missing patch

 consistent-rpm-prov-req.patch | 13 +
 1 file changed, 13 insertions(+)
---
diff --git a/consistent-rpm-prov-req.patch b/consistent-rpm-prov-req.patch
new file mode 100644
index 000..ec4ef0e
--- /dev/null
+++ b/consistent-rpm-prov-req.patch
@@ -0,0 +1,13 @@
+--- mono-4.8.1/scripts/mono-find-requires.in~  2018-10-21 17:31:32.0 
+0200
 mono-4.8.1/scripts/mono-find-requires.in   2018-10-21 17:33:52.246228263 
+0200
+@@ -15,6 +15,10 @@
+ filelist=($(grep -Ev '/usr/doc/|/usr/share/doc/'))
+ monolist=($(printf "%s\n" "${filelist[@]}" | egrep "\\.(exe|dll)\$"))
+ 
++# Only include files with /gac/ in path
++#  (Allows packages to contain private assemblies that don't conflict with 
other packages)
++monolist=($(printf "%s\n" "${monolist[@]}" | egrep "/gac/"))
++
+ # parse .config files to find which native libraries to depend on 
+ #  (target attribute must have double quotes for this to work, ie: 
target="file" )
+ # Add /etc/mono/config ?


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/mono.git/commitdiff/b681ddf83efaf49373a6aa7ad406c2cacfd0c4d2

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


[packages/mono] - fix building with glibc 2.28 - rel 3

2018-10-21 Thread baggins
commit 9fdd02d76eddd2625b09fc056dc7c20f410fa255
Author: Jan Rękorajski 
Date:   Sun Oct 21 18:13:02 2018 +0200

- fix building with glibc 2.28
- rel 3

 glibc.patch | 10 ++
 mono.spec   |  4 +++-
 2 files changed, 13 insertions(+), 1 deletion(-)
---
diff --git a/mono.spec b/mono.spec
index 6706a1e..e119847 100644
--- a/mono.spec
+++ b/mono.spec
@@ -14,7 +14,7 @@ Summary:  Common Language Infrastructure implementation
 Summary(pl.UTF-8): Implementacja Common Language Infrastructure
 Name:  mono
 Version:   4.8.1.0
-Release:   2
+Release:   3
 License:   LGPL v2 (VM), MIT/GPL v2 (C# compilers), MIT/MSPL/Apache v2.0 
(classes), MIT/GPL v2 (tools)
 Group: Development/Languages
 Source0:   
http://download.mono-project.com/sources/mono/%{name}-%{version}.tar.bz2
@@ -28,6 +28,7 @@ Patch8:   %{name}-docs-build.patch
 Patch9:%{name}-format-security.patch
 Patch10:   %{name}-x32.patch
 Patch11:   consistent-rpm-prov-req.patch
+Patch12:   glibc.patch
 URL:   http://www.mono-project.com/
 %if %(test -r /dev/random; echo $?)
 BuildRequires: ACCESSIBLE_/dev/random
@@ -224,6 +225,7 @@ oraz dotGNU.
 %patch9 -p1
 #patch10 -p1
 %patch11 -p1
+%patch12 -p1
 
 # for jay
 cat >> mcs/build/config-default.make <<'EOF'
diff --git a/glibc.patch b/glibc.patch
new file mode 100644
index 000..fe19cef
--- /dev/null
+++ b/glibc.patch
@@ -0,0 +1,10 @@
+--- mono-4.8.1/mono/io-layer/processes.c~  2017-04-12 12:51:21.0 
+0200
 mono-4.8.1/mono/io-layer/processes.c   2018-10-21 17:53:30.117068850 
+0200
+@@ -29,6 +29,7 @@
+ #include 
+ #endif
+ #include 
++#include 
+ 
+ #ifdef HAVE_SYS_WAIT_H
+ #include 


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/mono.git/commitdiff/9fdd02d76eddd2625b09fc056dc7c20f410fa255

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


[packages/crossmingw32-w32api] - package header required by ; release 3

2018-10-21 Thread qboosh
commit 2e8077b877284f14e025732a147949237e18bf31
Author: Jakub Bogusz 
Date:   Sun Oct 21 18:44:25 2018 +0200

- package  header required by ; release 3

 crossmingw32-w32api.spec | 7 ++-
 1 file changed, 6 insertions(+), 1 deletion(-)
---
diff --git a/crossmingw32-w32api.spec b/crossmingw32-w32api.spec
index 717b089..57838a7 100644
--- a/crossmingw32-w32api.spec
+++ b/crossmingw32-w32api.spec
@@ -6,7 +6,7 @@ Version:5.0.2
 %defineapisrc  w32api-%{apiver}-mingw32
 %define runver 5.0.2
 %definerunsrc  mingwrt-%{runver}-mingw32
-Release:   2
+Release:   3
 Epoch: 1
 License:   Free (Public Domain, SGI Free Software License B, BSD)
 Group: Development/Libraries
@@ -22,6 +22,8 @@ Source3:  
https://www.khronos.org/registry/OpenGL/api/GL/wgl.h
 # Source3-md5: 425b343fe764cfcc478db28566e0679a
 Source4:   https://www.khronos.org/registry/OpenGL/api/GL/wglext.h
 # Source4-md5: 6ab4da87f8e08c7a6f75fd846379eef8
+Source5:   https://www.khronos.org/registry/EGL/api/KHR/khrplatform.h
+# Source5-md5: 66cc4235af5b34a2bab8064904e80855
 Patch0:%{name}-mmsystem.patch
 Patch1:%{name}-winapi-update.patch
 URL:   http://www.mingw.org/
@@ -111,7 +113,9 @@ rm -rf $RPM_BUILD_ROOT
 
 %{!?debug:%{target}-strip -g $RPM_BUILD_ROOT%{_libdir}/*.a}
 
+install -d $RPM_BUILD_ROOT%{_includedir}/KHR
 cp -p %{SOURCE2} %{SOURCE3} %{SOURCE4} $RPM_BUILD_ROOT%{_includedir}/GL
+cp -p %{SOURCE5} $RPM_BUILD_ROOT%{_includedir}/KHR
 
 %clean
 rm -rf $RPM_BUILD_ROOT
@@ -477,6 +481,7 @@ rm -rf $RPM_BUILD_ROOT
 %{_includedir}/xprtdefs.h
 %{_includedir}/zmouse.h
 %{_includedir}/GL
+%{_includedir}/KHR
 %{_includedir}/ddk
 %{_includedir}/gdiplus
 


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/crossmingw32-w32api.git/commitdiff/2e8077b877284f14e025732a147949237e18bf31

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


DISTFILES: crossmingw32-w32api: w32api-5.0.2-mingw32-src.tar.xz mingwrt-5.0.2-mingw32-src.tar.xz glext.h wgl.h wglext.h khrplatform.h

2018-10-21 Thread qboosh
Request by: qboosh


Files fetched: 1

ALREADY GOT: 
http://downloads.sourceforge.net/mingw/w32api-5.0.2-mingw32-src.tar.xz
716b956cdd2e70feed6861e9fbd1a116  w32api-5.0.2-mingw32-src.tar.xz
ALREADY GOT: 
http://downloads.sourceforge.net/mingw/mingwrt-5.0.2-mingw32-src.tar.xz
9865c83624b0e80178fdc709ebbc5e15  mingwrt-5.0.2-mingw32-src.tar.xz
ALREADY GOT: https://www.khronos.org/registry/OpenGL/api/GL/glext.h
b6843d4fb386784479cfa76a94719a1e  glext.h
ALREADY GOT: https://www.khronos.org/registry/OpenGL/api/GL/wgl.h
425b343fe764cfcc478db28566e0679a  wgl.h
ALREADY GOT: https://www.khronos.org/registry/OpenGL/api/GL/wglext.h
6ab4da87f8e08c7a6f75fd846379eef8  wglext.h
STORED: https://www.khronos.org/registry/EGL/api/KHR/khrplatform.h
66cc4235af5b34a2bab8064904e80855  khrplatform.h
Size: 10037 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/mono] - release 4 (by relup.sh)

2018-10-21 Thread baggins
commit c9d3815c7f194a9b22f275572bf27bc9550e4e9b
Author: Jan Rękorajski 
Date:   Sun Oct 21 18:52:12 2018 +0200

- release 4 (by relup.sh)

 mono.spec | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
---
diff --git a/mono.spec b/mono.spec
index e119847..f068b42 100644
--- a/mono.spec
+++ b/mono.spec
@@ -14,7 +14,7 @@ Summary:  Common Language Infrastructure implementation
 Summary(pl.UTF-8): Implementacja Common Language Infrastructure
 Name:  mono
 Version:   4.8.1.0
-Release:   3
+Release:   4
 License:   LGPL v2 (VM), MIT/GPL v2 (C# compilers), MIT/MSPL/Apache v2.0 
(classes), MIT/GPL v2 (tools)
 Group: Development/Languages
 Source0:   
http://download.mono-project.com/sources/mono/%{name}-%{version}.tar.bz2


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/mono.git/commitdiff/c9d3815c7f194a9b22f275572bf27bc9550e4e9b

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


[packages/mono] - do req/prov fix the other way, provide more - rel 5

2018-10-21 Thread baggins
commit 5deab7c2a75c836c492e7810a531e9d77201fba6
Author: Jan Rękorajski 
Date:   Sun Oct 21 19:26:29 2018 +0200

- do req/prov fix the other way, provide more
- rel 5

 consistent-rpm-prov-req.patch | 22 ++
 mono.spec |  2 +-
 2 files changed, 11 insertions(+), 13 deletions(-)
---
diff --git a/mono.spec b/mono.spec
index f068b42..08575a4 100644
--- a/mono.spec
+++ b/mono.spec
@@ -14,7 +14,7 @@ Summary:  Common Language Infrastructure implementation
 Summary(pl.UTF-8): Implementacja Common Language Infrastructure
 Name:  mono
 Version:   4.8.1.0
-Release:   4
+Release:   5
 License:   LGPL v2 (VM), MIT/GPL v2 (C# compilers), MIT/MSPL/Apache v2.0 
(classes), MIT/GPL v2 (tools)
 Group: Development/Languages
 Source0:   
http://download.mono-project.com/sources/mono/%{name}-%{version}.tar.bz2
diff --git a/consistent-rpm-prov-req.patch b/consistent-rpm-prov-req.patch
index ec4ef0e..0be3bf1 100644
--- a/consistent-rpm-prov-req.patch
+++ b/consistent-rpm-prov-req.patch
@@ -1,13 +1,11 @@
 mono-4.8.1/scripts/mono-find-requires.in~  2018-10-21 17:31:32.0 
+0200
-+++ mono-4.8.1/scripts/mono-find-requires.in   2018-10-21 17:33:52.246228263 
+0200
-@@ -15,6 +15,10 @@
- filelist=($(grep -Ev '/usr/doc/|/usr/share/doc/'))
- monolist=($(printf "%s\n" "${filelist[@]}" | egrep "\\.(exe|dll)\$"))
+--- mono-4.8.1/scripts/mono-find-provides.in~  2017-04-12 12:51:22.0 
+0200
 mono-4.8.1/scripts/mono-find-provides.in   2018-10-21 19:25:53.753471755 
+0200
+@@ -16,7 +16,7 @@
  
-+# Only include files with /gac/ in path
-+#  (Allows packages to contain private assemblies that don't conflict with 
other packages)
-+monolist=($(printf "%s\n" "${monolist[@]}" | egrep "/gac/"))
-+
- # parse .config files to find which native libraries to depend on 
- #  (target attribute must have double quotes for this to work, ie: 
target="file" )
- # Add /etc/mono/config ?
+ # Only include files with /gac/ in path
+ #  (Allows packages to contain private assemblies that don't conflict with 
other packages)
+-monolist=($(printf "%s\n" "${monolist[@]}" | egrep "/gac/"))
++#monolist=($(printf "%s\n" "${monolist[@]}" | egrep "/gac/"))
+ # Disabled... see ChangeLog
+ 
+ # Set the prefix, unless it is overriden (used when building mono rpms)


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/mono.git/commitdiff/5deab7c2a75c836c492e7810a531e9d77201fba6

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


[packages/libvisual] - updated URL

2018-10-21 Thread qboosh
commit a5922db6780163260e1a526dbb6a1308a8a53a31
Author: Jakub Bogusz 
Date:   Sun Oct 21 20:15:09 2018 +0200

- updated URL

 libvisual.spec | 6 ++
 1 file changed, 2 insertions(+), 4 deletions(-)
---
diff --git a/libvisual.spec b/libvisual.spec
index f2c0cc1..3cb0f49 100644
--- a/libvisual.spec
+++ b/libvisual.spec
@@ -10,9 +10,7 @@ Source0:  
http://downloads.sourceforge.net/libvisual/%{name}-%{version}.tar.bz2
 Patch0:%{name}-link.patch
 Patch1:%{name}-NULL.patch
 Patch2:format-security.patch
-# original URL is defunct; use sf
-#URL:  http://localhost.nl/~synap/libvisual/
-URL:   http://libvisual.sourceforge.net/
+URL:   http://libvisual.org/
 BuildRequires: autoconf >= 2.57
 BuildRequires: automake >= 1:1.7
 BuildRequires: gettext-tools >= 0.14.1
@@ -60,7 +58,7 @@ Statyczna biblioteka libvisual.
 %patch1 -p1
 %patch2 -p1
 
-mv -f po/{es_ES,es}.po
+%{__mv} po/{es_ES,es}.po
 # es_AR is a copy of es
 %{__rm} po/{es_AR.po,stamp-po}
 sed -i -e 's|es_ES es_AR|es|' po/LINGUAS


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/libvisual.git/commitdiff/a5922db6780163260e1a526dbb6a1308a8a53a31

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


[packages/libvisual-plugins] - updated URL

2018-10-21 Thread qboosh
commit 12d37214a14181435f5c384c24a8fa112f212e78
Author: Jakub Bogusz 
Date:   Sun Oct 21 20:16:49 2018 +0200

- updated URL

 libvisual-plugins.spec | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)
---
diff --git a/libvisual-plugins.spec b/libvisual-plugins.spec
index 423ba1d..12e6f12 100644
--- a/libvisual-plugins.spec
+++ b/libvisual-plugins.spec
@@ -13,9 +13,7 @@ Group:Libraries
 Source0:   
http://downloads.sourceforge.net/libvisual/%{name}-%{version}.tar.gz
 # Source0-md5: 4330e9287f9d6fae02f482f428a1e77b
 Patch0:%{name}-ac.patch
-# original URL defunct, use sf
-#URL:  http://localhost.nl/~synap/libvisual/
-URL:   http://libvisual.sourceforge.net/
+URL:   http://libvisual.org/
 BuildRequires: OpenGL-GLU-devel
 BuildRequires: alsa-lib-devel >= 1.0.0
 BuildRequires: autoconf >= 2.59-9


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/libvisual-plugins.git/commitdiff/12d37214a14181435f5c384c24a8fa112f212e78

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


[packages/crossmingw32-cairo] - updated to 1.16.0 - updated mingw32 patch - removed obsolete add-cairo-API-to-setup-Win32-surface-

2018-10-21 Thread qboosh
commit 1d3dbd49d92f5579bcb985dfbdcea2ad667f7041
Author: Jakub Bogusz 
Date:   Sun Oct 21 20:57:53 2018 +0200

- updated to 1.16.0
- updated mingw32 patch
- removed obsolete add-cairo-API-to-setup-Win32-surface-for-HDC patch
- added mingw32-gl patch and gl bcond

 ...-cairo-API-to-setup-Win32-surface-for-HDC.patch | 138 --
 cairo-mingw32-gl.patch | 158 +
 cairo-mingw32.patch|  38 +
 crossmingw32-cairo.spec|  25 ++--
 4 files changed, 212 insertions(+), 147 deletions(-)
---
diff --git a/crossmingw32-cairo.spec b/crossmingw32-cairo.spec
index 0728e83..8bfcdff 100644
--- a/crossmingw32-cairo.spec
+++ b/crossmingw32-cairo.spec
@@ -1,21 +1,26 @@
+#
+# Conditional build:
+%bcond_withgl  # OpenGL surface backend
+
 Summary:   Cairo - multi-platform 2D graphics library - cross MinGW32 
version
 Summary(pl.UTF-8): Cairo - wieloplatformowa biblioteka graficzna 2D - 
skrośna wersja MinGW32
 %definerealname   cairo
 Name:  crossmingw32-%{realname}
-Version:   1.14.12
-Release:   2
+Version:   1.16.0
+Release:   1
 License:   LGPL v2.1 or MPL v1.1
 Group: Development/Libraries
 Source0:   
https://www.cairographics.org/releases/%{realname}-%{version}.tar.xz
-# Source0-md5: 9f0db9dbfca0966be8acd682e636d165
+# Source0-md5: f19e0353828269c22bd72e271243a552
 Patch0:cairo-link.patch
 Patch1:cairo-mingw32.patch
-Patch2:cairo-add-cairo-API-to-setup-Win32-surface-for-HDC.patch
+# https://gitlab.freedesktop.org/cairo/cairo/issues/204
+Patch2:cairo-mingw32-gl.patch
 URL:   https://www.cairographics.org/
 BuildRequires: autoconf >= 2.63
 BuildRequires: automake >= 1:1.11
 BuildRequires: crossmingw32-fontconfig >= 2.2.95
-BuildRequires: crossmingw32-freetype >= 2.3.0
+BuildRequires: crossmingw32-freetype >= 2.5.1
 BuildRequires: crossmingw32-glib2 >= 2.14
 BuildRequires: crossmingw32-libpng
 BuildRequires: crossmingw32-pixman >= 0.30.0
@@ -23,7 +28,7 @@ BuildRequires:crossmingw32-zlib
 BuildRequires: libtool >= 2:2.2
 BuildRequires: pkgconfig >= 1:0.18
 Requires:  crossmingw32-fontconfig >= 2.2.95
-Requires:  crossmingw32-freetype >= 2.3.0
+Requires:  crossmingw32-freetype >= 2.5.1
 Requires:  crossmingw32-libpng
 Requires:  crossmingw32-pixman >= 0.30.0
 BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
@@ -102,7 +107,7 @@ Summary:DLL Cairo library for Windows
 Summary(pl.UTF-8): Biblioteka DLL Cairo dla Windows
 Group: Applications/Emulators
 Requires:  crossmingw32-fontconfig-dll >= 2.2.95
-Requires:  crossmingw32-freetype-dll >= 2.3.0
+Requires:  crossmingw32-freetype-dll >= 2.5.1
 Requires:  crossmingw32-libpng-dll
 Requires:  crossmingw32-pixman-dll >= 0.30.0
 
@@ -171,8 +176,8 @@ export PKG_CONFIG_LIBDIR=%{_prefix}/lib/pkgconfig
--disable-gtk-doc \
--disable-silent-rules \
--disable-xlib \
-   --disable-xlib-render \
-   --enable-freetype \
+   --enable-ft \
+   %{?with_gl:--enable-gl} \
--enable-pdf \
--enable-png \
--enable-ps \
@@ -214,12 +219,14 @@ rm -rf $RPM_BUILD_ROOT
 %{_pkgconfigdir}/cairo.pc
 %{_pkgconfigdir}/cairo-fc.pc
 %{_pkgconfigdir}/cairo-ft.pc
+%{?with_gl:%{_pkgconfigdir}/cairo-gl.pc}
 %{_pkgconfigdir}/cairo-pdf.pc
 %{_pkgconfigdir}/cairo-png.pc
 %{_pkgconfigdir}/cairo-ps.pc
 %{_pkgconfigdir}/cairo-script.pc
 %{_pkgconfigdir}/cairo-svg.pc
 %{_pkgconfigdir}/cairo-tee.pc
+%{?with_gl:%{_pkgconfigdir}/cairo-wgl.pc}
 %{_pkgconfigdir}/cairo-win32.pc
 %{_pkgconfigdir}/cairo-win32-font.pc
 %{_pkgconfigdir}/cairo-xml.pc
diff --git a/cairo-add-cairo-API-to-setup-Win32-surface-for-HDC.patch 
b/cairo-add-cairo-API-to-setup-Win32-surface-for-HDC.patch
deleted file mode 100644
index 70d90ff..000
--- a/cairo-add-cairo-API-to-setup-Win32-surface-for-HDC.patch
+++ /dev/null
@@ -1,138 +0,0 @@
-From 16898ba11b4d6e9e2e64bb2d02d0fb5adbe266e2 Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?=D0=A0=D1=83=D1=81=D0=BB=D0=B0=D0=BD=20=D0=98=D0=B6=D0=B1?=
- =?UTF-8?q?=D1=83=D0=BB=D0=B0=D1=82=D0=BE=D0=B2?= 
-Date: Thu, 26 Mar 2015 19:33:43 +
-Subject: win32: Add cairo API to set up a Win32 surface for an HDC with an
- alpha channel.
-MIME-Version: 1.0
-Content-Type: text/plain; charset=UTF-8
-Content-Transfer-Encoding: 8bit
-
-Signed-off-by: Руслан Ижбулатов 
-Reviewed-by: Bryce Harrington 
-
-diff --git a/src/cairo-win32.h b/src/cairo-win32.h
-index 3d2e1c6..db4cac6 100644
 a/src/cairo-win32.h
-+++ b/src/cairo-win32.h
-@@ -49,6 +49,10 @@ cairo_public cairo_surface_t *
- cairo_win32_surface_create (HDC hdc);
- 
- cairo_public cairo_surface_t *
-+cairo_win32_surface_create_with_format (HDC hdc,
-+cairo_format_t format);
-+
-+cairo_public cairo_surface_t *
- cairo_win

[packages/units] - updated to 2.18

2018-10-21 Thread adamg
commit 24dd4f5dbc4f183ce7ff5addbe73789bb6b9c4be
Author: Adam Gołębiowski 
Date:   Sun Oct 21 20:58:09 2018 +0200

- updated to 2.18

 units-use_sys_getopt.patch | 8 
 units.spec | 6 +++---
 2 files changed, 7 insertions(+), 7 deletions(-)
---
diff --git a/units.spec b/units.spec
index 7c9ab37..e3a333c 100644
--- a/units.spec
+++ b/units.spec
@@ -18,12 +18,12 @@ Summary(ru.UTF-8):  Утилита преобразования единиц из
 Summary(tr.UTF-8): Birim dönüştürme programı
 Summary(uk.UTF-8): Утиліта для конвертації одиниць виміру
 Name:  units
-Version:   2.17
-Release:   2
+Version:   2.18
+Release:   1
 License:   GPL v3+
 Group: Applications/Engineering
 Source0:   http://ftp.gnu.org/gnu/units/%{name}-%{version}.tar.gz
-# Source0-md5: 5809e8d4bcc4e622f6f531078e6958af
+# Source0-md5: 402395abfc0cc3bba6a76ee4c118bc72
 Patch0:%{name}-use_sys_getopt.patch
 URL:   http://www.gnu.org/software/units/
 BuildRequires: autoconf >= 2.64
diff --git a/units-use_sys_getopt.patch b/units-use_sys_getopt.patch
index 28dce58..716936e 100644
--- a/units-use_sys_getopt.patch
+++ b/units-use_sys_getopt.patch
@@ -1,11 +1,11 @@
 --- units-1.85/Makefile.in.orig2006-06-22 09:04:08.0 +0200
 +++ units-1.85/Makefile.in 2006-06-22 09:15:30.0 +0200
 @@ -45,7 +45,7 @@
- datadir = @datadir@
- DEFS = -DUNITSFILE=\"$(datadir)/misc/units.dat\" @DEFIS@ @DEFS@
+ @DEFIS@ @DEFS@
  CFLAGS = @CFLAGS@
+ CPPFLAGS = @CPPFLAGS@
 -OBJECTS = units.@OBJEXT@ parse.tab.@OBJEXT@ getopt.@OBJEXT@ getopt1.@OBJEXT@ 
@STRFUNC@
 +OBJECTS = units.@OBJEXT@ parse.tab.@OBJEXT@ @STRFUNC@
  
- .SUFFIXES:
- .SUFFIXES: .c .@OBJEXT@
+ .PHONY: currency-units-update
+ 


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/units.git/commitdiff/24dd4f5dbc4f183ce7ff5addbe73789bb6b9c4be

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


[packages/gstreamer] - -devel conflicts with plugin-bad-devel <= 1.12.x (gst/base/gstaggregator.h); release 2

2018-10-21 Thread qboosh
commit 5d0defac5594c32cce1198c365cd7b02f165a970
Author: Jakub Bogusz 
Date:   Sun Oct 21 21:01:54 2018 +0200

- -devel conflicts with plugin-bad-devel <= 1.12.x 
(gst/base/gstaggregator.h); release 2

 gstreamer.spec | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
---
diff --git a/gstreamer.spec b/gstreamer.spec
index ba6df1e..9f870bc 100644
--- a/gstreamer.spec
+++ b/gstreamer.spec
@@ -5,7 +5,7 @@ Summary:GStreamer Streaming-media framework runtime
 Summary(pl.UTF-8): GStreamer - biblioteki środowiska do obróbki strumieni
 Name:  gstreamer
 Version:   1.14.4
-Release:   1
+Release:   2
 License:   LGPL v2+
 Group: Libraries
 Source0:   
https://gstreamer.freedesktop.org/src/gstreamer/%{name}-%{version}.tar.xz
@@ -66,6 +66,7 @@ Group:Development/Libraries
 Requires:  %{name} = %{version}-%{release}
 Requires:  glib2-devel >= 1:2.40.0
 Obsoletes: gstreamer-plugins-bad-devel < 0.10.10
+Conflicts: gstreamer-plugins-bad-devel < 1.14
 
 %description devel
 This package contains the includes files necessary to develop


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/gstreamer.git/commitdiff/5d0defac5594c32cce1198c365cd7b02f165a970

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


DISTFILES: units: units-2.18.tar.gz

2018-10-21 Thread adamg
Request by: adamg


Files fetched: 1

STORED: http://ftp.gnu.org/gnu/units/units-2.18.tar.gz
402395abfc0cc3bba6a76ee4c118bc72  units-2.18.tar.gz
Size: 1248892 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/mono] - release 6 (by relup.sh)

2018-10-21 Thread baggins
commit aefe3f267bc3b97e4e8c56a99fef632e7faceeca
Author: Jan Rękorajski 
Date:   Sun Oct 21 21:19:19 2018 +0200

- release 6 (by relup.sh)

 mono.spec | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
---
diff --git a/mono.spec b/mono.spec
index 08575a4..8aae2e7 100644
--- a/mono.spec
+++ b/mono.spec
@@ -14,7 +14,7 @@ Summary:  Common Language Infrastructure implementation
 Summary(pl.UTF-8): Implementacja Common Language Infrastructure
 Name:  mono
 Version:   4.8.1.0
-Release:   5
+Release:   6
 License:   LGPL v2 (VM), MIT/GPL v2 (C# compilers), MIT/MSPL/Apache v2.0 
(classes), MIT/GPL v2 (tools)
 Group: Development/Languages
 Source0:   
http://download.mono-project.com/sources/mono/%{name}-%{version}.tar.bz2


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/mono.git/commitdiff/aefe3f267bc3b97e4e8c56a99fef632e7faceeca

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


[packages/mkvtoolnix] - updated to 28.0.0

2018-10-21 Thread adamg
commit d70c6d960860681ef0503e8b9d28a02b9564d9f4
Author: Adam Gołębiowski 
Date:   Sun Oct 21 21:44:46 2018 +0200

- updated to 28.0.0

 mkvtoolnix.spec | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/mkvtoolnix.spec b/mkvtoolnix.spec
index 146393a..c44f7a6 100644
--- a/mkvtoolnix.spec
+++ b/mkvtoolnix.spec
@@ -6,12 +6,12 @@
 Summary:   Matroska video utilities
 Summary(pl.UTF-8): Narzędzia do filmów w formacie Matroska
 Name:  mkvtoolnix
-Version:   27.0.0
+Version:   28.0.0
 Release:   1
 License:   GPL v2
 Group: Applications/Multimedia
 Source0:   
https://www.bunkus.org/videotools/mkvtoolnix/sources/%{name}-%{version}.tar.xz
-# Source0-md5: 67370772ea1e0d404f371813ac85c153
+# Source0-md5: b3d1141d5fdf650ea396364a3fa2302d
 Patch0:%{name}-init_locales.patch
 URL:   https://www.bunkus.org/videotools/mkvtoolnix/
 %if %{with qt}


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/mkvtoolnix.git/commitdiff/d70c6d960860681ef0503e8b9d28a02b9564d9f4

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


DISTFILES: mkvtoolnix: mkvtoolnix-28.0.0.tar.xz

2018-10-21 Thread adamg
Request by: adamg


Files fetched: 1

STORED: 
https://www.bunkus.org/videotools/mkvtoolnix/sources/mkvtoolnix-28.0.0.tar.xz
b3d1141d5fdf650ea396364a3fa2302d  mkvtoolnix-28.0.0.tar.xz
Size: 6545232 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: ascii: ascii-3.18.tar.gz

2018-10-21 Thread adamg
Request by: adamg


Files fetched: 1

STORED: http://www.catb.org/~esr/ascii/ascii-3.18.tar.gz
e5a559a5b820ab20c630525ca5f7383b  ascii-3.18.tar.gz
Size: 14661 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/ascii] - updated to 3.18

2018-10-21 Thread adamg
commit cfbe46d03d47f45409d236da37c6e324c36f0c1b
Author: Adam Gołębiowski 
Date:   Sun Oct 21 22:40:50 2018 +0200

- updated to 3.18

 ascii.spec | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/ascii.spec b/ascii.spec
index dc8b2e8..d85ad78 100644
--- a/ascii.spec
+++ b/ascii.spec
@@ -1,12 +1,12 @@
 Summary:   Interactive ASCII name and synonym chart
 Summary(pl.UTF-8): Interaktywna tablica kodów i synonimów ASCII
 Name:  ascii
-Version:   3.15
+Version:   3.18
 Release:   1
 License:   BSD
 Group: Applications/Text
 Source0:   http://www.catb.org/~esr/ascii/%{name}-%{version}.tar.gz
-# Source0-md5: 09e7e003fe11a765a1dc824bc466329b
+# Source0-md5: e5a559a5b820ab20c630525ca5f7383b
 URL:   http://www.catb.org/~esr/ascii/
 BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
 


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/ascii.git/commitdiff/cfbe46d03d47f45409d236da37c6e324c36f0c1b

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


DISTFILES: php-pear-Auth_SASL: Auth_SASL-1.1.0.tgz

2018-10-21 Thread adamg
Request by: adamg


Files fetched: 1

STORED: http://pear.php.net/get/Auth_SASL-1.1.0.tgz
dc2641c4d64e4ebe3f0076d412ee4126  Auth_SASL-1.1.0.tgz
Size: 9380 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/php-pear-Auth_SASL] - updated to 1.1.0

2018-10-21 Thread adamg
commit 46ee6d4bbd9a61440488f39096182e0ca74331a7
Author: Adam Gołębiowski 
Date:   Sun Oct 21 22:43:30 2018 +0200

- updated to 1.1.0

 php-pear-Auth_SASL.spec | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/php-pear-Auth_SASL.spec b/php-pear-Auth_SASL.spec
index 19762ac..94ef940 100644
--- a/php-pear-Auth_SASL.spec
+++ b/php-pear-Auth_SASL.spec
@@ -4,12 +4,12 @@
 Summary:   %{_pearname} - generate responses to common SASL mechanisms
 Summary(pl.UTF-8): %{_pearname} - generowanie odpowiedzi dla popularnych 
mechanizmów SASL
 Name:  php-pear-%{_pearname}
-Version:   1.0.6
+Version:   1.1.0
 Release:   1
 License:   BSD
 Group: Development/Languages/PHP
 Source0:   http://pear.php.net/get/%{_pearname}-%{version}.tgz
-# Source0-md5: 75792cb080b66c3ed942c793ce977b09
+# Source0-md5: dc2641c4d64e4ebe3f0076d412ee4126
 URL:   http://pear.php.net/package/Auth_SASL/
 BuildRequires: php-pear-PEAR
 BuildRequires: rpm-php-pearprov >= 4.4.2-11


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/php-pear-Auth_SASL.git/commitdiff/46ee6d4bbd9a61440488f39096182e0ca74331a7

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


[packages/php-pear-Cache_Lite] - updated to 1.8.2

2018-10-21 Thread adamg
commit 38c98199f58807d0114ce0403aa25cef51cafb7d
Author: Adam Gołębiowski 
Date:   Sun Oct 21 22:44:41 2018 +0200

- updated to 1.8.2

 php-pear-Cache_Lite.spec | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/php-pear-Cache_Lite.spec b/php-pear-Cache_Lite.spec
index de21301..7296117 100644
--- a/php-pear-Cache_Lite.spec
+++ b/php-pear-Cache_Lite.spec
@@ -4,12 +4,12 @@
 Summary:   %{_pearname} - Fast and Safe little cache system
 Summary(pl.UTF-8): %{_pearname} - Szybki i bezpieczny system buforujący
 Name:  php-pear-%{_pearname}
-Version:   1.7.16
+Version:   1.8.2
 Release:   1
 License:   LGPL
 Group: Development/Languages/PHP
 Source0:   http://pear.php.net/get/%{_pearname}-%{version}.tgz
-# Source0-md5: e5bd31307e0bed904f8d938d6b0ba7b6
+# Source0-md5: 5a3bb30b288ec396e26cf041b5389923
 URL:   http://pear.php.net/package/Cache_Lite/
 BuildRequires: php-pear-PEAR >= 1:1.5.4
 BuildRequires: rpm-php-pearprov >= 4.4.2-11


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/php-pear-Cache_Lite.git/commitdiff/38c98199f58807d0114ce0403aa25cef51cafb7d

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


DISTFILES: php-pear-Cache_Lite: Cache_Lite-1.8.2.tgz

2018-10-21 Thread adamg
Request by: adamg


Files fetched: 1

STORED: http://pear.php.net/get/Cache_Lite-1.8.2.tgz
5a3bb30b288ec396e26cf041b5389923  Cache_Lite-1.8.2.tgz
Size: 33873 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: php-pear-CodeGen_MySQL_Plugin: CodeGen_MySQL_Plugin-0.9.2.tgz

2018-10-21 Thread adamg
Request by: adamg


Files fetched: 1

STORED: http://pear.php.net/get/CodeGen_MySQL_Plugin-0.9.2.tgz
f7e0eccd3212075d03d47ce264067506  CodeGen_MySQL_Plugin-0.9.2.tgz
Size: 14376 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/php-pear-CodeGen_MySQL_Plugin] - updated to 0.9.2

2018-10-21 Thread adamg
commit 4c29a7f524c99e9e6efe61f7aa8157ab9bda5c58
Author: Adam Gołębiowski 
Date:   Sun Oct 21 22:46:58 2018 +0200

- updated to 0.9.2

 php-pear-CodeGen_MySQL_Plugin.spec | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/php-pear-CodeGen_MySQL_Plugin.spec 
b/php-pear-CodeGen_MySQL_Plugin.spec
index f9202f4..e237ee9 100644
--- a/php-pear-CodeGen_MySQL_Plugin.spec
+++ b/php-pear-CodeGen_MySQL_Plugin.spec
@@ -6,12 +6,12 @@
 Summary:   %{_pearname} - tool to generate MySQL Plugins from an XML 
description
 Summary(pl.UTF-8): %{_pearname} - narzędzie do generowania wtyczek do 
MySQL na podstawie opisu XML
 Name:  php-pear-%{_pearname}
-Version:   0.1.1dev
-Release:   0.1
+Version:   0.9.2
+Release:   1
 License:   PHP
 Group: Development/Languages/PHP
 Source0:   http://pear.php.net/get/%{_pearname}-%{version}.tgz
-# Source0-md5: b541c550c93e0ee7bbe096c1327639ed
+# Source0-md5: f7e0eccd3212075d03d47ce264067506
 URL:   http://pear.php.net/package/CodeGen_MySQL_Plugin/
 BuildRequires: php-pear-PEAR
 BuildRequires: rpm-php-pearprov >= 4.4.2-11


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/php-pear-CodeGen_MySQL_Plugin.git/commitdiff/4c29a7f524c99e9e6efe61f7aa8157ab9bda5c58

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


[packages/mono] - don't check if non-existing library exists

2018-10-21 Thread baggins
commit 1eddd299da168e6ec152c420a3c5e722ce59d75d
Author: Jan Rękorajski 
Date:   Sun Oct 21 22:47:41 2018 +0200

- don't check if non-existing library exists

 consistent-rpm-prov-req.patch | 20 
 1 file changed, 20 insertions(+)
---
diff --git a/consistent-rpm-prov-req.patch b/consistent-rpm-prov-req.patch
index 0be3bf1..06342b4 100644
--- a/consistent-rpm-prov-req.patch
+++ b/consistent-rpm-prov-req.patch
@@ -9,3 +9,23 @@
  # Disabled... see ChangeLog
  
  # Set the prefix, unless it is overriden (used when building mono rpms)
+@@ -26,7 +26,7 @@
+ bindir=$prefix/bin
+ 
+ # Bail out if monodis or libmono is missing
+-if [ ! -x $bindir/monodis ] || [ ! -f $libdir/libmono-2.0.so.1 ] ; then
++if [ ! -x $bindir/monodis ]; then
+   echo "monodis missing or unusable, exiting..." 1>&2
+   exit 1
+ fi
+--- mono-4.8.1/scripts/mono-find-requires.in~  2018-10-21 22:38:34.0 
+0200
 mono-4.8.1/scripts/mono-find-requires.in   2018-10-21 22:43:46.468368810 
+0200
+@@ -30,7 +30,7 @@
+ bindir=$prefix/bin
+ 
+ # Bail out if monodis or libmono is missing
+-if [ ! -x $bindir/monodis ] || [ ! -f $libdir/libmono-2.0.so.1 ] ; then
++if [ ! -x $bindir/monodis ]; then
+   echo "monodis missing or unusable, exiting..." 1>&2
+   exit 1
+ fi


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/mono.git/commitdiff/1eddd299da168e6ec152c420a3c5e722ce59d75d

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


[packages/mono] - rel 6.1

2018-10-21 Thread baggins
commit 07e8fd7db8c7c02a0311a43785700db08097a511
Author: Jan Rękorajski 
Date:   Sun Oct 21 23:10:34 2018 +0200

- rel 6.1

 mono.spec | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
---
diff --git a/mono.spec b/mono.spec
index 8aae2e7..452a528 100644
--- a/mono.spec
+++ b/mono.spec
@@ -14,7 +14,7 @@ Summary:  Common Language Infrastructure implementation
 Summary(pl.UTF-8): Implementacja Common Language Infrastructure
 Name:  mono
 Version:   4.8.1.0
-Release:   6
+Release:   6.1
 License:   LGPL v2 (VM), MIT/GPL v2 (C# compilers), MIT/MSPL/Apache v2.0 
(classes), MIT/GPL v2 (tools)
 Group: Development/Languages
 Source0:   
http://download.mono-project.com/sources/mono/%{name}-%{version}.tar.bz2


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/mono.git/commitdiff/07e8fd7db8c7c02a0311a43785700db08097a511

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


[packages/mono] - rel 7

2018-10-21 Thread baggins
commit e8963b2b624ae216ed26e8aaa2cf1106aaad5646
Author: Jan Rękorajski 
Date:   Mon Oct 22 00:23:17 2018 +0200

- rel 7

 mono.spec | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
---
diff --git a/mono.spec b/mono.spec
index 452a528..c001823 100644
--- a/mono.spec
+++ b/mono.spec
@@ -14,7 +14,7 @@ Summary:  Common Language Infrastructure implementation
 Summary(pl.UTF-8): Implementacja Common Language Infrastructure
 Name:  mono
 Version:   4.8.1.0
-Release:   6.1
+Release:   7
 License:   LGPL v2 (VM), MIT/GPL v2 (C# compilers), MIT/MSPL/Apache v2.0 
(classes), MIT/GPL v2 (tools)
 Group: Development/Languages
 Source0:   
http://download.mono-project.com/sources/mono/%{name}-%{version}.tar.bz2


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/mono.git/commitdiff/e8963b2b624ae216ed26e8aaa2cf1106aaad5646

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


[packages/zathura-pdf-mupdf] add %update_desktop_database_post*

2018-10-21 Thread atler
commit ebb6824aa9835f0c4190d9a2fe50276c6e599171
Author: Jan Palus 
Date:   Mon Oct 22 00:42:38 2018 +0200

add %update_desktop_database_post*

 zathura-pdf-mupdf.spec | 13 ++---
 1 file changed, 10 insertions(+), 3 deletions(-)
---
diff --git a/zathura-pdf-mupdf.spec b/zathura-pdf-mupdf.spec
index 6a86106..ca50193 100644
--- a/zathura-pdf-mupdf.spec
+++ b/zathura-pdf-mupdf.spec
@@ -15,20 +15,21 @@ BuildRequires:  girara-devel >= 0.2.3
 BuildRequires: glib2-devel >= 2.0
 BuildRequires: gtk+3-devel >= 3.2
 BuildRequires: meson >= 0.43
+BuildRequires: mupdf-devel >= 1.14
 BuildRequires: ninja
 BuildRequires: pkgconfig
-BuildRequires: mupdf-devel >= 1.14
 BuildRequires: tar >= 1:1.22
 BuildRequires: xz
 BuildRequires: zathura-devel >= 0.3.9
+Requires(post,postun): desktop-file-utils
 Requires:  girara >= 0.2.3
 Requires:  mupdf >= 1.14
 Requires:  zathura >= 0.3.9
 BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
 
 %description
-The zathura-pdf-mupdf plugin adds PDF support to zathura by using
-the mupdf rendering engine.
+The zathura-pdf-mupdf plugin adds PDF support to zathura by using the
+mupdf rendering engine.
 
 %description -l pl.UTF-8
 Wtyczka zathura-pdf-mupdf dodaje do zathury obsługę PDF z
@@ -50,6 +51,12 @@ rm -rf $RPM_BUILD_ROOT
 %clean
 rm -rf $RPM_BUILD_ROOT
 
+%post
+%update_desktop_database_post
+
+%postun
+%update_desktop_database_postun
+
 %files
 %defattr(644,root,root,755)
 %doc AUTHORS LICENSE README


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/zathura-pdf-mupdf.git/commitdiff/ebb6824aa9835f0c4190d9a2fe50276c6e599171

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


[packages/zathura-pdf-poppler] add %update_desktop_database_post*

2018-10-21 Thread atler
commit 052e39c1789f23c79e451ed6ff443e03f87e391f
Author: Jan Palus 
Date:   Mon Oct 22 00:43:49 2018 +0200

add %update_desktop_database_post*

 zathura-pdf-poppler.spec | 7 +++
 1 file changed, 7 insertions(+)
---
diff --git a/zathura-pdf-poppler.spec b/zathura-pdf-poppler.spec
index fe85c0c..c0150a1 100644
--- a/zathura-pdf-poppler.spec
+++ b/zathura-pdf-poppler.spec
@@ -19,6 +19,7 @@ BuildRequires:pkgconfig
 BuildRequires: poppler-glib-devel >= 0.18
 BuildRequires: rpmbuild(macros) >= 1.727
 BuildRequires: zathura-devel >= 0.3.9
+Requires(post,postun): desktop-file-utils
 Requires:  girara >= 0.1.8
 Requires:  gtk+3 >= 3.2
 Requires:  poppler-glib >= 0.18
@@ -49,6 +50,12 @@ rm -rf $RPM_BUILD_ROOT
 %clean
 rm -rf $RPM_BUILD_ROOT
 
+%post
+%update_desktop_database_post
+
+%postun
+%update_desktop_database_postun
+
 %files
 %defattr(644,root,root,755)
 %doc AUTHORS LICENSE README


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/zathura-pdf-poppler.git/commitdiff/052e39c1789f23c79e451ed6ff443e03f87e391f

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


[packages/zathura-cb] add %update_desktop_database_post*

2018-10-21 Thread atler
commit 0a5f04157c7e01bd71693204db1e719f54a7d80c
Author: Jan Palus 
Date:   Mon Oct 22 00:44:40 2018 +0200

add %update_desktop_database_post*

 zathura-cb.spec | 9 -
 1 file changed, 8 insertions(+), 1 deletion(-)
---
diff --git a/zathura-cb.spec b/zathura-cb.spec
index 0e5369b..d4d0c75 100644
--- a/zathura-cb.spec
+++ b/zathura-cb.spec
@@ -11,14 +11,15 @@ URL:https://pwmt.org/projects/zathura-cb/
 BuildRequires: cairo-devel
 # C11
 BuildRequires: gcc >= 6:4.7
-BuildRequires: glib2-devel >= 2.0
 BuildRequires: girara-devel >= 0.1.8
+BuildRequires: glib2-devel >= 2.0
 BuildRequires: libarchive-devel
 BuildRequires: meson >= 0.43
 BuildRequires: ninja
 BuildRequires: pkgconfig
 BuildRequires: rpmbuild(macros) >= 1.727
 BuildRequires: zathura-devel >= 0.3.8
+Requires(post,postun): desktop-file-utils
 Requires:  girara >= 0.1.8
 Requires:  zathura >= 0.3.8
 BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
@@ -45,6 +46,12 @@ rm -rf $RPM_BUILD_ROOT
 %clean
 rm -rf $RPM_BUILD_ROOT
 
+%post
+%update_desktop_database_post
+
+%postun
+%update_desktop_database_postun
+
 %files
 %defattr(644,root,root,755)
 %doc AUTHORS LICENSE README


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/zathura-cb.git/commitdiff/0a5f04157c7e01bd71693204db1e719f54a7d80c

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


[packages/zathura-djvu] add %update_desktop_database_post*

2018-10-21 Thread atler
commit a0c602d22df5a020e32a99b2936614d61afbd500
Author: Jan Palus 
Date:   Mon Oct 22 00:45:10 2018 +0200

add %update_desktop_database_post*

 zathura-djvu.spec | 9 -
 1 file changed, 8 insertions(+), 1 deletion(-)
---
diff --git a/zathura-djvu.spec b/zathura-djvu.spec
index bab91e5..9a06b99 100644
--- a/zathura-djvu.spec
+++ b/zathura-djvu.spec
@@ -12,13 +12,14 @@ BuildRequires:  cairo-devel
 BuildRequires: djvulibre-devel
 # C11
 BuildRequires: gcc >= 6:4.7
-BuildRequires: glib2-devel >= 2.0
 BuildRequires: girara-devel >= 0.1.8
+BuildRequires: glib2-devel >= 2.0
 BuildRequires: meson >= 0.43
 BuildRequires: ninja
 BuildRequires: pkgconfig
 BuildRequires: rpmbuild(macros) >= 1.727
 BuildRequires: zathura-devel >= 0.3.8
+Requires(post,postun): desktop-file-utils
 Requires:  girara >= 0.1.8
 Requires:  zathura >= 0.3.8
 BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
@@ -47,6 +48,12 @@ rm -rf $RPM_BUILD_ROOT
 %clean
 rm -rf $RPM_BUILD_ROOT
 
+%post
+%update_desktop_database_post
+
+%postun
+%update_desktop_database_postun
+
 %files
 %defattr(644,root,root,755)
 %doc AUTHORS LICENSE


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/zathura-djvu.git/commitdiff/a0c602d22df5a020e32a99b2936614d61afbd500

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


[packages/zathura-ps] add %update_desktop_database_post*

2018-10-21 Thread atler
commit b755f97fd548c6f73a734be85618f9dc315c2e41
Author: Jan Palus 
Date:   Mon Oct 22 00:45:37 2018 +0200

add %update_desktop_database_post*

 zathura-ps.spec | 9 -
 1 file changed, 8 insertions(+), 1 deletion(-)
---
diff --git a/zathura-ps.spec b/zathura-ps.spec
index 27a9898..1fd5ed1 100644
--- a/zathura-ps.spec
+++ b/zathura-ps.spec
@@ -11,14 +11,15 @@ URL:https://pwmt.org/projects/zathura-ps/
 BuildRequires: cairo-devel
 # C11
 BuildRequires: gcc >= 6:4.7
-BuildRequires: glib2-devel >= 2.0
 BuildRequires: girara-devel >= 0.1.8
+BuildRequires: glib2-devel >= 2.0
 BuildRequires: libspectre-devel
 BuildRequires: meson >= 0.43
 BuildRequires: ninja
 BuildRequires: pkgconfig
 BuildRequires: rpmbuild(macros) >= 1.727
 BuildRequires: zathura-devel >= 0.3.8
+Requires(post,postun): desktop-file-utils
 Requires:  girara >= 0.1.8
 Requires:  zathura >= 0.3.8
 BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
@@ -47,6 +48,12 @@ rm -rf $RPM_BUILD_ROOT
 %clean
 rm -rf $RPM_BUILD_ROOT
 
+%post
+%update_desktop_database_post
+
+%postun
+%update_desktop_database_postun
+
 %files
 %defattr(644,root,root,755)
 %doc AUTHORS LICENSE


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/zathura-ps.git/commitdiff/b755f97fd548c6f73a734be85618f9dc315c2e41

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


[packages/mosquitto] - rel 1

2018-10-21 Thread baggins
commit b3fef442a9df7be46d55028d7152f68e25619d34
Author: Jan Rękorajski 
Date:   Mon Oct 22 01:27:08 2018 +0200

- rel 1

 mosquitto.spec | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
---
diff --git a/mosquitto.spec b/mosquitto.spec
index 03f5c9a..9811a4a 100644
--- a/mosquitto.spec
+++ b/mosquitto.spec
@@ -3,7 +3,7 @@
 Summary:   An Open Source MQTT v3.1 Broker
 Name:  mosquitto
 Version:   1.5.1
-Release:   0.1
+Release:   1
 License:   BSD
 Group: Applications
 Source0:   http://mosquitto.org/files/source/%{name}-%{version}.tar.gz


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/mosquitto.git/commitdiff/b3fef442a9df7be46d55028d7152f68e25619d34

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


[packages/proxytunnel] - rel 1

2018-10-21 Thread baggins
commit 7a1e34df371502c07bf7a63aefc71e7970fb5b34
Author: Jan Rękorajski 
Date:   Mon Oct 22 01:27:48 2018 +0200

- rel 1

 proxytunnel.spec | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
---
diff --git a/proxytunnel.spec b/proxytunnel.spec
index 86809fa..45bc4c6 100644
--- a/proxytunnel.spec
+++ b/proxytunnel.spec
@@ -2,7 +2,7 @@ Summary:Proxy Tunnel ssh-over-https hack
 Summary(pl.UTF-8): Tunel proxy ssh-po-https
 Name:  proxytunnel
 Version:   1.9.1
-Release:   0.1
+Release:   1
 License:   GPL
 Group: Applications
 Source0:   
https://github.com/proxytunnel/proxytunnel/archive/%{version}.tar.gz


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/proxytunnel.git/commitdiff/7a1e34df371502c07bf7a63aefc71e7970fb5b34

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


[packages/ngspice] - rel 1

2018-10-21 Thread baggins
commit 0e7eda1e544042d9dab504b265df07b1d9b2afbd
Author: Jan Rękorajski 
Date:   Mon Oct 22 01:28:32 2018 +0200

- rel 1

 ngspice.spec | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
---
diff --git a/ngspice.spec b/ngspice.spec
index 6afafd4..04d8b5a 100644
--- a/ngspice.spec
+++ b/ngspice.spec
@@ -5,7 +5,7 @@ Summary:Ngspice circuit simulator
 Summary(pl.UTF-8): Ngspice symulator obwodów
 Name:  ngspice
 Version:   28
-Release:   0.1
+Release:   1
 License:   GPL
 Group: Applications
 Source0:   
https://sourceforge.net/projects/ngspice/files/ng-spice-rework/%{version}/%{name}-%{version}.tar.gz


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/ngspice.git/commitdiff/0e7eda1e544042d9dab504b265df07b1d9b2afbd

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


[packages/ell] up to 0.12

2018-10-21 Thread atler
commit 41eeacc270e63632a3c0c0d105dbafce3495c4c4
Author: Jan Palus 
Date:   Mon Oct 22 01:49:01 2018 +0200

up to 0.12

 ell.spec | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/ell.spec b/ell.spec
index 8521115..6b1f8d5 100644
--- a/ell.spec
+++ b/ell.spec
@@ -5,12 +5,12 @@
 Summary:   Embedded Linux Library
 Summary(pl.UTF-8): Embedded Linux Library - biblioteka osadzonego Linuksa
 Name:  ell
-Version:   0.9
+Version:   0.12
 Release:   1
 License:   LGPL v2.1+
 Group: Libraries
 Source0:   
https://www.kernel.org/pub/linux/libs/ell/%{name}-%{version}.tar.xz
-# Source0-md5: adb93a90cbec047c83ca5c9ed87cf3dd
+# Source0-md5: 7d337a1cac6e09275d446f3f744ef744
 Patch0:%{name}-link.patch
 URL:   https://git.kernel.org/pub/scm/libs/ell/ell.git/
 BuildRequires: autoconf >= 2.60


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/ell.git/commitdiff/41eeacc270e63632a3c0c0d105dbafce3495c4c4

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


DISTFILES: ell: ell-0.12.tar.xz

2018-10-21 Thread atler
Request by: atler


Files fetched: 1

STORED: https://www.kernel.org/pub/linux/libs/ell/ell-0.12.tar.xz
7d337a1cac6e09275d446f3f744ef744  ell-0.12.tar.xz
Size: 400340 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/iwd] up to 0.10

2018-10-21 Thread atler
commit 6dcfa8d239c0fd43e6ecb2a848e70144a8a559cd
Author: Jan Palus 
Date:   Mon Oct 22 01:49:38 2018 +0200

up to 0.10

- updated BRs
- run autotools

 iwd.spec | 15 +--
 1 file changed, 13 insertions(+), 2 deletions(-)
---
diff --git a/iwd.spec b/iwd.spec
index 8016bc5..2ff98f0 100644
--- a/iwd.spec
+++ b/iwd.spec
@@ -2,20 +2,25 @@
 Summary:   iwd - wireless daemon for Linux
 Summary(pl.UTF-8): iwd - demon sieci bezprzewodowej dla Linuksa
 Name:  iwd
-Version:   0.7
+Version:   0.10
 Release:   1
 License:   LGPL v2.1+
 Group: Networking/Daemons
 Source0:   
https://www.kernel.org/pub/linux/network/wireless/%{name}-%{version}.tar.xz
-# Source0-md5: dc26718ba7fb937864e70bbcd0b5843b
+# Source0-md5: 8ebe73c00763eddf009e27c57f733ea4
 URL:   https://git.kernel.org/pub/scm/network/wireless/iwd.git
 BuildRequires: asciidoc
+BuildRequires: autoconf >= 2.60
+BuildRequires: automake
 BuildRequires: dbus-devel
+BuildRequires: ell-devel >= 0.12
+BuildRequires: libtool >= 2:2.2
 BuildRequires: pkgconfig
 BuildRequires: readline-devel
 BuildRequires: tar >= 1:1.22
 BuildRequires: xz
 Requires(post,preun,postun):   systemd-units >= 38
+Requires:  ell >= 0.12
 Requires:  systemd-units >= 38
 BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
 
@@ -29,8 +34,14 @@ Demon sieci bezprzewodowej dla Linuksa.
 %setup -q
 
 %build
+%{__libtoolize}
+%{__aclocal}
+%{__autoconf}
+%{__autoheader}
+%{__automake}
 %configure \
--enable-docs \
+   --enable-external-ell \
--disable-silent-rules \
--with-systemd-unitdir=%{systemdunitdir}
 


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/iwd.git/commitdiff/6dcfa8d239c0fd43e6ecb2a848e70144a8a559cd

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


DISTFILES: iwd: iwd-0.10.tar.xz

2018-10-21 Thread atler
Request by: atler


Files fetched: 1

STORED: https://www.kernel.org/pub/linux/network/wireless/iwd-0.10.tar.xz
8ebe73c00763eddf009e27c57f733ea4  iwd-0.10.tar.xz
Size: 676708 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: php-pear-Console_CommandLine: Console_CommandLine-1.2.2.tgz

2018-10-21 Thread adamg
Request by: adamg


Files fetched: 1

STORED: http://pear.php.net/get/Console_CommandLine-1.2.2.tgz
64685af6b4cb7668d76dfea9fa848bc6  Console_CommandLine-1.2.2.tgz
Size: 40705 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/php-pear-Console_CommandLine] - updated to 1.2.2

2018-10-21 Thread adamg
commit d3d8e79964d7f862608c885bb833fe76d199ce11
Author: Adam Gołębiowski 
Date:   Mon Oct 22 08:22:51 2018 +0200

- updated to 1.2.2

 php-pear-Console_CommandLine.spec | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/php-pear-Console_CommandLine.spec 
b/php-pear-Console_CommandLine.spec
index 73e4b43..306bbd9 100644
--- a/php-pear-Console_CommandLine.spec
+++ b/php-pear-Console_CommandLine.spec
@@ -6,12 +6,12 @@
 Summary:   %{_pearname} - A full featured command line options and 
arguments parser
 Summary(pl.UTF-8): %{_pearname} - Bogaty w funkcjonalność analizator 
parametrów linii poleceń
 Name:  php-pear-%{_pearname}
-Version:   1.2.0
+Version:   1.2.2
 Release:   1
 License:   MIT License
 Group: Development/Languages/PHP
 Source0:   http://pear.php.net/get/%{_pearname}-%{version}.tgz
-# Source0-md5: 7fc7802413fba37fb0549f430b1f5b37
+# Source0-md5: 64685af6b4cb7668d76dfea9fa848bc6
 URL:   http://pear.php.net/package/Console_CommandLine/
 BuildRequires: php-pear-PEAR
 BuildRequires: rpm-php-pearprov >= 4.4.2-11


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/php-pear-Console_CommandLine.git/commitdiff/d3d8e79964d7f862608c885bb833fe76d199ce11

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


[packages/php-pear-Console_Getargs] - updated to 1.4.0

2018-10-21 Thread adamg
commit 693ecee3c5dea440ab4c60fb26acf532fc465600
Author: Adam Gołębiowski 
Date:   Mon Oct 22 08:25:06 2018 +0200

- updated to 1.4.0

 deprecation.patch | 11 ---
 php-pear-Console_Getargs.spec |  7 +++
 2 files changed, 3 insertions(+), 15 deletions(-)
---
diff --git a/php-pear-Console_Getargs.spec b/php-pear-Console_Getargs.spec
index bf8fc41..78364a8 100644
--- a/php-pear-Console_Getargs.spec
+++ b/php-pear-Console_Getargs.spec
@@ -4,12 +4,12 @@
 Summary:   %{_pearname} - a command-line arguments parser
 Summary(pl.UTF-8): %{_pearname} - przetwarzanie argumentów linii poleceń
 Name:  php-pear-%{_pearname}
-Version:   1.3.5
-Release:   2
+Version:   1.4.0
+Release:   1
 License:   PHP 2.02
 Group: Development/Languages/PHP
 Source0:   http://pear.php.net/get/%{_pearname}-%{version}.tgz
-# Source0-md5: a727bc63cc5fe4e28ccb37401cdc1525
+# Source0-md5: f99266907369af0191ea32f25dc6317e
 Patch0:deprecation.patch
 URL:   http://pear.php.net/package/Console_Getargs/
 BuildRequires: php-packagexml2cl
@@ -43,7 +43,6 @@ Ta klasa ma w PEAR status: %{_status}.
 
 %prep
 %pear_package_setup
-%patch0 -p1
 
 mv docs/%{_pearname}/examples .
 
diff --git a/deprecation.patch b/deprecation.patch
deleted file mode 100644
index 3939af8..000
--- a/deprecation.patch
+++ /dev/null
@@ -1,11 +0,0 @@
 Console_Getargs-1.3.5/usr/share/pear/Console/Getargs.php~  2010-11-15 
16:53:57.0 +0200
-+++ Console_Getargs-1.3.5/usr/share/pear/Console/Getargs.php   2010-11-15 
16:54:34.292318997 +0200
-@@ -224,7 +224,7 @@
- function &factory($config = array(), $arguments = null)
- {
- // Create the options object.
--$obj = & new Console_Getargs_Options();
-+$obj = new Console_Getargs_Options();
- 
- // Try to set up the arguments.
- $err = $obj->init($config, $arguments);


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/php-pear-Console_Getargs.git/commitdiff/693ecee3c5dea440ab4c60fb26acf532fc465600

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


DISTFILES: php-pear-Console_Getargs: Console_Getargs-1.4.0.tgz

2018-10-21 Thread adamg
Request by: adamg


Files fetched: 1

STORED: http://pear.php.net/get/Console_Getargs-1.4.0.tgz
f99266907369af0191ea32f25dc6317e  Console_Getargs-1.4.0.tgz
Size: 18267 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/php-pear-Console_Table] - updated to 1.3.0

2018-10-21 Thread adamg
commit 50c7596e7251e65d7d8e6d1b6fc7828980767627
Author: Adam Gołębiowski 
Date:   Mon Oct 22 08:25:53 2018 +0200

- updated to 1.3.0

 php-pear-Console_Table.spec | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/php-pear-Console_Table.spec b/php-pear-Console_Table.spec
index 11d8349..ee0d08e 100644
--- a/php-pear-Console_Table.spec
+++ b/php-pear-Console_Table.spec
@@ -4,12 +4,12 @@
 Summary:   %{pearname} - makes it easy to build console style tables
 Summary(pl.UTF-8): %{pearname} - proste tworzenie tabel konsolowych
 Name:  php-pear-%{pearname}
-Version:   1.2.1
+Version:   1.3.0
 Release:   1
 License:   PHP 2.02
 Group: Development/Languages/PHP
 Source0:   http://pear.php.net/get/%{pearname}-%{version}.tgz
-# Source0-md5: 87e0447d69f396eb755c3a8629a9d8d9
+# Source0-md5: d01d1c51bf1cd1150332df27e2fdc8a5
 URL:   http://pear.php.net/package/Console_Table/
 BuildRequires: php-pear-PEAR
 BuildRequires: rpm-php-pearprov >= 4.4.2-11


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/php-pear-Console_Table.git/commitdiff/50c7596e7251e65d7d8e6d1b6fc7828980767627

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


DISTFILES: php-pear-Console_Table: Console_Table-1.3.0.tgz

2018-10-21 Thread adamg
Request by: adamg


Files fetched: 1

STORED: http://pear.php.net/get/Console_Table-1.3.0.tgz
d01d1c51bf1cd1150332df27e2fdc8a5  Console_Table-1.3.0.tgz
Size: 11391 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/php-pear-Crypt_GPG] - updated to 1.4.0

2018-10-21 Thread adamg
commit 43042c47782ece426b7499b6761073ff24721eea
Author: Adam Gołębiowski 
Date:   Mon Oct 22 08:30:08 2018 +0200

- updated to 1.4.0

 php-pear-Crypt_GPG.spec | 8 +++-
 1 file changed, 3 insertions(+), 5 deletions(-)
---
diff --git a/php-pear-Crypt_GPG.spec b/php-pear-Crypt_GPG.spec
index 2841df6..f435fdd 100644
--- a/php-pear-Crypt_GPG.spec
+++ b/php-pear-Crypt_GPG.spec
@@ -4,12 +4,12 @@
 Summary:   %{pearname} - GNU Privacy Guard (GPG)
 Summary(pl.UTF-8): %{pearname} - Gnu Privacy Guard (GPG)
 Name:  php-pear-%{pearname}
-Version:   1.3.2
+Version:   1.4.0
 Release:   1
 License:   LGPL
 Group: Development/Languages/PHP
 Source0:   http://pear.php.net/get/%{pearname}-%{version}.tgz
-# Source0-md5: 8dea7ae503c282cedca591706bc2cc04
+# Source0-md5: bddff46921d6f63d9166cfd213f6733e
 URL:   http://pear.php.net/package/Crypt_GPG/
 BuildRequires: php-pear-PEAR
 BuildRequires: rpm-php-pearprov >= 4.4.2-11
@@ -42,8 +42,6 @@ Ta klasa ma w PEAR status: %{status}.
 %prep
 %pear_package_setup
 
-mv .%{php_pear_dir}/data/Crypt_GPG/ChangeLog .
-
 %install
 rm -rf $RPM_BUILD_ROOT
 install -d $RPM_BUILD_ROOT%{php_pear_dir}
@@ -54,7 +52,7 @@ rm -rf $RPM_BUILD_ROOT
 
 %files
 %defattr(644,root,root,755)
-%doc ChangeLog
+%doc docs/Crypt_GPG/README.md
 %doc install.log
 %{php_pear_dir}/.registry/*.reg
 %{php_pear_dir}/Crypt/GPG


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/php-pear-Crypt_GPG.git/commitdiff/43042c47782ece426b7499b6761073ff24721eea

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


DISTFILES: php-pear-Crypt_GPG: Crypt_GPG-1.4.0.tgz

2018-10-21 Thread adamg
Request by: adamg


Files fetched: 1

STORED: http://pear.php.net/get/Crypt_GPG-1.4.0.tgz
bddff46921d6f63d9166cfd213f6733e  Crypt_GPG-1.4.0.tgz
Size: 348446 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


  1   2   >