SOURCES: check_id-pilet.pl - if no active tickets found, state it as critical

2008-06-18 Thread glen
Author: glen Date: Wed Jun 18 06:38:11 2008 GMT
Module: SOURCES   Tag: HEAD
 Log message:
- if no active tickets found, state it as critical

 Files affected:
SOURCES:
   check_id-pilet.pl (1.2 - 1.3) 

 Diffs:


Index: SOURCES/check_id-pilet.pl
diff -u SOURCES/check_id-pilet.pl:1.2 SOURCES/check_id-pilet.pl:1.3
--- SOURCES/check_id-pilet.pl:1.2   Tue Jun 17 12:41:29 2008
+++ SOURCES/check_id-pilet.pl   Wed Jun 18 08:38:06 2008
@@ -85,6 +85,8 @@
push(@tickets, { type = $td{type}, start = 
parse_date($td{start}), end = parse_date($td{end}) });
}
 
+   $p-nagios_exit(WARN, No tickets found) unless @tickets;
+
sub parse_time {
my $str = $_[0];
my ($v, $m) = ($str =~ /^(\d+)([smhd])?$/);
@@ -117,7 +119,7 @@
$p-nagios_exit(OK, Ticket '$t-{type}' expires on 
$tm);
}
}
-   $p-nagios_exit(UNKNOWN, Unable to parse verbose ticket information);
+   $p-nagios_exit(CRITICAL, No active tickets found);
 }
 
 $p-nagios_exit(OK, Ticket $id valid) if $t =~ /^Isikul isikukoodiga \Q$id\E 
on olemas hetkel kehtiv ID-pilet\.$/;


 CVS-web:

http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/SOURCES/check_id-pilet.pl?r1=1.2r2=1.3f=u

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


SPECS: nspluginwrapper.spec - add /root plugins todo, install todo is now b...

2008-06-18 Thread glen
Author: glen Date: Wed Jun 18 08:15:09 2008 GMT
Module: SPECS Tag: HEAD
 Log message:
- add /root plugins todo, install todo is now browser-plugins part

 Files affected:
SPECS:
   nspluginwrapper.spec (1.34 - 1.35) 

 Diffs:


Index: SPECS/nspluginwrapper.spec
diff -u SPECS/nspluginwrapper.spec:1.34 SPECS/nspluginwrapper.spec:1.35
--- SPECS/nspluginwrapper.spec:1.34 Sat Sep  1 11:58:57 2007
+++ SPECS/nspluginwrapper.spec  Wed Jun 18 10:15:04 2008
@@ -1,7 +1,13 @@
 # $Revision$, $Date$
 # TODO
-# - 'nspluginwrapper -v -a -i' should be ran when browser (firefox) is updated
-#   (and -u somewhy doesn't do a thing) otherwise plugins don't run
+# - make it not to scan root user plugins:
+#  # /usr/bin/nspluginwrapper -v -a -i
+#  Auto-install plugins from /usr/lib/nspluginwrapper/plugins
+#  Looking for plugins in /usr/lib/nspluginwrapper/plugins
+#  Install plugin /usr/lib/nspluginwrapper/plugins/libflashplayer.so
+#into /usr/lib64/browser-plugins/npwrapper.libflashplayer.so
+#  Auto-install plugins from /root/.mozilla/plugins
+#  Looking for plugins in /root/.mozilla/plugins
 Summary:   Open Source compatibility plugin for Netscape 4 (NPAPI) plugins
 Summary(pl.UTF-8): Wtyczka Open Source dla kompatybilności z wtyczkami 
Netscape'a 4 (NPAPI)
 Name:  nspluginwrapper
@@ -134,6 +140,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.35  2008/06/18 08:15:04  glen
+- add /root plugins todo, install todo is now browser-plugins part
+
 Revision 1.34  2007/09/01 09:58:57  glen
 - 0.9.91.5, flash in konqueror works too
 


 CVS-web:

http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/SPECS/nspluginwrapper.spec?r1=1.34r2=1.35f=u

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


SOURCES: browser-plugins-update.sh - handle nspluginwrapper

2008-06-18 Thread glen
Author: glen Date: Wed Jun 18 08:42:55 2008 GMT
Module: SOURCES   Tag: HEAD
 Log message:
- handle nspluginwrapper

 Files affected:
SOURCES:
   browser-plugins-update.sh (1.7 - 1.8) 

 Diffs:


Index: SOURCES/browser-plugins-update.sh
diff -u SOURCES/browser-plugins-update.sh:1.7 
SOURCES/browser-plugins-update.sh:1.8
--- SOURCES/browser-plugins-update.sh:1.7   Wed Feb 28 09:43:59 2007
+++ SOURCES/browser-plugins-update.sh   Wed Jun 18 10:42:49 2008
@@ -78,6 +78,25 @@
echo 3 browsers: $browsers
 }
 
+# void update_nspluginwrapper(void)
+# update nspluginwrapper links
+update_nspluginwrapper() {
+   [ -x /usr/bin/nspluginwrapper ] || return
+
+   umask 002
+   # call it always in install mode, as update mode does not update 
existing links
+   /usr/bin/nspluginwrapper -a -i
+
+   # this will remove oudated plugins
+   for a in /usr/lib64/browser-plugins/npwrapper.*.so; do
+   [ -f $a ] || continue
+   /usr/bin/nspluginwrapper -v -u $a
+   done
+
+   # run install again after nsplugin wrappers
+   install_plugins
+}
+
 # char *browserplugindir(char *)
 # returns plugin directory for browser
 browserplugindir() {
@@ -159,3 +178,4 @@
 
 remove_plugins
 install_plugins
+update_nspluginwrapper


 CVS-web:

http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/SOURCES/browser-plugins-update.sh?r1=1.7r2=1.8f=u

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


SPECS: browser-plugins.spec - version 3.0: handle nspluginwrapper

2008-06-18 Thread glen
Author: glen Date: Wed Jun 18 08:44:16 2008 GMT
Module: SPECS Tag: HEAD
 Log message:
- version 3.0: handle nspluginwrapper

 Files affected:
SPECS:
   browser-plugins.spec (1.29 - 1.30) 

 Diffs:


Index: SPECS/browser-plugins.spec
diff -u SPECS/browser-plugins.spec:1.29 SPECS/browser-plugins.spec:1.30
--- SPECS/browser-plugins.spec:1.29 Wed Apr 23 18:42:27 2008
+++ SPECS/browser-plugins.spec  Wed Jun 18 10:44:10 2008
@@ -1,6 +1,5 @@
 # $Revision$, $Date$
 # TODO
-# - invoke nspluginwrapper install if one found installed in system
 # - convert all plugin packages to store their plugins in this base
 #   directory.
 # known NPAPI compatible browsers from PLD Linux CVS:
@@ -17,8 +16,8 @@
 Summary:   Base package for web browser plugins
 Summary(pl.UTF-8): Podstawowy pakiet dla wtyczek przeglądarek WWW
 Name:  browser-plugins
-Version:   2.0.1
-Release:   3
+Version:   3.0
+Release:   0.1
 License:   GPL
 Group: Base
 BuildRequires: rpmbuild(macros) = 1.356
@@ -83,6 +82,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.30  2008/06/18 08:44:10  glen
+- version 3.0: handle nspluginwrapper
+
 Revision 1.29  2008/04/23 16:42:27  glen
 - nspluginwrapper -v -a -i is needed to be called when flash pkg is updated
 


 CVS-web:

http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/SPECS/browser-plugins.spec?r1=1.29r2=1.30f=u

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


SPECS: nspluginwrapper.spec - browser plugins 3.0 handles nspluginwrapper w...

2008-06-18 Thread glen
Author: glen Date: Wed Jun 18 08:46:09 2008 GMT
Module: SPECS Tag: HEAD
 Log message:
- browser plugins 3.0 handles nspluginwrapper wrappers

 Files affected:
SPECS:
   nspluginwrapper.spec (1.35 - 1.36) 

 Diffs:


Index: SPECS/nspluginwrapper.spec
diff -u SPECS/nspluginwrapper.spec:1.35 SPECS/nspluginwrapper.spec:1.36
--- SPECS/nspluginwrapper.spec:1.35 Wed Jun 18 10:15:04 2008
+++ SPECS/nspluginwrapper.spec  Wed Jun 18 10:46:04 2008
@@ -25,7 +25,7 @@
 BuildRequires: pkgconfig
 BuildRequires: rpmbuild(macros) = 1.365
 BuildRequires: xorg-lib-libXt-devel
-Requires:  browser-plugins = 2.0
+Requires:  browser-plugins = 3.0
 Requires:  linux32
 ExclusiveArch: %{x8664}
 BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
@@ -95,19 +95,11 @@
 # then we call update-browser-plugins once again to create links to 64bit 
browser plugins dir
 
 %post
-umask 022
-%update_browser_plugins
-if [ $1 = 1 ]; then
-   %{_bindir}/%{name} -v -a -i
-else
-   %{_bindir}/%{name} -v -a -u
-fi
 %update_browser_plugins
 
 %preun
 if [ $1 = 0 ]; then
rm -f %{_browserpluginsdir}/npwrapper.*.so
-   %{_bindir}/%{name} -v -a -r
%update_browser_plugins
 fi
 
@@ -140,6 +132,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.36  2008/06/18 08:46:04  glen
+- browser plugins 3.0 handles nspluginwrapper wrappers
+
 Revision 1.35  2008/06/18 08:15:04  glen
 - add /root plugins todo, install todo is now browser-plugins part
 


 CVS-web:

http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/SPECS/nspluginwrapper.spec?r1=1.35r2=1.36f=u

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


SPECS: pgpool.spec - next macro

2008-06-18 Thread sardzent
Author: sardzent Date: Wed Jun 18 09:10:15 2008 GMT
Module: SPECS Tag: HEAD
 Log message:
- next macro

 Files affected:
SPECS:
   pgpool.spec (1.10 - 1.11) 

 Diffs:


Index: SPECS/pgpool.spec
diff -u SPECS/pgpool.spec:1.10 SPECS/pgpool.spec:1.11
--- SPECS/pgpool.spec:1.10  Fri Jun 13 23:21:33 2008
+++ SPECS/pgpool.spec   Wed Jun 18 11:10:10 2008
@@ -81,7 +81,7 @@
 install pgpool $RPM_BUILD_ROOT%{_bindir}/
 install pgpool.conf.sample   $RPM_BUILD_ROOT%{_sysconfdir}/pgpool.conf
 install pool_hba.conf.sample $RPM_BUILD_ROOT%{_sysconfdir}/pool_hba.conf
-install %{SOURCE1} $RPM_BUILD_ROOT/etc/rc.d/init.d/%{name}
+install %{SOURCE1} $RPM_BUILD_ROOT%{_initrddir}/%{name}
 install %{SOURCE2} $RPM_BUILD_ROOT/etc/monit/%{name}.monitrc
 install %{SOURCE3} $RPM_BUILD_ROOT/%{_sysconfdir}/sysconfig/%{name}
 %if %{with pam}
@@ -135,7 +135,10 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
-Revision 1.10  2008/06/13 21:21:33  sardzent
+Revision 1.11  2008/06/18 09:10:10  sardzent
+- next macro
+
+Revision 1.10  2008-06-13 21:21:33  sardzent
 - rpm macro added
 
 Revision 1.9  2008-06-13 21:17:31  sardzent


 CVS-web:

http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/SPECS/pgpool.spec?r1=1.10r2=1.11f=u

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


SPECS: sysprof.spec - missing depmod for lkm package

2008-06-18 Thread lkrotowski
Author: lkrotowski   Date: Wed Jun 18 09:11:11 2008 GMT
Module: SPECS Tag: HEAD
 Log message:
- missing depmod for lkm package

 Files affected:
SPECS:
   sysprof.spec (1.2 - 1.3) 

 Diffs:


Index: SPECS/sysprof.spec
diff -u SPECS/sysprof.spec:1.2 SPECS/sysprof.spec:1.3
--- SPECS/sysprof.spec:1.2  Tue Apr 29 11:14:14 2008
+++ SPECS/sysprof.spec  Wed Jun 18 11:11:06 2008
@@ -73,6 +73,12 @@
 %clean
 rm -rf $RPM_BUILD_ROOT
 
+%post -n kernel%{_alt_kernel}-sysprof
+%depmod %{_kernel_ver}
+
+%postun -n kernel%{_alt_kernel}-sysprof
+%depmod %{_kernel_ver}
+
 %if %{with userspace}
 %files
 %defattr(644,root,root,755)
@@ -94,6 +100,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.3  2008/06/18 09:11:06  lkrotowski
+- missing depmod for lkm package
+
 Revision 1.2  2008/04/29 09:14:14  wrobell
 - ver. 1.0.10
 


 CVS-web:

http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/SPECS/sysprof.spec?r1=1.2r2=1.3f=u

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


SPECS: nginx.spec - nginx-config.patch not needed any more ? - not tested b...

2008-06-18 Thread sardzent
Author: sardzent Date: Wed Jun 18 09:08:06 2008 GMT
Module: SPECS Tag: HEAD
 Log message:
- nginx-config.patch not needed any more ?
- not tested but builds in all versions (mail, perl, standard)

 Files affected:
SPECS:
   nginx.spec (1.86 - 1.87) 

 Diffs:


Index: SPECS/nginx.spec
diff -u SPECS/nginx.spec:1.86 SPECS/nginx.spec:1.87
--- SPECS/nginx.spec:1.86   Tue Jun  3 16:53:39 2008
+++ SPECS/nginx.specWed Jun 18 11:08:01 2008
@@ -212,7 +212,7 @@
 
 %prep
 %setup -q
-%patch0 -p0
+#%patch0 -p0
 %patch1 -p0
 
 # build mime.types.conf
@@ -577,7 +577,11 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
-Revision 1.86  2008/06/03 14:53:39  sardzent
+Revision 1.87  2008/06/18 09:08:01  sardzent
+- nginx-config.patch not needed any more ?
+- not tested but builds in all versions (mail, perl, standard)
+
+Revision 1.86  2008-06-03 14:53:39  sardzent
 - added missing BR for perl build
 
 Revision 1.85  2008-06-01 18:00:14  areq


 CVS-web:

http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/SPECS/nginx.spec?r1=1.86r2=1.87f=u

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


SPECS: transmission.spec - +BR curl-devel - +BR readline-devel

2008-06-18 Thread gzohop
Author: gzohop   Date: Wed Jun 18 10:19:46 2008 GMT
Module: SPECS Tag: HEAD
 Log message:
- +BR curl-devel
- +BR readline-devel

 Files affected:
SPECS:
   transmission.spec (1.27 - 1.28) 

 Diffs:


Index: SPECS/transmission.spec
diff -u SPECS/transmission.spec:1.27 SPECS/transmission.spec:1.28
--- SPECS/transmission.spec:1.27Sun Jun 15 19:30:02 2008
+++ SPECS/transmission.spec Wed Jun 18 12:19:41 2008
@@ -9,11 +9,13 @@
 Source0:   
http://download.m0k.org/transmission/files/transmission-%{version}.tar.bz2
 # Source0-md5: aa0a2db19b0f3dbfd75a0fb354d6c47d
 URL:   http://transmission.m0k.org/
+BuildRequires: curl-devel
 BuildRequires: gtk+2-devel = 2:2.6.0
 BuildRequires: intltool = 0.35.5
 BuildRequires: libevent-devel
 BuildRequires: openssl-devel
 BuildRequires: pkgconfig
+BuildRequires: readline-devel
 BuildRequires: rpmbuild(macros) = 1.357
 Requires(post,postun): hicolor-icon-theme
 Requires(post,postun): gtk+2
@@ -85,6 +87,10 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.28  2008/06/18 10:19:41  gzohop
+- +BR curl-devel
+- +BR readline-devel
+
 Revision 1.27  2008/06/15 17:30:02  patrys
 - 1.22
 


 CVS-web:

http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/SPECS/transmission.spec?r1=1.27r2=1.28f=u

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


DISTFILES: 25051-btype-0.4.1.tar.bz2

2008-06-18 Thread charles

Files fetched: 1

STORED: http://kde-apps.org/CONTENT/content-files/25051-btype-0.4.1.tar.bz2
833123eeacda38a0b585af5b35e18cc7  25051-btype-0.4.1.tar.bz2
Size: 137095 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


SPECS: btype.spec (NEW) - new

2008-06-18 Thread charles
Author: charles  Date: Wed Jun 18 10:48:52 2008 GMT
Module: SPECS Tag: HEAD
 Log message:
- new

 Files affected:
SPECS:
   btype.spec (NONE - 1.1)  (NEW)

 Diffs:


Index: SPECS/btype.spec
diff -u /dev/null SPECS/btype.spec:1.1
--- /dev/null   Wed Jun 18 12:48:52 2008
+++ SPECS/btype.specWed Jun 18 12:48:47 2008
@@ -0,0 +1,62 @@
+# $Revision$, $Date$
+Summary:   .torrent file editor
+Summary(pl.UTF-8): Edytor plików .torrent
+Name:  btype
+Version:   0.4.1
+Release:   1
+License:   GPLv2
+Group: X11/Applications
+Source0:   
http://kde-apps.org/CONTENT/content-files/25051-%{name}-%{version}.tar.bz2
+# Source0-md5: 833123eeacda38a0b585af5b35e18cc7
+URL:   
http://kde-apps.org/content/show.php/.torrent+file+editor?content=25051
+BuildRequires: kdelibs-devel
+BuildRequires: scons
+BuildRequires: which
+BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
+
+%description
+Easy-to-use program for editing torrent files. It supports
+read, edit and save.
+
+%description -l pl.UTF-8
+Prosty w obsłudze program do edycji plików torrent. Wspiera
+odczyt, edycję i zapisywanie.
+
+%prep
+%setup -q
+
+%build
+CXXFLAGS=%{rpmcxxflags}
+QTDIR=%{_prefix}
+export CXXFLAGS QTDIR
+
+./configure \
+   debug=0 \
+   prefix=%{_prefix} \
+   qtincludes=%{_includedir}/qt
+
+%{__make}
+
+%install
+rm -rf $RPM_BUILD_ROOT
+
+%{__make} install \
+   DESTDIR=$RPM_BUILD_ROOT
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%files
+%defattr(644,root,root,755)
+%doc HISTORY README
+%attr(755,root,root) %{_bindir}/btype
+
+%define date   %(echo `LC_ALL=C date +%a %b %d %Y`)
+%changelog
+* %{date} PLD Team [EMAIL PROTECTED]
+All persons listed below can be reached at cvs_login@pld-linux.org
+
+$Log$
+Revision 1.1  2008/06/18 10:48:47  charles
+- new
+

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


SOURCES: freetds-cvs-fixes.patch (NEW) - few fixes from freetds CVS, helps ...

2008-06-18 Thread hawk
Author: hawk Date: Wed Jun 18 11:05:46 2008 GMT
Module: SOURCES   Tag: HEAD
 Log message:
- few fixes from freetds CVS, helps with building some tds related packages

 Files affected:
SOURCES:
   freetds-cvs-fixes.patch (NONE - 1.1)  (NEW)

 Diffs:


Index: SOURCES/freetds-cvs-fixes.patch
diff -u /dev/null SOURCES/freetds-cvs-fixes.patch:1.1
--- /dev/null   Wed Jun 18 13:05:47 2008
+++ SOURCES/freetds-cvs-fixes.patch Wed Jun 18 13:05:41 2008
@@ -0,0 +1,863 @@
+diff -urN freetds/configure.ac freetds.current/configure.ac
+--- freetds/configure.ac   2008-05-08 00:57:52.0 +0200
 freetds.current/configure.ac   2008-05-28 15:40:28.0 +0200
+@@ -1,7 +1,7 @@
+ dnl Process this file with autoconf to produce a configure script.
+ 
+ dnl 
+-dnl $Id$
++dnl $Id$
+ dnl If you're trying to create a new configure test, try
+ dnl
+ dnl   http://autogen.sourceforge.net/conftest.html
+@@ -240,7 +240,7 @@
+ ])
+ AC_CHECK_HEADERS([unistd.h errno.h wchar.h sys/time.h sys/types.h \
+ sys/param.h sys/stat.h sys/wait.h limits.h locale.h odbcss.h readpassphrase.h 
\
+-signal.h libgen.h poll.h])
++signal.h libgen.h poll.h getopt.h])
+ if test $tds_mingw = no; then
+   AC_CHECK_HEADERS([sys/socket.h arpa/inet.h netdb.h netinet/in.h \
+ netinet/tcp.h paths.h sys/ioctl.h langinfo.h])
+@@ -347,6 +347,16 @@
+ 
+ TYPE_SOCKLEN_T
+ 
++AC_MSG_CHECKING([whether getopt has optreset support])
++AC_TRY_LINK([#ifdef HAVE_GETOPT_H
++#include getopt.h
++#endif], [extern int optreset; optreset = 0;],
++[AC_MSG_RESULT(yes)
++AC_DEFINE(HAVE_GETOPT_OPTRESET, 1, [Define if your getopt(3) defines and uses 
optreset])],
++[AC_MSG_RESULT(no)]
++)
++
++
+ # 
+ # Checks for compiler characteristics.
+ # 
+diff -urN freetds/include/cspublic.h freetds.current/include/cspublic.h
+--- freetds/include/cspublic.h 2007-06-25 11:48:20.0 +0200
 freetds.current/include/cspublic.h 2008-05-19 16:23:52.0 +0200
+@@ -34,7 +34,7 @@
+ #define TDS_STATIC_CAST(type, a) ((type)(a))
+ #endif
+ 
+-static const char rcsid_cspublic_h[] = $Id$;
++static const char rcsid_cspublic_h[] = $Id$;
+ static const void *const no_unused_cspublic_h_warn[] = { rcsid_cspublic_h, 
no_unused_cspublic_h_warn };
+ 
+ #define CS_PUBLIC
+@@ -447,6 +447,9 @@
+ 
+ #define BLK_VERSION_100 CS_VERSION_100
+ #define BLK_VERSION_110 CS_VERSION_100
++#define BLK_VERSION_120 CS_VERSION_120
++#define BLK_VERSION_125 CS_VERSION_125
++#define BLK_VERSION_150 CS_VERSION_150
+ 
+ #define CS_FORCE_EXIT 300
+ #define CS_FORCE_CLOSE  301
+diff -urN freetds/include/tdsbytes.h freetds.current/include/tdsbytes.h
+--- freetds/include/tdsbytes.h 2005-08-10 14:06:03.0 +0200
 freetds.current/include/tdsbytes.h 2008-05-26 14:49:56.0 +0200
+@@ -20,7 +20,7 @@
+ #ifndef _tdsbytes_h_
+ #define _tdsbytes_h_
+ 
+-/* $Id$ */
++/* $Id$ */
+ 
+ #ifndef _tds_h_
+ #error tds.h must be included before tdsbytes.h
+@@ -61,9 +61,9 @@
+ #define TDS_GET_A2BE(ptr) TDS_GET_UA2BE(ptr)
+ 
+ #define TDS_PUT_UA2LE(ptr,val) do {\
+- ((TDS_UCHAR*)(ptr))[1] = (val)8; ((TDS_UCHAR*)(ptr))[0] = (val); } while(0)
++ ((TDS_UCHAR*)(ptr))[1] = (TDS_UCHAR)((val)8); ((TDS_UCHAR*)(ptr))[0] = 
(TDS_UCHAR)(val); } while(0)
+ #define TDS_PUT_UA2BE(ptr,val) do {\
+- ((TDS_UCHAR*)(ptr))[0] = (val)8; ((TDS_UCHAR*)(ptr))[1] = (val); } while(0)
++ ((TDS_UCHAR*)(ptr))[0] = (TDS_UCHAR)((val)8); ((TDS_UCHAR*)(ptr))[1] = 
(TDS_UCHAR)(val); } while(0)
+ #define TDS_PUT_A2LE(ptr,val) TDS_PUT_UA2LE(ptr,val)
+ #define TDS_PUT_A2BE(ptr,val) TDS_PUT_UA2BE(ptr,val)
+ 
+@@ -78,11 +78,11 @@
+ #define TDS_GET_A4BE(ptr) TDS_GET_UA4BE(ptr)
+ 
+ #define TDS_PUT_UA4LE(ptr,val) do {\
+- ((TDS_UCHAR*)(ptr))[3] = (val)24; ((TDS_UCHAR*)(ptr))[2] = (val)16;\
+- ((TDS_UCHAR*)(ptr))[1] = (val)8; ((TDS_UCHAR*)(ptr))[0] = (val); } while(0)
++ ((TDS_UCHAR*)(ptr))[3] = (TDS_UCHAR)((val)24); ((TDS_UCHAR*)(ptr))[2] = 
(TDS_UCHAR)((val)16);\
++ ((TDS_UCHAR*)(ptr))[1] = (TDS_UCHAR)((val)8); ((TDS_UCHAR*)(ptr))[0] = 
(TDS_UCHAR)(val); } while(0)
+ #define TDS_PUT_UA4BE(ptr,val) do {\
+- ((TDS_UCHAR*)(ptr))[0] = (val)24; ((TDS_UCHAR*)(ptr))[1] = (val)16;\
+- ((TDS_UCHAR*)(ptr))[2] = (val)8; ((TDS_UCHAR*)(ptr))[3] = (val); } while(0)
++ ((TDS_UCHAR*)(ptr))[0] = (TDS_UCHAR)((val)24); ((TDS_UCHAR*)(ptr))[1] = 
(TDS_UCHAR)((val)16);\
++ ((TDS_UCHAR*)(ptr))[2] = (TDS_UCHAR)((val)8); ((TDS_UCHAR*)(ptr))[3] = 
(TDS_UCHAR)(val); } while(0)
+ #define TDS_PUT_A4LE(ptr,val) TDS_PUT_UA4LE(ptr,val)
+ #define TDS_PUT_A4BE(ptr,val) TDS_PUT_UA4BE(ptr,val)
+ 
+diff -urN freetds/include/tds.h freetds.current/include/tds.h
+--- freetds/include/tds.h  2007-12-27 14:45:22.0 +0100
 freetds.current/include/tds.h  2008-05-28 

SPECS: freetds.spec - merged fixes from freetds CVS, release 2

2008-06-18 Thread hawk
Author: hawk Date: Wed Jun 18 11:06:43 2008 GMT
Module: SPECS Tag: HEAD
 Log message:
- merged fixes from freetds CVS, release 2

 Files affected:
SPECS:
   freetds.spec (1.25 - 1.26) 

 Diffs:


Index: SPECS/freetds.spec
diff -u SPECS/freetds.spec:1.25 SPECS/freetds.spec:1.26
--- SPECS/freetds.spec:1.25 Sat May 31 18:41:25 2008
+++ SPECS/freetds.spec  Wed Jun 18 13:06:38 2008
@@ -16,11 +16,12 @@
 Summary(pl.UTF-8): Wolnodostępna implementacja db-lib firmy Sybase
 Name:  freetds
 Version:   0.82
-Release:   1
+Release:   2
 License:   LGPL
 Group: Libraries
 Source0:   
ftp://ftp.ibiblio.org/pub/Linux/ALPHA/freetds/stable/%{name}-%{version}.tar.gz
 # Source0-md5: 3df6b2e83fd420e90f1becbd1162990a
+Patch0:%{name}-cvs-fixes.patch
 URL:   http://www.freetds.org/
 BuildRequires: autoconf = 2.53
 BuildRequires: automake
@@ -91,6 +92,7 @@
 
 %prep
 %setup -q
+%patch0 -p1
 
 %build
 # hack for libtool 2.2
@@ -205,6 +207,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.26  2008/06/18 11:06:38  hawk
+- merged fixes from freetds CVS, release 2
+
 Revision 1.25  2008/05/31 16:41:25  qboosh
 - updated to 0.82
 - added hack for libtool 2.2


 CVS-web:

http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/SPECS/freetds.spec?r1=1.25r2=1.26f=u

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


SPECS: mozilla-firefox.spec - merged Titanium user agent patch from FF 2.x

2008-06-18 Thread hawk
Author: hawk Date: Wed Jun 18 11:40:49 2008 GMT
Module: SPECS Tag: HEAD
 Log message:
- merged Titanium user agent patch from FF 2.x

 Files affected:
SPECS:
   mozilla-firefox.spec (1.241 - 1.242) 

 Diffs:


Index: SPECS/mozilla-firefox.spec
diff -u SPECS/mozilla-firefox.spec:1.241 SPECS/mozilla-firefox.spec:1.242
--- SPECS/mozilla-firefox.spec:1.241Tue Jun 17 20:00:03 2008
+++ SPECS/mozilla-firefox.spec  Wed Jun 18 13:40:43 2008
@@ -30,9 +30,10 @@
 Source1:   %{name}.desktop
 Source2:   %{name}.sh
 Patch0:%{name}-install.patch
-Patch1:%{name}-agent.patch
-Patch2:%{name}-agent-ac.patch
-Patch3:%{name}-gcc3.patch
+Patch1:%{name}-gcc3.patch
+Patch2:%{name}-agent.patch
+Patch3:%{name}-agent-ac.patch
+Patch4:%{name}-agent-ti.patch
 URL:   http://www.mozilla.org/projects/firefox/
 %{?with_gnomevfs:BuildRequires:GConf2-devel = 1.2.1}
 BuildRequires: automake
@@ -107,13 +108,21 @@
 %setup -qc -n %{name}-%{version}
 cd mozilla
 %patch0 -p1
-%if %{pld_release} == ac
+
+%if %{cc_version}  3.4
+%patch1 -p2
+%endif
+
+%if %{pld_release} == th
 %patch2 -p1
-%else
-%patch1 -p1
 %endif
-%if %{cc_version}  3.4
-%patch3 -p2
+
+%if %{pld_release} == ac
+%patch3 -p1
+%endif
+
+%if %{pld_release} == ti
+%patch4 -p1
 %endif
 
 %build
@@ -422,6 +431,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.242  2008/06/18 11:40:43  hawk
+- merged Titanium user agent patch from FF 2.x
+
 Revision 1.241  2008/06/17 18:00:03  glen
 - drop crashreporter todo, simplify
 


 CVS-web:

http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/SPECS/mozilla-firefox.spec?r1=1.241r2=1.242f=u

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


SPECS (DEVEL): glibmm.spec - remerged from HEAD - 2.17.0

2008-06-18 Thread patrys
Author: patrys   Date: Wed Jun 18 11:48:55 2008 GMT
Module: SPECS Tag: DEVEL
 Log message:
- remerged from HEAD
- 2.17.0

 Files affected:
SPECS:
   glibmm.spec (1.59.2.3 - 1.59.2.4) 

 Diffs:


Index: SPECS/glibmm.spec
diff -u SPECS/glibmm.spec:1.59.2.3 SPECS/glibmm.spec:1.59.2.4
--- SPECS/glibmm.spec:1.59.2.3  Tue Mar  4 00:24:27 2008
+++ SPECS/glibmm.spec   Wed Jun 18 13:48:49 2008
@@ -6,23 +6,23 @@
 Summary:   A C++ interface for glib library
 Summary(pl.UTF-8): Interfejs C++ dla biblioteki glib
 Name:  glibmm
-Version:   2.15.8
+Version:   2.17.0
 Release:   1
 License:   LGPL v2+
 Group: Libraries
-Source0:   
http://ftp.gnome.org/pub/GNOME/sources/glibmm/2.15/%{name}-%{version}.tar.bz2
-# Source0-md5: ab59ab6e19cccbb946554fd23ee0c31f
+Source0:   
http://ftp.gnome.org/pub/GNOME/sources/glibmm/2.17/%{name}-%{version}.tar.bz2
+# Source0-md5: aad7cf751100f83c021eded677092ccd
 URL:   http://gtkmm.sourceforge.net/
 BuildRequires: autoconf = 2.58
 BuildRequires: automake = 1:1.7
-BuildRequires: glib2-devel = 1:2.15.6
-BuildRequires: libsigc++-devel = 1:2.0.17
+BuildRequires: glib2-devel = 1:2.17.0
+BuildRequires: libsigc++-devel = 1:2.2.0
 BuildRequires: libstdc++-devel
 BuildRequires: libtool = 2:1.4d
 BuildRequires: perl-XML-Parser
 BuildRequires: pkgconfig
-Requires:  glib2 = 1:2.15.6
-Requires:  libsigc++ = 1:2.0.17
+Requires:  glib2 = 1:2.17.0
+Requires:  libsigc++ = 1:2.2.0
 Obsoletes: gtkmm-glib
 BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
 
@@ -37,8 +37,8 @@
 Summary(pl.UTF-8): Pliki nagłówkowe biblioteki glibmm
 Group: Development/Libraries
 Requires:  %{name} = %{version}-%{release}
-Requires:  glib2-devel = 1:2.15.6
-Requires:  libsigc++-devel = 1:2.0.17
+Requires:  glib2-devel = 1:2.17.0
+Requires:  libsigc++-devel = 1:2.2.0
 Requires:  libstdc++-devel
 Obsoletes: gtkmm-glib-devel
 
@@ -132,17 +132,19 @@
 %{_libdir}/libgiomm-2.4.la
 %{_libdir}/libglibmm-2.4.la
 %{_libdir}/libglibmm_generate_extra_defs-2.4.la
-%{_libdir}/giomm-2.4
-%dir %{_libdir}/%{name}-2.4
-%{_libdir}/%{name}-2.4/include
-%dir %{_libdir}/%{name}-2.4/proc
-%{_libdir}/%{name}-2.4/proc/m4
-%{_libdir}/%{name}-2.4/proc/pm
-%attr(755,root,root) %{_libdir}/%{name}-2.4/proc/beautify_docs.pl
-%attr(755,root,root) %{_libdir}/%{name}-2.4/proc/generate_wrap_init.pl
-%attr(755,root,root) %{_libdir}/%{name}-2.4/proc/gmmproc
+%dir %{_libdir}/giomm-2.4
+%{_libdir}/giomm-2.4/include
+%dir %{_libdir}/glibmm-2.4
+%{_libdir}/glibmm-2.4/include
+%dir %{_libdir}/glibmm-2.4/proc
+%{_libdir}/glibmm-2.4/proc/m4
+%{_libdir}/glibmm-2.4/proc/pm
+%attr(755,root,root) %{_libdir}/glibmm-2.4/proc/beautify_docs.pl
+%attr(755,root,root) %{_libdir}/glibmm-2.4/proc/generate_wrap_init.pl
+%attr(755,root,root) %{_libdir}/glibmm-2.4/proc/gmmproc
+%{_libdir}/glibmm-2.4/proc/doxygen_to_devhelp.xsl
 %{_includedir}/giomm-2.4
-%{_includedir}/%{name}-2.4
+%{_includedir}/glibmm-2.4
 %{_pkgconfigdir}/giomm-2.4.pc
 %{_pkgconfigdir}/glibmm-2.4.pc
 %{_aclocaldir}/glibmm_check_perl.m4
@@ -157,7 +159,7 @@
 
 %files apidocs
 %defattr(644,root,root,755)
-%{_gtkdocdir}/%{name}-2.4
+%{_gtkdocdir}/glibmm-2.4
 
 %files examples
 %defattr(644,root,root,755)
@@ -169,6 +171,10 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.59.2.4  2008/06/18 11:48:49  patrys
+- remerged from HEAD
+- 2.17.0
+
 Revision 1.59.2.3  2008/03/03 23:24:27  megabajt
 - updated to 2.15.8
 
@@ -177,6 +183,21 @@
 
 Revision 1.59.2.1  2007-12-30 22:49:57  megabajt
 - updated to 2.15.0
+
+Revision 1.64  2008/05/01 19:00:03  wrobell
+- and again changelog corrected (fuck)
+
+Revision 1.63  2008-05-01 18:59:33  wrobell
+- changelog corrected
+
+Revision 1.62  2008-05-01 18:54:41  wrobell
+- ver. 2.16.2
+
+Revision 1.61  2008-04-16 21:37:28  sls
+- ver. 2.16.1
+
+Revision 1.60  2008-03-15 12:45:11  qboosh
+- updated to 2.16.0
 
 Revision 1.59  2007-10-24 12:58:31  megabajt
 - updated to 2.14.2


 CVS-web:

http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/SPECS/glibmm.spec?r1=1.59.2.3r2=1.59.2.4f=u

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


DISTFILES: glibmm-2.17.0.tar.bz2

2008-06-18 Thread patrys

Files fetched: 1

STORED: http://ftp.gnome.org/pub/GNOME/sources/glibmm/2.17/glibmm-2.17.0.tar.bz2
aad7cf751100f83c021eded677092ccd  glibmm-2.17.0.tar.bz2
Size: 6536167 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: zenity-2.23.3.1.tar.bz2

2008-06-18 Thread patrys

Files fetched: 1

STORED: 
http://ftp.gnome.org/pub/GNOME/sources/zenity/2.23/zenity-2.23.3.1.tar.bz2
2d121835bc269bb7edbc32cfa162665f  zenity-2.23.3.1.tar.bz2
Size: 1824505 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


SPECS (DEVEL): zenity.spec - 2.23.3.1

2008-06-18 Thread patrys
Author: patrys   Date: Wed Jun 18 11:51:53 2008 GMT
Module: SPECS Tag: DEVEL
 Log message:
- 2.23.3.1

 Files affected:
SPECS:
   zenity.spec (1.54 - 1.54.2.1) 

 Diffs:


Index: SPECS/zenity.spec
diff -u SPECS/zenity.spec:1.54 SPECS/zenity.spec:1.54.2.1
--- SPECS/zenity.spec:1.54  Sat Apr 12 00:27:33 2008
+++ SPECS/zenity.spec   Wed Jun 18 13:51:48 2008
@@ -2,12 +2,12 @@
 Summary:   The GNOME port of dialog
 Summary(pl.UTF-8): Port dialog dla GNOME
 Name:  zenity
-Version:   2.22.1
+Version:   2.23.3.1
 Release:   1
 License:   LGPL v2+
 Group: X11/Applications
-Source0:   
http://ftp.gnome.org/pub/GNOME/sources/zenity/2.22/%{name}-%{version}.tar.bz2
-# Source0-md5: 4e1e1f080e7253ee4f6a5cee3306c78d
+Source0:   
http://ftp.gnome.org/pub/GNOME/sources/zenity/2.23/%{name}-%{version}.tar.bz2
+# Source0-md5: 2d121835bc269bb7edbc32cfa162665f
 URL:   http://freshmeat.net/projects/zenity/
 BuildRequires: GConf2-devel = 2.22.0
 BuildRequires: autoconf
@@ -16,7 +16,7 @@
 BuildRequires: glib2-devel = 1:2.14.0
 BuildRequires: gnome-common = 2.20.0
 BuildRequires: gnome-doc-utils = 0.12.0
-BuildRequires: intltool = 0.36.1
+BuildRequires: intltool = 0.40.0
 BuildRequires: libglade2-devel = 1:2.6.2
 BuildRequires: libgnomecanvas-devel = 2.20.0
 BuildRequires: perl-base
@@ -86,6 +86,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.54.2.1  2008/06/18 11:51:48  patrys
+- 2.23.3.1
+
 Revision 1.54  2008/04/11 22:27:33  sls
 - ver. 2.22.1
 


 CVS-web:

http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/SPECS/zenity.spec?r1=1.54r2=1.54.2.1f=u

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


SPECS (DEVEL): metacity.spec - 2.23.34

2008-06-18 Thread patrys
Author: patrys   Date: Wed Jun 18 11:59:33 2008 GMT
Module: SPECS Tag: DEVEL
 Log message:
- 2.23.34

 Files affected:
SPECS:
   metacity.spec (1.134.2.5 - 1.134.2.6) 

 Diffs:


Index: SPECS/metacity.spec
diff -u SPECS/metacity.spec:1.134.2.5 SPECS/metacity.spec:1.134.2.6
--- SPECS/metacity.spec:1.134.2.5   Sun Jun  8 15:10:22 2008
+++ SPECS/metacity.spec Wed Jun 18 13:59:28 2008
@@ -14,13 +14,13 @@
 Summary:   Metacity window manager
 Summary(pl.UTF-8): Zarządca okien Metacity
 Name:  metacity
-Version:   2.23.21
+Version:   2.23.34
 Release:   1
 Epoch: 2
 License:   GPL v2+
 Group: X11/Window Managers
 Source0:   
http://ftp.gnome.org/pub/GNOME/sources/metacity/2.23/%{name}-%{version}.tar.bz2
-# Source0-md5: 780eddd5a57559c6255d7d2440f73114
+# Source0-md5: d723a8866f6e68823b0c5e9fa18e027c
 Patch0:%{name}-swap-resize-button.patch
 Patch1:
http://www.student.dtu.dk/~s021749/metacitydebs/2.16.3_i386/021-twinview-modification.patch
 BuildRequires: GConf2-devel = 2.22.0
@@ -295,7 +295,10 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
-Revision 1.134.2.5  2008/06/08 13:10:22  patrys
+Revision 1.134.2.6  2008/06/18 11:59:28  patrys
+- 2.23.34
+
+Revision 1.134.2.5  2008-06-08 13:10:22  patrys
 - move desktop file to gnome autostart
 
 Revision 1.134.2.4  2008-05-27 13:57:12  patrys


 CVS-web:

http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/SPECS/metacity.spec?r1=1.134.2.5r2=1.134.2.6f=u

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


DISTFILES: metacity-2.23.34.tar.bz2

2008-06-18 Thread patrys

Files fetched: 1

STORED: 
http://ftp.gnome.org/pub/GNOME/sources/metacity/2.23/metacity-2.23.34.tar.bz2
d723a8866f6e68823b0c5e9fa18e027c  metacity-2.23.34.tar.bz2
Size: 2130150 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: xulrunner-1.9-20080618-source.tar.bz2

2008-06-18 Thread hawk

Files fetched: 1

STORED: no-url://xulrunner-1.9-20080618-source.tar.bz2
01c53eb651f8d372c496dd67eb39957a  xulrunner-1.9-20080618-source.tar.bz2
Size: 33643657 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


SPECS: xulrunner.spec - merged 3.0 from DEVEL, updated tarball to official ...

2008-06-18 Thread hawk
Author: hawk Date: Wed Jun 18 12:07:31 2008 GMT
Module: SPECS Tag: HEAD
 Log message:
- merged 3.0 from DEVEL, updated tarball to official FIREFOX_3_0_RELEASE

 Files affected:
SPECS:
   xulrunner.spec (1.48 - 1.49) 

 Diffs:


Index: SPECS/xulrunner.spec
diff -u SPECS/xulrunner.spec:1.48 SPECS/xulrunner.spec:1.49
--- SPECS/xulrunner.spec:1.48   Thu Apr 24 16:29:31 2008
+++ SPECS/xulrunner.specWed Jun 18 14:07:25 2008
@@ -1,32 +1,29 @@
 # $Revision$, $Date$
 #
-# TODO:
-#  - updated mozilla-firefox-ac.patch (why it is enabled here and disabled in 
-#mozilla-firefox.spec? basically its same source)
-#
 # Conditional build:
-%bcond_withtests   # enable tests (whatever they check)
-%bcond_without gnome   # disable all GNOME components (gnomevfs, gnome, 
gnomeui)
-#
-%definesnap20080417
-%definerel 2
-#
+%bcond_withtests   # enable tests (whatever they check)
+%bcond_without gnome   # disable all GNOME components (gnomevfs, 
gnome, gnomeui)
+%bcond_without kerberos# disable krb5 support
+
+%definerel 0.1
+%definesubver  20080618
 Summary:   XULRunner - Mozilla Runtime Environment for XUL+XPCOM 
applications
 Summary(pl.UTF-8): XULRunner - środowisko uruchomieniowe Mozilli dla 
aplikacji XUL+XPCOM
 Name:  xulrunner
-Version:   1.8.1.14
-Release:   1.%{snap}.%{rel}
+Version:   1.9
+Release:   %{subver}.%{rel}
 License:   MPL v1.1 or GPL v2+ or LGPL v2.1+
 Group: X11/Applications
-Source0:   %{name}-%{version}-%{snap}-source.tar.bz2
-# Source0-md5: da464005676c6946360e99a3211609b1
+Source0:   %{name}-%{version}-%{subver}-source.tar.bz2
+# Source0-md5: 01c53eb651f8d372c496dd67eb39957a
 Patch0:%{name}-ldap-with-nss.patch
 Patch1:%{name}-install.patch
 Patch2:%{name}-pc.patch
 Patch3:%{name}-rpath.patch
-Patch4:mozilla-firefox-ac.patch
+Patch4:%{name}-mozldap.patch
+Patch5:%{name}-configures.patch
+Patch6:%{name}-gcc3.patch
 URL:   http://developer.mozilla.org/en/docs/XULRunner
-BuildRequires: /bin/csh
 %{?with_gnome:BuildRequires:   GConf2-devel = 1.2.1}
 BuildRequires: automake
 BuildRequires: bzip2-devel
@@ -34,18 +31,25 @@
 BuildRequires: freetype-devel = 1:2.1.8
 %{?with_gnome:BuildRequires:   gnome-vfs2-devel = 2.0}
 BuildRequires: gtk+2-devel = 1:2.0.0
-BuildRequires: krb5-devel
+%if %{pld_release} == ac
+%{?with_kerberos:BuildRequires:heimdal-devel = 0.7.1}
+%else
+%{?with_kerberos:BuildRequires:krb5-devel}
+%endif
 BuildRequires: libIDL-devel = 0.8.0
 %{?with_gnome:BuildRequires:   libgnome-devel = 2.0}
 %{?with_gnome:BuildRequires:   libgnomeui-devel = 2.2.0}
 BuildRequires: libjpeg-devel = 6b
 BuildRequires: libpng-devel = 1.2.7
 BuildRequires: libstdc++-devel
+BuildRequires: mozldap-devel = 6.0
 BuildRequires: nspr-devel = 1:4.6.4
 BuildRequires: nss-devel = 1:3.11.3-3
 BuildRequires: pango-devel = 1:1.6.0
 BuildRequires: perl-modules = 5.004
 BuildRequires: pkgconfig
+BuildRequires: rpm = 4.4.9-56
+BuildRequires: rpmbuild(macros) = 1.453
 BuildRequires: sed = 4.0
 BuildRequires: xorg-lib-libXext-devel
 BuildRequires: xorg-lib-libXft-devel = 2.1
@@ -115,25 +119,21 @@
 %prep
 %setup -qc
 cd mozilla
+rm -r nsprpub
 
-rm -rf mozilla/modules/libbz2
-
-%patch0 -p1
+#%patch0 -p1
 %patch1 -p1
-%patch2 -p1
-%patch3 -p1
-#%patch4 -p1
+#%patch2 -p1
+#%patch3 -p1
+%patch4 -p1
+%patch5 -p1
+%if %{cc_version}  3.4
+%patch6 -p2
+%endif
 
 %build
 cd mozilla
-
 cp -f %{_datadir}/automake/config.* build/autoconf
-cp -f %{_datadir}/automake/config.* directory/c-sdk/config/autoconf
-
-if [ ! -f configure -o configure.in -nt configure ]; then
-   %{__aclocal} -I build/autoconf
-   autoconf2_13
-fi
 
 cat  'EOF'  .mozconfig
 . $topsrcdir/xulrunner/config/mozconfig
@@ -182,11 +182,11 @@
 ac_add_options --disable-javaxpcom
 ac_add_options --disable-updater
 ac_add_options --enable-xinerama
-ac_add_options --enable-default-toolkit=gtk2
+ac_add_options --enable-default-toolkit=cairo-gtk2
 ac_add_options --enable-system-cairo
+#ac_add_options --enable-system-lcms
 ac_add_options --enable-xft
 ac_add_options --with-distribution-id=org.pld-linux
-ac_add_options --with-system-bz2
 ac_add_options --with-system-jpeg
 ac_add_options --with-system-nspr
 ac_add_options --with-system-nss
@@ -197,7 +197,7 @@
 ac_add_options --disable-pedantic
 ac_add_options --disable-xterm-updates
 ac_add_options --enable-extensions=default,cookie,permissions,spellcheck
-ac_add_options --enable-ldap
+#ac_add_options --enable-ldap
 ac_add_options --enable-xprint
 ac_add_options --with-pthreads
 ac_add_options --with-x
@@ -212,7 +212,7 @@
 rm -rf $RPM_BUILD_ROOT
 cd mozilla
 
-%{__make} -C xpinstall

SOURCES: xulrunner-install.patch - merged from DEVEL for xulrunner 1.9

2008-06-18 Thread hawk
Author: hawk Date: Wed Jun 18 12:11:40 2008 GMT
Module: SOURCES   Tag: HEAD
 Log message:
- merged from DEVEL for xulrunner 1.9

 Files affected:
SOURCES:
   xulrunner-install.patch (1.2 - 1.3) 

 Diffs:


Index: SOURCES/xulrunner-install.patch
diff -u SOURCES/xulrunner-install.patch:1.2 SOURCES/xulrunner-install.patch:1.3
--- SOURCES/xulrunner-install.patch:1.2 Wed Jan  3 21:50:55 2007
+++ SOURCES/xulrunner-install.patch Wed Jun 18 14:11:35 2008
@@ -1,15 +1,23 @@
 mozilla/toolkit/mozapps/installer/packager.mk~ 2006-12-23 
03:31:40.882927000 +0200
-+++ mozilla/toolkit/mozapps/installer/packager.mk  2006-12-23 
03:38:32.302235167 +0200
-@@ -301,7 +301,7 @@
+--- mozilla/toolkit/mozapps/installer/packager.mk  2006-12-23 
03:38:32.302235167 +0200
 mozilla/toolkit/mozapps/installer/packager.mk  2008-03-05 
22:59:55.020447000 +
+@@ -328,13 +328,13 @@
  # NOTE: this must be a tar now that dist links into the tree so that we
  # do not strip the binaries actually in the tree.
@echo Creating package directory...
 -  @mkdir $(DIST)/$(MOZ_PKG_APPNAME)
-+  @install -d $(DESTDIR)$(MOZ_PKG_APPDIR)
++  @mkdir -p $(DESTDIR)$(MOZ_PKG_APPDIR)
  ifdef MOZ_PKG_MANIFEST
$(RM) -rf $(DIST)/xpt
-   $(PERL) -I$(topsrcdir)/xpinstall/packager -e 'use Packager; \
-@@ -316,7 +316,7 @@
+   $(call PACKAGER_COPY, $(DIST),\
+-   $(DIST)/$(MOZ_PKG_APPNAME), \
++   $(DESTDIR)/$(MOZ_PKG_APPDIR), \
+   $(MOZ_PKG_MANIFEST), $(PKGCP_OS), 1, 0, 1)
+-  $(PERL) $(topsrcdir)/xpinstall/packager/xptlink.pl -s $(DIST) -d 
$(DIST)/xpt -f $(DIST)/$(MOZ_PKG_APPNAME)/components -v -x $(XPIDL_LINK)
++  $(PERL) $(topsrcdir)/xpinstall/packager/xptlink.pl -s $(DIST) -d 
$(DIST)/xpt -f $(DESTDIR)/$(MOZ_PKG_APPDIR)/components -v -x $(XPIDL_LINK)
+ else # !MOZ_PKG_MANIFEST
+ ifeq ($(MOZ_PKG_FORMAT),DMG)
+ # If UNIVERSAL_BINARY, the package will be made from an already-prepared
+@@ -343,7 +343,7 @@
@cd $(DIST)  rsync -auv --copy-unsafe-links $(_APPNAME) 
$(MOZ_PKG_APPNAME)
  endif
  else
@@ -18,7 +26,7 @@
  endif # DMG
  endif # MOZ_PKG_MANIFEST
  ifndef PKG_SKIP_STRIP
-@@ -348,7 +348,7 @@
+@@ -375,7 +375,7 @@
  endif
@echo Removing unpackaged files...
  ifdef NO_PKG_FILES
@@ -27,9 +35,3 @@
  endif
  ifdef MOZ_PKG_REMOVALS
$(SYSINSTALL) $(MOZ_PKG_REMOVALS_GEN) 
$(DIST)/$(STAGEPATH)$(MOZ_PKG_APPNAME)$(_BINPATH)
-@@ -355,5 +355,3 @@
- endif # MOZ_PKG_REMOVALS
- 
- make-package: stage-package
--  @echo Compressing...
--  cd $(DIST); $(MAKE_PACKAGE)


 CVS-web:

http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/SOURCES/xulrunner-install.patch?r1=1.2r2=1.3f=u

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


SPECS: mozilla-firefox.spec - fixed patch4 name

2008-06-18 Thread hawk
Author: hawk Date: Wed Jun 18 12:13:57 2008 GMT
Module: SPECS Tag: HEAD
 Log message:
- fixed patch4 name

 Files affected:
SPECS:
   mozilla-firefox.spec (1.242 - 1.243) 

 Diffs:


Index: SPECS/mozilla-firefox.spec
diff -u SPECS/mozilla-firefox.spec:1.242 SPECS/mozilla-firefox.spec:1.243
--- SPECS/mozilla-firefox.spec:1.242Wed Jun 18 13:40:43 2008
+++ SPECS/mozilla-firefox.spec  Wed Jun 18 14:13:51 2008
@@ -33,7 +33,7 @@
 Patch1:%{name}-gcc3.patch
 Patch2:%{name}-agent.patch
 Patch3:%{name}-agent-ac.patch
-Patch4:%{name}-agent-ti.patch
+Patch4:%{name}-ti-agent.patch
 URL:   http://www.mozilla.org/projects/firefox/
 %{?with_gnomevfs:BuildRequires:GConf2-devel = 1.2.1}
 BuildRequires: automake
@@ -431,6 +431,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.243  2008/06/18 12:13:51  hawk
+- fixed patch4 name
+
 Revision 1.242  2008/06/18 11:40:43  hawk
 - merged Titanium user agent patch from FF 2.x
 


 CVS-web:

http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/SPECS/mozilla-firefox.spec?r1=1.242r2=1.243f=u

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


SPECS: vala.spec - more BR

2008-06-18 Thread patrys
Author: patrys   Date: Wed Jun 18 12:15:21 2008 GMT
Module: SPECS Tag: HEAD
 Log message:
- more BR

 Files affected:
SPECS:
   vala.spec (1.24 - 1.25) 

 Diffs:


Index: SPECS/vala.spec
diff -u SPECS/vala.spec:1.24 SPECS/vala.spec:1.25
--- SPECS/vala.spec:1.24Wed Jun  4 04:42:10 2008
+++ SPECS/vala.spec Wed Jun 18 14:15:16 2008
@@ -10,7 +10,9 @@
 # Source0-md5: b0bdf06ac68d930ea754209505e13d9b
 URL:   http://www.paldo.org/vala/
 BuildRequires: bison
-BuildRequires: glib2-devel = 1:2.10.0
+BuildRequires: flex
+BuildRequires: glib2-devel = 1:2.12.0
+BuildRequires: gtk+2-devel = 2:2.10.0
 BuildRequires: libxslt-progs
 BuildRequires: pkgconfig
 BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
@@ -101,7 +103,10 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
-Revision 1.24  2008/06/04 02:42:10  aredridel
+Revision 1.25  2008/06/18 12:15:16  patrys
+- more BR
+
+Revision 1.24  2008-06-04 02:42:10  aredridel
 - 0.3.3
 
 Revision 1.23  2008-05-13 15:48:11  qboosh


 CVS-web:

http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/SPECS/vala.spec?r1=1.24r2=1.25f=u

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


SPECS: pgpool.spec - revert (it's inconsistent macro), adapter too

2008-06-18 Thread glen
Author: glen Date: Wed Jun 18 12:35:49 2008 GMT
Module: SPECS Tag: HEAD
 Log message:
- revert (it's inconsistent macro), adapter too

 Files affected:
SPECS:
   pgpool.spec (1.11 - 1.12) 

 Diffs:


Index: SPECS/pgpool.spec
diff -u SPECS/pgpool.spec:1.11 SPECS/pgpool.spec:1.12
--- SPECS/pgpool.spec:1.11  Wed Jun 18 11:10:10 2008
+++ SPECS/pgpool.spec   Wed Jun 18 14:35:44 2008
@@ -1,7 +1,7 @@
 # $Revision$, $Date$
 #
 # TODO
-#  - I think it shuld be daemon so rc-scripts support is needed 
+#  - I think it shuld be daemon so rc-scripts support is needed
 #  (user pgpool?) init script must be fixed
 #
 %bcond_without pam # don't build with pam support
@@ -30,15 +30,15 @@
 %{?with_pam:Requires: pam}
 Requires:  rc-scripts = 0.2.0
 Provides:  group(pgpool)
-Provides:  user(pgpool)
 Provides:  pgpool
+Provides:  user(pgpool)
 Buildroot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
 
 %description
 Pgpool is a connection pooling/replication server for PostgreSQL.
 Pgpool runs between PostgreSQL's clients(front ends) and servers
-(backends). A PostgreSQL client can connect to pgpool as if it
-were a standard PostgreSQL server.
+(backends). A PostgreSQL client can connect to pgpool as if it were a
+standard PostgreSQL server.
 
 %description -l pl.UTF-8
 Pgpool to serwer puli połączeń i replikacji dla PostgreSQL-a.
@@ -74,16 +74,16 @@
 
 install -d $RPM_BUILD_ROOT%{_sysconfdir}/{sysconfig,logrotate.d,monit,pam.d} \
$RPM_BUILD_ROOT%{_initrddir} \
-$RPM_BUILD_ROOT%{_sbindir} 
+$RPM_BUILD_ROOT%{_sbindir}
 
 %{__make} install \
DESTDIR=$RPM_BUILD_ROOT
 install pgpool $RPM_BUILD_ROOT%{_bindir}/
 install pgpool.conf.sample   $RPM_BUILD_ROOT%{_sysconfdir}/pgpool.conf
 install pool_hba.conf.sample $RPM_BUILD_ROOT%{_sysconfdir}/pool_hba.conf
-install %{SOURCE1} $RPM_BUILD_ROOT%{_initrddir}/%{name}
+install %{SOURCE1} $RPM_BUILD_ROOT/etc/rc.d/init.d/%{name}
 install %{SOURCE2} $RPM_BUILD_ROOT/etc/monit/%{name}.monitrc
-install %{SOURCE3} $RPM_BUILD_ROOT/%{_sysconfdir}/sysconfig/%{name}
+install %{SOURCE3} $RPM_BUILD_ROOT%{_sysconfdir}/sysconfig/%{name}
 %if %{with pam}
 install pgpool.pam $RPM_BUILD_ROOT%{_sysconfdir}/pam.d/pgpool
 %endif
@@ -119,7 +119,7 @@
 %attr(754,root,root) /etc/rc.d/init.d/pgpool
 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/pgpool.conf
 %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/pool_hba.conf
-%config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/sysconfig/%{name}
+%config(noreplace) %verify(not md5 mtime size) /etc/sysconfig/%{name}
 %{_mandir}/man8/pgpool.8*
 %if %{with pam}
 %config(noreplace) %verify(not md5 mtime size) /etc/pam.d/%{name}
@@ -135,6 +135,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.12  2008/06/18 12:35:44  glen
+- revert (it's inconsistent macro), adapter too
+
 Revision 1.11  2008/06/18 09:10:10  sardzent
 - next macro
 


 CVS-web:

http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/SPECS/pgpool.spec?r1=1.11r2=1.12f=u

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


DISTFILES: gnome-build-0.3.0.tar.bz2

2008-06-18 Thread patrys

Files fetched: 1

STORED: 
http://ftp.gnome.org/pub/GNOME/sources/gnome-build/0.3/gnome-build-0.3.0.tar.bz2
f998c1e5676c3602937413f4f20f1572  gnome-build-0.3.0.tar.bz2
Size: 07 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


SPECS: gnome-build.spec - 0.3.0 - sed workaround for outdated GNU_REGEX sup...

2008-06-18 Thread patrys
Author: patrys   Date: Wed Jun 18 12:56:24 2008 GMT
Module: SPECS Tag: HEAD
 Log message:
- 0.3.0
- sed workaround for outdated GNU_REGEX support

 Files affected:
SPECS:
   gnome-build.spec (1.19 - 1.20) 

 Diffs:


Index: SPECS/gnome-build.spec
diff -u SPECS/gnome-build.spec:1.19 SPECS/gnome-build.spec:1.20
--- SPECS/gnome-build.spec:1.19 Mon Nov  5 00:22:29 2007
+++ SPECS/gnome-build.spec  Wed Jun 18 14:56:19 2008
@@ -2,12 +2,12 @@
 Summary:   GNOME Build Framework (GBF)
 Summary(pl.UTF-8): Struktura GNOME Build (GBF)
 Name:  gnome-build
-Version:   0.2.0
-Release:   2
+Version:   0.3.0
+Release:   1
 License:   GPL
 Group: Development/Tools
-Source0:   
http://ftp.gnome.org/pub/GNOME/sources/gnome-build/0.2/%{name}-%{version}.tar.bz2
-# Source0-md5: 97ba7c81f47c39b191d9aae9ea173084
+Source0:   
http://ftp.gnome.org/pub/GNOME/sources/gnome-build/0.3/%{name}-%{version}.tar.bz2
+# Source0-md5: f998c1e5676c3602937413f4f20f1572
 BuildRequires: automake
 BuildRequires: gdl-devel = 0.7.5
 BuildRequires: gnome-vfs2-devel = 2.18.1
@@ -16,6 +16,8 @@
 BuildRequires: libgnomeui-devel = 2.18.1
 BuildRequires: libxml2-devel = 1:2.6.28
 BuildRequires: perl-base
+BuildRequires: perl-Locale-gettext
+BuildRequires: sed
 # [EMAIL PROTECTED] vs. [EMAIL PROTECTED]
 Conflicts: glibc-misc  6:2.7
 BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
@@ -43,9 +45,14 @@
 %setup -q
 
 %build
-cp -f /usr/share/automake/config.sub .
+%{__libtoolize}
+%{__aclocal}
+%{__autoheader}
+%{__autoconf}
+%{__automake}
 %configure \
--enable-compile-warnings=maximum
+sed -i 's/#define NATIVE_GNU_REGEX 1//' config.h
 %{__make} -j1
 
 %install
@@ -69,6 +76,7 @@
 %doc AUTHORS ChangeLog README
 %attr(755,root,root) %{_bindir}/*
 %attr(755,root,root) %{_libdir}/lib*.so.*.*.*
+%attr(755,root,root) %ghost %{_libdir}/lib*.so.2
 %dir %{_libdir}/%{name}-1.0
 %dir %{_libdir}/%{name}-1.0/backends
 %attr(755,root,root) %{_libdir}/%{name}-1.0/backends/lib*.so*
@@ -91,7 +99,11 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
-Revision 1.19  2007/11/04 23:22:29  ankry
+Revision 1.20  2008/06/18 12:56:19  patrys
+- 0.3.0
+- sed workaround for outdated GNU_REGEX support
+
+Revision 1.19  2007-11-04 23:22:29  ankry
 - [EMAIL PROTECTED] - [EMAIL PROTECTED], rel. 2
 
 Revision 1.18  2007/09/07 17:50:47  twittner


 CVS-web:

http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/SPECS/gnome-build.spec?r1=1.19r2=1.20f=u

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


SPECS: mozldap.spec - add todo

2008-06-18 Thread glen
Author: glen Date: Wed Jun 18 13:06:14 2008 GMT
Module: SPECS Tag: HEAD
 Log message:
- add todo

 Files affected:
SPECS:
   mozldap.spec (1.29 - 1.30) 

 Diffs:


Index: SPECS/mozldap.spec
diff -u SPECS/mozldap.spec:1.29 SPECS/mozldap.spec:1.30
--- SPECS/mozldap.spec:1.29 Thu Mar  6 21:25:39 2008
+++ SPECS/mozldap.spec  Wed Jun 18 15:06:09 2008
@@ -1,4 +1,6 @@
 # $Revision$, $Date$
+# TODO
+# - ./config.status creation broken (libtool2 problem likely) on th/ti
 %definenspr_version4.6
 %definenspr_evr1:%{nspr_version}
 %definenss_version 3.11
@@ -198,6 +200,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.30  2008/06/18 13:06:09  glen
+- add todo
+
 Revision 1.29  2008/03/06 20:25:39  glen
 - no makefile for examples
 


 CVS-web:

http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/SPECS/mozldap.spec?r1=1.29r2=1.30f=u

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


SPECS (DEVEL): anjuta.spec - remerged from HEAD - 2.5.0

2008-06-18 Thread patrys
Author: patrys   Date: Wed Jun 18 13:15:26 2008 GMT
Module: SPECS Tag: DEVEL
 Log message:
- remerged from HEAD
- 2.5.0

 Files affected:
SPECS:
   anjuta.spec (1.84.2.11 - 1.84.2.12) 

 Diffs:


Index: SPECS/anjuta.spec
diff -u SPECS/anjuta.spec:1.84.2.11 SPECS/anjuta.spec:1.84.2.12
--- SPECS/anjuta.spec:1.84.2.11 Mon Feb 12 14:20:12 2007
+++ SPECS/anjuta.spec   Wed Jun 18 15:15:21 2008
@@ -4,58 +4,69 @@
 # - post/preun mime registration
 #
 Summary:   GNOME integrated development environment
-Summary(pl.UTF-8):   Zintegrowane środowisko programowania dla GNOME
-Summary(es.UTF-8):   Entorno integrado de desarrollo (IDE) de GNOME
-Summary(pt_BR.UTF-8):   Ambiente de desenvolvimento integrado C e C++
+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:   2.0.2
-Release:   2
+Version:   2.5.0
+Release:   1
 Epoch: 1
 License:   GPL
 Group: Development/Tools
-Source0:   http://dl.sourceforge.net/anjuta/%{name}-%{version}.tar.gz
-# Source0-md5: e0d1e216da809df32816d233d7c55165
-Patch0:%{name}-home_etc.patch
+Source0:   
http://ftp.gnome.org/pub/GNOME/sources/anjuta/2.5/%{name}-%{version}.tar.bz2
+# Source0-md5: d29cdacd671ab1cf87eebe3850acb95e
+#Patch0: %{name}-home_etc.patch
 Patch1:%{name}-desktop.patch
-Patch2:%{name}-build_fixes.patch
-Patch3:%{name}-as_needed.patch
-Patch4:%{name}-flags.patch
-Patch5:%{name}-glade_fix.patch
 URL:   http://anjuta.sourceforge.net/
-BuildRequires: ORBit2-devel = 1:2.14.2
-BuildRequires: autoconf = 2.52
-BuildRequires: autogen-devel
-BuildRequires: automake
-BuildRequires: devhelp-devel = 0.12
-BuildRequires: gd-devel
-BuildRequires: gdl-devel = 0.6.1
-BuildRequires: gnome-build-devel = 0.1.3
-BuildRequires: gnome-common = 2.12.0
-BuildRequires: graphviz-devel = 2.2.1
+BuildRequires: GConf2-devel = 2.12.0
+BuildRequires: ORBit2-devel = 1:2.12.1
+BuildRequires: autoconf = 2.59
+BuildRequires: autogen
+BuildRequires: automake = 1:1.9
+BuildRequires: binutils-devel = 3:2.15.92
+BuildRequires: devhelp-devel = 0.13
+BuildRequires: gdl-devel = 0.7.3
+BuildRequires: gettext-devel
+BuildRequires: glib2-devel = 1:2.14.0
+BuildRequires: gnome-build-devel = 0.3.0
+BuildRequires: gnome-common
+BuildRequires: gnome-doc-utils
+BuildRequires: gnome-vfs2-devel = 2.14.0
+BuildRequires: graphviz-devel = 2.6.0
+BuildRequires: gtk+2-devel = 2:2.10.0
 BuildRequires: gtk-doc = 1.7
-BuildRequires: gtksourceview-devel = 0.7.2
-BuildRequires: guile-devel = 1.6.7
-BuildRequires: intltool = 0.35
-BuildRequires: libglade2-devel = 1:2.6.0
-BuildRequires: libgladeui-devel = 3.0.1
-BuildRequires: libgnomeprintui-devel = 2.12.1
-BuildRequires: libgnomeui-devel = 2.15.91
+BuildRequires: gtksourceview2-devel = 2.2.0
+BuildRequires: intltool = 0.36.2
+BuildRequires: libglade2-devel = 1:2.6.2
+BuildRequires: libgladeui-devel = 3.2.0
+BuildRequires: libgnome-devel = 2.14.0
+BuildRequires: libgnomecanvas-devel = 2.12.0
+BuildRequires: libgnomeprintui-devel = 2.12.0
+BuildRequires: libgnomeui-devel = 2.12.0
+BuildRequires: libstdc++-devel
 BuildRequires: libtool
+BuildRequires: libwnck-devel = 2.12.0
 BuildRequires: libxml2-devel = 1:2.6.26
-BuildRequires: libxslt-devel = 1.1.17
-BuildRequires: ncurses-devel
-BuildRequires: pcre-devel = 3.9
+BuildRequires: libxslt-devel
+BuildRequires: neon-devel = 0.24.5
 BuildRequires: pkgconfig
+BuildRequires: rpmbuild(find_lang) = 1.23
 BuildRequires: rpmbuild(macros) = 1.311
-# requires old subversion version to build
-#BuildRequires:subversion-devel = 1.0.2
 BuildRequires: scrollkeeper
-BuildRequires: vte-devel = 0.13.5
-Requires(post,preun):  GConf2 = 2.14.0
-Requires(post,postun): gtk+2 = 2.10.1
+BuildRequires: sed = 4.0
+BuildRequires: subversion-devel = 1.0.2
+BuildRequires: vte-devel = 0.14.0
+Requires(post,postun): desktop-file-utils
+Requires(post,postun): gtk+2
+Requires(post,postun): hicolor-icon-theme
 Requires(post,postun): scrollkeeper
 Requires(post,postun): shared-mime-info
-Requires:  %{name}-libs = %{epoch}:%{version}-%{release}
+Requires(post,preun):  GConf2
+# Requires:gnome-terminal
+Requires:  glib2 = 1:2.14.0
+Requires:  libanjuta = %{epoch}:%{version}-%{release}
+# [EMAIL PROTECTED] vs. [EMAIL PROTECTED]
+Conflicts: glibc-misc  6:2.7
 BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
 
 %description
@@ -90,91 +101,85 @@
 são geralmente executadas em um console em modo texto e podem ser não
 amigáveis.
 
-%package libs
-Summary:   Anjuta shared libraries
-Summary(pl.UTF-8):   Bibloteki współdzielone Anjuta
+%package -n libanjuta
+Summary:   libanjuta 

DISTFILES: anjuta-2.5.0.tar.bz2

2008-06-18 Thread patrys

Files fetched: 1

STORED: http://ftp.gnome.org/pub/GNOME/sources/anjuta/2.5/anjuta-2.5.0.tar.bz2
d29cdacd671ab1cf87eebe3850acb95e  anjuta-2.5.0.tar.bz2
Size: 6394065 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


SOURCES (DEVEL): anjuta-desktop.patch - 2.5.0CVS: -------------------------...

2008-06-18 Thread patrys
Author: patrys   Date: Wed Jun 18 13:15:41 2008 GMT
Module: SOURCES   Tag: DEVEL
 Log message:
- 2.5.0CVS: 
--

 Files affected:
SOURCES:
   anjuta-desktop.patch (1.3 - 1.3.2.1) 

 Diffs:


Index: SOURCES/anjuta-desktop.patch
diff -u SOURCES/anjuta-desktop.patch:1.3 SOURCES/anjuta-desktop.patch:1.3.2.1
--- SOURCES/anjuta-desktop.patch:1.3Wed Nov 17 12:06:31 2004
+++ SOURCES/anjuta-desktop.patchWed Jun 18 15:15:35 2008
@@ -5,7 +5,7 @@
  Terminal=false
  X-MultipleArgs=false
  Type=Application
--Categories=Application;Development;
+-Categories=GNOME;GTK;Development;
 +Categories=GTK;GNOME;Development;IDE;
  Encoding=UTF-8
  StartupNotify=true


 CVS-web:

http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/SOURCES/anjuta-desktop.patch?r1=1.3r2=1.3.2.1f=u

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


SOURCES: util-vserver-more-caps.patch (NEW) - patch adding capabilities pre...

2008-06-18 Thread zbyniu
Author: zbyniu   Date: Wed Jun 18 14:32:37 2008 GMT
Module: SOURCES   Tag: HEAD
 Log message:
- patch adding capabilities present in kernels .24 and .25, still broken for 
caps 32bit

 Files affected:
SOURCES:
   util-vserver-more-caps.patch (NONE - 1.1)  (NEW)

 Diffs:


Index: SOURCES/util-vserver-more-caps.patch
diff -u /dev/null SOURCES/util-vserver-more-caps.patch:1.1
--- /dev/null   Wed Jun 18 16:32:37 2008
+++ SOURCES/util-vserver-more-caps.patchWed Jun 18 16:32:31 2008
@@ -0,0 +1,32 @@
+--- util-vserver-0.30.215/lib/bcaps-v13.c~ 2008-03-17 09:59:48.0 
+0100
 util-vserver-0.30.215/lib/bcaps-v13.c  2008-06-18 14:35:03.461451575 
+0200
+@@ -39,6 +39,19 @@
+ #  define CAP_AUDIT_CONTROL   30
+ #endif
+ 
++#ifndef CAP_SETFCAP
++#  define CAP_SETFCAP 31
++#endif
++
++#ifndef CAP_MAC_OVERRIDE
++#  define CAP_MAC_OVERRIDE32
++#endif
++
++#ifndef CAP_MAC_ADMIN
++#  define CAP_MAC_ADMIN   33
++#endif
++
++
+ static struct Mapping_uint64 const VALUES[] = {
+   DECL(CHOWN),
+   DECL(DAC_OVERRIDE),
+@@ -71,6 +84,9 @@
+   DECL(LEASE),
+   DECL(AUDIT_WRITE),
+   DECL(AUDIT_CONTROL),
++  DECL(SETFCAP),
++  DECL(MAC_OVERRIDE),
++  DECL(MAC_ADMIN),
+ };
+ 
+ inline static char const *

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


SPECS: util-vserver.spec - more-caps.patch for new caps in .24+ kernels; rel 8

2008-06-18 Thread zbyniu
Author: zbyniu   Date: Wed Jun 18 14:33:39 2008 GMT
Module: SPECS Tag: HEAD
 Log message:
- more-caps.patch for new caps in .24+ kernels; rel 8

 Files affected:
SPECS:
   util-vserver.spec (1.192 - 1.193) 

 Diffs:


Index: SPECS/util-vserver.spec
diff -u SPECS/util-vserver.spec:1.192 SPECS/util-vserver.spec:1.193
--- SPECS/util-vserver.spec:1.192   Wed May 28 12:30:05 2008
+++ SPECS/util-vserver.spec Wed Jun 18 16:33:33 2008
@@ -21,7 +21,7 @@
 Summary(pl.UTF-8): Narzędzia dla linuksowych serwerów wirtualnych
 Name:  util-vserver
 Version:   0.30.215
-Release:   7
+Release:   8
 License:   GPL
 Group: Applications/System
 Source0:   
http://ftp.linux-vserver.org/pub/utils/util-vserver/%{name}-%{version}.tar.bz2
@@ -63,6 +63,7 @@
 Patch17:   %{name}-backupfiles.patch
 Patch18:   %{name}-trunk_fixes.patch
 Patch19:   %{name}-vprocunhide-net.patch
+Patch20:   %{name}-more-caps.patch
 URL:   http://savannah.nongnu.org/projects/util-vserver/
 BuildRequires: autoconf
 BuildRequires: automake = 1.9
@@ -413,6 +414,7 @@
 %patch17 -p1
 %patch18 -p1
 %patch19 -p1
+%patch20 -p1
 
 install %{SOURCE9} package-management.txt
 
@@ -973,6 +975,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.193  2008/06/18 14:33:33  zbyniu
+- more-caps.patch for new caps in .24+ kernels; rel 8
+
 Revision 1.192  2008/05/28 10:30:05  arekm
 - rel 7; turn verbose mode in yum and disable gpg checking (makes it work with 
latest yums)
 


 CVS-web:

http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/SPECS/util-vserver.spec?r1=1.192r2=1.193f=u

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


DISTFILES: gnome-phone-manager-0.60.tar.bz2

2008-06-18 Thread patrys

Files fetched: 1

STORED: 
http://ftp.gnome.org/pub/GNOME/sources/gnome-phone-manager/0.60/gnome-phone-manager-0.60.tar.bz2
f9497833b24c0100dc844853f434a9e2  gnome-phone-manager-0.60.tar.bz2
Size: 481962 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


SPECS: gnome-applet-phone-manager.spec - 0.60

2008-06-18 Thread patrys
Author: patrys   Date: Wed Jun 18 14:46:06 2008 GMT
Module: SPECS Tag: HEAD
 Log message:
- 0.60

 Files affected:
SPECS:
   gnome-applet-phone-manager.spec (1.34 - 1.35) 

 Diffs:


Index: SPECS/gnome-applet-phone-manager.spec
diff -u SPECS/gnome-applet-phone-manager.spec:1.34 
SPECS/gnome-applet-phone-manager.spec:1.35
--- SPECS/gnome-applet-phone-manager.spec:1.34  Sun Mar 30 19:21:49 2008
+++ SPECS/gnome-applet-phone-manager.spec   Wed Jun 18 16:46:01 2008
@@ -3,12 +3,12 @@
 Summary:   GNOME Phone Manager applet
 Summary(pl.UTF-8): Zarządca telefonu - aplet GNOME
 Name:  gnome-applet-%{applet}
-Version:   0.51
-Release:   2
+Version:   0.60
+Release:   1
 License:   GPL
 Group: X11/Applications
 Source0:   
http://ftp.gnome.org/pub/GNOME/sources/gnome-phone-manager/%{version}/gnome-%{applet}-%{version}.tar.bz2
-# Source0-md5: e40ab97868e2386d3db45d137b6f6207
+# Source0-md5: f9497833b24c0100dc844853f434a9e2
 Patch0:%{name}-desktop.patch
 URL:   http://usefulinc.com/software/phonemgr/
 BuildRequires: autoconf = 2.52
@@ -21,7 +21,7 @@
 BuildRequires: intltool = 0.18
 BuildRequires: libbtctl-devel = 0.5.0
 BuildRequires: librsvg-devel = 1:2.0
-BuildRequires: libgnokii-devel = 1:0.6.24
+BuildRequires: libgnokii-devel = 1:0.6.26
 BuildRequires: libgnomeui-devel = 2.14.0
 BuildRequires: libtelepathy-devel = 0.3.1
 BuildRequires: openobex-devel = 1.0.0
@@ -49,6 +49,7 @@
 
 %build
 %{__glib_gettextize}
+%{__libtoolize}
 %{__aclocal}
 %{__autoconf}
 %{__autoheader}
@@ -92,7 +93,10 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
-Revision 1.34  2008/03/30 17:21:49  wolvverine
+Revision 1.35  2008/06/18 14:46:01  patrys
+- 0.60
+
+Revision 1.34  2008-03-30 17:21:49  wolvverine
 - add telepathy-phoney
 
 Revision 1.33  2008-03-29 23:03:51  wolvverine


 CVS-web:

http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/SPECS/gnome-applet-phone-manager.spec?r1=1.34r2=1.35f=u

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


SPECS: gnome-applet-phone-manager.spec - more BR

2008-06-18 Thread patrys
Author: patrys   Date: Wed Jun 18 14:49:10 2008 GMT
Module: SPECS Tag: HEAD
 Log message:
- more BR

 Files affected:
SPECS:
   gnome-applet-phone-manager.spec (1.35 - 1.36) 

 Diffs:


Index: SPECS/gnome-applet-phone-manager.spec
diff -u SPECS/gnome-applet-phone-manager.spec:1.35 
SPECS/gnome-applet-phone-manager.spec:1.36
--- SPECS/gnome-applet-phone-manager.spec:1.35  Wed Jun 18 16:46:01 2008
+++ SPECS/gnome-applet-phone-manager.spec   Wed Jun 18 16:49:04 2008
@@ -13,6 +13,7 @@
 URL:   http://usefulinc.com/software/phonemgr/
 BuildRequires: autoconf = 2.52
 BuildRequires: automake = 1:1.8
+BuildRequires: bluez-libs-devel = 3.12
 BuildRequires: evolution-devel = 2.6.1
 BuildRequires: gnome-bluetooth-devel  0.8.0
 BuildRequires: gstreamer-devel = 0.10
@@ -24,6 +25,7 @@
 BuildRequires: libgnokii-devel = 1:0.6.26
 BuildRequires: libgnomeui-devel = 2.14.0
 BuildRequires: libtelepathy-devel = 0.3.1
+BuildRequires: libtool
 BuildRequires: openobex-devel = 1.0.0
 BuildRequires: pkgconfig
 Requires:  bluez-utils
@@ -93,6 +95,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.36  2008/06/18 14:49:04  patrys
+- more BR
+
 Revision 1.35  2008/06/18 14:46:01  patrys
 - 0.60
 


 CVS-web:

http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/SPECS/gnome-applet-phone-manager.spec?r1=1.35r2=1.36f=u

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


SPECS: browser-plugin-kaffeine.spec - +R kaffeine

2008-06-18 Thread gzohop
Author: gzohop   Date: Wed Jun 18 15:04:05 2008 GMT
Module: SPECS Tag: HEAD
 Log message:
- +R kaffeine

 Files affected:
SPECS:
   browser-plugin-kaffeine.spec (1.9 - 1.10) 

 Diffs:


Index: SPECS/browser-plugin-kaffeine.spec
diff -u SPECS/browser-plugin-kaffeine.spec:1.9 
SPECS/browser-plugin-kaffeine.spec:1.10
--- SPECS/browser-plugin-kaffeine.spec:1.9  Mon Mar  3 09:59:43 2008
+++ SPECS/browser-plugin-kaffeine.spec  Wed Jun 18 17:04:00 2008
@@ -21,6 +21,7 @@
 BuildRequires: xorg-lib-libXaw-devel
 BuildRequires: xorg-lib-libXt-devel
 Requires:  browser-plugins = 2.0
+Requires:  kaffeine
 BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
 
 %description
@@ -78,6 +79,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.10  2008/06/18 15:04:00  gzohop
+- +R kaffeine
+
 Revision 1.9  2008/03/03 08:59:43  hawk
 - browser-plugins v2
 - release 1


 CVS-web:

http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/SPECS/browser-plugin-kaffeine.spec?r1=1.9r2=1.10f=u

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


SPECS: kaffeine.spec - +R xine-output-video-xcb

2008-06-18 Thread gzohop
Author: gzohop   Date: Wed Jun 18 15:09:27 2008 GMT
Module: SPECS Tag: HEAD
 Log message:
- +R xine-output-video-xcb 

 Files affected:
SPECS:
   kaffeine.spec (1.53 - 1.54) 

 Diffs:


Index: SPECS/kaffeine.spec
diff -u SPECS/kaffeine.spec:1.53 SPECS/kaffeine.spec:1.54
--- SPECS/kaffeine.spec:1.53Sat Feb  9 15:51:20 2008
+++ SPECS/kaffeine.spec Wed Jun 18 17:09:22 2008
@@ -30,6 +30,7 @@
 %endif
 Requires:  kdebase-core = 9:3.2.0
 Requires:  libdvdcss
+Requires:  xine-output-video-xcb
 BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
 
 %description
@@ -117,6 +118,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.54  2008/06/18 15:09:22  gzohop
+- +R xine-output-video-xcb
+
 Revision 1.53  2008/02/09 14:51:20  qboosh
 - removed obsolete desktop patch
 - GPL v2+


 CVS-web:

http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/SPECS/kaffeine.spec?r1=1.53r2=1.54f=u

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


SPECS: xfsprogs.spec - updated Source0 URL

2008-06-18 Thread qboosh
Author: qboosh   Date: Wed Jun 18 15:09:42 2008 GMT
Module: SPECS Tag: HEAD
 Log message:
- updated Source0 URL

 Files affected:
SPECS:
   xfsprogs.spec (1.107 - 1.108) 

 Diffs:


Index: SPECS/xfsprogs.spec
diff -u SPECS/xfsprogs.spec:1.107 SPECS/xfsprogs.spec:1.108
--- SPECS/xfsprogs.spec:1.107   Wed Apr 23 08:52:47 2008
+++ SPECS/xfsprogs.spec Wed Jun 18 17:09:37 2008
@@ -6,7 +6,7 @@
 Release:   1
 License:   LGPL v2.1 (libhandle), GPL v2 (the rest)
 Group: Applications/System
-Source0:   
ftp://linux-xfs.sgi.com/projects/xfs/download/cmd_tars/%{name}_%{version}-1.tar.gz
+Source0:   
ftp://linux-xfs.sgi.com/projects/xfs/cmd_tars/%{name}_%{version}-1.tar.gz
 # Source0-md5: 92e1dec6783e63e164f053a510ad94c2
 Patch0:%{name}-miscfix-v2.patch
 Patch1:%{name}-install-sh.patch
@@ -202,6 +202,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.108  2008/06/18 15:09:37  qboosh
+- updated Source0 URL
+
 Revision 1.107  2008/04/23 06:52:47  arekm
 - up to 2.9.8
 


 CVS-web:

http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/SPECS/xfsprogs.spec?r1=1.107r2=1.108f=u

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


SPECS: acl.spec, attr.spec, dmapi.spec, xfsdump.spec - updated Source0 URL

2008-06-18 Thread qboosh
Author: qboosh   Date: Wed Jun 18 15:11:56 2008 GMT
Module: SPECS Tag: HEAD
 Log message:
- updated Source0 URL

 Files affected:
SPECS:
   acl.spec (1.86 - 1.87) , attr.spec (1.86 - 1.87) , dmapi.spec (1.40 - 
1.41) , xfsdump.spec (1.49 - 1.50) 

 Diffs:


Index: SPECS/acl.spec
diff -u SPECS/acl.spec:1.86 SPECS/acl.spec:1.87
--- SPECS/acl.spec:1.86 Sat Feb 16 00:27:26 2008
+++ SPECS/acl.spec  Wed Jun 18 17:11:50 2008
@@ -6,7 +6,7 @@
 Release:   1
 License:   LGPL v2+ (library), GPL v2 (utilities)
 Group: Applications/System
-Source0:   
ftp://linux-xfs.sgi.com/projects/xfs/download/cmd_tars/%{name}_%{version}-1.tar.gz
+Source0:   
ftp://linux-xfs.sgi.com/projects/xfs/cmd_tars/%{name}_%{version}-1.tar.gz
 # Source0-md5: a11e4571a54a0b1ae83010d1e68a64c2
 Patch0:%{name}-miscfix.patch
 Patch1:%{name}-lt.patch
@@ -161,7 +161,10 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
-Revision 1.86  2008/02/15 23:27:26  qboosh
+Revision 1.87  2008/06/18 15:11:50  qboosh
+- updated Source0 URL
+
+Revision 1.86  2008-02-15 23:27:26  qboosh
 - updated to 2.2.47
 - added pl.po-update patch
 


Index: SPECS/attr.spec
diff -u SPECS/attr.spec:1.86 SPECS/attr.spec:1.87
--- SPECS/attr.spec:1.86Fri Feb 15 23:59:04 2008
+++ SPECS/attr.spec Wed Jun 18 17:11:50 2008
@@ -6,7 +6,7 @@
 Release:   1
 License:   LGPL v2+ (library), GPL v2+ (utilities)
 Group: Applications/System
-Source0:   
ftp://linux-xfs.sgi.com/projects/xfs/download/cmd_tars/%{name}_%{version}-1.tar.gz
+Source0:   
ftp://linux-xfs.sgi.com/projects/xfs/cmd_tars/%{name}_%{version}-1.tar.gz
 # Source0-md5: 867eb6e8863e39900382d77e2b538696
 Patch0:%{name}-miscfix.patch
 Patch1:%{name}-lt.patch
@@ -143,6 +143,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.87  2008/06/18 15:11:50  qboosh
+- updated Source0 URL
+
 Revision 1.86  2008/02/15 22:59:04  glen
 - let rpmbuild macros fix man links
 


Index: SPECS/dmapi.spec
diff -u SPECS/dmapi.spec:1.40 SPECS/dmapi.spec:1.41
--- SPECS/dmapi.spec:1.40   Tue May 15 00:20:05 2007
+++ SPECS/dmapi.specWed Jun 18 17:11:50 2008
@@ -6,7 +6,7 @@
 Release:   1
 License:   LGPL/GPL
 Group: Libraries
-Source0:   
ftp://linux-xfs.sgi.com/projects/xfs/download/cmd_tars/%{name}_%{version}-1.tar.gz
+Source0:   
ftp://linux-xfs.sgi.com/projects/xfs/cmd_tars/%{name}_%{version}-1.tar.gz
 # Source0-md5: 29c5ba7d9a3524fd247be00c3b43e8d9
 Patch0:%{name}-miscfix.patch
 URL:   http://oss.sgi.com/projects/xfs/
@@ -126,6 +126,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.41  2008/06/18 15:11:50  qboosh
+- updated Source0 URL
+
 Revision 1.40  2007/05/14 22:20:05  qboosh
 - updated to 2.2.8
 


Index: SPECS/xfsdump.spec
diff -u SPECS/xfsdump.spec:1.49 SPECS/xfsdump.spec:1.50
--- SPECS/xfsdump.spec:1.49 Sat Feb 16 00:49:39 2008
+++ SPECS/xfsdump.spec  Wed Jun 18 17:11:50 2008
@@ -6,7 +6,7 @@
 Release:   1
 License:   GPL
 Group: Applications/Archiving
-Source0:   
ftp://oss.sgi.com/projects/xfs/download/cmd_tars/%{name}_%{version}-1.tar.gz
+Source0:   
ftp://oss.sgi.com/projects/xfs/cmd_tars/%{name}_%{version}-1.tar.gz
 # Source0-md5: 46412a9dabb8c9f84cd1d9ff1cda64a6
 Patch0:%{name}-miscfix.patch
 Patch1:%{name}-libtool.patch
@@ -113,7 +113,10 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
-Revision 1.49  2008/02/15 23:49:39  qboosh
+Revision 1.50  2008/06/18 15:11:50  qboosh
+- updated Source0 URL
+
+Revision 1.49  2008-02-15 23:49:39  qboosh
 - updated to 2.2.48
 - xfsrq(8) was long time obsolete
 


 CVS-web:

http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/SPECS/acl.spec?r1=1.86r2=1.87f=u

http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/SPECS/attr.spec?r1=1.86r2=1.87f=u

http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/SPECS/dmapi.spec?r1=1.40r2=1.41f=u

http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/SPECS/xfsdump.spec?r1=1.49r2=1.50f=u

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


SVN: admin/dns/named.conf

2008-06-18 Thread adamg
Author: adamg
Date: Wed Jun 18 17:12:29 2008
New Revision: 9810

Modified:
   admin/dns/named.conf
Log:
- provide root.hint

Modified: admin/dns/named.conf
==
--- admin/dns/named.conf(original)
+++ admin/dns/named.confWed Jun 18 17:12:29 2008
@@ -27,6 +27,11 @@
 category notify { xfer-log; };
 };
 
+zone . IN {
+type hint;
+file root.hint;
+};
+
 include /etc/acl_tpnet.conf;
 include /etc/acl_vnet.conf;
 include /etc/named.conf.tpnet;
___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


SPECS: dmapi.spec, xfsdump.spec - GPL v2

2008-06-18 Thread qboosh
Author: qboosh   Date: Wed Jun 18 15:17:18 2008 GMT
Module: SPECS Tag: HEAD
 Log message:
- GPL v2

 Files affected:
SPECS:
   dmapi.spec (1.41 - 1.42) , xfsdump.spec (1.50 - 1.51) 

 Diffs:


Index: SPECS/dmapi.spec
diff -u SPECS/dmapi.spec:1.41 SPECS/dmapi.spec:1.42
--- SPECS/dmapi.spec:1.41   Wed Jun 18 17:11:50 2008
+++ SPECS/dmapi.specWed Jun 18 17:17:13 2008
@@ -4,7 +4,8 @@
 Name:  dmapi
 Version:   2.2.8
 Release:   1
-License:   LGPL/GPL
+# doc/COPYING mentions LGPL for files in dmapi, but all sources are 
explicitly marked GPL
+License:   GPL v2
 Group: Libraries
 Source0:   
ftp://linux-xfs.sgi.com/projects/xfs/cmd_tars/%{name}_%{version}-1.tar.gz
 # Source0-md5: 29c5ba7d9a3524fd247be00c3b43e8d9
@@ -126,6 +127,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.42  2008/06/18 15:17:13  qboosh
+- GPL v2
+
 Revision 1.41  2008/06/18 15:11:50  qboosh
 - updated Source0 URL
 


Index: SPECS/xfsdump.spec
diff -u SPECS/xfsdump.spec:1.50 SPECS/xfsdump.spec:1.51
--- SPECS/xfsdump.spec:1.50 Wed Jun 18 17:11:50 2008
+++ SPECS/xfsdump.spec  Wed Jun 18 17:17:13 2008
@@ -4,7 +4,7 @@
 Name:  xfsdump
 Version:   2.2.48
 Release:   1
-License:   GPL
+License:   GPL v2
 Group: Applications/Archiving
 Source0:   
ftp://oss.sgi.com/projects/xfs/cmd_tars/%{name}_%{version}-1.tar.gz
 # Source0-md5: 46412a9dabb8c9f84cd1d9ff1cda64a6
@@ -113,6 +113,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.51  2008/06/18 15:17:13  qboosh
+- GPL v2
+
 Revision 1.50  2008/06/18 15:11:50  qboosh
 - updated Source0 URL
 


 CVS-web:

http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/SPECS/dmapi.spec?r1=1.41r2=1.42f=u

http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/SPECS/xfsdump.spec?r1=1.50r2=1.51f=u

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


SPECS (LINUX_2_6_16): kernel.spec - Provides: kernel(xen0)

2008-06-18 Thread adamg
Author: adamgDate: Wed Jun 18 15:33:19 2008 GMT
Module: SPECS Tag: LINUX_2_6_16
 Log message:
- Provides: kernel(xen0)

 Files affected:
SPECS:
   kernel.spec (1.441.2.1558.2.155 - 1.441.2.1558.2.156) 

 Diffs:


Index: SPECS/kernel.spec
diff -u SPECS/kernel.spec:1.441.2.1558.2.155 
SPECS/kernel.spec:1.441.2.1558.2.156
--- SPECS/kernel.spec:1.441.2.1558.2.155Sat May 24 14:04:55 2008
+++ SPECS/kernel.spec   Wed Jun 18 17:33:13 2008
@@ -367,6 +367,7 @@
 Provides:  %{name}(vermagic) = %{kernel_release}
 Provides:  %{name}-up = %{epoch}:%{version}-%{release}
 %if %{with xen0}
+Provides:  kernel(xen0) = %{xen_hv_abi}
 Requires:  xen-hypervisor-abi = %{xen_hv_abi}
 %endif
 Obsoletes: kernel-misc-fuse
@@ -586,6 +587,7 @@
 Provides:  %{name}(netfilter) = %{netfilter_snap}
 Provides:  %{name}-smp(vermagic) = %{kernel_release}
 %if %{with xen0}
+Provides:  kernel(xen0) = %{xen_hv_abi}
 Requires:  xen-hypervisor-abi = %{xen_hv_abi}
 %endif
 Obsoletes: kernel-smp-misc-fuse
@@ -1888,7 +1890,10 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
-Revision 1.441.2.1558.2.155  2008/05/24 12:04:55  glen
+Revision 1.441.2.1558.2.156  2008/06/18 15:33:13  adamg
+- Provides: kernel(xen0)
+
+Revision 1.441.2.1558.2.155  2008-05-24 12:04:55  glen
 - add pae to kernel_release (except xen* to avoid xen0pae in name)
 - update xen related initrd generation, add xen-hypervisor-abi virtual; rel 15
 


 CVS-web:

http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/SPECS/kernel.spec?r1=1.441.2.1558.2.155r2=1.441.2.1558.2.156f=u

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


DISTFILES: epiphany-20080618.tar.bz2

2008-06-18 Thread patrys

Files fetched: 1

STORED: no-url://epiphany-20080618.tar.bz2
f438c0677c7dd92c42d18d32c76fa617  epiphany-20080618.tar.bz2
Size: 4460672 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


SPECS (WEBKIT): epiphany.spec - current snap - pygtk defs unpackaged for no...

2008-06-18 Thread patrys
Author: patrys   Date: Wed Jun 18 15:47:26 2008 GMT
Module: SPECS Tag: WEBKIT
 Log message:
- current snap
- pygtk defs unpackaged for now (epiphany does not seem to like libpython)

 Files affected:
SPECS:
   epiphany.spec (1.182.2.2 - 1.182.2.3) 

 Diffs:


Index: SPECS/epiphany.spec
diff -u SPECS/epiphany.spec:1.182.2.2 SPECS/epiphany.spec:1.182.2.3
--- SPECS/epiphany.spec:1.182.2.2   Thu Apr 24 19:12:05 2008
+++ SPECS/epiphany.spec Wed Jun 18 17:47:21 2008
@@ -1,7 +1,7 @@
 # $Revision$, $Date$
 #
 %definebasever 2.22
-%definesnap20080424
+%definesnap20080618
 Summary:   Epiphany - WebKit-based GNOME web browser
 Summary(es.UTF-8): Epiphany - navigador Web de GNOME basado en WebKit
 Summary(pl.UTF-8): Epiphany - przeglądarka WWW dla GNOME
@@ -12,7 +12,7 @@
 Group: X11/Applications/Networking
 # Source0: 
http://ftp.gnome.org/pub/GNOME/sources/epiphany/2.24/%{name}-%{version}.tar.bz2
 Source0:   %{name}-%{snap}.tar.bz2
-# Source0-md5: 9895cf3be1387a0be83b6f43e83a99b1
+# Source0-md5: f438c0677c7dd92c42d18d32c76fa617
 Patch0:%{name}-pld-homepage.patch
 Patch1:%{name}-configure.patch
 URL:   http://www.gnome.org/projects/epiphany/
@@ -122,7 +122,7 @@
--disable-schemas-install \
--enable-dbus \
--enable-network-manager \
-   --enable-python\
+   --enable-python=2.5 \
--enable-spell-checker \
--with-html-dir=%{_gtkdocdir}
 %{__make}
@@ -179,7 +179,7 @@
 %{_aclocaldir}/*
 %{_includedir}/epiphany
 %{_pkgconfigdir}/*.pc
-%{_datadir}/pygtk/*/defs/epiphany.defs
+#%{_datadir}/pygtk/*/defs/epiphany.defs
 
 %files apidocs
 %defattr(644,root,root,755)
@@ -191,7 +191,11 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
-Revision 1.182.2.2  2008/04/24 17:12:05  arekm
+Revision 1.182.2.3  2008/06/18 15:47:21  patrys
+- current snap
+- pygtk defs unpackaged for now (epiphany does not seem to like libpython)
+
+Revision 1.182.2.2  2008-04-24 17:12:05  arekm
 - BR: avahi-gobject-devel; doc fix
 
 Revision 1.182.2.1  2008-04-24 17:07:14  arekm


 CVS-web:

http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/SPECS/epiphany.spec?r1=1.182.2.2r2=1.182.2.3f=u

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


SPECS: transmission.spec - removed bogus readline BR - added more real ones...

2008-06-18 Thread qboosh
Author: qboosh   Date: Wed Jun 18 15:47:29 2008 GMT
Module: SPECS Tag: HEAD
 Log message:
- removed bogus readline BR
- added more real ones (libnotify-devel, dbus-glib-devel);
  disabling autoreqdep made it harder to notice new dependencies

 Files affected:
SPECS:
   transmission.spec (1.28 - 1.29) 

 Diffs:


Index: SPECS/transmission.spec
diff -u SPECS/transmission.spec:1.28 SPECS/transmission.spec:1.29
--- SPECS/transmission.spec:1.28Wed Jun 18 12:19:41 2008
+++ SPECS/transmission.spec Wed Jun 18 17:47:23 2008
@@ -1,4 +1,5 @@
 # $Revision$, $Date$
+# TODO: use system libevent
 Summary:   A versatile and multi-platform BitTorrent client
 Summary(pl.UTF-8): Wszechstronny i wieloplatformowy klient BitTorrenta
 Name:  transmission
@@ -9,13 +10,15 @@
 Source0:   
http://download.m0k.org/transmission/files/transmission-%{version}.tar.bz2
 # Source0-md5: aa0a2db19b0f3dbfd75a0fb354d6c47d
 URL:   http://transmission.m0k.org/
-BuildRequires: curl-devel
+BuildRequires: curl-devel = 7.15.0
+BuildRequires: dbus-glib-devel = 0.70
+BuildRequires: glib2-devel = 1:2.16.0
 BuildRequires: gtk+2-devel = 2:2.6.0
 BuildRequires: intltool = 0.35.5
-BuildRequires: libevent-devel
-BuildRequires: openssl-devel
+#BuildRequires:libevent-devel
+BuildRequires: libnotify-devel = 0.4.4
+BuildRequires: openssl-devel = 0.9.4
 BuildRequires: pkgconfig
-BuildRequires: readline-devel
 BuildRequires: rpmbuild(macros) = 1.357
 Requires(post,postun): hicolor-icon-theme
 Requires(post,postun): gtk+2
@@ -51,8 +54,6 @@
 %{__make} install \
DESTDIR=$RPM_BUILD_ROOT
 
-#mv $RPM_BUILD_ROOT/usr{,/share}/man
-
 %find_lang %{name} --all-name --with-gnome
 
 %clean
@@ -87,6 +88,11 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.29  2008/06/18 15:47:23  qboosh
+- removed bogus readline BR
+- added more real ones (libnotify-devel, dbus-glib-devel);
+  disabling autoreqdep made it harder to notice new dependencies
+
 Revision 1.28  2008/06/18 10:19:41  gzohop
 - +BR curl-devel
 - +BR readline-devel


 CVS-web:

http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/SPECS/transmission.spec?r1=1.28r2=1.29f=u

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


SOURCES: xfsprogs-pl.po-update.patch - updated for 2.9.8

2008-06-18 Thread qboosh
Author: qboosh   Date: Wed Jun 18 15:52:00 2008 GMT
Module: SOURCES   Tag: HEAD
 Log message:
- updated for 2.9.8

 Files affected:
SOURCES:
   xfsprogs-pl.po-update.patch (1.10 - 1.11) 

 Diffs:


Index: SOURCES/xfsprogs-pl.po-update.patch
diff -u SOURCES/xfsprogs-pl.po-update.patch:1.10 
SOURCES/xfsprogs-pl.po-update.patch:1.11
--- SOURCES/xfsprogs-pl.po-update.patch:1.10Fri Feb 15 21:34:12 2008
+++ SOURCES/xfsprogs-pl.po-update.patch Wed Jun 18 17:51:54 2008
@@ -1,5 +1,5 @@
 xfsprogs-2.9.6/po/pl.po.orig   2007-09-11 04:01:20.0 +0200
-+++ xfsprogs-2.9.6/po/pl.po2008-02-15 21:09:36.279599599 +0100
+--- xfsprogs-2.9.8/po/pl.po.orig   2007-01-23 06:57:08.0 +0100
 xfsprogs-2.9.8/po/pl.po2008-06-18 17:28:15.698452210 +0200
 @@ -1,180 +1,180 @@
  # Polish translation for xfsprogs.
  # This file is distributed under the same license as the xfsprogs package.
@@ -9,12 +9,12 @@
  msgid 
  msgstr 
 -Project-Id-Version: xfsprogs 2.8.11\n
-+Project-Id-Version: xfsprogs 2.9.6\n
++Project-Id-Version: xfsprogs 2.9.8\n
  Report-Msgid-Bugs-To: \n
 -POT-Creation-Date: 2006-08-23 19:22+0200\n
 -PO-Revision-Date: 2006-08-23 19:24+0200\n
-+POT-Creation-Date: 2008-02-07 14:46+1100\n
-+PO-Revision-Date: 2008-02-15 21:01+0100\n
++POT-Creation-Date: 2008-04-23 15:54+1000\n
++PO-Revision-Date: 2008-06-18 17:11+0200\n
  Last-Translator: Jakub Bogusz [EMAIL PROTECTED]\n
  Language-Team: Polish [EMAIL PROTECTED]\n
  MIME-Version: 1.0\n
@@ -147,7 +147,7 @@
 -#: ../copy/xfs_copy.c:537 ../growfs/xfs_growfs.c:179 ../io/init.c:177
 -#: ../mkfs/xfs_mkfs.c:1253 ../quota/init.c:131 ../repair/xfs_repair.c:261
 +#: ../copy/xfs_copy.c:543 ../growfs/xfs_growfs.c:179 ../io/init.c:180
-+#: ../mkfs/xfs_mkfs.c:1363 ../quota/init.c:131 ../repair/xfs_repair.c:261
++#: ../mkfs/xfs_mkfs.c:1354 ../quota/init.c:131 ../repair/xfs_repair.c:313
  #: ../rtcp/xfs_rtcp.c:57
  #, c-format
  msgid %s version %s\n
@@ -399,7 +399,7 @@
  msgstr zewn�trzny
  
 -#: ../growfs/xfs_growfs.c:85 ../mkfs/xfs_mkfs.c:1559
-+#: ../growfs/xfs_growfs.c:85 ../mkfs/xfs_mkfs.c:1676
++#: ../growfs/xfs_growfs.c:85 ../mkfs/xfs_mkfs.c:1672
  msgid none
  msgstr brak
  
@@ -1085,16 +1085,32 @@
  #, c-format
  msgid wrote %lld/%lld bytes at offset %lld\n
  msgstr zapisano %lld/%lld bajt�w od offsetu %lld\n
-@@ -2424,31 +2437,31 @@
- msgid Error getting MD array info from %s\n
- msgstr B��d podczas pobierania informacji o macierzy MD z %s\n
+@@ -2419,36 +2432,46 @@
+ msgid Failed forking lvdisplay process\n
+ msgstr Nie uda�o si� odga��zi� procesu lvdisplay\n
+ 
+-#: ../libdisk/md.c:52
++#: ../libdisk/md.c:61
+ #, c-format
+-msgid Error getting MD array info from %s\n
+-msgstr B��d podczas pobierania informacji o macierzy MD z %s\n
++msgid Error getting MD array device from %s\n
++msgstr B��d podczas pobierania urz�dzenia macierzy MD z %s\n
  
 -#: ../libxcmd/command.c:82
--#, c-format
++#: ../libdisk/md.c:68
+ #, c-format
 -msgid command \%s\ not found\n
 -msgstr nie znaleziono polecenia \%s\\n
--
++msgid Couldn't malloc device string\n
++msgstr Nie mo�na przydzieli� �a�cucha nazwy urz�dzenia\n
+ 
 -#: ../libxcmd/command.c:90
++#: ../libdisk/md.c:84
++#, c-format
++msgid Error getting MD array info from %s\n
++msgstr B��d podczas pobierania informacji o macierzy MD z %s\n
++
 +#: ../libxcmd/command.c:85
  #, c-format
  msgid bad argument count %d to %s, expected at least %d arguments\n
@@ -1126,7 +1142,7 @@
  #: ../libxcmd/help.c:33
  #, c-format
  msgid 
-@@ -2521,64 +2534,70 @@
+@@ -2521,64 +2544,70 @@
  msgid exit the program
  msgstr wyj�cie z programu
  
@@ -1210,7 +1226,7 @@
  #, c-format
  msgid %s: %s: device %lld is not open\n
  msgstr %s: %s: urz�dzenie %lld nie jest otwarte\n
-@@ -2588,167 +2607,172 @@
+@@ -2588,167 +2617,172 @@
  msgid %s: cannot stat %s: %s\n
  msgstr %s: nie mo�na wykona� stat na %s: %s\n
  
@@ -1418,7 +1434,7 @@
  #, c-format
  msgid %s: realloc failed (%d bytes): %s\n
  msgstr %s: realloc nie powiod�o si� (%d bajt�w): %s\n
-@@ -2768,7 +2792,7 @@
+@@ -2768,7 +2802,7 @@
  msgid %s: warning - iflush_int failed (%d)\n
  msgstr %s: uwaga - iflush_int nie powiod�o si� (%d)\n
  
@@ -1427,433 +1443,433 @@
  #, c-format
  msgid %s: unrecognised log item type\n
  msgstr %s: nierozpoznany typ elementu loga\n
-@@ -2996,239 +3020,249 @@
+@@ -2996,239 +3030,249 @@
  msgid log size %lld bytes too large, maximum size is %d bytes\n
  msgstr rozmiar loga %lld bajt�w jest zbyt du�y, maksymalny rozmiar to %d 
bajt�w\n
  
 -#: ../mkfs/xfs_mkfs.c:442
-+#: ../mkfs/xfs_mkfs.c:486
++#: ../mkfs/xfs_mkfs.c:476
  #, c-format
  msgid agsize (%lldb) too small, need at least %lld blocks\n
  msgstr agsize (%lldb) zbyt ma�e, potrzeba co najmniej %lld blok�w\n
  
 -#: ../mkfs/xfs_mkfs.c:450
-+#: ../mkfs/xfs_mkfs.c:494
++#: ../mkfs/xfs_mkfs.c:484
  #, c-format
  msgid agsize (%lldb) too big, maximum is %lld blocks\n
  msgstr agsize 

SPECS: xfsprogs.spec - updated pl.po-update patch

2008-06-18 Thread qboosh
Author: qboosh   Date: Wed Jun 18 15:53:19 2008 GMT
Module: SPECS Tag: HEAD
 Log message:
- updated pl.po-update patch

 Files affected:
SPECS:
   xfsprogs.spec (1.108 - 1.109) 

 Diffs:


Index: SPECS/xfsprogs.spec
diff -u SPECS/xfsprogs.spec:1.108 SPECS/xfsprogs.spec:1.109
--- SPECS/xfsprogs.spec:1.108   Wed Jun 18 17:09:37 2008
+++ SPECS/xfsprogs.spec Wed Jun 18 17:53:14 2008
@@ -202,6 +202,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.109  2008/06/18 15:53:14  qboosh
+- updated pl.po-update patch
+
 Revision 1.108  2008/06/18 15:09:37  qboosh
 - updated Source0 URL
 


 CVS-web:

http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/SPECS/xfsprogs.spec?r1=1.108r2=1.109f=u

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


SPECS: gnome-build.spec - BR: ac,lt,sed 4

2008-06-18 Thread qboosh
Author: qboosh   Date: Wed Jun 18 15:54:29 2008 GMT
Module: SPECS Tag: HEAD
 Log message:
- BR: ac,lt,sed 4

 Files affected:
SPECS:
   gnome-build.spec (1.20 - 1.21) 

 Diffs:


Index: SPECS/gnome-build.spec
diff -u SPECS/gnome-build.spec:1.20 SPECS/gnome-build.spec:1.21
--- SPECS/gnome-build.spec:1.20 Wed Jun 18 14:56:19 2008
+++ SPECS/gnome-build.spec  Wed Jun 18 17:54:23 2008
@@ -8,16 +8,18 @@
 Group: Development/Tools
 Source0:   
http://ftp.gnome.org/pub/GNOME/sources/gnome-build/0.3/%{name}-%{version}.tar.bz2
 # Source0-md5: f998c1e5676c3602937413f4f20f1572
+BuildRequires: autoconf
 BuildRequires: automake
 BuildRequires: gdl-devel = 0.7.5
 BuildRequires: gnome-vfs2-devel = 2.18.1
 BuildRequires: libbonoboui-devel = 2.18.0
 BuildRequires: libglade2-devel = 1:2.6.0
 BuildRequires: libgnomeui-devel = 2.18.1
+BuildRequires: libtool
 BuildRequires: libxml2-devel = 1:2.6.28
 BuildRequires: perl-base
 BuildRequires: perl-Locale-gettext
-BuildRequires: sed
+BuildRequires: sed = 4.0
 # [EMAIL PROTECTED] vs. [EMAIL PROTECTED]
 Conflicts: glibc-misc  6:2.7
 BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
@@ -99,6 +101,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.21  2008/06/18 15:54:23  qboosh
+- BR: ac,lt,sed 4
+
 Revision 1.20  2008/06/18 12:56:19  patrys
 - 0.3.0
 - sed workaround for outdated GNU_REGEX support


 CVS-web:

http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/SPECS/gnome-build.spec?r1=1.20r2=1.21f=u

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


SPECS (DEVEL): gnome-power-manager.spec - 2.23.1

2008-06-18 Thread patrys
Author: patrys   Date: Wed Jun 18 15:57:26 2008 GMT
Module: SPECS Tag: DEVEL
 Log message:
- 2.23.1

 Files affected:
SPECS:
   gnome-power-manager.spec (1.57 - 1.57.2.1) 

 Diffs:


Index: SPECS/gnome-power-manager.spec
diff -u SPECS/gnome-power-manager.spec:1.57 
SPECS/gnome-power-manager.spec:1.57.2.1
--- SPECS/gnome-power-manager.spec:1.57 Sat Mar 29 22:50:15 2008
+++ SPECS/gnome-power-manager.spec  Wed Jun 18 17:57:20 2008
@@ -2,12 +2,12 @@
 Summary:   GNOME Power Manager
 Summary(pl.UTF-8): Zarządca energii dla GNOME
 Name:  gnome-power-manager
-Version:   2.22.1
+Version:   2.23.1
 Release:   1
 License:   GPL v2+
 Group: X11/Applications
-Source0:   
http://ftp.gnome.org/pub/GNOME/sources/gnome-power-manager/2.22/%{name}-%{version}.tar.bz2
-# Source0-md5: bfb10f96771dd161ff16171f78a7dc21
+Source0:   
http://ftp.gnome.org/pub/GNOME/sources/gnome-power-manager/2.23/%{name}-%{version}.tar.bz2
+# Source0-md5: c0cf8a2b8b374bc51622cb1dbfe839da
 Patch0:%{name}-desktop.patch
 Patch1:%{name}-popt.patch
 URL:   http://www.gnome.org/projects/gnome-power-manager/
@@ -164,7 +164,10 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
-Revision 1.57  2008/03/29 21:50:15  megabajt
+Revision 1.57.2.1  2008/06/18 15:57:20  patrys
+- 2.23.1
+
+Revision 1.57  2008-03-29 21:50:15  megabajt
 - updated to 2.22.1
 
 Revision 1.56  2008-03-12 13:45:36  patrys


 CVS-web:

http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/SPECS/gnome-power-manager.spec?r1=1.57r2=1.57.2.1f=u

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


DISTFILES: gnome-power-manager-2.23.1.tar.bz2

2008-06-18 Thread patrys

Files fetched: 1

STORED: 
http://ftp.gnome.org/pub/GNOME/sources/gnome-power-manager/2.23/gnome-power-manager-2.23.1.tar.bz2
c0cf8a2b8b374bc51622cb1dbfe839da  gnome-power-manager-2.23.1.tar.bz2
Size: 2989237 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: luma-2.4.tar.bz2

2008-06-18 Thread wolvverine

Files fetched: 1

STORED: http://dl.sourceforge.net/luma/luma-2.4.tar.bz2
b15b7c4dccae6ddcedc9195dd6160944  luma-2.4.tar.bz2
Size: 642406 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


SPECS: luma.spec - up to 2.4, STBR

2008-06-18 Thread wolvverine
Author: wolvverine   Date: Wed Jun 18 16:02:44 2008 GMT
Module: SPECS Tag: HEAD
 Log message:
- up to 2.4, STBR

 Files affected:
SPECS:
   luma.spec (1.16 - 1.17) 

 Diffs:


Index: SPECS/luma.spec
diff -u SPECS/luma.spec:1.16 SPECS/luma.spec:1.17
--- SPECS/luma.spec:1.16Tue Feb 13 07:46:53 2007
+++ SPECS/luma.spec Wed Jun 18 18:02:39 2008
@@ -2,12 +2,12 @@
 Summary:   LDAP browser, utility and more
 Summary(pl.UTF-8): Przeglądarka, narzędzie i jeszcze więcej do LDAP
 Name:  luma
-Version:   2.3
+Version:   2.4
 Release:   1
 License:   GPL v2
 Group: Applications/Networking
 Source0:   http://dl.sourceforge.net/luma/%{name}-%{version}.tar.bz2
-# Source0-md5: c1f3a8033a047a7046848833445ed496
+# Source0-md5: b15b7c4dccae6ddcedc9195dd6160944
 Source1:   %{name}.desktop
 Patch0:%{name}-dont_check_req_while_build.patch
 Patch1:%{name}-python.patch
@@ -43,7 +43,7 @@
 rm -f $RPM_BUILD_ROOT%{_bindir}/luma
 echo '#!%{__python} %{_prefix}/lib/%{name}/luma.py'  
$RPM_BUILD_ROOT%{_bindir}/luma
 install %{SOURCE1} $RPM_BUILD_ROOT%{_desktopdir}
-install $RPM_BUILD_ROOT%{_datadir}/%{name}/icons/luma-48.png 
$RPM_BUILD_ROOT%{_pixmapsdir}/luma.png
+install $RPM_BUILD_ROOT%{_datadir}/%{name}/icons/luma-32.png 
$RPM_BUILD_ROOT%{_pixmapsdir}/luma.png
 
 %py_ocomp $RPM_BUILD_ROOT%{_prefix}/lib/%{name}
 find $RPM_BUILD_ROOT -name *.py -not -name luma.py -exec rm -f '{}' ';'
@@ -67,6 +67,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.17  2008/06/18 16:02:39  wolvverine
+- up to 2.4, STBR
+
 Revision 1.16  2007/02/13 06:46:53  glen
 - tabs in preamble
 


 CVS-web:

http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/SPECS/luma.spec?r1=1.16r2=1.17f=u

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


SPECS: python-gstreamer.spec - 0.10.12

2008-06-18 Thread patrys
Author: patrys   Date: Wed Jun 18 16:13:19 2008 GMT
Module: SPECS Tag: HEAD
 Log message:
- 0.10.12

 Files affected:
SPECS:
   python-gstreamer.spec (1.27 - 1.28) 

 Diffs:


Index: SPECS/python-gstreamer.spec
diff -u SPECS/python-gstreamer.spec:1.27 SPECS/python-gstreamer.spec:1.28
--- SPECS/python-gstreamer.spec:1.27Mon Apr  7 19:57:13 2008
+++ SPECS/python-gstreamer.spec Wed Jun 18 18:13:14 2008
@@ -3,12 +3,12 @@
 Summary:   GStreamer Python bindings
 Summary(pl.UTF-8): Wiązania języka Python do GStreamera
 Name:  python-gstreamer
-Version:   0.10.11
+Version:   0.10.12
 Release:   1
 License:   LGPL v2+
 Group: Libraries/Python
 Source0:   
http://gstreamer.freedesktop.org/src/gst-python/%{pname}-%{version}.tar.bz2
-# Source0-md5: 357105974cc0fcdc6eabba446452168a
+# Source0-md5: e5d39eed5062ab1521abc61a6863f7b3
 URL:   http://gstreamer.freedesktop.org/modules/gst-python.html
 BuildRequires: autoconf = 2.57
 BuildRequires: automake
@@ -104,7 +104,10 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
-Revision 1.27  2008/04/07 17:57:13  deejay1
+Revision 1.28  2008/06/18 16:13:14  patrys
+- 0.10.12
+
+Revision 1.27  2008-04-07 17:57:13  deejay1
 - updated to 0.10.11
 
 Revision 1.26  2008-02-09 15:04:09  qboosh


 CVS-web:

http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/SPECS/python-gstreamer.spec?r1=1.27r2=1.28f=u

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


DISTFILES: gst-python-0.10.12.tar.bz2

2008-06-18 Thread patrys

Files fetched: 1

STORED: 
http://gstreamer.freedesktop.org/src/gst-python/gst-python-0.10.12.tar.bz2
e5d39eed5062ab1521abc61a6863f7b3  gst-python-0.10.12.tar.bz2
Size: 472628 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


SPECS: gnome-build.spec - more verbose files, killed modules .la

2008-06-18 Thread qboosh
Author: qboosh   Date: Wed Jun 18 16:15:38 2008 GMT
Module: SPECS Tag: HEAD
 Log message:
- more verbose files, killed modules .la

 Files affected:
SPECS:
   gnome-build.spec (1.21 - 1.22) 

 Diffs:


Index: SPECS/gnome-build.spec
diff -u SPECS/gnome-build.spec:1.21 SPECS/gnome-build.spec:1.22
--- SPECS/gnome-build.spec:1.21 Wed Jun 18 17:54:23 2008
+++ SPECS/gnome-build.spec  Wed Jun 18 18:15:33 2008
@@ -4,21 +4,23 @@
 Name:  gnome-build
 Version:   0.3.0
 Release:   1
-License:   GPL
+License:   GPL v2+
 Group: Development/Tools
 Source0:   
http://ftp.gnome.org/pub/GNOME/sources/gnome-build/0.3/%{name}-%{version}.tar.bz2
 # Source0-md5: f998c1e5676c3602937413f4f20f1572
-BuildRequires: autoconf
+BuildRequires: autoconf = 2.52
 BuildRequires: automake
 BuildRequires: gdl-devel = 0.7.5
 BuildRequires: gnome-vfs2-devel = 2.18.1
+BuildRequires: intltool = 0.35.0
 BuildRequires: libbonoboui-devel = 2.18.0
 BuildRequires: libglade2-devel = 1:2.6.0
 BuildRequires: libgnomeui-devel = 2.18.1
 BuildRequires: libtool
 BuildRequires: libxml2-devel = 1:2.6.28
-BuildRequires: perl-base
+BuildRequires: perl-base = 5.005
 BuildRequires: perl-Locale-gettext
+BuildRequires: pkgconfig
 BuildRequires: sed = 4.0
 # [EMAIL PROTECTED] vs. [EMAIL PROTECTED]
 Conflicts: glibc-misc  6:2.7
@@ -63,6 +65,8 @@
 %{__make} install \
DESTDIR=$RPM_BUILD_ROOT
 
+rm $RPM_BUILD_ROOT%{_libdir}/%{name}-1.0/backends/*.la
+
 [ -d $RPM_BUILD_ROOT%{_datadir}/locale/[EMAIL PROTECTED] ] || \
mv -f $RPM_BUILD_ROOT%{_datadir}/locale/[EMAIL PROTECTED],latin}
 %find_lang gbf-1
@@ -76,24 +80,29 @@
 %files -f gbf-1.lang
 %defattr(644,root,root,755)
 %doc AUTHORS ChangeLog README
-%attr(755,root,root) %{_bindir}/*
-%attr(755,root,root) %{_libdir}/lib*.so.*.*.*
-%attr(755,root,root) %ghost %{_libdir}/lib*.so.2
+%attr(755,root,root) %{_bindir}/gbf-am-parse
+%attr(755,root,root) %{_bindir}/gbf-mkfile-parse
+%attr(755,root,root) %{_libdir}/libgbf-1.so.*.*.*
+%attr(755,root,root) %ghost %{_libdir}/libgbf-1.so.2
+%attr(755,root,root) %{_libdir}/libgbf-widgets-1.so.*.*.*
+%attr(755,root,root) %ghost %{_libdir}/libgbf-widgets-1.so.2
 %dir %{_libdir}/%{name}-1.0
 %dir %{_libdir}/%{name}-1.0/backends
-%attr(755,root,root) %{_libdir}/%{name}-1.0/backends/lib*.so*
-%{_libdir}/%{name}-1.0/backends/lib*.la
+%attr(755,root,root) %{_libdir}/%{name}-1.0/backends/libgbf-am.so
+%attr(755,root,root) %{_libdir}/%{name}-1.0/backends/libgbf-mkfile.so
 %{_libdir}/%{name}-1.0/backends/gbf-am.server
 %{_libdir}/%{name}-1.0/backends/gbf-mkfile.server
 %{_datadir}/%{name}
-%{_pixmapsdir}/*
+%{_pixmapsdir}/gbf-*.png
 
 %files devel
 %defattr(644,root,root,755)
+%attr(755,root,root) %{_libdir}/libgbf-1.so
+%attr(755,root,root) %{_libdir}/libgbf-widgets-1.so
+%{_libdir}/libgbf-1.la
+%{_libdir}/libgbf-widgets-1.la
 %{_includedir}/%{name}-1.0
-%attr(755,root,root) %{_libdir}/lib*.so
-%{_libdir}/lib*.la
-%{_pkgconfigdir}/*
+%{_pkgconfigdir}/gnome-build-1.0.pc
 
 %define date   %(echo `LC_ALL=C date +%a %b %d %Y`)
 %changelog
@@ -101,6 +110,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.22  2008/06/18 16:15:33  qboosh
+- more verbose files, killed modules .la
+
 Revision 1.21  2008/06/18 15:54:23  qboosh
 - BR: ac,lt,sed 4
 


 CVS-web:

http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/SPECS/gnome-build.spec?r1=1.21r2=1.22f=u

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


DISTFILES: alltray-0.70.tar.gz

2008-06-18 Thread gzohop

Files fetched: 1

STORED: http://dl.sourceforge.net/alltray/alltray-0.70.tar.gz
675a0a60f22fae04da787095ef0bd7d9  alltray-0.70.tar.gz
Size: 387553 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


SPECS: alltray.spec - up to 0.70

2008-06-18 Thread gzohop
Author: gzohop   Date: Wed Jun 18 16:52:18 2008 GMT
Module: SPECS Tag: HEAD
 Log message:
- up to 0.70

 Files affected:
SPECS:
   alltray.spec (1.12 - 1.13) 

 Diffs:


Index: SPECS/alltray.spec
diff -u SPECS/alltray.spec:1.12 SPECS/alltray.spec:1.13
--- SPECS/alltray.spec:1.12 Mon Feb 12 22:23:46 2007
+++ SPECS/alltray.spec  Wed Jun 18 18:52:12 2008
@@ -2,12 +2,12 @@
 Summary:   AllTray - small program to dock application into the system tray
 Summary(pl.UTF-8): AllTray - mały program do dokowania aplikacji w tacce 
systemowej
 Name:  alltray
-Version:   0.66
+Version:   0.70
 Release:   1
 License:   GPL v2
 Group: X11/Applications
 Source0:   http://dl.sourceforge.net/alltray/%{name}-%{version}.tar.gz
-# Source0-md5: 78b43bd2e19258b0518af99e21123561
+# Source0-md5: 675a0a60f22fae04da787095ef0bd7d9
 #Patch0:   %{name}-notitlechange_nomenutitle.patch
 URL:   http://alltray.sourceforge.net/
 BuildRequires: GConf2-devel
@@ -34,9 +34,11 @@
 #%%patch0 -p1
 
 %build
+%{__libtoolize}
 %{__aclocal}
 %{__automake}
 %{__autoconf}
+
 %configure \
--disable-static
 
@@ -48,14 +50,14 @@
 
 rm -f $RPM_BUILD_ROOT%{_libdir}/lib*.la
 
-%clean
-rm -rf $RPM_BUILD_ROOT
+#%clean
+#rm -rf $RPM_BUILD_ROOT
 
 %files
 %defattr(644,root,root,755)
 %doc AUTHORS ChangeLog README
 %attr(755,root,root) %{_bindir}/*
-%attr(755,root,root) %{_libdir}/liballtray*.so.*.*
+%attr(755,root,root) %{_libdir}/liballtray*.so*
 %{_mandir}/man1/alltray.1*
 %{_desktopdir}/%{name}.desktop
 %{_pixmapsdir}/*.png
@@ -66,6 +68,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.13  2008/06/18 16:52:12  gzohop
+- up to 0.70
+
 Revision 1.12  2007/02/12 21:23:46  glen
 - tabs in preamble
 


 CVS-web:

http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/SPECS/alltray.spec?r1=1.12r2=1.13f=u

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


SVN: admin/dns/pld-linux.org.template

2008-06-18 Thread arekm
Author: arekm
Date: Wed Jun 18 19:11:14 2008
New Revision: 9811

Modified:
   admin/dns/pld-linux.org.template
Log:
- new oberon ip + new machine atlas

Modified: admin/dns/pld-linux.org.template
==
--- admin/dns/pld-linux.org.template(original)
+++ admin/dns/pld-linux.org.templateWed Jun 18 19:11:14 2008
@@ -1,7 +1,7 @@
 $TTL 30m
 $ORIGIN .
 pld-linux.org  IN SOA  ns1.pld-linux.org. hostmaster.pld-linux.org. (
-   2008061600 ; serial
+   2008061800 ; serial
1h ; refresh
30m; retry
7d ; expire
@@ -158,10 +158,12 @@
 ; arekm
 rhea   A   193.239.45.141
 ; arekm
-oberon A   193.239.45.143
+oberon A   195.246.126.67
 ; arekm
 phobos A   193.239.45.151
 ; arekm
+atlas  A   195.246.126.66
+; arekm
 carme-ac-i686  A   193.239.45.152
 carme-ac-i686  2001:6a0:13f:4::1
 ; arekm
___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


SPECS: alltray.spec - cleanup

2008-06-18 Thread qboosh
Author: qboosh   Date: Wed Jun 18 17:37:46 2008 GMT
Module: SPECS Tag: HEAD
 Log message:
- cleanup

 Files affected:
SPECS:
   alltray.spec (1.13 - 1.14) 

 Diffs:


Index: SPECS/alltray.spec
diff -u SPECS/alltray.spec:1.13 SPECS/alltray.spec:1.14
--- SPECS/alltray.spec:1.13 Wed Jun 18 18:52:12 2008
+++ SPECS/alltray.spec  Wed Jun 18 19:37:41 2008
@@ -4,11 +4,10 @@
 Name:  alltray
 Version:   0.70
 Release:   1
-License:   GPL v2
+License:   GPL v2+
 Group: X11/Applications
 Source0:   http://dl.sourceforge.net/alltray/%{name}-%{version}.tar.gz
 # Source0-md5: 675a0a60f22fae04da787095ef0bd7d9
-#Patch0:   %{name}-notitlechange_nomenutitle.patch
 URL:   http://alltray.sourceforge.net/
 BuildRequires: GConf2-devel
 BuildRequires: autoconf
@@ -31,7 +30,6 @@
 
 %prep
 %setup -q
-#%%patch0 -p1
 
 %build
 %{__libtoolize}
@@ -48,19 +46,24 @@
 %{__make} install \
DESTDIR=$RPM_BUILD_ROOT
 
-rm -f $RPM_BUILD_ROOT%{_libdir}/lib*.la
+# liballtray.so.0.0.0 is explicitly LD_PRELOADed
+rm -f $RPM_BUILD_ROOT%{_libdir}/lib*.{la,so}
 
-#%clean
-#rm -rf $RPM_BUILD_ROOT
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%post  -p /sbin/ldconfig
+%postun-p /sbin/ldconfig
 
 %files
 %defattr(644,root,root,755)
 %doc AUTHORS ChangeLog README
-%attr(755,root,root) %{_bindir}/*
-%attr(755,root,root) %{_libdir}/liballtray*.so*
+%attr(755,root,root) %{_bindir}/alltray
+%attr(755,root,root) %{_libdir}/liballtray.so.*.*.*
+%attr(755,root,root) %ghost %{_libdir}/liballtray.so.0
 %{_mandir}/man1/alltray.1*
 %{_desktopdir}/%{name}.desktop
-%{_pixmapsdir}/*.png
+%{_pixmapsdir}/alltray.png
 
 %define date   %(echo `LC_ALL=C date +%a %b %d %Y`)
 %changelog
@@ -68,6 +71,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.14  2008/06/18 17:37:41  qboosh
+- cleanup
+
 Revision 1.13  2008/06/18 16:52:12  gzohop
 - up to 0.70
 


 CVS-web:

http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/SPECS/alltray.spec?r1=1.13r2=1.14f=u

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


SPECS: libgdiplus.spec - updated Source0 URL

2008-06-18 Thread qboosh
Author: qboosh   Date: Wed Jun 18 17:40:15 2008 GMT
Module: SPECS Tag: HEAD
 Log message:
- updated Source0 URL

 Files affected:
SPECS:
   libgdiplus.spec (1.54 - 1.55) 

 Diffs:


Index: SPECS/libgdiplus.spec
diff -u SPECS/libgdiplus.spec:1.54 SPECS/libgdiplus.spec:1.55
--- SPECS/libgdiplus.spec:1.54  Sun Jun  1 12:27:54 2008
+++ SPECS/libgdiplus.spec   Wed Jun 18 19:40:10 2008
@@ -17,8 +17,8 @@
 License:   MIT X11
 %endif
 Group: Libraries
-#Source0Download: http://go-mono.com/sources-stable/
-Source0:   http://go-mono.com/sources/libgdiplus/%{name}-%{version}.tar.bz2
+# latest downloads summary at http://ftp.novell.com/pub/mono/sources-stable/
+Source0:   
http://ftp.novell.com/pub/mono/sources/libgdiplus/%{name}-%{version}.tar.bz2
 # Source0-md5: 939f65903ea385ae1dc9bf0098669838
 Patch0:%{name}-link.patch
 Patch1:%{name}-lt.patch
@@ -149,7 +149,10 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
-Revision 1.54  2008/06/01 10:27:54  adamg
+Revision 1.55  2008/06/18 17:40:10  qboosh
+- updated Source0 URL
+
+Revision 1.54  2008-06-01 10:27:54  adamg
 - fix build with autoconf-2.62 (improper shell variable names used in 
configure.in)
 
 Revision 1.53  2008-03-21 21:13:19  qboosh


 CVS-web:

http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/SPECS/libgdiplus.spec?r1=1.54r2=1.55f=u

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


SPECS (AC-branch): openssh.spec - HEAD merge: openssh public key blacklist ...

2008-06-18 Thread glen
Author: glen Date: Wed Jun 18 18:39:10 2008 GMT
Module: SPECS Tag: AC-branch
 Log message:
- HEAD merge: openssh public key blacklist support, including ssh-vulnkey tool, 
added (from Debian)
- rel 5

 Files affected:
SPECS:
   openssh.spec (1.286.2.13 - 1.286.2.14) 

 Diffs:


Index: SPECS/openssh.spec
diff -u SPECS/openssh.spec:1.286.2.13 SPECS/openssh.spec:1.286.2.14
--- SPECS/openssh.spec:1.286.2.13   Tue Jun 17 08:53:28 2008
+++ SPECS/openssh.spec  Wed Jun 18 20:39:04 2008
@@ -24,7 +24,7 @@
 Summary(uk.UTF-8): OpenSSH - вільна реалізація протоколу Secure Shell (SSH)
 Name:  openssh
 Version:   5.0p1
-Release:   4
+Release:   5
 Epoch: 2
 License:   BSD
 Group: Applications/Networking
@@ -37,6 +37,7 @@
 Source4:   %{name}.sysconfig
 Source5:   ssh-agent.sh
 Source6:   ssh-agent.conf
+Patch100:  %{name}-heimdal.patch
 Patch0:%{name}-no_libnsl.patch
 Patch1:%{name}-linux-ipv6.patch
 Patch2:%{name}-pam_misc.patch
@@ -46,11 +47,12 @@
 Patch5:%{name}-config.patch
 Patch7:%{name}-selinux.patch
 # High Performance SSH/SCP - HPN-SSH - 
http://www.psc.edu/networking/projects/hpn-ssh/
+# http://www.psc.edu/networking/projects/hpn-ssh/openssh-4.9p1-hpn13v2.diff.gz
 Patch9:%{name}-5.0p1-hpn13v4.diff
 Patch10:   %{name}-include.patch
 Patch11:   %{name}-chroot.patch
-Patch12:   %{name}-unbreakalive.patch
-Patch100:  %{name}-heimdal.patch
+Patch12:   http://people.debian.org/~cjwatson/%{name}-blacklist.diff
+Patch13:   %{name}-unbreakalive.patch
 URL:   http://www.openssh.com/
 BuildRequires: %{__perl}
 BuildRequires: autoconf
@@ -458,6 +460,7 @@
 
 %prep
 %setup -q
+%{?with_kerberos5:%patch100 -p1}
 %patch0 -p1
 %patch1 -p1
 %patch2 -p1
@@ -468,9 +471,8 @@
 %{?with_hpn:%patch9 -p1}
 %patch10 -p1
 %patch11 -p1
-%patch12 -p0
-
-%{?with_kerberos5:%patch100 -p1}
+%patch12 -p1
+%patch13 -p0
 
 %build
 cp /usr/share/automake/config.sub .
@@ -598,7 +600,9 @@
 %defattr(644,root,root,755)
 %doc *.RNG TODO README OVERVIEW CREDITS Change*
 %attr(755,root,root) %{_bindir}/ssh-key*
+%attr(755,root,root) %{_bindir}/ssh-vulnkey*
 %{_mandir}/man1/ssh-key*.1*
+%{_mandir}/man1/ssh-vulnkey*.1*
 %dir %{_sysconfdir}
 %dir %{_libexecdir}
 
@@ -668,12 +672,16 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.286.2.14  2008/06/18 18:39:04  glen
+- HEAD merge: openssh public key blacklist support, including ssh-vulnkey 
tool, added (from Debian)
+- rel 5
+
 Revision 1.286.2.13  2008/06/17 06:53:28  arekm
 - rel 4; fix keepalive (from upstream)
 
 Revision 1.286.2.12  2008/05/30 16:39:35  marcus
 - changed default HPN bcond to off due to some uncompatibilities with eg. PuTTY
-software. Th and Ti did it earlier. Release 3.
+  software. Th and Ti did it earlier. Release 3.
 
 Revision 1.286.2.11  2008-05-19 07:42:43  glen
 - hpn 5.0p1-hpn13v4


 CVS-web:

http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/SPECS/openssh.spec?r1=1.286.2.13r2=1.286.2.14f=u

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


SOURCES: xulrunner-rpath.patch - updated for xulrunner 1.9

2008-06-18 Thread hawk
Author: hawk Date: Wed Jun 18 18:49:58 2008 GMT
Module: SOURCES   Tag: HEAD
 Log message:
- updated for xulrunner 1.9

 Files affected:
SOURCES:
   xulrunner-rpath.patch (1.1 - 1.2) 

 Diffs:


Index: SOURCES/xulrunner-rpath.patch
diff -u SOURCES/xulrunner-rpath.patch:1.1 SOURCES/xulrunner-rpath.patch:1.2
--- SOURCES/xulrunner-rpath.patch:1.1   Sun Jan  7 03:53:39 2007
+++ SOURCES/xulrunner-rpath.patch   Wed Jun 18 20:49:52 2008
@@ -1,33 +1,33 @@
 mozilla/config/autoconf.mk.in.org  2007-01-07 04:00:25.140001000 +0200
-+++ mozilla/config/autoconf.mk.in  2007-01-07 04:00:40.140338541 +0200
-@@ -63,7 +63,7 @@
+--- mozilla/config/autoconf.mk.in.orig 2008-05-05 23:08:14.0 +0200
 mozilla/config/autoconf.mk.in  2008-06-18 15:42:21.0 +0200
+@@ -64,7 +64,7 @@
  mandir= @mandir@
- idldir= @datadir@/idl/$(MOZ_APP_NAME)-$(MOZ_APP_VERSION)
+ idldir= $(datadir)/idl/$(MOZ_APP_NAME)-$(MOZ_APP_VERSION)
  
--mozappdir = $(libdir)/$(MOZ_APP_NAME)-$(MOZ_APP_VERSION)
-+mozappdir = $(libdir)/$(MOZ_APP_NAME)
- mredir= $(libdir)/mre/mre-$(MOZ_APP_VERSION)
- mrelibdir = $(mredir)/lib
+-installdir= $(libdir)/$(MOZ_APP_NAME)-$(MOZ_APP_VERSION)
++installdir= $(libdir)/$(MOZ_APP_NAME)
+ sdkdir= $(libdir)/$(MOZ_APP_NAME)-devel-$(MOZ_APP_VERSION)
  
 mozilla/configure.in~  2007-01-07 02:50:05.085718876 +0200
-+++ mozilla/configure.in   2007-01-07 04:03:09.003684862 +0200
-@@ -801,7 +801,7 @@
+ DIST  = $(DEPTH)/dist
+--- mozilla/configure.in.orig  2008-05-28 20:23:27.0 +0200
 mozilla/configure.in   2008-06-18 15:37:11.0 +0200
+@@ -945,7 +945,7 @@
  
- MOZ_JS_LIBS='-L$(DIST)/bin -lmozjs'
- DYNAMIC_XPCOM_LIBS='-L$(DIST)/bin -lxpcom -lxpcom_core'
--MOZ_FIX_LINK_PATHS='-Wl,-rpath-link,$(DIST)/bin'
-+MOZ_FIX_LINK_PATHS='-Wl,-rpath-link,$(DIST)/bin -Wl,-rpath,$(mozappdir)'
- XPCOM_FROZEN_LDOPTS='-L$(DIST)/bin $(MOZ_FIX_LINK_PATHS) -lxpcom'
+ MOZ_JS_LIBS='-L$(LIBXUL_DIST)/bin -lmozjs'
+ DYNAMIC_XPCOM_LIBS='-L$(LIBXUL_DIST)/bin -lxpcom -lxpcom_core'
+-MOZ_FIX_LINK_PATHS='-Wl,-rpath-link,$(LIBXUL_DIST)/bin'
++MOZ_FIX_LINK_PATHS='-Wl,-rpath-link,$(LIBXUL_DIST)/bin 
-Wl,-rpath,$(installdir)'
+ XPCOM_FROZEN_LDOPTS='-L$(LIBXUL_DIST)/bin -lxpcom'
  LIBXUL_LIBS='$(XPCOM_FROZEN_LDOPTS) -lxul'
- XPCOM_GLUE_LDOPTS='$(DIST)/lib/$(LIB_PREFIX)xpcomglue_s.$(LIB_SUFFIX) 
$(XPCOM_FROZEN_LDOPTS)'
 mozilla/configure~ 2007-01-07 04:22:18.799552498 +0200
-+++ mozilla/configure  2007-01-07 04:22:32.19985 +0200
-@@ -5032,7 +5032,7 @@
+ XPCOM_GLUE_LDOPTS='$(LIBXUL_DIST)/lib/$(LIB_PREFIX)xpcomglue_s.$(LIB_SUFFIX) 
$(XPCOM_FROZEN_LDOPTS)'
+--- mozilla/configure.orig 2008-05-28 20:31:02.0 +0200
 mozilla/configure  2008-06-18 15:38:53.0 +0200
+@@ -5119,7 +5119,7 @@
  
- MOZ_JS_LIBS='-L$(DIST)/bin -lmozjs'
- DYNAMIC_XPCOM_LIBS='-L$(DIST)/bin -lxpcom -lxpcom_core'
--MOZ_FIX_LINK_PATHS='-Wl,-rpath-link,$(DIST)/bin'
-+MOZ_FIX_LINK_PATHS='-Wl,-rpath-link,$(DIST)/bin -Wl,-rpath,$(mozappdir)'
- XPCOM_FROZEN_LDOPTS='-L$(DIST)/bin $(MOZ_FIX_LINK_PATHS) -lxpcom'
+ MOZ_JS_LIBS='-L$(LIBXUL_DIST)/bin -lmozjs'
+ DYNAMIC_XPCOM_LIBS='-L$(LIBXUL_DIST)/bin -lxpcom -lxpcom_core'
+-MOZ_FIX_LINK_PATHS='-Wl,-rpath-link,$(LIBXUL_DIST)/bin'
++MOZ_FIX_LINK_PATHS='-Wl,-rpath-link,$(LIBXUL_DIST)/bin 
-Wl,-rpath,$(installdir)'
+ XPCOM_FROZEN_LDOPTS='-L$(LIBXUL_DIST)/bin -lxpcom'
  LIBXUL_LIBS='$(XPCOM_FROZEN_LDOPTS) -lxul'
- XPCOM_GLUE_LDOPTS='$(DIST)/lib/$(LIB_PREFIX)xpcomglue_s.$(LIB_SUFFIX) 
$(XPCOM_FROZEN_LDOPTS)'
+ XPCOM_GLUE_LDOPTS='$(LIBXUL_DIST)/lib/$(LIB_PREFIX)xpcomglue_s.$(LIB_SUFFIX) 
$(XPCOM_FROZEN_LDOPTS)'


 CVS-web:

http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/SOURCES/xulrunner-rpath.patch?r1=1.1r2=1.2f=u

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


SPECS: xorg-driver-video-mach64.spec, xorg-driver-video-r128.spec - desc co...

2008-06-18 Thread qboosh
Author: qboosh   Date: Wed Jun 18 18:50:58 2008 GMT
Module: SPECS Tag: HEAD
 Log message:
- desc cosmetics

 Files affected:
SPECS:
   xorg-driver-video-mach64.spec (1.1 - 1.2) , xorg-driver-video-r128.spec 
(1.1 - 1.2) 

 Diffs:


Index: SPECS/xorg-driver-video-mach64.spec
diff -u SPECS/xorg-driver-video-mach64.spec:1.1 
SPECS/xorg-driver-video-mach64.spec:1.2
--- SPECS/xorg-driver-video-mach64.spec:1.1 Thu Jun 12 22:07:50 2008
+++ SPECS/xorg-driver-video-mach64.spec Wed Jun 18 20:50:52 2008
@@ -1,6 +1,6 @@
 # $Revision$, $Date$
-Summary:   X.org video drivers for ATI adapters
-Summary(pl.UTF-8): Sterowniki obrazu X.org do kart graficznych ATI
+Summary:   X.org video drivers for ATI VGAWonder/Mach32/Mach64 adapters
+Summary(pl.UTF-8): Sterowniki obrazu X.org do kart graficznych ATI 
VGAWonder/Mach32/Mach64
 Name:  xorg-driver-video-mach64
 Version:   6.8.0
 Release:   1
@@ -26,22 +26,25 @@
 BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
 
 %description
-X.org video driver for ATI adapters: supports most of chips from
-VGAWonder series (18800, 18800-1, 28800-2, 28800-4, 28800-5, 28800-6),
-Mach32 series (68800-3, 68800-6, 68800AX, 68800LX) and Mach64 series
-(88800GX-C, 88800GX-D, 88800GX-E, 88800GX-F, 88800CX, 264CT, 264ET,
-264VT, 264GT (3D Rage), 264VT-B, 264VT3, 264VT4, 264GT-B (3D Rage II),
-3D Rage IIc, 3D Rage Pro, 3D Rage LT, 3D Rage LT Pro, 3D Rage XL, 3D
-Rage XC, 3D Rage Mobility (including the -M and -P variants)),
+X.org video driver for old ATI adapters; supports most of chips from:
+- VGAWonder series: 18800, 18800-1, 28800-2, 28800-4, 28800-5, 28800-6
+- Mach32 series: 68800-3, 68800-6, 68800AX, 68800LX
+- Mach64 series: 88800GX-C, 88800GX-D, 88800GX-E, 88800GX-F, 88800CX,
+  264CT, 264ET, 264VT, 264GT (3D Rage), 264VT-B, 264VT3, 264VT4,
+  264GT-B (3D Rage II), 3D Rage IIc, 3D Rage Pro, 3D Rage LT, 3D Rage
+  LT Pro, 3D Rage XL, 3D Rage XC, 3D Rage Mobility (including the -M
+  and -P variants)
 
 %description -l pl.UTF-8
-Sterownik obrazu X.org do kart graficznych ATI: obsługuje większość
-kart z serii VGAWonder (18800, 18800-1, 28800-2, 28800-4, 28800-5,
-28800-6), Mach32 (68800-3, 68800-6, 68800AX, 68800LX) oraz Mach64
-(88800GX-C, 88800GX-D, 88800GX-E, 88800GX-F, 88800CX, 264CT, 264ET,
-264VT, 264GT (3D Rage), 264VT-B, 264VT3, 264VT4, 264GT-B (3D Rage II),
-3D Rage IIc, 3D Rage Pro, 3D Rage LT, 3D Rage LT Pro, 3D Rage XL, 3D
-Rage XC, 3D Rage Mobility (włącznie z wariantami -M i -P)),
+Sterownik obrazu X.org do starych kart graficznych ATI; obsługuje
+większość kart z serii:
+- VGAWonder: 18800, 18800-1, 28800-2, 28800-4, 28800-5, 28800-6
+- Mach32: 68800-3, 68800-6, 68800AX, 68800LX)
+- Mach64: 88800GX-C, 88800GX-D, 88800GX-E, 88800GX-F, 88800CX, 264CT,
+  264ET, 264VT, 264GT (3D Rage), 264VT-B, 264VT3, 264VT4, 264GT-B (3D
+  Rage II), 3D Rage IIc, 3D Rage Pro, 3D Rage LT, 3D Rage LT Pro, 3D
+  Rage XL, 3D Rage XC, 3D Rage Mobility (włącznie z wariantami -M i
+  -P)
 
 %prep
 %setup -q -n xf86-video-mach64-%{version}
@@ -79,6 +82,8 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.2  2008/06/18 18:50:52  qboosh
+- desc cosmetics
+
 Revision 1.1  2008/06/12 20:07:50  arekm
 - initial; splitted from ati driver
-


Index: SPECS/xorg-driver-video-r128.spec
diff -u SPECS/xorg-driver-video-r128.spec:1.1 
SPECS/xorg-driver-video-r128.spec:1.2
--- SPECS/xorg-driver-video-r128.spec:1.1   Thu Jun 12 22:04:46 2008
+++ SPECS/xorg-driver-video-r128.spec   Wed Jun 18 20:50:52 2008
@@ -1,6 +1,6 @@
 # $Revision$, $Date$
-Summary:   X.org video drivers for ATI adapters
-Summary(pl.UTF-8): Sterowniki obrazu X.org do kart graficznych ATI
+Summary:   X.org video drivers for ATI Rage128 adapters
+Summary(pl.UTF-8): Sterowniki obrazu X.org do kart graficznych ATI Rage128
 Name:  xorg-driver-video-r128
 Version:   6.8.0
 Release:   1
@@ -27,14 +27,14 @@
 BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
 
 %description
-X.org video driver for ATI r128 adapter: supports all ATI Rage 128
+X.org video driver for ATI r128 adapters; supports all ATI Rage 128
 based video cards including the Rage Fury AGP 32MB, the XPERT 128 AGP
-16MB and the XPERT 99 AGP 8MB,
+16MB and the XPERT 99 AGP 8MB.
 
 %description -l pl.UTF-8
-Sterownik obrazu X.org do kart graficznych ATI r128: obsługujący
+Sterownik obrazu X.org do kart graficznych ATI r128; obsługuje
 wszystkie karty graficzne oparte na układzie ATI Rage 128, włącznie z
-Rage Fury AGP 32MB, XPERT 128 AGP 16MB i XPERT 99 AGP 8MB,
+Rage Fury AGP 32MB, XPERT 128 AGP 16MB i XPERT 99 AGP 8MB.
 
 %prep
 %setup -q -n xf86-video-r128-%{version}
@@ -73,6 +73,8 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.2  

SPECS: xulrunner.spec - rpath is back - bconded mozldap (it builds w/o it, ...

2008-06-18 Thread hawk
Author: hawk Date: Wed Jun 18 18:53:38 2008 GMT
Module: SPECS Tag: HEAD
 Log message:
- rpath is back
- bconded mozldap (it builds w/o it, maybe this BR is unecessary?)
- release 0.2, xulrunner test application still doesn't work (it didn't
  worked in 1.8.x either)

 Files affected:
SPECS:
   xulrunner.spec (1.49 - 1.50) 

 Diffs:


Index: SPECS/xulrunner.spec
diff -u SPECS/xulrunner.spec:1.49 SPECS/xulrunner.spec:1.50
--- SPECS/xulrunner.spec:1.49   Wed Jun 18 14:07:25 2008
+++ SPECS/xulrunner.specWed Jun 18 20:53:32 2008
@@ -4,8 +4,9 @@
 %bcond_withtests   # enable tests (whatever they check)
 %bcond_without gnome   # disable all GNOME components (gnomevfs, 
gnome, gnomeui)
 %bcond_without kerberos# disable krb5 support
+%bcond_withmozldap # build with system mozldap
 
-%definerel 0.1
+%definerel 0.2
 %definesubver  20080618
 Summary:   XULRunner - Mozilla Runtime Environment for XUL+XPCOM 
applications
 Summary(pl.UTF-8): XULRunner - środowisko uruchomieniowe Mozilli dla 
aplikacji XUL+XPCOM
@@ -42,7 +43,7 @@
 BuildRequires: libjpeg-devel = 6b
 BuildRequires: libpng-devel = 1.2.7
 BuildRequires: libstdc++-devel
-BuildRequires: mozldap-devel = 6.0
+%{?with_gnomeBuildRequires:mozldap-devel = 6.0}
 BuildRequires: nspr-devel = 1:4.6.4
 BuildRequires: nss-devel = 1:3.11.3-3
 BuildRequires: pango-devel = 1:1.6.0
@@ -124,7 +125,7 @@
 #%patch0 -p1
 %patch1 -p1
 #%patch2 -p1
-#%patch3 -p1
+%patch3 -p1
 %patch4 -p1
 %patch5 -p1
 %if %{cc_version}  3.4
@@ -495,6 +496,12 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.50  2008/06/18 18:53:32  hawk
+- rpath is back
+- bconded mozldap (it builds w/o it, maybe this BR is unecessary?)
+- release 0.2, xulrunner test application still doesn't work (it didn't
+  worked in 1.8.x either)
+
 Revision 1.49  2008/06/18 12:07:25  hawk
 - merged 3.0 from DEVEL, updated tarball to official FIREFOX_3_0_RELEASE
 


 CVS-web:

http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/SPECS/xulrunner.spec?r1=1.49r2=1.50f=u

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


SPECS: xorg-driver-video-nv.spec, xorg-driver-video-ati.spec - desc cosmetics

2008-06-18 Thread qboosh
Author: qboosh   Date: Wed Jun 18 18:57:51 2008 GMT
Module: SPECS Tag: HEAD
 Log message:
- desc cosmetics

 Files affected:
SPECS:
   xorg-driver-video-nv.spec (1.35 - 1.36) , xorg-driver-video-ati.spec (1.43 
- 1.44) 

 Diffs:


Index: SPECS/xorg-driver-video-nv.spec
diff -u SPECS/xorg-driver-video-nv.spec:1.35 
SPECS/xorg-driver-video-nv.spec:1.36
--- SPECS/xorg-driver-video-nv.spec:1.35Sat May 10 10:50:27 2008
+++ SPECS/xorg-driver-video-nv.spec Wed Jun 18 20:57:45 2008
@@ -32,23 +32,35 @@
 
 %description
 X.org video driver for NVIDIA video adapters. It supports PCI and AGP
-video cards based on the following chips: RIVA 128 (NV3), RIVA TNT
-(NV4), RIVA TNT2 (NV5), GeForce 256, QUADRO (NV10), GeForce2, QUADRO2
-(NV11, NV15), GeForce3, QUADRO DCC (NV20), nForce, nForce2 (NV1A,
-NV1F), GeForce4, QUADRO4 (NV17, NV18, NV25, NV28), GeForce FX, QUADRO
-FX (NV30, NV31, NV34, NV35, NV36, NV37, NV38), GeForce 6xxx (NV40,
-NV41, NV43, NV44, NV45, C51), GeForce 7xxx (G70, G71, G72, G73),
-GeForce 8xxx (G80, G84, G86, G92).
+video cards based on the following chips:
+- RIVA 128 (NV3),
+- RIVA TNT (NV4),
+- RIVA TNT2 (NV5),
+- GeForce 256, QUADRO (NV10),
+- GeForce2, QUADRO2 (NV11, NV15),
+- GeForce3, QUADRO DCC (NV20),
+- nForce, nForce2 (NV1A, NV1F),
+- GeForce4, QUADRO4 (NV17, NV18, NV25, NV28),
+- GeForce FX, QUADRO FX (NV30, NV31, NV34, NV35, NV36, NV37, NV38),
+- GeForce 6xxx (NV40, NV41, NV43, NV44, NV45, C51),
+- GeForce 7xxx (G70, G71, G72, G73),
+- GeForce 8xxx (G80, G84, G86, G92).
 
 %description -l pl.UTF-8
 Sterownik obrazu X.org dla kart graficznych NVIDIA. Obsługuje karty
-PCI i AGP oparte na następujących układach: RIVA 128 (NV3), RIVA TNT
-(NV4), RIVA TNT2 (NV5), GeForce 256, QUADRO (NV10), GeForce2, QUADRO2
-(NV11, NV15), GeForce3, QUADRO DCC (NV20), nForce, nForce2 (NV1A,
-NV1F), GeForce4, QUADRO4 (NV17, NV18, NV25, NV28), GeForce FX, QUADRO
-FX (NV30, NV31, NV34, NV35, NV36, NV37, NV38), GeForce 6xxx (NV40,
-NV41, NV43, NV44, NV45, C51), GeForce 7xxx (G70, G71, G72, G73),
-GeForce 8xxx (G80, G84, G86, G92).
+PCI i AGP oparte na następujących układach:
+- RIVA 128 (NV3),
+- RIVA TNT (NV4),
+- RIVA TNT2 (NV5),
+- GeForce 256, QUADRO (NV10),
+- GeForce2, QUADRO2 (NV11, NV15),
+- GeForce3, QUADRO DCC (NV20),
+- nForce, nForce2 (NV1A, NV1F),
+- GeForce4, QUADRO4 (NV17, NV18, NV25, NV28),
+- GeForce FX, QUADRO FX (NV30, NV31, NV34, NV35, NV36, NV37, NV38),
+- GeForce 6xxx (NV40, NV41, NV43, NV44, NV45, C51),
+- GeForce 7xxx (G70, G71, G72, G73),
+- GeForce 8xxx (G80, G84, G86, G92).
 
 %prep
 %setup -q -n xf86-video-nv-%{version}
@@ -87,7 +99,10 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
-Revision 1.35  2008/05/10 08:50:27  qboosh
+Revision 1.36  2008/06/18 18:57:45  qboosh
+- desc cosmetics
+
+Revision 1.35  2008-05-10 08:50:27  qboosh
 - updated to 2.1.9
 
 Revision 1.34  2008-03-07 07:14:33  arekm


Index: SPECS/xorg-driver-video-ati.spec
diff -u SPECS/xorg-driver-video-ati.spec:1.43 
SPECS/xorg-driver-video-ati.spec:1.44
--- SPECS/xorg-driver-video-ati.spec:1.43   Thu Jun 12 21:58:49 2008
+++ SPECS/xorg-driver-video-ati.specWed Jun 18 20:57:45 2008
@@ -1,6 +1,6 @@
 # $Revision$, $Date$
-Summary:   X.org video drivers for ATI adapters
-Summary(pl.UTF-8): Sterowniki obrazu X.org do kart graficznych ATI
+Summary:   X.org video drivers for ATI Radeon adapters
+Summary(pl.UTF-8): Sterowniki obrazu X.org do kart graficznych ATI Radeon
 Name:  xorg-driver-video-ati
 Version:   6.8.191
 Release:   1
@@ -36,38 +36,64 @@
 BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
 
 %description
-X.org video drivers for ATI radeon adapter: supports PCI and AGP video
-cards based on the following ATI chips: R100 (Radeon 7200), RV100
-(Radeon 7000(VE), M6), RS100 (Radeon IGP320(M)), RV200 (Radeon 7500,
-M7, FireGL 7800), RS200 (Radeon IGP330(M)/IGP340(M)), RS250 (Radeon
-Mobility 7000 IGP), R200 (Radeon 8500, 9100, FireGL 8800/8700), RV250
-(Radeon 9000PRO/9000, M9), RS300 (Radeon 9100 IGP), RS350 (Radeon 9200
-IGP), RS400 (Radeon XPRESS 200/200M IGP), RV280 (Radeon 9200PRO/9200/
-9200SE, M9+); additionally it partially (2D only) supports video cards
-based on the following chips: R300 (Radeon 9700PRO/9700/
-9500PRO/9500/9600TX, FireGL X1/Z1), R350 (Radeon 9800PRO/9800SE/ 9800,
-FireGL X2), R360 (Radeon 9800XT), RV350 (Radeon 9600PRO/ 9600SE/9600,
-M10/M11, FireGL T2), RV360 (Radeon 9600XT), RV370 (Radeon X300, M22),
-RV380 (Radeon X600), RV410 (Radeon X700, M26 PCIE), R420 (Radeon X800
-AGP), R423/R430 (Radeon X800, M28 PCIE), R480/R481 (Radeon X850
-PCIE/AGP).
+X.org video drivers for ATI Radeon adapters; supports PCI and AGP
+video cards based on the following ATI chips:
+- R100 (Radeon 7200),
+- RV100 (Radeon 7000(VE), M6),
+- RS100 

SPECS: xorg-driver-video-ati.spec - updated adapter lists

2008-06-18 Thread qboosh
Author: qboosh   Date: Wed Jun 18 19:07:31 2008 GMT
Module: SPECS Tag: HEAD
 Log message:
- updated adapter lists

 Files affected:
SPECS:
   xorg-driver-video-ati.spec (1.44 - 1.45) 

 Diffs:


Index: SPECS/xorg-driver-video-ati.spec
diff -u SPECS/xorg-driver-video-ati.spec:1.44 
SPECS/xorg-driver-video-ati.spec:1.45
--- SPECS/xorg-driver-video-ati.spec:1.44   Wed Jun 18 20:57:45 2008
+++ SPECS/xorg-driver-video-ati.specWed Jun 18 21:07:25 2008
@@ -39,7 +39,7 @@
 X.org video drivers for ATI Radeon adapters; supports PCI and AGP
 video cards based on the following ATI chips:
 - R100 (Radeon 7200),
-- RV100 (Radeon 7000(VE), M6),
+- RV100 (Radeon 7000(VE), M6, RN50/ES1000),
 - RS100 (Radeon IGP320(M)),
 - RV200 (Radeon 7500, M7, FireGL 7800),
 - RS200 (Radeon IGP330(M)/IGP340(M)),
@@ -49,27 +49,32 @@
 - RS300 (Radeon 9100 IGP),
 - RS350 (Radeon 9200 IGP),
 - RS400 (Radeon XPRESS 200/200M IGP),
-- RV280 (Radeon 9200PRO/9200/9200SE, M9+)
-
-Additionally it partially (2D only) supports video cards based on the
-following chips:
+- RV280 (Radeon 9200PRO/9200/9200SE, M9+),
 - R300 (Radeon 9700PRO/9700/9500PRO/9500/9600TX, FireGL X1/Z1),
 - R350 (Radeon 9800PRO/9800SE/9800, FireGL X2),
 - R360 (Radeon 9800XT),
 - RV350 (Radeon 9600PRO/9600SE/9600, M10/M11, FireGL T2),
 - RV360 (Radeon 9600XT),
 - RV370 (Radeon X300, M22),
-- RV380 (Radeon X600),
+- RV380 (Radeon X600, M24),
 - RV410 (Radeon X700, M26 PCIE),
 - R420 (Radeon X800 AGP),
 - R423/R430 (Radeon X800, M28 PCIE),
-- R480/R481 (Radeon X850 PCIE/AGP).
+- R480/R481 (Radeon X850 PCIE/AGP),
+- RV515 (Radeon X1300/X1400/X1500),
+- R520 (Radeon X1800),
+- RV530/RV560 (Radeon X1600/X1650/X1700),
+- RV570/R580 (Radeon X1900/X1950),
+- RS600/RS690 (Radeon X1200),
+- R600 (Radeon HD 2900),
+- RV610/RV630 (Radeon HD 2400/2600),
+- RV670 (Radeon HD 3850/3870).
 
 %description -l pl.UTF-8
 Sterownik obrazu X.org do kart graficznych ATI Radeon; obsługuje karty
 graficzne PCI i AGP oparte na następujących układach ATI:
 - R100 (Radeon 7200),
-- RV100 (Radeon 7000(VE), M6),
+- RV100 (Radeon 7000(VE), M6, RN50/ES1000),
 - RS100 (Radeon IGP320(M)),
 - RV200 (Radeon 7500, M7, FireGL 7800),
 - RS200 (Radeon IGP330(M)/IGP340(M)),
@@ -79,10 +84,7 @@
 - RS300 (Radeon 9100 IGP),
 - RS350 (Radeon 9200 IGP),
 - RS400 (Radeon XPRESS 200/200M IGP),
-- RV280 (Radeon 9200PRO/9200/9200SE, M9+)
-
-Ponadto częściowo (tylko 2D) obsługuje karty oparte na następujących
-układach:
+- RV280 (Radeon 9200PRO/9200/9200SE, M9+),
 - R300 (Radeon 9700PRO/9700/9500PRO/9500/9600TX, FireGL X1/Z1),
 - R350 (Radeon 9800PRO/9800SE/9800, FireGL X2),
 - R360 (Radeon 9800XT),
@@ -93,7 +95,15 @@
 - RV410 (Radeon X700, M26 PCIE),
 - R420 (Radeon X800 AGP),
 - R423/R430 (Radeon X800, M28 PCIE),
-- R480/R481 (Radeon X850 PCIE/AGP).
+- R480/R481 (Radeon X850 PCIE/AGP),
+- RV515 (Radeon X1300/X1400/X1500),
+- R520 (Radeon X1800),
+- RV530/RV560 (Radeon X1600/X1650/X1700),
+- RV570/R580 (Radeon X1900/X1950),
+- RS600/RS690 (Radeon X1200),
+- R600 (Radeon HD 2900),
+- RV610/RV630 (Radeon HD 2400/2600),
+- RV670 (Radeon HD 3850/3870).
 
 %prep
 %setup -q -n xf86-video-ati-%{version}
@@ -141,6 +151,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.45  2008/06/18 19:07:25  qboosh
+- updated adapter lists
+
 Revision 1.44  2008/06/18 18:57:45  qboosh
 - desc cosmetics
 


 CVS-web:

http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/SPECS/xorg-driver-video-ati.spec?r1=1.44r2=1.45f=u

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


SVN: backtracexx/backtracexx.cpp

2008-06-18 Thread pluto
Author: pluto
Date: Wed Jun 18 21:41:40 2008
New Revision: 9812

Modified:
   backtracexx/backtracexx.cpp
Log:
- _Unwind_GetIPInfo is available in 4.2+, not 4.x.2+.


Modified: backtracexx/backtracexx.cpp
==
--- backtracexx/backtracexx.cpp (original)
+++ backtracexx/backtracexx.cpp Wed Jun 18 21:41:40 2008
@@ -74,7 +74,7 @@
{
_Unwind_Ptr ip;
 
-#if ( __GNUC__ = 4 )  ( __GNUC_PATCHLEVEL__ = 2 )
+#if ( __GNUC__ = 4 )  ( __GNUC_MINOR__ = 2 )
 
int beforeInsn;
ip = _Unwind_GetIPInfo( ctx, beforeInsn );
___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


SPECS: xulrunner.spec - added TODO

2008-06-18 Thread hawk
Author: hawk Date: Wed Jun 18 19:49:18 2008 GMT
Module: SPECS Tag: HEAD
 Log message:
- added TODO

 Files affected:
SPECS:
   xulrunner.spec (1.50 - 1.51) 

 Diffs:


Index: SPECS/xulrunner.spec
diff -u SPECS/xulrunner.spec:1.50 SPECS/xulrunner.spec:1.51
--- SPECS/xulrunner.spec:1.50   Wed Jun 18 20:53:32 2008
+++ SPECS/xulrunner.specWed Jun 18 21:49:12 2008
@@ -1,5 +1,13 @@
 # $Revision$, $Date$
 #
+# TODO:
+#   - running 'xulrunner application.ini' fails, strace says:
+# /usr/bin/profile.ini: no such file or directory, make xulrunner
+# to look for that file in /usr/%{_lib}/xulrunner (it is available there)
+#   - even if profile.ini is found and parsed test application doesn't work
+# eihter some files are missing or again xulrunner looks for theme in
+# wrong paths, check  debug  fix it somehow
+#
 # Conditional build:
 %bcond_withtests   # enable tests (whatever they check)
 %bcond_without gnome   # disable all GNOME components (gnomevfs, 
gnome, gnomeui)
@@ -496,6 +504,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.51  2008/06/18 19:49:12  hawk
+- added TODO
+
 Revision 1.50  2008/06/18 18:53:32  hawk
 - rpath is back
 - bconded mozldap (it builds w/o it, maybe this BR is unecessary?)


 CVS-web:

http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/SPECS/xulrunner.spec?r1=1.50r2=1.51f=u

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


SPECS: binutils.spec - rel 2

2008-06-18 Thread arekm
Author: arekmDate: Wed Jun 18 19:59:13 2008 GMT
Module: SPECS Tag: HEAD
 Log message:
- rel 2

 Files affected:
SPECS:
   binutils.spec (1.289 - 1.290) 

 Diffs:


Index: SPECS/binutils.spec
diff -u SPECS/binutils.spec:1.289 SPECS/binutils.spec:1.290
--- SPECS/binutils.spec:1.289   Mon May  5 21:19:21 2008
+++ SPECS/binutils.spec Wed Jun 18 21:59:08 2008
@@ -16,7 +16,7 @@
 Summary(uk.UTF-8): Набір інструментів GNU для побудови виконуваних програм
 Name:  binutils
 Version:   2.18.50.0.7
-Release:   1
+Release:   2
 Epoch: 3
 License:   GPL v3+
 Group: Development/Tools
@@ -313,7 +313,10 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
-Revision 1.289  2008/05/05 19:19:21  pluto
+Revision 1.290  2008/06/18 19:59:08  arekm
+- rel 2
+
+Revision 1.289  2008-05-05 19:19:21  pluto
 - updated to 2.18.50.0.7.
 
 Revision 1.288  2008-04-03 20:54:47  pluto


 CVS-web:

http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/SPECS/binutils.spec?r1=1.289r2=1.290f=u

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


SPECS: xulrunner.spec - be gone silly typo

2008-06-18 Thread glen
Author: glen Date: Wed Jun 18 19:59:23 2008 GMT
Module: SPECS Tag: HEAD
 Log message:
- be gone silly typo

 Files affected:
SPECS:
   xulrunner.spec (1.51 - 1.52) 

 Diffs:


Index: SPECS/xulrunner.spec
diff -u SPECS/xulrunner.spec:1.51 SPECS/xulrunner.spec:1.52
--- SPECS/xulrunner.spec:1.51   Wed Jun 18 21:49:12 2008
+++ SPECS/xulrunner.specWed Jun 18 21:59:18 2008
@@ -51,7 +51,7 @@
 BuildRequires: libjpeg-devel = 6b
 BuildRequires: libpng-devel = 1.2.7
 BuildRequires: libstdc++-devel
-%{?with_gnomeBuildRequires:mozldap-devel = 6.0}
+%{?with_mozldap:BuildRequires: mozldap-devel = 6.0}
 BuildRequires: nspr-devel = 1:4.6.4
 BuildRequires: nss-devel = 1:3.11.3-3
 BuildRequires: pango-devel = 1:1.6.0
@@ -504,6 +504,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.52  2008/06/18 19:59:18  glen
+- be gone silly typo
+
 Revision 1.51  2008/06/18 19:49:12  hawk
 - added TODO
 


 CVS-web:

http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/SPECS/xulrunner.spec?r1=1.51r2=1.52f=u

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


SPECS: clamav-database.spec - update daily to 7501

2008-06-18 Thread glen
Author: glen Date: Wed Jun 18 20:05:19 2008 GMT
Module: SPECS Tag: HEAD
 Log message:
- update daily to 7501

 Files affected:
SPECS:
   clamav-database.spec (1.13 - 1.14) 

 Diffs:


Index: SPECS/clamav-database.spec
diff -u SPECS/clamav-database.spec:1.13 SPECS/clamav-database.spec:1.14
--- SPECS/clamav-database.spec:1.13 Sun Feb 17 22:59:38 2008
+++ SPECS/clamav-database.spec  Wed Jun 18 22:05:14 2008
@@ -1,8 +1,8 @@
 # $Revision$, $Date$
 %definemain_version45
-%definedaily_version   5854
-%definedatabase_version20080217
-%definerel 2
+%definedaily_version   7501
+%definedatabase_version20080618
+%definerel 1
 Summary:   Virus databases for clamav
 Summary(pl.UTF-8): Bazy wirusów dla clamava
 Name:  clamav-database
@@ -11,7 +11,7 @@
 License:   GPL
 Group: Applications/Databases
 Source0:   http://db.local.clamav.net/daily.cvd
-# Source0-md5: a0999deace2c3bd8dc48a5e03523b7fa
+# Source0-md5: a55e81db65b27779a7dbf8a1bff4f87b
 Source1:   http://db.local.clamav.net/main.cvd
 # Source1-md5: 5312db62b11f8faf48c669fb358488e0
 URL:   http://www.clamav.net/
@@ -62,7 +62,10 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
-Revision 1.13  2008/02/17 21:59:38  glen
+Revision 1.14  2008/06/18 20:05:14  glen
+- update daily to 7501
+
+Revision 1.13  2008-02-17 21:59:38  glen
 - release 2
 
 Revision 1.12  2008-02-17 21:50:38  glen


 CVS-web:

http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/SPECS/clamav-database.spec?r1=1.13r2=1.14f=u

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


DISTFILES: ERRORS: daily.cvd main.cvd

2008-06-18 Thread glen
FATAL: http://db.local.clamav.net/daily.cvd md5 mismatch, needed 
a55e81db65b27779a7dbf8a1bff4f87b, got 21f041ff14c6241e121f08eb99e439d9

Files fetched: 0

ALREADY GOT: http://db.local.clamav.net/main.cvd
5312db62b11f8faf48c669fb358488e0  main.cvd


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


SPECS: clamav-database.spec - try df md5

2008-06-18 Thread glen
Author: glen Date: Wed Jun 18 20:07:45 2008 GMT
Module: SPECS Tag: HEAD
 Log message:
- try df md5

 Files affected:
SPECS:
   clamav-database.spec (1.14 - 1.15) 

 Diffs:


Index: SPECS/clamav-database.spec
diff -u SPECS/clamav-database.spec:1.14 SPECS/clamav-database.spec:1.15
--- SPECS/clamav-database.spec:1.14 Wed Jun 18 22:05:14 2008
+++ SPECS/clamav-database.spec  Wed Jun 18 22:07:40 2008
@@ -10,10 +10,10 @@
 Release:   %{database_version}.%{rel}
 License:   GPL
 Group: Applications/Databases
-Source0:   http://db.local.clamav.net/daily.cvd
-# Source0-md5: a55e81db65b27779a7dbf8a1bff4f87b
-Source1:   http://db.local.clamav.net/main.cvd
-# Source1-md5: 5312db62b11f8faf48c669fb358488e0
+Source0:   http://db.local.clamav.net/main.cvd
+# Source0-md5: 5312db62b11f8faf48c669fb358488e0
+Source1:   http://db.local.clamav.net/daily.cvd
+# Source1-md5: 21f041ff14c6241e121f08eb99e439d9
 URL:   http://www.clamav.net/
 BuildRequires: file
 Requires:  clamav
@@ -62,6 +62,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.15  2008/06/18 20:07:40  glen
+- try df md5
+
 Revision 1.14  2008/06/18 20:05:14  glen
 - update daily to 7501
 


 CVS-web:

http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/SPECS/clamav-database.spec?r1=1.14r2=1.15f=u

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


DISTFILES: ERRORS: main.cvd daily.cvd

2008-06-18 Thread glen
FATAL: http://db.local.clamav.net/daily.cvd md5 mismatch, needed 
21f041ff14c6241e121f08eb99e439d9, got a55e81db65b27779a7dbf8a1bff4f87b

Files fetched: 0

ALREADY GOT: http://db.local.clamav.net/main.cvd
5312db62b11f8faf48c669fb358488e0  main.cvd


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


SPECS: clamav-database.spec - try3

2008-06-18 Thread glen
Author: glen Date: Wed Jun 18 20:08:51 2008 GMT
Module: SPECS Tag: HEAD
 Log message:
- try3

 Files affected:
SPECS:
   clamav-database.spec (1.15 - 1.16) 

 Diffs:


Index: SPECS/clamav-database.spec
diff -u SPECS/clamav-database.spec:1.15 SPECS/clamav-database.spec:1.16
--- SPECS/clamav-database.spec:1.15 Wed Jun 18 22:07:40 2008
+++ SPECS/clamav-database.spec  Wed Jun 18 22:08:45 2008
@@ -13,7 +13,7 @@
 Source0:   http://db.local.clamav.net/main.cvd
 # Source0-md5: 5312db62b11f8faf48c669fb358488e0
 Source1:   http://db.local.clamav.net/daily.cvd
-# Source1-md5: 21f041ff14c6241e121f08eb99e439d9
+# Source1-md5: a55e81db65b27779a7dbf8a1bff4f87b
 URL:   http://www.clamav.net/
 BuildRequires: file
 Requires:  clamav
@@ -62,6 +62,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.16  2008/06/18 20:08:45  glen
+- try3
+
 Revision 1.15  2008/06/18 20:07:40  glen
 - try df md5
 


 CVS-web:

http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/SPECS/clamav-database.spec?r1=1.15r2=1.16f=u

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


DISTFILES: main.cvd daily.cvd

2008-06-18 Thread glen

Files fetched: 1

ALREADY GOT: http://db.local.clamav.net/main.cvd
5312db62b11f8faf48c669fb358488e0  main.cvd
STORED: http://db.local.clamav.net/daily.cvd
a55e81db65b27779a7dbf8a1bff4f87b  daily.cvd
Size: 2289225 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


SPECS: xulrunner.spec - there is official tarball now

2008-06-18 Thread qboosh
Author: qboosh   Date: Wed Jun 18 20:09:20 2008 GMT
Module: SPECS Tag: HEAD
 Log message:
- there is official tarball now

 Files affected:
SPECS:
   xulrunner.spec (1.53 - 1.54) 

 Diffs:


Index: SPECS/xulrunner.spec
diff -u SPECS/xulrunner.spec:1.53 SPECS/xulrunner.spec:1.54
--- SPECS/xulrunner.spec:1.53   Wed Jun 18 22:07:20 2008
+++ SPECS/xulrunner.specWed Jun 18 22:09:14 2008
@@ -13,7 +13,7 @@
 %bcond_without gnome   # disable all GNOME components (gnomevfs, 
gnome, gnomeui)
 %bcond_without kerberos# disable krb5 support
 %bcond_withmozldap # build with system mozldap
-
+#
 %definerel 0.2
 %definesubver  20080618
 Summary:   XULRunner - Mozilla Runtime Environment for XUL+XPCOM 
applications
@@ -23,6 +23,7 @@
 Release:   %{subver}.%{rel}
 License:   MPL v1.1 or GPL v2+ or LGPL v2.1+
 Group: X11/Applications
+#Source0:  
http://releases.mozilla.org/pub/mozilla.org/xulrunner/releases/1.9.0.0/source/%{name}-%{version}-source.tar.bz2
 Source0:   %{name}-%{version}-%{subver}-source.tar.bz2
 # Source0-md5: 01c53eb651f8d372c496dd67eb39957a
 Patch0:%{name}-ldap-with-nss.patch
@@ -504,6 +505,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.54  2008/06/18 20:09:14  qboosh
+- there is official tarball now
+
 Revision 1.53  2008/06/18 20:07:20  hawk
 - blah, fixed filename in TODO, I really need more sleep these days
 


 CVS-web:

http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/SPECS/xulrunner.spec?r1=1.53r2=1.54f=u

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


SPECS: conky.spec - libtool

2008-06-18 Thread gzohop
Author: gzohop   Date: Wed Jun 18 20:13:28 2008 GMT
Module: SPECS Tag: HEAD
 Log message:
- libtool

 Files affected:
SPECS:
   conky.spec (1.19 - 1.20) 

 Diffs:


Index: SPECS/conky.spec
diff -u SPECS/conky.spec:1.19 SPECS/conky.spec:1.20
--- SPECS/conky.spec:1.19   Mon Apr 14 19:35:13 2008
+++ SPECS/conky.specWed Jun 18 22:13:22 2008
@@ -36,6 +36,7 @@
 %patch0 -p1
 
 %build
+%{__libtoolize}
 %{__aclocal}
 %{__autoconf}
 %{__autoheader}
@@ -66,6 +67,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.20  2008/06/18 20:13:22  gzohop
+- libtool
+
 Revision 1.19  2008/04/14 17:35:13  lisu
 - 1.5.1
 - -headers.patch is obsolete


 CVS-web:

http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/SPECS/conky.spec?r1=1.19r2=1.20f=u

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


SPECS: conky.spec - BR: libtool

2008-06-18 Thread qboosh
Author: qboosh   Date: Wed Jun 18 20:14:56 2008 GMT
Module: SPECS Tag: HEAD
 Log message:
- BR: libtool

 Files affected:
SPECS:
   conky.spec (1.20 - 1.21) 

 Diffs:


Index: SPECS/conky.spec
diff -u SPECS/conky.spec:1.20 SPECS/conky.spec:1.21
--- SPECS/conky.spec:1.20   Wed Jun 18 22:13:22 2008
+++ SPECS/conky.specWed Jun 18 22:14:51 2008
@@ -14,6 +14,7 @@
 BuildRequires: automake
 BuildRequires: expat-devel
 BuildRequires: freetype-devel
+BuildRequires: libtool
 BuildRequires: xorg-lib-libXext-devel
 BuildRequires: xorg-lib-libXft-devel
 BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
@@ -67,6 +68,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.21  2008/06/18 20:14:51  qboosh
+- BR: libtool
+
 Revision 1.20  2008/06/18 20:13:22  gzohop
 - libtool
 


 CVS-web:

http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/SPECS/conky.spec?r1=1.20r2=1.21f=u

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


SPECS: xulrunner.spec - use the official tarball - remove ldap _noautoreq (...

2008-06-18 Thread glen
Author: glen Date: Wed Jun 18 20:19:44 2008 GMT
Module: SPECS Tag: HEAD
 Log message:
- use the official tarball
- remove ldap _noautoreq (wrong version and should be in mozldap instead)

 Files affected:
SPECS:
   xulrunner.spec (1.54 - 1.55) 

 Diffs:


Index: SPECS/xulrunner.spec
diff -u SPECS/xulrunner.spec:1.54 SPECS/xulrunner.spec:1.55
--- SPECS/xulrunner.spec:1.54   Wed Jun 18 22:09:14 2008
+++ SPECS/xulrunner.specWed Jun 18 22:19:38 2008
@@ -14,18 +14,20 @@
 %bcond_without kerberos# disable krb5 support
 %bcond_withmozldap # build with system mozldap
 #
-%definerel 0.2
-%definesubver  20080618
+
+%definerel0.3
+%definesubver20080618
 Summary:   XULRunner - Mozilla Runtime Environment for XUL+XPCOM 
applications
 Summary(pl.UTF-8): XULRunner - środowisko uruchomieniowe Mozilli dla 
aplikacji XUL+XPCOM
 Name:  xulrunner
 Version:   1.9
+# let's not do epoch bump just because our release was so high, let's wait for 
1.9.0.1 or sth
+# or just use version as 1.9.0.0 ?
 Release:   %{subver}.%{rel}
 License:   MPL v1.1 or GPL v2+ or LGPL v2.1+
 Group: X11/Applications
-#Source0:  
http://releases.mozilla.org/pub/mozilla.org/xulrunner/releases/1.9.0.0/source/%{name}-%{version}-source.tar.bz2
-Source0:   %{name}-%{version}-%{subver}-source.tar.bz2
-# Source0-md5: 01c53eb651f8d372c496dd67eb39957a
+Source0:   
http://releases.mozilla.org/pub/mozilla.org/xulrunner/releases/1.9.0.0/source/%{name}-%{version}-source.tar.bz2
+# Source0-md5: a9f86e3b7f57d404739008cb6c2ca181
 Patch0:%{name}-ldap-with-nss.patch
 Patch1:%{name}-install.patch
 Patch2:%{name}-pc.patch
@@ -80,7 +82,7 @@
 # we don't want these to satisfy xulrunner-devel [???]
 %define_noautoprov libmozjs.so libxpcom.so
 # no need to require them (we have strict deps for these)
-%define_noautoreq  libgtkembedmoz.so libldap50.so 
libmozjs.so libprldap50.so libssldap50.so libxpcom.so libxul.so
+%define_noautoreq  libgtkembedmoz.so libmozjs.so 
libxpcom.so libxul.so
 
 %description
 XULRunner is a Mozilla runtime package that can be used to bootstrap
@@ -505,6 +507,10 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.55  2008/06/18 20:19:38  glen
+- use the official tarball
+- remove ldap _noautoreq (wrong version and should be in mozldap instead)
+
 Revision 1.54  2008/06/18 20:09:14  qboosh
 - there is official tarball now
 


 CVS-web:

http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/SPECS/xulrunner.spec?r1=1.54r2=1.55f=u

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


DISTFILES: ERRORS: xulrunner-1.9-source.tar.bz2

2008-06-18 Thread glen
FATAL: 
http://releases.mozilla.org/pub/mozilla.org/xulrunner/releases/1.9.0.0/source/xulrunner-1.9-source.tar.bz2
 md5 mismatch, needed a9f86e3b7f57d404739008cb6c2ca181, got 
4210ae0801df2eb498408533010d97c1

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


SPECS: binutils.spec - gold bcond

2008-06-18 Thread adamg
Author: adamgDate: Wed Jun 18 20:26:17 2008 GMT
Module: SPECS Tag: HEAD
 Log message:
- gold bcond

 Files affected:
SPECS:
   binutils.spec (1.290 - 1.291) 

 Diffs:


Index: SPECS/binutils.spec
diff -u SPECS/binutils.spec:1.290 SPECS/binutils.spec:1.291
--- SPECS/binutils.spec:1.290   Wed Jun 18 21:59:08 2008
+++ SPECS/binutils.spec Wed Jun 18 22:26:12 2008
@@ -3,8 +3,13 @@
 # Conditional build:
 %bcond_withallarchs# enable all targets
 # define addtargets x,y,z  # build with additional targets x,y,z (e.g. 
x86_64-linux)
+%bcond_withgold# disable gold (gnu ld successor) on supported 
archs (x86/sparc)
 %bcond_without pax # without PaX flags (for upstream bugreports)
 #
+%ifnarch %ix86 %x8664 sparc
+%definewith_gold   0
+%endif
+#
 Summary:   GNU Binary Utility Development Utilities
 Summary(de.UTF-8): GNU Binary Utility Development Utilities
 Summary(es.UTF-8): Utilitarios para desarrollo de binarios de la GNU
@@ -200,7 +205,8 @@
 %else
%{?with_allarchs:--enable-64-bit-bfd} \
 %endif
-   
%{?with_allarchs:--enable-targets=alpha-linux,arm-linux,cris-linux,hppa-linux,i386-linux,ia64-linux,x86_64-linux,m68k-linux,mips-linux,mips64-linux,mips64el-linux,mipsel-linux,ppc-linux,s390-linux,s390x-linux,sh-linux,sparc-linux,sparc64-linux,i386-linuxaout}
+   
%{?with_allarchs:--enable-targets=alpha-linux,arm-linux,cris-linux,hppa-linux,i386-linux,ia64-linux,x86_64-linux,m68k-linux,mips-linux,mips64-linux,mips64el-linux,mipsel-linux,ppc-linux,s390-linux,s390x-linux,sh-linux,sparc-linux,sparc64-linux,i386-linuxaout}
 \
+   %{?with_gold:--enable-gold}
 
 %{__make} -j1 configure-bfd
 %{__make} -j1 headers -C bfd
@@ -238,7 +244,10 @@
 %find_lang binutils
 %find_lang gas
 %find_lang gprof
+touch ld.lang
+%if %{without gold}
 %find_lang ld
+%endif
 %find_lang opcodes
 cat bfd.lang opcodes.lang  %{name}-libs.lang
 cat gas.lang gprof.lang ld.lang  %{name}.lang
@@ -266,12 +275,14 @@
 %doc README
 %attr(755,root,root) %{_bindir}/[!g]*
 %attr(755,root,root) %{_bindir}/g[!a]*
-%{_prefix}/lib/ldscripts
 %{_infodir}/as.info*
 %{_infodir}/binutils.info*
 %{_infodir}/configure.info*
 %{_infodir}/gprof.info*
+%if %{without gold}
 %{_infodir}/ld.info*
+%{_prefix}/lib/ldscripts
+%endif
 %{_mandir}/man1/*
 %lang(cs) %{_mandir}/cs/man1/*
 %lang(de) %{_mandir}/de/man1/*
@@ -313,6 +324,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.291  2008/06/18 20:26:12  adamg
+- gold bcond
+
 Revision 1.290  2008/06/18 19:59:08  arekm
 - rel 2
 


 CVS-web:

http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/SPECS/binutils.spec?r1=1.290r2=1.291f=u

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


SPECS: xulrunner.spec - damn need to resolve the controller caching issues ...

2008-06-18 Thread glen
Author: glen Date: Wed Jun 18 20:28:42 2008 GMT
Module: SPECS Tag: HEAD
 Log message:
- damn need to resolve the controller caching issues here in toothy (10024380 
ahci ATI Technologies Inc|SB600 Non-Raid-5 SATA)

 Files affected:
SPECS:
   xulrunner.spec (1.55 - 1.56) 

 Diffs:


Index: SPECS/xulrunner.spec
diff -u SPECS/xulrunner.spec:1.55 SPECS/xulrunner.spec:1.56
--- SPECS/xulrunner.spec:1.55   Wed Jun 18 22:19:38 2008
+++ SPECS/xulrunner.specWed Jun 18 22:28:36 2008
@@ -27,7 +27,7 @@
 License:   MPL v1.1 or GPL v2+ or LGPL v2.1+
 Group: X11/Applications
 Source0:   
http://releases.mozilla.org/pub/mozilla.org/xulrunner/releases/1.9.0.0/source/%{name}-%{version}-source.tar.bz2
-# Source0-md5: a9f86e3b7f57d404739008cb6c2ca181
+# Source0-md5: 4210ae0801df2eb498408533010d97c1
 Patch0:%{name}-ldap-with-nss.patch
 Patch1:%{name}-install.patch
 Patch2:%{name}-pc.patch
@@ -507,6 +507,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.56  2008/06/18 20:28:36  glen
+- damn need to resolve the controller caching issues here in toothy (10024380 
ahci ATI Technologies Inc|SB600 Non-Raid-5 SATA)
+
 Revision 1.55  2008/06/18 20:19:38  glen
 - use the official tarball
 - remove ldap _noautoreq (wrong version and should be in mozldap instead)


 CVS-web:

http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/SPECS/xulrunner.spec?r1=1.55r2=1.56f=u

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


DISTFILES: xulrunner-1.9-source.tar.bz2

2008-06-18 Thread glen

Files fetched: 1

STORED: 
http://releases.mozilla.org/pub/mozilla.org/xulrunner/releases/1.9.0.0/source/xulrunner-1.9-source.tar.bz2
4210ae0801df2eb498408533010d97c1  xulrunner-1.9-source.tar.bz2
Size: 37010746 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


SPECS: xulrunner.spec - as long system nss is not used the nss library deps...

2008-06-18 Thread glen
Author: glen Date: Wed Jun 18 20:37:31 2008 GMT
Module: SPECS Tag: HEAD
 Log message:
- as long system nss is not used the nss library deps should not be provided 
nor required outside (some applies to firefox3 package)

 Files affected:
SPECS:
   xulrunner.spec (1.56 - 1.57) 

 Diffs:


Index: SPECS/xulrunner.spec
diff -u SPECS/xulrunner.spec:1.56 SPECS/xulrunner.spec:1.57
--- SPECS/xulrunner.spec:1.56   Wed Jun 18 22:28:36 2008
+++ SPECS/xulrunner.specWed Jun 18 22:37:26 2008
@@ -7,15 +7,17 @@
 #   - even if platform.ini is found and parsed test application doesn't work
 # eihter some files are missing or again xulrunner looks for theme in
 # wrong paths, check  debug  fix it somehow
+#   - use system nss
 #
 # Conditional build:
 %bcond_withtests   # enable tests (whatever they check)
 %bcond_without gnome   # disable all GNOME components (gnomevfs, 
gnome, gnomeui)
 %bcond_without kerberos# disable krb5 support
 %bcond_withmozldap # build with system mozldap
+%bcond_withsystem_nss  # use system nss
 #
 
-%definerel0.3
+%definerel0.4
 %definesubver20080618
 Summary:   XULRunner - Mozilla Runtime Environment for XUL+XPCOM 
applications
 Summary(pl.UTF-8): XULRunner - środowisko uruchomieniowe Mozilli dla 
aplikacji XUL+XPCOM
@@ -56,7 +58,7 @@
 BuildRequires: libstdc++-devel
 %{?with_mozldap:BuildRequires: mozldap-devel = 6.0}
 BuildRequires: nspr-devel = 1:4.6.4
-BuildRequires: nss-devel = 1:3.11.3-3
+%{?with_system_nss:BuildRequires:  nss-devel = 1:3.11.3-3}
 BuildRequires: pango-devel = 1:1.6.0
 BuildRequires: perl-modules = 5.004
 BuildRequires: pkgconfig
@@ -74,15 +76,21 @@
 Requires:  %{name}-libs = %{version}-%{release}
 Requires:  browser-plugins = 2.0
 Requires:  nspr = 1:4.6.4
-Requires:  nss = 1:3.11.3
+%{?with_system_nss:Requires:   nss = 1:3.11.3}
 BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
 
 %definespecflags   -fno-strict-aliasing
 
-# we don't want these to satisfy xulrunner-devel [???]
-%define_noautoprov libmozjs.so libxpcom.so
+%if %{without system_nss}
+%definenssdeps libfreebl3.so libnss3.so libnssckbi.so 
libnssdbm3.so libnssutil3.so libsmime3.so libsoftokn3.so libsqlite3.so 
libssl3.so
+%else
+%definenssdeps %{nil}
+%endif
+
+# we don't want these to satisfy other mozilla.org products -devel
+%define_noautoprov libmozjs.so libxpcom.so %{nssdeps}
 # no need to require them (we have strict deps for these)
-%define_noautoreq  libgtkembedmoz.so libmozjs.so 
libxpcom.so libxul.so
+%define_noautoreq  libgtkembedmoz.so libmozjs.so 
libxpcom.so libxul.so %{nssdeps}
 
 %description
 XULRunner is a Mozilla runtime package that can be used to bootstrap
@@ -117,7 +125,7 @@
 Group: X11/Development/Libraries
 Requires:  %{name}-libs = %{version}-%{release}
 Requires:  nspr-devel = 1:4.6.4
-Requires:  nss-devel = 1:3.11.3
+%{?with_system_nssl:Requires:  nss-devel = 1:3.11.3}
 Obsoletes: mozilla-devel
 Obsoletes: mozilla-firefox-devel
 Obsoletes: seamonkey-devel
@@ -334,7 +342,7 @@
 
 %attr(755,root,root) %{_libdir}/%{name}/plugins/*.so
 
-# TODO system nss!
+%if %{without system_nss}
 %{_libdir}/%{name}/libfreebl3.chk
 %{_libdir}/%{name}/libsoftokn3.chk
 %attr(755,root,root) %{_libdir}/%{name}/libfreebl3.so
@@ -346,6 +354,7 @@
 %attr(755,root,root) %{_libdir}/%{name}/libsoftokn3.so
 %attr(755,root,root) %{_libdir}/%{name}/libsqlite3.so
 %attr(755,root,root) %{_libdir}/%{name}/libssl3.so
+%endif
 
 %attr(755,root,root) %{_libdir}/%{name}/libjemalloc.so
 
@@ -507,6 +516,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.57  2008/06/18 20:37:26  glen
+- as long system nss is not used the nss library deps should not be provided 
nor required outside (some applies to firefox3 package)
+
 Revision 1.56  2008/06/18 20:28:36  glen
 - damn need to resolve the controller caching issues here in toothy (10024380 
ahci ATI Technologies Inc|SB600 Non-Raid-5 SATA)
 


 CVS-web:

http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/SPECS/xulrunner.spec?r1=1.56r2=1.57f=u

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


SPECS: bzr-gtk.spec - Release 2. More dirs added.

2008-06-18 Thread matkor
Author: matkor   Date: Wed Jun 18 20:42:35 2008 GMT
Module: SPECS Tag: HEAD
 Log message:
- Release 2. More dirs added.

 Files affected:
SPECS:
   bzr-gtk.spec (1.15 - 1.16) 

 Diffs:


Index: SPECS/bzr-gtk.spec
diff -u SPECS/bzr-gtk.spec:1.15 SPECS/bzr-gtk.spec:1.16
--- SPECS/bzr-gtk.spec:1.15 Thu May 15 14:46:17 2008
+++ SPECS/bzr-gtk.spec  Wed Jun 18 22:42:30 2008
@@ -10,7 +10,7 @@
 %definever 0.94
 %defineminor   0
 Version:   %{ver}.%{minor}
-Release:   1
+Release:   2
 License:   GPL v2+
 Group: Development/Version Control
 # Source0: 
https://launchpad.net/bzr-gtk/%{ver}/%{version}/+download/bzr-gtk-%{version}.tar.gz
@@ -90,8 +90,10 @@
 %{_desktopdir}/bzr-handle-patch.desktop
 %{_desktopdir}/olive-gtk.desktop
 
+%{_datadir}/application-registry
 %{_datadir}/application-registry/bzr-gtk.applications
-%{_datadir}/bzr-gtk/icons
+%{_datadir}/bzr-gtk
+#%%{_datadir}/bzr-gtk/icons
 %{_datadir}/icons/hicolor/scalable/emblems/
 %{_datadir}/pixmaps/bzr-icon-64.png
 
@@ -101,6 +103,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.16  2008/06/18 20:42:30  matkor
+- Release 2. More dirs added.
+
 Revision 1.15  2008/05/15 12:46:17  matkor
 Version 0.94-1 with one simple fixed applied.
 


 CVS-web:

http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/SPECS/bzr-gtk.spec?r1=1.15r2=1.16f=u

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


SPECS: babl.spec - 0.0.22

2008-06-18 Thread wolf
Author: wolf Date: Wed Jun 18 21:35:02 2008 GMT
Module: SPECS Tag: HEAD
 Log message:
- 0.0.22

 Files affected:
SPECS:
   babl.spec (1.7 - 1.8) 

 Diffs:


Index: SPECS/babl.spec
diff -u SPECS/babl.spec:1.7 SPECS/babl.spec:1.8
--- SPECS/babl.spec:1.7 Sat Mar  1 21:51:33 2008
+++ SPECS/babl.spec Wed Jun 18 23:34:57 2008
@@ -2,12 +2,12 @@
 Summary:   Library for pixel-format agnosticism
 Summary(pl.UTF-8): Biblioteka niezależności od formatu piksela
 Name:  babl
-Version:   0.0.20
+Version:   0.0.22
 Release:   1
 License:   LGPL v3+
 Group: Libraries
 Source0:   ftp://ftp.gtk.org/pub/babl/0.0/%{name}-%{version}.tar.bz2
-# Source0-md5: dbf67b333b0812dfe0d0f057864b0f9a
+# Source0-md5: b821ce696b40feb74552da9d666defad
 Patch0:%{name}-as-needed.patch
 URL:   http://www.gegl.org/babl/
 BuildRequires: autoconf = 2.54
@@ -103,7 +103,10 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
-Revision 1.7  2008/03/01 20:51:33  qboosh
+Revision 1.8  2008/06/18 21:34:57  wolf
+- 0.0.22
+
+Revision 1.7  2008-03-01 20:51:33  qboosh
 - LGPL v3 now
 
 Revision 1.6  2008-02-29 19:29:47  megabajt


 CVS-web:

http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/SPECS/babl.spec?r1=1.7r2=1.8f=u

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


DISTFILES: babl-0.0.22.tar.bz2

2008-06-18 Thread wolf

Files fetched: 1

STORED: ftp://ftp.gtk.org/pub/babl/0.0/babl-0.0.22.tar.bz2
b821ce696b40feb74552da9d666defad  babl-0.0.22.tar.bz2
Size: 396413 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


SPECS: gegl.spec - 0.0.18

2008-06-18 Thread wolf
Author: wolf Date: Wed Jun 18 21:43:00 2008 GMT
Module: SPECS Tag: HEAD
 Log message:
- 0.0.18

 Files affected:
SPECS:
   gegl.spec (1.5 - 1.6) 

 Diffs:


Index: SPECS/gegl.spec
diff -u SPECS/gegl.spec:1.5 SPECS/gegl.spec:1.6
--- SPECS/gegl.spec:1.5 Sat Mar  1 22:12:57 2008
+++ SPECS/gegl.spec Wed Jun 18 23:42:55 2008
@@ -2,12 +2,12 @@
 Summary:   Generic image processing library
 Summary(pl.UTF-8): Ogólna biblioteka przetwarzania obrazu
 Name:  gegl
-Version:   0.0.16
+Version:   0.0.18
 Release:   1
 License:   LGPL v3+
 Group: Libraries
 Source0:   ftp://ftp.gtk.org/pub/gegl/0.0/%{name}-%{version}.tar.bz2
-# Source0-md5: fd49cb219ece97f4677554db4a2c02d1
+# Source0-md5: e458409440a7b51f446df321c3657e4d
 Patch0:%{name}-lua.patch
 URL:   http://www.gegl.org/
 BuildRequires: OpenEXR-devel
@@ -15,7 +15,7 @@
 BuildRequires: asciidoc
 BuildRequires: autoconf = 2.54
 BuildRequires: automake
-BuildRequires: babl-devel = 0.0.20
+BuildRequires: babl-devel = 0.0.22
 BuildRequires: cairo-devel
 BuildRequires: enscript
 BuildRequires: ffmpeg-devel
@@ -148,7 +148,10 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
-Revision 1.5  2008/03/01 21:12:57  qboosh
+Revision 1.6  2008/06/18 21:42:55  wolf
+- 0.0.18
+
+Revision 1.5  2008-03-01 21:12:57  qboosh
 - LGPL v3 now
 - more BRs
 - use real glib2 dep


 CVS-web:

http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/SPECS/gegl.spec?r1=1.5r2=1.6f=u

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


DISTFILES: gegl-0.0.18.tar.bz2

2008-06-18 Thread wolf

Files fetched: 1

STORED: ftp://ftp.gtk.org/pub/gegl/0.0/gegl-0.0.18.tar.bz2
e458409440a7b51f446df321c3657e4d  gegl-0.0.18.tar.bz2
Size: 1204867 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


SOURCES: mono-ARG_MAX.patch (NEW) - fix build with glibc 2.8 (based on patc...

2008-06-18 Thread qboosh
Author: qboosh   Date: Wed Jun 18 21:48:11 2008 GMT
Module: SOURCES   Tag: HEAD
 Log message:
- fix build with glibc 2.8 (based on patch from gentoo)

 Files affected:
SOURCES:
   mono-ARG_MAX.patch (NONE - 1.1)  (NEW)

 Diffs:


Index: SOURCES/mono-ARG_MAX.patch
diff -u /dev/null SOURCES/mono-ARG_MAX.patch:1.1
--- /dev/null   Wed Jun 18 23:48:12 2008
+++ SOURCES/mono-ARG_MAX.patch  Wed Jun 18 23:48:05 2008
@@ -0,0 +1,16 @@
+--- mono-1.9.1/mono/io-layer/wapi_glob.c.orig  2007-11-08 23:07:22.0 
+0100
 mono-1.9.1/mono/io-layer/wapi_glob.c   2008-06-18 21:55:40.512789881 
+0200
+@@ -54,6 +54,13 @@
+ 
+ #include wapi_glob.h
+ 
++#if defined(_SC_ARG_MAX)
++# if defined(ARG_MAX)
++#undef ARG_MAX
++# endif
++# define ARG_MAX sysconf (_SC_ARG_MAX)
++#endif
++
+ #define   EOS '\0'
+ #define   NOT '!'
+ #define   QUESTION'?'

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


SPECS: mono.spec - updated to 1.9.1 - added ARG_MAX patch

2008-06-18 Thread qboosh
Author: qboosh   Date: Wed Jun 18 21:48:48 2008 GMT
Module: SPECS Tag: HEAD
 Log message:
- updated to 1.9.1
- added ARG_MAX patch

 Files affected:
SPECS:
   mono.spec (1.228 - 1.229) 

 Diffs:


Index: SPECS/mono.spec
diff -u SPECS/mono.spec:1.228 SPECS/mono.spec:1.229
--- SPECS/mono.spec:1.228   Fri Apr 11 22:38:27 2008
+++ SPECS/mono.spec Wed Jun 18 23:48:42 2008
@@ -17,19 +17,20 @@
 Summary:   Common Language Infrastructure implementation
 Summary(pl.UTF-8): Implementacja Common Language Infrastructure
 Name:  mono
-Version:   1.9
+Version:   1.9.1
 Release:   1
 License:   LGPL (VM), GPL (C# compilers), MIT X11 with GPL additions 
(classes, tools)
 Group: Development/Languages
-# Source0Download: http://go-mono.com/sources-stable/
-Source0:   http://go-mono.com/sources/mono/%{name}-%{version}.tar.bz2
-# Source0-md5: 371158ca0bbd9d6fb391d9c0f9834529
+# latest downloads summary at http://ftp.novell.com/pub/mono/sources-stable/
+Source0:   
http://ftp.novell.com/pub/mono/sources/mono/%{name}-%{version}.tar.bz2
+# Source0-md5: 6610c3b999d791553a9dc21059ca9d35
 Patch0:%{name}-alpha-float.patch
 Patch1:%{name}-mint.patch
 Patch2:%{name}-sonames.patch
 Patch3:%{name}-awk.patch
 Patch4:%{name}-console-no-utf8-bom.patch
 Patch5:%{name}-pc.patch
+Patch6:%{name}-ARG_MAX.patch
 URL:   http://www.mono-project.com/
 %if %(test -r /dev/random; echo $?)
 BuildRequires: ACCESSIBLE_/dev/random
@@ -208,6 +209,7 @@
 %patch3 -p1
 %patch4 -p1
 %patch5 -p1
+%patch6 -p1
 
 # for jay
 cat mcs/build/config-default.make EOF
@@ -585,6 +587,10 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.229  2008/06/18 21:48:42  qboosh
+- updated to 1.9.1
+- added ARG_MAX patch
+
 Revision 1.228  2008/04/11 20:38:27  qboosh
 - +sparcv9
 


 CVS-web:

http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/SPECS/mono.spec?r1=1.228r2=1.229f=u

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


PLDWWW: Machines/atlas

2008-06-18 Thread arekm
Author: arekm   Date: Wed Jun 18 22:39:07 2008 GMT
Module: PLDWWW   URL: 
http://www.pld-linux.org/Machines/atlas?action=diffrev2=4rev1=3
 Log message:
now online, ti builder is comming

 Page affected: Machines/atlas

 Diffs:


The comment on the change is:
now online, ti builder is comming

   * Memory: 4G [http://en.wikipedia.org/wiki/FB-DIMM FB-DIMM]
   * Disk space: 2 x 750GB SATA (RAID1); 
[http://www.intel.com/support/motherboards/server/srcsas144e/ Intel SRCSAS144E] 
hardware raid; (4 bays still empty)
   * Bandwidth: 10Mbps
-  * Status: offline
+  * Status: online
   * Description:
  
___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


DISTFILES: mono-1.9.1.tar.bz2

2008-06-18 Thread qboosh

Files fetched: 1

STORED: http://ftp.novell.com/pub/mono/sources/mono/mono-1.9.1.tar.bz2
6610c3b999d791553a9dc21059ca9d35  mono-1.9.1.tar.bz2
Size: 18429855 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


PLDWWW: Machines

2008-06-18 Thread arekm
Author: arekm   Date: Wed Jun 18 22:40:18 2008 GMT
Module: PLDWWW   URL: 
http://www.pld-linux.org/Machines?action=diffrev2=49rev1=48
 Log message:


 Page affected: Machines

 Diffs:


   * [wiki:/aksjomat aksjomat] Ac athlon/i386/i586/i686 builder
   * [wiki:/alpha alpha] Ac alpha builder
   * [wiki:/aragorn aragorn] Th i486 builder (soon)
+  * [wiki:/atlas atlas]
   * [wiki:/carme carme] Backup archives, Developers' machine
   * [wiki:/ep09 ep09] jabber, cvs, svn, primary FTP, distfiles, Ac/Th/Ti src 
builder
   * [wiki:/fiskus fiskus] Ac sparc64 builder
___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit


SPECS (DEVEL): gimp.spec - 2.5.1

2008-06-18 Thread wolf
Author: wolf Date: Wed Jun 18 21:59:34 2008 GMT
Module: SPECS Tag: DEVEL
 Log message:
- 2.5.1

 Files affected:
SPECS:
   gimp.spec (1.218.2.67 - 1.218.2.68) 

 Diffs:


Index: SPECS/gimp.spec
diff -u SPECS/gimp.spec:1.218.2.67 SPECS/gimp.spec:1.218.2.68
--- SPECS/gimp.spec:1.218.2.67  Sun Apr 13 15:46:43 2008
+++ SPECS/gimp.spec Wed Jun 18 23:59:28 2008
@@ -23,13 +23,13 @@
 Summary(zh_CN.UTF-8):  [图像]GNU图象处理工具
 Summary(zh_TW.UTF-8):  [圖像]GNU圖象處理工具
 Name:  gimp
-Version:   2.5.0
+Version:   2.5.1
 Release:   1
 Epoch: 1
 License:   GPL v2+
 Group: X11/Applications/Graphics
 Source0:   ftp://ftp.gimp.org/pub/gimp/v2.5/%{name}-%{version}.tar.bz2
-# Source0-md5: 8ba5d24c700b495e8a9f32743369c925
+# Source0-md5: da2a6ffd8ed5e137d34784ef3fba9a04
 Patch0:%{name}-home_etc.patch
 Patch1:%{name}-desktop.patch
 Patch2:%{name}-gcc4.patch
@@ -38,9 +38,10 @@
 BuildRequires: alsa-lib-devel = 1.0.11
 BuildRequires: autoconf = 2.54
 BuildRequires: automake
+BuildRequires: babl-devel = 0.0.22
 BuildRequires: curl-devel = 7.15.1
 BuildRequires: dbus-devel = 0.70
-BuildRequires: gegl-devel
+BuildRequires: gegl-devel = 0.0.18
 BuildRequires: gettext-devel
 BuildRequires: giflib-devel
 BuildRequires: glib2-devel = 1:2.12.3
@@ -49,7 +50,6 @@
 BuildRequires: hal-devel = 0.5.7
 BuildRequires: intltool = 0.35.0
 BuildRequires: lcms-devel
-BuildRequires: libart_lgpl-devel
 BuildRequires: libexif-devel = 0.6.15
 BuildRequires: libgtkhtml-devel = 2.6.3
 BuildRequires: libjpeg-devel
@@ -503,7 +503,10 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
-Revision 1.218.2.67  2008/04/13 13:46:43  wolf
+Revision 1.218.2.68  2008/06/18 21:59:28  wolf
+- 2.5.1
+
+Revision 1.218.2.67  2008-04-13 13:46:43  wolf
 - 2.5.0
 - removed nonsense description
 


 CVS-web:

http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/SPECS/gimp.spec?r1=1.218.2.67r2=1.218.2.68f=u

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


DISTFILES: gimp-2.5.1.tar.bz2

2008-06-18 Thread wolf

Files fetched: 1

STORED: ftp://ftp.gimp.org/pub/gimp/v2.5/gimp-2.5.1.tar.bz2
da2a6ffd8ed5e137d34784ef3fba9a04  gimp-2.5.1.tar.bz2
Size: 18205531 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


SPECS: mono-basic.spec - updated to 1.9

2008-06-18 Thread qboosh
Author: qboosh   Date: Wed Jun 18 22:03:52 2008 GMT
Module: SPECS Tag: HEAD
 Log message:
- updated to 1.9

 Files affected:
SPECS:
   mono-basic.spec (1.10 - 1.11) 

 Diffs:


Index: SPECS/mono-basic.spec
diff -u SPECS/mono-basic.spec:1.10 SPECS/mono-basic.spec:1.11
--- SPECS/mono-basic.spec:1.10  Sat Dec 15 19:26:39 2007
+++ SPECS/mono-basic.spec   Thu Jun 19 00:03:46 2008
@@ -2,13 +2,13 @@
 Summary:   MonoBASIC compiler for mono
 Summary(pl.UTF-8): Kompilator MonoBASIC dla mono
 Name:  mono-basic
-Version:   1.2.6
+Version:   1.9
 Release:   1
 License:   MIT-like/LGPL
 Group: Development/Languages
-#Source0Download: http://go-mono.com/sources-stable/
-Source0:   http://go-mono.com/sources/mono-basic/%{name}-%{version}.tar.bz2
-# Source0-md5: c33df73a581d38b79e0d20019878f70f
+# latest downloads summary at http://ftp.novell.com/pub/mono/sources-stable/
+Source0:   
http://ftp.novell.com/pub/mono/sources/mono-basic/%{name}-%{version}.tar.bz2
+# Source0-md5: 45b298da5c1e3ff696c0319add5f7962
 URL:   http://www.mono-project.com/
 BuildRequires: mono-csharp
 ExcludeArch:   i386
@@ -51,6 +51,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.11  2008/06/18 22:03:46  qboosh
+- updated to 1.9
+
 Revision 1.10  2007/12/15 18:26:39  qboosh
 - updated URLs
 


 CVS-web:

http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/SPECS/mono-basic.spec?r1=1.10r2=1.11f=u

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


  1   2   >