[Frugalware-git] frugalware-current: openssl-1.0.1-5-x86_64

2014-01-12 Thread kikadf
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=383aabd1ca28d9e080eaf41589da83fd9c801249

commit 383aabd1ca28d9e080eaf41589da83fd9c801249
Author: kikadf kikadf...@gmail.com
Date:   Sun Jan 12 10:17:44 2014 +0100

openssl-1.0.1-5-x86_64

* Fix CVE-2013-4353
* Fix CVE-2013-6449
* Fix CVE-2013-6450

diff --git a/source/base/openssl/CVE-2013-4353.patch 
b/source/base/openssl/CVE-2013-4353.patch
new file mode 100644
index 000..139b68f
--- /dev/null
+++ b/source/base/openssl/CVE-2013-4353.patch
@@ -0,0 +1,25 @@
+From: Dr. Stephen Henson st...@openssl.org
+Date: Mon, 6 Jan 2014 14:35:04 +
+Subject: [PATCH] Fix for TLS record tampering bug CVE-2013-4353
+Origin: upstream, commit:197e0ea817ad64820789d86711d55ff50d71f631
+
+diff --git a/ssl/s3_both.c b/ssl/s3_both.c
+index 1e5dcab..53b9390 100644
+--- a/ssl/s3_both.c
 b/ssl/s3_both.c
+@@ -210,7 +210,11 @@ static void ssl3_take_mac(SSL *s)
+   {
+   const char *sender;
+   int slen;
+-
++  /* If no new cipher setup return immediately: other functions will
++   * set the appropriate error.
++   */
++  if (s-s3-tmp.new_cipher == NULL)
++  return;
+   if (s-state  SSL_ST_CONNECT)
+   {
+   sender=s-method-ssl3_enc-server_finished_label;
+--
+1.8.5.2
+
diff --git a/source/base/openssl/CVE-2013-6449.patch 
b/source/base/openssl/CVE-2013-6449.patch
new file mode 100644
index 000..eba717a
--- /dev/null
+++ b/source/base/openssl/CVE-2013-6449.patch
@@ -0,0 +1,83 @@
+Author: Dr. Stephen Henson st...@openssl.org
+Date:   Thu Dec 19 14:37:39 2013 +
+Subject: Fix CVE-2013-6449
+
+This is a combination of upstream commits:
+0294b2be5f4c11e60620c0018674ff0e17b14238
+ca989269a2876bae79393bd54c3e72d49975fc75
+
+diff --git a/ssl/s3_both.c b/ssl/s3_both.c
+index ead01c8..1e5dcab 100644
+--- a/ssl/s3_both.c
 b/ssl/s3_both.c
+@@ -161,6 +161,8 @@ int ssl3_send_finished(SSL *s, int a, int b, const char 
*sender, int slen)
+
+   i=s-method-ssl3_enc-final_finish_mac(s,
+   sender,slen,s-s3-tmp.finish_md);
++  if (i == 0)
++  return 0;
+   s-s3-tmp.finish_md_len = i;
+   memcpy(p, s-s3-tmp.finish_md, i);
+   p+=i;
+diff --git a/ssl/s3_pkt.c b/ssl/s3_pkt.c
+index 804291e..c4bc4e7 100644
+--- a/ssl/s3_pkt.c
 b/ssl/s3_pkt.c
+@@ -1459,8 +1459,14 @@ int ssl3_do_change_cipher_spec(SSL *s)
+   slen=s-method-ssl3_enc-client_finished_label_len;
+   }
+
+-  s-s3-tmp.peer_finish_md_len = s-method-ssl3_enc-final_finish_mac(s,
++  i = s-method-ssl3_enc-final_finish_mac(s,
+   sender,slen,s-s3-tmp.peer_finish_md);
++  if (i == 0)
++  {
++  SSLerr(SSL_F_SSL3_DO_CHANGE_CIPHER_SPEC, ERR_R_INTERNAL_ERROR);
++  return 0;
++  }
++  s-s3-tmp.peer_finish_md_len = i;
+
+   return(1);
+   }
+diff --git a/ssl/t1_enc.c b/ssl/t1_enc.c
+index 809ad2e..72015f5 100644
+--- a/ssl/t1_enc.c
 b/ssl/t1_enc.c
+@@ -915,18 +915,19 @@ int tls1_final_finish_mac(SSL *s,
+   if (mask  ssl_get_algorithm2(s))
+   {
+   int hashsize = EVP_MD_size(md);
+-  if (hashsize  0 || hashsize  (int)(sizeof buf - 
(size_t)(q-buf)))
++  EVP_MD_CTX *hdgst = s-s3-handshake_dgst[idx];
++  if (!hdgst || hashsize  0 || hashsize  (int)(sizeof 
buf - (size_t)(q-buf)))
+   {
+   /* internal error: 'buf' is too small for this 
cipersuite! */
+   err = 1;
+   }
+   else
+   {
+-  
EVP_MD_CTX_copy_ex(ctx,s-s3-handshake_dgst[idx]);
+-  EVP_DigestFinal_ex(ctx,q,i);
+-  if (i != (unsigned int)hashsize) /* can't 
really happen */
++  if (!EVP_MD_CTX_copy_ex(ctx, hdgst) ||
++  !EVP_DigestFinal_ex(ctx,q,i) ||
++  (i != (unsigned int)hashsize))
+   err = 1;
+-  q+=i;
++  q+=hashsize;
+   }
+   }
+   }
+diff --git a/ssl/s3_lib.c b/ssl/s3_lib.c
+index bf832bb..c4ef273 100644
+--- a/ssl/s3_lib.c
 b/ssl/s3_lib.c
+@@ -4286,7 +4286,7 @@ need to go to SSL_ST_ACCEPT.
+ long ssl_get_algorithm2(SSL *s)
+   {
+   long alg2 = s-s3-tmp.new_cipher-algorithm2;
+-  if (TLS1_get_version(s) = TLS1_2_VERSION 
++  if (s-method-version == TLS1_2_VERSION 
+   alg2 == (SSL_HANDSHAKE_MAC_DEFAULT|TLS1_PRF))
+   return SSL_HANDSHAKE_MAC_SHA256 | TLS1_PRF_SHA256;
+   return alg2;
diff --git 

[Frugalware-git] frugalware-1.9: openssl-1.0.1-5arcturus1-x86_64

2014-01-12 Thread kikadf
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-1.9.git;a=commitdiff;h=9338c1bf759e5c5360f894682830435f833637c7

commit 9338c1bf759e5c5360f894682830435f833637c7
Author: kikadf kikadf...@gmail.com
Date:   Sun Jan 12 10:20:40 2014 +0100

openssl-1.0.1-5arcturus1-x86_64

* Fix CVE-2013-4353
* Fix CVE-2013-6449
* Fix CVE-2013-6450

diff --git a/source/base/openssl/CVE-2013-4353.patch 
b/source/base/openssl/CVE-2013-4353.patch
new file mode 100644
index 000..139b68f
--- /dev/null
+++ b/source/base/openssl/CVE-2013-4353.patch
@@ -0,0 +1,25 @@
+From: Dr. Stephen Henson st...@openssl.org
+Date: Mon, 6 Jan 2014 14:35:04 +
+Subject: [PATCH] Fix for TLS record tampering bug CVE-2013-4353
+Origin: upstream, commit:197e0ea817ad64820789d86711d55ff50d71f631
+
+diff --git a/ssl/s3_both.c b/ssl/s3_both.c
+index 1e5dcab..53b9390 100644
+--- a/ssl/s3_both.c
 b/ssl/s3_both.c
+@@ -210,7 +210,11 @@ static void ssl3_take_mac(SSL *s)
+   {
+   const char *sender;
+   int slen;
+-
++  /* If no new cipher setup return immediately: other functions will
++   * set the appropriate error.
++   */
++  if (s-s3-tmp.new_cipher == NULL)
++  return;
+   if (s-state  SSL_ST_CONNECT)
+   {
+   sender=s-method-ssl3_enc-server_finished_label;
+--
+1.8.5.2
+
diff --git a/source/base/openssl/CVE-2013-6449.patch 
b/source/base/openssl/CVE-2013-6449.patch
new file mode 100644
index 000..eba717a
--- /dev/null
+++ b/source/base/openssl/CVE-2013-6449.patch
@@ -0,0 +1,83 @@
+Author: Dr. Stephen Henson st...@openssl.org
+Date:   Thu Dec 19 14:37:39 2013 +
+Subject: Fix CVE-2013-6449
+
+This is a combination of upstream commits:
+0294b2be5f4c11e60620c0018674ff0e17b14238
+ca989269a2876bae79393bd54c3e72d49975fc75
+
+diff --git a/ssl/s3_both.c b/ssl/s3_both.c
+index ead01c8..1e5dcab 100644
+--- a/ssl/s3_both.c
 b/ssl/s3_both.c
+@@ -161,6 +161,8 @@ int ssl3_send_finished(SSL *s, int a, int b, const char 
*sender, int slen)
+
+   i=s-method-ssl3_enc-final_finish_mac(s,
+   sender,slen,s-s3-tmp.finish_md);
++  if (i == 0)
++  return 0;
+   s-s3-tmp.finish_md_len = i;
+   memcpy(p, s-s3-tmp.finish_md, i);
+   p+=i;
+diff --git a/ssl/s3_pkt.c b/ssl/s3_pkt.c
+index 804291e..c4bc4e7 100644
+--- a/ssl/s3_pkt.c
 b/ssl/s3_pkt.c
+@@ -1459,8 +1459,14 @@ int ssl3_do_change_cipher_spec(SSL *s)
+   slen=s-method-ssl3_enc-client_finished_label_len;
+   }
+
+-  s-s3-tmp.peer_finish_md_len = s-method-ssl3_enc-final_finish_mac(s,
++  i = s-method-ssl3_enc-final_finish_mac(s,
+   sender,slen,s-s3-tmp.peer_finish_md);
++  if (i == 0)
++  {
++  SSLerr(SSL_F_SSL3_DO_CHANGE_CIPHER_SPEC, ERR_R_INTERNAL_ERROR);
++  return 0;
++  }
++  s-s3-tmp.peer_finish_md_len = i;
+
+   return(1);
+   }
+diff --git a/ssl/t1_enc.c b/ssl/t1_enc.c
+index 809ad2e..72015f5 100644
+--- a/ssl/t1_enc.c
 b/ssl/t1_enc.c
+@@ -915,18 +915,19 @@ int tls1_final_finish_mac(SSL *s,
+   if (mask  ssl_get_algorithm2(s))
+   {
+   int hashsize = EVP_MD_size(md);
+-  if (hashsize  0 || hashsize  (int)(sizeof buf - 
(size_t)(q-buf)))
++  EVP_MD_CTX *hdgst = s-s3-handshake_dgst[idx];
++  if (!hdgst || hashsize  0 || hashsize  (int)(sizeof 
buf - (size_t)(q-buf)))
+   {
+   /* internal error: 'buf' is too small for this 
cipersuite! */
+   err = 1;
+   }
+   else
+   {
+-  
EVP_MD_CTX_copy_ex(ctx,s-s3-handshake_dgst[idx]);
+-  EVP_DigestFinal_ex(ctx,q,i);
+-  if (i != (unsigned int)hashsize) /* can't 
really happen */
++  if (!EVP_MD_CTX_copy_ex(ctx, hdgst) ||
++  !EVP_DigestFinal_ex(ctx,q,i) ||
++  (i != (unsigned int)hashsize))
+   err = 1;
+-  q+=i;
++  q+=hashsize;
+   }
+   }
+   }
+diff --git a/ssl/s3_lib.c b/ssl/s3_lib.c
+index bf832bb..c4ef273 100644
+--- a/ssl/s3_lib.c
 b/ssl/s3_lib.c
+@@ -4286,7 +4286,7 @@ need to go to SSL_ST_ACCEPT.
+ long ssl_get_algorithm2(SSL *s)
+   {
+   long alg2 = s-s3-tmp.new_cipher-algorithm2;
+-  if (TLS1_get_version(s) = TLS1_2_VERSION 
++  if (s-method-version == TLS1_2_VERSION 
+   alg2 == (SSL_HANDSHAKE_MAC_DEFAULT|TLS1_PRF))
+   return SSL_HANDSHAKE_MAC_SHA256 | TLS1_PRF_SHA256;
+   return alg2;
diff --git 

[Frugalware-git] frugalware-current: qgit-20140112.ga4b334d-1-x86_64

2014-01-12 Thread kikadf
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=d29fa9b2d15834aba25066244ffd2e4cfbb8accf

commit d29fa9b2d15834aba25066244ffd2e4cfbb8accf
Author: kikadf kikadf...@gmail.com
Date:   Sun Jan 12 10:34:24 2014 +0100

qgit-20140112.ga4b334d-1-x86_64

* Version bump

diff --git a/source/xapps-extra/qgit/FrugalBuild 
b/source/xapps-extra/qgit/FrugalBuild
index 4f39f50..90e036d 100644
--- a/source/xapps-extra/qgit/FrugalBuild
+++ b/source/xapps-extra/qgit/FrugalBuild
@@ -5,7 +5,7 @@
options+=('asneeded')

pkgname=qgit
-pkgver=20140102.g338b924
+pkgver=20140112.ga4b334d
pkgrel=1
pkgdesc=QGit is a git GUI viewer built on Qt/C++.
url=http://digilander.libero.it/mcostalba/;
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] frugalware-current: spice-0.12.4-1-x86_64

2014-01-12 Thread kikadf
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=f645464e95f208e6ae7c55095c42fb9c5a2785e5

commit f645464e95f208e6ae7c55095c42fb9c5a2785e5
Author: kikadf kikadf...@gmail.com
Date:   Sun Jan 12 11:36:42 2014 +0100

spice-0.12.4-1-x86_64

* Change m8r
* Version bump

diff --git a/source/xlib-extra/spice/FrugalBuild 
b/source/xlib-extra/spice/FrugalBuild
index 5ceaf1d..d576a2b 100644
--- a/source/xlib-extra/spice/FrugalBuild
+++ b/source/xlib-extra/spice/FrugalBuild
@@ -1,8 +1,11 @@
# Compiling time: 0.47 SBU
-# Maintainer: bouleetbil bouleet...@frogdev.info
+# Maintainer: kikadf kikadf...@gmail.com
+# Contributor: bouleetbil bouleet...@frogdev.info
+
+options+=('asneeded')

pkgname=spice
-pkgver=0.12.2
+pkgver=0.12.4
pkgrel=1
url=http://spice-space.org;
source=(http://www.spice-space.org/download/releases/$pkgname-$pkgver.tar.bz2;)
@@ -12,7 +15,7 @@ depends=('pixman' 'celt051' 'cyrus-sasl' 'spice-protocol' \
'xrandr' 'cegui06=0.6.2b-2' 'alsa-lib' 'libxmu' 'libxi' 'pyparsing' 
'libcacard')
groups=('xlib-extra')
archs=('i686' 'x86_64')
-sha1sums=('6cd2a5a71a5f72ac5a53a024b2a8df37fe425e4d')
+sha1sums=('5825cfcf8a786697e45a43aaf372f23b5c441336')
Fconfopts+= --enable-gui --enable-opengl

subpkgs=(${subpkgs[@]} 'spice-server')
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] frugalware-current: spice-protocol-0.12.6-2-x86_64

2014-01-12 Thread kikadf
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=3172b990ce0d3d9319027411a3ec13d595ee329b

commit 3172b990ce0d3d9319027411a3ec13d595ee329b
Author: kikadf kikadf...@gmail.com
Date:   Sun Jan 12 11:34:44 2014 +0100

spice-protocol-0.12.6-2-x86_64

* Change m8r
* Add option asneeded

diff --git a/source/lib-extra/spice-protocol/FrugalBuild 
b/source/lib-extra/spice-protocol/FrugalBuild
index 3dc91bf..abce3f1 100644
--- a/source/lib-extra/spice-protocol/FrugalBuild
+++ b/source/lib-extra/spice-protocol/FrugalBuild
@@ -1,9 +1,12 @@
# Compiling time: 0 SBU
-# Maintainer: bouleetbil bouleet...@frogdev.info
+# Maintainer: kikadf kikadf...@gmail.com
+# Contributor: bouleetbil bouleet...@frogdev.info
+
+options+=('asneeded')

pkgname=spice-protocol
pkgver=0.12.6
-pkgrel=1
+pkgrel=2
url=http://spice-space.org/;
source=(http://www.spice-space.org/download/releases/$pkgname-$pkgver.tar.bz2;)
up2date=Flasttar http://www.spice-space.org/download.html;
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] frugalware-current: spice-vdagent-0.15.0-1-x86_64

2014-01-12 Thread kikadf
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=39bb45d83449680319142c484244b4165fb8aa4e

commit 39bb45d83449680319142c484244b4165fb8aa4e
Author: kikadf kikadf...@gmail.com
Date:   Sun Jan 12 11:37:39 2014 +0100

spice-vdagent-0.15.0-1-x86_64

* Change m8r
* Version bump

diff --git a/source/apps-extra/spice-vdagent/FrugalBuild 
b/source/apps-extra/spice-vdagent/FrugalBuild
index 7c16d72..d548806 100644
--- a/source/apps-extra/spice-vdagent/FrugalBuild
+++ b/source/apps-extra/spice-vdagent/FrugalBuild
@@ -1,8 +1,11 @@
# Compiling Time: 0.04 SBU
-# Maintainer: bouleetbil bouleet...@frogdev.info
+# Maintainer: kikadf kikadf...@gmail.com
+# Contributor: bouleetbil bouleet...@frogdev.info
+
+options+=('asneeded')

pkgname=spice-vdagent
-pkgver=0.14.0
+pkgver=0.15.0
pkgrel=1
pkgdesc=Agent for Spice guests
url=http://spice-space.org/download/releases/;
@@ -13,7 +16,7 @@ groups=('apps-extra')
archs=('i686' 'x86_64')
up2date=Flasttar $url
source=($url/$pkgname-$pkgver.tar.bz2)
-sha1sums=('2b1e913251906087cf85389051801377f38a62a3')
+sha1sums=('0445725a6a387bfe87fef1dc88b705035b8c6fc6')

# How to test: http://www.linux-kvm.org/page/SPICE
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] frugalware-current: vlc-2.0.9-1-x86_64

2014-01-12 Thread Michel Hermier
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=66dd11051d2a2f968250454e8762c5884ece98a5

commit 66dd11051d2a2f968250454e8762c5884ece98a5
Author: Michel Hermier herm...@frugalware.org
Date:   Sun Jan 12 11:36:23 2014 +0100

vlc-2.0.9-1-x86_64

* Bump to last 2.0.x series (recompile with last libass while at it).

diff --git a/source/xmultimedia/vlc/FrugalBuild 
b/source/xmultimedia/vlc/FrugalBuild
index 54fa2f7..fbd112b 100644
--- a/source/xmultimedia/vlc/FrugalBuild
+++ b/source/xmultimedia/vlc/FrugalBuild
@@ -5,12 +5,12 @@

options+=('asneeded')

-USE_DEVEL=${USE_DEVEL:-n}
+: ${USE_DEVEL=n}

pkgname=vlc
-pkgver=2.0.8
-pkgextraver=a
-pkgrel=2
+pkgver=2.0.9
+pkgextraver=
+pkgrel=1
pkgdesc=The cross-platform media player and streaming server.
url=http://www.videolan.org/vlc/;
depends=('e2fsprogs' 'libxpm=3.5.8-1' 'libxdmcp' 'libshout' 'avahi' \
@@ -51,7 +51,7 @@ archs=('i686' 'x86_64')
up2date=Flasttar http://download.videolan.org/pub/videolan/vlc/last/;
if ! Fuse DEVEL; then
source=(http://download.videolan.org/pub/videolan/vlc/$pkgver/$pkgname-$pkgver$pkgextraver.tar.xz;)
-   sha1sums=('dce3d05498c68c5aa86b6ed5db37f213a4bdd61c')
+   sha1sums=('d82131914023fff2a414859228a38fcc19ab59d9')
else
pkgver=2.0.0
pkgextraver=-rc1
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] frugalware-current: spice-gtk-0.9-5-x86_64

2014-01-12 Thread kikadf
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=858050659c043e4996c614c45bea1ff905e5d60d

commit 858050659c043e4996c614c45bea1ff905e5d60d
Author: kikadf kikadf...@gmail.com
Date:   Sun Jan 12 11:38:13 2014 +0100

spice-gtk-0.9-5-x86_64

* Change m8r
* Add option asneeded

diff --git a/source/xlib-extra/spice-gtk/FrugalBuild 
b/source/xlib-extra/spice-gtk/FrugalBuild
index 3bf0311..2828ad1 100644
--- a/source/xlib-extra/spice-gtk/FrugalBuild
+++ b/source/xlib-extra/spice-gtk/FrugalBuild
@@ -1,9 +1,12 @@
# Compiling time: 0.47 SBU
-# Maintainer: bouleetbil bouleet...@frogdev.info
+# Maintainer: kikadf kikadf...@gmail.com
+# Contributor: bouleetbil bouleet...@frogdev.info
+
+options+=('asneeded')

pkgname=spice-gtk
pkgver=0.9
-pkgrel=4
+pkgrel=5
url=http://spice-space.org/page/Spice-Gtk;
source=(http://spice-space.org/download/gtk/$pkgname-$pkgver.tar.bz2)
up2date=Flasttar $url
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] frugalware-1.9: spice-0.12.2-2arcturus1-x86_64

2014-01-12 Thread kikadf
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-1.9.git;a=commitdiff;h=60bd436381ed31eefa81351471c49438ea754ffd

commit 60bd436381ed31eefa81351471c49438ea754ffd
Author: kikadf kikadf...@gmail.com
Date:   Sun Jan 12 11:56:22 2014 +0100

spice-0.12.2-2arcturus1-x86_64

* Fix CVE-2013-4130.patch

diff --git a/source/xlib-extra/spice/CVE-2013-4130.patch 
b/source/xlib-extra/spice/CVE-2013-4130.patch
new file mode 100644
index 000..a19040c
--- /dev/null
+++ b/source/xlib-extra/spice/CVE-2013-4130.patch
@@ -0,0 +1,52 @@
+Description: Use RING_FOREACH_SAFE in red_channel.c functions which are 
missing it
+ Currently, both red_channel_pipes_add_type() and
+ red_channel_pipes_add_empty_msg() use plaing RING_FOREACH() which is not
+ safe versus removals from the ring within the loop body.
+ .
+ Although it's rare, such a removal can occur in both cases.  In the case
+ of red_channel_pipes_add_type() we have:
+ red_channel_pipes_add_type()
+ - red_channel_client_pipe_add_type()
+ - red_channel_client_push()
+ .
+ And in the case of red_channel_client_pipes_add_empty_msg() we have:
+ red_channel_client_pipes_add_empty_msg()
+ - red_channel_client_pipe_add_empty_msg()
+ - red_channel_client_push()
+ .
+ But red_channel_client_push() can cause a removal from the clients ring if
+ a network error occurs:
+ red_channel_client_push()
+ - red_channel_client_send()
+ - red_peer_handle_outgoing()
+ - handler-cb-on_error callback
+ =  red_channel_client_default_peer_on_error()
+ - red_channel_client_disconnect()
+ - red_channel_remove_client()
+ - ring_remove()
+ .
+ When this error path does occur, the assertion in RING_FOREACH()'s
+ ring_next() trips, and the process containing the spice server is aborted.
+ i.e. your whole VM dies, as a result of an unfortunately timed network
+ error on the spice channel.
+Origin: backport, 
http://cgit.freedesktop.org/spice/spice/commit/?id=53488f0275d6c8a121af49f7ac817d09ce68090d
+Bug-Debian: http://bugs.debian.org/717030
+Bug-RedHat: https://bugzilla.redhat.com/show_bug.cgi?id=984769
+Forwarded: not-needed
+Author: David Gibson da...@gibson.dropbear.id.au
+Author: Salvatore Bonaccorso car...@debian.org
+Last-Update: 2014-01-03
+--- a/server/red_channel.c
 b/server/red_channel.c
+@@ -1213,9 +1213,9 @@
+
+ void red_channel_pipes_add_type(RedChannel *channel, int pipe_item_type)
+ {
+-RingItem *link;
++RingItem *link, *next;
+
+-RING_FOREACH(link, channel-clients) {
++RING_FOREACH_SAFE(link, next, channel-clients) {
+ red_channel_client_pipe_add_type(
+ SPICE_CONTAINEROF(link, RedChannelClient, channel_link),
+ pipe_item_type);
diff --git a/source/xlib-extra/spice/FrugalBuild 
b/source/xlib-extra/spice/FrugalBuild
index 5ceaf1d..4413708 100644
--- a/source/xlib-extra/spice/FrugalBuild
+++ b/source/xlib-extra/spice/FrugalBuild
@@ -1,9 +1,12 @@
# Compiling time: 0.47 SBU
-# Maintainer: bouleetbil bouleet...@frogdev.info
+# Maintainer: kikadf kikadf...@gmail.com
+# Contributor: bouleetbil bouleet...@frogdev.info
+
+options+=('asneeded')

pkgname=spice
pkgver=0.12.2
-pkgrel=1
+pkgrel=2arcturus1
url=http://spice-space.org;
source=(http://www.spice-space.org/download/releases/$pkgname-$pkgver.tar.bz2;)
up2date=Flasttar http://www.spice-space.org/download/releases/;
@@ -22,8 +25,13 @@ subdepends=(${subdepends[@]} celt051 libglu libjpeg 
pixman cyrus-sasl libuuid
subgroups=(${subgroups[@]} 'xlib-extra')
subarchs=(${subarchs[@]} 'i686 x86_64')

+# FSA fix ***
+source=(${source[@]} CVE-2013-4130.patch)
+sha1sums=(${sha1sums[@]} '36fbe9d347dcc1da79a962bebef9098f46547d8a')
+# ***
+
build() {
-   Fcd
+   Fpatchall
Fconf
Fsed tests  server/Makefile*
make || Fdie
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] homepage-ng: Add FSA for spice

2014-01-12 Thread kikadf
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=homepage-ng.git;a=commitdiff;h=1bac75edf5c0db4af33479d8dafc986ceb3b9376

commit 1bac75edf5c0db4af33479d8dafc986ceb3b9376
Author: kikadf kikadf...@gmail.com
Date:   Sun Jan 12 12:41:52 2014 +0100

Add FSA for spice

diff --git a/frugalware/xml/security.xml b/frugalware/xml/security.xml
index a23f1c8..e392e9f 100644
--- a/frugalware/xml/security.xml
+++ b/frugalware/xml/security.xml
@@ -26,6 +26,17 @@

fsas
fsa
+   id763/id
+   date2014-01-12/date
+   authorkikadf/author
+   packagespice/package
+   vulnerable0.12.2-1/vulnerable
+   unaffected0.12.2-2arcturus1/unaffected
+   bts/bts
+   
cvehttp://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2013-4130/cve
+   descDavid Gibson of Red Hat discovered that SPICE incorrectly 
handled certain network errors. A remote user able to initiate a SPICE 
connection to an application acting as a SPICE server could use this flaw to 
crash the application./desc
+   /fsa
+   fsa
id762/id
date2014-01-10/date
authorkikadf/author
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] frugalware-current: libclaw-1.7.4-1-x86_64

2014-01-12 Thread DeX77
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=7174fb86094c6f24db1c6c34bb4424145499cd45

commit 7174fb86094c6f24db1c6c34bb4424145499cd45
Author: DeX77 de...@frugalware.org
Date:   Sun Jan 12 15:47:43 2014 +0100

libclaw-1.7.4-1-x86_64

* version bump
* changed maintainer
+ added option asneeded

diff --git a/source/xlib-extra/libclaw/FrugalBuild 
b/source/xlib-extra/libclaw/FrugalBuild
index c392dd7..600f3d0 100644
--- a/source/xlib-extra/libclaw/FrugalBuild
+++ b/source/xlib-extra/libclaw/FrugalBuild
@@ -1,8 +1,10 @@
# Compiling Time: 0.62 SBU
-# Maintainer: Devil505 devil505li...@gmail.com
+# Maintainer: DeX77 de...@frugalware.org
+
+options+=('asneeded')

pkgname=libclaw
-pkgver=1.7.3
+pkgver=1.7.4
pkgrel=1
pkgdesc=C++ Library Absolutely Wonderful
depends=('libstdc++' 'libjpeg=8c' 'libpng=1.4.8')
@@ -10,6 +12,6 @@ makedepends=('boost=1.50.0')
groups=('xlib-extra')
Finclude sourceforge cmake
archs=('i686' 'x86_64')
-sha1sums=('1f66fcade79d6c9e933c4b08227b21d5d3036654')
+sha1sums=('1c11bd83bbdd8f191a204a90a148c860e25ae80b')

# optimization OK
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] homepage-ng: Add FSA for openssl

2014-01-12 Thread kikadf
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=homepage-ng.git;a=commitdiff;h=44c2a177f934b6274d8ef0fbd3498540600a481a

commit 44c2a177f934b6274d8ef0fbd3498540600a481a
Author: kikadf kikadf...@gmail.com
Date:   Sun Jan 12 17:30:16 2014 +0100

Add FSA for openssl

diff --git a/frugalware/xml/security.xml b/frugalware/xml/security.xml
index e392e9f..947e8d3 100644
--- a/frugalware/xml/security.xml
+++ b/frugalware/xml/security.xml
@@ -26,6 +26,21 @@

fsas
fsa
+   id764/id
+   date2014-01-12/date
+   authorkikadf/author
+   packageopenssl/package
+   vulnerable1.0.1-4/vulnerable
+   unaffected1.0.1-5arcturus1/unaffected
+   bts/bts
+   cvehttp://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2013-4353
+   
http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2013-6449
+   
http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2013-6450/cve
+   descAnton Johansson discovered that an invalid TLS handshake 
package could crash OpenSSL with a NULL pointer dereference.
+   Multiple security issues have been fixed in OpenSSL: 
The TLS 1.2 support was susceptible to denial of service and retransmission of 
DTLS messages was fixed.
+   In addition this update disables the insecure 
Dual_EC_DRBG algorithm (which was unused anyway, see 
http://marc.info/?l=openssl-announcem=138747119822324w=2 for further 
information) and no longer uses the RdRand feature available on some Intel CPUs 
as a sole source of entropy unless explicitly requested./desc
+   /fsa
+   fsa
id763/id
date2014-01-12/date
authorkikadf/author
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] homepage-ng: Fix FSA764

2014-01-12 Thread kikadf
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=homepage-ng.git;a=commitdiff;h=726865b891c8592f69cf8bd0f3d89ebe7cbc2a43

commit 726865b891c8592f69cf8bd0f3d89ebe7cbc2a43
Author: kikadf kikadf...@gmail.com
Date:   Sun Jan 12 17:32:18 2014 +0100

Fix FSA764

diff --git a/frugalware/xml/security.xml b/frugalware/xml/security.xml
index 947e8d3..3628f18 100644
--- a/frugalware/xml/security.xml
+++ b/frugalware/xml/security.xml
@@ -38,7 +38,7 @@
http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2013-6450/cve
descAnton Johansson discovered that an invalid TLS handshake package could 
crash OpenSSL with a NULL pointer dereference.
Multiple security issues have been fixed in OpenSSL: The TLS 1.2 support was 
susceptible to denial of service and retransmission of DTLS messages was fixed.
-   In addition this update disables the insecure 
Dual_EC_DRBG algorithm (which was unused anyway, see 
http://marc.info/?l=openssl-announcem=138747119822324w=2 for further 
information) and no longer uses the RdRand feature available on some Intel CPUs 
as a sole source of entropy unless explicitly requested./desc
+   In addition this update disables the insecure 
Dual_EC_DRBG algorithm and no longer uses the RdRand feature available on some 
Intel CPUs as a sole source of entropy unless explicitly requested./desc
/fsa
fsa
id763/id
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] frugalware-current: irrlicht-1.8.1-1-x86_64

2014-01-12 Thread DeX77
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=71c8e4f1aba8b1c1d73235c94bdc57c4fed1e9da

commit 71c8e4f1aba8b1c1d73235c94bdc57c4fed1e9da
Author: DeX77 de...@frugalware.org
Date:   Sun Jan 12 17:33:57 2014 +0100

irrlicht-1.8.1-1-x86_64

* version bump
* changed maintainer
+ added option asneeded

diff --git a/source/xlib-extra/irrlicht/FrugalBuild 
b/source/xlib-extra/irrlicht/FrugalBuild
index fbb7551..ee53f7d 100644
--- a/source/xlib-extra/irrlicht/FrugalBuild
+++ b/source/xlib-extra/irrlicht/FrugalBuild
@@ -17,11 +17,6 @@ sha1sums=('231cd2cf2eefe43bde7c40537ece055a3d6e09cb')
build() {
Fcd

-#  sed -i -e '/^#.*NON_SYSTEM_ZLIB/d' \
-# -e '/^#.*NON_SYSTEM_JPEG/d' \
-# -e '/^#.*NON_SYSTEM_BZLIB/d' \
-# include/IrrCompileConfig.h || Fdie
-
cd source/Irrlicht || Fdie
sed -i -e '/^CXXFLAGS/s:-g.*::' \
-e '/^CXXFLAGS/s:-Wall::' \
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] frugalware-current: irrlicht-1.8.1-1-x86_64

2014-01-12 Thread DeX77
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=d54ada8ea55b8c1b7f8804b45db27484b124dde0

commit d54ada8ea55b8c1b7f8804b45db27484b124dde0
Author: DeX77 de...@frugalware.org
Date:   Sun Jan 12 17:32:47 2014 +0100

irrlicht-1.8.1-1-x86_64

* version bump
* changed maintainer
+ added option asneeded

diff --git a/source/xlib-extra/irrlicht/FrugalBuild 
b/source/xlib-extra/irrlicht/FrugalBuild
index bd10a8b..fbb7551 100644
--- a/source/xlib-extra/irrlicht/FrugalBuild
+++ b/source/xlib-extra/irrlicht/FrugalBuild
@@ -1,8 +1,10 @@
# Compiling Time: 0.11 SBU
-# Maintainer: Devil505 devil505li...@gmail.com
+# Maintainer: DeX77 de...@frugalware.org
+
+options+=('asneeded')

pkgname=irrlicht
-pkgver=1.7.2
+pkgver=1.8.1
pkgrel=1
pkgdesc=An open source high performance realtime 3D graphics engine.
depends=('libgl' 'libjpeg' 'bzip2')
@@ -10,15 +12,15 @@ groups=('xlib-extra')
archs=('i686' 'x86_64')
_F_sourceforge_ext=.zip
Finclude sourceforge
-sha1sums=('2f064cb4c712e1d7aca90a116485b5b166ae6218')
+sha1sums=('231cd2cf2eefe43bde7c40537ece055a3d6e09cb')

build() {
Fcd

-  sed -i -e '/^#.*NON_SYSTEM_ZLIB/d' \
- -e '/^#.*NON_SYSTEM_JPEG/d' \
- -e '/^#.*NON_SYSTEM_BZLIB/d' \
- include/IrrCompileConfig.h || Fdie
+#  sed -i -e '/^#.*NON_SYSTEM_ZLIB/d' \
+# -e '/^#.*NON_SYSTEM_JPEG/d' \
+# -e '/^#.*NON_SYSTEM_BZLIB/d' \
+# include/IrrCompileConfig.h || Fdie

cd source/Irrlicht || Fdie
sed -i -e '/^CXXFLAGS/s:-g.*::' \
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] frugalware-current: * change maintainer * fix up2data

2014-01-12 Thread DeX77
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=14d17820eebda28fe7b85de5f53cb1305bbc07e5

commit 14d17820eebda28fe7b85de5f53cb1305bbc07e5
Author: DeX77 de...@frugalware.org
Date:   Sun Jan 12 17:40:15 2014 +0100

* change maintainer
* fix up2data

diff --git a/source/apps-extra/stress/FrugalBuild 
b/source/apps-extra/stress/FrugalBuild
index 96ccb59..81bf661 100644
--- a/source/apps-extra/stress/FrugalBuild
+++ b/source/apps-extra/stress/FrugalBuild
@@ -1,15 +1,17 @@
# Compiling Time: 0.01 SBU
-# Maintainer: Devil505 devil505li...@gmail.com
+# Maintainer: DeX77 de...@frugalware.org
+
+options+=('asneeded')

pkgname=stress
pkgver=1.0.4
pkgrel=1
pkgdesc=A tool that stress tests your system (CPU, memory, I/O, disks)
-url=http://weather.ou.edu/~apw/projects/stress/;
+url=http://people.seas.harvard.edu/~apw/stress/;
depends=('glibc')
groups=('apps-extra')
archs=('i686' 'x86_64')
up2date=Flasttar $url
source=($url/$pkgname-$pkgver.tar.gz)
-sha1sums=('7ccb6d76d27ddd54461a21411f2bc8491ba65168')
+sha1sums=('25d9c4369a972e652ca386330747ba5749b2c3b3')
# optimization OK
\ No newline at end of file
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] lotesting: libreoffice-4.2.0.2-1-x86_64

2014-01-12 Thread Miklos Vajna
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=lotesting.git;a=commitdiff;h=f86e8956bc27c307321d67c9dacf41a94d7fc873

commit f86e8956bc27c307321d67c9dacf41a94d7fc873
Author: Miklos Vajna vmik...@frugalware.org
Date:   Sun Jan 12 18:06:36 2014 +0100

libreoffice-4.2.0.2-1-x86_64

- depend on newer liborcus, so Calc tests can be enabled

diff --git a/source/xapps/libreoffice/FrugalBuild 
b/source/xapps/libreoffice/FrugalBuild
index a182fb9..0a3323c 100644
--- a/source/xapps/libreoffice/FrugalBuild
+++ b/source/xapps/libreoffice/FrugalBuild
@@ -17,7 +17,7 @@ unset install
depends=('libxml2' 'libsndfile' 'openjre' 'fontconfig' 'libpng=1.4.1' \
'flex' 'neon=0.26.1' 'zip' 'unzip' 'expat' 'cups' 'desktop-file-utils' 
'perl-archive-zip' \
'unixodbc=2.3.1' 'libxaw=1.0.5' 'libxslt' 'startup-notification=0.9-3' \
-'libvisio=0.0.24-2' 'libcdr=0.0.10' 'libetonyek' 'libfreehand' 
'libmspub' 'libe-book' 'liborcus' \
+'libvisio=0.0.24-2' 'libcdr=0.0.10' 'libetonyek' 'libfreehand' 
'libmspub' 'libe-book' 'liborcus=0.5.1-3' \
'sane-backends' 'lp_solve' 'silgraphite' 'libexttextcat=3.4.0' 'librdf' 
'graphite2' 'libcmis=0.3.0-2' 'clucene' \
'liblangtag' 'python-3.0' 'poppler-glib=0.18' 'libodfgen' 'libmwaw=0.2.0' 
'hyphen' 'mythes' \
# required by Base
@@ -207,14 +207,6 @@ build()
Fpatchall
sed -i '/CppunitTest_pdfimport/d' sdext/Module_sdext.mk # disable failing check
sed -i '/CppunitTest_sw_ooxmlexport/d' sw/Module_sw.mk # 
test1Table1Page::Import_Export_Import fails
-   sed -i '/CppunitTest_sc_ucalc/d' sc/Module_sc.mk # 
DynamicLibraryManagerException: Failed to load dynamic library: 
.../LinkTarget/CppunitTest/libtest_sc_ucalc.so
-   sed -i '/CppunitTest_sc_filters_test/d' sc/Module_sc.mk # 
DynamicLibraryManagerException: Failed to load dynamic library: 
.../LinkTarget/CppunitTest/libtest_sc_filters_test.so
-   sed -i '/CppunitTest_sc_opencl_test/d' sc/Module_sc.mk # 
DynamicLibraryManagerException: Failed to load dynamic library: 
.../LinkTarget/CppunitTest/libtest_sc_opencl_test.so
-   sed -i '/CppunitTest_sc_rangelst_test/d' sc/Module_sc.mk # 
DynamicLibraryManagerException: Failed to load dynamic library: 
.../LinkTarget/CppunitTest/libtest_sc_rangelst_test.so
-   sed -i '/CppunitTest_sc_subsequent_filters_test/d' sc/Module_sc.mk # 
DynamicLibraryManagerException: Failed to load dynamic library: 
.../libtest_sc_subsequent_filters_test.so
-   sed -i '/CppunitTest_sc_subsequent_export_test/d' sc/Module_sc.mk # 
DynamicLibraryManagerException: Failed to load dynamic library: 
.../libtest_sc_subsequent_export_test.so
-   sed -i '/CppunitTest_chart2_export/d' chart2/Module_chart2.mk # 
DynamicLibraryManagerException: Failed to load dynamic library: 
.../libtest_chart2_export.so
-   sed -i '/CppunitTest_chart2_import/d' chart2/Module_chart2.mk # 
DynamicLibraryManagerException: Failed to load dynamic library: 
.../libtest_chart2_import.so
touch autogen.lastrun
_F_conf_configure=./autogen.sh
Fconfopts+= --prefix=/usr --sysconfdir=/etc --localstatedir=/var 
--docdir=/usr/share/doc/libreoffice-$pkgver --infodir=/usr/share/info 
--mandir=/usr/share/man
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] frugalware-current: glfw-3.0.4-1-x86_64

2014-01-12 Thread DeX77
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=fda50e578f1387f8b06a458992abac836b278eec

commit fda50e578f1387f8b06a458992abac836b278eec
Author: DeX77 de...@frugalware.org
Date:   Sun Jan 12 18:21:03 2014 +0100

glfw-3.0.4-1-x86_64

* version bump
* changed maintainer
+ added option asneeded

diff --git a/source/x11-extra/glfw/FrugalBuild 
b/source/x11-extra/glfw/FrugalBuild
index ad42d45..274445d 100644
--- a/source/x11-extra/glfw/FrugalBuild
+++ b/source/x11-extra/glfw/FrugalBuild
@@ -1,28 +1,29 @@
# Compiling Time: 0.13 SBU
-# Maintainer: Devil505 devil505li...@gmail.com
+# Maintainer: DeX77 de...@frugalware.org
+
+options+=('asneeded')

pkgname=glfw
-pkgver=2.7.8
+pkgver=3.0.4
pkgrel=1
pkgdesc=A free, open source, portable framework for OpenGL application 
development.
-depends=('libgl' 'libxrandr' 'glibc' 'libxdamage' 'libglu')
+depends=('libgl' 'libxrandr' 'glibc' 'libxdamage' 'libglu' 'xinput')
+makedepends=('doxygen')
_F_sourceforge_ext=.tar.bz2
-Finclude sourceforge
+Finclude sourceforge cmake
groups=('x11-extra')
archs=('i686' 'x86_64')
-sha1sums=('d1a79ad0cab5b4b7a2b84c05bab0aec34b81f7c3')
+sha1sums=('7a033b38bf9949fdc7036233ab03b61ba9d930c0')

unset MAKEFLAGS

build()
{
- Fcd
- export LFLAGS+=-lrt
- make x11 || Fdie
- make PREFIX=$Fdestdir/usr x11-dist-install || Fdie
- Fdocrel docs/*.pdf
+ CMake_build
+ Fdocrel docs/html/*
+
# fix pc file prefix path
- sed -i s|$Fdestdir||g $Fdestdir/usr/lib/pkgconfig/lib$pkgname.pc || 
Fdie
+ Fsed $Fdestdir $Fdestdir/usr/lib/pkgconfig/lib$pkgname.pc
}

# optimization OK
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] frugalware-current: raptor-2.0.12-1-x86_64

2014-01-12 Thread DeX77
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=cf9ecb39681198cf40f997f828ab41184f98b4b2

commit cf9ecb39681198cf40f997f828ab41184f98b4b2
Author: DeX77 de...@frugalware.org
Date:   Sun Jan 12 18:39:18 2014 +0100

raptor-2.0.12-1-x86_64

* version bump
* changed maintainer
+ added option asneeded

diff --git a/source/lib/raptor/FrugalBuild b/source/lib/raptor/FrugalBuild
index 41c6379..8f8a532 100644
--- a/source/lib/raptor/FrugalBuild
+++ b/source/lib/raptor/FrugalBuild
@@ -1,10 +1,12 @@
# Compiling Time: 0.19 SBU
-# Maintainer: Devil505 devil505li...@gmail.com
+# Maintainer: DeX77 de...@frugalware.org
# Contributor: Tuxbubling tuxbubl...@tiscali.fr

+options+=('asneeded')
+
pkgname=raptor
_F_archive_name=raptor2
-pkgver=2.0.8
+pkgver=2.0.12
pkgrel=1
pkgdesc=Library providing a set of parsers that generate Resource Description 
Framework (RDF).
url=http://librdf.org/raptor/;
@@ -13,6 +15,6 @@ groups=('lib')
archs=('i686' 'x86_64' 'arm')
up2date=Flasttar $url
source=(http://download.librdf.org/source/$_F_archive_name-$pkgver.tar.gz)
-sha1sums=('6caec62d28dbf5bc26e8de5a46101b52aabf94fd')
+sha1sums=('d485d409e93b79a9d3690ba2b9d15ca6e1c4b84e')

# optimization OK
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] frugalware-current: exiv2-0.24-1-x86_64

2014-01-12 Thread DeX77
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=784d8c9650bb086f8b0cb2f05d8b43a64a7b9d8f

commit 784d8c9650bb086f8b0cb2f05d8b43a64a7b9d8f
Author: DeX77 de...@frugalware.org
Date:   Sun Jan 12 18:48:47 2014 +0100

exiv2-0.24-1-x86_64

* version bump
* changed maintainer
+ added option asneeded

diff --git a/source/lib/exiv2/FrugalBuild b/source/lib/exiv2/FrugalBuild
index f81d9fe..5e7b04b 100644
--- a/source/lib/exiv2/FrugalBuild
+++ b/source/lib/exiv2/FrugalBuild
@@ -1,9 +1,12 @@
# Compiling Time: 1.00 SBU
-# Maintainer: Devil505 devil505li...@gmail.com
+# Maintainer: DeX77 de...@frugalware.org
+# Contributor: Devil505 devil505li...@gmail.com
# Contributor: crazy cr...@frugalware.org

+options+=('asneeded')
+
pkgname=exiv2
-pkgver=0.23
+pkgver=0.24
pkgrel=1
pkgdesc=Exiv2 is a C++ library and a command line utility to access image 
metadata.
url=http://www.exiv2.org/;
@@ -13,13 +16,6 @@ archs=('i686' 'x86_64' 'arm')
up2date=lynx -dump http://www.exiv2.org/download.html|grep -m1 '.tar.gz'|sed 
's/.*v2-\(.*\).t.*/\1/'
source=($url/$pkgname-$pkgver.tar.gz)
Fconfopts+= --with-zlib=/usr
-sha1sums=('5f342bf642477526f41add11d6ee7787cdcd639f')
-
-build() {
-   Fcd
-   Fconf
-   Fmake
-   make DESTDIR=$Fdestdir install || Fdie
-}
+sha1sums=('2f19538e54f8c21c180fa96d17677b7cff7dc1bb')

# optimization OK
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] frugalware-current: libatomic_ops-7.4.0-1-x86_64

2014-01-12 Thread DeX77
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=2e08388640951edb68326c1eb5800d171a84ee14

commit 2e08388640951edb68326c1eb5800d171a84ee14
Author: DeX77 de...@frugalware.org
Date:   Sun Jan 12 19:43:06 2014 +0100

libatomic_ops-7.4.0-1-x86_64

* version bump
* changed maintainer
+ added option asneeded

diff --git a/source/lib/libatomic_ops/FrugalBuild 
b/source/lib/libatomic_ops/FrugalBuild
index 6d88dfa..a29686e 100644
--- a/source/lib/libatomic_ops/FrugalBuild
+++ b/source/lib/libatomic_ops/FrugalBuild
@@ -1,17 +1,20 @@
# Compiling Time: 0.03 SBU
-# Maintainer: Devil505 devil505li...@gmail.com
+# Maintainer: DeX77 de...@frugalware.org
+# Contributor: Devil505 devil505li...@gmail.com
# Contributor: jedifox j3d1...@free.fr

+options+=('asneeded')
+
pkgname=libatomic_ops
-pkgver=1.2
-pkgrel=2
+pkgver=7.4.0
+pkgrel=1
pkgdesc=Implementation for atomic memory update operations
url=http://www.hpl.hp.com/research/linux/atomic_ops/;
groups=('lib')
depends=()
archs=('i686' 'x86_64' 'arm')
-up2date=lynx -dump http://www.hpl.hp.com/research/linux/atomic_ops/download/ 
|Flasttar
-source=(http://www.hpl.hp.com/research/linux/atomic_ops/download/libatomic_ops-1.2.tar.gz)
-sha1sums=('8bf4134d614acb1a6234b3102e67a847ae9369b0')
+up2date=Flasttar $url/download.php4
+source=($url/download/$pkgname-$pkgver.tar.gz)
+sha1sums=('3397c2b2a02be3c27af6ed603332e81464447653')

# optimization OK
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] frugalware-current: pulseaudio-2.1-3-x86_64

2014-01-12 Thread DeX77
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=1e186523b85fcbed79514e14f89935d1827a7c81

commit 1e186523b85fcbed79514e14f89935d1827a7c81
Author: DeX77 de...@frugalware.org
Date:   Sun Jan 12 19:45:59 2014 +0100

pulseaudio-2.1-3-x86_64

* rebuilt with new libatomic_ops

diff --git a/source/xmultimedia/pulseaudio/FrugalBuild 
b/source/xmultimedia/pulseaudio/FrugalBuild
index 768f798..64ec6c8 100644
--- a/source/xmultimedia/pulseaudio/FrugalBuild
+++ b/source/xmultimedia/pulseaudio/FrugalBuild
@@ -3,10 +3,10 @@

pkgname=pulseaudio
pkgver=2.1
-pkgrel=2
+pkgrel=3
pkgdesc=PulseAudio is a sound server with an advanced plugin system
url=http://pulseaudio.org/;
-depends=('speex' 'liboil' 'audiofile' 'libsndfile' 'libtool' 'libatomic_ops' 
'libsamplerate' 'flac' 'glib2' \
+depends=('speex' 'liboil' 'audiofile' 'libsndfile' 'libtool' 
'libatomic_ops=7.4.0' 'libsamplerate' 'flac' 'glib2' \
'alsa-lib' 'libtool' 'libasyncns' 'libcap=2.19-2' 'json-c')
makedepends=('avahi' 'bluez=4.61' 'jack=0.118.0' 'intltool' 'gconf' \
'libsm' 'libx11' 'libice' 'libxtst' 'xproto' 'kbproto' 'xcb-util=0.3.8' 
'gtk+2')
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] frugalware-current: libburn-1.3.4-1-x86_64

2014-01-12 Thread DeX77
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=2f91d30f2016ba4ff375d4e9a6cfd46063b34035

commit 2f91d30f2016ba4ff375d4e9a6cfd46063b34035
Author: DeX77 de...@frugalware.org
Date:   Sun Jan 12 20:44:12 2014 +0100

libburn-1.3.4-1-x86_64

* version bump
* changed maintainer
+ added option asneeded
* split cdrskin

diff --git a/source/lib/libburn/FrugalBuild b/source/lib/libburn/FrugalBuild
index 687c5e0..4e573c8 100644
--- a/source/lib/libburn/FrugalBuild
+++ b/source/lib/libburn/FrugalBuild
@@ -1,9 +1,12 @@
# Compiling Time: 0.21 SBU
-# Maintainer: Devil505 devil505li...@gmail.com
+# Maintainer: DeX77 de...@frugalware.org
+# Contributor: Devil505 devil505li...@gmail.com
# Contributor: crazy cr...@frugalware.org

+options+=('asneeded')
+
pkgname=libburn
-pkgver=1.2.4
+pkgver=1.3.4
pkgextraver=.pl01
pkgrel=1
pkgdesc=Disc reading/writing library.
@@ -16,7 +19,16 @@ 
source=(http://files.libburnia-project.org/releases/$pkgname-$pkgver.tar.gz;)
signatures=(${source[0]}.sig)
_F_cd_path=${pkgname}-${pkgver}

-#NOTE: Contains cdrskin which could be place in app-extra group. Maybe
-#could we split this package?
+subpkgs=('cdrskin')
+subdescs=('burns preformatted data to CD, DVD, and BD via libburn.')
+subdepends=('libburn')
+subgroups=('apps-extra')
+subarchs=('i686 x86_64 arm')
+
+build() {
+   Fbuild
+   Fsplit cdrskin usr/share/man
+   Fsplit cdrskin usr/bin
+}

# optimization OK
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] frugalware-current: mtdev-1.1.4-1-x86_64

2014-01-12 Thread DeX77
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=0cadf768aea3652aaa529570e13b907bcdb1b5e7

commit 0cadf768aea3652aaa529570e13b907bcdb1b5e7
Author: DeX77 de...@frugalware.org
Date:   Sun Jan 12 20:50:04 2014 +0100

mtdev-1.1.4-1-x86_64

* version bump
* changed maintainer
+ added option asneeded

diff --git a/source/lib/mtdev/FrugalBuild b/source/lib/mtdev/FrugalBuild
index 52be72a..9075cd3 100644
--- a/source/lib/mtdev/FrugalBuild
+++ b/source/lib/mtdev/FrugalBuild
@@ -1,9 +1,12 @@
# Compiling Time: 0.02 SBU
-# Maintainer: Devil505 devil505li...@gmail.com
+# Maintainer: DeX77 de...@frugalware.org
+# Contributor: Devil505 devil505li...@gmail.com
+
+options+=('asneeded')

pkgname=mtdev
-pkgver=1.1.3
-pkgrel=2
+pkgver=1.1.4
+pkgrel=1
pkgdesc=Kernel multi-touch transformation library
url=http://launchpad.net/mtdev;
depends=('glibc')
@@ -11,6 +14,6 @@ groups=('lib')
archs=('i686' 'x86_64' 'arm')
up2date=Flasttar $url
source=($url/trunk/$pkgver/+download/$pkgname-$pkgver.tar.gz)
-sha1sums=('02030d815c39094b03a236c2664d934acab43a17')
+sha1sums=('97fe3318558b84757e4b414ebb77ace4decac94a')

# optimization OK
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] frugalware-current: alienarena-7.66-1-x86_64

2014-01-12 Thread DeX77
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=9e24b82257d53665249b17094e9c7139737ab093

commit 9e24b82257d53665249b17094e9c7139737ab093
Author: DeX77 de...@frugalware.org
Date:   Sun Jan 12 22:35:58 2014 +0100

alienarena-7.66-1-x86_64

* version bump
* changed maintainer

diff --git a/source/games-extra/alienarena/FrugalBuild 
b/source/games-extra/alienarena/FrugalBuild
index a790d52..aad89ab 100644
--- a/source/games-extra/alienarena/FrugalBuild
+++ b/source/games-extra/alienarena/FrugalBuild
@@ -1,26 +1,26 @@
# Compiling Time: 0.25 SBU
-# Maintainer: Devil505 devil505li...@gmail.com
+# Maintainer: DeX77 de...@frugalware.org
+# Contributor: Devil505 devil505li...@gmail.com

pkgname=alienarena
-pkgver=7.60
-pkgextraver=-linux20120629
+pkgver=7.66
+pkgextraver=-linux20130827
pkgrel=1
pkgdesc=Multiplayer retro sci-fi deathmatch game
-url='http://icculus.org/alienarena/rpa/'
depends=('curl' 'libgl' 'libjpeg' 'libxxf86dga' 'libxxf86vm' 'libvorbis' 'sdl' 
'openal' 'freeglut' 'freetype2' 'ode')
makedepends=('pkgconfig' 'unzip' 'hd2u')
groups=('games-extra')
options=('nobuild' 'force')
archs=('i686' 'x86_64')
-up2date=Flasttar http://icculus.org/alienarena/Files/;
-source=(http://icculus.org/alienarena/Files/$pkgname-$pkgver$pkgextraver.tar.gz)
-sha1sums=('da232c2b09f4006775a481c15debfc378f7c5636')
+url='http://red.planetarena.org/'
+up2date=Flasttar $url/files
_F_cd_path=$pkgname-$pkgver
-
_F_desktop_name=Alien Arena
_F_desktop_desc=Multiplayer retro sci-fi deathmatch
_F_desktop_icon=alien-arena
_F_desktop_categories=Game;ActionGame;
+source=(http://downloads.sourceforge.net/project/$pkgname.mirror/Alien%20Arena%20$pkgver/$pkgname-$pkgver$pkgextraver.tar.gz)
+sha1sums=('7c52bfcc8a578167301ccac9d20997716dac8a37')

build() {
Fbuild
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git