[arch-commits] CVS update of extra/network/weex (3 files)

Eric Belanger eric at archlinux.org
Fri Dec 14 07:43:34 UTC 2007


    Date: Friday, December 14, 2007 @ 02:43:34
  Author: eric
    Path: /home/cvs-extra/extra/network/weex

 Removed: PKGBUILD (1.6) weex-2.6.1.5-formatstring.patch (1.1)
          weex-2.6.1.5-va_list.patch (1.1)

extra repo cleanup


---------------------------------+
 PKGBUILD                        |   24 ------------------------
 weex-2.6.1.5-formatstring.patch |   13 -------------
 weex-2.6.1.5-va_list.patch      |   23 -----------------------
 3 files changed, 60 deletions(-)


Index: extra/network/weex/PKGBUILD
diff -u extra/network/weex/PKGBUILD:1.6 extra/network/weex/PKGBUILD:removed
--- extra/network/weex/PKGBUILD:1.6	Sun May 28 03:11:31 2006
+++ extra/network/weex/PKGBUILD	Fri Dec 14 02:43:34 2007
@@ -1,24 +0,0 @@
-# $Id: PKGBUILD,v 1.6 2006/05/28 07:11:31 andyrtr Exp $
-# Maintainer: dorphell <dorphell at archlinux.org>
-# Contributor: Tom Newsom <Jeepster at gmx.co.uk>
-# Maintainer :
-
-pkgname=weex
-pkgver=2.6.1.5
-pkgrel=2
-pkgdesc="With weex, the maintainer of a web site or archive that must be administered through FTP interaction can largely ignore that process"
-arch=(i686 x86_64)
-source=(http://umn.dl.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz \
-weex-2.6.1.5-formatstring.patch weex-2.6.1.5-va_list.patch)
-md5sums=('c10192608ab9f715c4c1ea63cf6ad2da' 'a12d955c5a4d6b059395a0da22942114' \
-         '522552e03b82ab5669fd21c558290691')
-url="http://weex.sourceforge.net/"
-
-build() {
-cd $startdir/src/$pkgname-$pkgver
-patch -Np0 -i ../weex-2.6.1.5-formatstring.patch
-[ "$CARCH" == "x86_64" ] && patch -Np0 -i ../weex-2.6.1.5-va_list.patch
-./configure --prefix=/usr
-make || return 1
-make prefix=$startdir/pkg/usr install
-}
Index: extra/network/weex/weex-2.6.1.5-formatstring.patch
diff -u extra/network/weex/weex-2.6.1.5-formatstring.patch:1.1 extra/network/weex/weex-2.6.1.5-formatstring.patch:removed
--- extra/network/weex/weex-2.6.1.5-formatstring.patch:1.1	Tue Oct 11 12:32:12 2005
+++ extra/network/weex/weex-2.6.1.5-formatstring.patch	Fri Dec 14 02:43:34 2007
@@ -1,13 +0,0 @@
-Patch for CAN-2005-3150 provided by Ulf Harnhammar.
-
---- src/log.c.old	2005-10-02 03:49:34.495603240 +0200
-+++ src/log.c	2005-10-02 03:50:18.064979688 +0200
-@@ -183,7 +183,7 @@ void log_flush(void)
- 
- 	fp=log_open();
- 	for(i=0;i<max_log;i++){
--		fprintf(fp,log_str[i]);
-+		fprintf(fp,"%s",log_str[i]);
- 		free(log_str[i]);
- 	}
- 	free(log_str);
Index: extra/network/weex/weex-2.6.1.5-va_list.patch
diff -u extra/network/weex/weex-2.6.1.5-va_list.patch:1.1 extra/network/weex/weex-2.6.1.5-va_list.patch:removed
--- extra/network/weex/weex-2.6.1.5-va_list.patch:1.1	Sun May 28 03:11:31 2006
+++ extra/network/weex/weex-2.6.1.5-va_list.patch	Fri Dec 14 02:43:34 2007
@@ -1,23 +0,0 @@
---- src/strlib.c.orig	2003-08-18 11:52:38.000000000 +0200
-+++ src/strlib.c	2004-07-05 20:32:48.853638760 +0200
-@@ -167,14 +167,16 @@
- -------------------------------------------------- */
- char *str_dup_printf(const char *format, ...)
- {
--	va_list ap1,ap2;
-+	va_list ap1;
- 	char *ptr;
- 
- 	va_start(ap1,format);
--	G_VA_COPY(ap2,ap1);
-+	//G_VA_COPY(ap2,ap1);
- 	ptr=str_malloc(printf_string_upper_bound(format,ap1));
--	vsprintf(ptr,format,ap2);
--	va_end(ap2);
-+	va_end(ap1);
-+	va_start(ap1,format);
-+	vsprintf(ptr,format,ap1);
-+	va_end(ap1);
- 
- 	return(ptr);
- }




More information about the arch-commits mailing list