[packages/Mesa] - added wayland patch (update to wayland 0.99.0/1.0.0 API from Mesa git) - release 2

2012-11-03 Thread qboosh
commit 9dab7a2be1ede4f7ad0556b48e74990c3780fc45
Author: Jakub Bogusz qbo...@pld-linux.org
Date:   Sat Nov 3 08:27:18 2012 +0100

- added wayland patch (update to wayland 0.99.0/1.0.0 API from Mesa git)
- release 2

 Mesa-wayland.patch | 972 +
 Mesa.spec  |   9 +-
 2 files changed, 978 insertions(+), 3 deletions(-)
---
diff --git a/Mesa.spec b/Mesa.spec
index d90574f..1b6c41a 100644
--- a/Mesa.spec
+++ b/Mesa.spec
@@ -33,12 +33,13 @@ Summary:Free OpenGL implementation
 Summary(pl.UTF-8): Wolnodostępna implementacja standardu OpenGL
 Name:  Mesa
 Version:   9.0
-Release:   1
+Release:   2
 License:   MIT (core) and others - see license.html file
 Group: X11/Libraries
 Source0:   
ftp://ftp.freedesktop.org/pub/mesa/%{version}/%{name}Lib-%{version}.tar.bz2
 # Source0-md5: 60e557ce407be3732711da484ab3db6c
 Patch0:%{name}-link.patch
+Patch1:%{name}-wayland.patch
 URL:   http://www.mesa3d.org/
 BuildRequires: autoconf = 2.60
 BuildRequires: automake
@@ -65,7 +66,7 @@ BuildRequires:rpmbuild(macros) = 1.470
 BuildRequires: sed = 4.0
 %{?with_egl:BuildRequires: udev-devel = 1:150}
 # wayland-{client,server}
-%{?with_wayland:BuildRequires: wayland-devel}
+%{?with_wayland:BuildRequires: wayland-devel = 1.0.0}
 BuildRequires: xorg-lib-libXdamage-devel
 BuildRequires: xorg-lib-libXext-devel = 1.0.5
 BuildRequires: xorg-lib-libXfixes-devel
@@ -730,6 +731,7 @@ Summary:Wayland EGL library
 Summary(pl.UTF-8): Biblioteka Wayland EGL
 Group: Libraries
 Requires:  libdrm = %{libdrm_ver}
+Requires:  wayland = 1.0.0
 
 %description libwayland-egl
 Wayland EGL platform library.
@@ -743,7 +745,7 @@ Summary(pl.UTF-8):  Pliki programistyczne biblioteki 
Wayland EGL
 Group: Development/Libraries
 Requires:  %{name}-libwayland-egl = %{version}-%{release}
 Requires:  libdrm-devel = %{libdrm_ver}
-Requires:  wayland-devel
+Requires:  wayland-devel = 1.0.0
 
 %description libwayland-egl-devel
 Development files for Wayland EGL platform library.
@@ -1059,6 +1061,7 @@ Sterownik Mesa softpipe dla API vdpau.
 %prep
 %setup -q
 %patch0 -p1
+%patch1 -p1
 
 %build
 %{__libtoolize}
diff --git a/Mesa-wayland.patch b/Mesa-wayland.patch
new file mode 100644
index 000..a2bb6af
--- /dev/null
+++ b/Mesa-wayland.patch
@@ -0,0 +1,972 @@
+From 0229e3ae41be109ac423b2eb2ddf79e24b799d60 Mon Sep 17 00:00:00 2001
+From: Kristian Høgsberg k...@bitplanet.net
+Date: Thu, 11 Oct 2012 02:10:42 +
+Subject: egl/wayland: Update to Wayland 0.99 API
+
+The 0.99.0 Wayland release changes the event API to provide a thread-safe
+mechanism for receiving events specific to a subsystem (such as EGL) and
+we need to use it in the EGL platform.
+
+The Wayland protocol now also requires a commit request to make changes
+take effect, issue that from eglSwapBuffers.
+---
+diff --git a/configure.ac b/configure.ac
+index 6f851e2..aefa142 100644
+--- a/configure.ac
 b/configure.ac
+@@ -1505,7 +1505,7 @@ for plat in $egl_platforms; do
+   ;;
+ 
+   wayland)
+-  PKG_CHECK_MODULES([WAYLAND], [wayland-client wayland-server],, \
++  PKG_CHECK_MODULES([WAYLAND], [wayland-client = 0.99.0 
wayland-server = 0.99.0],, \
+ [AC_MSG_ERROR([cannot find 
libwayland-client])])
+   GALLIUM_WINSYS_DIRS=$GALLIUM_WINSYS_DIRS sw/wayland
+ 
+diff --git a/src/egl/drivers/dri2/egl_dri2.h b/src/egl/drivers/dri2/egl_dri2.h
+index 85c0745..be359d3 100644
+--- a/src/egl/drivers/dri2/egl_dri2.h
 b/src/egl/drivers/dri2/egl_dri2.h
+@@ -126,8 +126,10 @@ struct dri2_egl_display
+ 
+ #ifdef HAVE_WAYLAND_PLATFORM
+struct wl_display*wl_dpy;
++   struct wl_registry   *wl_registry;
+struct wl_drm*wl_server_drm;
+struct wl_drm*wl_drm;
++   struct wl_event_queue*wl_queue;
+int authenticated;
+int formats;
+ #endif
+@@ -178,7 +180,7 @@ struct dri2_egl_surface
+__DRIbuffer   *dri_buffers[__DRI_BUFFER_COUNT];
+__DRIbuffer   *third_buffer;
+__DRIbuffer   *pending_buffer;
+-   EGLBoolean block_swap_buffers;
++   struct wl_callback*frame_callback;
+int  format;
+ #endif
+ 
+diff --git a/src/egl/drivers/dri2/platform_wayland.c 
b/src/egl/drivers/dri2/platform_wayland.c
+index d9b45f1..089a5d7 100644
+--- a/src/egl/drivers/dri2/platform_wayland.c
 b/src/egl/drivers/dri2/platform_wayland.c
+@@ -46,6 +46,34 @@ enum wl_drm_format_flags {
+ };
+ 
+ static void
++sync_callback(void *data, struct wl_callback *callback, uint32_t serial)
++{
++   int *done = data;
++
++   *done = 1;
++   wl_callback_destroy(callback);
++}
++
++static const struct wl_callback_listener sync_listener = {
++   sync_callback
++};
++
++static int

[packages/cmake] updated to 2.8.10.

2012-11-03 Thread pluto
commit f13d1e411bdc472a2a9f3f3345276f36a93f81f7
Author: Paweł Sikora pawel.sik...@agmk.net
Date:   Sat Nov 3 08:50:56 2012 +0100

updated to 2.8.10.

 cmake-lib64.patch | 20 ++--
 cmake.spec|  5 +++--
 2 files changed, 13 insertions(+), 12 deletions(-)
---
diff --git a/cmake.spec b/cmake.spec
index e554ae2..acbe3be 100644
--- a/cmake.spec
+++ b/cmake.spec
@@ -11,12 +11,12 @@
 Summary:   Cross-platform, open-source make system
 Summary(pl.UTF-8): Wieloplatformowy system make o otwartych źródłach
 Name:  cmake
-Version:   2.8.9
+Version:   2.8.10
 Release:   1
 License:   BSD
 Group: Development/Building
 Source0:   http://www.cmake.org/files/v2.8/%{name}-%{version}.tar.gz
-# Source0-md5: 801f4c87f8b604f727df5bf1f05a59e7
+# Source0-md5: d4aef1eab859df61d2664721a72732c0
 Patch0:%{name}-lib64.patch
 Patch1:%{name}-helpers.patch
 URL:   http://www.cmake.org/
@@ -148,6 +148,7 @@ rm -rf $RPM_BUILD_ROOT
 %{_datadir}/cmake/Modules/.NoDartCoverage
 %{_datadir}/cmake/Modules/*
 %{_datadir}/cmake/Templates
+%{_datadir}/cmake/editors
 %{_datadir}/cmake/include
 %{_aclocaldir}/cmake.m4
 
diff --git a/cmake-lib64.patch b/cmake-lib64.patch
index ef5eb99..808dd95 100644
--- a/cmake-lib64.patch
+++ b/cmake-lib64.patch
@@ -1,11 +1,11 @@
 cmake-2.4.8/Modules/KDE3Macros.cmake~  2008-01-29 00:39:54.0 
+0100
-+++ cmake-2.4.8/Modules/KDE3Macros.cmake   2008-01-29 00:41:11.559753940 
+0100
-@@ -319,7 +319,7 @@
-FILE(APPEND ${_laname} # Should we warn about portability when linking 
against -modules?\nshouldnotlink=yes\n)
-FILE(APPEND ${_laname} # Files to 
dlopen/dlpreopen\ndlopen=''\ndlpreopen=''\n)
-FILE(APPEND ${_laname} # Directory that this library needs to be 
installed in:\n)
--   FILE(APPEND ${_laname} libdir='${CMAKE_INSTALL_PREFIX}/lib/kde3'\n)
-+   FILE(APPEND ${_laname} libdir='${CMAKE_INSTALL_PREFIX}/lib64/kde3'\n)
+--- cmake-2.4.10/Modules/KDE3Macros.cmake.orig 2012-11-03 08:29:52.205394821 
+0100
 cmake-2.4.10/Modules/KDE3Macros.cmake  2012-11-03 08:31:27.108749182 
+0100
+@@ -336,7 +336,7 @@
+file(APPEND ${_laname} # Should we warn about portability when linking 
against -modules?\nshouldnotlink=yes\n)
+file(APPEND ${_laname} # Files to 
dlopen/dlpreopen\ndlopen=''\ndlpreopen=''\n)
+file(APPEND ${_laname} # Directory that this library needs to be 
installed in:\n)
+-   file(APPEND ${_laname} libdir='${CMAKE_INSTALL_PREFIX}/lib/kde3'\n)
++   file(APPEND ${_laname} libdir='${CMAKE_INSTALL_PREFIX}/lib64/kde3'\n)
  
-INSTALL_FILES(${KDE3_LIBTOOL_DIR} FILES ${_laname})
- ENDMACRO(KDE3_INSTALL_LIBTOOL_FILE)
+install_files(${KDE3_LIBTOOL_DIR} FILES ${_laname})
+ endmacro()


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/cmake.git/commitdiff/f13d1e411bdc472a2a9f3f3345276f36a93f81f7

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


DISTFILES: cmake: cmake-2.8.10.tar.gz

2012-11-03 Thread pluto

Files fetched: 1

STORED: http://www.cmake.org/files/v2.8/cmake-2.8.10.tar.gz
d4aef1eab859df61d2664721a72732c0  cmake-2.8.10.tar.gz
Size: 5766728 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/weston] - updated to 1.0.0

2012-11-03 Thread qboosh
commit 9c19f94fdd5276b4e9f33fca54cea9085ea3e30d
Author: Jakub Bogusz qbo...@pld-linux.org
Date:   Sat Nov 3 09:31:04 2012 +0100

- updated to 1.0.0

 weston.spec | 13 -
 1 file changed, 8 insertions(+), 5 deletions(-)
---
diff --git a/weston.spec b/weston.spec
index 48c4ee7..768bef9 100644
--- a/weston.spec
+++ b/weston.spec
@@ -12,17 +12,17 @@
 Summary:   Weston - Wayland demos
 Summary(pl.UTF-8): Weston - programy demonstracyjne dla protokołu Wayland
 Name:  weston
-Version:   0.95.0
+Version:   1.0.0
 Release:   1
 License:   MIT
 Group: Applications
 Source0:   
http://wayland.freedesktop.org/releases/%{name}-%{version}.tar.xz
-# Source0-md5: 77c87d8cc15e759ff512f9584d37e8a8
+# Source0-md5: c33a470d9c23d0f0a04b1b9f1a034da4
 URL:   http://wayland.freedesktop.org/
 BuildRequires: Mesa-libEGL-devel = 7.10
 BuildRequires: Mesa-libGLES-devel
 # for wayland and sclients, but also desktop-shell, which is always enabled
-BuildRequires: Mesa-libwayland-egl-devel = 9
+BuildRequires: Mesa-libwayland-egl-devel = 9.0-2
 BuildRequires: cairo-devel = 1.10.0
 BuildRequires: libjpeg-devel
 BuildRequires: libpng-devel
@@ -31,14 +31,14 @@ BuildRequires:  pixman-devel
 BuildRequires: pkgconfig
 BuildRequires: tar = 1:1.22
 # wayland-server always; wayland-client if with_wayland || with_sclients || 
with_clients; wayland-cursor if with_clients
-BuildRequires: wayland-devel = 0.95.0
+BuildRequires: wayland-devel = 1.0.0
 BuildRequires: xorg-lib-libxkbcommon-devel
 BuildRequires: xz
 %if %{with drm}
 BuildRequires: Mesa-libgbm-devel
+BuildRequires: libdrm-devel = 2.4.30
 BuildRequires: mtdev-devel = 1.1.0
 BuildRequires: udev-devel = 1:136
-BuildRequires: libdrm-devel = 2.4.30
 %endif
 %if %{with openwfd}
 BuildRequires: Mesa-libgbm-devel
@@ -66,6 +66,7 @@ BuildRequires:glib2-devel = 2.0
 BuildRequires: pkgconfig(cairo-egl) = 1.11.3
 BuildRequires: poppler-glib-devel
 %endif
+Requires:  Mesa-libwayland-egl = 9.0-2
 BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
 
 %description
@@ -111,6 +112,7 @@ rm -rf $RPM_BUILD_ROOT
 %defattr(644,root,root,755)
 %doc README
 %attr(755,root,root) %{_bindir}/wcap-decode
+%attr(755,root,root) %{_bindir}/weston-info
 # composer
 %attr(755,root,root) %{_bindir}/weston
 %if %{with wlaunch}
@@ -142,6 +144,7 @@ rm -rf $RPM_BUILD_ROOT
 %attr(755,root,root) %{_libdir}/weston/desktop-shell.so
 %attr(755,root,root) %{_libdir}/weston/tablet-shell.so
 %{_datadir}/weston
+%{_mandir}/man1/weston.1*
 
 # noinst, too common names - package in %{name}-demos with weston- prefix?
 # simple clients


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/weston.git/commitdiff/9c19f94fdd5276b4e9f33fca54cea9085ea3e30d

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


DISTFILES: weston: weston-1.0.0.tar.xz

2012-11-03 Thread qboosh

Files fetched: 1

STORED: http://wayland.freedesktop.org/releases/weston-1.0.0.tar.xz
c33a470d9c23d0f0a04b1b9f1a034da4  weston-1.0.0.tar.xz
Size: 557040 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/git-core-slug] - missing dirs; simplify with defattr

2012-11-03 Thread glen
commit 7c0a8dc796b44eeff1f979e2e1e86231ef5e4dea
Author: Elan Ruusamäe g...@delfi.ee
Date:   Thu Jul 12 22:36:41 2012 +0300

- missing dirs; simplify with defattr

 git-core-slug.spec | 16 +++-
 1 file changed, 11 insertions(+), 5 deletions(-)
---
diff --git a/git-core-slug.spec b/git-core-slug.spec
index 21ad7e6..be90fcd 100644
--- a/git-core-slug.spec
+++ b/git-core-slug.spec
@@ -3,7 +3,7 @@ Summary:Tools to interact with PLD git repositories
 Summary(pl.UTF-8): Narzędzia do pracy z repozytoriami gita w PLD
 Name:  git-core-slug
 Version:   0.13.2
-Release:   1
+Release:   2
 License:   GPL v2
 Group: Development/Building
 Source0:   
https://github.com/draenog/slug/tarball/v%{version}/%{name}-%{version}.tar.gz
@@ -111,9 +111,15 @@ fi
 %attr(754,root,root) /etc/rc.d/init.d/slug_watch
 %config(noreplace) %verify(not md5 mtime size) /etc/cron.d/slug_watch
 %config(noreplace) %verify(not md5 mtime size) /etc/sysconfig/slug_watch
+%{py3_sitescriptdir}/Daemon
+
+%defattr(644,git,git,755)
+%dir /home/services/git
+%dir /home/services/git/adc
+%dir /home/services/git/adc/bin
 %attr(755,git,git) /home/services/git/adc/bin/trash
 %attr(755,git,git) /home/services/git/adc/bin/move
-%{py3_sitescriptdir}/Daemon
-%attr(644,git,git) 
/home/services/git/.gitolite/hooks/common/post-receive.python.d/slug_hook.py
-%attr(744,git,git) %dir /home/services/git/watchdir
-%attr(744,git,git) %dir /home/services/git/Refs
+%dir /home/services/git/.gitolite/hooks/common/post-receive.python.d
+/home/services/git/.gitolite/hooks/common/post-receive.python.d/slug_hook.py
+%dir /home/services/git/watchdir
+%dir /home/services/git/Refs


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/git-core-slug.git/commitdiff/7c0a8dc796b44eeff1f979e2e1e86231ef5e4dea

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


[packages/rpm-build-tools] (2 commits) ...Merge commit '053ce15429546e205ce48d07315b1a90b48d3f0b'

2012-11-03 Thread glen
Summary of changes:

  053ce15... add a tool to cleanup your packages dir
  9ca405b... Merge commit '053ce15429546e205ce48d07315b1a90b48d3f0b'
___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


[packages/rpm-build-tools: 1/2] add a tool to cleanup your packages dir

2012-11-03 Thread glen
commit 053ce15429546e205ce48d07315b1a90b48d3f0b
Author: Elan Ruusamäe g...@delfi.ee
Date:   Sat Nov 3 11:15:57 2012 +0200

add a tool to cleanup your packages dir

 purge-packages.sh | 37 +
 1 file changed, 37 insertions(+)
---
diff --git a/purge-packages.sh b/purge-packages.sh
new file mode 100755
index 000..b8ca00c
--- /dev/null
+++ b/purge-packages.sh
@@ -0,0 +1,37 @@
+#!/bin/sh
+# Purges packages/ checkouts
+# - if package has clean state, the dir is removed
+# - otherwise git gc is called
+set -e
+
+topdir=$(rpm -E %_topdir)
+purgedir=$topdir/purged
+cd $topdir
+
+if [ -d $purgedir ]; then
+   echo 2 Previous pruge dir exists: $purgedir, remove it to resume
+   exit 1
+fi
+
+install -d $purgedir
+for pkg in */.git; do
+   pkg=${pkg%/.git}
+   cd $pkg
+   status=$(git status -s)
+
+   # FIXME: does not currently handle if some pushes are not made!
+   if [ -n $status ]; then
+   cat -EOF
+   * Package $pkg - Untracked files. Invoke gc
+
+   $status
+   EOF
+   git gc
+   else
+   cat -EOF
+   * Package $pkg - State clean. Removing
+   EOF
+   mv ../$pkg $purgedir
+   fi
+   cd ..
+done


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/rpm-build-tools.git/commitdiff/9ca405b6e7e95c41a2f6cfe6b32900355b75d903

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


[packages/rpm-build-tools: 2/2] Merge commit '053ce15429546e205ce48d07315b1a90b48d3f0b'

2012-11-03 Thread glen
commit 9ca405b6e7e95c41a2f6cfe6b32900355b75d903
Merge: 89e05bd 053ce15
Author: Elan Ruusamäe g...@delfi.ee
Date:   Sat Nov 3 11:17:06 2012 +0200

Merge commit '053ce15429546e205ce48d07315b1a90b48d3f0b'

 purge-packages.sh | 37 +
 1 file changed, 37 insertions(+)
---


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/rpm-build-tools.git/commitdiff/9ca405b6e7e95c41a2f6cfe6b32900355b75d903

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


[packages/chromium-browser] script to create diff patches between versions

2012-11-03 Thread glen
commit 51259910a8b525d1eccc385c61d45e1d83710a6b
Author: Elan Ruusamäe g...@delfi.ee
Date:   Sat Nov 3 11:27:01 2012 +0200

script to create diff patches between versions

 make-diff-patch.sh | 24 
 1 file changed, 24 insertions(+)
---
diff --git a/make-diff-patch.sh b/make-diff-patch.sh
new file mode 100755
index 000..c32e161
--- /dev/null
+++ b/make-diff-patch.sh
@@ -0,0 +1,24 @@
+#!/bin/sh
+# Create .patch based on $1 for $2
+src=$1
+dst=$2
+ext=.tar.xz
+
+set -e
+
+srcdir=$(basename $src $ext)
+dstdir=$(basename $dst $ext)
+patch=$dstdir.patch
+
+test -d $srcdir || unpack $src
+test -d $dstdir || unpack $dst
+if diff -Nur $srcdir $dstdir  $patch; then
+   echo No diffs!
+else
+   echo Patch created
+   ls -lh $patch
+   diffstat $patch | tee $patch.diff
+   cat $patch.diff $patch | xz -9  $patch.xz
+fi
+
+rm -rf $dstdir $srcdir


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/chromium-browser.git/commitdiff/51259910a8b525d1eccc385c61d45e1d83710a6b

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


[packages/mysql] cosmetics: make unix socket mouse selectable in terminal

2012-11-03 Thread glen
commit bb821a4c801774fe5ea9511faa449f41238d82f2
Author: Elan Ruusamäe g...@delfi.ee
Date:   Sat Nov 3 11:46:22 2012 +0200

cosmetics: make unix socket mouse selectable in terminal

 mysql.init | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/mysql.init b/mysql.init
old mode 100644
new mode 100755
index 585f81a..fadce4c
--- a/mysql.init
+++ b/mysql.init
@@ -664,7 +664,7 @@ case $action in
pid=$MYSQL_PID
nls MySQL cluster %s, pid %s\n $mysqldir $pid
[ -z $MYSQL_SKIP_NETWORKING ]  nls \ttcp:%s:%s\n 
$addr $port
-   nls \tunix:%s\n $socket
+   nls \tunix: %s\n $socket
 
MYSQL_SOCKET=$socket slave_status
 
@@ -697,7 +697,7 @@ case $action in

socket=${MYSQL_SOCKET:-/var/lib/mysql/mysql.sock}
nls MySQL cluster %s, pid %s\n $mysqldir 
$pid
[ -z $MYSQL_SKIP_NETWORKING ]  nls 
\ttcp:%s:%s\n $addr $port
-   nls \tunix:%s\n $socket
+   nls \tunix: %s\n $socket
 
MYSQL_SOCKET=$socket slave_status
 


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/mysql.git/commitdiff/bb821a4c801774fe5ea9511faa449f41238d82f2

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


[packages/mysql] - ignore-builtin-innodb is deprecated

2012-11-03 Thread glen
commit b99163f9be703d44a08d9f816779ab9dc29fdf4f
Author: Elan Ruusamäe g...@delfi.ee
Date:   Sat Nov 3 11:47:51 2012 +0200

- ignore-builtin-innodb is deprecated

 mysqld.conf | 1 +
 1 file changed, 1 insertion(+)
---
diff --git a/mysqld.conf b/mysqld.conf
index ec1f859..f2df427 100644
--- a/mysqld.conf
+++ b/mysqld.conf
@@ -188,6 +188,7 @@ myisam-recover
 
 # To completely disable InnoDB, use this option
 # this makes all innodb options being unknown options (including skip-innodb)
+# @deprecated
 #ignore-builtin-innodb
 
 #


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/mysql.git/commitdiff/b99163f9be703d44a08d9f816779ab9dc29fdf4f

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


[packages/libzen] - cleanups, better descriptions + pl

2012-11-03 Thread qboosh
commit 28aed47052150f4a80ce7a8c0dda04098c963241
Author: Jakub Bogusz qbo...@pld-linux.org
Date:   Sat Nov 3 12:29:30 2012 +0100

- cleanups, better descriptions + pl

 libzen.spec | 93 +++--
 1 file changed, 53 insertions(+), 40 deletions(-)
---
diff --git a/libzen.spec b/libzen.spec
index 030d182..b1cdf4d 100644
--- a/libzen.spec
+++ b/libzen.spec
@@ -1,40 +1,58 @@
-Summary:   Shared library for libmediainfo and mediainfo*
+Summary:   ZenLib C++ utility library
+Summary(pl.UTF-8): ZenLib - biblioteka narzędziowa C++
 Name:  libzen
 Version:   0.4.28
 Release:   1
 License:   BSD
 Group: Libraries
-Source0:   
http://downloads.sourceforge.net/project/zenlib/ZenLib%20-%20Sources/%{version}/%{name}_%{version}.tar.bz2
+Source0:   
http://downloads.sourceforge.net/zenlib/%{name}_%{version}.tar.bz2
 # Source0-md5: f09e519b71e61a7226ffefe55d00eadf
 Patch0:%{name}-include.patch
-URL:   http://mediainfo.sourceforge.net/
-BuildRequires: autoconf
-BuildRequires: automake
+URL:   http://sourceforge.net/projects/zenlib/
+BuildRequires: autoconf = 2.50
+BuildRequires: automake = 1:1.11
 BuildRequires: doxygen
 BuildRequires: libstdc++-devel
-BuildRequires: libtool
+BuildRequires: libtool = 2:1.5
 BuildRequires: rpmbuild(macros) = 1.566
 BuildRequires: sed = 4.0
 BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
 
 %description
-Shared library for libmediainfo and mediainfo-*.
+ZenLib is a C++ utility library. It includes classes for handling
+strings, configuration, bit streams, threading, translation, and
+cross-platform operating system functions.
+
+%description -l pl.UTF-8
+ZenLib to biblioteka narzędziowa C++. Zawiera klasy do obsługi
+łańcuchów znaków, konfiguracji, strumieni bitowych, wątków,
+tłumaczeń oraz wieloplatformowe funkcji dotyczące systemu
+operacyjnego.
 
 %package devel
-Summary:   Include files and mandatory libraries for development
+Summary:   Header files for ZenLib library
+Summary(pl.UTF-8): Pliki nagłówkowe biblioteki ZenLib
 Group: Development/Libraries
 Requires:  %{name} = %{version}-%{release}
+Requires:  libstdc++-devel
 
 %description devel
-Include files and mandatory libraries for development.
+Header files for ZenLib library.
+
+%description devel -l pl.UTF-8
+Pliki nagłówkowe biblioteki ZenLib.
 
 %package static
-Summary:   Static libzen library
+Summary:   Static ZenLib library
+Summary(pl.UTF-8): Statyczna biblioteka ZenLib
 Group: Development/Libraries
 Requires:  %{name}-devel = %{version}-%{release}
 
 %description static
-Static libzen library.
+Static ZenLib library.
+
+%description static -l pl.UTF-8
+Statyczna biblioteka ZenLib.
 
 %prep
 %setup -q -n ZenLib
@@ -44,31 +62,26 @@ chmod 644 *.txt Source/Doc/*.html
 %patch0 -p1
 
 %build
-export CFLAGS=%{rpmcflags}
-export CPPFLAGS=%{rpmcppflags}
-export CXXFLAGS=%{rpmcxxflags}
-
-cd Source/Doc
-   doxygen Doxyfile
-cd ../..
-
-cp Source/Doc/*.html ./
+#export CFLAGS=%{rpmcflags}
+#export CPPFLAGS=%{rpmcppflags}
+#export CXXFLAGS=%{rpmcxxflags}
 
 cd Project/GNU/Library
-   chmod +x autogen
-   ./autogen
-   %configure \
-   --enable-shared \
-
-   %{__make} clean
-   %{__make}
-cd ../../..
+%{__libtoolize}
+%{__aclocal}
+%{__autoconf}
+%{__automake}
+%configure \
+   --enable-shared
+%{__make} clean
+%{__make}
+cd ../../../Source/Doc
+doxygen Doxyfile
 
 %install
 rm -rf $RPM_BUILD_ROOT
 
-%{__make} -C Project/GNU/Library \
-   install-strip \
+%{__make} -C Project/GNU/Library install \
DESTDIR=$RPM_BUILD_ROOT
 
 # Zenlib headers and ZenLib-config
@@ -80,7 +93,7 @@ for i in HTTP_Client Format/Html Format/Http; do
cp -a Source/ZenLib/$i/*.h $RPM_BUILD_ROOT%{_includedir}/ZenLib/$i
 done
 
-%{__sed} -i -e 's|Version: |Version: %{version}|g' 
Project/GNU/Library/libzen.pc
+%{__sed} -i -e 's|Version: .*|Version: %{version}|g' 
Project/GNU/Library/libzen.pc
 
 install -d $RPM_BUILD_ROOT%{_pkgconfigdir}
 cp -a Project/GNU/Library/libzen.pc $RPM_BUILD_ROOT%{_pkgconfigdir}
@@ -88,24 +101,24 @@ cp -a Project/GNU/Library/libzen.pc 
$RPM_BUILD_ROOT%{_pkgconfigdir}
 %clean
 rm -rf $RPM_BUILD_ROOT
 
-%post -p /sbin/ldconfig
-%postun -p /sbin/ldconfig
+%post  -p /sbin/ldconfig
+%postun-p /sbin/ldconfig
 
 %files
 %defattr(644,root,root,755)
 %doc History.txt License.txt ReadMe.txt
-%attr(755,root,root) %{_libdir}/libzen.so.*
+%attr(755,root,root) %{_libdir}/libzen.so.*.*.*
+%attr(755,root,root) %ghost %{_libdir}/libzen.so.0
 
 %files devel
 %defattr(644,root,root,755)
-%doc Documentation.html
-%doc Doc/*
-%dir %{_includedir}/ZenLib
+# Documentation.html expects Doc/index.html
+%doc Source/Doc/Documentation.html Doc
 %attr(755,root,root) %{_bindir}/libzen-config
-%{_includedir}/ZenLib/*
-%{_libdir}/libzen.la
 %attr(755,root,root) %{_libdir}/libzen.so
-%{_pkgconfigdir}/*.pc

[packages/kernel/LINUX_3_4] up to 3.4.17

2012-11-03 Thread glen
commit bbbd70c84e3471bef30b93a083db2036e24d320b
Author: Elan Ruusamäe g...@delfi.ee
Date:   Sat Nov 3 14:24:45 2012 +0200

up to 3.4.17

All users of the 3.4 kernel series must upgrade.
https://lwn.net/Articles/522216/

 kernel.spec | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/kernel.spec b/kernel.spec
index 688d213..fa0f39e 100644
--- a/kernel.spec
+++ b/kernel.spec
@@ -91,7 +91,7 @@
 
 %definerel 1
 %definebasever 3.4
-%definepostver .16
+%definepostver .17
 
 # __alt_kernel is list of features, empty string if none set
 # _alt kernel is defined as: %{nil}%{?alt_kernel:-%{?alt_kernel}} (defined in 
rpm.macros)
@@ -138,7 +138,7 @@ Source0:
http://www.kernel.org/pub/linux/kernel/v3.x/linux-%{basever}.tar.xz
 # Source0-md5: 967f72983655e2479f951195953e8480
 %if %{postver} != .0
 Patch0:
http://www.kernel.org/pub/linux/kernel/v3.x/patch-%{version}.bz2
-# Patch0-md5:  84b7099725f5a3feaaf10524a80e0153
+# Patch0-md5:  150671c24fc2b2d638d87b6b409c96b0
 %endif
 
 Source3:   kernel-autoconf.h


 gitweb:

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

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


DISTFILES: kernel: ERRORS: linux-3.4.tar.xz patch-3.4.17.bz2

2012-11-03 Thread glen
kernel: undefined macro version



Files fetched: 1

ALREADY GOT: http://www.kernel.org/pub/linux/kernel/v3.x/linux-3.4.tar.xz
967f72983655e2479f951195953e8480  linux-3.4.tar.xz
STORED: http://www.kernel.org/pub/linux/kernel/v3.x/patch-3.4.17.bz2
150671c24fc2b2d638d87b6b409c96b0  patch-3.4.17.bz2
Size: 378686 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/ecore] - updated to 1.7.1 - added wayland patch (updates for wayland 0.99/1.0 taken from SVN trunk)

2012-11-03 Thread qboosh
commit 2df4acd620e08962ac453158d5ca6be850d07baa
Author: Jakub Bogusz qbo...@pld-linux.org
Date:   Sat Nov 3 14:20:03 2012 +0100

- updated to 1.7.1
- added wayland patch (updates for wayland 0.99/1.0 taken from SVN trunk)

 ecore-wayland.patch | 474 
 ecore.spec  |  13 +-
 2 files changed, 482 insertions(+), 5 deletions(-)
---
diff --git a/ecore.spec b/ecore.spec
index e23ce0b..22e182c 100644
--- a/ecore.spec
+++ b/ecore.spec
@@ -22,12 +22,13 @@
 Summary:   Enlightened Core X interface library
 Summary(pl.UTF-8): Biblioteka interfejsu X Enlightened Core
 Name:  ecore
-Version:   1.7.0
-Release:   2
+Version:   1.7.1
+Release:   1
 License:   BSD
 Group: X11/Libraries
 Source0:   
http://download.enlightenment.org/releases/%{name}-%{version}.tar.bz2
-# Source0-md5: 9072b65366fe42612812001075e29789
+# Source0-md5: 94fd264e478323a1100b3cfff833d28d
+Patch0:%{name}-wayland.patch
 URL:   http://trac.enlightenment.org/e/wiki/Ecore
 BuildRequires: DirectFB-devel = 0.9.16
 BuildRequires: SDL-devel = 1.2.0
@@ -73,7 +74,7 @@ BuildRequires:xorg-lib-libXtst-devel
 # xorg-lib-libXgesture-devel
 %endif
 %if %{with wayland}
-BuildRequires: wayland-devel
+BuildRequires: wayland-devel = 1.0.0
 BuildRequires: xorg-lib-libxkbcommon-devel
 %endif
 Requires:  eina = 1.7.0
@@ -627,6 +628,7 @@ Summary(pl.UTF-8):  Biblioteka Ecore Wayland
 Group: Libraries
 Requires:  %{name} = %{version}-%{release}
 Requires:  %{name}-input = %{version}-%{release}
+Requires:  wayland = 1.0.0
 
 %description wayland
 Ecore Wayland library.
@@ -640,7 +642,7 @@ Summary(pl.UTF-8):  Plik nagłówkowy biblioteki Ecore Wayland
 Group: Development/Libraries
 Requires:  %{name}-devel = %{version}-%{release}
 Requires:  %{name}-input-devel = %{version}-%{release}
-Requires:  wayland-devel
+Requires:  wayland-devel = 1.0.0
 
 %description wayland-devel
 Header file for Ecore Wayland library.
@@ -770,6 +772,7 @@ Ecore - moduł metody wprowadzania znaków XIM.
 
 %prep
 %setup -q
+%patch0 -p3
 
 %build
 %{__libtoolize}
diff --git a/ecore-wayland.patch b/ecore-wayland.patch
new file mode 100644
index 000..e6d0d6b
--- /dev/null
+++ b/ecore-wayland.patch
@@ -0,0 +1,474 @@
+#Index: /trunk/ecore/src/lib/ecore_evas/ecore_evas_wayland_common.c
+#===
+#--- /trunk/ecore/src/lib/ecore_evas/ecore_evas_wayland_common.c   
(revision 78047)
+#+++ /trunk/ecore/src/lib/ecore_evas/ecore_evas_wayland_common.c   
(revision 78048)
+#@@ -351,5 +351,4 @@
+# 
+#sd-frame = evas_object_rectangle_add(evas);
+#-   evas_object_is_frame_object_set(sd-frame, EINA_TRUE);
+#evas_object_color_set(sd-frame, 249, 249, 249, 255);
+#evas_object_smart_member_add(sd-frame, obj);
+#@@ -360,4 +359,5 @@
+#evas_object_text_font_set(sd-text, Sans, 10);
+#evas_object_text_text_set(sd-text, Smart Test);
+#+   evas_object_smart_member_add(sd-text, obj);
+# 
+#evas_object_smart_data_set(obj, sd);
+Index: /trunk/ecore/src/lib/ecore_wayland/Ecore_Wayland.h
+===
+--- /trunk/ecore/src/lib/ecore_wayland/Ecore_Wayland.h (revision 78048)
 /trunk/ecore/src/lib/ecore_wayland/Ecore_Wayland.h (revision 78049)
+@@ -76,4 +76,5 @@
+  {
+ struct wl_display *display;
++struct wl_registry *registry;
+ struct wl_compositor *compositor;
+ struct wl_shell *shell;
+Index: /trunk/ecore/src/lib/ecore_wayland/ecore_wl.c
+===
+--- /trunk/ecore/src/lib/ecore_wayland/ecore_wl.c  (revision 78049)
 /trunk/ecore/src/lib/ecore_wayland/ecore_wl.c  (revision 78050)
+@@ -8,7 +8,6 @@
+ /* local function prototypes */
+ static Eina_Bool _ecore_wl_shutdown(Eina_Bool close);
+-static int _ecore_wl_cb_event_mask_update(unsigned int mask, void *data);
+-static Eina_Bool _ecore_wl_cb_handle_data(void *data, Ecore_Fd_Handler *hdl 
__UNUSED__);
+-static void _ecore_wl_cb_handle_global(struct wl_display *disp, unsigned int 
id, const char *interface, unsigned int version __UNUSED__, void *data);
++static Eina_Bool _ecore_wl_cb_handle_data(void *data, Ecore_Fd_Handler *hdl);
++static void _ecore_wl_cb_handle_global(void *data, struct wl_registry 
*registry, unsigned int id, const char *interface, unsigned int version 
__UNUSED__);
+ static Eina_Bool _ecore_wl_xkb_init(Ecore_Wl_Display *ewd);
+ static Eina_Bool _ecore_wl_xkb_shutdown(Ecore_Wl_Display *ewd);
+@@ -16,4 +15,9 @@
+ /* local variables */
+ static int _ecore_wl_init_count = 0;
++static const struct wl_registry_listener _ecore_wl_registry_listener = 
++{
++   _ecore_wl_cb_handle_global,
++   NULL // handle_global_remove
++};
+ 
+ /* external variables */
+@@ -131,10 +135,9 @@
+  }
+ 
+-   _ecore_wl_disp-fd = 
+- 

DISTFILES: ecore: ecore-1.7.1.tar.bz2

2012-11-03 Thread qboosh

Files fetched: 1

STORED: http://download.enlightenment.org/releases/ecore-1.7.1.tar.bz2
94fd264e478323a1100b3cfff833d28d  ecore-1.7.1.tar.bz2
Size: 3419265 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/libreoffice] - up to 3.6.3.2

2012-11-03 Thread arekm
commit 28660eb0a829a50b65344f1a3a8ea5b5daf1db88
Author: Arkadiusz Miśkiewicz ar...@maven.pl
Date:   Sat Nov 3 15:51:49 2012 +0100

- up to 3.6.3.2

 libreoffice.spec | 12 ++--
 1 file changed, 6 insertions(+), 6 deletions(-)
---
diff --git a/libreoffice.spec b/libreoffice.spec
index 3a82855..4792f77 100644
--- a/libreoffice.spec
+++ b/libreoffice.spec
@@ -39,7 +39,7 @@
 %undefine  with_system_hsqldb
 %endif
 
-%definemajor_ver   3.6.2
+%definemajor_ver   3.6.3
 
 Summary:   LibreOffice - powerful office suite
 Summary(pl.UTF-8): LibreOffice - potężny pakiet biurowy
@@ -53,15 +53,15 @@ Group:  X11/Applications
 # cd build
 # git checkout -b libreoffice-3-3 origin/libreoffice-3-3
 Source0:   
http://download.documentfoundation.org/libreoffice/src/%{major_ver}/%{name}-core-%{version}.tar.xz
-# Source0-md5: ae171ba4633cc72dba4451b1bdd3385e
+# Source0-md5: 17ccf623caa77dc135d5343a51fa1ddd
 Source1:   
http://download.documentfoundation.org/libreoffice/src/%{major_ver}/%{name}-binfilter-%{version}.tar.xz
-# Source1-md5: d5e60a864a04cbb70585ae42eee1d2f8
+# Source1-md5: 80439aafc2250cc878f503062f864b80
 Source2:   
http://download.documentfoundation.org/libreoffice/src/%{major_ver}/%{name}-dictionaries-%{version}.tar.xz
-# Source2-md5: b4c128b538aeac21edcc4bfaea37fb69
+# Source2-md5: c1fb46a2ea382b8c84e3a25154e05036
 Source3:   
http://download.documentfoundation.org/libreoffice/src/%{major_ver}/%{name}-help-%{version}.tar.xz
-# Source3-md5: cdad0734d247d91a79cb282fd851d2a7
+# Source3-md5: 94a8d18009f8e0e4ae80dc34c43604d7
 Source4:   
http://download.documentfoundation.org/libreoffice/src/%{major_ver}/%{name}-translations-%{version}.tar.xz
-# Source4-md5: e9a7e3d35432b72a4603ce094deb6a67
+# Source4-md5: f76c4439c211f229d49e5fb10ca2ba73
 
 Source20:  
http://download.go-oo.org/extern/185d60944ea767075d27247c3162b3bc-unowinreg.dll
 # Source20-md5:185d60944ea767075d27247c3162b3bc


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/libreoffice.git/commitdiff/28660eb0a829a50b65344f1a3a8ea5b5daf1db88

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


DISTFILES: libreoffice: libreoffice-core-3.6.3.2.tar.xz libreoffice-binfilter-3.6.3.2.tar.xz libreoffice-dictionaries-3.6.3.2.tar.xz libreoffice-help-3.6.3.2.tar.xz libreoffice-translations-3.6.3.2.ta

2012-11-03 Thread arekm

Files fetched: 5

STORED: 
http://download.documentfoundation.org/libreoffice/src/3.6.3/libreoffice-core-3.6.3.2.tar.xz
17ccf623caa77dc135d5343a51fa1ddd  libreoffice-core-3.6.3.2.tar.xz
Size: 107194308 bytes
STORED: 
http://download.documentfoundation.org/libreoffice/src/3.6.3/libreoffice-binfilter-3.6.3.2.tar.xz
80439aafc2250cc878f503062f864b80  libreoffice-binfilter-3.6.3.2.tar.xz
Size: 5979916 bytes
STORED: 
http://download.documentfoundation.org/libreoffice/src/3.6.3/libreoffice-dictionaries-3.6.3.2.tar.xz
c1fb46a2ea382b8c84e3a25154e05036  
libreoffice-dictionaries-3.6.3.2.tar.xz
Size: 35101308 bytes
STORED: 
http://download.documentfoundation.org/libreoffice/src/3.6.3/libreoffice-help-3.6.3.2.tar.xz
94a8d18009f8e0e4ae80dc34c43604d7  libreoffice-help-3.6.3.2.tar.xz
Size: 1864084 bytes
STORED: 
http://download.documentfoundation.org/libreoffice/src/3.6.3/libreoffice-translations-3.6.3.2.tar.xz
f76c4439c211f229d49e5fb10ca2ba73  
libreoffice-translations-3.6.3.2.tar.xz
Size: 126946628 bytes
ALREADY GOT: 
http://download.go-oo.org/extern/185d60944ea767075d27247c3162b3bc-unowinreg.dll
185d60944ea767075d27247c3162b3bc  
185d60944ea767075d27247c3162b3bc-unowinreg.dll
ALREADY GOT: 
http://hg.services.openoffice.org/binaries/fdb27bfe2dbe2e7b57ae194d9bf36bab-SampleICC-1.3.2.tar.gz
fdb27bfe2dbe2e7b57ae194d9bf36bab  
fdb27bfe2dbe2e7b57ae194d9bf36bab-SampleICC-1.3.2.tar.gz
ALREADY GOT: 
http://hg.services.openoffice.org/binaries/a7983f859eafb2677d7ff386a023bc40-xsltml_2.1.2.zip
a7983f859eafb2677d7ff386a023bc40  
a7983f859eafb2677d7ff386a023bc40-xsltml_2.1.2.zip
ALREADY GOT: 
http://hg.services.openoffice.org/binaries/1f24ab1d39f4a51faf22244c94a6203f-xmlsec1-1.2.14.tar.gz
1f24ab1d39f4a51faf22244c94a6203f  
1f24ab1d39f4a51faf22244c94a6203f-xmlsec1-1.2.14.tar.gz
ALREADY GOT: 
http://hg.services.openoffice.org/binaries/798b2ffdc8bcfe7bca2cf92b62caf685-rhino1_5R5.zip
798b2ffdc8bcfe7bca2cf92b62caf685  
798b2ffdc8bcfe7bca2cf92b62caf685-rhino1_5R5.zip
ALREADY GOT: 
http://hg.services.openoffice.org/binaries/35c94d2df8893241173de1d16b6034c0-swingExSrc.zip
35c94d2df8893241173de1d16b6034c0  
35c94d2df8893241173de1d16b6034c0-swingExSrc.zip
ALREADY GOT: 
http://hg.services.openoffice.org/binaries/ada24d37d8d638b3d8a9985e80bc2978-source-9.0.0.7-bj.zip
ada24d37d8d638b3d8a9985e80bc2978  
ada24d37d8d638b3d8a9985e80bc2978-source-9.0.0.7-bj.zip
ALREADY GOT: 
http://hg.services.openoffice.org/binaries/18f577b374d60b3c760a3a3350407632-STLport-4.5.tar.gz
18f577b374d60b3c760a3a3350407632  
18f577b374d60b3c760a3a3350407632-STLport-4.5.tar.gz
ALREADY GOT: 
http://hg.services.openoffice.org/binaries/17410483b5b5f267aa18b7e00b65e6e0-hsqldb_1_8_0.zip
17410483b5b5f267aa18b7e00b65e6e0  
17410483b5b5f267aa18b7e00b65e6e0-hsqldb_1_8_0.zip


-- 
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/eio] - updated to 1.7.1

2012-11-03 Thread qboosh
commit c9d24db2114e78961a1ce89805c1df36d6452c1e
Author: Jakub Bogusz qbo...@pld-linux.org
Date:   Sat Nov 3 16:52:45 2012 +0100

- updated to 1.7.1

 eio.spec | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/eio.spec b/eio.spec
index 7b34bfb..56f8f07 100644
--- a/eio.spec
+++ b/eio.spec
@@ -9,12 +9,12 @@
 Summary:   Enlightenment Input Output Library
 Summary(pl.UTF-8): Enlightenment Input Output - biblioteka wejścia/wyjścia 
z projektu Enlightenment
 Name:  eio
-Version:   1.7.0
+Version:   1.7.1
 Release:   1
 License:   LGPL v2.1+
 Group: Libraries
 Source0:   
http://download.enlightenment.org/releases/%{name}-%{version}.tar.bz2
-# Source0-md5: 1a3a9a7bc1ee007a4b1c67812b345a59
+# Source0-md5: 593d631229f53da82906bc8102e3aeb2
 URL:   http://trac.enlightenment.org/e/wiki/Eio
 BuildRequires: ecore-devel = 1.7.0
 BuildRequires: eet-devel = 1.7.0


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/eio.git/commitdiff/c9d24db2114e78961a1ce89805c1df36d6452c1e

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


DISTFILES: eio: eio-1.7.1.tar.bz2

2012-11-03 Thread qboosh

Files fetched: 1

STORED: http://download.enlightenment.org/releases/eio-1.7.1.tar.bz2
593d631229f53da82906bc8102e3aeb2  eio-1.7.1.tar.bz2
Size: 335047 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/ktoblzcheck] - updated to 1.40

2012-11-03 Thread qboosh
commit 08998995462802b852f514b6045f82f569b1a239
Author: Jakub Bogusz qbo...@pld-linux.org
Date:   Sat Nov 3 17:21:01 2012 +0100

- updated to 1.40

 ktoblzcheck.spec | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/ktoblzcheck.spec b/ktoblzcheck.spec
index dfe88b5..dba6278 100644
--- a/ktoblzcheck.spec
+++ b/ktoblzcheck.spec
@@ -1,12 +1,12 @@
 Summary:   A library to check account numbers and bank codes of German 
banks
 Summary(pl.UTF-8): Biblioteka do sprawdzania numerów kont i kodów 
bankowych niemieckich banków
 Name:  ktoblzcheck
-Version:   1.39
+Version:   1.40
 Release:   1
 License:   LGPL v2+
 Group: Libraries
 Source0:   
http://downloads.sourceforge.net/ktoblzcheck/%{name}-%{version}.tar.gz
-# Source0-md5: ef5efd6e2c31aaf6405060ec477c200c
+# Source0-md5: fe29ec3ef8b48adf0302fd9d2607580b
 URL:   http://ktoblzcheck.sourceforge.net/
 BuildRequires: libstdc++-devel
 BuildRequires: python-devel = 1:2.5


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/ktoblzcheck.git/commitdiff/08998995462802b852f514b6045f82f569b1a239

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


DISTFILES: ktoblzcheck: ktoblzcheck-1.40.tar.gz

2012-11-03 Thread qboosh

Files fetched: 1

STORED: http://downloads.sourceforge.net/ktoblzcheck/ktoblzcheck-1.40.tar.gz
fe29ec3ef8b48adf0302fd9d2607580b  ktoblzcheck-1.40.tar.gz
Size: 551644 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/evas] - updated to 1.7.1

2012-11-03 Thread qboosh
commit e19481b197be1644218099f9d07225da1fbe6ce4
Author: Jakub Bogusz qbo...@pld-linux.org
Date:   Sat Nov 3 17:26:53 2012 +0100

- updated to 1.7.1

 evas.spec | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/evas.spec b/evas.spec
index 75586d5..aabd54c 100644
--- a/evas.spec
+++ b/evas.spec
@@ -37,12 +37,12 @@
 Summary:   Multi-platform Canvas Library
 Summary(pl.UTF-8): Wieloplatformowa biblioteka do rysowania
 Name:  evas
-Version:   1.7.0
-Release:   2
+Version:   1.7.1
+Release:   1
 License:   BSD
 Group: Libraries
 Source0:   
http://download.enlightenment.org/releases/%{name}-%{version}.tar.bz2
-# Source0-md5: 37411199fe3af65884ccacaa21c304bd
+# Source0-md5: e33c1d270b16e45c2337424aa2f0
 Patch0:%{name}-wayland.patch
 URL:   http://trac.enlightenment.org/e/wiki/Evas
 %{?with_directfb:BuildRequires:DirectFB-devel = 0.9.16}


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/evas.git/commitdiff/e19481b197be1644218099f9d07225da1fbe6ce4

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


DISTFILES: evas: evas-1.7.1.tar.bz2

2012-11-03 Thread qboosh

Files fetched: 1

STORED: http://download.enlightenment.org/releases/evas-1.7.1.tar.bz2
e33c1d270b16e45c2337424aa2f0  evas-1.7.1.tar.bz2
Size: 9394265 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/publican] - BR: perl-File-Inplace

2012-11-03 Thread qboosh
commit 65d835e87738fd40612152ba00661b91db4f535d
Author: Jakub Bogusz qbo...@pld-linux.org
Date:   Sat Nov 3 18:06:12 2012 +0100

- BR: perl-File-Inplace

 publican.spec | 1 +
 1 file changed, 1 insertion(+)
---
diff --git a/publican.spec b/publican.spec
index ae20f42..8c38bca 100644
--- a/publican.spec
+++ b/publican.spec
@@ -26,6 +26,7 @@ BuildRequires:perl-Devel-Cover
 BuildRequires: perl-Encode
 BuildRequires: perl-File-Copy-Recursive = 0.38
 BuildRequires: perl-File-Find-Rule
+BuildRequires: perl-File-Inplace
 BuildRequires: perl-File-Which
 BuildRequires: perl-File-pushd
 BuildRequires: perl-HTML-Format


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/publican.git/commitdiff/65d835e87738fd40612152ba00661b91db4f535d

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


[packages/embryo] - updated to 1.7.1

2012-11-03 Thread qboosh
commit 039752b9359dc57672e04ec6926212a23a9c61ce
Author: Jakub Bogusz qbo...@pld-linux.org
Date:   Sat Nov 3 18:22:02 2012 +0100

- updated to 1.7.1

 embryo.spec | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/embryo.spec b/embryo.spec
index 027c1a6..cfb1e94 100644
--- a/embryo.spec
+++ b/embryo.spec
@@ -5,12 +5,12 @@
 Summary:   Enlightenment Fundation Libraries - Embryo
 Summary(pl.UTF-8): Podstawowe biblioteki Enlightenmenta - Embryo
 Name:  embryo
-Version:   1.7.0
+Version:   1.7.1
 Release:   1
 License:   BSD
 Group: Libraries
 Source0:   
http://download.enlightenment.org/releases/%{name}-%{version}.tar.bz2
-# Source0-md5: a05798d697001747dc642294c03150c3
+# Source0-md5: d66a0e91dfc37eeb4c362b2c46bd91ab
 URL:   http://trac.enlightenment.org/e/wiki/Embryo
 BuildRequires: autoconf = 2.52
 BuildRequires: automake = 1.6


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/embryo.git/commitdiff/039752b9359dc57672e04ec6926212a23a9c61ce

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


DISTFILES: embryo: embryo-1.7.1.tar.bz2

2012-11-03 Thread qboosh

Files fetched: 1

STORED: http://download.enlightenment.org/releases/embryo-1.7.1.tar.bz2
d66a0e91dfc37eeb4c362b2c46bd91ab  embryo-1.7.1.tar.bz2
Size: 441586 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/liboauth] - updated to 1.0.0

2012-11-03 Thread qboosh
commit 7847d246464d1095796d9f0e630ca535ce304c81
Author: Jakub Bogusz qbo...@pld-linux.org
Date:   Sat Nov 3 18:28:14 2012 +0100

- updated to 1.0.0

 liboauth.spec | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/liboauth.spec b/liboauth.spec
index f15f613..55c00e0 100644
--- a/liboauth.spec
+++ b/liboauth.spec
@@ -1,12 +1,12 @@
 Summary:   OAuth library functions
 Summary(pl.UTF-8): Biblioteka Funkcji OAuth
 Name:  liboauth
-Version:   0.9.7
+Version:   1.0.0
 Release:   1
 License:   MIT
 Group: Libraries
 Source0:   http://liboauth.sourceforge.net/pool/%{name}-%{version}.tar.gz
-# Source0-md5: 103ea90e3330dfcda7b6d59c4c697472
+# Source0-md5: fea6cfb9f65f4d448f8afabc936ee1a3
 URL:   http://liboauth.sourceforge.net/
 BuildRequires: curl-devel
 BuildRequires: nss-devel
@@ -80,7 +80,7 @@ rm -rf $RPM_BUILD_ROOT
 %files
 %defattr(644,root,root,755)
 %doc AUTHORS COPYING.MIT ChangeLog README
-%attr(755,root,root) %{_libdir}/liboauth.so.*.*
+%attr(755,root,root) %{_libdir}/liboauth.so.*.*.*
 %attr(755,root,root) %ghost %{_libdir}/liboauth.so.0
 
 %files devel


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/liboauth.git/commitdiff/7847d246464d1095796d9f0e630ca535ce304c81

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


DISTFILES: liboauth: liboauth-1.0.0.tar.gz

2012-11-03 Thread qboosh

Files fetched: 1

STORED: http://liboauth.sourceforge.net/pool/liboauth-1.0.0.tar.gz
fea6cfb9f65f4d448f8afabc936ee1a3  liboauth-1.0.0.tar.gz
Size: 431528 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/edje] - updated to 1.7.1

2012-11-03 Thread qboosh
commit 97786db33878feb2458a1de5f729fd653961e39c
Author: Jakub Bogusz qbo...@pld-linux.org
Date:   Sat Nov 3 18:34:55 2012 +0100

- updated to 1.7.1

 edje.spec | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/edje.spec b/edje.spec
index 60e27ac..b7f4acb 100644
--- a/edje.spec
+++ b/edje.spec
@@ -12,12 +12,12 @@
 Summary:   Complex Graphical Design/Layout Engine
 Summary(pl.UTF-8): Złożony silnik graficznego projektowania/planowania
 Name:  edje
-Version:   1.7.0
+Version:   1.7.1
 Release:   1
 License:   BSD
 Group: X11/Libraries
 Source0:   
http://download.enlightenment.org/releases/%{name}-%{version}.tar.bz2
-# Source0-md5: 489b667a122891a16de35a2c90d41b52
+# Source0-md5: 766747bc1b8a1755952e275b6058cf30
 Patch0:%{name}-deps.patch
 URL:   http://trac.enlightenment.org/e/wiki/Edje
 # for alsa_snd_player plugin for remix


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/edje.git/commitdiff/97786db33878feb2458a1de5f729fd653961e39c

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


DISTFILES: edje: edje-1.7.1.tar.bz2

2012-11-03 Thread qboosh

Files fetched: 1

STORED: http://download.enlightenment.org/releases/edje-1.7.1.tar.bz2
766747bc1b8a1755952e275b6058cf30  edje-1.7.1.tar.bz2
Size: 1106324 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/e_dbus] - updated to 1.7.1

2012-11-03 Thread qboosh
commit 018dbc4414d3493ef54817999a6018e368d9f8a6
Author: Jakub Bogusz qbo...@pld-linux.org
Date:   Sat Nov 3 18:42:19 2012 +0100

- updated to 1.7.1

 e_dbus.spec | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/e_dbus.spec b/e_dbus.spec
index a3e8792..8e3104c 100644
--- a/e_dbus.spec
+++ b/e_dbus.spec
@@ -9,12 +9,12 @@
 Summary:   EFL wrapper for DBus
 Summary(pl.UTF-8): Obudowanie EFL dla systemu DBus
 Name:  e_dbus
-Version:   1.7.0
+Version:   1.7.1
 Release:   1
 License:   BSD
 Group: Libraries
 Source0:   
http://download.enlightenment.org/releases/%{name}-%{version}.tar.bz2
-# Source0-md5: 7d0f350ebd5f5d913b29c67a7a275abd
+# Source0-md5: 3fa25de2880c2ff9d78d070d4792f570
 URL:   http://trac.enlightenment.org/e/wiki/E_Dbus
 BuildRequires: autoconf = 2.52
 BuildRequires: automake = 1.6


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/e_dbus.git/commitdiff/018dbc4414d3493ef54817999a6018e368d9f8a6

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


DISTFILES: e_dbus: e_dbus-1.7.1.tar.bz2

2012-11-03 Thread qboosh

Files fetched: 1

STORED: http://download.enlightenment.org/releases/e_dbus-1.7.1.tar.bz2
3fa25de2880c2ff9d78d070d4792f570  e_dbus-1.7.1.tar.bz2
Size: 410367 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/eeze] - updated to 1.7.1

2012-11-03 Thread qboosh
commit c3da2486d658dbe8814fcd87a0c740f20a2cdbb0
Author: Jakub Bogusz qbo...@pld-linux.org
Date:   Sat Nov 3 19:35:33 2012 +0100

- updated to 1.7.1

 eeze.spec | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/eeze.spec b/eeze.spec
index 64271f3..39c8418 100644
--- a/eeze.spec
+++ b/eeze.spec
@@ -9,12 +9,12 @@
 Summary:   Library for manipulating devices through udev
 Summary(pl.UTF-8): Biblioteka do operowania urządzeniami korzystająca z 
udev
 Name:  eeze
-Version:   1.7.0
+Version:   1.7.1
 Release:   1
 License:   BSD
 Group: Libraries
 Source0:   
http://download.enlightenment.org/releases/%{name}-%{version}.tar.bz2
-# Source0-md5: fd8b66abd9deb039956304a857b4e2aa
+# Source0-md5: 0e9d008a9ae17de2aea82a34ee62691e
 URL:   http://trac.enlightenment.org/e/wiki/Eeze
 BuildRequires: autoconf = 2.52
 BuildRequires: automake = 1.6


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/eeze.git/commitdiff/c3da2486d658dbe8814fcd87a0c740f20a2cdbb0

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


DISTFILES: eeze: eeze-1.7.1.tar.bz2

2012-11-03 Thread qboosh

Files fetched: 1

STORED: http://download.enlightenment.org/releases/eeze-1.7.1.tar.bz2
0e9d008a9ae17de2aea82a34ee62691e  eeze-1.7.1.tar.bz2
Size: 518296 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/libmediainfo] - cleanups, pl - optional curl and mms support

2012-11-03 Thread qboosh
commit 644019c5effb7e052d51334fdc1086122b20ecca
Author: Jakub Bogusz qbo...@pld-linux.org
Date:   Sat Nov 3 19:44:13 2012 +0100

- cleanups, pl
- optional curl and mms support

 libmediainfo.spec | 136 +++---
 1 file changed, 89 insertions(+), 47 deletions(-)
---
diff --git a/libmediainfo.spec b/libmediainfo.spec
index 8b82382..5e220be 100644
--- a/libmediainfo.spec
+++ b/libmediainfo.spec
@@ -1,19 +1,30 @@
+# TODO: system [lib]tinyxml2 when released 
(http://www.grinninglizard.com/tinyxml2/index.html)
+#
+# Conditional build:
+%bcond_without curl# cURL support
+%bcond_without mms # MMS support
+#
 %definelibzen_ver 0.4.28
+
 Summary:   Supplies technical and tag information about a video or audio 
file
+Summary(pl.UTF-8): Informacje techniczne i znaczniki dla plików wideo i 
dźwiękowych
 Name:  libmediainfo
 Version:   0.7.61
 Release:   1
-License:   GPL
+License:   LGPL v2+
 Group: Libraries
-Source0:   
http://downloads.sourceforge.net/project/mediainfo/source/libmediainfo/%{version}/%{name}_%{version}.tar.bz2
+Source0:   
http://downloads.sourceforge.net/mediainfo/%{name}_%{version}.tar.bz2
 # Source0-md5: 371519c1c24e4de84448d6624fc41aa8
 URL:   http://mediainfo.sourceforge.net/
-BuildRequires: autoconf
-BuildRequires: automake
+BuildRequires: autoconf = 2.50
+BuildRequires: automake = 1:1.11
+%{?with_curl:BuildRequires:curl-devel}
 BuildRequires: doxygen
+%{?with_mms:BuildRequires: libmms-devel}
 BuildRequires: libstdc++-devel
-BuildRequires: libtool
+BuildRequires: libtool = 2:1.5
 BuildRequires: libzen-devel = %{libzen_ver}
+BuildRequires: sed = 4.0
 BuildRequires: pkgconfig
 BuildRequires: zlib-devel
 Requires:  libzen = %{libzen_ver}
@@ -31,12 +42,12 @@ What information can I get from MediaInfo?
 - Text: language of subtitle
 - Chapters: number of chapters, list of chapters
 
-DivX, XviD, H263, H.263, H264, x264, ASP, AVC, iTunes, MPEG-1, MPEG1,
-MPEG-2, MPEG2, MPEG-4, MPEG4, MP4, M4A, M4V, QuickTime, RealVideo,
-RealAudio, RA, RM, MSMPEG4v1, MSMPEG4v2, MSMPEG4v3, VOB, DVD, WMA,
-VMW, ASF, 3GP, 3GPP, 3GP2
+Supported files: DivX, XviD, H263, H.263, H264, x264, ASP, AVC,
+iTunes, MPEG-1, MPEG1, MPEG-2, MPEG2, MPEG-4, MPEG4, MP4, M4A, M4V,
+QuickTime, RealVideo, RealAudio, RA, RM, MSMPEG4v1, MSMPEG4v2,
+MSMPEG4v3, VOB, DVD, WMA, VMW, ASF, 3GP, 3GPP, 3GP2
 
-What format (container) does MediaInfo support?
+Supported formats/containers:
 - Video: MKV, OGM, AVI, DivX, WMV, QuickTime, Real, MPEG-1, MPEG-2,
   MPEG-4, DVD (VOB) (Codecs: DivX, XviD, MSMPEG4, ASP, H.264, AVC...)
 - Audio: OGG, MP3, WAV, RA, AC3, DTS, AAC, M4A, AU, AIFF
@@ -44,89 +55,120 @@ What format (container) does MediaInfo support?
 
 This package contains the shared library for MediaInfo.
 
+%description -l pl.UTF-8
+MediaInfo udostępnia informacje techniczne oraz znaczniki dla plików
+wideo i dźwiękowych.
+
+Dostępne są informacje:
+- ogólne: tytuł, autor, reżyser, album, numer ścieżki, data, czas
+  trwania...
+- wideo: kodek, proporcje, liczba klatek na sekundę, pasmo...
+- dźwięk: kodek, częstotliwość próbkowania, liczba kanałów, język,
+  pasmo...
+- tekst: język napisów
+- książki: liczba rozdziałów, ich lista
+
+Obsługiwane pliki: DivX, XviD, H263, H.263, H264, x264, ASP, AVC,
+iTunes, MPEG-1, MPEG1, MPEG-2, MPEG2, MPEG-4, MPEG4, MP4, M4A, M4V,
+QuickTime, RealVideo, RealAudio, RA, RM, MSMPEG4v1, MSMPEG4v2,
+MSMPEG4v3, VOB, DVD, WMA, VMW, ASF, 3GP, 3GPP, 3GP2
+
+Obsługiwane formaty/kontenery:
+- wideo: MKV, OGM, AVI, DivX, WMV, QuickTime, Real, MPEG-1, MPEG-2,
+  MPEG-4, DVD (VOB) (kodeki: DivX, XviD, MSMPEG4, ASP, H.264, AVC...)
+- dźwięk: OGG, MP3, WAV, RA, AC3, DTS, AAC, M4A, AU, AIFF
+- napisy: SRT, SSA, ASS, SAMI
+
+Ten pakiet zawiera bibliotekę współdzieloną MediaInfo.
+
 %package devel
-Summary:   Include files and mandatory libraries for development
+Summary:   Header files for MediaInfo library
+Summary(pl.UTF-8): Pliki nagłówkowe biblioteki MediaInfo
 Group: Development/Libraries
 Requires:  %{name} = %{version}-%{release}
+%{?with_curl:Requires: curl-devel}
+%{?with_mms:Requires:  libmms-devel}
 Requires:  libzen-devel = %{libzen_ver}
+Requires:  zlib-devel
 
 %description devel
-Include files and mandatory libraries for development.
+Header files for MediaInfo library.
+
+%description devel -l pl.UTF-8
+Pliki nagłówkowe biblioteki MediaInfo.
 
 %package static
-Summary:   Static libmediainfo library
+Summary:   Static MediaInfo library
+Summary(pl.UTF-8): Statyczna biblioteka MediaInfo
 Group: Development/Libraries
 Requires:  %{name}-devel = %{version}-%{release}
 
 %description static
-Static libmediainfo library.
+Static MediaInfo library.
+
+%description static -l pl.UTF-8
+Statyczna biblioteka MediaInfo.
 
 %prep
 %setup -q -n MediaInfoLib
-cp   Release/ReadMe_DLL_Linux.txt ReadMe.txt
-mv   

[packages/libzen] - cleanup

2012-11-03 Thread qboosh
commit 2dd031530a69f72bbdce9e5ddb31abb528ad93ee
Author: Jakub Bogusz qbo...@pld-linux.org
Date:   Sat Nov 3 19:44:42 2012 +0100

- cleanup

 libzen.spec | 4 
 1 file changed, 4 deletions(-)
---
diff --git a/libzen.spec b/libzen.spec
index b1cdf4d..de15bc2 100644
--- a/libzen.spec
+++ b/libzen.spec
@@ -62,10 +62,6 @@ chmod 644 *.txt Source/Doc/*.html
 %patch0 -p1
 
 %build
-#export CFLAGS=%{rpmcflags}
-#export CPPFLAGS=%{rpmcppflags}
-#export CXXFLAGS=%{rpmcxxflags}
-
 cd Project/GNU/Library
 %{__libtoolize}
 %{__aclocal}


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/libzen.git/commitdiff/2dd031530a69f72bbdce9e5ddb31abb528ad93ee

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


[packages/efreet] - updated to 1.7.1

2012-11-03 Thread qboosh
commit 3757a15c3d6e9563d7cacf0e87b4b0cb7b9e6257
Author: Jakub Bogusz qbo...@pld-linux.org
Date:   Sat Nov 3 19:50:30 2012 +0100

- updated to 1.7.1

 efreet.spec | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/efreet.spec b/efreet.spec
index b9e8881..67fc198 100644
--- a/efreet.spec
+++ b/efreet.spec
@@ -9,12 +9,12 @@
 Summary:   freedesktop.org standards implementation for the EFL
 Summary(pl.UTF-8): Implementacja standardów freedesktop.org dla EFL
 Name:  efreet
-Version:   1.7.0
+Version:   1.7.1
 Release:   1
 License:   BSD
 Group: X11/Libraries
 Source0:   
http://download.enlightenment.org/releases/%{name}-%{version}.tar.bz2
-# Source0-md5: 5ebf93718ac0a5fedf0a3c72e34d7021
+# Source0-md5: 0fc2b3bf93dc3a9f293c348339163ba3
 URL:   http://trac.enlightenment.org/e/wiki/Efreet
 BuildRequires: autoconf = 2.52
 BuildRequires: automake = 1.6


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/efreet.git/commitdiff/3757a15c3d6e9563d7cacf0e87b4b0cb7b9e6257

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


DISTFILES: efreet: efreet-1.7.1.tar.bz2

2012-11-03 Thread qboosh

Files fetched: 1

STORED: http://download.enlightenment.org/releases/efreet-1.7.1.tar.bz2
0fc2b3bf93dc3a9f293c348339163ba3  efreet-1.7.1.tar.bz2
Size: 423750 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/leptonlib] - updated to 1.69 (note: new soname; upstream package is now named leptonica) - removed obsolete inc

2012-11-03 Thread qboosh
commit cf9fca96ad26a5173ef44ad5caac22336ac3d058
Author: Jakub Bogusz qbo...@pld-linux.org
Date:   Sat Nov 3 19:53:14 2012 +0100

- updated to 1.69 (note: new soname; upstream package is now named 
leptonica)
- removed obsolete includes patch

 leptonlib-includes.patch | 10 --
 leptonlib.spec   | 27 ---
 2 files changed, 16 insertions(+), 21 deletions(-)
---
diff --git a/leptonlib.spec b/leptonlib.spec
index a37d72c..0e1722c 100644
--- a/leptonlib.spec
+++ b/leptonlib.spec
@@ -1,15 +1,14 @@
 Summary:   Leptonica - image processing and analysis library
 Summary(pl.UTF-8): Leptonica - biblioteka do przetwarzania i analizy obrazu
 Name:  leptonlib
-Version:   1.67
-Release:   4
+Version:   1.69
+Release:   1
 License:   BSD-like
 Group: Libraries
-#Source0Download: http://www.leptonica.com/download.html
-Source0:   http://www.leptonica.com/source/%{name}-%{version}.tar.gz
-# Source0-md5: 23f03ad6a0cab67714df98110ad2e141
+#Source0Download: http://code.google.com/p/leptonica/downloads/list
+Source0:   
http://leptonica.googlecode.com/files/leptonica-%{version}.tar.bz2
+# Source0-md5: 3c442f4edaf0be25dc92dc0012f94a37
 Patch0:%{name}-endiantest.patch
-Patch1:%{name}-includes.patch
 URL:   http://www.leptonica.com/
 BuildRequires: autoconf = 2.50
 BuildRequires: automake
@@ -17,7 +16,9 @@ BuildRequires:giflib-devel = 4
 BuildRequires: libjpeg-devel
 BuildRequires: libpng-devel
 BuildRequires: libtiff-devel
-BuildRequires: libtool
+BuildRequires: libtool = 2:2
+BuildRequires: libwebp-devel
+BuildRequires: zlib-devel
 BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
 
 %description
@@ -35,6 +36,8 @@ Requires: giflib-devel = 4
 Requires:  libjpeg-devel
 Requires:  libpng-devel
 Requires:  libtiff-devel
+Requires:  libwebp-devel
+Requires:  zlib-devel
 
 %description devel
 Header files for lepton library.
@@ -55,9 +58,8 @@ Static lepton library.
 Statyczna biblioteka lepton.
 
 %prep
-%setup -q
+%setup -q -n leptonica-%{version}
 %patch0 -p1
-%patch1 -p1
 
 %build
 %{__libtoolize}
@@ -65,7 +67,10 @@ Statyczna biblioteka lepton.
 %{__autoconf}
 %{__autoheader}
 %{__automake}
-%configure
+# programs are mostly examples or tests (seems nothing really useful)
+# and they have too generic names
+%configure \
+   --disable-programs
 
 %{__make}
 
@@ -85,7 +90,7 @@ rm -rf $RPM_BUILD_ROOT
 %defattr(644,root,root,755)
 %doc README.html leptonica-license.txt version-notes.html moller52.jpg
 %attr(755,root,root) %{_libdir}/liblept.so.*.*.*
-%attr(755,root,root) %ghost %{_libdir}/liblept.so.0
+%attr(755,root,root) %ghost %{_libdir}/liblept.so.3
 
 %files devel
 %defattr(644,root,root,755)
diff --git a/leptonlib-includes.patch b/leptonlib-includes.patch
deleted file mode 100644
index 1665842..000
--- a/leptonlib-includes.patch
+++ /dev/null
@@ -1,10 +0,0 @@
 leptonlib-1.67/src/pngio.c~2010-09-18 19:20:42.0 +0200
-+++ leptonlib-1.67/src/pngio.c 2012-02-09 00:21:29.856671295 +0100
-@@ -105,6 +105,7 @@
- #if  HAVE_LIBPNG   /* defined in environ.h */
- /* */
- 
-+#include zlib.h
- #include png.h
- 
- /* Set defaults for read/write options - */


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/leptonlib.git/commitdiff/cf9fca96ad26a5173ef44ad5caac22336ac3d058

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


DISTFILES: leptonlib: leptonica-1.69.tar.bz2

2012-11-03 Thread qboosh

Files fetched: 1

STORED: http://leptonica.googlecode.com/files/leptonica-1.69.tar.bz2
3c442f4edaf0be25dc92dc0012f94a37  leptonica-1.69.tar.bz2
Size: 7178637 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/emotion] - updated to 1.7.1 - adjusted gstreamer package names (only 0.10 line supported atm.)

2012-11-03 Thread qboosh
commit 424f88823568ee933abd25889301d9de6246a168
Author: Jakub Bogusz qbo...@pld-linux.org
Date:   Sat Nov 3 20:01:34 2012 +0100

- updated to 1.7.1
- adjusted gstreamer package names (only 0.10 line supported atm.)

 emotion.spec | 14 +++---
 1 file changed, 7 insertions(+), 7 deletions(-)
---
diff --git a/emotion.spec b/emotion.spec
index f6be0c7..c1cc585 100644
--- a/emotion.spec
+++ b/emotion.spec
@@ -16,12 +16,12 @@
 Summary:   Emotion - EFL media playback library
 Summary(pl.UTF-8): Emotion - biblioteka EFL do odtwarzania multimediów
 Name:  emotion
-Version:   1.7.0
-Release:   2
+Version:   1.7.1
+Release:   1
 License:   BSD-like
 Group: Libraries
 Source0:   
http://download.enlightenment.org/releases/%{name}-%{version}.tar.bz2
-# Source0-md5: 26516d3e5ba55ba64f097e9d4e88af0f
+# Source0-md5: 20045813f6d26661694dd6eb25c1a14a
 URL:   http://trac.enlightenment.org/e/wiki/Emotion
 BuildRequires: autoconf = 2.60
 BuildRequires: automake = 1.6
@@ -37,8 +37,8 @@ BuildRequires:eio-devel = %{eio_ver}
 BuildRequires: eina-devel = %{eina_ver}
 BuildRequires: evas-devel = %{evas_ver}
 %if %{with gstreamer}
-BuildRequires: gstreamer-devel = 0.10.2
-BuildRequires: gstreamer-plugins-base-devel = 0.10.34
+BuildRequires: gstreamer0.10-devel = 0.10.2
+BuildRequires: gstreamer0.10-plugins-base-devel = 0.10.34
 %endif
 BuildRequires: libtool
 BuildRequires: pkgconfig = 1:0.22
@@ -101,8 +101,8 @@ Summary:Emotion decoder using gstreamer
 Summary(pl.UTF-8): Dekoder Emotion używający gstreamera
 Group: Development/Libraries
 Requires:  %{name} = %{version}-%{release}
-Requires:  gstreamer = 0.10.2
-Requires:  gstreamer-plugins-base = 0.10.34
+Requires:  gstreamer0.10 = 0.10.2
+Requires:  gstreamer0.10-plugins-base = 0.10.34
 
 %description decoder-gstreamer
 Emotion decoder using gstreamer.


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/emotion.git/commitdiff/424f88823568ee933abd25889301d9de6246a168

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


DISTFILES: emotion: emotion-1.7.1.tar.bz2

2012-11-03 Thread qboosh

Files fetched: 1

STORED: http://download.enlightenment.org/releases/emotion-1.7.1.tar.bz2
20045813f6d26661694dd6eb25c1a14a  emotion-1.7.1.tar.bz2
Size: 477199 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/kde4-kdelibs] - up to 4.9.3

2012-11-03 Thread arekm
commit cbec7a82451bdef2805a5f28898dc006eacd4aa3
Author: Arkadiusz Miśkiewicz ar...@maven.pl
Date:   Sat Nov 3 20:17:20 2012 +0100

- up to 4.9.3

 kde4-kdelibs.spec | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/kde4-kdelibs.spec b/kde4-kdelibs.spec
index 685f180..ddcfaf9 100644
--- a/kde4-kdelibs.spec
+++ b/kde4-kdelibs.spec
@@ -16,12 +16,12 @@ Summary(pt_BR.UTF-8):   Bibliotecas de fundação do KDE
 Summary(ru.UTF-8): K Desktop Environment - Библиотеки
 Summary(uk.UTF-8): K Desktop Environment - Бібліотеки
 Name:  kde4-kdelibs
-Version:   4.9.2
+Version:   4.9.3
 Release:   1
 License:   LGPL
 Group: X11/Libraries
 Source0:   
ftp://ftp.kde.org/pub/kde/%{_state}/%{version}/src/%{orgname}-%{version}.tar.xz
-# Source0-md5: 421a0cb4e51db7d8eb6bb8aff508aeab
+# Source0-md5: 91e9cf8446491e7e852b04be7a22c61c
 Source1:   %{name}-pld_box.png
 Patch100:  %{name}-branch.diff
 Patch0:%{name}-branding.patch


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/kde4-kdelibs.git/commitdiff/cbec7a82451bdef2805a5f28898dc006eacd4aa3

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


DISTFILES: kde4-kdelibs: ERRORS: kdelibs-4.9.3.tar.xz

2012-11-03 Thread arekm
wget -nv --no-check-certificate --user-agent=PLD/distfiles -O 
./tmp/a04cc6e1-7d90-44df-965b-cd4ba39786f1/91e9cf8446491e7e852b04be7a22c61c/kdelibs-4.9.3.tar.xz
 ftp://ftp.kde.org/pub/kde/stable/4.9.3/src/kdelibs-4.9.3.tar.xz:
No such directory `pub/kde/stable/4.9.3/src'.



wget -nv --no-check-certificate --user-agent=PLD/distfiles -O 
./tmp/a04cc6e1-7d90-44df-965b-cd4ba39786f1/91e9cf8446491e7e852b04be7a22c61c/kdelibs-4.9.3.tar.xz
 ftp://ftp.kde.org/pub/kde/stable/4.9.3/src/kdelibs-4.9.3.tar.xz:
exited with code 8 (0x00)

wget -nv --no-check-certificate --user-agent=PLD/distfiles --passive-ftp -O 
./tmp/a04cc6e1-7d90-44df-965b-cd4ba39786f1/91e9cf8446491e7e852b04be7a22c61c/kdelibs-4.9.3.tar.xz
 ftp://ftp.kde.org/pub/kde/stable/4.9.3/src/kdelibs-4.9.3.tar.xz:
No such directory `pub/kde/stable/4.9.3/src'.



wget -nv --no-check-certificate --user-agent=PLD/distfiles --passive-ftp -O 
./tmp/a04cc6e1-7d90-44df-965b-cd4ba39786f1/91e9cf8446491e7e852b04be7a22c61c/kdelibs-4.9.3.tar.xz
 ftp://ftp.kde.org/pub/kde/stable/4.9.3/src/kdelibs-4.9.3.tar.xz:
exited with code 8 (0x00)

FATAL: ftp://ftp.kde.org/pub/kde/stable/4.9.3/src/kdelibs-4.9.3.tar.xz 
(91e9cf8446491e7e852b04be7a22c61c) was not fetched (wget -nv 
--no-check-certificate --user-agent=PLD/distfiles -O 
./tmp/a04cc6e1-7d90-44df-965b-cd4ba39786f1/91e9cf8446491e7e852b04be7a22c61c/kdelibs-4.9.3.tar.xz
 ftp://ftp.kde.org/pub/kde/stable/4.9.3/src/kdelibs-4.9.3.tar.xz: No such 
directory `pub/kde/stable/4.9.3/src'.


No such directory `pub/kde/stable/4.9.3/src'.


): file exists but has 0 length

Files fetched: 0



-- 
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/kde4-kactivities] - up to 4.9.3

2012-11-03 Thread arekm
commit c99fa6a2687b91a8dfa78c6dcea5348c29ea3b03
Author: Arkadiusz Miśkiewicz ar...@maven.pl
Date:   Sat Nov 3 20:20:11 2012 +0100

- up to 4.9.3

 kde4-kactivities.spec | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/kde4-kactivities.spec b/kde4-kactivities.spec
index 7a49cb8..ff52da6 100644
--- a/kde4-kactivities.spec
+++ b/kde4-kactivities.spec
@@ -5,12 +5,12 @@
 Summary:   K Desktop Environment - a C++ library for using Nepomuk 
activities
 Summary(pl.UTF-8): K Desktop Environment - Biblioteka C++ do aktywności 
Nepomuka
 Name:  kde4-kactivities
-Version:   4.9.2
+Version:   4.9.3
 Release:   1
 License:   GPL
 Group: X11/Libraries
 Source0:   
ftp://ftp.kde.org/pub/kde/%{_state}/%{version}/src/%{orgname}-%{version}.tar.xz
-# Source0-md5: dd3ed645f1ebe1d81897fb58c36aa5d5
+# Source0-md5: 8cd41377e90b15e630f638a314829c7a
 URL:   http://www.kde.org/
 BuildRequires: kde4-kdelibs-devel = %{version}
 BuildRequires: soprano-devel


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/kde4-kactivities.git/commitdiff/c99fa6a2687b91a8dfa78c6dcea5348c29ea3b03

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


DISTFILES: kde4-kactivities: ERRORS: kactivities-4.9.3.tar.xz

2012-11-03 Thread arekm
wget -nv --no-check-certificate --user-agent=PLD/distfiles -O 
./tmp/02d69851-69ac-4782-9475-b253809b7243/8cd41377e90b15e630f638a314829c7a/kactivities-4.9.3.tar.xz
 ftp://ftp.kde.org/pub/kde/stable/4.9.3/src/kactivities-4.9.3.tar.xz:
No such directory `pub/kde/stable/4.9.3/src'.



wget -nv --no-check-certificate --user-agent=PLD/distfiles -O 
./tmp/02d69851-69ac-4782-9475-b253809b7243/8cd41377e90b15e630f638a314829c7a/kactivities-4.9.3.tar.xz
 ftp://ftp.kde.org/pub/kde/stable/4.9.3/src/kactivities-4.9.3.tar.xz:
exited with code 8 (0x00)

wget -nv --no-check-certificate --user-agent=PLD/distfiles --passive-ftp -O 
./tmp/02d69851-69ac-4782-9475-b253809b7243/8cd41377e90b15e630f638a314829c7a/kactivities-4.9.3.tar.xz
 ftp://ftp.kde.org/pub/kde/stable/4.9.3/src/kactivities-4.9.3.tar.xz:
No such directory `pub/kde/stable/4.9.3/src'.



wget -nv --no-check-certificate --user-agent=PLD/distfiles --passive-ftp -O 
./tmp/02d69851-69ac-4782-9475-b253809b7243/8cd41377e90b15e630f638a314829c7a/kactivities-4.9.3.tar.xz
 ftp://ftp.kde.org/pub/kde/stable/4.9.3/src/kactivities-4.9.3.tar.xz:
exited with code 8 (0x00)

FATAL: ftp://ftp.kde.org/pub/kde/stable/4.9.3/src/kactivities-4.9.3.tar.xz 
(8cd41377e90b15e630f638a314829c7a) was not fetched (wget -nv 
--no-check-certificate --user-agent=PLD/distfiles -O 
./tmp/02d69851-69ac-4782-9475-b253809b7243/8cd41377e90b15e630f638a314829c7a/kactivities-4.9.3.tar.xz
 ftp://ftp.kde.org/pub/kde/stable/4.9.3/src/kactivities-4.9.3.tar.xz: No such 
directory `pub/kde/stable/4.9.3/src'.


No such directory `pub/kde/stable/4.9.3/src'.


): file exists but has 0 length

Files fetched: 0



-- 
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/kde4-kdepimlibs] - up to 4.9.3

2012-11-03 Thread arekm
commit 4eb793fc0b522c3651de89468ba809aff5e32836
Author: Arkadiusz Miśkiewicz ar...@maven.pl
Date:   Sat Nov 3 20:32:06 2012 +0100

- up to 4.9.3

 kde4-kdepimlibs.spec | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/kde4-kdepimlibs.spec b/kde4-kdepimlibs.spec
index 6d52e8a..383209d 100644
--- a/kde4-kdepimlibs.spec
+++ b/kde4-kdepimlibs.spec
@@ -9,12 +9,12 @@
 Summary:   Personal Information Management (PIM) libraries for KDE
 Summary(pl.UTF-8): Biblioteki zarządzania informacjami osobistymi (PIM) 
dla KDE
 Name:  kde4-kdepimlibs
-Version:   4.9.2
+Version:   4.9.3
 Release:   1
 License:   GPL
 Group: X11/Applications
 Source0:   
ftp://ftp.kde.org/pub/kde/%{_state}/%{version}/src/%{orgname}-%{version}.tar.xz
-# Source0-md5: d421b66d98542e79debc68a9b69090f2
+# Source0-md5: 1050770487d22bff8a44636a38172228
 Patch100:  %{name}-branch.diff
 BuildRequires: Qt3Support-devel = %{qtver}
 BuildRequires: QtCore-devel = %{qtver}


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/kde4-kdepimlibs.git/commitdiff/4eb793fc0b522c3651de89468ba809aff5e32836

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


DISTFILES: kde4-kdepimlibs: ERRORS: kdepimlibs-4.9.3.tar.xz

2012-11-03 Thread arekm
wget -nv --no-check-certificate --user-agent=PLD/distfiles -O 
./tmp/1f4f0095-ebb0-44d9-8ee0-9535f647c154/1050770487d22bff8a44636a38172228/kdepimlibs-4.9.3.tar.xz
 ftp://ftp.kde.org/pub/kde/stable/4.9.3/src/kdepimlibs-4.9.3.tar.xz:
No such directory `pub/kde/stable/4.9.3/src'.



wget -nv --no-check-certificate --user-agent=PLD/distfiles -O 
./tmp/1f4f0095-ebb0-44d9-8ee0-9535f647c154/1050770487d22bff8a44636a38172228/kdepimlibs-4.9.3.tar.xz
 ftp://ftp.kde.org/pub/kde/stable/4.9.3/src/kdepimlibs-4.9.3.tar.xz:
exited with code 8 (0x00)

wget -nv --no-check-certificate --user-agent=PLD/distfiles --passive-ftp -O 
./tmp/1f4f0095-ebb0-44d9-8ee0-9535f647c154/1050770487d22bff8a44636a38172228/kdepimlibs-4.9.3.tar.xz
 ftp://ftp.kde.org/pub/kde/stable/4.9.3/src/kdepimlibs-4.9.3.tar.xz:
No such directory `pub/kde/stable/4.9.3/src'.



wget -nv --no-check-certificate --user-agent=PLD/distfiles --passive-ftp -O 
./tmp/1f4f0095-ebb0-44d9-8ee0-9535f647c154/1050770487d22bff8a44636a38172228/kdepimlibs-4.9.3.tar.xz
 ftp://ftp.kde.org/pub/kde/stable/4.9.3/src/kdepimlibs-4.9.3.tar.xz:
exited with code 8 (0x00)

FATAL: ftp://ftp.kde.org/pub/kde/stable/4.9.3/src/kdepimlibs-4.9.3.tar.xz 
(1050770487d22bff8a44636a38172228) was not fetched (wget -nv 
--no-check-certificate --user-agent=PLD/distfiles -O 
./tmp/1f4f0095-ebb0-44d9-8ee0-9535f647c154/1050770487d22bff8a44636a38172228/kdepimlibs-4.9.3.tar.xz
 ftp://ftp.kde.org/pub/kde/stable/4.9.3/src/kdepimlibs-4.9.3.tar.xz: No such 
directory `pub/kde/stable/4.9.3/src'.


No such directory `pub/kde/stable/4.9.3/src'.


): file exists but has 0 length

Files fetched: 0



-- 
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/kde4-oxygen-icons] - up to 4.9.3

2012-11-03 Thread arekm
commit 14d133b775873f939c960cb8a8911c97faa62575
Author: Arkadiusz Miśkiewicz ar...@maven.pl
Date:   Sat Nov 3 20:39:06 2012 +0100

- up to 4.9.3

 kde4-oxygen-icons.spec | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/kde4-oxygen-icons.spec b/kde4-oxygen-icons.spec
index b30e3d0..5bae112 100644
--- a/kde4-oxygen-icons.spec
+++ b/kde4-oxygen-icons.spec
@@ -7,12 +7,12 @@
 Summary:   KDE4 - Oxygen icons
 Summary(pl.UTF-8): Ikony Oxygen dla KDE4
 Name:  kde4-oxygen-icons
-Version:   4.9.2
+Version:   4.9.3
 Release:   1
 License:   GPL v2
 Group: X11/Libraries
 Source0:   
ftp://ftp.kde.org/pub/kde/%{_state}/%{version}/src/%{orgname}-%{version}.tar.xz
-# Source0-md5: 1b3988ff21e19ad02d019dfa5c13270f
+# Source0-md5: 96a494bbd2263827e3f870741cd83325
 Source1:   %{name}-pld_czarny.png
 Source2:   kpld.tar.gz
 # Source2-md5: e8a60b33ad694e91d574233dde0e


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/kde4-oxygen-icons.git/commitdiff/14d133b775873f939c960cb8a8911c97faa62575

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


DISTFILES: kde4-oxygen-icons: ERRORS: oxygen-icons-4.9.3.tar.xz kpld.tar.gz

2012-11-03 Thread arekm
wget -nv --no-check-certificate --user-agent=PLD/distfiles -O 
./tmp/20c3baa9-c596-48c5-9280-de03d811174f/96a494bbd2263827e3f870741cd83325/oxygen-icons-4.9.3.tar.xz
 ftp://ftp.kde.org/pub/kde/stable/4.9.3/src/oxygen-icons-4.9.3.tar.xz:
No such directory `pub/kde/stable/4.9.3/src'.



wget -nv --no-check-certificate --user-agent=PLD/distfiles -O 
./tmp/20c3baa9-c596-48c5-9280-de03d811174f/96a494bbd2263827e3f870741cd83325/oxygen-icons-4.9.3.tar.xz
 ftp://ftp.kde.org/pub/kde/stable/4.9.3/src/oxygen-icons-4.9.3.tar.xz:
exited with code 8 (0x00)

wget -nv --no-check-certificate --user-agent=PLD/distfiles --passive-ftp -O 
./tmp/20c3baa9-c596-48c5-9280-de03d811174f/96a494bbd2263827e3f870741cd83325/oxygen-icons-4.9.3.tar.xz
 ftp://ftp.kde.org/pub/kde/stable/4.9.3/src/oxygen-icons-4.9.3.tar.xz:
No such directory `pub/kde/stable/4.9.3/src'.



wget -nv --no-check-certificate --user-agent=PLD/distfiles --passive-ftp -O 
./tmp/20c3baa9-c596-48c5-9280-de03d811174f/96a494bbd2263827e3f870741cd83325/oxygen-icons-4.9.3.tar.xz
 ftp://ftp.kde.org/pub/kde/stable/4.9.3/src/oxygen-icons-4.9.3.tar.xz:
exited with code 8 (0x00)

FATAL: ftp://ftp.kde.org/pub/kde/stable/4.9.3/src/oxygen-icons-4.9.3.tar.xz 
(96a494bbd2263827e3f870741cd83325) was not fetched (wget -nv 
--no-check-certificate --user-agent=PLD/distfiles -O 
./tmp/20c3baa9-c596-48c5-9280-de03d811174f/96a494bbd2263827e3f870741cd83325/oxygen-icons-4.9.3.tar.xz
 ftp://ftp.kde.org/pub/kde/stable/4.9.3/src/oxygen-icons-4.9.3.tar.xz: No 
such directory `pub/kde/stable/4.9.3/src'.


No such directory `pub/kde/stable/4.9.3/src'.


): file exists but has 0 length

Files fetched: 0

ALREADY GOT: no-url://kpld.tar.gz
e8a60b33ad694e91d574233dde0e  kpld.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/mediainfo] - cleanup, pl

2012-11-03 Thread qboosh
commit 01bcd4aad5a86c2ee6d10cc9bbd37430f3ddfe2b
Author: Jakub Bogusz qbo...@pld-linux.org
Date:   Sat Nov 3 20:53:22 2012 +0100

- cleanup, pl

 mediainfo.spec | 155 -
 1 file changed, 98 insertions(+), 57 deletions(-)
---
diff --git a/mediainfo.spec b/mediainfo.spec
index 7465730..2036262 100644
--- a/mediainfo.spec
+++ b/mediainfo.spec
@@ -1,20 +1,23 @@
 Summary:   Supplies technical and tag information about a video or audio 
file (CLI)
+Summary(pl.UTF-8): Informacje techniczne i znaczniki dla plików wideo i 
dźwiękowych (CLI)
 Name:  mediainfo
 Version:   0.7.61
 Release:   1
-License:   GPL
+License:   LGPL v2+
 Group: Applications/Multimedia
-Source0:   
http://downloads.sourceforge.net/project/mediainfo/source/mediainfo/%{version}/%{name}_%{version}.tar.bz2
+Source0:   
http://downloads.sourceforge.net/mediainfo/%{name}_%{version}.tar.bz2
 # Source0-md5: 46fd776968ec1047cd2a5056a906cdf2
 URL:   http://mediainfo.sourceforge.net/
-BuildRequires: autoconf
+BuildRequires: autoconf = 2.50
 BuildRequires: automake
-BuildRequires: dos2unix
 BuildRequires: libmediainfo-devel = %{version}
 BuildRequires: libstdc++-devel
-BuildRequires: libtool
+BuildRequires: libtool = 2:1.5
+BuildRequires: libzen-devel
 BuildRequires: pkgconfig
-BuildRequires: wxGTK2-unicode-devel
+BuildRequires: rpmbuild(macros) = 1.566
+BuildRequires: sed = 4.0
+BuildRequires: wxGTK2-unicode-devel = 2.6.0
 BuildRequires: zlib-devel
 Requires:  libmediainfo = %{version}
 BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
@@ -30,23 +33,48 @@ What information can I get from MediaInfo?
 - Text: language of subtitle
 - Chapters: number of chapters, list of chapters
 
-DivX, XviD, H263, H.263, H264, x264, ASP, AVC, iTunes, MPEG-1, MPEG1,
-MPEG-2, MPEG2, MPEG-4, MPEG4, MP4, M4A, M4V, QuickTime, RealVideo,
-RealAudio, RA, RM, MSMPEG4v1, MSMPEG4v2, MSMPEG4v3, VOB, DVD, WMA,
-VMW, ASF, 3GP, 3GPP, 3GP2
+Supported files: DivX, XviD, H263, H.263, H264, x264, ASP, AVC,
+iTunes, MPEG-1, MPEG1, MPEG-2, MPEG2, MPEG-4, MPEG4, MP4, M4A, M4V,
+QuickTime, RealVideo, RealAudio, RA, RM, MSMPEG4v1, MSMPEG4v2,
+MSMPEG4v3, VOB, DVD, WMA, VMW, ASF, 3GP, 3GPP, 3GP2
 
-What format (container) does MediaInfo support?
+Supported formats/containers:
 - Video: MKV, OGM, AVI, DivX, WMV, QuickTime, Real, MPEG-1, MPEG-2,
   MPEG-4, DVD (VOB) (Codecs: DivX, XviD, MSMPEG4, ASP, H.264, AVC...)
 - Audio: OGG, MP3, WAV, RA, AC3, DTS, AAC, M4A, AU, AIFF
 - Subtitles: SRT, SSA, ASS, SAMI
 
+%description -l pl.UTF-8
+Program MediaInfo działający z linii poleceń (CLI).
+
+Dostępne są informacje:
+- ogólne: tytuł, autor, reżyser, album, numer ścieżki, data, czas
+  trwania...
+- wideo: kodek, proporcje, liczba klatek na sekundę, pasmo...
+- dźwięk: kodek, częstotliwość próbkowania, liczba kanałów, język,
+  pasmo...
+- tekst: język napisów
+- książki: liczba rozdziałów, ich lista
+
+Obsługiwane pliki: DivX, XviD, H263, H.263, H264, x264, ASP, AVC,
+iTunes, MPEG-1, MPEG1, MPEG-2, MPEG2, MPEG-4, MPEG4, MP4, M4A, M4V,
+QuickTime, RealVideo, RealAudio, RA, RM, MSMPEG4v1, MSMPEG4v2,
+MSMPEG4v3, VOB, DVD, WMA, VMW, ASF, 3GP, 3GPP, 3GP2
+
+Obsługiwane formaty/kontenery:
+- wideo: MKV, OGM, AVI, DivX, WMV, QuickTime, Real, MPEG-1, MPEG-2,
+  MPEG-4, DVD (VOB) (kodeki: DivX, XviD, MSMPEG4, ASP, H.264, AVC...)
+- dźwięk: OGG, MP3, WAV, RA, AC3, DTS, AAC, M4A, AU, AIFF
+- napisy: SRT, SSA, ASS, SAMI
+
 %package gui
 Summary:   Supplies technical and tag information about a video or audio 
file (GUI)
+Summary(pl.UTF-8): Informacje techniczne i znaczniki dla plików wideo i 
dźwiękowych (GUI)
 Group: X11/Applications/Multimedia
 Requires:  kde-common-dirs = 0.5
 Requires:  libmediainfo = %{version}
 Requires:  libzen = 0.4.9
+Requires:  wxGTK2-unicode = 2.6.0
 
 %description gui
 MediaInfo (Graphical User Interface).
@@ -59,74 +87,89 @@ What information can I get from MediaInfo?
 - Text: language of subtitle
 - Chapters: number of chapters, list of chapters
 
-DivX, XviD, H263, H.263, H264, x264, ASP, AVC, iTunes, MPEG-1, MPEG1,
-MPEG-2, MPEG2, MPEG-4, MPEG4, MP4, M4A, M4V, QuickTime, RealVideo,
-RealAudio, RA, RM, MSMPEG4v1, MSMPEG4v2, MSMPEG4v3, VOB, DVD, WMA,
-VMW, ASF, 3GP, 3GPP, 3GP2
+Supported files: DivX, XviD, H263, H.263, H264, x264, ASP, AVC,
+iTunes, MPEG-1, MPEG1, MPEG-2, MPEG2, MPEG-4, MPEG4, MP4, M4A, M4V,
+QuickTime, RealVideo, RealAudio, RA, RM, MSMPEG4v1, MSMPEG4v2,
+MSMPEG4v3, VOB, DVD, WMA, VMW, ASF, 3GP, 3GPP, 3GP2
 
-What format (container) does MediaInfo support?
+Supported formats/containers:
 - Video: MKV, OGM, AVI, DivX, WMV, QuickTime, Real, MPEG-1, MPEG-2,
   MPEG-4, DVD (VOB) (Codecs: DivX, XviD, MSMPEG4, ASP, H.264, AVC...)
 - Audio: OGG, MP3, WAV, RA, AC3, DTS, AAC, M4A, AU, AIFF
 - Subtitles: SRT, SSA, ASS, SAMI
 
+%description gui -l pl.UTF-8
+Program MediaInfo z graficznym interfejsem użytkownika (GUI).
+

[packages/tesseract] - updated to 3.02.02

2012-11-03 Thread qboosh
commit 854e1083a2c595e7e3afb9398604aa5304d10062
Author: Jakub Bogusz qbo...@pld-linux.org
Date:   Sat Nov 3 20:54:54 2012 +0100

- updated to 3.02.02

 tesseract.spec | 21 ++---
 1 file changed, 14 insertions(+), 7 deletions(-)
---
diff --git a/tesseract.spec b/tesseract.spec
index a4788c3..8ddc893 100644
--- a/tesseract.spec
+++ b/tesseract.spec
@@ -3,19 +3,18 @@
 Summary:   Tesseract Open Source OCR Engine
 Summary(pl.UTF-8): Tesseract - silnik OCR o otwartych źródłach
 Name:  tesseract
-Version:   3.01
-Release:   3
+Version:   3.02.02
+Release:   1
 License:   Apache v2.0
 Group: Applications/Graphics
 #Source0Download: http://code.google.com/p/tesseract-ocr/downloads/list
-Source0:   
http://tesseract-ocr.googlecode.com/files/%{name}-%{version}.tar.gz
-# Source0-md5: 1ba496e51a42358fb9d3ffe781b2d20a
+Source0:   
http://tesseract-ocr.googlecode.com/files/%{name}-ocr-%{version}.tar.gz
+# Source0-md5: 26adc8154f0e815053816825dde246e6
 URL:   http://code.google.com/p/tesseract-ocr/
 BuildRequires: autoconf = 2.50
 BuildRequires: automake
 BuildRequires: leptonlib-devel
 BuildRequires: libstdc++-devel
-BuildRequires: libtiff-devel
 BuildRequires: libtool
 Suggests:  tesseract-data = 3
 BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
@@ -37,7 +36,6 @@ Group:  Development/Libraries
 Requires:  %{name} = %{version}-%{release}
 Requires:  leptonlib-devel
 Requires:  libstdc++-devel
-Requires:  libtiff-devel
 
 %description devel
 This package contains the development header files necessary to
@@ -60,7 +58,7 @@ Static Tesseract libraries.
 Statyczne biblioteki Tesseracta.
 
 %prep
-%setup -q
+%setup -q -n %{name}-ocr
 
 %build
 %{__libtoolize}
@@ -77,15 +75,20 @@ rm -rf $RPM_BUILD_ROOT
 %{__make} install \
DESTDIR=$RPM_BUILD_ROOT
 
+# test program?
+%{__rm} $RPM_BUILD_ROOT%{_bindir}/classifier_tester
 %clean
 rm -rf $RPM_BUILD_ROOT
 
 %files
 %defattr(644,root,root,755)
 %doc AUTHORS COPYING ChangeLog README ReleaseNotes
+%attr(755,root,root) %{_bindir}/ambiguous_words
 %attr(755,root,root) %{_bindir}/cntraining
 %attr(755,root,root) %{_bindir}/combine_tessdata
+%attr(755,root,root) %{_bindir}/dawg2wordlist
 %attr(755,root,root) %{_bindir}/mftraining
+%attr(755,root,root) %{_bindir}/shapeclustering
 %attr(755,root,root) %{_bindir}/tesseract
 %attr(755,root,root) %{_bindir}/unicharset_extractor
 %attr(755,root,root) %{_bindir}/wordlist2dawg
@@ -96,9 +99,12 @@ rm -rf $RPM_BUILD_ROOT
 %{_datadir}/tessdata/configs/*
 %dir %{_datadir}/tessdata/tessconfigs
 %{_datadir}/tessdata/tessconfigs/*
+%{_mandir}/man1/ambiguous_words.1*
 %{_mandir}/man1/cntraining.1*
 %{_mandir}/man1/combine_tessdata.1*
+%{_mandir}/man1/dawg2wordlist.1*
 %{_mandir}/man1/mftraining.1*
+%{_mandir}/man1/shapeclustering.1*
 %{_mandir}/man1/tesseract.1*
 %{_mandir}/man1/unicharset_extractor.1*
 %{_mandir}/man1/wordlist2dawg.1*
@@ -108,6 +114,7 @@ rm -rf $RPM_BUILD_ROOT
 %attr(755,root,root) %{_libdir}/libtesseract.so
 %{_libdir}/libtesseract.la
 %{_includedir}/%{name}
+%{_pkgconfigdir}/tesseract.pc
 %{_mandir}/man5/unicharambigs.5*
 %{_mandir}/man5/unicharset.5*
 


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/tesseract.git/commitdiff/854e1083a2c595e7e3afb9398604aa5304d10062

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


DISTFILES: tesseract: tesseract-ocr-3.02.02.tar.gz

2012-11-03 Thread qboosh

Files fetched: 1

STORED: http://tesseract-ocr.googlecode.com/files/tesseract-ocr-3.02.02.tar.gz
26adc8154f0e815053816825dde246e6  tesseract-ocr-3.02.02.tar.gz
Size: 3890393 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/kde4-kdebase-workspace] - up to 4.9.3

2012-11-03 Thread arekm
commit 816d98900ab5c2db212c0f894dad2a77112956ef
Author: Arkadiusz Miśkiewicz ar...@maven.pl
Date:   Sat Nov 3 21:17:12 2012 +0100

- up to 4.9.3

 kde4-kdebase-workspace.spec | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/kde4-kdebase-workspace.spec b/kde4-kdebase-workspace.spec
index bd0d489..af6b7e2 100644
--- a/kde4-kdebase-workspace.spec
+++ b/kde4-kdebase-workspace.spec
@@ -2,17 +2,17 @@
 # - subpackage PolicyKit-kde and O: PolicyKit-kde
 %defineorgname kde-workspace
 %define_state  stable
-%defineqtver   4.8.1
+%defineqtver   4.8.3
 
 Summary:   KDE 4 base workspace components
 Summary(pl.UTF-8): Podstawowe komponenty środowiska KDE 4
 Name:  kde4-kdebase-workspace
-Version:   4.9.2
+Version:   4.9.3
 Release:   1
 License:   GPL v2+
 Group: X11/Applications
 Source0:   
ftp://ftp.kde.org/pub/kde/%{_state}/%{version}/src/%{orgname}-%{version}.tar.xz
-# Source0-md5: 03feb2d606c5c03b87a8e0082c54009b
+# Source0-md5: 7e0ac76dda7e44895df6603504b24872
 Source1:   kdebase-kdesktop.pam
 Source2:   kdebase-kdm.pam
 Source3:   kdebase-kdm-np.pam


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/kde4-kdebase-workspace.git/commitdiff/816d98900ab5c2db212c0f894dad2a77112956ef

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


DISTFILES: kde4-kdebase-workspace: ERRORS: kde-workspace-4.9.3.tar.xz

2012-11-03 Thread arekm
wget -nv --no-check-certificate --user-agent=PLD/distfiles -O 
./tmp/7420b43a-28b6-4711-86c2-0159996d3f50/7e0ac76dda7e44895df6603504b24872/kde-workspace-4.9.3.tar.xz
 ftp://ftp.kde.org/pub/kde/stable/4.9.3/src/kde-workspace-4.9.3.tar.xz:
No such directory `pub/kde/stable/4.9.3/src'.



wget -nv --no-check-certificate --user-agent=PLD/distfiles -O 
./tmp/7420b43a-28b6-4711-86c2-0159996d3f50/7e0ac76dda7e44895df6603504b24872/kde-workspace-4.9.3.tar.xz
 ftp://ftp.kde.org/pub/kde/stable/4.9.3/src/kde-workspace-4.9.3.tar.xz:
exited with code 8 (0x00)

wget -nv --no-check-certificate --user-agent=PLD/distfiles --passive-ftp -O 
./tmp/7420b43a-28b6-4711-86c2-0159996d3f50/7e0ac76dda7e44895df6603504b24872/kde-workspace-4.9.3.tar.xz
 ftp://ftp.kde.org/pub/kde/stable/4.9.3/src/kde-workspace-4.9.3.tar.xz:
No such directory `pub/kde/stable/4.9.3/src'.



wget -nv --no-check-certificate --user-agent=PLD/distfiles --passive-ftp -O 
./tmp/7420b43a-28b6-4711-86c2-0159996d3f50/7e0ac76dda7e44895df6603504b24872/kde-workspace-4.9.3.tar.xz
 ftp://ftp.kde.org/pub/kde/stable/4.9.3/src/kde-workspace-4.9.3.tar.xz:
exited with code 8 (0x00)

FATAL: ftp://ftp.kde.org/pub/kde/stable/4.9.3/src/kde-workspace-4.9.3.tar.xz 
(7e0ac76dda7e44895df6603504b24872) was not fetched (wget -nv 
--no-check-certificate --user-agent=PLD/distfiles -O 
./tmp/7420b43a-28b6-4711-86c2-0159996d3f50/7e0ac76dda7e44895df6603504b24872/kde-workspace-4.9.3.tar.xz
 ftp://ftp.kde.org/pub/kde/stable/4.9.3/src/kde-workspace-4.9.3.tar.xz: No 
such directory `pub/kde/stable/4.9.3/src'.


No such directory `pub/kde/stable/4.9.3/src'.


): file exists but has 0 length

Files fetched: 0



-- 
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/libmediainfo] - rpm macros version for undos

2012-11-03 Thread qboosh
commit 937e23c467d29139b64bf0084df48d3a5bb6296b
Author: Jakub Bogusz qbo...@pld-linux.org
Date:   Sat Nov 3 21:19:10 2012 +0100

- rpm macros version for undos

 libmediainfo.spec | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
---
diff --git a/libmediainfo.spec b/libmediainfo.spec
index 5e220be..77b9c03 100644
--- a/libmediainfo.spec
+++ b/libmediainfo.spec
@@ -24,8 +24,9 @@ BuildRequires:doxygen
 BuildRequires: libstdc++-devel
 BuildRequires: libtool = 2:1.5
 BuildRequires: libzen-devel = %{libzen_ver}
-BuildRequires: sed = 4.0
 BuildRequires: pkgconfig
+BuildRequires: rpmbuild(macros) = 1.566
+BuildRequires: sed = 4.0
 BuildRequires: zlib-devel
 Requires:  libzen = %{libzen_ver}
 BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/libmediainfo.git/commitdiff/937e23c467d29139b64bf0084df48d3a5bb6296b

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


[packages/kde4-libkexiv2] - up to 4.9.3

2012-11-03 Thread arekm
commit f5c6063fc547b8bfbcdda77b7092dbe157ca1f25
Author: Arkadiusz Miśkiewicz ar...@maven.pl
Date:   Sat Nov 3 21:20:00 2012 +0100

- up to 4.9.3

 kde4-libkexiv2.spec | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/kde4-libkexiv2.spec b/kde4-libkexiv2.spec
index 0ebe4dd..97ca0b1 100644
--- a/kde4-libkexiv2.spec
+++ b/kde4-libkexiv2.spec
@@ -1,15 +1,15 @@
 %define _state  stable
 %define orgname libkexiv2
-%define qtver   4.8.1
+%define qtver   4.8.3
 Summary:   libkexiv2 - picture metadata manipulation library
 Summary(pl.UTF-8): libkexiv2 - biblioteka do obróbki metadanych obrazków
 Name:  kde4-libkexiv2
-Version:   4.9.2
+Version:   4.9.3
 Release:   1
 License:   GPL v2+
 Group: X11/Libraries
 Source0:   
ftp://ftp.kde.org/pub/kde/%{_state}/%{version}/src/%{orgname}-%{version}.tar.xz
-# Source0-md5: cbc6868d5ccb425edf3cdea1d49427ee
+# Source0-md5: 95fa4cc2245c226fc64473b0eda82260
 URL:   http://www.kde.org/
 BuildRequires: exiv2-devel = 0.20
 BuildRequires: kde4-kdelibs-devel


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/kde4-libkexiv2.git/commitdiff/f5c6063fc547b8bfbcdda77b7092dbe157ca1f25

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


DISTFILES: kde4-libkexiv2: ERRORS: libkexiv2-4.9.3.tar.xz

2012-11-03 Thread arekm
wget -nv --no-check-certificate --user-agent=PLD/distfiles -O 
./tmp/deade4de-3d14-47fd-9a5c-e87d88bd2f36/95fa4cc2245c226fc64473b0eda82260/libkexiv2-4.9.3.tar.xz
 ftp://ftp.kde.org/pub/kde/stable/4.9.3/src/libkexiv2-4.9.3.tar.xz:
No such directory `pub/kde/stable/4.9.3/src'.



wget -nv --no-check-certificate --user-agent=PLD/distfiles -O 
./tmp/deade4de-3d14-47fd-9a5c-e87d88bd2f36/95fa4cc2245c226fc64473b0eda82260/libkexiv2-4.9.3.tar.xz
 ftp://ftp.kde.org/pub/kde/stable/4.9.3/src/libkexiv2-4.9.3.tar.xz:
exited with code 8 (0x00)

wget -nv --no-check-certificate --user-agent=PLD/distfiles --passive-ftp -O 
./tmp/deade4de-3d14-47fd-9a5c-e87d88bd2f36/95fa4cc2245c226fc64473b0eda82260/libkexiv2-4.9.3.tar.xz
 ftp://ftp.kde.org/pub/kde/stable/4.9.3/src/libkexiv2-4.9.3.tar.xz:
No such directory `pub/kde/stable/4.9.3/src'.



wget -nv --no-check-certificate --user-agent=PLD/distfiles --passive-ftp -O 
./tmp/deade4de-3d14-47fd-9a5c-e87d88bd2f36/95fa4cc2245c226fc64473b0eda82260/libkexiv2-4.9.3.tar.xz
 ftp://ftp.kde.org/pub/kde/stable/4.9.3/src/libkexiv2-4.9.3.tar.xz:
exited with code 8 (0x00)

FATAL: ftp://ftp.kde.org/pub/kde/stable/4.9.3/src/libkexiv2-4.9.3.tar.xz 
(95fa4cc2245c226fc64473b0eda82260) was not fetched (wget -nv 
--no-check-certificate --user-agent=PLD/distfiles -O 
./tmp/deade4de-3d14-47fd-9a5c-e87d88bd2f36/95fa4cc2245c226fc64473b0eda82260/libkexiv2-4.9.3.tar.xz
 ftp://ftp.kde.org/pub/kde/stable/4.9.3/src/libkexiv2-4.9.3.tar.xz: No such 
directory `pub/kde/stable/4.9.3/src'.


No such directory `pub/kde/stable/4.9.3/src'.


): file exists but has 0 length

Files fetched: 0



-- 
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/kde4-kdebase] - up to 4.9.3

2012-11-03 Thread arekm
commit 05454c87f1535b239b4ca5ce34f29163632247f0
Author: Arkadiusz Miśkiewicz ar...@maven.pl
Date:   Sat Nov 3 21:21:16 2012 +0100

- up to 4.9.3

 kde4-kdebase.spec | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/kde4-kdebase.spec b/kde4-kdebase.spec
index f4f3846..2b654cc 100644
--- a/kde4-kdebase.spec
+++ b/kde4-kdebase.spec
@@ -3,7 +3,7 @@
 #
 %define_state  stable
 %defineorgname kde-baseapps
-%defineqtver   4.8.1
+%defineqtver   4.8.3
 
 Summary:   K Desktop Environment - core files
 Summary(es.UTF-8): K Desktop Environment - archivos básicos
@@ -15,12 +15,12 @@ Summary(ru.UTF-8):  K Desktop Environment - базовые файлы
 Summary(uk.UTF-8): K Desktop Environment - базові файли
 Summary(zh_CN.UTF-8):  KDE核心
 Name:  kde4-kdebase
-Version:   4.9.2
+Version:   4.9.3
 Release:   1
 License:   GPL
 Group: X11/Applications
 Source0:   
ftp://ftp.kde.org/pub/kde/%{_state}/%{version}/src/%{orgname}-%{version}.tar.xz
-# Source0-md5: 1f000276161ff368b27386d3b2ebf0dd
+# Source0-md5: a5782bc15ffd720fedce48e7538db5d7
 Patch100:  %{name}-branch.diff
 URL:   http://www.kde.org/
 BuildRequires: QtCore-devel = %{qtver}


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/kde4-kdebase.git/commitdiff/05454c87f1535b239b4ca5ce34f29163632247f0

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


DISTFILES: kde4-kdebase: ERRORS: kde-baseapps-4.9.3.tar.xz

2012-11-03 Thread arekm
wget -nv --no-check-certificate --user-agent=PLD/distfiles -O 
./tmp/39dcbbff-2385-469e-9108-d496881ae8d4/a5782bc15ffd720fedce48e7538db5d7/kde-baseapps-4.9.3.tar.xz
 ftp://ftp.kde.org/pub/kde/stable/4.9.3/src/kde-baseapps-4.9.3.tar.xz:
No such directory `pub/kde/stable/4.9.3/src'.



wget -nv --no-check-certificate --user-agent=PLD/distfiles -O 
./tmp/39dcbbff-2385-469e-9108-d496881ae8d4/a5782bc15ffd720fedce48e7538db5d7/kde-baseapps-4.9.3.tar.xz
 ftp://ftp.kde.org/pub/kde/stable/4.9.3/src/kde-baseapps-4.9.3.tar.xz:
exited with code 8 (0x00)

wget -nv --no-check-certificate --user-agent=PLD/distfiles --passive-ftp -O 
./tmp/39dcbbff-2385-469e-9108-d496881ae8d4/a5782bc15ffd720fedce48e7538db5d7/kde-baseapps-4.9.3.tar.xz
 ftp://ftp.kde.org/pub/kde/stable/4.9.3/src/kde-baseapps-4.9.3.tar.xz:
No such directory `pub/kde/stable/4.9.3/src'.



wget -nv --no-check-certificate --user-agent=PLD/distfiles --passive-ftp -O 
./tmp/39dcbbff-2385-469e-9108-d496881ae8d4/a5782bc15ffd720fedce48e7538db5d7/kde-baseapps-4.9.3.tar.xz
 ftp://ftp.kde.org/pub/kde/stable/4.9.3/src/kde-baseapps-4.9.3.tar.xz:
exited with code 8 (0x00)

FATAL: ftp://ftp.kde.org/pub/kde/stable/4.9.3/src/kde-baseapps-4.9.3.tar.xz 
(a5782bc15ffd720fedce48e7538db5d7) was not fetched (wget -nv 
--no-check-certificate --user-agent=PLD/distfiles -O 
./tmp/39dcbbff-2385-469e-9108-d496881ae8d4/a5782bc15ffd720fedce48e7538db5d7/kde-baseapps-4.9.3.tar.xz
 ftp://ftp.kde.org/pub/kde/stable/4.9.3/src/kde-baseapps-4.9.3.tar.xz: No 
such directory `pub/kde/stable/4.9.3/src'.


No such directory `pub/kde/stable/4.9.3/src'.


): file exists but has 0 length

Files fetched: 0



-- 
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/attica] - up to 0.4.1

2012-11-03 Thread arekm
commit da616d1b80d5f2111c9ab80eeaa01c6ef8b2ba5d
Author: Arkadiusz Miśkiewicz ar...@maven.pl
Date:   Sat Nov 3 21:21:51 2012 +0100

- up to 0.4.1

 attica.spec | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/attica.spec b/attica.spec
index 111c4c5..14cd9b1 100644
--- a/attica.spec
+++ b/attica.spec
@@ -1,18 +1,18 @@
 #
 # Conditional build:
 #
-%defineqt_ver  4.8.0
+%defineqt_ver  4.8.3
 
 Summary:   Attica Library - implementation of Open Collaboration Services 
API for Qt
 Summary(pl.UTF-8): Attica Library - implementacja API Serwisów Otwartej 
Współpracy dla Qt
 Name:  attica
-Version:   0.4.0
+Version:   0.4.1
 Release:   1
 License:   GPL
 Group: X11/Libraries
 # svn co svn://anonsvn.kde.org/home/kde/trunk/kdesupport/attica/
 Source0:   
ftp://ftp.kde.org/pub/kde/stable/attica/%{name}-%{version}.tar.bz2
-# Source0-md5: 2de3a49d79884ed3ce9df491bf35a86b
+# Source0-md5: b90983ec5d79e5ddcbc9146fa23cab72
 URL:   http://www.kde.org/
 BuildRequires: QtCore-devel = %{qt_ver}
 BuildRequires: QtGui-devel = %{qt_ver}


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/attica.git/commitdiff/da616d1b80d5f2111c9ab80eeaa01c6ef8b2ba5d

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


DISTFILES: attica: attica-0.4.1.tar.bz2

2012-11-03 Thread arekm

Files fetched: 1

STORED: ftp://ftp.kde.org/pub/kde/stable/attica/attica-0.4.1.tar.bz2
b90983ec5d79e5ddcbc9146fa23cab72  attica-0.4.1.tar.bz2
Size: 58742 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/kde4-kdeartwork] - up to 4.9.3

2012-11-03 Thread arekm
commit 403f3be13b94b48b0fbab764a068a1f40d14c9ca
Author: Arkadiusz Miśkiewicz ar...@maven.pl
Date:   Sat Nov 3 21:23:07 2012 +0100

- up to 4.9.3

 kde4-kdeartwork.spec | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/kde4-kdeartwork.spec b/kde4-kdeartwork.spec
index 5342bb3..59d7fff 100644
--- a/kde4-kdeartwork.spec
+++ b/kde4-kdeartwork.spec
@@ -1,16 +1,16 @@
 %define_state  stable
 %defineorgname kdeartwork
-%defineqtver   4.8.1
+%defineqtver   4.8.3
 
 Summary:   K Desktop Environment - artwork
 Summary(pl.UTF-8): K Desktop Environment - grafiki itp.
 Name:  kde4-kdeartwork
-Version:   4.9.2
+Version:   4.9.3
 Release:   1
 License:   LGPL
 Group: X11/Applications
 Source0:   
ftp://ftp.kde.org/pub/kde/%{_state}/%{version}/src/%{orgname}-%{version}.tar.xz
-# Source0-md5: b440cbbc16637dee0728cae429e81352
+# Source0-md5: b3d4f843827d0143ee28e0c054fd51b8
 Patch0:%{name}-findxscreensaver.patch
 Patch1:%{name}-crystalsvg-hicolor.patch
 URL:   http://www.kde.org/


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/kde4-kdeartwork.git/commitdiff/403f3be13b94b48b0fbab764a068a1f40d14c9ca

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


DISTFILES: kde4-kdeartwork: ERRORS: kdeartwork-4.9.3.tar.xz

2012-11-03 Thread arekm
wget -nv --no-check-certificate --user-agent=PLD/distfiles -O 
./tmp/5223617a-d427-4483-bc6d-1ce35a4d49bd/b3d4f843827d0143ee28e0c054fd51b8/kdeartwork-4.9.3.tar.xz
 ftp://ftp.kde.org/pub/kde/stable/4.9.3/src/kdeartwork-4.9.3.tar.xz:
No such directory `pub/kde/stable/4.9.3/src'.



wget -nv --no-check-certificate --user-agent=PLD/distfiles -O 
./tmp/5223617a-d427-4483-bc6d-1ce35a4d49bd/b3d4f843827d0143ee28e0c054fd51b8/kdeartwork-4.9.3.tar.xz
 ftp://ftp.kde.org/pub/kde/stable/4.9.3/src/kdeartwork-4.9.3.tar.xz:
exited with code 8 (0x00)

wget -nv --no-check-certificate --user-agent=PLD/distfiles --passive-ftp -O 
./tmp/5223617a-d427-4483-bc6d-1ce35a4d49bd/b3d4f843827d0143ee28e0c054fd51b8/kdeartwork-4.9.3.tar.xz
 ftp://ftp.kde.org/pub/kde/stable/4.9.3/src/kdeartwork-4.9.3.tar.xz:
No such directory `pub/kde/stable/4.9.3/src'.



wget -nv --no-check-certificate --user-agent=PLD/distfiles --passive-ftp -O 
./tmp/5223617a-d427-4483-bc6d-1ce35a4d49bd/b3d4f843827d0143ee28e0c054fd51b8/kdeartwork-4.9.3.tar.xz
 ftp://ftp.kde.org/pub/kde/stable/4.9.3/src/kdeartwork-4.9.3.tar.xz:
exited with code 8 (0x00)

FATAL: ftp://ftp.kde.org/pub/kde/stable/4.9.3/src/kdeartwork-4.9.3.tar.xz 
(b3d4f843827d0143ee28e0c054fd51b8) was not fetched (wget -nv 
--no-check-certificate --user-agent=PLD/distfiles -O 
./tmp/5223617a-d427-4483-bc6d-1ce35a4d49bd/b3d4f843827d0143ee28e0c054fd51b8/kdeartwork-4.9.3.tar.xz
 ftp://ftp.kde.org/pub/kde/stable/4.9.3/src/kdeartwork-4.9.3.tar.xz: No such 
directory `pub/kde/stable/4.9.3/src'.


No such directory `pub/kde/stable/4.9.3/src'.


): file exists but has 0 length

Files fetched: 0



-- 
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/kde4-nepomuk-core] - up to 4.9.3

2012-11-03 Thread arekm
commit 767102dc02a2a1b7c5a20ce917557b3f7c604350
Author: Arkadiusz Miśkiewicz ar...@maven.pl
Date:   Sat Nov 3 21:24:44 2012 +0100

- up to 4.9.3

 kde4-nepomuk-core.spec | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/kde4-nepomuk-core.spec b/kde4-nepomuk-core.spec
index b03cf53..95e6cc6 100644
--- a/kde4-nepomuk-core.spec
+++ b/kde4-nepomuk-core.spec
@@ -5,13 +5,13 @@
 
 Summary:   Nepomuk Core utilities and libraries
 Name:  kde4-nepomuk-core
-Version:   4.9.2
+Version:   4.9.3
 Release:   1
 License:   LGPLv2 or LGPLv3
 Group: X11/Applications
 URL:   http://www.kde.org/
 Source0:   
ftp://ftp.kde.org/pub/kde/%{_state}/%{version}/src/%{orgname}-%{version}.tar.xz
-# Source0-md5: 50c242edf52026a8de26a4a931109b48
+# Source0-md5: 19cedfd106f911a77f21b72d60afb730
 BuildRequires: QtCore-devel = %{qtver}
 BuildRequires: acl-devel
 BuildRequires: attr-devel


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/kde4-nepomuk-core.git/commitdiff/767102dc02a2a1b7c5a20ce917557b3f7c604350

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


DISTFILES: kde4-nepomuk-core: ERRORS: nepomuk-core-4.9.3.tar.xz

2012-11-03 Thread arekm
wget -nv --no-check-certificate --user-agent=PLD/distfiles -O 
./tmp/8fbc3114-d6c4-4b87-9b00-e745c6c77925/19cedfd106f911a77f21b72d60afb730/nepomuk-core-4.9.3.tar.xz
 ftp://ftp.kde.org/pub/kde/stable/4.9.3/src/nepomuk-core-4.9.3.tar.xz:
No such directory `pub/kde/stable/4.9.3/src'.



wget -nv --no-check-certificate --user-agent=PLD/distfiles -O 
./tmp/8fbc3114-d6c4-4b87-9b00-e745c6c77925/19cedfd106f911a77f21b72d60afb730/nepomuk-core-4.9.3.tar.xz
 ftp://ftp.kde.org/pub/kde/stable/4.9.3/src/nepomuk-core-4.9.3.tar.xz:
exited with code 8 (0x00)

wget -nv --no-check-certificate --user-agent=PLD/distfiles --passive-ftp -O 
./tmp/8fbc3114-d6c4-4b87-9b00-e745c6c77925/19cedfd106f911a77f21b72d60afb730/nepomuk-core-4.9.3.tar.xz
 ftp://ftp.kde.org/pub/kde/stable/4.9.3/src/nepomuk-core-4.9.3.tar.xz:
No such directory `pub/kde/stable/4.9.3/src'.



wget -nv --no-check-certificate --user-agent=PLD/distfiles --passive-ftp -O 
./tmp/8fbc3114-d6c4-4b87-9b00-e745c6c77925/19cedfd106f911a77f21b72d60afb730/nepomuk-core-4.9.3.tar.xz
 ftp://ftp.kde.org/pub/kde/stable/4.9.3/src/nepomuk-core-4.9.3.tar.xz:
exited with code 8 (0x00)

FATAL: ftp://ftp.kde.org/pub/kde/stable/4.9.3/src/nepomuk-core-4.9.3.tar.xz 
(19cedfd106f911a77f21b72d60afb730) was not fetched (wget -nv 
--no-check-certificate --user-agent=PLD/distfiles -O 
./tmp/8fbc3114-d6c4-4b87-9b00-e745c6c77925/19cedfd106f911a77f21b72d60afb730/nepomuk-core-4.9.3.tar.xz
 ftp://ftp.kde.org/pub/kde/stable/4.9.3/src/nepomuk-core-4.9.3.tar.xz: No 
such directory `pub/kde/stable/4.9.3/src'.


No such directory `pub/kde/stable/4.9.3/src'.


): file exists but has 0 length

Files fetched: 0



-- 
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/kde4-konsole] - up to 4.9.3

2012-11-03 Thread arekm
commit 8f4f07a922c55ef7a4ab476c39a0c0b4a52e2413
Author: Arkadiusz Miśkiewicz ar...@maven.pl
Date:   Sat Nov 3 21:25:07 2012 +0100

- up to 4.9.3

 kde4-konsole.spec | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/kde4-konsole.spec b/kde4-konsole.spec
index d510bb8..aa6bf8b 100644
--- a/kde4-konsole.spec
+++ b/kde4-konsole.spec
@@ -3,17 +3,17 @@
 #
 %define_state  stable
 %defineorgname konsole
-%defineqtver   4.8.1
+%defineqtver   4.8.3
 
 Summary:   K Desktop Environment - KDE Terminal Emulator
 Summary(pl.UTF-8): K Desktop Environment - Emulator terminala dla KDE
 Name:  kde4-konsole
-Version:   4.9.2
+Version:   4.9.3
 Release:   1
 License:   GPL
 Group: X11/Applications
 Source0:   
ftp://ftp.kde.org/pub/kde/%{_state}/%{version}/src/%{orgname}-%{version}.tar.xz
-# Source0-md5: bb59fcac488841402019125659800f9a
+# Source0-md5: 5e742f035f8238d0ba24f5e51c71e627
 Patch0:konsole-wordchars.patch
 URL:   http://www.kde.org/
 BuildRequires: kde4-kdebase-devel = %{version}


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/kde4-konsole.git/commitdiff/8f4f07a922c55ef7a4ab476c39a0c0b4a52e2413

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


DISTFILES: kde4-konsole: ERRORS: konsole-4.9.3.tar.xz

2012-11-03 Thread arekm
wget -nv --no-check-certificate --user-agent=PLD/distfiles -O 
./tmp/0dd30f29-1bb7-4a6f-828c-fd7482ed598d/5e742f035f8238d0ba24f5e51c71e627/konsole-4.9.3.tar.xz
 ftp://ftp.kde.org/pub/kde/stable/4.9.3/src/konsole-4.9.3.tar.xz:
No such directory `pub/kde/stable/4.9.3/src'.



wget -nv --no-check-certificate --user-agent=PLD/distfiles -O 
./tmp/0dd30f29-1bb7-4a6f-828c-fd7482ed598d/5e742f035f8238d0ba24f5e51c71e627/konsole-4.9.3.tar.xz
 ftp://ftp.kde.org/pub/kde/stable/4.9.3/src/konsole-4.9.3.tar.xz:
exited with code 8 (0x00)

wget -nv --no-check-certificate --user-agent=PLD/distfiles --passive-ftp -O 
./tmp/0dd30f29-1bb7-4a6f-828c-fd7482ed598d/5e742f035f8238d0ba24f5e51c71e627/konsole-4.9.3.tar.xz
 ftp://ftp.kde.org/pub/kde/stable/4.9.3/src/konsole-4.9.3.tar.xz:
No such directory `pub/kde/stable/4.9.3/src'.



wget -nv --no-check-certificate --user-agent=PLD/distfiles --passive-ftp -O 
./tmp/0dd30f29-1bb7-4a6f-828c-fd7482ed598d/5e742f035f8238d0ba24f5e51c71e627/konsole-4.9.3.tar.xz
 ftp://ftp.kde.org/pub/kde/stable/4.9.3/src/konsole-4.9.3.tar.xz:
exited with code 8 (0x00)

FATAL: ftp://ftp.kde.org/pub/kde/stable/4.9.3/src/konsole-4.9.3.tar.xz 
(5e742f035f8238d0ba24f5e51c71e627) was not fetched (wget -nv 
--no-check-certificate --user-agent=PLD/distfiles -O 
./tmp/0dd30f29-1bb7-4a6f-828c-fd7482ed598d/5e742f035f8238d0ba24f5e51c71e627/konsole-4.9.3.tar.xz
 ftp://ftp.kde.org/pub/kde/stable/4.9.3/src/konsole-4.9.3.tar.xz: No such 
directory `pub/kde/stable/4.9.3/src'.


No such directory `pub/kde/stable/4.9.3/src'.


): file exists but has 0 length

Files fetched: 0



-- 
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/ethumb] - updated to 1.7.1

2012-11-03 Thread qboosh
commit bae48a4ec322bad6a40359c8972b309c2abc0b07
Author: Jakub Bogusz qbo...@pld-linux.org
Date:   Sat Nov 3 21:25:44 2012 +0100

- updated to 1.7.1

 ethumb.spec | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/ethumb.spec b/ethumb.spec
index fed62a5..7eb39b8 100644
--- a/ethumb.spec
+++ b/ethumb.spec
@@ -5,12 +5,12 @@
 Summary:   Ethumb - thumbnail generation library
 Summary(pl.UTF-8): Ethumb - biblioteka generująca miniaturki
 Name:  ethumb
-Version:   1.7.0
+Version:   1.7.1
 Release:   1
 License:   LGPL v2.1
 Group: Libraries
 Source0:   
http://download.enlightenment.org/releases/%{name}-%{version}.tar.bz2
-# Source0-md5: 1c0ec46c2c9088a222440315b8873cf5
+# Source0-md5: 90b81d3dc2969dce03fd7c460404f375
 Patch0:%{name}-plugins.patch
 URL:   http://trac.enlightenment.org/e/wiki/Ethumb
 BuildRequires: autoconf = 2.52


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/ethumb.git/commitdiff/bae48a4ec322bad6a40359c8972b309c2abc0b07

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


DISTFILES: ethumb: ethumb-1.7.1.tar.bz2

2012-11-03 Thread qboosh

Files fetched: 1

STORED: http://download.enlightenment.org/releases/ethumb-1.7.1.tar.bz2
90b81d3dc2969dce03fd7c460404f375  ethumb-1.7.1.tar.bz2
Size: 378665 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/kde4-wallpapers] - up to 4.9.3

2012-11-03 Thread arekm
commit d49a1911292ee9d00fb9f0ea8348e4059aef9381
Author: Arkadiusz Miśkiewicz ar...@maven.pl
Date:   Sat Nov 3 21:27:30 2012 +0100

- up to 4.9.3

 kde4-wallpapers.spec | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/kde4-wallpapers.spec b/kde4-wallpapers.spec
index bb8c425..8f5e5ee 100644
--- a/kde4-wallpapers.spec
+++ b/kde4-wallpapers.spec
@@ -1,17 +1,17 @@
 # TODO:
 %defineorgname kde-wallpapers
 %define_state  stable
-%defineqtver   4.8.1
+%defineqtver   4.8.3
 
 Summary:   KDE 4 wallpapers
 Summary(pl.UTF-8): Tapety KDE 4
 Name:  kde4-wallpapers
-Version:   4.9.2
+Version:   4.9.3
 Release:   1
 License:   GPL v2+
 Group: X11/Applications
 Source0:   
ftp://ftp.kde.org/pub/kde/%{_state}/%{version}/src/%{orgname}-%{version}.tar.xz
-# Source0-md5: 066bdc6092cc1920cde659f2d53b6787
+# Source0-md5: 4b034583a40e83fe738f4ee05d1a3b57
 URL:   http://www.kde.org/
 Obsoletes: kde4-kdebase-workspace-wallpapers
 BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/kde4-wallpapers.git/commitdiff/d49a1911292ee9d00fb9f0ea8348e4059aef9381

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


DISTFILES: kde4-wallpapers: ERRORS: kde-wallpapers-4.9.3.tar.xz

2012-11-03 Thread arekm
wget -nv --no-check-certificate --user-agent=PLD/distfiles -O 
./tmp/b2808021-61a2-4299-80c4-c7f01502c726/4b034583a40e83fe738f4ee05d1a3b57/kde-wallpapers-4.9.3.tar.xz
 ftp://ftp.kde.org/pub/kde/stable/4.9.3/src/kde-wallpapers-4.9.3.tar.xz:
No such directory `pub/kde/stable/4.9.3/src'.



wget -nv --no-check-certificate --user-agent=PLD/distfiles -O 
./tmp/b2808021-61a2-4299-80c4-c7f01502c726/4b034583a40e83fe738f4ee05d1a3b57/kde-wallpapers-4.9.3.tar.xz
 ftp://ftp.kde.org/pub/kde/stable/4.9.3/src/kde-wallpapers-4.9.3.tar.xz:
exited with code 8 (0x00)

wget -nv --no-check-certificate --user-agent=PLD/distfiles --passive-ftp -O 
./tmp/b2808021-61a2-4299-80c4-c7f01502c726/4b034583a40e83fe738f4ee05d1a3b57/kde-wallpapers-4.9.3.tar.xz
 ftp://ftp.kde.org/pub/kde/stable/4.9.3/src/kde-wallpapers-4.9.3.tar.xz:
No such directory `pub/kde/stable/4.9.3/src'.



wget -nv --no-check-certificate --user-agent=PLD/distfiles --passive-ftp -O 
./tmp/b2808021-61a2-4299-80c4-c7f01502c726/4b034583a40e83fe738f4ee05d1a3b57/kde-wallpapers-4.9.3.tar.xz
 ftp://ftp.kde.org/pub/kde/stable/4.9.3/src/kde-wallpapers-4.9.3.tar.xz:
exited with code 8 (0x00)

FATAL: ftp://ftp.kde.org/pub/kde/stable/4.9.3/src/kde-wallpapers-4.9.3.tar.xz 
(4b034583a40e83fe738f4ee05d1a3b57) was not fetched (wget -nv 
--no-check-certificate --user-agent=PLD/distfiles -O 
./tmp/b2808021-61a2-4299-80c4-c7f01502c726/4b034583a40e83fe738f4ee05d1a3b57/kde-wallpapers-4.9.3.tar.xz
 ftp://ftp.kde.org/pub/kde/stable/4.9.3/src/kde-wallpapers-4.9.3.tar.xz: No 
such directory `pub/kde/stable/4.9.3/src'.


No such directory `pub/kde/stable/4.9.3/src'.


): file exists but has 0 length

Files fetched: 0



-- 
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/kde4-okular] - up to 4.9.3

2012-11-03 Thread arekm
commit 263f67934635e74ffe87063fa78d4911bdae72a5
Author: Arkadiusz Miśkiewicz ar...@maven.pl
Date:   Sat Nov 3 21:28:15 2012 +0100

- up to 4.9.3

 kde4-okular.spec | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/kde4-okular.spec b/kde4-okular.spec
index 27680c5..b197d7e 100644
--- a/kde4-okular.spec
+++ b/kde4-okular.spec
@@ -1,16 +1,16 @@
 %define_state  stable
 %defineorgname okular
-%defineqtver   4.8.1
+%defineqtver   4.8.3
 
 Summary:   K Desktop Environment - KDE universal document viewer
 Summary(pl.UTF-8): K Desktop Environment - Uniwersalna przeglądarka 
dokumentów dla KDE
 Name:  kde4-okular
-Version:   4.9.2
+Version:   4.9.3
 Release:   1
 License:   GPL
 Group: X11/Applications/Graphics
 Source0:   
ftp://ftp.kde.org/pub/kde/%{_state}/%{version}/src/%{orgname}-%{version}.tar.xz
-# Source0-md5: 0a82ef8b581038b5def0ffa44da6a44d
+# Source0-md5: 284ed7d7e29601905a0d943ef2ca253a
 URL:   http://www.kde.org/
 BuildRequires: chmlib-devel
 BuildRequires: djvulibre-devel


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/kde4-okular.git/commitdiff/263f67934635e74ffe87063fa78d4911bdae72a5

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


DISTFILES: kde4-okular: ERRORS: okular-4.9.3.tar.xz

2012-11-03 Thread arekm
wget -nv --no-check-certificate --user-agent=PLD/distfiles -O 
./tmp/9bbc3cda-7cc9-4af4-9442-db2c0fd1de1d/284ed7d7e29601905a0d943ef2ca253a/okular-4.9.3.tar.xz
 ftp://ftp.kde.org/pub/kde/stable/4.9.3/src/okular-4.9.3.tar.xz:
No such directory `pub/kde/stable/4.9.3/src'.



wget -nv --no-check-certificate --user-agent=PLD/distfiles -O 
./tmp/9bbc3cda-7cc9-4af4-9442-db2c0fd1de1d/284ed7d7e29601905a0d943ef2ca253a/okular-4.9.3.tar.xz
 ftp://ftp.kde.org/pub/kde/stable/4.9.3/src/okular-4.9.3.tar.xz:
exited with code 8 (0x00)

wget -nv --no-check-certificate --user-agent=PLD/distfiles --passive-ftp -O 
./tmp/9bbc3cda-7cc9-4af4-9442-db2c0fd1de1d/284ed7d7e29601905a0d943ef2ca253a/okular-4.9.3.tar.xz
 ftp://ftp.kde.org/pub/kde/stable/4.9.3/src/okular-4.9.3.tar.xz:
No such directory `pub/kde/stable/4.9.3/src'.



wget -nv --no-check-certificate --user-agent=PLD/distfiles --passive-ftp -O 
./tmp/9bbc3cda-7cc9-4af4-9442-db2c0fd1de1d/284ed7d7e29601905a0d943ef2ca253a/okular-4.9.3.tar.xz
 ftp://ftp.kde.org/pub/kde/stable/4.9.3/src/okular-4.9.3.tar.xz:
exited with code 8 (0x00)

FATAL: ftp://ftp.kde.org/pub/kde/stable/4.9.3/src/okular-4.9.3.tar.xz 
(284ed7d7e29601905a0d943ef2ca253a) was not fetched (wget -nv 
--no-check-certificate --user-agent=PLD/distfiles -O 
./tmp/9bbc3cda-7cc9-4af4-9442-db2c0fd1de1d/284ed7d7e29601905a0d943ef2ca253a/okular-4.9.3.tar.xz
 ftp://ftp.kde.org/pub/kde/stable/4.9.3/src/okular-4.9.3.tar.xz: No such 
directory `pub/kde/stable/4.9.3/src'.


No such directory `pub/kde/stable/4.9.3/src'.


): file exists but has 0 length

Files fetched: 0



-- 
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/kde4-kwallet] - up to 4.9.3

2012-11-03 Thread arekm
commit 8e2d040c266c9119bcf27ab0ab3d6b6dad26
Author: Arkadiusz Miśkiewicz ar...@maven.pl
Date:   Sat Nov 3 21:28:38 2012 +0100

- up to 4.9.3

 kde4-kwallet.spec | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/kde4-kwallet.spec b/kde4-kwallet.spec
index 1c0737d..78f3643 100644
--- a/kde4-kwallet.spec
+++ b/kde4-kwallet.spec
@@ -1,16 +1,16 @@
 #
 %define_state  stable
 %defineorgname kwallet
-%defineqtver   4.8.1
+%defineqtver   4.8.3
 
 Summary:   K Desktop Environment - KDE Wallet Manager
 Name:  kde4-kwallet
-Version:   4.9.2
+Version:   4.9.3
 Release:   1
 License:   GPL
 Group: X11/Applications
 Source0:   
ftp://ftp.kde.org/pub/kde/%{_state}/%{version}/src/%{orgname}-%{version}.tar.xz
-# Source0-md5: 4a45705db103f508269dca8fc4993c5a
+# Source0-md5: 9f07c53f4160bb508e7184183708a959
 URL:   http://www.kde.org/
 BuildRequires: kde4-kdebase-devel = %{version}
 Obsoletes: kde4-kdeutils-kwalletmanager


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/kde4-kwallet.git/commitdiff/8e2d040c266c9119bcf27ab0ab3d6b6dad26

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


[packages/kde4-kdebase-runtime] - up to 4.9.3

2012-11-03 Thread arekm
commit 4ae8070b6be0bd60b665617881117220d29c762b
Author: Arkadiusz Miśkiewicz ar...@maven.pl
Date:   Sat Nov 3 21:28:48 2012 +0100

- up to 4.9.3

 kde4-kdebase-runtime.spec | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/kde4-kdebase-runtime.spec b/kde4-kdebase-runtime.spec
index d69d4b1..a46baae 100644
--- a/kde4-kdebase-runtime.spec
+++ b/kde4-kdebase-runtime.spec
@@ -5,18 +5,18 @@
 #
 %define_state  stable
 %defineorgname kde-runtime
-%defineqtver   4.8.1
+%defineqtver   4.8.3
 %defineatticaver   0.2.0
 
 Summary:   KDE 4 base runtime components
 Summary(pl.UTF-8): Komponenty uruchomieniowe podstawowej części KDE 4
 Name:  kde4-kdebase-runtime
-Version:   4.9.2
+Version:   4.9.3
 Release:   1
 License:   GPL
 Group: X11/Applications
 Source0:   
ftp://ftp.kde.org/pub/kde/%{_state}/%{version}/src/%{orgname}-%{version}.tar.xz
-# Source0-md5: e5d8bcef6082478fe58d43471f4a6845
+# Source0-md5: 7fcd028d15c03d68409480fad473b994
 Source1:   kdebase-searchproviders.tar.bz2
 # Source1-md5: 126c3524b5367f5096a628acbf9dc86f
 Source2:   l10n-iso639-1


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/kde4-kdebase-runtime.git/commitdiff/4ae8070b6be0bd60b665617881117220d29c762b

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


DISTFILES: kde4-kwallet: ERRORS: kwallet-4.9.3.tar.xz

2012-11-03 Thread arekm
wget -nv --no-check-certificate --user-agent=PLD/distfiles -O 
./tmp/862cd0b2-8787-4020-b77e-a7cc4037f5d5/9f07c53f4160bb508e7184183708a959/kwallet-4.9.3.tar.xz
 ftp://ftp.kde.org/pub/kde/stable/4.9.3/src/kwallet-4.9.3.tar.xz:
No such directory `pub/kde/stable/4.9.3/src'.



wget -nv --no-check-certificate --user-agent=PLD/distfiles -O 
./tmp/862cd0b2-8787-4020-b77e-a7cc4037f5d5/9f07c53f4160bb508e7184183708a959/kwallet-4.9.3.tar.xz
 ftp://ftp.kde.org/pub/kde/stable/4.9.3/src/kwallet-4.9.3.tar.xz:
exited with code 8 (0x00)

wget -nv --no-check-certificate --user-agent=PLD/distfiles --passive-ftp -O 
./tmp/862cd0b2-8787-4020-b77e-a7cc4037f5d5/9f07c53f4160bb508e7184183708a959/kwallet-4.9.3.tar.xz
 ftp://ftp.kde.org/pub/kde/stable/4.9.3/src/kwallet-4.9.3.tar.xz:
No such directory `pub/kde/stable/4.9.3/src'.



wget -nv --no-check-certificate --user-agent=PLD/distfiles --passive-ftp -O 
./tmp/862cd0b2-8787-4020-b77e-a7cc4037f5d5/9f07c53f4160bb508e7184183708a959/kwallet-4.9.3.tar.xz
 ftp://ftp.kde.org/pub/kde/stable/4.9.3/src/kwallet-4.9.3.tar.xz:
exited with code 8 (0x00)

FATAL: ftp://ftp.kde.org/pub/kde/stable/4.9.3/src/kwallet-4.9.3.tar.xz 
(9f07c53f4160bb508e7184183708a959) was not fetched (wget -nv 
--no-check-certificate --user-agent=PLD/distfiles -O 
./tmp/862cd0b2-8787-4020-b77e-a7cc4037f5d5/9f07c53f4160bb508e7184183708a959/kwallet-4.9.3.tar.xz
 ftp://ftp.kde.org/pub/kde/stable/4.9.3/src/kwallet-4.9.3.tar.xz: No such 
directory `pub/kde/stable/4.9.3/src'.


No such directory `pub/kde/stable/4.9.3/src'.


): file exists but has 0 length

Files fetched: 0



-- 
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: kde4-kdebase-runtime: ERRORS: kde-runtime-4.9.3.tar.xz kdebase-searchproviders.tar.bz2

2012-11-03 Thread arekm
wget -nv --no-check-certificate --user-agent=PLD/distfiles -O 
./tmp/73def2d2-a9d0-4468-a8f4-1f573d79b5a4/7fcd028d15c03d68409480fad473b994/kde-runtime-4.9.3.tar.xz
 ftp://ftp.kde.org/pub/kde/stable/4.9.3/src/kde-runtime-4.9.3.tar.xz:
No such directory `pub/kde/stable/4.9.3/src'.



wget -nv --no-check-certificate --user-agent=PLD/distfiles -O 
./tmp/73def2d2-a9d0-4468-a8f4-1f573d79b5a4/7fcd028d15c03d68409480fad473b994/kde-runtime-4.9.3.tar.xz
 ftp://ftp.kde.org/pub/kde/stable/4.9.3/src/kde-runtime-4.9.3.tar.xz:
exited with code 8 (0x00)

wget -nv --no-check-certificate --user-agent=PLD/distfiles --passive-ftp -O 
./tmp/73def2d2-a9d0-4468-a8f4-1f573d79b5a4/7fcd028d15c03d68409480fad473b994/kde-runtime-4.9.3.tar.xz
 ftp://ftp.kde.org/pub/kde/stable/4.9.3/src/kde-runtime-4.9.3.tar.xz:
No such directory `pub/kde/stable/4.9.3/src'.



wget -nv --no-check-certificate --user-agent=PLD/distfiles --passive-ftp -O 
./tmp/73def2d2-a9d0-4468-a8f4-1f573d79b5a4/7fcd028d15c03d68409480fad473b994/kde-runtime-4.9.3.tar.xz
 ftp://ftp.kde.org/pub/kde/stable/4.9.3/src/kde-runtime-4.9.3.tar.xz:
exited with code 8 (0x00)

FATAL: ftp://ftp.kde.org/pub/kde/stable/4.9.3/src/kde-runtime-4.9.3.tar.xz 
(7fcd028d15c03d68409480fad473b994) was not fetched (wget -nv 
--no-check-certificate --user-agent=PLD/distfiles -O 
./tmp/73def2d2-a9d0-4468-a8f4-1f573d79b5a4/7fcd028d15c03d68409480fad473b994/kde-runtime-4.9.3.tar.xz
 ftp://ftp.kde.org/pub/kde/stable/4.9.3/src/kde-runtime-4.9.3.tar.xz: No such 
directory `pub/kde/stable/4.9.3/src'.


No such directory `pub/kde/stable/4.9.3/src'.


): file exists but has 0 length

Files fetched: 0

ALREADY GOT: no-url://kdebase-searchproviders.tar.bz2
126c3524b5367f5096a628acbf9dc86f  kdebase-searchproviders.tar.bz2


-- 
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/kde4-libkipi] - up to 4.9.3

2012-11-03 Thread arekm
commit 1c499a991f797aef52265103acd67764a0514a43
Author: Arkadiusz Miśkiewicz ar...@maven.pl
Date:   Sat Nov 3 21:32:32 2012 +0100

- up to 4.9.3

 kde4-libkipi.spec | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/kde4-libkipi.spec b/kde4-libkipi.spec
index c63491e..b0f7e1d 100644
--- a/kde4-libkipi.spec
+++ b/kde4-libkipi.spec
@@ -1,16 +1,16 @@
 %define _state  stable
 %defineorgname libkipi
-%define qtver   4.8.1
+%define qtver   4.8.3
 
 Summary:   Kipi library
 Summary(pl.UTF-8): Biblioteka kipi
 Name:  kde4-libkipi
-Version:   4.9.2
+Version:   4.9.3
 Release:   1
 License:   GPL v2+
 Group: X11/Libraries
 Source0:   
ftp://ftp.kde.org/pub/kde/%{_state}/%{version}/src/%{orgname}-%{version}.tar.xz
-# Source0-md5: b3b8d675b186ee479eecae38f313be3c
+# Source0-md5: 939d7123d7ef5b8a84326fb55c506ad9
 URL:   http://www.kde.org/
 BuildRequires: kde4-kdelibs-devel
 BuildRequires: rpmbuild(macros) = 1.164


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/kde4-libkipi.git/commitdiff/1c499a991f797aef52265103acd67764a0514a43

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


DISTFILES: kde4-libkipi: ERRORS: libkipi-4.9.3.tar.xz

2012-11-03 Thread arekm
wget -nv --no-check-certificate --user-agent=PLD/distfiles -O 
./tmp/2805a5aa-fb2d-41c6-92ca-0055bd8b974a/939d7123d7ef5b8a84326fb55c506ad9/libkipi-4.9.3.tar.xz
 ftp://ftp.kde.org/pub/kde/stable/4.9.3/src/libkipi-4.9.3.tar.xz:
No such directory `pub/kde/stable/4.9.3/src'.



wget -nv --no-check-certificate --user-agent=PLD/distfiles -O 
./tmp/2805a5aa-fb2d-41c6-92ca-0055bd8b974a/939d7123d7ef5b8a84326fb55c506ad9/libkipi-4.9.3.tar.xz
 ftp://ftp.kde.org/pub/kde/stable/4.9.3/src/libkipi-4.9.3.tar.xz:
exited with code 8 (0x00)

wget -nv --no-check-certificate --user-agent=PLD/distfiles --passive-ftp -O 
./tmp/2805a5aa-fb2d-41c6-92ca-0055bd8b974a/939d7123d7ef5b8a84326fb55c506ad9/libkipi-4.9.3.tar.xz
 ftp://ftp.kde.org/pub/kde/stable/4.9.3/src/libkipi-4.9.3.tar.xz:
No such directory `pub/kde/stable/4.9.3/src'.



wget -nv --no-check-certificate --user-agent=PLD/distfiles --passive-ftp -O 
./tmp/2805a5aa-fb2d-41c6-92ca-0055bd8b974a/939d7123d7ef5b8a84326fb55c506ad9/libkipi-4.9.3.tar.xz
 ftp://ftp.kde.org/pub/kde/stable/4.9.3/src/libkipi-4.9.3.tar.xz:
exited with code 8 (0x00)

FATAL: ftp://ftp.kde.org/pub/kde/stable/4.9.3/src/libkipi-4.9.3.tar.xz 
(939d7123d7ef5b8a84326fb55c506ad9) was not fetched (wget -nv 
--no-check-certificate --user-agent=PLD/distfiles -O 
./tmp/2805a5aa-fb2d-41c6-92ca-0055bd8b974a/939d7123d7ef5b8a84326fb55c506ad9/libkipi-4.9.3.tar.xz
 ftp://ftp.kde.org/pub/kde/stable/4.9.3/src/libkipi-4.9.3.tar.xz: No such 
directory `pub/kde/stable/4.9.3/src'.


No such directory `pub/kde/stable/4.9.3/src'.


): file exists but has 0 length

Files fetched: 0



-- 
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/kde4-kate] - up to 4.9.3

2012-11-03 Thread arekm
commit 634c4a8c9caafb42ccbf6de26d2c0f3031a44546
Author: Arkadiusz Miśkiewicz ar...@maven.pl
Date:   Sat Nov 3 21:33:32 2012 +0100

- up to 4.9.3

 kde4-kate.spec | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/kde4-kate.spec b/kde4-kate.spec
index a798781..643abf0 100644
--- a/kde4-kate.spec
+++ b/kde4-kate.spec
@@ -1,16 +1,16 @@
 %define_state  stable
 %defineorgname kate
-%defineqtver   4.8.1
+%defineqtver   4.8.3
 
 Summary:   K Desktop Environment - Advanced Text Editor
 Summary(pl.UTF-8): K Desktop Environment -  Zaawansowany edytor tekstu
 Name:  kde4-kate
-Version:   4.9.2
+Version:   4.9.3
 Release:   1
 License:   GPL
 Group: X11/Applications/Editors
 Source0:   
ftp://ftp.kde.org/pub/kde/%{_state}/%{version}/src/%{orgname}-%{version}.tar.xz
-# Source0-md5: a4e0704eb2d80119869f9d2a99eb7346
+# Source0-md5: db0c2696d6a9951a59a8d4d25c46c32e
 URL:   http://www.kde.org/
 BuildRequires: kde4-kdelibs-devel = %{version}
 BuildRequires: shared-mime-info


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/kde4-kate.git/commitdiff/634c4a8c9caafb42ccbf6de26d2c0f3031a44546

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


DISTFILES: kde4-kate: ERRORS: kate-4.9.3.tar.xz

2012-11-03 Thread arekm
wget -nv --no-check-certificate --user-agent=PLD/distfiles -O 
./tmp/6fc5948c-467a-4ec8-ac4d-fe4bfce4c4e9/db0c2696d6a9951a59a8d4d25c46c32e/kate-4.9.3.tar.xz
 ftp://ftp.kde.org/pub/kde/stable/4.9.3/src/kate-4.9.3.tar.xz:
No such directory `pub/kde/stable/4.9.3/src'.



wget -nv --no-check-certificate --user-agent=PLD/distfiles -O 
./tmp/6fc5948c-467a-4ec8-ac4d-fe4bfce4c4e9/db0c2696d6a9951a59a8d4d25c46c32e/kate-4.9.3.tar.xz
 ftp://ftp.kde.org/pub/kde/stable/4.9.3/src/kate-4.9.3.tar.xz:
exited with code 8 (0x00)

wget -nv --no-check-certificate --user-agent=PLD/distfiles --passive-ftp -O 
./tmp/6fc5948c-467a-4ec8-ac4d-fe4bfce4c4e9/db0c2696d6a9951a59a8d4d25c46c32e/kate-4.9.3.tar.xz
 ftp://ftp.kde.org/pub/kde/stable/4.9.3/src/kate-4.9.3.tar.xz:
No such directory `pub/kde/stable/4.9.3/src'.



wget -nv --no-check-certificate --user-agent=PLD/distfiles --passive-ftp -O 
./tmp/6fc5948c-467a-4ec8-ac4d-fe4bfce4c4e9/db0c2696d6a9951a59a8d4d25c46c32e/kate-4.9.3.tar.xz
 ftp://ftp.kde.org/pub/kde/stable/4.9.3/src/kate-4.9.3.tar.xz:
exited with code 8 (0x00)

FATAL: ftp://ftp.kde.org/pub/kde/stable/4.9.3/src/kate-4.9.3.tar.xz 
(db0c2696d6a9951a59a8d4d25c46c32e) was not fetched (wget -nv 
--no-check-certificate --user-agent=PLD/distfiles -O 
./tmp/6fc5948c-467a-4ec8-ac4d-fe4bfce4c4e9/db0c2696d6a9951a59a8d4d25c46c32e/kate-4.9.3.tar.xz
 ftp://ftp.kde.org/pub/kde/stable/4.9.3/src/kate-4.9.3.tar.xz: No such 
directory `pub/kde/stable/4.9.3/src'.


No such directory `pub/kde/stable/4.9.3/src'.


): file exists but has 0 length

Files fetched: 0



-- 
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/kde4-gwenview] - up to 4.9.3

2012-11-03 Thread arekm
commit a95cc20e9dab18849af1aa5229ca55bd58fe8ed2
Author: Arkadiusz Miśkiewicz ar...@maven.pl
Date:   Sat Nov 3 21:34:06 2012 +0100

- up to 4.9.3

 kde4-gwenview.spec | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/kde4-gwenview.spec b/kde4-gwenview.spec
index 3d041fb..ea5f38f 100644
--- a/kde4-gwenview.spec
+++ b/kde4-gwenview.spec
@@ -1,16 +1,16 @@
 %define_state  stable
 %defineorgname gwenview
-%defineqtver   4.8.1
+%defineqtver   4.8.3
 
 Summary:   K Desktop Environment - Simple image viewer
 Summary(pl.UTF-8): K Desktop Environment - Prosta przeglądarka obrazków
 Name:  kde4-gwenview
-Version:   4.9.2
+Version:   4.9.3
 Release:   1
 License:   GPL
 Group: X11/Applications/Graphics
 Source0:   
ftp://ftp.kde.org/pub/kde/%{_state}/%{version}/src/%{orgname}-%{version}.tar.xz
-# Source0-md5: 3f3721dcf7eaf9f4b099e26e63ea385b
+# Source0-md5: 95323d433a1c9b38b917dd3a743aefa1
 URL:   http://www.kde.org/
 BuildRequires: kde4-kdebase-devel
 BuildRequires: kde4-kdelibs-devel


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/kde4-gwenview.git/commitdiff/a95cc20e9dab18849af1aa5229ca55bd58fe8ed2

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


DISTFILES: kde4-gwenview: ERRORS: gwenview-4.9.3.tar.xz

2012-11-03 Thread arekm
wget -nv --no-check-certificate --user-agent=PLD/distfiles -O 
./tmp/62dede78-9e41-4035-b663-29f55d55031d/95323d433a1c9b38b917dd3a743aefa1/gwenview-4.9.3.tar.xz
 ftp://ftp.kde.org/pub/kde/stable/4.9.3/src/gwenview-4.9.3.tar.xz:
No such directory `pub/kde/stable/4.9.3/src'.



wget -nv --no-check-certificate --user-agent=PLD/distfiles -O 
./tmp/62dede78-9e41-4035-b663-29f55d55031d/95323d433a1c9b38b917dd3a743aefa1/gwenview-4.9.3.tar.xz
 ftp://ftp.kde.org/pub/kde/stable/4.9.3/src/gwenview-4.9.3.tar.xz:
exited with code 8 (0x00)

wget -nv --no-check-certificate --user-agent=PLD/distfiles --passive-ftp -O 
./tmp/62dede78-9e41-4035-b663-29f55d55031d/95323d433a1c9b38b917dd3a743aefa1/gwenview-4.9.3.tar.xz
 ftp://ftp.kde.org/pub/kde/stable/4.9.3/src/gwenview-4.9.3.tar.xz:
No such directory `pub/kde/stable/4.9.3/src'.



wget -nv --no-check-certificate --user-agent=PLD/distfiles --passive-ftp -O 
./tmp/62dede78-9e41-4035-b663-29f55d55031d/95323d433a1c9b38b917dd3a743aefa1/gwenview-4.9.3.tar.xz
 ftp://ftp.kde.org/pub/kde/stable/4.9.3/src/gwenview-4.9.3.tar.xz:
exited with code 8 (0x00)

FATAL: ftp://ftp.kde.org/pub/kde/stable/4.9.3/src/gwenview-4.9.3.tar.xz 
(95323d433a1c9b38b917dd3a743aefa1) was not fetched (wget -nv 
--no-check-certificate --user-agent=PLD/distfiles -O 
./tmp/62dede78-9e41-4035-b663-29f55d55031d/95323d433a1c9b38b917dd3a743aefa1/gwenview-4.9.3.tar.xz
 ftp://ftp.kde.org/pub/kde/stable/4.9.3/src/gwenview-4.9.3.tar.xz: No such 
directory `pub/kde/stable/4.9.3/src'.


No such directory `pub/kde/stable/4.9.3/src'.


): file exists but has 0 length

Files fetched: 0



-- 
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/kde4-kdebase-artwork] - up to 4.9.3

2012-11-03 Thread arekm
commit fcc684bb061af967a71557c31ba24609a9dd4602
Author: Arkadiusz Miśkiewicz ar...@maven.pl
Date:   Sat Nov 3 21:35:43 2012 +0100

- up to 4.9.3

 kde4-kdebase-artwork.spec | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/kde4-kdebase-artwork.spec b/kde4-kdebase-artwork.spec
index 972a0f6..58c9acc 100644
--- a/kde4-kdebase-artwork.spec
+++ b/kde4-kdebase-artwork.spec
@@ -1,16 +1,16 @@
 %define_state  stable
 %defineorgname kde-base-artwork
-%defineqtver   4.8.1
+%defineqtver   4.8.3
 
 Summary:   K Desktop Environment - base artwork
 Summary(pl.UTF-8): K Desktop Environment - podstawowe grafiki itp.
 Name:  kde4-kdebase-artwork
-Version:   4.9.2
+Version:   4.9.3
 Release:   1
 License:   LGPL
 Group: X11/Applications
 Source0:   
ftp://ftp.kde.org/pub/kde/%{_state}/%{version}/src/%{orgname}-%{version}.tar.xz
-# Source0-md5: afd6fefd03e56c3378288a68ba388243
+# Source0-md5: 6597d3d52d7fccd18dd83bec14960680
 URL:   http://www.kde.org/
 BuildRequires: QtCore-devel = %{qtver}
 BuildRequires: automoc4 = 0.9.88


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/kde4-kdebase-artwork.git/commitdiff/fcc684bb061af967a71557c31ba24609a9dd4602

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


DISTFILES: kde4-kdebase-artwork: ERRORS: kde-base-artwork-4.9.3.tar.xz

2012-11-03 Thread arekm
wget -nv --no-check-certificate --user-agent=PLD/distfiles -O 
./tmp/4545c0c2-622d-4aa4-8dad-25759b0413af/6597d3d52d7fccd18dd83bec14960680/kde-base-artwork-4.9.3.tar.xz
 ftp://ftp.kde.org/pub/kde/stable/4.9.3/src/kde-base-artwork-4.9.3.tar.xz:
No such directory `pub/kde/stable/4.9.3/src'.



wget -nv --no-check-certificate --user-agent=PLD/distfiles -O 
./tmp/4545c0c2-622d-4aa4-8dad-25759b0413af/6597d3d52d7fccd18dd83bec14960680/kde-base-artwork-4.9.3.tar.xz
 ftp://ftp.kde.org/pub/kde/stable/4.9.3/src/kde-base-artwork-4.9.3.tar.xz:
exited with code 8 (0x00)

wget -nv --no-check-certificate --user-agent=PLD/distfiles --passive-ftp -O 
./tmp/4545c0c2-622d-4aa4-8dad-25759b0413af/6597d3d52d7fccd18dd83bec14960680/kde-base-artwork-4.9.3.tar.xz
 ftp://ftp.kde.org/pub/kde/stable/4.9.3/src/kde-base-artwork-4.9.3.tar.xz:
No such directory `pub/kde/stable/4.9.3/src'.



wget -nv --no-check-certificate --user-agent=PLD/distfiles --passive-ftp -O 
./tmp/4545c0c2-622d-4aa4-8dad-25759b0413af/6597d3d52d7fccd18dd83bec14960680/kde-base-artwork-4.9.3.tar.xz
 ftp://ftp.kde.org/pub/kde/stable/4.9.3/src/kde-base-artwork-4.9.3.tar.xz:
exited with code 8 (0x00)

FATAL: ftp://ftp.kde.org/pub/kde/stable/4.9.3/src/kde-base-artwork-4.9.3.tar.xz 
(6597d3d52d7fccd18dd83bec14960680) was not fetched (wget -nv 
--no-check-certificate --user-agent=PLD/distfiles -O 
./tmp/4545c0c2-622d-4aa4-8dad-25759b0413af/6597d3d52d7fccd18dd83bec14960680/kde-base-artwork-4.9.3.tar.xz
 ftp://ftp.kde.org/pub/kde/stable/4.9.3/src/kde-base-artwork-4.9.3.tar.xz: No 
such directory `pub/kde/stable/4.9.3/src'.


No such directory `pub/kde/stable/4.9.3/src'.


): file exists but has 0 length

Files fetched: 0



-- 
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/kde4-kgpg] - up to 4.9.3

2012-11-03 Thread arekm
commit e820d0c83fccf579e1e1d3af9bc84eb6d37b0c7a
Author: Arkadiusz Miśkiewicz ar...@maven.pl
Date:   Sat Nov 3 21:36:15 2012 +0100

- up to 4.9.3

 kde4-kgpg.spec | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/kde4-kgpg.spec b/kde4-kgpg.spec
index 83144f3..55a11a8 100644
--- a/kde4-kgpg.spec
+++ b/kde4-kgpg.spec
@@ -1,16 +1,16 @@
 #
 %define_state  stable
 %defineorgname kgpg
-%defineqtver   4.8.1
+%defineqtver   4.8.3
 
 Summary:   K Desktop Environment - interface for GnuPG
 Name:  kde4-kgpg
-Version:   4.9.2
+Version:   4.9.3
 Release:   1
 License:   GPL
 Group: X11/Applications
 Source0:   
ftp://ftp.kde.org/pub/kde/%{_state}/%{version}/src/%{orgname}-%{version}.tar.xz
-# Source0-md5: 29f901f9961d67d19ee19928ad3a6001
+# Source0-md5: b706818cf54935b5db9983eafa42dab0
 URL:   http://www.kde.org/
 BuildRequires: kde4-kdebase-devel = %{version}
 Requires:  kde4-kdebase-workspace = %{version}


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/kde4-kgpg.git/commitdiff/e820d0c83fccf579e1e1d3af9bc84eb6d37b0c7a

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


[packages/kde4-ksnapshot] - up to 4.9.3

2012-11-03 Thread arekm
commit 3fb1fae0efa2ae94310d976248b76b62973d378a
Author: Arkadiusz Miśkiewicz ar...@maven.pl
Date:   Sat Nov 3 21:36:25 2012 +0100

- up to 4.9.3

 kde4-ksnapshot.spec | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/kde4-ksnapshot.spec b/kde4-ksnapshot.spec
index 5a7c468..ec5c3f9 100644
--- a/kde4-ksnapshot.spec
+++ b/kde4-ksnapshot.spec
@@ -1,16 +1,16 @@
 %define_state  stable
 %defineorgname ksnapshot
-%defineqtver   4.8.1
+%defineqtver   4.8.3
 
 Summary:   K Desktop Environment - Snap Shot
 Summary(pl.UTF-8): K Desktop Environment - Program do przechwytywania 
ekranu
 Name:  kde4-ksnapshot
-Version:   4.9.2
+Version:   4.9.3
 Release:   1
 License:   GPL
 Group: X11/Applications/Graphics
 Source0:   
ftp://ftp.kde.org/pub/kde/%{_state}/%{version}/src/%{orgname}-%{version}.tar.xz
-# Source0-md5: 7d96bf64381a13c974b9d6729a8acaf1
+# Source0-md5: 2feec35ca40ac863cd8a5ad2469f7683
 URL:   http://www.kde.org/
 BuildRequires: kde4-kdelibs-devel
 BuildRequires: libjpeg-devel


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/kde4-ksnapshot.git/commitdiff/3fb1fae0efa2ae94310d976248b76b62973d378a

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


DISTFILES: kde4-kgpg: ERRORS: kgpg-4.9.3.tar.xz

2012-11-03 Thread arekm
wget -nv --no-check-certificate --user-agent=PLD/distfiles -O 
./tmp/f8e83888-5149-490e-8a52-da66e6160721/b706818cf54935b5db9983eafa42dab0/kgpg-4.9.3.tar.xz
 ftp://ftp.kde.org/pub/kde/stable/4.9.3/src/kgpg-4.9.3.tar.xz:
No such directory `pub/kde/stable/4.9.3/src'.



wget -nv --no-check-certificate --user-agent=PLD/distfiles -O 
./tmp/f8e83888-5149-490e-8a52-da66e6160721/b706818cf54935b5db9983eafa42dab0/kgpg-4.9.3.tar.xz
 ftp://ftp.kde.org/pub/kde/stable/4.9.3/src/kgpg-4.9.3.tar.xz:
exited with code 8 (0x00)

wget -nv --no-check-certificate --user-agent=PLD/distfiles --passive-ftp -O 
./tmp/f8e83888-5149-490e-8a52-da66e6160721/b706818cf54935b5db9983eafa42dab0/kgpg-4.9.3.tar.xz
 ftp://ftp.kde.org/pub/kde/stable/4.9.3/src/kgpg-4.9.3.tar.xz:
No such directory `pub/kde/stable/4.9.3/src'.



wget -nv --no-check-certificate --user-agent=PLD/distfiles --passive-ftp -O 
./tmp/f8e83888-5149-490e-8a52-da66e6160721/b706818cf54935b5db9983eafa42dab0/kgpg-4.9.3.tar.xz
 ftp://ftp.kde.org/pub/kde/stable/4.9.3/src/kgpg-4.9.3.tar.xz:
exited with code 8 (0x00)

FATAL: ftp://ftp.kde.org/pub/kde/stable/4.9.3/src/kgpg-4.9.3.tar.xz 
(b706818cf54935b5db9983eafa42dab0) was not fetched (wget -nv 
--no-check-certificate --user-agent=PLD/distfiles -O 
./tmp/f8e83888-5149-490e-8a52-da66e6160721/b706818cf54935b5db9983eafa42dab0/kgpg-4.9.3.tar.xz
 ftp://ftp.kde.org/pub/kde/stable/4.9.3/src/kgpg-4.9.3.tar.xz: No such 
directory `pub/kde/stable/4.9.3/src'.


No such directory `pub/kde/stable/4.9.3/src'.


): file exists but has 0 length

Files fetched: 0



-- 
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: kde4-ksnapshot: ERRORS: ksnapshot-4.9.3.tar.xz

2012-11-03 Thread arekm
wget -nv --no-check-certificate --user-agent=PLD/distfiles -O 
./tmp/448c29d3-af72-4337-b84e-0e36615e508f/2feec35ca40ac863cd8a5ad2469f7683/ksnapshot-4.9.3.tar.xz
 ftp://ftp.kde.org/pub/kde/stable/4.9.3/src/ksnapshot-4.9.3.tar.xz:
No such directory `pub/kde/stable/4.9.3/src'.



wget -nv --no-check-certificate --user-agent=PLD/distfiles -O 
./tmp/448c29d3-af72-4337-b84e-0e36615e508f/2feec35ca40ac863cd8a5ad2469f7683/ksnapshot-4.9.3.tar.xz
 ftp://ftp.kde.org/pub/kde/stable/4.9.3/src/ksnapshot-4.9.3.tar.xz:
exited with code 8 (0x00)

wget -nv --no-check-certificate --user-agent=PLD/distfiles --passive-ftp -O 
./tmp/448c29d3-af72-4337-b84e-0e36615e508f/2feec35ca40ac863cd8a5ad2469f7683/ksnapshot-4.9.3.tar.xz
 ftp://ftp.kde.org/pub/kde/stable/4.9.3/src/ksnapshot-4.9.3.tar.xz:
No such directory `pub/kde/stable/4.9.3/src'.



wget -nv --no-check-certificate --user-agent=PLD/distfiles --passive-ftp -O 
./tmp/448c29d3-af72-4337-b84e-0e36615e508f/2feec35ca40ac863cd8a5ad2469f7683/ksnapshot-4.9.3.tar.xz
 ftp://ftp.kde.org/pub/kde/stable/4.9.3/src/ksnapshot-4.9.3.tar.xz:
exited with code 8 (0x00)

FATAL: ftp://ftp.kde.org/pub/kde/stable/4.9.3/src/ksnapshot-4.9.3.tar.xz 
(2feec35ca40ac863cd8a5ad2469f7683) was not fetched (wget -nv 
--no-check-certificate --user-agent=PLD/distfiles -O 
./tmp/448c29d3-af72-4337-b84e-0e36615e508f/2feec35ca40ac863cd8a5ad2469f7683/ksnapshot-4.9.3.tar.xz
 ftp://ftp.kde.org/pub/kde/stable/4.9.3/src/ksnapshot-4.9.3.tar.xz: No such 
directory `pub/kde/stable/4.9.3/src'.


No such directory `pub/kde/stable/4.9.3/src'.


): file exists but has 0 length

Files fetched: 0



-- 
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/kde4-kdenetwork] - up to 4.9.3.

2012-11-03 Thread arekm
commit bda40481eb47799e20725cafd369105baf4a5b03
Author: Arkadiusz Miśkiewicz ar...@maven.pl
Date:   Sat Nov 3 21:55:56 2012 +0100

- up to 4.9.3.

 kde4-kdenetwork.spec | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/kde4-kdenetwork.spec b/kde4-kdenetwork.spec
index e21dd05..2bc695c 100644
--- a/kde4-kdenetwork.spec
+++ b/kde4-kdenetwork.spec
@@ -7,19 +7,19 @@
 #
 %define_state  stable
 %defineorgname kdenetwork
-%defineqtver   4.8.1
+%defineqtver   4.8.3
 
 Summary:   K Desktop Environment - network applications
 Summary(es.UTF-8): K Desktop Environment - aplicaciones de red
 Summary(pl.UTF-8): K Desktop Environment - aplikacje sieciowe
 Summary(pt_BR.UTF-8):  K Desktop Environment - aplicações de rede
 Name:  kde4-kdenetwork
-Version:   4.9.2
+Version:   4.9.3
 Release:   1
 License:   GPL v2+
 Group: X11/Libraries
 Source0:   
ftp://ftp.kde.org/pub/kde/%{_state}/%{version}/src/%{orgname}-%{version}.tar.xz
-# Source0-md5: aa150f94cd57ed8f2b37d6b5d98f6d3f
+# Source0-md5: 1f6a2bfcd69698688037a26dc9ce504b
 Patch100:  %{name}-branch.diff
 Patch0:%{name}-FindLibgadu.patch
 Patch1:%{name}-gcc.patch


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/kde4-kdenetwork.git/commitdiff/bda40481eb47799e20725cafd369105baf4a5b03

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


DISTFILES: kde4-kdenetwork: ERRORS: kdenetwork-4.9.3.tar.xz

2012-11-03 Thread arekm
wget -nv --no-check-certificate --user-agent=PLD/distfiles -O 
./tmp/eb340228-38ca-4a93-9972-66f5cf5907ba/1f6a2bfcd69698688037a26dc9ce504b/kdenetwork-4.9.3.tar.xz
 ftp://ftp.kde.org/pub/kde/stable/4.9.3/src/kdenetwork-4.9.3.tar.xz:
No such directory `pub/kde/stable/4.9.3/src'.



wget -nv --no-check-certificate --user-agent=PLD/distfiles -O 
./tmp/eb340228-38ca-4a93-9972-66f5cf5907ba/1f6a2bfcd69698688037a26dc9ce504b/kdenetwork-4.9.3.tar.xz
 ftp://ftp.kde.org/pub/kde/stable/4.9.3/src/kdenetwork-4.9.3.tar.xz:
exited with code 8 (0x00)

wget -nv --no-check-certificate --user-agent=PLD/distfiles --passive-ftp -O 
./tmp/eb340228-38ca-4a93-9972-66f5cf5907ba/1f6a2bfcd69698688037a26dc9ce504b/kdenetwork-4.9.3.tar.xz
 ftp://ftp.kde.org/pub/kde/stable/4.9.3/src/kdenetwork-4.9.3.tar.xz:
No such directory `pub/kde/stable/4.9.3/src'.



wget -nv --no-check-certificate --user-agent=PLD/distfiles --passive-ftp -O 
./tmp/eb340228-38ca-4a93-9972-66f5cf5907ba/1f6a2bfcd69698688037a26dc9ce504b/kdenetwork-4.9.3.tar.xz
 ftp://ftp.kde.org/pub/kde/stable/4.9.3/src/kdenetwork-4.9.3.tar.xz:
exited with code 8 (0x00)

FATAL: ftp://ftp.kde.org/pub/kde/stable/4.9.3/src/kdenetwork-4.9.3.tar.xz 
(1f6a2bfcd69698688037a26dc9ce504b) was not fetched (wget -nv 
--no-check-certificate --user-agent=PLD/distfiles -O 
./tmp/eb340228-38ca-4a93-9972-66f5cf5907ba/1f6a2bfcd69698688037a26dc9ce504b/kdenetwork-4.9.3.tar.xz
 ftp://ftp.kde.org/pub/kde/stable/4.9.3/src/kdenetwork-4.9.3.tar.xz: No such 
directory `pub/kde/stable/4.9.3/src'.


No such directory `pub/kde/stable/4.9.3/src'.


): file exists but has 0 length

Files fetched: 0



-- 
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/elementary] - updated to 1.7.1 - this version builds with ewebkit r127150 snapshot

2012-11-03 Thread qboosh
commit 096175ec757505c229af96f9c9a29a0cac056d32
Author: Jakub Bogusz qbo...@pld-linux.org
Date:   Sun Nov 4 06:51:26 2012 +0100

- updated to 1.7.1
- this version builds with ewebkit r127150 snapshot

 elementary.spec | 11 +--
 1 file changed, 5 insertions(+), 6 deletions(-)
---
diff --git a/elementary.spec b/elementary.spec
index 8f48eb2..aedb7a7 100644
--- a/elementary.spec
+++ b/elementary.spec
@@ -1,11 +1,10 @@
 #
 # TODO: - elementary_testql searches for modules in ../lib not _libdir
 #  - plugins in separate packages
-#  - enable ewebkit when matching version is released
 #
 # Conditional build:
 %bcond_without static_libs # don't build static library
-%bcond_withewebkit # Web (WebKit) support
+%bcond_without ewebkit # Web (WebKit) support
 #
 
 %defineecore_ver   1.7.0
@@ -19,12 +18,12 @@
 Summary:   Basic widget set
 Summary(pl.UTF-8): Zestaw prostych widżetów
 Name:  elementary
-Version:   1.7.0
-Release:   4
+Version:   1.7.1
+Release:   1
 License:   LGPL v2.1
 Group: Libraries
 Source0:   
http://download.enlightenment.org/releases/%{name}-%{version}.tar.bz2
-# Source0-md5: d21610e65501591a69bb2c6c27bb3811
+# Source0-md5: 9f43658594d8e837773c8b6573b654dd
 URL:   http://trac.enlightenment.org/e/wiki/Elementary
 BuildRequires: e_dbus-devel = %{edbus_ver}
 BuildRequires: ecore-con-devel = %{ecore_ver}
@@ -46,7 +45,7 @@ BuildRequires:emotion-devel
 BuildRequires: ethumb-devel
 BuildRequires: evas-devel = %{evas_ver}
 BuildRequires: evas-loader-jpeg = %{evas_ver}
-%{?with_webkit:BuildRequires:  ewebkit-devel = 0-0.r95983.1}
+%{?with_webkit:BuildRequires:  ewebkit-devel = 0-0.r127150.1}
 BuildRequires: gettext-devel = 0.17
 BuildRequires: pkgconfig = 1:0.22
 # TODO: eweather, emap


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/elementary.git/commitdiff/096175ec757505c229af96f9c9a29a0cac056d32

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


DISTFILES: elementary: elementary-1.7.1.tar.bz2

2012-11-03 Thread qboosh

Files fetched: 1

STORED: http://download.enlightenment.org/releases/elementary-1.7.1.tar.bz2
9f43658594d8e837773c8b6573b654dd  elementary-1.7.1.tar.bz2
Size: 9303531 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