[CVS] OpenPKG: openpkg-src/cadaver/ cadaver.spec openpkg-web/ news.txt

2004-01-26 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /e/openpkg/cvs   Email:  [EMAIL PROTECTED]
  Module: openpkg-src openpkg-web  Date:   26-Jan-2004 16:29:46
  Branch: HEAD Handle: 2004012615294402

  Modified files:
openpkg-src/cadaver cadaver.spec
openpkg-web news.txt

  Log:
bless for PLUS class

  Summary:
RevisionChanges Path
1.20+2  -2  openpkg-src/cadaver/cadaver.spec
1.8263  +1  -0  openpkg-web/news.txt
  

  patch -p0 <<'@@ .'
  Index: openpkg-src/cadaver/cadaver.spec
  
  $ cvs diff -u -r1.19 -r1.20 cadaver.spec
  --- openpkg-src/cadaver/cadaver.spec  23 Jan 2004 13:07:52 -  1.19
  +++ openpkg-src/cadaver/cadaver.spec  26 Jan 2004 15:29:46 -  1.20
  @@ -29,11 +29,11 @@
   URL:  http://www.webdav.org/cadaver/
   Vendor:   Joe Orton
   Packager: The OpenPKG Project
  -Distribution: OpenPKG [EVAL]
  +Distribution: OpenPKG [PLUS]
   Group:Web
   License:  GPL
   Version:  0.22.0
  -Release:  20030917
  +Release:  20040126
   
   #   list of sources
   Source0:  http://www.webdav.org/cadaver/cadaver-%{version}.tar.gz
  @@ .
  patch -p0 <<'@@ .'
  Index: openpkg-web/news.txt
  
  $ cvs diff -u -r1.8262 -r1.8263 news.txt
  --- openpkg-web/news.txt  26 Jan 2004 15:29:20 -  1.8262
  +++ openpkg-web/news.txt  26 Jan 2004 15:29:44 -  1.8263
  @@ -1,3 +1,4 @@
  +26-Jan-2004: Upgraded package: P
   26-Jan-2004: Upgraded package: P
   26-Jan-2004: Upgraded package: P
   26-Jan-2004: Upgraded package: P
  @@ .
__
The OpenPKG Projectwww.openpkg.org
CVS Repository Commit List [EMAIL PROTECTED]


[CVS] OpenPKG: openpkg-src/cadaver/ cadaver.spec openpkg-web/ news.txt

2003-07-01 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /e/openpkg/cvs   Email:  [EMAIL PROTECTED]
  Module: openpkg-src openpkg-web  Date:   01-Jul-2003 15:40:03
  Branch: HEAD Handle: 2003070114400201

  Modified files:
openpkg-src/cadaver cadaver.spec
openpkg-web news.txt

  Log:
fix neon and getopt issues; upgrade again to EVAL

  Summary:
RevisionChanges Path
1.16+10 -10 openpkg-src/cadaver/cadaver.spec
1.5122  +1  -0  openpkg-web/news.txt
  

  patch -p0 <<'@@ .'
  Index: openpkg-src/cadaver/cadaver.spec
  
  $ cvs diff -u -r1.15 -r1.16 cadaver.spec
  --- openpkg-src/cadaver/cadaver.spec  28 Jun 2003 12:22:25 -  1.15
  +++ openpkg-src/cadaver/cadaver.spec  1 Jul 2003 13:40:03 -   1.16
  @@ -23,19 +23,17 @@
   ##  SUCH DAMAGE.
   ##
   
  -#   FIXME mlelstv - JUNK because of neon API changes
  -
   #   package information
   Name: cadaver
   Summary:  Command-Line WebDAV client
   URL:  http://www.webdav.org/cadaver/
   Vendor:   Joe Orton
   Packager: The OpenPKG Project
  -Distribution: OpenPKG [JUNK]
  +Distribution: OpenPKG [EVAL]
   Group:Web
   License:  GPL
   Version:  0.21.0
  -Release:  20030628
  +Release:  20030701
   
   #   list of sources
   Source0:  http://www.webdav.org/cadaver/cadaver-%{version}.tar.gz
  @@ -44,9 +42,9 @@
   Prefix:   %{l_prefix}
   BuildRoot:%{l_buildroot}
   BuildPreReq:  OpenPKG, openpkg >= 20021230
  -BuildPreReq:  ncurses, libxml, neon, zlib, openssl, libiconv, readline
  +BuildPreReq:  ncurses, libxml, zlib, openssl, libiconv, readline, getopt
   PreReq:   OpenPKG, openpkg >= 20021230
  -PreReq:   ncurses, libxml, neon, zlib, openssl, libiconv, readline
  +PreReq:   ncurses, libxml, zlib, openssl, libiconv, readline, getopt
   AutoReq:  no
   AutoReqProv:  no
   
  @@ -60,15 +58,17 @@
   %setup -q
   
   %build
  +echo 'ac_cv_func_getopt_long=yes' >config.cache
   CC="%{l_cc}" \
   CFLAGS="%{l_cflags -O}" \
  -CPPFLAGS="-I%{l_prefix}/include" \
  -LDFLAGS="-L%{l_prefix}/lib" \
  +CPPFLAGS="%{l_cppflags}" \
  +LDFLAGS="%{l_ldflags}" \
  +LIBS="-lgetopt" \
   XML2_CONFIG="%{l_prefix}/bin/xml2-config" \
   ./configure \
  +--cache-file=./config.cache \
   --prefix=%{l_prefix} \
  ---without-included-neon \
  ---with-neon=%{l_prefix} \
  +--with-included-neon \
   --with-ssl=%{l_prefix}
   %{l_shtool} subst -e 's;lib/getopt1;lib/getopt1.o lib/getopt;' Makefile
   %{l_make} %{l_mflags -O}
  @@ .
  patch -p0 <<'@@ .'
  Index: openpkg-web/news.txt
  
  $ cvs diff -u -r1.5121 -r1.5122 news.txt
  --- openpkg-web/news.txt  1 Jul 2003 13:34:12 -   1.5121
  +++ openpkg-web/news.txt  1 Jul 2003 13:40:02 -   1.5122
  @@ -1,3 +1,4 @@
  +01-Jul-2003: Upgraded package: P
   01-Jul-2003: Upgraded package: P
   01-Jul-2003: Upgraded package: P
   01-Jul-2003: Upgraded package: P
  @@ .
__
The OpenPKG Projectwww.openpkg.org
CVS Repository Commit List [EMAIL PROTECTED]


[CVS] OpenPKG: openpkg-src/cadaver/ cadaver.spec openpkg-web/ news.txt

2003-06-28 Thread Michael van Elst
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Michael van Elst
  Root:   /e/openpkg/cvs   Email:  [EMAIL PROTECTED]
  Module: openpkg-src openpkg-web  Date:   28-Jun-2003 14:22:25
  Branch: HEAD Handle: 2003062813222401

  Modified files:
openpkg-src/cadaver cadaver.spec
openpkg-web news.txt

  Log:
downgrade to JUNK, doesn't yet follow unstable neon API

  Summary:
RevisionChanges Path
1.15+8  -4  openpkg-src/cadaver/cadaver.spec
1.5041  +1  -0  openpkg-web/news.txt
  

  patch -p0 <<'@@ .'
  Index: openpkg-src/cadaver/cadaver.spec
  
  $ cvs diff -u -r1.14 -r1.15 cadaver.spec
  --- openpkg-src/cadaver/cadaver.spec  14 Feb 2003 09:20:15 -  1.14
  +++ openpkg-src/cadaver/cadaver.spec  28 Jun 2003 12:22:25 -  1.15
  @@ -23,17 +23,19 @@
   ##  SUCH DAMAGE.
   ##
   
  +#   FIXME mlelstv - JUNK because of neon API changes
  +
   #   package information
   Name: cadaver
   Summary:  Command-Line WebDAV client
   URL:  http://www.webdav.org/cadaver/
   Vendor:   Joe Orton
   Packager: The OpenPKG Project
  -Distribution: OpenPKG [EVAL]
  +Distribution: OpenPKG [JUNK]
   Group:Web
   License:  GPL
   Version:  0.21.0
  -Release:  20030214
  +Release:  20030628
   
   #   list of sources
   Source0:  http://www.webdav.org/cadaver/cadaver-%{version}.tar.gz
  @@ -41,8 +43,10 @@
   #   build information
   Prefix:   %{l_prefix}
   BuildRoot:%{l_buildroot}
  -BuildPreReq:  OpenPKG, openpkg >= 20021230, ncurses, libxml, neon, zlib, openssl, 
libiconv, readline
  -PreReq:   OpenPKG, openpkg >= 20021230, ncurses
  +BuildPreReq:  OpenPKG, openpkg >= 20021230
  +BuildPreReq:  ncurses, libxml, neon, zlib, openssl, libiconv, readline
  +PreReq:   OpenPKG, openpkg >= 20021230
  +PreReq:   ncurses, libxml, neon, zlib, openssl, libiconv, readline
   AutoReq:  no
   AutoReqProv:  no
   
  @@ .
  patch -p0 <<'@@ .'
  Index: openpkg-web/news.txt
  
  $ cvs diff -u -r1.5040 -r1.5041 news.txt
  --- openpkg-web/news.txt  28 Jun 2003 10:42:58 -  1.5040
  +++ openpkg-web/news.txt  28 Jun 2003 12:22:24 -  1.5041
  @@ -1,3 +1,4 @@
  +28-Jun-2003: Upgraded package: P
   28-Jun-2003: Upgraded package: P
   27-Jun-2003: Upgraded package: P
   27-Jun-2003: Upgraded package: P
  @@ .
__
The OpenPKG Projectwww.openpkg.org
CVS Repository Commit List [EMAIL PROTECTED]


[CVS] OpenPKG: openpkg-src/cadaver/ cadaver.spec openpkg-web/ news.txt

2003-01-01 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /e/openpkg/cvs   Email:  [EMAIL PROTECTED]
  Module: openpkg-src openpkg-web  Date:   01-Jan-2003 14:47:29
  Branch: HEAD Handle: 2003010113472801

  Modified files:
openpkg-src/cadaver cadaver.spec
openpkg-web news.txt

  Log:
fix building

  Summary:
RevisionChanges Path
1.12+4  -4  openpkg-src/cadaver/cadaver.spec
1.2489  +1  -0  openpkg-web/news.txt
  

  patch -p0 <<'@@ .'
  Index: openpkg-src/cadaver/cadaver.spec
  
  $ cvs diff -u -r1.11 -r1.12 cadaver.spec
  --- openpkg-src/cadaver/cadaver.spec  30 Dec 2002 22:03:14 -  1.11
  +++ openpkg-src/cadaver/cadaver.spec  1 Jan 2003 13:47:29 -   1.12
  @@ -33,7 +33,7 @@
   Group:Web
   License:  GPL
   Version:  0.20.5
  -Release:  20021219
  +Release:  20030101
   
   #   list of sources
   Source0:  http://www.webdav.org/cadaver/cadaver-%{version}.tar.gz
  @@ -41,8 +41,8 @@
   #   build information
   Prefix:   %{l_prefix}
   BuildRoot:%{l_buildroot}
  -BuildPreReq:  OpenPKG, openpkg >= 20020206, ncurses, libxml, neon, zlib, openssl, 
libiconv, readline
  -PreReq:   OpenPKG, openpkg >= 20020206, ncurses
  +BuildPreReq:  OpenPKG, openpkg >= 20021230, ncurses, libxml, neon, zlib, openssl, 
libiconv, readline
  +PreReq:   OpenPKG, openpkg >= 20021230, ncurses
   AutoReq:  no
   AutoReqProv:  no
   
  @@ -68,7 +68,7 @@
   --without-included-neon \
   --with-neon=%{l_prefix} \
   --with-ssl=%{l_prefix}
  -%{l_shtool} subst -e 's;\(lib/getopt1\.o\);\1 lib/getopt.o;' Makefile
  +%{l_shtool} subst -e 's;\(lib/getopt\.o\) \(lib/getopt1\.o\);\2 \1;' Makefile
   %{l_make} %{l_mflags -O}
   
   %install
  @@ .
  patch -p0 <<'@@ .'
  Index: openpkg-web/news.txt
  
  $ cvs diff -u -r1.2488 -r1.2489 news.txt
  --- openpkg-web/news.txt  1 Jan 2003 11:12:36 -   1.2488
  +++ openpkg-web/news.txt  1 Jan 2003 13:47:28 -   1.2489
  @@ -1,3 +1,4 @@
  +01-Jan-2003: Upgraded package: P
   01-Jan-2003: Upgraded package: P
   01-Jan-2003: Upgraded package: P
   01-Jan-2003: Upgraded package: P
  @@ .
__
The OpenPKG Projectwww.openpkg.org
CVS Repository Commit List [EMAIL PROTECTED]



[CVS] OpenPKG: openpkg-src/cadaver cadaver.spec openpkg-web news.txt

2002-12-19 Thread Ralf S. Engelschall
  OpenPKG CVS Repository
  http://cvs.openpkg.org/
  

  Server: cvs.openpkg.org  Name:   Ralf S. Engelschall
  Root:   /e/openpkg/cvs   Email:  [EMAIL PROTECTED]
  Module: openpkg-src, openpkg-web Date:   19-Dec-2002 11:05:01
  Branch: HEAD Handle: 2002121910050001

  Modified files:
openpkg-src/cadaver cadaver.spec
openpkg-web news.txt

  Log:
ncurses is also a run-time dependency

  Summary:
RevisionChanges Path
1.9 +3  -3  openpkg-src/cadaver/cadaver.spec
1.2332  +1  -0  openpkg-web/news.txt
  

  Index: openpkg-src/cadaver/cadaver.spec
  
  $ cvs diff -u -r1.8 -r1.9 cadaver.spec
  --- openpkg-src/cadaver/cadaver.spec  12 Sep 2002 06:43:59 -  1.8
  +++ openpkg-src/cadaver/cadaver.spec  19 Dec 2002 10:05:01 -  1.9
  @@ -33,7 +33,7 @@
   Group:Web
   License:  GPL
   Version:  0.20.5
  -Release:  20020912
  +Release:  20021219
   
   #   list of sources
   Source0:  http://www.webdav.org/cadaver/cadaver-%{version}.tar.gz
  @@ -41,8 +41,8 @@
   #   build information
   Prefix:   %{l_prefix}
   BuildRoot:%{l_buildroot}
  -BuildPreReq:  OpenPKG, openpkg >= 20020206, libxml, neon, zlib, openssl, libiconv, 
readline, ncurses
  -PreReq:   OpenPKG, openpkg >= 20020206
  +BuildPreReq:  OpenPKG, openpkg >= 20020206, ncurses, libxml, neon, zlib, openssl, 
libiconv, readline
  +PreReq:   OpenPKG, openpkg >= 20020206, ncurses
   AutoReq:  no
   AutoReqProv:  no
   
  Index: openpkg-web/news.txt
  
  $ cvs diff -u -r1.2331 -r1.2332 news.txt
  --- openpkg-web/news.txt  19 Dec 2002 10:03:36 -  1.2331
  +++ openpkg-web/news.txt  19 Dec 2002 10:05:00 -  1.2332
  @@ -1,3 +1,4 @@
  +19-Dec-2002: Upgraded package: P
   19-Dec-2002: Upgraded package: P
   19-Dec-2002: Upgraded package: P
   19-Dec-2002: Upgraded package: P
__
The OpenPKG Projectwww.openpkg.org
CVS Repository Commit List [EMAIL PROTECTED]