[arch-commits] CVS update of arch/build/lib/wvstreams (2 files)

Jan de Groot jgc at archlinux.org
Sun Jun 17 16:35:53 UTC 2007


    Date: Sunday, June 17, 2007 @ 12:35:53
  Author: jgc
    Path: /home/cvs-arch/arch/build/lib/wvstreams

 Removed: wvstreams-3.75.0.patch (1.1) wvstreams-gcc41.patch (1.2)

Remove old files


------------------------+
 wvstreams-3.75.0.patch |   86 -------------------------------------------
 wvstreams-gcc41.patch  |   93 -----------------------------------------------
 2 files changed, 179 deletions(-)


Index: arch/build/lib/wvstreams/wvstreams-3.75.0.patch
diff -u arch/build/lib/wvstreams/wvstreams-3.75.0.patch:1.1 arch/build/lib/wvstreams/wvstreams-3.75.0.patch:removed
--- arch/build/lib/wvstreams/wvstreams-3.75.0.patch:1.1	Tue Jul  6 23:20:23 2004
+++ arch/build/lib/wvstreams/wvstreams-3.75.0.patch	Sun Jun 17 12:35:53 2007
@@ -1,86 +0,0 @@
-diff -Naur wvstreams-3.75.0-orig/include/uniconftree.h wvstreams-3.75.0/include/uniconftree.h
---- wvstreams-3.75.0-orig/include/uniconftree.h	2004-03-13 10:59:36.000000000 -0800
-+++ wvstreams-3.75.0/include/uniconftree.h	2004-07-06 13:09:29.000000000 -0700
-@@ -48,7 +48,7 @@
- 
-     /** Returns a pointer to the parent node, or NULL if there is none. */
-     Sub *parent() const
--        { return static_cast<Sub*>(xparent); }
-+        { return static_cast <Sub*>(this->xparent); }
- 
-     /** Reparents this node. */
-     void setparent(Sub *parent)
-@@ -56,7 +56,7 @@
-     
-     /** Returns a pointer to the root node of the tree. */
-     Sub *root() const
--        { return static_cast<Sub*>(Base::_root()); }
-+        { return static_cast <Sub*>(Base::_root()); }
-     
-     /**
-      * Returns full path of this node relative to an ancestor.
-@@ -93,13 +93,13 @@
-     /** Removes and deletes all children of this node. */
-     void zap()
-     {
--        if (!xchildren)
-+        if (!(this->xchildren))
-             return;
-         // set xchildren to NULL first so that the zap() will happen faster
-         // otherwise, each child will attempt to unlink itself uselessly
- 
--        typename Base::Container *oldchildren = xchildren;
--        xchildren = NULL;
-+        typename Base::Container *oldchildren = this->xchildren;
-+        this->xchildren = NULL;
- 
-         // delete all children
-         typename Base::Container::Iter i(*oldchildren);
-diff -Naur wvstreams-3.75.0-orig/include/wvscatterhash.h wvstreams-3.75.0/include/wvscatterhash.h
---- wvstreams-3.75.0-orig/include/wvscatterhash.h	2004-03-13 10:59:36.000000000 -0800
-+++ wvstreams-3.75.0/include/wvscatterhash.h	2004-07-06 13:10:08.000000000 -0700
-@@ -154,7 +154,7 @@
-         { _set_autofree(Accessor::get_key(data), hash(data), auto_free); }
- 
-     bool get_autofree(const T *data)
--        { _get_autofree(Accessor::get_key(data), hash(data)); }
-+        { return _get_autofree(Accessor::get_key(data), hash(data)); }
- 
-     void zap()
-         { _zap(); }
-diff -Naur wvstreams-3.75.0-orig/include/wvsorter.h wvstreams-3.75.0/include/wvsorter.h
---- wvstreams-3.75.0-orig/include/wvsorter.h	2004-03-13 10:59:36.000000000 -0800
-+++ wvstreams-3.75.0/include/wvsorter.h	2004-07-06 13:10:17.000000000 -0700
-@@ -90,7 +90,7 @@
-     for (i.rewind(); i.next(); )
- 	n++;
-     
--    array = new (void *) [n+2];
-+    array = new void * [n+2];
-     void **aptr = array;
- 
-     *aptr++ = NULL; // initial link is NULL, to act like a normal iterator
-diff -Naur wvstreams-3.75.0-orig/utils/wvbuffer.cc wvstreams-3.75.0/utils/wvbuffer.cc
---- wvstreams-3.75.0-orig/utils/wvbuffer.cc	2004-03-13 10:59:36.000000000 -0800
-+++ wvstreams-3.75.0/utils/wvbuffer.cc	2004-07-06 13:10:45.000000000 -0700
-@@ -9,13 +9,13 @@
- /***** Specialization for raw memory buffers *****/
- 
- // Instantiate some commonly used templates
--template WvBufBaseCommonImpl<unsigned char>;
--template WvInPlaceBufBase<unsigned char>;
--template WvConstInPlaceBufBase<unsigned char>;
--template WvCircularBufBase<unsigned char>;
--template WvDynBufBase<unsigned char>;
--template WvNullBufBase<unsigned char>;
--template WvBufCursorBase<unsigned char>;
-+template class WvBufBaseCommonImpl<unsigned char>;
-+template class WvInPlaceBufBase<unsigned char>;
-+template class WvConstInPlaceBufBase<unsigned char>;
-+template class WvCircularBufBase<unsigned char>;
-+template class WvDynBufBase<unsigned char>;
-+template class WvNullBufBase<unsigned char>;
-+template class WvBufCursorBase<unsigned char>;
- 
- void WvBufBase<unsigned char>::putstr(WvStringParm str)
- {
Index: arch/build/lib/wvstreams/wvstreams-gcc41.patch
diff -u arch/build/lib/wvstreams/wvstreams-gcc41.patch:1.2 arch/build/lib/wvstreams/wvstreams-gcc41.patch:removed
--- arch/build/lib/wvstreams/wvstreams-gcc41.patch:1.2	Sun Mar 18 18:21:33 2007
+++ arch/build/lib/wvstreams/wvstreams-gcc41.patch	Sun Jun 17 12:35:53 2007
@@ -1,93 +0,0 @@
---- wvstreams-4.2.2/utils/wvhash.cc.gcc41	2006-01-10 00:03:20.000000000 +0100
-+++ wvstreams-4.2.2/utils/wvhash.cc	2006-05-24 12:38:01.000000000 +0200
-@@ -2,7 +2,7 @@
- 
- // Note: this hash function is case-insensitive since it ignores the
- // bit in ASCII that defines case.  You may want to take advantage of this.
--unsigned WvHash(const char *s)
-+unsigned int WvHash(const char *s)
- {
-     unsigned hash = 0, slide, andval;
-     if (!s) return 0;
---- wvstreams-4.2.2/include/wvstring.h.gcc41	2005-11-24 20:46:46.000000000 +0100
-+++ wvstreams-4.2.2/include/wvstring.h	2006-05-24 12:36:49.000000000 +0200
-@@ -393,7 +393,7 @@
-     
- protected:
-     void copy_constructor(const WvFastString &s);
--    inline void WvString::construct(const char *_str)
-+    inline void construct(const char *_str)
-         {
-             link(&nullbuf, _str);
-     
---- wvstreams-4.2.2/include/wvhttppool.h.gcc41	2005-11-24 20:46:46.000000000 +0100
-+++ wvstreams-4.2.2/include/wvhttppool.h	2006-05-24 12:36:49.000000000 +0200
-@@ -57,7 +57,7 @@
-     WvString linkname;
-     WvUrl url;
- 
--    WvUrlLink::WvUrlLink(WvStringParm _linkname, WvStringParm _url)
-+    WvUrlLink(WvStringParm _linkname, WvStringParm _url)
- 	: linkname(_linkname), url(_url)
-     {}
- };
---- wvstreams-4.2.2/include/uniconfkey.h.gcc41	2005-11-24 20:46:46.000000000 +0100
-+++ wvstreams-4.2.2/include/uniconfkey.h	2006-05-24 12:36:49.000000000 +0200
-@@ -113,7 +113,7 @@
-     bool iswild() const;
- 
-     /** Returns true if the key has a trailing slash. */
--    bool UniConfKey::hastrailingslash() const;
-+    bool hastrailingslash() const;
- 
-     /**
-      * Returns the number of segments in this path.
---- wvstreams-4.2.2/include/wvx509.h.gcc41	2006-01-09 22:42:53.000000000 +0100
-+++ wvstreams-4.2.2/include/wvx509.h	2006-05-24 12:36:49.000000000 +0200
-@@ -349,19 +349,19 @@
-      * Set the Certificate to use X509v3, since that's all modern
-      * PKI uses anyways :)
-      */
--    void WvX509Mgr::set_version();
-+    void set_version();
- 
-     /**
-      * Get and set the keyUsage field.
-      */
--    WvString WvX509Mgr::get_key_usage();
--    void WvX509Mgr::set_key_usage(WvStringParm values);
-+    WvString get_key_usage();
-+    void set_key_usage(WvStringParm values);
- 
-     /**
-      * Get and set the extendedKeyUsage field.
-      */
--    WvString WvX509Mgr::get_ext_key_usage();
--    void WvX509Mgr::set_ext_key_usage(WvStringParm values);
-+    WvString get_ext_key_usage();
-+    void set_ext_key_usage(WvStringParm values);
-     
-     /**
-      * Return the Subject alt name if it exists, and WvString::null if
---- wvstreams-4.2.2/gnulib/argp.h.gcc41	2005-11-24 20:46:38.000000000 +0100
-+++ wvstreams-4.2.2/gnulib/argp.h	2006-05-24 12:36:49.000000000 +0200
-@@ -505,7 +505,7 @@
- 			       unsigned int __flags);
- 
- /* Possibly output the standard usage message for ARGP to stderr and exit.  */
--extern void argp_usage (__const struct argp_state *__state);
-+extern void __NTH(argp_usage (__const struct argp_state *__state));
- extern void __argp_usage (__const struct argp_state *__state);
- 
- /* If appropriate, print the printf string FMT and following args, preceded
---- wvstreams-4.2.2/include/wvvector.h.gcc5	2007-01-24 16:10:50.000000000 +0100
-+++ wvstreams-4.2.2/include/wvvector.h	2007-01-24 16:14:47.000000000 +0100
-@@ -347,7 +347,7 @@
-     }
- 
-     /** A simple iterator that walks through all elements in the list. */
--    class Iter : public WvVector::IterBase
-+    class Iter : public WvVectorBase::IterBase
-     {
-     public:
- 	/** Binds the iterator to the specified vector. */




More information about the arch-commits mailing list