pld-builder.new: PLD_Builder/buildlogs.py .bz2 suffix at the end.

2009-01-20 Thread arekm
Author: arekmDate: Tue Jan 20 08:01:09 2009 GMT
Module: pld-builder.new   Tag: HEAD
 Log message:
.bz2 suffix at the end.

 Files affected:
pld-builder.new/PLD_Builder:
   buildlogs.py (1.16 - 1.17) 

 Diffs:


Index: pld-builder.new/PLD_Builder/buildlogs.py
diff -u pld-builder.new/PLD_Builder/buildlogs.py:1.16 
pld-builder.new/PLD_Builder/buildlogs.py:1.17
--- pld-builder.new/PLD_Builder/buildlogs.py:1.16   Tue Jan 20 00:03:26 2009
+++ pld-builder.new/PLD_Builder/buildlogs.pyTue Jan 20 09:01:04 2009
@@ -21,8 +21,8 @@
 # if /dev/null, don't even bother to store it
 if config.buildlogs_url == /dev/null:
 return
-name = re.sub(r\.spec\.log, , os.path.basename(logfile)) + .bz2
 id = util.uuid()
+name = re.sub(r\.spec\.log, , os.path.basename(logfile)) + , + 
id + .bz2
 ret = os.system(bzip2 --best --force  %s  %s \
 % (logfile, path.buildlogs_queue_dir + id))
 if ret:
@@ -38,13 +38,13 @@
 
 def flush(self):
 def desc(l):
-return Target: %s/%s,%s
+return Target: %s/%s
 Builder: %s
 Time: %d
 Type: buildlog
 Requester: %s
 END
- % (config.buildlogs_url, l['name'], l['id'], config.builder, time.time(), 
self.requester_email)
+ % (config.buildlogs_url, l['name'], config.builder, time.time(), 
self.requester_email)
 
 for l in self.queue:
 f = open(path.buildlogs_queue_dir + l['id'] + .desc, w)


 CVS-web:

http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/pld-builder.new/PLD_Builder/buildlogs.py?r1=1.16r2=1.17f=u

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


pld-builder.new: PLD_Builder/buildlogs.py, PLD_Builder/build.py - use reque...

2009-01-20 Thread arekm
Author: arekmDate: Tue Jan 20 08:20:35 2009 GMT
Module: pld-builder.new   Tag: HEAD
 Log message:
- use request id

 Files affected:
pld-builder.new/PLD_Builder:
   buildlogs.py (1.17 - 1.18) , build.py (1.8 - 1.9) 

 Diffs:


Index: pld-builder.new/PLD_Builder/buildlogs.py
diff -u pld-builder.new/PLD_Builder/buildlogs.py:1.17 
pld-builder.new/PLD_Builder/buildlogs.py:1.18
--- pld-builder.new/PLD_Builder/buildlogs.py:1.17   Tue Jan 20 09:01:04 2009
+++ pld-builder.new/PLD_Builder/buildlogs.pyTue Jan 20 09:20:30 2009
@@ -17,11 +17,10 @@
 def init(self, g):
 self.requester_email = g.requester_email
 
-def add(self, logfile, failed):
+def add(self, logfile, failed, id):
 # if /dev/null, don't even bother to store it
 if config.buildlogs_url == /dev/null:
 return
-id = util.uuid()
 name = re.sub(r\.spec\.log, , os.path.basename(logfile)) + , + 
id + .bz2
 ret = os.system(bzip2 --best --force  %s  %s \
 % (logfile, path.buildlogs_queue_dir + id))


Index: pld-builder.new/PLD_Builder/build.py
diff -u pld-builder.new/PLD_Builder/build.py:1.8 
pld-builder.new/PLD_Builder/build.py:1.9
--- pld-builder.new/PLD_Builder/build.py:1.8Thu Feb 17 21:23:35 2005
+++ pld-builder.new/PLD_Builder/build.pyTue Jan 20 09:20:30 2009
@@ -67,13 +67,13 @@
 notify.add_batch(batch, OK)
 batch.build_time = stopwatch.stop()
 report.add_pld_builder_info(batch)
-buildlogs.add(batch.logfile, failed = batch.build_failed)
+buildlogs.add(batch.logfile, failed = batch.build_failed, 
id=r.id)
 else:
 log.notice(not running command, not for me.)
 batch.build_failed = 0
 batch.log_line(queued command %s for other builders % 
batch.command)
 r.some_ok = 1
-buildlogs.add(batch.logfile, failed = batch.build_failed)
+buildlogs.add(batch.logfile, failed = batch.build_failed, 
id=r.id)
 elif can_build:
 log.notice(building %s % batch.spec)
 stopwatch.start()
@@ -91,7 +91,7 @@
 notify.add_batch(batch, OK)
 batch.build_time = stopwatch.stop()
 report.add_pld_builder_info(batch)
-buildlogs.add(batch.logfile, failed = batch.build_failed)
+buildlogs.add(batch.logfile, failed = batch.build_failed, id=r.id)
 else:
 batch.build_failed = 1
 batch.skip_reason = SKIPED [%s failed] % failed_dep


 CVS-web:

http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/pld-builder.new/PLD_Builder/buildlogs.py?r1=1.17r2=1.18f=u

http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/pld-builder.new/PLD_Builder/build.py?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


pld-builder.new: PLD_Builder/buildlogs.py Ups, id fix.

2009-01-20 Thread arekm
Author: arekmDate: Tue Jan 20 08:27:18 2009 GMT
Module: pld-builder.new   Tag: HEAD
 Log message:
Ups, id fix.

 Files affected:
pld-builder.new/PLD_Builder:
   buildlogs.py (1.18 - 1.19) 

 Diffs:


Index: pld-builder.new/PLD_Builder/buildlogs.py
diff -u pld-builder.new/PLD_Builder/buildlogs.py:1.18 
pld-builder.new/PLD_Builder/buildlogs.py:1.19
--- pld-builder.new/PLD_Builder/buildlogs.py:1.18   Tue Jan 20 09:20:30 2009
+++ pld-builder.new/PLD_Builder/buildlogs.pyTue Jan 20 09:27:13 2009
@@ -55,9 +55,9 @@
 def init(r):
 queue.init(r)
 
-def add(logfile, failed):
+def add(logfile, failed, id):
 Add new buildlog with specified status.
-queue.add(logfile, failed)
+queue.add(logfile, failed, id)
 
 def flush():
 Send buildlogs to server.


 CVS-web:

http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/pld-builder.new/PLD_Builder/buildlogs.py?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


pld-builder.new: PLD_Builder/request.py Id-entified links.

2009-01-20 Thread arekm
Author: arekmDate: Tue Jan 20 08:29:53 2009 GMT
Module: pld-builder.new   Tag: HEAD
 Log message:
Id-entified links.

 Files affected:
pld-builder.new/PLD_Builder:
   request.py (1.46 - 1.47) 

 Diffs:


Index: pld-builder.new/PLD_Builder/request.py
diff -u pld-builder.new/PLD_Builder/request.py:1.46 
pld-builder.new/PLD_Builder/request.py:1.47
--- pld-builder.new/PLD_Builder/request.py:1.46 Sun Feb 24 15:05:59 2008
+++ pld-builder.new/PLD_Builder/request.py  Tue Jan 20 09:29:47 2009
@@ -214,13 +214,13 @@
 else:
 bl_name = self.spec[:len(self.spec)-5]
 lin_ar = b.replace('noauto-','')
-path = /%s/%s/%s.bz2 % (lin_ar.replace('-','/'), s, bl_name)
+path = /%s/%s/%s,%s.bz2 % (lin_ar.replace('-','/'), s, 
bl_name, b_id)
 is_ok = 0
 if s == OK:
 is_ok = 1
 bld = lin_ar.split('-')
-link_pre = a 
href=\http://buildlogs.pld-linux.org/index.php?dist=%sarch=%sok=%dname=%s\;
 \
- % (bld[0], bld[1], is_ok, bl_name)
+link_pre = a 
href=\http://buildlogs.pld-linux.org/index.php?dist=%sarch=%sok=%dname=%sid=%s\;
 \
+ % (bld[0], bld[1], is_ok, bl_name, b_id)
 link_post = /a
 builders.append(link_pre + (font color='%s'b%s:%s/b/font 
%
 (c, b, s)) + link_post)


 CVS-web:

http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/pld-builder.new/PLD_Builder/request.py?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


pld-builder.new: PLD_Builder/request.py Id fix.

2009-01-20 Thread arekm
Author: arekmDate: Tue Jan 20 08:31:55 2009 GMT
Module: pld-builder.new   Tag: HEAD
 Log message:
Id fix.

 Files affected:
pld-builder.new/PLD_Builder:
   request.py (1.47 - 1.48) 

 Diffs:


Index: pld-builder.new/PLD_Builder/request.py
diff -u pld-builder.new/PLD_Builder/request.py:1.47 
pld-builder.new/PLD_Builder/request.py:1.48
--- pld-builder.new/PLD_Builder/request.py:1.47 Tue Jan 20 09:29:47 2009
+++ pld-builder.new/PLD_Builder/request.py  Tue Jan 20 09:31:50 2009
@@ -214,13 +214,13 @@
 else:
 bl_name = self.spec[:len(self.spec)-5]
 lin_ar = b.replace('noauto-','')
-path = /%s/%s/%s,%s.bz2 % (lin_ar.replace('-','/'), s, 
bl_name, b_id)
+path = /%s/%s/%s,%s.bz2 % (lin_ar.replace('-','/'), s, 
bl_name, self.b_id)
 is_ok = 0
 if s == OK:
 is_ok = 1
 bld = lin_ar.split('-')
 link_pre = a 
href=\http://buildlogs.pld-linux.org/index.php?dist=%sarch=%sok=%dname=%sid=%s\;
 \
- % (bld[0], bld[1], is_ok, bl_name, b_id)
+ % (bld[0], bld[1], is_ok, bl_name, self.b_id)
 link_post = /a
 builders.append(link_pre + (font color='%s'b%s:%s/b/font 
%
 (c, b, s)) + link_post)


 CVS-web:

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

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


buildlogs: buildlogs2.sql/init.sql - Titanium added

2009-01-20 Thread duddits
Author: duddits  Date: Tue Jan 20 08:49:53 2009 GMT
Module: buildlogs Tag: HEAD
 Log message:
- Titanium added

 Files affected:
buildlogs/buildlogs2.sql:
   init.sql (1.1 - 1.2) 

 Diffs:


Index: buildlogs/buildlogs2.sql/init.sql
diff -u buildlogs/buildlogs2.sql/init.sql:1.1 
buildlogs/buildlogs2.sql/init.sql:1.2
--- buildlogs/buildlogs2.sql/init.sql:1.1   Tue Oct  3 20:32:27 2006
+++ buildlogs/buildlogs2.sql/init.sql   Tue Jan 20 09:49:48 2009
@@ -41,6 +41,10 @@
 INSERT INTO architectures VALUES (16,'ac/ppc');
 INSERT INTO architectures VALUES (17,'ac/sparc');
 INSERT INTO architectures VALUES (18,'ac/sparc64');
+INSERT INTO architectures VALUES (19,'ti/SRPMS');
+INSERT INTO architectures VALUES (20,'ti/i586');
+INSERT INTO architectures VALUES (21,'ti/i686');
+INSERT INTO architectures VALUES (22,'ti/x86_64');
 
 
 -- Table structure for table `logs`


 CVS-web:

http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/buildlogs/buildlogs2.sql/init.sql?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


pld-builder.new: PLD_Builder/request.py gb_id?

2009-01-20 Thread arekm
Author: arekmDate: Tue Jan 20 08:51:55 2009 GMT
Module: pld-builder.new   Tag: HEAD
 Log message:
gb_id?

 Files affected:
pld-builder.new/PLD_Builder:
   request.py (1.48 - 1.49) 

 Diffs:


Index: pld-builder.new/PLD_Builder/request.py
diff -u pld-builder.new/PLD_Builder/request.py:1.48 
pld-builder.new/PLD_Builder/request.py:1.49
--- pld-builder.new/PLD_Builder/request.py:1.48 Tue Jan 20 09:31:50 2009
+++ pld-builder.new/PLD_Builder/request.py  Tue Jan 20 09:51:50 2009
@@ -214,13 +214,13 @@
 else:
 bl_name = self.spec[:len(self.spec)-5]
 lin_ar = b.replace('noauto-','')
-path = /%s/%s/%s,%s.bz2 % (lin_ar.replace('-','/'), s, 
bl_name, self.b_id)
+path = /%s/%s/%s,%s.bz2 % (lin_ar.replace('-','/'), s, 
bl_name, self.gb_id)
 is_ok = 0
 if s == OK:
 is_ok = 1
 bld = lin_ar.split('-')
 link_pre = a 
href=\http://buildlogs.pld-linux.org/index.php?dist=%sarch=%sok=%dname=%sid=%s\;
 \
- % (bld[0], bld[1], is_ok, bl_name, self.b_id)
+ % (bld[0], bld[1], is_ok, bl_name, self.gb_id)
 link_post = /a
 builders.append(link_pre + (font color='%s'b%s:%s/b/font 
%
 (c, b, s)) + link_post)


 CVS-web:

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

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


pld-builder.new: PLD_Builder/request.py Use r.id from Group.

2009-01-20 Thread arekm
Author: arekmDate: Tue Jan 20 08:54:36 2009 GMT
Module: pld-builder.new   Tag: HEAD
 Log message:
Use r.id from Group.

 Files affected:
pld-builder.new/PLD_Builder:
   request.py (1.49 - 1.50) 

 Diffs:


Index: pld-builder.new/PLD_Builder/request.py
diff -u pld-builder.new/PLD_Builder/request.py:1.49 
pld-builder.new/PLD_Builder/request.py:1.50
--- pld-builder.new/PLD_Builder/request.py:1.49 Tue Jan 20 09:51:50 2009
+++ pld-builder.new/PLD_Builder/request.py  Tue Jan 20 09:54:31 2009
@@ -93,7 +93,7 @@
  self.id, self.priority, string.join(self.flags)))
 f.write(ul\n)
 for b in self.batches:
-b.dump_html(f)
+b.dump_html(f, self.id)
 f.write(/ul\n)
 f.write(/p\n)
 
@@ -187,7 +187,7 @@
 def is_command(self):
 return self.command != 
 
-def dump_html(self, f):
+def dump_html(self, f, rid):
 f.write(li\n)
 if self.is_command():
 desc = SH: %s [%s] % (self.command, ' '.join(self.command_flags))
@@ -214,13 +214,13 @@
 else:
 bl_name = self.spec[:len(self.spec)-5]
 lin_ar = b.replace('noauto-','')
-path = /%s/%s/%s,%s.bz2 % (lin_ar.replace('-','/'), s, 
bl_name, self.gb_id)
+path = /%s/%s/%s,%s.bz2 % (lin_ar.replace('-','/'), s, 
bl_name, rid)
 is_ok = 0
 if s == OK:
 is_ok = 1
 bld = lin_ar.split('-')
 link_pre = a 
href=\http://buildlogs.pld-linux.org/index.php?dist=%sarch=%sok=%dname=%sid=%s\;
 \
- % (bld[0], bld[1], is_ok, bl_name, self.gb_id)
+ % (bld[0], bld[1], is_ok, bl_name, rid)
 link_post = /a
 builders.append(link_pre + (font color='%s'b%s:%s/b/font 
%
 (c, b, s)) + link_post)


 CVS-web:

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

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


SPECS: rt.spec - first try to switch to webapps, just for apache, so R: apa...

2009-01-20 Thread paszczus
Author: paszczus Date: Tue Jan 20 09:25:33 2009 GMT
Module: SPECS Tag: HEAD
 Log message:
- first try to switch to webapps, just for apache, so R: apache-base

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

 Diffs:


Index: SPECS/rt.spec
diff -u SPECS/rt.spec:1.68 SPECS/rt.spec:1.69
--- SPECS/rt.spec:1.68  Mon Jan 19 09:52:30 2009
+++ SPECS/rt.spec   Tue Jan 20 10:25:28 2009
@@ -40,7 +40,7 @@
 Summary(pl.UTF-8): Request Tracker - system do śledzenia zleceń
 Name:  rt
 Version:   3.8.2
-Release:   1
+Release:   1.1
 License:   GPL v2
 Group: Applications
 Source0:   
http://download.bestpractical.com/pub/rt/release/%{name}-%{version}.tar.gz
@@ -115,6 +115,7 @@
 BuildRequires: perl-XML-RSS = %{perl_xml_rss_ver}
 BuildRequires: perl-base = 5.8.0
 BuildRequires: perl-libnet
+Requires:  apache-base = 2.2.0
 Requires:  perl-Apache-Session = %{perl_apache_session_ver}
 Requires:  perl-CGI = %{perl_cgi_ver}
 Requires:  perl-CSS-Squish = %{perl_css_squish_ver}
@@ -154,6 +155,9 @@
 %define_noautoreq  'perl().*' 'perl(RT.*)' 
'perl(Encode::compat)' 'perl(CGI::Fast)' 'perl(Exception::Class::Base)'
 # workarounds for bug in perl.req (perl()) and ,,famous'' rpm's feature 
(RT::*)
 
+%define _webapps/etc/webapps
+%define _webapp %{name}
+%define _webappsdir %{_webapps}/%{_webapp}
 %define_sysconfdir /etc/rt3
 %define_libdir %{perl_vendorlib}
 %definehtmldir %{_datadir}/rt3/html
@@ -217,12 +221,12 @@
 rm -rf $RPM_BUILD_ROOT
 install -d $RPM_BUILD_ROOT%{_libdir} \
$RPM_BUILD_ROOT%{masonstatedir} \
-   $RPM_BUILD_ROOT%{_examplesdir}/%{name}-%{version}
+   $RPM_BUILD_ROOT%{_webappsdir}
 
 %{__make} install \
DESTDIR=$RPM_BUILD_ROOT
 
-install %{SOURCE1} %{SOURCE2} $RPM_BUILD_ROOT%{_examplesdir}/%{name}-%{version}
+cat %{SOURCE1} %{SOURCE2}  $RPM_BUILD_ROOT%{_webappsdir}/httpd.conf
 
 # unneeded in installed copy
 rm -f $RPM_BUILD_ROOT%{_sbindir}/rt-test-dependencies
@@ -230,14 +234,21 @@
 # *.in, tests
 find $RPM_BUILD_ROOT -type f -name \*.in -exec rm '{}' \;
 
+%triggerin -- apache  2.2.0, apache-base
+%webapp_register httpd %{_webapp}
+
+%triggerun -- apache  2.2.0, apache-base
+%webapp_unregister httpd %{_webapp}
+
 %clean
 rm -rf $RPM_BUILD_ROOT
 
 %files
 %defattr(644,root,root,755)
 %doc README* UPGRADING docs
-%dir %{_sysconfdir}
+%dir %attr(750,root,http) %{_sysconfdir}
 %attr(640,root,http) %config(noreplace) %verify(not md5 mtime size) 
%{_sysconfdir}/*
+%attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) 
%{_webappsdir}/httpd.conf
 %attr(755,root,root) %{_bindir}/mason_handler.*
 %attr(755,root,root) %{_bindir}/rt-*
 %attr(755,root,root) %{_bindir}/standalone_httpd
@@ -247,7 +258,6 @@
 %{_datadir}/rt3/html
 %{_libdir}/*
 %dir %attr(770,root,http) %{masonstatedir}
-%{_examplesdir}/%{name}-%{version}
 
 %files cli
 %defattr(644,root,root,755)
@@ -259,6 +269,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.69  2009/01/20 09:25:28  paszczus
+- first try to switch to webapps, just for apache, so R: apache-base
+
 Revision 1.68  2009/01/19 08:52:30  paszczus
 - and one more R: perl-PerlIO-eol
 


 CVS-web:

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

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


SPECS: rt.spec - added %dir for webapps

2009-01-20 Thread paszczus
Author: paszczus Date: Tue Jan 20 09:50:51 2009 GMT
Module: SPECS Tag: HEAD
 Log message:
- added %dir for webapps

 Files affected:
SPECS:
   rt.spec (1.69 - 1.70) 

 Diffs:


Index: SPECS/rt.spec
diff -u SPECS/rt.spec:1.69 SPECS/rt.spec:1.70
--- SPECS/rt.spec:1.69  Tue Jan 20 10:25:28 2009
+++ SPECS/rt.spec   Tue Jan 20 10:50:46 2009
@@ -246,8 +246,9 @@
 %files
 %defattr(644,root,root,755)
 %doc README* UPGRADING docs
-%dir %attr(750,root,http) %{_sysconfdir}
+%dir %{_sysconfdir}
 %attr(640,root,http) %config(noreplace) %verify(not md5 mtime size) 
%{_sysconfdir}/*
+%dir %attr(750,root,http) %{_webappsdir}
 %attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) 
%{_webappsdir}/httpd.conf
 %attr(755,root,root) %{_bindir}/mason_handler.*
 %attr(755,root,root) %{_bindir}/rt-*
@@ -269,6 +270,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.70  2009/01/20 09:50:46  paszczus
+- added %dir for webapps
+
 Revision 1.69  2009/01/20 09:25:28  paszczus
 - first try to switch to webapps, just for apache, so R: apache-base
 


 CVS-web:

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

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


SOURCES: rt-apache.conf (NEW) - working conf for apache2, thx arekm

2009-01-20 Thread paszczus
Author: paszczus Date: Tue Jan 20 10:07:44 2009 GMT
Module: SOURCES   Tag: HEAD
 Log message:
- working conf for apache2, thx arekm

 Files affected:
SOURCES:
   rt-apache.conf (NONE - 1.1)  (NEW)

 Diffs:


Index: SOURCES/rt-apache.conf
diff -u /dev/null SOURCES/rt-apache.conf:1.1
--- /dev/null   Tue Jan 20 11:07:45 2009
+++ SOURCES/rt-apache.conf  Tue Jan 20 11:07:39 2009
@@ -0,0 +1,32 @@
+DocumentRoot /usr/share/rt3/html
+
+Alias /NoAuth/images/ /usr/share/rt3/html/NoAuth/images/
+Alias /error/ /home/services/httpd/error/
+#AddHandler fastcgi-script fcgi
+#ScriptAlias / /usr/bin/mason_handler.fcgi/
+AddDefaultCharset UTF-8
+
+PerlModule Apache2::compat
+
+PerlModule Apache::DBI
+PerlRequire /usr/bin/webmux.pl
+
+Location /error
+/Location
+
+Location /
+#AuthUserFile /usr/share/rt3/html
+#AuthGroupFile /dev/null
+#AuthName Strefa-admin
+#AuthType Basic
+AddDefaultCharset UTF-8
+Options ExecCGI
+
+# SetHandler default
+
+#   RewriteEngine On
+#   RedirectMatch permanent (.*)/$ $1/index.html
+
+SetHandler perl-script
+PerlHandler RT::Mason
+/Location

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


SOURCES: rt-apache.conf - added Order

2009-01-20 Thread paszczus
Author: paszczus Date: Tue Jan 20 10:21:03 2009 GMT
Module: SOURCES   Tag: HEAD
 Log message:
- added Order

 Files affected:
SOURCES:
   rt-apache.conf (1.1 - 1.2) 

 Diffs:


Index: SOURCES/rt-apache.conf
diff -u SOURCES/rt-apache.conf:1.1 SOURCES/rt-apache.conf:1.2
--- SOURCES/rt-apache.conf:1.1  Tue Jan 20 11:07:39 2009
+++ SOURCES/rt-apache.conf  Tue Jan 20 11:20:57 2009
@@ -1,3 +1,12 @@
+Directory /usr/share/rt3/html
+   AllowOverride all
+   #ExecCGI on 

 
+   IfModule mod_authz_host.c
+   Order allow,deny
+   Allow from all
+   /IfModule
+/Directory
+
 DocumentRoot /usr/share/rt3/html
 
 Alias /NoAuth/images/ /usr/share/rt3/html/NoAuth/images/


 CVS-web:

http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/SOURCES/rt-apache.conf?r1=1.1r2=1.2f=u

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


SOURCES: syslog-ng.init - when checking syntax: - don't fork; - don't overw...

2009-01-20 Thread arekm
Author: arekmDate: Tue Jan 20 10:39:32 2009 GMT
Module: SOURCES   Tag: HEAD
 Log message:
- when checking syntax: - don't fork; - don't overwrite pid file

 Files affected:
SOURCES:
   syslog-ng.init (1.21 - 1.22) 

 Diffs:


Index: SOURCES/syslog-ng.init
diff -u SOURCES/syslog-ng.init:1.21 SOURCES/syslog-ng.init:1.22
--- SOURCES/syslog-ng.init:1.21 Fri Jan 16 15:10:28 2009
+++ SOURCES/syslog-ng.init  Tue Jan 20 11:39:26 2009
@@ -22,7 +22,7 @@
 fi
 
 configtest() {
-   syslog-ng $OPTIONS -s || exit 1
+   syslog-ng $OPTIONS -F -s -p /var/run/syslog-ng-syntaxcheck.pid || exit 1
 }
 
 start() {


 CVS-web:

http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/SOURCES/syslog-ng.init?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: pam-pam_usb.spec (NEW) - new

2009-01-20 Thread zbyniu
Author: zbyniu   Date: Tue Jan 20 10:40:25 2009 GMT
Module: SPECS Tag: HEAD
 Log message:
- new

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

 Diffs:


Index: SPECS/pam-pam_usb.spec
diff -u /dev/null SPECS/pam-pam_usb.spec:1.1
--- /dev/null   Tue Jan 20 11:40:25 2009
+++ SPECS/pam-pam_usb.spec  Tue Jan 20 11:40:20 2009
@@ -0,0 +1,53 @@
+# $Revision$, $Date$
+%definemodulename pam_usb
+Summary:   A PAM module that provides hardware authentication using USB 
Flash Drives
+Name:  pam-%{modulename}
+Version:   0.4.2
+Release:   1
+License:   LGPL
+Group: Base
+Source0:   http://dl.sourceforge.net/pamusb/%{modulename}-%{version}.tar.gz
+# Source0-md5: 2320b752dd0b030dfbb0a3935e7dc899
+URL:   http://pamusb.org/
+BuildRequires: hal-devel
+Requires:  hal
+Requires:  pmount
+BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
+
+%description
+A PAM module that provides hardware authentication using USB Flash Drives.
+
+%prep
+%setup -q -n %{modulename}-%{version}
+
+%build
+CFLAGS=%{rpmcflags} -DPUSB_CONF_FILE=\/etc/security/pamusb.conf\ \
+%{__make} \
+   CC=%{__cc}
+
+%install
+rm -rf $RPM_BUILD_ROOT
+%{__make} install \
+   DESTDIR=$RPM_BUILD_ROOT
+rm -rf $RPM_BUILD_ROOT/%{_docdir}/pamusb
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%files
+%defattr(644,root,root,755)
+%doc ChangeLog doc/CONFIGURATION doc/FAQ doc/QUICKSTART doc/UPGRADING
+%attr(755,root,root) /%{_lib}/security/pam_usb.so
+%attr(755,root,root) %{_bindir}/pamusb-*
+%config(noreplace) %verify(not md5 mtime size) /etc/pamusb.conf
+%{_mandir}/man1/pamusb-*
+
+%define date   %(echo `LC_ALL=C date +%a %b %d %Y`)
+%changelog
+* %{date} PLD Team feedb...@pld-linux.org
+All persons listed below can be reached at cvs_login@pld-linux.org
+
+$Log$
+Revision 1.1  2009/01/20 10:40:20  zbyniu
+- new
+

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


SPECS: syslog-ng.spec - rel 4; fix configtest (and syslog-ng restart)

2009-01-20 Thread arekm
Author: arekmDate: Tue Jan 20 10:40:27 2009 GMT
Module: SPECS Tag: HEAD
 Log message:
- rel 4; fix configtest (and syslog-ng restart)

 Files affected:
SPECS:
   syslog-ng.spec (1.157 - 1.158) 

 Diffs:


Index: SPECS/syslog-ng.spec
diff -u SPECS/syslog-ng.spec:1.157 SPECS/syslog-ng.spec:1.158
--- SPECS/syslog-ng.spec:1.157  Sun Jan 18 19:40:23 2009
+++ SPECS/syslog-ng.specTue Jan 20 11:40:21 2009
@@ -9,7 +9,7 @@
 Summary(pt_BR.UTF-8):  Daemon de log nova geração
 Name:  syslog-ng
 Version:   3.0.1
-Release:   3
+Release:   4
 License:   GPL v2
 Group: Daemons
 Source0:   
http://www.balabit.com/downloads/files/syslog-ng/sources/3.0.1/source/%{name}_%{version}.tar.gz
@@ -190,6 +190,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.158  2009/01/20 10:40:21  arekm
+- rel 4; fix configtest (and syslog-ng restart)
+
 Revision 1.157  2009/01/18 18:40:23  arekm
 - rel 3; add trigger
 


 CVS-web:

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

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


buildlogs: helpers/buildlogs-mover.sh - moving to prevOK dir no longer need...

2009-01-20 Thread duddits
Author: duddits  Date: Tue Jan 20 10:26:47 2009 GMT
Module: buildlogs Tag: HEAD
 Log message:
- moving to prevOK dir no longer needed, logs are now kept endlessly
(at least as long as there is some space left on a device :))

 Files affected:
buildlogs/helpers:
   buildlogs-mover.sh (1.7 - 1.8) 

 Diffs:


Index: buildlogs/helpers/buildlogs-mover.sh
diff -u buildlogs/helpers/buildlogs-mover.sh:1.7 
buildlogs/helpers/buildlogs-mover.sh:1.8
--- buildlogs/helpers/buildlogs-mover.sh:1.7Mon Dec 24 12:39:45 2007
+++ buildlogs/helpers/buildlogs-mover.shTue Jan 20 11:26:42 2009
@@ -9,7 +9,6 @@
 #   .new/
 #   OK/
 #   FAIL/
-#   prevOK/
 #
 # Note that we look for root/*/*/.new/*.info, so don't place any additional
 # directories there.
@@ -51,10 +50,6 @@
 archdir=$(dirname $(dirname $info))
 file=$(basename $info .info)
 if test -f $archdir/.new/$file; then
-   if test -f $archdir/OK/$file ; then
-   mv -f $archdir/OK/$file $archdir/prevOK/$file
-   fi
-   rm -f $archdir/{OK,FAIL}/$file
mv -f $archdir/.new/$file $archdir/$s/$file
$ADDLOG $archdir/$s/$file
rm $info 2/dev/null


 CVS-web:

http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/buildlogs/helpers/buildlogs-mover.sh?r1=1.7r2=1.8f=u

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


DISTFILES: pam_usb-0.4.2.tar.gz

2009-01-20 Thread zbyniu

Files fetched: 1

STORED: http://master.dl.sourceforge.net/pamusb/pam_usb-0.4.2.tar.gz
2320b752dd0b030dfbb0a3935e7dc899  pam_usb-0.4.2.tar.gz
Size: 33952 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: rt.spec - use working conf as default for webapps - old configs bac...

2009-01-20 Thread paszczus
Author: paszczus Date: Tue Jan 20 10:22:55 2009 GMT
Module: SPECS Tag: HEAD
 Log message:
- use working conf as default  for webapps
- old configs back to /usr/src/examples
- added apache modules Requires
- rel 1.2

 Files affected:
SPECS:
   rt.spec (1.70 - 1.71) 

 Diffs:


Index: SPECS/rt.spec
diff -u SPECS/rt.spec:1.70 SPECS/rt.spec:1.71
--- SPECS/rt.spec:1.70  Tue Jan 20 10:50:46 2009
+++ SPECS/rt.spec   Tue Jan 20 11:22:49 2009
@@ -40,13 +40,14 @@
 Summary(pl.UTF-8): Request Tracker - system do śledzenia zleceń
 Name:  rt
 Version:   3.8.2
-Release:   1.1
+Release:   1.2
 License:   GPL v2
 Group: Applications
 Source0:   
http://download.bestpractical.com/pub/rt/release/%{name}-%{version}.tar.gz
 # Source0-md5: 100b1fd791e229c4338c0d056c65c12f
 Source1:   %{name}-apache_dir.conf
 Source2:   %{name}-apache_vhost.conf
+Source3:   %{name}-apache.conf
 Patch0:%{name}-layout.patch
 Patch1:%{name}-config.patch
 URL:   http://www.bestpractical.com/rt/
@@ -116,6 +117,9 @@
 BuildRequires: perl-base = 5.8.0
 BuildRequires: perl-libnet
 Requires:  apache-base = 2.2.0
+Requires:  apache-mod_authz_host = 2.2.0
+Requires:  apache-mod_perl = 2.0
+Requires:  perl-Apache-DBI
 Requires:  perl-Apache-Session = %{perl_apache_session_ver}
 Requires:  perl-CGI = %{perl_cgi_ver}
 Requires:  perl-CSS-Squish = %{perl_css_squish_ver}
@@ -221,12 +225,14 @@
 rm -rf $RPM_BUILD_ROOT
 install -d $RPM_BUILD_ROOT%{_libdir} \
$RPM_BUILD_ROOT%{masonstatedir} \
+   $RPM_BUILD_ROOT%{_examplesdir}/%{name}-%{version} \
$RPM_BUILD_ROOT%{_webappsdir}
 
 %{__make} install \
DESTDIR=$RPM_BUILD_ROOT
 
-cat %{SOURCE1} %{SOURCE2}  $RPM_BUILD_ROOT%{_webappsdir}/httpd.conf
+install %{SOURCE1} %{SOURCE2} $RPM_BUILD_ROOT%{_examplesdir}/%{name}-%{version}
+install %{SOURCE3} $RPM_BUILD_ROOT%{_webappsdir}/httpd.conf
 
 # unneeded in installed copy
 rm -f $RPM_BUILD_ROOT%{_sbindir}/rt-test-dependencies
@@ -259,6 +265,7 @@
 %{_datadir}/rt3/html
 %{_libdir}/*
 %dir %attr(770,root,http) %{masonstatedir}
+%{_examplesdir}/%{name}-%{version}
 
 %files cli
 %defattr(644,root,root,755)
@@ -270,6 +277,12 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.71  2009/01/20 10:22:49  paszczus
+- use working conf as default  for webapps
+- old configs back to /usr/src/examples
+- added apache modules Requires
+- rel 1.2
+
 Revision 1.70  2009/01/20 09:50:46  paszczus
 - added %dir for webapps
 


 CVS-web:

http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/SPECS/rt.spec?r1=1.70r2=1.71f=u

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


SPECS: poldek-repos-mirror-task.spec (NEW) - initial - sample package with ...

2009-01-20 Thread blues
Author: bluesDate: Tue Jan 20 11:08:12 2009 GMT
Module: SPECS Tag: HEAD
 Log message:
- initial - sample package with mirror and alternative repos. RFC

 Files affected:
SPECS:
   poldek-repos-mirror-task.spec (NONE - 1.1)  (NEW)

 Diffs:


Index: SPECS/poldek-repos-mirror-task.spec
diff -u /dev/null SPECS/poldek-repos-mirror-task.spec:1.1
--- /dev/null   Tue Jan 20 12:08:12 2009
+++ SPECS/poldek-repos-mirror-task.spec Tue Jan 20 12:08:07 2009
@@ -0,0 +1,87 @@
+# $Revision$, $Date$
+%definemirror  task
+Summary:   Mirror source for poldek
+Name:  poldek-repos-mirror-%{mirror}
+Version:   2.99
+Release:   0.9
+License:   GPL v2+
+Group: Applications/System
+Source0:   %{name}.conf
+Source1:   %{name}-multilib.conf
+URL:   http://poldek.pld-linux.org/
+BuildRequires: sed
+Requires:  poldek
+Provides:  poldek-source-main
+BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
+
+%define_sysconfdir /etc/poldek/repos.d
+
+%description
+Mirror source for poldek.
+
+%package multilib
+Summary:   Mirror multilib source for poldek
+Group: Applications/System
+Requires:  %{name} = %{version}-%{release}
+Provides:  poldek-source-multilib
+
+%description multilib
+Mirror multilib source for poldek.
+
+%prep
+%setup -q -c -T
+
+%install
+rm -rf $RPM_BUILD_ROOT
+install -d $RPM_BUILD_ROOT%{_sysconfdir}
+
+%ifarch i486 i686 ppc sparc alpha athlon
+%define_ftp_arch   %{_target_cpu}
+%endif
+%ifarch %{x8664}
+%define_ftp_arch   x86_64
+%define_ftp_alt_arch   i686
+%endif
+%ifarch i586
+%if %{pld_release} == ti
+%define_ftp_arch   i586
+%else
+%define_ftp_arch   i486
+%endif
+%endif
+%ifarch pentium2 pentium3 pentium4
+%define_ftp_arch   i686
+%endif
+%ifarch sparcv9 sparc64
+%define_ftp_arch   sparc
+%endif
+
+sed -e '
+   s|%%ARCH%%|%{_ftp_arch}|g
+'  %{SOURCE0}  $RPM_BUILD_ROOT%{_sysconfdir}/mirror-%{mirror}.conf
+
+%ifarch %{x8664}
+sed '
+   s|%%ARCH%%|%{_ftp_alt_arch}|g
+'  %{SOURCE1}  $RPM_BUILD_ROOT%{_sysconfdir}/mirror-%{mirror}-multilib.conf
+%endif
+
+%files 
+%defattr(644,root,root,755)
+%config(noreplace) %verify(not md5 mtime size) 
%{_sysconfdir}/mirror-%{mirror}.conf
+
+%ifarch %{x8664}
+%files multilib
+%defattr(644,root,root,755)
+%config(noreplace) %verify(not md5 mtime size) 
%{_sysconfdir}/mirror-%{mirror}-multilib.conf
+%endif
+
+%define date   %(echo `LC_ALL=C date +%a %b %d %Y`)
+%changelog
+* %{date} PLD Team feedb...@pld-linux.org
+All persons listed below can be reached at cvs_login@pld-linux.org
+
+$Log$
+Revision 1.1  2009/01/20 11:08:07  blues
+- initial - sample package with mirror and alternative repos. RFC
+

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


SOURCES: poldek-repos-mirror-task.conf (NEW), poldek-repos-mirror-task-mult...

2009-01-20 Thread blues
Author: bluesDate: Tue Jan 20 11:08:14 2009 GMT
Module: SOURCES   Tag: HEAD
 Log message:
- initial - sample package with mirror and alternative repos. RFC

 Files affected:
SOURCES:
   poldek-repos-mirror-task.conf (NONE - 1.1)  (NEW), 
poldek-repos-mirror-task-multilib.conf (NONE - 1.1)  (NEW)

 Diffs:


Index: SOURCES/poldek-repos-mirror-task.conf
diff -u /dev/null SOURCES/poldek-repos-mirror-task.conf:1.1
--- /dev/null   Tue Jan 20 12:08:15 2009
+++ SOURCES/poldek-repos-mirror-task.conf   Tue Jan 20 12:08:08 2009
@@ -0,0 +1,17 @@
+# PLD Linux Distribution http://www.pld-linux.org/.
+
+_arch   = %ARCH%
+_prefix = ftp://ftp.task.pld-linux.org/dists/th
+
+_type = pndir
+
+[source]
+type   = %{_type}
+name   = th
+path   = %{_prefix}/PLD/%{_arch}/RPMS/
+
+[source]
+type   = %{_type}
+name   = th
+path   = %{_prefix}/PLD/noarch/RPMS/
+


Index: SOURCES/poldek-repos-mirror-task-multilib.conf
diff -u /dev/null SOURCES/poldek-repos-mirror-task-multilib.conf:1.1
--- /dev/null   Tue Jan 20 12:08:16 2009
+++ SOURCES/poldek-repos-mirror-task-multilib.conf  Tue Jan 20 12:08:08 2009
@@ -0,0 +1,13 @@
+# Alternative multilib PLD 3.0 (Th)
+_arch   = %ARCH%
+_prefix = ftp://ftp.task.pld-linux.org/dists/th
+
+_type = pndir
+
+[source]
+type   = %{_type}
+name   = th-%{_arch}
+path   = %{_prefix}/PLD/%{_arch}/RPMS/
+auto   = no
+autoup = no
+

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


SOURCES: pciutils-pcimodules.patch - updated

2009-01-20 Thread arekm
Author: arekmDate: Tue Jan 20 11:16:43 2009 GMT
Module: SOURCES   Tag: HEAD
 Log message:
- updated

 Files affected:
SOURCES:
   pciutils-pcimodules.patch (1.4 - 1.5) 

 Diffs:


Index: SOURCES/pciutils-pcimodules.patch
diff -u SOURCES/pciutils-pcimodules.patch:1.4 
SOURCES/pciutils-pcimodules.patch:1.5
--- SOURCES/pciutils-pcimodules.patch:1.4   Fri May 16 17:54:43 2008
+++ SOURCES/pciutils-pcimodules.patch   Tue Jan 20 12:16:38 2009
@@ -14,7 +14,7 @@
cd lib  ./configure
  
 +pcimodules: pcimodules.o common.o lib/$(PCILIB)
- lspci: lspci.o common.o lib/$(PCILIB)
+ lspci: lspci.o ls-vpd.o ls-caps.o ls-ecaps.o ls-kernel.o ls-tree.o ls-map.o 
common.o lib/$(PCILIB)
  setpci: setpci.o common.o lib/$(PCILIB)
  
 --- pciutils-2.1.11/pcimodules.c.pix   2003-01-04 23:06:00.0 +0100


 CVS-web:

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


DISTFILES: pciutils-3.1.0.tar.gz pciutils-non-english-man-pages.tar.bz2

2009-01-20 Thread arekm

Files fetched: 1

STORED: ftp://atrey.karlin.mff.cuni.cz/pub/linux/pci/pciutils-3.1.0.tar.gz
4b6e4f2b107a534b21c22400f5db9bf4  pciutils-3.1.0.tar.gz
Size: 290333 bytes
ALREADY GOT: 
http://www.mif.pg.gda.pl/homepages/ankry/man-PLD/pciutils-non-english-man-pages.tar.bz2
1ac48f433b1995044e14c24513992211  pciutils-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: pciutils.spec - up to 3.1.0

2009-01-20 Thread arekm
Author: arekmDate: Tue Jan 20 11:17:14 2009 GMT
Module: SPECS Tag: HEAD
 Log message:
- up to 3.1.0

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

 Diffs:


Index: SPECS/pciutils.spec
diff -u SPECS/pciutils.spec:1.108 SPECS/pciutils.spec:1.109
--- SPECS/pciutils.spec:1.108   Thu Nov 27 19:53:07 2008
+++ SPECS/pciutils.spec Tue Jan 20 12:17:08 2009
@@ -17,16 +17,16 @@
 Summary(uk.UTF-8): Утиліти роботи з PCI пристроями
 Summary(zh_CN.UTF-8):  PCI 总线相关的工具。
 Name:  pciutils
-Version:   3.0.3
-Release:   2
+Version:   3.1.0
+Release:   1
 License:   GPL v2+
 Group: Applications/System
 Source0:   
ftp://atrey.karlin.mff.cuni.cz/pub/linux/pci/%{name}-%{version}.tar.gz
-# Source0-md5: d07da501bb11e6af40acd036536c2e9a
+# Source0-md5: 4b6e4f2b107a534b21c22400f5db9bf4
 Source1:   
http://www.mif.pg.gda.pl/homepages/ankry/man-PLD/%{name}-non-english-man-pages.tar.bz2
 # Source1-md5: 1ac48f433b1995044e14c24513992211
 Source2:   http://pciids.sourceforge.net/pci.ids
-# NoSource2-md5:   
+# NoSource2-md5:   a44ba17a1d04299d8584546efe995d06
 Patch0:%{name}-pci_h.patch
 Patch1:%{name}-pcimodules.patch
 Patch2:%{name}-nowhich.patch
@@ -356,6 +356,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.109  2009/01/20 11:17:08  arekm
+- up to 3.1.0
+
 Revision 1.108  2008/11/27 18:53:07  pawelz
 - rel 2
 


 CVS-web:

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

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


SPECS: curl.spec - up to 7.19.3

2009-01-20 Thread arekm
Author: arekmDate: Tue Jan 20 11:20:36 2009 GMT
Module: SPECS Tag: HEAD
 Log message:
- up to 7.19.3

 Files affected:
SPECS:
   curl.spec (1.161 - 1.162) 

 Diffs:


Index: SPECS/curl.spec
diff -u SPECS/curl.spec:1.161 SPECS/curl.spec:1.162
--- SPECS/curl.spec:1.161   Sat Dec 27 09:29:18 2008
+++ SPECS/curl.spec Tue Jan 20 12:20:31 2009
@@ -14,12 +14,12 @@
 Summary(ru.UTF-8): Утилита для получения файлов с серверов FTP, HTTP и 
других
 Summary(uk.UTF-8): Утиліта для отримання файлів з серверів FTP, HTTP та 
інших
 Name:  curl
-Version:   7.19.2
-Release:   2
+Version:   7.19.3
+Release:   1
 License:   MIT-like
 Group: Applications/Networking
 Source0:   http://curl.haxx.se/download/%{name}-%{version}.tar.bz2
-# Source0-md5: 3a461b145a4a31fe7d5a44684e7fbdbc
+# Source0-md5: 10eb8c13350c735eff20d7b4530be8cd
 Patch0:%{name}-no_strip.patch
 Patch1:%{name}-ac.patch
 Patch2:%{name}-pc.patch
@@ -250,6 +250,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.162  2009/01/20 11:20:31  arekm
+- up to 7.19.3
+
 Revision 1.161  2008/12/27 08:29:18  qboosh
 - added krb5flags patch to avoid including CFLAGS in curl --libs
 - release 2


 CVS-web:

http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/SPECS/curl.spec?r1=1.161r2=1.162f=u

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


DISTFILES: curl-7.19.3.tar.bz2

2009-01-20 Thread arekm

Files fetched: 1

STORED: http://curl.haxx.se/download/curl-7.19.3.tar.bz2
10eb8c13350c735eff20d7b4530be8cd  curl-7.19.3.tar.bz2
Size: 2238923 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: pciutils.spec - source2 keept in cvs

2009-01-20 Thread arekm
Author: arekmDate: Tue Jan 20 11:22:01 2009 GMT
Module: SPECS Tag: HEAD
 Log message:
- source2 keept in cvs

 Files affected:
SPECS:
   pciutils.spec (1.109 - 1.110) 

 Diffs:


Index: SPECS/pciutils.spec
diff -u SPECS/pciutils.spec:1.109 SPECS/pciutils.spec:1.110
--- SPECS/pciutils.spec:1.109   Tue Jan 20 12:17:08 2009
+++ SPECS/pciutils.spec Tue Jan 20 12:21:56 2009
@@ -26,7 +26,6 @@
 Source1:   
http://www.mif.pg.gda.pl/homepages/ankry/man-PLD/%{name}-non-english-man-pages.tar.bz2
 # Source1-md5: 1ac48f433b1995044e14c24513992211
 Source2:   http://pciids.sourceforge.net/pci.ids
-# NoSource2-md5:   a44ba17a1d04299d8584546efe995d06
 Patch0:%{name}-pci_h.patch
 Patch1:%{name}-pcimodules.patch
 Patch2:%{name}-nowhich.patch
@@ -356,6 +355,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.110  2009/01/20 11:21:56  arekm
+- source2 keept in cvs
+
 Revision 1.109  2009/01/20 11:17:08  arekm
 - up to 3.1.0
 


 CVS-web:

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

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


SOURCES: pci.ids - updated

2009-01-20 Thread arekm
Author: arekmDate: Tue Jan 20 11:22:11 2009 GMT
Module: SOURCES   Tag: HEAD
 Log message:
- updated

 Files affected:
SOURCES:
   pci.ids (1.29 - 1.30) 

 Diffs:


Index: SOURCES/pci.ids
diff -u SOURCES/pci.ids:1.29 SOURCES/pci.ids:1.30
--- SOURCES/pci.ids:1.29Thu Nov 27 19:51:08 2008
+++ SOURCES/pci.ids Tue Jan 20 12:22:05 2009
@@ -1,8 +1,8 @@
 #
 #  List of PCI ID's
 #
-#  Version: 2008.11.20
-#  Date:2008-11-20 03:15:02
+#  Version: 2009.01.13
+#  Date:2009-01-13 03:15:01
 #
 #  Maintained by Martin Mares m...@ucw.cz and other volunteers from the
 #  PCI ID Project at http://pciids.sf.net/.
@@ -1047,6 +1047,7 @@
1028 0223  PowerEdge R905 Embedded ATI ES1000
1028 0225  PowerEdge T105 Embedded ATI ES1000
1028 023c  PowerEdge R200 Embedded ATI ES1000
+   103c 1304  Integrity iLO2 Advanced KVM VGA [AD307A]
15d9 8680  X7DVL-E-O motherboard
8086 3476  S5000PSLSATA Server Board
515f  ES1000
@@ -1113,6 +1114,7 @@
554b  R423 UK [Radeon X800SE (PCIE)]
554c  Radeon X800 XTP (R430) (PCIE)
554d  R430 [Radeon X800 XL] (PCIe)
+   1458 2124  GV-R80L256V-B (AGP)
554e  Radeon X800 SE (R430) (PCIE)
554f  R430 [Radeon X800 (PCIE)]
5550  R423 [FireGL V7100]
@@ -1123,6 +1125,7 @@
5569  R423 UI [Radeon X800PRO (PCIE)] (Secondary)
556b  Radeon R423 UK (PCIE) [X800 SE] (Secondary)
556d  R430 [Radeon X800 XL] (PCIe) (Secondary)
+   1458 2125  GV-R80L256V-B (AGP)
556f  R430 [Radeon X800] (PCIE) (Secondary)
5571  R423GL-SE [FireGL V5100 (PCIE)] (Secondary)
564a  M26 [Mobility FireGL V5000]
@@ -1382,6 +1385,7 @@
71c4  M56GL [Mobility FireGL V5200]
17aa 2007  ThinkPad T60p
71c5  M56P [Radeon Mobility X1600]
+   103c 309f  Compaq nx9420 Notebook
103c 30a3  Compaq NW8440
1043 10b2  A6J-Q008
106b 0080  MacBook Pro
@@ -1474,8 +1478,10 @@
944c  RV770 LE [Radeon HD 4800 Series]
945a  M98 XT [Mobility Radeon HD 4870]
9480  M96 [Mobility Radeon HD 4650]
+   9489  M96 XT [Mobility FireGL V5725]
9490  RV730XT [Radeon HD 4670]
9498  RV730 PRO [Radeon HD 4650]
+   949f  RV730 [FirePro V5700]
94c1  RV610 [Radeon HD 2400 XT]
1028 0211  Optiplex 755
1028 0d02  Optiplex 755
@@ -1499,6 +1505,7 @@
9519  RV670 [FireStream 9170]
9540  RV710 [Radeon HD 4550]
954f  RV710 [Radeon HD 4350]
+   9552  M92 LP [Mobility Radeon HD 4300 Series]
9553  M92 [Mobility Radeon HD 4500 Series]
9559  Mobility Radeon HD 3600 Series
9581  M76 [Radeon Mobility HD 2600 Series]
@@ -1533,6 +1540,7 @@
9612  RS780M/RS780MN [Radeon HD 3200 Graphics]
9613  RS780MC [Radeon HD 3100 Graphics]
9614  Radeon HD 3300 Graphics
+   9616  760G [Radeon 3000]
aa00  R600 Audio Device [Radeon HD 2900 Series]
aa08  RV630/M76 audio device [Radeon HD 2600 Series]
aa10  RV610 audio device [Radeon HD 2400 PRO]
@@ -2528,6 +2536,8 @@
002d  PCI to C-bus Bridge
0035  USB
1033 0035  Hama USB 2.0 CardBus
+   103c 1293  USB add-in card
+   103c 1294  USB 2.0 add-in card
1179 0001  USB
12ee 7000  Root Hub
14c2 0105  PTI-205N USB 2.0 Host Controller
@@ -2837,6 +2847,8 @@
103c 3245  Smart Array P410i
103c 3247  Smart Array P411
103c 3249  Smart Array P812
+   103c 324a  HP Smart Array 712m (Mezzanine RAID controller)
+   103c 324b  Smart Array P711m (Mezzanine RAID controller)
 # Will present virtual install media as mass storage, keyboard/mouse from 
console session, etc.
3300  Proliant iLO2 virtual USB controller
3301  iLO3 Serial Port
@@ -3098,7 +3110,7 @@
8036  PCI6515 Cardbus Controller
8038  PCI6515 SmartCard Controller
8039  PCIxx12 Cardbus Controller
-   103c 309f  nx9420
+   103c 309f  Compaq nx9420 Notebook
103c 30a1  NC2400
103c 30a3  Compaq nw8440
803a  PCIxx12 OHCI Compliant IEEE 1394 Host Controller
@@ -3112,7 +3124,7 @@
103c 309f  nx9420
103c 30a3  Compaq nw8440
803d  PCIxx12 GemCore based SmartCard controller
-   103c 309f  nx9420
+   103c 309f  Compaq nx9420 Notebook
103c 30a1  NC2400
103c 30a3  nc8430
103c 30aa  nc6310
@@ -3282,6 +3294,7 @@
3012  ColdFusion 3e Chipset Memory Controller Hub
3017  Unassigned Hitachi Shared FC Device 

SPECS: perl-BerkeleyDB.spec - release 2

2009-01-20 Thread glen
Author: glen Date: Tue Jan 20 11:40:27 2009 GMT
Module: SPECS Tag: HEAD
 Log message:
- release 2

 Files affected:
SPECS:
   perl-BerkeleyDB.spec (1.49 - 1.50) 

 Diffs:


Index: SPECS/perl-BerkeleyDB.spec
diff -u SPECS/perl-BerkeleyDB.spec:1.49 SPECS/perl-BerkeleyDB.spec:1.50
--- SPECS/perl-BerkeleyDB.spec:1.49 Thu Jun 12 22:55:46 2008
+++ SPECS/perl-BerkeleyDB.spec  Tue Jan 20 12:40:21 2009
@@ -10,7 +10,7 @@
 Summary(pl.UTF-8): BerkeleyDB - rozszerzenie Perla do baz Berkeley DB w 
wersji 2, 3 lub 4
 Name:  perl-BerkeleyDB
 Version:   0.34
-Release:   1
+Release:   2
 # same as perl
 License:   GPL v1+ or Artistic
 Group: Development/Languages/Perl
@@ -82,6 +82,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.50  2009/01/20 11:40:21  glen
+- release 2
+
 Revision 1.49  2008/06/12 20:55:46  arekm
 - up to 0.34
 


 CVS-web:

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

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


SPECS: perl-Config-Tiny.spec - release 2

2009-01-20 Thread glen
Author: glen Date: Tue Jan 20 11:42:09 2009 GMT
Module: SPECS Tag: HEAD
 Log message:
- release 2

 Files affected:
SPECS:
   perl-Config-Tiny.spec (1.9 - 1.10) 

 Diffs:


Index: SPECS/perl-Config-Tiny.spec
diff -u SPECS/perl-Config-Tiny.spec:1.9 SPECS/perl-Config-Tiny.spec:1.10
--- SPECS/perl-Config-Tiny.spec:1.9 Wed Dec 26 23:06:31 2007
+++ SPECS/perl-Config-Tiny.spec Tue Jan 20 12:42:04 2009
@@ -10,7 +10,7 @@
 Summary(pl.UTF-8): Config::Tiny - czytanie/zapisywanie plików w stylu .ini 
w minimalnym kodzie
 Name:  perl-Config-Tiny
 Version:   2.12
-Release:   1
+Release:   2
 # same as perl
 License:   GPL v1+ or Artistic
 Group: Development/Languages/Perl
@@ -84,6 +84,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.10  2009/01/20 11:42:04  glen
+- release 2
+
 Revision 1.9  2007/12/26 22:06:31  zbyniu
 - up to 2.12
 


 CVS-web:

http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/SPECS/perl-Config-Tiny.spec?r1=1.9r2=1.10f=u

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


SPECS: perl-WWW-Curl.spec - release 2

2009-01-20 Thread glen
Author: glen Date: Tue Jan 20 11:42:38 2009 GMT
Module: SPECS Tag: HEAD
 Log message:
- release 2

 Files affected:
SPECS:
   perl-WWW-Curl.spec (1.15 - 1.16) 

 Diffs:


Index: SPECS/perl-WWW-Curl.spec
diff -u SPECS/perl-WWW-Curl.spec:1.15 SPECS/perl-WWW-Curl.spec:1.16
--- SPECS/perl-WWW-Curl.spec:1.15   Thu Dec 11 19:30:50 2008
+++ SPECS/perl-WWW-Curl.specTue Jan 20 12:42:33 2009
@@ -10,7 +10,7 @@
 Summary(pl.UTF-8): WWW::Curl::easy - interfejs perlowy do biblioteki 
libcurl
 Name:  perl-WWW-Curl
 Version:   4.05
-Release:   1
+Release:   2
 License:   MPL or MIT/X
 Group: Development/Languages/Perl
 Source0:   
http://www.cpan.org/modules/by-module/%{pdir}/%{pdir}-%{pnam}-%{version}.tar.gz
@@ -81,6 +81,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.16  2009/01/20 11:42:33  glen
+- release 2
+
 Revision 1.15  2008/12/11 18:30:50  glen
 - check-files cleanup
 


 CVS-web:

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

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


SPECS: perl-XML-Simple.spec - release 2

2009-01-20 Thread glen
Author: glen Date: Tue Jan 20 11:43:06 2009 GMT
Module: SPECS Tag: HEAD
 Log message:
- release 2

 Files affected:
SPECS:
   perl-XML-Simple.spec (1.49 - 1.50) 

 Diffs:


Index: SPECS/perl-XML-Simple.spec
diff -u SPECS/perl-XML-Simple.spec:1.49 SPECS/perl-XML-Simple.spec:1.50
--- SPECS/perl-XML-Simple.spec:1.49 Wed Apr  2 10:59:17 2008
+++ SPECS/perl-XML-Simple.spec  Tue Jan 20 12:43:01 2009
@@ -10,7 +10,7 @@
 Summary(pl.UTF-8): XML::Simple - proste API do czytania/zapisu XML-a (zwł. 
plików konfiguracyjnych)
 Name:  perl-XML-Simple
 Version:   2.18
-Release:   1
+Release:   2
 # same as perl
 License:   GPL v1+ or Artistic
 Group: Development/Languages/Perl
@@ -69,6 +69,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.50  2009/01/20 11:43:01  glen
+- release 2
+
 Revision 1.49  2008/04/02 08:59:17  arekm
 - up to 2.18
 


 CVS-web:

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

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


SOURCES: clive-delfi.patch, clive-reporter.patch - rediff myself instead of...

2009-01-20 Thread glen
Author: glen Date: Tue Jan 20 11:52:17 2009 GMT
Module: SOURCES   Tag: HEAD
 Log message:
- rediff myself instead of junk submitted by lisu

 Files affected:
SOURCES:
   clive-delfi.patch (1.15 - 1.16) , clive-reporter.patch (1.5 - 1.6) 

 Diffs:


Index: SOURCES/clive-delfi.patch
diff -u SOURCES/clive-delfi.patch:1.15 SOURCES/clive-delfi.patch:1.16
--- SOURCES/clive-delfi.patch:1.15  Thu Jan  1 19:53:27 2009
+++ SOURCES/clive-delfi.patch   Tue Jan 20 12:52:11 2009
@@ -1,83 +1,84 @@
 clive-2.1.2/clive~ 2009-01-01 13:04:20.0 +
-+++ clive-2.1.2/clive  2009-01-01 13:13:24.0 +
-@@ -84,6 +84,7 @@
- IsBreak = qr|\Qbreak.com\E|i,
+--- clive-2.1.3/clive~ 2009-01-20 13:48:45.0 +0200
 clive-2.1.3/clive  2009-01-20 13:49:36.0 +0200
+@@ -85,6 +85,7 @@
  IsLastfm= qr|\Qlast.fm\E|i,
  IsLiveleak  = qr|\Qliveleak.com\E|i,
-+IsDelfi = qr|\Q.delfi.\E|i,
  IsEvisor= qr|\Qevisor.tv\E|i,
++IsDelfi = qr|\Q.delfi.\E|i,
  #IsMetacafe = qr|\Qmetacafe.com\E|i,
  );
-@@ -331,6 +332,8 @@
- ($xurl, $id, $title) = handle_break($response_ref);
- } elsif ( $url =~ /$re_hosts{IsLiveleak}/ ) {
+ 
+@@ -333,6 +334,8 @@
  ($xurl, $id) = handle_liveleak($response_ref, $response_fh);
-+} elsif ( $url =~ /$re_hosts{IsDelfi}/ ) {
-+  ($xurl, $id) = handle_delfi($response_ref, $response_fh);
  } elsif ( $url =~ /$re_hosts{IsEvisor}/ ) {
  ($xurl, $id) = handle_evisor($response_ref);
++} elsif ( $url =~ /$re_hosts{IsDelfi}/ ) {
++($xurl, $id) = handle_delfi($response_ref, $response_fh);
  }
-@@ -863,6 +866,63 @@
+ #elsif ( $url =~ /$re_hosts{IsMetacafe}/ ) {
+ #($xurl, $id) = handle_metacafe($response_ref);
+@@ -712,6 +715,64 @@
  return ($xurl, $id);
  }
  
 +sub handle_delfi {
-+  my ($response_ref, $response_fh) = @_;
++my ($response_ref, $response_fh) = @_;
 +
-+  my %re = (
-+ # videobox
-+ # 
http://www.delfi.ee/news/paevauudised/paevavideo/article.php?id=15218215
-+ GrabVideoboxURL = qr|flv_url:\s*'(.*?)'|,
-+ # videoproject embed
-+ # 
http://www.delfi.ee/news/paevauudised/paevavideo/article.php?id=18759038
-+ GrabVideoSalt   = qr|_delfiVideoSalt\s*=\s*([^]+);|,
-+ GrabVideoSite   = qr|src=(\S+://[^/]+)/js/embed.js|,
-+ # videoproject
-+ # http://video.delfi.ee/video/CzurzqNz/
-+ GrabVideoURL   = qr|\.addVariable\('file',\s*'([^']+)'|,
-+  );
-+
-+  my ($xurl, $id);
-+  my $videobox_url = $1 if $$response_ref =~ /$re{GrabVideoboxURL}/;
-+  my $video_salt   = $1 if $$response_ref =~ /$re{GrabVideoSalt}/;
-+  my $video_site   = $1 if $$response_ref =~ /$re{GrabVideoSite}/;
-+  my $video_url   = $1 if $$response_ref =~ /$re{GrabVideoURL}/;
-+
-+  if ($videobox_url) {
-+ $id = $1 if $videobox_url =~ m{/([^/]+)\.flv$};
-+  $xurl = $videobox_url;
-+
-+  } elsif ($video_url) {
-+ $xurl = uri_unescape($video_url);
-+ $id = $1 if $xurl =~ m{^\S+://[^/]+/v/(.+?)\.flv};
-+
-+  } elsif ($video_salt and $video_site) {
-+ my $url = $video_site . '/video/' . $video_salt . '/';
-+   print done.\nfetch page ... unless $opts{quiet};
-+
-+ my $page = ;
-+ open my $fh, , \$page;
-+
-+ # Disable: header
-+$curl-setopt(CURLOPT_HEADER, 0);
-+$curl-setopt(CURLOPT_URL, $url);
-+$curl-setopt(CURLOPT_WRITEDATA, $fh);
-+
-+my $rc = $curl-perform;
-+close $fh;
-+
-+if ($rc == 0) {
-+   # recurse
-+   ($xurl, $id) = handle_delfi(\$page);
-+} else {
-+   print STDERR \nerror:  . $curl-strerror($rc) .  (http/$rc)\n;
-+}
-+} else {
-+   print STDERR error: url not found\n;
-+}
++my %re = (
++# videobox
++# http://www.delfi.ee/news/paevauudised/paevavideo/article.php?id=15218215
++GrabVideoboxURL = qr|flv_url:\s*'(.*?)'|,
++# videoproject embed
++# http://www.delfi.ee/news/paevauudised/paevavideo/article.php?id=18759038
++GrabVideoSalt   = qr|_delfiVideoSalt\s*=\s*([^]+);|,
++GrabVideoSite   = qr|src=(\S+://[^/]+)/js/embed.js|,
++# videoproject
++# http://video.delfi.ee/video/CzurzqNz/
++GrabVideoURL   = qr|\.addVariable\('file',\s*'([^']+)'|,
++);
++
++my ($xurl, $id);
++my $videobox_url = $1 if $$response_ref =~ /$re{GrabVideoboxURL}/;
++my $video_salt   = $1 if $$response_ref =~ /$re{GrabVideoSalt}/;
++my $video_site   = $1 if $$response_ref =~ /$re{GrabVideoSite}/;
++my $video_url   = $1 if $$response_ref =~ /$re{GrabVideoURL}/;
++
++if ($videobox_url) {
++$id = $1 if $videobox_url =~ m{/([^/]+)\.flv$};
++$xurl = $videobox_url;
++
++} elsif ($video_url) {
++

SPECS: igraph.spec (NEW) - new

2009-01-20 Thread radek
Author: radekDate: Tue Jan 20 12:13:53 2009 GMT
Module: SPECS Tag: HEAD
 Log message:
- new

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

 Diffs:


Index: SPECS/igraph.spec
diff -u /dev/null SPECS/igraph.spec:1.1
--- /dev/null   Tue Jan 20 13:13:53 2009
+++ SPECS/igraph.spec   Tue Jan 20 13:13:47 2009
@@ -0,0 +1,87 @@
+# $Revision$, $Date$
+#
+# Conditional build:
+%bcond_withshell   # build with shell interface
+#
+Summary:   Library for creating and manipulating graphs
+#Summary(pl.UTF-8):-
+Name:  igraph
+Version:   0.5.1
+Release:   1
+License:   GPL v2+
+Group: Development/Libraries
+Source0:   
http://cneurocvs.rmki.kfki.hu/igraph/download/%{name}-%{version}.tar.gz
+# Source0-md5: 19f9c193fc7c8b88a0e8d98aef9f9bb5
+URL:   http://cneurocvs.rmki.kfki.hu/igraph/
+BuildRequires: arpack-devel
+BuildRequires: blas-devel
+BuildRequires: gmp-devel
+BuildRequires: lapack-devel
+BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
+
+%description
+igraph is a free software package for creating and manipulating
+undirected and directed graphs. It includes implementations for classic
+graph theory problems like minimum spanning trees and network flow, and
+also implements algorithms for some recent network analysis methods,
+like community structure search.
+
+# %description -l pl.UTF-8
+# TODO
+
+%package devel
+Summary:   Header files for the igraph library
+Summary(pl.UTF-8): Pliki nagłówkowe biblioteki igraph
+Group: Development/Libraries
+Requires:  %{name} = %{version}-%{release}
+
+%description devel
+Header files for the igraph library.
+
+%description devel -l pl.UTF-8
+Pliki nagłówkowe biblioteki igraph.
+
+%prep
+%setup -q
+
+%build
+%configure \
+   --with-external-arpack \
+   --with-external-lapack \
+   --with-external-blas   \
+   %{?with_shell:--enable-shell}
+%{__make}
+
+%install
+rm -rf $RPM_BUILD_ROOT
+
+%{__make} install \
+   DESTDIR=$RPM_BUILD_ROOT
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%post  -p /sbin/ldconfig
+%postun-p /sbin/ldconfig
+
+%files
+%defattr(644,root,root,755)
+%doc AUTHORS ChangeLog NEWS README TODO
+%attr(755,root,root) %{_libdir}/*.so.*
+
+%files devel
+%defattr(644,root,root,755)
+%{_libdir}/*.so
+%{_libdir}/*.la
+%{_pkgconfigdir}/*
+%{_includedir}/igraph
+
+%define date   %(echo `LC_ALL=C date +%a %b %d %Y`)
+%changelog
+* %{date} PLD Team feedb...@pld-linux.org
+All persons listed below can be reached at cvs_login@pld-linux.org
+
+$Log$
+Revision 1.1  2009/01/20 12:13:47  radek
+- new
+

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


DISTFILES: igraph-0.5.1.tar.gz

2009-01-20 Thread radek

Files fetched: 1

STORED: http://cneurocvs.rmki.kfki.hu/igraph/download/igraph-0.5.1.tar.gz
19f9c193fc7c8b88a0e8d98aef9f9bb5  igraph-0.5.1.tar.gz
Size: 1695789 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: pciutils.spec - release 2

2009-01-20 Thread arekm
Author: arekmDate: Tue Jan 20 12:30:37 2009 GMT
Module: SPECS Tag: HEAD
 Log message:
- release 2

 Files affected:
SPECS:
   pciutils.spec (1.110 - 1.111) 

 Diffs:


Index: SPECS/pciutils.spec
diff -u SPECS/pciutils.spec:1.110 SPECS/pciutils.spec:1.111
--- SPECS/pciutils.spec:1.110   Tue Jan 20 12:21:56 2009
+++ SPECS/pciutils.spec Tue Jan 20 13:30:32 2009
@@ -18,7 +18,7 @@
 Summary(zh_CN.UTF-8):  PCI 总线相关的工具。
 Name:  pciutils
 Version:   3.1.0
-Release:   1
+Release:   2
 License:   GPL v2+
 Group: Applications/System
 Source0:   
ftp://atrey.karlin.mff.cuni.cz/pub/linux/pci/%{name}-%{version}.tar.gz
@@ -355,6 +355,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.111  2009/01/20 12:30:32  arekm
+- release 2
+
 Revision 1.110  2009/01/20 11:21:56  arekm
 - source2 keept in cvs
 


 CVS-web:

http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/SPECS/pciutils.spec?r1=1.110r2=1.111f=u

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


SOURCES: rt-apache.conf - disable evil directive

2009-01-20 Thread glen
Author: glen Date: Tue Jan 20 12:34:59 2009 GMT
Module: SOURCES   Tag: HEAD
 Log message:
- disable evil directive

 Files affected:
SOURCES:
   rt-apache.conf (1.2 - 1.3) 

 Diffs:


Index: SOURCES/rt-apache.conf
diff -u SOURCES/rt-apache.conf:1.2 SOURCES/rt-apache.conf:1.3
--- SOURCES/rt-apache.conf:1.2  Tue Jan 20 11:20:57 2009
+++ SOURCES/rt-apache.conf  Tue Jan 20 13:34:53 2009
@@ -7,7 +7,8 @@
/IfModule
 /Directory
 
-DocumentRoot /usr/share/rt3/html
+# XXX: you don't overwrite global documentroot. if you want virtualhost sample 
add VirtualHost...
+#DocumentRoot /usr/share/rt3/html
 
 Alias /NoAuth/images/ /usr/share/rt3/html/NoAuth/images/
 Alias /error/ /home/services/httpd/error/


 CVS-web:

http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/SOURCES/rt-apache.conf?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: clive.spec - rediffed patches. works

2009-01-20 Thread glen
Author: glen Date: Tue Jan 20 12:36:06 2009 GMT
Module: SPECS Tag: HEAD
 Log message:
- rediffed patches. works

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

 Diffs:


Index: SPECS/clive.spec
diff -u SPECS/clive.spec:1.41 SPECS/clive.spec:1.42
--- SPECS/clive.spec:1.41   Fri Jan  9 16:59:42 2009
+++ SPECS/clive.specTue Jan 20 13:36:00 2009
@@ -1,14 +1,11 @@
 # $Revision$, $Date$
-# TODO
-# - check if it work
-#
 %include   /usr/lib/rpm/macros.perl
 Summary:   Video extraction utility for YouTube and Google Video
 Summary(hu.UTF-8): Videó letöltő a YouTube és a Google Video oldalakról
 Summary(pl.UTF-8): Narzędzie do wydobywania filmów z YouTube i Google Video
 Name:  clive
 Version:   2.1.3
-Release:   0.1
+Release:   0.3
 License:   GPL v2+
 Group: Applications/System
 Source0:   http://clive.googlecode.com/files/%{name}-%{version}.tar.bz2
@@ -80,6 +77,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.42  2009/01/20 12:36:00  glen
+- rediffed patches. works
+
 Revision 1.41  2009/01/09 15:59:42  lisu
 - up to 2.1.3
 


 CVS-web:

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

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


SPECS: poldek-repos-mirror-task.spec - adapter is not stupid

2009-01-20 Thread glen
Author: glen Date: Tue Jan 20 12:45:22 2009 GMT
Module: SPECS Tag: HEAD
 Log message:
- adapter is not stupid

 Files affected:
SPECS:
   poldek-repos-mirror-task.spec (1.1 - 1.2) 

 Diffs:


Index: SPECS/poldek-repos-mirror-task.spec
diff -u SPECS/poldek-repos-mirror-task.spec:1.1 
SPECS/poldek-repos-mirror-task.spec:1.2
--- SPECS/poldek-repos-mirror-task.spec:1.1 Tue Jan 20 12:08:07 2009
+++ SPECS/poldek-repos-mirror-task.spec Tue Jan 20 13:45:17 2009
@@ -9,7 +9,6 @@
 Source0:   %{name}.conf
 Source1:   %{name}-multilib.conf
 URL:   http://poldek.pld-linux.org/
-BuildRequires: sed
 Requires:  poldek
 Provides:  poldek-source-main
 BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
@@ -66,7 +65,10 @@
 '  %{SOURCE1}  $RPM_BUILD_ROOT%{_sysconfdir}/mirror-%{mirror}-multilib.conf
 %endif
 
-%files 
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%files
 %defattr(644,root,root,755)
 %config(noreplace) %verify(not md5 mtime size) 
%{_sysconfdir}/mirror-%{mirror}.conf
 
@@ -82,6 +84,8 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.2  2009/01/20 12:45:17  glen
+- adapter is not stupid
+
 Revision 1.1  2009/01/20 11:08:07  blues
 - initial - sample package with mirror and alternative repos. RFC
-


 CVS-web:

http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/SPECS/poldek-repos-mirror-task.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: gnome-session.spec - rel 3; fix epoch deps

2009-01-20 Thread arekm
Author: arekmDate: Tue Jan 20 12:32:37 2009 GMT
Module: SPECS Tag: HEAD
 Log message:
- rel 3; fix epoch deps

 Files affected:
SPECS:
   gnome-session.spec (1.145 - 1.146) 

 Diffs:


Index: SPECS/gnome-session.spec
diff -u SPECS/gnome-session.spec:1.145 SPECS/gnome-session.spec:1.146
--- SPECS/gnome-session.spec:1.145  Tue Jan  6 13:52:34 2009
+++ SPECS/gnome-session.specTue Jan 20 13:32:32 2009
@@ -9,7 +9,7 @@
 Summary(pl.UTF-8): Programy dla desktopu środowiska graficznego GNOME2
 Name:  gnome-session
 Version:   2.22.3
-Release:   2
+Release:   3
 Epoch: 1
 License:   LGPL
 Group: X11/Applications
@@ -75,7 +75,7 @@
 Summary:   GNOME splash screen
 Summary(pl.UTF-8): Ekran startowy GNOME
 Group: X11/Amusements
-Requires:  %{name} = %{version}-%{release}
+Requires:  %{name} = %{epoch}:%{version}-%{release}
 Provides:  gnome-splash
 Obsoletes: gnome-splash
 
@@ -169,6 +169,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.146  2009/01/20 12:32:32  arekm
+- rel 3; fix epoch deps
+
 Revision 1.145  2009/01/06 12:52:34  baggins
 - typo
 


 CVS-web:

http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/SPECS/gnome-session.spec?r1=1.145r2=1.146f=u

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


SPECS: altermime.spec - up to 0.3.10

2009-01-20 Thread duddits
Author: duddits  Date: Tue Jan 20 13:31:30 2009 GMT
Module: SPECS Tag: HEAD
 Log message:
- up to 0.3.10

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

 Diffs:


Index: SPECS/altermime.spec
diff -u SPECS/altermime.spec:1.6 SPECS/altermime.spec:1.7
--- SPECS/altermime.spec:1.6Thu Sep 20 18:25:28 2007
+++ SPECS/altermime.specTue Jan 20 14:31:24 2009
@@ -2,14 +2,14 @@
 Summary:   alterMIME - a small program which is used to alter MIME-encoded 
mailpacks
 Summary(pl.UTF-8): alterMIME - mały program do modyfikowania przesyłek 
kodowanych MIME
 Name:  altermime
-Version:   0.3.8
+Version:   0.3.10
 Release:   1
 License:   BSD
 Group: Networking/Utilities
 # 403
 #Source0:  http://pldaniels.com/altermime/%{name}-%{version}.tar.gz
 Source0:   http://www.pldaniels.com/altermime/%{name}-%{version}.tar.gz
-# Source0-md5: e9717152d05318731ffbf67e2087af3b
+# Source0-md5: aaf0ad8029958a2dc6da3abb4dc178c2
 URL:   http://www.pldaniels.com/altermime/
 BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
 
@@ -64,6 +64,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.7  2009/01/20 13:31:24  duddits
+- up to 0.3.10
+
 Revision 1.6  2007/09/20 16:25:28  zbyniu
 - up to 0.3.8
 


 CVS-web:

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

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


DISTFILES: altermime-0.3.10.tar.gz

2009-01-20 Thread duddits

Files fetched: 1

STORED: http://www.pldaniels.com/altermime/altermime-0.3.10.tar.gz
aaf0ad8029958a2dc6da3abb4dc178c2  altermime-0.3.10.tar.gz
Size: 85396 bytes


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


DISTFILES: alevt-1.6.2.tar.gz

2009-01-20 Thread duddits

Files fetched: 1

STORED: http://www.goron.de/~froese/alevt/alevt-1.6.2.tar.gz
e5a32776e7eff48ec48449b3c3c1cc23  alevt-1.6.2.tar.gz
Size: 133234 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: alevt.spec - up to 1.6.2 - compile.patch dropped

2009-01-20 Thread duddits
Author: duddits  Date: Tue Jan 20 13:38:32 2009 GMT
Module: SPECS Tag: HEAD
 Log message:
- up to 1.6.2
- compile.patch dropped

 Files affected:
SPECS:
   alevt.spec (1.42 - 1.43) 

 Diffs:


Index: SPECS/alevt.spec
diff -u SPECS/alevt.spec:1.42 SPECS/alevt.spec:1.43
--- SPECS/alevt.spec:1.42   Wed Mar 14 15:36:06 2007
+++ SPECS/alevt.specTue Jan 20 14:38:26 2009
@@ -3,17 +3,16 @@
 Summary(de.UTF-8): Videotext/Teletext
 Summary(pl.UTF-8): Dekoder Teletekstu
 Name:  alevt
-Version:   1.6.1
-Release:   3
+Version:   1.6.2
+Release:   1
 License:   GPL
 Group: X11/Applications
 Source0:   http://www.goron.de/~froese/%{name}/%{name}-%{version}.tar.gz
-# Source0-md5: df6e241c6e2c6505c95d50cde0e1bc73
+# Source0-md5: e5a32776e7eff48ec48449b3c3c1cc23
 Source1:   %{name}.desktop
 Patch0:%{name}-time-include.patch
 Patch1:%{name}-time.h.patch
 Patch2:%{name}-amd64.patch
-Patch3:%{name}-compile.patch
 URL:   http://www.goron.de/~froese/
 BuildRequires: libpng-devel = 1.0.8
 BuildRequires: xorg-lib-libX11-devel
@@ -40,7 +39,6 @@
 %if %{_lib} == lib64
 %patch2 -p1
 %endif
-%patch3 -p1
 
 %build
 %{__make} \
@@ -73,6 +71,10 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.43  2009/01/20 13:38:26  duddits
+- up to 1.6.2
+- compile.patch dropped
+
 Revision 1.42  2007/03/14 14:36:06  qboosh
 - sorted BRs
 


 CVS-web:

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

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


SOURCES: alevt-compile.patch (REMOVED) - compilation fixed for newer gcc

2009-01-20 Thread duddits
Author: duddits  Date: Tue Jan 20 13:39:30 2009 GMT
Module: SOURCES   Tag: HEAD
 Log message:
- compilation fixed for newer gcc

 Files affected:
SOURCES:
   alevt-compile.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: cisco-vpnclient.spec - cosmetics

2009-01-20 Thread adamg
Author: adamgDate: Tue Jan 20 13:40:07 2009 GMT
Module: SPECS Tag: HEAD
 Log message:
- cosmetics

 Files affected:
SPECS:
   cisco-vpnclient.spec (1.37 - 1.38) 

 Diffs:


Index: SPECS/cisco-vpnclient.spec
diff -u SPECS/cisco-vpnclient.spec:1.37 SPECS/cisco-vpnclient.spec:1.38
--- SPECS/cisco-vpnclient.spec:1.37 Sat Dec  6 17:26:46 2008
+++ SPECS/cisco-vpnclient.spec  Tue Jan 20 14:40:01 2009
@@ -1,7 +1,9 @@
 # $Revision$, $Date$
+#
 # TODO:
 # - /opt ??
 # - cvpnd use nobody account, permission to /proc/net and 
/etc/opt/cisco-vpnclient/* files and dirs
+#
 # Conditional build:
 %bcond_without dist_kernel # without distribution kernel
 %bcond_without kernel  # don't build kernel modules
@@ -19,11 +21,12 @@
 Release:   %{_rel}
 License:   Commercial
 Group: Networking
+# Source0-download: http://projects.tuxx-home.at/ciscovpn/clients/linux/
 Source0:   vpnclient-linux-x86_64-4.8.02.0030-k9.tar.gz
 # NoSource0-md5:   de869c26dbc3b8851759907855dee48c
 Source1:   cisco_vpnclient.init
 NoSource:  0
-# patchs - http://projects.tuxx-home.at/?id=cisco_vpn_client
+# patches - http://projects.tuxx-home.at/?id=cisco_vpn_client
 Patch1:%{name}-skbuff_offset.patch
 URL:   
http://www.cisco.com/en/US/products/sw/secursw/ps2308/tsd_products_support_series_home.html
 %{?with_dist_kernel:BuildRequires: kernel%{_alt_kernel}-module-build = 
3:2.6.22}
@@ -143,6 +146,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.38  2009/01/20 13:40:01  adamg
+- cosmetics
+
 Revision 1.37  2008/12/06 16:26:46  wolvverine
 - rel.2:2.6.27.8-1
 


 CVS-web:

http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/SPECS/cisco-vpnclient.spec?r1=1.37r2=1.38f=u

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


SPECS: alevt.spec - amd64.patch dropped as well

2009-01-20 Thread duddits
Author: duddits  Date: Tue Jan 20 13:46:33 2009 GMT
Module: SPECS Tag: HEAD
 Log message:
- amd64.patch dropped as well

 Files affected:
SPECS:
   alevt.spec (1.43 - 1.44) 

 Diffs:


Index: SPECS/alevt.spec
diff -u SPECS/alevt.spec:1.43 SPECS/alevt.spec:1.44
--- SPECS/alevt.spec:1.43   Tue Jan 20 14:38:26 2009
+++ SPECS/alevt.specTue Jan 20 14:46:27 2009
@@ -12,7 +12,6 @@
 Source1:   %{name}.desktop
 Patch0:%{name}-time-include.patch
 Patch1:%{name}-time.h.patch
-Patch2:%{name}-amd64.patch
 URL:   http://www.goron.de/~froese/
 BuildRequires: libpng-devel = 1.0.8
 BuildRequires: xorg-lib-libX11-devel
@@ -36,9 +35,6 @@
 %setup -q
 %patch0 -p1
 %patch1 -p1
-%if %{_lib} == lib64
-%patch2 -p1
-%endif
 
 %build
 %{__make} \
@@ -71,6 +67,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.44  2009/01/20 13:46:27  duddits
+- amd64.patch dropped as well
+
 Revision 1.43  2009/01/20 13:38:26  duddits
 - up to 1.6.2
 - compile.patch dropped


 CVS-web:

http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/SPECS/alevt.spec?r1=1.43r2=1.44f=u

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


SOURCES: alevt-amd64.patch (REMOVED) - no longer needed

2009-01-20 Thread duddits
Author: duddits  Date: Tue Jan 20 13:47:30 2009 GMT
Module: SOURCES   Tag: HEAD
 Log message:
- no longer needed

 Files affected:
SOURCES:
   alevt-amd64.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: audit.spec - up to 1.7.11

2009-01-20 Thread duddits
Author: duddits  Date: Tue Jan 20 14:26:02 2009 GMT
Module: SPECS Tag: HEAD
 Log message:
- up to 1.7.11

 Files affected:
SPECS:
   audit.spec (1.65 - 1.66) 

 Diffs:


Index: SPECS/audit.spec
diff -u SPECS/audit.spec:1.65 SPECS/audit.spec:1.66
--- SPECS/audit.spec:1.65   Wed Dec 17 08:11:02 2008
+++ SPECS/audit.specTue Jan 20 15:25:56 2009
@@ -8,12 +8,12 @@
 Summary:   User space tools for 2.6 kernel auditing
 Summary(pl.UTF-8): Narzędzia przestrzeni użytkownika do audytu jąder 2.6
 Name:  audit
-Version:   1.7.10
+Version:   1.7.11
 Release:   1
 License:   GPL v2+
 Group: Daemons
 Source0:   http://people.redhat.com/sgrubb/audit/%{name}-%{version}.tar.gz
-# Source0-md5: ba44e750b19e6db075d5071b039e6147
+# Source0-md5: 63c7f935e390d874142ed6095f699958
 Source2:   %{name}d.init
 Source3:   %{name}d.sysconfig
 Patch0:%{name}-install.patch
@@ -337,6 +337,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.66  2009/01/20 14:25:56  duddits
+- up to 1.7.11
+
 Revision 1.65  2008/12/17 07:11:02  arekm
 - up to 1.7.10
 


 CVS-web:

http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/SPECS/audit.spec?r1=1.65r2=1.66f=u

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


DISTFILES: audit-1.7.11.tar.gz

2009-01-20 Thread duddits

Files fetched: 1

STORED: http://people.redhat.com/sgrubb/audit/audit-1.7.11.tar.gz
63c7f935e390d874142ed6095f699958  audit-1.7.11.tar.gz
Size: 1275162 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: bakery.spec - up to 2.4.4

2009-01-20 Thread duddits
Author: duddits  Date: Tue Jan 20 14:43:39 2009 GMT
Module: SPECS Tag: HEAD
 Log message:
- up to 2.4.4

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

 Diffs:


Index: SPECS/bakery.spec
diff -u SPECS/bakery.spec:1.18 SPECS/bakery.spec:1.19
--- SPECS/bakery.spec:1.18  Sun Nov 16 11:09:24 2008
+++ SPECS/bakery.spec   Tue Jan 20 15:43:33 2009
@@ -2,12 +2,12 @@
 Summary:   C++ Framework for creating GNOME applications
 Summary(pl.UTF-8): Struktura C++ do tworzenia programów dla GNOME
 Name:  bakery
-Version:   2.4.3
-Release:   3
+Version:   2.4.4
+Release:   1
 License:   LGPL v2+
 Group: X11/Development/Libraries
 Source0:   
http://ftp.gnome.org/pub/GNOME/sources/bakery/2.4/%{name}-%{version}.tar.bz2
-# Source0-md5: 7d22a4610656c412e6ae3918a3e82304
+# Source0-md5: c80b4cf39dc8aa65bb9302b84f084b93
 URL:   http://bakery.sourceforge.net/
 BuildRequires: autoconf
 BuildRequires: automake
@@ -131,6 +131,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.19  2009/01/20 14:43:33  duddits
+- up to 2.4.4
+
 Revision 1.18  2008/11/16 10:09:24  arekm
 - release 3
 


 CVS-web:

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


DISTFILES: bakery-2.4.4.tar.bz2

2009-01-20 Thread duddits

Files fetched: 1

STORED: http://ftp.gnome.org/pub/GNOME/sources/bakery/2.4/bakery-2.4.4.tar.bz2
c80b4cf39dc8aa65bb9302b84f084b93  bakery-2.4.4.tar.bz2
Size: 382214 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: syslog-ng.spec - rel 5; trigger for sync() directive

2009-01-20 Thread arekm
Author: arekmDate: Tue Jan 20 17:18:38 2009 GMT
Module: SPECS Tag: HEAD
 Log message:
- rel 5; trigger for sync() directive

 Files affected:
SPECS:
   syslog-ng.spec (1.158 - 1.159) 

 Diffs:


Index: SPECS/syslog-ng.spec
diff -u SPECS/syslog-ng.spec:1.158 SPECS/syslog-ng.spec:1.159
--- SPECS/syslog-ng.spec:1.158  Tue Jan 20 11:40:21 2009
+++ SPECS/syslog-ng.specTue Jan 20 18:18:32 2009
@@ -9,7 +9,7 @@
 Summary(pt_BR.UTF-8):  Daemon de log nova geração
 Name:  syslog-ng
 Version:   3.0.1
-Release:   4
+Release:   5
 License:   GPL v2
 Group: Daemons
 Source0:   
http://www.balabit.com/downloads/files/syslog-ng/sources/3.0.1/source/%{name}_%{version}.tar.gz
@@ -157,6 +157,7 @@
 fi
 
 %triggerun -- syslog-ng  3.0
+sed -i -e 's#sync(\(.*\))#flush_lines(\1)#g' /etc/syslog-ng/syslog-ng.conf
 sed -i -e 's#pipe (/proc/kmsg#file (/proc/kmsg#g' 
/etc/syslog-ng/syslog-ng.conf
 sed -i -e 's#log_prefix#program_override#g' /etc/syslog-ng/syslog-ng.conf
 sed -i -e 's#^destination #destination d_#g' /etc/syslog-ng/syslog-ng.conf
@@ -190,6 +191,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.159  2009/01/20 17:18:32  arekm
+- rel 5; trigger for sync() directive
+
 Revision 1.158  2009/01/20 10:40:21  arekm
 - rel 4; fix configtest (and syslog-ng restart)
 


 CVS-web:

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

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


SPECS: syslog-ng.spec - restart after trigger

2009-01-20 Thread arekm
Author: arekmDate: Tue Jan 20 17:19:16 2009 GMT
Module: SPECS Tag: HEAD
 Log message:
- restart after trigger

 Files affected:
SPECS:
   syslog-ng.spec (1.159 - 1.160) 

 Diffs:


Index: SPECS/syslog-ng.spec
diff -u SPECS/syslog-ng.spec:1.159 SPECS/syslog-ng.spec:1.160
--- SPECS/syslog-ng.spec:1.159  Tue Jan 20 18:18:32 2009
+++ SPECS/syslog-ng.specTue Jan 20 18:19:11 2009
@@ -165,6 +165,7 @@
 sed -i -e 's#match(IN\=\[A-Za-z0-9\]\* 
OUT=\[A-Za-z0-9\]\*);#match(IN=[A-Za-z0-9]* OUT=[A-Za-z0-9]* 
value(MESSAGE));#g' /etc/syslog-ng/syslog-ng.conf
 sed -i -e 1 s#\(.*\)\...@version: 3.0\n\1#g /etc/syslog-ng/syslog-ng.conf
 rm -f %{_var}/lib/%{name}/syslog-ng.persist
+%service syslog-ng restart syslog-ng daemon
 exit 0
 
 %files
@@ -191,6 +192,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.160  2009/01/20 17:19:11  arekm
+- restart after trigger
+
 Revision 1.159  2009/01/20 17:18:32  arekm
 - rel 5; trigger for sync() directive
 


 CVS-web:

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

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


SOURCES: apache-mod_auth_cas.conf (NEW) - sample

2009-01-20 Thread shadzik
Author: shadzik  Date: Tue Jan 20 17:26:14 2009 GMT
Module: SOURCES   Tag: HEAD
 Log message:
- sample

 Files affected:
SOURCES:
   apache-mod_auth_cas.conf (NONE - 1.1)  (NEW)

 Diffs:


Index: SOURCES/apache-mod_auth_cas.conf
diff -u /dev/null SOURCES/apache-mod_auth_cas.conf:1.1
--- /dev/null   Tue Jan 20 18:26:15 2009
+++ SOURCES/apache-mod_auth_cas.confTue Jan 20 18:26:08 2009
@@ -0,0 +1,20 @@
+LoadModule auth_cas_module modules/mod_auth_cas.so
+
+IfModule mod_cas.c
+#   CASLocalCacheInsecure On
+#   CASLocalCacheFile /tmp/CAScache
+#   CASTrustedCACert /path/to/your/cert
+#   CASLoginURL https://
+#   CASHost auth.univ.fr
+#   CASPort 443
+#   CASValidate /validate
+   # CASDebug on
+/IfModule
+
+#Directory /some/directory
+#  IfModule mod_cas.c
+#AuthType CAS
+#AuthName enter your password
+#Require valid-user
+#  /IfModule
+#/Directory

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


DISTFILES: mod_auth_cas-1.0.8.tar.bz2

2009-01-20 Thread shadzik

Files fetched: 1

STORED: no-url://mod_auth_cas-1.0.8.tar.bz2
2bd4117f7a8b25ade77f53c59c66944a  mod_auth_cas-1.0.8.tar.bz2
Size: 110624 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: apache-mod_auth_cas.spec (NEW) - init

2009-01-20 Thread shadzik
Author: shadzik  Date: Tue Jan 20 17:26:59 2009 GMT
Module: SPECS Tag: HEAD
 Log message:
- init

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

 Diffs:


Index: SPECS/apache-mod_auth_cas.spec
diff -u /dev/null SPECS/apache-mod_auth_cas.spec:1.1
--- /dev/null   Tue Jan 20 18:26:59 2009
+++ SPECS/apache-mod_auth_cas.spec  Tue Jan 20 18:26:53 2009
@@ -0,0 +1,76 @@
+# $Revision$, $Date$
+# Replace MODNAME with real module name (example for mod_example)
+# Replace VERSION with version since what confdir support was
+# introduced for the module. only needed for older .specs, not needed
+# for new packages.
+#
+%definemod_nameauth_cas
+%defineapxs%{_sbindir}/apxs
+Summary:   Apache module: CAS
+Summary(pl.UTF-8): Moduł Apache'a: CAS
+Name:  apache-mod_%{mod_name}
+Version:   1.0.8
+Release:   0.1
+License:   GPL v3+
+Group: Networking/Daemons/HTTP
+# svn export 
https://www.ja-sig.org/svn/cas-clients/mod_auth_cas/tags/mod_auth_cas-1.0.8
+Source0:   mod_%{mod_name}-%{version}.tar.bz2
+# Source0-md5: 2bd4117f7a8b25ade77f53c59c66944a
+Source1:   %{name}.conf
+URL:   https://www.ja-sig.org/svn/cas-clients/mod_auth_cas/
+BuildRequires: %{apxs}
+BuildRequires: apache-devel = 2.2
+BuildRequires: rpmbuild(macros) = 1.268
+Requires:  apache(modules-api) = %apache_modules_api
+BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
+
+%define_pkglibdir  %(%{apxs} -q LIBEXECDIR 2/dev/null)
+%define_sysconfdir %(%{apxs} -q SYSCONFDIR 
2/dev/null)/conf.d
+
+%description
+
+%description -l pl.UTF-8
+
+%prep
+%setup -q -n mod_%{mod_name}-%{version}
+
+%build
+%{apxs} -c src/mod_%{mod_name}.c
+
+%install
+rm -rf $RPM_BUILD_ROOT
+install -d $RPM_BUILD_ROOT{%{_pkglibdir},%{_sysconfdir}}
+
+install src/.libs/mod_%{mod_name}.so $RPM_BUILD_ROOT%{_pkglibdir}
+
+# module configuration
+# - should contain LoadModule line
+# - and directives must be between IfModule (so user could disable the module 
easily)
+install %{SOURCE1} $RPM_BUILD_ROOT%{_sysconfdir}/90_mod_%{mod_name}.conf
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%post
+%service -q httpd restart
+
+%postun
+if [ $1 = 0 ]; then
+   %service -q httpd restart
+fi
+
+%files
+%defattr(644,root,root,755)
+%doc README
+%attr(640,root,root) %config(noreplace) %verify(not md5 mtime size) 
%{_sysconfdir}/*_mod_%{mod_name}.conf
+%attr(755,root,root) %{_pkglibdir}/*
+
+%define date   %(echo `LC_ALL=C date +%a %b %d %Y`)
+%changelog
+* %{date} PLD Team feedb...@pld-linux.org
+All persons listed below can be reached at cvs_login@pld-linux.org
+
+$Log$
+Revision 1.1  2009/01/20 17:26:53  shadzik
+- init
+

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


SPECS: syslog-ng.spec - silence restart in trigger

2009-01-20 Thread glen
Author: glen Date: Tue Jan 20 17:55:32 2009 GMT
Module: SPECS Tag: HEAD
 Log message:
- silence restart in trigger

 Files affected:
SPECS:
   syslog-ng.spec (1.160 - 1.161) 

 Diffs:


Index: SPECS/syslog-ng.spec
diff -u SPECS/syslog-ng.spec:1.160 SPECS/syslog-ng.spec:1.161
--- SPECS/syslog-ng.spec:1.160  Tue Jan 20 18:19:11 2009
+++ SPECS/syslog-ng.specTue Jan 20 18:55:26 2009
@@ -165,7 +165,7 @@
 sed -i -e 's#match(IN\=\[A-Za-z0-9\]\* 
OUT=\[A-Za-z0-9\]\*);#match(IN=[A-Za-z0-9]* OUT=[A-Za-z0-9]* 
value(MESSAGE));#g' /etc/syslog-ng/syslog-ng.conf
 sed -i -e 1 s#\(.*\)\...@version: 3.0\n\1#g /etc/syslog-ng/syslog-ng.conf
 rm -f %{_var}/lib/%{name}/syslog-ng.persist
-%service syslog-ng restart syslog-ng daemon
+%service -q syslog-ng restart
 exit 0
 
 %files
@@ -192,6 +192,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.161  2009/01/20 17:55:26  glen
+- silence restart in trigger
+
 Revision 1.160  2009/01/20 17:19:11  arekm
 - restart after trigger
 


 CVS-web:

http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/SPECS/syslog-ng.spec?r1=1.160r2=1.161f=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_auth_cas.spec - desc

2009-01-20 Thread shadzik
Author: shadzik  Date: Tue Jan 20 17:55:37 2009 GMT
Module: SPECS Tag: HEAD
 Log message:
- desc

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

 Diffs:


Index: SPECS/apache-mod_auth_cas.spec
diff -u SPECS/apache-mod_auth_cas.spec:1.1 SPECS/apache-mod_auth_cas.spec:1.2
--- SPECS/apache-mod_auth_cas.spec:1.1  Tue Jan 20 18:26:53 2009
+++ SPECS/apache-mod_auth_cas.spec  Tue Jan 20 18:55:32 2009
@@ -28,8 +28,10 @@
 %define_sysconfdir %(%{apxs} -q SYSCONFDIR 
2/dev/null)/conf.d
 
 %description
+Apache CAS Authentication Module.
 
 %description -l pl.UTF-8
+Modu� Apache'a do uwierzytelniania poprzez CAS.
 
 %prep
 %setup -q -n mod_%{mod_name}-%{version}
@@ -71,6 +73,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.2  2009/01/20 17:55:32  shadzik
+- desc
+
 Revision 1.1  2009/01/20 17:26:53  shadzik
 - init
 


 CVS-web:

http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/SPECS/apache-mod_auth_cas.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_auth_cas.spec - removed temp s*it

2009-01-20 Thread shadzik
Author: shadzik  Date: Tue Jan 20 17:57:50 2009 GMT
Module: SPECS Tag: HEAD
 Log message:
- removed temp s*it

 Files affected:
SPECS:
   apache-mod_auth_cas.spec (1.2 - 1.3) 

 Diffs:


Index: SPECS/apache-mod_auth_cas.spec
diff -u SPECS/apache-mod_auth_cas.spec:1.2 SPECS/apache-mod_auth_cas.spec:1.3
--- SPECS/apache-mod_auth_cas.spec:1.2  Tue Jan 20 18:55:32 2009
+++ SPECS/apache-mod_auth_cas.spec  Tue Jan 20 18:57:44 2009
@@ -44,10 +44,6 @@
 install -d $RPM_BUILD_ROOT{%{_pkglibdir},%{_sysconfdir}}
 
 install src/.libs/mod_%{mod_name}.so $RPM_BUILD_ROOT%{_pkglibdir}
-
-# module configuration
-# - should contain LoadModule line
-# - and directives must be between IfModule (so user could disable the module 
easily)
 install %{SOURCE1} $RPM_BUILD_ROOT%{_sysconfdir}/90_mod_%{mod_name}.conf
 
 %clean
@@ -73,6 +69,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.3  2009/01/20 17:57:44  shadzik
+- removed temp s*it
+
 Revision 1.2  2009/01/20 17:55:32  shadzik
 - desc
 


 CVS-web:

http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/SPECS/apache-mod_auth_cas.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: apache-mod_auth_cas.spec - more temp s*its removed

2009-01-20 Thread shadzik
Author: shadzik  Date: Tue Jan 20 17:58:32 2009 GMT
Module: SPECS Tag: HEAD
 Log message:
- more temp s*its removed

 Files affected:
SPECS:
   apache-mod_auth_cas.spec (1.3 - 1.4) 

 Diffs:


Index: SPECS/apache-mod_auth_cas.spec
diff -u SPECS/apache-mod_auth_cas.spec:1.3 SPECS/apache-mod_auth_cas.spec:1.4
--- SPECS/apache-mod_auth_cas.spec:1.3  Tue Jan 20 18:57:44 2009
+++ SPECS/apache-mod_auth_cas.spec  Tue Jan 20 18:58:27 2009
@@ -1,9 +1,4 @@
 # $Revision$, $Date$
-# Replace MODNAME with real module name (example for mod_example)
-# Replace VERSION with version since what confdir support was
-# introduced for the module. only needed for older .specs, not needed
-# for new packages.
-#
 %definemod_nameauth_cas
 %defineapxs%{_sbindir}/apxs
 Summary:   Apache module: CAS
@@ -69,6 +64,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.4  2009/01/20 17:58:27  shadzik
+- more temp s*its removed
+
 Revision 1.3  2009/01/20 17:57:44  shadzik
 - removed temp s*it
 


 CVS-web:

http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/SPECS/apache-mod_auth_cas.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: taskcoach.spec (NEW) - initial

2009-01-20 Thread uzsolt
Author: uzsolt   Date: Tue Jan 20 18:14:49 2009 GMT
Module: SPECS Tag: HEAD
 Log message:
- initial

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

 Diffs:


Index: SPECS/taskcoach.spec
diff -u /dev/null SPECS/taskcoach.spec:1.1
--- /dev/null   Tue Jan 20 19:14:49 2009
+++ SPECS/taskcoach.specTue Jan 20 19:14:44 2009
@@ -0,0 +1,87 @@
+# $Revision$, $Date$
+Summary:   Task Coach is a simple open source todo manager to manage 
personal tasks and todo lists
+Summary(hu.UTF-8): Task Coach egy egyszerű, nyílt forráskódú 
teendő-nyilvántartó
+Name:  taskcoach
+Version:   0.71.5
+Release:   0.1
+License:   GPL v2
+Group: X11/Applications/Games
+Source0:   http://dl.sourceforge.net/taskcoach/TaskCoach-%{version}.tar.gz
+# Source0-md5: 4265b00ae37f84507f8a1c69aa32a908
+URL:   http://paintown.sourceforge.net
+BuildRequires: python-wxPython-devel
+Requires:  python-wxPython
+BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
+
+%description
+Task Coach is a simple open source todo manager to manage personal
+tasks and todo lists. Task Coach currently has the following features:
+
+- Creating, editing, and deleting tasks and subtasks.
+- Tasks have a subject, description, priority, start date, due date, a
+  completion date and an optional reminder. Tasks can recur on a daily,
+  weekly or monthly basis.
+- Tasks can be viewed as a list or as a tree.
+- Tasks can be sorted by all task attributes, e.g. subject, budget,
+  budget left, due date, etc.
+- Several filters to e.g. hide completed tasks or view only tasks that
+  are due today.
+- Tasks can be created by dragging an e-mail message from Outlook or
+  Thunderbird onto a task viewer.
+- Attachments can be added to tasks, notes, and categories by dragging
+  and dropping files, e-mail messages from Outlook or Thunderbird, or
+  URL's onto a task, note or category.
+- Task status depends on its subtask and vice versa. E.g. if you mark
+  the last uncompleted subtask as completed, the parent task is
+  automatically marked as completed too.
+- Tasks and notes can be assigned to user-defined categories.
+- Settings are persistent and saved automatically. The last opened
+  file is loaded automatically when starting Task Coach.
+- Tracking time spent on tasks. Tasks can have a budget. Time spent
+  can be viewed by individual effort period, by day, by week, and by
+  month.
+- The Task Coach file format (.tsk) is XML.
+- Tasks, notes, effort, and categories can be exported to HTML and CSV
+  (Comma separated format). Effort can be exported to iCalendar/ICS
+  format as well.
+- Tasks, effort, notes, and categories can be printed. When printing,
+  Task Coach prints the information that is visible in the current view,
+  including any filters and sort order.
+- Task Coach can be run from a removable medium.
+- Tasks and notes can be synchronized via a Funambol server such as
+  ScheduleWorld.
+
+%description -l hu.UTF-8
+Task Coach egy egyszerű, nyílt forráskódú teendő-nyilvántartó.
+
+%prep
+%setup -q -n TaskCoach-%{version}
+
+%build
+python setup.py build
+
+%install
+rm -rf $RPM_BUILD_ROOT
+python setup.py install --root $RPM_BUILD_ROOT
+rm -rf $RPM_BUILD_ROOT%{py_sitescriptdir}/buildlib
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%files
+%defattr(644,root,root,755)
+%doc CHANGES.txt INSTALL.txt PUBLICITY.txt README.txt
+%attr(755,root,root) %{_bindir}/taskcoach*
+%{py_sitescriptdir}/TaskCoach-0.71.5-py2.6.egg-info
+%dir %{py_sitescriptdir}/taskcoachlib
+%{py_sitescriptdir}/taskcoachlib/*
+
+%define date%(echo `LC_ALL=C date +%a %b %d %Y`)
+%changelog
+* %{date} PLD Team feedb...@pld-linux.org
+All persons listed below can be reached at cvs_login@pld-linux.org
+
+$Log$
+Revision 1.1  2009/01/20 18:14:44  uzsolt
+- initial
+

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


DISTFILES: TaskCoach-0.71.5.tar.gz

2009-01-20 Thread uzsolt

Files fetched: 1

STORED: http://master.dl.sourceforge.net/taskcoach/TaskCoach-0.71.5.tar.gz
4265b00ae37f84507f8a1c69aa32a908  TaskCoach-0.71.5.tar.gz
Size: 1803741 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: taskcoach.spec - fix URL - verbose hungarian description

2009-01-20 Thread uzsolt
Author: uzsolt   Date: Tue Jan 20 19:18:22 2009 GMT
Module: SPECS Tag: HEAD
 Log message:
- fix URL
- verbose hungarian description

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

 Diffs:


Index: SPECS/taskcoach.spec
diff -u SPECS/taskcoach.spec:1.1 SPECS/taskcoach.spec:1.2
--- SPECS/taskcoach.spec:1.1Tue Jan 20 19:14:44 2009
+++ SPECS/taskcoach.specTue Jan 20 20:18:17 2009
@@ -8,7 +8,7 @@
 Group: X11/Applications/Games
 Source0:   http://dl.sourceforge.net/taskcoach/TaskCoach-%{version}.tar.gz
 # Source0-md5: 4265b00ae37f84507f8a1c69aa32a908
-URL:   http://paintown.sourceforge.net
+URL:   http://www.taskcoach.org/
 BuildRequires: python-wxPython-devel
 Requires:  python-wxPython
 BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
@@ -53,6 +53,28 @@
 
 %description -l hu.UTF-8
 Task Coach egy egyszerű, nyílt forráskódú teendő-nyilvántartó.
+Jelenleg a következő lehetőségei vannak:
+- Feladatok és alfeladatok létrehozása, szerkesztése és törlése
+- A feladatoknak címük, leírásuk, fontosságuk, kezdő, lejárati és
+  bejezési idejük van és esetleg figyelmeztetés is. Lehet napi, heti
+  vagy havi rendszerességgel is.
+- A feladatokat listaként vagy faként is megnézheted
+- A feladatokat sorbarendezheted tulajdonságuk szerint, pl. cím,
+  költségvetés, lejárati idő, stb. szerint.
+- Néhány szűrőt is használhatsz, pl. a befejezett feladatokat
+  elrejtheted, vagy csak a ma esedékeseket láthatod.
+- E-mailből is készíthetsz feladatot (Outlook vagy Thunderbird)
+- Csatolmányokat is társíthatsz feladatokhoz, megjegyzéseket.
+- A feladat állapota függ az alfeladatitól és vissza is.
+- Felhasználói kategóriák létrehozása
+- Beállítások végérvényesek és automatikusan elmentdőnek. Az utoljára
+  megnyitott fájl nyílik meg legközelebb.
+- A feladatokkal töltött idő követése, költségvetés létrehozása.
+- A fájlformátum XML.
+- HTML-be, CSV-be, iCalendar/ICS formátumokba exportálás.
+- Nyomtatási lehetőség.
+- Cserélhető adathordozóról is lehet futtatni.
+- Funambol szerverről szinkronizálhatók.
 
 %prep
 %setup -q -n TaskCoach-%{version}
@@ -82,6 +104,10 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.2  2009/01/20 19:18:17  uzsolt
+- fix URL
+- verbose hungarian description
+
 Revision 1.1  2009/01/20 18:14:44  uzsolt
 - initial
 


 CVS-web:

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

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


DISTFILES: bigboard-0.5.38.tar.bz2

2009-01-20 Thread duddits

Files fetched: 1

STORED: 
http://ftp.gnome.org/pub/GNOME/sources/bigboard/0.5/bigboard-0.5.38.tar.bz2
a12ed37d5f83b99decfafcd981d6e146  bigboard-0.5.38.tar.bz2
Size: 616564 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: bigboard.spec - up to 0.5.38 - %install tune-ups - more %files

2009-01-20 Thread duddits
Author: duddits  Date: Tue Jan 20 19:32:07 2009 GMT
Module: SPECS Tag: HEAD
 Log message:
- up to 0.5.38
- %install tune-ups
- more %files

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

 Diffs:


Index: SPECS/bigboard.spec
diff -u SPECS/bigboard.spec:1.2 SPECS/bigboard.spec:1.3
--- SPECS/bigboard.spec:1.2 Fri May  2 11:09:06 2008
+++ SPECS/bigboard.spec Tue Jan 20 20:32:01 2009
@@ -1,12 +1,12 @@
 # $Revision$, $Date$
 Summary:   Sidebar application launcher using mugshot.org
 Name:  bigboard
-Version:   0.5.34
+Version:   0.5.38
 Release:   1
 License:   GPL v2
 Group: X11/Applications
 Source0:   
http://ftp.gnome.org/pub/GNOME/sources/bigboard/0.5/%{name}-%{version}.tar.bz2
-# Source0-md5: 1cd98f30e5b753fbc7e8486374532e72
+# Source0-md5: a12ed37d5f83b99decfafcd981d6e146
 Patch0:%{name}-pyc.patch
 URL:   http://mugshot.org/
 BuildRequires: GConf2-devel = 2.22.0
@@ -71,8 +71,11 @@
 %{__make} install \
DESTDIR=$RPM_BUILD_ROOT
 
-rm -f $RPM_BUILD_ROOT%{py_sitedir}/bigboard/bignative.la
-rm -f $RPM_BUILD_ROOT%{py_sitedir}/bigboard/keybinder/_keybinder.la
+%{__rm} $RPM_BUILD_ROOT%{py_sitedir}/bigboard/bignative.la
+%{__rm} $RPM_BUILD_ROOT%{py_sitedir}/bigboard/keybinder/_keybinder.la
+
+# Remove another copy of GPLv2 license
+%{__rm} $RPM_BUILD_ROOT%{py_sitedir}/bigboard/libgmail/COPYING
 
 %py_postclean %{_libdir}/bigboard
 %py_postclean
@@ -88,6 +91,7 @@
 
 %files
 %defattr(644,root,root,755)
+%doc AUTHORS ChangeLog NEWS README
 %attr(755,root,root) %{_bindir}/bigboard
 %attr(755,root,root) %{_libdir}/bigboard-applets
 %dir %{_libdir}/bigboard
@@ -95,8 +99,6 @@
 %dir %{py_sitedir}/bigboard
 %attr(755,root,root) %{py_sitedir}/bigboard/bignative.so
 %{py_sitedir}/bigboard/*.py[co]
-%dir %{py_sitedir}/bigboard/bigbar
-%{py_sitedir}/bigboard/bigbar/*.py[co]
 %dir %{py_sitedir}/bigboard/httplib2
 %{py_sitedir}/bigboard/httplib2/*.py[co]
 %dir %{py_sitedir}/bigboard/keybinder
@@ -104,6 +106,11 @@
 %attr(755,root,root) %{py_sitedir}/bigboard/keybinder/_keybinder.so
 %dir %{py_sitedir}/bigboard/libbig
 %{py_sitedir}/bigboard/libbig/*.py[co]
+%dir %{py_sitedir}/bigboard/libgmail
+%dir %{py_sitedir}/bigboard/libgmail/ClientCookie
+%{py_sitedir}/bigboard/libgmail/*.py[co]
+%{py_sitedir}/bigboard/libgmail/README
+%{py_sitedir}/bigboard/libgmail/ClientCookie/*.py[co]
 %dir %{py_sitedir}/bigboard/stocks
 %{py_sitedir}/bigboard/stocks/*.xml
 %dir %{py_sitedir}/bigboard/stocks/apps
@@ -146,6 +153,11 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.3  2009/01/20 19:32:01  duddits
+- up to 0.5.38
+- %install tune-ups
+- more %files
+
 Revision 1.2  2008/05/02 09:09:06  megabajt
 - updated to 0.5.34
 


 CVS-web:

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

2009-01-20 Thread duddits
Author: duddits  Date: Tue Jan 20 19:42:09 2009 GMT
Module: SPECS Tag: HEAD
 Log message:
- pl

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

 Diffs:


Index: SPECS/bigboard.spec
diff -u SPECS/bigboard.spec:1.3 SPECS/bigboard.spec:1.4
--- SPECS/bigboard.spec:1.3 Tue Jan 20 20:32:01 2009
+++ SPECS/bigboard.spec Tue Jan 20 20:42:03 2009
@@ -1,5 +1,6 @@
 # $Revision$, $Date$
 Summary:   Sidebar application launcher using mugshot.org
+Summary(pl.UTF-8): Pasek boczny aplikacji wywołującej używającej 
mugshot.org
 Name:  bigboard
 Version:   0.5.38
 Release:   1
@@ -47,12 +48,16 @@
 Bigboard is a sidebar and application launcher that works with
 mugshot.org to provide an online experience.
 
+%description -l pl.UTF-8
+Bigboard jest aplikacją wywołującą działającą w formie bocznego paska
+współpracującą z mugshot.org.
+
 %prep
 %setup -q
 %patch0 -p1
 
 %build
-mkdir m4
+%{__mkdir} m4
 %{__intltoolize}
 %{__libtoolize}
 %{__aclocal}
@@ -153,6 +158,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.4  2009/01/20 19:42:03  duddits
+- pl
+
 Revision 1.3  2009/01/20 19:32:01  duddits
 - up to 0.5.38
 - %install tune-ups


 CVS-web:

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

2009-01-20 Thread duddits

Files fetched: 1

STORED: http://www.bayour.com/bind9-snmp/bind9-snmp_1.7.tgz
e04c7116a100a619cf81f9b9fb8943e1  bind9-snmp_1.7.tgz
Size: 25349 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: bind-snmp.spec - up to 1.7 - R: perl - %install phase updated - %fil...

2009-01-20 Thread duddits
Author: duddits  Date: Tue Jan 20 20:35:24 2009 GMT
Module: SPECS Tag: HEAD
 Log message:
- up to 1.7
- R: perl
- %install phase updated
- %files updated

 Files affected:
SPECS:
   bind-snmp.spec (1.6 - 1.7) 

 Diffs:


Index: SPECS/bind-snmp.spec
diff -u SPECS/bind-snmp.spec:1.6 SPECS/bind-snmp.spec:1.7
--- SPECS/bind-snmp.spec:1.6Mon Feb 12 22:23:49 2007
+++ SPECS/bind-snmp.specTue Jan 20 21:35:18 2009
@@ -3,15 +3,16 @@
 Summary:   Bind SNMP script
 Summary(pl.UTF-8): Skrypt Bind SNMP
 Name:  bind-snmp
-Version:   1.1
+Version:   1.7
 Release:   0.1
 License:   GPL
 Group: Networking/Daemons
 Source0:   http://www.bayour.com/bind9-snmp/bind9-snmp_%{version}.tgz
-# Source0-md5: 834c7e296e9d5ba28d870629a618715f
+# Source0-md5: e04c7116a100a619cf81f9b9fb8943e1
 URL:   http://www.bayour.com/bind9-snmp/
 BuildRequires: rpm-perlprov
 Requires:  bind = 9.0.0
+Requires:  perl
 BuildArch: noarch
 BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
 
@@ -51,33 +52,39 @@
 Wtyczka BIND9 dla Cacti.
 
 %prep
-%setup -q -c
+%setup -q -n bind9-snmp-%{version}
 
 %install
 rm -rf $RPM_BUILD_ROOT
 install -d $RPM_BUILD_ROOT%{webadminroot}/resource/snmp_queries
 install -d $RPM_BUILD_ROOT%{_datadir}/snmp/mibs
 install -d $RPM_BUILD_ROOT%{_sysconfdir}/{snmp,cron.d}
+install -d $RPM_BUILD_ROOT%{perl_vendorlib}
 
-install etc/snmp/* $RPM_BUILD_ROOT%{_sysconfdir}/snmp
-install usr/share/cacti/resource/snmp_queries/* 
$RPM_BUILD_ROOT%{webadminroot}/resource/snmp_queries
-install usr/share/snmp/mibs/* $RPM_BUILD_ROOT%{_datadir}/snmp/mibs
+install {*.pl,*.stub} $RPM_BUILD_ROOT%{_sysconfdir}/snmp
+install *.xml $RPM_BUILD_ROOT%{webadminroot}/resource/snmp_queries
+install BAYOUR-COM-MIB.txt $RPM_BUILD_ROOT%{_datadir}/snmp/mibs
+install *.pm $RPM_BUILD_ROOT%{perl_vendorlib}
 
 %clean
 rm -rf $RPM_BUILD_ROOT
 
 %files
 %defattr(644,root,root,755)
-%attr(755,root,root) %config(noreplace) %verify(not md5 mtime size) 
%{_sysconfdir}/snmp/*.pl
+%doc README.txt UPGRADE.txt
+%attr(755,root,root) %config(noreplace) %verify(not md5 mtime size) 
%{_sysconfdir}/snmp/bind9-snmp-stats.pl
+%{_sysconfdir}/snmp/snmp*.conf.stub
+%{perl_vendorlib}/BayourCOM_SNMP.pm
 
 %files -n net-snmp-mibs-bind
 %defattr(644,root,root,755)
-%{_datadir}/snmp/mibs/*
+%{_datadir}/snmp/mibs/BAYOUR-COM-MIB.txt
 
 %files -n cacti-bind
 %defattr(644,root,root,755)
-%doc tmp/*.xml
-%{webadminroot}/resource/snmp_queries/*.xml
+%{webadminroot}/resource/snmp_queries/cacti_host_template_bind9_snmp_machine.xml
+%{webadminroot}/resource/snmp_queries/bind9-stats_domains.xml
+%{webadminroot}/resource/snmp_queries/bind9-stats_totals.xml
 
 %define date   %(echo `LC_ALL=C date +%a %b %d %Y`)
 %changelog
@@ -85,6 +92,12 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.7  2009/01/20 20:35:18  duddits
+- up to 1.7
+- R: perl
+- %install phase updated
+- %files updated
+
 Revision 1.6  2007/02/12 21:23:49  glen
 - tabs in preamble
 


 CVS-web:

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

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


SOURCES: man-pages-misc.patch (REMOVED) - drop

2009-01-20 Thread arekm
Author: arekmDate: Tue Jan 20 20:56:34 2009 GMT
Module: SOURCES   Tag: HEAD
 Log message:
- drop

 Files affected:
SOURCES:
   man-pages-misc.patch (1.11 - 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: man-pages-misc.patch - readd as binary

2009-01-20 Thread arekm
Author: arekmDate: Tue Jan 20 20:56:54 2009 GMT
Module: SOURCES   Tag: HEAD
 Log message:
- readd as binary

 Files affected:
SOURCES:
   man-pages-misc.patch (1.12 - 1.13) 

 Diffs:


Index: SOURCES/man-pages-misc.patch
diff -u /dev/null SOURCES/man-pages-misc.patch:1.13
--- /dev/null   Tue Jan 20 21:56:55 2009
+++ SOURCES/man-pages-misc.patchTue Jan 20 21:56:48 2009
@@ -0,0 +1,421 @@
+--- man-pages-2.57/man1/ldd.1.orig 2005-10-04 14:49:58.0 +0200
 man-pages-2.57/man1/ldd.1  2005-12-25 18:30:24.446732064 +0100
+@@ -70,6 +70,6 @@
+ .\ .SH AUTHOR
+ .\ David Engel.
+ .\ Roland McGrath and Ulrich Drepper.
+-.SH SEE ALSO
++.SH SEE ALSO
+ .BR ld.so (8),
+ .BR ldconfig (8)
+--- man-pages-2.57/man3/dlopen.3.orig  2005-10-28 15:27:52.0 +0200
 man-pages-2.57/man3/dlopen.3   2005-12-25 18:38:09.788989288 +0100
+@@ -21,8 +21,8 @@
+ .\
+ .\ You should have received a copy of the GNU General Public
+ .\ License along with this manual; if not, write to the Free
+-.\ Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139,
+-.\ USA.
++.\ Software Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
++.\ MA 02110-1301, USA.
+ .\
+ .\ Modified by David A. Wheeler dwhee...@dwheeler.com 2000-11-28.
+ .\ Applied patch by Terran Melconian, aeb, 2001-12-14.
+--- man-pages-2.57/man5/locale.5.orig  2005-11-02 14:55:25.0 +0100
 man-pages-2.57/man5/locale.5   2005-12-25 20:16:15.125282176 +0100
+@@ -20,7 +20,7 @@
+ .\
+ .TH LOCALE 5 1994-11-09 Linux Linux User Manual
+ .SH NAME
+-locale \- Describes a locale definition file
++locale \- describes a locale definition file
+ .SH DESCRIPTION
+ The 
+ .B locale
+--- man-pages-2.57/man8/nscd.8.orig2005-07-06 09:41:37.0 +0200
 man-pages-2.57/man8/nscd.8 2005-12-25 18:41:47.316920016 +0100
+@@ -21,7 +21,7 @@
+ .SH NAME
+ /usr/sbin/nscd \- name service cache daemon
+ .SH DESCRIPTION
+-Nscd is a daemon that provides a cache for the most common name service
++nscd is a daemon that provides a cache for the most common name service
+ requests.
+ The default configuration file,
+ .IR /etc/nscd.conf ,
+--- man-pages-2.57/man8/zic.8.orig 2005-11-02 12:11:03.0 +0100
 man-pages-2.57/man8/zic.8  2005-12-25 18:43:54.762545336 +0100
+@@ -404,7 +404,7 @@
+ if the leap second time given by the other fields should be interpreted as
+ local wall clock time.
+ .SH FILES
+-/usr/local/etc/zoneinfo   standard directory used for created files
++/usr/share/zoneinfo   standard directory used for created files
+ .SH NOTES
+ For areas with more than two types of local time,
+ you may need to use local standard time in the
+--- man-pages-2.57/de/man7/iso_8859-1.7.orig   1998-12-07 01:34:44.0 
+0100
 man-pages-2.57/de/man7/iso_8859-1.72005-12-25 19:27:49.914941280 
+0100
+@@ -25,10 +25,10 @@
+ .\ Translated Thu Jan  4 16:37:10 MET 1996 by lutz.donnerha...@jena.thur.de
+ .\ Modified Mon Jun 10 00:20:28 1996 by Martin Schulze (j...@linux.de)
+ .\
+-.TH ISO_8859_1 7 11. Juli 1995 Linux Verschiedenes
++.TH ISO_8859-1 7 11. Juli 1995 Linux Verschiedenes
+ .nh
+ .SH BEZEICHNUNG
+-iso_8859_1 \- Zeichentabelle ISO 8859-1 in oktaler, dezimaler und
++iso_8859-1 \- Zeichentabelle ISO 8859-1 in oktaler, dezimaler und
+ hexadezimaler Kodierung
+ .SH ERKL�RUNG
+ Der Standard ISO 8859 enth�lt verschiedene 8-bit Erweiterungen des ASCII
+--- man-pages-2.57/de/man7/latin1.7.orig   2005-12-25 16:15:02.883397000 
+0100
 man-pages-2.57/de/man7/latin1.72005-12-25 19:27:57.253825600 +0100
+@@ -1 +1 @@
+-.so man7/iso_8859_1.7
++.so iso_8859-1.7
+--- man-pages-2.57/fr/man7/latin1.7.orig   2005-12-25 16:15:05.10006 
+0100
 man-pages-2.57/fr/man7/latin1.72005-12-25 19:31:49.976446384 +0100
+@@ -1 +1 @@
+-.so man7/iso_8859-1.7
++.so iso_8859-1.7
+--- man-pages-2.57/fr/man7/iso_8859-1.7.orig   2005-06-27 09:20:02.0 
+0200
 man-pages-2.57/fr/man7/iso_8859-1.72005-12-25 19:32:11.625155280 
+0100
+@@ -28,9 +28,9 @@
+ .\ Màj 27/06/2005 LDP-1.60
+ .\ Màj 01/05/2006 LDP-1.67.1
+ .\
+-.TH ISO_8859_1 7 15 juillet 2003 LDP Manuel de l'administrateur Linux
++.TH ISO_8859-1 7 15 juillet 2003 LDP Manuel de l'administrateur Linux
+ .SH NOM
+-iso_8859_1, latin1 \- Le jeu de caractères ISO 8859\-1 en octal, décimal et 
hexadécimal.
++iso_8859-1, latin1 \- Le jeu de caractères ISO 8859\-1 en octal, décimal et 
hexadécimal.
+ .SH DESCRIPTION
+ Le standard ISO 8859 inclut plusieurs extensions au jeu de caractères ASCII
+ (ISO 646-IRV). Le jeu le plus important est ISO 8859\-1, l'alphabet
+--- man-pages-2.57/it/man7/latin1.7.orig   1999-05-24 17:40:24.0 
+0200
 man-pages-2.57/it/man7/latin1.72005-12-25 19:39:58.868123552 +0100
+@@ -1 +1 @@
+-.so man7/iso_8859-1.7
++.so iso_8859-1.7
+--- man-pages-2.57/pt_BR/man7/latin1.7.orig2005-12-25 

SOURCES: man-pages-misc.patch - dos line endings

2009-01-20 Thread arekm
Author: arekmDate: Tue Jan 20 21:11:43 2009 GMT
Module: SOURCES   Tag: HEAD
 Log message:
- dos line endings

 Files affected:
SOURCES:
   man-pages-misc.patch (1.13 - 1.14) 

 Diffs:


Index: SOURCES/man-pages-misc.patch
diff -u SOURCES/man-pages-misc.patch:1.13 SOURCES/man-pages-misc.patch:1.14
--- SOURCES/man-pages-misc.patch:1.13   Tue Jan 20 21:56:48 2009
+++ SOURCES/man-pages-misc.patchTue Jan 20 22:11:38 2009
@@ -247,14 +247,14 @@
  sync \- �޸许� ũ �ڷ��� ȭ
  .SH SYNOPSYS
 @@ -52,8 +52,3 @@
- .BR halt (8),
- .BR reboot (8),
- .BR update (8)
--
--
--
--
--
+ .BR halt (8),
+ .BR reboot (8),
+ .BR update (8)
+-
+-
+-
+-
+-
 --- man-pages-2.57/pt_BR/man1/sync.1.orig  2005-12-26 00:35:34.260934000 
+0100
 +++ man-pages-2.57/pt_BR/man1/sync.1   2005-12-26 00:35:45.454232384 +0100
 @@ -4,7 +4,7 @@


 CVS-web:

http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/SOURCES/man-pages-misc.patch?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: cvsnt.spec - release 4

2009-01-20 Thread arekm
Author: arekmDate: Tue Jan 20 21:11:54 2009 GMT
Module: SPECS Tag: HEAD
 Log message:
- release 4

 Files affected:
SPECS:
   cvsnt.spec (1.36 - 1.37) 

 Diffs:


Index: SPECS/cvsnt.spec
diff -u SPECS/cvsnt.spec:1.36 SPECS/cvsnt.spec:1.37
--- SPECS/cvsnt.spec:1.36   Mon Dec  8 21:11:52 2008
+++ SPECS/cvsnt.specTue Jan 20 22:11:48 2009
@@ -24,7 +24,7 @@
 Name:  cvsnt
 # 2.5.04 is current stable series (2.5.05 is not)
 Version:   2.5.04.3236
-Release:   3
+Release:   4
 License:   GPL v2+/LGPL v2+
 Group: Development/Version Control
 Source0:   http://www.cvsnt.org/archive/%{name}-%{version}.tar.gz
@@ -390,6 +390,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.37  2009/01/20 21:11:48  arekm
+- release 4
+
 Revision 1.36  2008/12/08 20:11:52  qboosh
 - removed obsolete download URL
 


 CVS-web:

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

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


SPECS: man-pages.spec - release 2

2009-01-20 Thread arekm
Author: arekmDate: Tue Jan 20 21:12:00 2009 GMT
Module: SPECS Tag: HEAD
 Log message:
- release 2

 Files affected:
SPECS:
   man-pages.spec (1.247 - 1.248) 

 Diffs:


Index: SPECS/man-pages.spec
diff -u SPECS/man-pages.spec:1.247 SPECS/man-pages.spec:1.248
--- SPECS/man-pages.spec:1.247  Mon Jan 19 15:56:33 2009
+++ SPECS/man-pages.specTue Jan 20 22:11:55 2009
@@ -17,7 +17,7 @@
 Summary(uk.UTF-8): Сторінки мануалу (man) з Linux Documentation Project
 Name:  man-pages
 Version:   3.17
-Release:   1
+Release:   2
 License:   distributable
 Group: Documentation
 %definecs_version  0.16
@@ -516,6 +516,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.248  2009/01/20 21:11:55  arekm
+- release 2
+
 Revision 1.247  2009/01/19 14:56:33  arekm
 - up to 3.17
 


 CVS-web:

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

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


SPECS (DEVEL): urjtag.spec - use libftdi; disable ftd2xx

2009-01-20 Thread sparky
Author: sparky   Date: Tue Jan 20 21:56:30 2009 GMT
Module: SPECS Tag: DEVEL
 Log message:
- use libftdi; disable ftd2xx

 Files affected:
SPECS:
   urjtag.spec (1.5.2.2 - 1.5.2.3) 

 Diffs:


Index: SPECS/urjtag.spec
diff -u SPECS/urjtag.spec:1.5.2.2 SPECS/urjtag.spec:1.5.2.3
--- SPECS/urjtag.spec:1.5.2.2   Sun Dec 21 19:06:39 2008
+++ SPECS/urjtag.spec   Tue Jan 20 22:56:25 2009
@@ -17,6 +17,7 @@
 BuildRequires: bison
 BuildRequires: flex = 2.5.33
 BuildRequires: gettext-devel
+BuildRequires: libftdi-devel
 BuildRequires: libusb-devel
 BuildRequires: sed = 4.0
 BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
@@ -36,7 +37,8 @@
 %{__autoconf}
 %{__autoheader}
 %{__automake}
-%configure
+%configure \
+   --without-ftd2xx
 %{__make}
 
 
@@ -64,6 +66,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.5.2.3  2009/01/20 21:56:25  sparky
+- use libftdi; disable ftd2xx
+
 Revision 1.5.2.2  2008/12/21 18:06:39  sparky
 - force dropin
 


 CVS-web:

http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/SPECS/urjtag.spec?r1=1.5.2.2r2=1.5.2.3f=u

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


DISTFILES: bird-1.0.12.tar.gz

2009-01-20 Thread duddits

Files fetched: 1

STORED: ftp://bird.network.cz/pub/bird/bird-1.0.12.tar.gz
f404bde9b664ef801a81c7bdc784ec7c  bird-1.0.12.tar.gz
Size: 601609 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: bird.spec - up to 1.0.12 - flex.patch dropped

2009-01-20 Thread duddits
Author: duddits  Date: Tue Jan 20 22:27:57 2009 GMT
Module: SPECS Tag: HEAD
 Log message:
- up to 1.0.12
- flex.patch dropped

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

 Diffs:


Index: SPECS/bird.spec
diff -u SPECS/bird.spec:1.41 SPECS/bird.spec:1.42
--- SPECS/bird.spec:1.41Mon Feb 12 22:23:49 2007
+++ SPECS/bird.spec Tue Jan 20 23:27:52 2009
@@ -9,18 +9,17 @@
 Summary:   Routing daemon
 Summary(pl.UTF-8): Demon dynamicznego routingu
 Name:  bird
-Version:   1.0.11
-Release:   2
+Version:   1.0.12
+Release:   1
 License:   GPL
 Group: Networking/Daemons
 Source0:   ftp://bird.network.cz/pub/bird/%{name}-%{version}.tar.gz
-# Source0-md5: 9f9dfe2af0bde45a0adbbd0ebc36f249
+# Source0-md5: f404bde9b664ef801a81c7bdc784ec7c
 Source1:   %{name}-ipv4.init
 Source2:   %{name}-ipv4.sysconfig
 Source3:   %{name}-ipv6.init
 Source4:   %{name}-ipv6.sysconfig
-Patch0:%{name}-flex.patch
-Patch1:%{name}-64bit.patch
+Patch0:%{name}-64bit.patch
 URL:   http://bird.network.cz/
 BuildRequires: autoconf
 BuildRequires: automake
@@ -104,7 +103,6 @@
 %prep
 %setup -q
 %patch0 -p1
-%patch1 -p1
 
 %build
 cp -f /usr/share/automake/config.* tools
@@ -206,6 +204,10 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.42  2009/01/20 22:27:52  duddits
+- up to 1.0.12
+- flex.patch dropped
+
 Revision 1.41  2007/02/12 21:23:49  glen
 - tabs in preamble
 


 CVS-web:

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

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


SOURCES: bird-flex.patch (REMOVED) - dropped

2009-01-20 Thread duddits
Author: duddits  Date: Tue Jan 20 22:28:36 2009 GMT
Module: SOURCES   Tag: HEAD
 Log message:
- dropped

 Files affected:
SOURCES:
   bird-flex.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


DISTFILES: bitlbee-1.2.3.tar.gz

2009-01-20 Thread duddits

Files fetched: 1

STORED: http://get.bitlbee.org/src/bitlbee-1.2.3.tar.gz
2b1674d98804970809de3da3edf0bed2  bitlbee-1.2.3.tar.gz
Size: 475748 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: bitlbee.spec - up to 1.2.3, fixes CVE-2008-3969

2009-01-20 Thread duddits
Author: duddits  Date: Tue Jan 20 22:34:16 2009 GMT
Module: SPECS Tag: HEAD
 Log message:
- up to 1.2.3, fixes CVE-2008-3969

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

 Diffs:


Index: SPECS/bitlbee.spec
diff -u SPECS/bitlbee.spec:1.7 SPECS/bitlbee.spec:1.8
--- SPECS/bitlbee.spec:1.7  Sat Dec 27 15:23:18 2008
+++ SPECS/bitlbee.spec  Tue Jan 20 23:34:11 2009
@@ -2,12 +2,12 @@
 Summary:   An IRC to other chat networks gateway
 Summary(pl.UTF-8): Bramka pomiędzy IRC-em i innymi sieciami komunikacyjnymi
 Name:  bitlbee
-Version:   1.0.2
+Version:   1.2.3
 Release:   1
 License:   GPL
 Group: Daemons
 Source0:   http://get.bitlbee.org/src/%{name}-%{version}.tar.gz
-# Source0-md5: ead4433fca9444cb61d478f1af2a79dd
+# Source0-md5: 2b1674d98804970809de3da3edf0bed2
 URL:   http://www.bitlbee.org/
 BuildRequires: gnutls-devel
 BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
@@ -69,6 +69,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.8  2009/01/20 22:34:11  duddits
+- up to 1.2.3, fixes CVE-2008-3969
+
 Revision 1.7  2008/12/27 14:23:18  adamg
 - cleanups
 


 CVS-web:

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

2009-01-20 Thread duddits

Files fetched: 1

STORED: http://sweaglesw.com/~djwong/programs/bogodisk/bogodisk-0.5.5.tar.gz
be84161fc1dc234db7547fc86dd69eec  bogodisk-0.5.5.tar.gz
Size: 5737 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: bogodisk.spec - up to 0.5.5 - as-needed.patch dropped

2009-01-20 Thread duddits
Author: duddits  Date: Tue Jan 20 22:49:16 2009 GMT
Module: SPECS Tag: HEAD
 Log message:
- up to 0.5.5
- as-needed.patch dropped

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

 Diffs:


Index: SPECS/bogodisk.spec
diff -u SPECS/bogodisk.spec:1.4 SPECS/bogodisk.spec:1.5
--- SPECS/bogodisk.spec:1.4 Sun Dec 28 13:56:04 2008
+++ SPECS/bogodisk.spec Tue Jan 20 23:49:11 2009
@@ -2,13 +2,12 @@
 Summary:   Disk Speed Graphs
 Summary(pl.UTF-8): Wykresy szybkości dysku
 Name:  bogodisk
-Version:   0.5.4
+Version:   0.5.5
 Release:   1
 License:   GPL
 Group: Applications/System
 Source0:   
http://sweaglesw.com/~djwong/programs/bogodisk/%{name}-%{version}.tar.gz
-# Source0-md5: 43a17fc39f700999e0339ca5f2cb6c98
-Patch0:%{name}-as-needed.patch
+# Source0-md5: be84161fc1dc234db7547fc86dd69eec
 URL:   http://sweaglesw.com/~djwong/programs/bogodisk/
 BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
 
@@ -20,7 +19,6 @@
 
 %prep
 %setup -q
-%patch0 -p1
 
 %build
 %{__make} \
@@ -48,6 +46,10 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.5  2009/01/20 22:49:11  duddits
+- up to 0.5.5
+- as-needed.patch dropped
+
 Revision 1.4  2008/12/28 12:56:04  adamg
 - as-needed patch
 


 CVS-web:

http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/SPECS/bogodisk.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: bogodisk-as-needed.patch (REMOVED) - dropped

2009-01-20 Thread duddits
Author: duddits  Date: Tue Jan 20 22:49:52 2009 GMT
Module: SOURCES   Tag: HEAD
 Log message:
- dropped

 Files affected:
SOURCES:
   bogodisk-as-needed.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


DISTFILES: ERRORS: DBIx-Class-0.08099_05.tar.gz

2009-01-20 Thread agaran
wget -nv --no-check-certificate --user-agent=PLD/distfiles -O 
./tmp/11cec07a-f64e-4ebb-a674-4c561ec97f89/5b7eee3c1ddf6f865c816cde9e9bdf62/DBIx-Class-0.08099_05.tar.gz
 http://www.cpan.org/modules/by-module/DBIx/DBIx-Class-0.08099_05.tar.gz:
http://www.cpan.org/modules/by-module/DBIx/DBIx-Class-0.08099_05.tar.gz:
2009-01-20 23:56:41 ERROR 404: Not Found.


FATAL: http://www.cpan.org/modules/by-module/DBIx/DBIx-Class-0.08099_05.tar.gz 
(5b7eee3c1ddf6f865c816cde9e9bdf62) was not fetched (wget -nv 
--no-check-certificate --user-agent=PLD/distfiles -O 
./tmp/11cec07a-f64e-4ebb-a674-4c561ec97f89/5b7eee3c1ddf6f865c816cde9e9bdf62/DBIx-Class-0.08099_05.tar.gz
 http://www.cpan.org/modules/by-module/DBIx/DBIx-Class-0.08099_05.tar.gz: 
http://www.cpan.org/modules/by-module/DBIx/DBIx-Class-0.08099_05.tar.gz:
2009-01-20 23:56:41 ERROR 404: Not Found.
)

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 (DEVEL): perl-DBIx-Class.spec - up to 0.8099_5, DEVELOPER RELEASE,

2009-01-20 Thread agaran
Author: agaran   Date: Tue Jan 20 22:56:45 2009 GMT
Module: SPECS Tag: DEVEL
 Log message:
- up to 0.8099_5, DEVELOPER RELEASE, 

 Files affected:
SPECS:
   perl-DBIx-Class.spec (1.22 - 1.22.2.1) 

 Diffs:


Index: SPECS/perl-DBIx-Class.spec
diff -u SPECS/perl-DBIx-Class.spec:1.22 SPECS/perl-DBIx-Class.spec:1.22.2.1
--- SPECS/perl-DBIx-Class.spec:1.22 Fri Jan 16 17:54:30 2009
+++ SPECS/perl-DBIx-Class.spec  Tue Jan 20 23:56:39 2009
@@ -9,8 +9,8 @@
 Summary:   DBIx::Class - Extensible and flexible object - relational 
mapper
 Summary(pl.UTF-8): DBIx::Class - rozszerzalne i elastyczne wiązanie 
obiektów - relacji
 Name:  perl-DBIx-Class
-Version:   0.08010
-Release:   2
+Version:   0.08099_05
+Release:   1
 # same as perl
 License:   GPL v1+ or Artistic
 Group: Development/Languages/Perl
@@ -48,7 +48,7 @@
 # Only APR::UUID is available in PLD. And if it was we would still
 # need only one of Data::UUID, Data::Uniqid, APR::UUID or UUID at any
 # time to get full functionality
-%define_noautoreq  'perl(Data::Uniqid)' 'perl(UUID)' 
'perl(APR::UUID)' 'perl(JSON)' 'perl(DBD::Multi)' 'perl(DBIC::SQL::Abstract)'
+%define_noautoreq  'perl(Data::Uniqid)' 'perl(UUID)' 
'perl(APR::UUID)' 'perl(JSON)' 'perl(DBD::Multi)' 'perl(DBIC::SQL::Abstract)' 
'perl(Moose)' 'perl(Moose::Role)' 'perl(MooseX::AttributeHelpers)'
 
 %description
 DBIx::Class is a SQL to OOP mapper, inspired by the Class::DBI
@@ -130,6 +130,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.22.2.1  2009/01/20 22:56:39  agaran
+- up to 0.8099_5, DEVELOPER RELEASE,
+
 Revision 1.22  2009/01/16 16:54:30  qboosh
 - sorted BRs
 


 CVS-web:

http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/SPECS/perl-DBIx-Class.spec?r1=1.22r2=1.22.2.1f=u

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


DISTFILES: bogoseek-0.3.6.tar.gz

2009-01-20 Thread duddits

Files fetched: 1

STORED: http://sweaglesw.com/~djwong/programs/bogodisk/bogoseek-0.3.6.tar.gz
257dd5ffd1f106ad5951d1beca0e5d01  bogoseek-0.3.6.tar.gz
Size: 8325 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: bogoseek.spec - up to 0.3.6 - as-needed.patch dropped

2009-01-20 Thread duddits
Author: duddits  Date: Tue Jan 20 22:57:43 2009 GMT
Module: SPECS Tag: HEAD
 Log message:
- up to 0.3.6
- as-needed.patch dropped

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

 Diffs:


Index: SPECS/bogoseek.spec
diff -u SPECS/bogoseek.spec:1.3 SPECS/bogoseek.spec:1.4
--- SPECS/bogoseek.spec:1.3 Sun Dec 28 13:53:00 2008
+++ SPECS/bogoseek.spec Tue Jan 20 23:57:38 2009
@@ -2,13 +2,12 @@
 Summary:   Disk Speed Graphs
 Summary(pl.UTF-8): Wykresy szybkości dysku
 Name:  bogoseek
-Version:   0.3.5
+Version:   0.3.6
 Release:   1
 License:   GPL
 Group: Applications/System
 Source0:   
http://sweaglesw.com/~djwong/programs/bogodisk/%{name}-%{version}.tar.gz
-# Source0-md5: 6f7f4cfb6d81a592a0e3287316b2c173
-Patch0:%{name}-as-needed.patch
+# Source0-md5: 257dd5ffd1f106ad5951d1beca0e5d01
 URL:   http://sweaglesw.com/~djwong/programs/bogodisk/
 BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
 
@@ -20,7 +19,6 @@
 
 %prep
 %setup -q
-%patch0 -p1
 
 %build
 %{__make} \
@@ -48,6 +46,10 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.4  2009/01/20 22:57:38  duddits
+- up to 0.3.6
+- as-needed.patch dropped
+
 Revision 1.3  2008/12/28 12:53:00  adamg
 - updated to 0.3.5
 - as-needed patch


 CVS-web:

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


SOURCES: bogoseek-as-needed.patch (REMOVED) - dropped

2009-01-20 Thread duddits
Author: duddits  Date: Tue Jan 20 22:58:19 2009 GMT
Module: SOURCES   Tag: HEAD
 Log message:
- dropped

 Files affected:
SOURCES:
   bogoseek-as-needed.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