SPECS: pldcpan.spec - unified

2005-09-13 Thread qboosh
Author: qboosh   Date: Tue Sep 13 11:10:44 2005 GMT
Module: SPECS Tag: HEAD
 Log message:
- unified

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

 Diffs:


Index: SPECS/pldcpan.spec
diff -u SPECS/pldcpan.spec:1.5 SPECS/pldcpan.spec:1.6
--- SPECS/pldcpan.spec:1.5  Tue Sep 13 13:03:18 2005
+++ SPECS/pldcpan.spec  Tue Sep 13 13:10:39 2005
@@ -8,8 +8,8 @@
 Epoch: 0
 License:   GPL
 Group: Development/Languages/Perl
-BuildRequires: rpm-perlprov
 Source0:   %{name}.pl
+BuildRequires: rpm-perlprov
 BuildArch: noarch
 BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
 
@@ -44,6 +44,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.6  2005/09/13 11:10:39  qboosh
+- unified
+
 Revision 1.5  2005/09/13 11:03:18  glen
 - BR rpm-perlprov
 


 CVS-web:
http://cvs.pld-linux.org/SPECS/pldcpan.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


SPECS: rpm.spec - merged noautoreqdep on libfam.so.0 from AC-branc...

2005-09-13 Thread qboosh
Author: qboosh   Date: Tue Sep 13 11:33:02 2005 GMT
Module: SPECS Tag: HEAD
 Log message:
- merged noautoreqdep on libfam.so.0 from AC-branch (glen)

 Files affected:
SPECS:
   rpm.spec (1.688 - 1.689) 

 Diffs:


Index: SPECS/rpm.spec
diff -u SPECS/rpm.spec:1.688 SPECS/rpm.spec:1.689
--- SPECS/rpm.spec:1.688Sat Sep 10 21:56:38 2005
+++ SPECS/rpm.spec  Tue Sep 13 13:32:56 2005
@@ -853,6 +853,8 @@
 ^libpsres.so
 ^libxkbfile.so
 ^libxkbui.so
+# -- fam / gamin
+^libfam.so.0
 EOF
 cat  $RPM_BUILD_ROOT%{_sysconfdir}/rpm/noautocompressdoc EOF
 # global list of file masks not to be compressed in DOCDIR
@@ -1112,6 +1114,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.689  2005/09/13 11:32:56  qboosh
+- merged noautoreqdep on libfam.so.0 from AC-branch (glen)
+
 Revision 1.688  2005/09/10 19:56:38  areq
 - merge from AC branch - use patched system libmagic
 


 CVS-web:
http://cvs.pld-linux.org/SPECS/rpm.spec?r1=1.688r2=1.689f=u

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


SOURCES: rpm-etc_dir.patch - merged baggins's changes from AC-branch

2005-09-13 Thread qboosh
Author: qboosh   Date: Tue Sep 13 11:37:38 2005 GMT
Module: SOURCES   Tag: HEAD
 Log message:
- merged baggins's changes from AC-branch

 Files affected:
SOURCES:
   rpm-etc_dir.patch (1.6 - 1.7) 

 Diffs:


Index: SOURCES/rpm-etc_dir.patch
diff -u SOURCES/rpm-etc_dir.patch:1.6 SOURCES/rpm-etc_dir.patch:1.7
--- SOURCES/rpm-etc_dir.patch:1.6   Sat Jul 23 13:35:24 2005
+++ SOURCES/rpm-etc_dir.patch   Tue Sep 13 13:37:33 2005
@@ -1,101 +1,74 @@
 rpm-4.4.1/lib/rpmrc.c.orig 2005-07-19 18:53:09.096470264 +0200
-+++ rpm-4.4.1/lib/rpmrc.c  2005-07-19 19:00:48.610613496 +0200
-@@ -1,6 +1,12 @@
- /[EMAIL PROTECTED]@*/
- #include system.h
- 
-+#ifdef USE_HOME_ETC
-+#include home_etc.h
-+#else
-+#define _HE(x) (x)
-+#endif
-+
- #include stdarg.h
- #if defined(__linux__)  defined(__powerpc__)
- #include setjmp.h
-@@ -1815,13 +1821,13 @@
-   rc = 1;
-   break;
-   }
+diff -Nru rpm-4.1/lib/rpmrc.c rpm-4.1.new/lib/rpmrc.c
+--- rpm-4.1/lib/rpmrc.cTue Aug 20 16:53:44 2002
 rpm-4.1.new/lib/rpmrc.cTue Mar 11 18:41:48 2003
+@@ -1756,27 +1756,39 @@
+   /* Expand ~/ to $HOME/ */
+   fn[0] = '\0';
+   if (r[0] == '~'  r[1] == '/') {
++  const char * etc_dir = getenv(HOME_ETC);
+   const char * home = getenv(HOME);
+-  if (home == NULL) {
++  if (etc_dir) {
++  if (strlen(etc_dir)  (sizeof(fn) - strlen(r))) {
++  rpmError(RPMERR_RPMRC, _(Cannot read 
%s, HOME_ETC is too large.\n),r);
++  rc = 1;
++  break;
++  }
++  strcpy(fn, etc_dir);
++  strncat(fn, /, sizeof(fn) - strlen(fn));  

++r+=2;
++  
++  } else {
++  if (home == NULL) {
+   /* XXX Only /usr/lib/rpm/rpmrc must exist in default rcfiles list */
+-  if (rcfiles == defrcfiles  myrcfiles != r)
+-  continue;
+-  rpmError(RPMERR_RPMRC, _(Cannot expand %s\n), r);
+-  rc = 1;
+-  break;
+-  }
 -  if (strlen(home)  (sizeof(fn) - strlen(r))) {
-+  if (strlen(_HE(home))  (sizeof(fn) - strlen(r))) {
-   rpmError(RPMERR_RPMRC, _(Cannot read %s, HOME is too 
large.\n),
+-  rpmError(RPMERR_RPMRC, _(Cannot read %s, HOME is too 
large.\n),
++  if (rcfiles == defrcfiles  myrcfiles != r)
++  continue;
++  rpmError(RPMERR_RPMRC, _(Cannot expand %s\n), r);
++  rc = 1;
++  break;
++  }
++  if (strlen(home)  (sizeof(fn) - strlen(r))) {
++  rpmError(RPMERR_RPMRC, _(Cannot read %s, HOME is too 
large.\n),
r);
-   rc = 1;
-   break;
-   }
+-  rc = 1;
+-  break;
+-  }
 -  strcpy(fn, home);
-+  strcpy(fn, _HE(home));
-   r++;
-   }
-   strncat(fn, r, sizeof(fn) - (strlen(fn) + 1));
 rpm-4.4.1/rpmio/macro.c.orig   2005-07-19 18:53:09.358430440 +0200
-+++ rpm-4.4.1/rpmio/macro.c2005-07-19 19:04:25.098702304 +0200
-@@ -6,6 +6,12 @@
- #include system.h
- #include stdarg.h
- 
-+#ifdef USE_HOME_ETC
-+#include home_etc.h
-+#else
-+#define _HE(x) (x)
-+#endif
-+
- #if !defined(isblank)
- #define   isblank(_c) ((_c) == ' ' || (_c) == '\t')
- #endif
-@@ -1732,7 +1738,7 @@
-   /* XXX Prepend the URL leader for globs that have stripped it off */
-   maxb = 0;
-   for (i = 0; i  gl.gl_pathc; i++) {
--  if ((nb = strlen((gl.gl_pathv[i][0])))  maxb)
-+  if ((nb = strlen(_HE((gl.gl_pathv[i][0]  maxb)
-   maxb = nb;
-   }
-   
-@@ -1766,7 +1772,7 @@
-   const char * globFile = (gl.gl_pathv[i][0]);
-   if (globRoot  globURL  globRoot[-1] == '/')
-   while (*globFile == '/') globFile++;
--  strcpy(globRoot, globFile);
-+  strcpy(globRoot, _HE(globFile));
- if (_debug)
- fprintf(stderr, *** rpmGlob argv[%d] \%s\\n, argc, globURL);
-   argv[argc++] = xstrdup(globURL);
 rpm-4.4.2/lib/Makefile.am.orig 2005-07-23 13:40:23.191135552 +0200
-+++ rpm-4.4.2/lib/Makefile.am  2005-07-23 13:41:49.474018560 +0200
-@@ -46,6 +46,7 @@
-   $(top_builddir)/rpmio/librpmio.la \
-   @WITH_POPT_LIB@ \
-   @WITH_SELINUX_LIB@ \
-+  @HOME_ETC_LIB@ \
-   @INTLLIBS@
- 
- getdate.c: getdate.y
 rpm-4.4.2/rpmio/Makefile.am.orig   2005-07-23 13:40:23.194135096 +0200
-+++ rpm-4.4.2/rpmio/Makefile.am2005-07-23 13:42:06.205474992 +0200
-@@ -40,6 +40,7 @@
-   @WITH_LUA_LIB@ \
-   @WITH_MAGIC_LIB

SOURCES: rpm-rpmrc.patch - merged baggins's changes from AC-branch

2005-09-13 Thread qboosh
Author: qboosh   Date: Tue Sep 13 11:40:07 2005 GMT
Module: SOURCES   Tag: HEAD
 Log message:
- merged baggins's changes from AC-branch

 Files affected:
SOURCES:
   rpm-rpmrc.patch (1.32 - 1.33) 

 Diffs:


Index: SOURCES/rpm-rpmrc.patch
diff -u SOURCES/rpm-rpmrc.patch:1.32 SOURCES/rpm-rpmrc.patch:1.33
--- SOURCES/rpm-rpmrc.patch:1.32Sat May  7 02:57:12 2005
+++ SOURCES/rpm-rpmrc.patch Tue Sep 13 13:40:02 2005
@@ -123,3 +123,12 @@
  
  #
  # Canonical arch names and numbers
+@@ -409,7 +409,7 @@
+ buildarch_compat: amd64: x86_64
+ buildarch_compat: ia32e: x86_64
+ 
+-macrofiles:   
@RPMCONFIGDIR@/macros:@RPMCONFIGDIR@/%{_target}/macros:@SYSCONFIGDIR@/macros.*:@SYSCONFIGDIR@/macros:@SYSCONFIGDIR@/%{_target}/macros:~/.rpmmacros
++macrofiles:   
@RPMCONFIGDIR@/macros:@RPMCONFIGDIR@/%{_target}/macros:@SYSCONFIGDIR@/macros.*:@SYSCONFIGDIR@/macros:@SYSCONFIGDIR@/%{_target}/macros:~/etc/.rpmmacros:~/.rpmmacros
+ 
+ # \endverbatim
+ #*/


 CVS-web:
http://cvs.pld-linux.org/SOURCES/rpm-rpmrc.patch?r1=1.32r2=1.33f=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.spec - removed obsolete todo entry (system libmagic)

2005-09-13 Thread qboosh
Author: qboosh   Date: Tue Sep 13 11:40:55 2005 GMT
Module: SPECS Tag: HEAD
 Log message:
- removed obsolete todo entry (system libmagic)

 Files affected:
SPECS:
   rpm.spec (1.689 - 1.690) 

 Diffs:


Index: SPECS/rpm.spec
diff -u SPECS/rpm.spec:1.689 SPECS/rpm.spec:1.690
--- SPECS/rpm.spec:1.689Tue Sep 13 13:32:56 2005
+++ SPECS/rpm.spec  Tue Sep 13 13:40:50 2005
@@ -3,8 +3,6 @@
 # TODO:
 # - python(abi) cap is not provided automatically (because /usr/bin/python 
matches
 #   ELF first; it should be provided by python-libs not binary anyway)
-# - consider using system libmagic not internal libfmagic
-#   (but internal has different method of passing output)
 # 
 # Conditional build:
 %bcond_withstatic  # build static rpmi (not supported at the 
moment)
@@ -1114,6 +1112,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.690  2005/09/13 11:40:50  qboosh
+- removed obsolete todo entry (system libmagic)
+
 Revision 1.689  2005/09/13 11:32:56  qboosh
 - merged noautoreqdep on libfam.so.0 from AC-branch (glen)
 


 CVS-web:
http://cvs.pld-linux.org/SPECS/rpm.spec?r1=1.689r2=1.690f=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.spec - merged baggins's home_etc fixes from AC-branch -...

2005-09-13 Thread qboosh
Author: qboosh   Date: Tue Sep 13 11:42:11 2005 GMT
Module: SPECS Tag: HEAD
 Log message:
- merged baggins's home_etc fixes from AC-branch
- release 3

 Files affected:
SPECS:
   rpm.spec (1.690 - 1.691) 

 Diffs:


Index: SPECS/rpm.spec
diff -u SPECS/rpm.spec:1.690 SPECS/rpm.spec:1.691
--- SPECS/rpm.spec:1.690Tue Sep 13 13:40:50 2005
+++ SPECS/rpm.spec  Tue Sep 13 13:42:05 2005
@@ -8,7 +8,6 @@
 %bcond_withstatic  # build static rpmi (not supported at the 
moment)
 %bcond_without apidocs # don't generate documentation with doxygen
 %bcond_withautoreqdep  # autogenerate package name deps in addition to 
sonames/perl(X)
-%bcond_without home_etc# build without HOME_ETC support
 %bcond_without python  # don't build python bindings
 %bcond_without selinux # build without selinux support
 %bcond_without system_libmagic # don't use system libmagic
@@ -32,7 +31,7 @@
 Name:  rpm
 %definesover   4.4
 Version:   4.4.2
-Release:   2
+Release:   3
 License:   GPL
 Group: Base
 Source0:   ftp://jbj.org/pub/rpm-4.4.x/%{name}-%{version}.tar.gz
@@ -115,7 +114,6 @@
 BuildRequires: elfutils-devel = 0.108
 BuildRequires: findutils
 BuildRequires: gettext-devel = 0.11.4-2
-%{?with_home_etc:BuildRequires:home-etc-devel = 1:1.0.9-2}
 %{?with_system_libmagic:BuildRequires: libmagic-devel}
 %{?with_selinux:BuildRequires: libselinux-devel = 1.18}
 # needed only for AM_PROG_CXX used for CXX substitution in rpm.macros
@@ -229,10 +227,6 @@
 Obsoletes: rpm-libs
 # avoid SEGV caused by mixed db versions
 Conflicts: poldek  0.18.1-16
-%if %{with home_etc}
-# avoid linking to /usr/lib
-Conflicts: home-etc  1.0.9-2
-%endif
 
 %description lib
 RPMs library.
@@ -254,7 +248,6 @@
 Requires:  bzip2-devel
 Requires:  db-devel = %{reqdb_ver}
 Requires:  elfutils-devel
-%{?with_home_etc:Requires: home-etc-devel = 1:1.0.9-2}
 %{?with_selinux:Requires:  libselinux-devel}
 %{?with_system_libmagic:Requires:   libmagic-devel}
 Requires:  popt-devel = %{reqpopt_ver}
@@ -708,7 +701,6 @@
--enable-shared \
--enable-static \
%{?with_apidocs:--with-apidocs} \
-   %{?with_home_etc:--with-home_etc} \
%{?with_python:--with-python=auto} \
%{!?with_python:--without-python} \
%{!?with_selinux:--without-selinux} \
@@ -1112,6 +1104,10 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.691  2005/09/13 11:42:05  qboosh
+- merged baggins's home_etc fixes from AC-branch
+- release 3
+
 Revision 1.690  2005/09/13 11:40:50  qboosh
 - removed obsolete todo entry (system libmagic)
 


 CVS-web:
http://cvs.pld-linux.org/SPECS/rpm.spec?r1=1.690r2=1.691f=u

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


SOURCES: libgdiplus-glitz.patch (REMOVED) - obsolete

2005-09-13 Thread qboosh
Author: qboosh   Date: Tue Sep 13 12:06:35 2005 GMT
Module: SOURCES   Tag: HEAD
 Log message:
- obsolete

 Files affected:
SOURCES:
   libgdiplus-glitz.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: samba-case_insensitive_sql_operator.patch (REMOVED) - dro...

2005-09-13 Thread qboosh
Author: qboosh   Date: Tue Sep 13 12:07:23 2005 GMT
Module: SOURCES   Tag: HEAD
 Log message:
- dropped

 Files affected:
SOURCES:
   samba-case_insensitive_sql_operator.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: mono-mint.patch - updated for 1.1.9

2005-09-13 Thread qboosh
Author: qboosh   Date: Tue Sep 13 12:10:46 2005 GMT
Module: SOURCES   Tag: HEAD
 Log message:
- updated for 1.1.9

 Files affected:
SOURCES:
   mono-mint.patch (1.2 - 1.3) 

 Diffs:


Index: SOURCES/mono-mint.patch
diff -u SOURCES/mono-mint.patch:1.2 SOURCES/mono-mint.patch:1.3
--- SOURCES/mono-mint.patch:1.2 Thu May 12 00:36:46 2005
+++ SOURCES/mono-mint.patch Tue Sep 13 14:10:41 2005
@@ -8,18 +8,6 @@
);
exit (1);
  }
-@@ -4460,11 +4459,6 @@
-   mono_profiler_load (NULL);
-   if (strcmp (argv [i], --config) == 0)
-   config_file = argv [++i];
--  if (strcmp (argv [i], --workers) == 0) {
--  mono_max_worker_threads = atoi (argv [++i]);
--  if (mono_max_worker_threads  1)
--  mono_max_worker_threads = 1;
--  }
-   if (strcmp (argv [i], --help) == 0)
-   usage ();
- #if DEBUG_INTERP
 --- mono-1.1.7/runtime/monodis-wrapper.in.orig 2005-04-28 05:06:48.0 
+0200
 +++ mono-1.1.7/runtime/monodis-wrapper.in  2005-05-12 00:31:09.0 
+0200
 @@ -3,4 +3,8 @@


 CVS-web:
http://cvs.pld-linux.org/SOURCES/mono-mint.patch?r1=1.2r2=1.3f=u

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


SPECS: mono.spec - updated mint patch is back

2005-09-13 Thread qboosh
Author: qboosh   Date: Tue Sep 13 12:13:44 2005 GMT
Module: SPECS Tag: HEAD
 Log message:
- updated mint patch is back

 Files affected:
SPECS:
   mono.spec (1.146 - 1.147) 

 Diffs:


Index: SPECS/mono.spec
diff -u SPECS/mono.spec:1.146 SPECS/mono.spec:1.147
--- SPECS/mono.spec:1.146   Fri Sep  9 20:54:16 2005
+++ SPECS/mono.spec Tue Sep 13 14:13:39 2005
@@ -186,7 +186,7 @@
 %setup -q
 %patch0 -p1
 %patch1 -p1
-#%patch2 -p1
+%patch2 -p1
 %patch3 -p1
 %patch4 -p1
 %patch5 -p1
@@ -444,6 +444,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.147  2005/09/13 12:13:39  qboosh
+- updated mint patch is back
+
 Revision 1.146  2005/09/09 18:54:16  wolf
 - 1.1.9
 


 CVS-web:
http://cvs.pld-linux.org/SPECS/mono.spec?r1=1.146r2=1.147f=u

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


SPECS: wxGlade.spec - added Obsoletes for -examples

2005-09-13 Thread qboosh
Author: qboosh   Date: Tue Sep 13 12:35:40 2005 GMT
Module: SPECS Tag: HEAD
 Log message:
- added Obsoletes for -examples

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

 Diffs:


Index: SPECS/wxGlade.spec
diff -u SPECS/wxGlade.spec:1.10 SPECS/wxGlade.spec:1.11
--- SPECS/wxGlade.spec:1.10 Mon Sep 12 21:27:14 2005
+++ SPECS/wxGlade.spec  Tue Sep 13 14:35:34 2005
@@ -12,6 +12,7 @@
 BuildRequires: python-modules = 2.2
 Requires:  python-modules = 2.2
 Requires:  python-wxPython = 2.4.2.4
+Obsoletes: wxGlade-examples
 BuildArch: noarch
 BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
 
@@ -77,6 +78,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.11  2005/09/13 12:35:34  qboosh
+- added Obsoletes for -examples
+
 Revision 1.10  2005/09/12 19:27:14  troll
 - updated to 0.4
 - removed `examples' subpackage, because it's no longer included


 CVS-web:
http://cvs.pld-linux.org/SPECS/wxGlade.spec?r1=1.10r2=1.11f=u

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


SOURCES: pwc-Makefile.patch (REMOVED) - dropped

2005-09-13 Thread qboosh
Author: qboosh   Date: Tue Sep 13 12:38:55 2005 GMT
Module: SOURCES   Tag: HEAD
 Log message:
- dropped

 Files affected:
SOURCES:
   pwc-Makefile.patch (1.2 - 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


DISTFILES: fruity-1.0-beta2.tar.gz

2005-09-13 Thread qboosh

Files fetched: 1

STORED: http://dl.sourceforge.net/fruity/fruity-1.0-beta2.tar.gz
ead530130964ad3158d6cfb7824425ec  fruity-1.0-beta2.tar.gz
Size: 175623 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: courier-authlib.spec - pl for openldap-schema-

2005-09-13 Thread qboosh
Author: qboosh   Date: Tue Sep 13 12:43:14 2005 GMT
Module: SPECS Tag: HEAD
 Log message:
- pl for openldap-schema-

 Files affected:
SPECS:
   courier-authlib.spec (1.25 - 1.26) 

 Diffs:


Index: SPECS/courier-authlib.spec
diff -u SPECS/courier-authlib.spec:1.25 SPECS/courier-authlib.spec:1.26
--- SPECS/courier-authlib.spec:1.25 Mon Sep 12 16:19:39 2005
+++ SPECS/courier-authlib.spec  Tue Sep 13 14:43:09 2005
@@ -163,6 +163,7 @@
 
 %package -n openldap-schema-courier
 Summary:   Courier LDAP schema
+Summary(pl):   Schemat LDAP Couriera
 Group: Networking/Daemons
 Requires(post,postun): sed = 4.0
 Requires:  openldap-servers
@@ -170,6 +171,9 @@
 %description -n openldap-schema-courier
 This package contains Courier authldap.schema for openldap.
 
+%description -n openldap-schema-courier -l pl
+Ten pakiet zawiera schemat Couriera authldap.schema dla openldapa.
+
 %prep
 %setup -q
 %patch0 -p1
@@ -593,6 +597,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.26  2005/09/13 12:43:09  qboosh
+- pl for openldap-schema-
+
 Revision 1.25  2005/09/12 14:19:39  glen
 - created openldap-schema-courier subpackage
 


 CVS-web:
http://cvs.pld-linux.org/SPECS/courier-authlib.spec?r1=1.25r2=1.26f=u

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


SPECS: php-eaccelerator.spec - -webinterface cleanups

2005-09-13 Thread qboosh
Author: qboosh   Date: Tue Sep 13 12:46:05 2005 GMT
Module: SPECS Tag: HEAD
 Log message:
- -webinterface cleanups

 Files affected:
SPECS:
   php-eaccelerator.spec (1.18 - 1.19) 

 Diffs:


Index: SPECS/php-eaccelerator.spec
diff -u SPECS/php-eaccelerator.spec:1.18 SPECS/php-eaccelerator.spec:1.19
--- SPECS/php-eaccelerator.spec:1.18Sun Sep 11 23:04:10 2005
+++ SPECS/php-eaccelerator.spec Tue Sep 13 14:46:00 2005
@@ -37,16 +37,16 @@
 jest prawie całkowicie wyeliminowany.
 
 %package webinterface
-Summary:WEB interface for PHP Accelerator
-Summary(pl):Interfejs WEB dla PHP Accelerator
-Group:  Libraries
-Requires:   %{name} = %{epoch}:%{version}-%{release}
+Summary:   WEB interface for PHP Accelerator
+Summary(pl):   Interfejs WWW dla PHP Acceleratora
+Group: Libraries
+Requires:  %{name} = %{epoch}:%{version}-%{release}
 
 %description webinterface
-PHP Accelerator can be managed through web interface script mmcache.php.
-So you need to put this file on your web site. For security reasons it
-is recommended to restrict the usage of this script by your local IP and
-setup password based access.
+PHP Accelerator can be managed through web interface script
+eaccelerator.php. So you need to put this file on your web site. For
+security reasons it is recommended to restrict the usage of this
+script by your local IP and setup password based access.
 
 More information you can find at %{url}.
 
@@ -55,9 +55,9 @@
 wykorzystaniem skryptu eaccelerator.php. Jedyne co trzeba zrobić, to
 umieścić plik we właściwym miejscu na stronie internetowej. Z powodów
 bezpieczeństwa zalecane jest, aby ograniczyć korzystanie ze skryptu do
-lokalnego adresu i ustawić autoryzację hasłem
+lokalnego adresu i ustawić autoryzację hasłem.
 
-Więcej informacji można znaleźć %{url}.
+Więcej informacji można znaleźć pod %{url}.
 
 %prep
 %setup -q -n %{_pkgname}-%{version}
@@ -118,6 +118,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.19  2005/09/13 12:46:00  qboosh
+- -webinterface cleanups
+
 Revision 1.18  2005/09/11 21:04:10  glen
 - typo (this happens to be eaccelerator now)
 


 CVS-web:
http://cvs.pld-linux.org/SPECS/php-eaccelerator.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


SPECS: php4-eaccelerator.spec - -webinterface cleanups

2005-09-13 Thread qboosh
Author: qboosh   Date: Tue Sep 13 12:48:04 2005 GMT
Module: SPECS Tag: HEAD
 Log message:
- -webinterface cleanups

 Files affected:
SPECS:
   php4-eaccelerator.spec (1.17 - 1.18) 

 Diffs:


Index: SPECS/php4-eaccelerator.spec
diff -u SPECS/php4-eaccelerator.spec:1.17 SPECS/php4-eaccelerator.spec:1.18
--- SPECS/php4-eaccelerator.spec:1.17   Mon Sep 12 14:36:19 2005
+++ SPECS/php4-eaccelerator.specTue Sep 13 14:47:59 2005
@@ -38,13 +38,13 @@
 
 %package webinterface
 Summary:   WEB interface for PHP Accelerator
-Summary(pl):   Interfejs WEB dla PHP Accelerator
+Summary(pl):   Interfejs WWW dla PHP Acceleratora
 Group: Libraries
 Requires:  %{name} = %{epoch}:%{version}-%{release}
 
 %description webinterface
 PHP Accelerator can be managed through web interface script
-mmcache.php. So you need to put this file on your web site. For
+eaccelerator.php. So you need to put this file on your web site. For
 security reasons it is recommended to restrict the usage of this
 script by your local IP and setup password based access.
 
@@ -55,9 +55,9 @@
 wykorzystaniem skryptu eaccelerator.php. Jedyne co trzeba zrobić, to
 umieścić plik we właściwym miejscu na stronie internetowej. Z powodów
 bezpieczeństwa zalecane jest, aby ograniczyć korzystanie ze skryptu do
-lokalnego adresu i ustawić autoryzację hasłem
+lokalnego adresu i ustawić autoryzację hasłem.
 
-Więcej informacji można znaleźć %{url}.
+Więcej informacji można znaleźć pod %{url}.
 
 %prep
 %setup -q -n %{_pkgname}-%{version}
@@ -117,6 +117,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.18  2005/09/13 12:47:59  qboosh
+- -webinterface cleanups
+
 Revision 1.17  2005/09/12 12:36:19  glen
 - ./adapter -s
 


 CVS-web:
http://cvs.pld-linux.org/SPECS/php4-eaccelerator.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: X11-driver-nvidia-legacy.spec - cleanups, descs sync

2005-09-13 Thread qboosh
Author: qboosh   Date: Tue Sep 13 12:55:35 2005 GMT
Module: SPECS Tag: HEAD
 Log message:
- cleanups, descs sync

 Files affected:
SPECS:
   X11-driver-nvidia-legacy.spec (1.8 - 1.9) 

 Diffs:


Index: SPECS/X11-driver-nvidia-legacy.spec
diff -u SPECS/X11-driver-nvidia-legacy.spec:1.8 
SPECS/X11-driver-nvidia-legacy.spec:1.9
--- SPECS/X11-driver-nvidia-legacy.spec:1.8 Sun Sep 11 21:47:03 2005
+++ SPECS/X11-driver-nvidia-legacy.spec Tue Sep 13 14:55:30 2005
@@ -33,7 +33,6 @@
 Patch2:%{name}-conftest.patch
 # http://www.minion.de/files/1.0-6629/
 URL:   http://www.nvidia.com/object/linux.html
-BuildConflicts:XFree86-nvidia
 BuildRequires: grep
 %{?with_dist_kernel:BuildRequires: kernel-module-build = 2.6.7}
 BuildRequires: %{kgcc_package}
@@ -41,6 +40,7 @@
 BuildRequires: sed = 4.0
 BuildRequires: textutils
 #BuildRequires:X11-devel = %{_min_x11}# disabled for now
+BuildConflicts:XFree86-nvidia
 Requires:  X11-Xserver
 Requires:  X11-libs = %{_min_x11}
 Requires:  X11-modules = %{_min_x11}
@@ -72,18 +72,21 @@
 server as well as high performance OpenGL acceleration, AGP support,
 support for most flat panels, and multiple monitor support.
 
-Hardware: nVidia TNT, TNT2, GeForce, old GeForce2 or Quadro based graphics
-accelerator. The nVidia NV1 and RIVA 128/128ZX chips are supported in
-the base XFree86 4.0 install and are not supported by this driver set.
+Hardware: nVidia TNT, TNT2, GeForce, old GeForce2 or Quadro based
+graphics accelerator. New GeForce2, GeForce3 and GeForce4 adapters
+are supported by X11-driver-nvidia package. The nVidia NV1 and RIVA
+128/128ZX chips are supported in the base Xorg or XFree86 install and
+are not supported by this driver set.
 
 %description -l pl
 Usprawnione sterowniki dla kart graficznych nVidia do serwera X dające
 wysokowydajną akcelerację OpenGL, obsługę AGP i wiele monitorów.
 
-Obsługują karty nVidia TNT/TNT2/GeForce/stare GeForce2/Quadro do serwera Xorg.
-Dla kart GF2 (nowych), GF3 i GF4 jest pakiet X11-driver-nvidia.
-Karty nVidia NV1 i Riva 128/128ZX są obsługiwane przez sterownik nv z
-pakietów XFree86 - NIE są obsługiwane przez ten pakiet.
+Obsługują karty nVidia TNT/TNT2/GeForce/stare GeForce2/Quadro do
+serwera Xorg. Dla kart GF2 (nowych), GF3 i GF4 jest pakiet
+X11-driver-nvidia. Karty nVidia NV1 i Riva 128/128ZX są obsługiwane
+przez sterownik nv z pakietów Xorg lub XFree86 - NIE są obsługiwane
+przez ten pakiet.
 
 %package devel
 Summary:   OpenGL for X11R6 development (only gl?.h)
@@ -108,10 +111,10 @@
 Summary:   Tools for advanced control of nVidia graphic cards
 Summary(pl):   Narzędzia do zarządzania kartami graficznymi nVidia
 Group: Applications/System
+Requires:  %{name} = %{version}-%{release}
 Obsoletes: XFree86-driver-nvidia-progs
 Obsoletes: %{oldname}-progs  1.0.7174
 Conflicts: %{oldname}-progs
-Requires:  %{name} = %{version}-%{release}
 
 %description progs
 Tools for advanced control of nVidia graphic cards.
@@ -142,7 +145,7 @@
 
 %description -n kernel-video-nvidia-legacy -l pl
 Obsługa architektury nVidia dla jądra Linuksa. Pakiet wymagany przez
-sterownik nVidii dla XFree86 4.
+sterownik nVidii dla Xorg/XFree86.
 
 %package -n kernel-smp-video-nvidia-legacy
 Summary:   nVidia kernel module for nVidia Architecture support
@@ -166,7 +169,7 @@
 
 %description -n kernel-smp-video-nvidia-legacy -l pl
 Obsługa architektury nVidia dla jądra Linuksa SMP. Pakiet wymagany
-przez sterownik nVidii dla XFree86 4.
+przez sterownik nVidii dla Xorg/XFree86.
 
 %prep
 cd %{_builddir}
@@ -344,6 +347,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.9  2005/09/13 12:55:30  qboosh
+- cleanups, descs sync
+
 Revision 1.8  2005/09/11 19:47:03  wolvverine
 - correct
 - STBR


 CVS-web:

http://cvs.pld-linux.org/SPECS/X11-driver-nvidia-legacy.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


SPECS: X11-driver-nvidia.spec - cleanups, mention Xorg (not just X...

2005-09-13 Thread qboosh
Author: qboosh   Date: Tue Sep 13 12:59:47 2005 GMT
Module: SPECS Tag: HEAD
 Log message:
- cleanups, mention Xorg (not just XFree86) in descs

 Files affected:
SPECS:
   X11-driver-nvidia.spec (1.51 - 1.52) 

 Diffs:


Index: SPECS/X11-driver-nvidia.spec
diff -u SPECS/X11-driver-nvidia.spec:1.51 SPECS/X11-driver-nvidia.spec:1.52
--- SPECS/X11-driver-nvidia.spec:1.51   Wed Sep  7 10:48:56 2005
+++ SPECS/X11-driver-nvidia.specTue Sep 13 14:59:42 2005
@@ -50,7 +50,6 @@
 Patch2:%{name}-conftest.patch
 # http://www.minion.de/files/1.0-6629/
 URL:   http://www.nvidia.com/object/linux.html
-BuildConflicts:XFree86-nvidia
 BuildRequires: grep
 %{?with_dist_kernel:BuildRequires: kernel-module-build = 2.6.7}
 BuildRequires: %{kgcc_package}
@@ -58,6 +57,7 @@
 BuildRequires: sed = 4.0
 BuildRequires: textutils
 #BuildRequires:X11-devel = %{_min_x11}# disabled for now
+BuildConflicts:XFree86-nvidia
 Requires:  X11-Xserver
 Requires:  X11-libs = %{_min_x11}
 Requires:  X11-modules = %{_min_x11}
@@ -83,24 +83,24 @@
 %endif
 
 %description
-This driver set adds improved 2D functionality to the XFree86 4.0 X
+This driver set adds improved 2D functionality to the Xorg/XFree86 X
 server as well as high performance OpenGL acceleration, AGP support,
 support for most flat panels, and 2D multiple monitor support.
 
 Hardware: nVidia TNT, TNT2, GeForce, or Quadro based graphics
 accelerator. The nVidia NV1 and RIVA 128/128ZX chips are supported in
-the base XFree86 4.0 install and are not supported by this driver set.
-
-Software: Linux kernel = 2.2.12, XFree86 = 4.0.
+the base Xorg/XFree86 install and are not supported by this driver
+set.
 
 %description -l pl
-Usprawnione sterowniki dla kart graficznych nVidia do serwera XFree86
-4.0, dające wysokowydajną akcelerację OpenGL, obsługę AGP i wielu
-monitorów 2D.
-
-Obsługują karty nVidia TNT/TNT2/GeForce/Quadro do serwera XFree86 4.0;
-Karty nVidia NV1 i Riva 128/128ZX są obsługiwane przez sterownik nv z
-pakietów XFree86 - NIE są obsługiwane przez ten pakiet.
+Usprawnione sterowniki dla kart graficznych nVidia do serwera
+Xorg/XFree86, dające wysokowydajną akcelerację OpenGL, obsługę AGP i
+wielu monitorów 2D.
+
+Obsługują karty nVidia TNT/TNT2/GeForce/Quadro do serwera
+Xorg/XFree86; Karty nVidia NV1 i Riva 128/128ZX są obsługiwane przez
+sterownik nv z pakietów Xorg/XFree8 - NIE są obsługiwane przez ten
+pakiet.
 
 %package devel
 Summary:   OpenGL for X11R6 development (only gl?.h)
@@ -123,8 +123,8 @@
 Summary:   Tools for advanced control of nVidia graphic cards
 Summary(pl):   Narzędzia do zarządzania kartami graficznymi nVidia
 Group: Applications/System
-Obsoletes: XFree86-driver-nvidia-progs
 Requires:  %{name} = %{version}-%{release}
+Obsoletes: XFree86-driver-nvidia-progs
 
 %description progs
 Tools for advanced control of nVidia graphic cards.
@@ -153,7 +153,7 @@
 
 %description -n kernel-video-nvidia -l pl
 Obsługa architektury nVidia dla jądra Linuksa. Pakiet wymagany przez
-sterownik nVidii dla XFree86 4.
+sterownik nVidii dla Xorg/XFree86.
 
 %package -n kernel-smp-video-nvidia
 Summary:   nVidia kernel module for nVidia Architecture support
@@ -175,7 +175,7 @@
 
 %description -n kernel-smp-video-nvidia -l pl
 Obsługa architektury nVidia dla jądra Linuksa SMP. Pakiet wymagany
-przez sterownik nVidii dla XFree86 4.
+przez sterownik nVidii dla Xorg/XFree86.
 
 %prep
 cd %{_builddir}
@@ -361,6 +361,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.52  2005/09/13 12:59:42  qboosh
+- cleanups, mention Xorg (not just XFree86) in descs
+
 Revision 1.51  2005/09/07 08:48:56  wiget
 - updated to 7676
 


 CVS-web:
http://cvs.pld-linux.org/SPECS/X11-driver-nvidia.spec?r1=1.51r2=1.52f=u

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


SPECS: X11-driver-nvidia-legacy.spec, X11-driver-nvidia.spec - rem...

2005-09-13 Thread qboosh
Author: qboosh   Date: Tue Sep 13 13:00:24 2005 GMT
Module: SPECS Tag: HEAD
 Log message:
- removed XFree86 from Group

 Files affected:
SPECS:
   X11-driver-nvidia-legacy.spec (1.9 - 1.10) , X11-driver-nvidia.spec (1.52 
- 1.53) 

 Diffs:


Index: SPECS/X11-driver-nvidia-legacy.spec
diff -u SPECS/X11-driver-nvidia-legacy.spec:1.9 
SPECS/X11-driver-nvidia-legacy.spec:1.10
--- SPECS/X11-driver-nvidia-legacy.spec:1.9 Tue Sep 13 14:55:30 2005
+++ SPECS/X11-driver-nvidia-legacy.spec Tue Sep 13 15:00:18 2005
@@ -22,7 +22,7 @@
 Release:   %{_rel}
 License:   nVidia Binary
 Vendor:nVidia Corp.
-Group: X11/XFree86
+Group: X11
 # why not pkg0!?
 Source0:   
http://download.nvidia.com/XFree86/Linux-x86/%{_nv_ver}-%{_nv_rel}/NVIDIA-Linux-x86-%{_nv_ver}-%{_nv_rel}-pkg1.run
 # Source0-md5: e9840ae34ae9f5a3dc7d0fafe040c8af
@@ -347,6 +347,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.10  2005/09/13 13:00:18  qboosh
+- removed XFree86 from Group
+
 Revision 1.9  2005/09/13 12:55:30  qboosh
 - cleanups, descs sync
 


Index: SPECS/X11-driver-nvidia.spec
diff -u SPECS/X11-driver-nvidia.spec:1.52 SPECS/X11-driver-nvidia.spec:1.53
--- SPECS/X11-driver-nvidia.spec:1.52   Tue Sep 13 14:59:42 2005
+++ SPECS/X11-driver-nvidia.specTue Sep 13 15:00:18 2005
@@ -35,7 +35,7 @@
 Release:   %{_rel}
 License:   nVidia Binary
 Vendor:nVidia Corp.
-Group: X11/XFree86
+Group: X11
 # why not pkg0!?
 %if %{need_x86}
 Source0:   
http://download.nvidia.com/XFree86/Linux-x86/%{_nv_ver}-%{_nv_rel}/NVIDIA-Linux-x86-%{_nv_ver}-%{_nv_rel}-pkg0.run
@@ -361,6 +361,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.53  2005/09/13 13:00:18  qboosh
+- removed XFree86 from Group
+
 Revision 1.52  2005/09/13 12:59:42  qboosh
 - cleanups, mention Xorg (not just XFree86) in descs
 


 CVS-web:

http://cvs.pld-linux.org/SPECS/X11-driver-nvidia-legacy.spec?r1=1.9r2=1.10f=u
http://cvs.pld-linux.org/SPECS/X11-driver-nvidia.spec?r1=1.52r2=1.53f=u

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


SPECS: xsysinfo.spec - don't use xbindir - pass CC - don't mark ap...

2005-09-13 Thread qboosh
Author: qboosh   Date: Tue Sep 13 13:05:30 2005 GMT
Module: SPECS Tag: HEAD
 Log message:
- don't use xbindir
- pass CC
- don't mark app-defaults in /usr as config

 Files affected:
SPECS:
   xsysinfo.spec (1.23 - 1.24) 

 Diffs:


Index: SPECS/xsysinfo.spec
diff -u SPECS/xsysinfo.spec:1.23 SPECS/xsysinfo.spec:1.24
--- SPECS/xsysinfo.spec:1.23Sun Sep 11 16:47:54 2005
+++ SPECS/xsysinfo.spec Tue Sep 13 15:05:24 2005
@@ -24,7 +24,6 @@
 BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)

 %define_appdefsdir /usr/X11R6/lib/X11/app-defaults
-%define_xbindir/usr/X11R6/bin
 
 %description
 Xsysinfo is a graphic kernel monitoring tool for the X Window System.
@@ -85,7 +84,8 @@
 %{__make} clean
 
 #xmkmf
-%{__make} CXXDEBUGFLAGS=%{rpmcflags} \
+%{__make} \
+   CC=%{__cc} \
CDEBUGFLAGS=%{rpmcflags}
 
 %install
@@ -93,7 +93,8 @@
 install -d $RPM_BUILD_ROOT{%{_desktopdir},%{_pixmapsdir}}
 
 %{__make} install \
-   DESTDIR=$RPM_BUILD_ROOT
+   DESTDIR=$RPM_BUILD_ROOT \
+   BINDIR=%{_bindir}
 
 install %{SOURCE1} $RPM_BUILD_ROOT%{_desktopdir}
 install %{SOURCE2} $RPM_BUILD_ROOT%{_pixmapsdir}
@@ -105,9 +106,9 @@
 %files
 %defattr(644,root,root,755)
 %doc README CHANGES
-%attr(755,root,root) %{_xbindir}/xsysinfo
-%config %{_appdefsdir}/XSysinfo
-%config %{_appdefsdir}/XSysinfo-color
+%attr(755,root,root) %{_bindir}/xsysinfo
+%{_appdefsdir}/XSysinfo
+%{_appdefsdir}/XSysinfo-color
 %{_desktopdir}/xsysinfo.desktop
 %{_pixmapsdir}/*
 
@@ -117,6 +118,11 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.24  2005/09/13 13:05:24  qboosh
+- don't use xbindir
+- pass CC
+- don't mark app-defaults in /usr as config
+
 Revision 1.23  2005/09/11 14:47:54  darekr
 - fix Icon field
 


 CVS-web:
http://cvs.pld-linux.org/SPECS/xsysinfo.spec?r1=1.23r2=1.24f=u

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


SPECS: gnome-bluetooth.spec - no autogenerated soname symlink in -...

2005-09-13 Thread qboosh
Author: qboosh   Date: Tue Sep 13 13:08:23 2005 GMT
Module: SPECS Tag: HEAD
 Log message:
- no autogenerated soname symlink in -libs, unified

 Files affected:
SPECS:
   gnome-bluetooth.spec (1.30 - 1.31) 

 Diffs:


Index: SPECS/gnome-bluetooth.spec
diff -u SPECS/gnome-bluetooth.spec:1.30 SPECS/gnome-bluetooth.spec:1.31
--- SPECS/gnome-bluetooth.spec:1.30 Sun Sep 11 01:51:39 2005
+++ SPECS/gnome-bluetooth.spec  Tue Sep 13 15:08:17 2005
@@ -139,6 +139,9 @@
 
 %find_lang %{name} --with-gnome
 
+%clean
+rm -rf $RPM_BUILD_ROOT
+
 %post
 %gconf_schema_install gnome-obex-server.schemas
 
@@ -148,9 +151,6 @@
 %post  libs -p /sbin/ldconfig
 %postunlibs -p /sbin/ldconfig
 
-%clean
-rm -rf $RPM_BUILD_ROOT
-
 %files -f %{name}.lang
 %defattr(644,root,root,755)
 %doc AUTHORS ChangeLog NEWS README
@@ -166,7 +166,7 @@
 
 %files libs
 %defattr(644,root,root,755)
-%attr(755,root,root) %{_libdir}/*.so.*
+%attr(755,root,root) %{_libdir}/*.so.*.*.*
 
 %files devel
 %defattr(644,root,root,755)
@@ -185,6 +185,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.31  2005/09/13 13:08:17  qboosh
+- no autogenerated soname symlink in -libs, unified
+
 Revision 1.30  2005/09/10 23:51:39  freetz
 - libs separated from main package, rel.3
 


 CVS-web:
http://cvs.pld-linux.org/SPECS/gnome-bluetooth.spec?r1=1.30r2=1.31f=u

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


SOURCES: xsp-Makefile.am.patch (REMOVED) - dropped

2005-09-13 Thread qboosh
Author: qboosh   Date: Tue Sep 13 13:12:04 2005 GMT
Module: SOURCES   Tag: HEAD
 Log message:
- dropped

 Files affected:
SOURCES:
   xsp-Makefile.am.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


SPECS: xsp.spec - dropped Makefile.am patch, BR new mono instead -...

2005-09-13 Thread qboosh
Author: qboosh   Date: Tue Sep 13 13:14:01 2005 GMT
Module: SPECS Tag: HEAD
 Log message:
- dropped Makefile.am patch, BR new mono instead
- updated EA list

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

 Diffs:


Index: SPECS/xsp.spec
diff -u SPECS/xsp.spec:1.20 SPECS/xsp.spec:1.21
--- SPECS/xsp.spec:1.20 Sun Sep 11 15:49:13 2005
+++ SPECS/xsp.spec  Tue Sep 13 15:13:56 2005
@@ -9,13 +9,12 @@
 Group: Networking/Daemons
 Source0:   http://www.go-mono.com/sources/xsp/%{name}-%{version}.tar.gz
 # Source0-md5: 9ded4f1dd882112abfc1b5bb0df367cf
-#Patch0:   %{name}-Makefile.am.patch
 URL:   http://www.mono-project.com/
 BuildRequires: autoconf
 BuildRequires: automake
-BuildRequires: mono-csharp = 1.0.6
-Requires:  mono-csharp = 1.0.6
-ExcludeArch:   alpha
+BuildRequires: mono-csharp = 1.1.9
+Requires:  mono-csharp = 1.1.9
+ExclusiveArch: %{ix86} %{x8664} arm hppa ppc s390 s390x
 BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
 
 %description
@@ -30,10 +29,8 @@
 
 %prep
 %setup -q
-#%patch0 -p1
 
 %build
-rm -rf $RPM_BUILD_ROOT
 %{__aclocal}
 %{__autoconf}
 %{__automake}
@@ -73,6 +70,10 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.21  2005/09/13 13:13:56  qboosh
+- dropped Makefile.am patch, BR new mono instead
+- updated EA list
+
 Revision 1.20  2005/09/11 13:49:13  darekr
 - missing dirs; add AUTHORS to %doc
 


 CVS-web:
http://cvs.pld-linux.org/SPECS/xsp.spec?r1=1.20r2=1.21f=u

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


SPECS: php-rrdtool.spec - updated pl desc

2005-09-13 Thread qboosh
Author: qboosh   Date: Tue Sep 13 13:49:42 2005 GMT
Module: SPECS Tag: HEAD
 Log message:
- updated pl desc

 Files affected:
SPECS:
   php-rrdtool.spec (1.7 - 1.8) 

 Diffs:


Index: SPECS/php-rrdtool.spec
diff -u SPECS/php-rrdtool.spec:1.7 SPECS/php-rrdtool.spec:1.8
--- SPECS/php-rrdtool.spec:1.7  Wed Sep  7 16:19:16 2005
+++ SPECS/php-rrdtool.spec  Tue Sep 13 15:49:37 2005
@@ -29,7 +29,8 @@
 bindings to the PHP HTML-embedded scripting language.
 
 %description -l pl
-Moduł RRDtool dla PHP.
+Ten pakiet zawiera dynamiczny moduł (DSO) dodający dowiązania RRDtoola
+do języka skryptowego PHP.
 
 %prep
 %setup -q -n rrdtool-%{version}
@@ -85,6 +86,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.8  2005/09/13 13:49:37  qboosh
+- updated pl desc
+
 Revision 1.7  2005/09/07 14:19:16  glen
 - rel 2, STBR
 


 CVS-web:
http://cvs.pld-linux.org/SPECS/php-rrdtool.spec?r1=1.7r2=1.8f=u

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


DISTFILES: openldev-0.4.3.tar.gz

2005-09-13 Thread qboosh

Files fetched: 1

STORED: http://dl.sourceforge.net/openldev/openldev-0.4.3.tar.gz
b541430e8a238d980433b4329e31c057  openldev-0.4.3.tar.gz
Size: 429785 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: shared-mime-info.spec - sorted BRs

2005-09-13 Thread qboosh
Author: qboosh   Date: Tue Sep 13 13:53:01 2005 GMT
Module: SPECS Tag: HEAD
 Log message:
- sorted BRs

 Files affected:
SPECS:
   shared-mime-info.spec (1.33 - 1.34) 

 Diffs:


Index: SPECS/shared-mime-info.spec
diff -u SPECS/shared-mime-info.spec:1.33 SPECS/shared-mime-info.spec:1.34
--- SPECS/shared-mime-info.spec:1.33Tue Sep 13 15:43:56 2005
+++ SPECS/shared-mime-info.spec Tue Sep 13 15:52:56 2005
@@ -17,10 +17,10 @@
 URL:   http://www.freedesktop.org/wiki/Software/shared-mime-info
 BuildRequires: autoconf
 BuildRequires: automake
-BuildRequires: intltool
 BuildRequires: docbook-dtd412-xml
 BuildRequires: docbook-utils
 BuildRequires: glib2-devel
+BuildRequires: intltool
 BuildRequires: libxml2-devel = 2.4.0
 BuildRequires: pkgconfig
 BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
@@ -129,7 +129,6 @@
 %dir %{_datadir}/mime/packages
 %{_datadir}/mime/packages/*
 
-
 %{_pkgconfigdir}/*.pc
 
 %define date   %(echo `LC_ALL=C date +%a %b %d %Y`)
@@ -138,6 +137,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.34  2005/09/13 13:52:56  qboosh
+- sorted BRs
+
 Revision 1.33  2005/09/13 13:43:56  prism
 - added BR: intltool
 


 CVS-web:
http://cvs.pld-linux.org/SPECS/shared-mime-info.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


SPECS: gtk+2.spec - Conflicts: libgdiplus 1.1.9

2005-09-13 Thread qboosh
Author: qboosh   Date: Tue Sep 13 16:22:27 2005 GMT
Module: SPECS Tag: HEAD
 Log message:
- Conflicts: libgdiplus  1.1.9

 Files affected:
SPECS:
   gtk+2.spec (1.183 - 1.184) 

 Diffs:


Index: SPECS/gtk+2.spec
diff -u SPECS/gtk+2.spec:1.183 SPECS/gtk+2.spec:1.184
--- SPECS/gtk+2.spec:1.183  Tue Aug 30 20:35:14 2005
+++ SPECS/gtk+2.specTue Sep 13 18:22:20 2005
@@ -56,6 +56,8 @@
 Requires:  pango = 1:1.10.0
 Obsoletes: gtk2
 Conflicts: gtk2-engines  1:2.2.0-6
+# autopanog.exe crashes with gtk+2 2.8.x and libgdiplus 1.1.8
+Conflicts: libgdiplus  1.1.9
 BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
 
 %description
@@ -275,6 +277,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.184  2005/09/13 16:22:20  qboosh
+- Conflicts: libgdiplus  1.1.9
+
 Revision 1.183  2005/08/30 18:35:14  arekm
 - merged from DEVEL
 


 CVS-web:
http://cvs.pld-linux.org/SPECS/gtk+2.spec?r1=1.183r2=1.184f=u

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


DISTFILES: pycairo-1.0.0.tar.gz

2005-09-13 Thread qboosh

Files fetched: 1

STORED: http://cairographics.org/releases/pycairo-1.0.0.tar.gz
e08bfeeed97414bec4e060dd5c16a396  pycairo-1.0.0.tar.gz
Size: 468853 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-pycairo.spec - updated to 1.0.0 release

2005-09-13 Thread qboosh
Author: qboosh   Date: Tue Sep 13 16:47:53 2005 GMT
Module: SPECS Tag: HEAD
 Log message:
- updated to 1.0.0 release

 Files affected:
SPECS:
   python-pycairo.spec (1.9 - 1.10) 

 Diffs:


Index: SPECS/python-pycairo.spec
diff -u SPECS/python-pycairo.spec:1.9 SPECS/python-pycairo.spec:1.10
--- SPECS/python-pycairo.spec:1.9   Sun Aug 14 18:51:38 2005
+++ SPECS/python-pycairo.spec   Tue Sep 13 18:47:47 2005
@@ -1,4 +1,5 @@
 # $Revision$, $Date$
+#
 # Conditional build
 %bcond_without pygtk   # for bootstrap without pygtk
 #
@@ -6,24 +7,24 @@
 Summary:   Python Cairo bindings
 Summary:   Dowiązania Pythona dla Cairo
 Name:  python-%{pname}
-Version:   0.9.0
+Version:   1.0.0
 Release:   1
 License:   LGPL v2.1 or MPL v1.1
 Group: Libraries
-Source0:   http://cairographics.org/snapshots/%{pname}-%{version}.tar.gz
-# Source0-md5: a01c9c34bcb15e89fcea03c324158422
+Source0:   http://cairographics.org/releases/%{pname}-%{version}.tar.gz
+# Source0-md5: e08bfeeed97414bec4e060dd5c16a396
 URL:   http://cairographics.org/
 BuildRequires: autoconf = 2.54
-BuildRequires: automake
-BuildRequires: cairo-devel = 0.9.0
-BuildRequires: gtk+2-devel = 2.0.0
+BuildRequires: automake = 1:1.7
+BuildRequires: cairo-devel = 1.0.0
+BuildRequires: gtk+2-devel = 2:2.2.0
 BuildRequires: libsvg-cairo-devel = 0.1.6
 BuildRequires: libtool
 BuildRequires: python = 2.3
 BuildRequires: python-numpy-devel
-%{?with_pygtk:BuildRequires:   python-pygtk-devel = 1.99.16}
+%{?with_pygtk:BuildRequires:   python-pygtk-devel = 2.2.0}
 %pyrequires_eq python-libs
-Requires:  cairo = 0.9.0
+Requires:  cairo = 1.0.0
 Requires:  libsvg-cairo = 0.1.6
 BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
 
@@ -108,6 +109,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.10  2005/09/13 16:47:47  qboosh
+- updated to 1.0.0 release
+
 Revision 1.9  2005/08/14 16:51:38  freetz
 - pygtk bcond for bootstrapping
 


 CVS-web:
http://cvs.pld-linux.org/SPECS/python-pycairo.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: sharutils-4.5.1.tar.bz2 sharutils-non-english-man-pages.tar.bz2

2005-09-13 Thread qboosh

Files fetched: 1

STORED: ftp://ftp.gnu.org/pub/gnu/sharutils/REL-4.5.1/sharutils-4.5.1.tar.bz2
68412f3536c9e308aab6e55cfe5996b5  sharutils-4.5.1.tar.bz2
Size: 637027 bytes
ALREADY GOT: 
http://www.mif.pg.gda.pl/homepages/ankry/man-PLD/sharutils-non-english-man-pages.tar.bz2
336f405f69324d129a6ccd3b66f8eb6c  
sharutils-non-english-man-pages.tar.bz2


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


SPECS: sharutils.spec - updated to 4.5.1, updated pl patch

2005-09-13 Thread qboosh
Author: qboosh   Date: Tue Sep 13 17:45:35 2005 GMT
Module: SPECS Tag: HEAD
 Log message:
- updated to 4.5.1, updated pl patch

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

 Diffs:


Index: SPECS/sharutils.spec
diff -u SPECS/sharutils.spec:1.50 SPECS/sharutils.spec:1.51
--- SPECS/sharutils.spec:1.50   Sun Aug  7 13:47:34 2005
+++ SPECS/sharutils.specTue Sep 13 19:45:29 2005
@@ -9,12 +9,12 @@
 Summary(tr):   Arţivleme ve kabuk araçlarý
 Summary(uk):   őÔÉĚŚÔÉ GNU shar ÄĚŃ ÓÔ×ĎŇĹÎÎŃ ÔÁ ŇĎÚĐÁËĎ×ËÉ shell-ÁŇȌ׌×
 Name:  sharutils
-Version:   4.5
+Version:   4.5.1
 Release:   1
 License:   GPL
 Group: Applications
 Source0:   
ftp://ftp.gnu.org/pub/gnu/sharutils/REL-%{version}/%{name}-%{version}.tar.bz2
-# Source0-md5: 72d6072152c67af299e7a193bb78f258
+# Source0-md5: 68412f3536c9e308aab6e55cfe5996b5
 Source1:   
http://www.mif.pg.gda.pl/homepages/ankry/man-PLD/%{name}-non-english-man-pages.tar.bz2
 # Source1-md5: 336f405f69324d129a6ccd3b66f8eb6c
 Patch0:%{name}-pl.patch
@@ -140,6 +140,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.51  2005/09/13 17:45:29  qboosh
+- updated to 4.5.1, updated pl patch
+
 Revision 1.50  2005/08/07 11:47:34  qboosh
 - updated to 4.5, updated pl patch
 


 CVS-web:
http://cvs.pld-linux.org/SPECS/sharutils.spec?r1=1.50r2=1.51f=u

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


SPECS: clamav.spec - dropped PreReq (use plain Requires for rc-scr...

2005-09-14 Thread qboosh
Author: qboosh   Date: Wed Sep 14 08:25:02 2005 GMT
Module: SPECS Tag: HEAD
 Log message:
- dropped PreReq (use plain Requires for rc-scripts), unified

 Files affected:
SPECS:
   clamav.spec (1.171 - 1.172) 

 Diffs:


Index: SPECS/clamav.spec
diff -u SPECS/clamav.spec:1.171 SPECS/clamav.spec:1.172
--- SPECS/clamav.spec:1.171 Fri Aug 26 13:46:10 2005
+++ SPECS/clamav.spec   Wed Sep 14 10:24:54 2005
@@ -46,8 +46,7 @@
 BuildRequires: rpmbuild(macros) = 1.202
 %{?with_milter:BuildRequires:  sendmail-devel = 8.11}
 BuildRequires: zlib-devel
-PreReq:rc-scripts
-Requires(pre): %{__id}
+Requires(pre): /bin/id
 Requires(pre): /usr/bin/getgid
 Requires(pre): /usr/sbin/groupadd
 Requires(pre): /usr/sbin/useradd
@@ -59,6 +58,7 @@
 Requires:  /usr/sbin/usermod
 Requires:  %{name}-libs = %{epoch}:%{version}-%{release}
 Requires:  bc
+Requires:  rc-scripts
 Provides:  group(clamav)
 Provides:  user(clamav)
 BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
@@ -314,8 +314,8 @@
 %attr(750,clamav,clamav) %dir %{_var}/run/%{name}
 
 %attr(640,root,root) %{_sysconfdir}/cron.d/%{name}
-%attr(644,root,root) %config(noreplace) %verify(not md5 mtime size) 
%{_sysconfdir}/clamd.conf
-%attr(644,root,root) %config(noreplace) %verify(not md5 mtime size) 
%{_sysconfdir}/freshclam.conf
+%config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/clamd.conf
+%config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/freshclam.conf
 
 %attr(754,root,root) /etc/rc.d/init.d/clamd
 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) 
/etc/sysconfig/clamd
@@ -333,7 +333,7 @@
 #%{_sysconfdir}/log.d/conf/services/clamav-milter.conf
 %attr(755,root,root) %{_sbindir}/clamav-milter
 %{_mandir}/man8/clamav-milter.8*
-%attr(700,clamav,clamav) /var/spool/clamav/
+%attr(700,clamav,clamav) /var/spool/clamav
 %endif
 
 %files libs
@@ -365,6 +365,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.172  2005/09/14 08:24:54  qboosh
+- dropped PreReq (use plain Requires for rc-scripts), unified
+
 Revision 1.171  2005/08/26 11:46:10  qboosh
 - triggerpostun dep really differs from postun dep
 


 CVS-web:
http://cvs.pld-linux.org/SPECS/clamav.spec?r1=1.171r2=1.172f=u

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


cdg: sklad.txt - a od jutra mnie nie ma

2005-09-14 Thread qboosh
Author: qboosh   Date: Wed Sep 14 08:46:21 2005 GMT
Module: cdg   Tag: HEAD
 Log message:
- a od jutra mnie nie ma

 Files affected:
cdg:
   sklad.txt (1.98 - 1.99) 

 Diffs:


Index: cdg/sklad.txt
diff -u cdg/sklad.txt:1.98 cdg/sklad.txt:1.99
--- cdg/sklad.txt:1.98  Wed Sep 14 10:45:35 2005
+++ cdg/sklad.txt   Wed Sep 14 10:46:16 2005
@@ -23,7 +23,7 @@
 mmazur
 orzech
 pascalek
-qboosh
+qboosh:zawieszony do 7.10.2005
 radek
 trojan
 undefine


 CVS-web:
http://cvs.pld-linux.org/cdg/sklad.txt?r1=1.98r2=1.99f=u

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


cdg: sklad.txt, aktualne-glosowania/20050913-2138-przyjecie-do-cdg...

2005-09-14 Thread qboosh
Author: qboosh   Date: Wed Sep 14 08:45:40 2005 GMT
Module: cdg   Tag: HEAD
 Log message:
- chwilowo jeszcze jestem

 Files affected:
cdg:
   sklad.txt (1.97 - 1.98) 
cdg/aktualne-glosowania:
   20050913-2138-przyjecie-do-cdg-hawk.txt (1.12 - 1.13) 

 Diffs:


Index: cdg/sklad.txt
diff -u cdg/sklad.txt:1.97 cdg/sklad.txt:1.98
--- cdg/sklad.txt:1.97  Tue Sep  6 06:47:34 2005
+++ cdg/sklad.txt   Wed Sep 14 10:45:35 2005
@@ -23,7 +23,7 @@
 mmazur
 orzech
 pascalek
-qboosh:zawieszony do 7.10.2005
+qboosh
 radek
 trojan
 undefine


Index: cdg/aktualne-glosowania/20050913-2138-przyjecie-do-cdg-hawk.txt
diff -u cdg/aktualne-glosowania/20050913-2138-przyjecie-do-cdg-hawk.txt:1.12 
cdg/aktualne-glosowania/20050913-2138-przyjecie-do-cdg-hawk.txt:1.13
--- cdg/aktualne-glosowania/20050913-2138-przyjecie-do-cdg-hawk.txt:1.12
Wed Sep 14 10:28:59 2005
+++ cdg/aktualne-glosowania/20050913-2138-przyjecie-do-cdg-hawk.txt Wed Sep 
14 10:45:35 2005
@@ -18,6 +18,7 @@
 matkor:tak
 malekith:tak
 jajcus:tak
+qboosh:tak
 
 Głosy NIE:
 


 CVS-web:
http://cvs.pld-linux.org/cdg/sklad.txt?r1=1.97r2=1.98f=u

http://cvs.pld-linux.org/cdg/aktualne-glosowania/20050913-2138-przyjecie-do-cdg-hawk.txt?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


SPECS: sope.spec - pl, Group fixes, dropped disabling AutoReqProv

2005-09-14 Thread qboosh
Author: qboosh   Date: Wed Sep 14 09:59:40 2005 GMT
Module: SPECS Tag: HEAD
 Log message:
- pl, Group fixes, dropped disabling AutoReqProv

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

 Diffs:


Index: SPECS/sope.spec
diff -u SPECS/sope.spec:1.16 SPECS/sope.spec:1.17
--- SPECS/sope.spec:1.16Wed Sep 14 01:36:37 2005
+++ SPECS/sope.spec Wed Sep 14 11:59:34 2005
@@ -2,8 +2,7 @@
 # TODO: descs for subpackages
 #  Mysql and Sqlite backends
 # - cleanup
-# - translations
-# - bconds ond DB backends
+# - bconds on DB backends
 # - R and BRs
 %definetrunkdate   200509061700
 %definesope_makeflags  -w -s debug=yes strip=no
@@ -16,7 +15,7 @@
 Release:   0.3
 Vendor:http://www.opengroupware.org/
 License:   GPL
-Group: Development/Libraries
+Group: Libraries
 Source0:   
http://download.opengroupware.org/nightly/sources/trunk/%{name}-trunk-%{versionalpha}-%{trunkdate}.tar.gz
 # Source0-md5: 2ee4dd3826cac5f8d44017af2462dfb3
 URL:   http://www.opengroupware.org/
@@ -82,320 +81,441 @@
 zawiera duży zbiór klas wielokrotnego użycia do: przetwarzania XML
 (SAX2, DOM, XML-RPC), przetwarzania MIME/IMAP4, łączności z LDAP,
 łączności z serwerami relacyjnych baz danych oraz przetwarzania
-formatu iCalendar.
+formatu iCalendar. Poszczególne szkielety z tego pakietu mogą być
+używane samodzielnie (na przykład w aplikacjach Cocoa) i nie wymagają
+samego serwera aplikacji.
 
-#
 %package xml
-Summary:  SOPE libraries for XML processing
-Group:Development/Libraries
-AutoReqProv:  off
+Summary:   SOPE libraries for XML processing
+Summary(pl):   Biblioteki SOPE do przetwarzania XML
+Group: Libraries
 
 %description xml
 The SOPE libraries for XML processing contain:
 
-  * a SAX2 Implementation for Objective-C
-  * an attempt to implement DOM on top of SaxObjC
-  * an XML-RPC implementation (without a transport layer)
+- a SAX2 Implementation for Objective-C
+- an attempt to implement DOM on top of SaxObjC
+- an XML-RPC implementation (without a transport layer)
 
 SOPE is a framework for developing web applications and services. The
-name SOPE (SKYRiX Object Publishing Environment) is inspired by ZOPE.
+name SOPE (SKYRiX Object Publishing Environment) is inspired by
+ZOPE.
+
+%description xml -l pl
+Biblioteki SOPE do przetwarzania XML zawierają:
+
+- implementację SAX2 dla Objective C
+- próbę implementacji DOM w oparciu o SaxObjC
+- implementację XML-RPC (bez warstwy transportowej)
+
+SOPE to szkielet do tworzenia aplikacji i usług WWW. Nazwa SOPE
+(SKYRiX Object Publishing Environment) jest zainspirowana ZOPE.
 
 %package xml-devel
-Summary:  Development files for the SOPE XML libraries
-Group:Development/Libraries
-#Requires: ogo-gnustep_make
-Requires: %{name}-xml = %{version}-%{release}
-Requires: libxml2-devel
-AutoReqProv:  off
+Summary:   Development files for the SOPE XML libraries
+Summary(pl):   Pliki programistyczne dla bibliotek SOPE XML
+Group: Development/Libraries
+Requires:  %{name}-xml = %{version}-%{release}
+Requires:  libxml2-devel
+#Requires: ogo-gnustep_make
 
 %description xml-devel
 This package contains the development files of the SOPE XML libraries.
 
-SOPE is a framework for developing web applications and services. The
-name SOPE (SKYRiX Object Publishing Environment) is inspired by ZOPE.
+%description xml-devel -l pl
+Ten pakiet zawiera pliki programistyczne dla bibliotek SOPE XML.
 
 %package xml-tools
-Summary:  Tools (domxml/saxxml/xmln)
-Group:Development/Libraries
-Requires: %{name}-xml = %{version}-%{release}
-AutoReqProv:  off
+Summary:   Tools (domxml/saxxml/xmln)
+Summary(pl):   Narzędzia (domxml/saxxml/xmln)
+Group: Development/Tools
+Requires:  %{name}-xml = %{version}-%{release}
 
 %description xml-tools
 This package contains some tools:
 
-  * saxxml- parse a file using SAX and print out the XML
-  * xmln  - convert a given file to PYX using a SAX handler
-  * domxml- parse a file into a DOM and print out the XML
+- saxxml- parse a file using SAX and print out the XML
+- xmln  - convert a given file to PYX using a SAX handler
+- domxml- parse a file into a DOM and print out the XML
 
 SOPE is a framework for developing web applications and services. The
-name SOPE (SKYRiX Object Publishing Environment) is inspired by ZOPE.
-#
+name SOPE (SKYRiX Object Publishing Environment) is inspired by
+ZOPE.
+
+%description xml-tools
+Ten pakiet zawiera następujące narzędzia:
+
+- saxxml- przetwarzanie pliku przy użyciu SAX i wypisywanie XML-a
+- xmln  - zamiana podanego pliku na PYX przy użyciu handlera SAX
+- domxml- przetwarzanie pliku na DOM i

SPECS: sope.spec - don't use defattr(-) - some missing dirs (but n...

2005-09-14 Thread qboosh
Author: qboosh   Date: Wed Sep 14 10:06:53 2005 GMT
Module: SPECS Tag: HEAD
 Log message:
- don't use defattr(-)
- some missing dirs (but not all\!)

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

 Diffs:


Index: SPECS/sope.spec
diff -u SPECS/sope.spec:1.17 SPECS/sope.spec:1.18
--- SPECS/sope.spec:1.17Wed Sep 14 11:59:34 2005
+++ SPECS/sope.spec Wed Sep 14 12:06:48 2005
@@ -582,79 +582,88 @@
 %postungdl1 -p /sbin/ldconfig
 
 %files xml
-%defattr(-,root,root,-)
-%{_libdir}/libDOM*.so.%{version}*
-%{_libdir}/libSaxObjC*.so.%{version}*
-%{_libdir}/libXmlRpc*.so.%{version}*
+%defattr(644,root,root,755)
+%attr(755,root,root) %{_libdir}/libDOM*.so.%{version}*
+%attr(755,root,root) %{_libdir}/libSaxObjC*.so.%{version}*
+%attr(755,root,root) %{_libdir}/libXmlRpc*.so.%{version}*
+%dir %{_libdir}/%{name}-%{version}/saxdrivers
 %{_libdir}/%{name}-%{version}/saxdrivers/libxmlSAXDriver.sax
 %{_libdir}/%{name}-%{version}/saxdrivers/STXSaxDriver.sax
 
 %files xml-tools
-%defattr(-,root,root,-)
-%{_bindir}/domxml
-%{_bindir}/saxxml
-%{_bindir}/xmln
+%defattr(644,root,root,755)
+%attr(755,root,root) %{_bindir}/domxml
+%attr(755,root,root) %{_bindir}/saxxml
+%attr(755,root,root) %{_bindir}/xmln
 
 %files xml-devel
-%defattr(-,root,root,-)
+%defattr(644,root,root,755)
+%attr(755,root,root) %{_libdir}/libDOM*.so
+%attr(755,root,root) %{_libdir}/libSaxObjC*.so
+%attr(755,root,root) %{_libdir}/libXmlRpc*.so
 %{_includedir}/DOM
 %{_includedir}/SaxObjC
 %{_includedir}/XmlRpc
-%{_libdir}/libDOM*.so
-%{_libdir}/libSaxObjC*.so
-%{_libdir}/libXmlRpc*.so
 
 %files core
-%defattr(-,root,root,-)
-%{_libdir}/libEOControl*.so.%{version}*
-%{_libdir}/libNGExtensions*.so.%{version}*
-%{_libdir}/libNGStreams*.so.%{version}*
+%defattr(644,root,root,755)
+%attr(755,root,root) %{_libdir}/libEOControl*.so.%{version}*
+%attr(755,root,root) %{_libdir}/libNGExtensions*.so.%{version}*
+%attr(755,root,root) %{_libdir}/libNGStreams*.so.%{version}*
 
 %files core-devel
-%defattr(-,root,root,-)
+%defattr(644,root,root,755)
+%attr(755,root,root) %{_libdir}/libEOControl*.so
+%attr(755,root,root) %{_libdir}/libNGExtensions*.so
+%attr(755,root,root) %{_libdir}/libNGStreams*.so
 %{_includedir}/EOControl
 %{_includedir}/NGExtensions
 %{_includedir}/NGStreams
-%{_libdir}/libEOControl*.so
-%{_libdir}/libNGExtensions*.so
-%{_libdir}/libNGStreams*.so
 
 %files mime
-%defattr(-,root,root,-)
-%{_libdir}/libNGMime*.so.%{version}*
+%defattr(644,root,root,755)
+%attr(755,root,root) %{_libdir}/libNGMime*.so.%{version}*
 
 %files mime-devel
-%defattr(-,root,root,-)
+%defattr(644,root,root,755)
+%attr(755,root,root) %{_libdir}/libNGMime*.so
 %{_includedir}/NGImap4
 %{_includedir}/NGMail
 %{_includedir}/NGMime
-%{_libdir}/libNGMime*.so
 
 %files appserver
-%defattr(-,root,root,-)
-%{_libdir}/libNGObjWeb*.so.%{version}*
-%{_libdir}/libNGXmlRpc*.so.%{version}*
-%{_libdir}/libSoOFS*.so.%{version}*
-%{_libdir}/libWEExtensions*.so.%{version}*
-%{_libdir}/libWOExtensions*.so.%{version}*
-%{_libdir}/libWOXML*.so.%{version}*
+%defattr(644,root,root,755)
+%attr(755,root,root) %{_libdir}/libNGObjWeb*.so.%{version}*
+%attr(755,root,root) %{_libdir}/libNGXmlRpc*.so.%{version}*
+%attr(755,root,root) %{_libdir}/libSoOFS*.so.%{version}*
+%attr(755,root,root) %{_libdir}/libWEExtensions*.so.%{version}*
+%attr(755,root,root) %{_libdir}/libWOExtensions*.so.%{version}*
+%attr(755,root,root) %{_libdir}/libWOXML*.so.%{version}*
+%dir %{_datadir}/%{name}-%{version}/ngobjweb
 %{_datadir}/%{name}-%{version}/ngobjweb/DAVPropMap.plist
 %{_datadir}/%{name}-%{version}/ngobjweb/Defaults.plist
 %{_datadir}/%{name}-%{version}/ngobjweb/Languages.plist
+%dir %{_libdir}/%{name}-%{version}/products
 %{_libdir}/%{name}-%{version}/products/SoCore.sxp
 %{_libdir}/%{name}-%{version}/products/SoOFS.sxp
+%dir %{_libdir}/%{name}-%{version}/wox-builders
 %{_libdir}/%{name}-%{version}/wox-builders/WEExtensions.wox
 %{_libdir}/%{name}-%{version}/wox-builders/WOExtensions.wox
 
-
 %files appserver-tools
-%defattr(-,root,root,-)
-%{_sbindir}/%{name}-%{version}
-%{_bindir}/xmlrpc_call
+%defattr(644,root,root,755)
+%attr(755,root,root) %{_sbindir}/%{name}-%{version}
+%attr(755,root,root) %{_bindir}/xmlrpc_call
 
 %files appserver-devel
-%defattr(-,root,root,-)
-%{_bindir}/wod
+%defattr(644,root,root,755)
+%attr(755,root,root) %{_bindir}/wod
+%attr(755,root,root) %{_libdir}/libNGObjWeb*.so
+%attr(755,root,root) %{_libdir}/libNGXmlRpc*.so
+%attr(755,root,root) %{_libdir}/libSoOFS*.so
+%attr(755,root,root) %{_libdir}/libWEExtensions*.so
+%attr(755,root,root) %{_libdir}/libWOExtensions*.so
+%attr(755,root,root) %{_libdir}/libWOXML*.so
 %{_includedir}/NGHttp
 %{_includedir}/NGObjWeb
 %{_includedir}/NGXmlRpc
@@ -662,75 +671,69 @@
 %{_includedir}/WEExtensions
 %{_includedir}/WOExtensions
 %{_includedir}/WOXML
-%{_libdir}/libNGObjWeb*.so
-%{_libdir}/libNGXmlRpc*.so
-%{_libdir

SOURCES: monodoc-mint.patch (NEW) - mint support is back

2005-09-14 Thread qboosh
Author: qboosh   Date: Wed Sep 14 12:11:02 2005 GMT
Module: SOURCES   Tag: HEAD
 Log message:
- mint support is back

 Files affected:
SOURCES:
   monodoc-mint.patch (1.7 - 1.8)  (NEW)

 Diffs:


Index: SOURCES/monodoc-mint.patch
diff -u /dev/null SOURCES/monodoc-mint.patch:1.8
--- /dev/null   Wed Sep 14 14:11:02 2005
+++ SOURCES/monodoc-mint.patch  Wed Sep 14 14:10:57 2005
@@ -0,0 +1,98 @@
+--- monodoc-1.1.9/class/Makefile.am.orig   2005-06-08 21:24:41.0 
+0200
 monodoc-1.1.9/class/Makefile.am2005-09-14 13:46:59.0 +0200
+@@ -14,37 +14,37 @@
+ netdocs: netdocs.tree
+ 
+ netdocs.tree netdocs.zip: $(srcdir)/*/en/*/*.xml $(srcdir)/*/en/*.xml
+-  mono --debug ../browser/assembler.exe --ecma $(srcdir)/corlib/en/ 
--ecma $(srcdir)/System/en/  --ecma $(srcdir)/System.XML/en/ --ecma 
$(srcdir)/System.Web/en --ecma $(srcdir)/System.Web.Services/en --ecma 
$(srcdir)/System.Data/en --ecma $(srcdir)/System.DirectoryServices/en --ecma 
$(srcdir)/System.Drawing/en --ecma $(srcdir)/System.Security/en -o netdocs 
++  $(RUNTIME) $(RDEBUG) ../browser/assembler.exe --ecma 
$(srcdir)/corlib/en/ --ecma $(srcdir)/System/en/  --ecma 
$(srcdir)/System.XML/en/ --ecma $(srcdir)/System.Web/en --ecma 
$(srcdir)/System.Web.Services/en --ecma $(srcdir)/System.Data/en --ecma 
$(srcdir)/System.DirectoryServices/en --ecma $(srcdir)/System.Drawing/en --ecma 
$(srcdir)/System.Security/en -o netdocs 
+ 
+ #
+ # All the Mono.* namespaces go into a single package
+ #
+ Mono.tree Mono.zip: $(srcdir)/Mono.Cairo/en/*/*.xml  
$(srcdir)/Mono.GetOptions/en/*/*.xml $(srcdir)/Mono.Posix/en/*/*.xml 
$(srcdir)/Mono.Security/en/*/*.xml $(srcdir)/Mono.Security.Win32/en/*/*.xml 
$(srcdir)/Commons.Xml.Relaxng/en/*/*.xml
+-  mono --debug ../browser/assembler.exe --ecma $(srcdir)/Mono.Cairo/en 
--ecma $(srcdir)/Mono.GetOptions/en --ecma $(srcdir)/Mono.Posix/en --ecma 
$(srcdir)/Mono.Security.Win32/en/ --ecma $(srcdir)/Mono.Security/en/ --ecma 
$(srcdir)/Commons.Xml.Relaxng/en/ -o Mono
++  $(RUNTIME) $(RDEBUG) ../browser/assembler.exe --ecma 
$(srcdir)/Mono.Cairo/en --ecma $(srcdir)/Mono.GetOptions/en --ecma 
$(srcdir)/Mono.Posix/en --ecma $(srcdir)/Mono.Security.Win32/en/ --ecma 
$(srcdir)/Mono.Security/en/ --ecma $(srcdir)/Commons.Xml.Relaxng/en/ -o Mono
+ 
+ #
+ # All the Novell namespaces we handle go into a single file (one for now).
+ #
+ Novell.tree Novell.zip: $(srcdir)/Novell.Directory.Ldap/en/*/*.xml
+-  mono --debug ../browser/assembler.exe --ecma 
$(srcdir)/Novell.Directory.Ldap/en/ -o Novell
++  $(RUNTIME) $(RDEBUG) ../browser/assembler.exe --ecma 
$(srcdir)/Novell.Directory.Ldap/en/ -o Novell
+ 
+ #
+ # These are the NUnit documents, not sure why we have these, if NUnit is well 
documented
+ #
+ nunit-docs.tree nunit-docs.zip: $(srcdir)/nunit/en/*/*.xml 
$(srcdir)/nunit/en/*.xml
+-  mono --debug ../browser/assembler.exe --ecma $(srcdir)/nunit/en/ -o 
nunit-docs
++  $(RUNTIME) $(RDEBUG) ../browser/assembler.exe --ecma 
$(srcdir)/nunit/en/ -o nunit-docs
+ 
+ #
+ # Generation of C# errors, from the mcs source tree
+ #
+ cs-errors.tree cs-errors.zip: $(srcdir)/cs-errors.config
+-  mono --debug ../browser/assembler.exe --error 
$(srcdir)/cs-errors.config -o cs-errors
++  $(RUNTIME) $(RDEBUG) ../browser/assembler.exe --error 
$(srcdir)/cs-errors.config -o cs-errors
+ 
+ #
+ # The ECMA C# specification, from Jon Jagger.
+ #
+ ecma334.tree ecma334.zip: $(srcdir)/../ecma334/*
+-  mono --debug ../browser/assembler.exe --ecmaspec $(srcdir)/../ecma334 
-o ecma334
++  $(RUNTIME) $(RDEBUG) ../browser/assembler.exe --ecmaspec 
$(srcdir)/../ecma334 -o ecma334
+ 
+ CLEANFILES = \
+   ecma334.tree ecma334.zip\
+@@ -74,14 +74,14 @@
+ 
+ update:
+   for i in $(UPDATE_DIRS); do \
+-  mono --debug ../generator/updater.exe @prefix@/lib/$$i.dll -o 
./$$i/en || exit 1;   \
++  $(RUNTIME) $(RDEBUG) ../generator/updater.exe 
@prefix@/lib/$$i.dll -o ./$$i/en || exit 1;   \
+   done
+-  mono --debug ../generator/updater.exe @prefix@/lib/mscorlib.dll -o 
./corlib/en -f
+-  mono --debug ../generator/updater.exe @prefix@/lib/System.Xml.dll -o 
./System.XML/en -f
+-  mono --debug ../generator/updater.exe 
/usr/local/lib/System.Security.dll -o ./System.Security/en -f
+-  mono --debug ../generator/updater.exe /usr/local/lib/Mono.Security.dll 
-o ./Mono.Security/en -f
+-  mono --debug ../generator/updater.exe 
/usr/local/lib/Mono.Security.Win32.dll -o ./Mono.Security.Win32/en -f
+-  mono --debug ../generator/updater.exe @prefix@/lib/NUnit.Framework.dll 
-o ./nunit/en -f
++  $(RUNTIME) $(RDEBUG) ../generator/updater.exe @prefix@/lib/mscorlib.dll 
-o ./corlib/en -f
++  $(RUNTIME) $(RDEBUG) ../generator/updater.exe 
@prefix@/lib/System.Xml.dll -o ./System.XML/en -f
++  $(RUNTIME) $(RDEBUG) ../generator

SPECS: monodoc.spec - added mint patch

2005-09-14 Thread qboosh
Author: qboosh   Date: Wed Sep 14 12:11:42 2005 GMT
Module: SPECS Tag: HEAD
 Log message:
- added mint patch

 Files affected:
SPECS:
   monodoc.spec (1.46 - 1.47) 

 Diffs:


Index: SPECS/monodoc.spec
diff -u SPECS/monodoc.spec:1.46 SPECS/monodoc.spec:1.47
--- SPECS/monodoc.spec:1.46 Fri Sep  9 21:06:28 2005
+++ SPECS/monodoc.spec  Wed Sep 14 14:11:36 2005
@@ -9,6 +9,7 @@
 Group: Development/Tools
 Source0:   http://www.go-mono.com/sources/monodoc/%{name}-%{version}.tar.gz
 # Source0-md5: 2b8548b7160c1f3124c9f7b8f2044a88
+Patch0:%{name}-mint.patch
 URL:   http://www.go-mono.com/
 BuildRequires: autoconf
 BuildRequires: automake
@@ -28,6 +29,7 @@
 
 %prep
 %setup -q
+%patch0 -p1
 
 %build
 %{__aclocal}
@@ -65,6 +67,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.47  2005/09/14 12:11:36  qboosh
+- added mint patch
+
 Revision 1.46  2005/09/09 19:06:28  wolf
 - 1.1.9
 - moved %post from monodoc to mono-tools


 CVS-web:
http://cvs.pld-linux.org/SPECS/monodoc.spec?r1=1.46r2=1.47f=u

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


SOURCES: monodoc-mint.patch - more

2005-09-14 Thread qboosh
Author: qboosh   Date: Wed Sep 14 12:23:53 2005 GMT
Module: SOURCES   Tag: HEAD
 Log message:
- more

 Files affected:
SOURCES:
   monodoc-mint.patch (1.8 - 1.9) 

 Diffs:


Index: SOURCES/monodoc-mint.patch
diff -u SOURCES/monodoc-mint.patch:1.8 SOURCES/monodoc-mint.patch:1.9
--- SOURCES/monodoc-mint.patch:1.8  Wed Sep 14 14:10:57 2005
+++ SOURCES/monodoc-mint.patch  Wed Sep 14 14:23:47 2005
@@ -96,3 +96,71 @@
AC_MSG_ERROR([No $CS compiler found])
  fi
  
+--- monodoc-1.1.9/monodoc.in.orig  2005-05-01 19:48:01.0 +0200
 monodoc-1.1.9/monodoc.in   2005-09-14 14:17:42.0 +0200
+@@ -13,22 +13,22 @@
+   ;;
+ 
+ monodocer)
+-  exec mono $monodocdir/monodocer.exe $*
++  exec @RUNTIME@ $monodocdir/monodocer.exe $*
+   ;;
+ 
+ monodocs2html)
+-  exec mono $monodocdir/monodocs2html.exe $*
++  exec @RUNTIME@ $monodocdir/monodocs2html.exe $*
+   ;;
+ 
+ monodocs2slashdoc)
+-  exec mono $monodocdir/monodocs2slashdoc.exe $*
++  exec @RUNTIME@ $monodocdir/monodocs2slashdoc.exe $*
+   ;;
+ esac
+ 
+ case x$1 in
+ x--assemble)
+   shift;
+-  exec mono $monodocdir/assembler.exe $@
++  exec @RUNTIME@ $monodocdir/assembler.exe $@
+   ;;
+ x--get-sourcesdir)
+   echo $monodocdir/sources
+@@ -36,7 +36,7 @@
+   ;;
+ x--normalize)
+   shift;
+-  exec mono $monodocdir/normalize.exe $@
++  exec @RUNTIME@ $monodocdir/normalize.exe $@
+   ;;
+ x--update)
+   echo '--update deprecated;  Please use monodocer instead.'
+@@ -44,12 +44,12 @@
+   ;;
+ x--cs-to-ecma)
+   shift;
+-  exec mono $monodocdir/cs2ecma.exe $@
++  exec @RUNTIME@ $monodocdir/cs2ecma.exe $@
+   exit 0
+   ;;
+ x--validate)
+   shift;
+-  exec mono $monodocdir/validate.exe $@
++  exec @RUNTIME@ $monodocdir/validate.exe $@
+   ;;
+ x--help)
+   echo Usage is:
+@@ -77,12 +77,12 @@
+ esac
+ 
+ if test `basename $0` = mod; then
+-mono --debug $monodocdir/mod.exe $1 | lynx -dump -stdin -force_html | 
${PAGER:-more}
++@RUNTIME@ @RDEBUG@ $monodocdir/mod.exe $1 | lynx -dump -stdin -force_html 
| ${PAGER:-more}
+ exit
+ fi
+ 
+ if test -e $monodocdir/browser.exe; then
+-exec mono --debug $monodocdir/browser.exe $OPTIONS $@ $REST
++exec @RUNTIME@ @RDEBUG@ $monodocdir/browser.exe $OPTIONS $@ $REST
+ else
+ echo The monodoc GUI component is not installed. Install it from the 
mono-tools package.
+ fi


 CVS-web:
http://cvs.pld-linux.org/SOURCES/monodoc-mint.patch?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: chan_misdn-0.1.1.tar.gz mISDNuser_for_PBX4Linux-2.7-fix1.tar.gz

2005-09-19 Thread qboosh

Files fetched: 1

ALREADY GOT: no-url://chan_misdn-0.1.1.tar.gz
77a68e82e8f06d610644033f72bfa217  chan_misdn-0.1.1.tar.gz
STORED: 
http://isdn.jolly.de/download/v2.7/mISDNuser_for_PBX4Linux-2.7-fix1.tar.gz
146f5f3800545c224abec4108522ea9b  
mISDNuser_for_PBX4Linux-2.7-fix1.tar.gz
Size: 164074 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: asterisk-chan_misdn.spec - pl, typo

2005-09-19 Thread qboosh
Author: qboosh   Date: Mon Sep 19 07:45:17 2005 GMT
Module: SPECS Tag: HEAD
 Log message:
- pl, typo

 Files affected:
SPECS:
   asterisk-chan_misdn.spec (1.2 - 1.3) 

 Diffs:


Index: SPECS/asterisk-chan_misdn.spec
diff -u SPECS/asterisk-chan_misdn.spec:1.2 SPECS/asterisk-chan_misdn.spec:1.3
--- SPECS/asterisk-chan_misdn.spec:1.2  Thu Sep 15 00:23:08 2005
+++ SPECS/asterisk-chan_misdn.spec  Mon Sep 19 09:45:12 2005
@@ -1,5 +1,6 @@
 # $Revision$, $Date$
 Summary:   Asterisk mISDN channel driver
+Summary(pl):   Sterownik kanału mISDN dla Asteriska
 Name:  asterisk-chan_misdn
 Version:   0.1.1
 Release:   0.1
@@ -8,7 +9,7 @@
 Source0:   chan_misdn-%{version}.tar.gz
 # Source0-md5: 77a68e82e8f06d610644033f72bfa217
 Source1:   
http://isdn.jolly.de/download/v2.7/mISDNuser_for_PBX4Linux-2.7-fix1.tar.gz
-# Source0-md5:  146f5f3800545c224abec4108522ea9b
+# Source1-md5:  146f5f3800545c224abec4108522ea9b
 URL:   
http://www.beronet.com/index.php?option=com_remositoryItemid=38func=selectfoldercat=1lang=en
 BuildRequires: asterisk-devel
 BuildRequires: mISDN-devel
@@ -18,6 +19,10 @@
 mISDN Channel driver (chan_misdn) for the Asterisk Open Source VOIP
 Platform.
 
+%description -l pl
+Sterownik kanału mISDN (chan_misdn) dla platformy VOIP o otwartych
+źródłach Asterisk.
+
 %prep
 %setup -q -n chan_misdn-%{version} -a1
 
@@ -25,12 +30,9 @@
 sed -i 's/-ggdb//g' Makefile
 
 %build
-
-cd mISDNuser
-%{__make} \
+%{__make} -C mISDNuser \
CC=%{__cc} \
CFLAGS=%{rpmcflags} -DInternet_Port=2074 -I`pwd`/include
-cd -
 
 %{__make} \
CC=%{__cc} \
@@ -55,10 +57,11 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.3  2005/09/19 07:45:12  qboosh
+- pl, typo
+
 Revision 1.2  2005/09/14 22:23:08  areq
 - BuildRequires:  mISDN-devel
 
 Revision 1.1  2005/09/14 20:57:05  areq
 - init PLD spec
-
-


 CVS-web:
http://cvs.pld-linux.org/SPECS/asterisk-chan_misdn.spec?r1=1.2r2=1.3f=u

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


SPECS: SolarSockets.spec - pl, use NoSource

2005-09-19 Thread qboosh
Author: qboosh   Date: Mon Sep 19 20:03:15 2005 GMT
Module: SPECS Tag: HEAD
 Log message:
- pl, use NoSource

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

 Diffs:


Index: SPECS/SolarSockets.spec
diff -u SPECS/SolarSockets.spec:1.3 SPECS/SolarSockets.spec:1.4
--- SPECS/SolarSockets.spec:1.3 Sun Sep 11 03:59:47 2005
+++ SPECS/SolarSockets.spec Mon Sep 19 22:03:09 2005
@@ -1,5 +1,4 @@
 # $Revision$, $Date$
-#
 %define_gccver_ix863.3.3
 %define_gccver_x86_64  3.4.2
 %ifarch %{ix86}
@@ -8,6 +7,7 @@
 %define_gccver %{_gccver_x86_64}
 %endif
 Summary:   Easy network socket library
+Summary(pl):   Łatwa w użyciu biblioteka do gniazd
 Name:  SolarSockets
 Version:   0.4.0
 %define_rel0.1
@@ -19,6 +19,8 @@
 # NoSource0-md5:   45190052e0d0cafc9cf71016b4ea064d
 Source1:   
http://dl.sourceforge.net/solarirc/%{name}-%{version}-GCC%{_gccver_x86_64}.x86_64.tgz
 # NoSource1-md5:   aea57a8abb555dc6ef11f843e677debb
+NoSource:  0
+NoSource:  1
 URL:   http://solarirc.sourceforge.net/solarsockets/
 ExclusiveArch: %{ix86} %{x8664}
 BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
@@ -26,24 +28,38 @@
 %description
 Easy network socket library.
 
-Warning: this library from time to time connects to Solar OpenSource server
-for track use statistics.
+Warning: this library from time to time connects to Solar OpenSource
+server for track use statistics.
+
+%description -l pl
+Łatwa w użyciu biblioteka do gniazd.
+
+Uwaga: ta biblioteka od czasu do czasu łączy się z serwerem Solar
+OpenSource w celu uzyskania statystyk użycia.
 
 %package devel
-Summary:   Developement files
-Requires:  %{name} = %{version}-%{release}
+Summary:   Developement files for SolarSockets library
+Summary(pl):   Pliki programistyczne biblioteki SolarSockets
 Group: Development/Libraries
+Requires:  %{name} = %{version}-%{release}
 
 %description devel
-Developement files.
+Developement files for SolarSockets library.
+
+%description devel -l pl
+Pliki programistyczne biblioteki SolarSockets.
 
 %package static
-Summary:   Static library
-Requires:  %{name}-devel = %{version}-%{release}
+Summary:   Static SolarSockets library
+Summary(pl):   Statyczna biblioteka SolarSockets
 Group: Development/Libraries
+Requires:  %{name}-devel = %{version}-%{release}
 
 %description static
-Static library.
+Static SolarSockets library.
+
+%description static -l pl
+Statyczna biblioteka SolarSockets.
 
 %prep
 %setup -q -T -c -a0 -a1
@@ -54,9 +70,6 @@
 %endif
 mv README{,.es}
 
-%clean
-rm -rf $RPM_BUILD_ROOT
-
 %install
 rm -rf $RPM_BUILD_ROOT
 install -d $RPM_BUILD_ROOT{%{_libdir},%{_includedir}/%{name}}
@@ -65,6 +78,9 @@
 tr \r \n  include/%{name}.h \
 $RPM_BUILD_ROOT%{_includedir}/%{name}/%{name}.h
 
+%clean
+rm -rf $RPM_BUILD_ROOT
+
 %post  -p /sbin/ldconfig
 %postun-p /sbin/ldconfig
 
@@ -89,6 +105,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.4  2005/09/19 20:03:09  qboosh
+- pl, use NoSource
+
 Revision 1.3  2005/09/11 01:59:47  glen
 - fix _gccver macro
 


 CVS-web:
http://cvs.pld-linux.org/SPECS/SolarSockets.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


SPECS: War3D.spec - pl

2005-09-19 Thread qboosh
Author: qboosh   Date: Mon Sep 19 20:05:03 2005 GMT
Module: SPECS Tag: HEAD
 Log message:
- pl

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

 Diffs:


Index: SPECS/War3D.spec
diff -u SPECS/War3D.spec:1.1 SPECS/War3D.spec:1.2
--- SPECS/War3D.spec:1.1Sun Sep 11 03:18:09 2005
+++ SPECS/War3D.specMon Sep 19 22:04:58 2005
@@ -1,5 +1,6 @@
 # $Revision$, $Date$
 Summary:   War3D - strategy game
+Summary(pl):   War3D - gra strategiczna
 Name:  War3D
 Version:   0.08.90
 %define_snap   20050909
@@ -24,7 +25,12 @@
 %description
 A 3D strategy game.
 
-Warning: this game is not internacionalized, everything is in Spanish.
+Warning: this game is not internationalized, everything is in Spanish.
+
+%description -l pl
+Gra strategiczna 3D.
+
+Uwaga: nie jest umiędzynarodowiona, wszystko jest po hiszpańsku.
 
 %prep
 %setup -q -n %{name}Source
@@ -66,10 +72,12 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.2  2005/09/19 20:04:58  qboosh
+- pl
+
 Revision 1.1  2005/09/11 01:18:09  sparky
 - NEW; realy nice strategy game - like Starcraft but in 3D
 - Warning1: license is GPL with some additions, one of them says:
   precompiled binary can NOT be distributed without source (I have to
   ask them does the source have to be in same file as binary)
 - Warning2: everything is in Spanish, even source and directory stucture
-


 CVS-web:
http://cvs.pld-linux.org/SPECS/War3D.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: apache-mod_cband.spec - pl cosmetics

2005-09-19 Thread qboosh
Author: qboosh   Date: Mon Sep 19 20:16:20 2005 GMT
Module: SPECS Tag: HEAD
 Log message:
- pl cosmetics

 Files affected:
SPECS:
   apache-mod_cband.spec (1.1 - 1.2) 

 Diffs:


Index: SPECS/apache-mod_cband.spec
diff -u SPECS/apache-mod_cband.spec:1.1 SPECS/apache-mod_cband.spec:1.2
--- SPECS/apache-mod_cband.spec:1.1 Sat Sep 10 20:52:38 2005
+++ SPECS/apache-mod_cband.spec Mon Sep 19 22:16:14 2005
@@ -5,7 +5,7 @@
 %define_sysconfdir %(%{apxs} -q SYSCONFDIR)
 
 Summary:   Apache module: bandwidth limits per vhosts
-Summary(pl):   Moduł do Apache: limity pasma per vhosty
+Summary(pl):   Moduł do Apache: limity pasma dla poszczególnych vhostów
 Name:  apache-mod_%{mod_name}
 Version:   0.9.1
 Release:   0.1
@@ -34,10 +34,10 @@
 further requests to a location specified in the configuration file.
 
 %description -l pl
-mod_cband to moduł mający za zadanie ograniczanie zużycia pasma przez
-użytkowników i virtualhostów. Gdy określony limit zostanie
-przekroczony, mod_cband przekieruje wszelkie zapytania do strony
-wskazanej w pliku konfiguracyjnym.
+mod_cband to moduł Apache'a 2 mający za zadanie ograniczanie zużycia
+pasma przez użytkowników i hosty wirtualne. Gdy określony limit
+zostanie przekroczony, mod_cband przekieruje wszelkie zapytania do
+strony wskazanej w pliku konfiguracyjnym.
 
 %prep
 %setup -q -n mod_%{mod_name}-%{version}
@@ -81,6 +81,8 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.2  2005/09/19 20:16:14  qboosh
+- pl cosmetics
+
 Revision 1.1  2005/09/10 18:52:38  adamg
 - new, not tested yet
-


 CVS-web:
http://cvs.pld-linux.org/SPECS/apache-mod_cband.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: apr-util.spec - it builds with postgresql support by defaul...

2005-09-19 Thread qboosh
Author: qboosh   Date: Mon Sep 19 20:28:19 2005 GMT
Module: SPECS Tag: HEAD
 Log message:
- it builds with postgresql support by default
- added bcond to enable mysql (not tested)

 Files affected:
SPECS:
   apr-util.spec (1.28 - 1.29) 

 Diffs:


Index: SPECS/apr-util.spec
diff -u SPECS/apr-util.spec:1.28 SPECS/apr-util.spec:1.29
--- SPECS/apr-util.spec:1.28Mon Sep  5 18:34:48 2005
+++ SPECS/apr-util.spec Mon Sep 19 22:28:14 2005
@@ -2,6 +2,8 @@
 #
 # Conditional build:
 %bcond_without ldap# without LDAP support
+%bcond_withmysql   # with MySQL support
+%bcond_without pgsql   # without PostgreSQL support
 %bcond_withsqlite  # with SQLite 2.x support
 %bcond_without sqlite3 # without SQLite3 support
 #
@@ -23,7 +25,9 @@
 BuildRequires: expat-devel
 BuildRequires: gdbm-devel
 BuildRequires: libtool
+%{?with_mysql:BuildRequires:   mysql-devel}
 %{?with_ldap:BuildRequires:openldap-devel}
+%{?with_pgsql:BuildRequires:   postgresql-devel}
 %{?with_sqlite:BuildRequires:  sqlite-devel = 2}
 %{?with_sqlite3:BuildRequires: sqlite3-devel = 3}
 Requires:  apr = 1:1.1.0
@@ -47,7 +51,9 @@
 Requires:  db-devel
 Requires:  expat-devel
 Requires:  gdbm-devel
+%{?with_mysql:Requires:mysql-devel}
 %{?with_ldap:Requires: openldap-devel}
+%{?with_pgsql:Requires:postgresql-devel}
 %{?with_sqlite:Requires:   sqlite-devel = 2}
 %{?with_sqlite3:Requires:  sqlite3-devel = 3}
 
@@ -88,6 +94,8 @@
--with-ldap-lib=%{_libdir} \
 %endif
--with-iconv=%{_prefix} \
+   %{?with_mysql:--with-mysql} \
+   %{!?with_pgsql:--without-pgsql} \
%{!?with_sqlite:--without-sqlite2} \
%{!?with_sqlite3:--without-sqlite3}
 
@@ -129,6 +137,10 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.29  2005/09/19 20:28:14  qboosh
+- it builds with postgresql support by default
+- added bcond to enable mysql (not tested)
+
 Revision 1.28  2005/09/05 16:34:48  qboosh
 - sqlite2 off by default
 


 CVS-web:
http://cvs.pld-linux.org/SPECS/apr-util.spec?r1=1.28r2=1.29f=u

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


SPECS: baobab.spec - plural

2005-09-19 Thread qboosh
Author: qboosh   Date: Mon Sep 19 20:43:50 2005 GMT
Module: SPECS Tag: HEAD
 Log message:
- plural

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

 Diffs:


Index: SPECS/baobab.spec
diff -u SPECS/baobab.spec:1.2 SPECS/baobab.spec:1.3
--- SPECS/baobab.spec:1.2   Sun Sep 18 12:00:51 2005
+++ SPECS/baobab.spec   Mon Sep 19 22:43:45 2005
@@ -5,7 +5,7 @@
 # - better desc
 #
 Summary:   A graphical tool to analyse directory trees
-Summary(pl):   Graficzne narzędzie do analizy drzewa katalogów
+Summary(pl):   Graficzne narzędzie do analizy drzew katalogów
 Name:  baobab
 Version:   1.2.0
 Release:   2
@@ -28,7 +28,7 @@
 A graphical tool to analyse directory trees.
 
 %description -l pl
-Graficzne narzędzie do analizy drzewa katalogów.
+Graficzne narzędzie do analizy drzew katalogów.
 
 %prep
 %setup -q
@@ -66,9 +66,11 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.3  2005/09/19 20:43:45  qboosh
+- plural
+
 Revision 1.2  2005/09/18 10:00:51  paladine
 - rel. 2 for fixed desktop patch
 
 Revision 1.1  2005/09/17 11:27:37  paladine
 - initial PLD release
-


 CVS-web:
http://cvs.pld-linux.org/SPECS/baobab.spec?r1=1.2r2=1.3f=u

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


SPECS: bluez-hcidump.spec - BR+R bluez-libs = 2.20

2005-09-19 Thread qboosh
Author: qboosh   Date: Mon Sep 19 20:51:49 2005 GMT
Module: SPECS Tag: HEAD
 Log message:
- BR+R bluez-libs = 2.20

 Files affected:
SPECS:
   bluez-hcidump.spec (1.11 - 1.12) 

 Diffs:


Index: SPECS/bluez-hcidump.spec
diff -u SPECS/bluez-hcidump.spec:1.11 SPECS/bluez-hcidump.spec:1.12
--- SPECS/bluez-hcidump.spec:1.11   Sun Sep 11 23:42:37 2005
+++ SPECS/bluez-hcidump.specMon Sep 19 22:51:43 2005
@@ -11,7 +11,8 @@
 URL:   http://bluez.sourceforge.net/
 BuildRequires: autoconf = 2.50
 BuildRequires: automake
-BuildRequires: bluez-libs-devel = 2.15
+BuildRequires: bluez-libs-devel = 2.20
+Requires:  bluez-libs = 2.20
 BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
 
 %description
@@ -52,6 +53,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.12  2005/09/19 20:51:43  qboosh
+- BR+R bluez-libs = 2.20
+
 Revision 1.11  2005/09/11 21:42:37  blekot
 - up to 1.25
 


 CVS-web:
http://cvs.pld-linux.org/SPECS/bluez-hcidump.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


SPECS: bluez-utils.spec - BR+R bluez-libs = 2.21

2005-09-19 Thread qboosh
Author: qboosh   Date: Mon Sep 19 21:02:39 2005 GMT
Module: SPECS Tag: HEAD
 Log message:
- BR+R bluez-libs = 2.21

 Files affected:
SPECS:
   bluez-utils.spec (1.31 - 1.32) 

 Diffs:


Index: SPECS/bluez-utils.spec
diff -u SPECS/bluez-utils.spec:1.31 SPECS/bluez-utils.spec:1.32
--- SPECS/bluez-utils.spec:1.31 Sun Sep 11 23:32:01 2005
+++ SPECS/bluez-utils.spec  Mon Sep 19 23:02:33 2005
@@ -20,13 +20,13 @@
 BuildRequires: autoconf
 BuildRequires: automake
 BuildRequires: bison
-BuildRequires: bluez-libs-devel = 2.15
+BuildRequires: bluez-libs-devel = 2.21
 BuildRequires: dbus-devel = 0.33
 BuildRequires: libtool
 BuildRequires: libusb-devel
 # alsa-lib-devel, openobex-devel - currently only checked for, not used
 PreReq:rc-scripts
-Requires:  bluez-libs = 2.15
+Requires:  bluez-libs = 2.21
 Obsoletes: bluez-pan
 Obsoletes: bluez-sdp
 Conflicts: bluez-bluefw
@@ -62,7 +62,7 @@
 Summary:   Bluetooth backend for CUPS
 Summary(pl):   Backend Bluetooth dla CUPS-a
 Group: Applications/Printing
-Requires:  bluez-libs = 2.11
+Requires:  bluez-libs = 2.21
 Requires:  cups
 
 %description -n cups-backend-bluetooth
@@ -138,13 +138,13 @@
 %attr(755,root,root) %{_bindir}/*
 %attr(755,root,root) %{_sbindir}/*
 %{_mandir}/man*/*
-%attr(640,root,root) %config(noreplace) %verify(not size mtime md5) 
/etc/sysconfig/bluetooth
+%attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) 
/etc/sysconfig/bluetooth
 %dir %{_sysconfdir}/bluetooth
-%config(noreplace) %verify(not size mtime md5) %{_sysconfdir}/bluetooth/*
+%config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/bluetooth/*
 %attr(755,root,root) %{_sysconfdir}/hotplug/usb/bcm203x
-%config(noreplace) %verify(not size mtime md5) 
%{_sysconfdir}/hotplug/usb/bcm203x.usermap
-%config(noreplace) %verify(not size mtime md5) 
%{_sysconfdir}/pcmcia/bluetooth.conf
-%config(noreplace) %verify(not size mtime md5) %{_sysconfdir}/pcmcia/bluetooth
+%config(noreplace) %verify(not md5 mtime size) 
%{_sysconfdir}/hotplug/usb/bcm203x.usermap
+%config(noreplace) %verify(not md5 mtime size) 
%{_sysconfdir}/pcmcia/bluetooth.conf
+%config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/pcmcia/bluetooth
 
 %files -n cups-backend-bluetooth
 %defattr(644,root,root,755)
@@ -160,6 +160,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.32  2005/09/19 21:02:33  qboosh
+- BR+R bluez-libs = 2.21
+
 Revision 1.31  2005/09/11 21:32:01  blekot
 - up to 2.21
 - dbus patch already included in sources.


 CVS-web:
http://cvs.pld-linux.org/SPECS/bluez-utils.spec?r1=1.31r2=1.32f=u

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


SPECS: ccrtp.spec - cosmetics, avoid packaging info/dir

2005-09-19 Thread qboosh
Author: qboosh   Date: Mon Sep 19 22:18:14 2005 GMT
Module: SPECS Tag: HEAD
 Log message:
- cosmetics, avoid packaging info/dir

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

 Diffs:


Index: SPECS/ccrtp.spec
diff -u SPECS/ccrtp.spec:1.2 SPECS/ccrtp.spec:1.3
--- SPECS/ccrtp.spec:1.2Wed Sep  7 23:26:30 2005
+++ SPECS/ccrtp.specTue Sep 20 00:18:09 2005
@@ -8,7 +8,7 @@
 Group: Libraries
 Source0:   ftp://ftp.gnu.org/pub/gnu/ccrtp/%{name}-%{version}.tar.gz
 # Source0-md5: a73a524ced1105e738cddb8574c469de
-URL:   http://www.gnu.org/software/ccrtp
+URL:   http://www.gnu.org/software/ccrtp/
 BuildRequires: commoncpp2-devel
 BuildRequires: doxygen
 BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
@@ -24,7 +24,7 @@
 for underlying network and transport protocols.
 
 %description -l pl
-ccRTP jest ogólnym, rozszerzalnym i efektywnym szkieletem C++ dla
+ccRTP jest ogólnym, rozszerzalnym i efektywnym szkieletem C++ do
 rozwijania aplikacji bazujących na transporcie czasu rzeczywistego
 (RTP) z IETF. Bazuje na Common C++ i udostępnia pełen stos RTP/RTCP do
 wysyłania i odbierania danych w czasie rzeczywistym z użyciem kolejek
@@ -33,7 +33,6 @@
 automatycznie RTCP, wspiera różne modele wątkowania i jest ogólny dla
 podstawowych sieci i protokołów transportowych.
 
-
 %package devel
 Summary:   Header files for ccrtp library
 Summary(pl):   Pliki nagłówkowe biblioteki ccrtp
@@ -80,7 +79,7 @@
 
 %files
 %defattr(644,root,root,755)
-%doc %doc AUTHORS COPYING COPYING.addendum README
+%doc AUTHORS COPYING COPYING.addendum README
 %attr(755,root,root) %{_libdir}/lib*.so.*.*.*
 
 %files devel
@@ -90,7 +89,7 @@
 %{_libdir}/lib*.la
 %{_includedir}/ccrtp
 %{_pkgconfigdir}/*.pc
-%{_infodir}/*
+%{_infodir}/*.info*
 
 %files static
 %defattr(644,root,root,755)
@@ -102,9 +101,11 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.3  2005/09/19 22:18:09  qboosh
+- cosmetics, avoid packaging info/dir
+
 Revision 1.2  2005/09/07 21:26:30  undefine
 - pl description
 
 Revision 1.1  2005/09/07 14:53:28  undefine
 - initial
-


 CVS-web:
http://cvs.pld-linux.org/SPECS/ccrtp.spec?r1=1.2r2=1.3f=u

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


SPECS: cdrdao.spec - updated xdao BRs

2005-09-19 Thread qboosh
Author: qboosh   Date: Mon Sep 19 22:24:58 2005 GMT
Module: SPECS Tag: HEAD
 Log message:
- updated xdao BRs

 Files affected:
SPECS:
   cdrdao.spec (1.59 - 1.60) 

 Diffs:


Index: SPECS/cdrdao.spec
diff -u SPECS/cdrdao.spec:1.59 SPECS/cdrdao.spec:1.60
--- SPECS/cdrdao.spec:1.59  Sun Sep 18 00:18:06 2005
+++ SPECS/cdrdao.spec   Tue Sep 20 00:24:52 2005
@@ -1,8 +1,8 @@
 # $Revision$, $Date$
 #
 # Conditional build:
-%bcond_withgnome   # without gcdmaster
-%bcond_without mp3 # without mp3 and ogg
+%bcond_withgnome   # build gcdmaster
+%bcond_without mp3 # without MP3 and Ogg support
 #
 Summary:   Tools for burning CDRs in Disk At Once mode
 Summary(pl):   Narzędzia do wypalania płyt w trybie Disk At Once
@@ -24,11 +24,12 @@
 BuildRequires: autoconf
 BuildRequires: automake
 BuildRequires: cdrtools-devel = 3:2.01a25
-%{?with_gnome:BuildRequires:   libgnomeuimm-devel = 2.0.0}
-%{?with_gnome:BuildRequires:   gtkmm-devel = 2.2.8}
+%{?with_gnome:BuildRequires:   gtkmm-devel = 2.4.0}
 BuildRequires: lame-libs-devel = 3.92
 BuildRequires: libao-devel = 0.8
+%{?with_gnome:BuildRequires:   libgnomeuimm-devel = 2.6.0}
 BuildRequires: libmad-devel = 0.15.1b-4
+%{?with_gnome:BuildRequires:   libsigc++-devel = 2.0.0}
 BuildRequires: libstdc++-devel
 BuildRequires: libvorbis-devel = 1.0
 BuildRequires: pccts = 1.33MR33-8
@@ -144,6 +145,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.60  2005/09/19 22:24:52  qboosh
+- updated xdao BRs
+
 Revision 1.59  2005/09/17 22:18:06  areq
 - add without mp3
 


 CVS-web:
http://cvs.pld-linux.org/SPECS/cdrdao.spec?r1=1.59r2=1.60f=u

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


DISTFILES: pcsc-lite-1.2.9-beta8.tar.gz

2005-09-20 Thread qboosh

Files fetched: 1

STORED: http://alioth.debian.org/download.php/1133/pcsc-lite-1.2.9-beta8.tar.gz
cd307695a7262660e51ab9f7aa68ce5a  pcsc-lite-1.2.9-beta8.tar.gz
Size: 1014340 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: libmusclecard.spec (REMOVED) - moved back to pcsc-lite.spec

2005-09-20 Thread qboosh
Author: qboosh   Date: Tue Sep 20 08:36:45 2005 GMT
Module: SPECS Tag: HEAD
 Log message:
- moved back to pcsc-lite.spec

 Files affected:
SPECS:
   libmusclecard.spec (1.2 - 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


DISTFILES: openct-0.6.6.tar.gz

2005-09-20 Thread qboosh

Files fetched: 1

STORED: http://www.opensc.org/files/openct-0.6.6.tar.gz
a9de3bef8e5e2827b8d72a2a50d0bc66  openct-0.6.6.tar.gz
Size: 563890 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: openct.spec - updated to 0.6.6

2005-09-20 Thread qboosh
Author: qboosh   Date: Tue Sep 20 11:01:43 2005 GMT
Module: SPECS Tag: HEAD
 Log message:
- updated to 0.6.6

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

 Diffs:


Index: SPECS/openct.spec
diff -u SPECS/openct.spec:1.21 SPECS/openct.spec:1.22
--- SPECS/openct.spec:1.21  Tue Apr 26 20:25:57 2005
+++ SPECS/openct.spec   Tue Sep 20 13:01:38 2005
@@ -2,12 +2,12 @@
 Summary:   OpenCT library - library for accessing smart card terminals
 Summary(pl):   OpenCT - biblioteka dostępu do terminali kart procesorowych
 Name:  openct
-Version:   0.6.4
+Version:   0.6.6
 Release:   1
 License:   BSD-like
 Group: Applications
 Source0:   http://www.opensc.org/files/%{name}-%{version}.tar.gz
-# Source0-md5: d6e54a3001a217f812dc7ec837ab58ba
+# Source0-md5: a9de3bef8e5e2827b8d72a2a50d0bc66
 Source1:   %{name}.init
 Patch0:%{name}-ccid.patch
 URL:   http://www.opensc.org/
@@ -133,7 +133,7 @@
 
 %files
 %defattr(644,root,root,755)
-%doc ANNOUNCE AUTHORS ChangeLog LICENSE NEWS TODO doc/openct.{html,css}
+%doc ANNOUNCE NEWS TODO doc/*.{html,css}
 %attr(755,root,root) %{_bindir}/openct-tool
 %attr(755,root,root) %{_sbindir}/ifdhandler
 %attr(755,root,root) %{_sbindir}/ifdproxy
@@ -143,6 +143,7 @@
 %attr(755,root,root) %{_sysconfdir}/hotplug/usb/openct
 %{_sysconfdir}/hotplug/usb/openct.usermap
 %attr(754,root,root) /etc/rc.d/init.d/openct
+%{_mandir}/man1/openct-tool.1*
 
 %files -n pcsc-driver-openct
 %defattr(644,root,root,755)
@@ -155,21 +156,23 @@
 
 %files libs
 %defattr(644,root,root,755)
-%attr(755,root,root) %{_libdir}/lib*.so.*.*
+%attr(755,root,root) %{_libdir}/libopenct.so.*.*.*
 %attr(755,root,root) %{_libdir}/libopenctapi.so
 %attr(755,root,root) %{_libdir}/openct-ifd.so
 
 %files devel
 %defattr(644,root,root,755)
-%attr(755,root,root) %{_libdir}/libifd.so
+%doc doc/api/*
 %attr(755,root,root) %{_libdir}/libopenct.so
-%{_libdir}/lib*.la
+%{_libdir}/libopenct.la
+%{_libdir}/libopenctapi.la
 %{_includedir}/openct
-%{_pkgconfigdir}/*.pc
+%{_pkgconfigdir}/libopenct.pc
 
 %files static
 %defattr(644,root,root,755)
-%{_libdir}/lib*.a
+%{_libdir}/libopenct.a
+%{_libdir}/libopenctapi.a
 
 %define date   %(echo `LC_ALL=C date +%a %b %d %Y`)
 %changelog
@@ -177,6 +180,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.22  2005/09/20 11:01:38  qboosh
+- updated to 0.6.6
+
 Revision 1.21  2005/04/26 18:25:57  qboosh
 - updated to 0.6.4 (note: new sonames), updated ccid patch
 - -libs Conflicts with base before split ( 0.6.2-3)


 CVS-web:
http://cvs.pld-linux.org/SPECS/openct.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 (AC-poldek-0_18): poldek.spec - usable poldek 0.18.x for Ac

2005-09-20 Thread qboosh
Author: qboosh   Date: Tue Sep 20 12:20:51 2005 GMT
Module: SPECS Tag: AC-poldek-0_18
 Log message:
- usable poldek 0.18.x for Ac

 Files affected:
SPECS:
   poldek.spec (1.211 - 1.211.2.1) 

 Diffs:


Index: SPECS/poldek.spec
diff -u SPECS/poldek.spec:1.211 SPECS/poldek.spec:1.211.2.1
--- SPECS/poldek.spec:1.211 Tue Jul 26 14:10:16 2005
+++ SPECS/poldek.spec   Tue Sep 20 14:20:44 2005
@@ -6,13 +6,13 @@
 %bcond_withcurl# link with curl
 #
 # required versions (forced to avoid SEGV with mixed db used by rpm and poldek)
-%definever_db  4.3.27-1
-%definever_rpm 4.3-0.20040107.34
+%definever_db  4.2.50-1
+%definever_rpm 4.4.1
 Summary:   RPM packages management helper tool
 Summary(pl):   Pomocnicze narzędzie do zarządzania pakietami RPM
 Name:  poldek
 Version:   0.18.9
-Release:   1.1
+Release:   1
 License:   GPL v2
 Group: Applications/System
 Source0:   
http://team.pld.org.pl/~mis/poldek/download/%{name}-%{version}.tar.bz2
@@ -171,6 +171,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.211.2.1  2005/09/20 12:20:44  qboosh
+- usable poldek 0.18.x for Ac
+
 Revision 1.211  2005/07/26 12:10:16  qboosh
 - merged update to 0.18.9 from AC-branch
   - removed obsolete gcc4,cookie,rpmcmd,fmtime patches


 CVS-web:
http://cvs.pld-linux.org/SPECS/poldek.spec?r1=1.211r2=1.211.2.1f=u

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


SOURCES: htop-home_etc.patch (REMOVED) - obsolete (acc. to charles)

2005-09-20 Thread qboosh
Author: qboosh   Date: Tue Sep 20 14:33:25 2005 GMT
Module: SOURCES   Tag: HEAD
 Log message:
- obsolete (acc. to charles)

 Files affected:
SOURCES:
   htop-home_etc.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


SPECS: pips-sc45_46s.spec - updated pl

2005-09-20 Thread qboosh
Author: qboosh   Date: Tue Sep 20 14:39:25 2005 GMT
Module: SPECS Tag: HEAD
 Log message:
- updated pl

 Files affected:
SPECS:
   pips-sc45_46s.spec (1.4 - 1.5) 

 Diffs:


Index: SPECS/pips-sc45_46s.spec
diff -u SPECS/pips-sc45_46s.spec:1.4 SPECS/pips-sc45_46s.spec:1.5
--- SPECS/pips-sc45_46s.spec:1.4Mon Sep 19 21:21:21 2005
+++ SPECS/pips-sc45_46s.specTue Sep 20 16:39:20 2005
@@ -1,5 +1,6 @@
+# $Revision$, $Date$
 Summary:   Stylus C45/C46 Series Photo Image Print System
-Summary(pl):   System druku fotograficznego dla serii Stylus C45/C46 dla 
Linuksa
+Summary(pl):   System druku fotograficznego dla serii drukarek Stylus C45/C46
 Name:  pips-sc45_46s
 Version:   2.6.2
 Release:   1
@@ -40,7 +41,7 @@
 
 %description -l pl
 Sterownik drukarki (filtr) dla wysokojakościowego wydruku na
-kolorowych drukarkach atramentowych SEIKO EPSON pod Linuksa.
+kolorowych drukarkach atramentowych EPSON Stylus C45 i C46.
 
 %package cups
 Summary:   Cups binding of Stylus C45/C46 print system
@@ -155,6 +156,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.5  2005/09/20 14:39:20  qboosh
+- updated pl
+
 Revision 1.4  2005/09/19 19:21:21  aredridel
 - better description and summary
 


 CVS-web:
http://cvs.pld-linux.org/SPECS/pips-sc45_46s.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: template-php-pear.spec - pl for -tests

2005-09-20 Thread qboosh
Author: qboosh   Date: Tue Sep 20 14:40:25 2005 GMT
Module: SPECS Tag: HEAD
 Log message:
- pl for -tests

 Files affected:
SPECS:
   template-php-pear.spec (1.10 - 1.11) 

 Diffs:


Index: SPECS/template-php-pear.spec
diff -u SPECS/template-php-pear.spec:1.10 SPECS/template-php-pear.spec:1.11
--- SPECS/template-php-pear.spec:1.10   Mon Sep 19 23:43:40 2005
+++ SPECS/template-php-pear.specTue Sep 20 16:40:20 2005
@@ -34,12 +34,16 @@
 
 %package tests
 Summary:   Tests for PEAR::%{_pearname}
+Summary(pl):   Testy dla PEAR::%{_pearname}
 Group: Development
 Requires:  %{name} = %{version}-%{release}
 
 %description tests
 Tests for PEAR::%{_pearname}.
 
+%description tests -l pl
+Testy dla PEAR::%{_pearname}.
+
 %prep
 %pear_package_setup
 
@@ -75,6 +79,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.11  2005/09/20 14:40:20  qboosh
+- pl for -tests
+
 Revision 1.10  2005/09/19 21:43:40  glen
 - integer BR
 
@@ -104,4 +111,3 @@
 
 Revision 1.1  2003/05/31 08:33:43  adamg
 - template for php-pear packages
-


 CVS-web:
http://cvs.pld-linux.org/SPECS/template-php-pear.spec?r1=1.10r2=1.11f=u

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


SPECS: opera.spec - desc cosmetics

2005-09-20 Thread qboosh
Author: qboosh   Date: Tue Sep 20 17:58:26 2005 GMT
Module: SPECS Tag: HEAD
 Log message:
- desc cosmetics

 Files affected:
SPECS:
   opera.spec (1.149 - 1.150) 

 Diffs:


Index: SPECS/opera.spec
diff -u SPECS/opera.spec:1.149 SPECS/opera.spec:1.150
--- SPECS/opera.spec:1.149  Tue Sep 20 19:48:18 2005
+++ SPECS/opera.specTue Sep 20 19:58:21 2005
@@ -282,13 +282,13 @@
 
 %description
 Opera is world fastest web browser. It supports most of nowaday
-extensions of HTML. And it is quite stable. Version static linked
-with qt.
+extensions of HTML. And it is quite stable. This version is statically
+linked with Qt.
 
 %description -l pl
 Opera jest najszybszą przeglądarką WWW na świecie. Obsługuje większość
-dzisiejszych rozszerzeń HTML-a. Dodatkowo jest w miarę stabilna. Wersja
-statycznie skonsolidowana z qt.
+dzisiejszych rozszerzeń HTML-a. Dodatkowo jest w miarę stabilna. Ta
+wersja jest statycznie skonsolidowana z Qt.
 
 %prep
 %ifarch %{ix86}
@@ -382,6 +382,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.150  2005/09/20 17:58:21  qboosh
+- desc cosmetics
+
 Revision 1.149  2005/09/20 17:48:18  arekm
 - description fixed
 


 CVS-web:
http://cvs.pld-linux.org/SPECS/opera.spec?r1=1.149r2=1.150f=u

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


DISTFILES: ERRORS: opera-8.50-20050916.1-static-qt.i386-en.tar.bz2 opera-8.50-20050916.1-static-qt.sparc-en.tar.bz2 opera-8.50-20050916.1-static-qt.ppc-en.tar.bz2 opera-8.50-20050916.5-shared-qt.i386-

2005-09-20 Thread qboosh
wget -nv --no-check-certificate -O 
./tmp/a75679c4-5f41-40f1-96f2-a304ddd082c1/d11026f15f8c3680a772e3278804accb/opera-8.50-20050916.5-shared-qt.i386-en.tar.bz2
 
http://snapshot.opera.com/unix/8.50-final/1275-20050728-P2BT/intel-linux/en/opera-8.50-20050916.5-shared-qt.i386-en.tar.bz2:
http://snapshot.opera.com/unix/8.50-final/1275-20050728-P2BT/intel-linux/en/opera-8.50-20050916.5-shared-qt.i386-en.tar.bz2:
19:58:27 ERROR 404: Not Found.


FATAL: 
http://snapshot.opera.com/unix/8.50-final/1275-20050728-P2BT/intel-linux/en/opera-8.50-20050916.5-shared-qt.i386-en.tar.bz2
 (d11026f15f8c3680a772e3278804accb) was not fetched (wget -nv 
--no-check-certificate -O 
./tmp/a75679c4-5f41-40f1-96f2-a304ddd082c1/d11026f15f8c3680a772e3278804accb/opera-8.50-20050916.5-shared-qt.i386-en.tar.bz2
 
http://snapshot.opera.com/unix/8.50-final/1275-20050728-P2BT/intel-linux/en/opera-8.50-20050916.5-shared-qt.i386-en.tar.bz2:
 
http://snapshot.opera.com/unix/8.50-final/1275-20050728-P2BT/intel-linux/en/opera-8.50-20050916.5-shared-qt.i386-en.tar.bz2:
19:58:27 ERROR 404: Not Found.
)
wget -nv --no-check-certificate -O 
./tmp/a75679c4-5f41-40f1-96f2-a304ddd082c1/e190021f5530de3f711006cd9f6bb339/opera-8.50-20050916.2-shared-qt.sparc-en.tar.bz2
 
http://snapshot.opera.com/unix/8.50-final/1275-20050728-P2BT/sparc-linux/en/opera-8.50-20050916.2-shared-qt.sparc-en.tar.bz2:
http://snapshot.opera.com/unix/8.50-final/1275-20050728-P2BT/sparc-linux/en/opera-8.50-20050916.2-shared-qt.sparc-en.tar.bz2:
19:58:27 ERROR 404: Not Found.


FATAL: 
http://snapshot.opera.com/unix/8.50-final/1275-20050728-P2BT/sparc-linux/en/opera-8.50-20050916.2-shared-qt.sparc-en.tar.bz2
 (e190021f5530de3f711006cd9f6bb339) was not fetched (wget -nv 
--no-check-certificate -O 
./tmp/a75679c4-5f41-40f1-96f2-a304ddd082c1/e190021f5530de3f711006cd9f6bb339/opera-8.50-20050916.2-shared-qt.sparc-en.tar.bz2
 
http://snapshot.opera.com/unix/8.50-final/1275-20050728-P2BT/sparc-linux/en/opera-8.50-20050916.2-shared-qt.sparc-en.tar.bz2:
 
http://snapshot.opera.com/unix/8.50-final/1275-20050728-P2BT/sparc-linux/en/opera-8.50-20050916.2-shared-qt.sparc-en.tar.bz2:
19:58:27 ERROR 404: Not Found.
)
wget -nv --no-check-certificate -O 
./tmp/a75679c4-5f41-40f1-96f2-a304ddd082c1/daa712e362abe9d3dac74fad150d612c/opera-8.50-20050916.3-shared-qt.ppc-en.tar.bz2
 
http://snapshot.opera.com/unix/8.50-final/1275-20050728-P2BT/ppc-linux/en/opera-8.50-20050916.3-shared-qt.ppc-en.tar.bz2:
http://snapshot.opera.com/unix/8.50-final/1275-20050728-P2BT/ppc-linux/en/opera-8.50-20050916.3-shared-qt.ppc-en.tar.bz2:
19:58:28 ERROR 404: Not Found.


FATAL: 
http://snapshot.opera.com/unix/8.50-final/1275-20050728-P2BT/ppc-linux/en/opera-8.50-20050916.3-shared-qt.ppc-en.tar.bz2
 (daa712e362abe9d3dac74fad150d612c) was not fetched (wget -nv 
--no-check-certificate -O 
./tmp/a75679c4-5f41-40f1-96f2-a304ddd082c1/daa712e362abe9d3dac74fad150d612c/opera-8.50-20050916.3-shared-qt.ppc-en.tar.bz2
 
http://snapshot.opera.com/unix/8.50-final/1275-20050728-P2BT/ppc-linux/en/opera-8.50-20050916.3-shared-qt.ppc-en.tar.bz2:
 
http://snapshot.opera.com/unix/8.50-final/1275-20050728-P2BT/ppc-linux/en/opera-8.50-20050916.3-shared-qt.ppc-en.tar.bz2:
19:58:28 ERROR 404: Not Found.
)

Files fetched: 0

ALREADY GOT: 
ftp://ftp.opera.com/pub/opera/linux/850/final/en/i386/static/opera-8.50-20050916.1-static-qt.i386-en.tar.bz2
e66b6e4460610b7cebacb6d33e255ed7  
opera-8.50-20050916.1-static-qt.i386-en.tar.bz2
ALREADY GOT: 
ftp://ftp.opera.com/pub/opera/linux/850/final/en/sparc/static/opera-8.50-20050916.1-static-qt.sparc-en.tar.bz2
e747b84c36882ab0b4ea1bc4cc7837c4  
opera-8.50-20050916.1-static-qt.sparc-en.tar.bz2
ALREADY GOT: 
ftp://ftp.opera.com/pub/opera/linux/850/final/en/ppc/static/opera-8.50-20050916.1-static-qt.ppc-en.tar.bz2
a2678016990d5e27b3f54fa040282939  
opera-8.50-20050916.1-static-qt.ppc-en.tar.bz2
ALREADY GOT: 
ftp://ftp.opera.com/pub/opera/linux/850/final/en/i386/shared/opera-8.50-20050916.5-shared-qt.i386-en.tar.bz2
cc3641de1b6643547d7e36221990f5cf  
opera-8.50-20050916.5-shared-qt.i386-en.tar.bz2
ALREADY GOT: 
ftp://ftp.opera.com/pub/opera/linux/850/final/en/ppc/shared/opera-8.50-20050916.3-shared-qt.ppc-en.tar.bz2
505d64f145d21fb40f183267163b7620  
opera-8.50-20050916.3-shared-qt.ppc-en.tar.bz2


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


PLD-doc: PLD-update-TODO - updated

2005-09-20 Thread qboosh
Author: qboosh   Date: Tue Sep 20 18:23:29 2005 GMT
Module: PLD-doc   Tag: HEAD
 Log message:
- updated

 Files affected:
PLD-doc:
   PLD-update-TODO (1.251 - 1.252) 

 Diffs:


Index: PLD-doc/PLD-update-TODO
diff -u PLD-doc/PLD-update-TODO:1.251 PLD-doc/PLD-update-TODO:1.252
--- PLD-doc/PLD-update-TODO:1.251   Mon Sep  5 08:33:02 2005
+++ PLD-doc/PLD-update-TODO Tue Sep 20 20:23:20 2005
@@ -1,27 +1,36 @@
 3ddesktop(9) [OLD] 0.2.8 [NEW] 0.2.9
 AfterStep(12) [OLD] 2.00.02 [NEW] 2.1.2
-AutoIndex(11) [OLD] 2.1.1 [NEW] 2.1.2
 Azureus(9) [OLD] 2.1.0.4 [NEW] 2.3.0.4
-DenyHosts(9) [OLD] 0.9.8 [NEW] 1.0.2
-EasyBMP(10) [OLD] 0.65 [NEW] 0.66
+DenyHosts(9) [OLD] 0.9.8 [NEW] 1.0.3
+EasyBMP(10) [OLD] 0.65 [NEW] 0.67
 GNUnet(13) [OLD] 0.6.5 [NEW] 0.6.6
 GWorkspace(9) [OLD] 0.6.5 [NEW] 0.7.1
 Gauche(9) [OLD] 0.5.5 [NEW] 0.8.5
+GeoIP(9) [OLD] 1.3.13 [NEW] 1.3.14
 IRRToolSet(13) [OLD] 4.7.3 [NEW] 4.8.2
 ISMail(9) [OLD] 1.7.3 [NEW] 1.7.4
 Isearch(9) [OLD] 1.47b [NEW] 1.47i
-MayaVi(9) [OLD] 1.3 [NEW] 1.4
+LabPlot(9) [OLD] 1.5.0.1 [NEW] 1.5.0.3
+MayaVi(9) [OLD] 1.3 [NEW] 1.5
 Mesa(14) [OLD] 6.2.1 [NEW] 6.3.2
 Mesa(16) [OLD] 6.2.1 [NEW] 6.3.2
 Narval-pda(11) [OLD] 20011016 [NEW] 20020927
+PhotoClip(9) [OLD] 0.2.2 [NEW] 0.2.3
 R-cran-cluster(10) [OLD] 1.10.1 [NEW] 1.10.2
 STLport(10) [OLD] 4.6.2 [NEW] 5.0RC2
 Slune(9) [OLD] 1.0.8 [NEW] 1.0.9
 Sman(15) [OLD] 0.95 [NEW] 0.98
+SolarSockets(20) [OLD] 0.4.0 [NEW] 0.5.0BETA
 TeXmacs(9) [OLD] 1.0.5.5 [NEW] 1.0.5.7
+TkDVD(9) [OLD] 3.8 [NEW] 3.8.1
+Xlt(9) [OLD] 11.1.11 [NEW] 13.0.13
 Yap(9) [OLD] 4.5.5 [NEW] 5.0.0
 Zope(20) [OLD] 2.7.7 [NEW] 2.8.1
 Zope-CMF(14) [OLD] 1.4.7 [NEW] 1.5.4
+Zope-CMFPlone(12) [OLD] 2.0.5 [NEW] 2.1
+Zope-FileSystemSite(10) [OLD] 1.4.1 [NEW] 1.4.2
+Zope-Formulator(11) [OLD] 1.9.0 [NEW] 1.10
+Zope-I18NLayer(10) [OLD] 0.5.7 [NEW] 0.5.8
 Zope-LocalFS(11) [OLD] 1.6 [NEW] 1.7rc1
 Zope-Localizer(11) [OLD] 1.1.1 [NEW] 1.2a1
 Zope-Silva(11) [OLD] 1.2.2 [NEW] 1.3b3
@@ -29,39 +38,37 @@
 Zope-ZAttachmentAttribute(10) [OLD] 2.3 [NEW] 2.21
 ZopeInterface(9) [OLD] 3.0.1 [NEW] 3.1.0c1
 abcde(9) [OLD] 2.2.6 [NEW] 2.3.3
-abook(9) [OLD] 0.5.3 [NEW] 0.5.4
 aboot(10) [OLD] 0.9b [NEW] 1.0_pre20040408
 adm8211(18) [OLD] 20050323 [NEW] 20050620
 aegis(9) [OLD] 4.16 [NEW] 4.20
 alleyoop(9) [OLD] 0.8.2 [NEW] 0.9.0
-alltray(9) [OLD] 0.51 [NEW] 0.60
+alltray(9) [OLD] 0.51 [NEW] 0.61
 alsa-driver(28) [OLD] 1.0.9a [NEW] 1.0.9b [1.0.10rc1]
 alsa-lib(17) [OLD] 1.0.9 [NEW] 1.0.10rc1
 alsa-oss(9) [OLD] 1.0.9 [NEW] 1.0.10rc1
 alsa-tools(9) [OLD] 1.0.9 [NEW] 1.0.10rc1
 alsa-utils(13) [OLD] 1.0.9a [NEW] 1.0.10rc1
-am-utils(12) [OLD] 6.0.10 [NEW] 6.1.1
+am-utils(12) [OLD] 6.0.10 [NEW] 6.1.2.1
 amaya(9) [OLD] 8.6 [NEW] 9.2.1
 anjuta(12) [OLD] 1.2.4 [NEW] 2.0.1
 antinat(9) [OLD] 0.71 [NEW] 0.90
 antlr(17) [OLD] 2.7.5 [NEW] 3.0ea5
 anyterm(15) [OLD] 1.1.4 [NEW] 1.1.5
-aoetools(14) [OLD] 5 [NEW] 6
+aoetools(14) [OLD] 5 [NEW] 7
 apache-mod_bt(11) [OLD] 0.0.4 [NEW] 0.0.13
 apache-mod_caml(11) [OLD] 1.3.4 [NEW] 1.3.6
 apache-mod_epp(16) [OLD] 1.1 [NEW] 1.2
 apache-mod_perl(31) [OLD] 2.0.0 [NEW] 2.0.1
+apache-mod_python(26) [OLD] 3.1.4 [NEW] 3.2.2b
 apache-mod_scgi(23) [OLD] 1.2 [NEW] 1.7
-apache-mod_security(11) [OLD] 1.8.7 [NEW] 1.9dev3
+apache-mod_security(11) [OLD] 1.8.7 [NEW] 1.9dev4
 apache-mod_transform(11) [OLD] 0.4.0 [NEW] 0.6.0
-apache-mod_vhs(11) [OLD] 1.0.16 [NEW] 1.0.18
+apache-mod_vhs(11) [OLD] 1.0.16 [NEW] 1.0.22
 apache1-mod_chroot(11) [OLD] 0.4 [NEW] 0.5
 apache1-mod_mp3(13) [OLD] 0.40 [NEW] 1.2
-apache1-mod_security(11) [OLD] 1.8.7 [NEW] 1.9dev3
-apcupsd(14) [OLD] 3.10.17 [NEW] 3.10.18
+apache1-mod_security(11) [OLD] 1.8.7 [NEW] 1.9dev4
 aptitude(14) [OLD] 0.2.11.1 [NEW] 0.3.3
 aqsis(9) [OLD] 1.0.0 [NEW] 1.1.0.30062005
-aspell-pl-alt(9) [OLD] 20050828 [NEW] 20050901
 asterisk-addons(10) [OLD] 1.0.7 [NEW] 1.0.9
 atlas(14) [OLD] 3.7.10 [NEW] 3.7.11
 atmelwlandriver(22) [OLD] 3.4.1.0 [NEW] 3.4.1.1
@@ -69,7 +76,7 @@
 autodns(12) [OLD] 0.0.6 [NEW] 0.0.8
 autofs(15) [OLD] 4.1.3 [NEW] 4.1.4
 ayam(10) [OLD] 1.8.2 [NEW] 1.8.3
-bacula(15) [OLD] 1.36.3 [NEW] 1.37.37
+bacula(15) [OLD] 1.36.3 [NEW] 1.37.38
 bacula(19) [OLD] 1.36.3 [NEW] 1.37.18
 batik(9) [OLD] 1.5.1 [NEW] 1.6
 bbkeys(9) [OLD] 0.8.6 [NEW] 0.9.0
@@ -79,40 +86,46 @@
 bitbake(9) [OLD] 1.2 [NEW] 1.2.1
 bless(9) [OLD] 0.3.1 [NEW] 0.3.6
 bluefish(17) [OLD] 1.0.2 [NEW] 1.0.4
+bluez-pin(9) [OLD] 0.25 [NEW] 0.26
+bogofilter(10) [OLD] 0.96.0 [NEW] 0.96.1
 bootsplash(13) [OLD] 3.1 [NEW] 3.2
 boson(9) [OLD] 0.10 [NEW] 0.11
-brltty(10) [OLD] 3.6.1 [NEW] 3.6.2
+brltty(10) [OLD] 3.6.1 [NEW] 3.7
 bsd-games(14) [OLD] 2.16 [NEW] 2.17
 bsdmake(9) [OLD] 11 [NEW] 16
 bttv(20) [OLD] 0.7.87 [NEW] 0.9.15
 bugzilla(16) [OLD] 2.18 [NEW] 2.20
-bygfoot(9) [OLD] 1.8.1 [NEW] 1.9.0
-cacti(14) [OLD] 0.8.6c [NEW] 0.8.6f
+bygfoot(9) [OLD] 1.8.1 [NEW] 1.9.1
+cacti(14) [OLD] 0.8.6c [NEW] 0.8.6g
 castle-combat(9) [OLD] 0.7.4 [NEW] 0.8.0a2
 cbb(10

SPECS: convmv.spec - pl

2005-09-20 Thread qboosh
Author: qboosh   Date: Tue Sep 20 20:07:49 2005 GMT
Module: SPECS Tag: HEAD
 Log message:
- pl

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

 Diffs:


Index: SPECS/convmv.spec
diff -u SPECS/convmv.spec:1.2 SPECS/convmv.spec:1.3
--- SPECS/convmv.spec:1.2   Mon Sep 19 04:51:09 2005
+++ SPECS/convmv.spec   Tue Sep 20 22:07:44 2005
@@ -1,5 +1,6 @@
 # $Revision$, $Date$
 Summary:   Convmv - convert filenames from one encoding to another
+Summary(pl):   Convmv - konwersja nazw plików z jednego kodowania do innego
 Name:  convmv
 Version:   1.08
 Release:   1
@@ -24,6 +25,19 @@
 encoded and will skip them by default. To turn this smartness off use
 the --nosmart switch.
 
+%description -l pl
+Convmv ma za zadanie pomóc przy konwersji pojedynczych nazw plików,
+drzew katalogów wraz z zawartymi w nich plikami lub całego systemu
+plików na inne kodowanie. Konwertuje tylko nazwy plików, a nie ich
+zawartość. Szczególną cechą convmv jest to, że dba także o dowiązania
+symboliczne i konwertuje wskazania docelowe w przypadku, gdy cel
+dowiązania jest zmieniany. Jest to pomocne przy przechodzeniu ze
+starych 8-bitowych lokalizacji do nowych w UTF-8. Można także
+przekonwertować do UTF-8 katalogi, które były już częściowo kodowane w
+UTF-8. Convmv jest w stanie wykryć, czy dane pliki są zakodowane w
+UTF-8 i domyślnie je pominąć. Aby wyłączyć to zachowanie można użyć
+przełącznika --nosmart.
+
 %prep
 %setup -q
 
@@ -52,6 +66,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.3  2005/09/20 20:07:44  qboosh
+- pl
+
 Revision 1.2  2005/09/19 02:51:09  pluto
 - adapterized.
 


 CVS-web:
http://cvs.pld-linux.org/SPECS/convmv.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: cracklib.patch (REMOVED), cracklib-libdir.patch (REMOVED)...

2005-09-20 Thread qboosh
Author: qboosh   Date: Tue Sep 20 20:40:35 2005 GMT
Module: SOURCES   Tag: HEAD
 Log message:
- obsolete

 Files affected:
SOURCES:
   cracklib.patch (1.2 - NONE)  (REMOVED), cracklib-libdir.patch (1.1 - NONE) 
 (REMOVED), cracklib-nss.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


SPECS: cracklib.spec - cleanup, updated pl desc, package .la and s...

2005-09-20 Thread qboosh
Author: qboosh   Date: Tue Sep 20 20:54:00 2005 GMT
Module: SPECS Tag: HEAD
 Log message:
- cleanup, updated pl desc, package .la and static library

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

 Diffs:


Index: SPECS/cracklib.spec
diff -u SPECS/cracklib.spec:1.50 SPECS/cracklib.spec:1.51
--- SPECS/cracklib.spec:1.50Sun Sep 18 00:17:11 2005
+++ SPECS/cracklib.spec Tue Sep 20 22:53:52 2005
@@ -1,7 +1,6 @@
 # $Revision$, $Date$
 #
 # Conditional build:
-%bcond_withssp # disable stack-smashing protector (vide dietlibc.spec)
 %bcond_withwords   # bigger words database
 #
 Summary:   Password checking library
@@ -23,9 +22,6 @@
 # Source1-md5: d18e670e5df560a8745e1b4dede8f84f
 URL:   http://sourceforge.net/projects/cracklib/
 Patch0:%{name}-pld.patch
-#Patch1:   %{name}.patch
-#Patch2:   %{name}-nss.patch
-#Patch3:   %{name}-libdir.patch
 BuildRequires: words
 BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
 
@@ -58,8 +54,18 @@
 longueur, unicité, s'ils sont dans une base de mots, etc.
 
 %description -l pl
-Sprawdza hasła pod kątem bezpieczeństwa - długość, unikalność, czy
-występują w słowniu itp.
+CrackLib sprawdza hasła pod kątem bezpieczeństwa. Można użyć tej
+biblioteki do powstrzymywania użytkowników przed wybieraniem haseł
+łatwych do odgadnięcia. CrackLib przeprowadza następujące testy:
+
+- próbuje wygenerować słowa z nazwy użytkownika i wpisu gecos, a
+  następnie porównuje je z hasłem
+- szuka prostych wzorców w haśle
+- szuka hasła w słowniku
+
+CrackLib to biblioteka zawierająca funkcję C służącą do sprawdzania
+hasła oraz inne funkcje C. Nie jest to zamiennik programu passwd -
+musi być użyty w połączeniu z istniejącym programem passwd.
 
 %description -l pt_BR
 Inclui os dicionários cracklib para o padrăo /usr/dict/words, assim
@@ -121,6 +127,18 @@
 Este pacote contém os arquivos de inclusăo e bibliotecas que săo
 necessários para desenvolver programas que usam a cracklib.
 
+%package static
+Summary:   Static cracklib library
+Summary(pl):   Statyczna biblioteka cracklib
+Group: Development/Libraries
+Requires:  %{name}-devel = %{version}-%{release}
+
+%description static
+Static cracklib library.
+
+%description static -l pl
+Statyczna biblioteka cracklib.
+
 %package dicts
 Summary:   Standard dictionaries (/usr/share/dict/words)
 Summary(de):   Standard-Wörterbücher (/usr/share/dict/words)
@@ -180,18 +198,13 @@
 %prep
 %setup -q
 %patch0 -p0
-#%patch1 -p1
-#%patch2 -p1
-#%patch3 -p1
 %if %{with words} 
 install %{SOURCE1} dicts/
 %endif
 
 %build
 %configure
-%{__make} \
-   CC=%{__cc} \
-   OPTFLAGS=%{rpmcflags} %{?with_ssp:-fno-stack-protector}
+%{__make}
 
 %install
 rm -rf $RPM_BUILD_ROOT
@@ -199,7 +212,8 @@
 
 %{__make} install \
DESTDIR=$RPM_BUILD_ROOT
-util/cracklib-format dicts/cracklib* | util/cracklib-packer 
$RPM_BUILD_ROOT/%{_datadir}/dict/cracklib_dict
+
+util/cracklib-format dicts/cracklib* | util/cracklib-packer 
$RPM_BUILD_ROOT%{_datadir}/dict/cracklib_dict
 
 %clean
 rm -rf $RPM_BUILD_ROOT
@@ -210,12 +224,17 @@
 %files
 %defattr(644,root,root,755)
 %doc ChangeLog NEWS README
-%attr(755,root,root) %{_libdir}/lib*.so.*.*
+%attr(755,root,root) %{_libdir}/libcrack.so.*.*
 
 %files devel
 %defattr(644,root,root,755)
-%attr(755,root,root) %{_libdir}/lib*.so
-%{_includedir}/*
+%attr(755,root,root) %{_libdir}/libcrack.so
+%{_libdir}/libcrack.la
+%{_includedir}/*.h
+
+%files static
+%defattr(644,root,root,755)
+%{_libdir}/libcrack.a
 
 %files dicts
 %defattr(644,root,root,755)
@@ -228,6 +247,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.51  2005/09/20 20:53:52  qboosh
+- cleanup, updated pl desc, package .la and static library
+
 Revision 1.50  2005/09/17 22:17:11  zawadaa
 - up to 2.8.3
 - please review my changes


 CVS-web:
http://cvs.pld-linux.org/SPECS/cracklib.spec?r1=1.50r2=1.51f=u

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


SPECS: cvs2cl.spec - pl

2005-09-20 Thread qboosh
Author: qboosh   Date: Tue Sep 20 22:02:25 2005 GMT
Module: SPECS Tag: HEAD
 Log message:
- pl

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

 Diffs:


Index: SPECS/cvs2cl.spec
diff -u SPECS/cvs2cl.spec:1.1 SPECS/cvs2cl.spec:1.2
--- SPECS/cvs2cl.spec:1.1   Tue Sep 13 13:16:21 2005
+++ SPECS/cvs2cl.spec   Wed Sep 21 00:02:20 2005
@@ -1,6 +1,7 @@
 # $Revision$, $Date$
 %include   /usr/lib/rpm/macros.perl
 Summary:   CVS-log-message-to-ChangeLog conversion script
+Summary(pl):   Skrypt do konwersji commit logów z CVS-u na ChangeLog
 Name:  cvs2cl
 Version:   2.59
 Release:   0.1
@@ -22,6 +23,13 @@
 Right Way. If you don't know what any of that means, then you're doing
 fine, just keep on truckin'.
 
+%description -l pl
+cvs2cl to skrypt perlowy, który robi to, czego można się po nim
+spodziewać: tworzy plik ChangeLog w stylu GNU dla źródeł
+przechowywanych w CVS-ie; robi to poprzez wywołanie cvs log i
+przetwarzanie wyjścia. Powtórzone commit logi są ujednolicane we
+Właściwy Sposób.
+
 %prep
 %setup -q -c -T
 cp %{SOURCE0} .
@@ -49,6 +57,8 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.2  2005/09/20 22:02:20  qboosh
+- pl
+
 Revision 1.1  2005/09/13 11:16:21  glen
 - new
-


 CVS-web:
http://cvs.pld-linux.org/SPECS/cvs2cl.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: dotnet-tao.spec - updated Name after spec rename (tao-dotn...

2005-09-20 Thread qboosh
Author: qboosh   Date: Tue Sep 20 22:09:55 2005 GMT
Module: SPECS Tag: HEAD
 Log message:
- updated Name after spec rename (tao-dotnet-tao), use standard examplesdir

 Files affected:
SPECS:
   dotnet-tao.spec (1.4 - 1.5) 

 Diffs:


Index: SPECS/dotnet-tao.spec
diff -u SPECS/dotnet-tao.spec:1.4 SPECS/dotnet-tao.spec:1.5
--- SPECS/dotnet-tao.spec:1.4   Fri Aug 12 01:41:52 2005
+++ SPECS/dotnet-tao.spec   Wed Sep 21 00:09:50 2005
@@ -2,12 +2,12 @@
 %include   /usr/lib/rpm/macros.mono
 Summary:   Tao Framework
 Summary(pl):   Framework Tao
-Name:  tao
+Name:  dotnet-tao
 Version:   20050606
 Release:   1
 License:   MIT
 Group: Libraries
-Source0:   %{name}-%{version}.tar.bz2
+Source0:   tao-%{version}.tar.bz2
 # Source0-md5: 170e143b8035644eb3c24db4cc7a2c3b
 URL:   http://www.mono-project.com/Tao
 BuildRequires: mono = 1.1.0
@@ -41,7 +41,7 @@
 
 Wszystkie te wiązania zdatne są do użytku na wielu platformach
 sprzętowych i w wielu środowiskach uruchomieniowych. Obsługiwane jest
-microsoftowe .NET 1.0 i 1.1 pod Windowsami oraz Mono pod Windowsami i
+microsoftowe .NET 1.0 i 1.1 pod Windows oraz Mono pod Windows i
 Linuksem. Inne platformy i środowiska nie zostały przetestowane, lecz
 prawdopodobnie również będą działać z minimalną ilością zmian.
 
@@ -62,7 +62,7 @@
 Przykładowe programy Tao.
 
 %prep
-%setup -q
+%setup -q -n tao-%{version}
 
 %build
 %{__make} mono-1.1
@@ -71,14 +71,14 @@
 
 %install
 rm -rf $RPM_BUILD_ROOT
-install -d $RPM_BUILD_ROOT{%{_bindir},%{_examplesdir}/tao}
+install -d $RPM_BUILD_ROOT{%{_bindir},%{_examplesdir}/%{name}-%{version}}
 
 for i in dist/bin/*.dll
 do
gacutil -root $RPM_BUILD_ROOT%{_libdir} -package tao -i $i
 done
 
-cp -Rf examples/* $RPM_BUILD_ROOT%{_examplesdir}/tao
+cp -Rf examples/* $RPM_BUILD_ROOT%{_examplesdir}/%{name}-%{version}
 
 %clean
 rm -rf $RPM_BUILD_ROOT
@@ -92,7 +92,7 @@
 
 %files examples
 %defattr(644,root,root,755)
-%{_examplesdir}/tao
+%{_examplesdir}/%{name}-%{version}
 
 %define date   %(echo `LC_ALL=C date +%a %b %d %Y`)
 %changelog
@@ -100,6 +100,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.5  2005/09/20 22:09:50  qboosh
+- updated Name after spec rename (tao-dotnet-tao), use standard examplesdir
+
 Revision 1.4  2005/08/11 23:41:52  wolf
 - s/rpm-build = 4.4.2-0.3/rpmbuild(monoautodeps)/
 


 CVS-web:
http://cvs.pld-linux.org/SPECS/dotnet-tao.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: egroupware.spec - formatting

2005-09-20 Thread qboosh
Author: qboosh   Date: Tue Sep 20 22:20:45 2005 GMT
Module: SPECS Tag: HEAD
 Log message:
- formatting

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

 Diffs:


Index: SPECS/egroupware.spec
diff -u SPECS/egroupware.spec:1.13 SPECS/egroupware.spec:1.14
--- SPECS/egroupware.spec:1.13  Sun Sep 11 15:32:57 2005
+++ SPECS/egroupware.spec   Wed Sep 21 00:20:40 2005
@@ -56,8 +56,8 @@
 insecure to keep the setup files in place.
 
 %description setup -l pl
-Ten pakiet należy zainstalować w celu wstępnej konfiguracji eGroupware po
-pierwszej instalacji. Potem należy go odinstalować, jako że
+Ten pakiet należy zainstalować w celu wstępnej konfiguracji eGroupware
+po pierwszej instalacji. Potem należy go odinstalować, jako że
 pozostawienie plików instalacyjnych mogłoby być niebezpieczne.
 
 %package db-mysql
@@ -235,6 +235,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.14  2005/09/20 22:20:40  qboosh
+- formatting
+
 Revision 1.13  2005/09/11 13:32:57  glen
 - use system Vera fonts
 


 CVS-web:
http://cvs.pld-linux.org/SPECS/egroupware.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: fakechroot.spec - pl

2005-09-20 Thread qboosh
Author: qboosh   Date: Tue Sep 20 22:26:55 2005 GMT
Module: SPECS Tag: HEAD
 Log message:
- pl

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

 Diffs:


Index: SPECS/fakechroot.spec
diff -u SPECS/fakechroot.spec:1.2 SPECS/fakechroot.spec:1.3
--- SPECS/fakechroot.spec:1.2   Fri Sep  9 01:29:08 2005
+++ SPECS/fakechroot.spec   Wed Sep 21 00:26:50 2005
@@ -1,5 +1,6 @@
 # $Revision$, $Date$
 Summary:   Provides a fake chroot environment to programs
+Summary(pl):   Fałszywe środowisko chroot dla programów
 Name:  fakechroot
 Version:   2.3
 Release:   1
@@ -21,6 +22,15 @@
 use the apt-get command to install other packages without root
 privileges.
 
+%description -l pl
+fakechroot udostępnia fałszywe środowisko chroot dla programów.
+Fałszywy chroot umożliwia uruchamianie programów wymagających
+uprawnień roota ze zwykłego konta użytkownika. Można na przykład
+tworzyć bootstrap Debiana lub środowisko programistyczne i budować
+pakiety wewnątrz chrootowanego systemu przy użyciu zwykłego konta.
+Można następnie użyć polecenia apt-get do zainstalowania innych
+pakietów bez uprawnień roota.
+
 %prep
 %setup -q
 
@@ -56,6 +66,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.3  2005/09/20 22:26:50  qboosh
+- pl
+
 Revision 1.2  2005/09/08 23:29:08  glen
 - added doc and scripts to %doc
 


 CVS-web:
http://cvs.pld-linux.org/SPECS/fakechroot.spec?r1=1.2r2=1.3f=u

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


SPECS: php-pecl-odbtp.spec - Obsoletes: php-odbtp

2005-09-20 Thread qboosh
Author: qboosh   Date: Tue Sep 20 22:32:38 2005 GMT
Module: SPECS Tag: HEAD
 Log message:
- Obsoletes: php-odbtp

 Files affected:
SPECS:
   php-pecl-odbtp.spec (1.10 - 1.11) 

 Diffs:


Index: SPECS/php-pecl-odbtp.spec
diff -u SPECS/php-pecl-odbtp.spec:1.10 SPECS/php-pecl-odbtp.spec:1.11
--- SPECS/php-pecl-odbtp.spec:1.10  Wed Sep 14 15:37:00 2005
+++ SPECS/php-pecl-odbtp.spec   Wed Sep 21 00:32:32 2005
@@ -21,6 +21,7 @@
 BuildRequires: rpmbuild(macros) = 1.238
 %{?requires_php_extension}
 Requires:  %{_sysconfdir}/conf.d
+Obsoletes: php-odbtp
 Obsoletes: php-pear-%{_modname}
 BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
 
@@ -91,6 +92,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.11  2005/09/20 22:32:32  qboosh
+- Obsoletes: php-odbtp
+
 Revision 1.10  2005/09/14 13:37:00  glen
 - conf.d and php api macros
 


 CVS-web:
http://cvs.pld-linux.org/SPECS/php-pecl-odbtp.spec?r1=1.10r2=1.11f=u

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


SOURCES: elinks-pl.po-update.patch - updated for 0.10.6

2005-09-20 Thread qboosh
Author: qboosh   Date: Tue Sep 20 22:45:05 2005 GMT
Module: SOURCES   Tag: HEAD
 Log message:
- updated for 0.10.6

 Files affected:
SOURCES:
   elinks-pl.po-update.patch (1.1 - 1.2) 

 Diffs:


Index: SOURCES/elinks-pl.po-update.patch
diff -u SOURCES/elinks-pl.po-update.patch:1.1 
SOURCES/elinks-pl.po-update.patch:1.2
--- SOURCES/elinks-pl.po-update.patch:1.1   Thu Apr 14 18:50:00 2005
+++ SOURCES/elinks-pl.po-update.patch   Wed Sep 21 00:45:00 2005
@@ -1,659 +1,78 @@
 elinks-0.10.4/po/pl.po.orig2005-04-06 17:48:55.0 +0200
-+++ elinks-0.10.4/po/pl.po 2005-04-14 18:47:55.247775456 +0200
-@@ -9,9 +9,9 @@
+--- elinks-0.10.6/po/pl.po.orig2005-09-15 01:03:10.0 +0200
 elinks-0.10.6/po/pl.po 2005-09-21 00:44:20.814916056 +0200
+@@ -1,7 +1,7 @@
+ # Polish ELinks translation.
+ # Arkadiusz Sochala [EMAIL PROTECTED]
+ # Grzegorz Golawski [EMAIL PROTECTED]
+-# Jakub Bogusz [EMAIL PROTECTED], 2002-2004
++# Jakub Bogusz [EMAIL PROTECTED], 2002-2005
+ # Wojtek Bojdo/l [EMAIL PROTECTED]
+ # Witold Filipczyk [EMAIL PROTECTED], 2001 - 2004
+ # Adam Gołębiowski [EMAIL PROTECTED], 2003-2005
+@@ -9,10 +9,10 @@
  #
  msgid 
  msgstr 
--Project-Id-Version: ELinks 0.11.CVS\n
-+Project-Id-Version: ELinks 0.10.4\n
- POT-Creation-Date: 2005-04-06 17:48+0200\n
--PO-Revision-Date: 2005-03-24 16:20+0100\n
-+PO-Revision-Date: 2005-04-14 14:44+0200\n
- Last-Translator: Witold Filipczyk [EMAIL PROTECTED]\n
+-Project-Id-Version: ELinks 0.10.CVS\n
++Project-Id-Version: ELinks 0.10.6\n
+ POT-Creation-Date: 2005-09-15 01:03+0200\n
+-PO-Revision-Date: 2005-05-03 23:02+0200\n
+-Last-Translator: Adam Golebiowski [EMAIL PROTECTED]\n
++PO-Revision-Date: 2005-09-21 00:40+0200\n
++Last-Translator: Jakub Bogusz [EMAIL PROTECTED]\n
  Language-Team: Polish [EMAIL PROTECTED]\n
  MIME-Version: 1.0\n
-@@ -6792,9 +6792,9 @@
- msgstr Pokaż ~nagłówek
+ Content-Type: text/plain; charset=ISO-8859-2\n
+@@ -671,9 +671,8 @@
+ msgstr Ustawienia
  
- #: src/sched/download.c:1018
--#, fuzzy, c-format
-+#, c-format
- msgid Would you like to display the file '%s' (type: %s)?
--msgstr Co chcesz zrobić z plikiem '%s' (typu %s%s%s)?
-+msgstr Czy chcesz wyświetlić plik '%s' (typu %s)?
+ #: src/config/cmdline.c:559
+-#, fuzzy
+ msgid Usage: elinks [OPTION]... [URL]...
+-msgstr Użycie: elinks [OPCJA]... [URL]
++msgstr Składnia: elinks [OPCJA]... [URL]...
+ 
+ #: src/config/cmdline.c:560
+ msgid Options
+@@ -2258,9 +2257,8 @@
+ klawiszy dotyczą pola tekstowego.
  
- #: src/sched/download.c:1034 src/sched/download.c:1048
- msgid What to do?
-@@ -7532,632 +7532,3 @@
- #: src/viewer/text/view.c:1280
- msgid Error writing to file
- msgstr Błąd zapisu do pliku
--
--#~ msgid %d handle
--#~ msgid_plural %d handles
--#~ msgstr[0] %d uchwyt
--#~ msgstr[1] %d uchwytów
--
--#~ msgid %d timer
--#~ msgid_plural %d timers
--#~ msgstr[0] %d zegar
--#~ msgstr[1] %d zegarów
--
--#~ msgid %d connection
--#~ msgid_plural %d connections
--#~ msgstr[0] %d połączenie
--#~ msgstr[1] %d połączeń
--
--#~ msgid %d connecting
--#~ msgid_plural %d connecting
--#~ msgstr[0] %d łączące się
--#~ msgstr[1] %d łączących się
--
--#~ msgid %d transferring
--#~ msgid_plural %d transferring
--#~ msgstr[0] %d przesyłające
--#~ msgstr[1] %d przysyłających
--
--#~ msgid %d keepalive
--#~ msgid_plural %d keepalive
--#~ msgstr[0] %d trwałe
--#~ msgstr[1] %d trwałych
--
--#~ msgid %d byte
--#~ msgid_plural %d bytes
--#~ msgstr[0] %d bajt
--#~ msgstr[1] %d bajtów
--
--#~ msgid %d file
--#~ msgid_plural %d files
--#~ msgstr[0] %d plik
--#~ msgstr[1] %d plików
--
--#~ msgid %d locked
--#~ msgid_plural %d locked
--#~ msgstr[0] %d zablokowany
--#~ msgstr[1] %d zablokowanych
--
--#
--#~ msgid %d loading
--#~ msgid_plural %d loading
--#~ msgstr[0] %d pobierany
--#~ msgstr[1] %d pobieranych
--
--#
--#~ msgid %d formatted
--#~ msgid_plural %d formatted
--#~ msgstr[0] %d sformatowany
--#~ msgstr[1] %d sformatowanych
--
--#~ msgid %d refreshing
--#~ msgid_plural %d refreshing
--#~ msgstr[0] %d odświeżający
--#~ msgstr[1] %d odświeżających
--
--#~ msgid %d terminal
--#~ msgid_plural %d terminals
--#~ msgstr[0] %d terminal
--#~ msgstr[1] %d terminali
--
--#~ msgid %d session
--#~ msgid_plural %d sessions
--#~ msgstr[0] %d sesja
--#~ msgstr[1] %d sesji
--
--#~ msgid %d byte overhead
--#~ msgid_plural %d bytes overhead
--#~ msgstr[0] %d bajtów na kupie
--#~ msgstr[1] %d bajtów na kupie
--
--#~ msgid Program ('%' will be replaced by the filename)
--#~ msgstr Program ('%' zostanie zastąpione nazwą pliku)
--
--#~ msgid The file will be opened with the program '%s'.
--#~ msgstr Plik zostanie otwarty przy użyciu programu '%s'.
--
--#~ msgid Delete
--#~ msgstr Usuń
--
--#~ msgid Add
--#~ msgstr Dodaj
--
--#~ msgid 
--#~ Keystroke should be written in the format: [Prefix-]Key\n
--#~ Prefix: Shift, Ctrl, Alt\n
--#~ Key: a,b,c,...,1,2,3,...,Space,Up,PageDown,Tab,Enter

SPECS: horde-giapeto.spec - pl

2005-09-21 Thread qboosh
Author: qboosh   Date: Wed Sep 21 19:15:34 2005 GMT
Module: SPECS Tag: HEAD
 Log message:
- pl

 Files affected:
SPECS:
   horde-giapeto.spec (1.2 - 1.3) 

 Diffs:


Index: SPECS/horde-giapeto.spec
diff -u SPECS/horde-giapeto.spec:1.2 SPECS/horde-giapeto.spec:1.3
--- SPECS/horde-giapeto.spec:1.2Sat Sep 17 17:35:07 2005
+++ SPECS/horde-giapeto.specWed Sep 21 21:15:28 2005
@@ -6,6 +6,7 @@
 
 %include   /usr/lib/rpm/macros.php
 Summary:   Web-site Content Management System
+Summary(pl):   System zarządzania treścią na WWW
 Name:  horde-%{_hordeapp}
 Version:   0.1
 Release:   %{?_rc:0.%{_rc}.}%{?_snap:0.%(echo %{_snap} | tr -d -).}%{_rel}
@@ -43,6 +44,17 @@
 under the GNU Public License. For more information (including help
 with Giapeto) please visit http://www.horde.org/.
 
+%description -l pl
+Giapeto to system zarządzania treścią na WWW (WCMS - Web-site Content
+Management System) dla Horde. Jego celem jest dostarczenie możliwości
+tworzenia serwisów WWW dużej liczbie użytkowników, zarządzających
+własnymi strefami uprawnień w sposób wystarczająco łatwy dla osoby bez
+wykształcenia komputerowego.
+
+Projekt Horde tworzy aplikacje WWW w PHP i wydaje je na licencji GNU
+General Public License. Więcej informacji (włącznie z pomocą dla
+Giapeto) można znaleźć na stronie http://www.horde.org/.
+
 %prep
 %setup -q -c -T -n 
%{?_snap:%{_hordeapp}-%{_snap}}%{!?_snap:%{_hordeapp}-%{version}%{?_rc:-%{_rc}}}
 tar zxf %{SOURCE0} --strip-components=1
@@ -132,6 +144,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.3  2005/09/21 19:15:28  qboosh
+- pl
+
 Revision 1.2  2005/09/17 15:35:07  glen
 - rename package with horde- prefix
 


 CVS-web:
http://cvs.pld-linux.org/SPECS/horde-giapeto.spec?r1=1.2r2=1.3f=u

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


SPECS: horde.spec - pl desc fix

2005-09-21 Thread qboosh
Author: qboosh   Date: Wed Sep 21 19:20:57 2005 GMT
Module: SPECS Tag: HEAD
 Log message:
- pl desc fix

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

 Diffs:


Index: SPECS/horde.spec
diff -u SPECS/horde.spec:1.106 SPECS/horde.spec:1.107
--- SPECS/horde.spec:1.106  Sat Sep 17 18:09:39 2005
+++ SPECS/horde.specWed Sep 21 21:20:51 2005
@@ -83,9 +83,10 @@
 Horde, takich jak IMP (obsługa poczty poprzez WWW). Ten pakiet jest
 wymagany dla wszystkich innych modułów Horde.
 
-Projekt Horde tworzy aplikacje w PHP i dostarcza je na licencji GNU
-Public License. Jeżeli chcesz się dowiedzieć czegoś więcej (także help
-do IMP-a) zajrzyj na stronę http://www.horde.org/.
+Projekt Horde tworzy aplikacje WWW w PHP i wydaje je na licencji GNU
+General Public License. Więcej informacji (włącznie z pomocą dla
+Horde i jego modułów) można znaleźć na stronie
+http://www.horde.org/.
 
 %description -l pt_BR
 Este pacote provę uma interface e estrutura comuns para os módulos
@@ -331,6 +332,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.107  2005/09/21 19:20:51  qboosh
+- pl desc fix
+
 Revision 1.106  2005/09/17 16:09:39  glen
 - unified
 


 CVS-web:
http://cvs.pld-linux.org/SPECS/horde.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: horde-jonah.spec - pl

2005-09-21 Thread qboosh
Author: qboosh   Date: Wed Sep 21 19:47:11 2005 GMT
Module: SPECS Tag: HEAD
 Log message:
- pl

 Files affected:
SPECS:
   horde-jonah.spec (1.1 - 1.2) 

 Diffs:


Index: SPECS/horde-jonah.spec
diff -u SPECS/horde-jonah.spec:1.1 SPECS/horde-jonah.spec:1.2
--- SPECS/horde-jonah.spec:1.1  Sat Sep 17 17:52:36 2005
+++ SPECS/horde-jonah.spec  Wed Sep 21 21:47:06 2005
@@ -6,6 +6,7 @@
 #
 %include   /usr/lib/rpm/macros.php
 Summary:   Jonah is the Horde portal project
+Summary(pl):   Jonah - projekt portalu opartego na Horde
 Name:  horde-%{_hordeapp}
 Version:   0.2
 Release:   %{?_rc:0.%{_rc}.}%{?_snap:0.%(echo %{_snap} | tr -d -).}%{_rel}
@@ -40,6 +41,13 @@
 portal with user preferences, stocks, news, weather, and any other
 content source that users want.
 
+%description -l pl
+Jonah to projekt portalu opartego na Horde. Aktualnie udostępnia
+szkielet do zbierania nagłówków z dowolnych serwisów udostępniających
+streszczenia treści w postaci RSS. Dalsze plany obejmują pełny portal
+w stylu my.netscape z ustawieniami użytkownika, zasobami, nowinkami,
+pogodą i innymi rodzajami treści.
+
 %prep
 %setup -q -c -T -n 
%{?_snap:%{_hordeapp}-%{_snap}}%{!?_snap:%{_hordeapp}-%{version}%{?_rc:-%{_rc}}}
 tar zxf %{SOURCE0} --strip-components=1
@@ -135,6 +143,8 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.2  2005/09/21 19:47:06  qboosh
+- pl
+
 Revision 1.1  2005/09/17 15:52:36  glen
 - new
-


 CVS-web:
http://cvs.pld-linux.org/SPECS/horde-jonah.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


fortunes-pl: dzieci - typos

2005-09-21 Thread qboosh
Author: qboosh   Date: Wed Sep 21 19:53:36 2005 GMT
Module: fortunes-pl   Tag: HEAD
 Log message:
- typos

 Files affected:
fortunes-pl:
   dzieci (1.4 - 1.5) 

 Diffs:


Index: fortunes-pl/dzieci
diff -u fortunes-pl/dzieci:1.4 fortunes-pl/dzieci:1.5
--- fortunes-pl/dzieci:1.4  Tue Sep 20 11:29:10 2005
+++ fortunes-pl/dzieci  Wed Sep 21 21:53:31 2005
@@ -1,162 +1,162 @@
 Miłość w oczach dzieci:
 
-Kiedy jest najlepszy czas, aby się ozenic?
-Kiedy tylko  skończę przedszkole, zamierzam znalesc sobie zonę.
-(Tom 5lat)
+Kiedy jest najlepszy czas, aby się ożenić?
+Kiedy tylko skończę przedszkole, zamierzam znaleźć sobie żonę.
+(Tom, 5 lat)
 %
 Miłość w oczach dzieci:
 
-Co ludzie robia na randkach?
-Na pierwszej randce ludzie  zazwyczaj mówia sobie klamstwa, i sa
-one tak ciekawe, ze umawiaja się na  druga randkę. (Mike, 9)
+Co ludzie robią na randkach?
+Na pierwszej randce ludzie zazwyczaj mówią sobie kłamstwa, i są
+one tak ciekawe, że umawiają się na druga randkę. (Mike, 9)
 %
 Miłość w oczach dzieci:
 
-Kiedy mozna kogos pocalowac?
-Nigdy nie powinienies calowac dziewczyny zanim nie  masz
-wystarczajaco pieniędzy, zeby kupic jej duzy pierscionek i video,
-poniewaz ona na pewno będzie chciala miec kasetę z waszego  wesela.
+Kiedy można kogoś pocałować?
+Nigdy nie powinieneś całować dziewczyny zanim nie masz
+wystarczająco pieniędzy, żeby kupić jej duży pierścionek i video,
+ponieważ ona na pewno będzie chciała mieć kasetę z waszego wesela.
 (Jim, 10)
 %
 Miłość w oczach dzieci:
 
-Dlaczego milosc przytafia się  wlasnie tym dwóm okreslonym osobom?
-Nikt nie wie tego na pewno, ale  slyszalem, ze to ma cos wspólnego
-z tym, jak pachniesz. To dlatego  perfumy i dezodoranty sa popularne.
+Dlaczego miłość przytrafia się właśnie tym dwóm określonym osobom?
+Nikt nie wie tego na pewno, ale słyszałem, że to ma cos wspólnego
+z tym, jak pachniesz. To dlatego perfumy i dezodoranty są popularne.
 (Jan, 9)
 %
 Miłość w oczach dzieci:
 
-Do  czego podobna jest milosc?
-To jest jak lawina, kiedy musisz  uciekac, by ratowac swe zycie.
+Do  czego podobna jest miłość?
+To jest jak lawina, kiedy musisz uciekać, by ratować swe życie.
 (Roger, 9)
 %
 Miłość w oczach dzieci:
 
-Jaka rolę w milosci odgrywa wyglad?
-Jesli chcesz byc kochany  przez kogos, kto nie jest z twojej
-rodziny, to bycie pięknym nie  jest takie trudne. (Jeanne, 8)
+Jaka rolę w miłości odgrywa wygląd?
+Jeśli chcesz być kochany przez kogoś, kto nie jest z twojej
+rodziny, to bycie pięknym nie jest takie trudne. (Jeanne, 8)
 %
 Miłość w oczach dzieci:
 
-To nie zawsze jest kwestia  wygladu. Spójrz na mnie, jestem
-przystojny jak nikt, a jeszcze nie  znalazlem nikogo, kto chcialby
-się ze mna ozenic. (Gary, 7)
+To nie zawsze jest kwestia wyglądu. Spójrz na mnie, jestem
+przystojny jak nikt, a jeszcze nie znalazłem nikogo, kto chciałby
+się ze mną ożenić. (Gary, 7)
 %
 Miłość w oczach dzieci:
 
-Piękno jest powierzchowne i krótkotrwale. Dlatego lepiej byc bogatym,
-bo majątek trwa dluzej. (Christine, 9)
+Piękno jest powierzchowne i krótkotrwale. Dlatego lepiej być bogatym,
+bo majątek trwa dłużej. (Christine, 9)
 %
 Miłość w oczach dzieci:
 
-Dlaczego zakochani często trzymaja się za ręce?
-Bo chca miec pewnosc, ze ich obraczki się nie zsuna, bo przeciez
-zaplacili za nie duzo pieniędzy. (Dave, 8)
+Dlaczego zakochani często trzymają się za ręce?
+Bo chcą mieć pewność, ze ich obrączki się nie zsuną, bo przecież
+zapłacili za nie dużo pieniędzy. (Dave, 8)
 %
 Miłość w oczach dzieci:
 
-Sekretne opinie na temat milosci
-Ja jestem za  miloscia, dopóki nie przytrafia się ona kiedy w telewizji
-sa kreskówki. (Anita, 6)
+Sekretne opinie na temat miłości
+Ja jestem za miłością, dopóki nie przytrafia się ona kiedy w telewizji
+są kreskówki. (Anita, 6)
 %
 Miłość w oczach dzieci:
 
-Milosc znajdzie cię nawet wtedy, kiedy próbujesz się przed  nia
-schowac. Ja próbuję się przed nia ukryc odkad  skończylem 5 lat, ale
-dziewczyny nie przestaja mnie podrywac.  (Bobby, 8)
+Miłość znajdzie cię nawet wtedy, kiedy próbujesz się przed nią
+schować. Ja próbuję się przed nią ukryć odkąd skończyłem 5 lat, ale
+dziewczyny nie przestają mnie podrywać. (Bobby, 8)
 %
 Miłość w oczach dzieci:
 
-Konieczne uzdolnienia do stworzenia udanego  zwiazku 
-Jedno z was musi umiec wypisac czek, dlatego, ze kiedy  bardzo się
-kochacie, to musicie placic duze rachunki.(Ava,  8)
+Konieczne uzdolnienia do stworzenia udanego związku 
+Jedno z was musi umieć wypisać czek, dlatego, że kiedy bardzo się
+kochacie, to musicie płacić duże rachunki. (Ava, 8)
 %
 Miłość w oczach dzieci:
 
-Jak sprawic, by ktos w nas się  zakochal?
-Nie nos pachnacych, zielonych tenisówek. Moze zwrócisz  na siebie
-uwagę, ale to nie to samo co milosc. (Alonzo,  9)
+Jak sprawić, by ktoś w nas się zakochał?
+Nie noś pachnących, zielonych tenisówek. Może zwrócisz na siebie
+uwagę, ale to nie to samo co miłość. (Alonzo

SPECS: heimdal.spec - updated to 0.7.1 (bug fixes)

2005-09-21 Thread qboosh
Author: qboosh   Date: Wed Sep 21 20:09:35 2005 GMT
Module: SPECS Tag: HEAD
 Log message:
- updated to 0.7.1 (bug fixes)

 Files affected:
SPECS:
   heimdal.spec (1.112 - 1.113) 

 Diffs:


Index: SPECS/heimdal.spec
diff -u SPECS/heimdal.spec:1.112 SPECS/heimdal.spec:1.113
--- SPECS/heimdal.spec:1.112Sat Sep 17 12:10:32 2005
+++ SPECS/heimdal.spec  Wed Sep 21 22:09:30 2005
@@ -6,12 +6,12 @@
 Summary:   Heimdal implementation of Kerberos V5 system
 Summary(pl):   Implementacja Heimdal systemu Kerberos V5
 Name:  heimdal
-Version:   0.7
-Release:   3
+Version:   0.7.1
+Release:   1
 License:   Free
 Group: Networking
 Source0:   ftp://ftp.pdc.kth.se/pub/heimdal/src/%{name}-%{version}.tar.gz
-# Source0-md5: 0a8097a8772d5d2de8c5539d3182b82a
+# Source0-md5: 70504c824cb0437e6fae2b866f9d2ed4
 Source1:   %{name}.init
 Source2:   %{name}.logrotate
 Source3:   %{name}.sysconfig
@@ -600,6 +600,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.113  2005/09/21 20:09:30  qboosh
+- updated to 0.7.1 (bug fixes)
+
 Revision 1.112  2005/09/17 10:10:32  arekm
 - ups, 5.0
 


 CVS-web:
http://cvs.pld-linux.org/SPECS/heimdal.spec?r1=1.112r2=1.113f=u

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


DISTFILES: heimdal-0.7.1.tar.gz

2005-09-21 Thread qboosh

Files fetched: 1

STORED: ftp://ftp.pdc.kth.se/pub/heimdal/src/heimdal-0.7.1.tar.gz
70504c824cb0437e6fae2b866f9d2ed4  heimdal-0.7.1.tar.gz
Size: 4515175 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: horde-ulaform.spec - pl, killed Skeleton remains

2005-09-21 Thread qboosh
Author: qboosh   Date: Wed Sep 21 20:15:13 2005 GMT
Module: SPECS Tag: HEAD
 Log message:
- pl, killed Skeleton remains

 Files affected:
SPECS:
   horde-ulaform.spec (1.1 - 1.2) 

 Diffs:


Index: SPECS/horde-ulaform.spec
diff -u SPECS/horde-ulaform.spec:1.1 SPECS/horde-ulaform.spec:1.2
--- SPECS/horde-ulaform.spec:1.1Sat Sep 17 18:07:22 2005
+++ SPECS/horde-ulaform.specWed Sep 21 22:15:08 2005
@@ -6,6 +6,7 @@
 #
 %include   /usr/lib/rpm/macros.php
 Summary:   A form generation/processing tool
+Summary(pl):   Narzędzie do generowania/przetwarzania formularzy
 Name:  horde-%{_hordeapp}
 Version:   0.1
 Release:   %{?_rc:0.%{_rc}.}%{?_snap:0.%(echo %{_snap} | tr -d -).}%{_rel}
@@ -38,7 +39,7 @@
 system. Ulaform allows users to create sophisticated forms using a web
 browser, and then render the forms within other web pages by a simple
 PHP include inside a ?php ... ? tag, or in other Horde applications
-through the Horde Block api.  Ulaform is intended to replace other
+through the Horde Block API. Ulaform is intended to replace other
 dynamic form generation techniques (such as FrontPage forms which
 require the FrontPage extensions on the server, or CGI scripts which
 require some programming ability).
@@ -51,7 +52,28 @@
 
 The Horde Project writes web applications in PHP and releases them
 under the GNU Public License. For more information (including help
-with Skeleton) please visit http://www.horde.org/.
+with Ulaform) please visit http://www.horde.org/.
+
+%description -l pl
+Ulaform to oparty na PHP system tworzenia i generowania dynamicznych
+formularzy HTML. Pozwala użytkownikom tworzyć wymyślne formularze
+przy użyciu przeglądarki WWW, a następnie wyświetlać formularze na
+innych stronach WWW poprzez prostą dyrektywę include PHP wewnątrz
+znacznika ?php ... ? lub w innych aplikacjach Horde poprzez API
+Horde Block. Ulaform ma za zadanie zastąpić inne techniki generowania
+dynamicznych formularzy (takie jak formularze FrontPage, wymagające
+rozszerzeń FrontPage na serwerze, czy skrypty CGI wymagające
+umiejętności programowania).
+
+Ulaform jest oparty na bibliotece Horde_Form ze szkieletu Horde. Daje
+to trochę przydatnych cech: możliwość automatycznego sprawdzania
+poprawności danych, używanie JavaScriptu jeśli jest dostępny (lub
+ponowne odrysowywanie formularza, jeśli nie), możliwość
+przezroczystego używania GET lub POST itp.
+
+Projekt Horde tworzy aplikacje WWW w PHP i wydaje je na licencji GNU
+General Public License. Więcej informacji (włącznie z pomocą dla
+Ulaform) można znaleźć na stronie http://www.horde.org/.
 
 %prep
 %setup -q -c -T -n 
%{?_snap:%{_hordeapp}-%{_snap}}%{!?_snap:%{_hordeapp}-%{version}%{?_rc:-%{_rc}}}
@@ -136,6 +158,8 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.2  2005/09/21 20:15:08  qboosh
+- pl, killed Skeleton remains
+
 Revision 1.1  2005/09/17 16:07:22  glen
 - new
-


 CVS-web:
http://cvs.pld-linux.org/SPECS/horde-ulaform.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: kleansweep.spec - shorter summaries, pl fixes, mv fixes, BR...

2005-09-21 Thread qboosh
Author: qboosh   Date: Wed Sep 21 21:48:42 2005 GMT
Module: SPECS Tag: HEAD
 Log message:
- shorter summaries, pl fixes, mv fixes, BR s/perl/perl-base/

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

 Diffs:


Index: SPECS/kleansweep.spec
diff -u SPECS/kleansweep.spec:1.3 SPECS/kleansweep.spec:1.4
--- SPECS/kleansweep.spec:1.3   Sat Sep 17 18:10:06 2005
+++ SPECS/kleansweep.spec   Wed Sep 21 23:48:37 2005
@@ -1,7 +1,6 @@
 # $Revision$, $Date$
-Summary:   KleanSweep consists of KDE-based (C++) graphical frontend and 
small helper Perl script that performs actual searching
-Summary(pl):   KleanSweep składa się z graficznego interjesu opartego na KDE
-i małego skryptu pomocniczego w Perlu, który wykonuje poszukiwania
+Summary:   KleanSweep - KDE-based (C++) graphical frontend and script that 
performs actual searching
+Summary(pl):   KleanSweep - graficznego interjesu opartego na KDE i skrypt 
wykonujący poszukiwania
 Name:  kleansweep
 Version:   0.1.5
 Release:   1
@@ -13,7 +12,7 @@
 BuildRequires: docbook-dtd-sgml
 BuildRequires: docbook-style-dsssl
 BuildRequires: kdelibs = 3.0
-BuildRequires: perl
+BuildRequires: perl-base
 BuildRequires: rpmbuild(macros) = 1.129
 BuildRequires: scons
 BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
@@ -24,16 +23,17 @@
 except for orphaned files, duplicates and dead menu entires are as
 fast as usual 'find' would be. KleanSweep requires KDE libraries and
 Perl. Note: Author takes no responsibility for any damage caused by
-this program. Rate this project at kde-apps.org.
+this program. You can rate this project at kde-apps.org.
 
 %description -l pl
-KleanSweep składa się z graficznego interjesu opartego na KDE i małego
-skryptu pomocniczego w Perlu, który wykonuje poszukiwania. Wszystkie
-poszukiwania, za wyjątkiem osieroconych plików, zduplikowanych i
-martwych wpisów menu, są tak szybko jak zwykłe 'szukanie' może być.
-KleanSweep wymaga bibliotek KDE i Perl. Uwaga: Autor nie bierze
-odpowiedzialności za jakiekolwiek uszkodzenia spowodowane tym
-programem. Oddaj głos na tej projekt na kde-apps.org.
+KleanSweep składa się z graficznego interfejsu opartego na KDE i
+małego skryptu pomocniczego w Perlu, który wykonuje poszukiwania.
+Wszystkie poszukiwania, za wyjątkiem osieroconych plików,
+zduplikowanych i martwych wpisów menu, są tak szybkie, jak tylko może
+być zwykłe szukanie. KleanSweep wymaga bibliotek KDE i Perla. Uwaga:
+Autor nie bierze odpowiedzialności za jakiekolwiek uszkodzenia
+spowodowane tym programem. Na ten projekt można głosować na
+kde-apps.org.
 
 %prep
 %setup -q
@@ -53,7 +53,7 @@
 
 DESTDIR=$RPM_BUILD_ROOT scons install
 
-mv -f $RPM_BUILD_ROOT%{_applnkdir}/System/%{name}.desktop 
$RPM_BUILD_ROOT%{_desktopdir}/
+mv -f $RPM_BUILD_ROOT%{_datadir}/applnk/System/%{name}.desktop 
$RPM_BUILD_ROOT%{_desktopdir}
 echo Categories=Qt;KDE;Utility;System;  
$RPM_BUILD_ROOT%{_desktopdir}/%{name}.desktop
 
 %clean
@@ -74,6 +74,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.4  2005/09/21 21:48:37  qboosh
+- shorter summaries, pl fixes, mv fixes, BR s/perl/perl-base/
+
 Revision 1.3  2005/09/17 16:10:06  blekot
 - pl
 
@@ -85,4 +88,3 @@
 - new, builds
 - TODO: write (pl) Desc and Summary
 - check BR's
-


 CVS-web:
http://cvs.pld-linux.org/SPECS/kleansweep.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: ERRORS:

2005-09-21 Thread qboosh
kolab.spec: both NoSource: 0 and md5 given



Files fetched: 0



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


SPECS: kolab.spec - updated pl - C desc is us-ascii; moved desc wi...

2005-09-21 Thread qboosh
Author: qboosh   Date: Wed Sep 21 21:57:28 2005 GMT
Module: SPECS Tag: HEAD
 Log message:
- updated pl
- C desc is us-ascii; moved desc with iso-8859-1 chars to en

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

 Diffs:


Index: SPECS/kolab.spec
diff -u SPECS/kolab.spec:1.3 SPECS/kolab.spec:1.4
--- SPECS/kolab.spec:1.3Fri Sep 16 16:22:01 2005
+++ SPECS/kolab.specWed Sep 21 23:57:23 2005
@@ -49,6 +49,28 @@
 - Full seamless support of mixed clients environments
   (Outlook/KDE/Web)
 - A web administration interface
+- Supported languages: Deutsch, English, Francais, Neerlandais
+- A shared address book with provision for mailbox users as well as
+  contacts
+- POP3 as well as IMAP4(rev1) access to mail
+- Client-side full support of S/MIME E-Mail encryption possible
+  (officially Sphinx-interoperable).
+
+%description -l en
+Kolab is a secure, scalable and reliable groupware server. It is
+formed by a number of well-known and proven components or the
+standards tasks such as E-Mail, Directory Service and Web Service.
+
+Kolab adds intelligent interaction between the components, a web
+administration interface, management of free-busy lists etc.
+
+Various clients can access Kolab, among them Kontact (KDE), Outlook
+(Windows) and Horde (Web).
+
+Major Features:
+- Full seamless support of mixed clients environments
+  (Outlook/KDE/Web)
+- A web administration interface
 - Supported languages: Deutsch, English, Français, Néerlandais
 - A shared address book with provision for mailbox users as well as
   contacts
@@ -57,26 +79,47 @@
   (officially Sphinx-interoperable).
 
 %description -l pl
-Kolab to serwer KDE Groupware udostępniające pełne możliwości pracy
-grupowej (groupware) klientom KDE Kolaba lub Microsoft Outlooka(TM)
-pracującym pod Windows(TM) z użyciem Konsec Konnectora
-(http://www.konsec.com/). Ponadto jest to potężny i elastyczny serwer
-IMAP ogólnego przeznaczenia z książką adresową LDAP i miłym graficznym
-interfejsem do administrowania.
+Kolab to bezpieczny, skalowalny i wiarygodny serwer pracy grupowej.
+Składa się z wielu dobrze znanych, sprawdzonych komponentów lub
+standardowych zadań, takich jak poczta elektroniczna, usługi
+katalogowe i usługi WWW.
+
+Kolab dodaje inteligentną interakcję pomiędzy komponentami, interfejs
+administracyjny przez WWW, zarządzanie listami wolny-zajęty itp.
+
+Z Kolabem można współpracować przy użyciu różnych klientów, w tym
+Kontacta (KDE), Outlooka (Windows) i Horde (WWW).
+
+Główne cechy:
+- pełna, przezroczysta obsługa mieszanych środowisk klienckich
+  (Outlook/KDE/WWW)
+- interfejs administracyjny przez WWW
+- obsługiwane języki: niemiecki, angielski, francuski, holenderski
+- współdzielona książka adresowa z zarządzaniem użytkownikami skrzynek
+  i kontaktami
+- dostęp do poczty przez POP3 oraz IMAP4(rev1)
+- dostępna pełna obsługa szyfrowania S/MIME dla poczty elektronicznej
+  po stronie klienta (oficjalnie zgodna ze Sphinksem).
 
 %package -n kolabd
 Summary:   Kolab2 Groupware Server Daemon
+Summary(pl):   Demon serwera pracy grupowej Kolab2
 Group: Applications/Mail
-License:   GPL v2
 Version:   %{_kolabd_ver}
 
 %description -n kolabd
 Kolab is the KDE Groupware Server that provides full groupware
-features to either KDE Kolab clients or Microsoft Outlook[tm] clients
+features to either KDE Kolab clients or Microsoft Outlook(TM) clients
 using third party plugins and web clients in the future. In addition
 it is a robust and flexible general IMAP mail server with LDAP
 addressbooks.
 
+%description -n kolabd -l pl
+Kolab to serwer pracy grupowej dla KDE udostępniający pełne możliwości
+pracy grupowej klientom KDE Kolab i Microsoft Outlook(TM) przy użyciu
+zewnętrznnych wtyczek oraz w przyszłości klientów WWW. Ponadto jest to
+mocny i elastyczny serwer poczty IMAP z książkami adresowymi LDAP.
+
 %prep
 %setup -q -c -T
 mkdir -p kolabd
@@ -352,6 +395,10 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.4  2005/09/21 21:57:23  qboosh
+- updated pl
+- C desc is us-ascii; moved desc with iso-8859-1 chars to en
+
 Revision 1.3  2005/09/16 14:22:01  glen
 - save work
 


 CVS-web:
http://cvs.pld-linux.org/SPECS/kolab.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


SPECS: libral.spec - cleanup

2005-09-21 Thread qboosh
Author: qboosh   Date: Wed Sep 21 22:21:08 2005 GMT
Module: SPECS Tag: HEAD
 Log message:
- cleanup

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

 Diffs:


Index: SPECS/libral.spec
diff -u SPECS/libral.spec:1.3 SPECS/libral.spec:1.4
--- SPECS/libral.spec:1.3   Sun Sep 18 14:47:26 2005
+++ SPECS/libral.spec   Thu Sep 22 00:21:01 2005
@@ -6,17 +6,16 @@
 Release:   1
 License:   LGPL
 Group: Libraries
-Source0:   http://download.berlios.de/%{name}/%{name}-%{version}.tar.gz
+Source0:   http://download.berlios.de/libral/%{name}-%{version}.tar.gz
 # Source0-md5: def06a6451d37fe5dea460781b9a3b31
 Patch0:%{name}-includedir.patch
-URL:   http://developer.berlios.de/projects/libral
+URL:   http://developer.berlios.de/projects/libral/
 BuildRequires: autoconf
 BuildRequires: automake
 BuildRequires: glib2-devel
 BuildRequires: gtk-doc = 1.3
 BuildRequires: libtool
 BuildRequires: libxml2-devel
-Requires(post,postun): /sbin/ldconfig
 BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
 
 %description
@@ -24,13 +23,13 @@
 address books and to add personal and company cards to them.
 
 %description -l pl
-LibRAL jest silnikiem do książki adresowej. Pozwala tobie stworzyć
-książkę adresową aby dodawać do niej osobiste i firmowe kartki.
+LibRAL jest silnikiem do książki adresowej. Pozwala stworzyć
+książkę adresową i dodawać do niej osobiste oraz firmowe kartki.
 
 %package devel
 Summary:   Header files for libral
 Summary(pl):   Pliki nagłówkowe do libral
-Group: X11/Development/Libraries
+Group: Development/Libraries
 Requires:  %{name} = %{epoch}:%{version}-%{release}
 
 %description devel
@@ -42,7 +41,7 @@
 %package static
 Summary:   Static libral library
 Summary(pl):   Statyczna biblioteka libral
-Group: Development/Libraries
+Group: Development/Libraries
 Requires:  %{name}-devel = %{version}-%{release}
 
 %description static
@@ -76,6 +75,9 @@
 %clean
 rm -rf $RPM_BUILD_ROOT
 
+%post  -p /sbin/ldconfig
+%postun-p /sbin/ldconfig
+
 %files
 %defattr(644,root,root,755)
 %doc AUTHORS
@@ -99,6 +101,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.4  2005/09/21 22:21:01  qboosh
+- cleanup
+
 Revision 1.3  2005/09/18 12:47:26  pluto
 - headers location fixed, release 1.
 


 CVS-web:
http://cvs.pld-linux.org/SPECS/libral.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


SPECS: libral.spec - more BRs, pass html-dir instead of later mv

2005-09-21 Thread qboosh
Author: qboosh   Date: Wed Sep 21 22:25:38 2005 GMT
Module: SPECS Tag: HEAD
 Log message:
- more BRs, pass html-dir instead of later mv

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

 Diffs:


Index: SPECS/libral.spec
diff -u SPECS/libral.spec:1.4 SPECS/libral.spec:1.5
--- SPECS/libral.spec:1.4   Thu Sep 22 00:21:01 2005
+++ SPECS/libral.spec   Thu Sep 22 00:25:33 2005
@@ -10,12 +10,13 @@
 # Source0-md5: def06a6451d37fe5dea460781b9a3b31
 Patch0:%{name}-includedir.patch
 URL:   http://developer.berlios.de/projects/libral/
-BuildRequires: autoconf
-BuildRequires: automake
-BuildRequires: glib2-devel
+BuildRequires: autoconf = 2.59
+BuildRequires: automake = 1.9
+BuildRequires: glib2-devel = 2.0
 BuildRequires: gtk-doc = 1.3
 BuildRequires: libtool
 BuildRequires: libxml2-devel
+BuildRequires: pkgconfig
 BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
 
 %description
@@ -59,19 +60,17 @@
 %{__aclocal}
 %{__autoconf}
 
-%configure
+%configure \
+   --with-html-dir=%{_gtkdocdir}
 
 %{__make}
 
 %install
 rm -rf $RPM_BUILD_ROOT
-install -d $RPM_BUILD_ROOT
 
 %{__make} install \
DESTDIR=$RPM_BUILD_ROOT
 
-mv -f $RPM_BUILD_ROOT%{_datadir}/{gtk-doc,doc/}
-
 %clean
 rm -rf $RPM_BUILD_ROOT
 
@@ -101,6 +100,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.5  2005/09/21 22:25:33  qboosh
+- more BRs, pass html-dir instead of later mv
+
 Revision 1.4  2005/09/21 22:21:01  qboosh
 - cleanup
 


 CVS-web:
http://cvs.pld-linux.org/SPECS/libral.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: kolab.spec - if NoSource, use NoSource*-md5

2005-09-21 Thread qboosh
Author: qboosh   Date: Wed Sep 21 22:30:51 2005 GMT
Module: SPECS Tag: HEAD
 Log message:
- if NoSource, use NoSource*-md5

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

 Diffs:


Index: SPECS/kolab.spec
diff -u SPECS/kolab.spec:1.4 SPECS/kolab.spec:1.5
--- SPECS/kolab.spec:1.4Wed Sep 21 23:57:23 2005
+++ SPECS/kolab.specThu Sep 22 00:30:45 2005
@@ -13,7 +13,7 @@
 Group: Networking/Daemons
 Source0:   
ftp://ftp.belnet.be/packages/kolab/server/release/kolab-server-%{version}/sources/%{name}d-%{_kolabd_ver}-%{_build_date}.src.rpm
 NoSource:  0
-# Source0-md5: ff290c9e410a4ec8740d1d626c17862d
+# NoSource0-md5: ff290c9e410a4ec8740d1d626c17862d
 # will be needed? maybe everything can start using their own scritps
 #Source1:  %{name}.init
 URL:   http://www.kolab.org/
@@ -395,6 +395,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.5  2005/09/21 22:30:45  qboosh
+- if NoSource, use NoSource*-md5
+
 Revision 1.4  2005/09/21 21:57:23  qboosh
 - updated pl
 - C desc is us-ascii; moved desc with iso-8859-1 chars to en


 CVS-web:
http://cvs.pld-linux.org/SPECS/kolab.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


SOURCES: apache1-mod_ssl-eapi.patch - updated from mod_ssl-2.8.24-...

2005-09-22 Thread qboosh
Author: qboosh   Date: Thu Sep 22 08:37:22 2005 GMT
Module: SOURCES   Tag: HEAD
 Log message:
- updated from mod_ssl-2.8.24-1.3.33 (connection timeout handling fix)

 Files affected:
SOURCES:
   apache1-mod_ssl-eapi.patch (1.6 - 1.7) 

 Diffs:


Index: SOURCES/apache1-mod_ssl-eapi.patch
diff -u SOURCES/apache1-mod_ssl-eapi.patch:1.6 
SOURCES/apache1-mod_ssl-eapi.patch:1.7
--- SOURCES/apache1-mod_ssl-eapi.patch:1.6  Wed May 12 17:04:19 2004
+++ SOURCES/apache1-mod_ssl-eapi.patch  Thu Sep 22 10:37:16 2005
@@ -7,7 +7,7 @@
 ## 
 ## Annotated patch file: eapi.patch
 ## Copyright (c) 1998-2001 Ralf S. Engelschall, All Rights Reserved. 
-## Created on: 11-May-2004
+## Created on: 02-Sep-2005
 ##
 ## This file assembles changes to existing Apache source files
 ## between the original Apache and the patched variant. It can be
@@ -56,9 +56,9 @@
 | Patch in implementation of the EAPI rule.
 +---
 Index: src/Configure
 src/Configure  11 May 2004 18:28:09 -  1.1.1.23
-+++ src/Configure  11 May 2004 18:32:15 -  1.26
-@@ -1855,6 +1855,72 @@
+--- src/Configure  30 Oct 2004 13:42:25 -  1.1.1.25
 src/Configure  30 Oct 2004 13:44:00 -  1.28
+@@ -1867,6 +1867,72 @@
  fi
  
  
@@ -379,8 +379,8 @@
 | function.
 +---
 Index: src/include/httpd.h
 src/include/httpd.h11 May 2004 18:28:12 -  1.1.1.23
-+++ src/include/httpd.h11 May 2004 18:32:15 -  1.33
+--- src/include/httpd.h30 Oct 2004 13:42:25 -  1.1.1.25
 src/include/httpd.h30 Oct 2004 13:44:00 -  1.35
 @@ -27,7 +27,19 @@
  /* Headers in which EVERYONE has an interest... */
  
@@ -482,8 +482,8 @@
 | Patch the shared memory pool support into the Apache pool facility.
 +---
 Index: src/main/alloc.c
 src/main/alloc.c   11 May 2004 18:28:13 -  1.1.1.16
-+++ src/main/alloc.c   11 May 2004 18:32:15 -  1.25
+--- src/main/alloc.c   22 Oct 2004 10:15:50 -  1.1.1.17
 src/main/alloc.c   22 Oct 2004 10:18:59 -  1.26
 @@ -21,6 +21,10 @@
   */
  
@@ -1017,8 +1017,8 @@
 | variables are initialized.
 +---
 Index: src/main/http_config.c
 src/main/http_config.c 11 May 2004 18:28:14 -  1.1.1.17
-+++ src/main/http_config.c 11 May 2004 18:32:15 -  1.20
+--- src/main/http_config.c 22 Oct 2004 10:15:50 -  1.1.1.18
 src/main/http_config.c 22 Oct 2004 10:18:59 -  1.21
 @@ -557,6 +557,20 @@
m-name = tmp;
  }
@@ -1090,7 +1090,7 @@
  if ((l[0] == '#') || (!l[0]))
return NULL;
  
-@@ -1424,6 +1474,10 @@
+@@ -1428,6 +1478,10 @@
  s-limit_req_fieldsize = main_server-limit_req_fieldsize;
  s-limit_req_fields = main_server-limit_req_fields;
  
@@ -1101,7 +1101,7 @@
  *ps = s;
  
  return ap_parse_vhost_addrs(p, hostname, s);
-@@ -1535,6 +1589,10 @@
+@@ -1539,6 +1593,10 @@
  s-module_config = create_server_config(p, s);
  s-lookup_defaults = create_default_per_dir_config(p);
  
@@ -1120,8 +1120,8 @@
 | is added plus the initialization of one more `ctx' variable.
 +---
 Index: src/main/http_main.c
 src/main/http_main.c   11 May 2004 18:28:14 -  1.1.1.22
-+++ src/main/http_main.c   11 May 2004 18:32:15 -  1.44
+--- src/main/http_main.c   22 Oct 2004 10:15:50 -  1.1.1.23
 src/main/http_main.c   6 Jul 2005 12:29:22 -   1.46
 @@ -242,6 +242,9 @@
  
  int ap_dump_settings = 0;
@@ -1163,28 +1163,27 @@
  #ifndef NETWARE
  static APACHE_TLS int volatile exit_after_unblock = 0;
  #endif
-@@ -1541,6 +1568,10 @@
-   ap_log_transaction(log_req);
+@@ -1542,6 +1569,9 @@
}
  
+   ap_bsetflag(save_req-connection-client, B_EOUT, 1);
 +#ifdef EAPI
 +  ap_call_close_connection_hook(save_req-connection);
 +#endif /* EAPI */
-+
-   ap_bsetflag(save_req-connection-client, B_EOUT, 1);
ap_bclose(save_req-connection-client);

-@@ -1549,6 +1580,9 @@
- ap_longjmp(jmpbuffer, 1);
+   if (!ap_standalone)
+@@ -1550,6 +1580,9 @@
  }
  else {/* abort the connection */
+   ap_bsetflag(current_conn-client, B_EOUT, 1);
 +#ifdef EAPI
 +  ap_call_close_connection_hook(current_conn);
 +#endif /* EAPI */
-   ap_bsetflag(current_conn-client, B_EOUT, 1);
ap_bclose(current_conn-client);
current_conn-aborted = 1;
-@@ -1851,10 +1885,16 @@
+ }
+@@ -1851,10 +1884,16 @@
  /* Send

SOURCES (RA-branch): apache-mod_ssl-eapi.patch - updated from mod_...

2005-09-22 Thread qboosh
Author: qboosh   Date: Thu Sep 22 08:38:18 2005 GMT
Module: SOURCES   Tag: RA-branch
 Log message:
- updated from mod_ssl-2.8.24-1.3.33 (connection timeout handling fix)

 Files affected:
SOURCES:
   apache-mod_ssl-eapi.patch (1.9.2.3 - 1.9.2.4) 

 Diffs:


Index: SOURCES/apache-mod_ssl-eapi.patch
diff -u SOURCES/apache-mod_ssl-eapi.patch:1.9.2.3 
SOURCES/apache-mod_ssl-eapi.patch:1.9.2.4
--- SOURCES/apache-mod_ssl-eapi.patch:1.9.2.3   Wed May 12 17:01:57 2004
+++ SOURCES/apache-mod_ssl-eapi.patch   Thu Sep 22 10:38:13 2005
@@ -7,7 +7,7 @@
 ## 
 ## Annotated patch file: eapi.patch
 ## Copyright (c) 1998-2001 Ralf S. Engelschall, All Rights Reserved. 
-## Created on: 11-May-2004
+## Created on: 02-Sep-2005
 ##
 ## This file assembles changes to existing Apache source files
 ## between the original Apache and the patched variant. It can be
@@ -56,9 +56,9 @@
 | Patch in implementation of the EAPI rule.
 +---
 Index: src/Configure
 src/Configure  11 May 2004 18:28:09 -  1.1.1.23
-+++ src/Configure  11 May 2004 18:32:15 -  1.26
-@@ -1855,6 +1855,72 @@
+--- src/Configure  30 Oct 2004 13:42:25 -  1.1.1.25
 src/Configure  30 Oct 2004 13:44:00 -  1.28
+@@ -1867,6 +1867,72 @@
  fi
  
  
@@ -379,8 +379,8 @@
 | function.
 +---
 Index: src/include/httpd.h
 src/include/httpd.h11 May 2004 18:28:12 -  1.1.1.23
-+++ src/include/httpd.h11 May 2004 18:32:15 -  1.33
+--- src/include/httpd.h30 Oct 2004 13:42:25 -  1.1.1.25
 src/include/httpd.h30 Oct 2004 13:44:00 -  1.35
 @@ -27,7 +27,19 @@
  /* Headers in which EVERYONE has an interest... */
  
@@ -482,8 +482,8 @@
 | Patch the shared memory pool support into the Apache pool facility.
 +---
 Index: src/main/alloc.c
 src/main/alloc.c   11 May 2004 18:28:13 -  1.1.1.16
-+++ src/main/alloc.c   11 May 2004 18:32:15 -  1.25
+--- src/main/alloc.c   22 Oct 2004 10:15:50 -  1.1.1.17
 src/main/alloc.c   22 Oct 2004 10:18:59 -  1.26
 @@ -21,6 +21,10 @@
   */
  
@@ -1017,8 +1017,8 @@
 | variables are initialized.
 +---
 Index: src/main/http_config.c
 src/main/http_config.c 11 May 2004 18:28:14 -  1.1.1.17
-+++ src/main/http_config.c 11 May 2004 18:32:15 -  1.20
+--- src/main/http_config.c 22 Oct 2004 10:15:50 -  1.1.1.18
 src/main/http_config.c 22 Oct 2004 10:18:59 -  1.21
 @@ -557,6 +557,20 @@
m-name = tmp;
  }
@@ -1090,7 +1090,7 @@
  if ((l[0] == '#') || (!l[0]))
return NULL;
  
-@@ -1424,6 +1474,10 @@
+@@ -1428,6 +1478,10 @@
  s-limit_req_fieldsize = main_server-limit_req_fieldsize;
  s-limit_req_fields = main_server-limit_req_fields;
  
@@ -1101,7 +1101,7 @@
  *ps = s;
  
  return ap_parse_vhost_addrs(p, hostname, s);
-@@ -1535,6 +1589,10 @@
+@@ -1539,6 +1593,10 @@
  s-module_config = create_server_config(p, s);
  s-lookup_defaults = create_default_per_dir_config(p);
  
@@ -1120,8 +1120,8 @@
 | is added plus the initialization of one more `ctx' variable.
 +---
 Index: src/main/http_main.c
 src/main/http_main.c   11 May 2004 18:28:14 -  1.1.1.22
-+++ src/main/http_main.c   11 May 2004 18:32:15 -  1.44
+--- src/main/http_main.c   22 Oct 2004 10:15:50 -  1.1.1.23
 src/main/http_main.c   6 Jul 2005 12:29:22 -   1.46
 @@ -242,6 +242,9 @@
  
  int ap_dump_settings = 0;
@@ -1163,28 +1163,27 @@
  #ifndef NETWARE
  static APACHE_TLS int volatile exit_after_unblock = 0;
  #endif
-@@ -1541,6 +1568,10 @@
-   ap_log_transaction(log_req);
+@@ -1542,6 +1569,9 @@
}
  
+   ap_bsetflag(save_req-connection-client, B_EOUT, 1);
 +#ifdef EAPI
 +  ap_call_close_connection_hook(save_req-connection);
 +#endif /* EAPI */
-+
-   ap_bsetflag(save_req-connection-client, B_EOUT, 1);
ap_bclose(save_req-connection-client);

-@@ -1549,6 +1580,9 @@
- ap_longjmp(jmpbuffer, 1);
+   if (!ap_standalone)
+@@ -1550,6 +1580,9 @@
  }
  else {/* abort the connection */
+   ap_bsetflag(current_conn-client, B_EOUT, 1);
 +#ifdef EAPI
 +  ap_call_close_connection_hook(current_conn);
 +#endif /* EAPI */
-   ap_bsetflag(current_conn-client, B_EOUT, 1);
ap_bclose(current_conn-client);
current_conn-aborted = 1;
-@@ -1851,10 +1885,16 @@
+ }
+@@ -1851,10 +1884,16

SPECS: apache1.spec - updated eapi patch from mod_ssl-2.8.24-1.3.3...

2005-09-22 Thread qboosh
Author: qboosh   Date: Thu Sep 22 08:39:36 2005 GMT
Module: SPECS Tag: HEAD
 Log message:
- updated eapi patch from mod_ssl-2.8.24-1.3.33 (connection timeout handling 
fix)
- release 8

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

 Diffs:


Index: SPECS/apache1.spec
diff -u SPECS/apache1.spec:1.107 SPECS/apache1.spec:1.108
--- SPECS/apache1.spec:1.107Tue Aug 16 13:29:01 2005
+++ SPECS/apache1.spec  Thu Sep 22 10:39:31 2005
@@ -32,7 +32,7 @@
 Summary(zh_CN):Internet ÉĎÓŚÓĂ×îšăˇşľÄ Web ˇţÎńłĚĐňĄŁ
 Name:  apache1
 Version:   1.3.33
-Release:   7.11
+Release:   8
 License:   Apache Group
 Group: Networking/Daemons
 Source0:   http://www.apache.org/dist/httpd/apache_%{version}.tar.gz
@@ -2350,6 +2350,10 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.108  2005/09/22 08:39:31  qboosh
+- updated eapi patch from mod_ssl-2.8.24-1.3.33 (connection timeout handling 
fix)
+- release 8
+
 Revision 1.107  2005/08/16 11:29:01  glen
 - revert to old behaviour: run blah to start blah if service not started
 


 CVS-web:
http://cvs.pld-linux.org/SPECS/apache1.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 (RA-branch): apache.spec - updated eapi patch from mod_ssl-2...

2005-09-22 Thread qboosh
Author: qboosh   Date: Thu Sep 22 08:41:11 2005 GMT
Module: SPECS Tag: RA-branch
 Log message:
- updated eapi patch from mod_ssl-2.8.24-1.3.33 (connection timeout handling 
fix)
- release 3

 Files affected:
SPECS:
   apache.spec (1.207.2.25 - 1.207.2.26) 

 Diffs:


Index: SPECS/apache.spec
diff -u SPECS/apache.spec:1.207.2.25 SPECS/apache.spec:1.207.2.26
--- SPECS/apache.spec:1.207.2.25Fri Oct 29 20:14:58 2004
+++ SPECS/apache.spec   Thu Sep 22 10:41:06 2005
@@ -28,7 +28,7 @@
 Summary(zh_CN):Internet ÉĎÓŚÓĂ×îšăˇşľÄ Web ˇţÎńłĚĐňĄŁ
 Name:  apache
 Version:   1.3.33
-Release:   2
+Release:   3
 License:   Apache Group
 Group: Networking/Daemons
 Source0:   http://www.apache.org/dist/httpd/%{name}_%{version}.tar.gz
@@ -1632,6 +1632,10 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.207.2.26  2005/09/22 08:41:06  qboosh
+- updated eapi patch from mod_ssl-2.8.24-1.3.33 (connection timeout handling 
fix)
+- release 3
+
 Revision 1.207.2.25  2004/10/29 18:14:58  ankry
 - re-merged mod_autoindex for ra-security, rel. 2
 


 CVS-web:
http://cvs.pld-linux.org/SPECS/apache.spec?r1=1.207.2.25r2=1.207.2.26f=u

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


SPECS: apache1-mod_ssl.spec - added CAN note to previous changelog...

2005-09-22 Thread qboosh
Author: qboosh   Date: Thu Sep 22 08:41:59 2005 GMT
Module: SPECS Tag: HEAD
 Log message:
- added CAN note to previous changelog entry

 Files affected:
SPECS:
   apache1-mod_ssl.spec (1.103 - 1.104) 

 Diffs:


Index: SPECS/apache1-mod_ssl.spec
diff -u SPECS/apache1-mod_ssl.spec:1.103 SPECS/apache1-mod_ssl.spec:1.104
--- SPECS/apache1-mod_ssl.spec:1.103Wed Sep 21 18:51:01 2005
+++ SPECS/apache1-mod_ssl.spec  Thu Sep 22 10:41:54 2005
@@ -301,8 +301,12 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.104  2005/09/22 08:41:54  qboosh
+- added CAN note to previous changelog entry
+
 Revision 1.103  2005/09/21 16:51:01  glen
 - 2.8.24
+[fixes CAN-2005-2700]
 
 Revision 1.102  2005/09/17 01:23:44  glen
 - correction for detecting conf.d apache support


 CVS-web:
http://cvs.pld-linux.org/SPECS/apache1-mod_ssl.spec?r1=1.103r2=1.104f=u

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


DISTFILES: ERRORS: mod_ssl-2.8.24-1.3.33.tar.gz

2005-09-22 Thread qboosh
FATAL: http://www.modssl.org/source/mod_ssl-2.8.24-1.3.33.tar.gz md5 mismatch, 
needed cdfdf1f576f77768c90825b43b462405, got 4f28dcf0f090a7dc2ab148e6a503e99a

Files fetched: 0



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


SPECS (RA-branch): apache-mod_ssl.spec - updated to 2.8.24-1.3.33 ...

2005-09-22 Thread qboosh
Author: qboosh   Date: Thu Sep 22 09:03:47 2005 GMT
Module: SPECS Tag: RA-branch
 Log message:
- updated to 2.8.24-1.3.33 (fixes CAN-2005-2700)

 Files affected:
SPECS:
   apache-mod_ssl.spec (1.58.2.16 - 1.58.2.17) 

 Diffs:


Index: SPECS/apache-mod_ssl.spec
diff -u SPECS/apache-mod_ssl.spec:1.58.2.16 SPECS/apache-mod_ssl.spec:1.58.2.17
--- SPECS/apache-mod_ssl.spec:1.58.2.16 Sun Oct 31 11:01:11 2004
+++ SPECS/apache-mod_ssl.spec   Thu Sep 22 11:03:42 2005
@@ -1,12 +1,12 @@
 # $Revision$, $Date$
-%defineSSLVER  2.8.22
+%defineSSLVER  2.8.24
 %defineAPACHEVER   1.3.33
 %defineapxs/usr/sbin/apxs
 Summary:   An SSL module for the Apache Web server
 Summary(cs):   Modul s podporou silného šifrování pro WWW server Apache
 Summary(da):   Krypteringsunderstřttelse for webtjeneren Apache
 Summary(de):   SSL-Modul für den Apache-Webserver
-Summary(es):   Soporte criptofráfico para el servidor de red Apache
+Summary(es):   Soporte criptofráfico para el servidor de WWW Apache
 Summary(fr):   Un module SSL pour le serveur Web Apache
 Summary(id):   Interpreter Perl untuk web server Apache
 Summary(is):   Perl túlkur fyrir Apache vefţjóninn
@@ -21,7 +21,7 @@
 Summary(uk):   íĎÄŐĚŘ ĐŚÄÔŇÉÍËÉ SSL × Apache
 Name:  apache-mod_ssl
 Version:   %{SSLVER}_%{APACHEVER}
-Release:   1.1
+Release:   1
 License:   BSD
 Group: Networking/Daemons
 Source0:   
http://www.modssl.org/source/mod_ssl-%{SSLVER}-%{APACHEVER}.tar.gz
@@ -76,9 +76,9 @@
 SSL/TLS-Toolkit OpenSSL, das auf SSLeay basiert, verwendet.
 
 %description -l es
-El módulo modd_ssl proporciona la criptografía para el servidor
-Web\n Apache, los sockets seguros, los protocolos de la seguridad
-(SSL) y de la\n capa tranparente (TLS).
+El módulo modd_ssl proporciona la criptografía para el servidor Web
+Apache, los sockets seguros, los protocolos de la seguridad (SSL) y
+de la capa tranparente (TLS).
 
 %description -l fr
 Le projet mod_ssl fournit de la forte cryptographie pour le serveur
@@ -252,6 +252,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.58.2.17  2005/09/22 09:03:42  qboosh
+- updated to 2.8.24-1.3.33 (fixes CAN-2005-2700)
+
 Revision 1.58.2.16  2004/10/31 10:01:11  qboosh
 - updated to 2.8.22-1.3.33, partial sync with HEAD
 


 CVS-web:

http://cvs.pld-linux.org/SPECS/apache-mod_ssl.spec?r1=1.58.2.16r2=1.58.2.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 (RA-branch): apache-mod_ssl.spec - updated md5

2005-09-22 Thread qboosh
Author: qboosh   Date: Thu Sep 22 09:04:51 2005 GMT
Module: SPECS Tag: RA-branch
 Log message:
- updated md5

 Files affected:
SPECS:
   apache-mod_ssl.spec (1.58.2.17 - 1.58.2.18) 

 Diffs:


Index: SPECS/apache-mod_ssl.spec
diff -u SPECS/apache-mod_ssl.spec:1.58.2.17 SPECS/apache-mod_ssl.spec:1.58.2.18
--- SPECS/apache-mod_ssl.spec:1.58.2.17 Thu Sep 22 11:03:42 2005
+++ SPECS/apache-mod_ssl.spec   Thu Sep 22 11:04:44 2005
@@ -25,7 +25,7 @@
 License:   BSD
 Group: Networking/Daemons
 Source0:   
http://www.modssl.org/source/mod_ssl-%{SSLVER}-%{APACHEVER}.tar.gz
-# Source0-md5: cdfdf1f576f77768c90825b43b462405
+# Source0-md5: 4f28dcf0f090a7dc2ab148e6a503e99a
 Source1:   apache1-mod_ssl.conf
 Source2:   %{name}-server.crt
 Source3:   %{name}-server.key
@@ -252,6 +252,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.58.2.18  2005/09/22 09:04:44  qboosh
+- updated md5
+
 Revision 1.58.2.17  2005/09/22 09:03:42  qboosh
 - updated to 2.8.24-1.3.33 (fixes CAN-2005-2700)
 


 CVS-web:

http://cvs.pld-linux.org/SPECS/apache-mod_ssl.spec?r1=1.58.2.17r2=1.58.2.18f=u

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


SOURCES (RA-branch): util-linux-use-update_mtab-for-fake.patch (NE...

2005-09-22 Thread qboosh
Author: qboosh   Date: Thu Sep 22 09:24:27 2005 GMT
Module: SOURCES   Tag: RA-branch
 Log message:
- CAN-2005-2876 fix backported to 2.11w

 Files affected:
SOURCES:
   util-linux-use-update_mtab-for-fake.patch (NONE - 1.1.2.1)  (NEW)

 Diffs:


Index: SOURCES/util-linux-use-update_mtab-for-fake.patch
diff -u /dev/null SOURCES/util-linux-use-update_mtab-for-fake.patch:1.1.2.1
--- /dev/null   Thu Sep 22 11:24:27 2005
+++ SOURCES/util-linux-use-update_mtab-for-fake.patch   Thu Sep 22 11:24:22 2005
@@ -0,0 +1,16 @@
+Use update_mtab() to update /etc/mtab on fake mounts (mount -f), else we get
+dup entries in /etc/mtab.
+
+Patch by Mike Frysinger [EMAIL PROTECTED], backported to util-linux-2.11w
+
+--- util-linux-2.11w/mount/mount.c.origThu Sep 22 09:13:14 2005
 util-linux-2.11w/mount/mount.c Thu Sep 22 09:15:06 2005
+@@ -631,7 +631,7 @@
+   print_one (mnt);
+ 
+ if (!nomtab  mtab_is_writable()) {
+-  if (flags  MS_REMOUNT)
++  if (fake || (flags  MS_REMOUNT))
+   update_mtab (mnt.mnt_dir, mnt);
+   else {
+   mntFILE *mfp;

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


SPECS (RA-branch): util-linux.spec - added use-update_mtab-for-fak...

2005-09-22 Thread qboosh
Author: qboosh   Date: Thu Sep 22 09:27:28 2005 GMT
Module: SPECS Tag: RA-branch
 Log message:
- added use-update_mtab-for-fake patch (fixes CAN-2005-2876)
- rel 4

 Files affected:
SPECS:
   util-linux.spec (1.192.2.4 - 1.192.2.5) 

 Diffs:


Index: SPECS/util-linux.spec
diff -u SPECS/util-linux.spec:1.192.2.4 SPECS/util-linux.spec:1.192.2.5
--- SPECS/util-linux.spec:1.192.2.4 Sat Sep  6 22:40:54 2003
+++ SPECS/util-linux.spec   Thu Sep 22 11:27:23 2005
@@ -29,7 +29,7 @@
 Summary(uk):   îÁÂŚŇ ÂÁÚĎ×ÉČ ÓÉÓÔĹÍÎÉČ ŐÔÉĚŚÔ ÄĚŃ Linux
 Name:  util-linux
 Version:   2.11w
-%define_rel3
+%define_rel4
 Release:   %{_rel}
 License:   distributable
 Group: Applications/System
@@ -58,6 +58,7 @@
 Patch14:   %{name}-posixsh.patch
 Patch15:   %{name}-ppc-hwclock.patch
 Patch16:   %{name}-chfn_exploid.patch
+Patch17:   %{name}-use-update_mtab-for-fake.patch
 BuildRequires: gettext-devel
 BuildRequires: grep
 %{!?_with_uClibc:BuildRequires:ncurses-devel = 5.0}
@@ -386,6 +387,7 @@
 %patch14 -p1
 %patch15 -p1
 %patch16 -p1
+%patch17 -p1
 
 %build
 CC=%{__cc}
@@ -1024,6 +1026,10 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.192.2.5  2005/09/22 09:27:23  qboosh
+- added use-update_mtab-for-fake patch (fixes CAN-2005-2876)
+- rel 4
+
 Revision 1.192.2.4  2003/09/06 20:40:54  blues
 - one missing
 


 CVS-web:
http://cvs.pld-linux.org/SPECS/util-linux.spec?r1=1.192.2.4r2=1.192.2.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: bb.spec - release 6 for new slang

2005-09-22 Thread qboosh
Author: qboosh   Date: Thu Sep 22 10:34:29 2005 GMT
Module: SPECS Tag: HEAD
 Log message:
- release 6 for new slang

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

 Diffs:


Index: SPECS/bb.spec
diff -u SPECS/bb.spec:1.18 SPECS/bb.spec:1.19
--- SPECS/bb.spec:1.18  Tue Aug 10 21:04:35 2004
+++ SPECS/bb.spec   Thu Sep 22 12:34:24 2005
@@ -3,7 +3,7 @@
 Summary(pl):   BB - przenośne demo
 Name:  bb
 Version:   1.3rc1
-Release:   5
+Release:   6
 License:   GPL
 Group: Applications/Terminal
 Source0:   http://dl.sourceforge.net/aa-project/%{name}-%{version}.tar.gz
@@ -61,6 +61,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.19  2005/09/22 10:34:24  qboosh
+- release 6 for new slang
+
 Revision 1.18  2004/08/10 19:04:35  averne
 - rel 5
 


 CVS-web:
http://cvs.pld-linux.org/SPECS/bb.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


SOURCES: sane-backends-hp_rts88xx-fixes.patch - link hp_rts88xx ba...

2005-09-22 Thread qboosh
Author: qboosh   Date: Thu Sep 22 10:37:22 2005 GMT
Module: SOURCES   Tag: HEAD
 Log message:
- link hp_rts88xx backend with -lresmgr (if sanei_usb uses it)

 Files affected:
SOURCES:
   sane-backends-hp_rts88xx-fixes.patch (1.2 - 1.3) 

 Diffs:


Index: SOURCES/sane-backends-hp_rts88xx-fixes.patch
diff -u SOURCES/sane-backends-hp_rts88xx-fixes.patch:1.2 
SOURCES/sane-backends-hp_rts88xx-fixes.patch:1.3
--- SOURCES/sane-backends-hp_rts88xx-fixes.patch:1.2Mon Nov  8 08:45:17 2004
+++ SOURCES/sane-backends-hp_rts88xx-fixes.patchThu Sep 22 12:37:17 2005
@@ -19,7 +19,7 @@
 +libsane-hp_rts88xx.la: ../sanei/sanei_scsi.lo \
 +libsane-hp_rts88xx.la: ../sanei/sanei_usb.lo%' | sed '
 +s%^libsane-artec_eplus48u\.la: artec_eplus48u\.lo%libsane-hp_rts88xx.la: 
hp_rts88xx.lo hp_rts88xx-s.lo $(EXTRA) $(LIBOBJS)\
-+  @$(LIBTOOL) $(MLINK) $(CC) -export-dynamic -o $@ $($*_LIBS) @USB_LIBS@ 
\\\
++  @$(LIBTOOL) $(MLINK) $(CC) -export-dynamic -o $@ $($*_LIBS) @USB_LIBS@ 
@LIBRESMGR@ \\\
 +  $(LDFLAGS) $(BACKENDLIBS) $^ -rpath $(libsanedir) \\\
 +  -version-info $(V_MAJOR):$(V_REV):$(V_MINOR) $(DYNAMIC_FLAG)\
 +\


 CVS-web:

http://cvs.pld-linux.org/SOURCES/sane-backends-hp_rts88xx-fixes.patch?r1=1.2r2=1.3f=u

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


SPECS: sane-backends.spec - updated link and hp_rts88xx-fixes patc...

2005-09-22 Thread qboosh
Author: qboosh   Date: Thu Sep 22 10:48:32 2005 GMT
Module: SPECS Tag: HEAD
 Log message:
- updated link and hp_rts88xx-fixes patches to fix linking with -lresmgr
  now -devel doesn't force resmgr-devel build dependency
- release 3

 Files affected:
SPECS:
   sane-backends.spec (1.106 - 1.107) 

 Diffs:


Index: SPECS/sane-backends.spec
diff -u SPECS/sane-backends.spec:1.106 SPECS/sane-backends.spec:1.107
--- SPECS/sane-backends.spec:1.106  Fri Sep 16 20:04:26 2005
+++ SPECS/sane-backends.specThu Sep 22 12:48:27 2005
@@ -1,5 +1,4 @@
 # $Revision$, $Date$
-# TODO: don't link libsane with -lresmgr, only plugins which use it 
(sanei_{scsi,usb} based)
 #
 # Conditional build:
 %bcond_without gphoto  # no gphoto backend (which requires libgphoto2)
@@ -21,7 +20,7 @@
 Summary(pt_BR):SANE - acesso a scanners locais e em rede
 Name:  sane-backends
 Version:   1.0.16
-Release:   2
+Release:   3
 License:   relaxed LGPL (libraries), and Public Domain (docs)
 Group: Libraries
 Source0:   
ftp://ftp.sane-project.org/pub/sane/%{name}-%{version}/%{name}-%{version}.tar.gz
@@ -419,6 +418,11 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.107  2005/09/22 10:48:27  qboosh
+- updated link and hp_rts88xx-fixes patches to fix linking with -lresmgr
+  now -devel doesn't force resmgr-devel build dependency
+- release 3
+
 Revision 1.106  2005/09/16 18:04:26  sparky
 - group usb for /var/lock/sane
 


 CVS-web:
http://cvs.pld-linux.org/SPECS/sane-backends.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: apache.spec - removed postgresql BR - it's required by apr-...

2005-09-22 Thread qboosh
Author: qboosh   Date: Thu Sep 22 11:11:29 2005 GMT
Module: SPECS Tag: HEAD
 Log message:
- removed postgresql BR - it's required by apr-util-devel not apache

 Files affected:
SPECS:
   apache.spec (1.409 - 1.410) 

 Diffs:


Index: SPECS/apache.spec
diff -u SPECS/apache.spec:1.409 SPECS/apache.spec:1.410
--- SPECS/apache.spec:1.409 Wed Sep 21 18:40:28 2005
+++ SPECS/apache.spec   Thu Sep 22 13:11:24 2005
@@ -109,7 +109,6 @@
 %{?with_external_pcre:BuildRequires:   pcre-devel}
 BuildRequires: perl-devel = 1:5.6
 BuildRequires: rpm-build = 4.4.0
-BuildRequires: postgresql-devel
 BuildRequires: rpm-perlprov = 4.1-13
 BuildRequires: rpmbuild(macros) = 1.228
 BuildRequires: zlib-devel
@@ -1662,6 +1661,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.410  2005/09/22 11:11:24  qboosh
+- removed postgresql BR - it's required by apr-util-devel not apache
+
 Revision 1.409  2005/09/21 16:40:28  glen
 - %posttrans to minimize apache restarts commited
 


 CVS-web:
http://cvs.pld-linux.org/SPECS/apache.spec?r1=1.409r2=1.410f=u

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


SPECS (AC-branch): poldek.spec - base requires equal version of -libs

2005-09-22 Thread qboosh
Author: qboosh   Date: Thu Sep 22 11:55:50 2005 GMT
Module: SPECS Tag: AC-branch
 Log message:
- base requires equal version of -libs

 Files affected:
SPECS:
   poldek.spec (1.197.2.39 - 1.197.2.40) 

 Diffs:


Index: SPECS/poldek.spec
diff -u SPECS/poldek.spec:1.197.2.39 SPECS/poldek.spec:1.197.2.40
--- SPECS/poldek.spec:1.197.2.39Thu Sep 22 11:51:15 2005
+++ SPECS/poldek.spec   Thu Sep 22 13:55:45 2005
@@ -54,6 +54,7 @@
 %endif
 Requires(triggerpostun):   sed = 4.0
 Requires(triggerpostun):   awk
+Requires:   %{name}-libs = %{version}-%{release}
 Requires:  db = %{ver_db}
 Requires:  openssl = 0.9.7d
 Requires:  rpm = %{ver_rpm}
@@ -299,6 +300,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.197.2.40  2005/09/22 11:55:45  qboosh
+- base requires equal version of -libs
+
 Revision 1.197.2.39  2005/09/22 09:51:15  charles
 - xml metadata indexes support is back, BR: libxml2-devel
 


 CVS-web:
http://cvs.pld-linux.org/SPECS/poldek.spec?r1=1.197.2.39r2=1.197.2.40f=u

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


SOURCES: kdegraphics-ui-fix.patch (NEW) - remove non-existing head...

2005-09-22 Thread qboosh
Author: qboosh   Date: Thu Sep 22 12:34:45 2005 GMT
Module: SOURCES   Tag: HEAD
 Log message:
- remove non-existing headers from *.ui (fixes build with uic from qt 3.3.5)

 Files affected:
SOURCES:
   kdegraphics-ui-fix.patch (NONE - 1.1)  (NEW)

 Diffs:


Index: SOURCES/kdegraphics-ui-fix.patch
diff -u /dev/null SOURCES/kdegraphics-ui-fix.patch:1.1
--- /dev/null   Thu Sep 22 14:34:45 2005
+++ SOURCES/kdegraphics-ui-fix.patchThu Sep 22 14:34:40 2005
@@ -0,0 +1,19 @@
+--- kdegraphics-3.4.2/ksnapshot/ksnapshotwidget.ui.orig2005-05-23 
14:06:04.0 +0200
 kdegraphics-3.4.2/ksnapshot/ksnapshotwidget.ui 2005-09-22 
13:28:15.0 +0200
+@@ -342,7 +342,6 @@
+ layoutdefaults spacing=6 margin=11/
+ layoutfunctions spacing=KDialog::spacingHint margin=KDialog::marginHint/
+ includehints
+-includehintksnapshotpreview.h/includehint
+ includehintkpushbutton.h/includehint
+ includehintkpushbutton.h/includehint
+ includehintkpushbutton.h/includehint
+--- kdegraphics-3.4.2/kviewshell/pageSizeWidget_base.ui.orig   2005-05-23 
14:06:06.0 +0200
 kdegraphics-3.4.2/kviewshell/pageSizeWidget_base.ui2005-09-22 
14:18:45.0 +0200
+@@ -284,6 +284,5 @@
+ includehintkcombobox.h/includehint
+ includehintkcombobox.h/includehint
+ includehintkcombobox.h/includehint
+-includehintsizepreview.h/includehint
+ /includehints
+ /UI

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


SPECS: kdegraphics.spec - removed BR resmgr-devel (was caused by l...

2005-09-22 Thread qboosh
Author: qboosh   Date: Thu Sep 22 12:37:07 2005 GMT
Module: SPECS Tag: HEAD
 Log message:
- removed BR resmgr-devel (was caused by libsane, fixed)
- added ui-fix patch (needed for qt 3.3.5)

 Files affected:
SPECS:
   kdegraphics.spec (1.152 - 1.153) 

 Diffs:


Index: SPECS/kdegraphics.spec
diff -u SPECS/kdegraphics.spec:1.152 SPECS/kdegraphics.spec:1.153
--- SPECS/kdegraphics.spec:1.152Wed Sep 21 03:50:35 2005
+++ SPECS/kdegraphics.spec  Thu Sep 22 14:37:02 2005
@@ -22,6 +22,7 @@
 # Source0-md5: 50916460952c4142329a7c6a47fe1530
 Patch100:  %{name}-branch.diff
 Patch0:kde-common-PLD.patch
+Patch1:%{name}-ui-fix.patch
 BuildRequires: OpenEXR-devel = 1.1.0
 BuildRequires: OpenGL-devel
 BuildRequires: ed
@@ -41,9 +42,8 @@
 BuildRequires: libxml2-devel
 BuildRequires: libxml2-progs
 BuildRequires: lockdev-devel
-BuildRequires: resmgr-devel
 BuildRequires: rpmbuild(macros) = 1.129
-BuildRequires: sane-backends-devel
+BuildRequires: sane-backends-devel = 1.0.16-3
 BuildRequires: rpmbuild(macros) = 1.129
 #BuildRequires:unsermake
 BuildConflicts:kdegraphics-mrml
@@ -525,6 +525,7 @@
 %setup -q
 %patch100 -p0
 %patch0 -p1
+%patch1 -p1
 
 %{__sed} -i -e 's/Categories=.*/Categories=Qt;KDE;Graphics;Viewer;/' \
kdvi/kdvi.desktop \
@@ -910,6 +911,10 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.153  2005/09/22 12:37:02  qboosh
+- removed BR resmgr-devel (was caused by libsane, fixed)
+- added ui-fix patch (needed for qt 3.3.5)
+
 Revision 1.152  2005/09/21 01:50:35  wolvverine
 - add BR
 


 CVS-web:
http://cvs.pld-linux.org/SPECS/kdegraphics.spec?r1=1.152r2=1.153f=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   3   4   5   6   7   8   9   10   >