SPECS: alpine.spec - patchlevel 10

2007-12-20 Thread blues
Author: bluesDate: Thu Dec 20 08:22:09 2007 GMT
Module: SPECS Tag: HEAD
 Log message:
- patchlevel 10

 Files affected:
SPECS:
   alpine.spec (1.41 - 1.42) 

 Diffs:


Index: SPECS/alpine.spec
diff -u SPECS/alpine.spec:1.41 SPECS/alpine.spec:1.42
--- SPECS/alpine.spec:1.41  Wed Dec 19 16:09:31 2007
+++ SPECS/alpine.spec   Thu Dec 20 09:22:03 2007
@@ -7,9 +7,9 @@
 Summary(pl.UTF-8): Klient pocztowy Alpine z Uniwersytetu w Waszyngtonie
 Name:  alpine
 %definever 0.99
-%definepatchlevel  9
+%definepatchlevel  10
 Version:   %{ver}.%{patchlevel}
-Release:   2
+Release:   1
 Epoch: 1
 License:   Apache License 2.0
 Group: Applications/Mail
@@ -17,7 +17,7 @@
 #Source0:  ftp://ftp.cac.washington.edu/alpine/%{name}-%{version}.tar.gz
 # Source with applied patches from http://staff.washington.edu/chappa/alpine/
 Source0:   
http://staff.washington.edu/chappa/alpine/patches/alpine-%{ver}/%{name}-%{ver}_%{patchlevel}.tar.gz
-# Source0-md5: f860ef6978535bb762e789cd9a3a8085
+# Source0-md5: eb246f71450880b80f9775032b2b6842
 Source1:   pico.desktop
 Source2:   %{name}.desktop
 Source3:   %{name}.png
@@ -219,6 +219,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.42  2007-12-20 08:22:03  blues
+- patchlevel 10
+
 Revision 1.41  2007-12-19 15:09:31  blues
 - rel.2 (rel.1 for AC)
 


 CVS-web:

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

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


DISTFILES: alpine-0.999999_10.tar.gz

2007-12-20 Thread blues

Files fetched: 1

STORED: 
http://staff.washington.edu/chappa/alpine/patches/alpine-0.99/alpine-0.99_10.tar.gz
eb246f71450880b80f9775032b2b6842  alpine-0.99_10.tar.gz
Size: 6516193 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: pure-ftpd-sleep.patch (NEW) - sleep first and THEN say 'n...

2007-12-20 Thread arekm
Author: arekmDate: Thu Dec 20 08:45:05 2007 GMT
Module: SOURCES   Tag: HEAD
 Log message:
- sleep first and THEN say 'no auth', not the other way

 Files affected:
SOURCES:
   pure-ftpd-sleep.patch (NONE - 1.1)  (NEW)

 Diffs:


Index: SOURCES/pure-ftpd-sleep.patch
diff -u /dev/null SOURCES/pure-ftpd-sleep.patch:1.1
--- /dev/null   Thu Dec 20 09:45:05 2007
+++ SOURCES/pure-ftpd-sleep.patch   Thu Dec 20 09:45:00 2007
@@ -0,0 +1,57 @@
+--- pure-ftpd/src/ftpd.c.org   2007-12-20 09:23:58.180941494 +0100
 pure-ftpd/src/ftpd.c   2007-12-20 09:34:06.613793269 +0100
+@@ -1532,6 +1532,11 @@
+ return chdir(home);
+ }
+ 
++static void randomsleep(unsigned int t) {
++usleep2((unsigned long) (zrand() % PASSWD_FAILURE_DELAY));
++usleep2(t * PASSWD_FAILURE_DELAY);
++}
++
+ void dopass(char *password)
+ {
+ static unsigned int tapping;
+@@ -1572,27 +1577,26 @@
+ }
+ }
+ if (authresult.auth_ok != 1) {
+-addreply_noformat(530, MSG_AUTH_FAILED);
+-doreply();
+-if (tapping = MAX_PASSWD_TRIES) {
+-toomanytries:
+-logfile(LOG_ERR, MSG_AUTH_TOOMANY);
+-_EXIT(EXIT_FAILURE);
+-}
+-logfile(LOG_WARNING, MSG_AUTH_FAILED_LOG, account);
+-randomsleep:
+ tapping++;
+-usleep2((unsigned long) (zrand() % PASSWD_FAILURE_DELAY));
+-usleep2(tapping * PASSWD_FAILURE_DELAY);
++  randomsleep(tapping);
++  addreply_noformat(530, MSG_AUTH_FAILED);
++  doreply();
++  if (tapping  MAX_PASSWD_TRIES) {
++  logfile(LOG_ERR, MSG_AUTH_TOOMANY);
++  _EXIT(EXIT_FAILURE);
++  }
++  logfile(LOG_WARNING, MSG_AUTH_FAILED_LOG, account);
+ return;
+ }
+ if (authresult.uid  useruid) {
+ logfile(LOG_WARNING, MSG_ACCOUNT_DISABLED, account);
+-if (tapping = MAX_PASSWD_TRIES) {
+-goto toomanytries;
+-}
+-addreply_noformat(530, MSG_NOTRUST);
+-goto randomsleep;
++  randomsleep(tapping);
++if (tapping = MAX_PASSWD_TRIES)
++  addreply_noformat(530, MSG_AUTH_FAILED);
++  else
++  addreply_noformat(530, MSG_NOTRUST);
++  doreply();
++  _EXIT(EXIT_FAILURE);
+ }
+ 
+ #ifdef PER_USER_LIMITS

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


SPECS: pure-ftpd.spec - rel 11; sleep first and THEN say 'no auth'...

2007-12-20 Thread arekm
Author: arekmDate: Thu Dec 20 08:45:26 2007 GMT
Module: SPECS Tag: HEAD
 Log message:
- rel 11; sleep first and THEN say 'no auth', not the other way

 Files affected:
SPECS:
   pure-ftpd.spec (1.175 - 1.176) 

 Diffs:


Index: SPECS/pure-ftpd.spec
diff -u SPECS/pure-ftpd.spec:1.175 SPECS/pure-ftpd.spec:1.176
--- SPECS/pure-ftpd.spec:1.175  Wed Nov 14 16:06:28 2007
+++ SPECS/pure-ftpd.specThu Dec 20 09:45:21 2007
@@ -14,7 +14,7 @@
 Summary(pl.UTF-8): Mały, szybki i bezpieczny serwer FTP
 Name:  pure-ftpd
 Version:   1.0.21
-Release:   10%{?with_extra:extra}
+Release:   11%{?with_extra:extra}
 Epoch: 0
 License:   BSD-like%{?with_extra:, GLPv2 for pure-config due to libcfg+ 
license}
 Group: Daemons
@@ -36,6 +36,7 @@
 Patch6:%{name}-nonssl-die.patch
 Patch7:%{name}-del-log-path.patch
 Patch8:%{name}-anonymous.patch
+Patch9:%{name}-sleep.patch
 URL:   http://www.pureftpd.org/
 %{?with_extra:BuildRequires:   autoconf}
 %{?with_extra:BuildRequires:   automake}
@@ -117,6 +118,7 @@
 %patch6 -p0
 %patch7 -p1
 %patch8 -p1
+%patch9 -p1
 %{?with_extra:%patch1 -p1}
 %{?with_extra:%patch2 -p1}
 
@@ -247,6 +249,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.176  2007-12-20 08:45:21  arekm
+- rel 11; sleep first and THEN say 'no auth', not the other way
+
 Revision 1.175  2007-11-14 15:06:28  shadzik
 - rel 10 for rebuild with new mysql
 


 CVS-web:

http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/SPECS/pure-ftpd.spec?r1=1.175r2=1.176f=u

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


SOURCES: pure-ftpd-sleep.patch - correct version

2007-12-20 Thread arekm
Author: arekmDate: Thu Dec 20 09:09:52 2007 GMT
Module: SOURCES   Tag: HEAD
 Log message:
- correct version

 Files affected:
SOURCES:
   pure-ftpd-sleep.patch (1.1 - 1.2) 

 Diffs:


Index: SOURCES/pure-ftpd-sleep.patch
diff -u SOURCES/pure-ftpd-sleep.patch:1.1 SOURCES/pure-ftpd-sleep.patch:1.2
--- SOURCES/pure-ftpd-sleep.patch:1.1   Thu Dec 20 09:45:00 2007
+++ SOURCES/pure-ftpd-sleep.patch   Thu Dec 20 10:09:47 2007
@@ -1,6 +1,6 @@
 pure-ftpd/src/ftpd.c.org   2007-12-20 09:23:58.180941494 +0100
-+++ pure-ftpd/src/ftpd.c   2007-12-20 09:34:06.613793269 +0100
-@@ -1532,6 +1532,11 @@
+--- pure-ftpd/src/ftpd.c.orig  2007-12-20 09:59:10.629736723 +0100
 pure-ftpd/src/ftpd.c   2007-12-20 10:02:06.655676098 +0100
+@@ -1531,6 +1531,11 @@
  return chdir(home);
  }
  
@@ -12,7 +12,7 @@
  void dopass(char *password)
  {
  static unsigned int tapping;
-@@ -1572,27 +1577,26 @@
+@@ -1571,27 +1576,28 @@
  }
  }
  if (authresult.auth_ok != 1) {
@@ -40,18 +40,18 @@
  }
  if (authresult.uid  useruid) {
  logfile(LOG_WARNING, MSG_ACCOUNT_DISABLED, account);
--if (tapping = MAX_PASSWD_TRIES) {
++  randomsleep(tapping);
+ if (tapping = MAX_PASSWD_TRIES) {
 -goto toomanytries;
--}
++  addreply_noformat(530, MSG_AUTH_FAILED);
++  doreply();
++  _EXIT(EXIT_FAILURE);
+ }
 -addreply_noformat(530, MSG_NOTRUST);
 -goto randomsleep;
-+  randomsleep(tapping);
-+if (tapping = MAX_PASSWD_TRIES)
-+  addreply_noformat(530, MSG_AUTH_FAILED);
-+  else
-+  addreply_noformat(530, MSG_NOTRUST);
++  addreply_noformat(530, MSG_NOTRUST);
 +  doreply();
-+  _EXIT(EXIT_FAILURE);
++  return;
  }
  
  #ifdef PER_USER_LIMITS


 CVS-web:

http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/SOURCES/pure-ftpd-sleep.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: pure-ftpd.spec - rel 12; correct sleep version

2007-12-20 Thread arekm
Author: arekmDate: Thu Dec 20 09:10:23 2007 GMT
Module: SPECS Tag: HEAD
 Log message:
- rel 12; correct sleep version

 Files affected:
SPECS:
   pure-ftpd.spec (1.176 - 1.177) 

 Diffs:


Index: SPECS/pure-ftpd.spec
diff -u SPECS/pure-ftpd.spec:1.176 SPECS/pure-ftpd.spec:1.177
--- SPECS/pure-ftpd.spec:1.176  Thu Dec 20 09:45:21 2007
+++ SPECS/pure-ftpd.specThu Dec 20 10:10:15 2007
@@ -14,7 +14,7 @@
 Summary(pl.UTF-8): Mały, szybki i bezpieczny serwer FTP
 Name:  pure-ftpd
 Version:   1.0.21
-Release:   11%{?with_extra:extra}
+Release:   12%{?with_extra:extra}
 Epoch: 0
 License:   BSD-like%{?with_extra:, GLPv2 for pure-config due to libcfg+ 
license}
 Group: Daemons
@@ -249,6 +249,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.177  2007-12-20 09:10:15  arekm
+- rel 12; correct sleep version
+
 Revision 1.176  2007-12-20 08:45:21  arekm
 - rel 11; sleep first and THEN say 'no auth', not the other way
 


 CVS-web:

http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/SPECS/pure-ftpd.spec?r1=1.176r2=1.177f=u

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


SPECS: kernel-char-bristuff.spec (NEW) - new

2007-12-20 Thread adamg
Author: adamgDate: Thu Dec 20 09:38:25 2007 GMT
Module: SPECS Tag: HEAD
 Log message:
- new

 Files affected:
SPECS:
   kernel-char-bristuff.spec (NONE - 1.1)  (NEW)

 Diffs:


Index: SPECS/kernel-char-bristuff.spec
diff -u /dev/null SPECS/kernel-char-bristuff.spec:1.1
--- /dev/null   Thu Dec 20 10:38:25 2007
+++ SPECS/kernel-char-bristuff.spec Thu Dec 20 10:38:20 2007
@@ -0,0 +1,100 @@
+# $Revision$, $Date$
+#
+# Conditional build:
+%bcond_without dist_kernel # allow non-distribution kernel
+%bcond_without kernel  # don't build kernel modules
+%bcond_withverbose # verbose build (V=1)
+#
+
+%if %{without kernel}
+%undefine  with_dist_kernel
+%endif
+
+%definerel 0.1
+%definever 0.3.0-PRE-1y-k
+%definever2%(echo %ver | tr '-' '_')
+
+Summary:   Linux driver for bristuff
+Summary(pl.UTF-8): Sterownik linuksa do bristuff
+Name:  kernel%{_alt_kernel}-char-bristuff
+Version:   %{ver2}
+Release:   [EMAIL PROTECTED]
+License:   GPL
+Group: Base/Kernel
+Source0:   
http://212.91.251.199/~junghanns.net/downloads/bristuff-%{ver}.tar.gz
+# Source0-md5: 2c45a1955703b7f208310a9dd0a6b1f1
+URL:   http://212.91.251.199/~junghanns.net/downloads/
+%if %{with kernel}
+%{?with_dist_kernel:BuildRequires: kernel%{_alt_kernel}-module-build = 
3:2.6.20.2}
+BuildRequires: rpmbuild(macros) = 1.379
+%endif
+Buildrequires: zaptel-devel(bristuff)
+Requires(post,postun): /sbin/depmod
+%if %{with dist_kernel}
+%requires_releq_kernel
+Requires(postun):  %releq_kernel
+%endif
+BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
+
+%description
+This is driver for bristuff for Linux.
+
+This package contains Linux module.
+
+%description -l pl.UTF-8
+Sterownik dla Linuksa do bristuff.
+
+Ten pakiet zawiera moduł jądra Linuksa.
+
+%prep
+%setup -q -n bristuff-%{ver}
+for i in ztgsm qozap cwain zaphfc;
+do
+   echo obj-m += $i.o  $i/Makefile
+   echo CFLAGS += -I/usr/include/zaptel  $i/Makefile
+done
+
+%build
+%if %{with kernel}
+   for i in ztgsm qozap cwain zaphfc;
+   do
+   %build_kernel_modules -C $i -m $i
+   done
+%endif
+
+%install
+rm -rf $RPM_BUILD_ROOT
+
+%if %{with kernel}
+   for i in ztgsm qozap cwain zaphfc;
+   do
+   cd $i
+   %install_kernel_modules -m $i -d kernel/drivers/char
+   cd ..
+   done
+%endif
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%post
+%depmod %{_kernel_ver}
+
+%postun
+%depmod %{_kernel_ver}
+
+%if %{with kernel}
+%files -n kernel%{_alt_kernel}-char-bristuff
+%defattr(644,root,root,755)
+/lib/modules/%{_kernel_ver}/kernel/drivers/char/*.ko*
+%endif
+
+%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  2007-12-20 09:38:20  adamg
+- new
+

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


DISTFILES: bristuff-0.3.0-PRE-1y-k.tar.gz

2007-12-20 Thread adamg

Files fetched: 1

STORED: 
http://212.91.251.199/~junghanns.net/downloads/bristuff-0.3.0-PRE-1y-k.tar.gz
2c45a1955703b7f208310a9dd0a6b1f1  bristuff-0.3.0-PRE-1y-k.tar.gz
Size: 287296 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: pommed.spec (NEW) - initial - hmm, it probably needs some m...

2007-12-20 Thread shadzik
Author: shadzik  Date: Thu Dec 20 12:05:53 2007 GMT
Module: SPECS Tag: HEAD
 Log message:
- initial
- hmm, it probably needs some more BR's, probably an init-script too
- even subpackages would be nice

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

 Diffs:


Index: SPECS/pommed.spec
diff -u /dev/null SPECS/pommed.spec:1.1
--- /dev/null   Thu Dec 20 13:05:53 2007
+++ SPECS/pommed.spec   Thu Dec 20 13:05:48 2007
@@ -0,0 +1,54 @@
+# $Revision$, $Date$
+
+Summary:   pommed
+Summary(pl.UTF-8): pommed
+Name:  pommed
+Version:   1.14
+Release:   0.1
+License:   GPL v2
+Group: X11/Applications
+Source0:   
http://alioth.debian.org/frs/download.php/2223/%{name}-%{version}.tar.gz
+# Source0-md5: 1b54269bbadb6b43bd9e45566dd1b6ef
+URL:   http://www.technologeek.org/projects/pommed/
+BuildRequires: libconfuse-devel
+BuildRequires: libsmbios-devel
+BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
+
+%description
+
+%description -l pl.UTF-8
+
+%prep
+%setup -q
+
+%build
+%{__make}
+
+%install
+rm -rf $RPM_BUILD_ROOT
+install -d $RPM_BUILD_ROOT{%{_bindir},%{_sbindir}}
+
+install pommed/pommed $RPM_BUILD_ROOT/%{_sbindir}
+install gpomme/gpomme $RPM_BUILD_ROOT/%{_bindir}
+install wmpomme/wmpomme $RPM_BUILD_ROOT/%{_bindir}
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%files
+%defattr(644,root,root,755)
+%doc AUTHORS README TODO
+%attr(755,root,root) %{_bindir}/*pomme
+%attr(755,root,root) %{_sbindir}/pommed
+
+%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  2007-12-20 12:05:48  shadzik
+- initial
+- hmm, it probably needs some more BR's, probably an init-script too
+- even subpackages would be nice
+

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


DISTFILES: pommed-1.14.tar.gz

2007-12-20 Thread shadzik

Files fetched: 1

STORED: http://alioth.debian.org/frs/download.php/2223/pommed-1.14.tar.gz
1b54269bbadb6b43bd9e45566dd1b6ef  pommed-1.14.tar.gz
Size: 997497 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: pommed.spec - more gpomme files

2007-12-20 Thread shadzik
Author: shadzik  Date: Thu Dec 20 12:23:50 2007 GMT
Module: SPECS Tag: HEAD
 Log message:
- more gpomme files

 Files affected:
SPECS:
   pommed.spec (1.1 - 1.2) 

 Diffs:


Index: SPECS/pommed.spec
diff -u SPECS/pommed.spec:1.1 SPECS/pommed.spec:1.2
--- SPECS/pommed.spec:1.1   Thu Dec 20 13:05:48 2007
+++ SPECS/pommed.spec   Thu Dec 20 13:23:45 2007
@@ -4,7 +4,7 @@
 Summary(pl.UTF-8): pommed
 Name:  pommed
 Version:   1.14
-Release:   0.1
+Release:   0.2
 License:   GPL v2
 Group: X11/Applications
 Source0:   
http://alioth.debian.org/frs/download.php/2223/%{name}-%{version}.tar.gz
@@ -26,11 +26,12 @@
 
 %install
 rm -rf $RPM_BUILD_ROOT
-install -d $RPM_BUILD_ROOT{%{_bindir},%{_sbindir}}
+install -d $RPM_BUILD_ROOT{%{_bindir},%{_sbindir},%{_datadir}/gpomme/themes}
 
-install pommed/pommed $RPM_BUILD_ROOT/%{_sbindir}
-install gpomme/gpomme $RPM_BUILD_ROOT/%{_bindir}
-install wmpomme/wmpomme $RPM_BUILD_ROOT/%{_bindir}
+install pommed/pommed $RPM_BUILD_ROOT%{_sbindir}
+install gpomme/gpomme $RPM_BUILD_ROOT%{_bindir}
+install wmpomme/wmpomme $RPM_BUILD_ROOT%{_bindir}
+cp -R gpomme/themes/* $RPM_BUILD_ROOT%{_datadir}/gpomme/themes
 
 %clean
 rm -rf $RPM_BUILD_ROOT
@@ -40,6 +41,7 @@
 %doc AUTHORS README TODO
 %attr(755,root,root) %{_bindir}/*pomme
 %attr(755,root,root) %{_sbindir}/pommed
+%{_datadir}/gpomme
 
 %define date   %(echo `LC_ALL=C date +%a %b %d %Y`)
 %changelog
@@ -47,6 +49,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.2  2007-12-20 12:23:45  shadzik
+- more gpomme files
+
 Revision 1.1  2007-12-20 12:05:48  shadzik
 - initial
 - hmm, it probably needs some more BR's, probably an init-script too


 CVS-web:

http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/SPECS/pommed.spec?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: gimp.spec - missing BuildRequires libcap-devel

2007-12-20 Thread jezik
Author: jezikDate: Thu Dec 20 13:39:25 2007 GMT
Module: SPECS Tag: HEAD
 Log message:
- missing BuildRequires libcap-devel

 Files affected:
SPECS:
   gimp.spec (1.284 - 1.285) 

 Diffs:


Index: SPECS/gimp.spec
diff -u SPECS/gimp.spec:1.284 SPECS/gimp.spec:1.285
--- SPECS/gimp.spec:1.284   Mon Dec 17 03:00:46 2007
+++ SPECS/gimp.spec Thu Dec 20 14:39:20 2007
@@ -58,6 +58,7 @@
 BuildRequires: libtiff-devel
 BuildRequires: libtool = 1:1.4.2-9
 BuildRequires: libwmf-devel = 2:0.2.8
+BuildRequires:  libcap-devel = 1.10
 BuildRequires: pango-devel = 1:1.12.2
 BuildRequires: pkgconfig
 BuildRequires: poppler-glib-devel = 0.6
@@ -465,6 +466,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.285  2007-12-20 13:39:20  jezik
+- missing BuildRequires libcap-devel
+
 Revision 1.284  2007-12-17 02:00:46  lkrotowski
 - up to 2.4.3
 


 CVS-web:

http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/SPECS/gimp.spec?r1=1.284r2=1.285f=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): sound-juicer.spec - 2.21.0

2007-12-20 Thread patrys
Author: patrys   Date: Thu Dec 20 14:00:26 2007 GMT
Module: SPECS Tag: DEVEL
 Log message:
- 2.21.0

 Files affected:
SPECS:
   sound-juicer.spec (1.66 - 1.66.2.1) 

 Diffs:


Index: SPECS/sound-juicer.spec
diff -u SPECS/sound-juicer.spec:1.66 SPECS/sound-juicer.spec:1.66.2.1
--- SPECS/sound-juicer.spec:1.66Sat Nov 10 19:56:21 2007
+++ SPECS/sound-juicer.spec Thu Dec 20 15:00:21 2007
@@ -2,12 +2,12 @@
 Summary:   CD ripper
 Summary(pl.UTF-8): Ripper płyt CD
 Name:  sound-juicer
-Version:   2.20.1
-Release:   3
+Version:   2.21.0
+Release:   1
 License:   GPL v2+
 Group: X11/Applications/Multimedia
-Source0:   
http://ftp.gnome.org/pub/GNOME/sources/sound-juicer/2.20/%{name}-%{version}.tar.bz2
-# Source0-md5: cea3c67215c99acf513ee7ea4b5eba7b
+Source0:   
http://ftp.gnome.org/pub/GNOME/sources/sound-juicer/2.21/%{name}-%{version}.tar.bz2
+# Source0-md5: 3725b318f375e581106f3c6cf2decef3
 Patch0:%{name}-desktop.patch
 URL:   http://www.burtonini.com/blog/computers/sound-juicer/
 BuildRequires: GConf2-devel = 2.20.0
@@ -112,6 +112,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.66.2.1  2007-12-20 14:00:21  patrys
+- 2.21.0
+
 Revision 1.66  2007-11-10 18:56:21  megabajt
 - use better way to fix locale name
 - release 3


 CVS-web:

http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/SPECS/sound-juicer.spec?r1=1.66r2=1.66.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: sound-juicer-2.21.0.tar.bz2

2007-12-20 Thread patrys

Files fetched: 1

STORED: 
http://ftp.gnome.org/pub/GNOME/sources/sound-juicer/2.21/sound-juicer-2.21.0.tar.bz2
3725b318f375e581106f3c6cf2decef3  sound-juicer-2.21.0.tar.bz2
Size: 1452360 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: man-pages.spec - up to 2.74

2007-12-20 Thread arekm
Author: arekmDate: Thu Dec 20 14:05:23 2007 GMT
Module: SPECS Tag: HEAD
 Log message:
- up to 2.74

 Files affected:
SPECS:
   man-pages.spec (1.227 - 1.228) 

 Diffs:


Index: SPECS/man-pages.spec
diff -u SPECS/man-pages.spec:1.227 SPECS/man-pages.spec:1.228
--- SPECS/man-pages.spec:1.227  Fri Dec 14 21:11:35 2007
+++ SPECS/man-pages.specThu Dec 20 15:05:18 2007
@@ -16,7 +16,7 @@
 Summary(tr.UTF-8): Linux Belgeleme Projesinin sistem kılavuz sayfaları
 Summary(uk.UTF-8): Сторінки мануалу (man) з Linux Documentation Project
 Name:  man-pages
-Version:   2.73
+Version:   2.74
 Release:   1
 License:   distributable
 Group: Documentation
@@ -41,7 +41,7 @@
 %definetr_version  1.0.3
 %definezh_version  1.5
 Source0:   
http://www.kernel.org/pub/linux/docs/manpages/%{name}-%{version}.tar.gz
-# Source0-md5: 321bb6ed4b136179e710723b8214b9eb
+# Source0-md5: d2c7ff067c1beb82dabbfe4d9f49cd5e
 Source1:   
ftp://ftp.linux.cz/pub/localization/linux/czman/%{name}-cs-%{cs_version}.tar.gz
 # Source1-md5: e8036794c1762804f2e242cc5b52001e
 # there is no LDP man page here, yet - but include it in sources for 
completeness
@@ -510,6 +510,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.228  2007-12-20 14:05:18  arekm
+- up to 2.74
+
 Revision 1.227  2007-12-14 20:11:35  qboosh
 - unified, direct URL
 


 CVS-web:

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

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


DISTFILES: man-pages-2.74.tar.gz man-pages-cs-0.16.tar.gz manpages-da-0.1.1.tar.gz manpages-de-0.4.tar.gz man-pages-es-1.55.tar.bz2 man-pages-es-extra-0.8a.tar.gz man-fi-0.1.tar.bz2 man-pages-fr-2.39.

2007-12-20 Thread arekm

Files fetched: 1

STORED: http://www.kernel.org/pub/linux/docs/manpages/man-pages-2.74.tar.gz
d2c7ff067c1beb82dabbfe4d9f49cd5e  man-pages-2.74.tar.gz
Size: 2700317 bytes
ALREADY GOT: 
ftp://ftp.linux.cz/pub/localization/linux/czman/man-pages-cs-0.16.tar.gz
e8036794c1762804f2e242cc5b52001e  man-pages-cs-0.16.tar.gz
ALREADY GOT: http://www.sslug.dk/locale/man-sider/manpages-da-0.1.1.tar.gz
d12ba0481d824c28a8b7d6b73e20d7c0  manpages-da-0.1.1.tar.gz
ALREADY GOT: 
http://www.infodrom.org/projects/manpages-de/download/manpages-de-0.4.tar.gz
6a2a1cd24b0bd61c4ab384324e707a95  manpages-de-0.4.tar.gz
ALREADY GOT: 
http://www.ditec.um.es/~piernas/manpages-es/man-pages-es-1.55.tar.bz2
b71f701dcae827f2f5e4e848c66321fc  man-pages-es-1.55.tar.bz2
ALREADY GOT: 
http://www.ditec.um.es/~piernas/manpages-es/man-pages-es-extra-0.8a.tar.gz
5827f41f77658df17f550b7f8e831432  man-pages-es-extra-0.8a.tar.gz
ALREADY GOT: no-url://man-fi-0.1.tar.bz2
bb266d3797cdf71bfbe1da190196f455  man-fi-0.1.tar.bz2
ALREADY GOT: http://manpagesfr.free.fr/download/man-pages-fr-2.39.0.tar.bz2
7e9ecdd134703e8172107124f1f3fec4  man-pages-fr-2.39.0.tar.bz2
ALREADY GOT: 
http://ftp.debian.org/debian/pool/main/m/manpages-hu/manpages-hu_20010119.orig.tar.gz
742b682c5237a1e370b28f363826b2d5  manpages-hu_20010119.orig.tar.gz
ALREADY GOT: 
http://www.mif.pg.gda.pl/homepages/ankry/man-pages/man-pages-from-www-id-2006.tar.gz
34a69de42ec4ae8180b947f8777a3e7a  man-pages-from-www-id-2006.tar.gz
ALREADY GOT: 
ftp://ftp.pluto.linux.it/pub/pluto/ildp/man/man-pages-it-2.34.tar.gz
259868d64ee589828b4cc43e8769507b  man-pages-it-2.34.tar.gz
ALREADY GOT: http://www.linux.or.jp/JM/man-pages-ja-20070615.tar.gz
d0079890039b10ef88f1e635ce59d859  man-pages-ja-20070615.tar.gz
ALREADY GOT: 
http://download.kldp.net/man/man-pages-ko/20050219/man-pages-ko-20050219.tar.gz
e31dc6a51c02436371373dedaeeeacab  man-pages-ko-20050219.tar.gz
ALREADY GOT: 
ftp://ftp.nl.linux.org/pub/DOC-NL/manpages-nl/manpages-nl-0.13.3.tar.gz
b37b0216a87db7583e88ba87031a0b4a  manpages-nl-0.13.3.tar.gz
ALREADY GOT: no-url://man-pages-pl-PTM-snapshot.20051105.tar.bz2
b9b5751fcde4c36022850d0e5a4757d3  
man-pages-pl-PTM-snapshot.20051105.tar.bz2
ALREADY GOT: 
ftp://ftp.win.tue.nl/pub/home/aeb/linux-local/manpages/tr/man-pages-pt_BR-1.39.tgz
3f8db6dd6a7884b595e70f624ac93735  man-pages-pt_BR-1.39.tgz
ALREADY GOT: http://www.rolix.org/man/arhiva/man-pages-ro-0.2.tar.gz
ac5b2c970a31cb721e068ff80e5bd466  man-pages-ro-0.2.tar.gz
ALREADY GOT: 
http://www.mif.pg.gda.pl/homepages/ankry/man-pages/manpages-ru-asp-1.4.tar.bz2
fffb27648417c8dd551e2a4403eefc64  manpages-ru-asp-1.4.tar.bz2
ALREADY GOT: http://dl.sourceforge.net/belgeler/man-pages-tr-1.0.3.tar.gz
903c7b22a87961842dec8f4f1adeeaf3  man-pages-tr-1.0.3.tar.gz
ALREADY GOT: 
http://www.linux.org.ua/twiki/pub/Projects/ManUk/man-pages-uk_UA.alfa.tar.gz
89576c5b51bb83c8bfa8bda794b96e21  man-pages-uk_UA.alfa.tar.gz
ALREADY GOT: http://download.sf.linuxforum.net/cmpp/man-pages-zh_CN-1.5.tar.gz
edfe517621579520cf7451088ab126ea  man-pages-zh_CN-1.5.tar.gz


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


SPECS: tango-icon-theme.spec - 0.8.1

2007-12-20 Thread patrys
Author: patrys   Date: Thu Dec 20 14:50:08 2007 GMT
Module: SPECS Tag: HEAD
 Log message:
- 0.8.1

 Files affected:
SPECS:
   tango-icon-theme.spec (1.8 - 1.9) 

 Diffs:


Index: SPECS/tango-icon-theme.spec
diff -u SPECS/tango-icon-theme.spec:1.8 SPECS/tango-icon-theme.spec:1.9
--- SPECS/tango-icon-theme.spec:1.8 Sun Feb 25 01:29:34 2007
+++ SPECS/tango-icon-theme.spec Thu Dec 20 15:50:02 2007
@@ -6,15 +6,17 @@
 Summary:   freedesktop.org standard compliant icons
 Summary(pl.UTF-8): Ikony implementujące standard freedesktop.org
 Name:  tango-icon-theme
-Version:   0.8.0
+Version:   0.8.1
 Release:   1
 License:   Creative Commons License (see COPYING)
 Group: Themes
-Source0:   http://tango-project.org/releases/%{name}-%{version}.tar.bz2
-# Source0-md5: 0bb6a808b514a530adb6fe54e9e3b004
-URL:   http://tango-project.org/Tango_Desktop_Project
+Source0:   http://tango.freedesktop.org/releases/%{name}-%{version}.tar.bz2
+# Source0-md5: 43f82eb29dac8ceab488e6108bdd515b
+URL:   http://tango.freedesktop.org/Tango_Desktop_Project
 BuildRequires: ImageMagick-coder-png
 BuildRequires: ImageMagick-devel
+BuildRequires: autoconf = 2.59
+BuildRequires: automake
 BuildRequires: icon-naming-utils = 0.8.2
 BuildRequires: pkgconfig
 BuildArch: noarch
@@ -30,6 +32,9 @@
 %setup -q
 
 %build
+%{__aclocal}
+%{__autoconf}
+%{__automake}
 %configure
 %{__make}
 
@@ -53,7 +58,10 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
-Revision 1.8  2007-02-25 00:29:34  megabajt
+Revision 1.9  2007-12-20 14:50:02  patrys
+- 0.8.1
+
+Revision 1.8  2007/02/25 00:29:34  megabajt
 - updated to 0.8.0
 
 Revision 1.7  2007/02/12 22:09:17  glen


 CVS-web:

http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/SPECS/tango-icon-theme.spec?r1=1.8r2=1.9f=u

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


DISTFILES: tango-icon-theme-0.8.1.tar.bz2

2007-12-20 Thread patrys

Files fetched: 1

STORED: http://tango.freedesktop.org/releases/tango-icon-theme-0.8.1.tar.bz2
43f82eb29dac8ceab488e6108bdd515b  tango-icon-theme-0.8.1.tar.bz2
Size: 1385674 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): gnome-power-manager.spec - 2.21.1

2007-12-20 Thread patrys
Author: patrys   Date: Thu Dec 20 15:24:04 2007 GMT
Module: SPECS Tag: DEVEL
 Log message:
- 2.21.1

 Files affected:
SPECS:
   gnome-power-manager.spec (1.55 - 1.55.2.1) 

 Diffs:


Index: SPECS/gnome-power-manager.spec
diff -u SPECS/gnome-power-manager.spec:1.55 
SPECS/gnome-power-manager.spec:1.55.2.1
--- SPECS/gnome-power-manager.spec:1.55 Sat Dec 15 10:43:32 2007
+++ SPECS/gnome-power-manager.spec  Thu Dec 20 16:23:59 2007
@@ -2,12 +2,12 @@
 Summary:   GNOME Power Manager
 Summary(pl.UTF-8): Zarządca energii dla GNOME
 Name:  gnome-power-manager
-Version:   2.20.2
+Version:   2.21.1
 Release:   1
 License:   GPL v2+
 Group: X11/Applications
-Source0:   
http://ftp.gnome.org/pub/GNOME/sources/gnome-power-manager/2.20/%{name}-%{version}.tar.bz2
-# Source0-md5: 8a38e3a169b80c44639f4383a64835d0
+Source0:   
http://ftp.gnome.org/pub/GNOME/sources/gnome-power-manager/2.21/%{name}-%{version}.tar.bz2
+# Source0-md5: 61ec21f76d7b5f31ee5d255aab856e5d
 Patch0:%{name}-desktop.patch
 Patch1:%{name}-popt.patch
 URL:   http://www.gnome.org/projects/gnome-power-manager/
@@ -163,6 +163,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.55.2.1  2007-12-20 15:23:59  patrys
+- 2.21.1
+
 Revision 1.55  2007-12-15 09:43:32  megabajt
 - updated to 2.20.2
 


 CVS-web:

http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/SPECS/gnome-power-manager.spec?r1=1.55r2=1.55.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.21.1.tar.bz2

2007-12-20 Thread patrys

Files fetched: 1

STORED: 
http://ftp.gnome.org/pub/GNOME/sources/gnome-power-manager/2.21/gnome-power-manager-2.21.1.tar.bz2
61ec21f76d7b5f31ee5d255aab856e5d  gnome-power-manager-2.21.1.tar.bz2
Size: 3027492 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: postfixadmin.spec - missing requires

2007-12-20 Thread blues
Author: bluesDate: Thu Dec 20 15:36:19 2007 GMT
Module: SPECS Tag: HEAD
 Log message:
- missing requires

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

 Diffs:


Index: SPECS/postfixadmin.spec
diff -u SPECS/postfixadmin.spec:1.20 SPECS/postfixadmin.spec:1.21
--- SPECS/postfixadmin.spec:1.20Sun Dec 16 23:07:46 2007
+++ SPECS/postfixadmin.spec Thu Dec 20 16:36:14 2007
@@ -25,6 +25,7 @@
 Requires:  php(pcre)
 Requires:  php(session)
 Requires:  webserver(access)
+Requires:  webserver(alias)
 Requires:  webserver(php)
 BuildArch: noarch
 BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
@@ -162,6 +163,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.21  2007-12-20 15:36:14  blues
+- missing requires
+
 Revision 1.20  2007-12-16 22:07:46  blues
 - vacation script has config part, shouldn't be replaced (mark it).
 


 CVS-web:

http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/SPECS/postfixadmin.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


SOURCES: postfixadmin.conf - fix htaccess locatio

2007-12-20 Thread blues
Author: bluesDate: Thu Dec 20 15:41:17 2007 GMT
Module: SOURCES   Tag: HEAD
 Log message:
- fix htaccess locatio

 Files affected:
SOURCES:
   postfixadmin.conf (1.4 - 1.5) 

 Diffs:


Index: SOURCES/postfixadmin.conf
diff -u SOURCES/postfixadmin.conf:1.4 SOURCES/postfixadmin.conf:1.5
--- SOURCES/postfixadmin.conf:1.4   Sat Nov 17 15:35:54 2007
+++ SOURCES/postfixadmin.conf   Thu Dec 20 16:41:11 2007
@@ -8,7 +8,7 @@
 #  NOTE: /tmp access required for creating backups
 /Directory
 Directory /usr/share/postfixadmin/admin
-   AuthUserFile /etc/webapps/htpasswd
+   AuthUserFile /etc/webapps/postfixadmin/htpasswd
AuthGroupFile /dev/null
AuthName Postfix Admin
AuthType Basic


 CVS-web:

http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/SOURCES/postfixadmin.conf?r1=1.4r2=1.5f=u

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


SPECS: postfixadmin.spec - indexfile is strongly suggested

2007-12-20 Thread blues
Author: bluesDate: Thu Dec 20 16:01:18 2007 GMT
Module: SPECS Tag: HEAD
 Log message:
- indexfile is strongly suggested

 Files affected:
SPECS:
   postfixadmin.spec (1.21 - 1.22) 

 Diffs:


Index: SPECS/postfixadmin.spec
diff -u SPECS/postfixadmin.spec:1.21 SPECS/postfixadmin.spec:1.22
--- SPECS/postfixadmin.spec:1.21Thu Dec 20 16:36:14 2007
+++ SPECS/postfixadmin.spec Thu Dec 20 17:01:13 2007
@@ -27,6 +27,7 @@
 Requires:  webserver(access)
 Requires:  webserver(alias)
 Requires:  webserver(php)
+Suggests:  webserver(indexfile)
 BuildArch: noarch
 BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
 
@@ -163,6 +164,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.22  2007-12-20 16:01:13  blues
+- indexfile is strongly suggested
+
 Revision 1.21  2007-12-20 15:36:14  blues
 - missing requires
 


 CVS-web:

http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/SPECS/postfixadmin.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


SPECS (rpm-4_4_9): rpm.spec - rel 18

2007-12-20 Thread arekm
Author: arekmDate: Thu Dec 20 16:02:52 2007 GMT
Module: SPECS Tag: rpm-4_4_9
 Log message:
- rel 18

 Files affected:
SPECS:
   rpm.spec (1.837.2.14 - 1.837.2.15) 

 Diffs:


Index: SPECS/rpm.spec
diff -u SPECS/rpm.spec:1.837.2.14 SPECS/rpm.spec:1.837.2.15
--- SPECS/rpm.spec:1.837.2.14   Sun Dec 16 21:32:58 2007
+++ SPECS/rpm.spec  Thu Dec 20 17:02:47 2007
@@ -36,7 +36,7 @@
 Summary(uk.UTF-8): Менеджер пакетів від RPM
 Name:  rpm
 Version:   4.4.9
-Release:   17
+Release:   18
 License:   GPL
 Group: Base
 Source0:   http://rpm5.org/files/rpm/rpm-4.4/%{name}-%{version}.tar.gz
@@ -1220,6 +1220,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.837.2.15  2007-12-20 16:02:47  arekm
+- rel 18
+
 Revision 1.837.2.14  2007-12-16 20:32:58  qboosh
 - C: for non-tukaani lzma
 


 CVS-web:

http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/SPECS/rpm.spec?r1=1.837.2.14r2=1.837.2.15f=u

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


SOURCES: jude.desktop - pl

2007-12-20 Thread qboosh
Author: qboosh   Date: Thu Dec 20 16:43:37 2007 GMT
Module: SOURCES   Tag: HEAD
 Log message:
- pl

 Files affected:
SOURCES:
   jude.desktop (1.5 - 1.6) 

 Diffs:


Index: SOURCES/jude.desktop
diff -u SOURCES/jude.desktop:1.5 SOURCES/jude.desktop:1.6
--- SOURCES/jude.desktop:1.5Wed Dec 19 15:30:44 2007
+++ SOURCES/jude.desktopThu Dec 20 17:43:32 2007
@@ -2,6 +2,7 @@
 Encoding=UTF-8
 Name=Jude
 GenericName=UML Modeling Tool
+GenericName[pl]=Narzędzie do modelowania UML
 Comment=Jude
 Comment[pl]=Jude
 Icon=jude.png


 CVS-web:

http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/SOURCES/jude.desktop?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


SPECS: clamav.spec - added CVE references for revision 1.229

2007-12-20 Thread megabajt
Author: megabajt Date: Thu Dec 20 17:06:20 2007 GMT
Module: SPECS Tag: HEAD
 Log message:
- added CVE references for revision 1.229

 Files affected:
SPECS:
   clamav.spec (1.231 - 1.232) 

 Diffs:


Index: SPECS/clamav.spec
diff -u SPECS/clamav.spec:1.231 SPECS/clamav.spec:1.232
--- SPECS/clamav.spec:1.231 Tue Dec 18 19:03:12 2007
+++ SPECS/clamav.spec   Thu Dec 20 18:06:15 2007
@@ -360,6 +360,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.232  2007-12-20 17:06:15  megabajt
+- added CVE references for revision 1.229
+
 Revision 1.231  2007-12-18 18:03:12  glen
 - rel 4
 
@@ -367,7 +370,7 @@
 - socket fix, STBR
 
 Revision 1.229  2007-12-17 21:05:34  zawadaa
-- up to 0.92
+- up to 0.92 [fixes CVE-2007-6029 CVE-2007-6335 CVE-2007-6336]
 - rel 2 (1 is for AC)
 
 Revision 1.228  2007-09-11 12:30:07  gotar


 CVS-web:

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

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


SPECS: syslog-ng.spec - added CVE reference for revision 1.139

2007-12-20 Thread megabajt
Author: megabajt Date: Thu Dec 20 17:12:59 2007 GMT
Module: SPECS Tag: HEAD
 Log message:
- added CVE reference for revision 1.139

 Files affected:
SPECS:
   syslog-ng.spec (1.141 - 1.142) 

 Diffs:


Index: SPECS/syslog-ng.spec
diff -u SPECS/syslog-ng.spec:1.141 SPECS/syslog-ng.spec:1.142
--- SPECS/syslog-ng.spec:1.141  Sat Dec  8 08:38:30 2007
+++ SPECS/syslog-ng.specThu Dec 20 18:12:54 2007
@@ -150,6 +150,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.142  2007-12-20 17:12:54  megabajt
+- added CVE reference for revision 1.139
+
 Revision 1.141  2007-12-08 07:38:30  hawk
 - keep syslong-ng.persist file in /var/lib/syslog-ng instead of /var
 - release 2
@@ -158,7 +161,7 @@
 - oops, rel.1
 
 Revision 1.139  2007-12-06 15:07:51  blues
-- 2.0.6
+- 2.0.6 [fixes CVE-2007-6437]
 
 Revision 1.138  2007-11-10 13:04:00  hawk
 - updated to 2.0.5


 CVS-web:

http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/SPECS/syslog-ng.spec?r1=1.141r2=1.142f=u

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


SPECS: pommed.spec - add subpackages - more BRs - add bcond - more...

2007-12-20 Thread shadzik
Author: shadzik  Date: Thu Dec 20 17:26:19 2007 GMT
Module: SPECS Tag: HEAD
 Log message:
- add subpackages
- more BRs
- add bcond
- more files
- rel 0.3 (almosed finished)

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

 Diffs:


Index: SPECS/pommed.spec
diff -u SPECS/pommed.spec:1.2 SPECS/pommed.spec:1.3
--- SPECS/pommed.spec:1.2   Thu Dec 20 13:23:45 2007
+++ SPECS/pommed.spec   Thu Dec 20 18:26:14 2007
@@ -1,23 +1,58 @@
 # $Revision$, $Date$
+# Conditional build
+%bcond_without gpomme  # don't build gpomme client
 
 Summary:   pommed
 Summary(pl.UTF-8): pommed
 Name:  pommed
 Version:   1.14
-Release:   0.2
+Release:   0.3
 License:   GPL v2
-Group: X11/Applications
+Group: Applications
 Source0:   
http://alioth.debian.org/frs/download.php/2223/%{name}-%{version}.tar.gz
 # Source0-md5: 1b54269bbadb6b43bd9e45566dd1b6ef
 URL:   http://www.technologeek.org/projects/pommed/
+BuildRequires: rpmbuild(macros) = 1.228
+BuildRequires: dbus-devel
 BuildRequires: libconfuse-devel
 BuildRequires: libsmbios-devel
+BuildRequires: pciutils-devel
+%if %{with gpomme}
+BuildRequires: gtk+2-devel
+BuildRequires: libglade2-devel
+%endif
+Requires:  alsa-lib
+Requires:  eject
+Requires:  pomme-client
+Requires(post,preun):  /sbin/chkconfig
 BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
 
 %description
 
 %description -l pl.UTF-8
 
+%package -n gpomme
+Summary:   gpomme
+Summary(pl.UTF-8): gpomme
+Group: X11/Applications
+Provides:  pomme-client
+Requires:  %{name} = %{version}
+
+%description -n gpomme
+
+%description -n gpomme -l pl.UTF-8
+
+%package -n wmpomme
+Summary:wmpomme
+Summary(pl.UTF-8):  wmpomme
+Group:  X11/Applications
+Provides:   pomme-client
+Requires:   %{name} = %{version}
+
+%description -n wmpomme
+
+%description -n wmpomme -l pl.UTF-8
+
 %prep
 %setup -q
 
@@ -26,12 +61,17 @@
 
 %install
 rm -rf $RPM_BUILD_ROOT
-install -d $RPM_BUILD_ROOT{%{_bindir},%{_sbindir},%{_datadir}/gpomme/themes}
+install -d 
$RPM_BUILD_ROOT{%{_bindir},%{_sbindir},%{_datadir}/%{name},%{_sysconfdir}}
 
 install pommed/pommed $RPM_BUILD_ROOT%{_sbindir}
+install pommed/data/* $RPM_BUILD_ROOT%{_datadir}/%{name}
+install pommed.conf.{mactel,pmac} $RPM_BUILD_ROOT%{_sysconfdir}
+%if %{with gpomme}
+install -d $RPM_BUILD_ROOT%{_datadir}/gpomme/themes
 install gpomme/gpomme $RPM_BUILD_ROOT%{_bindir}
-install wmpomme/wmpomme $RPM_BUILD_ROOT%{_bindir}
 cp -R gpomme/themes/* $RPM_BUILD_ROOT%{_datadir}/gpomme/themes
+%endif
+install wmpomme/wmpomme $RPM_BUILD_ROOT%{_bindir}
 
 %clean
 rm -rf $RPM_BUILD_ROOT
@@ -39,9 +79,20 @@
 %files
 %defattr(644,root,root,755)
 %doc AUTHORS README TODO
-%attr(755,root,root) %{_bindir}/*pomme
 %attr(755,root,root) %{_sbindir}/pommed
+%{_datadir}/%{name}
+%{_sysconfdir}/pommed.conf.*
+
+%if %{with gpomme}
+%files -n gpomme
+%defattr(644,root,root,755)
+%attr(755,root,root) %{_bindir}/gpomme
 %{_datadir}/gpomme
+%endif
+
+%files -n wmpomme
+%defattr(644,root,root,755)
+%attr(755,root,root) %{_bindir}/wmpomme
 
 %define date   %(echo `LC_ALL=C date +%a %b %d %Y`)
 %changelog
@@ -49,6 +100,13 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.3  2007-12-20 17:26:14  shadzik
+- add subpackages
+- more BRs
+- add bcond
+- more files
+- rel 0.3 (almosed finished)
+
 Revision 1.2  2007-12-20 12:23:45  shadzik
 - more gpomme files
 


 CVS-web:

http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/SPECS/pommed.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


SOURCES: kdelibs-branch.diff - workaround flash bug

2007-12-20 Thread arekm
Author: arekmDate: Thu Dec 20 17:35:33 2007 GMT
Module: SOURCES   Tag: HEAD
 Log message:
- workaround flash bug

 Files affected:
SOURCES:
   kdelibs-branch.diff (1.65 - 1.66) 

 Diffs:


Index: SOURCES/kdelibs-branch.diff
diff -u SOURCES/kdelibs-branch.diff:1.65 SOURCES/kdelibs-branch.diff:1.66
--- SOURCES/kdelibs-branch.diff:1.65Thu Dec 13 19:58:45 2007
+++ SOURCES/kdelibs-branch.diff Thu Dec 20 18:35:27 2007
@@ -1,7 +1,7 @@
 Index: mimetypes/multipart/x-mixed-replace.desktop
 ===
 mimetypes/multipart/x-mixed-replace.desktop
(.../tags/KDE/3.5.8/kdelibs)(wersja 748139)
-+++ mimetypes/multipart/x-mixed-replace.desktop
(.../branches/KDE/3.5/kdelibs)  (wersja 748139)
+--- mimetypes/multipart/x-mixed-replace.desktop
(.../tags/KDE/3.5.8/kdelibs)(wersja 750946)
 mimetypes/multipart/x-mixed-replace.desktop
(.../branches/KDE/3.5/kdelibs)  (wersja 750946)
 @@ -18,7 +18,7 @@
  Comment[de]=Datenstrom (Server Push)
  Comment[el]=Ροή από δεδομένα (προώθηση εξυπηρετητή)
@@ -13,8 +13,8 @@
  Comment[fa]=جریان داده( فشار کارساز)
 Index: mimetypes/application/x-tex-pk.desktop
 ===
 mimetypes/application/x-tex-pk.desktop (.../tags/KDE/3.5.8/kdelibs)
(wersja 748139)
-+++ mimetypes/application/x-tex-pk.desktop (.../branches/KDE/3.5/kdelibs)  
(wersja 748139)
+--- mimetypes/application/x-tex-pk.desktop (.../tags/KDE/3.5.8/kdelibs)
(wersja 750946)
 mimetypes/application/x-tex-pk.desktop (.../branches/KDE/3.5/kdelibs)  
(wersja 750946)
 @@ -17,7 +17,7 @@
  Comment[de]=Schriftpaket
  Comment[el]=Packed γραμματοσειρά
@@ -26,8 +26,8 @@
  Comment[fa]=قلم بسته‌ای
 Index: mimetypes/application/x-font-speedo.desktop
 ===
 mimetypes/application/x-font-speedo.desktop
(.../tags/KDE/3.5.8/kdelibs)(wersja 748139)
-+++ mimetypes/application/x-font-speedo.desktop
(.../branches/KDE/3.5/kdelibs)  (wersja 748139)
+--- mimetypes/application/x-font-speedo.desktop
(.../tags/KDE/3.5.8/kdelibs)(wersja 750946)
 mimetypes/application/x-font-speedo.desktop
(.../branches/KDE/3.5/kdelibs)  (wersja 750946)
 @@ -21,7 +21,7 @@
  Comment[de]=Speedo-Schriftart
  Comment[el]=Γραμματοσειρά Speedo
@@ -39,8 +39,8 @@
  Comment[fa]=قلم Speedo
 Index: mimetypes/application/x-font-ghostscript.desktop
 ===
 mimetypes/application/x-font-ghostscript.desktop   
(.../tags/KDE/3.5.8/kdelibs)(wersja 748139)
-+++ mimetypes/application/x-font-ghostscript.desktop   
(.../branches/KDE/3.5/kdelibs)  (wersja 748139)
+--- mimetypes/application/x-font-ghostscript.desktop   
(.../tags/KDE/3.5.8/kdelibs)(wersja 750946)
 mimetypes/application/x-font-ghostscript.desktop   
(.../branches/KDE/3.5/kdelibs)  (wersja 750946)
 @@ -21,7 +21,7 @@
  Comment[de]=Ghostscript-Schrift
  Comment[el]=Έγγραφο Ghostscript
@@ -52,8 +52,8 @@
  Comment[fa]=قلم Ghostscript
 Index: mimetypes/application/x-font-otf.desktop
 ===
 mimetypes/application/x-font-otf.desktop   (.../tags/KDE/3.5.8/kdelibs)
(wersja 748139)
-+++ mimetypes/application/x-font-otf.desktop   (.../branches/KDE/3.5/kdelibs)  
(wersja 748139)
+--- mimetypes/application/x-font-otf.desktop   (.../tags/KDE/3.5.8/kdelibs)
(wersja 750946)
 mimetypes/application/x-font-otf.desktop   (.../branches/KDE/3.5/kdelibs)  
(wersja 750946)
 @@ -17,7 +17,7 @@
  Comment[de]=OpenType-Schrift
  Comment[el]=Γραμματοσειρά OpenType
@@ -65,8 +65,8 @@
  Comment[fa]=قلم نوع باز
 Index: mimetypes/application/x-font-pcf.desktop
 ===
 mimetypes/application/x-font-pcf.desktop   (.../tags/KDE/3.5.8/kdelibs)
(wersja 748139)
-+++ mimetypes/application/x-font-pcf.desktop   (.../branches/KDE/3.5/kdelibs)  
(wersja 748139)
+--- mimetypes/application/x-font-pcf.desktop   (.../tags/KDE/3.5.8/kdelibs)
(wersja 750946)
 mimetypes/application/x-font-pcf.desktop   (.../branches/KDE/3.5/kdelibs)  
(wersja 750946)
 @@ -21,7 +21,7 @@
  Comment[de]=PCF-Bitmap-Schrift
  Comment[el]=Γραμματοσειρά PCF bitmap
@@ -78,8 +78,8 @@
  Comment[fa]=قلم نگاشت بیت PCF
 Index: mimetypes/application/x-designer.desktop
 ===
 mimetypes/application/x-designer.desktop   (.../tags/KDE/3.5.8/kdelibs)
(wersja 748139)
-+++ mimetypes/application/x-designer.desktop   (.../branches/KDE/3.5/kdelibs)  
(wersja 748139)
+--- mimetypes/application/x-designer.desktop   (.../tags/KDE/3.5.8/kdelibs)
(wersja 750946)
 mimetypes/application/x-designer.desktop   

SPECS: kdelibs.spec - rel 8; workaround for flash 115

2007-12-20 Thread arekm
Author: arekmDate: Thu Dec 20 17:37:03 2007 GMT
Module: SPECS Tag: HEAD
 Log message:
- rel 8; workaround for flash 115

 Files affected:
SPECS:
   kdelibs.spec (1.538 - 1.539) 

 Diffs:


Index: SPECS/kdelibs.spec
diff -u SPECS/kdelibs.spec:1.538 SPECS/kdelibs.spec:1.539
--- SPECS/kdelibs.spec:1.538Thu Dec 13 19:59:16 2007
+++ SPECS/kdelibs.spec  Thu Dec 20 18:36:58 2007
@@ -22,7 +22,7 @@
 Summary(uk.UTF-8): K Desktop Environment - Бібліотеки
 Name:  kdelibs
 Version:   3.5.8
-Release:   7
+Release:   8
 Epoch: 9
 License:   LGPL
 Group: X11/Libraries
@@ -931,6 +931,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.539  2007-12-20 17:36:58  arekm
+- rel 8; workaround for flash 115
+
 Revision 1.538  2007-12-13 18:59:16  arekm
 - rel 7; branch diff updated (xembed fixes)
 


 CVS-web:

http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/SPECS/kdelibs.spec?r1=1.538r2=1.539f=u

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


SPECS: pommed.spec - easy stuff: gpomme files

2007-12-20 Thread shadzik
Author: shadzik  Date: Thu Dec 20 17:40:23 2007 GMT
Module: SPECS Tag: HEAD
 Log message:
- easy stuff: gpomme files

 Files affected:
SPECS:
   pommed.spec (1.3 - 1.4) 

 Diffs:


Index: SPECS/pommed.spec
diff -u SPECS/pommed.spec:1.3 SPECS/pommed.spec:1.4
--- SPECS/pommed.spec:1.3   Thu Dec 20 18:26:14 2007
+++ SPECS/pommed.spec   Thu Dec 20 18:40:17 2007
@@ -12,19 +12,19 @@
 Source0:   
http://alioth.debian.org/frs/download.php/2223/%{name}-%{version}.tar.gz
 # Source0-md5: 1b54269bbadb6b43bd9e45566dd1b6ef
 URL:   http://www.technologeek.org/projects/pommed/
-BuildRequires: rpmbuild(macros) = 1.228
 BuildRequires: dbus-devel
 BuildRequires: libconfuse-devel
 BuildRequires: libsmbios-devel
 BuildRequires: pciutils-devel
+BuildRequires: rpmbuild(macros) = 1.228
 %if %{with gpomme}
 BuildRequires: gtk+2-devel
 BuildRequires: libglade2-devel
 %endif
+Requires(post,preun):  /sbin/chkconfig
 Requires:  alsa-lib
 Requires:  eject
 Requires:  pomme-client
-Requires(post,preun):  /sbin/chkconfig
 BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
 
 %description
@@ -35,19 +35,19 @@
 Summary:   gpomme
 Summary(pl.UTF-8): gpomme
 Group: X11/Applications
-Provides:  pomme-client
 Requires:  %{name} = %{version}
+Provides:  pomme-client
 
 %description -n gpomme
 
 %description -n gpomme -l pl.UTF-8
 
 %package -n wmpomme
-Summary:wmpomme
-Summary(pl.UTF-8):  wmpomme
-Group:  X11/Applications
-Provides:   pomme-client
-Requires:   %{name} = %{version}
+Summary:   wmpomme
+Summary(pl.UTF-8): wmpomme
+Group: X11/Applications
+Requires:  %{name} = %{version}
+Provides:  pomme-client
 
 %description -n wmpomme
 
@@ -67,9 +67,11 @@
 install pommed/data/* $RPM_BUILD_ROOT%{_datadir}/%{name}
 install pommed.conf.{mactel,pmac} $RPM_BUILD_ROOT%{_sysconfdir}
 %if %{with gpomme}
-install -d $RPM_BUILD_ROOT%{_datadir}/gpomme/themes
+install -d $RPM_BUILD_ROOT{%{_datadir}/gpomme/themes,%{_desktopdir}}
 install gpomme/gpomme $RPM_BUILD_ROOT%{_bindir}
 cp -R gpomme/themes/* $RPM_BUILD_ROOT%{_datadir}/gpomme/themes
+install gpomme/gpomme*.desktop $RPM_BUILD_ROOT%{_desktopdir}
+install gpomme/gpomme.glade $RPM_BUILD_ROOT%{_datadir}/gpomme
 %endif
 install wmpomme/wmpomme $RPM_BUILD_ROOT%{_bindir}
 
@@ -88,6 +90,7 @@
 %defattr(644,root,root,755)
 %attr(755,root,root) %{_bindir}/gpomme
 %{_datadir}/gpomme
+%{_desktopdir}/gpomme*.desktop
 %endif
 
 %files -n wmpomme
@@ -100,6 +103,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.4  2007-12-20 17:40:17  shadzik
+- easy stuff: gpomme files
+
 Revision 1.3  2007-12-20 17:26:14  shadzik
 - add subpackages
 - more BRs


 CVS-web:

http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/SPECS/pommed.spec?r1=1.3r2=1.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: liferea-1.4.10.tar.gz

2007-12-20 Thread megabajt

Files fetched: 1

STORED: http://dl.sourceforge.net/liferea/liferea-1.4.10.tar.gz
7a60b58fc0044f72fb0d67f77eaffad5  liferea-1.4.10.tar.gz
Size: 1609333 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: liferea.spec - updated to 1.4.10 - added CVE reference for ...

2007-12-20 Thread megabajt
Author: megabajt Date: Thu Dec 20 17:42:36 2007 GMT
Module: SPECS Tag: HEAD
 Log message:
- updated to 1.4.10
- added CVE reference for revision 1.153

 Files affected:
SPECS:
   liferea.spec (1.158 - 1.159) 

 Diffs:


Index: SPECS/liferea.spec
diff -u SPECS/liferea.spec:1.158 SPECS/liferea.spec:1.159
--- SPECS/liferea.spec:1.158Sun Dec  2 13:40:56 2007
+++ SPECS/liferea.spec  Thu Dec 20 18:42:31 2007
@@ -1,5 +1,7 @@
 # $Revision$, $Date$
-# TODO: create subpackage -lua (?)
+# TODO:
+# - create subpackage -lua (?)
+# - webkit support
 #
 # Conditional build:
 %bcond_without dbus# without DBUS support
@@ -14,30 +16,32 @@
 Summary:   A RSS feed reader
 Summary(pl.UTF-8): Program do pobierania informacji w formacie RSS
 Name:  liferea
-Version:   1.4.8
-Release:   3
+Version:   1.4.10
+Release:   1
 License:   GPL v2
 Group: X11/Applications/Networking
 Source0:   http://dl.sourceforge.net/liferea/%{name}-%{version}.tar.gz
-# Source0-md5: 92806e9432481e65f21e8f86ff4a4fe2
+# Source0-md5: 7a60b58fc0044f72fb0d67f77eaffad5
 Patch0:%{name}-desktop.patch
 Patch1:%{name}-xulrunner.patch
 Patch2:%{name}-lua51.patch
 URL:   http://liferea.sourceforge.net/
 BuildRequires: GConf2-devel = 2.10.0
+%{?with_nm:BuildRequires:  NetworkManager-devel}
 BuildRequires: autoconf = 2.59
 BuildRequires: automake
 %{?with_dbus:BuildRequires:dbus-glib-devel = 0.33}
+BuildRequires: gnutls-devel
 BuildRequires: gtk+2-devel = 2:2.8.0
 BuildRequires: intltool = 0.35.5
+BuildRequires: libglade2-devel = 2.0.0
 %{?with_gtkhtml:BuildRequires: libgtkhtml-devel = 2.6.3}
 BuildRequires: libnotify-devel = 0.3.2
 BuildRequires: libstdc++-devel
 BuildRequires: libtool
-BuildRequires: libxml2-devel = 1:2.6.19
+BuildRequires: libxml2-devel = 1:2.6.27
 BuildRequires: libxslt-devel = 1.1.19
 %{?with_lua:BuildRequires: lua51-devel}
-%{?with_nm:BuildRequires:  NetworkManager-devel}
 BuildRequires: pkgconfig
 BuildRequires: rpmbuild(macros) = 1.311
 BuildRequires: sqlite3-devel
@@ -170,6 +174,10 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.159  2007-12-20 17:42:31  megabajt
+- updated to 1.4.10
+- added CVE reference for revision 1.153
+
 Revision 1.158  2007-12-02 12:40:56  hawk
 - release 3 (xulrunner 1.8.1.11)
 
@@ -186,7 +194,7 @@
 - release 2 (xulrunner 1.8.1.9)
 
 Revision 1.153  2007/10/30 22:18:55  sls
-- ver. 1.4.6
+- ver. 1.4.6 [fixes CVE-2007-5751]
 - removed free.patch
 
 Revision 1.152  2007/10/22 19:31:58  megabajt


 CVS-web:

http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/SPECS/liferea.spec?r1=1.158r2=1.159f=u

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


SPECS: jude.spec - R: jre - jre-X11

2007-12-20 Thread twittner
Author: twittner Date: Thu Dec 20 17:50:29 2007 GMT
Module: SPECS Tag: HEAD
 Log message:
- R: jre - jre-X11

 Files affected:
SPECS:
   jude.spec (1.14 - 1.15) 

 Diffs:


Index: SPECS/jude.spec
diff -u SPECS/jude.spec:1.14 SPECS/jude.spec:1.15
--- SPECS/jude.spec:1.14Wed Dec 19 15:23:06 2007
+++ SPECS/jude.spec Thu Dec 20 18:50:24 2007
@@ -19,7 +19,7 @@
 URL:   http://jude-users.com/en/
 BuildRequires: rpm-javaprov
 BuildRequires: rpmbuild(macros) = 1.300
-Requires:  jre
+Requires:  jre-X11
 BuildArch: noarch
 BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
 
@@ -75,6 +75,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.15  2007-12-20 17:50:24  twittner
+- R: jre - jre-X11
+
 Revision 1.14  2007-12-19 14:23:06  glen
 - register .jude extension and handler; rel 2
 


 CVS-web:

http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/SPECS/jude.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


SPECS: myspell-dictionaries.spec - drop thunderbird provides; rel 10

2007-12-20 Thread glen
Author: glen Date: Thu Dec 20 17:57:32 2007 GMT
Module: SPECS Tag: HEAD
 Log message:
- drop thunderbird provides; rel 10

 Files affected:
SPECS:
   myspell-dictionaries.spec (1.19 - 1.20) 

 Diffs:


Index: SPECS/myspell-dictionaries.spec
diff -u SPECS/myspell-dictionaries.spec:1.19 
SPECS/myspell-dictionaries.spec:1.20
--- SPECS/myspell-dictionaries.spec:1.19Mon Dec 17 23:14:10 2007
+++ SPECS/myspell-dictionaries.spec Thu Dec 20 18:57:27 2007
@@ -6,7 +6,7 @@
 #  - openoffice-thesaurus-{de,en,es}.spec
 #
 %define_ver1.0.2
-%define_rel9
+%define_rel10
 Summary:   MySpell Spelling and Hyphenation dictionaries
 Summary(pl.UTF-8): Słowniki dla MySpella do sprawdzania pisowni i 
przenoszenia wyrazów
 Name:  myspell-dictionaries
@@ -205,12 +205,6 @@
 Summary(pl.UTF-8): Pliki wspólne dla słowników myspella i hunspella
 License:   Public Domain
 Group: Applications/Text
-Provides:  mozilla-thunderbird-dictionary-fr-FR
-Provides:  mozilla-thunderbird-dictionary-he-IL
-Provides:  mozilla-thunderbird-dictionary-ia
-Provides:  mozilla-thunderbird-dictionary-la
-Provides:  mozilla-thunderbird-dictionary-lv-LV
-Provides:  mozilla-thunderbird-dictionary-ru-IE
 Obsoletes: mozilla-thunderbird-dictionary-fr-FR
 Obsoletes: mozilla-thunderbird-dictionary-he-IL
 Obsoletes: mozilla-thunderbird-dictionary-ia
@@ -234,7 +228,6 @@
 License:   LGPL
 Group: Applications/Text
 Requires:  myspell-common = %{_ver}-%{_rel}
-Provides:  mozilla-thunderbird-dictionary-af-ZA
 Provides:  myspell-af = %{version}
 Provides:  myspell-dictionary = %{version}
 Obsoletes: mozilla-thunderbird-dictionary-af-ZA
@@ -261,7 +254,6 @@
 License:   GPL
 Group: Applications/Text
 Requires:  myspell-common = %{_ver}-%{_rel}
-Provides:  mozilla-thunderbird-dictionary-bg
 Provides:  myspell-bg = %{version}
 Provides:  myspell-dictionary = %{version}
 Obsoletes: mozilla-thunderbird-dictionary-bg
@@ -289,7 +281,6 @@
 License:   GPL
 Group: Applications/Text
 Requires:  myspell-common = %{_ver}-%{_rel}
-Provides:  mozilla-thunderbird-dictionary-ca
 Provides:  myspell-ca = %{version}
 Provides:  myspell-dictionary = %{version}
 Obsoletes: mozilla-thunderbird-dictionary-ca
@@ -317,7 +308,6 @@
 License:   GPL
 Group: Applications/Text
 Requires:  myspell-common = %{_ver}-%{_rel}
-Provides:  mozilla-thunderbird-dictionary-cs
 Provides:  myspell-cs = %{version}
 Provides:  myspell-dictionary = %{version}
 Obsoletes: mozilla-thunderbird-dictionary-cs
@@ -345,7 +335,6 @@
 License:   GPL
 Group: Applications/Text
 Requires:  myspell-common = %{_ver}-%{_rel}
-Provides:  mozilla-thunderbird-dictionary-cy-GB
 Provides:  myspell-cy = %{version}
 Provides:  myspell-dictionary = %{version}
 Obsoletes: mozilla-thunderbird-dictionary-cy-GB
@@ -372,7 +361,6 @@
 License:   GPL
 Group: Applications/Text
 Requires:  myspell-common = %{_ver}-%{_rel}
-Provides:  mozilla-thunderbird-dictionary-da
 Provides:  myspell-da = %{version}
 Provides:  myspell-dictionary = %{version}
 Obsoletes: mozilla-thunderbird-dictionary-da
@@ -400,7 +388,6 @@
 License:   GPL
 Group: Applications/Text
 Requires:  myspell-common = %{_ver}-%{_rel}
-Provides:  mozilla-thunderbird-dictionary-de-AT
 Provides:  myspell-de = %{version}
 Provides:  myspell-dictionary = %{version}
 Obsoletes: mozilla-thunderbird-dictionary-de-AT
@@ -428,7 +415,6 @@
 License:   GPL
 Group: Applications/Text
 Requires:  myspell-common = %{_ver}-%{_rel}
-Provides:  mozilla-thunderbird-dictionary-de-CH
 Provides:  myspell-de = %{version}
 Provides:  myspell-dictionary = %{version}
 Obsoletes: mozilla-thunderbird-dictionary-de-CH
@@ -456,7 +442,6 @@
 License:   GPL
 Group: Applications/Text
 Requires:  myspell-common = %{_ver}-%{_rel}
-Provides:  mozilla-thunderbird-dictionary-de-DE
 Provides:  myspell-de = %{version}
 Provides:  myspell-dictionary = %{version}
 Obsoletes: mozilla-thunderbird-dictionary-de-DE
@@ -484,7 +469,6 @@
 License:   GPL
 Group: Applications/Text
 Requires:  myspell-common = %{_ver}-%{_rel}
-Provides:  mozilla-thunderbird-dictionary-el
 Provides:  myspell-dictionary = %{version}
 Provides:  myspell-el = %{version}
 Obsoletes: mozilla-thunderbird-dictionary-el
@@ -512,7 +496,6 @@
 License:   LGPL
 Group: Applications/Text
 Requires:  myspell-common = %{_ver}-%{_rel}
-Provides:  mozilla-thunderbird-dictionary-en-AU
 Provides:  myspell-dictionary = %{version}
 Provides:  myspell-en = %{version}
 Obsoletes: 

SOURCES: pommed.init (NEW) - initial

2007-12-20 Thread shadzik
Author: shadzik  Date: Thu Dec 20 17:59:48 2007 GMT
Module: SOURCES   Tag: HEAD
 Log message:
- initial

 Files affected:
SOURCES:
   pommed.init (NONE - 1.1)  (NEW)

 Diffs:


Index: SOURCES/pommed.init
diff -u /dev/null SOURCES/pommed.init:1.1
--- /dev/null   Thu Dec 20 18:59:48 2007
+++ SOURCES/pommed.init Thu Dec 20 18:59:43 2007
@@ -0,0 +1,63 @@
+#!/bin/sh
+#
+# chkconfig: 2345 88 12
+
+# We can't run without acpi:
+[ -e /proc/acpi ] || exit
+
+# Source function library.
+. /etc/init.d/functions
+
+RETVAL=0
+
+start() {
+   msg_starting Pommed: 
+   daemon /usr/sbin/pommed
+   touch /var/lock/subsys/pommed
+}
+
+stop() {
+   msg_stopping Pommed: 
+   killproc pommed
+   RETVAL=$?
+   [ $RETVAL -eq 0 ]  rm -f /var/lock/subsys/pommed
+}
+
+dostatus() {
+   status pommed
+   RETVAL=$?
+}
+
+restart() {
+   stop
+   start
+   RETVAL=$?
+}
+
+condrestart() {
+   [ -e /var/lock/subsys/pommed ]  restart || :
+}
+
+# See how we were called.
+case $1 in
+  start)
+   start
+   ;;
+  stop)
+   stop
+   ;;
+  status)
+   dostatus
+   ;;
+  restart|reload)
+   restart
+   ;;
+  condrestart)
+   condrestart
+   ;;
+  *)
+   msg_usage $0 {start|stop|status|restart|reload|condrestart}
+   exit 1
+esac
+
+exit $RETVAL

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


SPECS: pommed.spec - init script

2007-12-20 Thread shadzik
Author: shadzik  Date: Thu Dec 20 18:05:27 2007 GMT
Module: SPECS Tag: HEAD
 Log message:
- init script

 Files affected:
SPECS:
   pommed.spec (1.4 - 1.5) 

 Diffs:


Index: SPECS/pommed.spec
diff -u SPECS/pommed.spec:1.4 SPECS/pommed.spec:1.5
--- SPECS/pommed.spec:1.4   Thu Dec 20 18:40:17 2007
+++ SPECS/pommed.spec   Thu Dec 20 19:05:22 2007
@@ -6,11 +6,12 @@
 Summary(pl.UTF-8): pommed
 Name:  pommed
 Version:   1.14
-Release:   0.3
+Release:   0.4
 License:   GPL v2
 Group: Applications
 Source0:   
http://alioth.debian.org/frs/download.php/2223/%{name}-%{version}.tar.gz
 # Source0-md5: 1b54269bbadb6b43bd9e45566dd1b6ef
+Source1:   %{name}.init
 URL:   http://www.technologeek.org/projects/pommed/
 BuildRequires: dbus-devel
 BuildRequires: libconfuse-devel
@@ -61,11 +62,14 @@
 
 %install
 rm -rf $RPM_BUILD_ROOT
-install -d 
$RPM_BUILD_ROOT{%{_bindir},%{_sbindir},%{_datadir}/%{name},%{_sysconfdir}}
+install -d 
$RPM_BUILD_ROOT{%{_bindir},%{_sbindir},%{_datadir}/%{name},%{_sysconfdir}/dbus-1/system.d}
+install -d $RPM_BUILD_ROOT%{_sysconfdir}/rc.d/init.d
 
 install pommed/pommed $RPM_BUILD_ROOT%{_sbindir}
 install pommed/data/* $RPM_BUILD_ROOT%{_datadir}/%{name}
 install pommed.conf.{mactel,pmac} $RPM_BUILD_ROOT%{_sysconfdir}
+install dbus-policy.conf 
$RPM_BUILD_ROOT%{_sysconfdir}/dbus-1/system.d/pommed.conf
+install %{SOURCE1} $RPM_BUILD_ROOT%{_sysconfdir}/rc.d/init.d/pommed
 %if %{with gpomme}
 install -d $RPM_BUILD_ROOT{%{_datadir}/gpomme/themes,%{_desktopdir}}
 install gpomme/gpomme $RPM_BUILD_ROOT%{_bindir}
@@ -78,12 +82,24 @@
 %clean
 rm -rf $RPM_BUILD_ROOT
 
+%post
+/sbin/chkconfig --add %{name}
+%service pommed restart
+
+%preun
+if [ $1 = 0 ]; then
+%service pommed stop
+/sbin/chkconfig --del %{name}
+fi
+
 %files
 %defattr(644,root,root,755)
 %doc AUTHORS README TODO
 %attr(755,root,root) %{_sbindir}/pommed
 %{_datadir}/%{name}
 %{_sysconfdir}/pommed.conf.*
+%{_sysconfdir}/dbus-1/system.d/pommed.conf
+%attr(754,root,root) %{_sysconfdir}/rc.d/init.d/pommed
 
 %if %{with gpomme}
 %files -n gpomme
@@ -103,6 +119,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.5  2007-12-20 18:05:22  shadzik
+- init script
+
 Revision 1.4  2007-12-20 17:40:17  shadzik
 - easy stuff: gpomme files
 


 CVS-web:

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

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


SPECS: pommed.spec - R: rc-scripts

2007-12-20 Thread shadzik
Author: shadzik  Date: Thu Dec 20 18:07:27 2007 GMT
Module: SPECS Tag: HEAD
 Log message:
- R: rc-scripts

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

 Diffs:


Index: SPECS/pommed.spec
diff -u SPECS/pommed.spec:1.5 SPECS/pommed.spec:1.6
--- SPECS/pommed.spec:1.5   Thu Dec 20 19:05:22 2007
+++ SPECS/pommed.spec   Thu Dec 20 19:07:22 2007
@@ -26,6 +26,7 @@
 Requires:  alsa-lib
 Requires:  eject
 Requires:  pomme-client
+Requires:  rc-scripts
 BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
 
 %description
@@ -119,6 +120,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.6  2007-12-20 18:07:22  shadzik
+- R: rc-scripts
+
 Revision 1.5  2007-12-20 18:05:22  shadzik
 - init script
 


 CVS-web:

http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/SPECS/pommed.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


SOURCES: pommed.init - cosmetics

2007-12-20 Thread shadzik
Author: shadzik  Date: Thu Dec 20 18:09:44 2007 GMT
Module: SOURCES   Tag: HEAD
 Log message:
- cosmetics

 Files affected:
SOURCES:
   pommed.init (1.1 - 1.2) 

 Diffs:


Index: SOURCES/pommed.init
diff -u SOURCES/pommed.init:1.1 SOURCES/pommed.init:1.2
--- SOURCES/pommed.init:1.1 Thu Dec 20 18:59:43 2007
+++ SOURCES/pommed.init Thu Dec 20 19:09:39 2007
@@ -11,13 +11,13 @@
 RETVAL=0
 
 start() {
-   msg_starting Pommed: 
+   msg_starting Pommed
daemon /usr/sbin/pommed
touch /var/lock/subsys/pommed
 }
 
 stop() {
-   msg_stopping Pommed: 
+   msg_stopping Pommed
killproc pommed
RETVAL=$?
[ $RETVAL -eq 0 ]  rm -f /var/lock/subsys/pommed


 CVS-web:

http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/SOURCES/pommed.init?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: adobe-flash.spec - up to 9.0.115.0 on head, too. Fixes CVE...

2007-12-20 Thread arekm
Author: arekmDate: Thu Dec 20 18:16:01 2007 GMT
Module: SPECS Tag: HEAD
 Log message:
- up to 9.0.115.0 on head, too. 
Fixes CVE-2007-6242, CVE-2007-4768, CVE-2007-5275, CVE-2007-6243, 
CVE-2007-6244, CVE-2007-6245, CVE-2007-4324, CVE-2007-6246, CVE-2007-5476.

 Files affected:
SPECS:
   adobe-flash.spec (1.81 - 1.82) 

 Diffs:


Index: SPECS/adobe-flash.spec
diff -u SPECS/adobe-flash.spec:1.81 SPECS/adobe-flash.spec:1.82
--- SPECS/adobe-flash.spec:1.81 Mon Dec 10 23:52:24 2007
+++ SPECS/adobe-flash.spec  Thu Dec 20 19:15:56 2007
@@ -5,7 +5,7 @@
 #
 %define_ver_major  9
 %define_ver_minor  0
-%define_ver_patch  48
+%define_ver_patch  115
 %define_ver_serial 0
 %definebase_name   adobe-flash
 Summary:   Flash plugin for Netscape-compatible WWW browsers
@@ -22,7 +22,7 @@
 Group: X11/Applications/Multimedia
 %if %{with license_agreement}
 Source0:   
http://fpdownload.macromedia.com/get/flashplayer/current/install_flash_player_9_linux.tar.gz
-# NoSource0-md5:   821cc72359a937caef85bb4cc74ef5cd
+# NoSource0-md5:   93b7c48eaa492237b807a3ae1de65cf9
 %else
 Source1:   license-installer.sh
 %endif
@@ -120,6 +120,10 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.82  2007-12-20 18:15:56  arekm
+- up to 9.0.115.0 on head, too.
+Fixes CVE-2007-6242, CVE-2007-4768, CVE-2007-5275, CVE-2007-6243, 
CVE-2007-6244, CVE-2007-6245, CVE-2007-4324, CVE-2007-6246, CVE-2007-5476.
+
 Revision 1.81  2007-12-10 22:52:24  glen
 - avoid duplicate NoSource0-md5
 


 CVS-web:

http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/SPECS/adobe-flash.spec?r1=1.81r2=1.82f=u

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


SPECS: cfg.spec - pl fix

2007-12-20 Thread qboosh
Author: qboosh   Date: Thu Dec 20 18:26:33 2007 GMT
Module: SPECS Tag: HEAD
 Log message:
- pl fix

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

 Diffs:


Index: SPECS/cfg.spec
diff -u SPECS/cfg.spec:1.12 SPECS/cfg.spec:1.13
--- SPECS/cfg.spec:1.12 Wed Dec 19 20:33:35 2007
+++ SPECS/cfg.spec  Thu Dec 20 19:26:27 2007
@@ -9,7 +9,7 @@
 %bcond_without perl# build Perl bindings to C API
 #
 Summary:   OSSP cfg - Configuration Parsing
-Summary(pl.UTF-8): OSSP cfg - parsowanie konfiguracji
+Summary(pl.UTF-8): OSSP cfg - analiza konfiguracji
 Name:  cfg
 Version:   0.9.11
 Release:   0.1
@@ -44,7 +44,7 @@
 exporting the AST again as a configuration text.
 
 %description -l pl.UTF-8
-OSSP cfg to biblioteka ISO-C do parsowania dowolnych plików
+OSSP cfg to biblioteka ISO-C do analizy dowolnych plików
 konfiguracyjnych w stylu C/C++. Konfiguracja jest sekwencją dyrektyw.
 Każda dyrektywa zawiera zero lub więcej tokenów. Każdy token może być
 łańcuchem albo znowu całą sekwencją. Oznacza to, że składnia
@@ -61,7 +61,7 @@
 
 %package devel
 Summary:   OSSP cfg - Configuration Parsing - header files and development 
libraries
-Summary(pl.UTF-8): OSSP cfg - parsowanie konfiguracji - pliki nagłówkowe i 
biblioteki dla deweloperów
+Summary(pl.UTF-8): OSSP cfg - analiza konfiguracji - pliki nagłówkowe i 
biblioteki dla deweloperów
 Group: Development/Libraries
 Requires:  %{name} = %{epoch}:%{version}-%{release}
 
@@ -70,12 +70,12 @@
 libraries.
 
 %description devel -l pl.UTF-8
-OSSP cfg - parsowanie konfiguracji - pliki nagłówkowe i biblioteki dla
+OSSP cfg - analiza konfiguracji - pliki nagłówkowe i biblioteki dla
 deweloperów.
 
 %package static
 Summary:   OSSP cfg - Configuration Parsing - static libraries
-Summary(pl.UTF-8): OSSP cfg - parsowanie konfiguracji - biblioteki 
statyczne
+Summary(pl.UTF-8): OSSP cfg - analiza konfiguracji - biblioteki statyczne
 Group: Development/Libraries
 Requires:  %{name}-devel = %{epoch}:%{version}-%{release}
 
@@ -83,18 +83,18 @@
 OSSP cfg - Configuration Parsing - static libraries.
 
 %description static -l pl.UTF-8
-OSSP cfg - parsowanie konfiguracji - biblioteki statyczne.
+OSSP cfg - analiza konfiguracji - biblioteki statyczne.
 
 %package -n perl-cfg
 Summary:   OSSP cfg - Configuration Parsing - Perl bindings
-Summary(pl.UTF-8): OSSP cfg - parsowanie konfiguracji - dowiązania Perla
+Summary(pl.UTF-8): OSSP cfg - analiza konfiguracji - dowiązania Perla
 Group: Development/Languages/Perl
 
 %description -n perl-cfg
 OSSP cfg - Configuration Parsing - Perl bindings to C API.
 
 %description -n perl-cfg -l pl.UTF-8
-OSSP cfg - parsowanie konfiguracji - dowiązania Perla do API C.
+OSSP cfg - analiza konfiguracji - dowiązania Perla do API C.
 
 %prep
 %setup -q
@@ -166,6 +166,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.13  2007-12-20 18:26:27  qboosh
+- pl fix
+
 Revision 1.12  2007-12-19 19:33:35  zbyniu
 - up to 0.9.11
 


 CVS-web:

http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/SPECS/cfg.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


SOURCES: pommed.init - better, thx glen

2007-12-20 Thread shadzik
Author: shadzik  Date: Thu Dec 20 18:28:36 2007 GMT
Module: SOURCES   Tag: HEAD
 Log message:
- better, thx glen

 Files affected:
SOURCES:
   pommed.init (1.2 - 1.3) 

 Diffs:


Index: SOURCES/pommed.init
diff -u SOURCES/pommed.init:1.2 SOURCES/pommed.init:1.3
--- SOURCES/pommed.init:1.2 Thu Dec 20 19:09:39 2007
+++ SOURCES/pommed.init Thu Dec 20 19:28:30 2007
@@ -1,63 +1,81 @@
 #!/bin/sh
 #
-# chkconfig: 2345 88 12
+# pommed   pommed
+#
+# chkconfig:   345 88 12
+#
+# description: pommed
+#
+# $Id$
+
+# Source function library
+. /etc/rc.d/init.d/functions
 
 # We can't run without acpi:
 [ -e /proc/acpi ] || exit
 
-# Source function library.
-. /etc/init.d/functions
-
-RETVAL=0
-
 start() {
-   msg_starting Pommed
-   daemon /usr/sbin/pommed
-   touch /var/lock/subsys/pommed
+   # Check if the service is already running?
+   if [ ! -f /var/lock/subsys/pommed ]; then
+   msg_starting pommed
+   daemon pommed
+   RETVAL=$?
+   [ $RETVAL -eq 0 ]  touch /var/lock/subsys/pommed
+   else
+   msg_already_running pommed
+   fi
 }
 
 stop() {
-   msg_stopping Pommed
-   killproc pommed
-   RETVAL=$?
-   [ $RETVAL -eq 0 ]  rm -f /var/lock/subsys/pommed
-}
-
-dostatus() {
-   status pommed
-   RETVAL=$?
-}
-
-restart() {
-   stop
-   start
-   RETVAL=$?
+   if [ -f /var/lock/subsys/pommed ]; then
+   # Stop daemons.
+   msg_stopping pommed
+   killproc pommed
+   rm -f /var/lock/subsys/pommed
+   else
+   msg_not_running pommed
+   fi
 }
 
-condrestart() {
-   [ -e /var/lock/subsys/pommed ]  restart || :
+reload() {
+   if [ -f /var/lock/subsys/pommed ]; then
+   msg_reloading pommed
+   killproc pommed -HUP
+   RETVAL=$?
+   else
+   msg_not_running pommed
+   RETVAL=7
+   fi
 }
 
+RETVAL=0
 # See how we were called.
 case $1 in
   start)
-   start
+   start
;;
   stop)
+   stop
+   ;;
+  restart)
stop
+   start
;;
-  status)
-   dostatus
+  reload)
+   reload
;;
-  restart|reload)
-   restart
+# ONLY if program allows reloading without stopping
+# otherwise include force-reload with 'reload'
+  force-reload)
+   reload
;;
-  condrestart)
-   condrestart
+  status)
+   status pommed
+   RETVAL=$?
;;
   *)
-   msg_usage $0 {start|stop|status|restart|reload|condrestart}
-   exit 1
+   msg_usage $0 {start|stop|restart|reload|force-reload|status}
+   exit 3
 esac
 
 exit $RETVAL


 CVS-web:

http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/SOURCES/pommed.init?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: pommed.spec - rel 0.5 (new initscript)

2007-12-20 Thread shadzik
Author: shadzik  Date: Thu Dec 20 18:29:11 2007 GMT
Module: SPECS Tag: HEAD
 Log message:
- rel 0.5 (new initscript)

 Files affected:
SPECS:
   pommed.spec (1.6 - 1.7) 

 Diffs:


Index: SPECS/pommed.spec
diff -u SPECS/pommed.spec:1.6 SPECS/pommed.spec:1.7
--- SPECS/pommed.spec:1.6   Thu Dec 20 19:07:22 2007
+++ SPECS/pommed.spec   Thu Dec 20 19:29:06 2007
@@ -6,7 +6,7 @@
 Summary(pl.UTF-8): pommed
 Name:  pommed
 Version:   1.14
-Release:   0.4
+Release:   0.5
 License:   GPL v2
 Group: Applications
 Source0:   
http://alioth.debian.org/frs/download.php/2223/%{name}-%{version}.tar.gz
@@ -120,6 +120,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.7  2007-12-20 18:29:06  shadzik
+- rel 0.5 (new initscript)
+
 Revision 1.6  2007-12-20 18:07:22  shadzik
 - R: rc-scripts
 


 CVS-web:

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

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


DISTFILES: cx_Oracle-4.3.3.tar.gz

2007-12-20 Thread baggins

Files fetched: 1

STORED: http://dl.sourceforge.net/cx-oracle/cx_Oracle-4.3.3.tar.gz
be3aee0922b3b3ae714d2637dd77fa0e  cx_Oracle-4.3.3.tar.gz
Size: 106595 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: python-cx_Oracle.spec - up to 4.3.3

2007-12-20 Thread baggins
Author: baggins  Date: Thu Dec 20 18:30:34 2007 GMT
Module: SPECS Tag: HEAD
 Log message:
- up to 4.3.3

 Files affected:
SPECS:
   python-cx_Oracle.spec (1.13 - 1.14) 

 Diffs:


Index: SPECS/python-cx_Oracle.spec
diff -u SPECS/python-cx_Oracle.spec:1.13 SPECS/python-cx_Oracle.spec:1.14
--- SPECS/python-cx_Oracle.spec:1.13Tue Feb 13 09:06:42 2007
+++ SPECS/python-cx_Oracle.spec Thu Dec 20 19:30:29 2007
@@ -3,12 +3,12 @@
 Summary:   Python interface to Oracle
 Summary(pl.UTF-8): Interfejs Pythona do Oracle'a
 Name:  python-%{module}
-Version:   4.2.1
+Version:   4.3.3
 Release:   1
 License:   BSD
 Group: Development/Libraries
 Source0:   http://dl.sourceforge.net/cx-oracle/%{module}-%{version}.tar.gz
-# Source0-md5: 3acc8290ad5d611eacb25a5229e8fa87
+# Source0-md5: be3aee0922b3b3ae714d2637dd77fa0e
 URL:   http://www.cxtools.net/default.aspx?nav=cxorlb
 BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
 
@@ -45,7 +45,10 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
-Revision 1.13  2007-02-13 08:06:42  glen
+Revision 1.14  2007-12-20 18:30:29  baggins
+- up to 4.3.3
+
+Revision 1.13  2007/02/13 08:06:42  glen
 - tabs in preamble
 
 Revision 1.12  2007/02/12 01:06:28  baggins


 CVS-web:

http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/SPECS/python-cx_Oracle.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: gmsh.spec - sorted BRs

2007-12-20 Thread qboosh
Author: qboosh   Date: Thu Dec 20 18:32:13 2007 GMT
Module: SPECS Tag: HEAD
 Log message:
- sorted BRs

 Files affected:
SPECS:
   gmsh.spec (1.33 - 1.34) 

 Diffs:


Index: SPECS/gmsh.spec
diff -u SPECS/gmsh.spec:1.33 SPECS/gmsh.spec:1.34
--- SPECS/gmsh.spec:1.33Thu Dec 20 09:02:18 2007
+++ SPECS/gmsh.spec Thu Dec 20 19:32:08 2007
@@ -15,16 +15,16 @@
 Patch0:%{name}-make-jN.patch
 Patch1:%{name}-link.patch
 URL:   http://www.geuz.org/gmsh/
-BuildRequires: autoconf
 BuildRequires: OpenGL-GLU-devel
+BuildRequires: autoconf
 BuildRequires: fltk-gl-devel = 1.1.0
 BuildRequires: gsl-devel = 1.2
-BuildRequires: libpng-devel
 BuildRequires: libjpeg-devel
-BuildRequires: texinfo-texi2dvi
+BuildRequires: libpng-devel
 BuildRequires: tetex-dvips
-BuildRequires: tetex-format-plain
 BuildRequires: tetex-format-pdftex
+BuildRequires: tetex-format-plain
+BuildRequires: texinfo-texi2dvi
 BuildRequires: xorg-lib-libXext-devel
 BuildRequires: xorg-lib-libXft-devel
 Requires:  getdp
@@ -66,7 +66,6 @@
 
 %install
 rm -rf $RPM_BUILD_ROOT
-
 install -d 
$RPM_BUILD_ROOT{%{_bindir},%{_desktopdir},%{_infodir},%{_mandir}/man1} \
$RPM_BUILD_ROOT%{_pixmapsdir}
 
@@ -95,6 +94,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.34  2007-12-20 18:32:08  qboosh
+- sorted BRs
+
 Revision 1.33  2007-12-20 08:02:18  sls
 - BR: {libpng,libjpeg,xorg-lib-libXext,xorg-lib-libXft}-devel
 - removed BR: hdf5-devel (only for OpenCascade)


 CVS-web:

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

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


SOURCES: pommed.init - /proc/acpi missing is failure, not success ...

2007-12-20 Thread qboosh
Author: qboosh   Date: Thu Dec 20 18:39:11 2007 GMT
Module: SOURCES   Tag: HEAD
 Log message:
- /proc/acpi missing is failure, not success
- added try-restart action

 Files affected:
SOURCES:
   pommed.init (1.3 - 1.4) 

 Diffs:


Index: SOURCES/pommed.init
diff -u SOURCES/pommed.init:1.3 SOURCES/pommed.init:1.4
--- SOURCES/pommed.init:1.3 Thu Dec 20 19:28:30 2007
+++ SOURCES/pommed.init Thu Dec 20 19:39:06 2007
@@ -12,7 +12,7 @@
 . /etc/rc.d/init.d/functions
 
 # We can't run without acpi:
-[ -e /proc/acpi ] || exit
+[ -e /proc/acpi ] || exit 1
 
 start() {
# Check if the service is already running?
@@ -48,6 +48,16 @@
fi
 }
 
+condrestart() {
+   if [ -f /var/lock/subsys/pommed ]; then
+   stop
+   start
+   else
+   msg_not_running pommed
+   RETVAL=$1
+   fi
+}
+
 RETVAL=0
 # See how we were called.
 case $1 in
@@ -61,20 +71,18 @@
stop
start
;;
-  reload)
-   reload
+  try-restart)
+   condrestart 0
;;
-# ONLY if program allows reloading without stopping
-# otherwise include force-reload with 'reload'
-  force-reload)
-   reload
+  reload|force-reload)
+   reload
;;
   status)
status pommed
RETVAL=$?
;;
   *)
-   msg_usage $0 {start|stop|restart|reload|force-reload|status}
+   msg_usage $0 
{start|stop|restart|try-restart|reload|force-reload|status}
exit 3
 esac
 


 CVS-web:

http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/SOURCES/pommed.init?r1=1.3r2=1.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: pysql-0.11.tar.gz

2007-12-20 Thread baggins

Files fetched: 1

STORED: http://dl.sourceforge.net/pysql/pysql-0.11.tar.gz
35a3afa6c383dac8d9a8a4229b2da06b  pysql-0.11.tar.gz
Size: 78337 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: pysql.spec (NEW) - initial revision

2007-12-20 Thread baggins
Author: baggins  Date: Thu Dec 20 18:39:22 2007 GMT
Module: SPECS Tag: HEAD
 Log message:
- initial revision

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

 Diffs:


Index: SPECS/pysql.spec
diff -u /dev/null SPECS/pysql.spec:1.1
--- /dev/null   Thu Dec 20 19:39:22 2007
+++ SPECS/pysql.specThu Dec 20 19:39:17 2007
@@ -0,0 +1,60 @@
+# $Revision$, $Date$
+Summary:   A full (and much more) replacement for sqlplus
+Name:  pysql
+Version:   0.11
+Release:   1
+License:   GPL v2
+Group: Applications/Databases
+Source0:   http://dl.sourceforge.net/pysql/%{name}-%{version}.tar.gz
+# Source0-md5: 35a3afa6c383dac8d9a8a4229b2da06b
+URL:   http://pysql.sourceforge.net/
+Requires:  python-cx_Oracle
+BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
+
+%description
+PySQL aim to be a full (and much more) replacement for sqlplus.
+This projet start the 17th of august 2006. It is also a cool
+pretext for coding in Python ;-) Some ideas behind PySQL :
+
+* really usable and not painfull (history, completion, line edition...)
+* high level function often used (search for tables, indexes, count,
+  explain plan, list of sessions...)
+* proper output for screen and file (csv ready for inclusion in spreadsheets)
+* user defined macro ?
+
+%prep
+%setup -q
+
+%build
+python setup.py build
+
+%install
+rm -rf $RPM_BUILD_ROOT
+
+python setup.py install \
+   --root=$RPM_BUILD_ROOT \
+   --optimize=2
+
+%py_postclean
+
+%find_lang %{name}
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%files -f %{name}.lang
+%defattr(644,root,root,755)
+%doc ChangeLog* README
+%attr(755,root,root) %{_bindir}/*
+%{py_sitescriptdir}/%{name}/*.py[co]
+%{py_sitescriptdir}/*.egg-info
+
+%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  2007-12-20 18:39:17  baggins
+- initial revision
+

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


SPECS: pysql.spec - add missing dir

2007-12-20 Thread baggins
Author: baggins  Date: Thu Dec 20 18:40:03 2007 GMT
Module: SPECS Tag: HEAD
 Log message:
- add missing dir

 Files affected:
SPECS:
   pysql.spec (1.1 - 1.2) 

 Diffs:


Index: SPECS/pysql.spec
diff -u SPECS/pysql.spec:1.1 SPECS/pysql.spec:1.2
--- SPECS/pysql.spec:1.1Thu Dec 20 19:39:17 2007
+++ SPECS/pysql.specThu Dec 20 19:39:58 2007
@@ -46,6 +46,7 @@
 %defattr(644,root,root,755)
 %doc ChangeLog* README
 %attr(755,root,root) %{_bindir}/*
+%dir %{py_sitescriptdir}/%{name}
 %{py_sitescriptdir}/%{name}/*.py[co]
 %{py_sitescriptdir}/*.egg-info
 
@@ -55,6 +56,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.2  2007-12-20 18:39:58  baggins
+- add missing dir
+
 Revision 1.1  2007-12-20 18:39:17  baggins
 - initial revision
 


 CVS-web:

http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/SPECS/pysql.spec?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


SOURCES: pommed.init - well, it should be sufficient to check /pro...

2007-12-20 Thread qboosh
Author: qboosh   Date: Thu Dec 20 18:40:42 2007 GMT
Module: SOURCES   Tag: HEAD
 Log message:
- well, it should be sufficient to check /proc/acpi before start

 Files affected:
SOURCES:
   pommed.init (1.4 - 1.5) 

 Diffs:


Index: SOURCES/pommed.init
diff -u SOURCES/pommed.init:1.4 SOURCES/pommed.init:1.5
--- SOURCES/pommed.init:1.4 Thu Dec 20 19:39:06 2007
+++ SOURCES/pommed.init Thu Dec 20 19:40:36 2007
@@ -11,10 +11,9 @@
 # Source function library
 . /etc/rc.d/init.d/functions
 
-# We can't run without acpi:
-[ -e /proc/acpi ] || exit 1
-
 start() {
+   # We can't run without acpi:
+   [ -e /proc/acpi ] || exit 1
# Check if the service is already running?
if [ ! -f /var/lock/subsys/pommed ]; then
msg_starting pommed


 CVS-web:

http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/SOURCES/pommed.init?r1=1.4r2=1.5f=u

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


SPECS: libgnome.spec - ghost soname symlink - release 2 (rebuild t...

2007-12-20 Thread qboosh
Author: qboosh   Date: Thu Dec 20 19:04:01 2007 GMT
Module: SPECS Tag: HEAD
 Log message:
- ghost soname symlink
- release 2 (rebuild to drop false libcap dependency)

 Files affected:
SPECS:
   libgnome.spec (1.106 - 1.107) 

 Diffs:


Index: SPECS/libgnome.spec
diff -u SPECS/libgnome.spec:1.106 SPECS/libgnome.spec:1.107
--- SPECS/libgnome.spec:1.106   Wed Oct 17 19:50:18 2007
+++ SPECS/libgnome.spec Thu Dec 20 20:03:55 2007
@@ -3,8 +3,8 @@
 Summary(pl.UTF-8): Podstawowa biblioteka GNOME
 Name:  libgnome
 Version:   2.20.1.1
-Release:   1
-License:   LGPL
+Release:   2
+License:   LGPL v2+
 Group: Libraries
 Source0:   
http://ftp.gnome.org/pub/GNOME/sources/libgnome/2.20/%{name}-%{version}.tar.bz2
 # Source0-md5: cfab025a8b9a19cdae1c64f8b005c513
@@ -170,14 +170,15 @@
 %defattr(644,root,root,755)
 %doc AUTHORS ChangeLog MAINTAINERS NEWS README
 %attr(755,root,root) %{_bindir}/gnome-open
-%attr(755,root,root) %{_libdir}/lib*.so.*.*
+%attr(755,root,root) %{_libdir}/libgnome-2.so.*.*.*
+%attr(755,root,root) %ghost %{_libdir}/libgnome-2.so.0
 %attr(755,root,root) %{_libdir}/bonobo/monikers/*.so
+%{_libdir}/bonobo/servers/*
 %dir %{_datadir}/gnome-background-properties
 %{_datadir}/gnome-background-properties/gnome-default.xml
 %dir %{_pixmapsdir}/backgrounds
 %dir %{_pixmapsdir}/backgrounds/gnome
 %{_pixmapsdir}/backgrounds/gnome/background-default.jpg
-%{_libdir}/bonobo/servers/*
 %{_mandir}/man7/gnome-options*
 %{_sysconfdir}/gconf/schemas/desktop_gnome_accessibility_keyboard.schemas
 %{_sysconfdir}/gconf/schemas/desktop_gnome_accessibility_startup.schemas
@@ -200,14 +201,14 @@
 
 %files devel
 %defattr(644,root,root,755)
+%attr(755,root,root) %{_libdir}/libgnome-2.so
+%{_libdir}/libgnome-2.la
 %{_includedir}/libgnome-2.0
-%attr(755,root,root) %{_libdir}/lib*.so
-%{_libdir}/lib*.la
-%{_pkgconfigdir}/*.pc
+%{_pkgconfigdir}/gnome-2.0.pc
 
 %files static
 %defattr(644,root,root,755)
-%{_libdir}/lib*.a
+%{_libdir}/libgnome-2.a
 
 %files apidocs
 %defattr(644,root,root,755)
@@ -219,6 +220,10 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.107  2007-12-20 19:03:55  qboosh
+- ghost soname symlink
+- release 2 (rebuild to drop false libcap dependency)
+
 Revision 1.106  2007-10-17 17:50:18  megabajt
 - updated to 2.20.1.1
 


 CVS-web:

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

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


SPECS: gimp.spec - GPL/LGPL v2+

2007-12-20 Thread qboosh
Author: qboosh   Date: Thu Dec 20 19:08:38 2007 GMT
Module: SPECS Tag: HEAD
 Log message:
- GPL/LGPL v2+

 Files affected:
SPECS:
   gimp.spec (1.285 - 1.286) 

 Diffs:


Index: SPECS/gimp.spec
diff -u SPECS/gimp.spec:1.285 SPECS/gimp.spec:1.286
--- SPECS/gimp.spec:1.285   Thu Dec 20 14:39:20 2007
+++ SPECS/gimp.spec Thu Dec 20 20:08:33 2007
@@ -26,7 +26,7 @@
 Version:   2.4.3
 Release:   1
 Epoch: 1
-License:   GPL
+License:   GPL v2+
 Group: X11/Applications/Graphics
 Source0:   ftp://ftp.gimp.org/pub/gimp/v2.4/%{name}-%{version}.tar.bz2
 # Source0-md5: 958988ac02642e2dfda7ad7d045e2a84
@@ -194,6 +194,7 @@
 %package libs
 Summary:   GIMP libraries
 Summary(pl.UTF-8): Biblioteki GIMPa
+License:   LGPL v2+
 Group: Libraries
 Requires:  gtk+2 = 2:2.10.6
 
@@ -215,7 +216,7 @@
 Summary(uk.UTF-8): Інструментарій для розробки плагінів та розширень GIMP
 Summary(zh_CN.UTF-8):  [开发]gimp的开发包
 Summary(zh_TW.UTF-8):  [開發]gimp的開發包
-License:   LGPL
+License:   LGPL v2+
 Group: X11/Development/Libraries
 Requires:  %{name}-libs = %{epoch}:%{version}-%{release}
 Requires:  gtk+2-devel = 2:2.10.0
@@ -240,6 +241,7 @@
 %package static
 Summary:   GIMP static libraries
 Summary(pl.UTF-8): Biblioteki statyczne GIMPa
+License:   LGPL v2+
 Group: X11/Development/Libraries
 Requires:  %{name}-devel = %{epoch}:%{version}-%{release}
 
@@ -466,6 +468,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.286  2007-12-20 19:08:33  qboosh
+- GPL/LGPL v2+
+
 Revision 1.285  2007-12-20 13:39:20  jezik
 - missing BuildRequires libcap-devel
 


 CVS-web:

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

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


SPECS: bakery.spec - LGPL v2+

2007-12-20 Thread qboosh
Author: qboosh   Date: Thu Dec 20 19:09:16 2007 GMT
Module: SPECS Tag: HEAD
 Log message:
- LGPL v2+

 Files affected:
SPECS:
   bakery.spec (1.14 - 1.15) 

 Diffs:


Index: SPECS/bakery.spec
diff -u SPECS/bakery.spec:1.14 SPECS/bakery.spec:1.15
--- SPECS/bakery.spec:1.14  Wed Dec 19 18:02:46 2007
+++ SPECS/bakery.spec   Thu Dec 20 20:09:11 2007
@@ -4,7 +4,7 @@
 Name:  bakery
 Version:   2.4.3
 Release:   1
-License:   GPL v.2
+License:   LGPL v2+
 Group: X11/Development/Libraries
 Source0:   
http://ftp.gnome.org/pub/GNOME/sources/bakery/2.4/%{name}-%{version}.tar.bz2
 # Source0-md5: 7d22a4610656c412e6ae3918a3e82304
@@ -129,6 +129,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.15  2007-12-20 19:09:11  qboosh
+- LGPL v2+
+
 Revision 1.14  2007-12-19 17:02:46  zbyniu
 - up to 2.4.3
 


 CVS-web:

http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/SPECS/bakery.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


SPECS: gimp.spec, bakery.spec - reverted false libcap BR, fix your...

2007-12-20 Thread qboosh
Author: qboosh   Date: Thu Dec 20 19:09:50 2007 GMT
Module: SPECS Tag: HEAD
 Log message:
- reverted false libcap BR, fix your GNOME libs

 Files affected:
SPECS:
   gimp.spec (1.286 - 1.287) , bakery.spec (1.15 - 1.16) 

 Diffs:


Index: SPECS/gimp.spec
diff -u SPECS/gimp.spec:1.286 SPECS/gimp.spec:1.287
--- SPECS/gimp.spec:1.286   Thu Dec 20 20:08:33 2007
+++ SPECS/gimp.spec Thu Dec 20 20:09:45 2007
@@ -58,7 +58,6 @@
 BuildRequires: libtiff-devel
 BuildRequires: libtool = 1:1.4.2-9
 BuildRequires: libwmf-devel = 2:0.2.8
-BuildRequires:  libcap-devel = 1.10
 BuildRequires: pango-devel = 1:1.12.2
 BuildRequires: pkgconfig
 BuildRequires: poppler-glib-devel = 0.6
@@ -468,6 +467,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.287  2007-12-20 19:09:45  qboosh
+- reverted false libcap BR, fix your GNOME libs
+
 Revision 1.286  2007-12-20 19:08:33  qboosh
 - GPL/LGPL v2+
 


Index: SPECS/bakery.spec
diff -u SPECS/bakery.spec:1.15 SPECS/bakery.spec:1.16
--- SPECS/bakery.spec:1.15  Thu Dec 20 20:09:11 2007
+++ SPECS/bakery.spec   Thu Dec 20 20:09:45 2007
@@ -16,7 +16,6 @@
 BuildRequires: gnome-vfsmm-devel = 2.16.0
 BuildRequires: gtkmm-devel = 2.10.5
 BuildRequires: intltool
-BuildRequires: libcap-devel
 BuildRequires: libglademm-devel = 2.6.3
 BuildRequires: libtool
 BuildRequires: libxml++-devel = 2.14.0
@@ -129,6 +128,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.16  2007-12-20 19:09:45  qboosh
+- reverted false libcap BR, fix your GNOME libs
+
 Revision 1.15  2007-12-20 19:09:11  qboosh
 - LGPL v2+
 


 CVS-web:

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

http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/SPECS/bakery.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: libgnome.spec - ugh, typo; release 3

2007-12-20 Thread qboosh
Author: qboosh   Date: Thu Dec 20 19:33:39 2007 GMT
Module: SPECS Tag: HEAD
 Log message:
- ugh, typo; release 3

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

 Diffs:


Index: SPECS/libgnome.spec
diff -u SPECS/libgnome.spec:1.107 SPECS/libgnome.spec:1.108
--- SPECS/libgnome.spec:1.107   Thu Dec 20 20:03:55 2007
+++ SPECS/libgnome.spec Thu Dec 20 20:33:34 2007
@@ -3,7 +3,7 @@
 Summary(pl.UTF-8): Podstawowa biblioteka GNOME
 Name:  libgnome
 Version:   2.20.1.1
-Release:   2
+Release:   3
 License:   LGPL v2+
 Group: Libraries
 Source0:   
http://ftp.gnome.org/pub/GNOME/sources/libgnome/2.20/%{name}-%{version}.tar.bz2
@@ -204,7 +204,7 @@
 %attr(755,root,root) %{_libdir}/libgnome-2.so
 %{_libdir}/libgnome-2.la
 %{_includedir}/libgnome-2.0
-%{_pkgconfigdir}/gnome-2.0.pc
+%{_pkgconfigdir}/libgnome-2.0.pc
 
 %files static
 %defattr(644,root,root,755)
@@ -220,6 +220,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.108  2007-12-20 19:33:34  qboosh
+- ugh, typo; release 3
+
 Revision 1.107  2007-12-20 19:03:55  qboosh
 - ghost soname symlink
 - release 2 (rebuild to drop false libcap dependency)


 CVS-web:

http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/SPECS/libgnome.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: popt.spec - ghost soname symlink, simplified .so link creat...

2007-12-20 Thread qboosh
Author: qboosh   Date: Thu Dec 20 19:58:57 2007 GMT
Module: SPECS Tag: HEAD
 Log message:
- ghost soname symlink, simplified .so link creation
- updated autoconf BR

 Files affected:
SPECS:
   popt.spec (1.95 - 1.96) 

 Diffs:


Index: SPECS/popt.spec
diff -u SPECS/popt.spec:1.95 SPECS/popt.spec:1.96
--- SPECS/popt.spec:1.95Wed Dec 19 22:19:15 2007
+++ SPECS/popt.spec Thu Dec 20 20:58:52 2007
@@ -15,11 +15,10 @@
 Release:   1
 License:   X Consortium (MIT-like)
 Group: Libraries
-#Source0:  ftp://jbj.org/pub/rpm-4.4.x/%{name}-%{version}.tar.gz
 Source0:   http://rpm5.org/files/popt/%{name}-%{version}.tar.gz
 # Source0-md5: b5c47ce0185c83f947953c77000533bf
 URL:   http://rpm5.org/
-BuildRequires: autoconf = 2.50
+BuildRequires: autoconf = 2.57
 BuildRequires: automake = 1.4
 BuildRequires: gettext-devel = 0.11.5
 BuildRequires: libtool
@@ -161,9 +160,8 @@
 %{__make} install \
DESTDIR=$RPM_BUILD_ROOT
 
-mv -f $RPM_BUILD_ROOT%{_libdir}/lib*.so.*.* $RPM_BUILD_ROOT/%{_lib}
-rm -f $RPM_BUILD_ROOT%{_libdir}/lib*.so
-ln -sf /%{_lib}/`(cd $RPM_BUILD_ROOT/%{_lib}; echo *)` \
+mv -f $RPM_BUILD_ROOT%{_libdir}/libpopt.so.* $RPM_BUILD_ROOT/%{_lib}
+ln -sf /%{_lib}/$(basename $RPM_BUILD_ROOT/%{_lib}/libpopt.so.*.*.*) \
$RPM_BUILD_ROOT%{_libdir}/libpopt.so
 
 %find_lang %{name}
@@ -178,13 +176,14 @@
 %defattr(644,root,root,755)
 %doc CHANGES COPYING README
 %attr(755,root,root) /%{_lib}/libpopt.so.*.*.*
+%attr(755,root,root) %ghost /%{_lib}/libpopt.so.0
 
 %files devel
 %defattr(644,root,root,755)
 %attr(755,root,root) %{_libdir}/libpopt.so
 %{_libdir}/libpopt.la
-%{_mandir}/man3/*
 %{_includedir}/popt.h
+%{_mandir}/man3/popt.3*
 
 %if %{with static_libs}
 %files static
@@ -198,6 +197,10 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.96  2007-12-20 19:58:52  qboosh
+- ghost soname symlink, simplified .so link creation
+- updated autoconf BR
+
 Revision 1.95  2007-12-19 21:19:15  zbyniu
 - up to 1.13, gettext0.11.patch obsoleted
 


 CVS-web:

http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/SPECS/popt.spec?r1=1.95r2=1.96f=u

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


SOURCES: kdebase-branch.diff - updated

2007-12-20 Thread arekm
Author: arekmDate: Thu Dec 20 20:25:02 2007 GMT
Module: SOURCES   Tag: HEAD
 Log message:
- updated

 Files affected:
SOURCES:
   kdebase-branch.diff (1.63 - 1.64) 

 Diffs:


Index: SOURCES/kdebase-branch.diff
diff -u SOURCES/kdebase-branch.diff:1.63 SOURCES/kdebase-branch.diff:1.64
--- SOURCES/kdebase-branch.diff:1.63Thu Dec 13 20:55:39 2007
+++ SOURCES/kdebase-branch.diff Thu Dec 20 21:24:56 2007
@@ -1,7 +1,7 @@
 Index: ksmserver/legacy.cpp
 ===
 ksmserver/legacy.cpp   (.../tags/KDE/3.5.8/kdebase)(wersja 748145)
-+++ ksmserver/legacy.cpp   (.../branches/KDE/3.5/kdebase)  (wersja 748145)
+--- ksmserver/legacy.cpp   (.../tags/KDE/3.5.8/kdebase)(wersja 750987)
 ksmserver/legacy.cpp   (.../branches/KDE/3.5/kdebase)  (wersja 750987)
 @@ -272,6 +272,10 @@
  for ( int i = 1; i = count; i++ ) {
  QString n = QString::number(i);
@@ -15,8 +15,8 @@
config-readEntry( QString(userId)+n ));
 Index: ksmserver/server.cpp
 ===
 ksmserver/server.cpp   (.../tags/KDE/3.5.8/kdebase)(wersja 748145)
-+++ ksmserver/server.cpp   (.../branches/KDE/3.5/kdebase)  (wersja 748145)
+--- ksmserver/server.cpp   (.../tags/KDE/3.5.8/kdebase)(wersja 750987)
 ksmserver/server.cpp   (.../branches/KDE/3.5/kdebase)  (wersja 750987)
 @@ -903,12 +903,16 @@
  
  bool KSMServer::isWM( const KSMClient* client ) const
@@ -38,8 +38,8 @@
  bool KSMServer::defaultSession() const
 Index: ksmserver/server.h
 ===
 ksmserver/server.h (.../tags/KDE/3.5.8/kdebase)(wersja 748145)
-+++ ksmserver/server.h (.../branches/KDE/3.5/kdebase)  (wersja 748145)
+--- ksmserver/server.h (.../tags/KDE/3.5.8/kdebase)(wersja 750987)
 ksmserver/server.h (.../branches/KDE/3.5/kdebase)  (wersja 750987)
 @@ -138,6 +138,7 @@
  void executeCommand( const QStringList command );
  
@@ -50,8 +50,8 @@
  
 Index: kcontrol/ebrowsing/plugins/ikws/searchproviders/dmoz.desktop
 ===
 kcontrol/ebrowsing/plugins/ikws/searchproviders/dmoz.desktop   
(.../tags/KDE/3.5.8/kdebase)(wersja 748145)
-+++ kcontrol/ebrowsing/plugins/ikws/searchproviders/dmoz.desktop   
(.../branches/KDE/3.5/kdebase)  (wersja 748145)
+--- kcontrol/ebrowsing/plugins/ikws/searchproviders/dmoz.desktop   
(.../tags/KDE/3.5.8/kdebase)(wersja 750987)
 kcontrol/ebrowsing/plugins/ikws/searchproviders/dmoz.desktop   
(.../branches/KDE/3.5/kdebase)  (wersja 750987)
 @@ -27,7 +27,6 @@
  Name[ne]=डाइरेक्टरी खोल्नुहोस्
  Name[pa]=ਖੁੱਲੀ ਡਾਇਰੈਕਟਰੀ
@@ -62,8 +62,8 @@
  Name[rw]= Gufungura Inkoranyamagambo
 Index: kcontrol/locale/default/entry.desktop
 ===
 kcontrol/locale/default/entry.desktop  (.../tags/KDE/3.5.8/kdebase)
(wersja 748145)
-+++ kcontrol/locale/default/entry.desktop  (.../branches/KDE/3.5/kdebase)  
(wersja 748145)
+--- kcontrol/locale/default/entry.desktop  (.../tags/KDE/3.5.8/kdebase)
(wersja 750987)
 kcontrol/locale/default/entry.desktop  (.../branches/KDE/3.5/kdebase)  
(wersja 750987)
 @@ -14,7 +14,7 @@
  Name[da]=Engelsk US
  Name[de]=US-Englisch
@@ -75,8 +75,8 @@
  Name[eu]=EEBBetako ingelesa
 Index: kcontrol/filetypes/filetypes.desktop
 ===
 kcontrol/filetypes/filetypes.desktop   (.../tags/KDE/3.5.8/kdebase)
(wersja 748145)
-+++ kcontrol/filetypes/filetypes.desktop   (.../branches/KDE/3.5/kdebase)  
(wersja 748145)
+--- kcontrol/filetypes/filetypes.desktop   (.../tags/KDE/3.5.8/kdebase)
(wersja 750987)
 kcontrol/filetypes/filetypes.desktop   (.../branches/KDE/3.5/kdebase)  
(wersja 750987)
 @@ -202,7 +202,7 @@
  Keywords[nds]=Dateitypen,Datei-Tohören,Mime Typen,Dateimuster,Datei,Muster
  Keywords[ne]=फाइल प्रकार, फाइल संयोजन, माइम प्रकार, फाइल बाँन्की, फाइलहरू, 
बाँन्की
@@ -88,8 +88,8 @@
  Keywords[pl]=Typy plików,skojarzenia plików,typy MIME,wzorce 
plików,pliki,wzorzec
 Index: kcontrol/smserver/kcmsmserver.desktop
 ===
 kcontrol/smserver/kcmsmserver.desktop  (.../tags/KDE/3.5.8/kdebase)
(wersja 748145)
-+++ kcontrol/smserver/kcmsmserver.desktop  (.../branches/KDE/3.5/kdebase)  
(wersja 748145)
+--- kcontrol/smserver/kcmsmserver.desktop  (.../tags/KDE/3.5.8/kdebase)
(wersja 750987)
 kcontrol/smserver/kcmsmserver.desktop  (.../branches/KDE/3.5/kdebase)  
(wersja 750987)
 @@ -65,7 +65,7 @@
  Name[pt]=Gestor de Sessões
  Name[pt_BR]=Gerenciador de Sessão
@@ -110,8 +110,8 @@
  Comment[sk]=Nastavenie 

SPECS: kdebase.spec - rel 9

2007-12-20 Thread arekm
Author: arekmDate: Thu Dec 20 20:26:52 2007 GMT
Module: SPECS Tag: HEAD
 Log message:
- rel 9

 Files affected:
SPECS:
   kdebase.spec (1.591 - 1.592) 

 Diffs:


Index: SPECS/kdebase.spec
diff -u SPECS/kdebase.spec:1.591 SPECS/kdebase.spec:1.592
--- SPECS/kdebase.spec:1.591Wed Dec 19 09:08:13 2007
+++ SPECS/kdebase.spec  Thu Dec 20 21:26:46 2007
@@ -30,7 +30,7 @@
 Summary(zh_CN.UTF-8):  KDE核心
 Name:  kdebase
 Version:   3.5.8
-Release:   8
+Release:   9
 Epoch: 9
 License:   GPL
 Group: X11/Applications
@@ -2624,6 +2624,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.592  2007-12-20 20:26:46  arekm
+- rel 9
+
 Revision 1.591  2007-12-19 08:08:13  arekm
 - rel 8; new xembed patch version
 


 CVS-web:

http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/SPECS/kdebase.spec?r1=1.591r2=1.592f=u

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


SPECS: subversion.spec - up to 1.4.6

2007-12-20 Thread arekm
Author: arekmDate: Thu Dec 20 21:01:22 2007 GMT
Module: SPECS Tag: HEAD
 Log message:
- up to 1.4.6

 Files affected:
SPECS:
   subversion.spec (1.198 - 1.199) 

 Diffs:


Index: SPECS/subversion.spec
diff -u SPECS/subversion.spec:1.198 SPECS/subversion.spec:1.199
--- SPECS/subversion.spec:1.198 Sat Nov  3 13:41:14 2007
+++ SPECS/subversion.spec   Thu Dec 20 22:01:17 2007
@@ -17,12 +17,12 @@
 Summary(pl.UTF-8): System kontroli wersji podobny, ale lepszy, niż CVS
 Summary(pt_BR.UTF-8):  Sistema de versionamento concorrente
 Name:  subversion
-Version:   1.4.5
-Release:   3
+Version:   1.4.6
+Release:   1
 License:   Apache/BSD Style
 Group: Development/Version Control
 Source0:   http://subversion.tigris.org/downloads/%{name}-%{version}.tar.gz
-# Source0-md5: 3caf1d93e13ed09d76c42eff0f52dfaf
+# Source0-md5: 32786fe2f322982c0567346de18f6460
 Source1:   %{name}-dav_svn.conf
 Source2:   %{name}-authz_svn.conf
 Source3:   %{name}-svnserve.init
@@ -521,7 +521,10 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
-Revision 1.198  2007-11-03 12:41:14  arekm
+Revision 1.199  2007-12-20 21:01:17  arekm
+- up to 1.4.6
+
+Revision 1.198  2007/11/03 12:41:14  arekm
 - fix building with swig 1.3.32rc1
 
 Revision 1.197  2007/09/20 16:00:07  wolf


 CVS-web:

http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/SPECS/subversion.spec?r1=1.198r2=1.199f=u

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


SOURCES: subversion-neon.patch - up to 1.4.6

2007-12-20 Thread arekm
Author: arekmDate: Thu Dec 20 21:01:36 2007 GMT
Module: SOURCES   Tag: HEAD
 Log message:
- up to 1.4.6

 Files affected:
SOURCES:
   subversion-neon.patch (1.7 - 1.8) 

 Diffs:


Index: SOURCES/subversion-neon.patch
diff -u SOURCES/subversion-neon.patch:1.7 SOURCES/subversion-neon.patch:1.8
--- SOURCES/subversion-neon.patch:1.7   Fri Aug 31 22:42:18 2007
+++ SOURCES/subversion-neon.patch   Thu Dec 20 22:01:31 2007
@@ -22,8 +22,8 @@
  
  # Either a space-separated list of allowable Neon versions, or any to
  # mean allow anything.
--NEON_ALLOWED_LIST=0.24.7 0.25.0 0.25.1 0.25.2 0.25.3 0.25.4 0.25.5 0.26.0 
0.26.1 0.26.2
-+NEON_ALLOWED_LIST=0.24.7 0.25.0 0.25.1 0.25.2 0.25.3 0.25.4 0.25.5 0.26.0 
0.26.1 0.26.2 0.26.3 0.26.4 0.26.5 0.26.6 0.27.0
+-NEON_ALLOWED_LIST=0.24.7 0.25.0 0.25.1 0.25.2 0.25.3 0.25.4 0.25.5 0.26.0 
0.26.1 0.26.2 0.26.4
++NEON_ALLOWED_LIST=0.24.7 0.25.0 0.25.1 0.25.2 0.25.3 0.25.4 0.25.5 0.26.0 
0.26.1 0.26.2 0.26.4 0.26.5 0.26.6 0.27.0
  NEON_LATEST_WORKING_VER=0.25.5
  NEON_URL=http://www.webdav.org/neon/neon-${NEON_LATEST_WORKING_VER}.tar.gz;
  dnl You can skip the neon version check only if you know what you are doing 


 CVS-web:

http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/SOURCES/subversion-neon.patch?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: subversion-1.4.6.tar.gz

2007-12-20 Thread arekm

Files fetched: 1

STORED: http://subversion.tigris.org/downloads/subversion-1.4.6.tar.gz
32786fe2f322982c0567346de18f6460  subversion-1.4.6.tar.gz
Size: 6337805 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: wireshark.spec - updated to 0.99.7 (fixes CVE-2007-6451 CVE...

2007-12-20 Thread megabajt
Author: megabajt Date: Thu Dec 20 21:37:38 2007 GMT
Module: SPECS Tag: HEAD
 Log message:
- updated to 0.99.7 (fixes CVE-2007-6451 CVE-2007-6450 CVE-2007-6449 
CVE-2007-6448
  CVE-2007-6447 CVE-2007-6446 CVE-2007-6445 CVE-2007-6444 CVE-2007-6443 
CVE-2007-6442
  CVE-2007-6441 CVE-2007-6440 CVE-2007-6439 CVE-2007-6438 CVE-2007-6121 
CVE-2007-6120
  CVE-2007-6119 CVE-2007-6118 CVE-2007-6117 CVE-2007-6116 CVE-2007-6115 
CVE-2007-6114
  CVE-2007-6113 CVE-2007-6112 CVE-2007-6111)
- more CVE refs for revision 1.175

 Files affected:
SPECS:
   wireshark.spec (1.176 - 1.177) 

 Diffs:


Index: SPECS/wireshark.spec
diff -u SPECS/wireshark.spec:1.176 SPECS/wireshark.spec:1.177
--- SPECS/wireshark.spec:1.176  Thu Sep  6 18:42:24 2007
+++ SPECS/wireshark.specThu Dec 20 22:37:33 2007
@@ -12,12 +12,12 @@
 Summary(ru.UTF-8): Анализатор сетевого траффика
 Summary(uk.UTF-8): Аналізатор мережевого трафіку
 Name:  wireshark
-Version:   0.99.6
-Release:   2
+Version:   0.99.7
+Release:   1
 License:   GPL
 Group: Networking
 Source0:   http://www.wireshark.org/download/src/%{name}-%{version}.tar.bz2
-# Source0-md5: e57a8c8b364c38df3da97e2ee9f0d0bc
+# Source0-md5: ef04dfac3e7acc4a9cb2b107dd2a2f8a
 Source1:   %{name}.desktop
 Source2:   %{name}.su-start-script
 Patch0:%{name}-0.99.5-hip-base05.patch
@@ -37,6 +37,7 @@
 %endif
 %{?with_kerberos5:BuildRequires:   krb5-devel}
 BuildRequires: libgcrypt-devel = 1.1.42
+BuildRequires: libxslt-progs
 BuildRequires: libpcap-devel = 0.4
 BuildRequires: libtool
 BuildRequires: lua51-devel
@@ -337,13 +338,21 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.177  2007-12-20 21:37:33  megabajt
+- updated to 0.99.7 (fixes CVE-2007-6451 CVE-2007-6450 CVE-2007-6449 
CVE-2007-6448
+  CVE-2007-6447 CVE-2007-6446 CVE-2007-6445 CVE-2007-6444 CVE-2007-6443 
CVE-2007-6442
+  CVE-2007-6441 CVE-2007-6440 CVE-2007-6439 CVE-2007-6438 CVE-2007-6121 
CVE-2007-6120
+  CVE-2007-6119 CVE-2007-6118 CVE-2007-6117 CVE-2007-6116 CVE-2007-6115 
CVE-2007-6114
+  CVE-2007-6113 CVE-2007-6112 CVE-2007-6111)
+- more CVE refs for revision 1.175
+
 Revision 1.176  2007-09-06 16:42:24  baggins
 - rel 2
 - build now
 
 Revision 1.175  2007/08/21 11:41:03  adamg
 - updated to 0.99.6 (resolves CVE-2007-3389, CVE-2007-3390, CVE-2007-3391,
-  CVE-2007-3392, CVE-2007-3393)
+  CVE-2007-3392, CVE-2007-3393, CVE-2007-4721)
 - fails to build (probably some as_needed issue)
 
 Revision 1.174  2007/03/31 22:25:20  baggins


 CVS-web:

http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/SPECS/wireshark.spec?r1=1.176r2=1.177f=u

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


SOURCES: wireshark-0.99.5-hip-base05.patch, wireshark-as_needed.pa...

2007-12-20 Thread megabajt
Author: megabajt Date: Thu Dec 20 21:38:49 2007 GMT
Module: SOURCES   Tag: HEAD
 Log message:
- updated for 0.99.7

 Files affected:
SOURCES:
   wireshark-0.99.5-hip-base05.patch (1.2 - 1.3) , wireshark-as_needed.patch 
(1.3 - 1.4) 

 Diffs:


Index: SOURCES/wireshark-0.99.5-hip-base05.patch
diff -u SOURCES/wireshark-0.99.5-hip-base05.patch:1.2 
SOURCES/wireshark-0.99.5-hip-base05.patch:1.3
--- SOURCES/wireshark-0.99.5-hip-base05.patch:1.2   Tue Aug 21 13:39:28 2007
+++ SOURCES/wireshark-0.99.5-hip-base05.patch   Thu Dec 20 22:38:44 2007
@@ -1,44 +1,58 @@
-diff -burN wireshark-0.99.6.orig/epan/dissectors/Makefile.common 
wireshark-0.99.6/epan/dissectors/Makefile.common
 wireshark-0.99.6.orig/epan/dissectors/Makefile.common  2007-08-21 
09:41:51.249801823 +0200
-+++ wireshark-0.99.6/epan/dissectors/Makefile.common   2007-08-21 
09:42:11.955168892 +0200
-@@ -327,6 +327,7 @@
+diff -urN wireshark-0.99.7.orig/epan/dissectors/Makefile.common 
wireshark-0.99.7/epan/dissectors/Makefile.common
+--- wireshark-0.99.7.orig/epan/dissectors/Makefile.common  2007-12-20 
21:19:06.0 +0100
 wireshark-0.99.7/epan/dissectors/Makefile.common   2007-12-20 
21:20:59.0 +0100
+@@ -341,6 +341,7 @@
packet-dis-fields.c \
packet-dis-pdus.c   \
packet-diffserv-mpls-common.c   \
-+  packet-hip.c\
++  packet-hip.c\
packet-distcc.c \
packet-dlsw.c   \
packet-dmp.c\
-diff -burN wireshark-0.99.6.orig/epan/dissectors/Makefile.in 
wireshark-0.99.6/epan/dissectors/Makefile.in
 wireshark-0.99.6.orig/epan/dissectors/Makefile.in  2007-08-21 
09:41:51.249801823 +0200
-+++ wireshark-0.99.6/epan/dissectors/Makefile.in   2007-08-21 
09:42:56.306096587 +0200
-@@ -392,6 +392,7 @@
+diff -urN wireshark-0.99.7.orig/epan/dissectors/Makefile.in 
wireshark-0.99.7/epan/dissectors/Makefile.in
+--- wireshark-0.99.7.orig/epan/dissectors/Makefile.in  2007-12-20 
21:19:06.0 +0100
 wireshark-0.99.7/epan/dissectors/Makefile.in   2007-12-20 
21:34:21.0 +0100
+@@ -396,6 +396,7 @@
+   libcleandissectors_la-packet-h264.lo \
libcleandissectors_la-packet-hci_h4.lo \
libcleandissectors_la-packet-hclnfsd.lo \
-   libcleandissectors_la-packet-homeplug.lo \
 +  libcleandissectors_la-packet-hip.lo \
+   libcleandissectors_la-packet-homeplug.lo \
libcleandissectors_la-packet-hpext.lo \
libcleandissectors_la-packet-hpsw.lo \
-   libcleandissectors_la-packet-hsrp.lo \
-@@ -858,6 +859,7 @@
- INSTALL_DATA = @INSTALL_DATA@
- INSTALL_PROGRAM = @INSTALL_PROGRAM@
- INSTALL_SCRIPT = @INSTALL_SCRIPT@
-+  packet-hip.c\
- INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
- KRB5_CONFIG = @KRB5_CONFIG@
- KRB5_LIBS = @KRB5_LIBS@
-@@ -1848,6 +1850,7 @@
-   packet-frame.h  \
-   packet-ftam.h   \
-   packet-ftbp.h   \
[EMAIL PROTECTED]@@am__include@ @[EMAIL PROTECTED]/$(DEPDIR)/[EMAIL PROTECTED]@
-   packet-giop.h   \
-   packet-gnm.h\
-   packet-gnutella.h   \
-diff -burN wireshark-0.99.6.orig/epan/dissectors/packet-hip.c 
wireshark-0.99.6/epan/dissectors/packet-hip.c
 wireshark-0.99.6.orig/epan/dissectors/packet-hip.c 1970-01-01 
01:00:00.0 +0100
-+++ wireshark-0.99.6/epan/dissectors/packet-hip.c  2007-08-21 
09:42:11.959169156 +0200
+@@ -1417,6 +1418,7 @@
+   packet-h264.c   \
+   packet-hci_h4.c \
+   packet-hclnfsd.c\
++  packet-hip.c\
+   packet-homeplug.c   \
+   packet-hpext.c  \
+   packet-hpsw.c   \
+@@ -2476,6 +2478,7 @@
+ @AMDEP_TRUE@@am__include@ @[EMAIL PROTECTED]/$(DEPDIR)/[EMAIL PROTECTED]@
+ @AMDEP_TRUE@@am__include@ @[EMAIL PROTECTED]/$(DEPDIR)/[EMAIL PROTECTED]@
+ @AMDEP_TRUE@@am__include@ @[EMAIL PROTECTED]/$(DEPDIR)/[EMAIL PROTECTED]@
[EMAIL PROTECTED]@@am__include@ @[EMAIL PROTECTED]/$(DEPDIR)/[EMAIL PROTECTED]@
+ @AMDEP_TRUE@@am__include@ @[EMAIL PROTECTED]/$(DEPDIR)/[EMAIL PROTECTED]@
+ @AMDEP_TRUE@@am__include@ @[EMAIL PROTECTED]/$(DEPDIR)/[EMAIL PROTECTED]@
+ @AMDEP_TRUE@@am__include@ @[EMAIL PROTECTED]/$(DEPDIR)/[EMAIL PROTECTED]@
+@@ -4828,6 +4831,13 @@
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) 
$(depcomp) @AMDEPBACKSLASH@
+ @am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) 
--mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) 
$(CPPFLAGS) $(libcleandissectors_la_CFLAGS) $(CFLAGS) -c -o 
libcleandissectors_la-packet-hclnfsd.lo `test -f 'packet-hclnfsd.c' || echo 
'$(srcdir)/'`packet-hclnfsd.c
+ 
++libcleandissectors_la-packet-hip.lo: packet-hip.c
[EMAIL PROTECTED]@  $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) 
--mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) 
$(CPPFLAGS) 

DISTFILES: wireshark-0.99.7.tar.bz2

2007-12-20 Thread megabajt

Files fetched: 1

STORED: http://www.wireshark.org/download/src/wireshark-0.99.7.tar.bz2
ef04dfac3e7acc4a9cb2b107dd2a2f8a  wireshark-0.99.7.tar.bz2
Size: 13179467 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: wireshark.spec - sorted BRs

2007-12-20 Thread qboosh
Author: qboosh   Date: Thu Dec 20 21:44:14 2007 GMT
Module: SPECS Tag: HEAD
 Log message:
- sorted BRs

 Files affected:
SPECS:
   wireshark.spec (1.177 - 1.178) 

 Diffs:


Index: SPECS/wireshark.spec
diff -u SPECS/wireshark.spec:1.177 SPECS/wireshark.spec:1.178
--- SPECS/wireshark.spec:1.177  Thu Dec 20 22:37:33 2007
+++ SPECS/wireshark.specThu Dec 20 22:44:09 2007
@@ -37,9 +37,9 @@
 %endif
 %{?with_kerberos5:BuildRequires:   krb5-devel}
 BuildRequires: libgcrypt-devel = 1.1.42
-BuildRequires: libxslt-progs
 BuildRequires: libpcap-devel = 0.4
 BuildRequires: libtool
+BuildRequires: libxslt-progs
 BuildRequires: lua51-devel
 %{?with_snmp:BuildRequires:net-snmp-devel}
 BuildRequires: pcre-devel
@@ -338,6 +338,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.178  2007-12-20 21:44:09  qboosh
+- sorted BRs
+
 Revision 1.177  2007-12-20 21:37:33  megabajt
 - updated to 0.99.7 (fixes CVE-2007-6451 CVE-2007-6450 CVE-2007-6449 
CVE-2007-6448
   CVE-2007-6447 CVE-2007-6446 CVE-2007-6445 CVE-2007-6444 CVE-2007-6443 
CVE-2007-6442


 CVS-web:

http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/SPECS/wireshark.spec?r1=1.177r2=1.178f=u

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


pld-builder.new: client/make-request.sh - display alt kernel in te...

2007-12-20 Thread glen
Author: glen Date: Thu Dec 20 21:51:11 2007 GMT
Module: pld-builder.new   Tag: HEAD
 Log message:
- display alt kernel in terminal

 Files affected:
pld-builder.new/client:
   make-request.sh (1.42 - 1.43) 

 Diffs:


Index: pld-builder.new/client/make-request.sh
diff -u pld-builder.new/client/make-request.sh:1.42 
pld-builder.new/client/make-request.sh:1.43
--- pld-builder.new/client/make-request.sh:1.42 Fri Dec 14 18:02:05 2007
+++ pld-builder.new/client/make-request.sh  Thu Dec 20 22:51:06 2007
@@ -341,7 +341,7 @@
[ $fid =  ]  fid=$bid
name=$(echo $s | sed -e 's|:.*||')
branch=$(echo $s | sed -e 's|.*:||')
-   echo 2 * Adding #$i $name:$branch
+   echo 2 * Adding #$i $name:$branch${kernel:+ 
alt_kernel=$kernel}
echospec$name/spec
echobranch$branch/branch
echo${kernel:+kernel$kernel/kernel}


 CVS-web:

http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/pld-builder.new/client/make-request.sh?r1=1.42r2=1.43f=u

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


SPECS: inkscape.spec - rel 5 - rebuild - see if blur works

2007-12-20 Thread patrys
Author: patrys   Date: Thu Dec 20 21:54:16 2007 GMT
Module: SPECS Tag: HEAD
 Log message:
- rel 5
- rebuild
- see if blur works

 Files affected:
SPECS:
   inkscape.spec (1.68 - 1.69) 

 Diffs:


Index: SPECS/inkscape.spec
diff -u SPECS/inkscape.spec:1.68 SPECS/inkscape.spec:1.69
--- SPECS/inkscape.spec:1.68Mon Nov  5 00:09:46 2007
+++ SPECS/inkscape.spec Thu Dec 20 22:54:11 2007
@@ -14,7 +14,7 @@
 Summary(pl.UTF-8): Edytor skalowalnej grafiki wektorowej
 Name:  inkscape
 Version:   0.45.1
-Release:   4
+Release:   5
 License:   GPL v2, LGPL v2.1
 Group: Applications/Graphics
 Source0:   http://dl.sourceforge.net/inkscape/%{name}-%{version}.tar.gz
@@ -154,6 +154,11 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.69  2007-12-20 21:54:11  patrys
+- rel 5
+- rebuild
+- see if blur works
+
 Revision 1.68  2007-11-04 23:09:46  ankry
 - [EMAIL PROTECTED] - [EMAIL PROTECTED], rel. 4
 


 CVS-web:

http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/SPECS/inkscape.spec?r1=1.68r2=1.69f=u

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


SOURCES (MYSQL_5_0): mysql-ssl.patch - fix SSL server side, too

2007-12-20 Thread arekm
Author: arekmDate: Thu Dec 20 22:13:32 2007 GMT
Module: SOURCES   Tag: MYSQL_5_0
 Log message:
- fix SSL server side, too

 Files affected:
SOURCES:
   mysql-ssl.patch (1.1.2.1 - 1.1.2.2) 

 Diffs:


Index: SOURCES/mysql-ssl.patch
diff -u SOURCES/mysql-ssl.patch:1.1.2.1 SOURCES/mysql-ssl.patch:1.1.2.2
--- SOURCES/mysql-ssl.patch:1.1.2.1 Wed Dec 19 15:30:31 2007
+++ SOURCES/mysql-ssl.patch Thu Dec 20 23:13:26 2007
@@ -1,13 +1,58 @@
-diff -ru mysql-5.0.51.org/vio/viossl.c mysql-5.0.51/vio/viossl.c
+diff -urN mysql-5.0.51.org/vio/viossl.c mysql-5.0.51/vio/viossl.c
 --- mysql-5.0.51.org/vio/viossl.c  2007-11-15 15:07:13.0 +0100
-+++ mysql-5.0.51/vio/viossl.c  2007-12-19 15:21:53.211570804 +0100
-@@ -199,6 +199,9 @@
- vio_blocking(vio, was_blocking, unused);
- DBUG_RETURN(1);
 mysql-5.0.51/vio/viossl.c  2007-12-20 22:56:38.660942731 +0100
+@@ -172,20 +172,14 @@
+   vio_delete(vio);
+ }
+ 
+-int sslaccept(struct st_VioSSLFd *ptr, Vio *vio, long timeout)
+-{
+-  DBUG_ENTER(sslaccept);
+-  DBUG_RETURN(sslconnect(ptr, vio, timeout));
+-}
+-
+-
+-int sslconnect(struct st_VioSSLFd *ptr, Vio *vio, long timeout)
++static
++int sslprocess(struct st_VioSSLFd *ptr, Vio *vio, long timeout, my_bool 
accept)
+ {
+   SSL *ssl;
+   my_bool unused;
+   my_bool was_blocking;
+ 
+-  DBUG_ENTER(sslconnect);
++  DBUG_ENTER(sslprocess);
+   DBUG_PRINT(enter, (ptr: 0x%lx, sd: %d  ctx: 0x%lx,
+(long) ptr, vio-sd, (long) ptr-ssl_context));
+ 
+@@ -201,6 +195,12 @@
}
-+
-+  SSL_set_connect_state(ssl);
-+
DBUG_PRINT(info, (ssl: 0x%lx timeout: %ld, (long) ssl, timeout));
SSL_clear(ssl);
++
++  if (accept)
++SSL_set_accept_state(ssl);
++  else
++SSL_set_connect_state(ssl);
++
SSL_SESSION_set_timeout(SSL_get_session(ssl), timeout);
+   SSL_set_fd(ssl, vio-sd);
+ 
+@@ -258,6 +258,17 @@
+   DBUG_RETURN(0);
+ }
+ 
++int sslaccept(struct st_VioSSLFd *ptr, Vio *vio, long timeout)
++{
++  DBUG_ENTER(sslaccept);
++  DBUG_RETURN(sslprocess(ptr, vio, timeout, TRUE));
++}
++
++int sslconnect(struct st_VioSSLFd *ptr, Vio *vio, long timeout)
++{
++  DBUG_ENTER(sslconnect);
++  DBUG_RETURN(sslprocess(ptr, vio, timeout, FALSE));
++}
+ 
+ int vio_ssl_blocking(Vio *vio __attribute__((unused)),
+my_bool set_blocking_mode,


 CVS-web:

http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/SOURCES/mysql-ssl.patch?r1=1.1.2.1r2=1.1.2.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 (MYSQL_5_0): mysql.spec - rel 6; fix serverside SSL part, too

2007-12-20 Thread arekm
Author: arekmDate: Thu Dec 20 22:13:57 2007 GMT
Module: SPECS Tag: MYSQL_5_0
 Log message:
- rel 6; fix serverside SSL part, too

 Files affected:
SPECS:
   mysql.spec (1.353.2.28 - 1.353.2.29) 

 Diffs:


Index: SPECS/mysql.spec
diff -u SPECS/mysql.spec:1.353.2.28 SPECS/mysql.spec:1.353.2.29
--- SPECS/mysql.spec:1.353.2.28 Wed Dec 19 15:32:48 2007
+++ SPECS/mysql.specThu Dec 20 23:13:52 2007
@@ -30,7 +30,7 @@
 Summary(zh_CN):MySQLĘýžÝżâˇţÎńĆ÷
 Name:  mysql
 Version:   5.0.51
-Release:   5
+Release:   6
 License:   GPL + MySQL FLOSS Exception
 Group: Applications/Databases
 #Source0:  ftp://ftp.mysql.com/pub/mysql/src/%{name}-%{version}.tar.gz
@@ -956,6 +956,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.353.2.29  2007-12-20 22:13:52  arekm
+- rel 6; fix serverside SSL part, too
+
 Revision 1.353.2.28  2007-12-19 14:32:48  arekm
 - rel 5; fix connection over SSL
 


 CVS-web:

http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/SPECS/mysql.spec?r1=1.353.2.28r2=1.353.2.29f=u

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


DISTFILES: PHPMailer_v2.0.0.tar.gz

2007-12-20 Thread glen

Files fetched: 1

STORED: http://dl.sourceforge.net/phpmailer/PHPMailer_v2.0.0.tar.gz
1fba7b3b8f67197c371da2f791d517de  PHPMailer_v2.0.0.tar.gz
Size: 92636 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: phpmailer.spec (NEW) - new

2007-12-20 Thread glen
Author: glen Date: Thu Dec 20 22:40:59 2007 GMT
Module: SPECS Tag: HEAD
 Log message:
- new

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

 Diffs:


Index: SPECS/phpmailer.spec
diff -u /dev/null SPECS/phpmailer.spec:1.1
--- /dev/null   Thu Dec 20 23:40:59 2007
+++ SPECS/phpmailer.specThu Dec 20 23:40:54 2007
@@ -0,0 +1,67 @@
+# $Revision$, $Date$
+Summary:   Full featured email transfer class for PHP
+Name:  phpmailer
+Version:   2.0.0
+Release:   0.1
+License:   LGPL
+Group: Development/Languages/PHP
+URL:   http://phpmailer.codeworxtech.com/
+Source0:   http://dl.sourceforge.net/phpmailer/PHPMailer_v%{version}.tar.gz
+# Source0-md5: 1fba7b3b8f67197c371da2f791d517de
+BuildArch: noarch
+BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
+
+%define_appdir /usr/share/php/%{name}
+
+%description
+PHP email transport class featuring multiple file attachments, SMTP
+servers, CCs, BCCs, HTML messages, and word wrap, and more. It can
+send email via sendmail, PHP mail(), or with SMTP. Methods are based
+on the popular AspEmail active server component.
+
+%package phpdoc
+Summary:   Online manual for %{name}
+Summary(pl.UTF-8): Dokumentacja online do %{name}
+Group: Documentation
+
+%description phpdoc
+Documentation for %{name}.
+
+%description phpdoc -l pl.UTF-8
+Dokumentacja do %{name}.
+
+%prep
+%setup -q -n PHPMailer_v%{version}
+
+find '(' -name '*.php' -o -name '*.html' -o -name '*.txt' ')' -print0 | xargs 
-0 %{__sed} -i -e 's,\r$,,'
+
+%install
+rm -rf $RPM_BUILD_ROOT
+install -d $RPM_BUILD_ROOT%{_appdir}/language
+cp -a *.php $RPM_BUILD_ROOT%{_appdir}
+cp -a language/*.php $RPM_BUILD_ROOT%{_appdir}/language
+
+install -d $RPM_BUILD_ROOT%{_docdir}/%{name}
+cp -a phpdoc/* $RPM_BUILD_ROOT%{_docdir}/%{name}
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%files
+%defattr(644,root,root,755)
+%doc ChangeLog.txt README LICENSE docs/*
+%{_appdir}
+
+%files phpdoc
+%defattr(644,root,root,755)
+%{_docdir}/%{name}
+
+%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  2007-12-20 22:40:54  glen
+- new
+

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


DISTFILES: aggregate-1.6.tar.gz

2007-12-20 Thread undefine

Files fetched: 1

STORED: ftp://ftp.isc.org/isc/aggregate/aggregate-1.6.tar.gz
6fcc515388bf2c5b0c8f9f733bfee7e1  aggregate-1.6.tar.gz
Size: 20566 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: aggregate.spec (NEW) - initial

2007-12-20 Thread undefine
Author: undefine Date: Thu Dec 20 22:43:37 2007 GMT
Module: SPECS Tag: HEAD
 Log message:
- initial

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

 Diffs:


Index: SPECS/aggregate.spec
diff -u /dev/null SPECS/aggregate.spec:1.1
--- /dev/null   Thu Dec 20 23:43:37 2007
+++ SPECS/aggregate.specThu Dec 20 23:43:32 2007
@@ -0,0 +1,69 @@
+# $Revision$, $Date$
+Summary:   aggregate list of prefixes
+Summary(pl.UTF-8): agregacja listy adresów
+Name:  aggregate
+Version:   1.6
+Release:   1
+License:   BSD-like
+Group: Applications/Networking
+Source0:   ftp://ftp.isc.org/isc/aggregate/%{name}-%{version}.tar.gz
+# Source0-md5: 6fcc515388bf2c5b0c8f9f733bfee7e1
+BuildRequires: autoconf
+BuildRequires: automake
+BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
+
+%description
+aggregate takes a list of prefixes in conventional format on stdin,
+and performs two optimisations to reduce the length of the prefix
+list. It removes any supplied prefixes which are supurfluous because
+they are already included in another supplied prefix (e.g.,
+203.97.2.0/24 would be removed if 203.97.0.0/17 was also supplied),
+and identifies adjacent prefixes that can be combined under a single,
+shorter-length prefix (e.g., 203.97.2.0/24 and 203.97.3.0/24 can be
+combined into the single prefix 203.97.2.0/23).
+
+%description -l pl.UTF-8
+aggregate bierze listę adresów sieci w tradycyjnej formie na
+standardowym wejściu i wykonuje dwie optymalizacje by zmniejszyć jej
+wielkość. Usuwa wszelkie adresy sieci zawierające się w innych
+adresach (np 203.97.2.0/24 będzie usunięte jeżeli jest podana
+także 203.97.0.0/17), oraz rozpoznaje przystające adresy sieci
+które mogą być połączone w jeden, krótszy adres (np
+203.97.2.0/24 i 203.97.3.0/24 będą połączone w pojedyńczy adres
+203.97.2.0/23).
+
+%prep
+%setup -q
+
+%build
+%{__aclocal}
+%{__autoconf}
+%configure
+%{__make}
+
+%install
+rm -rf $RPM_BUILD_ROOT
+
+install -d $RPM_BUILD_ROOT{%{_bindir},%{_mandir}/man1}
+
+install aggregate aggregate-ios $RPM_BUILD_ROOT%{_bindir}
+install aggregate.1 aggregate-ios.1 $RPM_BUILD_ROOT%{_mandir}/man1
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%files
+%defattr(644,root,root,755)
+%doc LICEN* HISTORY
+%attr(755,root,root) %{_bindir}/*
+%{_mandir}/man1/*
+
+%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  2007-12-20 22:43:32  undefine
+- initial
+

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


pld-builder.new: PLD_Builder/request.py - be builder like, cvs tag...

2007-12-20 Thread glen
Author: glen Date: Thu Dec 20 22:46:52 2007 GMT
Module: pld-builder.new   Tag: HEAD
 Log message:
- be builder like, cvs tag is lowercase -r

 Files affected:
pld-builder.new/PLD_Builder:
   request.py (1.41 - 1.42) 

 Diffs:


Index: pld-builder.new/PLD_Builder/request.py
diff -u pld-builder.new/PLD_Builder/request.py:1.41 
pld-builder.new/PLD_Builder/request.py:1.42
--- pld-builder.new/PLD_Builder/request.py:1.41 Mon Nov 19 21:34:39 2007
+++ pld-builder.new/PLD_Builder/request.py  Thu Dec 20 23:46:47 2007
@@ -189,7 +189,7 @@
 if self.is_command():
 desc = SH: %s [%s] % (self.command, ' '.join(self.command_flags))
 else:
-desc = %s (%s -R %s %s %s) \
+desc = %s (%s -r %s %s %s) \
 % (self.src_rpm, self.spec, self.branch, self.bconds_string(), 
self.kernel_string())
 f.write(%s small[ % desc)
 builders = []


 CVS-web:

http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/pld-builder.new/PLD_Builder/request.py?r1=1.41r2=1.42f=u

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


SPECS: kernel-char-bristuff.spec - updated to 0.3.0-PRE-1y-m - pas...

2007-12-20 Thread adamg
Author: adamgDate: Thu Dec 20 23:12:37 2007 GMT
Module: SPECS Tag: HEAD
 Log message:
- updated to 0.3.0-PRE-1y-m
- pass KBUILD_MODPOST_WARN to avoid fatal errors because of unresolved 
  symbols (it requires few of them from zaptel module from zaptel.spec)

 Files affected:
SPECS:
   kernel-char-bristuff.spec (1.1 - 1.2) 

 Diffs:


Index: SPECS/kernel-char-bristuff.spec
diff -u SPECS/kernel-char-bristuff.spec:1.1 SPECS/kernel-char-bristuff.spec:1.2
--- SPECS/kernel-char-bristuff.spec:1.1 Thu Dec 20 10:38:20 2007
+++ SPECS/kernel-char-bristuff.spec Fri Dec 21 00:12:32 2007
@@ -11,7 +11,7 @@
 %endif
 
 %definerel 0.1
-%definever 0.3.0-PRE-1y-k
+%definever 0.3.0-PRE-1y-m
 %definever2%(echo %ver | tr '-' '_')
 
 Summary:   Linux driver for bristuff
@@ -22,7 +22,7 @@
 License:   GPL
 Group: Base/Kernel
 Source0:   
http://212.91.251.199/~junghanns.net/downloads/bristuff-%{ver}.tar.gz
-# Source0-md5: 2c45a1955703b7f208310a9dd0a6b1f1
+# Source0-md5: f198765838587c918d7d2c94b73e3b0b
 URL:   http://212.91.251.199/~junghanns.net/downloads/
 %if %{with kernel}
 %{?with_dist_kernel:BuildRequires: kernel%{_alt_kernel}-module-build = 
3:2.6.20.2}
@@ -58,7 +58,7 @@
 %if %{with kernel}
for i in ztgsm qozap cwain zaphfc;
do
-   %build_kernel_modules -C $i -m $i
+   %build_kernel_modules -C $i -m $i KBUILD_MODPOST_WARN=1
done
 %endif
 
@@ -95,6 +95,11 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.2  2007-12-20 23:12:32  adamg
+- updated to 0.3.0-PRE-1y-m
+- pass KBUILD_MODPOST_WARN to avoid fatal errors because of unresolved
+  symbols (it requires few of them from zaptel module from zaptel.spec)
+
 Revision 1.1  2007-12-20 09:38:20  adamg
 - new
 


 CVS-web:

http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/SPECS/kernel-char-bristuff.spec?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


DISTFILES: bristuff-0.3.0-PRE-1y-m.tar.gz

2007-12-20 Thread adamg

Files fetched: 1

STORED: 
http://212.91.251.199/~junghanns.net/downloads/bristuff-0.3.0-PRE-1y-m.tar.gz
f198765838587c918d7d2c94b73e3b0b  bristuff-0.3.0-PRE-1y-m.tar.gz
Size: 292607 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: kbd.spec - rel 18 - unicode by default for new machines

2007-12-20 Thread patrys
Author: patrys   Date: Thu Dec 20 23:19:59 2007 GMT
Module: SPECS Tag: HEAD
 Log message:
- rel 18
- unicode by default for new machines

 Files affected:
SPECS:
   kbd.spec (1.95 - 1.96) 

 Diffs:


Index: SPECS/kbd.spec
diff -u SPECS/kbd.spec:1.95 SPECS/kbd.spec:1.96
--- SPECS/kbd.spec:1.95 Thu Oct 25 01:49:43 2007
+++ SPECS/kbd.spec  Fri Dec 21 00:19:54 2007
@@ -6,7 +6,7 @@
 Summary(pl.UTF-8): Narzędzia do obsługi konsoli
 Name:  kbd
 Version:   1.12
-Release:   17
+Release:   18
 License:   GPL
 Group: Applications/Console
 Source0:   
ftp://ftp.win.tue.nl/pub/linux-local/utils/kbd/%{name}-%{version}.tar.gz
@@ -174,7 +174,11 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
-Revision 1.95  2007-10-24 23:49:43  ankry
+Revision 1.96  2007-12-20 23:19:54  patrys
+- rel 18
+- unicode by default for new machines
+
+Revision 1.95  2007/10/24 23:49:43  ankry
 - OOPS, reverted
 
 Revision 1.94  2007/10/24 23:45:30  ankry


 CVS-web:

http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/SPECS/kbd.spec?r1=1.95r2=1.96f=u

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


SOURCES: kbd.sysconfig - rel 18 - unicode by default for new machines

2007-12-20 Thread patrys
Author: patrys   Date: Thu Dec 20 23:20:00 2007 GMT
Module: SOURCES   Tag: HEAD
 Log message:
- rel 18
- unicode by default for new machines

 Files affected:
SOURCES:
   kbd.sysconfig (1.14 - 1.15) 

 Diffs:


Index: SOURCES/kbd.sysconfig
diff -u SOURCES/kbd.sysconfig:1.14 SOURCES/kbd.sysconfig:1.15
--- SOURCES/kbd.sysconfig:1.14  Sun Feb 11 19:15:27 2007
+++ SOURCES/kbd.sysconfig   Fri Dec 21 00:19:54 2007
@@ -10,12 +10,14 @@
 # If the font doesn't include a mapping between font glyphs and Unicode,
 # the map can be specified here (take one from from /lib/kbd/unimaps dir).
 # This is not needed with most modern fonts.
-#CONSOLESCREENFONTMAP=lat2u
+CONSOLESCREENFONTMAP=lat2u
 
 # Application-charset map file name (take one from /lib/kbd/consoletrans
 # dir). Determines the encoding used by the console when in single-byte
 # (non-Unicode) mode.
-CONSOLEMAP=8859-2
+# For old latin-2 behaviour use this:
+#CONSOLEMAP=8859-2
+CONSOLEMAP=
 
 # UTF-8 example using terminus-console-font:
 #CONSOLEFONT=ter-v14n


 CVS-web:

http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/SOURCES/kbd.sysconfig?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


SPECS: xorg-driver-video-ati.spec - up to 6.7.197

2007-12-20 Thread arekm
Author: arekmDate: Thu Dec 20 23:28:40 2007 GMT
Module: SPECS Tag: HEAD
 Log message:
- up to 6.7.197

 Files affected:
SPECS:
   xorg-driver-video-ati.spec (1.37 - 1.38) 

 Diffs:


Index: SPECS/xorg-driver-video-ati.spec
diff -u SPECS/xorg-driver-video-ati.spec:1.37 
SPECS/xorg-driver-video-ati.spec:1.38
--- SPECS/xorg-driver-video-ati.spec:1.37   Mon Nov 12 07:30:47 2007
+++ SPECS/xorg-driver-video-ati.specFri Dec 21 00:28:34 2007
@@ -3,12 +3,12 @@
 Summary:   X.org video drivers for ATI adapters
 Summary(pl.UTF-8): Sterowniki obrazu X.org do kart graficznych ATI
 Name:  xorg-driver-video-ati
-Version:   6.7.196
+Version:   6.7.197
 Release:   1
 License:   MIT
 Group: X11/Applications
 Source0:   
http://xorg.freedesktop.org/releases/individual/driver/xf86-video-ati-%{version}.tar.bz2
-# Source0-md5: 06db625391c75c8be86c4dd5a5d713e6
+# Source0-md5: 7bd53945ce6d0b48b7fd558039e82aa2
 URL:   http://xorg.freedesktop.org/
 BuildRequires: Mesa-libGL-devel
 BuildRequires: autoconf = 2.57
@@ -146,6 +146,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.38  2007-12-20 23:28:34  arekm
+- up to 6.7.197
+
 Revision 1.37  2007-11-12 06:30:47  arekm
 - up to 6.7.196
 


 CVS-web:

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

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


DISTFILES: xf86-video-ati-6.7.197.tar.bz2

2007-12-20 Thread arekm

Files fetched: 1

STORED: 
http://xorg.freedesktop.org/releases/individual/driver/xf86-video-ati-6.7.197.tar.bz2
7bd53945ce6d0b48b7fd558039e82aa2  xf86-video-ati-6.7.197.tar.bz2
Size: 750653 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: systrace.spec - up to 1.6e [fixes CVE-2007-4773]

2007-12-20 Thread zbyniu
Author: zbyniu   Date: Fri Dec 21 00:47:38 2007 GMT
Module: SPECS Tag: HEAD
 Log message:
- up to 1.6e [fixes CVE-2007-4773]

 Files affected:
SPECS:
   systrace.spec (1.9 - 1.10) 

 Diffs:


Index: SPECS/systrace.spec
diff -u SPECS/systrace.spec:1.9 SPECS/systrace.spec:1.10
--- SPECS/systrace.spec:1.9 Sun Nov 18 19:16:35 2007
+++ SPECS/systrace.spec Fri Dec 21 01:47:33 2007
@@ -2,12 +2,12 @@
 Summary:   Interactive Policy Generation for System Calls
 Summary(pl.UTF-8): Interaktywne generowanie polityki dla wywołań 
systemowych
 Name:  systrace
-Version:   1.6d
-Release:   3
+Version:   1.6e
+Release:   1
 License:   BSD-like
 Group: Applications
 Source0:   
http://www.citi.umich.edu/u/provos/systrace/%{name}-%{version}.tar.gz
-# Source0-md5: 91f2287a22e22ae1585c33c1f26b74dd
+# Source0-md5: 4fd65a51c97612822b658dd8eba79833
 Patch0:%{name}-newsysc.patch
 URL:   http://www.citi.umich.edu/u/provos/systrace/
 BuildRequires: libevent-devel
@@ -58,6 +58,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.10  2007-12-21 00:47:33  zbyniu
+- up to 1.6e [fixes CVE-2007-4773]
+
 Revision 1.9  2007-11-18 18:16:35  arekm
 - rel 3
 


 CVS-web:

http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/SPECS/systrace.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


DISTFILES: systrace-1.6e.tar.gz

2007-12-20 Thread zbyniu

Files fetched: 1

STORED: http://www.citi.umich.edu/u/provos/systrace/systrace-1.6e.tar.gz
4fd65a51c97612822b658dd8eba79833  systrace-1.6e.tar.gz
Size: 220745 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: systrace-newsysc.patch - updated for 1.6e

2007-12-20 Thread zbyniu
Author: zbyniu   Date: Fri Dec 21 00:48:15 2007 GMT
Module: SOURCES   Tag: HEAD
 Log message:
- updated for 1.6e

 Files affected:
SOURCES:
   systrace-newsysc.patch (1.1 - 1.2) 

 Diffs:


Index: SOURCES/systrace-newsysc.patch
diff -u SOURCES/systrace-newsysc.patch:1.1 SOURCES/systrace-newsysc.patch:1.2
--- SOURCES/systrace-newsysc.patch:1.1  Wed Sep 12 21:21:20 2007
+++ SOURCES/systrace-newsysc.patch  Fri Dec 21 01:48:10 2007
@@ -71,12 +71,3 @@
NULL /* sentinel */
  };
  
-@@ -332,7 +356,7 @@
-   if (number  0 || number = nr_syscalls) {
-   DFPRINTF((stderr, %s: pid %d Bad number: %d\n,
-   __func__, pidnr, number));
--  return (NULL);
-+  return (UNKNOWN);
-   }
- 
-   return (linux_syscallnames[number]);


 CVS-web:

http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/SOURCES/systrace-newsysc.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: FreeMat.spec - ver. 3.5 (NFY)

2007-12-20 Thread sls
Author: sls  Date: Fri Dec 21 02:11:34 2007 GMT
Module: SPECS Tag: HEAD
 Log message:
- ver. 3.5 (NFY)

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

 Diffs:


Index: SPECS/FreeMat.spec
diff -u SPECS/FreeMat.spec:1.11 SPECS/FreeMat.spec:1.12
--- SPECS/FreeMat.spec:1.11 Mon Feb 12 22:21:30 2007
+++ SPECS/FreeMat.spec  Fri Dec 21 03:11:28 2007
@@ -7,12 +7,12 @@
 Summary:   FreeMat - an environment for rapid engineering and scientific 
processing
 Summary(pl.UTF-8): FreeMat - środowisko do szybkiego przetwarzania 
inżynieryjnego i naukowego
 Name:  FreeMat
-Version:   1.10r1
-Release:   1
+Version:   3.5
+Release:   0.1
 License:   MIT
 Group: Applications/Math
 Source0:   http://dl.sourceforge.net/freemat/%{name}-%{fversion}.tar.gz
-# Source0-md5: 46c02f2c8c882c7d6f968d21c5a62b27
+# Source0-md5: 4cc41c1f9265a86134fd338076d1a65f
 Source1:   %{name}.desktop
 Patch0:%{name}-system_ffi.patch
 URL:   http://freemat.sourceforge.net
@@ -89,6 +89,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.12  2007-12-21 02:11:28  sls
+- ver. 3.5 (NFY)
+
 Revision 1.11  2007-02-12 21:21:30  glen
 - tabs in preamle
 


 CVS-web:

http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/SPECS/FreeMat.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: FreeMat-3.5.tar.gz

2007-12-20 Thread sls

Files fetched: 1

STORED: http://dl.sourceforge.net/freemat/FreeMat-3.5.tar.gz
4cc41c1f9265a86134fd338076d1a65f  FreeMat-3.5.tar.gz
Size: 5616432 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: FreeMat.spec - big BR updates - remove system_ffi.patch

2007-12-20 Thread sls
Author: sls  Date: Fri Dec 21 02:23:46 2007 GMT
Module: SPECS Tag: HEAD
 Log message:
- big BR updates
- remove system_ffi.patch

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

 Diffs:


Index: SPECS/FreeMat.spec
diff -u SPECS/FreeMat.spec:1.12 SPECS/FreeMat.spec:1.13
--- SPECS/FreeMat.spec:1.12 Fri Dec 21 03:11:28 2007
+++ SPECS/FreeMat.spec  Fri Dec 21 03:23:41 2007
@@ -1,7 +1,6 @@
 # $Revision$, $Date$
 # TODO:
 # - look at MPI support - doesn't work with lam for me :/
-# - use system libffi
 %definefversion%(echo %{version} |tr r -)
 %definemversion%(echo %{version} |cut -f -1 -d r)
 Summary:   FreeMat - an environment for rapid engineering and scientific 
processing
@@ -14,20 +13,22 @@
 Source0:   http://dl.sourceforge.net/freemat/%{name}-%{fversion}.tar.gz
 # Source0-md5: 4cc41c1f9265a86134fd338076d1a65f
 Source1:   %{name}.desktop
-Patch0:%{name}-system_ffi.patch
 URL:   http://freemat.sourceforge.net
-BuildRequires: XFree86-devel
 BuildRequires: autoconf
 BuildRequires: automake
 BuildRequires: blas-devel
-BuildRequires: fltk-devel
 BuildRequires: gcc-g77
-BuildRequires: libffi-devel
 BuildRequires: libjpeg-devel
 BuildRequires: libpng-devel
 BuildRequires: libstdc++-devel
 BuildRequires: libtiff-devel
 BuildRequires: ncurses-devel
+BuildRequires: QtCore-devel
+BuildRequires: QtGui-devel
+BuildRequires: QtOpenGL-devel
+BuildRequires: QtNetwork-devel
+BuildRequires: QtXml-devel
+BuildRequires: qt4-build
 BuildRequires: zlib-devel
 BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
 
@@ -51,7 +52,6 @@
 
 %prep
 %setup -q -n %{name}-%{mversion}
-%patch0
 
 %build
 CFLAGS=%{rpmcflags} -I/usr/include/ncurses
@@ -89,6 +89,10 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.13  2007-12-21 02:23:41  sls
+- big BR updates
+- remove system_ffi.patch
+
 Revision 1.12  2007-12-21 02:11:28  sls
 - ver. 3.5 (NFY)
 


 CVS-web:

http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/SPECS/FreeMat.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


SOURCES: FreeMat-system_ffi.patch (REMOVED) - libffi not used in F...

2007-12-20 Thread sls
Author: sls  Date: Fri Dec 21 02:24:48 2007 GMT
Module: SOURCES   Tag: HEAD
 Log message:
- libffi not used in FreeMat-3.5

 Files affected:
SOURCES:
   FreeMat-system_ffi.patch (1.1 - NONE)  (REMOVED)

 Diffs:

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


SOURCES: FreeMat-qt4.patch (NEW) - use PLD names for qt4-build bin...

2007-12-20 Thread sls
Author: sls  Date: Fri Dec 21 02:27:40 2007 GMT
Module: SOURCES   Tag: HEAD
 Log message:
- use PLD names for qt4-build binaries

 Files affected:
SOURCES:
   FreeMat-qt4.patch (NONE - 1.1)  (NEW)

 Diffs:


Index: SOURCES/FreeMat-qt4.patch
diff -u /dev/null SOURCES/FreeMat-qt4.patch:1.1
--- /dev/null   Fri Dec 21 03:27:40 2007
+++ SOURCES/FreeMat-qt4.patch   Fri Dec 21 03:27:35 2007
@@ -0,0 +1,14 @@
+--- FreeMat-3.5/configure.in.orig  2007-12-21 02:21:39.951455670 +0100
 FreeMat-3.5/configure.in   2007-12-21 02:22:19.945354348 +0100
+@@ -47,9 +47,9 @@
+   AC_CHECK_FILE([$EXTRA_QT_INCLUDE_DIR/QWidget],
+   QT_CFLAGS=$QT_CFLAGS -I$EXTRA_QT_INCLUDE_DIR,
+   AC_MSG_WARN([QWidget not found])))
+-  AC_CHECK_PROGS(QT_MOC, [moc4 moc-qt4 moc], [])
++  AC_CHECK_PROGS(QT_MOC, [moc4 moc-qt4 moc qt4-moc], [])
+   AC_CHECK_PROGS(QT_RCC, [rcc4 rcc-qt4 rcc], [])
+-  AC_CHECK_PROGS(QT_UIC, [uic4 uic-qt4 uic], [])
++  AC_CHECK_PROGS(QT_UIC, [uic4 uic-qt4 uic qt4-uic], [])
+   if (test $QT_MOC = ); then
+ AC_MSG_ERROR([QT4 moc is required.])
+   fi

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


SPECS: FreeMat.spec - add qt4.patch

2007-12-20 Thread sls
Author: sls  Date: Fri Dec 21 02:28:01 2007 GMT
Module: SPECS Tag: HEAD
 Log message:
- add qt4.patch

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

 Diffs:


Index: SPECS/FreeMat.spec
diff -u SPECS/FreeMat.spec:1.13 SPECS/FreeMat.spec:1.14
--- SPECS/FreeMat.spec:1.13 Fri Dec 21 03:23:41 2007
+++ SPECS/FreeMat.spec  Fri Dec 21 03:27:56 2007
@@ -13,6 +13,7 @@
 Source0:   http://dl.sourceforge.net/freemat/%{name}-%{fversion}.tar.gz
 # Source0-md5: 4cc41c1f9265a86134fd338076d1a65f
 Source1:   %{name}.desktop
+Patch0:%{name}-qt4.patch
 URL:   http://freemat.sourceforge.net
 BuildRequires: autoconf
 BuildRequires: automake
@@ -52,6 +53,7 @@
 
 %prep
 %setup -q -n %{name}-%{mversion}
+%patch0 -p1
 
 %build
 CFLAGS=%{rpmcflags} -I/usr/include/ncurses
@@ -89,6 +91,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.14  2007-12-21 02:27:56  sls
+- add qt4.patch
+
 Revision 1.13  2007-12-21 02:23:41  sls
 - big BR updates
 - remove system_ffi.patch


 CVS-web:

http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/SPECS/FreeMat.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: FreeMat.spec - BR: lapack-devel instead of blas-devel - TOD...

2007-12-20 Thread sls
Author: sls  Date: Fri Dec 21 02:30:01 2007 GMT
Module: SPECS Tag: HEAD
 Log message:
- BR: lapack-devel instead of blas-devel
- TODO entry

 Files affected:
SPECS:
   FreeMat.spec (1.14 - 1.15) 

 Diffs:


Index: SPECS/FreeMat.spec
diff -u SPECS/FreeMat.spec:1.14 SPECS/FreeMat.spec:1.15
--- SPECS/FreeMat.spec:1.14 Fri Dec 21 03:27:56 2007
+++ SPECS/FreeMat.spec  Fri Dec 21 03:29:55 2007
@@ -1,6 +1,8 @@
 # $Revision$, $Date$
 # TODO:
 # - look at MPI support - doesn't work with lam for me :/
+# - build with ARPACK, UMFPACK, CYCLE COUNTER (whatever it is)
+#
 %definefversion%(echo %{version} |tr r -)
 %definemversion%(echo %{version} |cut -f -1 -d r)
 Summary:   FreeMat - an environment for rapid engineering and scientific 
processing
@@ -17,8 +19,8 @@
 URL:   http://freemat.sourceforge.net
 BuildRequires: autoconf
 BuildRequires: automake
-BuildRequires: blas-devel
 BuildRequires: gcc-g77
+BuildRequires: lapack-devel
 BuildRequires: libjpeg-devel
 BuildRequires: libpng-devel
 BuildRequires: libstdc++-devel
@@ -91,6 +93,10 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.15  2007-12-21 02:29:55  sls
+- BR: lapack-devel instead of blas-devel
+- TODO entry
+
 Revision 1.14  2007-12-21 02:27:56  sls
 - add qt4.patch
 


 CVS-web:

http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/SPECS/FreeMat.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


SOURCES: FreeMat-link.patch (NEW) - add missing -ltinfo

2007-12-20 Thread sls
Author: sls  Date: Fri Dec 21 02:34:30 2007 GMT
Module: SOURCES   Tag: HEAD
 Log message:
- add missing -ltinfo

 Files affected:
SOURCES:
   FreeMat-link.patch (NONE - 1.1)  (NEW)

 Diffs:


Index: SOURCES/FreeMat-link.patch
diff -u /dev/null SOURCES/FreeMat-link.patch:1.1
--- /dev/null   Fri Dec 21 03:34:30 2007
+++ SOURCES/FreeMat-link.patch  Fri Dec 21 03:34:25 2007
@@ -0,0 +1,10 @@
+--- FreeMat-3.5/configure.in.orig  2007-12-21 02:45:05.237070538 +0100
 FreeMat-3.5/configure.in   2007-12-21 02:45:19.734858809 +0100
+@@ -289,6 +289,7 @@
+ 
+ AM_CONDITIONAL(USECLI, test x$ismingw = xfalse)
+ 
++LIBS=$LIBS -ltinfo
+ 
+ AC_OUTPUT([Makefile src/Makefile libs/Makefile libs/libFreeMat/Makefile
+   libs/libCore/Makefile libs/libFN/Makefile

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


SPECS: FreeMat.spec - add link.patch

2007-12-20 Thread sls
Author: sls  Date: Fri Dec 21 02:35:22 2007 GMT
Module: SPECS Tag: HEAD
 Log message:
- add link.patch

 Files affected:
SPECS:
   FreeMat.spec (1.15 - 1.16) 

 Diffs:


Index: SPECS/FreeMat.spec
diff -u SPECS/FreeMat.spec:1.15 SPECS/FreeMat.spec:1.16
--- SPECS/FreeMat.spec:1.15 Fri Dec 21 03:29:55 2007
+++ SPECS/FreeMat.spec  Fri Dec 21 03:35:17 2007
@@ -16,6 +16,7 @@
 # Source0-md5: 4cc41c1f9265a86134fd338076d1a65f
 Source1:   %{name}.desktop
 Patch0:%{name}-qt4.patch
+Patch1:%{name}-link.patch
 URL:   http://freemat.sourceforge.net
 BuildRequires: autoconf
 BuildRequires: automake
@@ -56,6 +57,7 @@
 %prep
 %setup -q -n %{name}-%{mversion}
 %patch0 -p1
+%patch1 -p1
 
 %build
 CFLAGS=%{rpmcflags} -I/usr/include/ncurses
@@ -93,6 +95,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.16  2007-12-21 02:35:17  sls
+- add link.patch
+
 Revision 1.15  2007-12-21 02:29:55  sls
 - BR: lapack-devel instead of blas-devel
 - TODO entry


 CVS-web:

http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/SPECS/FreeMat.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: FreeMat.spec - removed lots of BR - files updates

2007-12-20 Thread sls
Author: sls  Date: Fri Dec 21 02:46:06 2007 GMT
Module: SPECS Tag: HEAD
 Log message:
- removed lots of BR
- files updates

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

 Diffs:


Index: SPECS/FreeMat.spec
diff -u SPECS/FreeMat.spec:1.16 SPECS/FreeMat.spec:1.17
--- SPECS/FreeMat.spec:1.16 Fri Dec 21 03:35:17 2007
+++ SPECS/FreeMat.spec  Fri Dec 21 03:46:00 2007
@@ -22,10 +22,6 @@
 BuildRequires: automake
 BuildRequires: gcc-g77
 BuildRequires: lapack-devel
-BuildRequires: libjpeg-devel
-BuildRequires: libpng-devel
-BuildRequires: libstdc++-devel
-BuildRequires: libtiff-devel
 BuildRequires: ncurses-devel
 BuildRequires: QtCore-devel
 BuildRequires: QtGui-devel
@@ -33,7 +29,6 @@
 BuildRequires: QtNetwork-devel
 BuildRequires: QtXml-devel
 BuildRequires: qt4-build
-BuildRequires: zlib-devel
 BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
 
 %description
@@ -86,7 +81,7 @@
 %files
 %defattr(644,root,root,755)
 %attr(755,root,root) %{_bindir}/%{name}
-%{_datadir}/%{name}
+%{_datadir}/%{name}-%{version}
 %{_desktopdir}/%{name}.desktop
 
 %define date   %(echo `LC_ALL=C date +%a %b %d %Y`)
@@ -95,6 +90,10 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.17  2007-12-21 02:46:00  sls
+- removed lots of BR
+- files updates
+
 Revision 1.16  2007-12-21 02:35:17  sls
 - add link.patch
 


 CVS-web:

http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/SPECS/FreeMat.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: FreeMat.spec - lots of BR for optional components

2007-12-20 Thread sls
Author: sls  Date: Fri Dec 21 02:53:09 2007 GMT
Module: SPECS Tag: HEAD
 Log message:
- lots of BR for optional components

 Files affected:
SPECS:
   FreeMat.spec (1.17 - 1.18) 

 Diffs:


Index: SPECS/FreeMat.spec
diff -u SPECS/FreeMat.spec:1.17 SPECS/FreeMat.spec:1.18
--- SPECS/FreeMat.spec:1.17 Fri Dec 21 03:46:00 2007
+++ SPECS/FreeMat.spec  Fri Dec 21 03:53:04 2007
@@ -9,7 +9,7 @@
 Summary(pl.UTF-8): FreeMat - środowisko do szybkiego przetwarzania 
inżynieryjnego i naukowego
 Name:  FreeMat
 Version:   3.5
-Release:   0.1
+Release:   1
 License:   MIT
 Group: Applications/Math
 Source0:   http://dl.sourceforge.net/freemat/%{name}-%{fversion}.tar.gz
@@ -20,9 +20,14 @@
 URL:   http://freemat.sourceforge.net
 BuildRequires: autoconf
 BuildRequires: automake
+BuildRequires: ffcall-devel
+BuildRequires: fftw3-devel
+BuildRequires: fftw3-single-devel
 BuildRequires: gcc-g77
 BuildRequires: lapack-devel
 BuildRequires: ncurses-devel
+BuildRequires: pcre-devel
+BuildRequires: portaudio-devel
 BuildRequires: QtCore-devel
 BuildRequires: QtGui-devel
 BuildRequires: QtOpenGL-devel
@@ -90,6 +95,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.18  2007-12-21 02:53:04  sls
+- lots of BR for optional components
+
 Revision 1.17  2007-12-21 02:46:00  sls
 - removed lots of BR
 - files updates


 CVS-web:

http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/SPECS/FreeMat.spec?r1=1.17r2=1.18f=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): glib2.spec - 2.15.0 - here comes gio

2007-12-20 Thread patrys
Author: patrys   Date: Fri Dec 21 03:04:55 2007 GMT
Module: SPECS Tag: DEVEL
 Log message:
- 2.15.0
- here comes gio

 Files affected:
SPECS:
   glib2.spec (1.157.4.4 - 1.157.4.5) 

 Diffs:


Index: SPECS/glib2.spec
diff -u SPECS/glib2.spec:1.157.4.4 SPECS/glib2.spec:1.157.4.5
--- SPECS/glib2.spec:1.157.4.4  Thu Jun  7 17:26:15 2007
+++ SPECS/glib2.specFri Dec 21 04:04:50 2007
@@ -17,13 +17,13 @@
 Summary(tr.UTF-8): Yararlı ufak yordamlar kitaplığı
 Summary(zh_CN.UTF-8):  实用工具函数库
 Name:  glib2
-Version:   2.13.4
+Version:   2.15.0
 Release:   1
 Epoch: 1
 License:   LGPL
 Group: Libraries
-Source0:   ftp://ftp.gtk.org/pub/glib/2.13/glib-%{version}.tar.bz2
-# Source0-md5: 47477a53d6ad4c7a690a8f75c284e1b7
+Source0:   ftp://ftp.gtk.org/pub/glib/2.15/glib-%{version}.tar.bz2
+# Source0-md5: 52536475a3f301842cf3448f19af094c
 Patch0:%{name}-makefile.patch
 Patch1:%{name}-SEGV.patch
 Patch2:%{name}-noarch.patch
@@ -203,6 +203,9 @@
 %defattr(644,root,root,755)
 %doc AUTHORS README NEWS
 %attr(755,root,root) %{_libdir}/lib*.so.*.*
+%dir %{_libdir}/gio
+%dir %{_libdir}/gio/modules
+%attr(755,root,root) %{_libdir}/gio/modules/*.so
 
 %files devel
 %defattr(644,root,root,755)
@@ -238,6 +241,10 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.157.4.5  2007-12-21 03:04:50  patrys
+- 2.15.0
+- here comes gio
+
 Revision 1.157.4.4  2007-06-07 15:26:15  megabajt
 - updated to 2.13.4
 


 CVS-web:

http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/SPECS/glib2.spec?r1=1.157.4.4r2=1.157.4.5f=u

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


DISTFILES: glib-2.15.0.tar.bz2

2007-12-20 Thread patrys

Files fetched: 1

STORED: ftp://ftp.gtk.org/pub/glib/2.15/glib-2.15.0.tar.bz2
52536475a3f301842cf3448f19af094c  glib-2.15.0.tar.bz2
Size: 4172954 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): gnome-terminal.spec - 2.21.4

2007-12-20 Thread patrys
Author: patrys   Date: Fri Dec 21 03:13:01 2007 GMT
Module: SPECS Tag: DEVEL
 Log message:
- 2.21.4

 Files affected:
SPECS:
   gnome-terminal.spec (1.92 - 1.92.2.1) 

 Diffs:


Index: SPECS/gnome-terminal.spec
diff -u SPECS/gnome-terminal.spec:1.92 SPECS/gnome-terminal.spec:1.92.2.1
--- SPECS/gnome-terminal.spec:1.92  Wed Nov 28 17:42:51 2007
+++ SPECS/gnome-terminal.spec   Fri Dec 21 04:12:56 2007
@@ -15,22 +15,22 @@
 Summary:   GNOME Terminal
 Summary(pl.UTF-8): Terminal dla GNOME
 Name:  gnome-terminal
-Version:   2.18.3
+Version:   2.21.4
 Release:   1
 License:   GPL
 Group: X11/Applications
-Source0:   
http://ftp.gnome.org/pub/GNOME/sources/gnome-terminal/2.18/%{name}-%{version}.tar.bz2
-# Source0-md5: 735ebb86205e6fa9591cbb4930451d25
+Source0:   
http://ftp.gnome.org/pub/GNOME/sources/gnome-terminal/2.21/%{name}-%{version}.tar.bz2
+# Source0-md5: 990df27f79858dccad692eea075de0d9
 Patch0:%{name}-TERM.patch
 Patch1:%{name}-disable-prev_next-tab-sensitivity-changes.patch
 Patch2:%{name}-desktop.patch
-Patch3:%{name}-save-session-crash.patch
 Patch4:%{name}-url-regex.patch
 URL:   http://www.gnome.org/
 BuildRequires: GConf2-devel = 2.20.0
 BuildRequires: autoconf = 2.53
 BuildRequires: automake
 BuildRequires: gtk+2-devel = 2:2.12.0
+BuildRequires: glib2-devel = 2.15.0
 BuildRequires: gnome-common = 2.20.0
 BuildRequires: gnome-doc-utils = 0.12.0
 BuildRequires: gnome-vfs2-devel = 2.20.0
@@ -70,7 +70,6 @@
 %patch1 -p1
 %endif
 %patch2 -p1
-%patch3 -p1
 %if %{with classify_square_brackets_into_url_paths}
 %patch4 -p1
 %endif
@@ -131,6 +130,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.92.2.1  2007-12-21 03:12:56  patrys
+- 2.21.4
+
 Revision 1.92  2007-11-28 16:42:51  megabajt
 - updated to 2.18.3
 - use better way to fix locale name


 CVS-web:

http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/SPECS/gnome-terminal.spec?r1=1.92r2=1.92.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-terminal-2.21.4.tar.bz2

2007-12-20 Thread patrys

Files fetched: 1

STORED: 
http://ftp.gnome.org/pub/GNOME/sources/gnome-terminal/2.21/gnome-terminal-2.21.4.tar.bz2
990df27f79858dccad692eea075de0d9  gnome-terminal-2.21.4.tar.bz2
Size: 2038798 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: FreeMat.spec - BR: arpack-devel, UMFPACK-devel

2007-12-20 Thread sls
Author: sls  Date: Fri Dec 21 03:19:50 2007 GMT
Module: SPECS Tag: HEAD
 Log message:
- BR: arpack-devel, UMFPACK-devel

 Files affected:
SPECS:
   FreeMat.spec (1.18 - 1.19) 

 Diffs:


Index: SPECS/FreeMat.spec
diff -u SPECS/FreeMat.spec:1.18 SPECS/FreeMat.spec:1.19
--- SPECS/FreeMat.spec:1.18 Fri Dec 21 03:53:04 2007
+++ SPECS/FreeMat.spec  Fri Dec 21 04:19:45 2007
@@ -1,7 +1,7 @@
 # $Revision$, $Date$
 # TODO:
 # - look at MPI support - doesn't work with lam for me :/
-# - build with ARPACK, UMFPACK, CYCLE COUNTER (whatever it is)
+# - build with CYCLE COUNTER (required fftw_cycle.h)
 #
 %definefversion%(echo %{version} |tr r -)
 %definemversion%(echo %{version} |cut -f -1 -d r)
@@ -20,6 +20,7 @@
 URL:   http://freemat.sourceforge.net
 BuildRequires: autoconf
 BuildRequires: automake
+BuildRequires: arpack-devel
 BuildRequires: ffcall-devel
 BuildRequires: fftw3-devel
 BuildRequires: fftw3-single-devel
@@ -34,6 +35,7 @@
 BuildRequires: QtNetwork-devel
 BuildRequires: QtXml-devel
 BuildRequires: qt4-build
+BuildRequires: UMFPACK-devel
 BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
 
 %description
@@ -95,6 +97,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.19  2007-12-21 03:19:45  sls
+- BR: arpack-devel, UMFPACK-devel
+
 Revision 1.18  2007-12-21 02:53:04  sls
 - lots of BR for optional components
 


 CVS-web:

http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/SPECS/FreeMat.spec?r1=1.18r2=1.19f=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   >