[packages/file] Created tag AC-branch

2014-03-31 Thread glen
The lightweight tag 'AC-branch' was created pointing to:

 3dcf03c... up to 5.17
___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


[packages/file] Deleted branch AC-branch

2014-03-31 Thread glen
The branch 'AC-branch' was deleted at cb9341396288a1d153e8fb5889822c531ccf4e8a.
___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


[packages/file] add python3 package python3-magic

2014-03-31 Thread glen
commit 779e000decfda9a8ba5339b45434e9138e548d14
Author: Elan Ruusamäe g...@delfi.ee
Date:   Mon Mar 31 10:48:00 2014 +0300

add python3 package python3-magic

 file.spec | 62 ++
 1 file changed, 54 insertions(+), 8 deletions(-)
---
diff --git a/file.spec b/file.spec
index 2a8a680..6d0d75f 100644
--- a/file.spec
+++ b/file.spec
@@ -1,6 +1,7 @@
 #
 # Conditional build:
-%bcond_without python  # don't build python-magic module
+%bcond_without python2 # don't build python-magic module for Python 2.x
+%bcond_without python3 # don't build python-magic module for Python 3.x
 %bcond_without static_libs # don't build static libraries
 %bcond_without tests   # don't perform make check
 
@@ -48,11 +49,16 @@ BuildRequires:  autoconf = 2.50
 BuildRequires: automake
 BuildRequires: libtool = 2:2.0
 BuildRequires: rpmbuild(macros) = 1.453
-%if %{with python}
+%if %{with python2}
 BuildRequires: python-devel
 BuildRequires: python-modules
 BuildRequires: rpm-pythonprov
 %endif
+%if %{with python3}
+BuildRequires: python3-devel
+BuildRequires: python3-modules
+BuildRequires: rpm-pythonprov
+%endif
 BuildRequires: zlib-devel
 Requires:  libmagic = %{version}-%{release}
 Conflicts: rpm-build  4.4.1-9
@@ -236,7 +242,7 @@ Summary:Python bindings for libmagic
 Summary(pl.UTF-8): Wiązania Pythona dla libmagic
 Group: Libraries/Python
 Requires:  libmagic = %{version}-%{release}
-%pyrequires_eq python-libs
+Requires:  python-libs
 
 %description -n python-magic
 Python bindings for libmagic.
@@ -244,6 +250,19 @@ Python bindings for libmagic.
 %description -n python-magic -l pl.UTF-8
 Wiązania Pythona dla libmagic.
 
+%package -n python3-magic
+Summary:   Python bindings for libmagic
+Summary(pl.UTF-8): Wiązania Pythona dla libmagic
+Group: Libraries/Python
+Requires:  libmagic = %{version}-%{release}
+Requires:  python-libs
+
+%description -n python3-magic
+Python bindings for libmagic.
+
+%description -n python3-magic -l pl.UTF-8
+Wiązania Pythona dla libmagic.
+
 %prep
 %setup -q
 %patch0 -p1
@@ -260,6 +279,10 @@ cp -p %{SOURCE2} magic/Magdir/zisofs
 
 rm -f magic/Magdir/{*.orig,*~}
 
+%if %{with python3}
+cp -a python py3
+%endif
+
 %build
 %{__libtoolize}
 %{__aclocal}
@@ -273,11 +296,16 @@ rm -f magic/Magdir/{*.orig,*~}
 
 %{__make}
 
-%if %{with python}
+%if %{with python2}
 cd python
 %{__python} setup.py build
 cd ..
 %endif
+%if %{with python3}
+cd py3
+%{__python3} setup.py build
+cd ..
+%endif
 
 %if %{with tests}
 %{__make} check
@@ -294,15 +322,24 @@ mv $RPM_BUILD_ROOT%{_libdir}/libmagic.so.* 
$RPM_BUILD_ROOT/%{_lib}
 ln -sf /%{_lib}/$(basename $RPM_BUILD_ROOT/%{_lib}/libmagic.so.*.*.*) \
 $RPM_BUILD_ROOT%{_libdir}/libmagic.so
 
-%if %{with python}
+%if %{with python2}
 cd python
 %{__python} setup.py install \
-   --root=$RPM_BUILD_ROOT \
-   --optimize=2
+   --optimize=2 \
+   --root=$RPM_BUILD_ROOT
 cd ..
 %py_postclean
 %endif
 
+%if %{with python3}
+cd py3
+%{__python3} setup.py install \
+   --optimize=2 \
+   --skip-build \
+   --root=$RPM_BUILD_ROOT
+cd ..
+%endif
+
 awk -f %{SOURCE4}  $RPM_BUILD_ROOT%{_datadir}/misc/magic  
$RPM_BUILD_ROOT%{_datadir}/misc/magic.mime
 ln -s misc $RPM_BUILD_ROOT%{_datadir}/file
 
@@ -365,7 +402,7 @@ fi
 %{_libdir}/libmagic.a
 %endif
 
-%if %{with python}
+%if %{with python3}
 %files -n python-magic
 %defattr(644,root,root,755)
 %doc python/README python/example.py
@@ -374,3 +411,12 @@ fi
 %endif
 %{py_sitescriptdir}/magic.py[co]
 %endif
+
+%if %{with_python3}
+%files -n python3-magic
+%defattr(644,root,root,755)
+%doc python/README python/example.py
+%{py3_sitescriptdir}/magic.py
+%{py3_sitescriptdir}/__pycache__/magic.*.py[co]
+%{py3_sitescriptdir}/Magic_file_extensions-*.egg-info
+%endif


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/file.git/commitdiff/779e000decfda9a8ba5339b45434e9138e548d14

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


[packages/python-virtualenv] - add all standard dynamic modules from lib-dynload to avoid more cherry-picking - rel 3

2014-03-31 Thread baggins
commit 4e12c718cf35a2cc1c5247c9c62bd10729890644
Author: Jan Rękorajski bagg...@pld-linux.org
Date:   Mon Mar 31 11:57:57 2014 +0200

- add all standard dynamic modules from lib-dynload to avoid more 
cherry-picking
- rel 3

 python-virtualenv.spec |  2 +-
 virtualenv-pld.patch   | 72 +-
 2 files changed, 66 insertions(+), 8 deletions(-)
---
diff --git a/python-virtualenv.spec b/python-virtualenv.spec
index e850a26..13fd2b3 100644
--- a/python-virtualenv.spec
+++ b/python-virtualenv.spec
@@ -2,7 +2,7 @@ Summary:Tool to create isolated Python environments
 Summary(pl.UTF-8): Narzędzie do tworzenia oddzielonych środowisk Pythona
 Name:  python-virtualenv
 Version:   1.11.4
-Release:   2
+Release:   3
 License:   MIT
 Group: Development/Languages
 Source0:   
https://pypi.python.org/packages/source/v/virtualenv/virtualenv-%{version}.tar.gz
diff --git a/virtualenv-pld.patch b/virtualenv-pld.patch
index 8b92b99..6e1 100644
--- a/virtualenv-pld.patch
+++ b/virtualenv-pld.patch
@@ -1,16 +1,74 @@
 --- virtualenv-1.8.4/virtualenv.py.orig2012-11-25 18:11:26.0 
+0100
 +++ virtualenv-1.8.4/virtualenv.py 2013-01-11 18:31:34.212018758 +0100
-@@ -72,7 +72,12 @@
+@@ -72,7 +72,70 @@
  'fnmatch', 'locale', 'encodings', 'codecs',
  'stat', 'UserDict', 'readline', 'copy_reg', 'types',
  're', 'sre', 'sre_parse', 'sre_constants', 'sre_compile',
 -'zlib']
-+'zlib', 'time', 'cStringIO', 'md5', '_hashlib', 
'_struct', 'bz2',
-+'_collections', 'operator', 'itertools', 'math', 
'binascii', 'atexit',
-+'_random', '_io', '_functools', 'array', '_socket', 
'_ssl', 'select',
-+'fcntl', 'cPickle', 'datetime', 'syslog', '_sqlite3', 
'unicodedata',
-+'parser', 'simplejson', 'multiprocessing', 
'_multiprocessing',
-+'_posixsubprocess', '_csv', 'pyexpat']
++'zlib',
++'_bisect',
++'_bsddb',
++'_codecs_cn',
++'_codecs_hk',
++'_codecs_iso2022',
++'_codecs_jp',
++'_codecs_kr',
++'_codecs_tw',
++'_collections',
++'_csv',
++'_ctypes',
++'_ctypes_test',
++'_curses',
++'_curses_panel',
++'_elementtree',
++'_functools',
++'_hashlib',
++'_heapq',
++'_hotshot',
++'_io',
++'_json',
++'_locale',
++'_lsprof',
++'_multibytecodec',
++'_multiprocessing',
++'_random',
++'_socket',
++'_sqlite3',
++'_ssl',
++'_struct',
++'_testcapi',
++'_tkinter',
++'array',
++'audioop',
++'binascii',
++'bz2',
++'cPickle',
++'cStringIO',
++'cmath',
++'crypt',
++'datetime',
++'dbm',
++'fcntl',
++'future_builtins',
++'gdbm',
++'grp',
++'itertools',
++'linuxaudiodev',
++'math',
++'mmap',
++'nis',
++'operator',
++'ossaudiodev',
++'parser',
++'pyexpat',
++'resource',
++'select',
++'spwd',
++'strop',
++'syslog',
++'termios',
++'time',
++'unicodedata']
  
  REQUIRED_FILES = ['lib-dynload', 'config']
  


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/python-virtualenv.git/commitdiff/4e12c718cf35a2cc1c5247c9c62bd10729890644

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


[packages/mpv] - up to 0.3.7

2014-03-31 Thread atler
commit bca444f732ad842ba1e9d81f6c50c64751e6304f
Author: Jan Palus at...@pld-linux.org
Date:   Mon Mar 31 11:58:37 2014 +0200

- up to 0.3.7

 mpv.spec | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/mpv.spec b/mpv.spec
index cfeda97..e0c408a 100644
--- a/mpv.spec
+++ b/mpv.spec
@@ -1,11 +1,11 @@
 Summary:   Movie player based on MPlayer and mplayer2
 Name:  mpv
-Version:   0.3.6
-Release:   2
+Version:   0.3.7
+Release:   1
 License:   GPL v2+
 Group: Applications/Multimedia
 Source0:   
http://github.com/mpv-player/mpv/archive/v%{version}.tar.gz?/%{name}-%{version}.tar.gz
-# Source0-md5: 11a8bb5f10056b7cc0dbedd38fe6e581
+# Source0-md5: 0e1398c324775998b0e60fdb11b9e06d
 Source1:   %{name}.conf
 URL:   http://mpv.io/
 BuildRequires: Mesa-libwayland-egl-devel = 9.0.0


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/mpv.git/commitdiff/bca444f732ad842ba1e9d81f6c50c64751e6304f

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


DISTFILES: mpv: mpv-0.3.7.tar.gz

2014-03-31 Thread atler

Files fetched: 1

STORED: http://github.com/mpv-player/mpv/archive/v0.3.7.tar.gz?/mpv-0.3.7.tar.gz
0e1398c324775998b0e60fdb11b9e06d  mpv-0.3.7.tar.gz
Size: 2520085 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/openslp] - updated to 2.0.0 - moved library to / (for open-iscsi) - verbose files - no bash for init script

2014-03-31 Thread baggins
commit 077323c76f0a9ba5670bd46b12320badb99857fa
Author: Jan Rękorajski bagg...@pld-linux.org
Date:   Mon Mar 31 13:41:17 2014 +0200

- updated to 2.0.0
- moved library to / (for open-iscsi)
- verbose files
- no bash for init script

 openslp-build.patch | 11 +++
 openslp-opt.patch   | 50 ++
 openslp.init|  6 ++
 openslp.spec| 35 +--
 4 files changed, 60 insertions(+), 42 deletions(-)
---
diff --git a/openslp.spec b/openslp.spec
index 228bcfb..b805647 100644
--- a/openslp.spec
+++ b/openslp.spec
@@ -6,15 +6,15 @@ Summary(it.UTF-8):Implementazione open source del Service 
Location Protocol V2
 Summary(pl.UTF-8): Otwarta implementacja Service Location Protocol V2
 Summary(pt.UTF-8): Implementação 'open source' do protocolo Service 
Location Protocol V2
 Name:  openslp
-# note: 1.3.0 is development release _equal_ to 1.2.0
-Version:   1.2.1
-Release:   5
+Version:   2.0.0
+Release:   1
 License:   LGPL
 Group: Libraries
-Source0:   http://dl.sourceforge.net/openslp/%{name}-%{version}.tar.gz
-# Source0-md5: ffd1b44017281dd00ed2c4d32330
+Source0:   
http://download.sourceforge.net/openslp/%{name}-%{version}.tar.gz
+# Source0-md5: 18cf7940bcc444e32592cf34e84f833f
 Source1:   %{name}.init
 Patch0:%{name}-opt.patch
+Patch1:%{name}-build.patch
 URL:   http://www.openslp.org/
 BuildRequires: autoconf = 2.50
 BuildRequires: automake
@@ -129,6 +129,7 @@ Biblioteki statyczne OpenSLP.
 %prep
 %setup -q
 %patch0 -p1
+%patch1 -p1
 
 %build
 %{__libtoolize}
@@ -138,19 +139,24 @@ Biblioteki statyczne OpenSLP.
 %configure \
--enable-slpv1 \
--enable-slpv2-security \
-   --disable-predicates
+   --enable-async-api
 
 %{__make}
 
 %install
 rm -rf $RPM_BUILD_ROOT
-install -d $RPM_BUILD_ROOT/etc/{rc.d/init.d,sysconfig}
+install -d $RPM_BUILD_ROOT{/etc/{rc.d/init.d,sysconfig},/%{_lib}}
 
 %{__make} install \
DESTDIR=$RPM_BUILD_ROOT
 
 install %{SOURCE1} $RPM_BUILD_ROOT/etc/rc.d/init.d/slpd
 
+mv -f $RPM_BUILD_ROOT%{_libdir}/libslp.so.* $RPM_BUILD_ROOT/%{_lib}
+%{__rm} $RPM_BUILD_ROOT%{_libdir}/libslp.so
+ln -sf /%{_lib}/$(cd $RPM_BUILD_ROOT/%{_lib}; echo lib*.so.*.*) \
+   $RPM_BUILD_ROOT%{_libdir}/libslp.so
+
 %clean
 rm -rf $RPM_BUILD_ROOT
 
@@ -174,8 +180,9 @@ fi
 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/slp.conf
 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/slp.reg
 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/slp.spi
-%attr(755,root,root) %{_bindir}/*
-%attr(755,root,root) %{_libdir}/lib*.so.*.*
+%attr(755,root,root) %{_bindir}/slptool
+%attr(755,root,root) /%{_lib}/libslp.so.*.*.*
+%attr(755,root,root) %ghost /%{_lib}/libslp.so.1
 
 %files server
 %defattr(644,root,root,755)
@@ -184,11 +191,11 @@ fi
 
 %files devel
 %defattr(644,root,root,755)
-%doc doc/*
-%attr(755,root,root) %{_libdir}/lib*.so
-%{_libdir}/lib*.la
-%{_includedir}/*
+%doc doc/doc/html/* doc/doc/rfc/* doc/doc/security
+%attr(755,root,root) %{_libdir}/libslp.so
+%{_libdir}/libslp.la
+%{_includedir}/slp.h
 
 %files static
 %defattr(644,root,root,755)
-%{_libdir}/lib*.a
+%{_libdir}/libslp.a
diff --git a/openslp-build.patch b/openslp-build.patch
new file mode 100644
index 000..c8bc647
--- /dev/null
+++ b/openslp-build.patch
@@ -0,0 +1,11 @@
+--- openslp-2.0.0/libslpattr/libslpattr_tiny.c~2012-11-28 
18:07:04.0 +0100
 openslp-2.0.0/libslpattr/libslpattr_tiny.c 2014-03-31 13:31:35.415660078 
+0200
+@@ -193,7 +193,7 @@
+ 
+ 
+ SLPError SLPAttrSet_opaque(SLPAttributes attr_h, const char * tag,
+-  const char * val, const unsigned int len, SLPInsertionPolicy policy)
++  const char * val, size_t len, SLPInsertionPolicy policy)
+ {
+return SLP_NOT_IMPLEMENTED;
+ }
diff --git a/openslp-opt.patch b/openslp-opt.patch
index 12db17c..cfddea8 100644
--- a/openslp-opt.patch
+++ b/openslp-opt.patch
@@ -1,25 +1,27 @@
 openslp-1.2.1/configure.in.orig2005-02-15 21:06:02.0 +0100
-+++ openslp-1.2.1/configure.in 2005-08-15 11:42:58.633764528 +0200
-@@ -129,9 +129,6 @@
- if test X$debug = Xyes; then
-CFLAGS=$CFLAGS -Werror
- fi
--if test X$debug = Xno; then 
--   OPTFLAGS=-O3
--fi
- 
+--- openslp-1.2.1/configure.ac.orig2005-02-15 21:06:02.0 +0100
 openslp-1.2.1/configure.ac 2005-08-15 11:42:58.633764528 +0200
+@@ -29,9 +29,9 @@
+ #
+ # Checks for libraries
+ #
+-AC_CHECK_LIB([resolv], [inet_aton])
+-AC_CHECK_LIB([socket], [socket])
+-AC_CHECK_LIB([nsl], [gethostbyname])
++AC_SEARCH_LIBS([inet_aton], [resolv])
++AC_SEARCH_LIBS([socket], [socket])
++AC_SEARCH_LIBS([gethostbyname], [nsl])
+ AC_CHECK_LIB([m], [log10])
+ AC_CHECK_LIB([pthread], [pthread_create])
+ 
+@@ -213,11 +213,6 @@
+   #   disable optimization for debug builds
+   #   enable high-level optimizations for 

DISTFILES: openslp: openslp-2.0.0.tar.gz

2014-03-31 Thread baggins

Files fetched: 1

STORED: http://download.sourceforge.net/openslp/openslp-2.0.0.tar.gz
18cf7940bcc444e32592cf34e84f833f  openslp-2.0.0.tar.gz
Size: 5424646 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/sphinx] Deleted tag SPHINX_0_9

2014-03-31 Thread glen
The lighweight tag 'SPHINX_0_9' was deleted. It previously pointed to:

 bd84607... - add include support from main config; trigger included, b
___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


[packages/sphinx] Created branch SPHINX_0_9

2014-03-31 Thread glen
The branch 'SPHINX_0_9' was created pointing to:

 bd84607... - add include support from main config; trigger included, b

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


[packages/sphinx/SPHINX_0_9] disable am -Werror

2014-03-31 Thread glen
commit 8d1385a0b65781b4d7945413853bc516b9487bdb
Author: Elan Ruusamäe g...@delfi.ee
Date:   Mon Mar 31 12:17:05 2014 +

disable am -Werror

 sphinx.spec | 2 ++
 1 file changed, 2 insertions(+)
---
diff --git a/sphinx.spec b/sphinx.spec
index 44d5cba..a485003 100644
--- a/sphinx.spec
+++ b/sphinx.spec
@@ -160,6 +160,8 @@ sed -i -e '
s#@CONFDIR@/data/#/var/lib/sphinx/#g
 ' sphinx*.conf.in
 
+sed -i -e '/AM_INIT_AUTOMAKE/ s/-Werror//' configure.ac
+
 %build
 %{__aclocal}
 %{__autoconf}


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/sphinx.git/commitdiff/8d1385a0b65781b4d7945413853bc516b9487bdb

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


[packages/qt5-qttools] - updated to 5.2.1

2014-03-31 Thread qboosh
commit 3f428cb7a74acadf20e72a88c47e5ac625a4ef92
Author: Jakub Bogusz qbo...@pld-linux.org
Date:   Mon Mar 31 15:43:33 2014 +0200

- updated to 5.2.1

 qt5-qttools.spec | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/qt5-qttools.spec b/qt5-qttools.spec
index 6053373..67521b1 100644
--- a/qt5-qttools.spec
+++ b/qt5-qttools.spec
@@ -3,12 +3,12 @@
 Summary:   Development tools for Qt 5
 Summary(pl.UTF-8): Narzędzia programistyczne dla Qt 5
 Name:  qt5-%{orgname}
-Version:   5.2.0
+Version:   5.2.1
 Release:   1
 License:   LGPL v2.1 with Digia Qt LGPL Exception v1.1 or GPL v3.0
 Group: X11/Libraries
 Source0:   
http://download.qt-project.org/official_releases/qt/5.2/%{version}/submodules/%{orgname}-opensource-src-%{version}.tar.xz
-# Source0-md5: 76a0992967b6d02220ecb69a5ba04ef1
+# Source0-md5: f56b2e6c537f6853d9bf10380c39418b
 URL:   http://qt-project.org/
 BuildRequires: OpenGL-devel
 BuildRequires: Qt5Core-devel = %{qtbase_ver}


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/qt5-qttools.git/commitdiff/3f428cb7a74acadf20e72a88c47e5ac625a4ef92

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


DISTFILES: qt5-qttools: qttools-opensource-src-5.2.1.tar.xz

2014-03-31 Thread qboosh

Files fetched: 1

STORED: 
http://download.qt-project.org/official_releases/qt/5.2/5.2.1/submodules/qttools-opensource-src-5.2.1.tar.xz
f56b2e6c537f6853d9bf10380c39418b  qttools-opensource-src-5.2.1.tar.xz
Size: 8945736 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/bluez] - updated to 5.17

2014-03-31 Thread qboosh
commit 3baf53e4012ee5e37441c69fa9e22adc9b6ec54b
Author: Jakub Bogusz qbo...@pld-linux.org
Date:   Mon Mar 31 16:02:32 2014 +0200

- updated to 5.17

 bluez.spec | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/bluez.spec b/bluez.spec
index a056f7e..996829e 100644
--- a/bluez.spec
+++ b/bluez.spec
@@ -4,12 +4,12 @@
 Summary:   Bluetooth utilities
 Summary(pl.UTF-8): Narzędzia Bluetooth
 Name:  bluez
-Version:   5.15
+Version:   5.17
 Release:   1
 License:   GPL v2+
 Group: Applications/System
 Source0:   
https://www.kernel.org/pub/linux/bluetooth/%{name}-%{version}.tar.xz
-# Source0-md5: 92e29e51b361aab78cca30ef0cf8812e
+# Source0-md5: 5e6e41f0a275092ace303e813cd6f33b
 Source1:   %{name}.init
 Source2:   %{name}.sysconfig
 Patch0:%{name}-wacom-mode-2.patch


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/bluez.git/commitdiff/3baf53e4012ee5e37441c69fa9e22adc9b6ec54b

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


DISTFILES: bluez: bluez-5.17.tar.xz

2014-03-31 Thread qboosh

Files fetched: 1

STORED: https://www.kernel.org/pub/linux/bluetooth/bluez-5.17.tar.xz
5e6e41f0a275092ace303e813cd6f33b  bluez-5.17.tar.xz
Size: 1292244 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/dconf] - include _datadir/dconf/profile dir; rel. 2

2014-03-31 Thread kiesiu
commit 8b267a87bc3300a3b74ad4d92c47a18dfeaca57e
Author: Łukasz Kieś kie...@pld-linux.org
Date:   Mon Mar 31 16:17:16 2014 +0200

- include _datadir/dconf/profile dir; rel. 2

 dconf.spec | 5 -
 1 file changed, 4 insertions(+), 1 deletion(-)
---
diff --git a/dconf.spec b/dconf.spec
index 877922e..ce9ed87 100644
--- a/dconf.spec
+++ b/dconf.spec
@@ -7,7 +7,7 @@ Summary:Low-level configuration system
 Summary(pl.UTF-8): Niskopoziomowy system konfiguracji
 Name:  dconf
 Version:   0.20.0
-Release:   1
+Release:   2
 License:   LGPL v2+
 Group: Libraries
 Source0:   
http://ftp.gnome.org/pub/GNOME/sources/dconf/0.20/%{name}-%{version}.tar.xz
@@ -130,6 +130,7 @@ API dconf dla języka Vala.
 rm -rf $RPM_BUILD_ROOT
 
 install -d $RPM_BUILD_ROOT%{_sysconfdir}/dconf/{db,profile}
+install -d $RPM_BUILD_ROOT%{_datadir}/dconf/profile
 
 %{__make} install \
DESTDIR=$RPM_BUILD_ROOT
@@ -180,6 +181,8 @@ umask 022
 %dir %{_sysconfdir}/dconf
 %dir %{_sysconfdir}/dconf/db
 %dir %{_sysconfdir}/dconf/profile
+%dir %{_datadir}/dconf
+%dir %{_datadir}/dconf/profile
 %{_mandir}/man1/dconf-service.1*
 %{_mandir}/man1/dconf.1*
 %{_mandir}/man7/dconf.7*


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/dconf.git/commitdiff/8b267a87bc3300a3b74ad4d92c47a18dfeaca57e

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


[packages/solr] Updated tag AC-branch

2014-03-31 Thread glen
The lightweight tag 'AC-branch' was updated to point to:

 179753b... nail logging: install all slf jars, depend on log4j

It previously pointed to:

 a564228... up to 4.6.0

NOTE: People pulling from the repository will not get the new tag.
___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


[packages/eog] - updated to 3.12.0

2014-03-31 Thread kiesiu
commit a126e31bf9e7906754037a47381419d460469024
Author: Łukasz Kieś kie...@pld-linux.org
Date:   Mon Mar 31 16:35:22 2014 +0200

- updated to 3.12.0

 eog.spec | 22 +++---
 1 file changed, 11 insertions(+), 11 deletions(-)
---
diff --git a/eog.spec b/eog.spec
index 793cff6..633ca9d 100644
--- a/eog.spec
+++ b/eog.spec
@@ -6,33 +6,32 @@ Summary:  The Eye of GNOME image viewer
 Summary(pl.UTF-8): Oko GNOME - przeglądarka obrazków
 Summary(pt_BR.UTF-8):  Visualizador de imagem Eye of GNOME
 Name:  eog
-Version:   3.10.2
+Version:   3.12.0
 Release:   1
 License:   GPL v2+
 Group: X11/Applications/Graphics
-Source0:   
http://ftp.gnome.org/pub/GNOME/sources/eog/3.10/%{name}-%{version}.tar.xz
-# Source0-md5: 2805026e43e444b7006d9b2657a5b9ec
+Source0:   
http://ftp.gnome.org/pub/GNOME/sources/eog/3.12/%{name}-%{version}.tar.xz
+# Source0-md5: dbd5951ab0336312e04a04497831882c
 URL:   http://www.gnome.org/projects/eog/
 BuildRequires: autoconf = 2.59
 BuildRequires: automake = 1:1.11
 BuildRequires: docbook-dtd412-xml
 BuildRequires: exempi-devel = 1.99.5
 BuildRequires: gettext-devel
-BuildRequires: glib2-devel = 1:2.32.0
-BuildRequires: gnome-common = 2.24.0
+BuildRequires: glib2-devel = 1:2.38.0
 BuildRequires: gnome-desktop-devel = 3.2.0
 BuildRequires: gnome-icon-theme = 3.0.0
 BuildRequires: gobject-introspection-devel = 0.10.0
 BuildRequires: gsettings-desktop-schemas-devel = 3.4.0
-BuildRequires: gtk+3-devel = 3.8.0
-%{?with_apidocs:BuildRequires: gtk-doc = 1.9}
-BuildRequires: intltool = 0.40.0
+BuildRequires: gtk+3-devel = 3.10.6
+%{?with_apidocs:BuildRequires: gtk-doc = 1.16}
+BuildRequires: intltool = 0.50.1
 BuildRequires: lcms2-devel
 BuildRequires: libexif-devel = 1:0.6.14
 BuildRequires: libjpeg-devel
 BuildRequires: libpeas-gtk-devel = 1.0.0
 BuildRequires: librsvg-devel = 2.36.2
-BuildRequires: libtool
+BuildRequires: libtool = 2.2.6
 BuildRequires: libxml2-devel = 1:2.7.0
 BuildRequires: pkgconfig = 0.9.0
 BuildRequires: rpmbuild(find_lang) = 1.23
@@ -42,7 +41,7 @@ BuildRequires:tar = 1:1.22
 BuildRequires: xz
 BuildRequires: yelp-tools
 BuildRequires: zlib-devel
-Requires(post,postun): glib2 = 1:2.32.0
+Requires(post,postun): glib2 = 1:2.38.0
 Requires(post,postun): desktop-file-utils
 Requires(post,postun): gtk-update-icon-cache
 Requires:  gnome-icon-theme = 3.0.0
@@ -67,7 +66,7 @@ Summary:  Header files for eog
 Summary(pl.UTF-8): Pliki nagłówkowe eog
 Group: X11/Development/Libraries
 Requires:  %{name} = %{version}-%{release}
-Requires:  gtk+3-devel = 3.8.0
+Requires:  gtk+3-devel = 3.10.6
 
 %description devel
 Header files for eog.
@@ -148,6 +147,7 @@ rm -rf $RPM_BUILD_ROOT
 %{_iconsdir}/hicolor/*/*/*
 %{_datadir}/%{name}
 %{_datadir}/GConf/gsettings/eog.convert
+%{_datadir}/appdata/eog.appdata.xml
 %{_datadir}/glib-2.0/schemas/org.gnome.eog.enums.xml
 %{_datadir}/glib-2.0/schemas/org.gnome.eog.gschema.xml
 %{_desktopdir}/eog.desktop


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/eog.git/commitdiff/a126e31bf9e7906754037a47381419d460469024

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


[packages/tomcat] ac compatible logrotate

2014-03-31 Thread glen
commit e1e82164225fe660b37b98fde0158a23f4566180
Author: Elan Ruusamäe g...@delfi.ee
Date:   Mon Mar 31 17:36:49 2014 +0300

ac compatible logrotate

 tomcat.spec | 10 --
 1 file changed, 8 insertions(+), 2 deletions(-)
---
diff --git a/tomcat.spec b/tomcat.spec
index 682addc..d2a68ce 100644
--- a/tomcat.spec
+++ b/tomcat.spec
@@ -15,7 +15,7 @@ Summary:  Web server and Servlet/JSP Engine, RI for 
Servlet %{servletapiver}/JSP
 Summary(pl.UTF-8): Serwer www i silnik Servlet/JSP będący wzorcową 
implementacją API Servlet %{servletapiver}/JSP %{jspapiver}
 Name:  tomcat
 Version:   7.0.52
-Release:   2
+Release:   3
 License:   Apache v2.0
 Group: Networking/Daemons/Java
 Source0:   
http://www.apache.org/dist/tomcat/tomcat-7/v%{version}/src/apache-%{name}-%{version}-src.tar.gz
@@ -55,8 +55,9 @@ BuildRequires:java-log4j
 BuildRequires: java-mail
 BuildRequires: jdk
 BuildRequires: jpackage-utils
+BuildRequires: rpm = 4.4.9-56
 BuildRequires: rpm-javaprov
-BuildRequires: rpmbuild(macros) = 1.553
+BuildRequires: rpmbuild(macros) = 1.657
 BuildRequires: sed = 4.0
 Requires(post,preun):  /sbin/chkconfig
 Requires(postun):  /usr/sbin/groupdel
@@ -86,7 +87,9 @@ Provides: group(tomcat)
 Provides:  user(tomcat)
 Obsoletes: apache-tomcat
 Obsoletes: jakarta-tomcat
+%if %{pld_release} != ac
 Conflicts: logrotate  3.8.0
+%endif
 Conflicts: tomcat-native  %{tomcatnatver}
 BuildArch: noarch
 BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
@@ -346,6 +349,9 @@ cp -p %{SOURCE12} 
$RPM_BUILD_ROOT%{_sysconfdir}/%{name}/Catalina/localhost/manag
 cp -p %{SOURCE13} 
$RPM_BUILD_ROOT%{_sysconfdir}/%{name}/Catalina/localhost/host-manager.xml
 cp -p %{SOURCE14} 
$RPM_BUILD_ROOT%{_sysconfdir}/%{name}/Catalina/localhost/examples.xml
 cp -p %{SOURCE15} $RPM_BUILD_ROOT/etc/logrotate.d/%{name}
+%if %{pld_release} == ac
+%{__sed} -i -e '/su/d' $RPM_BUILD_ROOT/etc/logrotate.d/%{name}
+%endif
 cp -p %{SOURCE16} $RPM_BUILD_ROOT%{_sysconfdir}/%{name}
 
 cp -a bin lib webapps $TOMCATDIR


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/tomcat.git/commitdiff/e1e82164225fe660b37b98fde0158a23f4566180

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


DISTFILES: eog: eog-3.12.0.tar.xz

2014-03-31 Thread kiesiu

Files fetched: 1

STORED: http://ftp.gnome.org/pub/GNOME/sources/eog/3.12/eog-3.12.0.tar.xz
dbd5951ab0336312e04a04497831882c  eog-3.12.0.tar.xz
Size: 3572452 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/tomcat] Updated tag AC-branch

2014-03-31 Thread glen
The lightweight tag 'AC-branch' was updated to point to:

 e1e8216... ac compatible logrotate

It previously pointed to:

 cd89bf6... package /var/log/archive/tomcat dir

NOTE: People pulling from the repository will not get the new tag.
___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


[packages/tinyproxy] Applied upstream

2014-03-31 Thread matkor
commit d8aa8933406a9a0cbccc1536918fac43438e2808
Author: Mateusz Korniak mat...@pld-linux.org
Date:   Mon Mar 31 16:42:56 2014 +0200

Applied upstream

 tinyproxy-config.patch | 21 -
 1 file changed, 21 deletions(-)
---
diff --git a/tinyproxy-config.patch b/tinyproxy-config.patch
deleted file mode 100644
index 0511ead..000
--- a/tinyproxy-config.patch
+++ /dev/null
@@ -1,21 +0,0 @@
-diff -uNr tinyproxy-1.7.0/doc/tinyproxy.conf 
tinyproxy-1.7.0-new/doc/tinyproxy.conf
 tinyproxy-1.7.0/doc/tinyproxy.conf Mon Jan 26 19:56:25 2004
-+++ tinyproxy-1.7.0-new/doc/tinyproxy.conf Thu Feb  5 20:25:10 2004
-@@ -10,7 +10,7 @@
- # Please note that you may not use UID/GID's here.  
- #
- User nobody 
--Group nogroup
-+Group nobody
- 
- #
- # Port: Specify the port which tinyproxy will listen on.  Please note
-@@ -189,7 +189,7 @@
- # tested against the controls based on order.
- #
- Allow 127.0.0.1
--Allow 192.168.1.0/25
-+#Allow 192.168.1.0/25
- 
- #
- # ViaProxyName: The Via header is required by the HTTP RFC, but using


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/tinyproxy.git/commitdiff/1bfb530852b91367bf02a924b1bc29c9311f7b84

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


[packages/tinyproxy] - Updated to 1.8.3.

2014-03-31 Thread matkor
commit 1bfb530852b91367bf02a924b1bc29c9311f7b84
Author: Mateusz Korniak mat...@pld-linux.org
Date:   Mon Mar 31 16:54:36 2014 +0200

- Updated to 1.8.3.

 tinyproxy.spec | 40 +++-
 1 file changed, 19 insertions(+), 21 deletions(-)
---
diff --git a/tinyproxy.spec b/tinyproxy.spec
index 6488635..3ec72ff 100644
--- a/tinyproxy.spec
+++ b/tinyproxy.spec
@@ -1,18 +1,16 @@
-# NOTE:
-# - acording to tinyproxy homepage this is unstable *development* version not
-#   suitable for production use. See TINYPROXY_1_6 branch for stable version
+# TODO: Review -ac.patch if it's still neded.
 Summary:   Small HTTP/SSL proxy daemon
 Summary(pl.UTF-8): Mały demon proxy
 Name:  tinyproxy
-Version:   1.7.0
-Release:   2
+Version:   1.8.3
+Release:   1
 License:   GPL v2
 Group: Networking/Daemons/HTTP
-Source0:   http://dl.sourceforge.net/tinyproxy/%{name}-%{version}.tar.gz
-# Source0-md5: ccacdd9cb093202886b6c7c9e453a804
+# Source0: http://dl.sourceforge.net/tinyproxy/%{name}-%{version}.tar.gz
+Source0:   https://files.banu.com/tinyproxy/1.8/%{name}-%{version}.tar.bz2
+# Source0-md5: 292ac51da8ad6ae883d4ebf56908400d
 Source1:   %{name}.init
-Patch0:%{name}-config.patch
-Patch1:%{name}-ac.patch
+## Patch1: %{name}-ac.patch
 URL:   http://tinyproxy.sourceforge.net/
 BuildRequires: autoconf
 BuildRequires: automake
@@ -32,8 +30,7 @@ przydatny w małych sieciach lokalnych.
 
 %prep
 %setup -q
-%patch0 -p1
-%patch1 -p1
+# %patch1 -p1
 
 %build
 %{__libtoolize}
@@ -41,20 +38,20 @@ przydatny w małych sieciach lokalnych.
 %{__autoconf}
 %{__autoheader}
 %{__automake}
-%configure \
-   --enable-transparent-proxy
+%configure  \
+   --enable-transparent
 
 %{__make}
 
 %install
 rm -rf $RPM_BUILD_ROOT
-install -d 
$RPM_BUILD_ROOT{%{_bindir},%{_mandir}/man8,%{_sysconfdir}/tinyproxy,/etc/rc.d/init.d,%{_datadir}/%{name}}
-install src/tinyproxy $RPM_BUILD_ROOT%{_bindir}
-install doc/tinyproxy.8 $RPM_BUILD_ROOT%{_mandir}/man8
-install doc/tinyproxy.conf $RPM_BUILD_ROOT%{_sysconfdir}/tinyproxy
-install doc/stats.html $RPM_BUILD_ROOT%{_datadir}/%{name}
-install doc/default.html $RPM_BUILD_ROOT%{_datadir}/%{name}
-install %{SOURCE1} $RPM_BUILD_ROOT/etc/rc.d/init.d/tinyproxy
+install -d 
$RPM_BUILD_ROOT{%{_bindir},%{_mandir}/man5,%{_mandir}/man8,%{_sysconfdir}/tinyproxy,/etc/rc.d/init.d,%{_datadir}/%{name}}
+cp -p src/tinyproxy $RPM_BUILD_ROOT%{_bindir}
+cp -p data/templates/*.html $RPM_BUILD_ROOT%{_datadir}/%{name}
+cp -p docs/man8/tinyproxy.8 $RPM_BUILD_ROOT%{_mandir}/man8
+cp -p docs/man5/tinyproxy.conf.5  $RPM_BUILD_ROOT%{_mandir}/man5
+cp -p etc/tinyproxy.conf $RPM_BUILD_ROOT%{_sysconfdir}/tinyproxy
+cp -p %{SOURCE1} $RPM_BUILD_ROOT/etc/rc.d/init.d/tinyproxy
 
 %clean
 rm -rf $RPM_BUILD_ROOT
@@ -77,4 +74,5 @@ fi
 %dir %{_sysconfdir}/tinyproxy
 %config(noreplace) %verify(not md5 mtime size) 
%{_sysconfdir}/tinyproxy/tinyproxy.conf
 %attr(754,root,root) /etc/rc.d/init.d/tinyproxy
-%{_mandir}/man8/tinyproxy*
+%{_mandir}/man8/tinyproxy.*
+%{_mandir}/man5/tinyproxy.conf.*


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/tinyproxy.git/commitdiff/1bfb530852b91367bf02a924b1bc29c9311f7b84

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


DISTFILES: tinyproxy: tinyproxy-1.8.3.tar.bz2

2014-03-31 Thread matkor

Files fetched: 1

STORED: https://files.banu.com/tinyproxy/1.8/tinyproxy-1.8.3.tar.bz2
292ac51da8ad6ae883d4ebf56908400d  tinyproxy-1.8.3.tar.bz2
Size: 202430 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/tomcat] Deleted tag AC-branch

2014-03-31 Thread glen
The lighweight tag 'AC-branch' was deleted. It previously pointed to:

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


[packages/tomcat/AC-branch] ac compatible logrotate

2014-03-31 Thread glen
commit a062f9a11614999cdb54fa9130a48c888286aafc
Author: Elan Ruusamäe g...@delfi.ee
Date:   Mon Mar 31 17:36:49 2014 +0300

ac compatible logrotate

Cherry-Picked e1e8216
Conflicts:
tomcat.spec

 tomcat.spec | 8 +++-
 1 file changed, 7 insertions(+), 1 deletion(-)
---
diff --git a/tomcat.spec b/tomcat.spec
index bfca9bf..8973682 100644
--- a/tomcat.spec
+++ b/tomcat.spec
@@ -54,8 +54,9 @@ BuildRequires:java-log4j
 BuildRequires: java-mail
 BuildRequires: jdk
 BuildRequires: jpackage-utils
+BuildRequires: rpm = 4.4.9-56
 BuildRequires: rpm-javaprov
-BuildRequires: rpmbuild(macros) = 1.553
+BuildRequires: rpmbuild(macros) = 1.657
 BuildRequires: sed = 4.0
 Requires(post,preun):  /sbin/chkconfig
 Requires(postun):  /usr/sbin/groupdel
@@ -85,7 +86,9 @@ Provides: group(tomcat)
 Provides:  user(tomcat)
 Obsoletes: apache-tomcat
 Obsoletes: jakarta-tomcat
+%if %{pld_release} != ac
 Conflicts: logrotate  3.8.0
+%endif
 Conflicts: tomcat-native  %{tomcatnatver}
 BuildArch: noarch
 BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
@@ -344,6 +347,9 @@ cp -p %{SOURCE12} 
$RPM_BUILD_ROOT%{_sysconfdir}/%{name}/Catalina/localhost/manag
 cp -p %{SOURCE13} 
$RPM_BUILD_ROOT%{_sysconfdir}/%{name}/Catalina/localhost/host-manager.xml
 cp -p %{SOURCE14} 
$RPM_BUILD_ROOT%{_sysconfdir}/%{name}/Catalina/localhost/examples.xml
 cp -p %{SOURCE15} $RPM_BUILD_ROOT/etc/logrotate.d/%{name}
+%if %{pld_release} == ac
+%{__sed} -i -e '/su/d' $RPM_BUILD_ROOT/etc/logrotate.d/%{name}
+%endif
 
 cp -a bin lib webapps $TOMCATDIR
 cp -a temp $CATALINADIR


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/tomcat.git/commitdiff/a062f9a11614999cdb54fa9130a48c888286aafc

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


[packages/tomcat] Created branch AC-branch

2014-03-31 Thread glen
The branch 'AC-branch' was created.

Summary of new commits:

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


[packages/file] - mention Python version in descriptions

2014-03-31 Thread qboosh
commit 55d8f9c11f7d7bc36933c91600dbed8ced9946f3
Author: Jakub Bogusz qbo...@pld-linux.org
Date:   Mon Mar 31 17:17:57 2014 +0200

- mention Python version in descriptions

 file.spec | 16 
 1 file changed, 8 insertions(+), 8 deletions(-)
---
diff --git a/file.spec b/file.spec
index 6d0d75f..1717e65 100644
--- a/file.spec
+++ b/file.spec
@@ -238,30 +238,30 @@ Biblioteka funkcji operujących na pliku bazy danych magic.
 Ten pakiet zawiera statyczną wersję biblioteki.
 
 %package -n python-magic
-Summary:   Python bindings for libmagic
-Summary(pl.UTF-8): Wiązania Pythona dla libmagic
+Summary:   Python 2 bindings for libmagic
+Summary(pl.UTF-8): Wiązania Pythona 2 do biblioteki libmagic
 Group: Libraries/Python
 Requires:  libmagic = %{version}-%{release}
 Requires:  python-libs
 
 %description -n python-magic
-Python bindings for libmagic.
+Python 2 bindings for libmagic.
 
 %description -n python-magic -l pl.UTF-8
-Wiązania Pythona dla libmagic.
+Wiązania Pythona 2 do biblioteki libmagic.
 
 %package -n python3-magic
-Summary:   Python bindings for libmagic
-Summary(pl.UTF-8): Wiązania Pythona dla libmagic
+Summary:   Python 3 bindings for libmagic
+Summary(pl.UTF-8): Wiązania Pythona 3 do biblioteki libmagic
 Group: Libraries/Python
 Requires:  libmagic = %{version}-%{release}
 Requires:  python-libs
 
 %description -n python3-magic
-Python bindings for libmagic.
+Python 3 bindings for libmagic.
 
 %description -n python3-magic -l pl.UTF-8
-Wiązania Pythona dla libmagic.
+Wiązania Pythona 3 do biblioteki libmagic.
 
 %prep
 %setup -q


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/file.git/commitdiff/55d8f9c11f7d7bc36933c91600dbed8ced9946f3

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


[packages/gnome-photos] - updated to 3.12.0

2014-03-31 Thread kiesiu
commit 0f63467d55d227bfb3ec522fb064b76216804bf9
Author: Łukasz Kieś kie...@pld-linux.org
Date:   Mon Mar 31 17:22:36 2014 +0200

- updated to 3.12.0

 gnome-photos.spec | 20 
 1 file changed, 12 insertions(+), 8 deletions(-)
---
diff --git a/gnome-photos.spec b/gnome-photos.spec
index 22c9cb0..d4f2b28 100644
--- a/gnome-photos.spec
+++ b/gnome-photos.spec
@@ -1,11 +1,11 @@
 Summary:   Access, organize and share your photos on GNOME
 Name:  gnome-photos
-Version:   3.10.2
+Version:   3.12.0
 Release:   1
 License:   GPL v2
 Group: X11/Applications
-Source0:   
http://ftp.gnome.org/pub/GNOME/sources/gnome-photos/3.10/%{name}-%{version}.tar.xz
-# Source0-md5: 6b320e9967065dadf42bb3d4e620f686
+Source0:   
http://ftp.gnome.org/pub/GNOME/sources/gnome-photos/3.12/%{name}-%{version}.tar.xz
+# Source0-md5: 6ce898a6491294d0d619aff867f57b5a
 URL:   https://live.gnome.org/GnomePhotos
 BuildRequires: autoconf = 2.63
 BuildRequires: automake
@@ -16,24 +16,25 @@ BuildRequires:  exempi-devel = 1.99.5
 BuildRequires: gdk-pixbuf2-devel
 BuildRequires: gegl-devel
 BuildRequires: gettext-devel
+BuildRequires: gfbgraph-devel  0.2.1
 BuildRequires: glib2-devel = 1:2.36.0
 BuildRequires: gnome-common
 BuildRequires: gnome-desktop-devel
 BuildRequires: gnome-online-accounts-devel = 3.8.0
 BuildRequires: grilo-devel = 0.2.6
-BuildRequires: gtk+3-devel = 3.10.0
+BuildRequires: gtk+3-devel = 3.11.5
 BuildRequires: intltool = 0.50.1
 BuildRequires: lcms2-devel
 BuildRequires: libexif-devel = 0.6.14
 BuildRequires: librsvg-devel = 2.26.0
 BuildRequires: libtool
 BuildRequires: pkgconfig
-BuildRequires: tracker-devel = 0.16.0
+BuildRequires: tracker-devel = 1.0.0
 BuildRequires: zlib-devel
 Requires(post,postun): gtk-update-icon-cache
 Requires(post,postun): glib2 = 1:2.26.0
 Requires:  glib2 = 1:2.36.0
-Requires:  gtk+3 = 3.10.0
+Requires:  gtk+3 = 3.11.5
 BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
 
 %description
@@ -80,8 +81,11 @@ rm -rf $RPM_BUILD_ROOT
 %defattr(644,root,root,755)
 %doc ARTISTS AUTHORS ChangeLog NEWS README
 %attr(755,root,root) %{_bindir}/gnome-photos
-%{_datadir}/appdata/gnome-photos.appdata.xml
+%attr(755,root,root) %{_libdir}/gnome-photos-service
+%{_datadir}/appdata/org.gnome.Photos.appdata.xml
+%{_datadir}/dbus-1/services/org.gnome.Photos.service
 %{_datadir}/glib-2.0/schemas/org.gnome.photos.gschema.xml
+%{_datadir}/gnome-shell/search-providers/org.gnome.Photos.search-provider.ini
 %{_iconsdir}/hicolor/*/*/*.png
 %{_datadir}/%{name}
-%{_desktopdir}/gnome-photos.desktop
+%{_desktopdir}/org.gnome.Photos.desktop


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/gnome-photos.git/commitdiff/0f63467d55d227bfb3ec522fb064b76216804bf9

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


DISTFILES: gnome-photos: gnome-photos-3.12.0.tar.xz

2014-03-31 Thread kiesiu

Files fetched: 1

STORED: 
http://ftp.gnome.org/pub/GNOME/sources/gnome-photos/3.12/gnome-photos-3.12.0.tar.xz
6ce898a6491294d0d619aff867f57b5a  gnome-photos-3.12.0.tar.xz
Size: 699476 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/gnome-documents] - updated to 3.12.0

2014-03-31 Thread kiesiu
commit 7b531e6823d05aa0185aee3aa9e032573eff58a8
Author: Łukasz Kieś kie...@pld-linux.org
Date:   Mon Mar 31 17:54:29 2014 +0200

- updated to 3.12.0

 gnome-documents.spec | 26 ++
 1 file changed, 14 insertions(+), 12 deletions(-)
---
diff --git a/gnome-documents.spec b/gnome-documents.spec
index 4173b32..275ef33 100644
--- a/gnome-documents.spec
+++ b/gnome-documents.spec
@@ -1,11 +1,11 @@
 Summary:   Document manager for GNOME
 Name:  gnome-documents
-Version:   3.10.2
+Version:   3.12.0
 Release:   1
 License:   GPL v2+
 Group: X11/Applications
-Source0:   
http://ftp.gnome.org/pub/GNOME/sources/gnome-documents/3.10/%{name}-%{version}.tar.xz
-# Source0-md5: 59b2934bd2fd9a2f164368eb9317c860
+Source0:   
http://ftp.gnome.org/pub/GNOME/sources/gnome-documents/3.12/%{name}-%{version}.tar.xz
+# Source0-md5: d247f61cd865701243193e6d1bab9e6f
 URL:   https://wiki.gnome.org/Apps/Documents
 BuildRequires: autoconf = 2.63
 BuildRequires: automake = 1:1.11
@@ -18,7 +18,7 @@ BuildRequires:glib2-devel = 1:2.38.0
 BuildRequires: gnome-desktop-devel = 3.2.0
 BuildRequires: gnome-online-accounts-devel = 3.2.0
 BuildRequires: gobject-introspection-devel = 1.32.0
-BuildRequires: gtk+3-devel = 3.10.0
+BuildRequires: gtk+3-devel = 3.11.5
 BuildRequires: gtk-webkit3-devel = 1.10.0
 BuildRequires: intltool = 0.50.1
 BuildRequires: libgdata-devel = 0.13.3
@@ -29,18 +29,19 @@ BuildRequires:  libzapojit-devel = 0.0.2
 BuildRequires: pkgconfig = 1:0.22
 BuildRequires: rpmbuild(macros) = 1.592
 BuildRequires: tar = 1:1.22
-BuildRequires: tracker-devel = 0.16.0
+BuildRequires: tracker-devel = 1.0.0
 BuildRequires: xz
+BuildRequires: yelp-tools
 Requires(post,postun): gtk-update-icon-cache
 Requires(post,postun): glib2 = 1:2.26.0
 Requires:  clutter-gtk = 1.4.0
 Requires:  evince = 3.8.0
 Requires:  glib2 = 1:2.38.0
 Requires:  gobject-introspection = 1.32.0
-Requires:  gtk+3 = 3.10.0
+Requires:  gtk+3 = 3.11.5
 Requires:  hicolor-icon-theme
 Requires:  libgdata = 0.13.3
-Requires:  tracker = 0.16.0
+Requires:  tracker = 1.0.0
 Suggests:  unoconv = 0.5
 BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
 
@@ -69,7 +70,7 @@ rm -rf $RPM_BUILD_ROOT
 
 %{__rm} $RPM_BUILD_ROOT%{_libdir}/gnome-documents/*.la
 
-%find_lang gnome-documents
+%find_lang %{name} --with-gnome
 
 %clean
 rm -rf $RPM_BUILD_ROOT
@@ -88,18 +89,19 @@ rm -rf $RPM_BUILD_ROOT
 %defattr(644,root,root,755)
 %doc AUTHORS NEWS README TODO
 %attr(755,root,root) %{_bindir}/gnome-documents
+%attr(755,root,root) %{_libdir}/gnome-documents-service
 %dir %{_libdir}/gnome-documents
 %attr(755,root,root) %{_libdir}/gnome-documents/libgd.so
 %attr(755,root,root) %{_libdir}/gnome-documents/libgdprivate-1.0.so
 %dir %{_libdir}/gnome-documents/girepository-1.0
 %{_libdir}/gnome-documents/girepository-1.0/Gd-1.0.typelib
 %{_libdir}/gnome-documents/girepository-1.0/GdPrivate-1.0.typelib
-%{_datadir}/appdata/gnome-documents.appdata.xml
-%{_datadir}/dbus-1/services/org.gnome.Documents.SearchProvider.service
+%{_datadir}/appdata/org.gnome.Documents.appdata.xml
+%{_datadir}/dbus-1/services/org.gnome.Documents.service
 %{_datadir}/glib-2.0/schemas/org.gnome.Documents.enums.xml
 %{_datadir}/glib-2.0/schemas/org.gnome.documents.gschema.xml
 %{_datadir}/gnome-documents
-%{_datadir}/gnome-shell/search-providers/gnome-documents-search-provider.ini
-%{_desktopdir}/gnome-documents.desktop
+%{_datadir}/gnome-shell/search-providers/org.gnome.Documents.search-provider.ini
+%{_desktopdir}/org.gnome.Documents.desktop
 %{_iconsdir}/hicolor/*/*/*.png
 %{_mandir}/man1/gnome-documents.1*


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/gnome-documents.git/commitdiff/7b531e6823d05aa0185aee3aa9e032573eff58a8

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


DISTFILES: gnome-documents: gnome-documents-3.12.0.tar.xz

2014-03-31 Thread kiesiu

Files fetched: 1

STORED: 
http://ftp.gnome.org/pub/GNOME/sources/gnome-documents/3.12/gnome-documents-3.12.0.tar.xz
d247f61cd865701243193e6d1bab9e6f  gnome-documents-3.12.0.tar.xz
Size: 707228 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/openslp] - License is BSD - unified sf Source URL - BR+R: zlib-devel

2014-03-31 Thread qboosh
commit 18b9dee56ff73edca75e35b38dad543c54b935dc
Author: Jakub Bogusz qbo...@pld-linux.org
Date:   Mon Mar 31 18:28:10 2014 +0200

- License is BSD
- unified sf Source URL
- BR+R: zlib-devel

 openslp.spec | 10 ++
 1 file changed, 6 insertions(+), 4 deletions(-)
---
diff --git a/openslp.spec b/openslp.spec
index b805647..38afd12 100644
--- a/openslp.spec
+++ b/openslp.spec
@@ -8,19 +8,20 @@ Summary(pt.UTF-8):Implementação 'open source' do 
protocolo Service Location P
 Name:  openslp
 Version:   2.0.0
 Release:   1
-License:   LGPL
+License:   BSD
 Group: Libraries
-Source0:   
http://download.sourceforge.net/openslp/%{name}-%{version}.tar.gz
+Source0:   
http://downloads.sourceforge.net/openslp/%{name}-%{version}.tar.gz
 # Source0-md5: 18cf7940bcc444e32592cf34e84f833f
 Source1:   %{name}.init
 Patch0:%{name}-opt.patch
 Patch1:%{name}-build.patch
 URL:   http://www.openslp.org/
-BuildRequires: autoconf = 2.50
+BuildRequires: autoconf = 2.59
 BuildRequires: automake
 BuildRequires: libtool
 BuildRequires: openssl-devel = 0.9.7d
 BuildRequires: rpmbuild(macros) = 1.268
+BuildRequires: zlib-devel
 Obsoletes: libopenslp1
 BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
 
@@ -106,6 +107,7 @@ Summary(pl.UTF-8):  Część OpenSLP dla programistów
 Group: Development/Libraries
 Requires:  %{name} = %{version}-%{release}
 Requires:  openssl-devel = 0.9.7c
+Requires:  zlib-devel
 Obsoletes: libopenslp1-devel
 
 %description devel
@@ -133,7 +135,7 @@ Biblioteki statyczne OpenSLP.
 
 %build
 %{__libtoolize}
-%{__aclocal}
+%{__aclocal} -I m4
 %{__autoconf}
 %{__automake}
 %configure \


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/openslp.git/commitdiff/18b9dee56ff73edca75e35b38dad543c54b935dc

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


[packages/lcov] - GPL version, better Group and pl

2014-03-31 Thread qboosh
commit 61a36feca7e5193ce39e5e88dcb7994b7ca391e1
Author: Jakub Bogusz qbo...@pld-linux.org
Date:   Mon Mar 31 18:33:33 2014 +0200

- GPL version, better Group and pl

 lcov.spec | 15 ---
 1 file changed, 8 insertions(+), 7 deletions(-)
---
diff --git a/lcov.spec b/lcov.spec
index 94a6074..d7823b1 100644
--- a/lcov.spec
+++ b/lcov.spec
@@ -1,11 +1,11 @@
 %include   /usr/lib/rpm/macros.perl
 Summary:   LTP GCOV extension code coverage tool
-Summary(pl.UTF-8): Frontend do GCOV
+Summary(pl.UTF-8): Frontend LTP rozszerzający narzędzie GCOV do badania 
pokrycia kodu
 Name:  lcov
 Version:   1.10
 Release:   1
-License:   GPL
-Group: Applications
+License:   GPL v2+
+Group: Development/Tools
 Source0:   http://downloads.sourceforge.net/ltp/%{name}-%{version}.tar.gz
 # Source0-md5: b9fe33b921016fc68852c8a6beb3a3b5
 URL:   http://ltp.sourceforge.net/coverage/lcov.php
@@ -24,10 +24,11 @@ of PERL scripts which build on the textual GCOV output to 
implement
 HTML output and support for large projects.
 
 %description -l pl.UTF-8
-LCOV jest frontendem do programu GCOV - narzędzie pozwalającego badać
-które fragmenty kodu są wykonywane (pokryte) podczas przeprowadzania
-zestawu testów. LCOV składa się z zestawu skryptów języka PERL, które
-prezentują dane generowane przez GCOV w postaci stron HTML.
+LCOV jest frontendem rozszerzającym dla programu GCOV - narzędzia
+pozwalającego badać, które fragmenty kodu są wykonywane (pokryte)
+podczas przeprowadzania zestawu testów. LCOV składa się z zestawu
+skryptów języka PERL, które prezentują dane generowane przez GCOV w
+postaci stron HTML.
 
 %prep
 %setup -q


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/lcov.git/commitdiff/61a36feca7e5193ce39e5e88dcb7994b7ca391e1

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


[packages/gnome-font-viewer] Update to 3.12.0

2014-03-31 Thread megabajt
commit 6c9c92b2044a6e94caf69e9eff337fe2d51bcc51
Author: Marcin Banasiak marcin.banas...@gmail.com
Date:   Mon Mar 31 18:45:30 2014 +0200

Update to 3.12.0

 gnome-font-viewer.spec | 12 +++-
 1 file changed, 7 insertions(+), 5 deletions(-)
---
diff --git a/gnome-font-viewer.spec b/gnome-font-viewer.spec
index 80e57b0..f728d98 100644
--- a/gnome-font-viewer.spec
+++ b/gnome-font-viewer.spec
@@ -1,12 +1,12 @@
 Summary:   Font viewer
 Summary(pl.UTF-8): Przeglądarka czcionek
 Name:  gnome-font-viewer
-Version:   3.10.0
+Version:   3.12.0
 Release:   1
 License:   GPL v2
 Group: X11/Applications
-Source0:   
http://ftp.gnome.org/pub/GNOME/sources/gnome-font-viewer/3.10/%{name}-%{version}.tar.xz
-# Source0-md5: 544a529240fbfc65a203d10bebce4655
+Source0:   
http://ftp.gnome.org/pub/GNOME/sources/gnome-font-viewer/3.12/%{name}-%{version}.tar.xz
+# Source0-md5: 253cc356073f8ed8b50beb427496d432
 URL:   http://live.gnome.org/GnomeUtils
 BuildRequires: autoconf = 2.63
 BuildRequires: automake = 1:1.11
@@ -14,14 +14,15 @@ BuildRequires:  freetype-devel
 BuildRequires: gettext-devel = 0.17
 BuildRequires: glib2-devel = 1:2.35.1
 BuildRequires: gnome-desktop-devel
-BuildRequires: gtk+3-devel = 3.10.0
+BuildRequires: gtk+3-devel = 3.12.0
+BuildRequires: harfbuzz-devel = 0.9.9
 BuildRequires: intltool = 0.40.0
 BuildRequires: libtool = 2:2.2.6
 BuildRequires: pkgconfig = 1:0.22
 BuildRequires: tar = 1:1.22
 BuildRequires: xz
 Requires(post,postun): desktop-file-utils
-Requires:  gtk+3 = 3.10.0
+Requires:  gtk+3 = 3.12.0
 Provides:  gnome-utils-font-viewer = 1:%{version}-%{release}
 Obsoletes: gnome-utils-font-viewer  1:3.3.92-1
 BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
@@ -69,4 +70,5 @@ rm -rf $RPM_BUILD_ROOT
 %attr(755,root,root) %{_bindir}/gnome-font-viewer
 %attr(755,root,root) %{_bindir}/gnome-thumbnail-font
 %{_desktopdir}/gnome-font-viewer.desktop
+%{_datadir}/appdata/gnome-font-viewer.appdata.xml
 %{_datadir}/thumbnailers/gnome-font-viewer.thumbnailer


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/gnome-font-viewer.git/commitdiff/6c9c92b2044a6e94caf69e9eff337fe2d51bcc51

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


DISTFILES: gnome-font-viewer: gnome-font-viewer-3.12.0.tar.xz

2014-03-31 Thread megabajt

Files fetched: 1

STORED: 
http://ftp.gnome.org/pub/GNOME/sources/gnome-font-viewer/3.12/gnome-font-viewer-3.12.0.tar.xz
253cc356073f8ed8b50beb427496d432  gnome-font-viewer-3.12.0.tar.xz
Size: 305932 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/gdl] Update to 3.12.0

2014-03-31 Thread megabajt
commit e82c57d1df057b9ef4a18e2e288c52605a658e35
Author: Marcin Banasiak marcin.banas...@gmail.com
Date:   Mon Mar 31 18:48:42 2014 +0200

Update to 3.12.0

 gdl.spec | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/gdl.spec b/gdl.spec
index 51d56ea..ad8bcfb 100644
--- a/gdl.spec
+++ b/gdl.spec
@@ -1,12 +1,12 @@
 Summary:   GNOME Devtool Libraries
 Summary(pl.UTF-8): Biblioteki GNOME Devtool
 Name:  gdl
-Version:   3.10.0
+Version:   3.12.0
 Release:   1
 License:   GPL v2+
 Group: Libraries
-Source0:   
http://ftp.gnome.org/pub/GNOME/sources/gdl/3.10/%{name}-%{version}.tar.xz
-# Source0-md5: 0217505f968fd1b80cedf81008065f8b
+Source0:   
http://ftp.gnome.org/pub/GNOME/sources/gdl/3.12/%{name}-%{version}.tar.xz
+# Source0-md5: e36701e5f0f2eeac2504375fe46aa478
 BuildRequires: autoconf = 2.65
 BuildRequires: automake
 BuildRequires: docbook-dtd412-xml


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/gdl.git/commitdiff/e82c57d1df057b9ef4a18e2e288c52605a658e35

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


DISTFILES: gdl: gdl-3.12.0.tar.xz

2014-03-31 Thread megabajt

Files fetched: 1

STORED: http://ftp.gnome.org/pub/GNOME/sources/gdl/3.12/gdl-3.12.0.tar.xz
e36701e5f0f2eeac2504375fe46aa478  gdl-3.12.0.tar.xz
Size: 527944 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/gnome-user-docs] Update to 3.12.0

2014-03-31 Thread megabajt
commit 623965f3ac1ecb6403e855c3f3f50414d7bb1d9b
Author: Marcin Banasiak marcin.banas...@gmail.com
Date:   Mon Mar 31 19:27:49 2014 +0200

Update to 3.12.0

 gnome-user-docs.spec | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/gnome-user-docs.spec b/gnome-user-docs.spec
index d68c31c..2203fcc 100644
--- a/gnome-user-docs.spec
+++ b/gnome-user-docs.spec
@@ -1,12 +1,12 @@
 Summary:   General GNOME User Documentation
 Summary(pl.UTF-8): Ogólna dokumentacja użytkownika GNOME
 Name:  gnome-user-docs
-Version:   3.10.1
+Version:   3.12.0
 Release:   1
 License:   GFDL
 Group: Documentation
-Source0:   
http://ftp.gnome.org/pub/GNOME/sources/gnome-user-docs/3.10/%{name}-%{version}.tar.xz
-# Source0-md5: ccfd5f8478d0cf16c7a234c8cd8f52b8
+Source0:   
http://ftp.gnome.org/pub/GNOME/sources/gnome-user-docs/3.12/%{name}-%{version}.tar.xz
+# Source0-md5: b754198a54e91e8b612095bd4527da26
 BuildRequires: docbook-dtd412-xml
 BuildRequires: docbook-dtd43-xml
 BuildRequires: gettext-devel


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/gnome-user-docs.git/commitdiff/623965f3ac1ecb6403e855c3f3f50414d7bb1d9b

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


[packages/gnome-devel-docs] Update to 3.12.0

2014-03-31 Thread megabajt
commit 353d1288fb52f72850fcb8696190517a2dc5478d
Author: Marcin Banasiak marcin.banas...@gmail.com
Date:   Mon Mar 31 19:28:27 2014 +0200

Update to 3.12.0

 gnome-devel-docs.spec | 10 +-
 1 file changed, 5 insertions(+), 5 deletions(-)
---
diff --git a/gnome-devel-docs.spec b/gnome-devel-docs.spec
index 17f2f37..3f11ad6 100644
--- a/gnome-devel-docs.spec
+++ b/gnome-devel-docs.spec
@@ -1,12 +1,12 @@
 Summary:   GNOME Developer Documentation
 Summary(pl.UTF-8): Dokumentacja programisty GNOME
 Name:  gnome-devel-docs
-Version:   3.6.2
+Version:   3.12.0
 Release:   1
 License:   GFDL
 Group: Documentation
-Source0:   
http://ftp.gnome.org/pub/GNOME/sources/gnome-devel-docs/3.6/%{name}-%{version}.tar.xz
-# Source0-md5: f39d38a26e9894e9cc36a7139cd1a4cc
+Source0:   
http://ftp.gnome.org/pub/GNOME/sources/gnome-devel-docs/3.12/%{name}-%{version}.tar.xz
+# Source0-md5: 039ea2669864971821a3be843b794edc
 URL:   http://www.gnome.org/
 BuildRequires: autoconf
 BuildRequires: automake
@@ -14,7 +14,7 @@ BuildRequires:docbook-dtd412-xml
 BuildRequires: docbook-dtd42-xml
 BuildRequires: docbook-dtd44-xml
 BuildRequires: gettext-devel
-BuildRequires: gnome-doc-utils = 0.12.1
+BuildRequires: itstool
 BuildRequires: libxml2-progs
 BuildRequires: pkgconfig
 BuildRequires: rpmbuild(find_lang) = 1.23
@@ -40,7 +40,7 @@ Style Guide oraz Overview of the GNOME Platform.
 %{__autoconf}
 %{__automake}
 %configure \
-   --disable-scrollkeeper
+   --disable-silent-rules
 %{__make} -j1
 
 %install


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/gnome-devel-docs.git/commitdiff/353d1288fb52f72850fcb8696190517a2dc5478d

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


DISTFILES: gnome-user-docs: gnome-user-docs-3.12.0.tar.xz

2014-03-31 Thread megabajt

Files fetched: 1

STORED: 
http://ftp.gnome.org/pub/GNOME/sources/gnome-user-docs/3.12/gnome-user-docs-3.12.0.tar.xz
b754198a54e91e8b612095bd4527da26  gnome-user-docs-3.12.0.tar.xz
Size: 12439524 bytes


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


DISTFILES: gnome-devel-docs: gnome-devel-docs-3.12.0.tar.xz

2014-03-31 Thread megabajt

Files fetched: 1

STORED: 
http://ftp.gnome.org/pub/GNOME/sources/gnome-devel-docs/3.12/gnome-devel-docs-3.12.0.tar.xz
039ea2669864971821a3be843b794edc  gnome-devel-docs-3.12.0.tar.xz
Size: 10207620 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/mousetweaks] Update to 3.12.0

2014-03-31 Thread megabajt
commit aa137593e44a4afda574a54c302341eb6c4a4f62
Author: Marcin Banasiak marcin.banas...@gmail.com
Date:   Mon Mar 31 19:39:04 2014 +0200

Update to 3.12.0

 mousetweaks.spec | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/mousetweaks.spec b/mousetweaks.spec
index 875ac5b..5532262 100644
--- a/mousetweaks.spec
+++ b/mousetweaks.spec
@@ -4,12 +4,12 @@
 Summary:   Mouse accessibility enhancements for GNOME
 Summary(pl.UTF-8): Rozszerzenia dostępności myszy dla GNOME
 Name:  mousetweaks
-Version:   3.10.0
+Version:   3.12.0
 Release:   1
 License:   GPL v3
 Group: X11/Applications/Accessibility
-Source0:   
http://ftp.gnome.org/pub/GNOME/sources/mousetweaks/3.10/%{name}-%{version}.tar.xz
-# Source0-md5: 43445844d886c57e92438cafe3d35d1d
+Source0:   
http://ftp.gnome.org/pub/GNOME/sources/mousetweaks/3.12/%{name}-%{version}.tar.xz
+# Source0-md5: 08799c2059b40bf3275e7f69a62eb144
 URL:   http://live.gnome.org/Mousetweaks/Home
 BuildRequires: autoconf = 2.64
 BuildRequires: automake = 1:1.11


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/mousetweaks.git/commitdiff/aa137593e44a4afda574a54c302341eb6c4a4f62

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


[packages/gnome-terminal] Update to 3.12.0

2014-03-31 Thread megabajt
commit 8732d3241cfd2850ca43317cf62d75f0fd816b90
Author: Marcin Banasiak marcin.banas...@gmail.com
Date:   Mon Mar 31 19:38:29 2014 +0200

Update to 3.12.0

 gnome-terminal.spec | 22 --
 wordseps.patch  | 12 ++--
 2 files changed, 18 insertions(+), 16 deletions(-)
---
diff --git a/gnome-terminal.spec b/gnome-terminal.spec
index 80371c7..711a242 100644
--- a/gnome-terminal.spec
+++ b/gnome-terminal.spec
@@ -5,12 +5,12 @@
 Summary:   GNOME Terminal
 Summary(pl.UTF-8): Terminal dla GNOME
 Name:  gnome-terminal
-Version:   3.10.2
+Version:   3.12.0
 Release:   1
 License:   GPL v3+
 Group: X11/Applications
-Source0:   
http://ftp.gnome.org/pub/GNOME/sources/gnome-terminal/3.10/%{name}-%{version}.tar.xz
-# Source0-md5: 746417ef4b6252ed3deb8388d8a1a02a
+Source0:   
http://ftp.gnome.org/pub/GNOME/sources/gnome-terminal/3.12/%{name}-%{version}.tar.xz
+# Source0-md5: 0db5151745f681af5392f18e307a6dc3
 Patch0:%{name}-desktop.patch
 Patch1:wordseps.patch
 URL:   http://www.gnome.org/
@@ -20,11 +20,11 @@ BuildRequires:  automake = 1:1.9
 BuildRequires: dconf-devel = 0.14
 BuildRequires: docbook-dtd412-xml
 BuildRequires: gettext-devel
-BuildRequires: glib2-devel = 1:2.33.2
+BuildRequires: glib2-devel = 1:2.40.0
 BuildRequires: gnome-common
 BuildRequires: gsettings-desktop-schemas-devel = 0.1.0
-BuildRequires: gtk+3-devel = 3.6.0
-BuildRequires: intltool = 0.40.0
+BuildRequires: gtk+3-devel = 3.10.0
+BuildRequires: intltool = 0.50.0
 BuildRequires: libtool
 BuildRequires: libuuid-devel
 BuildRequires: libxml2-progs
@@ -33,16 +33,16 @@ BuildRequires:  pkgconfig = 1:0.12.0
 BuildRequires: rpmbuild(find_lang) = 1.23
 BuildRequires: rpmbuild(macros) = 1.197
 BuildRequires: tar = 1:1.22
-BuildRequires: vte-devel = 0.34.9
+BuildRequires: vte-devel = 0.36.0
 BuildRequires: xz
 BuildRequires: yelp-tools
 Requires(post,postun): glib2 = 1:2.33.2
 Requires:  dconf = 0.14
-Requires:  glib2 = 1:2.33.2
+Requires:  glib2 = 1:2.40.0
 Requires:  gsettings-desktop-schemas = 0.1.0
-Requires:  gtk+3 = 3.6.0
+Requires:  gtk+3 = 3.10.0
 Requires:  terminfo
-Requires:  vte = 0.34.9
+Requires:  vte = 0.36.0
 # sr@Latn vs. sr@latin
 Conflicts: glibc-misc  6:2.7
 BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
@@ -120,8 +120,10 @@ fi
 %attr(755,root,root) %{_bindir}/gnome-terminal
 %attr(755,root,root) %{_libdir}/gnome-terminal-migration
 %attr(755,root,root) %{_libdir}/gnome-terminal-server
+%{_datadir}/appdata/gnome-terminal.appdata.xml
 %{_datadir}/dbus-1/services/org.gnome.Terminal.service
 %{_datadir}/glib-2.0/schemas/org.gnome.Terminal.gschema.xml
+%{_datadir}/gnome-shell/search-providers/gnome-terminal-search-provider.ini
 %{_desktopdir}/gnome-terminal.desktop
 
 %if %{with nautilus}
diff --git a/wordseps.patch b/wordseps.patch
index e1d6d29..d5bec58 100644
--- a/wordseps.patch
+++ b/wordseps.patch
@@ -4,14 +4,14 @@ similar patches:
 - lxterminal: 
http://git.pld-linux.org/?p=packages/lxterminal.git;a=blob;f=wordseps.patch
 - mate-terminal: 
http://git.pld-linux.org/?p=packages/mate-terminal.git;a=blob;f=wordseps.patch
 
 gnome-terminal-3.8.0.old/src/org.gnome.Terminal.gschema.xml.in 
2013-03-25 18:47:46.0 +0100
-+++ gnome-terminal-3.8.0/src/org.gnome.Terminal.gschema.xml.in 2013-03-27 
21:56:08.515485756 +0100
-@@ -133,7 +133,7 @@
-   _summaryWhether to ring the terminal bell/_summary
+--- gnome-terminal-3.12.0/src/org.gnome.Terminal.gschema.xml.orig  
2014-03-31 19:33:38.703984906 +0200
 gnome-terminal-3.12.0/src/org.gnome.Terminal.gschema.xml   2014-03-31 
19:34:14.883788826 +0200
+@@ -126,7 +126,7 @@
+   summaryWhether to ring the terminal bell/summary
  /key
  key name=word-chars type=s
 -  default'-A-Za-z0-9,./?%amp;#:_=+@~'/default
 +  default'-A-Za-z0-9,./?%amp;#:_=+@~;'/default
-   _summaryCharacters that are considered part of a word/_summary
-   _descriptionWhen selecting text by word, sequences of these 
characters are considered single words. Ranges can be given as A-Z. Literal 
hyphen (not expressing a range) should be the first character 
given./_description
+   summaryCharacters that are considered part of a word/summary
+   descriptionWhen selecting text by word, sequences of these characters 
are considered single words. Ranges can be given as A-Z. Literal hyphen (not 
expressing a range) should be the first character given./description
  /key


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/gnome-terminal.git/commitdiff/8732d3241cfd2850ca43317cf62d75f0fd816b90

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


DISTFILES: gnome-terminal: gnome-terminal-3.12.0.tar.xz

2014-03-31 Thread megabajt

Files fetched: 1

STORED: 
http://ftp.gnome.org/pub/GNOME/sources/gnome-terminal/3.12/gnome-terminal-3.12.0.tar.xz
0db5151745f681af5392f18e307a6dc3  gnome-terminal-3.12.0.tar.xz
Size: 1720200 bytes


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


DISTFILES: mousetweaks: mousetweaks-3.12.0.tar.xz

2014-03-31 Thread megabajt

Files fetched: 1

STORED: 
http://ftp.gnome.org/pub/GNOME/sources/mousetweaks/3.12/mousetweaks-3.12.0.tar.xz
08799c2059b40bf3275e7f69a62eb144  mousetweaks-3.12.0.tar.xz
Size: 287236 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/valadoc] - updated to 0.23.2 latest snap

2014-03-31 Thread qboosh
commit 696e262e207796c217e2a30e36abcb2642d724f8
Author: Jakub Bogusz qbo...@pld-linux.org
Date:   Mon Mar 31 20:26:51 2014 +0200

- updated to 0.23.2 latest snap

 valadoc.spec | 40 
 1 file changed, 20 insertions(+), 20 deletions(-)
---
diff --git a/valadoc.spec b/valadoc.spec
index cac53d5..336e8d8 100644
--- a/valadoc.spec
+++ b/valadoc.spec
@@ -1,30 +1,30 @@
 Summary:   Documentation tool for Vala
 Summary(pl.UTF-8): Narzędzie obsługujące dokumentację dla języka Vala
 Name:  valadoc
-Version:   0.3.2
-%definesnap20120223
+Version:   0.23.2
+%definesnap20140326
 Release:   0.%{snap}.1
 License:   LGPL v2.1+
 Group: Development/Tools
 # git clone git://git.gnome.org/valadoc
-Source0:   %{name}.tar.xz
-# Source0-md5: c628fb81342eed958c6bdc63966528a2
+Source0:   %{name}-%{snap}.tar.xz
+# Source0-md5: aa95522b332490572589043259f2c702
 URL:   https://live.gnome.org/Valadoc
-BuildRequires: autoconf = 2.59
-BuildRequires: automake
+BuildRequires: autoconf = 2.65
+BuildRequires: automake = 1:1.11
 BuildRequires: gdk-pixbuf2-devel = 2.0
-BuildRequires: glib2-devel = 1:2.12.0
+BuildRequires: glib2-devel = 1:2.24.0
 BuildRequires: graphviz-devel = 2.16
-BuildRequires: libgee0.6-devel = 0.5
-BuildRequires: libtool
-BuildRequires: pkgconfig
+BuildRequires: libgee-devel = 0.8.0
+BuildRequires: libtool = 2:2
+BuildRequires: pkgconfig = 1:0.21
 BuildRequires: tar = 1:1.22
-BuildRequires: vala = 2:0.18
-BuildRequires: vala-libgee0.6 = 0.5
+BuildRequires: vala = 2:0.24
+BuildRequires: vala-libgee = 0.8
 BuildRequires: xz
-Requires:  glib2 = 1:2.12.0
+Requires:  glib2 = 1:2.24.0
 Requires:  graphviz = 2.16
-Requires:  libgee0.6 = 0.5
+Requires:  libgee = 0.8
 BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
 
 %description
@@ -38,9 +38,9 @@ Summary:  Header file for Valadoc library
 Summary(pl.UTF-8): Plik nagłówkowy biblioteki Valadoc
 Group: Development/Libraries
 Requires:  %{name} = %{version}-%{release}
-Requires:  glib2-devel = 1:2.12.0
+Requires:  glib2-devel = 1:2.24.0
 Requires:  graphviz-devel = 2.16
-Requires:  libgee0.6-devel = 0.5
+Requires:  libgee-devel = 0.8
 
 %description devel
 Header file for Valadoc library.
@@ -53,8 +53,8 @@ Summary:  Vala API for Valadoc library
 Summary(pl.UTF-8): API języka Vala do biblioteki Valadoc
 Group: Development/Libraries
 Requires:  %{name}-devel = %{version}-%{release}
-Requires:  vala = 2:0.18
-Requires:  vala-libgee0.6 = 0.5
+Requires:  vala = 2:0.24
+Requires:  vala-libgee = 0.8
 
 %description -n vala-valadoc
 Vala API for Valadoc library.
@@ -107,8 +107,8 @@ rm -rf $RPM_BUILD_ROOT
 %dir %{_libdir}/valadoc/doclets/html
 %attr(755,root,root) %{_libdir}/valadoc/doclets/html/libdoclet.so
 %dir %{_libdir}/valadoc/drivers
-%dir %{_libdir}/valadoc/drivers/0.18.x
-%attr(755,root,root) %{_libdir}/valadoc/drivers/0.18.x/libdriver.so
+%dir %{_libdir}/valadoc/drivers/0.24.x
+%attr(755,root,root) %{_libdir}/valadoc/drivers/0.24.x/libdriver.so
 %{_datadir}/valadoc
 %{_mandir}/man1/valadoc.1*
 


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/valadoc.git/commitdiff/696e262e207796c217e2a30e36abcb2642d724f8

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


DISTFILES: valadoc: valadoc-20140326.tar.xz

2014-03-31 Thread qboosh

Files fetched: 1

STORED: no-url://valadoc-20140326.tar.xz
aa95522b332490572589043259f2c702  valadoc-20140326.tar.xz
Size: 138632 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/libpeas] Update to 1.10.0

2014-03-31 Thread megabajt
commit 8d430993216817f763a37eb588ef5e8afaa4b79a
Author: Marcin Banasiak marcin.banas...@gmail.com
Date:   Mon Mar 31 20:33:40 2014 +0200

Update to 1.10.0

- loader gjs has been removed in this release

 libpeas.spec | 30 +-
 1 file changed, 5 insertions(+), 25 deletions(-)
---
diff --git a/libpeas.spec b/libpeas.spec
index aa49cb2..1b1e65c 100644
--- a/libpeas.spec
+++ b/libpeas.spec
@@ -7,21 +7,20 @@
 Summary:   GObject Plugin System
 Summary(pl.UTF-8): System wtyczek GObject
 Name:  libpeas
-Version:   1.9.0
+Version:   1.10.0
 Release:   1
 License:   LGPL v2
 Group: Libraries
-Source0:   
http://ftp.gnome.org/pub/GNOME/sources/libpeas/1.9/%{name}-%{version}.tar.xz
-# Source0-md5: 54e7c7e80fd8737ffc0987fd09d1267a
+Source0:   
http://ftp.gnome.org/pub/GNOME/sources/libpeas/1.10/%{name}-%{version}.tar.xz
+# Source0-md5: b388cdb1c38ac8701f85c8278df0de0a
 URL:   http://live.gnome.org/Libpeas
 BuildRequires: autoconf = 2.63.2
 BuildRequires: automake = 1:1.11
 BuildRequires: gettext-devel = 0.17
-BuildRequires: gjs-devel = 1.37.1
 %{?with_glade:BuildRequires:   glade-devel = 2.0}
 BuildRequires: glib2-devel = 1:2.32.0
 BuildRequires: gnome-common
-BuildRequires: gobject-introspection-devel = 0.10.1
+BuildRequires: gobject-introspection-devel = 1.40.0
 BuildRequires: gtk+3-devel = 3.0.0
 BuildRequires: gtk-doc = 1.11
 BuildRequires: intltool = 0.40.0
@@ -33,6 +32,7 @@ BuildRequires:rpmbuild(macros) = 1.601
 BuildRequires: seed-devel = 3.0.0
 BuildRequires: tar = 1:1.22
 BuildRequires: xz
+Obsoletes: libpeas-loader-gjs  1.10.0
 BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
 
 %description
@@ -89,19 +89,6 @@ JavaScript (seed) loader for libpeas library.
 %description loader-seed -l pl.UTF-8
 Moduł ładujący dla JavaScriptu (seed) do biblioteki libpeas.
 
-%package loader-gjs
-Summary:   JavaScript (GJS) loader for libpeas library
-Summary(pl.UTF-8): Moduł ładujący dla JavaScriptu (GJS) do biblioteki 
libpeas
-Group: Libraries
-Requires:  %{name} = %{version}-%{release}
-Requires:  gjs = 1.32.0
-
-%description loader-gjs
-JavaScript (GJS) loader for libpeas library.
-
-%description loader-gjs -l pl.UTF-8
-Moduł ładujący dla JavaScriptu (GJS) do biblioteki libpeas.
-
 %package devel
 Summary:   Header files for libpeas library
 Summary(pl.UTF-8): Pliki nagłówkowe biblioteki libpeas
@@ -294,10 +281,6 @@ rm -rf $RPM_BUILD_ROOT
 %defattr(644,root,root,755)
 %attr(755,root,root) %{_libdir}/libpeas-1.0/loaders/libseedloader.so
 
-%files loader-gjs
-%defattr(644,root,root,755)
-%attr(755,root,root) %{_libdir}/libpeas-1.0/loaders/libgjsloader.so
-
 %files devel
 %defattr(644,root,root,755)
 %attr(755,root,root) %{_libdir}/libpeas-1.0.so
@@ -355,9 +338,6 @@ rm -rf $RPM_BUILD_ROOT
 %dir %{_libdir}/peas-demo/plugins/seedhello
 %{_libdir}/peas-demo/plugins/seedhello/seedhello.js
 %{_libdir}/peas-demo/plugins/seedhello/seedhello.plugin
-%dir %{_libdir}/peas-demo/plugins/gjshello
-%{_libdir}/peas-demo/plugins/gjshello/gjshello.js
-%{_libdir}/peas-demo/plugins/gjshello/gjshello.plugin
 
 %if %{with apidocs}
 %files apidocs


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/libpeas.git/commitdiff/8d430993216817f763a37eb588ef5e8afaa4b79a

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


DISTFILES: libpeas: libpeas-1.10.0.tar.xz

2014-03-31 Thread megabajt

Files fetched: 1

STORED: 
http://ftp.gnome.org/pub/GNOME/sources/libpeas/1.10/libpeas-1.10.0.tar.xz
b388cdb1c38ac8701f85c8278df0de0a  libpeas-1.10.0.tar.xz
Size: 507084 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/gnome-weather] Update to 3.12.0

2014-03-31 Thread megabajt
commit 4af9dd85a3cd0c21ee873669bbac3be6effbea9f
Author: Marcin Banasiak marcin.banas...@gmail.com
Date:   Mon Mar 31 20:39:19 2014 +0200

Update to 3.12.0

 gnome-weather.spec | 15 ---
 1 file changed, 8 insertions(+), 7 deletions(-)
---
diff --git a/gnome-weather.spec b/gnome-weather.spec
index 2b3025c..c972562 100644
--- a/gnome-weather.spec
+++ b/gnome-weather.spec
@@ -1,18 +1,19 @@
 Summary:   A weather application for GNOME
 Name:  gnome-weather
-Version:   3.10.1
-Release:   3
+Version:   3.12.0
+Release:   1
 License:   GPL v2+
 Group: X11/Applications
-Source0:   
http://ftp.gnome.org/pub/GNOME/sources/gnome-weather/3.10/%{name}-%{version}.tar.xz
+Source0:   
http://ftp.gnome.org/pub/GNOME/sources/gnome-weather/3.12/%{name}-%{version}.tar.xz
 # Source0-md5: 4a4c2a938d51b746b9a8daa7eaf33dc9
 BuildRequires: autoconf = 2.63
-BuildRequires: automake = 1:1.11
+BuildRequires: automake = 1:1.12
 BuildRequires: gdk-pixbuf2-devel
 BuildRequires: gettext-devel
+BuildRequires: gjs-devel = 1.40.0
 BuildRequires: glib2-devel = 1:2.36.0
 BuildRequires: gobject-introspection-devel = 1.36.0
-BuildRequires: gtk+3-devel = 3.10.0
+BuildRequires: gtk+3-devel = 3.12.0
 BuildRequires: intltool = 0.40.0
 BuildRequires: libgweather-devel = 3.10.0
 BuildRequires: pkgconfig
@@ -20,9 +21,9 @@ BuildRequires:tar = 1:1.22
 BuildRequires: xz
 Requires(post,postun): glib2 = 1:2.36.0
 Requires(post,postun): gtk-update-icon-cache
-Requires:  gjs
+Requires:  gjs = 1.40.0
 Requires:  glib2 = 1:2.36.0
-Requires:  gtk+3 = 3.10.0
+Requires:  gtk+3 = 3.12.0
 Requires:  hicolor-icon-theme
 Requires:  libgweather = 3.10.0
 BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/gnome-weather.git/commitdiff/4af9dd85a3cd0c21ee873669bbac3be6effbea9f

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


[packages/gnome-weather] Update md5

2014-03-31 Thread megabajt
commit 03aeaa1e25cb44f8abfa0db95f85c91d19ffb22d
Author: Marcin Banasiak marcin.banas...@gmail.com
Date:   Mon Mar 31 20:45:33 2014 +0200

Update md5

 gnome-weather.spec | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
---
diff --git a/gnome-weather.spec b/gnome-weather.spec
index c972562..960c902 100644
--- a/gnome-weather.spec
+++ b/gnome-weather.spec
@@ -5,7 +5,7 @@ Release:1
 License:   GPL v2+
 Group: X11/Applications
 Source0:   
http://ftp.gnome.org/pub/GNOME/sources/gnome-weather/3.12/%{name}-%{version}.tar.xz
-# Source0-md5: 4a4c2a938d51b746b9a8daa7eaf33dc9
+# Source0-md5: fa4121882f2cc8d94e7fa8e3a79bce03
 BuildRequires: autoconf = 2.63
 BuildRequires: automake = 1:1.12
 BuildRequires: gdk-pixbuf2-devel


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/gnome-weather.git/commitdiff/03aeaa1e25cb44f8abfa0db95f85c91d19ffb22d

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


DISTFILES: gnome-weather: gnome-weather-3.12.0.tar.xz

2014-03-31 Thread megabajt

Files fetched: 1

STORED: 
http://ftp.gnome.org/pub/GNOME/sources/gnome-weather/3.12/gnome-weather-3.12.0.tar.xz
fa4121882f2cc8d94e7fa8e3a79bce03  gnome-weather-3.12.0.tar.xz
Size: 10521128 bytes


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


DISTFILES: gnome-weather: ERRORS: gnome-weather-3.12.0.tar.xz

2014-03-31 Thread megabajt
FATAL: 
http://ftp.gnome.org/pub/GNOME/sources/gnome-weather/3.12/gnome-weather-3.12.0.tar.xz
 md5 mismatch, needed 4a4c2a938d51b746b9a8daa7eaf33dc9, got 
fa4121882f2cc8d94e7fa8e3a79bce03

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/qt5-qtdeclarative] - pl, unified spec

2014-03-31 Thread qboosh
commit bb4fb35f91d561adaf5bac13112fc644f7709537
Author: Jakub Bogusz qbo...@pld-linux.org
Date:   Mon Mar 31 20:43:18 2014 +0200

- pl, unified spec

 qt5-qtdeclarative.spec | 63 +-
 1 file changed, 42 insertions(+), 21 deletions(-)
---
diff --git a/qt5-qtdeclarative.spec b/qt5-qtdeclarative.spec
index 44d69f0..e106423 100644
--- a/qt5-qtdeclarative.spec
+++ b/qt5-qtdeclarative.spec
@@ -2,7 +2,8 @@
 # - cleanup
 
 %defineorgname qtdeclarative
-Summary:   The Qt5 Declarative
+Summary:   The Qt5 Declarative libraries
+Summary(pl.UTF-8): Biblioteki Qt5 Declarative
 Name:  qt5-%{orgname}
 Version:   5.2.0
 Release:   0.1
@@ -18,42 +19,64 @@ BuildRequires:  tar = 1:1.22
 BuildRequires: xz
 BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
 
-%define_noautoreqdep   libGL.so.1 libGLU.so.1
-%define_noautostrip'.*_debug\\.so*'
-
 %definespecflags   -fno-strict-aliasing
-%define_qtdir  %{_libdir}/qt5
+%defineqt5dir  %{_libdir}/qt5
 
 %description
-Qt5 declarative libraries.
+Qt is a cross-platform application and UI framework. Using Qt, you can
+write web-enabled applications once and deploy them across desktop,
+mobile and embedded systems without rewriting the source code.
+
+This package contains Qt5 Declarative libraries.
+
+%description -l pl.UTF-8
+Qt to wieloplatformowy szkielet aplikacji i interfejsów użytkownika.
+Przy użyciu Qt można pisać aplikacje powiązane z WWW i wdrażać je w
+systemach biurkowych, przenośnych i wbudowanych bez przepisywania kodu
+źródłowego.
+
+Ten pakiet zawiera biblioteki Qt5 Declarative.
 
 %package devel
 Summary:   The Qt5 Declarative application framework - development files
+Summary(pl.UTF-8): Szkielet aplikacji Qt5 Declarative - pliki 
programistyczne
 Group: X11/Development/Libraries
 Requires:  %{name} = %{version}-%{release}
 
 %description devel
-Qt5 Declarative - development files.
+The Qt5 Declarative application framework - development files.
+
+%description devel -l pl.UTF-8
+Szkielet aplikacji Qt5 Declarative - pliki programistyczne.
 
 %package doc
-Summary:   The Qt5 Declarative - docs
+Summary:   Qt5 Declarative documentation
+Summary(pl.UTF-8): Dokumentacja do biblioteki Qt5 Declarative
 Group: Documentation
+Requires:  qt5-doc-common = %{qtbase_ver}
 %if %{_rpmversion} = 5
 BuildArch: noarch
 %endif
 
 %description doc
-Qt5 Declarative - documentation.
+Qt5 Declarative documentation.
+
+%description doc -l pl.UTF-8
+Dokumentacja do biblioteki Qt5 Declarative
 
 %package examples
 Summary:   Qt5 Declarative examples
+Summary(pl.UTF-8): Przykłady do biblioteki Qt5 Declarative
 Group: X11/Development/Libraries
 %if %{_rpmversion} = 5
 BuildArch: noarch
 %endif
 
 %description examples
-Qt5 Declarative - examples.
+Qt5 Declarative examples.
+
+%description examples -l pl.UTF-8
+Przykłady do biblioteki Qt5 Declarative.
 
 %prep
 %setup -q -n %{orgname}-opensource-src-%{version}
@@ -71,6 +94,9 @@ rm -rf $RPM_BUILD_ROOT
 %{__make} install_docs \
INSTALL_ROOT=$RPM_BUILD_ROOT
 
+# actually drop *.la, follow policy of not packaging them when *.pc exist
+%{__rm} $RPM_BUILD_ROOT%{_libdir}/libQt5*.la
+
 # Prepare some files list
 ifecho() {
RESULT=`echo $RPM_BUILD_ROOT$2 2/dev/null`
@@ -99,8 +125,8 @@ done
 %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)
@@ -114,9 +140,9 @@ rm -rf $RPM_BUILD_ROOT
 %attr(755,root,root) %ghost %{_libdir}/libQt5QuickTest.so.?
 %attr(755,root,root) %{_libdir}/libQt5QuickTest.so.*.*
 %{_libdir}/libQt5QmlDevTools.a
-%attr(755,root,root) %{_qtdir}/bin/qml*
-%attr(755,root,root) %{_qtdir}/plugins
-%attr(755,root,root) %{_qtdir}/qml
+%attr(755,root,root) %{qt5dir}/bin/qml*
+%attr(755,root,root) %{qt5dir}/plugins
+%attr(755,root,root) %{qt5dir}/qml
 
 %files devel
 %defattr(644,root,root,755)
@@ -124,11 +150,6 @@ rm -rf $RPM_BUILD_ROOT
 %attr(755,root,root) %{_libdir}/libQt5Quick.so
 %attr(755,root,root) %{_libdir}/libQt5QuickParticles.so
 %attr(755,root,root) %{_libdir}/libQt5QuickTest.so
-%{_libdir}/libQt5Qml.la
-%{_libdir}/libQt5Quick.la
-%{_libdir}/libQt5QuickParticles.la
-%{_libdir}/libQt5QuickTest.la
-%{_libdir}/libQt5QmlDevTools.la
 
 %{_libdir}/libQt5Qml.prl
 %{_libdir}/libQt5Quick.prl
@@ -147,7 +168,7 @@ rm -rf $RPM_BUILD_ROOT
 
 %{_pkgconfigdir}/*.pc
 
-%{_qtdir}/mkspecs
+%{qt5dir}/mkspecs
 
 %files doc
 %defattr(644,root,root,755)


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/qt5-qtdeclarative.git/commitdiff/bb4fb35f91d561adaf5bac13112fc644f7709537

___

[packages/gnome-screenshot] Update to 3.12.0

2014-03-31 Thread megabajt
commit 85e5c3f474f8b1b50f5a1ff2908ead51b6ecf4af
Author: Marcin Banasiak marcin.banas...@gmail.com
Date:   Mon Mar 31 20:49:03 2014 +0200

Update to 3.12.0

 gnome-screenshot.spec | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/gnome-screenshot.spec b/gnome-screenshot.spec
index 8e1e6fb..13cd90c 100644
--- a/gnome-screenshot.spec
+++ b/gnome-screenshot.spec
@@ -1,12 +1,12 @@
 Summary:   Screenshot utility
 Summary(pl.UTF-8): Narzędzie do robienia zrzutów ekranu
 Name:  gnome-screenshot
-Version:   3.10.1
+Version:   3.12.0
 Release:   1
 License:   GPL v2
 Group: X11/Applications
-Source0:   
http://ftp.gnome.org/pub/GNOME/sources/gnome-screenshot/3.10/%{name}-%{version}.tar.xz
-# Source0-md5: 927d03fad1fc8334ce494b175f6a1381
+Source0:   
http://ftp.gnome.org/pub/GNOME/sources/gnome-screenshot/3.12/%{name}-%{version}.tar.xz
+# Source0-md5: d3467ad5bf6a84715a88f5bbc7ef596a
 URL:   http://live.gnome.org/GnomeUtils
 BuildRequires: autoconf = 2.63
 BuildRequires: automake = 1:1.11


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/gnome-screenshot.git/commitdiff/85e5c3f474f8b1b50f5a1ff2908ead51b6ecf4af

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


DISTFILES: gnome-screenshot: gnome-screenshot-3.12.0.tar.xz

2014-03-31 Thread megabajt

Files fetched: 1

STORED: 
http://ftp.gnome.org/pub/GNOME/sources/gnome-screenshot/3.12/gnome-screenshot-3.12.0.tar.xz
d3467ad5bf6a84715a88f5bbc7ef596a  gnome-screenshot-3.12.0.tar.xz
Size: 258112 bytes


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


[packages/kernel] - moved obsolete IDE drivers to separate package

2014-03-31 Thread baggins
commit 55e054be985448e89c1d23d56d030839a136a378
Author: Jan Rękorajski bagg...@pld-linux.org
Date:   Mon Mar 31 21:13:34 2014 +0200

- moved obsolete IDE drivers to separate package

 kernel.spec | 35 +++
 1 file changed, 35 insertions(+)
---
diff --git a/kernel.spec b/kernel.spec
index 3c03c63..bb71198 100644
--- a/kernel.spec
+++ b/kernel.spec
@@ -39,6 +39,7 @@
 %{?debug:%define with_verbose 1}
 
 %definehave_drm1
+%definehave_ide1
 %definehave_oss1
 %definehave_sound  1
 %definehave_pcmcia 1
@@ -51,6 +52,7 @@
 
 %if %{with myown}
 %definehave_drm0
+%definehave_ide0
 %definehave_oss0
 %definehave_sound  0
 %definehave_pcmcia 0
@@ -463,6 +465,24 @@ DRM Kernel Treiber.
 %description drm -l pl.UTF-8
 Sterowniki DRM.
 
+%package ide
+Summary:   IDE kernel modules
+Summary(de.UTF-8): IDE Kernel Treiber
+Summary(pl.UTF-8): Sterowniki IDE
+Group: Base/Kernel
+Requires(postun):  %{name} = %{epoch}:%{version}-%{release}
+Requires:  %{name} = %{epoch}:%{version}-%{release}
+AutoReqProv:   no
+
+%description ide
+IDE kernel modules.
+
+%description ide -l de.UTF-8
+IDE Kernel Treiber.
+
+%description ide -l pl.UTF-8
+Sterowniki IDE.
+
 %package pcmcia
 Summary:   PCMCIA modules
 Summary(de.UTF-8): PCMCIA Module
@@ -1187,6 +1207,12 @@ fi
 %postun drm
 %depmod %{kernel_release}
 
+%post ide
+%depmod %{kernel_release}
+
+%postun ide
+%depmod %{kernel_release}
+
 %post pcmcia
 %depmod %{kernel_release}
 
@@ -1250,6 +1276,9 @@ fi
 %if %{have_drm}
 %exclude /lib/modules/%{kernel_release}/kernel/drivers/gpu
 %endif
+%if %{have_ide}
+%exclude /lib/modules/%{kernel_release}/kernel/drivers/ide
+%endif
 /lib/modules/%{kernel_release}/kernel/fs
 /lib/modules/%{kernel_release}/kernel/kernel
 /lib/modules/%{kernel_release}/kernel/lib
@@ -1323,6 +1352,12 @@ fi
 /lib/modules/%{kernel_release}/kernel/drivers/gpu
 %endif
 
+%if %{have_ide}
+%files ide
+%defattr(644,root,root,755)
+/lib/modules/%{kernel_release}/kernel/drivers/ide
+%endif
+
 %if %{have_pcmcia}
 %files pcmcia
 %defattr(644,root,root,755)


 gitweb:

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

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


[packages/kernel/LINUX_3_4] - moved obsolete IDE drivers to separate package

2014-03-31 Thread baggins
commit 9e5c5ab8f5d7cf6fec8af260b05f1ccb2da2c42a
Author: Jan Rękorajski bagg...@pld-linux.org
Date:   Mon Mar 31 21:13:34 2014 +0200

- moved obsolete IDE drivers to separate package

 kernel.spec | 35 +++
 1 file changed, 35 insertions(+)
---
diff --git a/kernel.spec b/kernel.spec
index bb5e67f..f1ee319 100644
--- a/kernel.spec
+++ b/kernel.spec
@@ -60,6 +60,7 @@
 %endif
 
 %definehave_drm1
+%definehave_ide1
 %definehave_oss1
 %definehave_sound  1
 %definehave_pcmcia 1
@@ -74,6 +75,7 @@
 
 %if %{with myown}
 %definehave_drm0
+%definehave_ide0
 %definehave_oss0
 %definehave_sound  0
 %definehave_pcmcia 0
@@ -485,6 +487,24 @@ DRM Kernel Treiber.
 %description drm -l pl.UTF-8
 Sterowniki DRM.
 
+%package ide
+Summary:   IDE kernel modules
+Summary(de.UTF-8): IDE Kernel Treiber
+Summary(pl.UTF-8): Sterowniki IDE
+Group: Base/Kernel
+Requires(postun):  %{name} = %{epoch}:%{version}-%{release}
+Requires:  %{name} = %{epoch}:%{version}-%{release}
+AutoReqProv:   no
+
+%description ide
+IDE kernel modules.
+
+%description ide -l de.UTF-8
+IDE Kernel Treiber.
+
+%description ide -l pl.UTF-8
+Sterowniki IDE.
+
 %package pcmcia
 Summary:   PCMCIA modules
 Summary(de.UTF-8): PCMCIA Module
@@ -1210,6 +1230,12 @@ fi
 %postun drm
 %depmod %{kernel_release}
 
+%post ide
+%depmod %{kernel_release}
+
+%postun ide
+%depmod %{kernel_release}
+
 %post pcmcia
 %depmod %{kernel_release}
 
@@ -1273,6 +1299,9 @@ fi
 %if %{have_drm}
 %exclude /lib/modules/%{kernel_release}/kernel/drivers/gpu
 %endif
+%if %{have_ide}
+%exclude /lib/modules/%{kernel_release}/kernel/drivers/ide
+%endif
 /lib/modules/%{kernel_release}/kernel/fs
 /lib/modules/%{kernel_release}/kernel/kernel
 /lib/modules/%{kernel_release}/kernel/lib
@@ -1347,6 +1376,12 @@ fi
 /lib/modules/%{kernel_release}/kernel/drivers/gpu
 %endif
 
+%if %{have_ide}
+%files ide
+%defattr(644,root,root,755)
+/lib/modules/%{kernel_release}/kernel/drivers/ide
+%endif
+
 %if %{have_pcmcia}
 %files pcmcia
 %defattr(644,root,root,755)


 gitweb:

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

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


[packages/kernel/LINUX_3_10] - moved obsolete IDE drivers to separate package

2014-03-31 Thread baggins
commit 795783d0676a01efbeac35ff464f9c98c20dcf50
Author: Jan Rękorajski bagg...@pld-linux.org
Date:   Mon Mar 31 21:13:34 2014 +0200

- moved obsolete IDE drivers to separate package

 kernel.spec | 35 +++
 1 file changed, 35 insertions(+)
---
diff --git a/kernel.spec b/kernel.spec
index 6d5d75e..1c5d6ce 100644
--- a/kernel.spec
+++ b/kernel.spec
@@ -40,6 +40,7 @@
 %{?debug:%define with_verbose 1}
 
 %definehave_drm1
+%definehave_ide1
 %definehave_oss1
 %definehave_sound  1
 %definehave_pcmcia 1
@@ -52,6 +53,7 @@
 
 %if %{with myown}
 %definehave_drm0
+%definehave_ide0
 %definehave_oss0
 %definehave_sound  0
 %definehave_pcmcia 0
@@ -470,6 +472,24 @@ DRM Kernel Treiber.
 %description drm -l pl.UTF-8
 Sterowniki DRM.
 
+%package ide
+Summary:   IDE kernel modules
+Summary(de.UTF-8): IDE Kernel Treiber
+Summary(pl.UTF-8): Sterowniki IDE
+Group: Base/Kernel
+Requires(postun):  %{name} = %{epoch}:%{version}-%{release}
+Requires:  %{name} = %{epoch}:%{version}-%{release}
+AutoReqProv:   no
+
+%description ide
+IDE kernel modules.
+
+%description ide -l de.UTF-8
+IDE Kernel Treiber.
+
+%description ide -l pl.UTF-8
+Sterowniki IDE.
+
 %package pcmcia
 Summary:   PCMCIA modules
 Summary(de.UTF-8): PCMCIA Module
@@ -1196,6 +1216,12 @@ fi
 %postun drm
 %depmod %{kernel_release}
 
+%post ide
+%depmod %{kernel_release}
+
+%postun ide
+%depmod %{kernel_release}
+
 %post pcmcia
 %depmod %{kernel_release}
 
@@ -1259,6 +1285,9 @@ fi
 %if %{have_drm}
 %exclude /lib/modules/%{kernel_release}/kernel/drivers/gpu
 %endif
+%if %{have_ide}
+%exclude /lib/modules/%{kernel_release}/kernel/drivers/ide
+%endif
 /lib/modules/%{kernel_release}/kernel/fs
 /lib/modules/%{kernel_release}/kernel/kernel
 /lib/modules/%{kernel_release}/kernel/lib
@@ -1332,6 +1361,12 @@ fi
 /lib/modules/%{kernel_release}/kernel/drivers/gpu
 %endif
 
+%if %{have_ide}
+%files ide
+%defattr(644,root,root,755)
+/lib/modules/%{kernel_release}/kernel/drivers/ide
+%endif
+
 %if %{have_pcmcia}
 %files pcmcia
 %defattr(644,root,root,755)


 gitweb:

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

___
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.84.xz

2014-03-31 Thread baggins
kernel: undefined macro version



Files fetched: 0

ALREADY GOT: http://www.kernel.org/pub/linux/kernel/v3.x/linux-3.4.tar.xz
967f72983655e2479f951195953e8480  linux-3.4.tar.xz
ALREADY GOT: http://www.kernel.org/pub/linux/kernel/v3.x/patch-3.4.84.xz
e89689c0caaf6acb39cbb92dfd7ac266  patch-3.4.84.xz


-- 
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/anjuta] Update to 3.12.0

2014-03-31 Thread megabajt
commit 9bf53fe3301b937901a90af3317036bbea2579c6
Author: Marcin Banasiak marcin.banas...@gmail.com
Date:   Mon Mar 31 21:17:43 2014 +0200

Update to 3.12.0

 anjuta.spec | 10 ++
 1 file changed, 6 insertions(+), 4 deletions(-)
---
diff --git a/anjuta.spec b/anjuta.spec
index 0144d59..c48c3c2 100644
--- a/anjuta.spec
+++ b/anjuta.spec
@@ -3,13 +3,13 @@ Summary(es.UTF-8):Entorno integrado de desarrollo (IDE) 
de GNOME
 Summary(pl.UTF-8): Zintegrowane środowisko programowania dla GNOME
 Summary(pt_BR.UTF-8):  Ambiente de desenvolvimento integrado C e C++
 Name:  anjuta
-Version:   3.10.2
-Release:   2
+Version:   3.12.0
+Release:   1
 Epoch: 1
 License:   GPL v2+
 Group: X11/Development/Tools
-Source0:   
http://ftp.gnome.org/pub/GNOME/sources/anjuta/3.10/%{name}-%{version}.tar.xz
-# Source0-md5: b88a472987ab692d5aad3949e348bde9
+Source0:   
http://ftp.gnome.org/pub/GNOME/sources/anjuta/3.12/%{name}-%{version}.tar.xz
+# Source0-md5: 9ab0b5d6b005e7ad45049e66f6ee5f75
 Patch0:%{name}-desktop.patch
 URL:   http://projects.gnome.org/anjuta/
 BuildRequires: autoconf = 2.65
@@ -226,6 +226,7 @@ rm -rf $RPM_BUILD_ROOT
 %{_datadir}/%{name}/tables.sql
 %{_datadir}/%{name}/welcome.txt
 %{_datadir}/%{name}/AUTHORS
+%{_datadir}/appdata/anjuta.appdata.xml
 %{_datadir}/glib-2.0/schemas/org.gnome.anjuta.cvs.gschema.xml
 %{_datadir}/glib-2.0/schemas/org.gnome.anjuta.document-manager.gschema.xml
 %{_datadir}/glib-2.0/schemas/org.gnome.anjuta.file-manager.gschema.xml
@@ -243,6 +244,7 @@ rm -rf $RPM_BUILD_ROOT
 %{_datadir}/glib-2.0/schemas/org.gnome.anjuta.plugins.js.gschema.xml
 
%{_datadir}/glib-2.0/schemas/org.gnome.anjuta.plugins.message-manager.gschema.xml
 %{_datadir}/glib-2.0/schemas/org.gnome.anjuta.plugins.parser-cxx.gschema.xml
+%{_datadir}/glib-2.0/schemas/org.gnome.anjuta.plugins.project-wizard.gschema.xml
 %{_datadir}/glib-2.0/schemas/org.gnome.anjuta.plugins.python.gschema.xml
 %{_datadir}/glib-2.0/schemas/org.gnome.anjuta.plugins.run.gschema.xml
 %{_datadir}/glib-2.0/schemas/org.gnome.anjuta.plugins.sourceview.gschema.xml


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/anjuta.git/commitdiff/9bf53fe3301b937901a90af3317036bbea2579c6

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


DISTFILES: anjuta: anjuta-3.12.0.tar.xz

2014-03-31 Thread megabajt

Files fetched: 1

STORED: http://ftp.gnome.org/pub/GNOME/sources/anjuta/3.12/anjuta-3.12.0.tar.xz
9ab0b5d6b005e7ad45049e66f6ee5f75  anjuta-3.12.0.tar.xz
Size: 6201372 bytes


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


[packages/kernel] - 3.13.8

2014-03-31 Thread baggins
commit c9fe229108874e79f718ed4dbca06d1d142f3c30
Author: Jan Rękorajski bagg...@pld-linux.org
Date:   Mon Mar 31 21:21:37 2014 +0200

- 3.13.8

 kernel.spec | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/kernel.spec b/kernel.spec
index bb71198..a341c21 100644
--- a/kernel.spec
+++ b/kernel.spec
@@ -70,7 +70,7 @@
 
 %definerel 1
 %definebasever 3.13
-%definepostver .7
+%definepostver .8
 
 # define this to '-%{basever}' for longterm branch
 %defineversuffix   %{nil}
@@ -116,7 +116,7 @@ Source0:
http://www.kernel.org/pub/linux/kernel/v3.x/linux-%{basever}.tar.xz
 # Source0-md5: 0ecbaf65c00374eb4a826c2f9f37606f
 %if %{postver} != .0
 Patch0:
http://www.kernel.org/pub/linux/kernel/v3.x/patch-%{version}.xz
-# Patch0-md5:  cb33b329d3417846d310c7f58a2614b6
+# Patch0-md5:  72b911bfc50de88c67bd0e8732978deb
 %endif
 Source1:   kernel.sysconfig
 


 gitweb:

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

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


DISTFILES: kernel: linux-3.13.tar.xz patch-3.13.8.xz

2014-03-31 Thread baggins

Files fetched: 1

ALREADY GOT: http://www.kernel.org/pub/linux/kernel/v3.x/linux-3.13.tar.xz
0ecbaf65c00374eb4a826c2f9f37606f  linux-3.13.tar.xz
STORED: http://www.kernel.org/pub/linux/kernel/v3.x/patch-3.13.8.xz
72b911bfc50de88c67bd0e8732978deb  patch-3.13.8.xz
Size: 240980 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/file-roller] Update to 3.12.0

2014-03-31 Thread megabajt
commit 6df198b5352254ca10de198b722164e1ba279bf2
Author: Marcin Banasiak marcin.banas...@gmail.com
Date:   Mon Mar 31 21:22:51 2014 +0200

Update to 3.12.0

 file-roller.spec | 8 
 1 file changed, 4 insertions(+), 4 deletions(-)
---
diff --git a/file-roller.spec b/file-roller.spec
index 763fb41..324575e 100644
--- a/file-roller.spec
+++ b/file-roller.spec
@@ -6,12 +6,12 @@ Summary:  An archive manager for GNOME
 Summary(pl.UTF-8): Zarządca archiwów dla GNOME
 Summary(pt_BR.UTF-8):  Gerenciador de arquivos compactados para o GNOME
 Name:  file-roller
-Version:   3.10.2.1
-Release:   2
+Version:   3.12.0
+Release:   1
 License:   GPL v2+
 Group: X11/Applications
-Source0:   
http://ftp.gnome.org/pub/GNOME/sources/file-roller/3.10/%{name}-%{version}.tar.xz
-# Source0-md5: f0af445adb92b13f20619e486f6941a0
+Source0:   
http://ftp.gnome.org/pub/GNOME/sources/file-roller/3.12/%{name}-%{version}.tar.xz
+# Source0-md5: 4c247806f3d4662b44923c19cc9b9754
 URL:   http://www.gnome.org/
 BuildRequires: autoconf = 2.68
 BuildRequires: automake = 1:1.11


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/file-roller.git/commitdiff/6df198b5352254ca10de198b722164e1ba279bf2

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


DISTFILES: file-roller: file-roller-3.12.0.tar.xz

2014-03-31 Thread megabajt

Files fetched: 1

STORED: 
http://ftp.gnome.org/pub/GNOME/sources/file-roller/3.12/file-roller-3.12.0.tar.xz
4c247806f3d4662b44923c19cc9b9754  file-roller-3.12.0.tar.xz
Size: 1395716 bytes


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


[packages/kernel/LINUX_3_10] - 3.10.35

2014-03-31 Thread baggins
commit 799f0bac067c1eb8630b5510eeb716210841f1bb
Author: Jan Rękorajski bagg...@pld-linux.org
Date:   Mon Mar 31 21:27:03 2014 +0200

- 3.10.35

 kernel.spec | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/kernel.spec b/kernel.spec
index 1c5d6ce..50d6e37 100644
--- a/kernel.spec
+++ b/kernel.spec
@@ -71,7 +71,7 @@
 
 %definerel 1
 %definebasever 3.10
-%definepostver .34
+%definepostver .35
 
 %defineversuffix   -%{basever}
 
@@ -116,7 +116,7 @@ Source0:
http://www.kernel.org/pub/linux/kernel/v3.x/linux-%{basever}.tar.xz
 # Source0-md5: 4f25cd5bec5f8d5a7d935b3f2ccb8481
 %if %{postver} != .0
 Patch0:
http://www.kernel.org/pub/linux/kernel/v3.x/patch-%{version}.xz
-# Patch0-md5:  4d2408fed334c91535ec0d9783943b9c
+# Patch0-md5:  1f9d5b92cdb65c4eb5ad2d9e84f160ae
 %endif
 Source1:   kernel.sysconfig
 


 gitweb:

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

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


DISTFILES: kernel: linux-3.10.tar.xz patch-3.10.35.xz reiser4-for-3.10.patch.gz

2014-03-31 Thread baggins

Files fetched: 1

ALREADY GOT: http://www.kernel.org/pub/linux/kernel/v3.x/linux-3.10.tar.xz
4f25cd5bec5f8d5a7d935b3f2ccb8481  linux-3.10.tar.xz
STORED: http://www.kernel.org/pub/linux/kernel/v3.x/patch-3.10.35.xz
1f9d5b92cdb65c4eb5ad2d9e84f160ae  patch-3.10.35.xz
Size: 636324 bytes
ALREADY GOT: 
http://downloads.sourceforge.net/reiser4/reiser4-for-linux-3.x/reiser4-for-3.10.patch.gz
5af1bdc286a88ef79268337c7ff17508  reiser4-for-3.10.patch.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/kernel/LINUX_3_4] - 3.4.85

2014-03-31 Thread baggins
commit 21898f9408abf03694ac3ee1883de8aabcae435f
Author: Jan Rękorajski bagg...@pld-linux.org
Date:   Mon Mar 31 21:42:53 2014 +0200

- 3.4.85

 kernel.spec | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/kernel.spec b/kernel.spec
index f1ee319..e7a6e9f 100644
--- a/kernel.spec
+++ b/kernel.spec
@@ -93,7 +93,7 @@
 
 %definerel 1
 %definebasever 3.4
-%definepostver .84
+%definepostver .85
 
 %defineversuffix   -%{basever}
 
@@ -142,7 +142,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}.xz
-# Patch0-md5:  e89689c0caaf6acb39cbb92dfd7ac266
+# Patch0-md5:  2cf0a14e1a620d6f4bc4231a4515f6ba
 %endif
 Source1:   kernel.sysconfig
 


 gitweb:

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

___
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.85.xz

2014-03-31 Thread baggins
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.85.xz
2cf0a14e1a620d6f4bc4231a4515f6ba  patch-3.4.85.xz
Size: 919156 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/telepathy-mission-control] - added bcond for legacy UPower support (disabled for default); rel. 2

2014-03-31 Thread kiesiu
commit 2731131b8ba1c4d87aee8f4c4bcf5e8744e60c56
Author: Łukasz Kieś kie...@pld-linux.org
Date:   Mon Mar 31 21:59:32 2014 +0200

- added bcond for legacy UPower support (disabled for default); rel. 2

 telepathy-mission-control.spec | 6 --
 1 file changed, 4 insertions(+), 2 deletions(-)
---
diff --git a/telepathy-mission-control.spec b/telepathy-mission-control.spec
index 55591a5..af22823 100644
--- a/telepathy-mission-control.spec
+++ b/telepathy-mission-control.spec
@@ -5,12 +5,13 @@
 #
 # Conditional build:
 %bcond_without apidocs # disable gtk-doc
+%bcond_withupower  # enable legacy UPower support
 #
 Summary:   A Telepathy account manager
 Summary(pl.UTF-8): Zarządca kont Telepathy
 Name:  telepathy-mission-control
 Version:   5.16.1
-Release:   1
+Release:   2
 License:   LGPL v2.1+
 Group: Libraries
 Source0:   
http://telepathy.freedesktop.org/releases/telepathy-mission-control/%{name}-%{version}.tar.gz
@@ -31,7 +32,7 @@ BuildRequires:python = 1:2.6
 BuildRequires: python-modules = 1:2.6
 BuildRequires: rpmbuild(macros) = 1.527
 BuildRequires: telepathy-glib-devel = 0.20.0
-BuildRequires: upower-devel
+%{?with_upower:BuildRequires:  upower-devel  0.99.0}
 Requires(post,postun): glib2 = 1:2.32.0
 Requires:  dbus-glib = 0.82
 Requires:  dbus-libs = 0.95
@@ -89,6 +90,7 @@ Dokumentacja API biblioteki mission control.
--disable-libaccounts-sso \
--disable-static \
%{__enable_disable apidocs gtk-doc} \
+   %{__enable_disable upower upower} \
--with-html-dir=%{_gtkdocdir}
 %{__make}
 


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/telepathy-mission-control.git/commitdiff/2731131b8ba1c4d87aee8f4c4bcf5e8744e60c56

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


[packages/gedit] Update to 3.12.0

2014-03-31 Thread megabajt
commit 2b9cbd826bbd73d72b7ee60ddd74dd885ea66319
Author: Marcin Banasiak marcin.banas...@gmail.com
Date:   Mon Mar 31 22:18:10 2014 +0200

Update to 3.12.0

 gedit.spec | 47 +--
 1 file changed, 33 insertions(+), 14 deletions(-)
---
diff --git a/gedit.spec b/gedit.spec
index db00e53..92a4d93 100644
--- a/gedit.spec
+++ b/gedit.spec
@@ -1,26 +1,26 @@
 Summary:   gedit - small but powerful text editor for X Window
 Summary(pl.UTF-8): gedit - mały ale potężny edytor tekstu dla X Window
 Name:  gedit
-Version:   3.10.4
+Version:   3.12.0
 Release:   1
 License:   GPL v2+
 Group: X11/Applications/Editors
-Source0:   
http://ftp.gnome.org/pub/GNOME/sources/gedit/3.10/%{name}-%{version}.tar.xz
-# Source0-md5: 62f9e61297487bcd2ea21ec229e8e284
+Source0:   
http://ftp.gnome.org/pub/GNOME/sources/gedit/3.12/%{name}-%{version}.tar.xz
+# Source0-md5: d603299a2f885e48d8ba1cf8f16e3b6c
 URL:   http://www.gnome.org/projects/gedit/
 BuildRequires: autoconf = 2.63.2
 BuildRequires: automake = 1:1.11
 BuildRequires: docbook-dtd412-xml
 BuildRequires: enchant-devel = 1.2.0
 BuildRequires: gettext-devel = 0.18
-BuildRequires: glib2-devel = 1:2.38.0
+BuildRequires: glib2-devel = 1:2.40.0
 BuildRequires: gnome-common = 2.24.0
 BuildRequires: gnome-doc-utils = 0.14.0
 BuildRequires: gobject-introspection-devel = 0.10.0
 BuildRequires: gsettings-desktop-schemas-devel = 3.2.0
-BuildRequires: gtk+3-devel = 3.10.0
+BuildRequires: gtk+3-devel = 3.12.0
 BuildRequires: gtk-doc = 1.0
-BuildRequires: gtksourceview3-devel = 3.10.0
+BuildRequires: gtksourceview3-devel = 3.12.0
 BuildRequires: intltool = 0.50.1
 BuildRequires: iso-codes = 0.35
 BuildRequires: libpeas-devel = 1.7.0
@@ -35,17 +35,18 @@ BuildRequires:  rpmbuild(find_lang) = 1.23
 BuildRequires: rpmbuild(macros) = 1.601
 BuildRequires: sed = 4.0
 BuildRequires: tar = 1:1.22
+BuildRequires: vala
 BuildRequires: xorg-lib-libX11-devel
 BuildRequires: xz
 BuildRequires: yelp-tools
 BuildRequires: zeitgeist-devel = 0.9.12
 Requires(post,postun): desktop-file-utils
-Requires(post,postun): glib2 = 1:2.38.0
+Requires(post,postun): glib2 = 1:2.40.0
 Requires:  enchant = 1.2.0
-Requires:  glib2 = 1:2.38.0
+Requires:  glib2 = 1:2.40.0
 Requires:  gsettings-desktop-schemas = 3.2.0
-Requires:  gtk+3 = 3.10.0
-Requires:  gtksourceview3 = 3.10.0
+Requires:  gtk+3 = 3.12.0
+Requires:  gtksourceview3 = 3.12.0
 Requires:  iso-codes = 0.35
 Requires:  libpeas-loader-python3 = 1.7.0
 Requires:  python3-pycairo
@@ -77,9 +78,9 @@ Summary:  gedit header files
 Summary(pl.UTF-8): Pliki nagłówkowe gedit
 Group: X11/Development/Libraries
 # doesn't require base
-Requires:  glib2-devel = 1:2.38.0
-Requires:  gtk+3-devel = 3.10.0
-Requires:  gtksourceview3-devel = 3.10.0
+Requires:  glib2-devel = 1:2.40.0
+Requires:  gtk+3-devel = 3.12.0
+Requires:  gtksourceview3-devel = 3.12.0
 Requires:  libpeas-devel = 1.7.0
 Requires:  libpeas-gtk-devel = 1.7.0
 Obsoletes: gedit2-devel
@@ -103,6 +104,19 @@ gedit API documentation.
 %description apidocs -l pl.UTF-8
 Dokumentacja API gedit.
 
+%package -n vala-gedit
+Summary:   gedit API for Vala language
+Summary(pl.UTF-8): API gedit dla języka Vala
+Group: Development/Libraries
+Requires:  %{name}-devel = %{version}-%{release}
+Requires:  vala
+
+%description -n vala-gedit
+gedit API for Vala language.
+
+%description -n vala-gedit -l pl.UTF-8
+API gedit dla języka Vala.
+
 %prep
 %setup -q
 
@@ -180,9 +194,14 @@ rm -rf $RPM_BUILD_ROOT
 
 %files devel
 %defattr(644,root,root,755)
-%{_includedir}/gedit-3.0
+%{_includedir}/gedit-3.12
 %{_pkgconfigdir}/gedit.pc
 
 %files apidocs
 %defattr(644,root,root,755)
 %{_gtkdocdir}/gedit
+
+%files -n vala-gedit
+%defattr(644,root,root,755)
+%{_datadir}/vala/vapi/gedit.deps
+%{_datadir}/vala/vapi/gedit.vapi


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/gedit.git/commitdiff/2b9cbd826bbd73d72b7ee60ddd74dd885ea66319

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


DISTFILES: gedit: gedit-3.12.0.tar.xz

2014-03-31 Thread megabajt

Files fetched: 1

STORED: http://ftp.gnome.org/pub/GNOME/sources/gedit/3.12/gedit-3.12.0.tar.xz
d603299a2f885e48d8ba1cf8f16e3b6c  gedit-3.12.0.tar.xz
Size: 2894480 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/libpeas] - python epoch, install time g-i version

2014-03-31 Thread qboosh
commit 18311bc39345f63bd26da625a6c665fa8c158a68
Author: Jakub Bogusz qbo...@pld-linux.org
Date:   Mon Mar 31 22:27:28 2014 +0200

- python epoch, install time g-i version

 libpeas.spec | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/libpeas.spec b/libpeas.spec
index 1b1e65c..174bd03 100644
--- a/libpeas.spec
+++ b/libpeas.spec
@@ -25,7 +25,7 @@ BuildRequires:gtk+3-devel = 3.0.0
 BuildRequires: gtk-doc = 1.11
 BuildRequires: intltool = 0.40.0
 BuildRequires: libtool = 2:2.2.6
-BuildRequires: python = 2.5.2
+BuildRequires: python = 1:2.5.2
 BuildRequires: python-pygobject3-devel = 3.0.0
 BuildRequires: python3-devel = 3.2.0
 BuildRequires: rpmbuild(macros) = 1.601
@@ -56,7 +56,7 @@ Summary:  Python 2.x loader for libpeas library
 Summary(pl.UTF-8): Moduł ładujący dla Pythona 2.x do biblioteki libpeas
 Group: Libraries
 Requires:  %{name} = %{version}-%{release}
-Requires:  python-libs = 2.5.2
+Requires:  python-libs = 1:2.5.2
 
 %description loader-python
 Python 2.x loader for libpeas library.
@@ -95,7 +95,7 @@ Summary(pl.UTF-8):Pliki nagłówkowe biblioteki libpeas
 Group: Development/Libraries
 Requires:  %{name} = %{version}-%{release}
 Requires:  glib2-devel = 1:2.32.0
-Requires:  gobject-introspection-devel = 0.10.1
+Requires:  gobject-introspection-devel = 1.40.0
 
 %description devel
 Header files for libpeas library.


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/libpeas.git/commitdiff/18311bc39345f63bd26da625a6c665fa8c158a68

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


[packages/php/PHP_5_4] up to 5.4.26

2014-03-31 Thread glen
commit 616ad10e56034fce49693bb61771587b55ce0835
Author: Elan Ruusamäe g...@delfi.ee
Date:   Mon Mar 31 23:28:45 2014 +0300

up to 5.4.26

 php.spec  |  6 +++---
 suhosin.patch | 28 ++--
 2 files changed, 17 insertions(+), 17 deletions(-)
---
diff --git a/php.spec b/php.spec
index cf90427..2553621 100644
--- a/php.spec
+++ b/php.spec
@@ -124,7 +124,7 @@ ERROR: You need to select at least one Apache SAPI to build 
shared modules.
 %undefine  with_filter
 %endif
 
-%definerel 4
+%definerel 1
 %defineorgname php
 %definever_suffix 54
 %definephp_suffix %{!?with_default_php:%{ver_suffix}}
@@ -135,13 +135,13 @@ Summary(pt_BR.UTF-8): A linguagem de script PHP
 Summary(ru.UTF-8): PHP Версии 5 - язык препроцессирования HTML-файлов, 
выполняемый на сервере
 Summary(uk.UTF-8): PHP Версії 5 - мова препроцесування HTML-файлів, 
виконувана на сервері
 Name:  %{orgname}%{php_suffix}
-Version:   5.4.20
+Version:   5.4.26
 Release:   %{rel}%{?with_type_hints:.th}%{?with_oci8:.oci}
 Epoch: 4
 License:   PHP
 Group: Libraries
 Source0:   http://www.php.net/distributions/%{orgname}-%{version}.tar.bz2
-# Source0-md5: e25db5592ed14842b4239be9d990cce8
+# Source0-md5: 979e17b5492ce9c65a3c37f22c7c9655
 Source2:   %{orgname}-mod_%{orgname}.conf
 Source3:   %{orgname}-cgi-fcgi.ini
 Source4:   %{orgname}-apache.ini
diff --git a/suhosin.patch b/suhosin.patch
index 8431555..1fb7335 100644
--- a/suhosin.patch
+++ b/suhosin.patch
@@ -5586,17 +5586,17 @@ the following modifications have been made:
}
 +#if SUHOSIN_PATCH
  #if ZEND_DEBUG
--  php_printf(PHP %s (%s) 
(built: %s %s) (DEBUG)\nCopyright (c) 1997-2013 The PHP Group\n%s, 
PHP_VERSION, sapi_module.name, __DATE__, __TIME__, get_zend_version());
-+  php_printf(PHP %s with 
Suhosin-Patch (%s) (built: %s %s) (DEBUG)\nCopyright (c) 1997-2013 The PHP 
Group\n%s, PHP_VERSION, sapi_module.name, __DATE__, __TIME__, 
get_zend_version());
+-  php_printf(PHP %s (%s) 
(built: %s %s) (DEBUG)\nCopyright (c) 1997-2014 The PHP Group\n%s, 
PHP_VERSION, sapi_module.name, __DATE__, __TIME__, get_zend_version());
++  php_printf(PHP %s with 
Suhosin-Patch (%s) (built: %s %s) (DEBUG)\nCopyright (c) 1997-2014 The PHP 
Group\n%s, PHP_VERSION, sapi_module.name, __DATE__, __TIME__, 
get_zend_version());
  #else
--  php_printf(PHP %s (%s) 
(built: %s %s)\nCopyright (c) 1997-2013 The PHP Group\n%s, PHP_VERSION, 
sapi_module.name, __DATE__, __TIME__, get_zend_version());
-+  php_printf(PHP %s with 
Suhosin-Patch (%s) (built: %s %s)\nCopyright (c) 1997-2013 The PHP Group\n%s, 
PHP_VERSION, sapi_module.name, __DATE__, __TIME__, get_zend_version());
+-  php_printf(PHP %s (%s) 
(built: %s %s)\nCopyright (c) 1997-2014 The PHP Group\n%s, PHP_VERSION, 
sapi_module.name, __DATE__, __TIME__, get_zend_version());
++  php_printf(PHP %s with 
Suhosin-Patch (%s) (built: %s %s)\nCopyright (c) 1997-2014 The PHP Group\n%s, 
PHP_VERSION, sapi_module.name, __DATE__, __TIME__, get_zend_version());
 +#endif
 +#else
 +  #if ZEND_DEBUG
-+  php_printf(PHP %s (%s) 
(built: %s %s) (DEBUG)\nCopyright (c) 1997-2013 The PHP Group\n%s, 
PHP_VERSION, sapi_module.name, __DATE__, __TIME__, get_zend_version());
++  php_printf(PHP %s (%s) 
(built: %s %s) (DEBUG)\nCopyright (c) 1997-2014 The PHP Group\n%s, 
PHP_VERSION, sapi_module.name, __DATE__, __TIME__, get_zend_version());
 +  #else
-+  php_printf(PHP %s (%s) 
(built: %s %s)\nCopyright (c) 1997-2013 The PHP Group\n%s, PHP_VERSION, 
sapi_module.name, __DATE__, __TIME__, get_zend_version());
++  php_printf(PHP %s (%s) 
(built: %s %s)\nCopyright (c) 1997-2014 The PHP Group\n%s, PHP_VERSION, 
sapi_module.name, __DATE__, __TIME__, get_zend_version());
 +  #endif
  #endif

php_request_shutdown((void *) 0);
@@ -5608,9 +5608,9 @@ the following modifications have been made:
  
case 'v': /* show php version  quit */
 +#if SUHOSIN_PATCH
-+  php_printf(PHP %s with Suhosin-Patch (%s) 
(built: %s %s) %s\nCopyright (c) 1997-2013 The PHP Group\n%s,
++  php_printf(PHP %s with Suhosin-Patch (%s) 
(built: %s %s) 

[packages/telepathy-mission-control] simplify

2014-03-31 Thread glen
commit 3ac2cb311a97ad30ec0608de11fb399f6d875857
Author: Elan Ruusamäe g...@delfi.ee
Date:   Mon Mar 31 23:29:28 2014 +0300

simplify

 telepathy-mission-control.spec | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)
---
diff --git a/telepathy-mission-control.spec b/telepathy-mission-control.spec
index af22823..59ff2b8 100644
--- a/telepathy-mission-control.spec
+++ b/telepathy-mission-control.spec
@@ -90,14 +90,13 @@ Dokumentacja API biblioteki mission control.
--disable-libaccounts-sso \
--disable-static \
%{__enable_disable apidocs gtk-doc} \
-   %{__enable_disable upower upower} \
+   %{__enable_disable upower} \
--with-html-dir=%{_gtkdocdir}
 %{__make}
 
 %install
 rm -rf $RPM_BUILD_ROOT
 install -d $RPM_BUILD_ROOT%{_datadir}/mission-control/profiles
-
 %{__make} install \
DESTDIR=$RPM_BUILD_ROOT
 


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/telepathy-mission-control.git/commitdiff/3ac2cb311a97ad30ec0608de11fb399f6d875857

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


DISTFILES: php: php-5.4.26.tar.bz2

2014-03-31 Thread glen

Files fetched: 1

STORED: http://www.php.net/distributions/php-5.4.26.tar.bz2
979e17b5492ce9c65a3c37f22c7c9655  php-5.4.26.tar.bz2
Size: 12270535 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/empathy] Update to 3.12.0

2014-03-31 Thread megabajt
commit 23bc995f9b2a92e5de31cb695cc86f922ed48435
Author: Marcin Banasiak marcin.banas...@gmail.com
Date:   Mon Mar 31 22:38:18 2014 +0200

Update to 3.12.0

 empathy.spec | 14 +++---
 1 file changed, 7 insertions(+), 7 deletions(-)
---
diff --git a/empathy.spec b/empathy.spec
index 09b2cd4..6c2d98d 100644
--- a/empathy.spec
+++ b/empathy.spec
@@ -1,12 +1,12 @@
 Summary:   High-level library and user-interface for Telepathy
 Summary(pl.UTF-8): Bardzo łatwy w użyciu klient Telepathy dla GNOME
 Name:  empathy
-Version:   3.10.3
-Release:   2
+Version:   3.12.0
+Release:   1
 License:   GPL v2+
 Group: Applications/Communications
-Source0:   
http://ftp.gnome.org/pub/GNOME/sources/empathy/3.10/%{name}-%{version}.tar.xz
-# Source0-md5: de7dc21d91d50a1a9861dd3f240274d7
+Source0:   
http://ftp.gnome.org/pub/GNOME/sources/empathy/3.12/%{name}-%{version}.tar.xz
+# Source0-md5: 1f8dad37c9353838fc5fa449ff685e19
 URL:   http://live.gnome.org/Empathy
 BuildRequires: autoconf = 2.64
 BuildRequires: automake = 1:1.11
@@ -14,7 +14,7 @@ BuildRequires:cheese-devel = 3.4.0
 BuildRequires: clutter-devel = 1.10.0
 BuildRequires: clutter-gst-devel = 1.9.92
 BuildRequires: clutter-gtk-devel = 1.2.0
-BuildRequires: cogl-devel
+BuildRequires: cogl-devel = 1.14.0
 BuildRequires: dbus-glib-devel = 0.74
 BuildRequires: enchant-devel = 1.2.0
 BuildRequires: farstream-devel = 0.2.0
@@ -50,7 +50,7 @@ BuildRequires:rpmbuild(find_lang) = 1.23
 BuildRequires: rpmbuild(macros) = 1.592
 BuildRequires: tar = 1:1.22
 BuildRequires: telepathy-farstream-devel = 0.6.0
-BuildRequires: telepathy-glib-devel = 0.19.9
+BuildRequires: telepathy-glib-devel = 0.24.0
 BuildRequires: telepathy-logger-devel = 0.8.0
 BuildRequires: telepathy-mission-control-devel = 5.13.1
 BuildRequires: udev-glib-devel
@@ -63,7 +63,7 @@ Requires: evolution-data-server
 Requires:  folks = 0.9.5
 Requires:  gsettings-desktop-schemas
 Requires:  hicolor-icon-theme
-Requires:  telepathy-glib = 0.19.9
+Requires:  telepathy-glib = 0.24.0
 Requires:  telepathy-logger = 0.8.0
 Requires:  telepathy-mission-control = 5.13.1
 Suggests:  gnome-contacts


 gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/empathy.git/commitdiff/23bc995f9b2a92e5de31cb695cc86f922ed48435

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


DISTFILES: empathy: empathy-3.12.0.tar.xz

2014-03-31 Thread megabajt

Files fetched: 1

STORED: 
http://ftp.gnome.org/pub/GNOME/sources/empathy/3.12/empathy-3.12.0.tar.xz
1f8dad37c9353838fc5fa449ff685e19  empathy-3.12.0.tar.xz
Size: 5037428 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


PLD-doc: PLD-update-TODO - updated

2014-03-31 Thread arekm
Author: arekmDate: Mon Mar 31 22:27:31 2014 GMT
Module: PLD-doc   Tag: HEAD
 Log message:
- updated

 Files affected:
PLD-doc:
   PLD-update-TODO (1.1661 - 1.1662) 

 Diffs:


Index: PLD-doc/PLD-update-TODO
diff -u PLD-doc/PLD-update-TODO:1.1661 PLD-doc/PLD-update-TODO:1.1662
--- PLD-doc/PLD-update-TODO:1.1661  Sat Mar 29 14:25:16 2014
+++ PLD-doc/PLD-update-TODO Tue Apr  1 00:27:25 2014
@@ -1,13 +1,14 @@
-0ad(14) [OLD] r10803 [NEW] r09786-alpha-unix-build
+0ad(14) [OLD] r10803 [NEW] r11339-alpha-unix-build
 4store(7) [OLD] 0.9.5 [NEW] 1.1.5
 AfterStep(20) [OLD] 2.2.11 [NEW] 2.2.12
 BNFC(9) [OLD] 2.4.2.0 [NEW] 2.6.0.3
+DirectFB(32) [OLD] 1.7.2 [NEW] 1.7.3
 FlightGear(12) [OLD] 2.12.0 [NEW] 3.0.0
 FreeWnn(11) [OLD] 1.1.1 [NEW] 1.1.1-a021
 GUIlib(8) [OLD] 1.1.2 [NEW] 1.2.1
 Gorm(8) [OLD] 1.2.8 [NEW] 1.2.20
 IRRToolSet(8) [OLD] 4.8.5 [NEW] 5.0.1
-Insignia(8) [OLD] 1.0.2 [NEW] 1.0.3
+Insignia(8) [OLD] 1.0.2 [NEW] 1.0.4
 LiVES(28) [OLD] 0.9.8.7 [NEW] 2.2.2
 Mowitz(8) [OLD] 0.3.0 [NEW] 0.3.1
 OpenEXR(8) [OLD] 2.0.1 [NEW] 2.1.0
@@ -35,10 +36,12 @@
 Zope-ZWiki(10) [OLD] 0.61.0 [NEW] 2.0b1
 ack(17) [OLD] 2.10 [NEW] 2.12
 acl(8) [OLD] 2.2.51 [NEW] 2.2.52
+adcd(8) [OLD] 0.9 [NEW] 1.1
 adm8211(18) [OLD] 20050323 [NEW] 20060111
 aewm(12) [OLD] 1.3.1 [NEW] 1.3.12
 alac_decoder(9) [OLD] 0.1.1 [NEW] 0.1.3
 alacarte(8) [OLD] 0.13.2 [NEW] 0.13.4
+aldo(8) [OLD] 0.7.6 [NEW] 0.7.7
 am-utils(11) [OLD] 6.0.10 [NEW] 6.2a2
 amavisd-new(14) [OLD] 2.8.1 [NEW] 20040701
 amiwm(8) [OLD] 0.20pl48 [NEW] 0.21pl2
@@ -59,7 +62,7 @@
 apr-compat(10) [OLD] 1.3.3 [NEW] 1.5.0
 apt-cacher-ng(7) [OLD] 0.7.19 [NEW] 0.7.26
 aptitude(13) [OLD] 0.2.11.1 [NEW] 0.6.10.orig
-aqbanking(10) [OLD] 5.0.16 [NEW] 5.4.1beta
+aqbanking(10) [OLD] 5.0.16 [NEW] 5.4.2beta
 argus(17) [OLD] 3.0.0 [NEW] 3.0.7.5
 arpsend(8) [OLD] 1.2.2 [NEW] 1.2.3
 arts++(9) [OLD] 1.1.a12 [NEW] 1.1.a13
@@ -70,7 +73,7 @@
 asn1c(8) [OLD] 0.9.21 [NEW] 0.9.24
 aspectj(8) [OLD] 1.6.0 [NEW] 1.8.0.RC1
 aspell-ca(11) [OLD] 2.1.5 [NEW] 20040130
-aspell-pl-alt(8) [OLD] 20131202 [NEW] 20140328
+aspell-pl-alt(8) [OLD] 20131202 [NEW] 20140331
 asterisk-chan_capi(9) [OLD] 1.1.5 [NEW] 1.1.6
 asterisk-perl(13) [OLD] 0.10 [NEW] 1.03
 asterisk-sounds-core(48) [OLD] 1.4.21 [NEW] 1.4.25
@@ -85,8 +88,9 @@
 authconfig(14) [OLD] 6.2.2 [NEW] 6.2.8
 autoconf2_13(17) [OLD] 2.13 [NEW] 2.69
 autofs(20) [OLD] 5.0.8 [NEW] 5.0.9
-awesome(10) [OLD] 3.4.12 [NEW] 3.5.2
-awesome2(9) [OLD] 2.3.6 [NEW] 3.5.2
+avrdude(8) [OLD] 5.11.1 [NEW] 6.1
+awesome(10) [OLD] 3.4.12 [NEW] 3.5.3
+awesome2(9) [OLD] 2.3.6 [NEW] 3.5.3
 backintime(11) [OLD] 1.0.24 [NEW] 1.0.26
 banner(8) [OLD] 1.3.2 [NEW] 1.3.3
 bar-backup-archiver(13) [OLD] 0.14 [NEW] 0.18
@@ -110,7 +114,6 @@
 botan(16) [OLD] 1.8.14 [NEW] 1.10.5
 boxes(8) [OLD] 1.1 [NEW] 1.1.1
 bpython(11) [OLD] 0.9.7.1 [NEW] 0.12
-brltty(34) [OLD] 5.0 [NEW] 5.1
 browser-plugin-esteid(27) [OLD] 1.3.3 [NEW] 1.3.4
 bttv(19) [OLD] 0.7.87 [NEW] 0.9.15
 bucardo(10) [OLD] 4.4.0 [NEW] 4.99.10
@@ -118,7 +121,6 @@
 buildroot(7) [OLD] 2013.02 [NEW] 2014.02
 bzr-gtk(14) [OLD] 0.99.1 [NEW] 0.103.0
 bzr-svn(8) [OLD] 1.0.4 [NEW] 1.2.3
-ca-certificates(14) [OLD] 20140223 [NEW] 20140325
 cacao(8) [OLD] 0.98 [NEW] 1.6.1
 cairomm(8) [OLD] 1.10.0 [NEW] 1.11.2
 camlp5(8) [OLD] 6.02.3 [NEW] 6.11
@@ -202,7 +204,6 @@
 cups-backend-pdf(12) [OLD] 2.6.1 [NEW] 3.0beta1
 cups-filters(23) [OLD] 1.0.47 [NEW] 1.0.50
 cups-pk-helper(7) [OLD] 0.2.1 [NEW] 0.2.5
-curl(30) [OLD] 7.35.0 [NEW] 7.36.0
 cvm(11) [OLD] 0.95 [NEW] 0.96
 cyclone(10) [OLD] 0.5 [NEW] 0.8
 cyrus-imapd(15) [OLD] 2.4.13 [NEW] 2.4.17
@@ -263,7 +264,7 @@
 enemies-of-carlotta(8) [OLD] 1.1.2 [NEW] 1.2.6
 enet(8) [OLD] 1.3.3 [NEW] 1.3.11
 enlightenment(19) [OLD] 0.18.5 [NEW] 0.18.6
-epic4(8) [OLD] 2.2 [NEW] 2.10.4
+epic4(8) [OLD] 2.2 [NEW] 2.10.5
 epiphany(10) [OLD] 3.10.2 [NEW] 3.10.3
 erlang-exmpp(7) [OLD] 0.9.2 [NEW] 0.9.9
 exim-lite(10) [OLD] 4.51 [NEW] 4.69
@@ -289,7 +290,7 @@
 fonts-TTF-RedHat-liberation1(8) [OLD] 1.07.3 [NEW] 2.00.1
 fonts-thai-scalable(12) [OLD] 0.5.1 [NEW] 0.6.0
 foomatic-db-engine(10) [OLD] 4.0.9 [NEW] 4.0.11
-foomatic-db(11) [OLD] 20110615 [NEW] 20140329
+foomatic-db(11) [OLD] 20110615 [NEW] 20140331
 fox16(12) [OLD] 1.6.49 [NEW] 1.7.46
 freebooters(8) [OLD] 0.2.1 [NEW] 0.2.2
 freedink(8) [OLD] 1.08.20101114 [NEW] 1.08.20121209
@@ -335,13 +336,13 @@
 ghc-gtksourceview2(8) [OLD] 0.12.3.1 [NEW] 0.12.5.0
 ghc-haskeline(8) [OLD] 0.7.0.3 [NEW] 0.7.1.2
 ghc-hinotify(8) [OLD] 0.3.5 [NEW] 0.3.6
-ghc-language-c(8) [OLD] 0.3.2.1 [NEW] 0.4.2
+ghc-language-c(8) [OLD] 0.3.2.1 [NEW] 0.4.3
 ghc-libxml-sax(8) [OLD] 0.7.3 [NEW] 0.7.5
-ghc-ltk(8) [OLD] 0.12.1.0 [NEW] 0.13.1.0
+ghc-ltk(8) [OLD] 0.12.1.0 [NEW] 0.13.2.0
 ghc-mmap(9) [OLD] 0.5.8 [NEW] 0.5.9
 ghc-pango(8) [OLD] 0.12.3 [NEW] 0.12.5.3
 ghc-regex-tdfa(8) [OLD] 1.1.8 [NEW] 1.2.0
-ghc-snap-server(8) [OLD] 0.9.4.0 [NEW] 0.9.4.1
+ghc-snap-server(8) [OLD] 0.9.4.0 [NEW

[packages/kernel/LINUX_3_4] - package pcmcia ide-cs driver only in pcmcia package

2014-03-31 Thread baggins
commit d0232d4a84548cbff1435fbf1e9f6d7e0057a843
Author: Jan Rękorajski bagg...@pld-linux.org
Date:   Tue Apr 1 07:31:04 2014 +0200

- package pcmcia ide-cs driver only in pcmcia package

 kernel.spec | 3 +++
 1 file changed, 3 insertions(+)
---
diff --git a/kernel.spec b/kernel.spec
index e7a6e9f..6ffe8c2 100644
--- a/kernel.spec
+++ b/kernel.spec
@@ -1380,6 +1380,9 @@ fi
 %files ide
 %defattr(644,root,root,755)
 /lib/modules/%{kernel_release}/kernel/drivers/ide
+%if %{have_pcmcia}
+%exclude /lib/modules/%{kernel_release}/kernel/drivers/ide/ide-cs.ko*
+%endif
 %endif
 
 %if %{have_pcmcia}


 gitweb:

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

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


[packages/kernel/LINUX_3_10] - package pcmcia ide-cs driver only in pcmcia package

2014-03-31 Thread baggins
commit acbada84612dcaa114dd11e8659228fdf99d98f5
Author: Jan Rękorajski bagg...@pld-linux.org
Date:   Tue Apr 1 07:31:04 2014 +0200

- package pcmcia ide-cs driver only in pcmcia package

 kernel.spec | 3 +++
 1 file changed, 3 insertions(+)
---
diff --git a/kernel.spec b/kernel.spec
index 50d6e37..146adee 100644
--- a/kernel.spec
+++ b/kernel.spec
@@ -1365,6 +1365,9 @@ fi
 %files ide
 %defattr(644,root,root,755)
 /lib/modules/%{kernel_release}/kernel/drivers/ide
+%if %{have_pcmcia}
+%exclude /lib/modules/%{kernel_release}/kernel/drivers/ide/ide-cs.ko*
+%endif
 %endif
 
 %if %{have_pcmcia}


 gitweb:

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

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


[packages/kernel] - package pcmcia ide-cs driver only in pcmcia package

2014-03-31 Thread baggins
commit 2226c439fc7afb061d246d57e391aa8f1bbc2be7
Author: Jan Rękorajski bagg...@pld-linux.org
Date:   Tue Apr 1 07:31:04 2014 +0200

- package pcmcia ide-cs driver only in pcmcia package

 kernel.spec | 3 +++
 1 file changed, 3 insertions(+)
---
diff --git a/kernel.spec b/kernel.spec
index a341c21..21de662 100644
--- a/kernel.spec
+++ b/kernel.spec
@@ -1356,6 +1356,9 @@ fi
 %files ide
 %defattr(644,root,root,755)
 /lib/modules/%{kernel_release}/kernel/drivers/ide
+%if %{have_pcmcia}
+%exclude /lib/modules/%{kernel_release}/kernel/drivers/ide/ide-cs.ko*
+%endif
 %endif
 
 %if %{have_pcmcia}


 gitweb:

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

___
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.85.xz

2014-03-31 Thread baggins
kernel: undefined macro version



Files fetched: 0

ALREADY GOT: http://www.kernel.org/pub/linux/kernel/v3.x/linux-3.4.tar.xz
967f72983655e2479f951195953e8480  linux-3.4.tar.xz
ALREADY GOT: http://www.kernel.org/pub/linux/kernel/v3.x/patch-3.4.85.xz
2cf0a14e1a620d6f4bc4231a4515f6ba  patch-3.4.85.xz


-- 
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