[packages/gpgme] - updated to 1.7.0 - updated largefile patch (all gpgme users must define the same _FILE_OFFSET_BITS

2016-10-09 Thread qboosh
commit 04bb14bcab64b4995d7b22bd28ec4f0e53daf194
Author: Jakub Bogusz 
Date:   Sun Oct 9 10:37:57 2016 +0200

- updated to 1.7.0
- updated largefile patch (all gpgme users must define the same 
_FILE_OFFSET_BITS as library itself)
- added python patch (install .pyo files, avoid installed-files.txt)
- package bindings: GpgMEpp (as -c++*), QGpgME (as -qt5*), python2-, 
python3-

 gpgme-1.2.0-largefile.patch |  23 -
 gpgme-largefile.patch   | 101 +++
 gpgme-python.patch  |  20 
 gpgme.spec  | 241 ++--
 4 files changed, 354 insertions(+), 31 deletions(-)
---
diff --git a/gpgme.spec b/gpgme.spec
index f1a5f4c..1deaf68 100644
--- a/gpgme.spec
+++ b/gpgme.spec
@@ -1,32 +1,56 @@
-# TODO: package lisp files:
-#/usr/share/common-lisp/source/gpgme/gpgme-package.lisp
-#/usr/share/common-lisp/source/gpgme/gpgme.asd
-#/usr/share/common-lisp/source/gpgme/gpgme.lisp
+# TODO: finish common-lisp package (is it a proper location? what package 
name?)
 #
 # Conditional build:
 %bcond_without static_libs # do not build static libraries
+%bcond_withcommonlisp  # Common Lisp interface
+%bcond_without cxx # C++ interface (GpgMEpp library)
+%bcond_without qt5 # Qt 5 interface (QGpgME library), requires cxx
+%bcond_without python  # Python interfaces (PyME, both python2+python3)
+%bcond_without python2 # Python 2 interface (PyME)
+%bcond_without python3 # Python 3 interface (PyME)
 %bcond_withtests   # perform tests
 #
+%if %{without python}
+%undefine  with_python2
+%undefine  with_python3
+%endif
+%if %{without cxx}
+%undefine  with_qt5
+%endif
 Summary:   Library for accessing GnuPG
 Summary(pl.UTF-8): Biblioteka dająca dostęp do funkcji GnuPG
 Name:  gpgme
-Version:   1.6.0
+Version:   1.7.0
 Release:   1
 Epoch: 1
 License:   LGPL v2.1+
 Group: Libraries
 Source0:   ftp://ftp.gnupg.org/gcrypt/gpgme/%{name}-%{version}.tar.bz2
-# Source0-md5: 60d730d22e8065fd5de309e8b98e304b
+# Source0-md5: c3f24c50bc5bdb7b898da0e278425ad2
 Patch0:%{name}-info.patch
 Patch1:%{name}-kill-tests.patch
-Patch2:%{name}-1.2.0-largefile.patch
+Patch2:%{name}-largefile.patch
+Patch3:%{name}-python.patch
 URL:   http://www.gnupg.org/gpgme.html
 BuildRequires: autoconf >= 2.59
 BuildRequires: automake >= 1:1.14
 BuildRequires: libassuan-devel >= 1:2.0.2
 BuildRequires: libgpg-error-devel >= 1.11
+%{?with_cxx:BuildRequires: libstdc++-devel >= 6:4.7}
 BuildRequires: libtool >= 2:2.2.6
+%{?with_python2:BuildRequires: python-devel >= 1:2.7}
+%{?with_python3:BuildRequires: python3-devel >= 1:3.4}
+%{?with_python:BuildRequires:  rpm-pythonprov}
+BuildRequires: rpmbuild(macros) >= 1.219
+%{?with_python:BuildRequires:  swig-python}
 BuildRequires: texinfo
+%if %{with qt5}
+BuildRequires: Qt5Core-devel >= 5.0.0
+%{?with_tests:BuildRequires:   Qt5Test-devel >= 5.0.0}
+BuildRequires: doxygen
+BuildRequires: graphviz
+BuildRequires: qt5-build >= 5.0.0
+%endif
 BuildConflicts:gnupg < 1.3.0
 Suggests:  gnupg >= 1.4.0
 Suggests:  gnupg-smime >= 1.9.8
@@ -70,11 +94,122 @@ Static version of GPGME library.
 %description static -l pl.UTF-8
 Statyczna wersja biblioteki GPGME.
 
+%package c++
+Summary:   GpgMEpp - C++ interface for GPGME library
+Summary(pl.UTF-8): GpgMEpp - interfejs C++ do biblioteki GPGME
+Group: Libraries
+Requires:  %{name} = %{version}-%{release}
+
+%description c++
+GpgMEpp is a C++ wrapper (or C++ bindings) for the GnuPG project's
+gpgme (GnuPG Made Easy). It's based on KF5gpgmepp library.
+
+%description c++ -l pl.UTF-8
+GpgMEpp to interfejs C++ (wiązania C++) do biblioteki gpgme (GnuPG
+Made Easy) z projektu GnuPG. Jest oparty na bibliotece KF5gpgme.pp.
+
+%package c++-devel
+Summary:   Header files for GpgMEpp library
+Summary(pl.UTF-8): Pliki nagłówkowe biblioteki GpgMEpp
+Group: Development/Libraries
+Requires:  %{name}-c++ = %{version}-%{release}
+Requires:  libstdc++-devel >= 6:4.7
+
+%description c++-devel
+Header files for GpgMEpp library.
+
+%description c++-devel -l pl.UTF-8
+Pliki nagłówkowe biblioteki GpgMEpp.
+
+%package c++-static
+Summary:   Static GpgMEpp library
+Summary(pl.UTF-8): Statyczna biblioteka GpgMEpp
+Group: Development/Libraries
+Requires:  %{name}-c++-devel = %{version}-%{release}
+
+%description c++-static
+Static GpgMEpp library.
+
+%description c++-static -l pl.UTF-8
+Statyczna biblioteka GpgMEpp.
+
+%package qt5
+Summary:   QGpgME - Qt 5 interface for GPGME library
+Summary(pl.UTF-8): QGpgME - interfejs Qt 5 do biblioteki GPGME
+License:   GPL v2+ with Qt linking exception
+Group: Libraries
+Requires:  %{name}-c++ = %{version}-%{release}
+Requires:  

DISTFILES: gpgme: gpgme-1.7.0.tar.bz2

2016-10-09 Thread qboosh
Request by: qboosh


Files fetched: 1

STORED: ftp://ftp.gnupg.org/gcrypt/gpgme/gpgme-1.7.0.tar.bz2
c3f24c50bc5bdb7b898da0e278425ad2  gpgme-1.7.0.tar.bz2
Size: 1281708 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/libdrm] - updated to 2.4.71

2016-10-09 Thread qboosh
commit bb377ffb247a906e690021f051873a491c276925
Author: Jakub Bogusz 
Date:   Sun Oct 9 10:59:00 2016 +0200

- updated to 2.4.71

 libdrm.spec | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/libdrm.spec b/libdrm.spec
index b4f7c4b..23e4d4d 100644
--- a/libdrm.spec
+++ b/libdrm.spec
@@ -1,12 +1,12 @@
 Summary:   Userspace interface to kernel DRM services
 Summary(pl.UTF-8): Interfejs przestrzeni użytkownika do usług DRM jądra
 Name:  libdrm
-Version:   2.4.70
+Version:   2.4.71
 Release:   1
 License:   MIT
 Group: Libraries
 Source0:   https://dri.freedesktop.org/libdrm/%{name}-%{version}.tar.bz2
-# Source0-md5: 920957cfe25a80efb02be9bd90bf3c1e
+# Source0-md5: 776bccc84618b616fc57a7143836ae7a
 URL:   https://dri.freedesktop.org/
 BuildRequires: autoconf >= 2.63
 BuildRequires: automake >= 1:1.10


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/libdrm.git/commitdiff/bb377ffb247a906e690021f051873a491c276925

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


DISTFILES: libdrm: libdrm-2.4.71.tar.bz2

2016-10-09 Thread qboosh
Request by: qboosh


Files fetched: 1

STORED: https://dri.freedesktop.org/libdrm/libdrm-2.4.71.tar.bz2
776bccc84618b616fc57a7143836ae7a  libdrm-2.4.71.tar.bz2
Size: 722278 bytes


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


[packages/kernel] - typo

2016-10-09 Thread baggins
commit 6635e10dcb33321ba259035212f27cdcfa1d5a8c
Author: Jan Rękorajski 
Date:   Sun Oct 9 19:54:31 2016 +0200

- typo

 kernel-imq.patch | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
---
diff --git a/kernel-imq.patch b/kernel-imq.patch
index d303e23..74a23cc 100644
--- a/kernel-imq.patch
+++ b/kernel-imq.patch
@@ -1271,7 +1271,7 @@ diff -Naupr linux-4.8_orig/net/core/dev.c 
linux-4.8/net/core/dev.c
return skb;
  }
 +#if defined(CONFIG_IMQ_MODULE)
-+EXPORT_SYMBOL_GPL(dev_hard_start_xmit)
++EXPORT_SYMBOL_GPL(dev_hard_start_xmit);
 +#endif
  
  static struct sk_buff *validate_xmit_vlan(struct sk_buff *skb,


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/kernel.git/commitdiff/6635e10dcb33321ba259035212f27cdcfa1d5a8c

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


[packages/kernel/LINUX_4_4] - 4.4.24

2016-10-09 Thread baggins
commit 0a5c719042d96b97904dea48248be35779c64ede
Author: Jan Rękorajski 
Date:   Sun Oct 9 21:29:03 2016 +0200

- 4.4.24

 kernel.spec | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/kernel.spec b/kernel.spec
index 1e9b3c6..c4f1cf9 100644
--- a/kernel.spec
+++ b/kernel.spec
@@ -70,7 +70,7 @@
 
 %definerel 1
 %definebasever 4.4
-%definepostver .23
+%definepostver .24
 
 # define this to '-%{basever}' for longterm branch
 %defineversuffix   -%{basever}
@@ -119,7 +119,7 @@ Source0:
http://www.kernel.org/pub/linux/kernel/v4.x/linux-%{basever}.tar.xz
 # Source0-md5: 9a78fa2eb6c68ca5a40ed5af08142599
 %if "%{postver}" != ".0"
 Patch0:
http://www.kernel.org/pub/linux/kernel/v4.x/patch-%{version}.xz
-# Patch0-md5:  fc4815605d4bd6e52f4433be3ee57c8b
+# Patch0-md5:  2739f6fa93d7621f1b98ebb658415a5d
 %endif
 Source1:   kernel.sysconfig
 


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/kernel.git/commitdiff/0a5c719042d96b97904dea48248be35779c64ede

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


DISTFILES: prelude-correlator: prelude-correlator-3.1.0.tar.gz

2016-10-09 Thread qboosh
Request by: qboosh


Files fetched: 1

STORED: 
https://www.prelude-siem.org/attachments/download/723/prelude-correlator-3.1.0.tar.gz
9fe16a969afdb3ffbd682827547bcf66  prelude-correlator-3.1.0.tar.gz
Size: 185812 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: kernel: linux-4.4.tar.xz patch-4.4.24.xz

2016-10-09 Thread baggins
Request by: baggins


Files fetched: 1

ALREADY GOT: http://www.kernel.org/pub/linux/kernel/v4.x/linux-4.4.tar.xz
9a78fa2eb6c68ca5a40ed5af08142599  linux-4.4.tar.xz
STORED: http://www.kernel.org/pub/linux/kernel/v4.x/patch-4.4.24.xz
2739f6fa93d7621f1b98ebb658415a5d  patch-4.4.24.xz
Size: 738728 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/electron/source] prep works with npm-3.10.8

2016-10-09 Thread glen
commit df97e97b2de033534c06565a495d56bf309e881a
Author: Elan Ruusamäe 
Date:   Sun Oct 9 14:46:27 2016 +0300

prep works with npm-3.10.8

 electron.spec | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
---
diff --git a/electron.spec b/electron.spec
index b50db83..31f5552 100644
--- a/electron.spec
+++ b/electron.spec
@@ -25,7 +25,7 @@ BuildRequires:libcap-devel
 BuildRequires: libgnome-keyring-devel
 BuildRequires: libnotify-devel
 BuildRequires: ncurses
-BuildRequires: npm
+BuildRequires: npm >= 3
 BuildRequires: nss-devel
 BuildRequires: python >= 1:2.7
 BuildRequires: xorg-app-iceauth


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/electron.git/commitdiff/df97e97b2de033534c06565a495d56bf309e881a

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


DISTFILES: guitarix: guitarix2-0.35.1.tar.xz

2016-10-09 Thread jajcus
Request by: jajcus


Files fetched: 1

STORED: http://downloads.sourceforge.net/guitarix/guitarix2-0.35.1.tar.xz
fb7269fe6fdde4c493be65f974819bb4  guitarix2-0.35.1.tar.xz
Size: 74997052 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/guitarix] Version: 0.35.1

2016-10-09 Thread jajcus
commit 6dd089143e683960ab1c1ebceca1aeb85a5dd3a3
Author: Jacek Konieczny 
Date:   Sun Oct 9 15:45:58 2016 +0200

Version: 0.35.1

 guitarix.spec | 76 ++-
 1 file changed, 59 insertions(+), 17 deletions(-)
---
diff --git a/guitarix.spec b/guitarix.spec
index 454b51c..b2e2a2e 100644
--- a/guitarix.spec
+++ b/guitarix.spec
@@ -1,22 +1,36 @@
+
+# TODO:
+#  - package the roboto font separately
+
 Summary:   Linux Rock Guitar Amplifier for Jack Audio Connektion Kit
-#Summary(pl.UTF-8):-
 Name:  guitarix
-Version:   0.11.1
+Version:   0.35.1
 Release:   1
-License:   GPL v2
+License:   GPL v2+, GPL v3+ (abgate plugin), Apache (font)
 Group: Applications/Multimedia
-Source0:   http://dl.sourceforge.net/guitarix/%{name}-%{version}.tar.bz2
-# Source0-md5: 1c95a67c0788d6ffe609e430d4b57169
+Source0:   
http://downloads.sourceforge.net/guitarix/%{name}2-%{version}.tar.xz
+# Source0-md5: fb7269fe6fdde4c493be65f974819bb4
 URL:   http://guitarix.sourceforge.net/
+BuildRequires: avahi-gobject-devel
+BuildRequires: bluez-libs-devel
+BuildRequires: boost-devel >= 1.38
+BuildRequires: eigen3
+BuildRequires: fftw3-devel >= 3.1.2
+BuildRequires: gettext-tools
+BuildRequires: glib2-devel
+BuildRequires: glibmm-devel >= 2.24.0
+BuildRequires: gperf
+BuildRequires: gtk+2-devel >= 1:2.12.0
+BuildRequires: gtkmm-devel >= 2.12.0
+BuildRequires: intltool
+BuildRequires: jack-audio-connection-kit-devel > 0.109.1
 BuildRequires: ladspa-devel
-BuildRequires: jack-audio-connection-kit-devel
+BuildRequires: liblrdf-devel
 BuildRequires: libsndfile-devel >= 1.0.17
-BuildRequires: gtk+2-devel
-BuildRequires: glib2-devel
-BuildRequires: gtkmm-devel
-BuildRequires: glibmm-devel
-BuildRequires: fftw3-devel >= 3.1.2
-BuildRequires: boost-devel
+BuildRequires: lilv-devel
+BuildRequires: zita-convolver-devel
+BuildRequires: zita-resampler-devel
+Requires(post,postun): fontpostinst
 Requires:  ladspa
 BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
 
@@ -30,33 +44,61 @@ freeverb, impulse response, vibrato, chorus, delay, 
crybaby(wah),
 ampselector, tonestack, and echo. For 'pressure' in the sound you can
 use the feedback and feedforward sliders.
 
-#%description -l pl.UTF-8
 
 %prep
 %setup -q
 
 %build
 ./waf configure \
+   --cxxflags-release="%{rpmcflags} -DNDEBUG" \
--prefix=%{_prefix} \
-   --ladspadir=%{_libdir}/ladspa
+   --libdir=%{_libdir} \
+   --ladspadir=%{_libdir}/ladspa \
+   --install-roboto-font
 
 ./waf build
 
 %install
 rm -rf $RPM_BUILD_ROOT
 
+install -d $RPM_BUILD_ROOT%{_fontsdir}/TTF
+
 ./waf install \
--destdir=$RPM_BUILD_ROOT
 
+rm -f $RPM_BUILD_ROOT%{_datadir}/fonts/truetype/robotocondensed/LICENSE.txt
+
+rm -f $RPM_BUILD_ROOT%{_libdir}/*.so
+
+mv $RPM_BUILD_ROOT%{_datadir}/fonts/truetype/robotocondensed/*.ttf 
$RPM_BUILD_ROOT%{_fontsdir}/TTF/
+
+%find_lang %{name}
+
+%post
+fontpostinst TTF
+/sbin/ldconfig
+
+%postun
+fontpostinst TTF
+
 %clean
 rm -rf $RPM_BUILD_ROOT
 
-%files
+%files -f %{name}.lang
 %defattr(644,root,root,755)
 %doc changelog README*
 %attr(755,root,root) %{_bindir}/guitarix
+%attr(755,root,root) %{_libdir}/libgxw.so.0.*
+%attr(755,root,root) %ghost %{_libdir}/libgxw.so.0
+%attr(755,root,root) %{_libdir}/libgxwmm.so.0.*
+%attr(755,root,root) %ghost %{_libdir}/libgxwmm.so.0
 %attr(755,root,root) %{_libdir}/ladspa/*.so
+%{_datadir}/ladspa/rdf/*.rdf
+%dir %{_libdir}/lv2/gx*
+%attr(755,root,root) %{_libdir}/lv2/gx*/*.so
+%{_libdir}/lv2/gx*/*.ttl
+%{_libdir}/lv2/gx*/modgui
 %{_desktopdir}/guitarix.desktop
-%{_datadir}/guitarix
-%{_datadir}/ladspa/rdf/guitarix.rdf
+%{_datadir}/gx_head
+%{_fontsdir}/TTF/*.ttf
 %{_pixmapsdir}/*.png


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/guitarix.git/commitdiff/6dd089143e683960ab1c1ebceca1aeb85a5dd3a3

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


[packages/kernel] - aufs updated (to aufs4.x-rcN branch; no 4.8 branch yet)

2016-10-09 Thread arekm
commit e2f27e51ceca2d312847b5db0436f7004fe489b7
Author: Arkadiusz Miśkiewicz 
Date:   Sun Oct 9 16:57:55 2016 +0200

- aufs updated (to aufs4.x-rcN branch; no 4.8 branch yet)

 kernel-aufs4.patch | 626 -
 kernel.spec|   2 +-
 2 files changed, 380 insertions(+), 248 deletions(-)
---
diff --git a/kernel.spec b/kernel.spec
index 8661138..9bde212 100644
--- a/kernel.spec
+++ b/kernel.spec
@@ -191,7 +191,7 @@ Patch101:   kernel-vserver-fixes.patch
 # Patch creation:
 # git clone git://github.com/sfjro/aufs4-standalone.git
 # cd aufs4-standalone
-# git checkout -b aufs4.7 origin/aufs4.7
+# git checkout -b aufs4.8 origin/aufs4.8
 # cat aufs4-kbuild.patch aufs4-base.patch aufs4-mmap.patch 
aufs4-standalone.patch > ~/rpm/packages/kernel/kernel-aufs4.patch
 # rm -rf linux && mkdir linux
 # cp -a Documentation fs include linux
diff --git a/kernel-aufs4.patch b/kernel-aufs4.patch
index 80c6bbf..cce529e 100644
--- a/kernel-aufs4.patch
+++ b/kernel-aufs4.patch
@@ -1,10 +1,10 @@
-aufs4.7 kbuild patch
+aufs4.x-rcN kbuild patch
 
 diff --git a/fs/Kconfig b/fs/Kconfig
-index b8fcb41..78adefb 100644
+index 2bc7ad7..3049386 100644
 --- a/fs/Kconfig
 +++ b/fs/Kconfig
-@@ -236,6 +236,7 @@ source "fs/pstore/Kconfig"
+@@ -245,6 +245,7 @@ source "fs/pstore/Kconfig"
  source "fs/sysv/Kconfig"
  source "fs/ufs/Kconfig"
  source "fs/exofs/Kconfig"
@@ -13,16 +13,16 @@ index b8fcb41..78adefb 100644
  endif # MISC_FILESYSTEMS
  
 diff --git a/fs/Makefile b/fs/Makefile
-index 85b6e13..e7bb164 100644
+index ed2b632..aa6d14b 100644
 --- a/fs/Makefile
 +++ b/fs/Makefile
-@@ -128,3 +128,4 @@ obj-y  += exofs/ # Multiple 
modules
+@@ -129,3 +129,4 @@ obj-y  += exofs/ # Multiple 
modules
  obj-$(CONFIG_CEPH_FS) += ceph/
  obj-$(CONFIG_PSTORE)  += pstore/
  obj-$(CONFIG_EFIVAR_FS)   += efivarfs/
 +obj-$(CONFIG_AUFS_FS)   += aufs/
 diff --git a/include/uapi/linux/Kbuild b/include/uapi/linux/Kbuild
-index ec10cfe..800211b 100644
+index 185f8ea..5deb0d1 100644
 --- a/include/uapi/linux/Kbuild
 +++ b/include/uapi/linux/Kbuild
 @@ -59,6 +59,7 @@ header-y += atmsvc.h
@@ -33,13 +33,13 @@ index ec10cfe..800211b 100644
  header-y += auto_fs4.h
  header-y += auto_fs.h
  header-y += auxvec.h
-aufs4.7 base patch
+aufs4.x-rcN base patch
 
 diff --git a/MAINTAINERS b/MAINTAINERS
-index 8c20323..d170184 100644
+index 01bff8e..ac77455 100644
 --- a/MAINTAINERS
 +++ b/MAINTAINERS
-@@ -2213,6 +2213,19 @@ F:  include/linux/audit.h
+@@ -2256,6 +2256,19 @@ F:  include/linux/audit.h
  F:include/uapi/linux/audit.h
  F:kernel/audit*
  
@@ -60,10 +60,10 @@ index 8c20323..d170184 100644
  M:Miguel Ojeda Sandonis 
  W:http://miguelojeda.es/auxdisplay.htm
 diff --git a/drivers/block/loop.c b/drivers/block/loop.c
-index 1fa8cc2..7339e65 100644
+index c9f2107..005e292 100644
 --- a/drivers/block/loop.c
 +++ b/drivers/block/loop.c
-@@ -712,6 +712,24 @@ static inline int is_loop_device(struct file *file)
+@@ -701,6 +701,24 @@ static inline int is_loop_device(struct file *file)
return i && S_ISBLK(i->i_mode) && MAJOR(i->i_rdev) == LOOP_MAJOR;
  }
  
@@ -89,10 +89,10 @@ index 1fa8cc2..7339e65 100644
  
  static ssize_t loop_attr_show(struct device *dev, char *page,
 diff --git a/fs/dcache.c b/fs/dcache.c
-index d6847d7..c3c0b6d 100644
+index 5c7cc95..df0268c 100644
 --- a/fs/dcache.c
 +++ b/fs/dcache.c
-@@ -1202,7 +1202,7 @@ enum d_walk_ret {
+@@ -1164,7 +1164,7 @@ enum d_walk_ret {
   *
   * The @enter() and @finish() callbacks are called with d_lock held.
   */
@@ -124,10 +124,10 @@ index 350a2c8..6f42279 100644
return error;
  
 diff --git a/fs/inode.c b/fs/inode.c
-index 4ccbc21..aa6d071 100644
+index 7e3ef3a..675fe84 100644
 --- a/fs/inode.c
 +++ b/fs/inode.c
-@@ -1591,7 +1591,7 @@ EXPORT_SYMBOL(generic_update_time);
+@@ -1593,7 +1593,7 @@ EXPORT_SYMBOL(generic_update_time);
   * This does the actual work of updating an inodes time or version.  Must have
   * had called mnt_want_write() before calling this.
   */
@@ -137,7 +137,7 @@ index 4ccbc21..aa6d071 100644
int (*update_time)(struct inode *, struct timespec *, int);
  
 diff --git a/fs/read_write.c b/fs/read_write.c
-index 933b53a..2d13282 100644
+index 66215a7..a1da117 100644
 --- a/fs/read_write.c
 +++ b/fs/read_write.c
 @@ -515,6 +515,28 @@ ssize_t __vfs_write(struct file *file, const char __user 
*p, size_t count,
@@ -210,10 +210,10 @@ index 7444f5f..bdac0be 100644
  static inline void fput_light(struct file *file, int fput_needed)
  {
 diff --git a/include/linux/fs.h b/include/linux/fs.h
-index dd28814..b689a48 100644
+index 901e25d..a71aa9e 100644
 --- a/include/linux/fs.h
 +++ b/include/linux/fs.h
-@@ -1306,6 +1306,7 @@ extern void fasync_free(struct fasync_struct *);
+@@ -1275,6 +1275,7 @@ extern void fasync_free(struct fasync_struct *);
  /* can be 

[packages/libchromiumcontent] cosmetics

2016-10-09 Thread glen
commit cf342e266e5a9d3775d71c260ff0c70d5a635dc9
Author: Elan Ruusamäe 
Date:   Sun Oct 9 19:30:33 2016 +0300

cosmetics

 libchromiumcontent.spec | 12 ++--
 1 file changed, 6 insertions(+), 6 deletions(-)
---
diff --git a/libchromiumcontent.spec b/libchromiumcontent.spec
index 91fa52e..0ea29c0 100644
--- a/libchromiumcontent.spec
+++ b/libchromiumcontent.spec
@@ -44,10 +44,10 @@ ExclusiveArch:  %{x8664} %{ix86}
 BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
 
 %ifarch %{x8664}
-%definetarget x64
+%definetarget_arch x64
 %endif
 %ifarch %{ix86}
-%definetarget ia32
+%definetarget_arch ia32
 %endif
 
 %description
@@ -74,7 +74,7 @@ Static files for libchromiumcontent
 %setup -q -a1
 # unpack chromium source
 mkdir -p vendor/chromium
-cp -a chromium-%{version} vendor/chromium/src
+mv chromium-%{version} vendor/chromium/src
 # use system clang
 mkdir -p vendor/chromium/src/third_party/llvm-build/Release+Asserts/{bin,lib}
 ln -s %{_bindir}/clang 
vendor/chromium/src/third_party/llvm-build/Release+Asserts/bin/clang
@@ -87,9 +87,9 @@ ln -s %{_bindir}/clang++ 
vendor/chromium/src/third_party/llvm-build/Release+Asse
 %patch4 -p1
 
 %build
-script/update -t %{target}
-script/build -t %{target}
-script/create-dist -t %{target}
+script/update -t %{target_arch}
+script/build -t %{target_arch}
+script/create-dist -t %{target_arch}
 
 %install
 rm -rf $RPM_BUILD_ROOT


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/libchromiumcontent.git/commitdiff/cf342e266e5a9d3775d71c260ff0c70d5a635dc9

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


[packages/electron/source] try use system clang

2016-10-09 Thread glen
commit 368ad49a4ff9cb98413ed892a4cd74c64335943c
Author: Elan Ruusamäe 
Date:   Sun Oct 9 14:13:15 2016 +0300

try use system clang

 electron.spec | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
---
diff --git a/electron.spec b/electron.spec
index 800e4a7..b50db83 100644
--- a/electron.spec
+++ b/electron.spec
@@ -60,7 +60,7 @@ and Chromium and is used in the Atom editor.
 %setup -qcT
 git clone https://github.com/atom/electron.git -b v%{version} --depth 1 .
 
-./script/bootstrap.py -v
+./script/bootstrap.py -v --clang_dir %{_prefix}
 
 install -d lib
 ln -s %{_libdir}/libncurses.so.5 lib/libtinfo.so.5


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/electron.git/commitdiff/368ad49a4ff9cb98413ed892a4cd74c64335943c

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


[packages/electron/source] up to 1.4.3, build deps from project readme

2016-10-09 Thread glen
commit a3cad0dd11fd36ee3f70a34651ae386db4f0871d
Author: Elan Ruusamäe 
Date:   Sun Oct 9 13:44:23 2016 +0300

up to 1.4.3, build deps from project readme

 electron.spec | 36 +---
 1 file changed, 33 insertions(+), 3 deletions(-)
---
diff --git a/electron.spec b/electron.spec
index a79b3aa..800e4a7 100644
--- a/electron.spec
+++ b/electron.spec
@@ -1,20 +1,50 @@
 # TODO:
 # - build from source (the process and deps look like hell)
-#   
https://github.com/atom/electron/blob/v0.36.0/docs/development/build-instructions-linux.md
+#   
https://github.com/electron/electron/blob/v1.4.3/docs/development/build-instructions-linux.md
 # NOTES:
-# - space considerations: ~25GiB for build
+# - At least 25GB disk space and 8GB RAM.
 #
 
 Summary:   Framework cross-platform desktop applications using JavaScript, 
HTML and CSS
 Name:  electron
-Version:   0.36.0
+Version:   1.4.3
 Release:   0.1
 License:   MIT, BSD
 Group: Applications
 URL:   https://github.com/atom/electron
+BuildRequires: GConf2-devel
+BuildRequires: alsa-lib-devel
+BuildRequires: bison
+BuildRequires: clang
+BuildRequires: cups-devel
+BuildRequires: dbus-devel
 BuildRequires: git-core
+BuildRequires: gperf
+BuildRequires: gtk+2-devel
+BuildRequires: libcap-devel
+BuildRequires: libgnome-keyring-devel
+BuildRequires: libnotify-devel
 BuildRequires: ncurses
 BuildRequires: npm
+BuildRequires: nss-devel
+BuildRequires: python >= 1:2.7
+BuildRequires: xorg-app-iceauth
+BuildRequires: xorg-app-rgb
+BuildRequires: xorg-app-sessreg
+BuildRequires: xorg-app-xgamma
+BuildRequires: xorg-app-xhost
+BuildRequires: xorg-app-xinput
+BuildRequires: xorg-app-xkill
+BuildRequires: xorg-app-xmodmap
+BuildRequires: xorg-app-xrandr
+BuildRequires: xorg-app-xrandr
+BuildRequires: xorg-app-xrefresh
+BuildRequires: xorg-app-xset
+BuildRequires: xorg-app-xsetpointer
+BuildRequires: xorg-app-xsetroot
+BuildRequires: xorg-app-xstdcmap
+BuildRequires: xorg-lib-libXrandr-devel
+BuildRequires: xorg-lib-libXtst-devel
 ExclusiveArch: %{ix86} %{x8664}
 BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
 


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/electron.git/commitdiff/368ad49a4ff9cb98413ed892a4cd74c64335943c

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


[packages/libchromiumcontent] Created branch master

2016-10-09 Thread glen
The branch 'master' was created.

Summary of new commits:

  21c3ad3... new, version 47.0.2526.110
___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


[packages/libchromiumcontent] new, version 47.0.2526.110

2016-10-09 Thread glen
commit 21c3ad3e4087c49a79cb41e936f8e8b37e7e120f
Author: Elan Ruusamäe 
Date:   Sun Oct 9 15:25:36 2016 +0300

new, version 47.0.2526.110

from

https://build.opensuse.org/source/home:MargueriteSu:branches:devel:languages:nodejs/libchromiumcontent

 dist-no-zip.patch   |  13 +
 gcc5.patch  |  52 
 libchromiumcontent.spec | 123 
 no-bitfield-width.patch |  35 ++
 no-download.patch   |  17 +++
 no-sysroot.patch|  20 
 6 files changed, 260 insertions(+)
---
diff --git a/libchromiumcontent.spec b/libchromiumcontent.spec
new file mode 100644
index 000..91fa52e
--- /dev/null
+++ b/libchromiumcontent.spec
@@ -0,0 +1,123 @@
+Summary:   Shared library build of Chromium’s Content module
+Name:  libchromiumcontent
+Version:   47.0.2526.110
+Release:   0.1
+License:   MIT
+Group: Libraries
+Source0:   
https://build.opensuse.org/source/home:MargueriteSu:branches:devel:languages:nodejs/libchromiumcontent/%{name}-%{version}.tar.xz
+Source1:   
https://build.opensuse.org/source/home:MargueriteSu:branches:devel:languages:nodejs/libchromiumcontent/chromium-%{version}.tar.xz
+Patch0:no-download.patch
+Patch1:no-sysroot.patch
+Patch2:gcc5.patch
+Patch3:no-bitfield-width.patch
+Patch4:dist-no-zip.patch
+URL:   https://github.com/atom/libchromiumcontent
+BuildRequires: GConf2-devel
+BuildRequires: alsa-lib-devel
+BuildRequires: atk-devel
+BuildRequires: binutils
+BuildRequires: bison
+BuildRequires: clang
+BuildRequires: cups-devel
+BuildRequires: dbus-devel
+BuildRequires: gperf
+BuildRequires: gtk+2-devel
+BuildRequires: heimdal-devel
+BuildRequires: libexif-devel
+BuildRequires: libgnome-keyring-devel
+BuildRequires: libstdc++-devel
+BuildRequires: nss-devel
+BuildRequires: pciutils-devel
+BuildRequires: pkg-config
+BuildRequires: pulseaudio-devel
+BuildRequires: python
+BuildRequires: xorg-lib-libX11-devel
+BuildRequires: xorg-lib-libXScrnSaver-devel
+BuildRequires: xorg-lib-libXcomposite-devel
+BuildRequires: xorg-lib-libXcursor-devel
+BuildRequires: xorg-lib-libXi-devel
+BuildRequires: xorg-lib-libXrandr-devel
+BuildRequires: xorg-lib-libXtst-devel
+BuildRequires: xz
+Conflicts: chromium
+ExclusiveArch: %{x8664} %{ix86}
+BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
+
+%ifarch %{x8664}
+%definetarget x64
+%endif
+%ifarch %{ix86}
+%definetarget ia32
+%endif
+
+%description
+A single, shared library that includes the Chromium Content module and
+all its dependencies.
+
+%package devel
+Summary:   Development files for libchromiumcontent
+Group: Development/Libraries
+Requires:  %{name} = %{version}-%{release}
+
+%description devel
+Development files for libchromiumcontent
+
+%package static
+Summary:   Static files for libchromiumcontent
+Group: Development/Libraries
+Requires:  %{name}-devel = %{version}-%{release}
+
+%description static
+Static files for libchromiumcontent
+
+%prep
+%setup -q -a1
+# unpack chromium source
+mkdir -p vendor/chromium
+cp -a chromium-%{version} vendor/chromium/src
+# use system clang
+mkdir -p vendor/chromium/src/third_party/llvm-build/Release+Asserts/{bin,lib}
+ln -s %{_bindir}/clang 
vendor/chromium/src/third_party/llvm-build/Release+Asserts/bin/clang
+ln -s %{_bindir}/clang++ 
vendor/chromium/src/third_party/llvm-build/Release+Asserts/bin/clang++
+
+%patch0 -p1
+%patch1 -p1
+%patch2 -p1
+%patch3 -p1
+%patch4 -p1
+
+%build
+script/update -t %{target}
+script/build -t %{target}
+script/create-dist -t %{target}
+
+%install
+rm -rf $RPM_BUILD_ROOT
+install -d 
$RPM_BUILD_ROOT%{_libdir}/%{name}/{shared_library,static_library,src}
+cp -a dist/main/shared_library/* 
$RPM_BUILD_ROOT%{_libdir}/%{name}/shared_library
+cp -a dist/main/static_library/* 
$RPM_BUILD_ROOT%{_libdir}/%{name}/static_library
+cp -a dist/main/src/* $RPM_BUILD_ROOT%{_libdir}/%{name}/src
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%post  -p /sbin/ldconfig
+%postun-p /sbin/ldconfig
+
+%files
+%defattr(644,root,root,755)
+%doc README.md LICENSE.txt
+%dir %{_libdir}/%{name}
+%{_libdir}/%{name}/shared_library
+%exclude %{_libdir}/%{name}/shared_library/gen
+%exclude %{_libdir}/%{name}/shared_library/*.a
+
+%files devel
+%defattr(644,root,root,755)
+%{_libdir}/%{name}/src
+%{_libdir}/%{name}/shared_library/gen
+
+%files static
+%defattr(644,root,root,755)
+%{_libdir}/%{name}/shared_library/*.a
+%{_libdir}/%{name}/static_library
diff --git a/dist-no-zip.patch b/dist-no-zip.patch
new file mode 100644
index 000..4734033
--- /dev/null
+++ b/dist-no-zip.patch
@@ -0,0 +1,13 @@
+Index: libchromiumcontent-47.0.2526.110/script/create-dist
+===
+--- libchromiumcontent-47.0.2526.110.orig/script/create-dist
 

DISTFILES: sbcl: sbcl-1.3.10-source.tar.bz2 sbcl-1.2.7-x86-linux-binary.tar.bz2 sbcl-1.3.10-x86-64-linux-binary.tar.bz2

2016-10-09 Thread qboosh
Request by: qboosh


Files fetched: 3

STORED: http://download.sourceforge.net/sbcl/sbcl-1.3.10-source.tar.bz2
c8bd43e149109127651a6917976dda4a  sbcl-1.3.10-source.tar.bz2
Size: 5763563 bytes
STORED: http://download.sourceforge.net/sbcl/sbcl-1.2.7-x86-linux-binary.tar.bz2
f6a1b2137fbc74b4a8aaf338643f4ae2  sbcl-1.2.7-x86-linux-binary.tar.bz2
Size: 10516485 bytes
STORED: 
http://download.sourceforge.net/sbcl/sbcl-1.3.10-x86-64-linux-binary.tar.bz2
56fe67f916ccdd84e7b739d0a731cf9f  
sbcl-1.3.10-x86-64-linux-binary.tar.bz2
Size: 9457026 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/fonts-TTF-Roboto] new package

2016-10-09 Thread jajcus
commit 75c5ae2b3c4193c2dd29c80239465007f65635a2
Author: Jacek Konieczny 
Date:   Sun Oct 9 17:35:52 2016 +0200

new package

 fonts-TTF-Roboto.spec | 42 ++
 1 file changed, 42 insertions(+)
---
diff --git a/fonts-TTF-Roboto.spec b/fonts-TTF-Roboto.spec
new file mode 100644
index 000..786cc9c
--- /dev/null
+++ b/fonts-TTF-Roboto.spec
@@ -0,0 +1,42 @@
+Summary:   The Roboto family of fonts
+Name:  fonts-TTF-Roboto
+Version:   2.134
+Release:   1
+License:   Apache
+Group: Fonts
+Source0:   
https://github.com/google/roboto/releases/download/v2.134/roboto-unhinted.zip
+# Source0-md5: 308966fb7e6d65254c52ff721c8e5c21
+URL:   https://github.com/google/roboto/
+BuildRequires: unzip
+Requires(post,postun): fontpostinst
+BuildArch: noarch
+BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
+
+%definettffontsdir %{_fontsdir}/TTF
+
+%description
+Roboto: Google’s signature family of fonts, the default font on
+Android and Chrome OS, and the recommended font for Google’s visual
+language, Material Design.
+
+%prep
+%setup -q -n roboto-unhinted
+
+%install
+rm -rf $RPM_BUILD_ROOT
+install -d $RPM_BUILD_ROOT%{ttffontsdir}
+
+cp -p *.ttf $RPM_BUILD_ROOT%{ttffontsdir}
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%post
+fontpostinst TTF
+
+%postun
+fontpostinst TTF
+
+%files
+%defattr(644,root,root,755)
+%{ttffontsdir}/Roboto*.ttf


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/fonts-TTF-Roboto.git/commitdiff/75c5ae2b3c4193c2dd29c80239465007f65635a2

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


DISTFILES: fonts-TTF-Roboto: roboto-unhinted.zip

2016-10-09 Thread jajcus
Request by: jajcus


Files fetched: 1

STORED: 
https://github.com/google/roboto/releases/download/v2.134/roboto-unhinted.zip
308966fb7e6d65254c52ff721c8e5c21  roboto-unhinted.zip
Size: 3911964 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/fonts-TTF-Roboto] Created branch master

2016-10-09 Thread jajcus
The branch 'master' was created.

Summary of new commits:

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


DISTFILES: libprelude: ERRORS: libprelude-3.1.0.tar.gz

2016-10-09 Thread qboosh
Request by: qboosh

wget -nv --no-iri --no-check-certificate --user-agent=PLD/distfiles -O 
./tmp/28636a58-7a4e-46dd-a9b1-980d8acaf5d5/2e1a5d7cbf98a2d57fbb367a578dbf8c/libprelude-3.1.0.tar.gz
 https://www.prelude-ids.org/attachments/download/721/libprelude-3.1.0.tar.gz:
WARNING: no certificate subject alternative name matches
requested host name 'www.prelude-ids.org'.



Files fetched: 1

STORED: 
https://www.prelude-ids.org/attachments/download/721/libprelude-3.1.0.tar.gz
2e1a5d7cbf98a2d57fbb367a578dbf8c  libprelude-3.1.0.tar.gz
Size: 2949462 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/zita-convolver] URL

2016-10-09 Thread jajcus
commit 6d503db32ee98b2958cdd894858aabab1fe664cc
Author: Jacek Konieczny 
Date:   Sun Oct 9 14:29:19 2016 +0200

URL

 zita-convolver.spec | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
---
diff --git a/zita-convolver.spec b/zita-convolver.spec
index ce45b20..826ebbd 100644
--- a/zita-convolver.spec
+++ b/zita-convolver.spec
@@ -6,7 +6,7 @@ License:GPL v3+
 Group: Libraries
 Source0:   
http://kokkinizita.linuxaudio.org/linuxaudio/downloads/%{name}-%{version}.tar.bz2
 # Source0-md5: 7e264d0fb0d8ea277cdb4e33d764c68a
-URL:   -
+URL:   http://kokkinizita.linuxaudio.org/linuxaudio/
 BuildRequires: fftw3-single-devel
 BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
 


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/zita-convolver.git/commitdiff/6d503db32ee98b2958cdd894858aabab1fe664cc

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


[packages/kernel] - 4.8.1

2016-10-09 Thread baggins
commit aa0e7109250278ddee50ff7cfd4f16643b574dd5
Author: Jan Rękorajski 
Date:   Sun Oct 9 15:22:30 2016 +0200

- 4.8.1

 kernel.spec | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/kernel.spec b/kernel.spec
index 512f49c..8661138 100644
--- a/kernel.spec
+++ b/kernel.spec
@@ -69,7 +69,7 @@
 
 %definerel 0.1
 %definebasever 4.8
-%definepostver .0
+%definepostver .1
 
 # define this to '-%{basever}' for longterm branch
 %defineversuffix   %{nil}
@@ -118,7 +118,7 @@ Source0:
https://www.kernel.org/pub/linux/kernel/v4.x/linux-%{basever}.tar.xz
 # Source0-md5: c1af0afbd3df35c1ccdc7a5118cd2d07
 %if "%{postver}" != ".0"
 Patch0:
https://www.kernel.org/pub/linux/kernel/v4.x/patch-%{version}.xz
-# Patch0-md5:  e0d02f6c4d6b600b91c3492c5cc825a3
+# Patch0-md5:  349734be5387f1605074515ad7207627
 %endif
 Source1:   kernel.sysconfig
 


 gitweb:

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

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


[packages/kernel] - removed ESFQ, no upstream updates for 8 years - updated IMQ patch

2016-10-09 Thread baggins
commit d5ed51b7363a66e1296f45ec0a857f0267013ee3
Author: Jan Rękorajski 
Date:   Sun Oct 9 15:21:23 2016 +0200

- removed ESFQ, no upstream updates for 8 years
- updated IMQ patch

 kernel-esfq.patch | 793 --
 kernel-imq.patch  | 220 +++
 kernel.spec   |   9 -
 3 files changed, 98 insertions(+), 924 deletions(-)
---
diff --git a/kernel.spec b/kernel.spec
index 7c22b8f..512f49c 100644
--- a/kernel.spec
+++ b/kernel.spec
@@ -27,7 +27,6 @@
 %bcond_withnfsroot # build with root on NFS support
 
 %bcond_without imq # imq support
-%bcond_withesfq# esfq support
 %bcond_without ipv6# ipv6 support
 
 %bcond_withvserver # support for VServer
@@ -168,9 +167,6 @@ Patch40:kernel-layer7.patch
 # http://www.linuximq.net
 Patch50:   kernel-imq.patch
 
-# http://fatooh.org/esfq-2.6/sfq-2.6.24.1.tar.bz2
-Patch53:   kernel-esfq.patch
-
 # by Baggins request:
 # derived from 
ftp://ftp.cmf.nrl.navy.mil/pub/chas/linux-atm/vbr/vbr-kernel-diffs
 Patch55:   kernel-atm-vbr.patch
@@ -670,11 +666,6 @@ cd linux-%{basever}
 %patch50 -p1
 %endif
 
-# esfq
-%if %{with esfq}
-%patch53 -p1
-%endif
-
 %patch55 -p1
 %patch56 -p1
 
diff --git a/kernel-esfq.patch b/kernel-esfq.patch
deleted file mode 100644
index 355a644..000
--- a/kernel-esfq.patch
+++ /dev/null
@@ -1,793 +0,0 @@
-diff -Naur linux-2.6.24.orig/include/uapi/linux/pkt_sched.h 
linux-2.6.24/include/uapi/linux/pkt_sched.h
 linux-2.6.24.orig/include/uapi/linux/pkt_sched.h   2008-01-24 
14:58:37.0 -0800
-+++ linux-2.6.24/include/uapi/linux/pkt_sched.h2008-01-28 
00:27:12.0 -0800
-@@ -157,6 +157,33 @@
-  *to change these parameters in compile time.
-  */
- 
-+/* ESFQ section */
-+
-+enum
-+{
-+/* traditional */
-+  TCA_ESFQ_HASH_CLASSIC,
-+  TCA_ESFQ_HASH_DST,
-+  TCA_ESFQ_HASH_SRC,
-+  TCA_ESFQ_HASH_FWMARK,
-+  /* conntrack */
-+  TCA_ESFQ_HASH_CTORIGDST,
-+  TCA_ESFQ_HASH_CTORIGSRC,
-+  TCA_ESFQ_HASH_CTREPLDST,
-+  TCA_ESFQ_HASH_CTREPLSRC,
-+  TCA_ESFQ_HASH_CTNATCHG,
-+};
-+
-+struct tc_esfq_qopt
-+{
-+  unsignedquantum;/* Bytes per round allocated to flow */
-+  int perturb_period; /* Period of hash perturbation */
-+  __u32   limit;  /* Maximal packets in queue */
-+  unsigneddivisor;/* Hash divisor  */
-+  unsignedflows;  /* Maximal number of flows  */
-+  unsignedhash_kind;  /* Hash function to use for flow 
identification */
-+};
-+
- /* RED section */
- 
- enum
-diff -Naur linux-2.6.24.orig/net/sched/Kconfig linux-2.6.24/net/sched/Kconfig
 linux-2.6.24.orig/net/sched/Kconfig2008-01-24 14:58:37.0 
-0800
-+++ linux-2.6.24/net/sched/Kconfig 2008-01-28 00:27:12.0 -0800
-@@ -139,6 +139,37 @@
- To compile this code as a module, choose M here: the
- module will be called sch_sfq.
- 
-+config NET_SCH_ESFQ
-+  tristate "Enhanced Stochastic Fairness Queueing (ESFQ)"
-+  ---help---
-+Say Y here if you want to use the Enhanced Stochastic Fairness
-+Queueing (ESFQ) packet scheduling algorithm for some of your network
-+devices or as a leaf discipline for a classful qdisc such as HTB or
-+CBQ (see the top of  for details and
-+references to the SFQ algorithm).
-+
-+This is an enchanced SFQ version which allows you to control some
-+hardcoded values in the SFQ scheduler.
-+
-+ESFQ also adds control of the hash function used to identify packet
-+flows. The original SFQ discipline hashes by connection; ESFQ add
-+several other hashing methods, such as by src IP or by dst IP, which
-+can be more fair to users in some networking situations.
-+
-+To compile this code as a module, choose M here: the
-+module will be called sch_esfq.
-+
-+config NET_SCH_ESFQ_NFCT
-+  bool "Connection Tracking Hash Types"
-+  depends on NET_SCH_ESFQ && NF_CONNTRACK
-+  ---help---
-+Say Y here to enable support for hashing based on netfilter connection
-+tracking information. This is useful for a router that is also using
-+NAT to connect privately-addressed hosts to the Internet. If you want
-+to provide fair distribution of upstream bandwidth, ESFQ must use
-+connection tracking information, since all outgoing packets will share
-+the same source address.
-+
- config NET_SCH_TEQL
-   tristate "True Link Equalizer (TEQL)"
-   ---help---
-diff -Naur linux-2.6.24.orig/net/sched/Makefile linux-2.6.24/net/sched/Makefile
 linux-2.6.24.orig/net/sched/Makefile   2008-01-24 14:58:37.0 
-0800
-+++ linux-2.6.24/net/sched/Makefile2008-01-28 00:27:12.0 -0800
-@@ -23,6 +23,7 @@
- 

DISTFILES: kernel: linux-4.8.tar.xz patch-4.8.1.xz

2016-10-09 Thread baggins
Request by: baggins


Files fetched: 1

ALREADY GOT: https://www.kernel.org/pub/linux/kernel/v4.x/linux-4.8.tar.xz
c1af0afbd3df35c1ccdc7a5118cd2d07  linux-4.8.tar.xz
STORED: https://www.kernel.org/pub/linux/kernel/v4.x/patch-4.8.1.xz
349734be5387f1605074515ad7207627  patch-4.8.1.xz
Size: 3136 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: gnucash: gnucash-2.6.14.tar.bz2

2016-10-09 Thread bszx
Request by: bszx


Files fetched: 1

STORED: http://downloads.sourceforge.net/gnucash/gnucash-2.6.14.tar.bz2
f2583a49ff72eaec09c0c385e9878d10  gnucash-2.6.14.tar.bz2
Size: 13368599 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/gnucash] - updated to 2.6.14

2016-10-09 Thread bszx
commit 8c2fc0261430fb614d1234a1d65d09ad689a2c2b
Author: Bartek Szady 
Date:   Sun Oct 9 16:49:04 2016 +0200

- updated to 2.6.14

 gnucash.spec | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/gnucash.spec b/gnucash.spec
index d8fd3de..b7ef78b 100644
--- a/gnucash.spec
+++ b/gnucash.spec
@@ -20,12 +20,12 @@ Summary(pl.UTF-8):  GnuCash - aplikacja do zarządzania 
twoimi finansami
 Summary(pt_BR.UTF-8):  O GnuCash é uma aplicação para acompanhamento de suas 
finanças
 Summary(zh_CN.UTF-8):  GnuCash - 您的个人财务管理软件
 Name:  gnucash
-Version:   2.6.13
+Version:   2.6.14
 Release:   1
 License:   GPL v2+
 Group: X11/Applications
 Source0:   
http://downloads.sourceforge.net/gnucash/%{name}-%{version}.tar.bz2
-# Source0-md5: 3854e7b7a636941104c5b9e549eeb4c5
+# Source0-md5: f2583a49ff72eaec09c0c385e9878d10
 Source1:   %{name}-icon.png
 Source2:   %{name}.sh
 Patch0:%{name}-env.patch


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/gnucash.git/commitdiff/8c2fc0261430fb614d1234a1d65d09ad689a2c2b

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


[packages/sbcl] - updated to 1.3.10 and latests bootstraps (x86 1.2.7, x86-64 1.3.10) - added info patch (unify @dir

2016-10-09 Thread qboosh
commit 535364a46b912a5cfef60cbf7bd765a558bd774f
Author: Jakub Bogusz 
Date:   Sun Oct 9 16:42:04 2016 +0200

- updated to 1.3.10 and latests bootstraps (x86 1.2.7, x86-64 1.3.10)
- added info patch (unify @direntry)

 sbcl-info.patch | 50 ++
 sbcl.spec   | 54 --
 2 files changed, 86 insertions(+), 18 deletions(-)
---
diff --git a/sbcl.spec b/sbcl.spec
index 31e1b4d..950e9a5 100644
--- a/sbcl.spec
+++ b/sbcl.spec
@@ -1,3 +1,4 @@
+# NOTE: tests >100 processes, so ensure proper ulimit
 #
 # Conditional build:
 %bcond_without doc # build without documentation
@@ -9,30 +10,44 @@
 Summary:   The Steel Bank Common Lisp development environment
 Summary(pl.UTF-8): Środowisko programowania Steel Bank Common Lisp
 Name:  sbcl
-Version:   1.1.6
+Version:   1.3.10
 Release:   1
 License:   MIT
 Group: Development/Languages
 Source0:   
http://download.sourceforge.net/sbcl/%{name}-%{version}-source.tar.bz2
-# Source0-md5: 5daeabb9eaf7197006c4402bfc552d72
-Source10:  
http://download.sourceforge.net/sbcl/sbcl-1.0.58-x86-linux-binary.tar.bz2
-# Source10-md5:28104cfb0ee2ac67000c77b9518377e8
-Source11:  
http://download.sourceforge.net/sbcl/sbcl-1.0.58-x86-64-linux-binary.tar.bz2
-# Source11-md5:3d02edfdc851904d1d8dafeec20d1d06
+# Source0-md5: c8bd43e149109127651a6917976dda4a
+Source10:  
http://download.sourceforge.net/sbcl/sbcl-1.2.7-x86-linux-binary.tar.bz2
+# Source10-md5:f6a1b2137fbc74b4a8aaf338643f4ae2
+Source11:  
http://download.sourceforge.net/sbcl/sbcl-1.3.10-x86-64-linux-binary.tar.bz2
+# Source11-md5:56fe67f916ccdd84e7b739d0a731cf9f
+# TODO (portability) - also available:
+#SourceXX: 
http://download.sourceforge.net/sbcl/sbcl-1.3.10-arm64-linux-binary.tar.bz2
+#SourceXX: 
http://download.sourceforge.net/sbcl/sbcl-1.3.9-armhf-linux-binary.tar.bz2
+#SourceXX: 
http://download.sourceforge.net/sbcl/sbcl-1.2.7-armel-linux-binary.tar.bz2
+#SourceXX: 
http://download.sourceforge.net/sbcl/sbcl-1.2.7-powerpc-linux-binary.tar.bz2
+#SourceXX: 
http://download.sourceforge.net/sbcl/sbcl-1.0.23-mips-linux-binary.tar.bz2
+#SourceXX: 
http://download.sourceforge.net/sbcl/sbcl-1.0.28-mipsel-linux-binary.tar.bz2
+#SourceXX: 
http://download.sourceforge.net/sbcl/sbcl-1.0.28-alpha-linux-binary.tar.bz2
+#SourceXX: 
http://download.sourceforge.net/sbcl/sbcl-1.0.28-sparc-linux-binary.tar.bz2
 Patch0:%{name}-tests.patch
 Patch1:%{name}-threads.patch
+Patch2:%{name}-info.patch
 URL:   http://sbcl.sourceforge.net/
 %{?with_clisp:BuildRequires:   clisp}
 %if %{with doc}
 BuildRequires: tetex-dvips
 BuildRequires: texinfo-texi2dvi
 %endif
+%if %{without clisp}
+%{!?bootstrap_cl:ExclusiveArch:%{ix86} %{x8664}}
+# also: %{arm} aarch64 alpha mips mipsel ppc sparc
+%endif
 BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
 
 %description
 Steel Bank Common Lisp (SBCL) is a Open Source development environment
-for Common Lisp based on CMUCL. It includes an integrated native compiler,
-interpreter, and debugger.
+for Common Lisp based on CMUCL. It includes an integrated native
+compiler, interpreter, and debugger.
 
 %description -l pl.UTF-8
 Steel Bank Common Lisp (SBCL) to środowisko programistyczne Open
@@ -83,6 +98,9 @@ Dokumentacja Steel Bank Common Lisp (SBCL) w formacie PDF.
 %ifarch %{ix86} %{x8664}
 %patch1 -p1
 %endif
+%patch2 -p1 -b .orig
+cp -p doc/manual/sbcl.texinfo{,.patched}
+cp -p contrib/asdf/asdf.texinfo{,.patched}
 
 mkdir sbcl-bootstrap
 cd sbcl-*-linux
@@ -99,10 +117,9 @@ chmod 755 clean.sh
 %endif
 
 %build
-GNUMAKE="make"
-CFLAGS="%{rpmcflags}"
-CC="%{__cc}"
-export GNUMAKE CC CFLAGS
+export GNUMAKE="make"
+export CC="%{__cc}"
+export CFLAGS="%{rpmcflags}"
 export SBCL_HOME=`pwd`/sbcl-bootstrap/lib/sbcl
 export PATH=`pwd`/sbcl-bootstrap/bin:${PATH}
 ./make.sh \
@@ -110,7 +127,7 @@ export PATH=`pwd`/sbcl-bootstrap/bin:${PATH}
%{?bootstrap_cl}
 
 %if %{with doc}
-make -C doc/manual
+%{__make} -C doc/manual -j1
 %endif
 
 %install
@@ -148,16 +165,17 @@ rm -rf $RPM_BUILD_ROOT
 
 %files
 %defattr(644,root,root,755)
-%doc _install/share/doc/sbcl/[A-Z]*
-%attr (755,root,root) %{_bindir}/%{name}
+%doc _install/share/doc/sbcl/{BUGS,COPYING,CREDITS,NEWS}
+%attr (755,root,root) %{_bindir}/sbcl
 %{_libdir}/%{name}
-%{_mandir}/man1/*
-%config(noreplace,missingok) %verify(not md5 mtime size) /etc/env.d/*
+%{_mandir}/man1/sbcl.1*
+%config(noreplace,missingok) %verify(not md5 mtime size) /etc/env.d/SBCL_HOME
 
 %if %{with doc}
 %files doc-info
 %defattr(644,root,root,755)
-%{_infodir}/*.info*
+%{_infodir}/asdf.info*
+%{_infodir}/sbcl.info*
 
 %files doc-html
 %defattr(644,root,root,755)
diff --git a/sbcl-info.patch b/sbcl-info.patch
new file mode 100644
index 000..5f0d4ff
--- /dev/null

[packages/kernel] - add missing exports for imq module

2016-10-09 Thread baggins
commit 02c6f3d5e2156ea6d340bc0f447a126f32a6a77d
Author: Jan Rękorajski 
Date:   Sun Oct 9 18:18:41 2016 +0200

- add missing exports for imq module

 kernel-imq.patch | 20 
 1 file changed, 20 insertions(+)
---
diff --git a/kernel-imq.patch b/kernel-imq.patch
index cbfd042..d303e23 100644
--- a/kernel-imq.patch
+++ b/kernel-imq.patch
@@ -1266,6 +1266,26 @@ diff -Naupr linux-4.8_orig/net/core/dev.c 
linux-4.8/net/core/dev.c
  
  #include "net-sysfs.h"
  
+@@ -2952,6 +2952,9 @@
+   *ret = rc;
+   return skb;
+ }
++#if defined(CONFIG_IMQ_MODULE)
++EXPORT_SYMBOL_GPL(dev_hard_start_xmit)
++#endif
+ 
+ static struct sk_buff *validate_xmit_vlan(struct sk_buff *skb,
+ netdev_features_t features)
+@@ -3038,6 +3038,9 @@
+   }
+   return head;
+ }
++#if defined(CONFIG_IMQ_MODULE)
++EXPORT_SYMBOL_GPL(validate_xmit_skb_list);
++#endif
+ 
+ static void qdisc_pkt_len_init(struct sk_buff *skb)
+ {
 diff -Naupr linux-4.8_orig/net/core/skbuff.c linux-4.8/net/core/skbuff.c
 --- linux-4.8_orig/net/core/skbuff.c   2016-10-03 06:24:33.0 +0700
 +++ linux-4.8/net/core/skbuff.c2016-10-03 07:59:56.203678268 +0700


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/kernel.git/commitdiff/02c6f3d5e2156ea6d340bc0f447a126f32a6a77d

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


[packages/fonts-TTF-Input] BR unzip

2016-10-09 Thread glen
commit b1527a8b17deac782a259089700671ab22fbc29b
Author: Elan Ruusamäe 
Date:   Sun Oct 9 19:34:51 2016 +0300

BR unzip

 fonts-TTF-Input.spec | 1 +
 1 file changed, 1 insertion(+)
---
diff --git a/fonts-TTF-Input.spec b/fonts-TTF-Input.spec
index 0781911..72a0402 100644
--- a/fonts-TTF-Input.spec
+++ b/fonts-TTF-Input.spec
@@ -8,6 +8,7 @@ Source0:Input-Font-%{version}.zip
 # NoSource0-md5:   e137f760dd6f3b25b73ef3aa3a7a7fd9
 NoSource:  0
 URL:   http://input.fontbureau.com/
+BuildRequires: unzip
 Requires(post,postun): fontpostinst
 Requires:  %{_fontsdir}/TTF
 Requires:  fontconfig >= 1:2.10.1


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/fonts-TTF-Input.git/commitdiff/b1527a8b17deac782a259089700671ab22fbc29b

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


[packages/sbcl] - debug cleanup

2016-10-09 Thread qboosh
commit 2f19d43aad67235b5ad6c412e7a10fad23e7e9d1
Author: Jakub Bogusz 
Date:   Sun Oct 9 16:49:06 2016 +0200

- debug cleanup

 sbcl.spec | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)
---
diff --git a/sbcl.spec b/sbcl.spec
index 950e9a5..8998a09 100644
--- a/sbcl.spec
+++ b/sbcl.spec
@@ -98,9 +98,7 @@ Dokumentacja Steel Bank Common Lisp (SBCL) w formacie PDF.
 %ifarch %{ix86} %{x8664}
 %patch1 -p1
 %endif
-%patch2 -p1 -b .orig
-cp -p doc/manual/sbcl.texinfo{,.patched}
-cp -p contrib/asdf/asdf.texinfo{,.patched}
+%patch2 -p1
 
 mkdir sbcl-bootstrap
 cd sbcl-*-linux


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/sbcl.git/commitdiff/2f19d43aad67235b5ad6c412e7a10fad23e7e9d1

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


[packages/zita-resampler] Release: 1

2016-10-09 Thread jajcus
commit 50884a9239905ceeb912ab47684da1a2f283415a
Author: Jacek Konieczny 
Date:   Sun Oct 9 17:15:01 2016 +0200

Release: 1

 zita-resampler.spec | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
---
diff --git a/zita-resampler.spec b/zita-resampler.spec
index 204154d..9d360fc 100644
--- a/zita-resampler.spec
+++ b/zita-resampler.spec
@@ -1,7 +1,7 @@
 Summary:   C++ library for sample rate conversion of audio signals
 Name:  zita-resampler
 Version:   1.3.0
-Release:   0.1
+Release:   1
 License:   GPL v3+
 Group: Libraries
 Source0:   
http://kokkinizita.linuxaudio.org/linuxaudio/downloads/%{name}-%{version}.tar.bz2


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/zita-resampler.git/commitdiff/50884a9239905ceeb912ab47684da1a2f283415a

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


[packages/mate-settings-daemon] avoid duplicate redefinition

2016-10-09 Thread glen
commit 4c60a36b70bb99e3addc192dac66971fac6c
Author: Elan Ruusamäe 
Date:   Sun Oct 9 19:31:25 2016 +0300

avoid duplicate redefinition

%configure uses %{_libexecdir} macro, no need to pass the arg
refs 03126f5

 mate-settings-daemon.spec | 1 -
 1 file changed, 1 deletion(-)
---
diff --git a/mate-settings-daemon.spec b/mate-settings-daemon.spec
index a6053c9..9e35d14 100644
--- a/mate-settings-daemon.spec
+++ b/mate-settings-daemon.spec
@@ -99,7 +99,6 @@ Pliki programistyczne pakietu mate-settings-daemon.
 %{__autoheader}
 %{__automake}
 %configure \
-   --libexecdir=%{_libdir}/mate-settings-daemon-exec \
--enable-polkit \
--enable-pulse \
--enable-smartcard-support \


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/mate-settings-daemon.git/commitdiff/4c60a36b70bb99e3addc192dac66971fac6c

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


[packages/libprelude] - updated to 3.1.0 - updated python-install patch - added lua patch (fix lua interpreter version det

2016-10-09 Thread qboosh
commit e4dc595265e5bccdc16a002ae8bcc89c284c82c7
Author: Jakub Bogusz 
Date:   Sun Oct 9 18:43:44 2016 +0200

- updated to 3.1.0
- updated python-install patch
- added lua patch (fix lua interpreter version detection)
- now (following upstream) it defaults to lua 5.2

 libprelude-lua.patch | 19 +++
 libprelude.spec  | 29 +
 python-install.patch | 12 ++--
 3 files changed, 42 insertions(+), 18 deletions(-)
---
diff --git a/libprelude.spec b/libprelude.spec
index 1fa3a10..2063f00 100644
--- a/libprelude.spec
+++ b/libprelude.spec
@@ -7,19 +7,23 @@
 %bcond_without ruby# Ruby bindings
 %bcond_without static_libs # static libraries
 #
+# 5.1 also possible, 5.2 is preferred
+%definelua_ver 5.2
+%definelua_pkg lua%(echo %{lua_ver} | tr -d .)
 %include   /usr/lib/rpm/macros.perl
 Summary:   The Prelude library
 Summary(pl.UTF-8): Biblioteka Prelude
 Name:  libprelude
-Version:   1.2.6
-Release:   3
+Version:   3.1.0
+Release:   1
 License:   GPL v2 or commercial
 Group: Libraries
-# https://www.prelude-ids.org/projects/prelude/files
-Source0:   
https://www.prelude-siem.org/attachments/download/410/%{name}-%{version}.tar.gz
-# Source0-md5: 6a5aa32864ca6d74e1c7af0cdab7bf40
+#Source0Download: https://www.prelude-ids.org/projects/prelude/files
+Source0:   
https://www.prelude-ids.org/attachments/download/721/%{name}-%{version}.tar.gz
+# Source0-md5: 2e1a5d7cbf98a2d57fbb367a578dbf8c
 Patch0:python-install.patch
-URL:   https://www.prelude-siem.org/
+Patch1:%{name}-lua.patch
+URL:   https://www.prelude-ids.org/
 BuildRequires: autoconf >= 2.59
 BuildRequires: automake >= 1:1.9
 BuildRequires: bison
@@ -30,7 +34,7 @@ BuildRequires:libgcrypt-devel >= 1.1.94
 BuildRequires: libltdl-devel >= 2:2.0
 BuildRequires: libstdc++-devel
 BuildRequires: libtool >= 2:2.0
-%{?with_lua:BuildRequires: lua51-devel >= 5.1}
+%{?with_lua:BuildRequires: %{lua_pkg}-devel >= %{lua_ver}}
 %{?with_perl:BuildRequires:perl-devel}
 %{?with_python2:BuildRequires: python-devel >= 1:2.5}
 %{?with_python3:BuildRequires: python3-devel >= 1:3.2}
@@ -161,6 +165,7 @@ Summary:PreludeEasy - libprelude Lua bindings
 Summary(pl.UTF-8): PreludeEasy - dowiązania języka Lua do libprelude
 Group: Development/Languages
 Requires:  %{name}-c++ = %{version}-%{release}
+Requires:  %{lua_pkg} >= %{lua_ver}
 
 %description -n lua-prelude
 PreludeEasy - libprelude Lua bindings.
@@ -221,14 +226,13 @@ Wiązania języka Ruby do libprelude.
 %prep
 %setup -q
 %patch0 -p1
+%patch1 -p1
 
 %if %{with python3}
 # regenerate with fresh swig for python 3.5+
 %{__rm} bindings/python/{_prelude.cxx,prelude.py}
 %endif
 
-%{__sed} -i -e 's/lua >= 5.1/lua51 >= 5.1/;s/lua -e/lua5.1 -e/' configure.in
-
 %build
 %{__libtoolize}
 %{__aclocal} -I m4 -I libmissing/m4
@@ -260,8 +264,8 @@ rm -rf $RPM_BUILD_ROOT
py3execdir=%{py3_sitedir}
 
 %if %{with lua}
-%{__rm} $RPM_BUILD_ROOT%{_libdir}/lua/5.1/prelude.la \
-   %{?with_static_libs:$RPM_BUILD_ROOT%{_libdir}/lua/5.1/prelude.a}
+%{__rm} $RPM_BUILD_ROOT%{_libdir}/lua/%{lua_ver}/prelude.la \
+   %{?with_static_libs:$RPM_BUILD_ROOT%{_libdir}/lua/%{lua_ver}/prelude.a}
 %endif
 %if %{with python2}
 %py_postclean
@@ -309,6 +313,7 @@ rm -rf $RPM_BUILD_ROOT
 %{_aclocaldir}/libprelude.m4
 %{_gtkdocdir}/libprelude
 %{_pkgconfigdir}/libprelude.pc
+%{_mandir}/man1/libprelude-config.1*
 
 %if %{with static_libs}
 %files static
@@ -342,7 +347,7 @@ rm -rf $RPM_BUILD_ROOT
 %if %{with lua}
 %files -n lua-prelude
 %defattr(644,root,root,755)
-%attr(755,root,root) %{_libdir}/lua/5.1/prelude.so
+%attr(755,root,root) %{_libdir}/lua/%{lua_ver}/prelude.so
 %endif
 
 %if %{with perl}
diff --git a/libprelude-lua.patch b/libprelude-lua.patch
new file mode 100644
index 000..884cb39
--- /dev/null
+++ b/libprelude-lua.patch
@@ -0,0 +1,19 @@
+--- libprelude-3.1.0/configure.ac.orig 2016-09-15 08:49:10.732000884 +0200
 libprelude-3.1.0/configure.ac  2016-10-09 15:06:53.560791749 +0200
+@@ -565,6 +565,7 @@
+[PKG_CHECK_MODULES(LUA, [lua_ver >= 5.1], [
+   AC_DEFINE([HAVE_LUA], [1], [liblua])
+   AC_DEFINE([HAVE_LUA_H], [1], [lua.h])
++LUA_INTERP=$(pkg-config --variable=interpreter lua_ver)
+   lua_pkg_found=1
+],[:])]
+)
+@@ -582,7 +583,7 @@
+   AC_CHECK_HEADERS([lua.h lauxlib.h], with_lua=yes, [with_lua=no; break])
+   CPPFLAGS="$old_CPPFLAGS"
+ 
+-  LUA_VERSION=$(lua -e "print(string.sub(_VERSION, 5))")
++  LUA_VERSION=$($LUA_INTERP -e "print(string.sub(_VERSION, 5))")
+   AC_SUBST(LUA_VERSION)
+ 
+else
diff --git a/python-install.patch b/python-install.patch
index 376e888..93c8f00 100644
--- a/python-install.patch
+++ b/python-install.patch
@@ -1,5 +1,5 @@
 

[packages/npm] rm /usr/lib/node_modules/npm/lib/fetch-package-metadata.md (unpackaged)

2016-10-09 Thread glen
commit 9e16eb17dda0c11264d3575f3fa2275a202dd184
Author: Elan Ruusamäe 
Date:   Sun Oct 9 14:23:18 2016 +0300

rm /usr/lib/node_modules/npm/lib/fetch-package-metadata.md (unpackaged)

 npm.spec | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
---
diff --git a/npm.spec b/npm.spec
index 03306e3..13a05b0 100644
--- a/npm.spec
+++ b/npm.spec
@@ -82,8 +82,9 @@ ln -s %{nodejs_libdir}/npm/bin/npm-cli.js 
$RPM_BUILD_ROOT%{_bindir}/npm
 # clean up node_modules/
 for i in README.md Readme.md README.markdown LICENSE LICENSE.md CHANGES.md \
  changelog.md .npmignore .travis.yml test examples example; do 
-find node_modules -name $i | xargs -r rm -r
+   find node_modules -name $i | xargs -r rm -r
 done
+rm lib/fetch-package-metadata.md
 
 %if %{without bundled_gyp}
 rm -r node_modules/node-gyp


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/npm.git/commitdiff/b9fb7f4576d48d6e34cd247e5e080c270bf95561

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


[packages/npm] fix re-entrant install

2016-10-09 Thread glen
commit b9fb7f4576d48d6e34cd247e5e080c270bf95561
Author: Elan Ruusamäe 
Date:   Sun Oct 9 14:27:07 2016 +0300

fix re-entrant install

 npm.spec | 20 ++--
 1 file changed, 10 insertions(+), 10 deletions(-)
---
diff --git a/npm.spec b/npm.spec
index 13a05b0..2ce6f98 100644
--- a/npm.spec
+++ b/npm.spec
@@ -4,7 +4,7 @@
 # - npm-debug.log is created with 777 perms, should respect umask instead
 
 # build package without bundled node-gyp module
-%bcond_without  bundled_gyp 
+%bcond_without  bundled_gyp
 
 Summary:   A package manager for node.js
 Name:  npm
@@ -14,7 +14,7 @@ License:  Artistic-2.0
 Group: Development/Libraries
 Source0:   http://registry.npmjs.org/npm/-/%{name}-%{version}.tgz
 # Source0-md5: f470ec0065a5a181a432f008a3a97dda
-Patch0:link-globalPaths.patch 
+Patch0:link-globalPaths.patch
 Patch1:cmd-shim-optional.patch
 URL:   http://npmjs.org/
 BuildRequires: bash
@@ -62,6 +62,13 @@ mv package/* .
 # startup helpers we don't need
 rm bin/npm bin/npm.cmd
 
+# clean up node_modules/
+for i in README.md Readme.md README.markdown LICENSE LICENSE.md CHANGES.md \
+ changelog.md .npmignore .travis.yml test examples example; do
+   find node_modules -name $i | xargs -r rm -rv
+done
+rm lib/fetch-package-metadata.md
+
 %build
 # forces npm to keep config files in /etc instead of /usr/etc
 ./configure \
@@ -79,13 +86,6 @@ cp -a lib cli.js npmrc package.json 
$RPM_BUILD_ROOT%{nodejs_libdir}/npm
 cp -p bin/*.js $RPM_BUILD_ROOT%{nodejs_libdir}/npm/bin
 ln -s %{nodejs_libdir}/npm/bin/npm-cli.js $RPM_BUILD_ROOT%{_bindir}/npm
 
-# clean up node_modules/
-for i in README.md Readme.md README.markdown LICENSE LICENSE.md CHANGES.md \
- changelog.md .npmignore .travis.yml test examples example; do 
-   find node_modules -name $i | xargs -r rm -r
-done
-rm lib/fetch-package-metadata.md
-
 %if %{without bundled_gyp}
 rm -r node_modules/node-gyp
 %endif
@@ -153,4 +153,4 @@ rm -rf $RPM_BUILD_ROOT
 
 %files -n bash-completion-%{name}
 %defattr(644,root,root,755)
-/etc/bash_completion.d/*
+/etc/bash_completion.d/npm.sh


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/npm.git/commitdiff/b9fb7f4576d48d6e34cd247e5e080c270bf95561

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


[packages/zita-convolver] new package

2016-10-09 Thread jajcus
commit 63acb4af808dbef17562df263f0a7cd83f7e1d0a
Author: Jacek Konieczny 
Date:   Sun Oct 9 13:58:04 2016 +0200

new package

 zita-convolver.spec | 61 +
 1 file changed, 61 insertions(+)
---
diff --git a/zita-convolver.spec b/zita-convolver.spec
new file mode 100644
index 000..ce45b20
--- /dev/null
+++ b/zita-convolver.spec
@@ -0,0 +1,61 @@
+Summary:   C++ library implementing a real-time convolution matrix
+Name:  zita-convolver
+Version:   3.1.0
+Release:   0.1
+License:   GPL v3+
+Group: Libraries
+Source0:   
http://kokkinizita.linuxaudio.org/linuxaudio/downloads/%{name}-%{version}.tar.bz2
+# Source0-md5: 7e264d0fb0d8ea277cdb4e33d764c68a
+URL:   -
+BuildRequires: fftw3-single-devel
+BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
+
+%description
+C++ library implementing a real-time convolution matrix.
+
+%package devel
+Summary:   Header files for %{name} library
+Summary(pl.UTF-8): Pliki nagłówkowe biblioteki %{name}
+Group: Development/Libraries
+Requires:  %{name} = %{version}-%{release}
+
+%description devel
+Header files for %{name} library.
+
+%description devel -l pl.UTF-8
+Pliki nagłówkowe biblioteki %{name}.
+
+%prep
+%setup -q
+
+%build
+%{__make} -C libs -f Makefile-linux \
+   CXXFLAGS="%{rpmcxxflags}" \
+   CPPFLAGS="%{rpmcppflags}" \
+   LDFLAGS="%{rpmldflags}"
+
+%install
+rm -rf $RPM_BUILD_ROOT
+install -d $RPM_BUILD_ROOT{%{_libdir},%{_includedir}}
+
+cp -p libs/lib%{name}.so.3.* $RPM_BUILD_ROOT%{_libdir}
+/sbin/ldconfig -nN $RPM_BUILD_ROOT%{_libdir}
+ln -s "$(basename libs/lib%{name}.so.3.*)" 
$RPM_BUILD_ROOT%{_libdir}/lib%{name}.so
+cp -p libs/%{name}.h $RPM_BUILD_ROOT%{_includedir}
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%post  -p /sbin/ldconfig
+%postun-p /sbin/ldconfig
+
+%files
+%defattr(644,root,root,755)
+%doc AUTHORS README
+%attr(755,root,root) %{_libdir}/lib%{name}.so.*.*.*
+%attr(755,root,root) %ghost %{_libdir}/lib%{name}.so.3
+
+%files devel
+%defattr(644,root,root,755)
+%attr(755,root,root) %{_libdir}/lib%{name}.so
+%{_includedir}/%{name}.h


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/zita-convolver.git/commitdiff/63acb4af808dbef17562df263f0a7cd83f7e1d0a

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


[packages/zita-convolver] Created branch master

2016-10-09 Thread jajcus
The branch 'master' was created.

Summary of new commits:

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


DISTFILES: zita-convolver: zita-convolver-3.1.0.tar.bz2

2016-10-09 Thread jajcus
Request by: jajcus


Files fetched: 1

STORED: 
http://kokkinizita.linuxaudio.org/linuxaudio/downloads/zita-convolver-3.1.0.tar.bz2
7e264d0fb0d8ea277cdb4e33d764c68a  zita-convolver-3.1.0.tar.bz2
Size: 21485 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/zita-convolver] Release: 1

2016-10-09 Thread jajcus
commit e382ddcaef857d39e4aa640cbd4174af9a51c893
Author: Jacek Konieczny 
Date:   Sun Oct 9 17:14:27 2016 +0200

Release: 1

 zita-convolver.spec | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
---
diff --git a/zita-convolver.spec b/zita-convolver.spec
index 826ebbd..091a2a6 100644
--- a/zita-convolver.spec
+++ b/zita-convolver.spec
@@ -1,7 +1,7 @@
 Summary:   C++ library implementing a real-time convolution matrix
 Name:  zita-convolver
 Version:   3.1.0
-Release:   0.1
+Release:   1
 License:   GPL v3+
 Group: Libraries
 Source0:   
http://kokkinizita.linuxaudio.org/linuxaudio/downloads/%{name}-%{version}.tar.bz2


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/zita-convolver.git/commitdiff/e382ddcaef857d39e4aa640cbd4174af9a51c893

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


[packages/guitarix] Use separately packaged fonts-TTF-Roboto

2016-10-09 Thread jajcus
commit 2ca5b43ab974fde49ec277e2f09bb69b3a03ca1f
Author: Jacek Konieczny 
Date:   Sun Oct 9 17:38:48 2016 +0200

Use separately packaged fonts-TTF-Roboto

 guitarix.spec | 26 +-
 1 file changed, 5 insertions(+), 21 deletions(-)
---
diff --git a/guitarix.spec b/guitarix.spec
index b2e2a2e..fc1aa84 100644
--- a/guitarix.spec
+++ b/guitarix.spec
@@ -1,12 +1,8 @@
-
-# TODO:
-#  - package the roboto font separately
-
 Summary:   Linux Rock Guitar Amplifier for Jack Audio Connektion Kit
 Name:  guitarix
 Version:   0.35.1
 Release:   1
-License:   GPL v2+, GPL v3+ (abgate plugin), Apache (font)
+License:   GPL v2+, GPL v3+ (abgate plugin)
 Group: Applications/Multimedia
 Source0:   
http://downloads.sourceforge.net/guitarix/%{name}2-%{version}.tar.xz
 # Source0-md5: fb7269fe6fdde4c493be65f974819bb4
@@ -30,8 +26,8 @@ BuildRequires:libsndfile-devel >= 1.0.17
 BuildRequires: lilv-devel
 BuildRequires: zita-convolver-devel
 BuildRequires: zita-resampler-devel
-Requires(post,postun): fontpostinst
 Requires:  ladspa
+Requires:  fonts-TTF-Roboto
 BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
 
 %description
@@ -53,33 +49,22 @@ use the feedback and feedforward sliders.
--cxxflags-release="%{rpmcflags} -DNDEBUG" \
--prefix=%{_prefix} \
--libdir=%{_libdir} \
-   --ladspadir=%{_libdir}/ladspa \
-   --install-roboto-font
+   --ladspadir=%{_libdir}/ladspa
 
 ./waf build
 
 %install
 rm -rf $RPM_BUILD_ROOT
 
-install -d $RPM_BUILD_ROOT%{_fontsdir}/TTF
-
 ./waf install \
--destdir=$RPM_BUILD_ROOT
 
-rm -f $RPM_BUILD_ROOT%{_datadir}/fonts/truetype/robotocondensed/LICENSE.txt
-
 rm -f $RPM_BUILD_ROOT%{_libdir}/*.so
 
-mv $RPM_BUILD_ROOT%{_datadir}/fonts/truetype/robotocondensed/*.ttf 
$RPM_BUILD_ROOT%{_fontsdir}/TTF/
-
 %find_lang %{name}
 
-%post
-fontpostinst TTF
-/sbin/ldconfig
-
-%postun
-fontpostinst TTF
+%post -p /sbin/ldconfig
+%postun -p /sbin/ldconfig
 
 %clean
 rm -rf $RPM_BUILD_ROOT
@@ -100,5 +85,4 @@ rm -rf $RPM_BUILD_ROOT
 %{_libdir}/lv2/gx*/modgui
 %{_desktopdir}/guitarix.desktop
 %{_datadir}/gx_head
-%{_fontsdir}/TTF/*.ttf
 %{_pixmapsdir}/*.png


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/guitarix.git/commitdiff/2ca5b43ab974fde49ec277e2f09bb69b3a03ca1f

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


[packages/fonts-TTF-Roboto] adapter, macros

2016-10-09 Thread glen
commit 5c600c04296abf5c61fb3d472eff8961168bcd35
Author: Elan Ruusamäe 
Date:   Sun Oct 9 19:36:57 2016 +0300

adapter, macros

 fonts-TTF-Roboto.spec | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/fonts-TTF-Roboto.spec b/fonts-TTF-Roboto.spec
index 786cc9c..e400dfd 100644
--- a/fonts-TTF-Roboto.spec
+++ b/fonts-TTF-Roboto.spec
@@ -4,7 +4,7 @@ Version:2.134
 Release:   1
 License:   Apache
 Group: Fonts
-Source0:   
https://github.com/google/roboto/releases/download/v2.134/roboto-unhinted.zip
+Source0:   
https://github.com/google/roboto/releases/download/v%{version}/roboto-unhinted.zip
 # Source0-md5: 308966fb7e6d65254c52ff721c8e5c21
 URL:   https://github.com/google/roboto/
 BuildRequires: unzip
@@ -15,8 +15,8 @@ BuildRoot:%{tmpdir}/%{name}-%{version}-root-%(id -u -n)
 %definettffontsdir %{_fontsdir}/TTF
 
 %description
-Roboto: Google’s signature family of fonts, the default font on
-Android and Chrome OS, and the recommended font for Google’s visual
+Roboto: Google's signature family of fonts, the default font on
+Android and Chrome OS, and the recommended font for Google's visual
 language, Material Design.
 
 %prep


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/fonts-TTF-Roboto.git/commitdiff/5c600c04296abf5c61fb3d472eff8961168bcd35

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


[packages/adapter] macro, package updates; ASCII quotes and apostrophes

2016-10-09 Thread glen
commit e4b1577c374e2b92b6d94c0a1e55c96bfecd03ad
Author: Elan Ruusamäe 
Date:   Sun Oct 9 19:37:44 2016 +0300

macro, package updates; ASCII quotes and apostrophes

 adapter.awk | 17 +++--
 1 file changed, 15 insertions(+), 2 deletions(-)
---
diff --git a/adapter.awk b/adapter.awk
index 1b682f8..8c11973 100644
--- a/adapter.awk
+++ b/adapter.awk
@@ -284,6 +284,9 @@ function b_makekey(a, b,s) {
format_indent = -1
}
 
+   # try ASCII quotes and apostrophes
+   gsub(/’/, "'")
+
# Format description
if (ENVIRON["SKIP_DESC"] != 1 && description == 1 && !/^%[a-z]+/ && 
!/^%description/) {
if (/^[ \t]*$/) {
@@ -1167,6 +1170,8 @@ function use_macros()
 
sub("%py2_build", "%py_build")
sub("%py2_install", "%py_install")
+   sub("%{py2_build}", "%py_build")
+   sub("%{py2_install}", "%py_install")
 
gsub(infodir, "%{_infodir}")
 
@@ -2356,6 +2361,7 @@ function replace_requires(field,   pkg) {
sub(/^gnome-python2-gconf$/, "python-gnome-gconf", $2)
sub(/^gnome-python2-gnomekeyring$/, "python-gnome-desktop-keyring", $2)
sub(/^gnome-python2-gtkspell$/, "python-gnome-extras-gtkspell", $2)
+   sub(/^gstreamer-python$/, "python-gstreamer", $2)
sub(/^gtk-sharp2-devel$/, "dotnet-gtk-sharp2-devel", $2)
sub(/^gtk2$/, "gtk+2", $2)
sub(/^gtk2-devel$/, "gtk+2-devel", $2)
@@ -2455,6 +2461,7 @@ function replace_requires(field,   pkg) {
sub(/^python-zope-interface$/, "Zope-Interface", $2)
sub(/^python-zope.component$/, "Zope-Component", $2)
sub(/^python-zope.interface$/, "Zope-Interface", $2)
+   sub(/^python2-certifi$/, "python-certifi", $2)
sub(/^python2-devel$/, "python-devel", $2)
sub(/^python3-docker-py$/, "python3-docker", $2)
sub(/^pytz$/, "python-pytz", $2)
@@ -2476,6 +2483,7 @@ function replace_requires(field,   pkg) {
sub(/^xapian-bindings-python$/, "python-xapian", $2)
sub(/^xorg-x11-proto-devel$/, "xorg-proto-xproto-devel", $2)
sub(/^xorg-x11-server-sdk$/, "xorg-xserver-server-devel", $2)
+   sub(/^xorg-x11-server-utils$/, "xorg-app-iceauth xorg-app-rgb 
xorg-app-sessreg xorg-app-xgamma xorg-app-xhost xorg-app-xinput xorg-app-xkill 
xorg-app-xmodmap xorg-app-xrandr xorg-app-xrandr xorg-app-xrefresh 
xorg-app-xset xorg-app-xsetpointer xorg-app-xsetroot xorg-app-xstdcmap", $2)
# }}}
 
# {{{ mandriva
@@ -2541,9 +2549,10 @@ function replace_requires(field,   pkg) {
 
# {{{ suse/opensuse
sub(/^alsa-devel$/, "alsa-lib-devel", $2)
-   sub(/^python-djangorestframework$/, "python-django-rest-framework", $2)
-   sub(/^python-django_compressor$/, "python-django-compressor", $2)
+   sub(/^binutils-gold$/, "binutils", $2)
sub(/^bitstream-vera$/, "fonts-TTF-bitstream-vera", $2)
+   sub(/^dbus-1-devel$/, "dbus-devel", $2)
+   sub(/^gconf2-devel$/, "GConf2-devel", $2)
sub(/^gtk-sharp2$/, "dotnet-gtk-sharp2", $2)
sub(/^gtkmm2-devel$/, "gtkmm-devel", $2)
sub(/^libexpat-devel$/, "expat-devel", $2)
@@ -2552,11 +2561,15 @@ function replace_requires(field,   pkg) {
sub(/^libopenssl-devel$/, "openssl-devel", $2)
sub(/^libpulse-devel$/, "pulseaudio-devel", $2)
sub(/^libqt4-devel$/, "qt4-build, qt4-qmake, QtCore-devel", $2)
+   sub(/^llvm-clang$/, "clang", $2)
sub(/^monodoc-core$/, "mono-monodoc", $2)
+   sub(/^mozilla-nss-devel$/, "nss-devel", $2)
sub(/^python-Babel$/, "python-babel", $2)
sub(/^python-Django$/, "python-django", $2)
sub(/^python-Pillow$/, "python-pillow", $2)
sub(/^python-cairo$/, "python-pycairo", $2)
+   sub(/^python-django_compressor$/, "python-django-compressor", $2)
+   sub(/^python-djangorestframework$/, "python-django-rest-framework", $2)
sub(/^python-gobject$/, "python-pygobject", $2)
sub(/^python-gstreamer-0_10$/, "python-gstreamer", $2)
sub(/^python-gtk$/, "python-pygtk-gtk", $2)


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/adapter.git/commitdiff/e4b1577c374e2b92b6d94c0a1e55c96bfecd03ad

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


[packages/zita-resampler] Created branch master

2016-10-09 Thread jajcus
The branch 'master' was created.

Summary of new commits:

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


[packages/zita-resampler] new package

2016-10-09 Thread jajcus
commit 4778b297703345a7c1a5247ad097872fbd71bc64
Author: Jacek Konieczny 
Date:   Sun Oct 9 14:13:25 2016 +0200

new package

 zita-resampler.spec | 85 +
 1 file changed, 85 insertions(+)
---
diff --git a/zita-resampler.spec b/zita-resampler.spec
new file mode 100644
index 000..204154d
--- /dev/null
+++ b/zita-resampler.spec
@@ -0,0 +1,85 @@
+Summary:   C++ library for sample rate conversion of audio signals
+Name:  zita-resampler
+Version:   1.3.0
+Release:   0.1
+License:   GPL v3+
+Group: Libraries
+Source0:   
http://kokkinizita.linuxaudio.org/linuxaudio/downloads/%{name}-%{version}.tar.bz2
+# Source0-md5: 74c12e2280008f63ac9f2670fe4cf79b
+URL:   http://kokkinizita.linuxaudio.org/linuxaudio/
+BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
+
+%description
+Zita-resampler is a C++ library for sample rate conversion of audio
+signals.
+
+%package devel
+Summary:   Header files for %{name} library
+Summary(pl.UTF-8): Pliki nagłówkowe biblioteki %{name}
+Group: Development/Libraries
+Requires:  %{name} = %{version}-%{release}
+
+%description devel
+Header files for %{name} library.
+
+%description devel -l pl.UTF-8
+Pliki nagłówkowe biblioteki %{name}.
+
+%package apps
+Summary:   Example applications using the %{name} library
+Group: Applications/Sound
+Requires:  %{name} = %{version}-%{release}
+
+%description apps
+Example applications using the %{name} library.
+
+%prep
+%setup -q
+
+%build
+CXXFLAGS="%{rpmcxxflags}" \
+CPPFLAGS="%{rpmcppflags}" \
+LDFLAGS="%{rpmldflags}" \
+%{__make} -C libs
+
+ln -s "$(basename libs/libzita-resampler.so.*.*.*)" libs/libzita-resampler.so
+
+CXXFLAGS="%{rpmcxxflags}" \
+CPPFLAGS="-I../libs %{rpmcppflags}" \
+LDFLAGS="-L../libs %{rpmldflags}" \
+%{__make} -C apps
+
+%install
+rm -rf $RPM_BUILD_ROOT
+install -d $RPM_BUILD_ROOT{%{_libdir},%{_includedir}}
+
+cp -p libs/lib%{name}.so.1.* $RPM_BUILD_ROOT%{_libdir}
+/sbin/ldconfig -nN $RPM_BUILD_ROOT%{_libdir}
+ln -s "$(basename libs/lib%{name}.so.1.*)" 
$RPM_BUILD_ROOT%{_libdir}/lib%{name}.so
+cp -R libs/%{name} $RPM_BUILD_ROOT%{_includedir}
+
+%{__make} -C apps install \
+   PREFIX="%{_prefix}" \
+   DESTDIR="$RPM_BUILD_ROOT"
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%post  -p /sbin/ldconfig
+%postun-p /sbin/ldconfig
+
+%files
+%defattr(644,root,root,755)
+%doc AUTHORS README
+%attr(755,root,root) %{_libdir}/lib%{name}.so.*.*.*
+%attr(755,root,root) %ghost %{_libdir}/lib%{name}.so.1
+
+%files devel
+%defattr(644,root,root,755)
+%attr(755,root,root) %{_libdir}/lib%{name}.so
+%{_includedir}/%{name}
+
+%files apps
+%defattr(644,root,root,755)
+%attr(755,root,root) %{_bindir}/*
+%{_mandir}/man1/*.1*


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/zita-resampler.git/commitdiff/4778b297703345a7c1a5247ad097872fbd71bc64

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


DISTFILES: zita-resampler: zita-resampler-1.3.0.tar.bz2

2016-10-09 Thread jajcus
Request by: jajcus


Files fetched: 1

STORED: 
http://kokkinizita.linuxaudio.org/linuxaudio/downloads/zita-resampler-1.3.0.tar.bz2
74c12e2280008f63ac9f2670fe4cf79b  zita-resampler-1.3.0.tar.bz2
Size: 124479 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/fonts-TTF-Input] new (version 1.2)

2016-10-09 Thread atler
commit e0b1ee580f08ab33e3c7e3c04bf69ecc2813941c
Author: Jan Palus 
Date:   Sun Oct 9 15:07:02 2016 +0200

new (version 1.2)

 fonts-TTF-Input.spec | 54 
 get-source.sh| 34 +
 2 files changed, 88 insertions(+)
---
diff --git a/fonts-TTF-Input.spec b/fonts-TTF-Input.spec
new file mode 100644
index 000..0781911
--- /dev/null
+++ b/fonts-TTF-Input.spec
@@ -0,0 +1,54 @@
+Summary:   Fonts for Code, from Font Bureau
+Name:  fonts-TTF-Input
+Version:   1.2
+Release:   1
+License:   Custom
+Group: Fonts
+Source0:   Input-Font-%{version}.zip
+# NoSource0-md5:   e137f760dd6f3b25b73ef3aa3a7a7fd9
+NoSource:  0
+URL:   http://input.fontbureau.com/
+Requires(post,postun): fontpostinst
+Requires:  %{_fontsdir}/TTF
+Requires:  fontconfig >= 1:2.10.1
+BuildArch: noarch
+BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
+
+%define_ttffontsdir%{_fontsdir}/TTF
+
+%description
+Fonts for Code, from Font Bureau.
+
+%prep
+%setup -q -c
+
+%install
+rm -rf $RPM_BUILD_ROOT
+install -d $RPM_BUILD_ROOT%{_ttffontsdir}
+
+cp -a Input_Fonts/*/*/*.ttf $RPM_BUILD_ROOT%{_ttffontsdir}
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%post
+fontpostinst TTF
+
+%postun
+fontpostinst TTF
+
+%files
+%defattr(644,root,root,755)
+%doc ChangeLog.txt INSTALL.txt LICENSE.txt README.txt
+%{_ttffontsdir}/InputMono-*.ttf
+%{_ttffontsdir}/InputMonoCompressed-*.ttf
+%{_ttffontsdir}/InputMonoCondensed-*.ttf
+%{_ttffontsdir}/InputMonoNarrow-*.ttf
+%{_ttffontsdir}/InputSans-*.ttf
+%{_ttffontsdir}/InputSansCompressed-*.ttf
+%{_ttffontsdir}/InputSansCondensed-*.ttf
+%{_ttffontsdir}/InputSansNarrow-*.ttf
+%{_ttffontsdir}/InputSerif-*.ttf
+%{_ttffontsdir}/InputSerifCompressed-*.ttf
+%{_ttffontsdir}/InputSerifCondensed-*.ttf
+%{_ttffontsdir}/InputSerifNarrow-*.ttf
diff --git a/get-source.sh b/get-source.sh
new file mode 100755
index 000..bd85ee9
--- /dev/null
+++ b/get-source.sh
@@ -0,0 +1,34 @@
+#!/bin/sh
+
+# abort on errors
+set -e
+# work in package dir
+dir=$(dirname "$0")
+cd "$dir"
+
+prefix='Input-Font'
+snap=$(date +%Y%m%d%H%M%S)
+tmptarget="$prefix-$snap.zip"
+
+url='http://input.fontbureau.com/build/?fontSelection=whole=0=0=0=0=0=0=0=default=1.2=I+do='
+licname="Font Software License Agreement"
+licurl=http://input.fontbureau.com/license/
+
+cat 

[packages/fonts-TTF-Input] Created branch master

2016-10-09 Thread atler
The branch 'master' was created.

Summary of new commits:

  e0b1ee5... new (version 1.2)
___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


[packages/libprelude] - unified URL

2016-10-09 Thread qboosh
commit b280342e5171d421d09143c4fca76da9eff3
Author: Jakub Bogusz 
Date:   Sun Oct 9 20:22:29 2016 +0200

- unified URL

 libprelude.spec | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/libprelude.spec b/libprelude.spec
index 2063f00..f532bff 100644
--- a/libprelude.spec
+++ b/libprelude.spec
@@ -18,12 +18,12 @@ Version:3.1.0
 Release:   1
 License:   GPL v2 or commercial
 Group: Libraries
-#Source0Download: https://www.prelude-ids.org/projects/prelude/files
-Source0:   
https://www.prelude-ids.org/attachments/download/721/%{name}-%{version}.tar.gz
+#Source0Download: https://www.prelude-siem.org/projects/prelude/files
+Source0:   
https://www.prelude-siem.org/attachments/download/721/%{name}-%{version}.tar.gz
 # Source0-md5: 2e1a5d7cbf98a2d57fbb367a578dbf8c
 Patch0:python-install.patch
 Patch1:%{name}-lua.patch
-URL:   https://www.prelude-ids.org/
+URL:   https://www.prelude-siem.org/
 BuildRequires: autoconf >= 2.59
 BuildRequires: automake >= 1:1.9
 BuildRequires: bison


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/libprelude.git/commitdiff/b280342e5171d421d09143c4fca76da9eff3

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


[packages/prelude-correlator] - updated to 3.1.0 - added vardir patch (fix /var/lib/prelude-correlator layout)

2016-10-09 Thread qboosh
commit a117af490624df3ecc74c788d99b5e02b1de639b
Author: Jakub Bogusz 
Date:   Sun Oct 9 21:30:59 2016 +0200

- updated to 3.1.0
- added vardir patch (fix /var/lib/prelude-correlator layout)

 prelude-correlator-vardir.patch | 11 +++
 prelude-correlator.spec | 20 ++--
 2 files changed, 25 insertions(+), 6 deletions(-)
---
diff --git a/prelude-correlator.spec b/prelude-correlator.spec
index 1048aa5..0f9334a 100644
--- a/prelude-correlator.spec
+++ b/prelude-correlator.spec
@@ -2,17 +2,19 @@
 Summary:   Real time correlator of events received by Prelude Manager
 Summary(pl.UTF-8): Narzędzie kojarzące w czasie rzeczywistym zdarzenia 
odebrane przez Prelude Managera
 Name:  prelude-correlator
-Version:   1.2.6
+Version:   3.1.0
 Release:   1
 License:   GPL v2+
 Group: Applications/Networking
 #Source0Download: https://www.prelude-siem.org/projects/prelude/files
-Source0:   
https://www.prelude-siem.org/attachments/download/409/%{name}-%{version}.tar.gz
-# Source0-md5: ecb926178aafd3a7616f27a66b1c941d
+Source0:   
https://www.prelude-siem.org/attachments/download/723/%{name}-%{version}.tar.gz
+# Source0-md5: 9fe16a969afdb3ffbd682827547bcf66
 Source1:   %{name}.init
+Patch0:%{name}-vardir.patch
 URL:   https://www.prelude-siem.org/
 BuildRequires: python-devel
 BuildRequires: python-setuptools >= 0.6-2.c11
+BuildRequires: rpmbuild(macros) >= 1.714
 Requires(pre): /usr/sbin/useradd
 Requires(post):/sbin/chkconfig
 Requires(preun):   /sbin/chkconfig
@@ -40,13 +42,15 @@ określają potencjalną informację o celu poprzez zbiór reguł 
korelacji.
 
 %prep
 %setup -q
+%patch0 -p1
+
+%build
+%py_build
 
 %install
 rm -rf $RPM_BUILD_ROOT
 
-%{__python} setup.py install \
-   -O1 \
-   --root=$RPM_BUILD_ROOT
+%py_install
 
 install -d $RPM_BUILD_ROOT/etc/rc.d/init.d
 install %{SOURCE1} $RPM_BUILD_ROOT/etc/rc.d/init.d/%{name}
@@ -69,6 +73,10 @@ fi
 %doc AUTHORS NEWS README
 %attr(700,root,root) %dir %{_sysconfdir}/%{name}
 %config(noreplace) %verify(not md5 mtime size) 
%{_sysconfdir}/%{name}/%{name}.conf
+%dir %{_sysconfdir}/%{name}/conf.d
+%dir %{_sysconfdir}/%{name}/rules
+%dir %{_sysconfdir}/%{name}/rules/python
+%{_sysconfdir}/%{name}/rules/python/*.py
 %attr(754,root,root) /etc/rc.d/init.d/%{name}
 %attr(755,root,root) %{_bindir}/%{name}
 %dir %{_var}/lib/%{name}
diff --git a/prelude-correlator-vardir.patch b/prelude-correlator-vardir.patch
new file mode 100644
index 000..83426ee
--- /dev/null
+++ b/prelude-correlator-vardir.patch
@@ -0,0 +1,11 @@
+--- prelude-correlator-3.1.0/setup.py.orig 2016-09-15 08:49:24.0 
+0200
 prelude-correlator-3.1.0/setup.py  2016-10-09 21:20:48.087202251 +0200
+@@ -149,7 +149,7 @@
+ ("etc/prelude-correlator", ["prelude-correlator.conf"]),
+ ("etc/prelude-correlator/conf.d", ['data/conf.d/README']),
+ ("etc/prelude-correlator/rules/python", [os.path.join('rules',x) for 
x in os.listdir('rules') if x.endswith('.py')]),
+-("var/lib/prelude-correlator/prelude-correlator", 
[os.path.join('rules',x) for x in os.listdir('rules') if x.endswith('.dat')])
++("var/lib/prelude-correlator", [os.path.join('rules',x) for x in 
os.listdir('rules') if x.endswith('.dat')])
+ ],
+ 
+ install_requires=["prelude >= 3.1.0"],


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/prelude-correlator.git/commitdiff/a117af490624df3ecc74c788d99b5e02b1de639b

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


[packages/kernel] - rel 1

2016-10-09 Thread baggins
commit dad754afffe9498d63d2e95b2f4992e2b8abfd8f
Author: Jan Rękorajski 
Date:   Sun Oct 9 21:26:51 2016 +0200

- rel 1

 kernel.spec | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
---
diff --git a/kernel.spec b/kernel.spec
index 9bde212..23d27e5 100644
--- a/kernel.spec
+++ b/kernel.spec
@@ -67,7 +67,7 @@
 %definehave_pcmcia 0
 %endif
 
-%definerel 0.1
+%definerel 1
 %definebasever 4.8
 %definepostver .1
 


 gitweb:

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

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


DISTFILES: waf: waf-1.9.5.tar.bz2

2016-10-09 Thread atler
Request by: atler


Files fetched: 1

STORED: http://waf.io/waf-1.9.5.tar.bz2
9e750c49f002b1ba1effa75ec9bbdf00  waf-1.9.5.tar.bz2
Size: 616471 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/waf] up to 1.9.5

2016-10-09 Thread atler
commit 79e08d2d688f7d95dfa0532e01c457aa80d8bc81
Author: Jan Palus 
Date:   Sun Oct 9 22:35:45 2016 +0200

up to 1.9.5

 waf.spec | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/waf.spec b/waf.spec
index a2895a2..5658619 100644
--- a/waf.spec
+++ b/waf.spec
@@ -1,13 +1,13 @@
 Summary:   The Waf build system
 Summary(pl.UTF-8): System budowania Waf
 Name:  waf
-Version:   1.9.4
+Version:   1.9.5
 Release:   1
 # note: waf book is on CC-BY-NC-ND (not included in binary package)
 License:   BSD
 Group: Development/Building
 Source0:   http://waf.io/%{name}-%{version}.tar.bz2
-# Source0-md5: a6b1a3e10411732e7af7f91eab6e0985
+# Source0-md5: 9e750c49f002b1ba1effa75ec9bbdf00
 Patch0:%{name}-path.patch
 URL:   http://waf.io/
 BuildRequires: python >= 1:2.6


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/waf.git/commitdiff/79e08d2d688f7d95dfa0532e01c457aa80d8bc81

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


[packages/llvm] - ocaml build fails with llvm-ocaml 3.7.x installed, added BC - update clang-analyzer install

2016-10-09 Thread qboosh
commit 634a3e5b0972578a89da77046d2f0af0afbe5f79
Author: Jakub Bogusz 
Date:   Mon Oct 10 05:32:15 2016 +0200

- ocaml build fails with llvm-ocaml 3.7.x installed, added BC
- update clang-analyzer install

 llvm.spec | 30 +-
 1 file changed, 13 insertions(+), 17 deletions(-)
---
diff --git a/llvm.spec b/llvm.spec
index d290576..27fa0f4 100644
--- a/llvm.spec
+++ b/llvm.spec
@@ -111,6 +111,9 @@ BuildRequires:  pluto-devel
 BuildRequires: scoplib-devel >= 0.2.1-2
 #cuda-devel
 %endif
+%if %{with ocaml}
+BuildConflicts:llvm-ocaml
+%endif
 Requires:  %{name}-libs = %{version}-%{release}
 # LLVM is not supported on PPC64
 # http://llvm.org/bugs/show_bug.cgi?id=3729
@@ -557,24 +560,16 @@ rm -rf $RPM_BUILD_ROOT
 %py_comp $RPM_BUILD_ROOT%{py_sitedir}
 %py_ocomp $RPM_BUILD_ROOT%{py_sitedir}
 
-# Static analyzer not installed by default:
+# Adjust static analyzer installation
 # http://clang-analyzer.llvm.org/installation#OtherPlatforms
-install -d $RPM_BUILD_ROOT%{_libdir}/clang-analyzer
-# create launchers
-for f in scan-{build,view}; do
-   ln -s %{_libdir}/clang-analyzer/$f/$f $RPM_BUILD_ROOT%{_bindir}/$f
-   cp -pr tools/clang/tools/$f $RPM_BUILD_ROOT%{_libdir}/clang-analyzer
-done
-install -d $RPM_BUILD_ROOT%{_mandir}/man1
-%{__mv} $RPM_BUILD_ROOT%{_libdir}/clang-analyzer/scan-build/scan-build.1 
$RPM_BUILD_ROOT%{_mandir}/man1
-%py_comp $RPM_BUILD_ROOT%{_libdir}/clang-analyzer/scan-view
-%py_ocomp $RPM_BUILD_ROOT%{_libdir}/clang-analyzer/scan-view
-%py_postclean %{_libdir}/clang-analyzer/scan-view
-# not this OS
-%{__rm} $RPM_BUILD_ROOT%{_libdir}/clang-analyzer/scan-build/*.bat
+install -d $RPM_BUILD_ROOT%{_libdir}/scan-build
+%{__mv} $RPM_BUILD_ROOT%{_prefix}/libexec/c??-analyzer 
$RPM_BUILD_ROOT%{_libdir}/scan-build
+%{__sed} -i -e 's,/\.\./libexec/,../%{_lib}/scan-build/,' 
$RPM_BUILD_ROOT%{_bindir}/scan-build
+%py_comp $RPM_BUILD_ROOT%{_datadir}/scan-view
+%py_ocomp $RPM_BUILD_ROOT%{_datadir}/scan-view
+%py_postclean %{_datadir}/scan-view
 
 # not installed by cmake buildsystem
-install build/bin/clang-query $RPM_BUILD_ROOT%{_bindir}
 install build/bin/pp-trace $RPM_BUILD_ROOT%{_bindir}
 
 %if %{with doc}
@@ -588,7 +583,7 @@ echo '.so llvm-ar.1' > 
$RPM_BUILD_ROOT%{_mandir}/man1/llvm-ranlib.1
 # Move documentation back to build directory
 %if %{with ocaml}
 rm -rf ocamldocs
-mv $RPM_BUILD_ROOT%{_prefix}/docs/ocaml/html/html ocamldocs
+%{__mv} $RPM_BUILD_ROOT%{_prefix}/docs/ocaml/html/html ocamldocs
 %endif
 
 # and separate the apidoc
@@ -658,7 +653,6 @@ rm -rf $RPM_BUILD_ROOT
 %attr(755,root,root) %{_bindir}/llvm-tblgen
 %attr(755,root,root) %{_bindir}/llvm-cxxdump
 %attr(755,root,root) %{_bindir}/llvm-pdbdump
-%attr(755,root,root) %{_bindir}/macho-dump
 %attr(755,root,root) %{_bindir}/obj2yaml
 %attr(755,root,root) %{_bindir}/opt
 %attr(755,root,root) %{_bindir}/verify-uselistorder
@@ -782,6 +776,8 @@ rm -rf $RPM_BUILD_ROOT
 %defattr(644,root,root,755)
 %attr(755,root,root) %{_bindir}/scan-build
 %attr(755,root,root) %{_bindir}/scan-view
+%{_datadir}/scan-build
+%{_datadir}/scan-view
 %{_mandir}/man1/scan-build.1*
 %dir %{_libdir}/clang-analyzer
 


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/llvm.git/commitdiff/634a3e5b0972578a89da77046d2f0af0afbe5f79

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


[packages/common-lisp-controller] - initial, based on Fedora package

2016-10-09 Thread qboosh
commit a13982a721c4b0cbd0b7d38c9202bdd6136bebbd
Author: Jakub Bogusz 
Date:   Sun Oct 9 21:02:18 2016 +0200

- initial, based on Fedora package

 common-lisp-controller-pld.patch | 20 +
 common-lisp-controller.spec  | 92 
 2 files changed, 112 insertions(+)
---
diff --git a/common-lisp-controller.spec b/common-lisp-controller.spec
new file mode 100644
index 000..f7ab4ad
--- /dev/null
+++ b/common-lisp-controller.spec
@@ -0,0 +1,92 @@
+Summary:   Common Lisp source and compiler manager
+Summary(pl.UTF-8): Zarządca źródeł i kompilatorów Common Lispa
+Name:  common-lisp-controller
+Version:   7.10
+Release:   1
+License:   LLGPL (Lisp LGPL)
+Group: Development/Tools
+Source0:   
http://ftp.debian.org/debian/pool/main/c/common-lisp-controller/%{name}_%{version}.tar.gz
+# Source0-md5: d396f0be70b71be642aca3f962562132
+Patch0:%{name}-pld.patch
+URL:   https://alioth.debian.org/projects/clc
+Requires:  common-lisp-asdf
+BuildArch: noarch
+BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
+
+%description
+This package helps installing Common Lisp sources and compilers.
+It creates a user-specific cache of compiled objects. When a library
+or an implementation is upgraded, all compiled objects in the cache
+are flushed. It also provides tools to recompile all libraries.
+
+%description -l pl.UTF-8
+Ten pakiet pomaga przy instalowaniu źródeł i kompilatorów Common
+Lispa. Tworzy pamięć podręczną skompilowanych obiektów dla
+użytkownika. Przy aktualizacji biblioteki lub implementacji, wszystkie
+pliki w pamięci podręcznej są czyszczone. Pakiet udostępnia również
+narzędzia do rekompilacji wszystkich bibliotek.
+
+%prep 
+%setup -q
+%patch0 -p0
+
+%install
+rm -rf $RPM_BUILD_ROOT
+install -d $RPM_BUILD_ROOT%{_sysconfdir}/common-lisp
+install -d $RPM_BUILD_ROOT%{_bindir}
+install -d $RPM_BUILD_ROOT%{_sbindir}
+install -d $RPM_BUILD_ROOT%{_mandir}/man{1,3,8}
+install -d 
$RPM_BUILD_ROOT%{_datadir}/common-lisp/{source/common-lisp-controller,systems}
+install -d $RPM_BUILD_ROOT%{_localstatedir}/cache/common-lisp-controller
+# Not %{_libdir} because we really want /usr/lib even on 64-bit systems.
+install -d $RPM_BUILD_ROOT/usr/lib/common-lisp/bin
+
+install clc-{clbuild,lisp,slime,register-user-package,unregister-user-package} 
$RPM_BUILD_ROOT%{_bindir}
+install clc-update-customized-images $RPM_BUILD_ROOT%{_sbindir}
+install register-common-lisp-* unregister-common-lisp-* 
$RPM_BUILD_ROOT%{_sbindir}
+
+cp -p common-lisp-controller.lisp post-sysdef-install.lisp 
$RPM_BUILD_ROOT%{_datadir}/common-lisp/source/common-lisp-controller
+cp -p lisp-config.lisp $RPM_BUILD_ROOT%{_sysconfdir}/lisp-config.lisp
+
+cp -p man/*.1 $RPM_BUILD_ROOT%{_mandir}/man1
+cp -p man/*.3 $RPM_BUILD_ROOT%{_mandir}/man3
+cp -p man/*.8 $RPM_BUILD_ROOT%{_mandir}/man8
+for f in clc-update-customized-images register-common-lisp-source 
unregister-common-lisp-implementation unregister-common-lisp-source ; do
+echo '.so man8/register-common-lisp-implementation.8' > 
$RPM_BUILD_ROOT%{_mandir}/man8/${f}.8
+done
+echo '.so man1/clc-register-user-package.1' > 
$RPM_BUILD_ROOT%{_mandir}/man1/clc-unregister-user-package.1
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%files
+%defattr(644,root,root,755)
+%doc DESIGN.txt debian/{NEWS,changelog,copyright}
+%attr(755,root,root) %{_bindir}/clc-clbuild
+%attr(755,root,root) %{_bindir}/clc-lisp
+%attr(755,root,root) %{_bindir}/clc-register-user-package
+%attr(755,root,root) %{_bindir}/clc-slime
+%attr(755,root,root) %{_bindir}/clc-unregister-user-package
+%attr(755,root,root) %{_sbindir}/clc-update-customized-images
+%attr(755,root,root) %{_sbindir}/register-common-lisp-implementation
+%attr(755,root,root) %{_sbindir}/register-common-lisp-source
+%attr(755,root,root) %{_sbindir}/unregister-common-lisp-implementation
+%attr(755,root,root) %{_sbindir}/unregister-common-lisp-source
+%dir %{_sysconfdir}/common-lisp
+%config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/lisp-config.lisp
+%dir /usr/lib/common-lisp
+%dir /usr/lib/common-lisp/bin
+%attr(1777,root,root) %dir %{_localstatedir}/cache/common-lisp-controller
+%{_datadir}/common-lisp/source/common-lisp-controller
+%dir %{_datadir}/common-lisp/systems
+%{_mandir}/man1/clc-clbuild.1*
+%{_mandir}/man1/clc-lisp.1*
+%{_mandir}/man1/clc-register-user-package.1*
+%{_mandir}/man1/clc-slime.1*
+%{_mandir}/man1/clc-unregister-user-package.1*
+%{_mandir}/man3/common-lisp-controller.3*
+%{_mandir}/man8/clc-update-customized-images.8*
+%{_mandir}/man8/register-common-lisp-implementation.8*
+%{_mandir}/man8/register-common-lisp-source.8*
+%{_mandir}/man8/unregister-common-lisp-implementation.8*
+%{_mandir}/man8/unregister-common-lisp-source.8*
diff --git a/common-lisp-controller-pld.patch b/common-lisp-controller-pld.patch
new file mode 100644
index 000..6254bf7
--- /dev/null
+++ b/common-lisp-controller-pld.patch

[packages/common-lisp-controller] Created branch master

2016-10-09 Thread qboosh
The branch 'master' was created.

Summary of new commits:

  a13982a... - initial, based on Fedora package
___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


[packages/execline] up to 2.1.5.0

2016-10-09 Thread glen
commit 59aa2696cd79ba456b2daa958971e8146a8954a8
Author: Elan Ruusamäe 
Date:   Mon Oct 10 00:40:30 2016 +0300

up to 2.1.5.0

 execline.spec | 73 ++-
 1 file changed, 57 insertions(+), 16 deletions(-)
---
diff --git a/execline.spec b/execline.spec
index a118f47..988ad62 100644
--- a/execline.spec
+++ b/execline.spec
@@ -1,17 +1,22 @@
 # TODO
 # - split -libs?
 # - check/cleanup/handle "/command/" paths
+#
+# Conditional build:
+%bcond_without static_libs # don't build static libraries
+
 Summary:   A non-interactive scripting language similar to SH
 Name:  execline
-Version:   1.2.4
-Release:   1
+Version:   2.1.5.0
+Release:   0.1
 License:   ISC
 Group: Libraries
 Source0:   
http://www.skarnet.org/software/execline/%{name}-%{version}.tar.gz
-# Source0-md5: b29630e01c44f8a5279afb0039910ee9
+# Source0-md5: cc3271375b89a0e3e4ed7e4b659fefe4
 URL:   http://www.skarnet.org/software/execline/
+BuildRequires: make >= 4.0
 BuildRequires: sed >= 4.0
-BuildRequires: skalibs-devel >= 1.4.1
+BuildRequires: skalibs-devel >= 2.3.10.0
 BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
 
 # FIXME. temporarily disable. fix this later
@@ -39,12 +44,27 @@ Requires:   %{name} = %{version}-%{release}
 Header files for %{name} library.
 
 %prep
-%setup -qc
-mv admin/%{name}-%{version}/* .
+%setup -q
 
-%{__sed} -i -e '1 s,#!/command/execlineb,%{_bindir}/execlineb,' etc/*
+sed -i "s~tryldflag LDFLAGS_AUTO -Wl,--hash-style=both~:~" configure
 
 %build
+%configure \
+   --enable-shared \
+   --disable-static \
+   --disable-allstatic \
+   --bindir=%{_bindir} \
+   --sbindir=%{_sbindir} \
+   --dynlibdir=%{_libdir} \
+   --libdir=%{_libdir} \
+   --datadir=%{_sysconfdir} \
+   --sysdepdir=%{_libdir}/skalibs \
+   --dynlibdir=%{_libdir} \
+   --with-lib=%{_libdir}/skalibs \
+   --with-sysdeps=%{_libdir}/skalibs \
+   %{nil}
+
+%if 0
 echo "%{__cc} %{rpmcflags} -Wall" > conf-compile/conf-cc
 echo "%{__cc} %{rpmldflags}" > conf-compile/conf-dynld
 echo %{_libdir}/%{name} > conf-compile/conf-install-library
@@ -57,11 +77,23 @@ echo %{_libdir}/skalibs/sysdeps > conf-compile/import
 echo %{_includedir}/skalibs > conf-compile/path-include
 echo %{_libdir} > conf-compile/path-library
 echo %{_libdir} > conf-compile/path-library.so
+%endif
 
 %{__make}
 
 %install
 rm -rf $RPM_BUILD_ROOT
+%{__make} install \
+   DESTDIR=$RPM_BUILD_ROOT
+
+# SONAME: libexecline.so.2.1
+# so this is junk
+%{__rm} $RPM_BUILD_ROOT%{_libdir}/libexecline.so.2.1.5
+
+# file %{_bindir}/import from install of execline-2.1.5.0-0.1.x86_64 conflicts 
with file from package ImageMagick-6.9.5.2-1.x86_64
+%{__rm} $RPM_BUILD_ROOT%{_bindir}/import
+
+%if 0
 install -d 
$RPM_BUILD_ROOT{%{_sysconfdir},%{_libdir},%{_bindir},%{_includedir}/%{name}}
 install -p command/* $RPM_BUILD_ROOT%{_bindir}
 cp -a library.so/*  $RPM_BUILD_ROOT%{_libdir}
@@ -73,6 +105,7 @@ cp -p library/* $RPM_BUILD_ROOT%{_libdir}
 %endif
 
 %{__rm} $RPM_BUILD_ROOT%{_libdir}/libexecline.so.1.2
+%endif
 
 %clean
 rm -rf $RPM_BUILD_ROOT
@@ -83,8 +116,10 @@ rm -rf $RPM_BUILD_ROOT
 %files
 %defattr(644,root,root,755)
 %doc doc/*
+%if 0
 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/execline-shell
 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/execline-startup
+%endif
 %attr(755,root,root) %{_bindir}/background
 %attr(755,root,root) %{_bindir}/backtick
 %attr(755,root,root) %{_bindir}/cd
@@ -95,7 +130,7 @@ rm -rf $RPM_BUILD_ROOT
 %attr(755,root,root) %{_bindir}/elglob
 %attr(755,root,root) %{_bindir}/emptyenv
 %attr(755,root,root) %{_bindir}/exec
-%attr(755,root,root) %{_bindir}/execline
+#%attr(755,root,root) %{_bindir}/execline
 %attr(755,root,root) %{_bindir}/execlineb
 %attr(755,root,root) %{_bindir}/exit
 %attr(755,root,root) %{_bindir}/export
@@ -103,11 +138,14 @@ rm -rf $RPM_BUILD_ROOT
 %attr(755,root,root) %{_bindir}/fdclose
 %attr(755,root,root) %{_bindir}/fdmove
 %attr(755,root,root) %{_bindir}/fdreserve
-%attr(755,root,root) %{_bindir}/for
-%attr(755,root,root) %{_bindir}/forbacktick
+%attr(755,root,root) %{_bindir}/fdswap
+#%attr(755,root,root) %{_bindir}/for
+#%attr(755,root,root) %{_bindir}/forbacktick
 %attr(755,root,root) %{_bindir}/forbacktickx
 %attr(755,root,root) %{_bindir}/foreground
+%attr(755,root,root) %{_bindir}/forstdin
 %attr(755,root,root) %{_bindir}/forx
+%attr(755,root,root) %{_bindir}/getcwd
 %attr(755,root,root) %{_bindir}/getpid
 %attr(755,root,root) %{_bindir}/heredoc
 %attr(755,root,root) %{_bindir}/homeof
@@ -115,9 +153,9 @@ rm -rf $RPM_BUILD_ROOT
 %attr(755,root,root) %{_bindir}/ifelse
 %attr(755,root,root) %{_bindir}/ifte
 %attr(755,root,root) %{_bindir}/ifthenelse
-%attr(755,root,root) %{_bindir}/import
+#%attr(755,root,root) %{_bindir}/import
 %attr(755,root,root) %{_bindir}/importas
-%attr(755,root,root) %{_bindir}/loopwhile

DISTFILES: execline: execline-2.1.5.0.tar.gz

2016-10-09 Thread glen
Request by: glen


Files fetched: 1

STORED: http://www.skarnet.org/software/execline/execline-2.1.5.0.tar.gz
cc3271375b89a0e3e4ed7e4b659fefe4  execline-2.1.5.0.tar.gz
Size: 80932 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/GeoIP-db-IPASNum] updated to 2016.10.09

2016-10-09 Thread glen
commit f07cfd58e538654b953cff1e19f8826bc0068749
Author: Elan Ruusamäe 
Date:   Mon Oct 10 01:04:10 2016 +0300

updated to 2016.10.09

 GeoIP-db-IPASNum.spec | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/GeoIP-db-IPASNum.spec b/GeoIP-db-IPASNum.spec
index 303e893..07d9f7c 100644
--- a/GeoIP-db-IPASNum.spec
+++ b/GeoIP-db-IPASNum.spec
@@ -2,12 +2,12 @@ Summary:  GeoLite IPASNum - IP to AS number translation 
database for GeoIP
 Summary(pl.UTF-8): GeoLite IPASNum - baza danych tłumaczeń adresów IP na 
numery AS dla GeoIP
 Name:  GeoIP-db-IPASNum
 # Updated every month:
-Version:   2016.10.02
+Version:   2016.10.09
 Release:   1
 License:   CC 3.0 BY-SA
 Group: Applications/Databases
 Source0:   
http://download.maxmind.com/download/geoip/database/asnum/GeoIPASNum.dat.gz?/GeoIPASNum-%{version}.dat.gz
-# Source0-md5: c281d35c9b7c8e9b4f5719c958d0a047
+# Source0-md5: 691b627edef96d0f54693db161708d4a
 URL:   http://dev.maxmind.com/geoip/legacy/geolite/
 Requires:  GeoIP-libs
 BuildArch: noarch


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/GeoIP-db-IPASNum.git/commitdiff/f07cfd58e538654b953cff1e19f8826bc0068749

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


DISTFILES: GeoIP-db-IPASNum: GeoIPASNum-2016.10.09.dat.gz

2016-10-09 Thread glen
Request by: glen


Files fetched: 1

STORED: 
http://download.maxmind.com/download/geoip/database/asnum/GeoIPASNum.dat.gz?/GeoIPASNum-2016.10.09.dat.gz
691b627edef96d0f54693db161708d4a  GeoIPASNum-2016.10.09.dat.gz
Size: 2241698 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/libpreludedb] - updated to 3.1.0 - updated lt patch

2016-10-09 Thread qboosh
commit 0f57acec43e5140d958dabf7354bf22b30d57895
Author: Jakub Bogusz 
Date:   Sun Oct 9 20:49:04 2016 +0200

- updated to 3.1.0
- updated lt patch

 libpreludedb-lt.patch | 4 ++--
 libpreludedb.spec | 9 +
 2 files changed, 7 insertions(+), 6 deletions(-)
---
diff --git a/libpreludedb.spec b/libpreludedb.spec
index 8d085e0..4d8543c 100644
--- a/libpreludedb.spec
+++ b/libpreludedb.spec
@@ -10,13 +10,13 @@
 Summary:   The PreludeDB Library
 Summary(pl.UTF-8): Biblioteka PreludeDB
 Name:  libpreludedb
-Version:   1.2.6
+Version:   3.1.0
 Release:   1
 License:   GPL v2 or commercial
 Group: Libraries
 #Source0Download: https://www.prelude-siem.org/projects/prelude/files
-Source0:   
https://www.prelude-siem.org/attachments/download/408/%{name}-%{version}.tar.gz
-# Source0-md5: d11ea3d545135b2b53d257d8917b82de
+Source0:   
https://www.prelude-siem.org/attachments/download/722/%{name}-%{version}.tar.gz
+# Source0-md5: d8a0b70a5be3ac101fba42bb5b18249f
 Patch0:%{name}-lt.patch
 Patch1:%{name}-link.patch
 Patch2:%{name}-python-install.patch
@@ -219,7 +219,7 @@ Wiązania Pythona 3.x do libpreludedb.
 %install
 rm -rf $RPM_BUILD_ROOT
 
-%{__make} install \
+%{__make} -j1 install \
DESTDIR=$RPM_BUILD_ROOT \
pythondir=%{py_sitescriptdir} \
pyexecdir=%{py_sitedir} \
@@ -283,6 +283,7 @@ fi
 %{_includedir}/libpreludedb/*.h
 %{_aclocaldir}/libpreludedb.m4
 %{_gtkdocdir}/libpreludedb
+%{_mandir}/man1/libpreludedb-config.1*
 
 %if %{with static_libs}
 %files static
diff --git a/libpreludedb-lt.patch b/libpreludedb-lt.patch
index 6e473ac..b2ca461 100644
--- a/libpreludedb-lt.patch
+++ b/libpreludedb-lt.patch
@@ -1,5 +1,5 @@
 libpreludedb-1.2.6/configure.in.orig   2016-02-03 21:48:00.337869380 
+0100
-+++ libpreludedb-1.2.6/configure.in2016-02-03 21:48:43.064534253 +0100
+--- libpreludedb-3.1.0/configure.ac.orig   2016-02-03 21:48:00.337869380 
+0100
 libpreludedb-3.1.0/configure.ac2016-02-03 21:48:43.064534253 +0100
 @@ -102,10 +102,8 @@
  # headers.
  AC_MSG_RESULT(Darwin: adding -no-cpp-precomp)


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/libpreludedb.git/commitdiff/0f57acec43e5140d958dabf7354bf22b30d57895

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


DISTFILES: libpreludedb: libpreludedb-3.1.0.tar.gz

2016-10-09 Thread qboosh
Request by: qboosh


Files fetched: 1

STORED: 
https://www.prelude-siem.org/attachments/download/722/libpreludedb-3.1.0.tar.gz
d8a0b70a5be3ac101fba42bb5b18249f  libpreludedb-3.1.0.tar.gz
Size: 1291186 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/skalibs] up to 2.3.10.0

2016-10-09 Thread glen
commit d32d806f67b27df5a86fbcba148389755d31477d
Author: Elan Ruusamäe 
Date:   Mon Oct 10 00:18:38 2016 +0300

up to 2.3.10.0

 skalibs.spec | 64 
 1 file changed, 47 insertions(+), 17 deletions(-)
---
diff --git a/skalibs.spec b/skalibs.spec
index af6cacb..9ca59fd 100644
--- a/skalibs.spec
+++ b/skalibs.spec
@@ -1,13 +1,18 @@
+#
+# Conditional build:
+%bcond_without static_libs # don't build static libraries
+
 Summary:   Essentially general-purpose libraries
 Summary(pl.UTF-8): Istotne biblioteki ogólnego przeznaczenia
 Name:  skalibs
-Version:   2.3.9.0
+Version:   2.3.10.0
 Release:   1
 License:   ISC
 Group: Libraries
-Source0:   
http://www.skarnet.org/software/skalibs/%{name}-%{version}.tar.gz
-# Source0-md5: 8cc1dfad59a588ba3956d78c81b5ea0a
-URL:   http://www.skarnet.org/software/skalibs/
+Source0:   http://skarnet.org/software/skalibs/%{name}-%{version}.tar.gz
+# Source0-md5: 51cb8484896c68eb8d167767cdfc702e
+URL:   http://skarnet.org/software/skalibs/
+BuildRequires: make >= 3.18
 BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
 
 # FIXME. temporarily disable. fix this later
@@ -75,25 +80,31 @@ Statyczna biblioteka skalibs.
 %prep
 %setup -q
 
+sed -i -e "s~tryldflag LDFLAGS_AUTO -Wl,--hash-style=both~:~" configure
+
 %build
-%configure
-%if 0
-echo "%{__cc} %{rpmcflags} -Wall" > conf-compile/conf-cc
-echo %{_bindir}:/bin > conf-compile/conf-defaultpath
-echo "%{__cc} %{rpmldflags}" > conf-compile/conf-dynld
-echo %{_libdir}/%{name} > conf-compile/conf-install-library
-echo %{_libdir}/%{name} > conf-compile/conf-install-library.so
-echo "%{__cc} %{rpmldflags}" > conf-compile/conf-ld
-rm -f conf-compile/flag-slashpackage
-echo > conf-compile/stripbins
-echo > conf-compile/striplibs
-%endif
+%configure \
+   --enable-ipv6 \
+   %{__enable_disable static-libs static_libs} \
+   --dynlibdir=%{_libdir} \
+   --libdir=%{_libdir} \
+   --datadir=%{_sysconfdir} \
+   --sysdepdir=%{_libdir}/%{name} \
+   --enable-force-devr
 
 %{__make}
 
 %install
 rm -rf $RPM_BUILD_ROOT
 install -d $RPM_BUILD_ROOT{%{_sysconfdir},%{_libdir},%{_includedir}/%{name}}
+%{__make} install \
+   DESTDIR=$RPM_BUILD_ROOT
+
+# SONAME: libskarnet.so.2.3
+# so this is junk
+%{__rm} $RPM_BUILD_ROOT%{_libdir}/libskarnet.so.2.3.10
+
+%if 0
 cp -p etc/leapsecs.dat $RPM_BUILD_ROOT%{_sysconfdir}
 cp -a include/* $RPM_BUILD_ROOT%{_includedir}/%{name}
 
@@ -108,6 +119,7 @@ cp -a library/* $RPM_BUILD_ROOT%{_libdir}
 %{__rm} $RPM_BUILD_ROOT%{_libdir}/libstdcrypto.so.1.4
 %{__rm} $RPM_BUILD_ROOT%{_libdir}/libstddjb.so.1.4
 %{__rm} $RPM_BUILD_ROOT%{_libdir}/libunixonacid.so.1.4
+%endif
 
 %clean
 rm -rf $RPM_BUILD_ROOT
@@ -117,7 +129,10 @@ rm -rf $RPM_BUILD_ROOT
 
 %files
 %defattr(644,root,root,755)
-%doc doc/COPYING
+%doc README COPYING AUTHORS
+%attr(755,root,root) %{_libdir}/libskarnet.so.2.3.10.0
+%ghost %{_libdir}/libskarnet.so.2.3
+%if 0
 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/leapsecs.dat
 %attr(755,root,root) %{_libdir}/libbiguint.so.*.*.*
 %ghost %{_libdir}/libbiguint.so.1
@@ -131,18 +146,33 @@ rm -rf $RPM_BUILD_ROOT
 %ghost %{_libdir}/libstddjb.so.1
 %attr(755,root,root) %{_libdir}/libunixonacid.so.*.*.*
 %ghost %{_libdir}/libunixonacid.so.1
+%endif
 
 %files devel
 %defattr(644,root,root,755)
+%doc doc/*
+%{_libdir}/libskarnet.so
+%if 0
 %{_libdir}/libbiguint.so
 %{_libdir}/libdatastruct.so
 %{_libdir}/librandom.so
 %{_libdir}/libstdcrypto.so
 %{_libdir}/libstddjb.so
 %{_libdir}/libunixonacid.so
+%endif
 %{_includedir}/skalibs
+%dir %{_libdir}/skalibs
+%{_libdir}/skalibs/rt.lib
+%{_libdir}/skalibs/socket.lib
+%{_libdir}/skalibs/sysclock.lib
+%{_libdir}/skalibs/sysdeps
+%{_libdir}/skalibs/sysdeps.h
+%{_libdir}/skalibs/tainnow.lib
+%{_libdir}/skalibs/target
+%{_libdir}/skalibs/util.lib
 
 %if %{with static_libs}
 %files static
 %defattr(644,root,root,755)
+%{_libdir}/libskarnet.a
 %endif


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/skalibs.git/commitdiff/d32d806f67b27df5a86fbcba148389755d31477d

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


DISTFILES: skalibs: skalibs-2.3.10.0.tar.gz

2016-10-09 Thread glen
Request by: glen


Files fetched: 1

STORED: http://skarnet.org/software/skalibs/skalibs-2.3.10.0.tar.gz
51cb8484896c68eb8d167767cdfc702e  skalibs-2.3.10.0.tar.gz
Size: 213288 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/skalibs] 2.3.9.0

2016-10-09 Thread glen
commit aea922fb26ae7d0fe44e81da241af2e864e60257
Author: Elan Ruusamäe 
Date:   Mon Mar 21 00:25:50 2016 +0200

2.3.9.0

 skalibs.spec | 10 ++
 1 file changed, 6 insertions(+), 4 deletions(-)
---
diff --git a/skalibs.spec b/skalibs.spec
index 15d8247..af6cacb 100644
--- a/skalibs.spec
+++ b/skalibs.spec
@@ -1,12 +1,12 @@
 Summary:   Essentially general-purpose libraries
 Summary(pl.UTF-8): Istotne biblioteki ogólnego przeznaczenia
 Name:  skalibs
-Version:   1.4.2
+Version:   2.3.9.0
 Release:   1
 License:   ISC
 Group: Libraries
 Source0:   
http://www.skarnet.org/software/skalibs/%{name}-%{version}.tar.gz
-# Source0-md5: e2bfa4447977024e1f2f91e9eb880baa
+# Source0-md5: 8cc1dfad59a588ba3956d78c81b5ea0a
 URL:   http://www.skarnet.org/software/skalibs/
 BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
 
@@ -73,10 +73,11 @@ Static skalibs library.
 Statyczna biblioteka skalibs.
 
 %prep
-%setup -qc
-mv prog/%{name}-%{version}/* .
+%setup -q
 
 %build
+%configure
+%if 0
 echo "%{__cc} %{rpmcflags} -Wall" > conf-compile/conf-cc
 echo %{_bindir}:/bin > conf-compile/conf-defaultpath
 echo "%{__cc} %{rpmldflags}" > conf-compile/conf-dynld
@@ -86,6 +87,7 @@ echo "%{__cc} %{rpmldflags}" > conf-compile/conf-ld
 rm -f conf-compile/flag-slashpackage
 echo > conf-compile/stripbins
 echo > conf-compile/striplibs
+%endif
 
 %{__make}
 


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/skalibs.git/commitdiff/d32d806f67b27df5a86fbcba148389755d31477d

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


[packages/common-lisp-asdf] Created branch master

2016-10-09 Thread qboosh
The branch 'master' was created.

Summary of new commits:

  4887e4d... - initial, based on Fedora cl-asdf package
___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


[packages/common-lisp-asdf] - initial, based on Fedora cl-asdf package

2016-10-09 Thread qboosh
commit 4887e4d2a719cc24d8642a5a868887a0c927812c
Author: Jakub Bogusz 
Date:   Sun Oct 9 20:52:32 2016 +0200

- initial, based on Fedora cl-asdf package

 common-lisp-asdf-texinfo5.patch | 130 
 common-lisp-asdf.spec   |  46 ++
 2 files changed, 176 insertions(+)
---
diff --git a/common-lisp-asdf.spec b/common-lisp-asdf.spec
new file mode 100644
index 000..7a183b9
--- /dev/null
+++ b/common-lisp-asdf.spec
@@ -0,0 +1,46 @@
+Summary:   Another System Definition Facility - package format for Common 
Lisp libraries
+Summary(pl.UTF-8): Another System Definition Facility - format pakietów 
bibliotek Common Lispa
+Name:  common-lisp-asdf
+Version:   20101028
+Release:   1
+License:   MIT
+Group: Development/Libraries
+Source0:   
http://pkgs.fedoraproject.org/repo/pkgs/cl-asdf/cl-asdf-%{version}.tar.bz2/f258de374780dcf5ad3ffeff422047ff/cl-asdf-%{version}.tar.bz2
+# Source0-md5: f258de374780dcf5ad3ffeff422047ff
+Patch0:%{name}-texinfo5.patch
+URL:   http://www.cliki.net/asdf
+BuildRequires: texinfo
+BuildArch: noarch
+BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
+
+%description
+Another System Definition Facility (asdf) is a package format for
+Common Lisp libraries.
+
+%description -l pl.UTF-8
+Another System Definition Facility (asdf) to format pakietów dla
+bibliotek Common Lispa.
+
+%prep
+%setup -q -n asdf
+%patch0 -p1
+
+%build
+%{__make} -C doc -j1 asdf.html manual-html
+
+%install
+rm -rf $RPM_BUILD_ROOT
+install -d $RPM_BUILD_ROOT%{_datadir}/common-lisp/source/cl-asdf
+
+cp -p asdf.lisp $RPM_BUILD_ROOT%{_datadir}/common-lisp/source/cl-asdf
+cp -p wild-modules.lisp $RPM_BUILD_ROOT%{_datadir}/common-lisp/source/cl-asdf
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%files
+%defattr(644,root,root,755)
+%doc README doc/asdf
+%dir %{_datadir}/common-lisp
+%dir %{_datadir}/common-lisp/source
+%{_datadir}/common-lisp/source/cl-asdf
diff --git a/common-lisp-asdf-texinfo5.patch b/common-lisp-asdf-texinfo5.patch
new file mode 100644
index 000..da63479
--- /dev/null
+++ b/common-lisp-asdf-texinfo5.patch
@@ -0,0 +1,130 @@
+Based on upstream commits f7e596e and a925fdf, fixed in 3.0.1
+
+--- a/doc/asdf.texinfo
 b/doc/asdf.texinfo
+@@ -6,19 +6,19 @@
+ 
+ @c We use @, etc to escape & from TeX in lambda lists --
+ @c so we need to define them for info as well.
+-@macro 
++@macro Aallow-other-keys
+ 
+ @end macro
+-@macro 
++@macro Aoptional
+ 
+ @end macro
+-@macro 
++@macro Arest
+ 
+ @end macro
+-@macro 
++@macro Akey
+ 
+ @end macro
+-@macro 
++@macro Abody
+ 
+ @end macro
+ 
+@@ -846,7 +846,7 @@ simple-component-name := string
+ 
+ pathname-specifier := pathname | string | symbol
+ 
+-method-form := (operation-name qual lambda-list @ body)
++method-form := (operation-name qual lambda-list @Arest body)
+ qual := method qualifier
+ 
+ component-dep-fail-option := :fail | :try-next | :ignore
+@@ -1137,8 +1137,8 @@ and easier than having them all be @code{EQL} methods.
+ 
+ Operations are invoked on systems via @code{operate}.
+ @anchor{operate}
+-@deffn {Generic function} @code{operate} @var{operation} @var{system} @ 
@var{initargs}
+-@deffnx {Generic function} @code{oos} @var{operation} @var{system} @ 
@var{initargs}
++@deffn {Generic function} @code{operate} @var{operation} @var{system} @Arest 
@var{initargs}
++@deffnx {Generic function} @code{oos} @var{operation} @var{system} @Arest 
@var{initargs}
+ @code{operate} invokes @var{operation} on @var{system}.
+ @code{oos} is a synonym for @code{operate}.
+ 
+@@ -1171,7 +1171,7 @@ They are invoked via the @code{operate} generic function.
+ (asdf:operate 'asdf:@var{operation-name} :@var{system-name} 
@{@var{operation-options ...}@})
+ @end lisp
+ 
+-@deffn Operation @code{compile-op} @ @code{proclamations}
++@deffn Operation @code{compile-op} @Akey @code{proclamations}
+ 
+ This operation compiles the specified component.
+ If proclamations are supplied, they will be proclaimed.
+@@ -1188,7 +1188,7 @@ does not necessarily load all the parts of the system, 
though;
+ use @code{load-op} to load a system.
+ @end deffn
+ 
+-@deffn Operation @code{load-op} @ @code{proclamations}
++@deffn Operation @code{load-op} @Akey @code{proclamations}
+ 
+ This operation loads a system.
+ 
+@@ -1228,7 +1228,7 @@ in a way that is compatible with all of the various test 
libraries
+ and test techniques in use in the community.
+ @end deffn
+ 
+-@c @deffn Operation test-system-version @ minimum
++@c @deffn Operation test-system-version @Akey minimum
+ 
+ @c Asks the system whether it satisfies a version requirement.
+ 
+@@ -1971,7 +1971,7 @@ The specified functions are exported from your build 
system's package.
+ Thus for ASDF the corresponding functions are in package ASDF,
+ and for XCVB the corresponding functions are in package XCVB.
+ 
+-@defun initialize-source-registry @ PARAMETER
++@defun initialize-source-registry 

DISTFILES: common-lisp-asdf: cl-asdf-20101028.tar.bz2

2016-10-09 Thread qboosh
Request by: qboosh


Files fetched: 1

STORED: 
http://pkgs.fedoraproject.org/repo/pkgs/cl-asdf/cl-asdf-20101028.tar.bz2/f258de374780dcf5ad3ffeff422047ff/cl-asdf-20101028.tar.bz2
f258de374780dcf5ad3ffeff422047ff  cl-asdf-20101028.tar.bz2
Size: 147198 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: common-lisp-controller: common-lisp-controller_7.10.tar.gz

2016-10-09 Thread qboosh
Request by: qboosh


Files fetched: 1

STORED: 
http://ftp.debian.org/debian/pool/main/c/common-lisp-controller/common-lisp-controller_7.10.tar.gz
d396f0be70b71be642aca3f962562132  common-lisp-controller_7.10.tar.gz
Size: 36783 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: s6: s6-2.3.0.0.tar.gz

2016-10-09 Thread glen
Request by: glen


Files fetched: 1

STORED: http://www.skarnet.org/software/s6/s6-2.3.0.0.tar.gz
e5c01be33a0cb6cbc76bd4382f94452f  s6-2.3.0.0.tar.gz
Size: 192887 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/s6] up to 2.3.0.0

2016-10-09 Thread glen
commit b3eebd291603cb2a9bd92c1d9a5f03017be85444
Author: Elan Ruusamäe 
Date:   Mon Oct 10 00:27:58 2016 +0300

up to 2.3.0.0

 s6.spec | 96 +++--
 1 file changed, 88 insertions(+), 8 deletions(-)
---
diff --git a/s6.spec b/s6.spec
index bb436a9..5ce9a8e 100644
--- a/s6.spec
+++ b/s6.spec
@@ -1,15 +1,20 @@
+#
+# Conditional build:
+%bcond_without static_libs # don't build static libraries
+
 Summary:   skarnet.org's small and secure supervision software suite
 Name:  s6
-Version:   1.1.1
-Release:   1
+Version:   2.3.0.0
+Release:   0.1
 License:   ISC license
 Group: Networking/Admin
 Source0:   http://www.skarnet.org/software/s6/%{name}-%{version}.tar.gz
-# Source0-md5: a4fc19506284c79851d6de4a35275c07
+# Source0-md5: e5c01be33a0cb6cbc76bd4382f94452f
 URL:   http://www.skarnet.org/software/s6/
-BuildRequires: execline >= 1.2.2
+BuildRequires: execline-devel >= 2.1.5.0
+BuildRequires: make >= 3.81
 BuildRequires: rpmbuild(macros) >= 1.268
-BuildRequires: skalibs >= 1.4.0
+BuildRequires: skalibs-devel >= 2.3.10.0
 BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
 
 %description
@@ -17,6 +22,14 @@ s6 is a small suite of programs for UNIX, designed to allow 
process
 supervision (a.k.a service supervision), in the line of daemontools
 and runit.
 
+%package devel
+Summary:   Header files and development documentation for s6
+Group: Development/Libraries
+Requires:  %{name} = %{version}-%{release}
+
+%description devel
+Header files and development documentation for s6.
+
 %package doc
 Summary:   Manual for %{name}
 Summary(fr.UTF-8): Documentation pour %{name}
@@ -41,10 +54,26 @@ Documentazione di %{name}.
 Dokumentacja do %{name}.
 
 %prep
-%setup -qc
-mv admin/%{name}-%{version}/* .
+%setup -q
+
+sed -i "s~tryldflag LDFLAGS_AUTO -Wl,--hash-style=both~:~" configure
 
 %build
+%configure \
+   --enable-shared \
+   --disable-static \
+   --disable-allstatic \
+   --bindir=%{_sbindir} \
+   --sbindir=%{_sbindir} \
+   --dynlibdir=%{_libdir} \
+   --libdir=%{_libdir} \
+   --datadir=%{_sysconfdir} \
+   --sysdepdir=%{_libdir}/skalibs \
+   --dynlibdir=%{_libdir} \
+   --with-sysdeps=%{_libdir}/skalibs \
+   %{nil}
+
+%if 0
 echo "%{__cc} %{rpmcflags} -Wall" > conf-compile/conf-cc
 echo "%{__cc} %{rpmldflags}" > conf-compile/conf-ld
 echo "%{__cc} %{rpmldflags}" > conf-compile/conf-dynld
@@ -60,6 +89,7 @@ echo %{_libdir}/skalibs > conf-compile/path-library
 echo %{_libdir} >> conf-compile/path-library
 echo %{_libdir}/skalibs > conf-compile/path-library.so
 echo %{_libdir} >> conf-compile/path-library.so
+%endif
 
 %{__make}
 
@@ -67,31 +97,71 @@ echo %{_libdir} >> conf-compile/path-library.so
 rm -rf $RPM_BUILD_ROOT
 install -d $RPM_BUILD_ROOT{%{_sbindir},%{_examplesdir}/%{name}-%{version}}
 
+%{__make} install \
+   DESTDIR=$RPM_BUILD_ROOT
+
+# SONAME: libs6.so.2.3
+# so this is junk
+%{__rm} $RPM_BUILD_ROOT%{_libdir}/libs6.so.2.3.0
+
+%if 0
 install -p command/* $RPM_BUILD_ROOT%{_sbindir}
 cp -a examples/* $RPM_BUILD_ROOT%{_examplesdir}/%{name}-%{version}
+%endif
 
 %clean
 rm -rf $RPM_BUILD_ROOT
 
 %files
 %defattr(644,root,root,755)
+%attr(755,root,root) %{_sbindir}/s6-accessrules-cdb-from-fs
+%attr(755,root,root) %{_sbindir}/s6-accessrules-fs-from-cdb
+%attr(755,root,root) %{_sbindir}/s6-applyuidgid
 %attr(755,root,root) %{_sbindir}/s6-cleanfifodir
+%attr(755,root,root) %{_sbindir}/s6-connlimit
 %attr(755,root,root) %{_sbindir}/s6-envdir
 %attr(755,root,root) %{_sbindir}/s6-envuidgid
+%attr(755,root,root) %{_sbindir}/s6-fdholder-daemon
+%attr(755,root,root) %{_sbindir}/s6-fdholder-delete
+%attr(755,root,root) %{_sbindir}/s6-fdholder-deletec
+%attr(755,root,root) %{_sbindir}/s6-fdholder-getdump
+%attr(755,root,root) %{_sbindir}/s6-fdholder-getdumpc
+%attr(755,root,root) %{_sbindir}/s6-fdholder-list
+%attr(755,root,root) %{_sbindir}/s6-fdholder-listc
+%attr(755,root,root) %{_sbindir}/s6-fdholder-retrieve
+%attr(755,root,root) %{_sbindir}/s6-fdholder-retrievec
+%attr(755,root,root) %{_sbindir}/s6-fdholder-setdump
+%attr(755,root,root) %{_sbindir}/s6-fdholder-setdumpc
+%attr(755,root,root) %{_sbindir}/s6-fdholder-store
+%attr(755,root,root) %{_sbindir}/s6-fdholder-storec
+%attr(755,root,root) %{_sbindir}/s6-fdholder-transferdump
+%attr(755,root,root) %{_sbindir}/s6-fdholder-transferdumpc
+%attr(755,root,root) %{_sbindir}/s6-fdholderd
 %attr(755,root,root) %{_sbindir}/s6-fghack
 %attr(755,root,root) %{_sbindir}/s6-ftrig-listen
 %attr(755,root,root) %{_sbindir}/s6-ftrig-listen1
 %attr(755,root,root) %{_sbindir}/s6-ftrig-notify
 %attr(755,root,root) %{_sbindir}/s6-ftrig-wait
 %attr(755,root,root) %{_sbindir}/s6-ftrigrd
+%attr(755,root,root) %{_sbindir}/s6-ioconnect
+%attr(755,root,root) %{_sbindir}/s6-ipcclient
+%attr(755,root,root) %{_sbindir}/s6-ipcserver
+%attr(755,root,root) 

DISTFILES: nfs-utils: nfs-utils-1.3.4.tar.bz2 nfs.doc.tar.gz

2016-10-09 Thread glen
Request by: glen


Files fetched: 1

STORED: http://downloads.sourceforge.net/nfs/nfs-utils-1.3.4.tar.bz2
2fabdadb8ff415a1eafcfb12ab1bf781  nfs-utils-1.3.4.tar.bz2
Size: 814545 bytes
ALREADY GOT: no-url://nfs.doc.tar.gz
ae7db9c61c5ad04f83bb99e5caed73da  nfs.doc.tar.gz


-- 
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/nfs-utils] up to 1.3.4

2016-10-09 Thread glen
commit cb5f82878834a1a51132145b52864af0dd9d7182
Author: Elan Ruusamäe 
Date:   Sat Oct 8 23:15:58 2016 +0300

up to 1.3.4

 nfs-utils.spec | 28 +---
 1 file changed, 13 insertions(+), 15 deletions(-)
---
diff --git a/nfs-utils.spec b/nfs-utils.spec
index 79ea952..98b10a5 100644
--- a/nfs-utils.spec
+++ b/nfs-utils.spec
@@ -1,9 +1,4 @@
-# TODO
-# - two python scripts in -clients:
-#   /usr/sbin/mountstats:  Python script, ASCII text executable
-#   /usr/sbin/nfsiostat:   Python script, ASCII text executable
-#   appeared in commit e8168b4 with 1.2.3 update
-
+#
 # Conditional build:
 %bcond_withkrb5# build with MIT Kerberos instead of Heimdal
 %bcond_without tirpc   # use librpcsecgss instead of libtirpc
@@ -14,13 +9,13 @@ Summary(pt_BR.UTF-8):Os utilitários para o cliente e 
servidor NFS do Linux
 Summary(ru.UTF-8): Утилиты для NFS и демоны поддержки для NFS-сервера ядра
 Summary(uk.UTF-8): Утиліти для NFS та демони підтримки для NFS-сервера ядра
 Name:  nfs-utils
-Version:   1.3.3
-Release:   2
+Version:   1.3.4
+Release:   1
 License:   GPL v2
 Group: Networking/Daemons
 #Source0:  
https://www.kernel.org/pub/linux/utils/nfs/%{name}-%{version}.tar.bz2
 Source0:   http://downloads.sourceforge.net/nfs/%{name}-%{version}.tar.bz2
-# Source0-md5: 9b87d890669eaaec8e97a2b0a35b2665
+# Source0-md5: 2fabdadb8ff415a1eafcfb12ab1bf781
 #Source1:  ftp://ftp.linuxnfs.sourceforge.org/pub/nfs/nfs.doc.tar.gz
 Source1:   nfs.doc.tar.gz
 # Source1-md5: ae7db9c61c5ad04f83bb99e5caed73da
@@ -35,7 +30,7 @@ Source9:  nfslock.sysconfig
 Source10:  nfsfs.sysconfig
 Source11:  blkmapd.init
 Source12:  sunrpc.conf
-Source13:  nfs-utils_env.sh
+Source13:  %{name}_env.sh
 Source102: nfsd.service
 Source103: nfs-blkmapd.service
 Source104: nfs-exportfs.service
@@ -165,17 +160,17 @@ Summary(pl.UTF-8):Wspólne programy do obsługi NFS
 Group: Networking
 Requires(post,preun):  /sbin/chkconfig
 Requires(post,preun,postun):   systemd-units >= 38
-Provides:  user(rpcstatd)
-Provides:  group(rpcstatd)
-Provides:  nfslockd
-Provides:  nfs-utils-lock
 Requires:  libnfsidmap >= 0.25-3
 Requires:  rc-scripts
 Requires:  rpcbind >= 0.1.7
 Requires:  systemd-units >= 0.38
+Provides:  group(rpcstatd)
+Provides:  nfs-utils-lock
+Provides:  nfslockd
+Provides:  user(rpcstatd)
+Obsoletes: knfsd-lock
 Obsoletes: nfs-utils-common-systemd
 Obsoletes: nfs-utils-lock
-Obsoletes: knfsd-lock
 Obsoletes: nfslockd
 Conflicts: mount < 2.13-0.pre7.1
 
@@ -300,6 +295,9 @@ ln -sf /bin/true $RPM_BUILD_ROOT/sbin/fsck.nfs
 
 cp -a nfs html
 
+# make python dep optional
+chmod a-x $RPM_BUILD_ROOT%{_sbindir}/{mountstats,nfsiostat}
+
 %clean
 rm -rf $RPM_BUILD_ROOT
 


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/nfs-utils.git/commitdiff/cb5f82878834a1a51132145b52864af0dd9d7182

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


[packages/electron] up to 1.4.3

2016-10-09 Thread glen
commit f09eb3199549c394f5625f82be7a84c661407624
Author: Elan Ruusamäe 
Date:   Sun Oct 9 12:57:23 2016 +0300

up to 1.4.3

 electron.spec | 23 ---
 1 file changed, 12 insertions(+), 11 deletions(-)
---
diff --git a/electron.spec b/electron.spec
index 0895c47..20637f9 100644
--- a/electron.spec
+++ b/electron.spec
@@ -1,26 +1,24 @@
 # TODO:
 # - build from source (the process and deps look like hell)
-#   
https://github.com/atom/electron/blob/v0.36.0/docs/development/build-instructions-linux.md
+#   WIP on 'source' branch
 
 Summary:   Framework cross-platform desktop applications using JavaScript, 
HTML and CSS
 Name:  electron
-Version:   0.36.0
-Release:   0.1
+Version:   1.4.3
+Release:   1
 License:   MIT, BSD
 Group: Applications
-#Source0:  
https://github.com/atom/electron/archive/v%{version}/%{name}-%{version}.tar.gz
-## Source0-md5:0c20e4676d7aef091521c9264d58939a
 Source1:   
https://github.com/atom/electron/releases/download/v%{version}/%{name}-v%{version}-linux-ia32.zip
-# Source1-md5: 1272f2a7330341f86cd8be1cce14afc9
 Source2:   
https://github.com/atom/electron/releases/download/v%{version}/%{name}-v%{version}-linux-x64.zip
-# Source2-md5: 1c77028a12330b4883fe93eea82c0b63
 URL:   https://github.com/atom/electron
 BuildRequires: unzip
 ExclusiveArch: %{ix86} %{x8664}
 BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
 
+# do not provide SONAME deps from this package
 %define_noautoprovfiles%{_libdir}/%{name}
-%define_noautoreq  libnode.so libnotify.so
+# provided by this package itself
+%define_noautoreq  libnode.so libffmpeg.so
 
 %description
 The Electron framework lets you write cross-platform desktop
@@ -37,7 +35,7 @@ and Chromium and is used in the Atom editor.
 %endif
 
 # remove empty locales
-find locales -size 0 | xargs rm -v
+find locales -size 0 | xargs -r rm -v
 
 %install
 rm -rf $RPM_BUILD_ROOT
@@ -50,7 +48,6 @@ cp -a . $RPM_BUILD_ROOT%{_libdir}/%{name}
 ln -s %{_libdir}/%{name}/%{name} $RPM_BUILD_ROOT%{_bindir}/%{name}
 
 %{__rm} $RPM_BUILD_ROOT%{_libdir}/%{name}/LICENSE*
-%{__rm} $RPM_BUILD_ROOT%{_libdir}/%{name}/libgcrypt*
 
 %clean
 rm -rf $RPM_BUILD_ROOT
@@ -64,8 +61,12 @@ rm -rf $RPM_BUILD_ROOT
 %{_libdir}/%{name}/resources
 %attr(755,root,root) %{_libdir}/%{name}/electron
 %attr(755,root,root) %{_libdir}/%{name}/libnode.so
-%attr(755,root,root) %{_libdir}/%{name}/libnotify.so.4
+%attr(755,root,root) %{_libdir}/%{name}/libffmpeg.so
+%{_libdir}/%{name}/blink_image_resources_200_percent.pak
+%{_libdir}/%{name}/content_resources_200_percent.pak
 %{_libdir}/%{name}/content_shell.pak
+%{_libdir}/%{name}/ui_resources_200_percent.pak
+%{_libdir}/%{name}/views_resources_200_percent.pak
 %{_libdir}/%{name}/icudtl.dat
 %{_libdir}/%{name}/natives_blob.bin
 %{_libdir}/%{name}/snapshot_blob.bin


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/electron.git/commitdiff/f09eb3199549c394f5625f82be7a84c661407624

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