[Frugalware-git] xorgtesting: Merge ../current

2012-05-03 Thread James Buren
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=xorgtesting.git;a=commitdiff;h=050ed3f1e90f8dc30190a536cc8b5606873404c4

commit 050ed3f1e90f8dc30190a536cc8b5606873404c4
Merge: e41cac7 32e3af5
Author: James Buren 
Date:   Thu May 3 02:07:29 2012 -0500

Merge ../current
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] xorgtesting: xf86-video-intel-2.19.0-1-i686

2012-05-03 Thread Michel Hermier
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=xorgtesting.git;a=commitdiff;h=e7516990c2e56238a3c716b31dad7e3caf08b8bb

commit e7516990c2e56238a3c716b31dad7e3caf08b8bb
Author: Michel Hermier 
Date:   Thu May 3 09:15:16 2012 +0200

xf86-video-intel-2.19.0-1-i686

* Bump version.

diff --git a/source/x11/xf86-video-intel/FrugalBuild 
b/source/x11/xf86-video-intel/FrugalBuild
index c65e4c8..9e68798 100644
--- a/source/x11/xf86-video-intel/FrugalBuild
+++ b/source/x11/xf86-video-intel/FrugalBuild
@@ -4,7 +4,7 @@
USE_DEVEL=${USE_DEVEL:-"n"}

pkgname=xf86-video-intel
-pkgver=2.18.0
+pkgver=2.19.0
Fuse $USE_DEVEL && pkgver=2.7.99.1.55.g66ceedc
pkgrel=1
pkgdesc="X.Org driver for Intel cards (opensource)"
@@ -18,7 +18,7 @@ replaces=('xf86-video-i810')
conflicts=('xf86-video-i810')
provides=('xf86-video-i810')
Fconfopts="$Fconfopts --enable-dri"
-sha1sums=('77fae98e73414140bf214dca5da32bcf079c4463')
+sha1sums=('131934cf5e90bd48c883804cc644c4cb8b1de100')

if Fuse $USE_DEVEL; then
unset source sha1sums
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] xorgtesting: xorg-server-1.12.1-2-x86_64 * apply patch from ARCH that works around gfx corruption related to cairo

2012-05-03 Thread James Buren
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=xorgtesting.git;a=commitdiff;h=5ca495b8022f878fd380b62329ecbb986e9aeb82

commit 5ca495b8022f878fd380b62329ecbb986e9aeb82
Author: James Buren 
Date:   Thu May 3 02:38:32 2012 -0500

xorg-server-1.12.1-2-x86_64
* apply patch from ARCH that works around gfx corruption related to cairo

diff --git a/source/x11/xorg-server/FrugalBuild 
b/source/x11/xorg-server/FrugalBuild
index cba53cc..9349b13 100644
--- a/source/x11/xorg-server/FrugalBuild
+++ b/source/x11/xorg-server/FrugalBuild
@@ -9,7 +9,7 @@ USE_SERVERDMX=${USE_SERVERDMX:-"y"}

pkgname=xorg-server
pkgver=1.12.1
-pkgrel=1
+pkgrel=2
pkgdesc="Modular X.Org X Server"
groups=('x11' 'xorg-core')
archs=('i686' 'x86_64' 'arm')
@@ -46,11 +46,13 @@ fi

source=("${source[@]}" \
desktop \
-   10-evdev.conf)
+   10-evdev.conf \
+   exa-gfx-corruption-workaround.patch)

sha1sums=("${sha1sums[@]}" \
'905cc57547421ff3ca77ec1c8e6898a7a414346f' \
- '3fa8d717bce03296e6b097279a410d9672000b08')
+ '3fa8d717bce03296e6b097279a410d9672000b08' \
+ 'b174513367cc854e4d4440e3394161d1d0222491')

Fconfopts="${Fconfopts[@]}
--disable-static \
diff --git a/source/x11/xorg-server/exa-gfx-corruption-workaround.patch 
b/source/x11/xorg-server/exa-gfx-corruption-workaround.patch
new file mode 100644
index 000..fb30467
--- /dev/null
+++ b/source/x11/xorg-server/exa-gfx-corruption-workaround.patch
@@ -0,0 +1,116 @@
+--- xorg-server-1.12.1/exa/exa_glyphs.c2012-03-30 04:57:25.0 
+0200
 xorg-server-1.12.1/exa_glyphs.c.new2012-04-15 11:48:51.683214230 
+0200
+@@ -686,6 +686,7 @@
+ PixmapPtr pMaskPixmap = 0;
+ PicturePtr pMask = NULL;
+ ScreenPtr pScreen = pDst->pDrawable->pScreen;
++ExaScreenPriv(pScreen);
+ int width = 0, height = 0;
+ int x, y;
+ int first_xOff = list->xOff, first_yOff = list->yOff;
+@@ -697,7 +698,6 @@
+ ExaGlyphBuffer buffer;
+
+ if (maskFormat) {
+-ExaScreenPriv(pScreen);
+ GCPtr pGC;
+ xRectangle rect;
+
+@@ -719,22 +719,20 @@
+ maskFormat->depth,
+ CREATE_PIXMAP_USAGE_SCRATCH);
+ if (!pMaskPixmap)
+-return;
++  goto fallback;
+ component_alpha = NeedsComponent(maskFormat->format);
+ pMask = CreatePicture(0, &pMaskPixmap->drawable,
+   maskFormat, CPComponentAlpha, &component_alpha,
+   serverClient, &error);
+-if (!pMask ||
+-(!component_alpha && pExaScr->info->CheckComposite &&
+- !(*pExaScr->info->CheckComposite) (PictOpAdd, pSrc, NULL, 
pMask)))
++(*pScreen->DestroyPixmap) (pMaskPixmap);
++  if (!pMask)
++  goto fallback;
++
++  if (!component_alpha && pExaScr->info->CheckComposite &&
++  !(*pExaScr->info->CheckComposite) (PictOpAdd, pSrc, NULL, pMask))
+ {
+ PictFormatPtr argbFormat;
+
+-(*pScreen->DestroyPixmap) (pMaskPixmap);
+-
+-if (!pMask)
+-return;
+-
+ /* The driver can't seem to composite to a8, let's try argb (but
+  * without component-alpha) */
+ FreePicture((pointer) pMask, (XID) 0);
+@@ -748,15 +746,25 @@
+ maskFormat->depth,
+ 
CREATE_PIXMAP_USAGE_SCRATCH);
+ if (!pMaskPixmap)
+-return;
++  goto fallback;
+
+ pMask = CreatePicture(0, &pMaskPixmap->drawable, maskFormat, 0, 0,
+   serverClient, &error);
+-if (!pMask) {
+-(*pScreen->DestroyPixmap) (pMaskPixmap);
+-return;
+-}
++(*pScreen->DestroyPixmap) (pMaskPixmap);
++  if (!pMask)
++  goto fallback;
+ }
++
++  if (pExaScr->info->CheckComposite &&
++  (!(*pExaScr->info->CheckComposite) (PictOpAdd, pSrc, NULL, pMask) ||
++   (!(*pExaScr->info->CheckComposite) (op, pSrc, pMask, pDst) &&
++(op != PictOpOver ||
++ !(*pExaScr->info->CheckComposite) (PictOpOutReverse, pSrc, 
pMask, pDst) ||
++ !(*pExaScr->info->CheckComposite) (PictOpOver, pSrc, pMask, 
pDst) {
++  FreePicture ((pointer) pMask, (XID) 0);
++  goto fallback;
++  }
++
+ pGC = GetScratchGC(pMaskPixmap->drawable.depth, pScreen);
+ ValidateGC(&pMaskPixmap->drawable, pGC);
+ rect.x = 0;
+@@ -769,6 +777,13 @@
+ y = -extents.y1;
+ }
+ else {
++  if (pExaScr->info->CheckComposite &&
++  !(*pExaScr->info->CheckComposite) (op, pSrc, NULL, pDst) &&
++  (op != PictOpOver ||
++   !(*pExaScr->info->CheckComposite) (PictOpOutReverse, pSrc, NULL, 
pDst) ||
++   !(*pExaScr->info->CheckComposite) (PictOpOver, pSr

[Frugalware-git] frugalware-current: gtk+3-3.4.2-1-x86_64 * Version bump

2012-05-03 Thread Baste
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=36e093256a4ed62a2c5526dfe114b028931630b1

commit 36e093256a4ed62a2c5526dfe114b028931630b1
Author: Baste 
Date:   Thu May 3 09:38:32 2012 +0200

gtk+3-3.4.2-1-x86_64
* Version bump

diff --git a/source/xlib/gtk+3/FrugalBuild b/source/xlib/gtk+3/FrugalBuild
index 915e65f..f3aaaeb 100644
--- a/source/xlib/gtk+3/FrugalBuild
+++ b/source/xlib/gtk+3/FrugalBuild
@@ -4,7 +4,7 @@

pkgname=gtk+3
_F_gnome_name=gtk+
-pkgver=3.4.1
+pkgver=3.4.2
pkgrel=1
pkgdesc="The GTK+ Toolkit (3.x series)"
depends=('libxext' 'libxfixes' 'cairo' 'libgcc' 'libjpeg' 'libtiff' 'libcups' \
@@ -22,7 +22,7 @@ Finclude gnome gnome-scriptlet
url="http://www.gtk.org/";
_F_cd_path="gtk+-$pkgver"
source=($source im-cedilla.conf)
-sha1sums=('91b68f0dd5f6558eae98811f4031f32ff46ad172' \
+sha1sums=('ff6cc08d51f666b6d19eba159b2103751398ae7c' \
'f8a64241bcc873c1f1110e16306e48577a41852b')

if [ "$_F_gnome_git" != "n" ]; then
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] xorgtesting: Merge ../current

2012-05-03 Thread James Buren
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=xorgtesting.git;a=commitdiff;h=bf5738540a7c13e15271a1449c34cf4da2b4bb54

commit bf5738540a7c13e15271a1449c34cf4da2b4bb54
Merge: 5ca495b 36e0932
Author: James Buren 
Date:   Thu May 3 02:48:47 2012 -0500

Merge ../current
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] frugalware-current: Merge ../current

2012-05-03 Thread James Buren
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=bf5738540a7c13e15271a1449c34cf4da2b4bb54

commit bf5738540a7c13e15271a1449c34cf4da2b4bb54
Merge: 5ca495b 36e0932
Author: James Buren 
Date:   Thu May 3 02:48:47 2012 -0500

Merge ../current
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] frugalware-current: gpaste-2.8-1-x86_64 * Version bump

2012-05-03 Thread Baste
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=073d8aad1173aa72dcc979cc6f4160ab38534b44

commit 073d8aad1173aa72dcc979cc6f4160ab38534b44
Author: Baste 
Date:   Thu May 3 10:41:24 2012 +0200

gpaste-2.8-1-x86_64
* Version bump

diff --git a/source/xapps/gpaste/FrugalBuild b/source/xapps/gpaste/FrugalBuild
index a48e814..1c0037e 100644
--- a/source/xapps/gpaste/FrugalBuild
+++ b/source/xapps/gpaste/FrugalBuild
@@ -2,7 +2,7 @@
# Maintainer: Baste 

pkgname=gpaste
-pkgver=2.5
+pkgver=2.8
pkgrel=1
pkgdesc="Is a clipboard management daemon with DBus interface."
url="https://github.com/Keruspe/GPaste";
@@ -18,7 +18,7 @@ _F_github_ext=".tar.xz"
Finclude gnome-scriptlet github
source=(http://github.com/downloads/$_F_github_author/$_F_github_name/$pkgname-$pkgver$_F_github_ext)
Fconfopts="$Fconfopts --enable-applet"
-sha1sums=('511ee6767111ddb3ea8236b23a6ff98e1e210b0b')
+sha1sums=('fe6f861a86dccbe4ee1ca497f2cce19ae7fa6cad')

subpkgs=('gnome-shell-extension-gpaste')
subdescs=('Is a clipboard management tool which comes with a tray applet as 
well as a GNOME Shell extension.')
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] frugalware-current: udisks2-1.96.0-1-x86_64 * Version bump

2012-05-03 Thread Baste
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=e7239351bc40eed96c08ba5018dcbe3afe6c24c9

commit e7239351bc40eed96c08ba5018dcbe3afe6c24c9
Author: Baste 
Date:   Thu May 3 11:02:33 2012 +0200

udisks2-1.96.0-1-x86_64
* Version bump

diff --git a/source/xapps/udisks2/FrugalBuild b/source/xapps/udisks2/FrugalBuild
index 30efced..6bce4ce 100644
--- a/source/xapps/udisks2/FrugalBuild
+++ b/source/xapps/udisks2/FrugalBuild
@@ -4,7 +4,7 @@

pkgname=udisks2
_F_archive_name=udisks
-pkgver=1.94.0
+pkgver=1.96.0
pkgrel=1
pkgdesc="Storage Management Service"
url="http://www.freedesktop.org/wiki/Software/udisks";
@@ -16,7 +16,7 @@ groups=('xapps')
archs=('i686' 'x86_64' 'ppc')
up2date="Flasttar http://udisks.freedesktop.org/releases/";
source=(http://udisks.freedesktop.org/releases/$_F_archive_name-$pkgver.tar.bz2)
-sha1sums=('6c76488776edbc5671a4b03a37ed61dac451211e')
+sha1sums=('2b13cc2d83b3f90c2a8bba2cb66246affe58273a')
options=('scriptlet')

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


[Frugalware-git] frugalware-current: util.sh

2012-05-03 Thread Michel Hermier
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=4ee9874d6e80c09461e943194da5e532149052b6

commit 4ee9874d6e80c09461e943194da5e532149052b6
Author: Michel Hermier 
Date:   Thu May 3 12:14:50 2012 +0200

util.sh

* Abstract 3 more build system. Only one left in util.sh.

diff --git a/source/include/util.sh b/source/include/util.sh
index f3df8d7..4aa600d 100644
--- a/source/include/util.sh
+++ b/source/include/util.sh
@@ -817,6 +817,8 @@ Fconfoptstryset() {
}

Fbuildsystem_configure() {
+   # This build system USUALLY produce a Fbuildsystem_make compatible 
environment
+
local command="$1"
shift

@@ -856,6 +858,81 @@ Fbuildsystem_configure() {
esac
}

+Fbuildsystem_perl () {
+   # This build system produce a Fbuildsystem_make compatible environment
+
+   local command="$1"
+   shift
+
+   case "$command" in
+   'probe')
+   test -f Makefile.PL
+   return $?
+   ;;
+   'configure')
+   if [ -z "$_F_conf_perl_pipefrom" ]; then
+   Fexec perl Makefile.PL DESTDIR=$Fdestdir "$@" || Fdie
+   else
+   $_F_conf_perl_pipefrom | perl Makefile.PL 
DESTDIR=$Fdestdir "$@" || Fdie
+   fi
+   unset _F_conf_perl_pipefrom
+   Fsed `perl -e 'printf "%vd", $^V'` "current" Makefile
+   return $?
+   ;;
+   *)
+   return -1
+   ;;
+   esac
+}
+
+Fbuildsystem_ruby_extconf () {
+   # This build system produce a Fbuildsystem_make compatible environment
+   local command="$1"
+   shift
+
+   case "$command" in
+   'probe')
+   test -f extconf.rb
+   return $?
+   ;;
+   'configure')
+   Fexec ruby extconf.rb --prefix="$Fprefix" "$@"
+   return $?
+   ;;
+   *)
+   return -1
+   ;;
+   esac
+}
+
+Fbuildsystem_ruby_setup () {
+   local command="$1"
+   shift
+
+   case "$command" in
+   'probe')
+   test -f setup.rb
+   return $?
+   ;;
+   'configure')
+   Fexec ruby setup.rb config "$@"
+   return $?
+   ;;
+   'make')
+   # Original code used 'setup' directive but setup.rb manual say 
'make' have to be checked
+   Fexec ruby setup.rb make "$@"
+   return $?
+   ;;
+   'install')
+   Fexec ruby setup.rb install --prefix=$Fdestdir "$@"
+   return $?
+   ;;
+   *)
+   return -1
+   ;;
+   esac
+}
+
###
# * Fconf(): A wrapper to ./configure. It will try to run ./configure,
# Makefile.PL, extconf.rb and configure.rb, respectively. It will automatically
@@ -873,20 +950,14 @@ Fconf() {
if Fbuildsystem_configure 'probe'; then
Fbuildsystem_configure 'prepare' || Fdie
Fbuildsystem_configure 'configure' "$@" || Fdie
-   elif [ -f Makefile.PL ]; then
-   if [ -z "$_F_conf_perl_pipefrom" ]; then
-   Fexec perl Makefile.PL DESTDIR=$Fdestdir "$@" || Fdie
-   else
-   $_F_conf_perl_pipefrom | perl Makefile.PL 
DESTDIR=$Fdestdir "$@" || Fdie
-   fi
-   unset _F_conf_perl_pipefrom
-   Fsed `perl -e 'printf "%vd", $^V'` "current" Makefile
-   elif [ -f extconf.rb ]; then
-   Fexec ruby extconf.rb --prefix="$Fprefix" "$@" || Fdie
+   elif Fbuildsystem_perl 'probe'; then
+   Fbuildsystem_perl 'configure' "$@" || Fdie
+   elif Fbuildsystem_ruby_extconf 'probe' ; then
+   Fbuildsystem_ruby_extconf 'configure' "$@" || Fdie
elif [ -f configure.rb ]; then
Fexec ./configure.rb --prefix="$Fprefix" "$@" || Fdie
-   elif [ -f setup.rb ]; then
-   Fexec ruby setup.rb config "$@" || Fdie
+   elif Fbuildsystem_ruby_setup 'probe'; then
+Fbuildsystem_ruby_setup 'configure' "$@" || Fdie
fi
}

@@ -900,9 +971,9 @@ Fmake() {
if Fbuildsystem_make 'probe'; then
Fbuildsystem_make 'make' || Fdie
elif [ -f setup.py ]; then
-   python setup.py build "$@" || Fdie
-   elif [ -f setup.rb ]; then
-   ruby setup.rb setup "$@" || Fdie
+   python setup.py build "$@" || Fdie # does configure and build
+   elif Fbuildsystem_ruby_setup 'probe'; then
+   Fbuildsystem_ruby_setup 'make' "$@" || Fdie
elif [ -f build.xml ]; then
if declare -f Fant >/dev/null; then
Fjavacleanup
@@ -946,8 +1017,8 @@ Fmakeinstall() {
Fbuildsystem_make 'install' "$@" || Fdie
elif [ -f setup.py ]; then
Fexec python setup.py install --prefix "$Fprefix" --root "$Fdestdir" "$@" || 
Fdie
-   elif [ -f setup.rb ]; then
-   Fexec ruby setup.rb install --prefix=$Fdestdir || Fdie
+   elif Fbuildsystem_ruby_setup 'probe'; then
+   Fbuildsystem_ruby_setup

[Frugalware-git] pacman-tools: repoman: set remote.origin.receivepack automatically in git repos

2012-05-03 Thread James Buren
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=pacman-tools.git;a=commitdiff;h=cbe52295f2196849815b19950e1811e9a447417f

commit cbe52295f2196849815b19950e1811e9a447417f
Author: James Buren 
Date:   Thu May 3 05:27:51 2012 -0500

repoman: set remote.origin.receivepack automatically in git repos

This is applied only if it is not already set in the git repo and if
the sudo variable is defined for the repo as well. It is called only
during a repoman update.

diff --git a/repoman b/repoman
index 499bc1d..c9ddcb9 100755
--- a/repoman
+++ b/repoman
@@ -832,6 +832,13 @@ update()
break
fi
done
+   git config --file $fst_root/$i/.git/config --get 
remote.origin.receivepack >/dev/null 2>&1
+   if [ $? != 0 ]; then
+   sudouser=$(eval "echo \$${i}_sudo")
+   if [ -n $sudouser ]; then
+   git config --file $fst_root/$i/.git/config 
remote.origin.receivepack "sudo -u $sudouser git-receive-pack"
+   fi
+   fi
done
}
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] pacman-tools: repoman: small touchup to previous commit

2012-05-03 Thread James Buren
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=pacman-tools.git;a=commitdiff;h=19c0d9dc73f09644fc12db84a7f7879b43addb38

commit 19c0d9dc73f09644fc12db84a7f7879b43addb38
Author: James Buren 
Date:   Thu May 3 05:35:14 2012 -0500

repoman: small touchup to previous commit

diff --git a/repoman b/repoman
index c9ddcb9..8d335bd 100755
--- a/repoman
+++ b/repoman
@@ -836,7 +836,7 @@ update()
if [ $? != 0 ]; then
sudouser=$(eval "echo \$${i}_sudo")
if [ -n $sudouser ]; then
-   git config --file $fst_root/$i/.git/config 
remote.origin.receivepack "sudo -u $sudouser git-receive-pack"
+   git config --file $fst_root/$i/.git/config 
remote.origin.receivepack "sudo -u $sudouser git-receive-pack" >/dev/null 2>&1
fi
fi
done
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] bastetesting: gdm-3.2.1-8-x86_64 * Test

2012-05-03 Thread Baste
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=bastetesting.git;a=commitdiff;h=8de4ce03e3b8aa5ee983a3addd2245bccc2e56be

commit 8de4ce03e3b8aa5ee983a3addd2245bccc2e56be
Author: Baste 
Date:   Thu May 3 13:32:50 2012 +0200

gdm-3.2.1-8-x86_64
* Test

diff --git a/source/gnome/gdm/FrugalBuild b/source/gnome/gdm/FrugalBuild
index 626d580..5acf7e4 100644
--- a/source/gnome/gdm/FrugalBuild
+++ b/source/gnome/gdm/FrugalBuild
@@ -3,7 +3,7 @@

pkgname=gdm
pkgver=3.2.1
-pkgrel=7
+pkgrel=8
pkgdesc="GNOME Display Manager"
url="http://www.gnome.org/";
backup=(etc/gdm/custom.conf etc/pam.d/gdm etc/pam.d/gdm-autologin \
@@ -18,10 +18,9 @@ groups=('gnome')
archs=('i686' 'x86_64')
_F_gnome_git="n"
Finclude gnome
-source=($source org.gnome.login-screen.gschema.override 
immutable-loginuid.patch)
+source=($source org.gnome.login-screen.gschema.override)
sha1sums=('8170e4e41c17dd7f4791682deab04f54fcd203aa' \
-  '974832a3878a020c87a833f5ba99a0c7d5d27b57' \
-  'f6750f838f64c6bd60b2bbd0c64573ee1d985a7e')
+  '974832a3878a020c87a833f5ba99a0c7d5d27b57')
if [ "$_F_gnome_git" != "n" ]; then
unset sha1sums
fi
@@ -74,6 +73,7 @@ session requiredpam_unix.so
session optionalpam_gnome_keyring.so auto_start
passwordrequiredpam_unix.so
session requiredpam_systemd.so
+sessionrequiredpam_loginuid.so
EOF

cat > $Fdestdir/etc/pam.d/gdm-autologin << "EOF"
@@ -95,6 +95,7 @@ auth   requiredpam_permit.so
accountrequiredpam_nologin.so
accountrequiredpam_unix.so
password   requiredpam_unix.so
+sessionrequiredpam_loginuid.so
sessionoptionalpam_keyinit.so force revoke
sessionrequiredpam_unix.so
sessionrequiredpam_systemd.so
@@ -121,4 +122,3 @@ Frm etc/dconf/db/gdm
}

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


[Frugalware-git] bastetesting: gdm-3.2.1-9-x86_64 * test syncpkg i686

2012-05-03 Thread Baste
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=bastetesting.git;a=commitdiff;h=0cb2ab68372d887d129cf162643ba7a74facc762

commit 0cb2ab68372d887d129cf162643ba7a74facc762
Author: Baste 
Date:   Thu May 3 14:13:04 2012 +0200

gdm-3.2.1-9-x86_64
* test syncpkg i686

diff --git a/source/gnome/gdm/FrugalBuild b/source/gnome/gdm/FrugalBuild
index 5acf7e4..174a09c 100644
--- a/source/gnome/gdm/FrugalBuild
+++ b/source/gnome/gdm/FrugalBuild
@@ -3,7 +3,7 @@

pkgname=gdm
pkgver=3.2.1
-pkgrel=8
+pkgrel=9
pkgdesc="GNOME Display Manager"
url="http://www.gnome.org/";
backup=(etc/gdm/custom.conf etc/pam.d/gdm etc/pam.d/gdm-autologin \
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] frugalware-current: babl-0.1.10-1-i686 * version bump

2012-05-03 Thread Devil505
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=69ea5ff4ed1855c6c7ae9d96b411ee35ab1a864d

commit 69ea5ff4ed1855c6c7ae9d96b411ee35ab1a864d
Author: Devil505 
Date:   Thu May 3 17:54:30 2012 +0200

babl-0.1.10-1-i686
* version bump

diff --git a/source/lib/babl/FrugalBuild b/source/lib/babl/FrugalBuild
index 44c84f0..ab38b0a 100644
--- a/source/lib/babl/FrugalBuild
+++ b/source/lib/babl/FrugalBuild
@@ -2,7 +2,7 @@
# Maintainer: bouleetbil 

pkgname=babl
-pkgver=0.1.6
+pkgver=0.1.10
pkgrel=1
pkgdesc="Babl is a dynamic, any to any, pixel format conversion library."
archs=('i686' 'x86_64' 'arm')
@@ -13,6 +13,6 @@ options=('scriptlet')
urldl="ftp://ftp.gimp.org/pub/babl/0.1/";
up2date="lynx -dump $urldl | Flasttarbz2"
source=($urldl/$pkgname-$pkgver.tar.bz2)
-sha1sums=('3178ec9f988efe895d00e2d432ad9b6ec10211e9')
+sha1sums=('ee60089e8e9d9390e730d3ae5e41074549928b7a')

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


[Frugalware-git] frugalware-current: gegl-0.1.8-2-i686 * rebuilt with babl 0.1.10

2012-05-03 Thread Devil505
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=82a604686f5efdcfa6b9ee91cc5363b4e02abe40

commit 82a604686f5efdcfa6b9ee91cc5363b4e02abe40
Author: Devil505 
Date:   Thu May 3 18:01:39 2012 +0200

gegl-0.1.8-2-i686
* rebuilt with babl 0.1.10

diff --git a/source/xlib/gegl/FrugalBuild b/source/xlib/gegl/FrugalBuild
index 3ab9033..055ab28 100644
--- a/source/xlib/gegl/FrugalBuild
+++ b/source/xlib/gegl/FrugalBuild
@@ -3,11 +3,11 @@

pkgname=gegl
pkgver=0.1.8
-pkgrel=1
+pkgrel=2
pkgdesc="GEGL is a graph based image processing framework."
url="http://www.gegl.org/";
groups=('xlib')
-depends=('babl>=0.1.0' 'libpng>=1.4.1' 'gtk+2>=2.20.0-2' 'freetype2' 'libxau' 
'libxdmcp' \
+depends=('babl>=0.1.10' 'libpng>=1.4.1' 'gtk+2>=2.20.0-2' 'freetype2' 'libxau' 
'libxdmcp' \
'dejavu-ttf' 'libxdamage>=1.1.1-3' 'libxext' 'libxml2>=2.7.8')
archs=('i686' 'x86_64')
options=('scriptlet')
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] frugalware-current: caudec-1.3.5-1-i686

2012-05-03 Thread Slown
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=7b5082becd0ecf42a7a11c4ce57e4deec73253ca

commit 7b5082becd0ecf42a7a11c4ce57e4deec73253ca
Author: Slown 
Date:   Thu May 3 17:18:53 2012 +0100

caudec-1.3.5-1-i686

* version bump

diff --git a/source/multimedia-extra/caudec/FrugalBuild 
b/source/multimedia-extra/caudec/FrugalBuild
index ff33eec..bcee9dc 100644
--- a/source/multimedia-extra/caudec/FrugalBuild
+++ b/source/multimedia-extra/caudec/FrugalBuild
@@ -2,7 +2,7 @@
# Maintainer: Slown 

pkgname=caudec
-pkgver=1.3.4
+pkgver=1.3.5
pkgrel=1
pkgdesc="A multi-process command-line audio transcoder"
depends=('procps' 'grep' 'bc' 'coreutils')
@@ -10,7 +10,7 @@ backup=('etc/caudecrc')
groups=('multimedia-extra')
archs=('i686' 'x86_64')
Finclude googlecode
-sha1sums=('48ece0334b8e9f8667a5395ef2a543c5ceac60c6')
+sha1sums=('3ff4c28a45ba30864cde835345a291ab70c0ea3e')

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


[Frugalware-git] frugalware-current: python-requests-0.12.0-1-i686

2012-05-03 Thread Slown
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=34f7abad30c960179c6b9bffcbee0e8a515f801b

commit 34f7abad30c960179c6b9bffcbee0e8a515f801b
Author: Slown 
Date:   Thu May 3 17:20:32 2012 +0100

python-requests-0.12.0-1-i686

* version bump

diff --git a/source/lib-extra/python-requests/FrugalBuild 
b/source/lib-extra/python-requests/FrugalBuild
index 05550c0..a89dce8 100644
--- a/source/lib-extra/python-requests/FrugalBuild
+++ b/source/lib-extra/python-requests/FrugalBuild
@@ -1,9 +1,9 @@
-# Compiling Time: 0 SBU
+# Compiling Time: 0.01 SBU
# Maintainer: Slown 

pkgname=python-requests
_F_archive_name="requests"
-pkgver=0.11.2
+pkgver=0.12.0
pkgrel=1
pkgdesc="Python HTTP for Humans."
depends=('python')
@@ -15,4 +15,4 @@ groups=('lib-extra')
archs=('i686' 'x86_64')
_F_pypi_name="requests"
Finclude pypi
-sha1sums=('00a49e8bd6dd8955acf6f6269d1b85f50c70b712')
+sha1sums=('b7f00fe817264a015062c41b9b9aba8b24c06f6c')
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] frugalware-current: nitrotasks-1.2.5-1-i686

2012-05-03 Thread Slown
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=c3849d0ad52e86465e60c43cf51166eb7d241d13

commit c3849d0ad52e86465e60c43cf51166eb7d241d13
Author: Slown 
Date:   Thu May 3 17:31:03 2012 +0100

nitrotasks-1.2.5-1-i686

* version bump

diff --git a/source/xapps-extra/nitrotasks/FrugalBuild 
b/source/xapps-extra/nitrotasks/FrugalBuild
index 4747750..5719cf0 100644
--- a/source/xapps-extra/nitrotasks/FrugalBuild
+++ b/source/xapps-extra/nitrotasks/FrugalBuild
@@ -2,7 +2,7 @@
# Maintainer: Slown 

pkgname=nitrotasks
-pkgver=1.2.4
+pkgver=1.2.5
pkgrel=1
pkgdesc="An eyecandy task managment tool"
url="http://nitrotasks.com";
@@ -13,7 +13,7 @@ archs=('i686' 'x86_64')
_F_launchpad_sep="_"
Finclude launchpad
_F_cd_path="$pkgname"
-sha1sums=('34098b47a286c9510f5e79cef542977d4e698e65')
+sha1sums=('93b6491a55708e32e12a1cffa28405f20a1fb4c5')

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


[Frugalware-git] frugalware-current: gegl-0.2.0-1-i686 * version bump

2012-05-03 Thread Devil505
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=2db38f3b137ba2a12969f837bbab227a22698966

commit 2db38f3b137ba2a12969f837bbab227a22698966
Author: Devil505 
Date:   Thu May 3 18:31:42 2012 +0200

gegl-0.2.0-1-i686
* version bump

diff --git a/source/xlib/gegl/FrugalBuild b/source/xlib/gegl/FrugalBuild
index 055ab28..be996fd 100644
--- a/source/xlib/gegl/FrugalBuild
+++ b/source/xlib/gegl/FrugalBuild
@@ -2,19 +2,20 @@
# Maintainer: bouleetbil 

pkgname=gegl
-pkgver=0.1.8
-pkgrel=2
+pkgver=0.2.0
+pkgrel=1
pkgdesc="GEGL is a graph based image processing framework."
url="http://www.gegl.org/";
groups=('xlib')
depends=('babl>=0.1.10' 'libpng>=1.4.1' 'gtk+2>=2.20.0-2' 'freetype2' 'libxau' 
'libxdmcp' \
'dejavu-ttf' 'libxdamage>=1.1.1-3' 'libxext' 'libxml2>=2.7.8')
+makedepends=('intltool')
archs=('i686' 'x86_64')
options=('scriptlet')
-urldl="ftp://ftp.gimp.org/pub/$pkgname/0.1";
+urldl="ftp://ftp.gimp.org/pub/$pkgname/0.2";
up2date="lynx -dump $urldl | Flasttarbz2"
source=($urldl/$pkgname-$pkgver.tar.bz2)
Fconfopts="${Fconfopts[@]} --disable-docs"
-sha1sums=('3d4d902580f5c5122b01b5188b6b5da03089ecac')
+sha1sums=('764cc66cb3c7b261b8fc18a6268a0e264a91d573')

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


[Frugalware-git] frugalware-current: csync-owncloud-0.50.5-1-i686

2012-05-03 Thread Slown
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=d92e0153e1359bfdbcd01ff623f27c9444c13f38

commit d92e0153e1359bfdbcd01ff623f27c9444c13f38
Author: Slown 
Date:   Thu May 3 17:35:50 2012 +0100

csync-owncloud-0.50.5-1-i686

* new package

diff --git a/source/apps-extra/csync-owncloud/FrugalBuild 
b/source/apps-extra/csync-owncloud/FrugalBuild
new file mode 100644
index 000..266bec4
--- /dev/null
+++ b/source/apps-extra/csync-owncloud/FrugalBuild
@@ -0,0 +1,19 @@
+# Compiling Time: 0.05 SBU
+# Maintainer: Slown 
+
+pkgname=csync-owncloud
+_F_archive_name="csync"
+pkgver=0.50.5
+pkgrel=1
+pkgdesc="A file synchronizer especially designed for you, the normal user"
+url="http://www.csync.org";
+depends=('log4c' 'sqlite3' 'iniparser')
+makedepends=('samba-client' 'libssh')
+groups=('apps-extra')
+archs=('i686' 'x86_64')
+up2date="Flasttar https://owncloud.com/download";
+source=(http://download.owncloud.com/download/$_F_archive_name-$pkgver.tar.bz2)
+Finclude cmake
+sha1sums=('f5ca695e41c9a112e0e87f4ed7d49995d27f4d4b')
+
+# optimization OK
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] frugalware-current: owncloud-client-1.0.1-1-i686

2012-05-03 Thread Slown
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=ad89c3597acfcfb9ca2795cd3b876882ff313f60

commit ad89c3597acfcfb9ca2795cd3b876882ff313f60
Author: Slown 
Date:   Thu May 3 18:10:49 2012 +0100

owncloud-client-1.0.1-1-i686

* new package

diff --git a/source/xapps-extra/owncloud-client/FrugalBuild 
b/source/xapps-extra/owncloud-client/FrugalBuild
new file mode 100644
index 000..69c288d
--- /dev/null
+++ b/source/xapps-extra/owncloud-client/FrugalBuild
@@ -0,0 +1,30 @@
+# Compiling Time: 0.71 SBU
+# Maintainer: Slown 
+
+pkgname=owncloud-client
+_F_archive_name="mirall"
+pkgver=1.0.1
+pkgrel=1
+pkgdesc="ownCloud client based on mirall"
+url="http://owncloud.org";
+depends=('qt4' 'csync-owncloud')
+groups=('xapps-extra')
+archs=('i686' 'x86_64')
+up2date="Flasttar https://owncloud.com/download";
+source=(http://download.owncloud.com/download/$_F_archive_name-$pkgver.tar.bz2)
+Finclude cmake
+sha1sums=('f30129ad58911f9fbbdf79a0e8caf3348c62351f')
+
+_F_desktop_name="ownCloud 2012 client"
+_F_desktop_exec="owncloud %u"
+_F_desktop_icon="mirall"
+_F_desktop_categories="Qt;Utility"
+
+
+build() {
+   Fcd
+   CMake_build
+   Fdesktop2
+}
+
+# optimization OK
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] frugalware-current: texmaker-3.3.3-1-x86_64

2012-05-03 Thread jercel
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=40ede536dd532213afb9ee60bfb36ef879c819a8

commit 40ede536dd532213afb9ee60bfb36ef879c819a8
Author: jercel 
Date:   Thu May 3 20:50:39 2012 +0200

texmaker-3.3.3-1-x86_64

* version bump

diff --git a/source/xapps-extra/texmaker/FrugalBuild 
b/source/xapps-extra/texmaker/FrugalBuild
index 47f2bf4..1668dcf 100644
--- a/source/xapps-extra/texmaker/FrugalBuild
+++ b/source/xapps-extra/texmaker/FrugalBuild
@@ -2,7 +2,7 @@
# Maintainer: voroskoi 

pkgname=texmaker
-pkgver=3.3.2
+pkgver=3.3.3
pkgrel=1
pkgdesc="Texmaker is a free LaTeX editor."
url="http://www.xm1math.net/texmaker/";
@@ -12,7 +12,7 @@ groups=('xapps-extra')
archs=('i686' 'x86_64')
up2date="Flasttar http://www.xm1math.net/texmaker/download.html#linux "
source=(http://www.xm1math.net/texmaker/$pkgname-$pkgver.tar.bz2)
-sha1sums=('73cd62a8377e7c68c0e521fd2805a012178a3c35')
+sha1sums=('d3602897a47f2e3ccd0a395bb04b1d189241d2ea')

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


[Frugalware-git] frugalware-current: gimp-2.8.0-1-i686 * version bump

2012-05-03 Thread Devil505
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=685304b6a26256ffd22a7f865940cac616f5

commit 685304b6a26256ffd22a7f865940cac616f5
Author: Devil505 
Date:   Thu May 3 21:01:08 2012 +0200

gimp-2.8.0-1-i686
* version bump

diff --git a/source/xapps/gimp/FrugalBuild b/source/xapps/gimp/FrugalBuild
index 4a925e6..df676c1 100644
--- a/source/xapps/gimp/FrugalBuild
+++ b/source/xapps/gimp/FrugalBuild
@@ -3,19 +3,19 @@
# Contributor: Miklos Vajna 

pkgname=gimp
-pkgver=2.6.11
-pkgrel=2
+pkgver=2.8.0
+pkgrel=1
pkgdesc="The GNU Image Manipulation Program"
url="http://www.gimp.org/";
depends=('libxml2>=2.7.8' 'librsvg>=2.26.0-2' 'libmng' 'libexif>=0.6.12-3' 
'alsa-lib' 'libgtkhtml>=2.11.1-4' \
-   'desktop-file-utils' 'lcms' 'pygtk>=2.14.1-2' 'aalib' 'libxpm>=3.5.7-2' 
'intltool' 'gegl>=0.1.2-2')
+   'desktop-file-utils' 'lcms' 'pygtk>=2.14.1-2' 'aalib' 'libxpm>=3.5.7-2' 
'intltool' 'gegl>=0.2.0')
groups=('xapps')
archs=('i686' 'x86_64')
makedepends=('gimp-print' 'perl-xml-parser')
up2date="lynx -dump $url/downloads/|grep '[0-9].[02468].[0-9].tar.bz2'|sed -n 
's/.*-\(.*\)\.t.*/\1/;$ p'"
-source=(ftp://ftp.gimp.org/pub/gimp/v2.6/$pkgname-$pkgver.tar.bz2 \
+source=(ftp://ftp.gimp.org/pub/gimp/v2.8/$pkgname-$pkgver.tar.bz2 \
http://ftp.frugalware.org/pub/other/artwork/gimp/gimp-splash.png)
-sha1sums=('2f9d596e727bdbf304fa78257c1731d9faf3934c' \
+sha1sums=('3b20d3dd10d971acbbc9345eb5cb93378c398ebc' \
'f9dd8c292abdf4132fef231feac9360e069ca8dc')
options=('scriptlet' 'force')
_F_gnome_desktop="y"
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] frugalware-current: xorg-server-1.12.1-3-i686 * added lightdm line in desktop file

2012-05-03 Thread Devil505
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=99c13807598d252eb1f2fd20e9823d1874b1ddf4

commit 99c13807598d252eb1f2fd20e9823d1874b1ddf4
Author: Devil505 
Date:   Thu May 3 21:15:59 2012 +0200

xorg-server-1.12.1-3-i686
* added lightdm line in desktop file

diff --git a/source/x11/xorg-server/FrugalBuild 
b/source/x11/xorg-server/FrugalBuild
index 9349b13..2d84e1a 100644
--- a/source/x11/xorg-server/FrugalBuild
+++ b/source/x11/xorg-server/FrugalBuild
@@ -9,7 +9,7 @@ USE_SERVERDMX=${USE_SERVERDMX:-"y"}

pkgname=xorg-server
pkgver=1.12.1
-pkgrel=2
+pkgrel=3
pkgdesc="Modular X.Org X Server"
groups=('x11' 'xorg-core')
archs=('i686' 'x86_64' 'arm')
diff --git a/source/x11/xorg-server/desktop b/source/x11/xorg-server/desktop
index 0b1ba0d..d4706ec 100644
--- a/source/x11/xorg-server/desktop
+++ b/source/x11/xorg-server/desktop
@@ -5,5 +5,6 @@
#desktop="/usr/bin/xdm -nodaemon"
#desktop="/usr/sbin/lxdm"
#desktop="/usr/bin/slim"
+#desktop="/usr/sbin/lightdm"
#desktop="/usr/sbin/gdm --nodaemon"
#desktop="/usr/bin/kdm -nodaemon"
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] frugalware-current: xorg-server-1.12.1-3-i686 * forgot to update sha1sums

2012-05-03 Thread Devil505
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=69335b17f2a44b40ba04012a403f7ab1c1efc983

commit 69335b17f2a44b40ba04012a403f7ab1c1efc983
Author: Devil505 
Date:   Thu May 3 21:27:40 2012 +0200

xorg-server-1.12.1-3-i686
* forgot to update sha1sums

diff --git a/source/x11/xorg-server/FrugalBuild 
b/source/x11/xorg-server/FrugalBuild
index 2d84e1a..4b46560 100644
--- a/source/x11/xorg-server/FrugalBuild
+++ b/source/x11/xorg-server/FrugalBuild
@@ -50,7 +50,7 @@ source=("${source[@]}" \
exa-gfx-corruption-workaround.patch)

sha1sums=("${sha1sums[@]}" \
- '905cc57547421ff3ca77ec1c8e6898a7a414346f' \
+  '5748dd2468967e2a80bce52101917ee012fa38da' \
'3fa8d717bce03296e6b097279a410d9672000b08' \
'b174513367cc854e4d4440e3394161d1d0222491')
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] boost149: lightspark-0.5.6-1-x86_64

2012-05-03 Thread Elentir
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=boost149.git;a=commitdiff;h=feeecfbf79bde0ed7aadb0fd9cd7ffadaf83f036

commit feeecfbf79bde0ed7aadb0fd9cd7ffadaf83f036
Author: Elentir 
Date:   Thu May 3 21:28:03 2012 +0200

lightspark-0.5.6-1-x86_64

* version bump

diff --git a/source/xlib-extra/lightspark/FrugalBuild 
b/source/xlib-extra/lightspark/FrugalBuild
index 192d348..1d0985e 100644
--- a/source/xlib-extra/lightspark/FrugalBuild
+++ b/source/xlib-extra/lightspark/FrugalBuild
@@ -2,8 +2,8 @@
# Maintainer: Devil505 

pkgname=lightspark
-pkgver=0.5.4.1
-pkgrel=2
+pkgver=0.5.6
+pkgrel=1
pkgdesc='High performance flash player designed from scratch to be efficient on 
modern hardware'
depends=('libboost>=1.49.0' 'ffmpeg>=0.10' 'curl' 'gtk+2-libs' 'ftgl' 'glew' 
'libxml++' 'gdk-pixbuf2' 'pulseaudio>=0.9.23' 'dbus')
makedepends=('nasm' 'xulrunner' 'glproto' 'boost' 'llvm>=3.0')
@@ -13,7 +13,7 @@ _F_launchpad_subdir="lightspark-${pkgver}"
Finclude cmake gnome-scriptlet launchpad
groups=('xlib-extra')
archs=('i686' 'x86_64')
-sha1sums=('e385f0d7578f8e355d10031439a01e8ea40cc335')
+sha1sums=('57c5900bb07ece7bc7db0180329049554991bbfe')

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


[Frugalware-git] boost149: qbittorrent-2.9.7-2-x86_64

2012-05-03 Thread Elentir
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=boost149.git;a=commitdiff;h=7dff6e1dc6893262a6314dd2df136d30e067794c

commit 7dff6e1dc6893262a6314dd2df136d30e067794c
Author: Elentir 
Date:   Thu May 3 21:33:52 2012 +0200

qbittorrent-2.9.7-2-x86_64

* add patch to fix build

diff --git a/source/xapps-extra/qbittorrent/FrugalBuild 
b/source/xapps-extra/qbittorrent/FrugalBuild
index ef57ce8..61f14a4 100644
--- a/source/xapps-extra/qbittorrent/FrugalBuild
+++ b/source/xapps-extra/qbittorrent/FrugalBuild
@@ -14,10 +14,13 @@ groups=('xapps-extra')
archs=('i686' 'x86_64')
_F_gnome_iconcache="y"
Finclude sourceforge
+source=(${source[@]} fix-missing-header.patch)
url="http://www.$pkgname.org/";
-sha1sums=('ea49b3031b1517fe83826627b38cf4df725b5f4a')
+sha1sums=('ea49b3031b1517fe83826627b38cf4df725b5f4a' \
+  '1e99c275b6cc64f8334418bd7d565ae2f7aaa685')

build() {
+   Fpatchall
Fconf
Fmake
make INSTALL_ROOT=$Fdestdir install || Fdie
diff --git a/source/xapps-extra/qbittorrent/fix-missing-header.patch 
b/source/xapps-extra/qbittorrent/fix-missing-header.patch
new file mode 100644
index 000..ea2bfd7
--- /dev/null
+++ b/source/xapps-extra/qbittorrent/fix-missing-header.patch
@@ -0,0 +1,24 @@
+From 57d046b835d1eb996998660c5c7cf1af1fbbf458 Mon Sep 17 00:00:00 2001
+From: Jekyll Wu 
+Date: Thu, 5 Apr 2012 09:16:05 +0800
+Subject: [PATCH] fix compilation error
+
+---
+ src/qtsingleapp/qtlocalpeer.cpp |1 +
+ 1 file changed, 1 insertion(+)
+
+diff --git a/src/qtsingleapp/qtlocalpeer.cpp b/src/qtsingleapp/qtlocalpeer.cpp
+index b329e91..83cfa68 100644
+--- a/src/qtsingleapp/qtlocalpeer.cpp
 b/src/qtsingleapp/qtlocalpeer.cpp
+@@ -57,6 +57,7 @@ static PProcessIdToSessionId pProcessIdToSessionId = 0;
+ #endif
+ #if defined(Q_OS_UNIX)
+ #include 
++#include 
+ #endif
+ #if defined(Q_OS_OS2)
+ #include 
+--
+1.7.9.6
+
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] frugalware-current: ncdc-1.10-1-i686

2012-05-03 Thread Slown
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=6e8a7d91c927ba6b321a4975d47dbeab8e6465ad

commit 6e8a7d91c927ba6b321a4975d47dbeab8e6465ad
Author: Slown 
Date:   Thu May 3 20:43:30 2012 +0100

ncdc-1.10-1-i686

* version bump

diff --git a/source/apps-extra/ncdc/FrugalBuild 
b/source/apps-extra/ncdc/FrugalBuild
index f3459eb..34d6360 100644
--- a/source/apps-extra/ncdc/FrugalBuild
+++ b/source/apps-extra/ncdc/FrugalBuild
@@ -2,13 +2,13 @@
# Maintainer: Slown 

pkgname=ncdc
-pkgver=1.9
+pkgver=1.10
pkgrel=1
pkgdesc="Lightweight Ncurses Direct Connect client"
url="http://dev.yorhel.nl/ncdc";
-depends=('glib2' 'libxml2' 'sqlite3' 'gdbm' 'bzip2')
+depends=('glib2' 'sqlite3' 'gnutls' 'bzip2')
groups=('apps-extra')
archs=('i686' 'x86_64')
up2date="Flasttar http://dev.yorhel.nl/download";
source=(http://dev.yorhel.nl/download/$pkgname-$pkgver.tar.gz)
-sha1sums=('f1165e210c3da5fe69070686b7080279061fe1e8')
+sha1sums=('06e3ad1de0353711b217ae9f1a456d9d0c3e403b')
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] boost149: k3d-0.8.0.2-2-x86_64

2012-05-03 Thread Elentir
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=boost149.git;a=commitdiff;h=6dd78e3bb0bdef93b2a84c020c440bba40fa703a

commit 6dd78e3bb0bdef93b2a84c020c440bba40fa703a
Author: Elentir 
Date:   Thu May 3 22:05:58 2012 +0200

k3d-0.8.0.2-2-x86_64

* add patch to fix build

diff --git a/source/xapps-extra/k3d/FrugalBuild 
b/source/xapps-extra/k3d/FrugalBuild
index d0fcbb7..91c685d 100644
--- a/source/xapps-extra/k3d/FrugalBuild
+++ b/source/xapps-extra/k3d/FrugalBuild
@@ -19,12 +19,14 @@ Finclude sourceforge cmake
source=($source \
$pkgname-0.7.11.0-libpng14.patch \
$pkgname-gcc-4.6.patch \
-   $pkgname-gtkmm2.24.patch)
+   $pkgname-gtkmm2.24.patch \
+   $pkgname-gcc-4.7.patch)
url="http://www.k-3d.org/";
sha1sums=('5d677aef76053b01281476ae25f0bd4e998d319c' \
'068bb0671d608cdc59f556011491685725a56360' \
'3f20ebb16cf8849ecc5caded583b11b2f25e6e16' \
-  'd6857963451ff201320ffa5b9dd3212f057f7374')
+  'd6857963451ff201320ffa5b9dd3212f057f7374' \
+  '80259691317a35479ddde9e6743e6d2caae3e61b')

build() {
Fcd $_F_sourceforge_name-$pkgver
diff --git a/source/xapps-extra/k3d/k3d-gcc-4.7.patch 
b/source/xapps-extra/k3d/k3d-gcc-4.7.patch
new file mode 100644
index 000..abb10bc
--- /dev/null
+++ b/source/xapps-extra/k3d/k3d-gcc-4.7.patch
@@ -0,0 +1,60 @@
+diff -Naur k3d-source-0.8.0.2/k3dsdk/data.h k3d-source-0.8.0.2new/k3dsdk/data.h
+--- k3d-source-0.8.0.2/k3dsdk/data.h   2010-07-03 04:28:57.0 +0200
 k3d-source-0.8.0.2new/k3dsdk/data.h2012-05-01 13:37:40.489058108 
+0200
+@@ -580,7 +580,7 @@
+
+   try
+   {
+-  set_value(boost::lexical_cast(*new_value), 
Hint);
++  
this->set_value(boost::lexical_cast(*new_value), Hint);
+   return true;
+   }
+   catch(...)
+@@ -865,7 +865,7 @@
+
+   try
+   {
+-  set_value(boost::lexical_cast(*new_value), 
Hint);
++  
this->set_value(boost::lexical_cast(*new_value), Hint);
+   return true;
+   }
+   catch(...)
+@@ -1011,7 +1011,7 @@
+
+   try
+   {
+-  set_value(boost::lexical_cast(*new_value), 
Hint);
++  
this->set_value(boost::lexical_cast(*new_value), Hint);
+   return true;
+   }
+   catch(...)
+@@ -1146,7 +1146,7 @@
+   if(!new_value)
+   return false;
+
+-  set_value(*new_value, Hint);
++  this->set_value(*new_value, Hint);
+   return true;
+   }
+
+diff -Naur k3d-source-0.8.0.2/modules/animation/interpolator.h 
k3d-source-0.8.0.2new/modules/animation/interpolator.h
+--- k3d-source-0.8.0.2/modules/animation/interpolator.h2010-07-03 
04:28:58.0 +0200
 k3d-source-0.8.0.2new/modules/animation/interpolator.h 2012-05-01 
13:38:21.353060659 +0200
+@@ -92,7 +92,7 @@
+   {
+   time_t t_lower, t_upper;
+   value_t v_lower, v_upper;
+-  get_surrounding_keys(Time, Keyframes, t_lower, t_upper, 
v_lower, v_upper);
++  this->get_surrounding_keys(Time, Keyframes, t_lower, t_upper, 
v_lower, v_upper);
+   return lerp(t_lower, t_upper, v_lower, v_upper, Time);
+   }
+ protected:
+@@ -116,7 +116,7 @@
+   {
+   time_t t_lower, t_upper;
+   value_t v_lower, v_upper;
+-  get_surrounding_keys(Time, Keyframes, t_lower, t_upper, 
v_lower, v_upper);
++  this->get_surrounding_keys(Time, Keyframes, t_lower, t_upper, 
v_lower, v_upper);
+   return lerp(t_lower, t_upper, v_lower, v_upper, Time);
+   }
+ protected:
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] boost149: qtiplot-0.9.8.9-2-x86_64

2012-05-03 Thread Elentir
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=boost149.git;a=commitdiff;h=6d7d57dedc0a70241567026f68143fe75f1f9273

commit 6d7d57dedc0a70241567026f68143fe75f1f9273
Author: Elentir 
Date:   Thu May 3 22:14:35 2012 +0200

qtiplot-0.9.8.9-2-x86_64

* add patch to fix build

diff --git a/source/xapps-extra/qtiplot/FrugalBuild 
b/source/xapps-extra/qtiplot/FrugalBuild
index 4237200..d9972f7 100644
--- a/source/xapps-extra/qtiplot/FrugalBuild
+++ b/source/xapps-extra/qtiplot/FrugalBuild
@@ -19,13 +19,15 @@ _F_desktop_categories="Qt;Education;Science;"
_F_desktop_mimetypes="application/x-qtiplot-project;application/x-qtiplot-project-compressed;application/x-qtiplot-project-backup"
source=($source build.conf qtiplot.xml \
http://download.berlios.de/qtiplot/QTeXEngine-0.2-opensource.zip \
-   qtiplot-0.9.8.5-qtassist.patch)
+   qtiplot-0.9.8.5-qtassist.patch \
+   qtiplot-missing-glu-header.patch)
up2date="Flasttar http://soft.proindependent.com/download.html";
sha1sums=('73b17dd9195c3d86750d5f1f5bdd4d5483c5fe30' \
-  '04a1e263c1736c11cb42f87c6ee29522035fc077' \
+  '79196d857a089365208cee0513383620c3e01e3e' \
'285f57d865956d93250ec548288c5bface096b6b' \
'b484a4da7a0f3103e188539bfa6c1910dc9b55ca' \
-  '0e70e9bfd18295b395a1bbabe723d7261a0d748d')
+  '0e70e9bfd18295b395a1bbabe723d7261a0d748d' \
+  '12f323fc9c2f657a0379d71ea35482ea797fce13')
unset MAKEFLAGS

build() {
diff --git a/source/xapps-extra/qtiplot/build.conf 
b/source/xapps-extra/qtiplot/build.conf
index 5d50e5b..13772d0 100644
--- a/source/xapps-extra/qtiplot/build.conf
+++ b/source/xapps-extra/qtiplot/build.conf
@@ -9,7 +9,7 @@ isEmpty( QTI_ROOT ) {
# Global include path which is always added at the end of the INCLUDEPATH
SYS_INCLUDEPATH = /usr/include
# Global lib path and libs which is ls always added at the end of LIBS
-SYS_LIBS = -L/usr/lib
+SYS_LIBS = -L/usr/lib -lGLU -lz

##
## zlib (http://www.zlib.net/)
diff --git a/source/xapps-extra/qtiplot/qtiplot-missing-glu-header.patch 
b/source/xapps-extra/qtiplot/qtiplot-missing-glu-header.patch
new file mode 100644
index 000..12165f2
--- /dev/null
+++ b/source/xapps-extra/qtiplot/qtiplot-missing-glu-header.patch
@@ -0,0 +1,22 @@
+diff -Naur qtiplot-0.9.8.9/3rdparty/qwtplot3d/include/qwt3d_global.h 
qtiplot-0.9.8.9new/3rdparty/qwtplot3d/include/qwt3d_global.h
+--- qtiplot-0.9.8.9/3rdparty/qwtplot3d/include/qwt3d_global.h  2011-08-24 
12:25:09.0 +0200
 qtiplot-0.9.8.9new/3rdparty/qwtplot3d/include/qwt3d_global.h   
2012-05-03 21:42:00.319533324 +0200
+@@ -2,6 +2,7 @@
+ #define QWT3D_GLOBAL_H
+
+ #include 
++#include 
+ #if QT_VERSION < 0x04
+ #include 
+ #endif
+diff -Naur qtiplot-0.9.8.9/3rdparty/qwtplot3d/include/qwt3d_openglhelper.h 
qtiplot-0.9.8.9new/3rdparty/qwtplot3d/include/qwt3d_openglhelper.h
+--- qtiplot-0.9.8.9/3rdparty/qwtplot3d/include/qwt3d_openglhelper.h
2011-08-24 12:25:09.0 +0200
 qtiplot-0.9.8.9new/3rdparty/qwtplot3d/include/qwt3d_openglhelper.h 
2012-05-03 21:42:27.350535011 +0200
+@@ -2,6 +2,7 @@
+ #define __openglhelper_2003_06_06_15_49__
+
+ #include "qglobal.h"
++#include 
+ #if QT_VERSION < 0x04
+ #include 
+ #else
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] boost149: supertux-0.3.3-6-x86_64

2012-05-03 Thread Elentir
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=boost149.git;a=commitdiff;h=e48a57100a85fe48b07b8849ff5bcef05d24108d

commit e48a57100a85fe48b07b8849ff5bcef05d24108d
Author: Elentir 
Date:   Thu May 3 22:23:51 2012 +0200

supertux-0.3.3-6-x86_64

* rebuild with boost>=1.49.0

diff --git a/source/games-extra/supertux/FrugalBuild 
b/source/games-extra/supertux/FrugalBuild
index 869f7bf..52b4700 100644
--- a/source/games-extra/supertux/FrugalBuild
+++ b/source/games-extra/supertux/FrugalBuild
@@ -4,19 +4,21 @@

pkgname=supertux
pkgver=0.3.3
-pkgrel=5
+pkgrel=6
pkgdesc="SuperTux is a classic 2D jump'n run sidescroller game in a style 
similar to the original SuperMario games."
_F_googlecode_ext=".tar.bz2"
Finclude googlecode
url="http://supertux.lethargik.org/";
-depends=('sdl_mixer' 'sdlimage' 'physfs>=2.0.2' 'openal>=1.7.411' 'libvorbis' 
'mesa' 'glew' 'libboost>=1.46.1')
+depends=('sdl_mixer' 'sdlimage' 'physfs>=2.0.2' 'openal>=1.7.411' 'libvorbis' 
'mesa' 'glew' 'libboost>=1.49.0')
makedepends=('boost')
groups=('games-extra')
archs=('i686' 'x86_64')
license="GPL"
_F_cmake_confopts="CMAKE_INSTALL_PREFIX=/usr -D INSTALL_SUBDIR_BIN=bin ."
Finclude cmake
-sha1sums=('f89214fd5d997b62753fbba7e1d089d81513f2de')
+source=(${source[@]} supertux-gcc47.patch)
+sha1sums=('f89214fd5d997b62753fbba7e1d089d81513f2de' \
+  'e7d23576e34b7adc3e1ca012bdb8da4c5b28af29')

build() {
Fcd
diff --git a/source/games-extra/supertux/supertux-gcc47.patch 
b/source/games-extra/supertux/supertux-gcc47.patch
new file mode 100644
index 000..16781b6
--- /dev/null
+++ b/source/games-extra/supertux/supertux-gcc47.patch
@@ -0,0 +1,36 @@
+diff -Naur supertux2-0.3.3.orig/external/squirrel/squirrel/sqmem.h 
supertux2-0.3.3/external/squirrel/squirrel/sqmem.h
+--- supertux2-0.3.3.orig/external/squirrel/squirrel/sqmem.h1970-01-01 
01:00:00.0 +0100
 supertux2-0.3.3/external/squirrel/squirrel/sqmem.h 2012-05-01 
11:59:37.0 +0200
+@@ -0,0 +1,8 @@
++/*see copyright notice in squirrel.h */
++#ifndef _SQMEM_H_
++#define _SQMEM_H_
++
++void *sq_vm_malloc(SQUnsignedInteger size);
++void *sq_vm_realloc(void *p,SQUnsignedInteger oldsize,SQUnsignedInteger size);
++void sq_vm_free(void *p,SQUnsignedInteger size);
++#endif //_SQMEM_H_
+diff -Naur supertux2-0.3.3.orig/external/squirrel/squirrel/sqstate.h 
supertux2-0.3.3/external/squirrel/squirrel/sqstate.h
+--- supertux2-0.3.3.orig/external/squirrel/squirrel/sqstate.h  2010-03-01 
13:40:58.0 +0100
 supertux2-0.3.3/external/squirrel/squirrel/sqstate.h   2012-05-01 
11:59:37.0 +0200
+@@ -136,8 +136,4 @@
+ extern SQObjectPtr _minusone_;
+
+ bool CompileTypemask(SQIntVec &res,const SQChar *typemask);
+-
+-void *sq_vm_malloc(SQUnsignedInteger size);
+-void *sq_vm_realloc(void *p,SQUnsignedInteger oldsize,SQUnsignedInteger size);
+-void sq_vm_free(void *p,SQUnsignedInteger size);
+ #endif //_SQSTATE_H_
+diff -Naur supertux2-0.3.3.orig/external/squirrel/squirrel/squtils.h 
supertux2-0.3.3/external/squirrel/squirrel/squtils.h
+--- supertux2-0.3.3.orig/external/squirrel/squirrel/squtils.h  2010-03-01 
13:40:58.0 +0100
 supertux2-0.3.3/external/squirrel/squirrel/squtils.h   2012-05-01 
11:59:37.0 +0200
+@@ -2,6 +2,8 @@
+ #ifndef _SQUTILS_H_
+ #define _SQUTILS_H_
+
++#include "sqmem.h"
++
+ #define sq_new(__ptr,__type) {__ptr=(__type 
*)sq_vm_malloc(sizeof(__type));new (__ptr) __type;}
+ #define sq_delete(__ptr,__type) 
{__ptr->~__type();sq_vm_free(__ptr,sizeof(__type));}
+ #define SQ_MALLOC(__size) sq_vm_malloc((__size));
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] boost149: pyexiv2-0.3.2-3-x86_64

2012-05-03 Thread Elentir
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=boost149.git;a=commitdiff;h=ff7c9f1093db599550a4084bcb772f2bc797b9ef

commit ff7c9f1093db599550a4084bcb772f2bc797b9ef
Author: Elentir 
Date:   Thu May 3 22:27:34 2012 +0200

pyexiv2-0.3.2-3-x86_64

* rebuild with boost>=1.49.0

diff --git a/source/lib-extra/pyexiv2/FrugalBuild 
b/source/lib-extra/pyexiv2/FrugalBuild
index 492ef86..d7dc949 100644
--- a/source/lib-extra/pyexiv2/FrugalBuild
+++ b/source/lib-extra/pyexiv2/FrugalBuild
@@ -3,10 +3,10 @@

pkgname=pyexiv2
pkgver=0.3.2
-pkgrel=2
+pkgrel=3
pkgdesc="a python binding to exiv2"
url="http://tilloy.net/dev/pyexiv2";
-depends=('python>=2.7' 'exiv2>=0.23' 'libboost>=1.46.1')
+depends=('python>=2.7' 'exiv2>=0.23' 'libboost>=1.49.0')
makedepends=('boost' 'scons')
archs=('i686' 'x86_64')
groups=('lib-extra')
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] boost149: raul-0.8.0-4-x86_64

2012-05-03 Thread Elentir
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=boost149.git;a=commitdiff;h=6ac97074d9be2498053a41c30c500e5f9a9b13d7

commit 6ac97074d9be2498053a41c30c500e5f9a9b13d7
Author: Elentir 
Date:   Thu May 3 22:28:12 2012 +0200

raul-0.8.0-4-x86_64

* rebuild with boost>=1.49.0

diff --git a/source/lib-extra/raul/FrugalBuild 
b/source/lib-extra/raul/FrugalBuild
index f85f871..dd9965a 100644
--- a/source/lib-extra/raul/FrugalBuild
+++ b/source/lib-extra/raul/FrugalBuild
@@ -3,10 +3,10 @@

pkgname=raul
pkgver=0.8.0
-pkgrel=3
+pkgrel=4
pkgdesc="Raul (Realtime Audio Utility Library) is a C++ utility library 
primarily aimed at audio/musical applications."
url="http://drobilla.net/software/raul/";
-depends=('boost>=1.46.1' 'glibmm>=2.25.5')
+depends=('boost>=1.49.0' 'glibmm>=2.25.5')
groups=('lib-extra')
archs=('i686' 'x86_64')
up2date="Flastarchive http://download.drobilla.net/ .tar.bz2"
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] boost149: tagpy-0.94.8-3-x86_64

2012-05-03 Thread Elentir
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=boost149.git;a=commitdiff;h=c8e24f1d230e9706cbecdb2b0c7fff86748b969a

commit c8e24f1d230e9706cbecdb2b0c7fff86748b969a
Author: Elentir 
Date:   Thu May 3 22:29:58 2012 +0200

tagpy-0.94.8-3-x86_64

* rebuild with boost>=1.49.0

diff --git a/source/lib-extra/tagpy/FrugalBuild 
b/source/lib-extra/tagpy/FrugalBuild
index bd60c34..fc5c1af 100644
--- a/source/lib-extra/tagpy/FrugalBuild
+++ b/source/lib-extra/tagpy/FrugalBuild
@@ -3,10 +3,10 @@

pkgname=tagpy
pkgver=0.94.8
-pkgrel=2
+pkgrel=3
pkgdesc="Python bindings for TagLib"
url="http://mathema.tician.de/software/tagpy";
-depends=('python' 'taglib' 'libboost>=1.46.1')
+depends=('python' 'taglib' 'libboost>=1.49.0')
makedepends=('distribute' 'boost')
groups=('lib-extra')
archs=('i686' 'x86_64')
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] boost149: xmms2-0.8-6-x86_64

2012-05-03 Thread Elentir
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=boost149.git;a=commitdiff;h=e9d5e1063b5c1134e2cfa6a52551bc90aea463cb

commit e9d5e1063b5c1134e2cfa6a52551bc90aea463cb
Author: Elentir 
Date:   Thu May 3 22:40:56 2012 +0200

xmms2-0.8-6-x86_64

* rebuild with boost>=1.49.0

diff --git a/source/xmultimedia-extra/xmms2/FrugalBuild 
b/source/xmultimedia-extra/xmms2/FrugalBuild
index 7d4253e..96c3d57 100644
--- a/source/xmultimedia-extra/xmms2/FrugalBuild
+++ b/source/xmultimedia-extra/xmms2/FrugalBuild
@@ -4,7 +4,7 @@

pkgname=xmms2
pkgver="0.8"
-pkgrel=5
+pkgrel=6
pkgdesc="A complete rewrite of the popular music player."
_F_sourceforge_ext="DrO_o.tar.bz2"
Finclude sourceforge
@@ -22,7 +22,7 @@ sha1sums=('9f7585571d95acd98df48c37948e8638fae7cc3a')

subpkgs=("xmms2-libs-c++" "xmms2-libs-perl" "xmms2-libs-python" 
"xmms2-libs-ruby")
subdescs=('xmms2 C++ bindings' 'perl bindings for xmms2' 'python bindings for 
xmms2' 'ruby bindings for xmms2')
-subdepends=("libboost>=1.46.1" "perl" "pyrex" "ruby")
+subdepends=("libboost>=1.49.0" "perl" "pyrex" "ruby")
subrodepends=("$pkgname=$pkgver" "$pkgname=$pkgver" "$pkgname=$pkgver" 
"$pkgname=$pkgver")
subgroups=('xmultimedia-extra' 'xmultimedia-extra' 'xmultimedia-extra' 
'xmultimedia-extra')
subarchs=('i686 x86_64' 'i686 x86_64' 'i686 x86_64' 'i686 x86_64')
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] artwork: * fix theme to avoid KDE crashing

2012-05-03 Thread Marius Cirsta
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=artwork.git;a=commitdiff;h=04af01da485b65f499780897a74f141031fbaf39

commit 04af01da485b65f499780897a74f141031fbaf39
Author: Marius Cirsta 
Date:   Thu May 3 23:39:13 2012 +

* fix theme to avoid KDE crashing

diff --git 
a/kde-frugalware/artwork/theme/plasma/Glassified/widgets/panel-background.svgz 
b/kde-frugalware/artwork/theme/plasma/Glassified/widgets/panel-background.svgz
index 42d449e..7ca43ef 100644
Binary files 
a/kde-frugalware/artwork/theme/plasma/Glassified/widgets/panel-background.svgz 
and 
b/kde-frugalware/artwork/theme/plasma/Glassified/widgets/panel-background.svgz 
differ
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] boost149: mkvtoolnix-5.5.0-1-x86_64

2012-05-03 Thread Elentir
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=boost149.git;a=commitdiff;h=cb0e37068febf6d700566ee02066a0cce71518be

commit cb0e37068febf6d700566ee02066a0cce71518be
Author: Elentir 
Date:   Thu May 3 22:46:39 2012 +0200

mkvtoolnix-5.5.0-1-x86_64

* version bump
* build with boost>=1.49.0

diff --git a/source/multimedia-extra/mkvtoolnix/FrugalBuild 
b/source/multimedia-extra/mkvtoolnix/FrugalBuild
index adee5cf..135d143 100644
--- a/source/multimedia-extra/mkvtoolnix/FrugalBuild
+++ b/source/multimedia-extra/mkvtoolnix/FrugalBuild
@@ -2,18 +2,18 @@
# Maintainer: voroskoi 

pkgname=mkvtoolnix
-pkgver=5.4.0
+pkgver=5.5.0
pkgrel=1
pkgdesc="MKVToolnix is a set of tools to create, alter and inspect Matroska 
files under Linux."
url="http://www.bunkus.org/videotools/mkvtoolnix";
makedepends=('boost' 'ruby')
-depends=('file' 'libvorbis' 'libmatroska>=1.3.0' 'expat' 'lzo' 'flac>=1.1.3' 
'libboost>=1.46.1' 'libogg' 'libebml>=1.2.2' 'curl')
+depends=('file' 'libvorbis' 'libmatroska>=1.3.0' 'expat' 'lzo' 'flac>=1.1.3' 
'libboost>=1.49.0' 'libogg' 'libebml>=1.2.2' 'curl')
groups=('multimedia-extra')
archs=('i686' 'x86_64')
up2date="Flasttar $url/sources/"
source=(http://www.bunkus.org/videotools/mkvtoolnix/sources/$pkgname-$pkgver.tar.bz2)
#Fconfopts="$Fconfopts --enable-lzo --enable-bz2 --disable-gui"
-sha1sums=('3f8356f6eeb8976d15aef35c63a2f9b42819c815')
+sha1sums=('0027d06f1061a94c8923ef6a1a788050bc4f7c84')
build()
{
Fcd
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] frugalware-current: kdebase-workspace-4.8.2-2-x86_64

2012-05-03 Thread Marius Cirsta
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=f73ebbe523619b3ebf09f889f919b0f14d2466c0

commit f73ebbe523619b3ebf09f889f919b0f14d2466c0
Author: Marius Cirsta 
Date:   Thu May 3 23:51:09 2012 +

kdebase-workspace-4.8.2-2-x86_64

* add patch to fix errors with bad theme

diff --git a/source/kde/kdebase-workspace/FrugalBuild 
b/source/kde/kdebase-workspace/FrugalBuild
index 348ec33..40989b7 100644
--- a/source/kde/kdebase-workspace/FrugalBuild
+++ b/source/kde/kdebase-workspace/FrugalBuild
@@ -7,7 +7,7 @@ USE_GPSD=${USE_GPSD:-"n"}
USE_NETWORKMANAGER=${USE_NETWORKMANAGER:-"y"}

pkgname=kdebase-workspace
-pkgrel=1
+pkgrel=2
pkgdesc="Programs specific for the KDE4 desktop."
groups=('kde' 'kde-minimal')
archs=('i686' 'x86_64')
@@ -32,14 +32,16 @@ source=("${source[@]}" \
kde-np.pamd \
kdebase-workspace-4.4.92-kdm_plymouth081.patch \
kdebase-workspace-4.7.0-enable-lcdfilter.patch \
-   shutdownfix.patch)
+   shutdownfix.patch \
+   fix-theme-crash.patch)
sha1sums=("${sha1sums[@]}" \
'e1f706c984fc81633663c662e674b6f2c64d2f83' \
'6216aad404aa0b846c835a0e8f9df4941bf74d37' \
'072f69fd5bdf5ea20b23bb9b3fae688a500d7169' \
'5924185ad7a9f16964edd36e68cb3714ba406253' \
'48e6d8e6a38438d93ba53fff3784662814a2adb1' \
-  '0385f30d7dd28a2d2365edebed4a4833ac9171f6')
+  '0385f30d7dd28a2d2365edebed4a4833ac9171f6' \
+  'e057363c42a7f3f26638e01f784e6f5993727704')

provides=("libksysguard" "$pkgname-extra-cursors" 
"plasma-scriptengine-google-gadgets")
conflicts=("${provides[@]}")
diff --git a/source/kde/kdebase-workspace/fix-theme-crash.patch 
b/source/kde/kdebase-workspace/fix-theme-crash.patch
new file mode 100644
index 000..ef87037
--- /dev/null
+++ b/source/kde/kdebase-workspace/fix-theme-crash.patch
@@ -0,0 +1,13 @@
+--- kde-workspace-4.8.2/libs/plasmagenericshell/panelshadows.cpp   
2012-03-29 22:02:31.0 +
 kde-workspace-4.8.2.new/libs/plasmagenericshell/panelshadows.cpp   
2012-05-03 22:10:07.0 +
+@@ -122,6 +122,10 @@
+ {
+ #ifdef Q_WS_X11
+ QPixmap pix = q->pixmap(element);
++if(pix.width()<=0 || pix.height()<=0) {
++  kError()<<"could not load "

[Frugalware-git] boost149: k3d-0.8.0.2-2-x86_64

2012-05-03 Thread Elentir
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=boost149.git;a=commitdiff;h=db389980da7e3686843078c0a191f1b97e395c15

commit db389980da7e3686843078c0a191f1b97e395c15
Author: Elentir 
Date:   Thu May 3 23:12:07 2012 +0200

k3d-0.8.0.2-2-x86_64

* fix patch

diff --git a/source/xapps-extra/k3d/FrugalBuild 
b/source/xapps-extra/k3d/FrugalBuild
index 91c685d..268b967 100644
--- a/source/xapps-extra/k3d/FrugalBuild
+++ b/source/xapps-extra/k3d/FrugalBuild
@@ -26,7 +26,7 @@ sha1sums=('5d677aef76053b01281476ae25f0bd4e998d319c' \
'068bb0671d608cdc59f556011491685725a56360' \
'3f20ebb16cf8849ecc5caded583b11b2f25e6e16' \
'd6857963451ff201320ffa5b9dd3212f057f7374' \
-  '80259691317a35479ddde9e6743e6d2caae3e61b')
+  '26d73cea542221eed414b21b04d83232093d3cf1')

build() {
Fcd $_F_sourceforge_name-$pkgver
diff --git a/source/xapps-extra/k3d/k3d-gcc-4.7.patch 
b/source/xapps-extra/k3d/k3d-gcc-4.7.patch
index abb10bc..0584744 100644
--- a/source/xapps-extra/k3d/k3d-gcc-4.7.patch
+++ b/source/xapps-extra/k3d/k3d-gcc-4.7.patch
@@ -1,6 +1,6 @@
diff -Naur k3d-source-0.8.0.2/k3dsdk/data.h k3d-source-0.8.0.2new/k3dsdk/data.h
--- k3d-source-0.8.0.2/k3dsdk/data.h2010-07-03 04:28:57.0 +0200
-+++ k3d-source-0.8.0.2new/k3dsdk/data.h2012-05-01 13:37:40.489058108 
+0200
 k3d-source-0.8.0.2new/k3dsdk/data.h2012-05-03 22:44:22.894766966 
+0200
@@ -580,7 +580,7 @@

try
@@ -37,6 +37,15 @@ diff -Naur k3d-source-0.8.0.2/k3dsdk/data.h 
k3d-source-0.8.0.2new/k3dsdk/data.h
return true;
}

+@@ -1671,7 +1671,7 @@
+   /// This little bit of magic makes it possible for base classes (such 
as node_storage) to update their own values while observing the correct undo 
policy
+   void internal_set_value(const value_t& Value, ihint* const Hint)
+   {
+-  set_value(Value, Hint);
++  this->set_value(Value, Hint);
+   }
+ };
+
diff -Naur k3d-source-0.8.0.2/modules/animation/interpolator.h 
k3d-source-0.8.0.2new/modules/animation/interpolator.h
--- k3d-source-0.8.0.2/modules/animation/interpolator.h 2010-07-03 
04:28:58.0 +0200
+++ k3d-source-0.8.0.2new/modules/animation/interpolator.h  2012-05-01 
13:38:21.353060659 +0200
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] boost149: gx_head-0.14.0-2-x86_64

2012-05-03 Thread Elentir
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=boost149.git;a=commitdiff;h=0b4cf8f5ef627654f31f1467394ab102ca579a30

commit 0b4cf8f5ef627654f31f1467394ab102ca579a30
Author: Elentir 
Date:   Thu May 3 23:13:53 2012 +0200

gx_head-0.14.0-2-x86_64

* rebuild with boost>=1.49.0
* fix depends

diff --git a/source/xmultimedia-extra/gx_head/FrugalBuild 
b/source/xmultimedia-extra/gx_head/FrugalBuild
index e6490dc..849adac 100644
--- a/source/xmultimedia-extra/gx_head/FrugalBuild
+++ b/source/xmultimedia-extra/gx_head/FrugalBuild
@@ -3,13 +3,13 @@

pkgname=gx_head
pkgver=0.14.0
-pkgrel=1
+pkgrel=2
pkgdesc="A simple guitar mono tube amplifier simulation based guitarix."
archs=('i686' 'x86_64')
url="http://guitarix.sourceforge.net/";
groups=('xmultimedia-extra')
-depends=('ladspa_sdk' 'gtk+2' 'jack>=0.118.0' 'libsndfile' 'libsigc++2' 
'zita-convolver' 'gtkmm2' 'boost>=1.46.1' 'jack-capture')
-makedepends=('intltool')
+depends=('ladspa_sdk' 'gtk+2' 'jack>=0.118.0' 'libsndfile' 'libsigc++2' 
'zita-convolver' 'gtkmm2' 'libboost>=1.49.0' 'jack-capture')
+makedepends=('intltool' 'boost')
_F_sourceforge_ext=.tar.bz2
_F_sourceforge_dirname="guitarix"
Finclude sourceforge
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] frugalware-current: llvm-3.0-2-x86_64 * move to devel group

2012-05-03 Thread James Buren
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=8ce70a4d4e33f7e84a306e20efc9fa2a8f6ab21d

commit 8ce70a4d4e33f7e84a306e20efc9fa2a8f6ab21d
Author: James Buren 
Date:   Thu May 3 17:12:30 2012 -0500

llvm-3.0-2-x86_64
* move to devel group

diff --git a/source/devel-extra/llvm/FrugalBuild b/source/devel/llvm/FrugalBuild
similarity index 98%
rename from source/devel-extra/llvm/FrugalBuild
rename to source/devel/llvm/FrugalBuild
index a649688..5267be7 100644
--- a/source/devel-extra/llvm/FrugalBuild
+++ b/source/devel/llvm/FrugalBuild
@@ -3,12 +3,12 @@

pkgname=llvm
pkgver=3.0
-pkgrel=1
+pkgrel=2
url="http://www.llvm.org";
pkgdesc="Low Level Virtual Machine (Compiler , Tools and Libs)"
depends=('libstdc++')
makedepends=('groff' 'libffi' 'python' 'ocaml')
-groups=('devel-extra')
+groups=('devel')
archs=('i686' 'x86_64' 'arm')
up2date="Flasttar $url/releases/download.html"
source=(http://llvm.org/releases/$pkgver/$pkgname-$pkgver.tar.gz \
diff --git a/source/devel-extra/llvm/clang-pure64.patch 
b/source/devel/llvm/clang-pure64.patch
similarity index 100%
rename from source/devel-extra/llvm/clang-pure64.patch
rename to source/devel/llvm/clang-pure64.patch
diff --git a/source/devel-extra/llvm/ocaml-fix.patch 
b/source/devel/llvm/ocaml-fix.patch
similarity index 100%
rename from source/devel-extra/llvm/ocaml-fix.patch
rename to source/devel/llvm/ocaml-fix.patch
diff --git a/source/devel-extra/llvm/path-fix.patch 
b/source/devel/llvm/path-fix.patch
similarity index 100%
rename from source/devel-extra/llvm/path-fix.patch
rename to source/devel/llvm/path-fix.patch
diff --git a/source/devel-extra/llvm/rpath-fix.patch 
b/source/devel/llvm/rpath-fix.patch
similarity index 100%
rename from source/devel-extra/llvm/rpath-fix.patch
rename to source/devel/llvm/rpath-fix.patch
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] ryuotesting2: tzdata-2012c-1-x86_64 * version bump * use new URL (old one is defunct) * fix up2date * replace guts of the build with Fbuild * take over from crazy

2012-05-03 Thread James Buren
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=ryuotesting2.git;a=commitdiff;h=ddc18c04634a15b8669d584264c871b5554e7860

commit ddc18c04634a15b8669d584264c871b5554e7860
Author: James Buren 
Date:   Thu May 3 21:21:00 2012 -0500

tzdata-2012c-1-x86_64
* version bump
* use new URL (old one is defunct)
* fix up2date
* replace guts of the build with Fbuild
* take over from crazy

diff --git a/source/base/tzdata/FrugalBuild b/source/base/tzdata/FrugalBuild
index f5b660d..feaa483 100644
--- a/source/base/tzdata/FrugalBuild
+++ b/source/base/tzdata/FrugalBuild
@@ -1,31 +1,28 @@
# Compiling Time: 0.02 SBU
-# Maintainer: crazy 
+# Maintainer: James Buren 

pkgname=tzdata
-pkgver=2011i
-vertzcode=2011i
+pkgver=2012c
+vertzcode=2012b
pkgrel=1
pkgdesc="Sources for time zone and daylight saving time data"
-url="http://www.twinsun.com/tz/tz-link.htm";
+url="http://www.iana.org/time-zones";
depends=('glibc>=2.8-3')
groups=('base' 'chroot-core')
archs=('i686' 'x86_64' 'arm')
-up2date="lynx -dump -nolist ftp://elsie.nci.nih.gov/pub/|grep tzdata|sed 
's/.*ta\(.*\).t.*/\1/'"
-source=(ftp://elsie.nci.nih.gov/pub/tzcode${vertzcode}.tar.gz \
-   ftp://elsie.nci.nih.gov/pub/${pkgname}${pkgver}.tar.gz \
+Fpkgversep=""
+up2date="Flasttar $url"
+_F_cd_path=.
+source=($url/repository/releases/${pkgname}$pkgver.tar.gz \
+   $url/repository/releases/tzcode${vertzcode}.tar.gz \
Makefile.patch)
-sha1sums=('4f58cede47df8bba55b37982d8b38cd65266d412' \
-  '8274c0a5dfc41c7ab9ccfc919387b3c8180cd75d' \
+sha1sums=('e0cd9c2cc0ac8d90ed842133b910d4bb3bc1a6dd' \
+  '7172f71a23fb6fe8f99099f810d05366ed5d7130' \
'e8890681333949977ccff0b7a429ad25ed78dbcf')

build()
{
-   Fcd "."
-   tar -xf tzcode${vertzcode}.tar.gz  || Fdie
-   tar -xf ${pkgname}${pkgver}.tar.gz || Fdie
-   patch -p1 -i ../Makefile.patch || Fdie
-   make || Fdie
-   Fmakeinstall
+   Fbuild
Frm usr/share/zoneinfo/localtime
}
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git