SOURCES: squirrelmail-php505.patch (NEW) - patch against php 5.0.5...

2005-09-28 Thread gotar
Author: gotarDate: Wed Sep 28 06:50:16 2005 GMT
Module: SOURCES   Tag: HEAD
 Log message:
- patch against php 5.0.5 and greater

 Files affected:
SOURCES:
   squirrelmail-php505.patch (NONE - 1.1)  (NEW)

 Diffs:


Index: SOURCES/squirrelmail-php505.patch
diff -u /dev/null SOURCES/squirrelmail-php505.patch:1.1
--- /dev/null   Wed Sep 28 08:50:16 2005
+++ SOURCES/squirrelmail-php505.patch   Wed Sep 28 08:50:11 2005
@@ -0,0 +1,30 @@
+diff -urN squirrelmail-1.4.5.orig/class/mime/Rfc822Header.class.php 
squirrelmail-1.4.5/class/mime/Rfc822Header.class.php
+--- squirrelmail-1.4.5.orig/class/mime/Rfc822Header.class.php  2005-02-07 
01:33:29.0 +0100
 squirrelmail-1.4.5/class/mime/Rfc822Header.class.php   2005-09-27 
13:44:21.0 +0200
+@@ -505,8 +505,9 @@
+  * functions/imap_messages. I'm not sure if it's ok here to call
+  * that function?
+  */
+-function parsePriority($value) {
+-$value = strtolower(array_shift(split('/\w/',trim($value;
++function parsePriority($sValue) {
++$sValue = split('/\w/',trim($value));
++$value = strtolower(array_shift($sValue));
+ if ( is_numeric($value) ) {
+ return $value;
+ }
+diff -urN squirrelmail-1.4.5.orig/functions/imap_messages.php 
squirrelmail-1.4.5/functions/imap_messages.php
+--- squirrelmail-1.4.5.orig/functions/imap_messages.php2005-04-16 
19:45:38.0 +0200
 squirrelmail-1.4.5/functions/imap_messages.php 2005-09-27 
12:37:43.0 +0200
+@@ -476,8 +476,9 @@
+  * NOTE: this is actually a duplicate from the function in
+  * class/mime/Rfc822Header.php.
+  */
+-function parsePriority($value) {
+-$value = strtolower(array_shift(split('/\w/',trim($value;
++function parsePriority($sValue) {
++  $aValue=split('/w/',trim($sValue));
++  $value = strtolower(array_shift($aValue));
+ if ( is_numeric($value) ) {
+ return $value;
+ }

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


SOURCES: linux-2.6-cx88-blackbird.patch (REMOVED) - obsolete.

2005-09-28 Thread pluto
Author: plutoDate: Wed Sep 28 08:30:11 2005 GMT
Module: SOURCES   Tag: HEAD
 Log message:
- obsolete.

 Files affected:
SOURCES:
   linux-2.6-cx88-blackbird.patch (1.1 - NONE)  (REMOVED)

 Diffs:

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


SOURCES: all.patch.gz e43803ee480057ef1767aea34c459d26 all.patch.gz

2005-09-28 Thread hawk
Author: hawk Date: Wed Sep 28 09:09:17 2005 GMT
Module: SOURCES   Tag: HEAD
 Log message:
e43803ee480057ef1767aea34c459d26  all.patch.gz

 Files affected:
SOURCES:
   all.patch.gz (1.15 - 1.16) 

 Diffs:


Index: SOURCES/all.patch.gz
Binary file


 CVS-web:
http://cvs.pld-linux.org/SOURCES/all.patch.gz?r1=1.15r2=1.16f=u

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


DISTFILES: Text-ASCIITable-0.17.tar.gz

2005-09-28 Thread migo

Files fetched: 1

STORED: http://www.cpan.org/modules/by-module/Text/Text-ASCIITable-0.17.tar.gz
4fb516df15271f68d0a47e4afadf83be  Text-ASCIITable-0.17.tar.gz
Size: 20647 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: pgpool.spec (NEW) - initial for PLD - NFY

2005-09-28 Thread zawadaa
Author: zawadaa  Date: Wed Sep 28 09:25:25 2005 GMT
Module: SPECS Tag: HEAD
 Log message:
- initial for PLD
- NFY

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

 Diffs:


Index: SPECS/pgpool.spec
diff -u /dev/null SPECS/pgpool.spec:1.1
--- /dev/null   Wed Sep 28 11:25:25 2005
+++ SPECS/pgpool.spec   Wed Sep 28 11:25:19 2005
@@ -0,0 +1,59 @@
+# $Revision$, $Date$
+#
+# TODO
+#  - I think it shuld be daemon so rc-scripts support is needed 
+#  (user pgpool?)
+#
+Summary:   Pgpool is a connection pooling/replication server for 
PostgreSQL.
+Name:  pgpool
+Version:   2.6.3
+Release:   0.1
+Epoch: 0
+License:   BSD
+Group: Applications/Databases
+Source0:   
http://pgfoundry.org/frs/download.php/426/%{name}-%{version}.tar.gz
+# Source0-md5  
+URL:   http://pgfoundry.org/projects/pgpool/
+Buildroot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
+
+%description
+Pgpool is a connection pooling/replication server for PostgreSQL.
+
+%prep
+%setup -q
+%build
+CFLAGS=${CFLAGS:-%{rpmcflags}} ; export CFLAGS
+CXXFLAGS=${CXXFLAGS:-%{rpmcflags}} ; export CXXFLAGS
+
+%configure \
+   --bindir %{_bindir} \
+   --sysconfdir=%{_sysconfdir}
+
+%{__make}
+
+%install
+rm -rf $RPM_BUILD_ROOT
+%{__make} install \
+   DESTDIR=$RPM_BUILD_ROOT
+install pgpool $RPM_BUILD_ROOT%{_bindir}/
+install pgpool.conf.sample $RPM_BUILD_ROOT%{_sysconfdir}/pgpool.conf
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%files
+%defattr(644,root,root,755)
+%doc README README.euc_jp TODO AUTHORS COPYING INSTALL
+%attr(755,root,root) %{_bindir}/pgpool
+%config(noreplace) %verify(not md5 mtime size)/pgpool.conf
+
+%define date   %(echo `LC_ALL=C date +%a %b %d %Y`)
+%changelog
+* %{date} PLD Team [EMAIL PROTECTED]
+All persons listed below can be reached at cvs_login@pld-linux.org
+
+$Log$
+Revision 1.1  2005/09/28 09:25:19  zawadaa
+- initial for PLD
+- NFY
+

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


SPECS: perl-Text-ASCIITable.spec - up to 0.17 (fixed memory leak)

2005-09-28 Thread migo
Author: migo Date: Wed Sep 28 09:28:53 2005 GMT
Module: SPECS Tag: HEAD
 Log message:
- up to 0.17 (fixed memory leak)

 Files affected:
SPECS:
   perl-Text-ASCIITable.spec (1.2 - 1.3) 

 Diffs:


Index: SPECS/perl-Text-ASCIITable.spec
diff -u SPECS/perl-Text-ASCIITable.spec:1.2 SPECS/perl-Text-ASCIITable.spec:1.3
--- SPECS/perl-Text-ASCIITable.spec:1.2 Thu Jun  2 20:56:14 2005
+++ SPECS/perl-Text-ASCIITable.spec Wed Sep 28 11:28:48 2005
@@ -9,13 +9,13 @@
 Summary:   Text::ASCIITable - Create a nice formatted table using ASCII 
characters
 Summary(pl):   Text::ASCIITable - tworzenie ładne sformatowanych tabel przy 
użyciu znaków ASCII
 Name:  perl-Text-ASCIITable
-Version:   0.15
+Version:   0.17
 Release:   1
 # same as perl
 License:   GPL v1+ or Artistic
 Group: Development/Languages/Perl
 Source0:   
http://www.cpan.org/modules/by-module/%{pdir}/%{pdir}-%{pnam}-%{version}.tar.gz
-# Source0-md5: 6f809fdd19d393a09ba2eee136bcc6ab
+# Source0-md5: 4fb516df15271f68d0a47e4afadf83be
 BuildRequires: perl-devel = 1:5.8.0
 BuildRequires: rpm-perlprov = 4.1-13
 BuildArch: noarch
@@ -69,6 +69,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.3  2005/09/28 09:28:48  migo
+- up to 0.17 (fixed memory leak)
+
 Revision 1.2  2005/06/02 18:56:14  qboosh
 - pl
 


 CVS-web:
http://cvs.pld-linux.org/SPECS/perl-Text-ASCIITable.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: pine.spec - 3 months is enough for testing, it works for me...

2005-09-28 Thread hawk
Author: hawk Date: Wed Sep 28 09:30:56 2005 GMT
Module: SPECS Tag: HEAD
 Log message:
- 3 months is enough for testing, it works for me, nobody else cared
- release 2 (1 will be for Ra)

 Files affected:
SPECS:
   pine.spec (1.124 - 1.125) 

 Diffs:


Index: SPECS/pine.spec
diff -u SPECS/pine.spec:1.124 SPECS/pine.spec:1.125
--- SPECS/pine.spec:1.124   Wed Jun 22 23:13:49 2005
+++ SPECS/pine.spec Wed Sep 28 11:30:51 2005
@@ -17,7 +17,7 @@
 Name:  pine
 %definerealversion 4.63
 Version:   %{realversion}N
-Release:   0.2
+Release:   2
 %if %{with distributable}
 License:   Distributable for PLD
 %else
@@ -312,6 +312,10 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.125  2005/09/28 09:30:51  hawk
+- 3 months is enough for testing, it works for me, nobody else cared
+- release 2 (1 will be for Ra)
+
 Revision 1.124  2005/06/22 21:13:49  hawk
 - removed unused terminit patch, renumbered patches
 - adjusted all.patch, unix, css and iconv patches for 4.63


 CVS-web:
http://cvs.pld-linux.org/SPECS/pine.spec?r1=1.124r2=1.125f=u

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


DISTFILES: gnochm-0.9.6.tar.gz

2005-09-28 Thread tiwek

Files fetched: 1

STORED: http://dl.sourceforge.net/gnochm/gnochm-0.9.6.tar.gz
ad2bcf1acf5bd2b7f7eee806a0c9859f  gnochm-0.9.6.tar.gz
Size: 321549 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: gnochm.spec - up to 0.9.6 - buils and works fine. - STBR ?

2005-09-28 Thread tiwek
Author: tiwekDate: Wed Sep 28 09:51:11 2005 GMT
Module: SPECS Tag: HEAD
 Log message:
- up to 0.9.6
- buils and works fine.
- STBR ?

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

 Diffs:


Index: SPECS/gnochm.spec
diff -u SPECS/gnochm.spec:1.18 SPECS/gnochm.spec:1.19
--- SPECS/gnochm.spec:1.18  Mon Jul  4 10:13:32 2005
+++ SPECS/gnochm.spec   Wed Sep 28 11:51:06 2005
@@ -2,12 +2,12 @@
 Summary:   A CHM file viewer for Gnome
 Summary(pl):   Przeglądarka plików CHM dla Gnome
 Name:  gnochm
-Version:   0.9.5
+Version:   0.9.6
 Release:   1
 License:   GPL v2+
 Group: Applications/Publishing
 Source0:   http://dl.sourceforge.net/gnochm/%{name}-%{version}.tar.gz
-# Source0-md5: 3acf586f7dbaa971f57f6f93f24eb131
+# Source0-md5: ad2bcf1acf5bd2b7f7eee806a0c9859f
 Patch0:%{name}-desktop.patch
 URL:   http://gnochm.sourceforge.net/
 BuildRequires: GConf2-devel
@@ -113,6 +113,11 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.19  2005/09/28 09:51:06  tiwek
+- up to 0.9.6
+- buils and works fine.
+- STBR ?
+
 Revision 1.18  2005/07/04 08:13:32  speedy
 - more BR.
 


 CVS-web:
http://cvs.pld-linux.org/SPECS/gnochm.spec?r1=1.18r2=1.19f=u

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


SPECS: ekg.spec - pl fix

2005-09-28 Thread zboczuch
Author: zboczuch Date: Wed Sep 28 10:06:00 2005 GMT
Module: SPECS Tag: HEAD
 Log message:
- pl fix

 Files affected:
SPECS:
   ekg.spec (1.196 - 1.197) 

 Diffs:


Index: SPECS/ekg.spec
diff -u SPECS/ekg.spec:1.196 SPECS/ekg.spec:1.197
--- SPECS/ekg.spec:1.196Wed Jul 27 14:35:26 2005
+++ SPECS/ekg.spec  Wed Sep 28 12:05:55 2005
@@ -83,7 +83,7 @@
 %description -l pl
 EKG (Eksperymentalny Klient Gadu-Gadu) jest open source'owym
 klientem gadu-gadu dla systemów uniksowych. Gadu-Gadu to popularny w
-polsce komunikator internetowy.
+Polsce komunikator internetowy.
 
 Możliwości EKG:
   - interfejs użytkownika podobny do irssi,
@@ -271,6 +271,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.197  2005/09/28 10:05:55  zboczuch
+- pl fix
+
 Revision 1.196  2005/07/27 12:35:26  blekot
 - reverted glen commit (ekg is not vulnerable to this bug in this version)
 


 CVS-web:
http://cvs.pld-linux.org/SPECS/ekg.spec?r1=1.196r2=1.197f=u

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


SPECS: erlang.spec - Release: 1

2005-09-28 Thread jajcus
Author: jajcus   Date: Wed Sep 28 10:47:14 2005 GMT
Module: SPECS Tag: HEAD
 Log message:
- Release: 1

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

 Diffs:


Index: SPECS/erlang.spec
diff -u SPECS/erlang.spec:1.18 SPECS/erlang.spec:1.19
--- SPECS/erlang.spec:1.18  Tue Sep 27 22:57:46 2005
+++ SPECS/erlang.spec   Wed Sep 28 12:47:08 2005
@@ -7,7 +7,7 @@
 Summary(pl):   Erlang/OTP z otwartymi źródłami
 Name:  erlang
 Version:   R10B_7
-Release:   0.1
+Release:   1
 Epoch: 1
 License:   distributable
 Group: Development/Languages
@@ -158,6 +158,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.19  2005/09/28 10:47:08  jajcus
+- Release: 1
+
 Revision 1.18  2005/09/27 20:57:46  jajcus
 - Version: R10B_7
 - simple Makefile fix for %install (-hipe_optimistic_regalloc_once_only.patch)


 CVS-web:
http://cvs.pld-linux.org/SPECS/erlang.spec?r1=1.18r2=1.19f=u

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


SPECS: vim.spec - added virtual property to satisfy many possible ...

2005-09-28 Thread blues
Author: bluesDate: Wed Sep 28 11:41:08 2005 GMT
Module: SPECS Tag: HEAD
 Log message:
- added virtual property to satisfy many possible vim-editors

 Files affected:
SPECS:
   vim.spec (1.315 - 1.316) 

 Diffs:


Index: SPECS/vim.spec
diff -u SPECS/vim.spec:1.315 SPECS/vim.spec:1.316
--- SPECS/vim.spec:1.315Tue Sep 27 23:04:53 2005
+++ SPECS/vim.spec  Wed Sep 28 13:40:59 2005
@@ -211,6 +211,7 @@
 BuildRequires: unzip
 Requires:  %{name}-rt = %{epoch}:%{version}-%{release}
 Provides:  vi
+Provides:  vi-editor
 Obsoletes: vim-enhanced
 BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
 
@@ -342,6 +343,7 @@
 Summary(pl):   Statycznie skonsolidowany Vim
 Group: Applications/Editors/Vim
 Provides:  vi
+Provides:  vi-editor
 Obsoletes: elvis-static
 Obsoletes: nvi
 Obsoletes: vi
@@ -372,6 +374,7 @@
 Summary(pl):   Vim z wsparciem dla ispella
 Group: Applications/Editors/Vim
 Requires:  %{name}-rt = %{epoch}:%{version}-%{release}
+Provides:  vi-editor
 Conflicts: ispell  3.2.06
 Conflicts: ispell-pl  20021127-2
 
@@ -405,7 +408,7 @@
 Group: Applications/Editors/Vim
 Requires:  mktemp
 Requires:  which
-Requires:  %{name} = %{epoch}:%{version}-%{release}
+Requires:  vi-editor
 Obsoletes: vim-common
 
 %description rt
@@ -476,6 +479,7 @@
 Group: Applications/Editors/Vim
 Requires:  %{name}-rt = %{epoch}:%{version}-%{release}
 Requires:  iconv
+Provides:  vi-editor
 Obsoletes: vim-X11
 
 %description -n gvim-athena
@@ -502,6 +506,7 @@
 Group: Applications/Editors/Vim
 Requires:  %{name}-rt = %{epoch}:%{version}-%{release}
 Requires:  iconv
+Provides:  vi-editor
 Obsoletes: vim-X11
 
 %description -n gvim-motif
@@ -528,6 +533,7 @@
 Group: Applications/Editors/Vim
 Requires:  %{name}-rt = %{epoch}:%{version}-%{release}
 Requires:  iconv
+Provides:  vi-editor
 Obsoletes: vim-X11
 
 %description -n kvim
@@ -544,6 +550,7 @@
 Group: Applications/Editors/Vim
 Requires:  %{name}-rt = %{epoch}:%{version}-%{release}
 Requires:  iconv
+Provides:  vi-editor
 Obsoletes: vim-X11
 
 %description -n gvim-gtk
@@ -571,6 +578,7 @@
 Group: Applications/Editors/Vim
 Requires:  %{name}-rt = %{epoch}:%{version}-%{release}
 Requires:  iconv
+Provides:  vi-editor
 Obsoletes: vim-X11
 
 %description -n gvim-gnome
@@ -597,6 +605,7 @@
 Group: Applications/Editors/Vim
 Requires:  %{name}-rt = %{epoch}:%{version}-%{release}
 Requires:  iconv
+Provides:  vi-editor
 Obsoletes: vim-X11
 
 %description -n gvim-bonobo
@@ -1342,6 +1351,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.316  2005/09/28 11:40:59  blues
+- added virtual property to satisfy many possible vim-editors
+
 Revision 1.315  2005/09/27 21:04:53  blues
 - vim-rt without vim makes no sense
 


 CVS-web:
http://cvs.pld-linux.org/SPECS/vim.spec?r1=1.315r2=1.316f=u

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


DISTFILES: Image_XBM-0.9.0RC1.tgz

2005-09-28 Thread glen

Files fetched: 1

STORED: http://pear.php.net/get/Image_XBM-0.9.0RC1.tgz
b31e294640e1e2370a0270288364469e  Image_XBM-0.9.0RC1.tgz
Size: 24759 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: php-pear-Image_XBM.spec - updated to 0.9.0-RC1

2005-09-28 Thread glen
Author: glen Date: Wed Sep 28 12:18:27 2005 GMT
Module: SPECS Tag: HEAD
 Log message:
- updated to 0.9.0-RC1

 Files affected:
SPECS:
   php-pear-Image_XBM.spec (1.3 - 1.4) 

 Diffs:


Index: SPECS/php-pear-Image_XBM.spec
diff -u SPECS/php-pear-Image_XBM.spec:1.3 SPECS/php-pear-Image_XBM.spec:1.4
--- SPECS/php-pear-Image_XBM.spec:1.3   Wed Sep 28 00:14:57 2005
+++ SPECS/php-pear-Image_XBM.spec   Wed Sep 28 14:18:21 2005
@@ -8,18 +8,23 @@
 Summary:   %{_pearname} - manipulate XBM images
 Summary(pl):   %{_pearname} - obróbka obrazów XBM
 Name:  php-pear-%{_pearname}
-Version:   0.2.0
-Release:   1.1
+Version:   0.9.0
+%define_rc RC1
+%define_rel 0.1
+Release:   %{_rc}.%{_rel}
 License:   PHP 2.02
 Group: Development/Languages/PHP
-Source0:   http://pear.php.net/get/%{_pearname}-%{version}.tgz
-# Source0-md5: ac7a8bfd0a526f899797bb810becbfce
+Source0:   http://pear.php.net/get/%{_pearname}-%{version}%{_rc}.tgz
+# Source0-md5: b31e294640e1e2370a0270288364469e
 URL:   http://pear.php.net/package/Image_XBM/
-BuildRequires: rpm-php-pearprov = 4.4.2-12
+BuildRequires: rpm-php-pearprov = 4.4.2-11
 Requires:  php-pear
 BuildArch: noarch
 BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
 
+# exclude optional dependencies
+%define_noautoreq  'pear(Text/Figlet.*)'
+
 %description
 Package for manipulate XBM images.
 
@@ -31,8 +36,9 @@
 Ta klasa ma w PEAR status: %{_status}.
 
 %prep
-# FIXME: remove -f if the package.xml gets fixed!
-%pear_package_setup -f
+%pear_package_setup
+install -d docs/%{_pearname}
+mv ./%{php_pear_dir}/data/%{_pearname}/docs/* docs/%{_pearname}
 
 %install
 rm -rf $RPM_BUILD_ROOT
@@ -42,6 +48,11 @@
 %clean
 rm -rf $RPM_BUILD_ROOT
 
+%post
+if [ -f %{_docdir}/%{name}-%{version}/optional-packages.txt ]; then
+   cat %{_docdir}/%{name}-%{version}/optional-packages.txt
+fi
+
 %files
 %defattr(644,root,root,755)
 %doc install.log optional-packages.txt
@@ -55,6 +66,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.4  2005/09/28 12:18:21  glen
+- updated to 0.9.0-RC1
+
 Revision 1.3  2005/09/27 22:14:57  glen
 - pearprov -12 is fine
 
@@ -63,4 +77,3 @@
 
 Revision 1.1  2005/03/27 13:06:21  adamg
 - new
-


 CVS-web:
http://cvs.pld-linux.org/SPECS/php-pear-Image_XBM.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: ghostscript-afpl.spec - forgot to commit this damn thing, b...

2005-09-28 Thread djurban
Author: djurban  Date: Wed Sep 28 12:24:41 2005 GMT
Module: SPECS Tag: HEAD
 Log message:
- forgot to commit this damn thing, basically its a finished update for 
ghostscript afpl 8.51
  not sure that the construction:
  Provides: ghostscript
  Obsoletes: ghostscript 
  will function properly if you have ghostscript-gpl installed... need to test 
it

 Files affected:
SPECS:
   ghostscript-afpl.spec (1.152 - 1.153) 

 Diffs:


Index: SPECS/ghostscript-afpl.spec
diff -u SPECS/ghostscript-afpl.spec:1.152 SPECS/ghostscript-afpl.spec:1.153
--- SPECS/ghostscript-afpl.spec:1.152   Thu Jul 21 22:41:11 2005
+++ SPECS/ghostscript-afpl.spec Wed Sep 28 14:24:35 2005
@@ -9,23 +9,24 @@
 %bcond_withsvga# with svgalib display support (vgalib and 
lvga256 devices)
 %bcond_without gtk # without gsx 
 #
+%define   _name ghostscript
 Summary:   PostScript  PDF interpreter and renderer
 Summary(de):   PostScript  PDF Interpreter und Renderer
 Summary(fr):   Interpréteur et visualisateur PostScript  PDF
 Summary(ja):   PostScript Ľ¤ĽóĽżĄźĽ×ĽęĽżĄŚĽěĽóĽŔĽéĄź
 Summary(pl):   Bezpłatny interpreter i renderer PostScriptu i PDF
 Summary(tr):   PostScript  PDF yorumlayýcý ve gösterici
-Name:  ghostscript
+Name:  %{_name}-afpl
 Version:   8.51
-Release:   2
+Release:   1
 License:   AFPL
 Group: Applications/Graphics
-Source0:   http://dl.sourceforge.net/ghostscript/%{name}-%{version}.tar.bz2
+Source0:   
http://dl.sourceforge.net/ghostscript/%{_name}-%{version}.tar.bz2
 # Source0-md5: 8b328b47cce3b7f97f35296aae8e7b77
 # we need to link with libjpeg recompiled with our parameters
 Source2:   ftp://ftp.uu.net/graphics/jpeg/jpegsrc.v6b.tar.gz
 # Source2-md5: dbd5f3b47ed13132f04c685d608a7547
-Source5:   
http://www.mif.pg.gda.pl/homepages/ankry/man-PLD/%{name}-non-english-man-pages.tar.bz2
+Source5:   
http://www.mif.pg.gda.pl/homepages/ankry/man-PLD/%{_name}-non-english-man-pages.tar.bz2
 # Source5-md5: 9b5953aa0cc155f4364f20036b848585
 Patch0:%{name}-missquotes.patch
 Patch1:%{name}-setuid.patch
@@ -96,7 +97,7 @@
 Summary(pl):   Ghostscript z konsolą GTK+
 Group: Applications/Graphics
 Requires:  %{name} = %{version}-%{release}
-Obsoletes: ghostscript-esp-gtk
+Obsoletes: ghostscript-gtk
 
 %description gtk
 Ghostscript with GTK+ console.
@@ -109,7 +110,7 @@
 Summary(pl):   Pliki nagłówkowe libgs
 Group: Development/Libraries
 Requires:  %{name} = %{version}-%{release}
-Obsoletes: ghostscript-esp-devel
+Obsoletes: ghostscript-devel
 
 %description devel
 Header files for libgs - ghostscript shared library.
@@ -122,7 +123,7 @@
 Summary(pl):   Pliki dla programistów IJS
 Group: Development/Libraries
 Requires:  %{name} = %{version}-%{release}
-Obsoletes: ghostscript-esp-ijs-devel
+Obsoletes: ghostscript-ijs-devel
 
 %description ijs-devel
 IJS development files.
@@ -144,7 +145,7 @@
 Statyczna wersja biblioteki IJS.
 
 %prep
-%setup -q -a2
+%setup -q -a2 -n %{_name}-%{version}
 %patch0 -p1
 %patch1 -p1
 %patch2 -p1
@@ -183,17 +184,15 @@
 cd ..
 
 %{__make} \
-   docdir=%{_defaultdocdir}/%{name}-%{version}
+   docdir=%{_defaultdocdir}/%{_name}-%{version}
 
 %{__make} so \
-   docdir=%{_defaultdocdir}/%{name}-%{version}
+   docdir=%{_defaultdocdir}/%{_name}-%{version}
 
 %install
 rm -rf $RPM_BUILD_ROOT
-install -d 
$RPM_BUILD_ROOT{%{_datadir}/ghostscript/lib,%{_libdir},%{_includedir}/gs}
+install -d 
$RPM_BUILD_ROOT{%{_datadir}/ghostscript/lib,%{_libdir},%{_includedir}/ps}
 
-# api includes 
-install src/{iapi.h,ierrors.h,gdevdsp.h} $RPM_BUILD_ROOT%{_includedir}/gs
 
 %{__make} install \
install_prefix=$RPM_BUILD_ROOT \
@@ -201,7 +200,7 @@
bindir=$RPM_BUILD_ROOT%{_bindir} \
datadir=$RPM_BUILD_ROOT%{_datadir} \
libdir=$RPM_BUILD_ROOT%{_libdir} \
-   docdir=$RPM_BUILD_ROOT%{_defaultdocdir}/%{name}-%{version} \
+   docdir=$RPM_BUILD_ROOT%{_defaultdocdir}/%{_name}-%{version} \
mandir=$RPM_BUILD_ROOT%{_mandir}
 
 
@@ -211,7 +210,7 @@
bindir=$RPM_BUILD_ROOT%{_bindir} \
datadir=$RPM_BUILD_ROOT%{_datadir} \
libdir=$RPM_BUILD_ROOT%{_libdir} \
-   docdir=$RPM_BUILD_ROOT%{_defaultdocdir}/%{name}-%{version} \
+   docdir=$RPM_BUILD_ROOT%{_defaultdocdir}/%{_name}-%{version} \
mandir=$RPM_BUILD_ROOT%{_mandir}
 
 cd ijs
@@ -225,10 +224,10 @@
 #  mandir=$RPM_BUILD_ROOT%{_mandir}
 cd ..
 
-install lib/{gs_frsd,pdfopt,pdfwrite}.ps $RPM_BUILD_ROOT%{_datadir}/%{name}/lib
+install lib/{gs_frsd,pdfopt,pdfwrite}.ps 
$RPM_BUILD_ROOT%{_datadir}/%{_name}/lib
 
-#install %{SOURCE1} $RPM_BUILD_ROOT%{_datadir}/%{name}/lib
-rm -rf $RPM_BUILD_ROOT%{_datadir}/%{name}/doc \
+#install %{SOURCE1} $RPM_BUILD_ROOT%{_datadir}/%{_name}/lib
+rm -rf 

SPECS: browser-common.spec (NEW) - similiar approach for extension...

2005-09-28 Thread glen
Author: glen Date: Wed Sep 28 13:25:26 2005 GMT
Module: SPECS Tag: HEAD
 Log message:
- similiar approach for extensions and themes, based on browser-plugins

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

 Diffs:


Index: SPECS/browser-common.spec
diff -u /dev/null SPECS/browser-common.spec:1.1
--- /dev/null   Wed Sep 28 15:25:26 2005
+++ SPECS/browser-common.spec   Wed Sep 28 15:25:06 2005
@@ -0,0 +1,96 @@
+# $Revision$, $Date$
+# TODO
+# - convert all plugin packages to store their plugins in this base
+#   directory.
+# known NPAPI compatible browsers from PLD CVS:
+# - mozilla
+# - mozilla-firefox
+# - konqueror
+# - opera (ix86 only)
+# - galeon
+# - skipstone
+# - kazehakase
+# - netscape (trigger on netscape-common)
+# Extensions are for mozilla based browsers (please complete the list)
+# - mozilla
+# - mozilla-firefox
+# Themes (none exists yet)
+Summary:   Base package for web browser components
+Summary(pl):   Podstawowy pakiet dla wtyczek przeglądarek WWW
+Name:  browser-common
+Version:   0.9
+Release:   0.4
+License:   GPL
+Group: Base
+URL:   http://www.mozilla.org/projects/plugins/
+Provides:  %{name}(%{_target_cpu}) = %{version}-%{release}
+# be compatible, so don't need to rebuild all packages depending on 
browser-plugins
+Obsoletes: browser-plugins
+Provides:  browser-plugins(%{_target_cpu})
+BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
+
+%description
+This package provides base directories for browser components like
+plugins, extensions and themes.
+
+%description -l pl
+Ten pakiet dostarcza podstawowy katalog dla wtyczek przeglądarek
+zgodnych z Netscape Plugin API (NPAPI).
+
+%prep
+
+%install
+rm -rf $RPM_BUILD_ROOT
+install -d $RPM_BUILD_ROOT%{_libdir}/browser-common/{plugins,themes,extensions}
+touch $RPM_BUILD_ROOT%{_libdir}/browser-plugins
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%post
+if [ -d %{_libdir}/browser-plugins ]; then
+   mv -f %{_libdir}/browser-plugins/* %{_libdir}/browser-common/plugins
+   rmdir %{_libdir}/browser-plugins
+   ln -snf %{_libdir}/browser-common/plugins %{_libdir}/browser-plugins
+fi
+
+%files
+%defattr(644,root,root,755)
+%{_libdir}/browser-common
+%ghost %{_libdir}/browser-plugins
+
+%define date   %(echo `LC_ALL=C date +%a %b %d %Y`)
+%changelog
+* %{date} PLD Team [EMAIL PROTECTED]
+All persons listed below can be reached at cvs_login@pld-linux.org
+
+$Log$
+Revision 1.1  2005/09/28 13:25:06  glen
+- similiar approach for extensions and themes, based on browser-plugins
+
+Revision 1.9  2005/09/06 17:24:35  glen
+- also exists netscape.spec
+
+Revision 1.8  2005/08/23 18:55:18  glen
+- i belive browser is a thing (fix last commit msg)
+
+Revision 1.7  2005/08/23 18:54:24  glen
+- listing browsers (please complete the list if you find something missing)
+
+Revision 1.6  2005/08/23 18:14:05  glen
+- include VR in virtual prov, rel 2
+
+Revision 1.5  2005/08/23 18:07:14  glen
+- provide virtual to identify built archdecture
+
+Revision 1.4  2005/08/23 18:05:28  glen
+- arch dependant due %{_libdir} usage
+
+Revision 1.3  2005/06/23 13:05:39  glen
+- rel 1
+
+Revision 1.2  2005/06/22 17:36:33  qboosh
+- pl
+
+Revision 1.1  2005/06/20 17:13:15  glen
+- new

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


SPECS: browser-common.spec - themes and extensions are noarch - us...

2005-09-28 Thread glen
Author: glen Date: Wed Sep 28 13:34:03 2005 GMT
Module: SPECS Tag: HEAD
 Log message:
- themes and extensions are noarch
- use trigger for migration

 Files affected:
SPECS:
   browser-common.spec (1.1 - 1.2) 

 Diffs:


Index: SPECS/browser-common.spec
diff -u SPECS/browser-common.spec:1.1 SPECS/browser-common.spec:1.2
--- SPECS/browser-common.spec:1.1   Wed Sep 28 15:25:06 2005
+++ SPECS/browser-common.spec   Wed Sep 28 15:33:57 2005
@@ -19,7 +19,7 @@
 Summary(pl):   Podstawowy pakiet dla wtyczek przeglądarek WWW
 Name:  browser-common
 Version:   0.9
-Release:   0.4
+Release:   0.5
 License:   GPL
 Group: Base
 URL:   http://www.mozilla.org/projects/plugins/
@@ -41,13 +41,14 @@
 
 %install
 rm -rf $RPM_BUILD_ROOT
-install -d $RPM_BUILD_ROOT%{_libdir}/browser-common/{plugins,themes,extensions}
+install -d $RPM_BUILD_ROOT%{_datadir}/browser-common/{themes,extensions}
+install -d $RPM_BUILD_ROOT%{_libdir}/browser-common/plugins
 touch $RPM_BUILD_ROOT%{_libdir}/browser-plugins
 
 %clean
 rm -rf $RPM_BUILD_ROOT
 
-%post
+%triggerpostun -- browser-plugins
 if [ -d %{_libdir}/browser-plugins ]; then
mv -f %{_libdir}/browser-plugins/* %{_libdir}/browser-common/plugins
rmdir %{_libdir}/browser-plugins
@@ -57,6 +58,8 @@
 %files
 %defattr(644,root,root,755)
 %{_libdir}/browser-common
+%{_datadir}/browser-common
+# we will own the compat symlink
 %ghost %{_libdir}/browser-plugins
 
 %define date   %(echo `LC_ALL=C date +%a %b %d %Y`)
@@ -65,6 +68,10 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.2  2005/09/28 13:33:57  glen
+- themes and extensions are noarch
+- use trigger for migration
+
 Revision 1.1  2005/09/28 13:25:06  glen
 - similiar approach for extensions and themes, based on browser-plugins
 


 CVS-web:
http://cvs.pld-linux.org/SPECS/browser-common.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: libtasn1.spec - gtk-doc enabled (disabled by default) and b...

2005-09-28 Thread pluto
Author: plutoDate: Wed Sep 28 13:42:09 2005 GMT
Module: SPECS Tag: HEAD
 Log message:
- gtk-doc enabled (disabled by default) and bconded.

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

 Diffs:


Index: SPECS/libtasn1.spec
diff -u SPECS/libtasn1.spec:1.21 SPECS/libtasn1.spec:1.22
--- SPECS/libtasn1.spec:1.21Fri Sep  2 22:35:06 2005
+++ SPECS/libtasn1.spec Wed Sep 28 15:42:04 2005
@@ -1,4 +1,9 @@
 # $Revision$, $Date$
+#
+# Conditional build:
+%bcond_without apidocs # disable gtk-doc
+%bcond_without static_libs # don't build static library
+#
 Summary:   ASN.1 library used in GNUTLS
 Summary(pl):   Biblioteka ASN.1 używana w GNUTLS
 Name:  libtasn1
@@ -12,7 +17,8 @@
 URL:   http://www.gnu.org/software/gnutls/
 BuildRequires: autoconf = 2.50
 BuildRequires: automake = 1:1.9
-BuildRequires: gtk-doc
+%{?with_apidocs:BuildRequires: gtk-doc = 1.4}
+BuildRequires: gtk-doc-automake = 1.4
 BuildRequires: libtool
 BuildRequires: texinfo
 BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
@@ -66,12 +72,19 @@
 %patch0 -p1
 
 %build
+%{?with_apidocs:%{__gtkdocize}}
 %{__libtoolize}
 %{__aclocal} -I m4 -I gl/m4
 %{__automake}
 %{__autoheader}
 %{__autoconf}
-%configure
+
+%configure \
+   --%{?with_apidocs:en}%{!?with_apidocs:dis}able-gtk-doc \
+   %{?with_apidocs:--with-html-dir=%{_gtkdocdir}} \
+   --%{?with_static_libs:en}%{!?with_static_libs:dis}able-static \
+   --enable-shared
+
 %{__make}
 
 %install
@@ -107,10 +120,13 @@
 %{_pkgconfigdir}/libtasn1.pc
 %{_infodir}/*.info*
 %{_mandir}/man3/*.3*
+%{?with_apidocs:%{_gtkdocdir}/%{name}}
 
+%if %{with static_libs}
 %files static
 %defattr(644,root,root,755)
 %{_libdir}/lib*.a
+%endif
 
 %define date   %(echo `LC_ALL=C date +%a %b %d %Y`)
 %changelog
@@ -118,6 +134,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.22  2005/09/28 13:42:04  pluto
+- gtk-doc enabled (disabled by default) and bconded.
+
 Revision 1.21  2005/09/02 20:35:06  qboosh
 - updated to 0.2.17 (versioned symbols restored)
 


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

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


DISTFILES: ImageMagick-6.2.4-6.tar.bz2

2005-09-28 Thread blues

Files fetched: 1

STORED: http://www.imagemagick.org/download/ImageMagick-6.2.4-6.tar.bz2
82cb623a5e2e01991d22d33c624ad12d  ImageMagick-6.2.4-6.tar.bz2
Size: 5001539 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: audit.spec - fix x86-64 build.

2005-09-28 Thread pluto
Author: plutoDate: Wed Sep 28 15:47:47 2005 GMT
Module: SPECS Tag: HEAD
 Log message:
- fix x86-64 build.

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

 Diffs:


Index: SPECS/audit.spec
diff -u SPECS/audit.spec:1.6 SPECS/audit.spec:1.7
--- SPECS/audit.spec:1.6Sun Aug 28 17:21:17 2005
+++ SPECS/audit.specWed Sep 28 17:47:42 2005
@@ -3,7 +3,7 @@
 Summary(pl):   Narzędzia przestrzeni użytkownika do audytu jąder 2.6
 Name:  audit
 Version:   1.0.3
-Release:   1
+Release:   1.1
 License:   GPL
 Group: Daemons
 Source0:   http://people.redhat.com/sgrubb/audit/%{name}-%{version}.tar.gz
@@ -94,7 +94,7 @@
 %configure
 # override auditd_CFLAGS to avoid -fPIE unsupported by gcc 3.3
 %{__make} \
-   auditd_CFLAGS=
+   auditd_CFLAGS=-fPIC
 
 %install
 rm -rf $RPM_BUILD_ROOT
@@ -172,6 +172,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.7  2005/09/28 15:47:42  pluto
+- fix x86-64 build.
+
 Revision 1.6  2005/08/28 15:21:17  qboosh
 - fixed libaudit.so symlink
 - replace init/sysconfig with our versions


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


pld-builder.new: PLD_Builder/mailer.py, PLD_Builder/wrap.py - use ...

2005-09-28 Thread mmazur
Author: mmazur   Date: Wed Sep 28 15:48:40 2005 GMT
Module: pld-builder.new   Tag: HEAD
 Log message:
- use the -i option when invoking sendmail

 Files affected:
pld-builder.new/PLD_Builder:
   mailer.py (1.17 - 1.18) , wrap.py (1.7 - 1.8) 

 Diffs:


Index: pld-builder.new/PLD_Builder/mailer.py
diff -u pld-builder.new/PLD_Builder/mailer.py:1.17 
pld-builder.new/PLD_Builder/mailer.py:1.18
--- pld-builder.new/PLD_Builder/mailer.py:1.17  Thu Dec  9 19:09:04 2004
+++ pld-builder.new/PLD_Builder/mailer.py   Wed Sep 28 17:48:35 2005
@@ -66,7 +66,7 @@
 util.sendfile(self.body, f)
 
 def send(self):
-send_sendmail = /usr/sbin/sendmail -t -f %s % config.admin_email
+send_sendmail = /usr/sbin/sendmail -i -t -f %s % config.admin_email
 f = os.popen(send_sendmail, w)
 self.write_to(f)
 f.close()


Index: pld-builder.new/PLD_Builder/wrap.py
diff -u pld-builder.new/PLD_Builder/wrap.py:1.7 
pld-builder.new/PLD_Builder/wrap.py:1.8
--- pld-builder.new/PLD_Builder/wrap.py:1.7 Thu Dec  9 19:09:06 2004
+++ pld-builder.new/PLD_Builder/wrap.py Wed Sep 28 17:48:35 2005
@@ -26,7 +26,7 @@
 log.alert(during: %s % status.get())
 
 # don't use mailer.py; it safer this way
-f = os.popen(/usr/sbin/sendmail -t, w)
+f = os.popen(/usr/sbin/sendmail -i -t, w)
 f.write(Subject: builder failure
 To: %s
 Cc: %s, %s


 CVS-web:

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

http://cvs.pld-linux.org/pld-builder.new/PLD_Builder/wrap.py?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: mt-daapd-0.2.3.tar.gz

2005-09-28 Thread aredridel

Files fetched: 1

STORED: http://dl.sourceforge.net/sourceforge/mt-daapd/mt-daapd-0.2.3.tar.gz
17aa3fa0601cbe172d18f53489141e5a  mt-daapd-0.2.3.tar.gz
Size: 406035 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: mt-daapd.spec - up to 0.2.3

2005-09-28 Thread aredridel
Author: aredridelDate: Wed Sep 28 16:15:15 2005 GMT
Module: SPECS Tag: HEAD
 Log message:
- up to 0.2.3

 Files affected:
SPECS:
   mt-daapd.spec (1.3 - 1.4) 

 Diffs:


Index: SPECS/mt-daapd.spec
diff -u SPECS/mt-daapd.spec:1.3 SPECS/mt-daapd.spec:1.4
--- SPECS/mt-daapd.spec:1.3 Wed Mar 16 00:48:55 2005
+++ SPECS/mt-daapd.spec Wed Sep 28 18:15:08 2005
@@ -2,12 +2,12 @@
 Summary:   A multi-threaded implementation of Apple's DAAP server
 Summary(pl):   Wielowątkowa implementacja serwera DAAP Apple
 Name:  mt-daapd
-Version:   0.2.1.1
+Version:   0.2.3
 Release:   1
 License:   GPL
 Group: Networking/Daemons
 Source0:   
http://dl.sourceforge.net/sourceforge/mt-daapd/%{name}-%{version}.tar.gz
-# Source0-md5: 87356d2750ad82388a58d901aa566465
+# Source0-md5: 17aa3fa0601cbe172d18f53489141e5a
 URL:   http://sourceforge.net/project/showfiles.php?group_id=98211
 BuildRequires: autoconf
 BuildRequires: gdbm-devel
@@ -72,6 +72,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.4  2005/09/28 16:15:08  aredridel
+- up to 0.2.3
+
 Revision 1.3  2005/03/15 23:48:55  aredridel
 - up to 0.2.1.1
 


 CVS-web:
http://cvs.pld-linux.org/SPECS/mt-daapd.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: gtk+2.spec - up to 2.8.4

2005-09-28 Thread arekm
Author: arekmDate: Wed Sep 28 17:59:40 2005 GMT
Module: SPECS Tag: HEAD
 Log message:
- up to 2.8.4

 Files affected:
SPECS:
   gtk+2.spec (1.188 - 1.189) 

 Diffs:


Index: SPECS/gtk+2.spec
diff -u SPECS/gtk+2.spec:1.188 SPECS/gtk+2.spec:1.189
--- SPECS/gtk+2.spec:1.188  Fri Sep 23 14:10:44 2005
+++ SPECS/gtk+2.specWed Sep 28 19:59:34 2005
@@ -14,13 +14,13 @@
 Summary(pl):   Gimp Toolkit
 Summary(tr):   Gimp ToolKit arayüz kitaplýđý
 Name:  gtk+2
-Version:   2.8.3
+Version:   2.8.4
 Release:   1
 Epoch: 2
 License:   LGPL
 Group: X11/Libraries
 Source0:   ftp://ftp.gtk.org/pub/gtk/v2.8/gtk+-%{version}.tar.bz2
-# Source0-md5: 1e7a49eaf078af8aeb84369a5fefa8c0
+# Source0-md5: ae14972d22ac338d87c56b6075dfd2a4
 Patch0:%{name}-insensitive-iain.patch
 Patch1:%{name}-xlibs.patch
 # from CVS, should disapear in the next version
@@ -277,6 +277,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.189  2005/09/28 17:59:34  arekm
+- up to 2.8.4
+
 Revision 1.188  2005/09/23 12:10:44  djurban
 - s/static/static_libs/ in %coonigure, cookie goes to sparky
 


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

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


DISTFILES: gtk+-2.8.4.tar.bz2

2005-09-28 Thread arekm

Files fetched: 1

STORED: ftp://ftp.gtk.org/pub/gtk/v2.8/gtk+-2.8.4.tar.bz2
ae14972d22ac338d87c56b6075dfd2a4  gtk+-2.8.4.tar.bz2
Size: 11822425 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: ghostscript-gpl.spec, ghostscript-esp.spec, ghostscript-afp...

2005-09-28 Thread djurban
Author: djurban  Date: Wed Sep 28 18:04:12 2005 GMT
Module: SPECS Tag: HEAD
 Log message:
- clean up provides and make them strict too

 Files affected:
SPECS:
   ghostscript-gpl.spec (1.154 - 1.155) , ghostscript-esp.spec (1.157 - 
1.158) , ghostscript-afpl.spec (1.153 - 1.154) 

 Diffs:


Index: SPECS/ghostscript-gpl.spec
diff -u SPECS/ghostscript-gpl.spec:1.154 SPECS/ghostscript-gpl.spec:1.155
--- SPECS/ghostscript-gpl.spec:1.154Tue Sep  6 18:18:56 2005
+++ SPECS/ghostscript-gpl.spec  Wed Sep 28 20:04:07 2005
@@ -45,7 +45,7 @@
 BuildRequires: libstdc++-devel
 BuildRequires: pkgconfig
 BuildRequires: libtiff-devel
-Provides:  ghostscript = %{version}
+Provides:  ghostscript = %{epoch}:%{version}-%{release}
 Obsoletes: ghostscript
 # Required by 'gdevvglb' device.
 %{?with_svga:BuildRequires:svgalib-devel}
@@ -92,9 +92,9 @@
 Summary:   Ghostscript with GTK+ console
 Summary(pl):   Ghostscript z konsolą GTK+
 Group: Applications/Graphics
-Provides:  ghostscript-gtk = %{version}
+Provides:  ghostscript-gtk = %{epoch}:%{version}-%{release}
 Obsoletes: ghostscript-gtk
-Requires:  %{name} = %{version}
+Requires:  %{name} = %{epoch}:%{version}-%{release}
 
 %description gtk
 Ghostscript with GTK+ console.
@@ -106,9 +106,9 @@
 Summary:   libgs header files
 Summary(pl):   Pliki nagłówkowe libgs
 Group: Development/Libraries
-Provides:  ghostscript-devel = %{version}
+Provides:  ghostscript-devel = %{epoch}:%{version}-%{release}
 Obsoletes: ghostscript-devel
-Requires:  %{name} = %{version}
+Requires:  %{name} = %{epoch}:%{version}-%{release}
 
 %description devel
 Header files for libgs - ghostscript shared library.
@@ -120,9 +120,9 @@
 Summary:   IJS development files
 Summary(pl):   Pliki dla programistów IJS
 Group: Development/Libraries
-Provides:  ghostscript-ijs-devel = %{version}
+Provides:  ghostscript-ijs-devel = %{epoch}:%{version}-%{release}
 Obsoletes: ghostscript-ijs-devel
-Requires:  %{name} = %{version}
+Requires:  %{name} = %{epoch}:%{version}-%{release}
 
 %description ijs-devel
 IJS development files.
@@ -134,9 +134,9 @@
 Summary:   Static libijs library
 Summary(pl):   Statyczna biblioteka IJS
 Group: Development/Libraries
-Provides:  ghostscript-ijs-static = %{version}
+Provides:  ghostscript-ijs-static = %{epoch}:%{version}-%{release}
 Obsoletes: ghostscript-ijs-static
-Requires:  %{name}-ijs-devel = %{version}
+Requires:  %{name}-ijs-devel = %{epoch}:%{version}-%{release}
 
 %description ijs-static
 Static libijs library.
@@ -304,6 +304,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.155  2005/09/28 18:04:07  djurban
+- clean up provides and make them strict too
+
 Revision 1.154  2005/09/06 16:18:56  djurban
 - added bcond for gtk, removed for cups
 


Index: SPECS/ghostscript-esp.spec
diff -u SPECS/ghostscript-esp.spec:1.157 SPECS/ghostscript-esp.spec:1.158
--- SPECS/ghostscript-esp.spec:1.157Mon Sep 26 17:09:04 2005
+++ SPECS/ghostscript-esp.spec  Wed Sep 28 20:04:07 2005
@@ -47,7 +47,7 @@
 # for documentation regeneration
 BuildRequires: tetex
 BuildRequires: tetex-dvips
-Provides:  ghostscript = %{version}-%{release}
+Provides:  ghostscript = %{epoch}:%{version}-%{release}
 Obsoletes: ghostscript
 BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
 
@@ -89,7 +89,8 @@
 Summary:   Ghostscript with GTK+ console
 Summary(pl):   Ghostscript z konsolą GTK+
 Group: Applications/Graphics
-Requires:  %{name} = %{version}-%{release}
+Requires:  %{name} = %{epoch}:%{version}-%{release}
+Provides:  ghostscript-gtk = %{epoch}:%{version}-%{release}
 Obsoletes: ghostscript-gtk
 
 %description gtk
@@ -102,7 +103,8 @@
 Summary:   libgs header files
 Summary(pl):   Pliki nagłówkowe libgs
 Group: Development/Libraries
-Requires:  %{name} = %{version}-%{release}
+Requires:  %{name} = %{epoch}:%{version}-%{release}
+Provides:  ghostscript-devel = %{epoch}:%{version}-%{release}
 Obsoletes: ghostscript-devel
 
 %description devel
@@ -115,8 +117,8 @@
 Summary:   IJS development files
 Summary(pl):   Pliki dla programistów IJS
 Group: Development/Libraries
-Requires:  %{name} = %{version}-%{release}
-Provides:  ghostscript-ijs-devel = %{version}-%{release}
+Requires:  %{name} = %{epoch}:%{version}-%{release}
+Provides:  ghostscript-ijs-devel = %{epoch}:%{version}-%{release}
 Obsoletes: ghostscript-ijs-devel
 
 %description ijs-devel
@@ -129,8 +131,8 @@
 Summary:   Static libijs library
 Summary(pl):   Statyczna biblioteka IJS
 Group: Development/Libraries
-Requires:  %{name}-ijs-devel = %{version}-%{release}

SOURCES: ImageMagick-system-libltdl.patch - updated

2005-09-28 Thread blues
Author: bluesDate: Wed Sep 28 19:01:19 2005 GMT
Module: SOURCES   Tag: HEAD
 Log message:
- updated

 Files affected:
SOURCES:
   ImageMagick-system-libltdl.patch (1.2 - 1.3) 

 Diffs:


Index: SOURCES/ImageMagick-system-libltdl.patch
diff -u SOURCES/ImageMagick-system-libltdl.patch:1.2 
SOURCES/ImageMagick-system-libltdl.patch:1.3
--- SOURCES/ImageMagick-system-libltdl.patch:1.2Wed Oct 13 21:36:08 2004
+++ SOURCES/ImageMagick-system-libltdl.patchWed Sep 28 21:01:14 2005
@@ -1,30 +1,5 @@
-diff -ur ImageMagick-6.1.0.orig/Makefile.am ImageMagick-6.1.0/Makefile.am
 ImageMagick-6.1.0.orig/Makefile.am 2004-10-10 05:04:44.0 +0200
-+++ ImageMagick-6.1.0/Makefile.am  2004-10-13 21:31:13.0 +0200
-@@ -113,7 +113,7 @@
-   $(UTILITIES_EXTRA_DIST) \
-   $(WAND_EXTRA_DIST)
- 
--lib_LTLIBRARIES = $(LIBLTDL) $(LIBMAGICK) $(LIBWAND) $(LIBMAGICKPP)
-+lib_LTLIBRARIES = $(LIBMAGICK) $(LIBWAND) $(LIBMAGICKPP)
- 
- check_PROGRAMS = \
-   $(TESTS_CHECK_PGRMS) \
-diff -ur ImageMagick-6.1.0.orig/configure.ac ImageMagick-6.1.0/configure.ac
 ImageMagick-6.1.0.orig/configure.ac2004-10-13 21:23:06.0 
+0200
-+++ ImageMagick-6.1.0/configure.ac 2004-10-13 21:26:22.0 +0200
-@@ -260,7 +260,7 @@
- 
- # Configure libltdl
- #AC_CONFIG_SUBDIRS(ltdl)
--AC_LIBLTDL_CONVENIENCE(ltdl)
-+AC_LIBLTDL_INSTALLABLE(ltdl)
- AC_LIB_LTDL
- # Substitute INCLTDL and LIBLTDL in the Makefiles
- #AC_SUBST(INCLTDL)
-diff -ur ImageMagick-6.1.0.orig/ltdl/Makefile.am 
ImageMagick-6.1.0/ltdl/Makefile.am
 ImageMagick-6.1.0.orig/ltdl/Makefile.am2004-09-11 22:00:34.0 
+0200
-+++ ImageMagick-6.1.0/ltdl/Makefile.am 2004-10-13 21:26:22.0 +0200
+--- ./ltdl/Makefile.am.org 2005-09-28 17:06:38.0 +
 ./ltdl/Makefile.am 2005-09-28 17:07:54.0 +
 @@ -28,12 +28,8 @@
  #endif
  
@@ -39,3 +14,24 @@
  else
LIBLTDL=
  endif # WITH_LTDL
+--- ./Makefile.am.org  2005-09-28 17:04:01.0 +
 ./Makefile.am  2005-09-28 17:05:13.0 +
+@@ -113,7 +113,6 @@
+   $(WAND_EXTRA_DIST)
+ 
+ lib_LTLIBRARIES = $(LIBMAGICK) $(LIBWAND) $(LIBMAGICKPP)
+-noinst_LTLIBRARIES = $(LIBLTDL)
+ 
+ check_PROGRAMS = \
+   $(TESTS_CHECK_PGRMS) \
+--- ./configure.ac.org 2005-09-28 17:05:32.0 +
 ./configure.ac 2005-09-28 17:06:18.0 +
+@@ -293,7 +293,7 @@
+ 
+ # Configure libltdl
+ #AC_CONFIG_SUBDIRS(ltdl)
+-AC_LIBLTDL_CONVENIENCE(ltdl)
++AC_LIBLTDL_INSTALLABLE(ltdl)
+ AC_LIB_LTDL
+ # Substitute INCLTDL and LIBLTDL in the Makefiles
+ #AC_SUBST(INCLTDL)


 CVS-web:

http://cvs.pld-linux.org/SOURCES/ImageMagick-system-libltdl.patch?r1=1.2r2=1.3f=u

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


SOURCES: ImageMagick-dot.patch (REMOVED) - outdated

2005-09-28 Thread blues
Author: bluesDate: Wed Sep 28 19:05:38 2005 GMT
Module: SOURCES   Tag: HEAD
 Log message:
- outdated

 Files affected:
SOURCES:
   ImageMagick-dot.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: ImageMagick.spec - release 1 - removed outdated dot patch, ...

2005-09-28 Thread blues
Author: bluesDate: Wed Sep 28 19:07:20 2005 GMT
Module: SPECS Tag: HEAD
 Log message:
- release 1 - removed outdated dot patch, seems to be working fine

 Files affected:
SPECS:
   ImageMagick.spec (1.214 - 1.215) 

 Diffs:


Index: SPECS/ImageMagick.spec
diff -u SPECS/ImageMagick.spec:1.214 SPECS/ImageMagick.spec:1.215
--- SPECS/ImageMagick.spec:1.214Wed Sep 28 17:27:46 2005
+++ SPECS/ImageMagick.spec  Wed Sep 28 21:07:14 2005
@@ -22,7 +22,7 @@
 Summary(uk):   đĹŇĹÇĚŃÄ, ËĎÎ×ĹŇÔŐ×ÁÎÎŃ ÔÁ ĎÂŇĎÂËÁ ÚĎÂŇÁÖĹÎŘ ĐŚÄ X Window
 Name:  ImageMagick
 Version:   %{ver}%{?pver:.%{pver}}
-Release:   0.1
+Release:   1
 Epoch: 1
 License:   Apache-like
 Group: X11/Applications/Graphics
@@ -33,7 +33,6 @@
 Patch1:%{name}-ac.patch
 Patch2:%{name}-system-libltdl.patch
 Patch3:%{name}-free.patch
-Patch4:%{name}-dot.patch
 URL:   http://www.imagemagick.org/
 BuildRequires: XFree86-DPS-devel
 BuildRequires: XFree86-devel
@@ -565,9 +564,8 @@
 %setup -q -n %{name}-%{ver}
 %patch0 -p1
 %patch1 -p1
-#%patch2 -p1   # fixme!!!
+%patch2 -p1
 %patch3 -p1
-#%patch4 -p1   # fixme!!!
 
 %{__perl} -pi -e 's,lib/graphviz,%{_lib}/graphviz,' configure.ac
 find -type f -exec perl -pi -e 's=!/usr/local/bin/perl=!/usr/bin/perl='  {} \;
@@ -977,6 +975,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.215  2005/09/28 19:07:14  blues
+- release 1 - removed outdated dot patch, seems to be working fine
+
 Revision 1.214  2005/09/28 15:27:46  blues
 - started upgrade to 6.2.4-6, allow full build on amd64, NFY
 


 CVS-web:
http://cvs.pld-linux.org/SPECS/ImageMagick.spec?r1=1.214r2=1.215f=u

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


SPECS: python.spec - up to 2.4.2

2005-09-28 Thread arekm
Author: arekmDate: Wed Sep 28 19:10:33 2005 GMT
Module: SPECS Tag: HEAD
 Log message:
- up to 2.4.2

 Files affected:
SPECS:
   python.spec (1.237 - 1.238) 

 Diffs:


Index: SPECS/python.spec
diff -u SPECS/python.spec:1.237 SPECS/python.spec:1.238
--- SPECS/python.spec:1.237 Sat Sep 17 14:32:04 2005
+++ SPECS/python.spec   Wed Sep 28 21:10:28 2005
@@ -30,15 +30,15 @@
 Summary(tr):   X arayüzlü, yüksek düzeyli, kabuk yorumlayýcý dili
 Summary(uk):   íĎ×Á ĐŇĎÇŇÁÍŐ×ÁÎÎŃ ÄŐÖĹ ×ÉÓĎËĎÇĎ ŇŚ×ÎŃ Ú X-ŚÎÔĹŇĆĹĘÓĎÍ
 Name:  python
-Version:   %{py_ver}.1
-Release:   4
+Version:   %{py_ver}.2
+Release:   1
 Epoch: 1
 License:   PSF
 Group: Applications
 Source0:   
http://www.python.org/ftp/python/%{version}/Python-%{version}.tar.bz2
-# Source0-md5: de3e9a8836fab6df7c7ce545331afeb3
+# Source0-md5: 98db1465629693fc434d4dc52db93838
 Source1:   
http://www.python.org/ftp/python/doc/%{version}/html-%{version}.tar.bz2
-# Source1-md5: 00fb0aee372eae2d9cef649853dfc5d8
+# Source1-md5: 4e3f177f32e15713130d9d9cf35f991f
 Patch0:%{name}-readline.patch
 Patch1:%{name}-%{name}path.patch
 Patch2:%{name}-no_ndbm.patch
@@ -815,6 +815,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.238  2005/09/28 19:10:28  arekm
+- up to 2.4.2
+
 Revision 1.237  2005/09/17 12:32:04  arekm
 - rel 4
 


 CVS-web:
http://cvs.pld-linux.org/SPECS/python.spec?r1=1.237r2=1.238f=u

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


SPECS: php-pear-Mail.spec - typo

2005-09-28 Thread glen
Author: glen Date: Wed Sep 28 19:11:28 2005 GMT
Module: SPECS Tag: HEAD
 Log message:
- typo

 Files affected:
SPECS:
   php-pear-Mail.spec (1.29 - 1.30) 

 Diffs:


Index: SPECS/php-pear-Mail.spec
diff -u SPECS/php-pear-Mail.spec:1.29 SPECS/php-pear-Mail.spec:1.30
--- SPECS/php-pear-Mail.spec:1.29   Wed Sep 28 00:13:36 2005
+++ SPECS/php-pear-Mail.specWed Sep 28 21:11:23 2005
@@ -53,7 +53,6 @@
 Testy dla PEAR::%{_pearname}.
 
 %prep
-%setup -q -c
 %pear_package_setup
 
 %install
@@ -87,6 +86,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.30  2005/09/28 19:11:23  glen
+- typo
+
 Revision 1.29  2005/09/27 22:13:36  glen
 - fix requires for -tests (typo)
 


 CVS-web:
http://cvs.pld-linux.org/SPECS/php-pear-Mail.spec?r1=1.29r2=1.30f=u

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


DISTFILES: Python-2.4.2.tar.bz2 html-2.4.2.tar.bz2

2005-09-28 Thread arekm

Files fetched: 2

STORED: http://www.python.org/ftp/python/2.4.2/Python-2.4.2.tar.bz2
98db1465629693fc434d4dc52db93838  Python-2.4.2.tar.bz2
Size: 7853169 bytes
STORED: http://www.python.org/ftp/python/doc/2.4.2/html-2.4.2.tar.bz2
4e3f177f32e15713130d9d9cf35f991f  html-2.4.2.tar.bz2
Size: 1395537 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: php-pear-Mail_Queue.spec - new pear packaging (fixed %files...

2005-09-28 Thread glen
Author: glen Date: Wed Sep 28 19:22:30 2005 GMT
Module: SPECS Tag: HEAD
 Log message:
- new pear packaging (fixed %files); rel 3

 Files affected:
SPECS:
   php-pear-Mail_Queue.spec (1.20 - 1.21) 

 Diffs:


Index: SPECS/php-pear-Mail_Queue.spec
diff -u SPECS/php-pear-Mail_Queue.spec:1.20 SPECS/php-pear-Mail_Queue.spec:1.21
--- SPECS/php-pear-Mail_Queue.spec:1.20 Fri Dec  3 23:22:53 2004
+++ SPECS/php-pear-Mail_Queue.spec  Wed Sep 28 21:22:23 2005
@@ -9,13 +9,13 @@
 Summary(pl):   %{_pearname} - ustawianie poczty w kolejce i późniejsze jej 
wysyłanie
 Name:  php-pear-%{_pearname}
 Version:   1.1.3
-Release:   2
+Release:   3
 License:   PHP 2.02
 Group: Development/Languages/PHP
 Source0:   http://pear.php.net/get/%{_pearname}-%{version}.tgz
 # Source0-md5: e1eae2fd188f1926a83b97cdcf0c239e
 URL:   http://pear.php.net/package/Mail_Queue/
-BuildRequires: rpm-php-pearprov = 4.0.2-98
+BuildRequires: rpm-php-pearprov = 4.4.2-11
 Requires:  php-pear
 BuildArch: noarch
 BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
@@ -40,25 +40,24 @@
 Ta klasa ma w PEAR status: %{_status}.
 
 %prep
-%setup -q -c
-cd %{_pearname}-%{version}
+%pear_package_setup
 
 %install
 rm -rf $RPM_BUILD_ROOT
-install -d $RPM_BUILD_ROOT%{php_pear_dir}/%{_class}/%{_subclass}
-
-install %{_pearname}-%{version}/*.php  
$RPM_BUILD_ROOT%{php_pear_dir}/%{_class}/
-install %{_pearname}-%{version}/%{_subclass}/*.php 
$RPM_BUILD_ROOT%{php_pear_dir}/%{_class}/%{_subclass}/
+install -d $RPM_BUILD_ROOT%{php_pear_dir}
+%pear_package_install
 
 %clean
 rm -rf $RPM_BUILD_ROOT
 
 %files
 %defattr(644,root,root,755)
-%doc %{_pearname}-%{version}/docs/*
+%doc install.log
+%doc docs/%{_pearname}/docs/*
 %dir %{php_pear_dir}/%{_class}/%{_subclass}
+%{php_pear_dir}/.registry/*.reg
 %{php_pear_dir}/%{_class}/*.php
-%{php_pear_dir}/%{_class}/%{_subclass}/*.php
+%{php_pear_dir}/%{_class}/%{_subclass}
 
 %define date   %(echo `LC_ALL=C date +%a %b %d %Y`)
 %changelog
@@ -66,6 +65,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.21  2005/09/28 19:22:23  glen
+- new pear packaging (fixed %files); rel 3
+
 Revision 1.20  2004/12/03 22:22:53  adamg
 - rebuild with new PEAR provides/requires scripts
 - release 2


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

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


DISTFILES: pymusepack-0.4.tar.gz

2005-09-28 Thread teodor

Files fetched: 1

STORED: http://www.sacredchao.net/~piman/software/pymusepack-0.4.tar.gz
e534739c46f8b71a147faa600bed9405  pymusepack-0.4.tar.gz
Size: 19641 bytes


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


SPECS: python-musepack.spec (NEW) - init version

2005-09-28 Thread teodor
Author: teodor   Date: Wed Sep 28 19:46:25 2005 GMT
Module: SPECS Tag: HEAD
 Log message:
- init version

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

 Diffs:


Index: SPECS/python-musepack.spec
diff -u /dev/null SPECS/python-musepack.spec:1.1
--- /dev/null   Wed Sep 28 21:46:25 2005
+++ SPECS/python-musepack.spec  Wed Sep 28 21:46:15 2005
@@ -0,0 +1,56 @@
+# $Revision$, $Date$
+%definemodule  pymusepack
+Summary:   A Python module for the Musepack library
+Summary(pl):   Moduł Pythona do biblioteki Musepack
+Name:  python-%{module}
+Version:   0.4
+Release:   1
+License:   GPL v2
+Group: Libraries/Python
+Source0:   
http://www.sacredchao.net/~piman/software/%{module}-%{version}.tar.gz
+# Source0-md5: e534739c46f8b71a147faa600bed9405
+URL:   http://www.sacredchao.net/~piman/
+BuildRequires: libmpcdec-devel
+BuildRequires: python-devel
+BuildRequires: rpmbuild(macros) = 1.174
+%pyrequires_eq python-modules
+BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
+
+%description
+A Python module for the the Musepack library.
+
+%description -l pl
+Moduł Pythona do biblioteki Musepack.
+
+%prep
+%setup -q -n %{module}-%{version}
+
+%build
+python setup.py config
+python setup.py build
+
+%install
+rm -rf $RPM_BUILD_ROOT
+
+python setup.py install \
+   --optimize=2 \
+   --root $RPM_BUILD_ROOT
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%files
+%defattr(644,root,root,755)
+%doc README NEWS
+%{py_sitedir}/musepack
+%attr(755,root,root) %{py_sitedir}/musepack/*.so
+
+%define date   %(echo `LC_ALL=C date +%a %b %d %Y`)
+%changelog
+* %{date} PLD Team [EMAIL PROTECTED]
+All persons listed below can be reached at cvs_login@pld-linux.org
+
+$Log$
+Revision 1.1  2005/09/28 19:46:15  teodor
+- init version
+

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


DISTFILES: bzr-0.0.9.tar.gz

2005-09-28 Thread arekm

Files fetched: 1

STORED: http://www.bazaar-ng.org/pkg/bzr-0.0.9.tar.gz
e6b1e5e561556f29ac00ce00433c9077  bzr-0.0.9.tar.gz
Size: 475889 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: bzr.spec - up to 0.0.9

2005-09-28 Thread arekm
Author: arekmDate: Wed Sep 28 19:58:14 2005 GMT
Module: SPECS Tag: HEAD
 Log message:
- up to 0.0.9

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

 Diffs:


Index: SPECS/bzr.spec
diff -u SPECS/bzr.spec:1.2 SPECS/bzr.spec:1.3
--- SPECS/bzr.spec:1.2  Mon Sep 19 21:47:40 2005
+++ SPECS/bzr.spec  Wed Sep 28 21:58:08 2005
@@ -2,12 +2,12 @@
 %bcond_withtests
 Summary:   Bazaar-NG is a changeset oriented revision control system
 Name:  bzr
-Version:   0.0.7
+Version:   0.0.9
 Release:   1
 License:   GPL v2
 Group: Development/Version Control
 Source0:   http://www.bazaar-ng.org/pkg/%{name}-%{version}.tar.gz
-# Source0-md5: e4d95bd7f6cdd9eb5bd1a62ec2a45db2
+# Source0-md5: e6b1e5e561556f29ac00ce00433c9077
 URL:   http://bazaar.canonical.com/Bzr
 Requires:  diffutils
 Requires:  patch
@@ -73,6 +73,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.3  2005/09/28 19:58:08  arekm
+- up to 0.0.9
+
 Revision 1.2  2005/09/19 19:47:40  arekm
 - added docs
 


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


DISTFILES: cElementTree-1.0.2-20050302.tar.gz

2005-09-28 Thread arekm

Files fetched: 1

STORED: http://effbot.org/downloads/cElementTree-1.0.2-20050302.tar.gz
70372441ffa9e45233876b024bf66bbe  cElementTree-1.0.2-20050302.tar.gz
Size: 91541 bytes


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


SPECS: python-cElementTree.spec (NEW) - initial pld release

2005-09-28 Thread arekm
Author: arekmDate: Wed Sep 28 20:11:06 2005 GMT
Module: SPECS Tag: HEAD
 Log message:
- initial pld release

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

 Diffs:


Index: SPECS/python-cElementTree.spec
diff -u /dev/null SPECS/python-cElementTree.spec:1.1
--- /dev/null   Wed Sep 28 22:11:06 2005
+++ SPECS/python-cElementTree.spec  Wed Sep 28 22:10:58 2005
@@ -0,0 +1,54 @@
+# $Revision$, $Date$
+%definemodule  cElementTree
+%definedate20050302
+
+Summary:   A fast and pythonic XML parser
+Summary(pl):   Szybki pythonowy parser XML
+Name:  python-%{module}
+Version:   1.0.2
+Release:   0.%{date}.1
+License:   BSD
+Group: Development/Languages/Python
+Source0:   http://effbot.org/downloads/%{module}-%{version}-%{date}.tar.gz
+# Source0-md5: 70372441ffa9e45233876b024bf66bbe
+URL:   http://effbot.org/zone/celementtree.htm
+BuildRequires: python
+%pyrequires_eq python-modules
+BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
+
+%description
+A C implementation of the ElementTree API.
+
+%description -l pl
+Implementacja C ElementTree API.
+
+%prep
+%setup -q -n %{module}-%{version}-%{date}
+
+%build
+python setup.py build
+
+%install
+rm -rf $RPM_BUILD_ROOT
+
+python setup.py install \
+   --root=$RPM_BUILD_ROOT \
+   --optimize=2
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%files
+%defattr(644,root,root,755)
+%doc CHANGES README
+%attr(755,root,root) %{py_sitedir}/*.so
+
+%define date   %(echo `LC_ALL=C date +%a %b %d %Y`)
+%changelog
+* %{date} PLD Team [EMAIL PROTECTED]
+All persons listed below can be reached at cvs_login@pld-linux.org
+
+$Log$
+Revision 1.1  2005/09/28 20:10:58  arekm
+- initial pld release
+

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


SOURCES: php-pear-PEAR-template.spec - extra_headers are pldized now

2005-09-28 Thread glen
Author: glen Date: Wed Sep 28 20:16:45 2005 GMT
Module: SOURCES   Tag: HEAD
 Log message:
- extra_headers are pldized now

 Files affected:
SOURCES:
   php-pear-PEAR-template.spec (1.2 - 1.3) 

 Diffs:


Index: SOURCES/php-pear-PEAR-template.spec
diff -u SOURCES/php-pear-PEAR-template.spec:1.2 
SOURCES/php-pear-PEAR-template.spec:1.3
--- SOURCES/php-pear-PEAR-template.spec:1.2 Wed Sep 28 22:06:37 2005
+++ SOURCES/php-pear-PEAR-template.spec Wed Sep 28 22:16:39 2005
@@ -17,8 +17,8 @@
 URL:   http://@master_server@/package/@package@
 BuildRequires: rpm-php-pearprov = 4.4.2-11
 Requires:  php-pear
[EMAIL PROTECTED]@
 BuildArch: @arch@
-# @extra_headers@
 BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
 
 # exclude optional dependencies
@@ -82,6 +82,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.3  2005/09/28 20:16:39  glen
+- extra_headers are pldized now
+
 Revision 1.2  2005/09/28 20:06:37  glen
 - updated
 - added tests subpackage


 CVS-web:

http://cvs.pld-linux.org/SOURCES/php-pear-PEAR-template.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: cvs2svn.spec - up to 1.3.0

2005-09-28 Thread arekm
Author: arekmDate: Wed Sep 28 20:17:03 2005 GMT
Module: SPECS Tag: HEAD
 Log message:
- up to 1.3.0

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

 Diffs:


Index: SPECS/cvs2svn.spec
diff -u SPECS/cvs2svn.spec:1.12 SPECS/cvs2svn.spec:1.13
--- SPECS/cvs2svn.spec:1.12 Sat Jun 11 18:24:16 2005
+++ SPECS/cvs2svn.spec  Wed Sep 28 22:16:57 2005
@@ -1,16 +1,16 @@
 # $Revision$, $Date$
 
-%define_documentid 20727
+%define_documentid 25036
 
 Summary:   CVS to Subversion Repository Converter
 Summary(pl):   Konwerter repozytoriów CVS do Subversion
 Name:  cvs2svn
-Version:   1.2.1
+Version:   1.3.0
 Release:   1
 License:   Apache/BSD-like
 Group: Development/Version Control
 Source0:   
http://cvs2svn.tigris.org/files/documents/1462/%{_documentid}/%{name}-%{version}.tar.gz
-# Source0-md5: 6769d039bea9c6c468402d1e6cbc38e0
+# Source0-md5: 4abb243f76c5b3a8ffddcf751cacdc47
 URL:   http://cvs2svn.tigris.org/
 BuildRequires: python
 %pyrequires_eq python-modules
@@ -57,6 +57,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.13  2005/09/28 20:16:57  arekm
+- up to 1.3.0
+
 Revision 1.12  2005/06/11 16:24:16  saq
 - up to 1.2.1
 


 CVS-web:
http://cvs.pld-linux.org/SPECS/cvs2svn.spec?r1=1.12r2=1.13f=u

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


DISTFILES: cvs2svn-1.3.0.tar.gz

2005-09-28 Thread arekm

Files fetched: 1

STORED: 
http://cvs2svn.tigris.org/files/documents/1462/25036/cvs2svn-1.3.0.tar.gz
4abb243f76c5b3a8ffddcf751cacdc47  cvs2svn-1.3.0.tar.gz
Size: 211310 bytes


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


SOURCES: php-pear-PEAR-rpmvars.patch - pld style Requires and Prov...

2005-09-28 Thread glen
Author: glen Date: Wed Sep 28 20:18:37 2005 GMT
Module: SOURCES   Tag: HEAD
 Log message:
- pld style Requires and Provides lines

 Files affected:
SOURCES:
   php-pear-PEAR-rpmvars.patch (1.3 - 1.4) 

 Diffs:


Index: SOURCES/php-pear-PEAR-rpmvars.patch
diff -u SOURCES/php-pear-PEAR-rpmvars.patch:1.3 
SOURCES/php-pear-PEAR-rpmvars.patch:1.4
--- SOURCES/php-pear-PEAR-rpmvars.patch:1.3 Sun Sep 18 21:44:00 2005
+++ SOURCES/php-pear-PEAR-rpmvars.patch Wed Sep 28 22:18:32 2005
@@ -1,14 +1,60 @@
 ./usr/share/pear/PEAR/Command/Package.php  2005-09-18 16:42:13.0 
+0300
-+++ /usr/share/pear/PEAR/Command/Package.php   2005-09-18 16:57:39.0 
+0300
-@@ -877,6 +877,11 @@
- $info['package'] = $pf-getPackage();
- $info['version'] = $pf-getVersion();
- $info['release_license'] = $pf-getLicense();
-+$info['release_state'] = $pf-getState();
-+  list($info['class'], $info['subclass']) = explode('_', 
$info['package'], 2);
-+  if (empty($info['subclass'])) {
-+  $info['subclass'] = '%{nil}';
-+  }
- if ($pf-getDeps()) {
- if ($pf-getPackagexmlVersion() == '1.0') {
- $requires = $conflicts = array();
+--- .//usr/share/pear/PEAR/Command/Package.php 2005-09-28 23:18:13.0 
+0300
 /usr/share/pear/PEAR/Command/Package.php   2005-09-28 23:16:37.0 
+0300
+@@ -908,7 +908,7 @@
+ $chan = $reg-getChannel($dep['channel']);
+ $package = strtoupper($chan-getAlias()) . '::' . 
$dep['name'];
+ } else {
+-$package = 'PEAR::' . $dep['name'];
++$package = 'php-pear-' . $dep['name'];
+ }
+ $trans = array(
+ '' = '',
+@@ -933,10 +933,14 @@
+ }
+ }
+ if (count($requires)) {
+-$info['extra_headers'] .= 'Requires: ' . implode(', ', 
$requires) . \n;
++  foreach ($requires as $dep) {
++  $info['extra_headers'] .= 
Requires:\t . $dep . \n;
++  }
+ }
+ if (count($conflicts)) {
+-$info['extra_headers'] .= 'Conflicts: ' . implode(', ', 
$conflicts) . \n;
++  foreach ($conflicts as $dep) {
++  $info['extra_headers'] .= 
Conflicts:\t . $dep . \n;
++  }
+ }
+ } else {
+ $info['package2xml'] = '2'; // tell the spec to use 
package2.xml
+@@ -951,7 +955,7 @@
+ $chan = $reg-getChannel($dep['channel']);
+ $package = strtoupper($chan-getAlias()) . '::' . 
$dep['name'];
+ } else {
+-$package = 'PEAR::' . $dep['name'];
++$package = 'php-pear-' . $dep['name'];
+ }
+ if (!isset($dep['min'])  !isset($dep['max']) 
+   !isset($dep['exclude'])) {
+@@ -996,15 +1000,19 @@
+ $tar-popErrorHandling();
+ if ($a === null || PEAR::isError($a)) {
+ // this doesn't have a package.xml version 1.0
+-$requires[] = 'PEAR::PEAR = ' .
++$requires[] = 'php-pear-PEAR = ' .
+ $deps['required']['pearinstaller']['min'] . 
\n;
+ }
+ }
+ if (count($requires)) {
+-$info['extra_headers'] .= 'Requires: ' . implode(', 
', $requires) . \n;
++  foreach ($requires as $dep) {
++  $info['extra_headers'] 
.= Requires:\t . $dep . \n;
++  }
+ }
+ if (count($conflicts)) {
+-$info['extra_headers'] .= 'Conflicts: ' . implode(', 
', $conflicts) . \n;
++  foreach ($conflicts as $dep) {
++  $info['extra_headers'] 
.= Conflicts:\t . $dep . \n;
++  }
+ }
+ }
+ }


 CVS-web:

http://cvs.pld-linux.org/SOURCES/php-pear-PEAR-rpmvars.patch?r1=1.3r2=1.4f=u

___
pld-cvs-commit mailing list

SOURCES: php-pear-PEAR-rpmvars.patch - restore lost patch with pre...

2005-09-28 Thread glen
Author: glen Date: Wed Sep 28 20:23:46 2005 GMT
Module: SOURCES   Tag: HEAD
 Log message:
- restore lost patch with previous commit

 Files affected:
SOURCES:
   php-pear-PEAR-rpmvars.patch (1.4 - 1.5) 

 Diffs:


Index: SOURCES/php-pear-PEAR-rpmvars.patch
diff -u SOURCES/php-pear-PEAR-rpmvars.patch:1.4 
SOURCES/php-pear-PEAR-rpmvars.patch:1.5
--- SOURCES/php-pear-PEAR-rpmvars.patch:1.4 Wed Sep 28 22:18:32 2005
+++ SOURCES/php-pear-PEAR-rpmvars.patch Wed Sep 28 22:23:41 2005
@@ -1,3 +1,17 @@
+--- ./usr/share/pear/PEAR/Command/Package.php  2005-09-18 16:42:13.0 
+0300
 /usr/share/pear/PEAR/Command/Package.php   2005-09-18 16:57:39.0 
+0300
+@@ -877,6 +877,11 @@
+ $info['package'] = $pf-getPackage();
+ $info['version'] = $pf-getVersion();
+ $info['release_license'] = $pf-getLicense();
++$info['release_state'] = $pf-getState();
++  list($info['class'], $info['subclass']) = explode('_', 
$info['package'], 2);
++  if (empty($info['subclass'])) {
++  $info['subclass'] = '%{nil}';
++  }
+ if ($pf-getDeps()) {
+ if ($pf-getPackagexmlVersion() == '1.0') {
+ $requires = $conflicts = array();
 --- .//usr/share/pear/PEAR/Command/Package.php 2005-09-28 23:18:13.0 
+0300
 +++ /usr/share/pear/PEAR/Command/Package.php   2005-09-28 23:16:37.0 
+0300
 @@ -908,7 +908,7 @@


 CVS-web:

http://cvs.pld-linux.org/SOURCES/php-pear-PEAR-rpmvars.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: pld-about-1.1.0.tar.bz2

2005-09-28 Thread wolf

Files fetched: 1

STORED: http://team.pld-linux.org/~wolf/pld-about-1.1.0.tar.bz2
5083818072f8bc2e460e97de61549384  pld-about-1.1.0.tar.bz2
Size: 1148911 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: pld-about.spec - 1.1.0

2005-09-28 Thread wolf
Author: wolf Date: Wed Sep 28 20:25:24 2005 GMT
Module: SPECS Tag: HEAD
 Log message:
- 1.1.0

 Files affected:
SPECS:
   pld-about.spec (1.17 - 1.18) 

 Diffs:


Index: SPECS/pld-about.spec
diff -u SPECS/pld-about.spec:1.17 SPECS/pld-about.spec:1.18
--- SPECS/pld-about.spec:1.17   Thu Sep 15 17:02:25 2005
+++ SPECS/pld-about.specWed Sep 28 22:25:18 2005
@@ -3,12 +3,12 @@
 Summary:   PLD About
 Summary(pl):   O PLD
 Name:  pld-about
-Version:   1.0.0
+Version:   1.1.0
 Release:   1
 License:   GPL v2
 Group: X11/Applications
 Source0:   http://team.pld-linux.org/~wolf/%{name}-%{version}.tar.bz2
-# Source0-md5: d9d5cd6dcbe42def0e5b80f9f34e6454
+# Source0-md5: 5083818072f8bc2e460e97de61549384
 URL:   http://www.pld-linux.org/
 BuildRequires: dotnet-gtk-sharp2-devel = 2.5.91-2
 BuildRequires: gettext-devel
@@ -46,7 +46,6 @@
 
 cat  $RPM_BUILD_ROOT%{_bindir}/pld-about  EOF
 #!/bin/sh
-cd %{_libdir}/pld-about
 exec /usr/bin/mono %{_libdir}/pld-about/pld-about.exe \$@
 EOF
 
@@ -57,7 +56,7 @@
 
 %files -f %{name}.lang
 %defattr(644,root,root,755)
-%doc docs/{ChangeLog,copyrights,kryteria,skrypty}
+%doc docs/{AUTHORS,COPYING,ChangeLog,copyrights,kryteria,skrypty}
 %attr(755,root,root) %{_bindir}/*
 %{_libdir}/pld-about
 %{_desktopdir}/*.desktop
@@ -69,6 +68,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.18  2005/09/28 20:25:18  wolf
+- 1.1.0
+
 Revision 1.17  2005/09/15 15:02:25  wolf
 - BR fixed dotnet-gtk-sharp2
 


 CVS-web:
http://cvs.pld-linux.org/SPECS/pld-about.spec?r1=1.17r2=1.18f=u

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


SOURCES: php-pear-PEAR-rpmvars.patch, php-pear-PEAR-template.spec ...

2005-09-28 Thread glen
Author: glen Date: Wed Sep 28 20:40:35 2005 GMT
Module: SOURCES   Tag: HEAD
 Log message:
- handle _noautoreq and %doc files

 Files affected:
SOURCES:
   php-pear-PEAR-rpmvars.patch (1.5 - 1.6) , php-pear-PEAR-template.spec (1.3 
- 1.4) 

 Diffs:


Index: SOURCES/php-pear-PEAR-rpmvars.patch
diff -u SOURCES/php-pear-PEAR-rpmvars.patch:1.5 
SOURCES/php-pear-PEAR-rpmvars.patch:1.6
--- SOURCES/php-pear-PEAR-rpmvars.patch:1.5 Wed Sep 28 22:23:41 2005
+++ SOURCES/php-pear-PEAR-rpmvars.patch Wed Sep 28 22:40:30 2005
@@ -72,3 +72,62 @@
  }
  }
  }
+--- .//usr/share/pear/PEAR/Command/Package.php 2005-09-28 23:25:11.0 
+0300
 /usr/share/pear/PEAR/Command/Package.php   2005-09-28 23:39:21.0 
+0300
+@@ -814,7 +814,7 @@
+ }
+ 
+ $info['extra_headers'] = '';
+-$info['doc_files'] = '';
++$info['doc_files'] = array();
+ $info['files'] = '';
+ $info['package2xml'] = '';
+ $info['rpm_package'] = sprintf($rpm_pkgname_format, 
$pf-getPackage());
+@@ -825,7 +825,7 @@
+ }
+ $name = preg_replace('![/:]!', '/', $name);
+ if ($attr['role'] == 'doc') {
+-$info['doc_files'] .=  $name;
++$info['doc_files'][] = $name;
+ // Map role to the rpm vars
+ } else {
+ $c_prefix = '%{_libdir}/php/pear';
+@@ -863,6 +863,16 @@
+ $info['files'] .= $prefix/$name\n;
+ }
+ }
++
++  $ndocs = count($info['doc_files']);
++  if ($ndocs  1) {
++  $info['doc_files'] = '%doc docs/%{_pearname}/{' . 
join(',', $info['doc_files']) . '}';
++  } elseif ($ndocs  0) {
++  $info['doc_files'] = '%doc docs/%{_pearname}/' . 
join(',', $info['doc_files']);
++  } else {
++  $info['doc_files'] = '';
++  }
++
+ if ($srcfiles  0) {
+ require_once 'OS/Guess.php';
+ $os = new OS_Guess;
+@@ -894,10 +904,13 @@
+   $info['subclass'] = '%{nil}';
+   }
+ if ($pf-getDeps()) {
++  $info['optional'] = '';
++
+ if ($pf-getPackagexmlVersion() == '1.0') {
+ $requires = $conflicts = array();
+ foreach ($pf-getDeps() as $dep) {
+ if (isset($dep['optional'])  $dep['optional'] == 'yes') 
{
++  $info['optional'] .= 'pear(. 
str_replace('_', '/', $dep['name']) . .*)' ;
+ continue;
+ }
+ if ($dep['type'] != 'pkg') {
+@@ -1020,6 +1033,7 @@
+ 
+ // remove the trailing newline
+ $info['extra_headers'] = trim($info['extra_headers']);
++$info['optional'] = trim($info['optional']);
+ if (function_exists('file_get_contents')) {
+ fclose($fp);
+ $spec_contents = preg_replace('/@([a-z0-9_-]+)@/e', '$info[\1]',


Index: SOURCES/php-pear-PEAR-template.spec
diff -u SOURCES/php-pear-PEAR-template.spec:1.3 
SOURCES/php-pear-PEAR-template.spec:1.4
--- SOURCES/php-pear-PEAR-template.spec:1.3 Wed Sep 28 22:16:39 2005
+++ SOURCES/php-pear-PEAR-template.spec Wed Sep 28 22:40:30 2005
@@ -22,7 +22,7 @@
 BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
 
 # exclude optional dependencies
-#define_noautoreq  'pear(XML/Beautifier/.*)'
+%define_noautoreq  @optional@
 
 %description
 @description@
@@ -66,7 +66,7 @@
 %files
 %defattr(644,root,root,755)
 %doc install.log optional-packages.txt
-%doc @doc_files@
[EMAIL PROTECTED]@
 %{php_pear_dir}/.registry/*.reg
 %{php_pear_dir}/%{_class}/*.php
 
@@ -82,6 +82,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.4  2005/09/28 20:40:30  glen
+- handle _noautoreq and %doc files
+
 Revision 1.3  2005/09/28 20:16:39  glen
 - extra_headers are pldized now
 


 CVS-web:

http://cvs.pld-linux.org/SOURCES/php-pear-PEAR-rpmvars.patch?r1=1.5r2=1.6f=u

http://cvs.pld-linux.org/SOURCES/php-pear-PEAR-template.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: php-pear-PEAR-rpmvars.patch, php-pear-PEAR-template.spec ...

2005-09-28 Thread glen
Author: glen Date: Wed Sep 28 20:55:50 2005 GMT
Module: SOURCES   Tag: HEAD
 Log message:
- handle optional deps and optional tests
- handle different file classes

 Files affected:
SOURCES:
   php-pear-PEAR-rpmvars.patch (1.6 - 1.7) , php-pear-PEAR-template.spec (1.4 
- 1.5) 

 Diffs:


Index: SOURCES/php-pear-PEAR-rpmvars.patch
diff -u SOURCES/php-pear-PEAR-rpmvars.patch:1.6 
SOURCES/php-pear-PEAR-rpmvars.patch:1.7
--- SOURCES/php-pear-PEAR-rpmvars.patch:1.6 Wed Sep 28 22:40:30 2005
+++ SOURCES/php-pear-PEAR-rpmvars.patch Wed Sep 28 22:55:45 2005
@@ -131,3 +131,57 @@
  if (function_exists('file_get_contents')) {
  fclose($fp);
  $spec_contents = preg_replace('/@([a-z0-9_-]+)@/e', '$info[\1]',
+--- .//usr/share/pear/PEAR/Command/Package.php 2005-09-28 23:55:36.0 
+0300
 /usr/share/pear/PEAR/Command/Package.php   2005-09-28 23:55:06.0 
+0300
+@@ -816,6 +816,8 @@
+ $info['extra_headers'] = '';
+ $info['doc_files'] = array();
+ $info['files'] = '';
++$info['test_files'] = '';
++$info['data_files'] = '';
+ $info['package2xml'] = '';
+ $info['rpm_package'] = sprintf($rpm_pkgname_format, 
$pf-getPackage());
+ $srcfiles = 0;
+@@ -828,7 +830,7 @@
+ $info['doc_files'][] = $name;
+ // Map role to the rpm vars
+ } else {
+-$c_prefix = '%{_libdir}/php/pear';
++$c_prefix = '%{php_pear_dir}';
+ switch ($attr['role']) {
+ case 'php':
+ $prefix = $c_prefix;
+@@ -860,7 +862,15 @@
+ break;
+ }
+ $name = str_replace('\\', '/', $name);
+-$info['files'] .= $prefix/$name\n;
++  if ($attr['role'] == 'test') {
++  $info['test_files'] .= 
$prefix/$name\n;
++
++  } elseif ($attr['role'] == 'data') {
++  $info['data_files'] .= 
$prefix/$name\n;
++
++  } else {
++  $info['files'] .= $prefix/$name\n;
++  }
+ }
+ }
+ 
+@@ -872,6 +882,7 @@
+   } else {
+   $info['doc_files'] = '';
+   }
++  $info['have_tests'] = (count($info['test_files'])  0) + 0;
+ 
+ if ($srcfiles  0) {
+ require_once 'OS/Guess.php';
+@@ -1034,6 +1045,8 @@
+ // remove the trailing newline
+ $info['extra_headers'] = trim($info['extra_headers']);
+ $info['optional'] = trim($info['optional']);
++  $info['have_optional_deps'] = (strlen($info['optional'])  0) + 
0;
++
+ if (function_exists('file_get_contents')) {
+ fclose($fp);
+ $spec_contents = preg_replace('/@([a-z0-9_-]+)@/e', '$info[\1]',


Index: SOURCES/php-pear-PEAR-template.spec
diff -u SOURCES/php-pear-PEAR-template.spec:1.4 
SOURCES/php-pear-PEAR-template.spec:1.5
--- SOURCES/php-pear-PEAR-template.spec:1.4 Wed Sep 28 22:40:30 2005
+++ SOURCES/php-pear-PEAR-template.spec Wed Sep 28 22:55:45 2005
@@ -18,6 +18,9 @@
 BuildRequires: rpm-php-pearprov = 4.4.2-11
 Requires:  php-pear
 @extra_headers@
+%if [EMAIL PROTECTED]@
+Obsoletes: %{name}-tests
+%endif
 BuildArch: @arch@
 BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
 
@@ -58,23 +61,29 @@
 %clean
 rm -rf $RPM_BUILD_ROOT
 
+%if @have_optional_deps@
 %post
 if [ -f %{_docdir}/%{name}-%{version}/optional-packages.txt ]; then
cat %{_docdir}/%{name}-%{version}/optional-packages.txt
 fi
+%endif
 
 %files
 %defattr(644,root,root,755)
 %doc install.log optional-packages.txt
+%if @have_optional_deps@
+%doc optional-packages.txt
+%endif
 @doc_files@
 %{php_pear_dir}/.registry/*.reg
-%{php_pear_dir}/%{_class}/*.php
-
-%{php_pear_dir}/data/%{_pearname}
[EMAIL PROTECTED]@
[EMAIL PROTECTED]@
 
+%if @have_tests@
 %files tests
 %defattr(644,root,root,755)
-%{php_pear_dir}/tests/*
[EMAIL PROTECTED]@
+%endif
 
 %define date   %(echo `LC_ALL=C date +%a %b %d %Y`)
 %changelog
@@ -82,6 +91,10 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.5  2005/09/28 20:55:45  glen
+- handle optional deps and optional tests
+- handle different file classes
+
 Revision 1.4  2005/09/28 20:40:30  glen
 - handle _noautoreq and %doc files
 


 CVS-web:

http://cvs.pld-linux.org/SOURCES/php-pear-PEAR-rpmvars.patch?r1=1.6r2=1.7f=u

http://cvs.pld-linux.org/SOURCES/php-pear-PEAR-template.spec?r1=1.4r2=1.5f=u

___
pld-cvs-commit 

SOURCES: php-pear-PEAR-template.spec - conditionally _noautoreq

2005-09-28 Thread glen
Author: glen Date: Wed Sep 28 21:12:00 2005 GMT
Module: SOURCES   Tag: HEAD
 Log message:
- conditionally _noautoreq

 Files affected:
SOURCES:
   php-pear-PEAR-template.spec (1.5 - 1.6) 

 Diffs:


Index: SOURCES/php-pear-PEAR-template.spec
diff -u SOURCES/php-pear-PEAR-template.spec:1.5 
SOURCES/php-pear-PEAR-template.spec:1.6
--- SOURCES/php-pear-PEAR-template.spec:1.5 Wed Sep 28 22:55:45 2005
+++ SOURCES/php-pear-PEAR-template.spec Wed Sep 28 23:11:55 2005
@@ -24,8 +24,10 @@
 BuildArch: @arch@
 BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
 
+%if @have_optional_deps@
 # exclude optional dependencies
 %define_noautoreq  @optional@
+%endif
 
 %description
 @description@
@@ -91,6 +93,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.6  2005/09/28 21:11:55  glen
+- conditionally _noautoreq
+
 Revision 1.5  2005/09/28 20:55:45  glen
 - handle optional deps and optional tests
 - handle different file classes


 CVS-web:

http://cvs.pld-linux.org/SOURCES/php-pear-PEAR-template.spec?r1=1.5r2=1.6f=u

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


SPECS: ssh-askpass-fullscreen.spec - release 1 - works

2005-09-28 Thread blues
Author: bluesDate: Wed Sep 28 21:22:12 2005 GMT
Module: SPECS Tag: HEAD
 Log message:
- release 1 - works

 Files affected:
SPECS:
   ssh-askpass-fullscreen.spec (1.1 - 1.2) 

 Diffs:


Index: SPECS/ssh-askpass-fullscreen.spec
diff -u SPECS/ssh-askpass-fullscreen.spec:1.1 
SPECS/ssh-askpass-fullscreen.spec:1.2
--- SPECS/ssh-askpass-fullscreen.spec:1.1   Wed Sep 28 23:12:54 2005
+++ SPECS/ssh-askpass-fullscreen.spec   Wed Sep 28 23:22:06 2005
@@ -11,7 +11,7 @@
 Summary(uk):   SSH - ÄŚÁĚĎÇ ××ĎÄŐ ËĚŔŢĎ×ϧ ĆŇÁÚÉ (passphrase) ÄĚŃ X11
 Name:  ssh-askpass-fullscreen
 Version:   0.3
-Release:   0.1
+Release:   1
 License:   GPL v2
 Group: Applications/Networking
 Source0:   
http://ftp.debian.org/debian/pool/main/s/ssh-askpass-fullscreen/%{name}_%{version}.orig.tar.gz
@@ -80,6 +80,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.2  2005/09/28 21:22:06  blues
+- release 1 - works
+
 Revision 1.1  2005/09/28 21:12:54  blues
 - initial release, not tested, but should work
 


 CVS-web:
http://cvs.pld-linux.org/SPECS/ssh-askpass-fullscreen.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: php-pear-PEAR.spec - conflicts line bugfix

2005-09-28 Thread glen
Author: glen Date: Wed Sep 28 21:25:08 2005 GMT
Module: SPECS Tag: HEAD
 Log message:
- conflicts line bugfix

 Files affected:
SPECS:
   php-pear-PEAR.spec (1.71 - 1.72) 

 Diffs:


Index: SPECS/php-pear-PEAR.spec
diff -u SPECS/php-pear-PEAR.spec:1.71 SPECS/php-pear-PEAR.spec:1.72
--- SPECS/php-pear-PEAR.spec:1.71   Mon Sep 26 22:10:55 2005
+++ SPECS/php-pear-PEAR.specWed Sep 28 23:25:03 2005
@@ -9,7 +9,7 @@
 Summary(pl):   %{_pearname} - podstawowa klasa dla PHP PEAR
 Name:  php-pear-%{_pearname}
 Version:   1.4.1
-Release:   1
+Release:   1.1
 Epoch: 1
 License:   PHP 3.0
 Group: Development/Languages/PHP
@@ -20,6 +20,7 @@
 Patch1:%{name}-sysconfdir.patch
 Patch2:%{name}-rpmpkgname.patch
 Patch3:%{name}-rpmvars.patch
+Patch4:http://glen.alkohol.ee/pld/PEAR-makerpm1.patch
 URL:   http://pear.php.net/package/PEAR
 BuildRequires: rpm-php-pearprov = 4.4.2-11
 BuildRequires: php-pear = 4:1.0-6
@@ -68,6 +69,8 @@
 %patch1 -p1
 %patch2 -p1
 %patch3 -p1
+cd ./%{php_pear_dir}
+%patch4 -p1
 
 find '(' -name '*~' -o -name '*.orig' ')' | xargs -r rm -v
 
@@ -113,6 +116,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.72  2005/09/28 21:25:03  glen
+- conflicts line bugfix
+
 Revision 1.71  2005/09/26 20:10:55  glen
 - 1.4.1
 


 CVS-web:
http://cvs.pld-linux.org/SPECS/php-pear-PEAR.spec?r1=1.71r2=1.72f=u

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


SOURCES: php-pear-PEAR-rpmvars.patch - include PEAR epoch

2005-09-28 Thread glen
Author: glen Date: Wed Sep 28 21:26:13 2005 GMT
Module: SOURCES   Tag: HEAD
 Log message:
- include PEAR epoch

 Files affected:
SOURCES:
   php-pear-PEAR-rpmvars.patch (1.7 - 1.8) 

 Diffs:


Index: SOURCES/php-pear-PEAR-rpmvars.patch
diff -u SOURCES/php-pear-PEAR-rpmvars.patch:1.7 
SOURCES/php-pear-PEAR-rpmvars.patch:1.8
--- SOURCES/php-pear-PEAR-rpmvars.patch:1.7 Wed Sep 28 22:55:45 2005
+++ SOURCES/php-pear-PEAR-rpmvars.patch Wed Sep 28 23:26:08 2005
@@ -185,3 +185,14 @@
  if (function_exists('file_get_contents')) {
  fclose($fp);
  $spec_contents = preg_replace('/@([a-z0-9_-]+)@/e', '$info[\1]',
+--- .//usr/share/pear/PEAR/Command/Package.php 2005-09-29 00:26:51.0 
+0300
 /usr/share/pear/PEAR/Command/Package.php   2005-09-29 00:26:38.0 
+0300
+@@ -1024,7 +1024,7 @@
+ $tar-popErrorHandling();
+ if ($a === null || PEAR::isError($a)) {
+ // this doesn't have a package.xml version 1.0
+-$requires[] = 'php-pear-PEAR = ' .
++$requires[] = 'php-pear-PEAR = 1:' .
+ $deps['required']['pearinstaller']['min'] . 
\n;
+ }
+ }


 CVS-web:

http://cvs.pld-linux.org/SOURCES/php-pear-PEAR-rpmvars.patch?r1=1.7r2=1.8f=u

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


SOURCES: PEAR-makerpm1.patch (NEW) - copy to PLD CVS

2005-09-28 Thread glen
Author: glen Date: Wed Sep 28 21:27:39 2005 GMT
Module: SOURCES   Tag: HEAD
 Log message:
- copy to PLD CVS

 Files affected:
SOURCES:
   PEAR-makerpm1.patch (NONE - 1.1)  (NEW)

 Diffs:


Index: SOURCES/PEAR-makerpm1.patch
diff -u /dev/null SOURCES/PEAR-makerpm1.patch:1.1
--- /dev/null   Wed Sep 28 23:27:39 2005
+++ SOURCES/PEAR-makerpm1.patch Wed Sep 28 23:27:34 2005
@@ -0,0 +1,20 @@
+solves for makerpm of pear 1.4.1
+
+error: line 25: Dependency tokens must begin with alpha-numeric, '_' or '/': 
Conflicts: php-pear-PEAR_Frontend_Web != 0.5.0
+
+but is not a real fix i guess.
+not sure does $dep['conflicts'] perhaps should have different value than empty 
string.
+
+--- ./PEAR/Command/Package.php~2005-09-29 00:07:35.0 +0300
 ./PEAR/Command/Package.php 2005-09-29 00:07:37.0 +0300
+@@ -1010,8 +1009,8 @@
+ $ex = array($ex);
+ }
+ foreach ($ex as $ver) {
+-if (isset($dep['conflicts'])) {
+-$conflicts[] = $package . ' != ' . 
$ver;
++if (isset($dep['conflicts']) and 
$dep['conflicts']) {
++$conflicts[] = $package . ' != ' . 
$ver; # XXX: not valid .spec syntax
+ } else {
+ $conflicts[] = $package . ' = ' . 
$ver;
+ }

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


SPECS: php-pear-Auth.spec - tabs

2005-09-28 Thread glen
Author: glen Date: Wed Sep 28 21:33:13 2005 GMT
Module: SPECS Tag: HEAD
 Log message:
- tabs

 Files affected:
SPECS:
   php-pear-Auth.spec (1.33 - 1.34) 

 Diffs:


Index: SPECS/php-pear-Auth.spec
diff -u SPECS/php-pear-Auth.spec:1.33 SPECS/php-pear-Auth.spec:1.34
--- SPECS/php-pear-Auth.spec:1.33   Wed Sep 28 00:13:36 2005
+++ SPECS/php-pear-Auth.specWed Sep 28 23:33:07 2005
@@ -23,7 +23,7 @@
 BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
 
 # optional
-%define_noautoreq 'pear(Auth/RADIUS.php)' 
'pear(File/Passwd.php)' 'pear(File/SMBPasswd.php)' 'pear(Net/POP3.php)'
+%define_noautoreq  'pear(Auth/RADIUS.php)' 
'pear(File/Passwd.php)' 'pear(File/SMBPasswd.php)' 'pear(Net/POP3.php)'
 # tests
 # 'pear(DBContainer.php) 'pear(FileContainer.php) 'pear(IMAPContainer.php) 
'pear(MDBContainer.php) 'pear(POP3Container.php) 'pear(POP3aContainer.php) 
'pear(TestAuthContainer.php)'
 
@@ -90,6 +90,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.34  2005/09/28 21:33:07  glen
+- tabs
+
 Revision 1.33  2005/09/27 22:13:36  glen
 - fix requires for -tests (typo)
 


 CVS-web:
http://cvs.pld-linux.org/SPECS/php-pear-Auth.spec?r1=1.33r2=1.34f=u

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


SPECS: php-pear-MDB_QueryTool.spec, php-pear-MP3_Id.spec, php-pear...

2005-09-28 Thread glen
Author: glen Date: Wed Sep 28 21:33:22 2005 GMT
Module: SPECS Tag: HEAD
 Log message:
- new pear packaging

 Files affected:
SPECS:
   php-pear-MDB_QueryTool.spec (1.19 - 1.20) , php-pear-MP3_Id.spec (1.12 - 
1.13) , php-pear-Mail_IMAP.spec (1.13 - 1.14) , php-pear-Mail_IMAPv2.spec (1.3 
- 1.4) , php-pear-Mail_Mbox.spec (1.13 - 1.14) , php-pear-Math_Basex.spec 
(1.11 - 1.12) , php-pear-Math_BinaryUtils.spec (1.5 - 1.6) , 
php-pear-Math_Complex.spec (1.11 - 1.12) , php-pear-Math_Fibonacci.spec (1.9 
- 1.10) , php-pear-Math_Fraction.spec (1.3 - 1.4) , 
php-pear-Math_Histogram.spec (1.10 - 1.11) , php-pear-Math_Integer.spec (1.9 
- 1.10) , php-pear-Math_Matrix.spec (1.6 - 1.7) , 
php-pear-Math_Numerical_RootFinding.spec (1.10 - 1.11) , 
php-pear-Math_Quaternion.spec (1.10 - 1.11) , php-pear-Math_RPN.spec (1.9 - 
1.10) , php-pear-Math_Stats.spec (1.14 - 1.15) , php-pear-Math_TrigOp.spec 
(1.9 - 1.10) , php-pear-Math_Vector.spec (1.17 - 1.18) , 
php-pear-Message.spec (1.9 - 1.10) , php-pear-Net_CheckIP.spec (1.16 - 1.17) 
, php-pear-Net_Curl.spec (1.20 - 1.21) , php-pear-Net_Cyrus.spec (1.9 - 1.10) 
, php-pear-Net_DNS.spec (1.16 - 1.17) , php-pear-Net_DNSBL.spec (1.2 - 1.3) , 
php-pear-Net_Dict.spec (1.14 - 1.15) , php-pear-Net_Dig.spec (1.16 - 1.17) , 
php-pear-Net_Finger.spec (1.9 - 1.10) , php-pear-Net_IMAP.spec (1.22 - 1.23) 

 Diffs:


Index: SPECS/php-pear-MDB_QueryTool.spec
diff -u SPECS/php-pear-MDB_QueryTool.spec:1.19 
SPECS/php-pear-MDB_QueryTool.spec:1.20
--- SPECS/php-pear-MDB_QueryTool.spec:1.19  Sat Sep 10 12:41:50 2005
+++ SPECS/php-pear-MDB_QueryTool.spec   Wed Sep 28 23:33:15 2005
@@ -9,13 +9,13 @@
 Summary(pl):   %{_pearname} - obiektowy interfejs do odczytywania i 
modyfikowania danych w DB
 Name:  php-pear-%{_pearname}
 Version:   1.0.1
-Release:   1
+Release:   1.1
 License:   PHP 2.02
 Group: Development/Languages/PHP
 Source0:   http://pear.php.net/get/%{_pearname}-%{version}.tgz
 # Source0-md5: ef9b19407ef62ea27695d2bcabe30dd0
 URL:   http://pear.php.net/package/MDB_QueryTool/
-BuildRequires: rpm-php-pearprov = 4.0.2-98
+BuildRequires: rpm-php-pearprov = 4.4.2-11
 Requires:  php-pear
 BuildArch: noarch
 BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
@@ -46,31 +46,51 @@
 
 Ta klasa ma w PEAR status: %{_status}.
 
+%package tests
+Summary:   Tests for PEAR::%{_pearname}
+Summary(pl):   Testy dla PEAR::%{_pearname}
+Group: Development
+Requires:  %{name} = %{epoch}:%{version}-%{release}
+AutoReq:   no
+
+%description tests
+Tests for PEAR::%{_pearname}.
+
+%description tests -l pl
+Testy dla PEAR::%{_pearname}.
+
 %prep
-%setup -q -c
+%pear_package_setup
 
 %install
 rm -rf $RPM_BUILD_ROOT
-install -d $RPM_BUILD_ROOT%{php_pear_dir}/%{_class}/%{_subclass}/Result
-
-install %{_pearname}-%{version}/*.php $RPM_BUILD_ROOT%{php_pear_dir}/%{_class}
-install %{_pearname}-%{version}/%{_subclass}/*.php 
$RPM_BUILD_ROOT%{php_pear_dir}/%{_class}/%{_subclass}
-install %{_pearname}-%{version}/%{_subclass}/Result/*.php 
$RPM_BUILD_ROOT%{php_pear_dir}/%{_class}/%{_subclass}/Result
+install -d $RPM_BUILD_ROOT%{php_pear_dir}
+%pear_package_install
 
 %clean
 rm -rf $RPM_BUILD_ROOT
 
 %files
 %defattr(644,root,root,755)
+%doc install.log
+%doc docs/%{_pearname}/docs/*
+%{php_pear_dir}/.registry/*.reg
 %{php_pear_dir}/%{_class}/*.php
 %{php_pear_dir}/%{_class}/%{_subclass}/
 
+%files tests
+%defattr(644,root,root,755)
+%{php_pear_dir}/tests/*
+
 %definedate%(echo `LC_ALL=C date +%a %b %d %Y`)
 %changelog
 * %{date} PLD Team [EMAIL PROTECTED]
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.20  2005/09/28 21:33:15  glen
+- new pear packaging
+
 Revision 1.19  2005/09/10 10:41:50  adamg
 - updated to 1.0.1
 


Index: SPECS/php-pear-MP3_Id.spec
diff -u SPECS/php-pear-MP3_Id.spec:1.12 SPECS/php-pear-MP3_Id.spec:1.13
--- SPECS/php-pear-MP3_Id.spec:1.12 Sun Sep  4 17:04:45 2005
+++ SPECS/php-pear-MP3_Id.spec  Wed Sep 28 23:33:15 2005
@@ -9,13 +9,13 @@
 Summary(pl):   %{_pearname} - odczyt/zapis tagów MP3
 Name:  php-pear-%{_pearname}
 Version:   1.1.3
-Release:   3
+Release:   3.1
 License:   LGPL
 Group: Development/Languages/PHP
 Source0:   http://pear.php.net/get/%{_pearname}-%{version}.tgz
 # Source0-md5: 2943cf8b95acf5be593bf53b15035d3a
 URL:   http://pear.php.net/package/MP3_Id/
-BuildRequires: rpm-php-pearprov = 4.0.2-98
+BuildRequires: rpm-php-pearprov = 4.4.2-11
 Requires:  php-pear
 BuildArch: noarch
 BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
@@ -33,19 +33,20 @@
 Ta klasa ma w PEAR status: %{_status}.
 
 %prep
-%setup -q -c
+%pear_package_setup
 
 %install
 rm -rf $RPM_BUILD_ROOT
-install -d 

SPECS: template-php-pear.spec - add note about pear makerpm

2005-09-28 Thread glen
Author: glen Date: Wed Sep 28 21:34:30 2005 GMT
Module: SPECS Tag: HEAD
 Log message:
- add note about pear makerpm

 Files affected:
SPECS:
   template-php-pear.spec (1.15 - 1.16) 

 Diffs:


Index: SPECS/template-php-pear.spec
diff -u SPECS/template-php-pear.spec:1.15 SPECS/template-php-pear.spec:1.16
--- SPECS/template-php-pear.spec:1.15   Wed Sep 28 23:23:52 2005
+++ SPECS/template-php-pear.specWed Sep 28 23:34:25 2005
@@ -1,4 +1,9 @@
 # $Revision$, $Date$
+#
+# NOTE
+# - you should use 'pear makerpm PEARPACKAGE' instead of this template
+#   this file exists just for a reference when updating existing packages
+#
 %include   /usr/lib/rpm/macros.php
 %define_class  class
 %define_subclass   subclass
@@ -90,6 +95,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.16  2005/09/28 21:34:25  glen
+- add note about pear makerpm
+
 Revision 1.15  2005/09/28 21:23:52  glen
 - update
 


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

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


DISTFILES: Mail_IMAP-1.1.0RC1.tgz

2005-09-28 Thread glen

Files fetched: 1

STORED: http://pear.php.net/get/Mail_IMAP-1.1.0RC1.tgz
62481c4517c0727bedd1acd9c7c8b451  Mail_IMAP-1.1.0RC1.tgz
Size: 20009 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: php-pear-PEAR.spec - remove Log section from template.spec

2005-09-28 Thread glen
Author: glen Date: Wed Sep 28 21:45:03 2005 GMT
Module: SPECS Tag: HEAD
 Log message:
- remove Log section from template.spec

 Files affected:
SPECS:
   php-pear-PEAR.spec (1.72 - 1.73) 

 Diffs:


Index: SPECS/php-pear-PEAR.spec
diff -u SPECS/php-pear-PEAR.spec:1.72 SPECS/php-pear-PEAR.spec:1.73
--- SPECS/php-pear-PEAR.spec:1.72   Wed Sep 28 23:25:03 2005
+++ SPECS/php-pear-PEAR.specWed Sep 28 23:44:58 2005
@@ -9,7 +9,7 @@
 Summary(pl):   %{_pearname} - podstawowa klasa dla PHP PEAR
 Name:  php-pear-%{_pearname}
 Version:   1.4.1
-Release:   1.1
+Release:   1.4
 Epoch: 1
 License:   PHP 3.0
 Group: Development/Languages/PHP
@@ -93,7 +93,8 @@
 %pear_package_install
 cp -a ./%{_bindir}/* $RPM_BUILD_ROOT%{_bindir}
 
-install %{SOURCE1} $RPM_BUILD_ROOT%{php_pear_dir}/data/%{_class}/template.spec
+sed -e '/^\$''Log: /,$d' %{SOURCE1}  
$RPM_BUILD_ROOT%{php_pear_dir}/data/%{_class}/template.spec
+echo '$''Log: $'  $RPM_BUILD_ROOT%{php_pear_dir}/data/%{_class}/template.spec
 
 %clean
 rm -rf $RPM_BUILD_ROOT
@@ -116,6 +117,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.73  2005/09/28 21:44:58  glen
+- remove Log section from template.spec
+
 Revision 1.72  2005/09/28 21:25:03  glen
 - conflicts line bugfix
 


 CVS-web:
http://cvs.pld-linux.org/SPECS/php-pear-PEAR.spec?r1=1.72r2=1.73f=u

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


DISTFILES: librsvg-2.12.2.tar.bz2

2005-09-28 Thread freetz

Files fetched: 1

STORED: 
http://ftp.gnome.org/pub/gnome/sources/librsvg/2.12/librsvg-2.12.2.tar.bz2
4e4c547345bd3b5dd5acab924a87eeb9  librsvg-2.12.2.tar.bz2
Size: 396210 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: glib-2.8.2.tar.bz2

2005-09-28 Thread freetz

Files fetched: 1

STORED: ftp://ftp.gtk.org/pub/gtk/v2.8/glib-2.8.2.tar.bz2
7ded88401db139b7c63daf5597af7d1d  glib-2.8.2.tar.bz2
Size: 2562146 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: librsvg.spec - 2.12.2

2005-09-28 Thread freetz
Author: freetz   Date: Wed Sep 28 21:59:08 2005 GMT
Module: SPECS Tag: HEAD
 Log message:
- 2.12.2

 Files affected:
SPECS:
   librsvg.spec (1.88 - 1.89) 

 Diffs:


Index: SPECS/librsvg.spec
diff -u SPECS/librsvg.spec:1.88 SPECS/librsvg.spec:1.89
--- SPECS/librsvg.spec:1.88 Thu Sep 15 20:07:44 2005
+++ SPECS/librsvg.spec  Wed Sep 28 23:59:03 2005
@@ -13,14 +13,14 @@
 Summary(ru):   SVG ÂÉÂĚÉĎÔĹËÁ
 Summary(uk):   SVG ÂŚÂĚŚĎÔĹËÁ
 Name:  librsvg
-Version:   2.12.0
+Version:   2.12.2
 Release:   1
 Epoch: 1
 License:   LGPL v2+
 Vendor:GNOME
 Group: Libraries
 Source0:   
http://ftp.gnome.org/pub/gnome/sources/librsvg/2.12/%{name}-%{version}.tar.bz2
-# Source0-md5: 26419cbae1364b9ce2c29d9c8650545e
+# Source0-md5: 4e4c547345bd3b5dd5acab924a87eeb9
 URL:   http://librsvg.sourceforge.net/
 BuildRequires: autoconf
 BuildRequires: automake
@@ -214,6 +214,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.89  2005/09/28 21:59:03  freetz
+- 2.12.2
+
 Revision 1.88  2005/09/15 18:07:44  freetz
 - 2.12.0
 


 CVS-web:
http://cvs.pld-linux.org/SPECS/librsvg.spec?r1=1.88r2=1.89f=u

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


SPECS: glib2.spec - 2.8.2

2005-09-28 Thread freetz
Author: freetz   Date: Wed Sep 28 21:59:28 2005 GMT
Module: SPECS Tag: HEAD
 Log message:
- 2.8.2

 Files affected:
SPECS:
   glib2.spec (1.116 - 1.117) 

 Diffs:


Index: SPECS/glib2.spec
diff -u SPECS/glib2.spec:1.116 SPECS/glib2.spec:1.117
--- SPECS/glib2.spec:1.116  Fri Sep 23 14:08:50 2005
+++ SPECS/glib2.specWed Sep 28 23:59:23 2005
@@ -17,13 +17,13 @@
 Summary(tr):   Yararlý ufak yordamlar kitaplýđý
 Summary(zh_CN):ĘľÓĂš¤žßşŻĘýżâ
 Name:  glib2
-Version:   2.8.1
+Version:   2.8.2
 Release:   1
 Epoch: 1
 License:   LGPL
 Group: Libraries
 Source0:   ftp://ftp.gtk.org/pub/gtk/v2.8/glib-%{version}.tar.bz2
-# Source0-md5: 2229ca9d5490a87d5e027e029520df14
+# Source0-md5: 7ded88401db139b7c63daf5597af7d1d
 Patch0:%{name}-makefile.patch
 Patch1:%{name}-SEGV.patch
 URL:   http://www.gtk.org/
@@ -214,6 +214,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.117  2005/09/28 21:59:23  freetz
+- 2.8.2
+
 Revision 1.116  2005/09/23 12:08:50  djurban
 - no more gtk-doc BUAHAHAHAHA
 


 CVS-web:
http://cvs.pld-linux.org/SPECS/glib2.spec?r1=1.116r2=1.117f=u

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


SOURCES: php-pear-PEAR-rpmvars.patch - fix @have_tests@

2005-09-28 Thread glen
Author: glen Date: Wed Sep 28 22:07:05 2005 GMT
Module: SOURCES   Tag: HEAD
 Log message:
- fix @have_tests@

 Files affected:
SOURCES:
   php-pear-PEAR-rpmvars.patch (1.8 - 1.9) 

 Diffs:


Index: SOURCES/php-pear-PEAR-rpmvars.patch
diff -u SOURCES/php-pear-PEAR-rpmvars.patch:1.8 
SOURCES/php-pear-PEAR-rpmvars.patch:1.9
--- SOURCES/php-pear-PEAR-rpmvars.patch:1.8 Wed Sep 28 23:26:08 2005
+++ SOURCES/php-pear-PEAR-rpmvars.patch Thu Sep 29 00:07:00 2005
@@ -172,7 +172,7 @@
} else {
$info['doc_files'] = '';
}
-+  $info['have_tests'] = (count($info['test_files'])  0) + 0;
++  $info['have_tests'] = (strlen($info['test_files'])  0) + 0;
  
  if ($srcfiles  0) {
  require_once 'OS/Guess.php';


 CVS-web:

http://cvs.pld-linux.org/SOURCES/php-pear-PEAR-rpmvars.patch?r1=1.8r2=1.9f=u

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


SOURCES: php-pear-PEAR-template.spec - duplicate file nuked

2005-09-28 Thread glen
Author: glen Date: Wed Sep 28 22:06:55 2005 GMT
Module: SOURCES   Tag: HEAD
 Log message:
- duplicate file nuked

 Files affected:
SOURCES:
   php-pear-PEAR-template.spec (1.6 - 1.7) 

 Diffs:


Index: SOURCES/php-pear-PEAR-template.spec
diff -u SOURCES/php-pear-PEAR-template.spec:1.6 
SOURCES/php-pear-PEAR-template.spec:1.7
--- SOURCES/php-pear-PEAR-template.spec:1.6 Wed Sep 28 23:11:55 2005
+++ SOURCES/php-pear-PEAR-template.spec Thu Sep 29 00:06:50 2005
@@ -72,7 +72,7 @@
 
 %files
 %defattr(644,root,root,755)
-%doc install.log optional-packages.txt
+%doc install.log
 %if @have_optional_deps@
 %doc optional-packages.txt
 %endif
@@ -93,6 +93,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.7  2005/09/28 22:06:50  glen
+- duplicate file nuked
+
 Revision 1.6  2005/09/28 21:11:55  glen
 - conditionally _noautoreq
 


 CVS-web:

http://cvs.pld-linux.org/SOURCES/php-pear-PEAR-template.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: php-pear-PEAR-rpmvars.patch - include baseinstalldir if a...

2005-09-28 Thread glen
Author: glen Date: Wed Sep 28 22:07:36 2005 GMT
Module: SOURCES   Tag: HEAD
 Log message:
- include baseinstalldir if available when generating filelists

 Files affected:
SOURCES:
   php-pear-PEAR-rpmvars.patch (1.9 - 1.10) 

 Diffs:


Index: SOURCES/php-pear-PEAR-rpmvars.patch
diff -u SOURCES/php-pear-PEAR-rpmvars.patch:1.9 
SOURCES/php-pear-PEAR-rpmvars.patch:1.10
--- SOURCES/php-pear-PEAR-rpmvars.patch:1.9 Thu Sep 29 00:07:00 2005
+++ SOURCES/php-pear-PEAR-rpmvars.patch Thu Sep 29 00:07:31 2005
@@ -196,3 +196,15 @@
  $deps['required']['pearinstaller']['min'] . 
\n;
  }
  }
+--- .//usr/share/pear/PEAR/Command/Package.php 2005-09-29 00:58:11.0 
+0300
 /usr/share/pear/PEAR/Command/Package.php   2005-09-29 01:06:46.0 
+0300
+@@ -862,6 +862,9 @@
+ break;
+ }
+ $name = str_replace('\\', '/', $name);
++  if ($attr['baseinstalldir']) {
++  $name = $attr['baseinstalldir'] . '/' . 
$name;
++  }
+   if ($attr['role'] == 'test') {
+   $info['test_files'] .= 
$prefix/$name\n;
+ 


 CVS-web:

http://cvs.pld-linux.org/SOURCES/php-pear-PEAR-rpmvars.patch?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


SOURCES: php-pear-PEAR-rpmvars.patch - sometimes, installbasedir i...

2005-09-28 Thread glen
Author: glen Date: Wed Sep 28 22:13:20 2005 GMT
Module: SOURCES   Tag: HEAD
 Log message:
- sometimes, installbasedir is just root dir

 Files affected:
SOURCES:
   php-pear-PEAR-rpmvars.patch (1.10 - 1.11) 

 Diffs:


Index: SOURCES/php-pear-PEAR-rpmvars.patch
diff -u SOURCES/php-pear-PEAR-rpmvars.patch:1.10 
SOURCES/php-pear-PEAR-rpmvars.patch:1.11
--- SOURCES/php-pear-PEAR-rpmvars.patch:1.10Thu Sep 29 00:07:31 2005
+++ SOURCES/php-pear-PEAR-rpmvars.patch Thu Sep 29 00:13:15 2005
@@ -208,3 +208,16 @@
if ($attr['role'] == 'test') {
$info['test_files'] .= 
$prefix/$name\n;
  
+--- .//usr/share/pear/PEAR/Command/Package.php 2005-09-29 01:13:50.0 
+0300
 /usr/share/pear/PEAR/Command/Package.php   2005-09-29 01:13:35.0 
+0300
+@@ -862,8 +862,8 @@
+ break;
+ }
+ $name = str_replace('\\', '/', $name);
+-  if ($attr['baseinstalldir']) {
+-  $name = $attr['baseinstalldir'] . '/' . 
$name;
++  if (isset($attr['baseinstalldir']) and ($ttrim 
= trim($attr['baseinstalldir'], '/'))) {
++  $name = $ttrim . '/' . $name;
+   }
+   if ($attr['role'] == 'test') {
+   $info['test_files'] .= 
$prefix/$name\n;


 CVS-web:

http://cvs.pld-linux.org/SOURCES/php-pear-PEAR-rpmvars.patch?r1=1.10r2=1.11f=u

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


SPECS (DEVEL): pearize.sh (NEW) - helpful, but not much useful. us...

2005-09-28 Thread glen
Author: glen Date: Wed Sep 28 22:15:13 2005 GMT
Module: SPECS Tag: DEVEL
 Log message:
- helpful, but not much useful. use with PEAR from HEAD only

 Files affected:
SPECS:
   pearize.sh (NONE - 1.1.2.1)  (NEW)

 Diffs:


Index: SPECS/pearize.sh
diff -u /dev/null SPECS/pearize.sh:1.1.2.1
--- /dev/null   Thu Sep 29 00:15:13 2005
+++ SPECS/pearize.shThu Sep 29 00:15:07 2005
@@ -0,0 +1,19 @@
+#!/bin/sh
+# creates .spec using pear makerpm command.
+# requires tarball to exist in ../SOURCES.
+#
+set -e
+spec=$1
+tarball=$(rpm -q --qf '../SOURCES/%{name}-%{version}.tgz' --specfile $spec | 
sed -e 's,php-pear-,,')
+template=$(rpm -q --qf '%{name}-%{version}.spec' --specfile $spec)
+
+pear makerpm $tarball
+ls -l $template
+# remove false sectons
+sed -i -e '/^%if 0/,/%endif/d' $template
+# and reversed true sections
+sed -i -e '/^%if !1/,/%endif/d' $template
+# kill consequtive blank lines
+# http://info.ccone.at/INFO/Mail-Archives/procmail/Jul-2004/msg00132.html
+sed -i -e '/./,$ !d;/^$/N;/\n$/D' $template
+vim -o $spec $template

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


SPECS: pearize.sh (NEW) - brr, add to HEAD

2005-09-28 Thread glen
Author: glen Date: Wed Sep 28 22:15:58 2005 GMT
Module: SPECS Tag: HEAD
 Log message:
- brr, add to HEAD

 Files affected:
SPECS:
   pearize.sh (1.1 - 1.2)  (NEW)

 Diffs:


Index: SPECS/pearize.sh
diff -u /dev/null SPECS/pearize.sh:1.2
--- /dev/null   Thu Sep 29 00:15:58 2005
+++ SPECS/pearize.shThu Sep 29 00:15:53 2005
@@ -0,0 +1,19 @@
+#!/bin/sh
+# creates .spec using pear makerpm command.
+# requires tarball to exist in ../SOURCES.
+#
+set -e
+spec=$1
+tarball=$(rpm -q --qf '../SOURCES/%{name}-%{version}.tgz' --specfile $spec | 
sed -e 's,php-pear-,,')
+template=$(rpm -q --qf '%{name}-%{version}.spec' --specfile $spec)
+
+pear makerpm $tarball
+ls -l $template
+# remove false sectons
+sed -i -e '/^%if 0/,/%endif/d' $template
+# and reversed true sections
+sed -i -e '/^%if !1/,/%endif/d' $template
+# kill consequtive blank lines
+# http://info.ccone.at/INFO/Mail-Archives/procmail/Jul-2004/msg00132.html
+sed -i -e '/./,$ !d;/^$/N;/\n$/D' $template
+vim -o $spec $template

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


SPECS: php-pear-Net_GameServerQuery.spec - new pear packaging (fix...

2005-09-28 Thread glen
Author: glen Date: Wed Sep 28 22:21:49 2005 GMT
Module: SPECS Tag: HEAD
 Log message:
- new pear packaging (fixed %files); rel 4

 Files affected:
SPECS:
   php-pear-Net_GameServerQuery.spec (1.8 - 1.9) 

 Diffs:


Index: SPECS/php-pear-Net_GameServerQuery.spec
diff -u SPECS/php-pear-Net_GameServerQuery.spec:1.8 
SPECS/php-pear-Net_GameServerQuery.spec:1.9
--- SPECS/php-pear-Net_GameServerQuery.spec:1.8 Sun Dec  5 14:05:30 2004
+++ SPECS/php-pear-Net_GameServerQuery.spec Thu Sep 29 00:21:43 2005
@@ -9,7 +9,7 @@
 Summary(pl):   %{_pearname} - interfejs do odpytywanie serwera gier
 Name:  php-pear-%{_pearname}
 Version:   0.2.0
-Release:   3
+Release:   4
 License:   PHP 2.02
 Group: Development/Languages/PHP
 Source0:   http://pear.php.net/get/%{_pearname}-%{version}.tgz
@@ -36,21 +36,22 @@
 Ta klasa ma w PEAR status: %{_status}.
 
 %prep
-%setup -q -c
-%patch0 -p1
+%pear_package_setup
+cd ./%{php_pear_dir}/%{_class}
+%patch0 -p2
 
 %install
 rm -rf $RPM_BUILD_ROOT
-install -d $RPM_BUILD_ROOT%{php_pear_dir}/%{_class}/%{_subclass}
-
-install %{_pearname}-%{version}/*.php $RPM_BUILD_ROOT%{php_pear_dir}/%{_class}
-install %{_pearname}-%{version}/%{_subclass}/*.php 
$RPM_BUILD_ROOT%{php_pear_dir}/%{_class}/%{_subclass}
+install -d $RPM_BUILD_ROOT%{php_pear_dir}
+%pear_package_install
 
 %clean
 rm -rf $RPM_BUILD_ROOT
 
 %files
 %defattr(644,root,root,755)
+%doc install.log
+%{php_pear_dir}/.registry/*.reg
 %{php_pear_dir}/%{_class}/*.php
 %{php_pear_dir}/%{_class}/%{_subclass}
 
@@ -60,6 +61,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.9  2005/09/28 22:21:43  glen
+- new pear packaging (fixed %files); rel 4
+
 Revision 1.8  2004/12/05 13:05:30  adamg
 - add path_fix.patch (fix some inclusion issues)
 - release 3


 CVS-web:

http://cvs.pld-linux.org/SPECS/php-pear-Net_GameServerQuery.spec?r1=1.8r2=1.9f=u

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


SOURCES (DEVEL): php-pear-Net_GameServerQuery-path_fix.patch - und...

2005-09-28 Thread glen
Author: glen Date: Wed Sep 28 22:22:41 2005 GMT
Module: SOURCES   Tag: DEVEL
 Log message:
- undos now

 Files affected:
SOURCES:
   php-pear-Net_GameServerQuery-path_fix.patch (1.1 - 1.1.2.1) 

 Diffs:


Index: SOURCES/php-pear-Net_GameServerQuery-path_fix.patch
diff -u SOURCES/php-pear-Net_GameServerQuery-path_fix.patch:1.1 
SOURCES/php-pear-Net_GameServerQuery-path_fix.patch:1.1.2.1
--- SOURCES/php-pear-Net_GameServerQuery-path_fix.patch:1.1 Sun Dec  5 
14:05:10 2004
+++ SOURCES/php-pear-Net_GameServerQuery-path_fix.patch Thu Sep 29 00:22:36 2005
@@ -2,291 +2,291 @@
 --- 
php-pear-Net_GameServerQuery-0.2.0.orig/Net_GameServerQuery-0.2.0/GameServerQuery/Config.php
   2004-12-05 14:00:30.903001616 +0100
 +++ 
php-pear-Net_GameServerQuery-0.2.0/Net_GameServerQuery-0.2.0/GameServerQuery/Config.php
2004-12-05 14:01:44.188860472 +0100
 @@ -61,7 +61,7 @@
- public function __construct()
- {
- // Load the game config
--require 'Games.php';
-+require 'Net/GameServerQuery/Games.php';
- $this-_games   = $games;
- $this-_packets = $packets;
- $this-_normals = $normals;
+ public function __construct()
+ {
+ // Load the game config
+-require 'Games.php';
++require 'Net/GameServerQuery/Games.php';
+ $this-_games   = $games;
+ $this-_packets = $packets;
+ $this-_normals = $normals;
 diff -burN 
php-pear-Net_GameServerQuery-0.2.0.orig/Net_GameServerQuery-0.2.0/GameServerQuery/Protocol/Breed.php
 
php-pear-Net_GameServerQuery-0.2.0/Net_GameServerQuery-0.2.0/GameServerQuery/Protocol/Breed.php
 --- 
php-pear-Net_GameServerQuery-0.2.0.orig/Net_GameServerQuery-0.2.0/GameServerQuery/Protocol/Breed.php
   2004-12-05 14:00:30.912000248 +0100
 +++ 
php-pear-Net_GameServerQuery-0.2.0/Net_GameServerQuery-0.2.0/GameServerQuery/Protocol/Breed.php
2004-12-05 14:02:28.706092824 +0100
 @@ -19,7 +19,7 @@
- // $Id$
- 
- 
--require_once 'Net\GameServerQuery\Protocol.php';
-+require_once 'Net/GameServerQuery/Protocol.php';
- 
- 
- /**
+ // $Id$
+ 
+ 
+-require_once 'Net\GameServerQuery\Protocol.php';
++require_once 'Net/GameServerQuery/Protocol.php';
+ 
+ 
+ /**
 diff -burN 
php-pear-Net_GameServerQuery-0.2.0.orig/Net_GameServerQuery-0.2.0/GameServerQuery/Protocol/Doom3.php
 
php-pear-Net_GameServerQuery-0.2.0/Net_GameServerQuery-0.2.0/GameServerQuery/Protocol/Doom3.php
 --- 
php-pear-Net_GameServerQuery-0.2.0.orig/Net_GameServerQuery-0.2.0/GameServerQuery/Protocol/Doom3.php
   2004-12-05 14:00:30.908000856 +0100
 +++ 
php-pear-Net_GameServerQuery-0.2.0/Net_GameServerQuery-0.2.0/GameServerQuery/Protocol/Doom3.php
2004-12-05 14:02:28.709092368 +0100
 @@ -19,7 +19,7 @@
- // $Id$
- 
- 
--require_once 'Net\GameServerQuery\Protocol.php';
-+require_once 'Net/GameServerQuery/Protocol.php';
- 
- 
- /**
+ // $Id$
+ 
+ 
+-require_once 'Net\GameServerQuery\Protocol.php';
++require_once 'Net/GameServerQuery/Protocol.php';
+ 
+ 
+ /**
 diff -burN 
php-pear-Net_GameServerQuery-0.2.0.orig/Net_GameServerQuery-0.2.0/GameServerQuery/Protocol/FarCry.php
 
php-pear-Net_GameServerQuery-0.2.0/Net_GameServerQuery-0.2.0/GameServerQuery/Protocol/FarCry.php
 --- 
php-pear-Net_GameServerQuery-0.2.0.orig/Net_GameServerQuery-0.2.0/GameServerQuery/Protocol/FarCry.php
  2004-12-05 14:00:30.908000856 +0100
 +++ 
php-pear-Net_GameServerQuery-0.2.0/Net_GameServerQuery-0.2.0/GameServerQuery/Protocol/FarCry.php
   2004-12-05 14:02:28.713091760 +0100
 @@ -19,7 +19,7 @@
- // $Id$
- 
- 
--require_once 'Net\GameServerQuery\Protocol.php';
-+require_once 'Net/GameServerQuery/Protocol.php';
- 
- 
- /**
+ // $Id$
+ 
+ 
+-require_once 'Net\GameServerQuery\Protocol.php';
++require_once 'Net/GameServerQuery/Protocol.php';
+ 
+ 
+ /**
 diff -burN 
php-pear-Net_GameServerQuery-0.2.0.orig/Net_GameServerQuery-0.2.0/GameServerQuery/Protocol/Freelancer.php
 
php-pear-Net_GameServerQuery-0.2.0/Net_GameServerQuery-0.2.0/GameServerQuery/Protocol/Freelancer.php
 --- 
php-pear-Net_GameServerQuery-0.2.0.orig/Net_GameServerQuery-0.2.0/GameServerQuery/Protocol/Freelancer.php
  2004-12-05 14:00:30.91552 +0100
 +++ 
php-pear-Net_GameServerQuery-0.2.0/Net_GameServerQuery-0.2.0/GameServerQuery/Protocol/Freelancer.php
   2004-12-05 14:02:28.714091608 +0100
 @@ -19,7 +19,7 @@
- // $Id$
- 
- 
--require_once 'Net\GameServerQuery\Protocol.php';
-+require_once 'Net/GameServerQuery/Protocol.php';
- 
- 
- /**
+ // $Id$
+ 
+ 
+-require_once 'Net\GameServerQuery\Protocol.php';
++require_once 'Net/GameServerQuery/Protocol.php';
+ 
+ 
+ /**
 diff -burN 
php-pear-Net_GameServerQuery-0.2.0.orig/Net_GameServerQuery-0.2.0/GameServerQuery/Protocol/GameSpy04.php
 
php-pear-Net_GameServerQuery-0.2.0/Net_GameServerQuery-0.2.0/GameServerQuery/Protocol/GameSpy04.php
 --- 

SOURCES (DEVEL): php-pear-PHP_Beautifier-path_fix.patch - undos

2005-09-28 Thread glen
Author: glen Date: Wed Sep 28 22:23:27 2005 GMT
Module: SOURCES   Tag: DEVEL
 Log message:
- undos

 Files affected:
SOURCES:
   php-pear-PHP_Beautifier-path_fix.patch (1.2 - 1.2.2.1) 

 Diffs:


Index: SOURCES/php-pear-PHP_Beautifier-path_fix.patch
diff -u SOURCES/php-pear-PHP_Beautifier-path_fix.patch:1.2 
SOURCES/php-pear-PHP_Beautifier-path_fix.patch:1.2.2.1
--- SOURCES/php-pear-PHP_Beautifier-path_fix.patch:1.2  Mon Feb  7 15:30:34 2005
+++ SOURCES/php-pear-PHP_Beautifier-path_fix.patch  Thu Sep 29 00:23:22 2005
@@ -2,50 +2,50 @@
 --- a.orig/b/Beautifier/Batch/Output/DirectoryBz2.php  2005-02-07 
09:17:43.047075360 +0100
 +++ a/b/Beautifier/Batch/Output/DirectoryBz2.php   2005-02-07 
09:18:31.882651224 +0100
 @@ -23,7 +23,7 @@
- /**
- * Include PHP_Beautifier_Batch_DirectoryTar
- */
--require_once ('DirectoryTar.php');
-+require_once ('PHP/Beautifier/Batch/Output/DirectoryTar.php');
- /**
- * PHP_Beautifier_Batch_FilesGz
- *
+ /**
+ * Include PHP_Beautifier_Batch_DirectoryTar
+ */
+-require_once ('DirectoryTar.php');
++require_once ('PHP/Beautifier/Batch/Output/DirectoryTar.php');
+ /**
+ * PHP_Beautifier_Batch_FilesGz
+ *
 diff -burN a.orig/b/Beautifier/Batch/Output/DirectoryGz.php 
a/b/Beautifier/Batch/Output/DirectoryGz.php
 --- a.orig/b/Beautifier/Batch/Output/DirectoryGz.php   2005-02-07 
09:17:43.047075360 +0100
 +++ a/b/Beautifier/Batch/Output/DirectoryGz.php2005-02-07 
09:19:00.361321808 +0100
 @@ -23,7 +23,7 @@
- /**
- * Include PHP_Beautifier_Batch_DirectoryTar
- */
--require_once ('DirectoryTar.php');
-+require_once ('PHP/Beautifier/Batch/Output/DirectoryTar.php');
- /**
- * PHP_Beautifier_Batch_FilesGz
- *
+ /**
+ * Include PHP_Beautifier_Batch_DirectoryTar
+ */
+-require_once ('DirectoryTar.php');
++require_once ('PHP/Beautifier/Batch/Output/DirectoryTar.php');
+ /**
+ * PHP_Beautifier_Batch_FilesGz
+ *
 diff -burN a.orig/b/Beautifier/Batch/Output/FilesBz2.php 
a/b/Beautifier/Batch/Output/FilesBz2.php
 --- a.orig/b/Beautifier/Batch/Output/FilesBz2.php  2005-02-07 
09:17:43.048075208 +0100
 +++ a/b/Beautifier/Batch/Output/FilesBz2.php   2005-02-07 09:19:31.575576520 
+0100
 @@ -23,7 +23,7 @@
- /**
- * Include PHP_Beautifier_Batch_FilesGz
- */
--require_once 'FilesTar.php';
-+require_once 'PHP/Beautifier/Batch/Output/FilesTar.php';
- /**
- * Handle the batch process for one/multiple php files to one tar bzip2 
file
- *
+ /**
+ * Include PHP_Beautifier_Batch_FilesGz
+ */
+-require_once 'FilesTar.php';
++require_once 'PHP/Beautifier/Batch/Output/FilesTar.php';
+ /**
+ * Handle the batch process for one/multiple php files to one tar bzip2 
file
+ *
 diff -burN a.orig/b/Beautifier/Batch/Output/FilesGz.php 
a/b/Beautifier/Batch/Output/FilesGz.php
 --- a.orig/b/Beautifier/Batch/Output/FilesGz.php   2005-02-07 
09:17:43.048075208 +0100
 +++ a/b/Beautifier/Batch/Output/FilesGz.php2005-02-07 09:19:46.708276000 
+0100
 @@ -23,7 +23,7 @@
- /**
- * Include PHP_Beautifier_Batch_FilesGz
- */
--require_once 'FilesTar.php';
-+require_once 'PHP/Beautifier/Batch/Output/FilesTar.php';
- /**
- * Handle the batch process for one/multiple php files to one tar gzip file
- *
+ /**
+ * Include PHP_Beautifier_Batch_FilesGz
+ */
+-require_once 'FilesTar.php';
++require_once 'PHP/Beautifier/Batch/Output/FilesTar.php';
+ /**
+ * Handle the batch process for one/multiple php files to one tar gzip file
+ *
 diff -burN a.orig/b/Beautifier/Batch.php a/b/Beautifier/Batch.php
 --- a.orig/b/Beautifier/Batch.php  2005-02-07 09:17:43.051074752 +0100
 +++ a/b/Beautifier/Batch.php   2005-02-07 09:20:45.298368952 +0100
@@ -67,11 +67,11 @@
 --- a.orig/b/Beautifier/StreamWrapper.php  2005-02-07 09:17:43.053074448 
+0100
 +++ a/b/Beautifier/StreamWrapper.php   2005-02-07 09:21:05.335322872 +0100
 @@ -51,5 +51,5 @@
- function dir_rewinddir();
- function dir_closedir();
- }
--require_once('StreamWrapper/Tarz.php');
-+require_once('PHP/Beautifier/StreamWrapper/Tarz.php');
+ function dir_rewinddir();
+ function dir_closedir();
+ }
+-require_once('StreamWrapper/Tarz.php');
++require_once('PHP/Beautifier/StreamWrapper/Tarz.php');
  ?
 \ Brak znaku nowej linii na końcu pliku
 diff -burN a.orig/b/Beautifier.php a/b/Beautifier.php


 CVS-web:

http://cvs.pld-linux.org/SOURCES/php-pear-PHP_Beautifier-path_fix.patch?r1=1.2r2=1.2.2.1f=u

___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org

SOURCES: php-pear-Net_GameServerQuery-path_fix.patch - undos now

2005-09-28 Thread glen
Author: glen Date: Wed Sep 28 22:23:01 2005 GMT
Module: SOURCES   Tag: HEAD
 Log message:
- undos now

 Files affected:
SOURCES:
   php-pear-Net_GameServerQuery-path_fix.patch (1.1 - 1.2) 

 Diffs:


Index: SOURCES/php-pear-Net_GameServerQuery-path_fix.patch
diff -u SOURCES/php-pear-Net_GameServerQuery-path_fix.patch:1.1 
SOURCES/php-pear-Net_GameServerQuery-path_fix.patch:1.2
--- SOURCES/php-pear-Net_GameServerQuery-path_fix.patch:1.1 Sun Dec  5 
14:05:10 2004
+++ SOURCES/php-pear-Net_GameServerQuery-path_fix.patch Thu Sep 29 00:22:56 2005
@@ -2,291 +2,291 @@
 --- 
php-pear-Net_GameServerQuery-0.2.0.orig/Net_GameServerQuery-0.2.0/GameServerQuery/Config.php
   2004-12-05 14:00:30.903001616 +0100
 +++ 
php-pear-Net_GameServerQuery-0.2.0/Net_GameServerQuery-0.2.0/GameServerQuery/Config.php
2004-12-05 14:01:44.188860472 +0100
 @@ -61,7 +61,7 @@
- public function __construct()
- {
- // Load the game config
--require 'Games.php';
-+require 'Net/GameServerQuery/Games.php';
- $this-_games   = $games;
- $this-_packets = $packets;
- $this-_normals = $normals;
+ public function __construct()
+ {
+ // Load the game config
+-require 'Games.php';
++require 'Net/GameServerQuery/Games.php';
+ $this-_games   = $games;
+ $this-_packets = $packets;
+ $this-_normals = $normals;
 diff -burN 
php-pear-Net_GameServerQuery-0.2.0.orig/Net_GameServerQuery-0.2.0/GameServerQuery/Protocol/Breed.php
 
php-pear-Net_GameServerQuery-0.2.0/Net_GameServerQuery-0.2.0/GameServerQuery/Protocol/Breed.php
 --- 
php-pear-Net_GameServerQuery-0.2.0.orig/Net_GameServerQuery-0.2.0/GameServerQuery/Protocol/Breed.php
   2004-12-05 14:00:30.912000248 +0100
 +++ 
php-pear-Net_GameServerQuery-0.2.0/Net_GameServerQuery-0.2.0/GameServerQuery/Protocol/Breed.php
2004-12-05 14:02:28.706092824 +0100
 @@ -19,7 +19,7 @@
- // $Id$
- 
- 
--require_once 'Net\GameServerQuery\Protocol.php';
-+require_once 'Net/GameServerQuery/Protocol.php';
- 
- 
- /**
+ // $Id$
+ 
+ 
+-require_once 'Net\GameServerQuery\Protocol.php';
++require_once 'Net/GameServerQuery/Protocol.php';
+ 
+ 
+ /**
 diff -burN 
php-pear-Net_GameServerQuery-0.2.0.orig/Net_GameServerQuery-0.2.0/GameServerQuery/Protocol/Doom3.php
 
php-pear-Net_GameServerQuery-0.2.0/Net_GameServerQuery-0.2.0/GameServerQuery/Protocol/Doom3.php
 --- 
php-pear-Net_GameServerQuery-0.2.0.orig/Net_GameServerQuery-0.2.0/GameServerQuery/Protocol/Doom3.php
   2004-12-05 14:00:30.908000856 +0100
 +++ 
php-pear-Net_GameServerQuery-0.2.0/Net_GameServerQuery-0.2.0/GameServerQuery/Protocol/Doom3.php
2004-12-05 14:02:28.709092368 +0100
 @@ -19,7 +19,7 @@
- // $Id$
- 
- 
--require_once 'Net\GameServerQuery\Protocol.php';
-+require_once 'Net/GameServerQuery/Protocol.php';
- 
- 
- /**
+ // $Id$
+ 
+ 
+-require_once 'Net\GameServerQuery\Protocol.php';
++require_once 'Net/GameServerQuery/Protocol.php';
+ 
+ 
+ /**
 diff -burN 
php-pear-Net_GameServerQuery-0.2.0.orig/Net_GameServerQuery-0.2.0/GameServerQuery/Protocol/FarCry.php
 
php-pear-Net_GameServerQuery-0.2.0/Net_GameServerQuery-0.2.0/GameServerQuery/Protocol/FarCry.php
 --- 
php-pear-Net_GameServerQuery-0.2.0.orig/Net_GameServerQuery-0.2.0/GameServerQuery/Protocol/FarCry.php
  2004-12-05 14:00:30.908000856 +0100
 +++ 
php-pear-Net_GameServerQuery-0.2.0/Net_GameServerQuery-0.2.0/GameServerQuery/Protocol/FarCry.php
   2004-12-05 14:02:28.713091760 +0100
 @@ -19,7 +19,7 @@
- // $Id$
- 
- 
--require_once 'Net\GameServerQuery\Protocol.php';
-+require_once 'Net/GameServerQuery/Protocol.php';
- 
- 
- /**
+ // $Id$
+ 
+ 
+-require_once 'Net\GameServerQuery\Protocol.php';
++require_once 'Net/GameServerQuery/Protocol.php';
+ 
+ 
+ /**
 diff -burN 
php-pear-Net_GameServerQuery-0.2.0.orig/Net_GameServerQuery-0.2.0/GameServerQuery/Protocol/Freelancer.php
 
php-pear-Net_GameServerQuery-0.2.0/Net_GameServerQuery-0.2.0/GameServerQuery/Protocol/Freelancer.php
 --- 
php-pear-Net_GameServerQuery-0.2.0.orig/Net_GameServerQuery-0.2.0/GameServerQuery/Protocol/Freelancer.php
  2004-12-05 14:00:30.91552 +0100
 +++ 
php-pear-Net_GameServerQuery-0.2.0/Net_GameServerQuery-0.2.0/GameServerQuery/Protocol/Freelancer.php
   2004-12-05 14:02:28.714091608 +0100
 @@ -19,7 +19,7 @@
- // $Id$
- 
- 
--require_once 'Net\GameServerQuery\Protocol.php';
-+require_once 'Net/GameServerQuery/Protocol.php';
- 
- 
- /**
+ // $Id$
+ 
+ 
+-require_once 'Net\GameServerQuery\Protocol.php';
++require_once 'Net/GameServerQuery/Protocol.php';
+ 
+ 
+ /**
 diff -burN 
php-pear-Net_GameServerQuery-0.2.0.orig/Net_GameServerQuery-0.2.0/GameServerQuery/Protocol/GameSpy04.php
 
php-pear-Net_GameServerQuery-0.2.0/Net_GameServerQuery-0.2.0/GameServerQuery/Protocol/GameSpy04.php
 --- 

SOURCES: php-pear-PHP_Beautifier-path_fix.patch - undos

2005-09-28 Thread glen
Author: glen Date: Wed Sep 28 22:23:49 2005 GMT
Module: SOURCES   Tag: HEAD
 Log message:
- undos

 Files affected:
SOURCES:
   php-pear-PHP_Beautifier-path_fix.patch (1.2 - 1.3) 

 Diffs:


Index: SOURCES/php-pear-PHP_Beautifier-path_fix.patch
diff -u SOURCES/php-pear-PHP_Beautifier-path_fix.patch:1.2 
SOURCES/php-pear-PHP_Beautifier-path_fix.patch:1.3
--- SOURCES/php-pear-PHP_Beautifier-path_fix.patch:1.2  Mon Feb  7 15:30:34 2005
+++ SOURCES/php-pear-PHP_Beautifier-path_fix.patch  Thu Sep 29 00:23:44 2005
@@ -2,50 +2,50 @@
 --- a.orig/b/Beautifier/Batch/Output/DirectoryBz2.php  2005-02-07 
09:17:43.047075360 +0100
 +++ a/b/Beautifier/Batch/Output/DirectoryBz2.php   2005-02-07 
09:18:31.882651224 +0100
 @@ -23,7 +23,7 @@
- /**
- * Include PHP_Beautifier_Batch_DirectoryTar
- */
--require_once ('DirectoryTar.php');
-+require_once ('PHP/Beautifier/Batch/Output/DirectoryTar.php');
- /**
- * PHP_Beautifier_Batch_FilesGz
- *
+ /**
+ * Include PHP_Beautifier_Batch_DirectoryTar
+ */
+-require_once ('DirectoryTar.php');
++require_once ('PHP/Beautifier/Batch/Output/DirectoryTar.php');
+ /**
+ * PHP_Beautifier_Batch_FilesGz
+ *
 diff -burN a.orig/b/Beautifier/Batch/Output/DirectoryGz.php 
a/b/Beautifier/Batch/Output/DirectoryGz.php
 --- a.orig/b/Beautifier/Batch/Output/DirectoryGz.php   2005-02-07 
09:17:43.047075360 +0100
 +++ a/b/Beautifier/Batch/Output/DirectoryGz.php2005-02-07 
09:19:00.361321808 +0100
 @@ -23,7 +23,7 @@
- /**
- * Include PHP_Beautifier_Batch_DirectoryTar
- */
--require_once ('DirectoryTar.php');
-+require_once ('PHP/Beautifier/Batch/Output/DirectoryTar.php');
- /**
- * PHP_Beautifier_Batch_FilesGz
- *
+ /**
+ * Include PHP_Beautifier_Batch_DirectoryTar
+ */
+-require_once ('DirectoryTar.php');
++require_once ('PHP/Beautifier/Batch/Output/DirectoryTar.php');
+ /**
+ * PHP_Beautifier_Batch_FilesGz
+ *
 diff -burN a.orig/b/Beautifier/Batch/Output/FilesBz2.php 
a/b/Beautifier/Batch/Output/FilesBz2.php
 --- a.orig/b/Beautifier/Batch/Output/FilesBz2.php  2005-02-07 
09:17:43.048075208 +0100
 +++ a/b/Beautifier/Batch/Output/FilesBz2.php   2005-02-07 09:19:31.575576520 
+0100
 @@ -23,7 +23,7 @@
- /**
- * Include PHP_Beautifier_Batch_FilesGz
- */
--require_once 'FilesTar.php';
-+require_once 'PHP/Beautifier/Batch/Output/FilesTar.php';
- /**
- * Handle the batch process for one/multiple php files to one tar bzip2 
file
- *
+ /**
+ * Include PHP_Beautifier_Batch_FilesGz
+ */
+-require_once 'FilesTar.php';
++require_once 'PHP/Beautifier/Batch/Output/FilesTar.php';
+ /**
+ * Handle the batch process for one/multiple php files to one tar bzip2 
file
+ *
 diff -burN a.orig/b/Beautifier/Batch/Output/FilesGz.php 
a/b/Beautifier/Batch/Output/FilesGz.php
 --- a.orig/b/Beautifier/Batch/Output/FilesGz.php   2005-02-07 
09:17:43.048075208 +0100
 +++ a/b/Beautifier/Batch/Output/FilesGz.php2005-02-07 09:19:46.708276000 
+0100
 @@ -23,7 +23,7 @@
- /**
- * Include PHP_Beautifier_Batch_FilesGz
- */
--require_once 'FilesTar.php';
-+require_once 'PHP/Beautifier/Batch/Output/FilesTar.php';
- /**
- * Handle the batch process for one/multiple php files to one tar gzip file
- *
+ /**
+ * Include PHP_Beautifier_Batch_FilesGz
+ */
+-require_once 'FilesTar.php';
++require_once 'PHP/Beautifier/Batch/Output/FilesTar.php';
+ /**
+ * Handle the batch process for one/multiple php files to one tar gzip file
+ *
 diff -burN a.orig/b/Beautifier/Batch.php a/b/Beautifier/Batch.php
 --- a.orig/b/Beautifier/Batch.php  2005-02-07 09:17:43.051074752 +0100
 +++ a/b/Beautifier/Batch.php   2005-02-07 09:20:45.298368952 +0100
@@ -67,11 +67,11 @@
 --- a.orig/b/Beautifier/StreamWrapper.php  2005-02-07 09:17:43.053074448 
+0100
 +++ a/b/Beautifier/StreamWrapper.php   2005-02-07 09:21:05.335322872 +0100
 @@ -51,5 +51,5 @@
- function dir_rewinddir();
- function dir_closedir();
- }
--require_once('StreamWrapper/Tarz.php');
-+require_once('PHP/Beautifier/StreamWrapper/Tarz.php');
+ function dir_rewinddir();
+ function dir_closedir();
+ }
+-require_once('StreamWrapper/Tarz.php');
++require_once('PHP/Beautifier/StreamWrapper/Tarz.php');
  ?
 \ Brak znaku nowej linii na końcu pliku
 diff -burN a.orig/b/Beautifier.php a/b/Beautifier.php


 CVS-web:

http://cvs.pld-linux.org/SOURCES/php-pear-PHP_Beautifier-path_fix.patch?r1=1.2r2=1.3f=u

___
pld-cvs-commit mailing list
pld-cvs-commit@lists.pld-linux.org

SPECS: xine-ui.spec - rel 3 for libreadline.so.5

2005-09-28 Thread saq
Author: saq  Date: Wed Sep 28 22:44:22 2005 GMT
Module: SPECS Tag: HEAD
 Log message:
- rel 3 for libreadline.so.5

 Files affected:
SPECS:
   xine-ui.spec (1.78 - 1.79) 

 Diffs:


Index: SPECS/xine-ui.spec
diff -u SPECS/xine-ui.spec:1.78 SPECS/xine-ui.spec:1.79
--- SPECS/xine-ui.spec:1.78 Fri Sep 16 11:30:14 2005
+++ SPECS/xine-ui.spec  Thu Sep 29 00:44:15 2005
@@ -18,7 +18,7 @@
 Summary(zh_CN):Ňť¸öĂâˇŃľÄĘÓĆľ˛ĽˇĹĆ÷(˝çĂć)
 Name:  xine-ui
 Version:   0.99.4
-Release:   2
+Release:   3
 License:   GPL
 Group: X11/Applications/Multimedia
 Source0:   http://dl.sourceforge.net/xine/%{name}-%{version}.tar.gz
@@ -237,6 +237,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.79  2005/09/28 22:44:15  saq
+- rel 3 for libreadline.so.5
+
 Revision 1.78  2005/09/16 09:30:14  arekm
 - rel 2
 


 CVS-web:
http://cvs.pld-linux.org/SPECS/xine-ui.spec?r1=1.78r2=1.79f=u

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


SPECS: hugs98.spec - rel 3 for libreadline.so.5

2005-09-28 Thread saq
Author: saq  Date: Wed Sep 28 22:53:05 2005 GMT
Module: SPECS Tag: HEAD
 Log message:
- rel 3 for libreadline.so.5

 Files affected:
SPECS:
   hugs98.spec (1.22 - 1.23) 

 Diffs:


Index: SPECS/hugs98.spec
diff -u SPECS/hugs98.spec:1.22 SPECS/hugs98.spec:1.23
--- SPECS/hugs98.spec:1.22  Wed Aug 18 02:17:14 2004
+++ SPECS/hugs98.spec   Thu Sep 29 00:53:00 2005
@@ -3,7 +3,7 @@
 Summary(pl):   Hugs - interpreter Haskella
 Name:  hugs98
 Version:   Nov2003
-Release:   2
+Release:   3
 Epoch: 2
 License:   BSD-like
 Group: Development/Languages
@@ -81,6 +81,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.23  2005/09/28 22:53:00  saq
+- rel 3 for libreadline.so.5
+
 Revision 1.22  2004/08/18 00:17:14  havner
 - rel 2
 


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

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


SPECS: pearize.sh - adjust .spec

2005-09-28 Thread glen
Author: glen Date: Wed Sep 28 22:55:55 2005 GMT
Module: SPECS Tag: HEAD
 Log message:
- adjust .spec

 Files affected:
SPECS:
   pearize.sh (1.2 - 1.3) 

 Diffs:


Index: SPECS/pearize.sh
diff -u SPECS/pearize.sh:1.2 SPECS/pearize.sh:1.3
--- SPECS/pearize.sh:1.2Thu Sep 29 00:15:53 2005
+++ SPECS/pearize.shThu Sep 29 00:55:50 2005
@@ -9,6 +9,8 @@
 
 pear makerpm $tarball
 ls -l $template
+
+# adjust template
 # remove false sectons
 sed -i -e '/^%if 0/,/%endif/d' $template
 # and reversed true sections
@@ -16,4 +18,36 @@
 # kill consequtive blank lines
 # http://info.ccone.at/INFO/Mail-Archives/procmail/Jul-2004/msg00132.html
 sed -i -e '/./,$ !d;/^$/N;/\n$/D' $template
+
+#rpmbuild -bb $spec
+
+# prepare original spec
+sed -i -e '
+# simple changes
+s/^%setup -q -c/%pear_package_setup/
+/^BuildRequires:/s/rpm-php-pearprov = 4.0.2-98/rpm-php-pearprov = 4.4.2-11/g
+s#^%doc %{_pearname}-%{version}#%doc docs/%{_pearname}#g
+
+# make new %install section
+/^%install$/,/^%clean$/{
+/^%\(install\|clean\)/p
+
+/^rm -rf/{p
+a\
+%pear_package_install\
+
+}
+
+d
+}
+
+' $spec
+
+doc=$(grep '^%doc install' $template)
+sed -i -e 
+/%defattr(644,root,root,755)/a\
+$doc
+ $spec
+
 vim -o $spec $template
+exit 1


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

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


SPECS: php-pear-Net_Geo.spec - new pear packaging

2005-09-28 Thread glen
Author: glen Date: Wed Sep 28 23:02:05 2005 GMT
Module: SPECS Tag: HEAD
 Log message:
- new pear packaging

 Files affected:
SPECS:
   php-pear-Net_Geo.spec (1.14 - 1.15) 

 Diffs:


Index: SPECS/php-pear-Net_Geo.spec
diff -u SPECS/php-pear-Net_Geo.spec:1.14 SPECS/php-pear-Net_Geo.spec:1.15
--- SPECS/php-pear-Net_Geo.spec:1.14Sat Dec  4 14:20:48 2004
+++ SPECS/php-pear-Net_Geo.spec Thu Sep 29 01:01:57 2005
@@ -9,7 +9,7 @@
 Summary(pl):   %{_pearname} - położenie geograficzne na podstawie adresu 
internetowego
 Name:  php-pear-%{_pearname}
 Version:   1.0
-Release:   4
+Release:   4.1
 License:   PHP 2.02
 Group: Development/Languages/PHP
 Source0:   http://pear.php.net/get/%{_pearname}-%{version}.tgz
@@ -34,20 +34,21 @@
 Ta klasa ma w PEAR status: %{_status}.
 
 %prep
-%setup -q -c
+%pear_package_setup
 
 %install
 rm -rf $RPM_BUILD_ROOT
-install -d $RPM_BUILD_ROOT%{php_pear_dir}/%{_class}
-
-install %{_pearname}-%{version}/*.php $RPM_BUILD_ROOT%{php_pear_dir}/%{_class}
+install -d $RPM_BUILD_ROOT%{php_pear_dir}
+%pear_package_install
 
 %clean
 rm -rf $RPM_BUILD_ROOT
 
 %files
 %defattr(644,root,root,755)
-%doc %{_pearname}-%{version}/README
+%doc install.log
+%doc docs/%{_pearname}/README
+%{php_pear_dir}/.registry/*.reg
 %{php_pear_dir}/%{_class}/*.php
 
 %definedate%(echo `LC_ALL=C date +%a %b %d %Y`)
@@ -56,6 +57,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.15  2005/09/28 23:01:57  glen
+- new pear packaging
+
 Revision 1.14  2004/12/04 13:20:48  adamg
 - rebuild with new PEAR provides/requires scripts
 - release 4


 CVS-web:
http://cvs.pld-linux.org/SPECS/php-pear-Net_Geo.spec?r1=1.14r2=1.15f=u

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


SPECS: php-pear-Net_HL7.spec - new pear packaging

2005-09-28 Thread glen
Author: glen Date: Wed Sep 28 23:02:18 2005 GMT
Module: SPECS Tag: HEAD
 Log message:
- new pear packaging

 Files affected:
SPECS:
   php-pear-Net_HL7.spec (1.3 - 1.4) 

 Diffs:


Index: SPECS/php-pear-Net_HL7.spec
diff -u SPECS/php-pear-Net_HL7.spec:1.3 SPECS/php-pear-Net_HL7.spec:1.4
--- SPECS/php-pear-Net_HL7.spec:1.3 Sat Dec  4 14:21:59 2004
+++ SPECS/php-pear-Net_HL7.spec Thu Sep 29 01:02:13 2005
@@ -9,7 +9,7 @@
 Summary(pl):   %{_pearname} - API wysyłania wiadomości HL7
 Name:  php-pear-%{_pearname}
 Version:   0.1.0
-Release:   2
+Release:   2.1
 License:   PHP 2.02
 Group: Development/Languages/PHP
 Source0:   http://pear.php.net/get/%{_pearname}-%{version}.tgz
@@ -46,33 +46,51 @@
 
 Ta klasa ma w PEAR status: %{_status}.
 
+%package tests
+Summary:   Tests for PEAR::%{_pearname}
+Summary(pl):   Testy dla PEAR::%{_pearname}
+Group: Development
+Requires:  %{name} = %{epoch}:%{version}-%{release}
+AutoReq:   no
+
+%description tests
+Tests for PEAR::%{_pearname}.
+
+%description tests -l pl
+Testy dla PEAR::%{_pearname}.
+
 %prep
-%setup -q -c
+%pear_package_setup
 
 %install
 rm -rf $RPM_BUILD_ROOT
-install -d 
$RPM_BUILD_ROOT%{php_pear_dir}/%{_class}/%{_subclass}/{Messages,Segments}
-
-install %{_pearname}-%{version}/%{_class}/*.php 
$RPM_BUILD_ROOT%{php_pear_dir}/%{_class}
-install %{_pearname}-%{version}/%{_class}/%{_subclass}/*.php 
$RPM_BUILD_ROOT%{php_pear_dir}/%{_class}/%{_subclass}
-install %{_pearname}-%{version}/%{_class}/%{_subclass}/Messages/*.php 
$RPM_BUILD_ROOT%{php_pear_dir}/%{_class}/%{_subclass}/Messages
-install %{_pearname}-%{version}/%{_class}/%{_subclass}/Segments/*.php 
$RPM_BUILD_ROOT%{php_pear_dir}/%{_class}/%{_subclass}/Segments
+install -d $RPM_BUILD_ROOT%{php_pear_dir}
+%pear_package_install
 
 %clean
 rm -rf $RPM_BUILD_ROOT
 
 %files
 %defattr(644,root,root,755)
-%doc %{_pearname}-%{version}/{docs,tests}
+%doc install.log
+%doc docs/%{_pearname}/docs/README
+%{php_pear_dir}/.registry/*.reg
 %{php_pear_dir}/%{_class}/*.php
 %{php_pear_dir}/%{_class}/%{_subclass}
 
+%files tests
+%defattr(644,root,root,755)
+%{php_pear_dir}/tests/*
+
 %define date   %(echo `LC_ALL=C date +%a %b %d %Y`)
 %changelog
 * %{date} PLD Team [EMAIL PROTECTED]
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.4  2005/09/28 23:02:13  glen
+- new pear packaging
+
 Revision 1.3  2004/12/04 13:21:59  adamg
 - rebuild with new PEAR provides/requires scripts
 - release 2


 CVS-web:
http://cvs.pld-linux.org/SPECS/php-pear-Net_HL7.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: pearize.sh - more magic

2005-09-28 Thread glen
Author: glen Date: Wed Sep 28 23:03:53 2005 GMT
Module: SPECS Tag: HEAD
 Log message:
- more magic

 Files affected:
SPECS:
   pearize.sh (1.3 - 1.4) 

 Diffs:


Index: SPECS/pearize.sh
diff -u SPECS/pearize.sh:1.3 SPECS/pearize.sh:1.4
--- SPECS/pearize.sh:1.3Thu Sep 29 00:55:50 2005
+++ SPECS/pearize.shThu Sep 29 01:03:48 2005
@@ -26,7 +26,7 @@
 # simple changes
 s/^%setup -q -c/%pear_package_setup/
 /^BuildRequires:/s/rpm-php-pearprov = 4.0.2-98/rpm-php-pearprov = 4.4.2-11/g
-s#^%doc %{_pearname}-%{version}#%doc docs/%{_pearname}#g
+/^%doc %{_pearname}-%{version}/d
 
 # make new %install section
 /^%install$/,/^%clean$/{
@@ -43,11 +43,23 @@
 
 ' $spec
 
-doc=$(grep '^%doc install' $template)
+instdoc=$(grep '^%doc install' $template)
 sed -i -e 
 /%defattr(644,root,root,755)/a\
-$doc
+$instdoc
  $spec
 
+doc=$(grep '^%doc docs/%{_pearname}/' $template)
+if [ $doc ]; then
+sed -i -e '/^%doc/a\
+%doc docs/%{_pearname}/*
+' $spec
+fi
+
+sed -i -e '/^%{php_pear_dir}/i\
+%{php_pear_dir}/.registry/*.reg
+' $spec
+
 vim -o $spec $template
+
 exit 1


 CVS-web:
http://cvs.pld-linux.org/SPECS/pearize.sh?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: pearize.sh - add .registry

2005-09-28 Thread glen
Author: glen Date: Wed Sep 28 23:29:19 2005 GMT
Module: SPECS Tag: HEAD
 Log message:
- add .registry

 Files affected:
SPECS:
   pearize.sh (1.4 - 1.5) 

 Diffs:


Index: SPECS/pearize.sh
diff -u SPECS/pearize.sh:1.4 SPECS/pearize.sh:1.5
--- SPECS/pearize.sh:1.4Thu Sep 29 01:03:48 2005
+++ SPECS/pearize.shThu Sep 29 01:29:13 2005
@@ -8,7 +8,7 @@
 template=$(rpm -q --qf '%{name}-%{version}.spec' --specfile $spec)
 
 pear makerpm $tarball
-ls -l $template
+ls -l $spec $template
 
 # adjust template
 # remove false sectons
@@ -43,23 +43,24 @@
 
 ' $spec
 
-instdoc=$(grep '^%doc install' $template)
+instdoc=$(grep '^%doc install' $template || :)
 sed -i -e 
 /%defattr(644,root,root,755)/a\
 $instdoc
  $spec
 
-doc=$(grep '^%doc docs/%{_pearname}/' $template)
+doc=$(grep '^%doc docs/%{_pearname}/' $template || :)
 if [ $doc ]; then
 sed -i -e '/^%doc/a\
 %doc docs/%{_pearname}/*
 ' $spec
 fi
 
-sed -i -e '/^%{php_pear_dir}/i\
-%{php_pear_dir}/.registry/*.reg
+perl -pi -e '
+   if (/^%{php_pear_dir}/  !$done) {
+   print %{php_pear_dir}/.registry/*.reg\n;
+   $done = 1;
+   }
 ' $spec
 
 vim -o $spec $template
-
-exit 1


 CVS-web:
http://cvs.pld-linux.org/SPECS/pearize.sh?r1=1.4r2=1.5f=u

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


SPECS: php-pear-Net_IDNA.spec - new pear packaging

2005-09-28 Thread glen
Author: glen Date: Wed Sep 28 23:36:05 2005 GMT
Module: SPECS Tag: HEAD
 Log message:
- new pear packaging

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

 Diffs:


Index: SPECS/php-pear-Net_IDNA.spec
diff -u SPECS/php-pear-Net_IDNA.spec:1.7 SPECS/php-pear-Net_IDNA.spec:1.8
--- SPECS/php-pear-Net_IDNA.spec:1.7Sun Aug 21 20:06:53 2005
+++ SPECS/php-pear-Net_IDNA.specThu Sep 29 01:35:59 2005
@@ -9,13 +9,13 @@
 Summary(pl):   %{_pearname} - kodowanie i dekodowanie punycode
 Name:  php-pear-%{_pearname}
 Version:   0.7.1
-Release:   1
+Release:   1.1
 License:   PHP 2.02
 Group: Development/Languages/PHP
 Source0:   http://pear.php.net/get/%{_pearname}-%{version}.tgz
 # Source0-md5: 9997c34fd19bb2da79cbc1ef24b6b1a9
 URL:   http://pear.php.net/package/Net_IDNA/
-BuildRequires: rpm-php-pearprov = 4.0.2-98
+BuildRequires: rpm-php-pearprov = 4.4.2-11
 Requires:  php-pear
 BuildArch: noarch
 BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
@@ -31,31 +31,50 @@
 
 Ta klasa ma w PEAR status: %{_status}.
 
+%package tests
+Summary:   Tests for PEAR::%{_pearname}
+Summary(pl):   Testy dla PEAR::%{_pearname}
+Group: Development
+Requires:  %{name} = %{epoch}:%{version}-%{release}
+AutoReq:   no
+
+%description tests
+Tests for PEAR::%{_pearname}.
+
+%description tests -l pl
+Testy dla PEAR::%{_pearname}.
+
 %prep
-%setup -q -c
+%pear_package_setup
 
 %install
 rm -rf $RPM_BUILD_ROOT
-install -d $RPM_BUILD_ROOT%{php_pear_dir}/%{_class}/%{_subclass}
-
-install %{_pearname}-%{version}/*.php $RPM_BUILD_ROOT%{php_pear_dir}/%{_class}
-install %{_pearname}-%{version}/%{_subclass}/*.php 
$RPM_BUILD_ROOT%{php_pear_dir}/%{_class}/%{_subclass}
+install -d $RPM_BUILD_ROOT%{php_pear_dir}
+%pear_package_install
 
 %clean
 rm -rf $RPM_BUILD_ROOT
 
 %files
 %defattr(644,root,root,755)
-%doc %{_pearname}-%{version}/test
+%doc install.log
+%{php_pear_dir}/.registry/*.reg
 %{php_pear_dir}/%{_class}/*.php
 %{php_pear_dir}/%{_class}/%{_subclass}
 
+%files tests
+%defattr(644,root,root,755)
+%{php_pear_dir}/tests/*
+
 %define date   %(echo `LC_ALL=C date +%a %b %d %Y`)
 %changelog
 * %{date} PLD Team [EMAIL PROTECTED]
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.8  2005/09/28 23:35:59  glen
+- new pear packaging
+
 Revision 1.7  2005/08/21 18:06:53  adamg
 - updated to 0.7.1
 


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


SPECS: pearize.sh - include tests package, if available

2005-09-28 Thread glen
Author: glen Date: Wed Sep 28 23:36:52 2005 GMT
Module: SPECS Tag: HEAD
 Log message:
- include tests package, if available

 Files affected:
SPECS:
   pearize.sh (1.5 - 1.6) 

 Diffs:


Index: SPECS/pearize.sh
diff -u SPECS/pearize.sh:1.5 SPECS/pearize.sh:1.6
--- SPECS/pearize.sh:1.5Thu Sep 29 01:29:13 2005
+++ SPECS/pearize.shThu Sep 29 01:36:47 2005
@@ -7,6 +7,9 @@
 tarball=$(rpm -q --qf '../SOURCES/%{name}-%{version}.tgz' --specfile $spec | 
sed -e 's,php-pear-,,')
 template=$(rpm -q --qf '%{name}-%{version}.spec' --specfile $spec)
 
+if [ ! -f $tarball ]; then
+   ./builder -g $spec
+fi
 pear makerpm $tarball
 ls -l $spec $template
 
@@ -34,6 +37,7 @@
 
 /^rm -rf/{p
 a\
+install -d $RPM_BUILD_ROOT%{php_pear_dir}\
 %pear_package_install\
 
 }
@@ -62,5 +66,34 @@
$done = 1;
}
 ' $spec
+
+if grep -q '^%files tests' $template; then
+   sed -i -e '
+/^%define date/{
+i\
+%files tests\
+%defattr(644,root,root,755)\
+%{php_pear_dir}/tests/*\
+
+}
+
+/^%prep/{
+i\
+%package tests\
+Summary:   Tests for PEAR::%{_pearname}\
+Summary(pl):   Testy dla PEAR::%{_pearname}\
+Group: Development\
+Requires:  %{name} = %{epoch}:%{version}-%{release}\
+AutoReq:   no\
+\
+%description tests\
+Tests for PEAR::%{_pearname}.\
+\
+%description tests -l pl\
+Testy dla PEAR::%{_pearname}.\
+
+}
+' $spec
+fi
 
 vim -o $spec $template


 CVS-web:
http://cvs.pld-linux.org/SPECS/pearize.sh?r1=1.5r2=1.6f=u

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


SPECS: pearize.sh - build rpm before conversion for urpmdiff

2005-09-28 Thread glen
Author: glen Date: Wed Sep 28 23:39:05 2005 GMT
Module: SPECS Tag: HEAD
 Log message:
- build rpm before conversion for urpmdiff

 Files affected:
SPECS:
   pearize.sh (1.6 - 1.7) 

 Diffs:


Index: SPECS/pearize.sh
diff -u SPECS/pearize.sh:1.6 SPECS/pearize.sh:1.7
--- SPECS/pearize.sh:1.6Thu Sep 29 01:36:47 2005
+++ SPECS/pearize.shThu Sep 29 01:39:00 2005
@@ -22,7 +22,10 @@
 # http://info.ccone.at/INFO/Mail-Archives/procmail/Jul-2004/msg00132.html
 sed -i -e '/./,$ !d;/^$/N;/\n$/D' $template
 
-#rpmbuild -bb $spec
+rpm=$(rpm -q --qf '../RPMS/%{name}-%{version}.noarch.rpm' --specfile $spec)
+if [ ! -f $rpm ]; then
+   rpmbuild -bb $spec
+fi
 
 # prepare original spec
 sed -i -e '


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


SPECS: php-pear-Net_LDAP.spec - new pear packaging; fixed license; ...

2005-09-28 Thread glen
Author: glen Date: Wed Sep 28 23:47:38 2005 GMT
Module: SPECS Tag: HEAD
 Log message:
- new pear packaging; fixed license; rel 2

 Files affected:
SPECS:
   php-pear-Net_LDAP.spec (1.17 - 1.18) 

 Diffs:


Index: SPECS/php-pear-Net_LDAP.spec
diff -u SPECS/php-pear-Net_LDAP.spec:1.17 SPECS/php-pear-Net_LDAP.spec:1.18
--- SPECS/php-pear-Net_LDAP.spec:1.17   Sun Mar 27 14:55:17 2005
+++ SPECS/php-pear-Net_LDAP.specThu Sep 29 01:47:33 2005
@@ -9,14 +9,14 @@
 Summary(pl):   %{_pearname} - obiektowy interfejs do przeszukiwania i 
modyfikowania wpisów LDAP
 Name:  php-pear-%{_pearname}
 Version:   0.6.6
-Release:   1
-License:   PHP 2.02
+Release:   2
+License:   LGPL
 Group: Development/Languages/PHP
 Source0:   http://pear.php.net/get/%{_pearname}-%{version}.tgz
 # Source0-md5: d19f11c671122d0ff30928d86a868096
 Patch0:%{name}-path_fix.patch
 URL:   http://pear.php.net/package/Net_LDAP/
-BuildRequires: rpm-php-pearprov = 4.0.2-98
+BuildRequires: rpm-php-pearprov = 4.4.2-11
 Requires:  php-pear
 BuildArch: noarch
 BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
@@ -43,32 +43,60 @@
 
 Ta klasa ma w PEAR status: %{_status}.
 
+%package tests
+Summary:   Tests for PEAR::%{_pearname}
+Summary(pl):   Testy dla PEAR::%{_pearname}
+Group: Development
+Requires:  %{name} = %{epoch}:%{version}-%{release}
+AutoReq:   no
+
+%description tests
+Tests for PEAR::%{_pearname}.
+
+%description tests -l pl
+Testy dla PEAR::%{_pearname}.
+
 %prep
-%setup -q -c
-%patch0 -p1
+%pear_package_setup
+
+rm -f docs/%{_pearname}/LICENSE # GPL V2.1
+
+install -d ./%{php_pear_dir}/tests/%{_pearname}
+mv docs/%{_pearname}/tests/* ./%{php_pear_dir}/tests/%{_pearname}
+rmdir docs/%{_pearname}/tests
+
+cd ./%{php_pear_dir}/%{_class}
+%patch0 -p2
 
 %install
 rm -rf $RPM_BUILD_ROOT
-install -d $RPM_BUILD_ROOT%{php_pear_dir}/%{_class}/%{_subclass}
-
-install %{_pearname}-%{version}/*.php $RPM_BUILD_ROOT%{php_pear_dir}/%{_class}
-install %{_pearname}-%{version}/%{_subclass}/*.php 
$RPM_BUILD_ROOT%{php_pear_dir}/%{_class}/%{_subclass}
+install -d $RPM_BUILD_ROOT%{php_pear_dir}
+%pear_package_install
 
 %clean
 rm -rf $RPM_BUILD_ROOT
 
 %files
 %defattr(644,root,root,755)
-%doc %{_pearname}-%{version}/doc
+%doc install.log
+%doc docs/%{_pearname}/*
+%{php_pear_dir}/.registry/*.reg
 %{php_pear_dir}/%{_class}/*.php
 %{php_pear_dir}/%{_class}/%{_subclass}
 
+%files tests
+%defattr(644,root,root,755)
+%{php_pear_dir}/tests/*
+
 %definedate%(echo `LC_ALL=C date +%a %b %d %Y`)
 %changelog
 * %{date} PLD Team [EMAIL PROTECTED]
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.18  2005/09/28 23:47:33  glen
+- new pear packaging; fixed license; rel 2
+
 Revision 1.17  2005/03/27 12:55:17  adamg
 - updated to 0.6.6
 


 CVS-web:
http://cvs.pld-linux.org/SPECS/php-pear-Net_LDAP.spec?r1=1.17r2=1.18f=u

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


SPECS: template-php-pear.spec - more correction samples

2005-09-28 Thread glen
Author: glen Date: Wed Sep 28 23:49:50 2005 GMT
Module: SPECS Tag: HEAD
 Log message:
- more correction samples

 Files affected:
SPECS:
   template-php-pear.spec (1.16 - 1.17) 

 Diffs:


Index: SPECS/template-php-pear.spec
diff -u SPECS/template-php-pear.spec:1.16 SPECS/template-php-pear.spec:1.17
--- SPECS/template-php-pear.spec:1.16   Wed Sep 28 23:34:25 2005
+++ SPECS/template-php-pear.specThu Sep 29 01:49:45 2005
@@ -57,6 +57,9 @@
 %prep
 %pear_package_setup
 
+install -d ./%{php_pear_dir}/tests/%{_pearname}
+mv docs/%{_pearname}/tests/* ./%{php_pear_dir}/tests/%{_pearname}
+
 install -d docs/%{_pearname}/examples
 mv ./%{php_pear_dir}/%{_class}/examples/* docs/%{_pearname}/examples
 
@@ -95,6 +98,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.17  2005/09/28 23:49:45  glen
+- more correction samples
+
 Revision 1.16  2005/09/28 21:34:25  glen
 - add note about pear makerpm
 


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

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


SPECS: php-pear-Net_IPv4.spec, php-pear-Net_IPv6.spec, php-pear-Ne...

2005-09-28 Thread glen
Author: glen Date: Wed Sep 28 23:50:42 2005 GMT
Module: SPECS Tag: HEAD
 Log message:
- new pear packaging

 Files affected:
SPECS:
   php-pear-Net_IPv4.spec (1.13 - 1.14) , php-pear-Net_IPv6.spec (1.10 - 
1.11) , php-pear-Net_IRC.spec (1.17 - 1.18) , php-pear-Net_Ident.spec (1.12 - 
1.13) 

 Diffs:


Index: SPECS/php-pear-Net_IPv4.spec
diff -u SPECS/php-pear-Net_IPv4.spec:1.13 SPECS/php-pear-Net_IPv4.spec:1.14
--- SPECS/php-pear-Net_IPv4.spec:1.13   Sat Dec  4 14:21:59 2004
+++ SPECS/php-pear-Net_IPv4.specThu Sep 29 01:50:37 2005
@@ -9,13 +9,13 @@
 Summary(pl):   %{_pearname} - obliczanie i kontrola adresów sieciowych IPv4
 Name:  php-pear-%{_pearname}
 Version:   1.2
-Release:   2
+Release:   2.1
 License:   PHP 2.0
 Group: Development/Languages/PHP
 Source0:   http://pear.php.net/get/%{_pearname}-%{version}.tgz
 # Source0-md5: a780053231ebc6c8efa4040ca5ecaaa8
 URL:   http://pear.php.net/package/Net_IPv4/
-BuildRequires: rpm-php-pearprov = 4.0.2-98
+BuildRequires: rpm-php-pearprov = 4.4.2-11
 Requires:  php-pear
 BuildArch: noarch
 BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
@@ -34,19 +34,20 @@
 Ta klasa ma w PEAR status: %{_status}.
 
 %prep
-%setup -q -c
+%pear_package_setup
 
 %install
 rm -rf $RPM_BUILD_ROOT
-install -d $RPM_BUILD_ROOT%{php_pear_dir}/%{_class}
-
-install %{_pearname}-%{version}/*.php $RPM_BUILD_ROOT%{php_pear_dir}/%{_class}
+install -d $RPM_BUILD_ROOT%{php_pear_dir}
+%pear_package_install
 
 %clean
 rm -rf $RPM_BUILD_ROOT
 
 %files
 %defattr(644,root,root,755)
+%doc install.log
+%{php_pear_dir}/.registry/*.reg
 %{php_pear_dir}/%{_class}/*.php
 
 %definedate%(echo `LC_ALL=C date +%a %b %d %Y`)
@@ -55,6 +56,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.14  2005/09/28 23:50:37  glen
+- new pear packaging
+
 Revision 1.13  2004/12/04 13:21:59  adamg
 - rebuild with new PEAR provides/requires scripts
 - release 2


Index: SPECS/php-pear-Net_IPv6.spec
diff -u SPECS/php-pear-Net_IPv6.spec:1.10 SPECS/php-pear-Net_IPv6.spec:1.11
--- SPECS/php-pear-Net_IPv6.spec:1.10   Fri Sep  2 08:49:43 2005
+++ SPECS/php-pear-Net_IPv6.specThu Sep 29 01:50:37 2005
@@ -9,13 +9,13 @@
 Summary(pl):   %{_pearname} - sprawdzanie poprawności adresów IPv6
 Name:  php-pear-%{_pearname}
 Version:   1.0.5
-Release:   1
+Release:   1.1
 License:   PHP 2.02
 Group: Development/Languages/PHP
 Source0:   http://pear.php.net/get/%{_pearname}-%{version}.tgz
 # Source0-md5: 5a16fd9ae92ea0e20cd74c31103130b1
 URL:   http://pear.php.net/package/Net_IPv6/
-BuildRequires: rpm-php-pearprov = 4.0.2-98
+BuildRequires: rpm-php-pearprov = 4.4.2-11
 Requires:  php-pear
 BuildArch: noarch
 BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
@@ -37,19 +37,20 @@
 Ta klasa ma w PEAR status: %{_status}.
 
 %prep
-%setup -q -c
+%pear_package_setup
 
 %install
 rm -rf $RPM_BUILD_ROOT
-install -d $RPM_BUILD_ROOT%{php_pear_dir}/%{_class}
-
-install %{_pearname}-%{version}/*.php $RPM_BUILD_ROOT%{php_pear_dir}/%{_class}
+install -d $RPM_BUILD_ROOT%{php_pear_dir}
+%pear_package_install
 
 %clean
 rm -rf $RPM_BUILD_ROOT
 
 %files
 %defattr(644,root,root,755)
+%doc install.log
+%{php_pear_dir}/.registry/*.reg
 %{php_pear_dir}/%{_class}/*.php
 
 %definedate%(echo `LC_ALL=C date +%a %b %d %Y`)
@@ -58,6 +59,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.11  2005/09/28 23:50:37  glen
+- new pear packaging
+
 Revision 1.10  2005/09/02 06:49:43  adamg
 - updated to 1.0.5
 


Index: SPECS/php-pear-Net_IRC.spec
diff -u SPECS/php-pear-Net_IRC.spec:1.17 SPECS/php-pear-Net_IRC.spec:1.18
--- SPECS/php-pear-Net_IRC.spec:1.17Sat Dec  4 14:21:59 2004
+++ SPECS/php-pear-Net_IRC.spec Thu Sep 29 01:50:37 2005
@@ -9,13 +9,13 @@
 Summary(pl):   %{_pearname} - klasa klienta IRC
 Name:  php-pear-%{_pearname}
 Version:   0.0.7
-Release:   2
+Release:   2.1
 License:   PHP 2.02
 Group: Development/Languages/PHP
 Source0:   http://pear.php.net/get/%{_pearname}-%{version}.tgz
 # Source0-md5: 5989ab3973044b0a330565b275667dc8
 URL:   http://pear.php.net/package/Net_IRC/
-BuildRequires: rpm-php-pearprov = 4.0.2-98
+BuildRequires: rpm-php-pearprov = 4.4.2-11
 Requires:  php-pear
 BuildArch: noarch
 BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
@@ -43,20 +43,21 @@
 Ta klasa ma w PEAR status: %{_status}.
 
 %prep
-%setup -q -c
+%pear_package_setup
 
 %install
 rm -rf $RPM_BUILD_ROOT
-install -d $RPM_BUILD_ROOT%{php_pear_dir}/%{_class}
-
-install %{_pearname}-%{version}/*.php 

SPECS: pearize.sh - allow spaces/tabs in %define date

2005-09-28 Thread glen
Author: glen Date: Wed Sep 28 23:51:11 2005 GMT
Module: SPECS Tag: HEAD
 Log message:
- allow spaces/tabs in %define date

 Files affected:
SPECS:
   pearize.sh (1.7 - 1.8) 

 Diffs:


Index: SPECS/pearize.sh
diff -u SPECS/pearize.sh:1.7 SPECS/pearize.sh:1.8
--- SPECS/pearize.sh:1.7Thu Sep 29 01:39:00 2005
+++ SPECS/pearize.shThu Sep 29 01:51:06 2005
@@ -72,7 +72,7 @@
 
 if grep -q '^%files tests' $template; then
sed -i -e '
-/^%define date/{
+/^%define.*date/{
 i\
 %files tests\
 %defattr(644,root,root,755)\


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

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


SPECS: pearize.sh - create optional package deps portion

2005-09-28 Thread glen
Author: glen Date: Thu Sep 29 00:02:29 2005 GMT
Module: SPECS Tag: HEAD
 Log message:
- create optional package deps portion

 Files affected:
SPECS:
   pearize.sh (1.8 - 1.9) 

 Diffs:


Index: SPECS/pearize.sh
diff -u SPECS/pearize.sh:1.8 SPECS/pearize.sh:1.9
--- SPECS/pearize.sh:1.8Thu Sep 29 01:51:06 2005
+++ SPECS/pearize.shThu Sep 29 02:02:24 2005
@@ -22,7 +22,7 @@
 # http://info.ccone.at/INFO/Mail-Archives/procmail/Jul-2004/msg00132.html
 sed -i -e '/./,$ !d;/^$/N;/\n$/D' $template
 
-rpm=$(rpm -q --qf '../RPMS/%{name}-%{version}.noarch.rpm' --specfile $spec)
+rpm=$(rpm -q --qf '../RPMS/%{name}-%{version}-%{release}.noarch.rpm' 
--specfile $spec)
 if [ ! -f $rpm ]; then
rpmbuild -bb $spec
 fi
@@ -97,6 +97,28 @@
 
 }
 ' $spec
+fi
+
+_noautoreq=$(grep '%define.*_noautoreq' $template || :)
+if [ $_noautoreq ]; then
+   sed -i -e /^BuildRoot:/{
+a\\
+\\
+# exclude optional dependencies\\
+$_noautoreq
+}
+ $spec
+
+   sed -i -e '/^%files/{
+i\
+%post\
+if [ -f %{_docdir}/%{name}-%{version}/optional-packages.txt ]; then\
+   cat %{_docdir}/%{name}-%{version}/optional-packages.txt\
+fi\
+
+}
+' $spec
+
 fi
 
 vim -o $spec $template


 CVS-web:
http://cvs.pld-linux.org/SPECS/pearize.sh?r1=1.8r2=1.9f=u

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


SPECS: php-pear-Net_LMTP.spec, php-pear-Net_Monitor.spec, php-pear...

2005-09-28 Thread glen
Author: glen Date: Thu Sep 29 00:03:10 2005 GMT
Module: SPECS Tag: HEAD
 Log message:
- new pear packaging

 Files affected:
SPECS:
   php-pear-Net_LMTP.spec (1.8 - 1.9) , php-pear-Net_Monitor.spec (1.9 - 
1.10) , php-pear-Net_SMS.spec (1.5 - 1.6) 

 Diffs:


Index: SPECS/php-pear-Net_LMTP.spec
diff -u SPECS/php-pear-Net_LMTP.spec:1.8 SPECS/php-pear-Net_LMTP.spec:1.9
--- SPECS/php-pear-Net_LMTP.spec:1.8Sat Dec  4 14:21:59 2004
+++ SPECS/php-pear-Net_LMTP.specThu Sep 29 02:03:05 2005
@@ -9,13 +9,13 @@
 Summary(pl):   %{_pearname} - implementacja protokołu LMTP (RFC2033)
 Name:  php-pear-%{_pearname}
 Version:   1.0.1
-Release:   2
+Release:   2.1
 License:   PHP 2.02
 Group: Development/Languages/PHP
 Source0:   http://pear.php.net/get/%{_pearname}-%{version}.tgz
 # Source0-md5: 646d1c5293b069cda9b4a94011a18e20
 URL:   http://pear.php.net/package/Net_LMTP/
-BuildRequires: rpm-php-pearprov = 4.0.2-98
+BuildRequires: rpm-php-pearprov = 4.4.2-11
 Requires:  php-pear
 BuildArch: noarch
 BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
@@ -32,29 +32,49 @@
 
 Ta klasa ma w PEAR status: %{_status}.
 
+%package tests
+Summary:   Tests for PEAR::%{_pearname}
+Summary(pl):   Testy dla PEAR::%{_pearname}
+Group: Development
+Requires:  %{name} = %{epoch}:%{version}-%{release}
+AutoReq:   no
+
+%description tests
+Tests for PEAR::%{_pearname}.
+
+%description tests -l pl
+Testy dla PEAR::%{_pearname}.
+
 %prep
-%setup -q -c
+%pear_package_setup
 
 %install
 rm -rf $RPM_BUILD_ROOT
-install -d $RPM_BUILD_ROOT%{php_pear_dir}/%{_class}
-
-install %{_pearname}-%{version}/%{_subclass}.php 
$RPM_BUILD_ROOT%{php_pear_dir}/%{_class}
+install -d $RPM_BUILD_ROOT%{php_pear_dir}
+%pear_package_install
 
 %clean
 rm -rf $RPM_BUILD_ROOT
 
 %files
 %defattr(644,root,root,755)
-%doc %{_pearname}-%{version}/test_lmtp.php
+%doc install.log
+%{php_pear_dir}/.registry/*.reg
 %{php_pear_dir}/%{_class}/*.php
 
+%files tests
+%defattr(644,root,root,755)
+%{php_pear_dir}/tests/*
+
 %definedate%(echo `LC_ALL=C date +%a %b %d %Y`)
 %changelog
 * %{date} PLD Team [EMAIL PROTECTED]
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.9  2005/09/29 00:03:05  glen
+- new pear packaging
+
 Revision 1.8  2004/12/04 13:21:59  adamg
 - rebuild with new PEAR provides/requires scripts
 - release 2


Index: SPECS/php-pear-Net_Monitor.spec
diff -u SPECS/php-pear-Net_Monitor.spec:1.9 SPECS/php-pear-Net_Monitor.spec:1.10
--- SPECS/php-pear-Net_Monitor.spec:1.9 Sun May  8 18:26:16 2005
+++ SPECS/php-pear-Net_Monitor.spec Thu Sep 29 02:03:05 2005
@@ -9,13 +9,13 @@
 Summary(pl):   %{_pearname} - monitoring zdalnych usług
 Name:  php-pear-%{_pearname}
 Version:   0.2.3
-Release:   1
+Release:   1.1
 License:   PHP 2.02
 Group: Development/Languages/PHP
 Source0:   http://pear.php.net/get/%{_pearname}-%{version}.tgz
 # Source0-md5: d8caf1cf2a3a4390bf6123989ddba22b
 URL:   http://pear.php.net/package/Net_Monitor/
-BuildRequires: rpm-php-pearprov = 4.0.2-98
+BuildRequires: rpm-php-pearprov = 4.4.2-11
 Requires:  php-pear
 BuildArch: noarch
 BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
@@ -34,34 +34,51 @@
 
 Ta klasa ma w PEAR status: %{_status}.
 
+%package tests
+Summary:   Tests for PEAR::%{_pearname}
+Summary(pl):   Testy dla PEAR::%{_pearname}
+Group: Development
+Requires:  %{name} = %{epoch}:%{version}-%{release}
+AutoReq:   no
+
+%description tests
+Tests for PEAR::%{_pearname}.
+
+%description tests -l pl
+Testy dla PEAR::%{_pearname}.
+
 %prep
-%setup -q -c
+%pear_package_setup
 
 %install
 rm -rf $RPM_BUILD_ROOT
-install -d 
$RPM_BUILD_ROOT%{php_pear_dir}/%{_class}/%{_subclass}/{Alert,Service}
-
-cd %{_pearname}-%{version}
-install %{_subclass}.php $RPM_BUILD_ROOT%{php_pear_dir}/%{_class}
-install %{_subclass}/*.php 
$RPM_BUILD_ROOT%{php_pear_dir}/%{_class}/%{_subclass}
-install %{_subclass}/Alert/*.php 
$RPM_BUILD_ROOT%{php_pear_dir}/%{_class}/%{_subclass}/Alert
-install %{_subclass}/Service/*.php 
$RPM_BUILD_ROOT%{php_pear_dir}/%{_class}/%{_subclass}/Service
+install -d $RPM_BUILD_ROOT%{php_pear_dir}
+%pear_package_install
 
 %clean
 rm -rf $RPM_BUILD_ROOT
 
 %files
 %defattr(644,root,root,755)
-%doc %{_pearname}-%{version}/doc/*
+%doc install.log
+%doc docs/%{_pearname}/*
+%{php_pear_dir}/.registry/*.reg
 %{php_pear_dir}/%{_class}/*.php
 %{php_pear_dir}/%{_class}/%{_subclass}
 
+%files tests
+%defattr(644,root,root,755)
+%{php_pear_dir}/tests/*
+
 %define date   %(echo `LC_ALL=C date +%a %b %d %Y`)
 %changelog
 * %{date} PLD Team [EMAIL PROTECTED]
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 

SPECS: template-php-pear.spec - comments

2005-09-28 Thread glen
Author: glen Date: Thu Sep 29 00:16:42 2005 GMT
Module: SPECS Tag: HEAD
 Log message:
- comments

 Files affected:
SPECS:
   template-php-pear.spec (1.17 - 1.18) 

 Diffs:


Index: SPECS/template-php-pear.spec
diff -u SPECS/template-php-pear.spec:1.17 SPECS/template-php-pear.spec:1.18
--- SPECS/template-php-pear.spec:1.17   Thu Sep 29 01:49:45 2005
+++ SPECS/template-php-pear.specThu Sep 29 02:16:36 2005
@@ -57,12 +57,15 @@
 %prep
 %pear_package_setup
 
+# docs/tests - tests
 install -d ./%{php_pear_dir}/tests/%{_pearname}
 mv docs/%{_pearname}/tests/* ./%{php_pear_dir}/tests/%{_pearname}
 
+# class/examples - docs
 install -d docs/%{_pearname}/examples
 mv ./%{php_pear_dir}/%{_class}/examples/* docs/%{_pearname}/examples
 
+# class/test - tests
 install -d ./%{php_pear_dir}/tests/%{_pearname}
 mv ./%{php_pear_dir}/{%{_class}/test/*,tests/%{_pearname}}
 
@@ -98,6 +101,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.18  2005/09/29 00:16:36  glen
+- comments
+
 Revision 1.17  2005/09/28 23:49:45  glen
 - more correction samples
 


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

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


SPECS: php-pear-Net_POP3.spec, php-pear-Net_Ping.spec, php-pear-Ne...

2005-09-28 Thread glen
Author: glen Date: Thu Sep 29 00:17:17 2005 GMT
Module: SPECS Tag: HEAD
 Log message:
- new pear packaging

 Files affected:
SPECS:
   php-pear-Net_POP3.spec (1.21 - 1.22) , php-pear-Net_Ping.spec (1.18 - 
1.19) , php-pear-Net_Portscan.spec (1.13 - 1.14) , php-pear-Net_Sieve.spec 
(1.19 - 1.20) , php-pear-Net_SmartIRC.spec (1.16 - 1.17) , 
php-pear-Net_Traceroute.spec (1.8 - 1.9) , php-pear-Net_UserAgent_Detect.spec 
(1.22 - 1.23) , php-pear-Net_UserAgent_Mobile.spec (1.26 - 1.27) , 
php-pear-Net_Whois.spec (1.8 - 1.9) 

 Diffs:


Index: SPECS/php-pear-Net_POP3.spec
diff -u SPECS/php-pear-Net_POP3.spec:1.21 SPECS/php-pear-Net_POP3.spec:1.22
--- SPECS/php-pear-Net_POP3.spec:1.21   Fri Apr  8 01:56:45 2005
+++ SPECS/php-pear-Net_POP3.specThu Sep 29 02:17:11 2005
@@ -9,13 +9,13 @@
 Summary(pl):   %{_pearname} - klasa POP3 dająca dostęp do serwerów POP3
 Name:  php-pear-%{_pearname}
 Version:   1.3.6
-Release:   1
+Release:   1.1
 License:   BSD
 Group: Development/Languages/PHP
 Source0:   http://pear.php.net/get/%{_pearname}-%{version}.tgz
 # Source0-md5: dad6200744d2c8f326fbec1f5e0c8249
 URL:   http://pear.php.net/package/Net_POP3/
-BuildRequires: rpm-php-pearprov = 4.0.2-98
+BuildRequires: rpm-php-pearprov = 4.4.2-11
 Requires:  php-pear
 BuildArch: noarch
 BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
@@ -34,29 +34,49 @@
 
 Ta klasa ma w PEAR status: %{_status}.
 
+%package tests
+Summary:   Tests for PEAR::%{_pearname}
+Summary(pl):   Testy dla PEAR::%{_pearname}
+Group: Development
+Requires:  %{name} = %{epoch}:%{version}-%{release}
+AutoReq:   no
+
+%description tests
+Tests for PEAR::%{_pearname}.
+
+%description tests -l pl
+Testy dla PEAR::%{_pearname}.
+
 %prep
-%setup -q -c
+%pear_package_setup
 
 %install
 rm -rf $RPM_BUILD_ROOT
-install -d $RPM_BUILD_ROOT%{php_pear_dir}/%{_class}
-
-install %{_pearname}-%{version}/%{_subclass}.php 
$RPM_BUILD_ROOT%{php_pear_dir}/%{_class}
+install -d $RPM_BUILD_ROOT%{php_pear_dir}
+%pear_package_install
 
 %clean
 rm -rf $RPM_BUILD_ROOT
 
 %files
 %defattr(644,root,root,755)
-%doc %{_pearname}-%{version}/Net_POP3_example.php
+%doc install.log
+%{php_pear_dir}/.registry/*.reg
 %{php_pear_dir}/%{_class}/*.php
 
+%files tests
+%defattr(644,root,root,755)
+%{php_pear_dir}/tests/*
+
 %definedate%(echo `LC_ALL=C date +%a %b %d %Y`)
 %changelog
 * %{date} PLD Team [EMAIL PROTECTED]
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.22  2005/09/29 00:17:11  glen
+- new pear packaging
+
 Revision 1.21  2005/04/07 23:56:45  ankry
 - pl fix
 


Index: SPECS/php-pear-Net_Ping.spec
diff -u SPECS/php-pear-Net_Ping.spec:1.18 SPECS/php-pear-Net_Ping.spec:1.19
--- SPECS/php-pear-Net_Ping.spec:1.18   Sat Dec  4 14:21:59 2004
+++ SPECS/php-pear-Net_Ping.specThu Sep 29 02:17:11 2005
@@ -9,13 +9,13 @@
 Summary(pl):   %{_pearname} - wywoływanie pinga
 Name:  php-pear-%{_pearname}
 Version:   2.4
-Release:   2
+Release:   2.1
 License:   PHP 2.02
 Group: Development/Languages/PHP
 Source0:   http://pear.php.net/get/%{_pearname}-%{version}.tgz
 # Source0-md5: 0c6aecc5f3139e49b2c49ecd2e222c37
 URL:   http://pear.php.net/package/Net_Ping/
-BuildRequires: rpm-php-pearprov = 4.0.2-98
+BuildRequires: rpm-php-pearprov = 4.4.2-11
 Requires:  php-pear
 BuildArch: noarch
 BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
@@ -30,29 +30,50 @@
 
 Ta klasa ma w PEAR status: %{_status}.
 
+%package tests
+Summary:   Tests for PEAR::%{_pearname}
+Summary(pl):   Testy dla PEAR::%{_pearname}
+Group: Development
+Requires:  %{name} = %{epoch}:%{version}-%{release}
+AutoReq:   no
+
+%description tests
+Tests for PEAR::%{_pearname}.
+
+%description tests -l pl
+Testy dla PEAR::%{_pearname}.
+
 %prep
-%setup -q -c
+%pear_package_setup
 
 %install
 rm -rf $RPM_BUILD_ROOT
-install -d $RPM_BUILD_ROOT%{php_pear_dir}/%{_class}
-
-install %{_pearname}-%{version}/*.php $RPM_BUILD_ROOT%{php_pear_dir}/%{_class}
+install -d $RPM_BUILD_ROOT%{php_pear_dir}
+%pear_package_install
 
 %clean
 rm -rf $RPM_BUILD_ROOT
 
 %files
 %defattr(644,root,root,755)
-%doc %{_pearname}-%{version}/{docs,tests}
+%doc install.log
+%doc docs/%{_pearname}/docs/*
+%{php_pear_dir}/.registry/*.reg
 %{php_pear_dir}/%{_class}/*.php
 
+%files tests
+%defattr(644,root,root,755)
+%{php_pear_dir}/tests/*
+
 %definedate%(echo `LC_ALL=C date +%a %b %d %Y`)
 %changelog
 * %{date} PLD Team [EMAIL PROTECTED]
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.19  2005/09/29 00:17:11  glen
+- new pear packaging
+
 Revision 1.18  2004/12/04 13:21:59  adamg
 - rebuild with new PEAR 

DISTFILES: Net_SmartIRC-1.0.0.tgz

2005-09-28 Thread glen

Files fetched: 1

STORED: http://pear.php.net/get/Net_SmartIRC-1.0.0.tgz
042935bf413e7021aeea2971dd4d3997  Net_SmartIRC-1.0.0.tgz
Size: 185991 bytes


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


SOURCES: php-pear-Net_SmartIRC-fix_includes.patch - updated to 1.0.0

2005-09-28 Thread glen
Author: glen Date: Thu Sep 29 00:24:54 2005 GMT
Module: SOURCES   Tag: HEAD
 Log message:
- updated to 1.0.0

 Files affected:
SOURCES:
   php-pear-Net_SmartIRC-fix_includes.patch (1.2 - 1.3) 

 Diffs:


Index: SOURCES/php-pear-Net_SmartIRC-fix_includes.patch
diff -u SOURCES/php-pear-Net_SmartIRC-fix_includes.patch:1.2 
SOURCES/php-pear-Net_SmartIRC-fix_includes.patch:1.3
--- SOURCES/php-pear-Net_SmartIRC-fix_includes.patch:1.2Thu Jul 24 
00:34:00 2003
+++ SOURCES/php-pear-Net_SmartIRC-fix_includes.patchThu Sep 29 02:24:49 2005
@@ -1,6 +1,5 @@
-diff -burN Net_SmartIRC-0.5.5p1.orig/SmartIRC.php 
Net_SmartIRC-0.5.5p1/SmartIRC.php
 Net_SmartIRC-0.5.5p1.orig/SmartIRC.php Tue Jul 22 20:02:07 2003
-+++ Net_SmartIRC-0.5.5p1/SmartIRC.php  Thu Jul 24 00:34:38 2003
+--- ./SmartIRC.php~2005-09-29 03:21:19.0 +0300
 ./SmartIRC.php 2005-09-29 03:22:16.0 +0300
 @@ -43,9 +43,9 @@
   *
   */
@@ -11,6 +10,6 @@
 +include_once('Net/SmartIRC/defines.php');
 +include_once('Net/SmartIRC/irccommands.php');
 +include_once('Net/SmartIRC/messagehandler.php');
- define('SMARTIRC_VERSION', '0.5.5 ($Revision$)');
+ define('SMARTIRC_VERSION', '1.0.0 ($Revision$)');
  define('SMARTIRC_VERSIONSTRING', 'Net_SmartIRC '.SMARTIRC_VERSION);
  


 CVS-web:

http://cvs.pld-linux.org/SOURCES/php-pear-Net_SmartIRC-fix_includes.patch?r1=1.2r2=1.3f=u

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


DISTFILES: MP3_Id-1.1.4.tgz

2005-09-28 Thread glen

Files fetched: 1

STORED: http://pear.php.net/get/MP3_Id-1.1.4.tgz
b715512310ee7744ef62ab9ca2300cc0  MP3_Id-1.1.4.tgz
Size: 7784 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: libtorrent-0.7.5.tar.gz

2005-09-28 Thread charles

Files fetched: 1

STORED: http://libtorrent.rakshasa.no/downloads/libtorrent-0.7.5.tar.gz
757173418ef003d897d6e58bd761cea1  libtorrent-0.7.5.tar.gz
Size: 438261 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: rtorrent.spec - updated to 0.3.5

2005-09-28 Thread charles
Author: charles  Date: Thu Sep 29 00:32:07 2005 GMT
Module: SPECS Tag: HEAD
 Log message:
- updated to 0.3.5

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

 Diffs:


Index: SPECS/rtorrent.spec
diff -u SPECS/rtorrent.spec:1.14 SPECS/rtorrent.spec:1.15
--- SPECS/rtorrent.spec:1.14Sun Sep 18 18:13:23 2005
+++ SPECS/rtorrent.spec Thu Sep 29 02:32:02 2005
@@ -3,16 +3,16 @@
 # Conditional build:
 %bcond_withcolors  # with color version
 #
-%define_libver 0.7.4
+%define_libver 0.7.5
 Summary:   rTorrent - a console-based BitTorrent client
 Summary(pl):   rTorrent - konsolowy klient BitTorrenta
 Name:  rtorrent
-Version:   0.3.4
+Version:   0.3.5
 Release:   1
 License:   GPL v2
 Group: Applications/Networking
 Source0:   
http://libtorrent.rakshasa.no/downloads/%{name}-%{version}.tar.gz
-# Source0-md5: 40b5ddd43d5fa64a2ffa12c8d3421f92
+# Source0-md5: 094b8e66a0c1dd30f71375c24f9d1a4e
 Patch0:%{name}-colors.patch
 URL:   http://libtorrent.rakshasa.no/
 BuildRequires: curl-devel = 7.12
@@ -68,6 +68,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.15  2005/09/29 00:32:02  charles
+- updated to 0.3.5
+
 Revision 1.14  2005/09/18 16:13:23  charles
 - updated to 0.3.4
 


 CVS-web:
http://cvs.pld-linux.org/SPECS/rtorrent.spec?r1=1.14r2=1.15f=u

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


DISTFILES: rtorrent-0.3.5.tar.gz

2005-09-28 Thread charles

Files fetched: 1

STORED: http://libtorrent.rakshasa.no/downloads/rtorrent-0.3.5.tar.gz
094b8e66a0c1dd30f71375c24f9d1a4e  rtorrent-0.3.5.tar.gz
Size: 222197 bytes


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


SOURCES: libtorrent-throttle2.patch (REMOVED) - already applied

2005-09-28 Thread charles
Author: charles  Date: Thu Sep 29 00:33:21 2005 GMT
Module: SOURCES   Tag: HEAD
 Log message:
- already applied

 Files affected:
SOURCES:
   libtorrent-throttle2.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: php-pear-PEAR_Frontend_Gtk.spec - new pear packaging, autog...

2005-09-28 Thread glen
Author: glen Date: Thu Sep 29 00:37:42 2005 GMT
Module: SPECS Tag: HEAD
 Log message:
- new pear packaging, autogenerate pear deps; rel 2

 Files affected:
SPECS:
   php-pear-PEAR_Frontend_Gtk.spec (1.17 - 1.18) 

 Diffs:


Index: SPECS/php-pear-PEAR_Frontend_Gtk.spec
diff -u SPECS/php-pear-PEAR_Frontend_Gtk.spec:1.17 
SPECS/php-pear-PEAR_Frontend_Gtk.spec:1.18
--- SPECS/php-pear-PEAR_Frontend_Gtk.spec:1.17  Mon Mar 21 16:32:40 2005
+++ SPECS/php-pear-PEAR_Frontend_Gtk.spec   Thu Sep 29 02:37:37 2005
@@ -1,4 +1,5 @@
 # $Revision$, $Date$
+%include   /usr/lib/rpm/macros.php
 %define_class  PEAR
 %define_subclass   Frontend
 %define_status beta
@@ -8,7 +9,7 @@
 Summary(pl):   %{_pearname} - Desktop w GTK+ dla managera pakietów PEAR
 Name:  php-pear-%{_pearname}
 Version:   0.4.0
-Release:   1
+Release:   2
 License:   PHP 2.02
 Group: Development/Languages/PHP
 Source0:   http://pear.php.net/get/%{_pearname}-%{version}.tgz
@@ -19,8 +20,6 @@
 BuildArch: noarch
 BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
 
-%definephp_pear_dir/usr/share/pear/
-
 %description
 Desktop Interface to the PEAR Package Manager.
 
@@ -32,24 +31,20 @@
 Ta klasa ma w PEAR status: %{_status}.
 
 %prep
-%setup -q -c
-
-%build
+%pear_package_setup
 
 %install
 rm -rf $RPM_BUILD_ROOT
-install -d $RPM_BUILD_ROOT%{php_pear_dir}/%{_class}/%{_subclass}/Gtk/xpm
-
-install %{_pearname}-%{version}/Gtk.php 
$RPM_BUILD_ROOT%{php_pear_dir}/%{_class}/%{_subclass}
-install %{_pearname}-%{version}/Gtk/*.php 
$RPM_BUILD_ROOT%{php_pear_dir}/%{_class}/%{_subclass}/Gtk
-install %{_pearname}-%{version}/Gtk/*.glade 
$RPM_BUILD_ROOT%{php_pear_dir}/%{_class}/%{_subclass}/Gtk
-install %{_pearname}-%{version}/Gtk/xpm/*.xpm 
$RPM_BUILD_ROOT%{php_pear_dir}/%{_class}/%{_subclass}/Gtk/xpm
+install -d $RPM_BUILD_ROOT%{php_pear_dir}
+%pear_package_install
 
 %clean
 rm -rf $RPM_BUILD_ROOT
 
 %files
 %defattr(644,root,root,755)
+%doc install.log
+%{php_pear_dir}/.registry/*.reg
 %dir %{php_pear_dir}/%{_class}/%{_subclass}/Gtk
 %dir %{php_pear_dir}/%{_class}/%{_subclass}/Gtk/xpm
 %{php_pear_dir}/%{_class}/%{_subclass}/*.php
@@ -63,6 +58,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.18  2005/09/29 00:37:37  glen
+- new pear packaging, autogenerate pear deps; rel 2
+
 Revision 1.17  2005/03/21 15:32:40  adamg
 - updated to 0.4.0
 
@@ -119,7 +117,7 @@
 
 Revision 1.2  2002/07/27 13:13:35  blues
 - 0.3
-STBR
+  STBR
 
 Revision 1.1  2002/07/12 18:06:57  blues
 - initial release


 CVS-web:

http://cvs.pld-linux.org/SPECS/php-pear-PEAR_Frontend_Gtk.spec?r1=1.17r2=1.18f=u

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


SPECS: php-pear-PEAR_Frontend_Web.spec - new pear packaging, add t...

2005-09-28 Thread glen
Author: glen Date: Thu Sep 29 00:41:01 2005 GMT
Module: SPECS Tag: HEAD
 Log message:
- new pear packaging, add two missing .jpg; rel 3

 Files affected:
SPECS:
   php-pear-PEAR_Frontend_Web.spec (1.20 - 1.21) 

 Diffs:


Index: SPECS/php-pear-PEAR_Frontend_Web.spec
diff -u SPECS/php-pear-PEAR_Frontend_Web.spec:1.20 
SPECS/php-pear-PEAR_Frontend_Web.spec:1.21
--- SPECS/php-pear-PEAR_Frontend_Web.spec:1.20  Sat Dec  4 15:09:09 2004
+++ SPECS/php-pear-PEAR_Frontend_Web.spec   Thu Sep 29 02:40:56 2005
@@ -9,13 +9,13 @@
 Summary(pl):   %{_pearname} - HTML-owy zarządca pakietów PEAR-a
 Name:  php-pear-%{_pearname}
 Version:   0.4
-Release:   2
+Release:   3
 License:   PHP 2.02
 Group: Development/Languages/PHP
 Source0:   http://pear.php.net/get/%{_pearname}-%{version}.tgz
 # Source0-md5: 9aafb3d1696cf38193afa9d1921190e2
 URL:   http://pear.php.net/package/PEAR_Frontend_Web/
-BuildRequires: rpm-php-pearprov = 4.0.2-98
+BuildRequires: rpm-php-pearprov = 4.4.2-11
 Requires:  php-pear
 Provides:  pear(Frontend)
 BuildArch: noarch
@@ -34,31 +34,28 @@
 Ta klasa ma w PEAR status: %{_status}.
 
 %prep
-%setup -q -c
+%pear_package_setup
 
 %install
 rm -rf $RPM_BUILD_ROOT
-install -d $RPM_BUILD_ROOT%{php_pear_dir}/%{_class}/%{_subclass}/Web
-
-install %{_pearname}-%{version}/WebInstaller.php 
$RPM_BUILD_ROOT%{php_pear_dir}/%{_class}/
-install %{_pearname}-%{version}/%{_subclass}/Web.php 
$RPM_BUILD_ROOT%{php_pear_dir}/%{_class}/%{_subclass}
-install %{_pearname}-%{version}/%{_subclass}/Web/*.png 
$RPM_BUILD_ROOT%{php_pear_dir}/%{_class}/%{_subclass}/Web
-install %{_pearname}-%{version}/%{_subclass}/Web/*.gif 
$RPM_BUILD_ROOT%{php_pear_dir}/%{_class}/%{_subclass}/Web
-install %{_pearname}-%{version}/%{_subclass}/Web/*.html 
$RPM_BUILD_ROOT%{php_pear_dir}/%{_class}/%{_subclass}/Web
-install %{_pearname}-%{version}/%{_subclass}/Web/*.css 
$RPM_BUILD_ROOT%{php_pear_dir}/%{_class}/%{_subclass}/Web
-install %{_pearname}-%{version}/%{_subclass}/Web/*.js 
$RPM_BUILD_ROOT%{php_pear_dir}/%{_class}/%{_subclass}/Web
+install -d $RPM_BUILD_ROOT%{php_pear_dir}
+%pear_package_install
 
 %clean
 rm -rf $RPM_BUILD_ROOT
 
 %files
 %defattr(644,root,root,755)
-%doc %{_pearname}-%{version}/docs/*
+%doc install.log
+%doc docs/%{_pearname}/docs/*
 %dir %{php_pear_dir}/%{_class}/%{_subclass}/Web
+%{php_pear_dir}/.registry/*.reg
 %{php_pear_dir}/%{_class}/*.php
 %{php_pear_dir}/%{_class}/%{_subclass}/*.php
+# FIXME: to data/ directory?
 %{php_pear_dir}/%{_class}/%{_subclass}/Web/*.png
 %{php_pear_dir}/%{_class}/%{_subclass}/Web/*.gif
+%{php_pear_dir}/%{_class}/%{_subclass}/Web/*.jpg
 %{php_pear_dir}/%{_class}/%{_subclass}/Web/*.html
 %{php_pear_dir}/%{_class}/%{_subclass}/Web/*.css
 %{php_pear_dir}/%{_class}/%{_subclass}/Web/*.js
@@ -69,6 +66,9 @@
 All persons listed below can be reached at cvs_login@pld-linux.org
 
 $Log$
+Revision 1.21  2005/09/29 00:40:56  glen
+- new pear packaging, add two missing .jpg; rel 3
+
 Revision 1.20  2004/12/04 14:09:09  adamg
 - rebuild with new PEAR provides/requires scripts
 - release 2


 CVS-web:

http://cvs.pld-linux.org/SPECS/php-pear-PEAR_Frontend_Web.spec?r1=1.20r2=1.21f=u

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


  1   2   >