[Frugalware-git] homepage-ng: fwng: fixed error in pkg search (quoting strings)

2007-10-08 Thread Krisztian VASAS
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=homepage-ng.git;a=commitdiff;h=a5c89add333b47bfe3f320b02978c21a9063c9e2

commit a5c89add333b47bfe3f320b02978c21a9063c9e2
Author: Krisztian VASAS <[EMAIL PROTECTED]>
Date:   Mon Oct 8 09:54:27 2007 +0200

fwng: fixed error in pkg search (quoting strings)

diff --git a/frugalware/db.inc.php b/frugalware/db.inc.php
index 97e0776..feef300 100644
--- a/frugalware/db.inc.php
+++ b/frugalware/db.inc.php
@@ -139,6 +139,11 @@ class FwDB
{
return $res->RecordCount();
}
+
+   function doQuoteString( &$query )
+   {
+   $query = $this->db->qstr( $query );
+   }
}

?>
diff --git a/frugalware/packages.php b/frugalware/packages.php
index a03b99d..a73383d 100644
--- a/frugalware/packages.php
+++ b/frugalware/packages.php
@@ -169,6 +169,7 @@ function search_pkg()
}
$query .= " order by fwver desc";
$db = new FwDB();
+   $db->doQuoteString( &$query );
$db->doConnect($sqlhost, $sqluser, $sqlpass, "frugalware2");
$res = $db->doQuery($query);
if ($db->doCountRows($res) > 0)
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] homepage-ng: fwng: last quote patch was not good, maybe now solved

2007-10-08 Thread Krisztian VASAS
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=homepage-ng.git;a=commitdiff;h=25dfda0244cc387c1938823a817470e71d3d6ac8

commit 25dfda0244cc387c1938823a817470e71d3d6ac8
Author: Krisztian VASAS <[EMAIL PROTECTED]>
Date:   Mon Oct 8 10:09:31 2007 +0200

fwng: last quote patch was not good, maybe now solved

diff --git a/frugalware/db.inc.php b/frugalware/db.inc.php
index feef300..97e0776 100644
--- a/frugalware/db.inc.php
+++ b/frugalware/db.inc.php
@@ -139,11 +139,6 @@ class FwDB
{
return $res->RecordCount();
}
-
-   function doQuoteString( &$query )
-   {
-   $query = $this->db->qstr( $query );
-   }
}

?>
diff --git a/frugalware/packages.php b/frugalware/packages.php
index a73383d..03e08f2 100644
--- a/frugalware/packages.php
+++ b/frugalware/packages.php
@@ -150,7 +150,8 @@ function search_pkg()
main();
return;
}
-   $search = $_GET['srch'];
+   $search = addcslashes( $_GET['srch'], '+' );
+   $search = str_replace( '+', '\+', $search );
$arch = $_GET['arch'];
$fwver = $_GET['ver'];
$sub = ($_GET['sub'] == "on") ? 1 : 0; # whether the search is for a substring 
or exact match
@@ -169,7 +170,6 @@ function search_pkg()
}
$query .= " order by fwver desc";
$db = new FwDB();
-   $db->doQuoteString( &$query );
$db->doConnect($sqlhost, $sqluser, $sqlpass, "frugalware2");
$res = $db->doQuery($query);
if ($db->doCountRows($res) > 0)
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] homepage-ng: fwng: last patch fixed the query, but got another small error - now fixed

2007-10-08 Thread Krisztian VASAS
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=homepage-ng.git;a=commitdiff;h=af3f433f44e5f2111640aa9a9366cc7c32a4e1d5

commit af3f433f44e5f2111640aa9a9366cc7c32a4e1d5
Author: Krisztian VASAS <[EMAIL PROTECTED]>
Date:   Mon Oct 8 10:13:12 2007 +0200

fwng: last patch fixed the query, but got another small error - now fixed

diff --git a/frugalware/packages.php b/frugalware/packages.php
index 03e08f2..4ed9e55 100644
--- a/frugalware/packages.php
+++ b/frugalware/packages.php
@@ -150,8 +150,8 @@ function search_pkg()
main();
return;
}
-   $search = addcslashes( $_GET['srch'], '+' );
-   $search = str_replace( '+', '\+', $search );
+   $search = $_GET['srch'];
+   $srch = str_replace( '+', '\+', addcslashes( $search, '+' ) );
$arch = $_GET['arch'];
$fwver = $_GET['ver'];
$sub = ($_GET['sub'] == "on") ? 1 : 0; # whether the search is for a substring 
or exact match
@@ -159,7 +159,7 @@ function search_pkg()
$query = "select id, pkgname, pkgver, fwver, arch from packages where ";
# if the 'desc' is set (searching in description, too) I have to put
# the restrictions between brackets, because of the 'arch' below...
-   ($_GET['desc'] == "on" || $_GET['desc'] == 1) ? $query .= "(pkgname 
rlike '$search' or `desc` rlike '$search')" : $query .= "(pkgname rlike 
'$search')";
+   ($_GET['desc'] == "on" || $_GET['desc'] == 1) ? $query .= "(pkgname 
rlike '$srch' or `desc` rlike '$srch')" : $query .= "(pkgname rlike '$srch')";
if ($arch != "" and $arch != "all")
{
$query .= " and arch='$arch'";
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] frugalware-current: revert "perl-class-accessor-0.31-1-i686"

2007-10-08 Thread VMiklos
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=fbebe2e112ec525dae03668234eb49ce6bde2ca4

commit fbebe2e112ec525dae03668234eb49ce6bde2ca4
Author: VMiklos <[EMAIL PROTECTED]>
Date:   Mon Oct 8 12:18:09 2007 +0200

revert "perl-class-accessor-0.31-1-i686"
- this reverts commit 4897ebc11f92969d8573ac2ba28dbfbf3a87b805
- it was already in 'devel', my bad

diff --git a/source/devel-extra/perl-class-accessor/FrugalBuild 
b/source/devel-extra/perl-class-accessor/FrugalBuild
deleted file mode 100644
index 3b800a0..000
--- a/source/devel-extra/perl-class-accessor/FrugalBuild
+++ /dev/null
@@ -1,10 +0,0 @@
-# Compiling Time: 0.1 SBU
-# Maintainer: Zsolt Szalai <[EMAIL PROTECTED]>
-
-_F_perl_name=Class-Accessor
-_F_perl_author=K/KA/KASEI
-pkgver=0.31
-pkgdesc="Automated accessor generation"
-Finclude perl
-archs=('i686' 'x86_64')
-sha1sums=('f7925450ca9b567251854e672a3631ccfd20b131')
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] frugalware-current: mesa-cvs-20070601-2-x86_64

2007-10-08 Thread VMiklos
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=d6ad96c307e992f5d7444607a104adf9df68e777

commit d6ad96c307e992f5d7444607a104adf9df68e777
Author: VMiklos <[EMAIL PROTECTED]>
Date:   Mon Oct 8 12:43:58 2007 +0200

mesa-cvs-20070601-2-x86_64
lib64 fix
yes, it's ugly to push this fix so late, but we really want the testsuite to
pass

diff --git a/source/xlib-extra/mesa-cvs/FrugalBuild 
b/source/xlib-extra/mesa-cvs/FrugalBuild
index a29472a..3eeac61 100644
--- a/source/xlib-extra/mesa-cvs/FrugalBuild
+++ b/source/xlib-extra/mesa-cvs/FrugalBuild
@@ -4,7 +4,7 @@
pkgname=mesa-cvs
origname=Mesa-cvs
pkgver=20070601
-pkgrel=1
+pkgrel=2
pkgdesc="Mesa is a 3D graphics library (CVS Version)"
url="http://mesa3d.sourceforge.net/";
depends=('libx11' 'libxext' 'libxxf86vm' 'libxi' 'libxmu' 'libice' 'libdrm' \
@@ -63,6 +63,8 @@ build()

Fmkdir /usr/lib/mesa-cvs/lib/xorg/modules/dri
cp -ar $Fsrcdir/$origname-$pkgver/lib$dripath/*_dri.so 
$Fdestdir/usr/lib/mesa-cvs/lib/xorg/modules/dri/ || Fdie
+   # remove empty dir
+   [ "$CARCH" == "x86_64" ] && Frm /usr/lib/mesa-cvs/lib64
}

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


[Frugalware-git] homepage-ng: fwng: reworked pkg search part && changed doQuery() error reporting

2007-10-08 Thread Krisztian VASAS
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=homepage-ng.git;a=commitdiff;h=731b3843b1673fc3f4bf304b793fc52d4cfd0490

commit 731b3843b1673fc3f4bf304b793fc52d4cfd0490
Author: Krisztian VASAS <[EMAIL PROTECTED]>
Date:   Mon Oct 8 13:14:01 2007 +0200

fwng: reworked pkg search part && changed doQuery() error reporting

diff --git a/frugalware/db.inc.php b/frugalware/db.inc.php
index 97e0776..f975928 100644
--- a/frugalware/db.inc.php
+++ b/frugalware/db.inc.php
@@ -94,7 +94,7 @@ class FwDB
}
if (!$result)
{
-   die("Query ".$query." failed with the following error: 
".$this->db->ErrorMsg());
+   $result = -1;
}
return $result;
}
diff --git a/frugalware/packages.php b/frugalware/packages.php
index 4ed9e55..a5ccdd1 100644
--- a/frugalware/packages.php
+++ b/frugalware/packages.php
@@ -151,7 +151,7 @@ function search_pkg()
return;
}
$search = $_GET['srch'];
-   $srch = str_replace( '+', '\+', addcslashes( $search, '+' ) );
+   //$srch = str_replace( '+', '\+', addcslashes( $search, '+' ) );
$arch = $_GET['arch'];
$fwver = $_GET['ver'];
$sub = ($_GET['sub'] == "on") ? 1 : 0; # whether the search is for a substring 
or exact match
@@ -159,7 +159,7 @@ function search_pkg()
$query = "select id, pkgname, pkgver, fwver, arch from packages where ";
# if the 'desc' is set (searching in description, too) I have to put
# the restrictions between brackets, because of the 'arch' below...
-   ($_GET['desc'] == "on" || $_GET['desc'] == 1) ? $query .= "(pkgname 
rlike '$srch' or `desc` rlike '$srch')" : $query .= "(pkgname rlike '$srch')";
+   ($_GET['desc'] == "on" || $_GET['desc'] == 1) ? $query .= "(pkgname 
rlike '$search' or `desc` rlike '$search')" : $query .= "(pkgname rlike 
'$search')";
if ($arch != "" and $arch != "all")
{
$query .= " and arch='$arch'";
@@ -172,7 +172,7 @@ function search_pkg()
$db = new FwDB();
$db->doConnect($sqlhost, $sqluser, $sqlpass, "frugalware2");
$res = $db->doQuery($query);
-   if ($db->doCountRows($res) > 0)
+   if ($res != -1 && $db->doCountRows($res) > 0)
{
while ($i = $db->doFetchRow($res))
{
@@ -181,6 +181,12 @@ function search_pkg()
$db->doClose();
res_show($res_set, 'p', $search);
}
+   elseif
+   {
+   print '' . gettext( 'Error in the query, please change the 
searching conditions' ) . '';
+   $db->doClose();
+   main();
+   }
else
{
print "".gettext("No package found")."";
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] homepage-ng: fwng: added missing if()

2007-10-08 Thread Krisztian VASAS
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=homepage-ng.git;a=commitdiff;h=ab2e197cde417428b9f5004b928b4be5aaf88eab

commit ab2e197cde417428b9f5004b928b4be5aaf88eab
Author: Krisztian VASAS <[EMAIL PROTECTED]>
Date:   Mon Oct 8 13:15:04 2007 +0200

fwng: added missing if()

diff --git a/frugalware/packages.php b/frugalware/packages.php
index a5ccdd1..34c3cb0 100644
--- a/frugalware/packages.php
+++ b/frugalware/packages.php
@@ -181,7 +181,7 @@ function search_pkg()
$db->doClose();
res_show($res_set, 'p', $search);
}
-   elseif
+   elseif ( $res == -1 )
{
print '' . gettext( 'Error in the query, please change the searching 
conditions' ) . '';
$db->doClose();
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] frugalware-current: mesa-cvs-20070601-2-i686

2007-10-08 Thread VMiklos
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=f3e0cd04d7e92dd19176af39d433f821b18b523e

commit f3e0cd04d7e92dd19176af39d433f821b18b523e
Author: VMiklos <[EMAIL PROTECTED]>
Date:   Mon Oct 8 13:15:16 2007 +0200

mesa-cvs-20070601-2-i686
typo

diff --git a/source/xlib-extra/mesa-cvs/FrugalBuild 
b/source/xlib-extra/mesa-cvs/FrugalBuild
index 3eeac61..b497a5f 100644
--- a/source/xlib-extra/mesa-cvs/FrugalBuild
+++ b/source/xlib-extra/mesa-cvs/FrugalBuild
@@ -64,7 +64,9 @@ build()
Fmkdir /usr/lib/mesa-cvs/lib/xorg/modules/dri
cp -ar $Fsrcdir/$origname-$pkgver/lib$dripath/*_dri.so 
$Fdestdir/usr/lib/mesa-cvs/lib/xorg/modules/dri/ || Fdie
# remove empty dir
-   [ "$CARCH" == "x86_64" ] && Frm /usr/lib/mesa-cvs/lib64
+   if [ "$CARCH" == "x86_64" ]; then
+   Frm /usr/lib/mesa-cvs/lib64
+   fi
}

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


[Frugalware-git] homepage-ng: fwng: added info text to the search input box

2007-10-08 Thread Krisztian VASAS
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=homepage-ng.git;a=commitdiff;h=c620cbeaed213e7d72d2ea5d1a8061bc679fee3b

commit c620cbeaed213e7d72d2ea5d1a8061bc679fee3b
Author: Krisztian VASAS <[EMAIL PROTECTED]>
Date:   Mon Oct 8 13:27:29 2007 +0200

fwng: added info text to the search input box

diff --git a/frugalware/packages.php b/frugalware/packages.php
index 34c3cb0..b0b09be 100644
--- a/frugalware/packages.php
+++ b/frugalware/packages.php
@@ -94,7 +94,7 @@ function main()
 ".gettext("Search in description")."
files
groups
-   
+" . 
gettext( '(regular expression)' ) . "


".gettext("Architecture:")."
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] frugalware-current: kde-frugalware-0.7.0-1-i686

2007-10-08 Thread crazy
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=a949ccaa17e07c06a94f7570793a55d2781cbdf6

commit a949ccaa17e07c06a94f7570793a55d2781cbdf6
Author: crazy <[EMAIL PROTECTED]>
Date:   Mon Oct 8 15:18:48 2007 +0200

kde-frugalware-0.7.0-1-i686
* Version bump

diff --git a/source/kde/kde-frugalware/FrugalBuild 
b/source/kde/kde-frugalware/FrugalBuild
index d8c7c7d..3c77bd2 100644
--- a/source/kde/kde-frugalware/FrugalBuild
+++ b/source/kde/kde-frugalware/FrugalBuild
@@ -2,8 +2,8 @@
# Maintainer: crazy <[EMAIL PROTECTED]>

pkgname=kde-frugalware
-pkgver=0.6.0
-pkgrel=3
+pkgver=0.7.0
+pkgrel=1
pkgdesc="KDE artwork for Frugalware Linux."
url="http://ftp.frugalware.org/pub/other/kde/kde-frugalware/";
depends=()
@@ -13,8 +13,7 @@ options=('nodocs')
groups=('kde' 'kde-core')
archs=('i686' 'x86_64')
up2date="$pkgver"
-source=(http://ftp.frugalware.org/pub/other/sources/kde/$pkgname/$pkgname-$pkgver.tar.bz2
 \
-   fixes_for_final.patch fix_syntax_error.patch)
+source=(http://ftp.frugalware.org/pub/other/sources/kde/$pkgname/$pkgname-$pkgver.tar.bz2)

build()
{
@@ -30,6 +29,4 @@ build()

}

-sha1sums=('cfd0c0f25522921332ba93c191f758838daa0f66'\
-  '2ea1667c602b795f3ee1c96cc0d23200de21dfad'\
-  '4a24a4846f9bcadf5a4ea595df78a5dbd9daa27f')
+sha1sums=('e1e3b3cc635431c2daca3bb0c42a3348250d750a')
diff --git a/source/kde/kde-frugalware/fix_syntax_error.patch 
b/source/kde/kde-frugalware/fix_syntax_error.patch
deleted file mode 100644
index 5b66af3..000
--- a/source/kde/kde-frugalware/fix_syntax_error.patch
+++ /dev/null
@@ -1,11 +0,0 @@
-diff -Naur 
kde-frugalware-0.6.0/etc/xdg/menus/applications-merged/kde-not-show.menu 
kde-frugalware-0.6.0-p/etc/xdg/menus/applications-merged/kde-not-show.menu
 kde-frugalware-0.6.0/etc/xdg/menus/applications-merged/kde-not-show.menu   
2007-02-25 04:59:49.0 +0100
-+++ kde-frugalware-0.6.0-p/etc/xdg/menus/applications-merged/kde-not-show.menu 
2007-03-27 14:41:42.0 +0200
-@@ -4,6 +4,7 @@
-   kde-Kfind.desktop
-   kde-Help.desktop
-   kde-Home.desktop
-+ 
-  
-   .hidden
-   
diff --git a/source/kde/kde-frugalware/fixes_for_final.patch 
b/source/kde/kde-frugalware/fixes_for_final.patch
deleted file mode 100644
index ccf7a2e..000
--- a/source/kde/kde-frugalware/fixes_for_final.patch
+++ /dev/null
@@ -1,158 +0,0 @@
-diff -Naurp kde-frugalware-0.6.0/config/konquerorrc 
kde-frugalware-0.6.0-p/config/konquerorrc
 kde-frugalware-0.6.0/config/konquerorrc2007-02-25 03:03:23.0 
+0100
-+++ kde-frugalware-0.6.0-p/config/konquerorrc  2007-03-14 20:37:11.0 
+0100
-@@ -13,7 +13,7 @@ FormCompletion=true
- HoverLinks=true
- MaxFormCompletionItems=10
- MediumFontSize=12
--MinimumFontSize=9
-+MinimumFontSize=10
- ShowAnimations=Enabled
- UnderlineLinks=false
- UnfinishedImageFrame=true
-diff -Naurp 
kde-frugalware-0.6.0/usr/share/apps/kdm/themes/frugalware/frugalware.xml 
kde-frugalware-0.6.0-p/usr/share/apps/kdm/themes/frugalware/frugalware.xml
 kde-frugalware-0.6.0/usr/share/apps/kdm/themes/frugalware/frugalware.xml   
2007-02-24 21:49:50.0 +0100
-+++ kde-frugalware-0.6.0-p/usr/share/apps/kdm/themes/frugalware/frugalware.xml 
2007-03-14 20:29:23.0 +0100
-@@ -8,53 +8,53 @@
-
-   
-   
--  
-+  
-
-   
-   
--  
-+  
-   
-
-   
-   
--  
-+  
-
-   
--  
--  
-+  
-+  
-   
-   
-
-   
--  
--  
-+  
-+  
-   
-   
-   
-
-   
-   
--  
-+  
-
-   
--  
-+  
-   
-
-   
--  
-+  
-   
-   
-   
-
-   
-   
--  
-+  
-   
-   
-   
-   
-   
--  
-+  
-   
-   
-   
-@@ -63,7 +63,7 @@
-
-   
-   
--  
-+  
-   
-   
-   
-@@ -79,39 +79,39 @@
-
-
- 
--  
--  
-+  
-+  
-   
- 
-
-
- 
--  
-+  
-
-   
-   
-

[Frugalware-git] frugalware-current: gfpm-1.0.3-2-i686

2007-10-08 Thread Priyank
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=e5e507f38e238316b843a2a76fb594e1ff9d90e4

commit e5e507f38e238316b843a2a76fb594e1ff9d90e4
Author: Priyank <[EMAIL PROTECTED]>
Date:   Mon Oct 8 19:11:17 2007 +0530

gfpm-1.0.3-2-i686
* Added a patch to fix a segfault (thanks crazy for noticing it)

diff --git a/source/xapps/gfpm/FrugalBuild b/source/xapps/gfpm/FrugalBuild
index c42f138..6f5ba2a 100644
--- a/source/xapps/gfpm/FrugalBuild
+++ b/source/xapps/gfpm/FrugalBuild
@@ -3,7 +3,7 @@

pkgname=gfpm
pkgver=1.0.3
-pkgrel=1
+pkgrel=2
pkgdesc="Graphical Frugalware Package Manager"
url="http://ftp.frugalware.org/pub/other/gfpm";
depends=('glib2' 'gtk+2' 'libglade' 'pacman-g2')
@@ -14,8 +14,8 @@ archs=('i686' 'x86_64')
_F_gnome_iconcache="y"
Finclude gnome-scriptlet
up2date="lynx -dump $url | Flasttar"
-source=($url/$pkgname-$pkgver.tar.gz)
-signatures=(${source[0]}.asc)
+source=($url/$pkgname-$pkgver.tar.gz $pkgname-$pkgver-crashfix.diff)
+signatures=(${source[0]}.asc '')

build()
{
diff --git a/source/xapps/gfpm/gfpm-1.0.3-crashfix.diff 
b/source/xapps/gfpm/gfpm-1.0.3-crashfix.diff
new file mode 100644
index 000..0b48187
--- /dev/null
+++ b/source/xapps/gfpm/gfpm-1.0.3-crashfix.diff
@@ -0,0 +1,12 @@
+diff -Naur gfpm-1.0.3/src/gfpm-interface.c gfpm-1.0.3.new/src/gfpm-interface.c
+--- gfpm-1.0.3/src/gfpm-interface.c2007-10-02 22:29:50.0 +0530
 gfpm-1.0.3.new/src/gfpm-interface.c2007-10-08 19:03:29.0 
+0530
+@@ -1401,8 +1401,6 @@
+   -1);
+   pacman_pkg_free (pm_lpkg);
+   pacman_pkg_free (pm_spkg);
+-  g_free (v1);
+-  g_free (v2);
+   }
+   while (gtk_events_pending())
+   gtk_main_iteration ();
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] homepage-ng: FSA294-kdebase

2007-10-08 Thread voroskoi
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=homepage-ng.git;a=commitdiff;h=8f0a5fe1a86bf30a6e90aeb2c8c109e0fab2c93a

commit 8f0a5fe1a86bf30a6e90aeb2c8c109e0fab2c93a
Author: voroskoi <[EMAIL PROTECTED]>
Date:   Mon Oct 8 15:31:34 2007 +0200

FSA294-kdebase

diff --git a/frugalware/xml/security.xml b/frugalware/xml/security.xml
index c8cbb87..1ad38fc 100644
--- a/frugalware/xml/security.xml
+++ b/frugalware/xml/security.xml
@@ -27,6 +27,18 @@



+   294
+   2007-10-08
+   voroskoi
+   kdebase
+   3.5.6-3terminus2
+   3.5.6-3terminus3
+   http://bugs.frugalware.org/task/2198
+   
http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2007-2022
+   A vulnerability has been reported in Konqueror, which can 
be exploited by malicious people to disclose potentially sensitive information.
+   The vulnerability is caused due to an unspecified error 
within the interaction between Konqueror and the Adobe Flash Player plug-in, 
which may result in key presses being leaked to a Flash applet. This can be 
exploited to disclose potentially sensitive information.
+   
+   
293
2007-10-07
voroskoi
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] homepage-ng: FSA295-python

2007-10-08 Thread voroskoi
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=homepage-ng.git;a=commitdiff;h=98adb928bbbeb2bd13cef3f9881e1b80b76aa358

commit 98adb928bbbeb2bd13cef3f9881e1b80b76aa358
Author: voroskoi <[EMAIL PROTECTED]>
Date:   Mon Oct 8 15:37:17 2007 +0200

FSA295-python

diff --git a/frugalware/xml/security.xml b/frugalware/xml/security.xml
index 1ad38fc..4d136fd 100644
--- a/frugalware/xml/security.xml
+++ b/frugalware/xml/security.xml
@@ -27,6 +27,19 @@



+   295
+   2007-10-08
+   voroskoi
+   python
+   2.5-3terminus2
+   2.5-3terminus3
+   http://bugs.frugalware.org/task/2428
+   
http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2007-4965
+   Slythers Bro has discovered a security issue in the 
imageop module for Python, which can be exploited by malicious people to cause 
a DoS (Denial of Service) and potentially compromise a vulnerable system.
+   The security issue is caused due to an integer overflow 
error within the "tovideo()" function and can be exploited to cause a 
heap-based buffer overflow when specially crafted parameters are passed to the 
function.
+   Successful exploitation may allow execution of 
arbitrary code.
+   
+   
294
2007-10-08
voroskoi
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] frugalware-current: docs/xml: add raozuzu and move Nadfoke to former_devs.xml

2007-10-08 Thread VMiklos
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=f9869c8c54edeceb83bf78893df97eb6c06f68f8

commit f9869c8c54edeceb83bf78893df97eb6c06f68f8
Author: VMiklos <[EMAIL PROTECTED]>
Date:   Tue Oct 9 00:49:12 2007 +0200

docs/xml: add raozuzu and move Nadfoke to former_devs.xml

diff --git a/docs/xml/authors.xml b/docs/xml/authors.xml
index 5b538ec..32f8a1e 100644
--- a/docs/xml/authors.xml
+++ b/docs/xml/authors.xml
@@ -37,9 +37,9 @@ if you modify this file, be sure it's still valid - xmllint 
is your friend
translator (german)


-   Gondor, Viktor
-   Nadfoka
-   [EMAIL PROTECTED]
+   Buzzotta, Richy
+   raozuzu
+   [EMAIL PROTECTED]
frugalware artwork


diff --git a/docs/xml/former_devs.xml b/docs/xml/former_devs.xml
index 1858331..8da331f 100644
--- a/docs/xml/former_devs.xml
+++ b/docs/xml/former_devs.xml
@@ -13,6 +13,12 @@



+   Gondor, Viktor
+   Nadfoka
+   [EMAIL PROTECTED]
+   Artwork maintainer till Frugalware 0.6 (Terminus)
+   
+   
Smith, Alex
AlexExtreme
[EMAIL PROTECTED]
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] frugalware-current: authors.xml: whitespace fix

2007-10-08 Thread VMiklos
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=4d71ba6ed709726aaa9b362681ff7f7633ec296b

commit 4d71ba6ed709726aaa9b362681ff7f7633ec296b
Author: VMiklos <[EMAIL PROTECTED]>
Date:   Tue Oct 9 00:43:29 2007 +0200

authors.xml: whitespace fix

diff --git a/docs/xml/authors.xml b/docs/xml/authors.xml
index de5915f..5b538ec 100644
--- a/docs/xml/authors.xml
+++ b/docs/xml/authors.xml
@@ -45,7 +45,7 @@ if you modify this file, be sure it's still valid - xmllint 
is your friend

Gosalia, Priyank
priyank
-[EMAIL PROTECTED]
+   [EMAIL PROTECTED]
XFCE Maintainer
Package Maintainer
Graphical Configuration Tools
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] frugalware-current: xorg-server-1.2.0-10-i686

2007-10-08 Thread VMiklos
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=11c29e7b669cab245b210548f3359014ee3514b5

commit 11c29e7b669cab245b210548f3359014ee3514b5
Author: VMiklos <[EMAIL PROTECTED]>
Date:   Tue Oct 9 01:13:46 2007 +0200

xorg-server-1.2.0-10-i686
fix the desktop file: slim should not have a bigger priority than gdm or kdm

diff --git a/source/x11/xorg-server/FrugalBuild 
b/source/x11/xorg-server/FrugalBuild
index e257d12..8bdd82e 100644
--- a/source/x11/xorg-server/FrugalBuild
+++ b/source/x11/xorg-server/FrugalBuild
@@ -3,7 +3,7 @@

pkgname=xorg-server
pkgver=1.2.0
-pkgrel=9
+pkgrel=10
mesaver=7.0.1
pkgdesc="Modular X.Org X Server"
groups=('x11' 'xorg-core')
@@ -123,7 +123,7 @@ sha1sums=('3c4e8ae90fafdddb4ec6e640b693c2beb295d106' \
'f31702e0029b2d68018598e73ed55c4d6c58367b' \
'859b98a4049400be152032fc09ceff2afe9e6dcf' \
'863ad92892785c3785b122bf54d0def4d4d2732c' \
-  '7f1925d2c0307e507e5ce8f39224f6481a469185' \
+  '1456207203932404752e2519c5b7fe830a913cf4' \
'4713d46b31eafbde58a1fafe8269642df6a12d77' \
'426b0b08617ec19cba41ab20f3891cab82f205a2' \
'f7f706ec568a80543c6d6096b3d8a833b80399ed' \
diff --git a/source/x11/xorg-server/desktop b/source/x11/xorg-server/desktop
index d3ab947..dfd468d 100644
--- a/source/x11/xorg-server/desktop
+++ b/source/x11/xorg-server/desktop
@@ -3,6 +3,6 @@
# Which session manager try to use.

#desktop="/usr/bin/xdm -nodaemon"
+#desktop="/usr/bin/slim"
#desktop="/usr/sbin/gdm --nodaemon"
#desktop="/usr/bin/kdm -nodaemon"
-#desktop="/usr/bin/slim"
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] frugalware-current: TAG 0.7

2007-10-08 Thread VMiklos
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=d9b2dc15af52ddf5cc6171bfc9645235f2faee4d

commit d9b2dc15af52ddf5cc6171bfc9645235f2faee4d
Author: VMiklos <[EMAIL PROTECTED]>
Date:   Tue Oct 9 01:55:26 2007 +0200

TAG 0.7
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git