[Frugalware-git] fwife: clean rewrite of layout plugin

2009-12-26 Thread Elentir
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=fwife.git;a=commitdiff;h=aaa6954b413031949a7fc59a190adb4b39e1faad

commit aaa6954b413031949a7fc59a190adb4b39e1faad
Author: Elentir 
Date:   Sat Dec 26 19:06:51 2009 +0100

clean rewrite of layout plugin

* fix memleaks
* faster parsing of keyboard variants from files
* delete useless functions

diff --git a/src/plugins/layout.c b/src/plugins/layout.c
index db9d712..85b2c4d 100644
--- a/src/plugins/layout.c
+++ b/src/plugins/layout.c
@@ -1,9 +1,9 @@
/*
*  layout.c for Fwife
- *
+ *
*  Copyright (c) 2005 by Miklos Vajna 
*  Copyright (c) 2008 by Albar Boris 
- *
+ *
*  This program is free software; you can redistribute it and/or modify
*  it under the terms of the GNU General Public License as published by
*  the Free Software Foundation; either version 2 of the License, or
@@ -16,10 +16,10 @@
*
*  You should have received a copy of the GNU General Public License
*  along with this program; if not, write to the Free Software
- *  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
+ *  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
*  USA.
*/
-
+
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
@@ -59,7 +59,7 @@ plugin_t plugin =
15,
load_gtk_widget,
GTK_ASSISTANT_PAGE_CONTENT,
-   FALSE,
+   TRUE,
NULL,
NULL,
run,
@@ -76,233 +76,186 @@ char *desc()
return _("Keyboard map selection");
}

-int find(char *dirname)
+int find_languages(char *dirname)
{
-   DIR *dir;
-   struct dirent *ent;
+   struct dirent *ent = NULL;
struct stat statbuf;
-   char *fn;
-   FILE * fp;
-   char * line = NULL;
+   char *fn = NULL;
+   FILE *fp = NULL;
+   char *line = malloc(128);
size_t len = 0;
-   ssize_t read;
int i;
+
GtkTreeIter iter;
-
+   GtkTreeModel *tree_model;
+
/* parsing result */
-   char *name;
-   char *layout;
-   char *consolemap;
-   char *variante;
+   char *name = NULL;
+   char *layout = NULL;
+   char *consolemap = NULL;
+   char *variante = NULL;

-   dir = opendir(dirname);
-   if (!dir)
-   {
+   DIR *dir = opendir(dirname);
+   if (!dir) {
perror(dirname);
-   return(1);
+   return -1;
}

-   while ((ent = readdir(dir)) != NULL)
-   {
+   while ((ent = readdir(dir)) != NULL) {
fn = g_strdup_printf("%s/%s", dirname, ent->d_name);
-   if(!stat(fn, &statbuf) && S_ISREG(statbuf.st_mode))
-   {
+   if(!stat(fn, &statbuf) && S_ISREG(statbuf.st_mode)) {
fp = fopen(fn, "r");
+   /* skip file is we cannot open it */
if (fp == NULL)
-   exit(-1);
+   continue;

-   for(i=0; i<4; i++)
-   {
+   /* 4 lines in each file */
+   for(i = 0; i < 4; i++) {
line = NULL;
-   if((read = getline(&line, &len, fp)) != -1)
-   {
-   if(i==0)
-   {
+   if(getline(&line, &len, fp) != -1) {
+   if(i == 0) {
line[strlen(line)-1] = '\0';
-   name = line;
-   }
-   else if(i==1)
-   {
+   name = strdup(line);
+   } else if(i == 1) {
line[strlen(line)-1] = '\0';
-   layout = line;
-   }
-   else if(i==2)
-   {
+   layout = strdup(line);
+   } else if(i == 2) {
line[strlen(line)-1] = '\0';
-   consolemap = line;
-   }
-   else
-   {
-   variante = line;
+   consolemap = strdup(line);
+   } else  {
+   variante = strdup(line);
}
}
}
-
-   
gtk_tree_store_append(GTK_TREE_STORE(gtk_tree_view_get_model(GTK_TREE_VIEW(viewlayout))),
 &iter, NULL);
-   
gtk_tree_store_set(GTK_TREE_STORE(gtk_tree_view_get_model(GTK_TREE_VIEW(viewlayout))),
 &iter,
-  0, name, 1, layout, 2, variante, 3, 
consolemap, -1);
-
-   FREE(name);
-   FREE(layout);
-   FREE(consolemap);
-   FREE(variante);
-   FREE(fn);
+

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

2009-12-26 Thread Michel Hermier
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=ff67d6b3ab755e37b53689176370c729f67b58e5

commit ff67d6b3ab755e37b53689176370c729f67b58e5
Author: Michel Hermier 
Date:   Sat Dec 26 18:37:11 2009 +0100

util.sh

* Make Finstall more verbose, displaying the install command line.

diff --git a/source/include/util.sh b/source/include/util.sh
index e1e2694..9aba9a1 100644
--- a/source/include/util.sh
+++ b/source/include/util.sh
@@ -659,14 +659,14 @@ Fmakeinstall() {
Fmessage "Installing to the package directory..."
if [ -f GNUmakefile -o -f makefile -o -f Makefile ]; then
if grep -q DESTDIR GNUmakefile makefile Makefile 2>/dev/null; then
-   make DESTDIR="$Fdestdir" "$@" install || Fdie
+   Fexec make DESTDIR="$Fdestdir" "$@" install || Fdie
else
-   make prefix="$Fdestdir"/"$Fprefix" "$@" install || Fdie
+   Fexec make prefix="$Fdestdir"/"$Fprefix" "$@" install 
|| Fdie
fi
elif [ -f setup.py ]; then
-   python setup.py install --prefix "$Fprefix" --root "$Fdestdir" 
"$@" || Fdie
+   Fexec python setup.py install --prefix "$Fprefix" --root 
"$Fdestdir" "$@" || Fdie
elif [ -f setup.rb ]; then
-   ruby setup.rb install --prefix=$Fdestdir || Fdie
+   Fexec ruby setup.rb install --prefix=$Fdestdir || Fdie
elif [ -f build.xml ]; then
if declare -f Fjar >/dev/null; then
for i in ${_f_java_ja...@]}
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


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

2009-12-26 Thread Michel Hermier
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=bf2be8e8862dde0d92d2fce8b65dfc5bc1f8a252

commit bf2be8e8862dde0d92d2fce8b65dfc5bc1f8a252
Author: Michel Hermier 
Date:   Sat Dec 26 18:34:15 2009 +0100

util.sh

* Introduce __Fpatch a private function that really does the patch work.
* Make Fpatch use __Fpatch so that we can try various patch strategies.

diff --git a/source/include/util.sh b/source/include/util.sh
index cc8c32e..e1e2694 100644
--- a/source/include/util.sh
+++ b/source/include/util.sh
@@ -473,7 +473,23 @@ Fdeststrip() {
}

###
-# * Fpatch(): Apply a patch with -p1 (or -p0 if -p1 fails). Parameter: Patch to
+# * __Fpatch(): Internal. Apply a patch with -p0 (or -p1 if -p0 fails).
+# Parameter: Patch to apply.
+###
+__Fpatch() {
+   local level="0"
+   if ! patch -Np0 --dry-run -i "$Fsrcdir/$1" >/dev/null; then
+   if ! patch -Np1 --dry-run -i "$Fsrcdir/$1" >/dev/null; then
+   return 1
+   fi
+   level="1"
+   fi
+   patch -Np$level --no-backup-if-mismatch -i "$Fsrcdir/$1" || Fdie
+   return 0
+}
+
+###
+# * Fpatch(): Apply a patch. Parameter: Patch to
# apply. A ".gz" or ".bz2" suffix will be ingored.
###
Fpatch() {
@@ -487,12 +503,14 @@ Fpatch() {
else
i=$1
fi
-   sed -i 's/\r$//' "$Fsrcdir/$i"
-   if patch -Np0 --dry-run -i "$Fsrcdir/$i" >/dev/null && \
-   ! patch -Np1 --dry-run -i "$Fsrcdir/$i" >/dev/null; then
-   level="0"
+   if ! __Fpatch "$i"; then
+   warning "Patch $i did not apply, trying a dos2unix line ending 
convertion."
+   sed -i 's/\r$//' "$Fsrcdir/$i"
+   if ! __Fpatch "$i"; then
+   error "Patch $i did not apply at all, check your patch"
+   Fdie
+   fi
fi
-   patch -Np$level --no-backup-if-mismatch -i "$Fsrcdir/$i" || Fdie
}

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


[Frugalware-git] fwife: little fixes in greet plugin

2009-12-26 Thread Elentir
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=fwife.git;a=commitdiff;h=d044bd56300578775ecd7a8518bffa48cb3ad6e3

commit d044bd56300578775ecd7a8518bffa48cb3ad6e3
Author: Elentir 
Date:   Sat Dec 26 17:22:45 2009 +0100

little fixes in greet plugin

* fix includes
* typo fix in welcome message

diff --git a/src/plugins/greet.c b/src/plugins/greet.c
index 3c509fd..b46ab41 100644
--- a/src/plugins/greet.c
+++ b/src/plugins/greet.c
@@ -25,7 +25,6 @@

#include 
#include 
-#include

#include "common.h"

@@ -56,10 +55,10 @@ plugin_t *info()
GtkWidget *load_gtk_widget()
{
GtkWidget *widget = gtk_label_new (NULL);
-   gtk_label_set_markup(GTK_LABEL(widget), _("Welcome among the users of Frugalware!\n\n\n"
+   gtk_label_set_markup(GTK_LABEL(widget), _("Welcome among the users 
of Frugalware!\n\n\n"
"The aim of creating Frugalware was to help you to do your work faster and 
simpler.\n"
-   " We hope that you will 
like our product.\n\n"
-   "The Frugalware Developer 
Team\n"));
+   "We hope that you will 
like our product.\n\n"
+   "The Frugalware Developer Team\n"));

return widget;
}
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] frugalware-current: source-highlight-3.1.2-1-i686

2009-12-26 Thread Miklos Vajna
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=5c70cae0f995eb262d1ada4c12307e8e86265707

commit 5c70cae0f995eb262d1ada4c12307e8e86265707
Author: Miklos Vajna 
Date:   Sat Dec 26 13:02:22 2009 +0100

source-highlight-3.1.2-1-i686

- version bump

diff --git a/source/devel-extra/source-highlight/FrugalBuild 
b/source/devel-extra/source-highlight/FrugalBuild
index cbfce9d..e4d4dd0 100644
--- a/source/devel-extra/source-highlight/FrugalBuild
+++ b/source/devel-extra/source-highlight/FrugalBuild
@@ -2,7 +2,7 @@
# Maintainer: Miklos Vajna 

pkgname=source-highlight
-pkgver=3.1.1
+pkgver=3.1.2
pkgrel=1
pkgdesc="Given a source file, produces a document with syntax highlighting."
url="http://www.gnu.org/software/src-highlite/";
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] frugalware-current: ncurses-ruby-1.2.4-1-i686

2009-12-26 Thread Miklos Vajna
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=bb83dc42d434b7c2fd35585642fbb14c8636504b

commit bb83dc42d434b7c2fd35585642fbb14c8636504b
Author: Miklos Vajna 
Date:   Sat Dec 26 12:59:05 2009 +0100

ncurses-ruby-1.2.4-1-i686

- version bump

diff --git a/source/devel-extra/ncurses-ruby/FrugalBuild 
b/source/devel-extra/ncurses-ruby/FrugalBuild
index 2387c25..628c3c6 100644
--- a/source/devel-extra/ncurses-ruby/FrugalBuild
+++ b/source/devel-extra/ncurses-ruby/FrugalBuild
@@ -2,7 +2,7 @@
# Maintainer: Miklos Vajna 

pkgname=ncurses-ruby
-pkgver=1.2.3
+pkgver=1.2.4
pkgrel=1
pkgdesc="Makes most functions of ncurses accessible from Ruby."
depends=('ruby' 'ncurses')
@@ -11,5 +11,5 @@ archs=('i686' 'x86_64')
_F_berlios_ext=".tar.bz2"
Finclude berlios
url="http://ncurses-ruby.berlios.de/";
-sha1sums=('156e6e663fc3ecae9b48da8e1227427e583c489a')
+sha1sums=('b34ff1cf1147ab551855a5b2c63d2a034119fee2')
# optimization ok
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] frugalware-current: libvirt-0.7.5-1-i686

2009-12-26 Thread exceed
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=37f7a551840e6a64ca808119748c9c882f1ffee9

commit 37f7a551840e6a64ca808119748c9c882f1ffee9
Author: exceed 
Date:   Sat Dec 26 12:35:54 2009 +0100

libvirt-0.7.5-1-i686

* Version bump
* Fixed depends

diff --git a/source/xlib-extra/libvirt/FrugalBuild 
b/source/xlib-extra/libvirt/FrugalBuild
index 3fbfc97..7b0ec23 100644
--- a/source/xlib-extra/libvirt/FrugalBuild
+++ b/source/xlib-extra/libvirt/FrugalBuild
@@ -1,18 +1,18 @@
-# Compiling Time: 0.19 SBU
+# Compiling Time: 1.22 SBU
# Maintainer: jercel 

pkgname=libvirt
-pkgver=0.7.0
+pkgver=0.7.5
pkgrel=1
pkgdesc="libvirt is a library providing access to information from various 
virtualization tools"
url="http://libvirt.org";
-depends=('libxml2' 'xen>=3.0.4' 'gnutls' 'cyrus-sasl' 'parted')
+depends=('libxml2' 'xen>=3.0.4' 'gnutls' 'cyrus-sasl' 'parted' 'lvm2')
makedepends=('python' 'gtk-doc')
groups=('xlib-extra')
archs=('x86_64' 'i686')
up2date="lynx -dump ftp://libvirt.org/libvirt/|grep "[0-9].tar.gz$"|sed 
's/.*-\(.*\).t.*/\1/'|Fsort|sed -n '$ p'"
source=(ftp://ftp.libvirt.org/libvirt/$pkgname-$pkgver.tar.gz)
-sha1sums=('a6551bf6726b6817d84d5a442204efddf07cdb58')
+sha1sums=('8d88541d67a2da50adb85b447b5a01204afeaf7c')

subpkgs=('libvirt-python')
subdescs=('Python bindings for libvirt')
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] frugalware-current: giggle-0.4.91-1-i686

2009-12-26 Thread exceed
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=1d5ec204404cb0649143974077b0d817e6369363

commit 1d5ec204404cb0649143974077b0d817e6369363
Author: exceed 
Date:   Sat Dec 26 11:41:22 2009 +0100

giggle-0.4.91-1-i686

* Version bump
* Fixed depends, url, source and up2date

diff --git a/source/gnome-extra/giggle/FrugalBuild 
b/source/gnome-extra/giggle/FrugalBuild
index d96fffc..9678c7c 100644
--- a/source/gnome-extra/giggle/FrugalBuild
+++ b/source/gnome-extra/giggle/FrugalBuild
@@ -3,18 +3,18 @@
# Maintainer: jercel 

pkgname=giggle
-pkgver=0.4
+pkgver=0.4.91
pkgrel=1
pkgdesc="Giggle is a graphical frontend for the git directory tracker (think of 
gitk on GTK+)."
-url="http://developer.imendio.com/projects/giggle";
-depends=('glib2' 'gtksourceview' 'libglade' 'git')
+url="http://live.gnome.org/giggle";
+depends=('glib2' 'gtksourceview' 'libglade' 'git' 'evolution-data-server')
makedepends=('intltool')
groups=('gnome-extra')
archs=('i686' 'x86_64')
-dummy="http://ftp.imendio.com/pub/imendio";
-source=($dummy/$pkgname/src/$pkgname-$pkgver.tar.gz)
-up2date="lynx -dump $dummy/$pkgname/src | Flasttar"
-sha1sums=('6cb44e5a64a8279aee2e19e00d8714cd3b0f43aa')
+dummy="http://ftp.gnome.org/pub/GNOME/sources/giggle";
+source=($dummy/0.4/$pkgname-$pkgver.tar.gz)
+up2date="lynx -dump $dummy/0.4/ | Flasttar"
+sha1sums=('d32f14bb7b3c1840af02202cc8e1a542d87f1131')
_F_gnome_iconcache=y
_F_gnome_desktop=y
Finclude gnome-scriptlet
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] frugalware-current: oxine-0.7.1-2-i686 * fixing depends

2009-12-26 Thread Devil505
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=5e73dc4531e886c85231e3f332fa711dc769080d

commit 5e73dc4531e886c85231e3f332fa711dc769080d
Author: Devil505 
Date:   Sat Dec 26 11:10:13 2009 +0100

oxine-0.7.1-2-i686
* fixing depends

diff --git a/source/xapps-extra/oxine/FrugalBuild 
b/source/xapps-extra/oxine/FrugalBuild
index 78ad84d..3d8f03b 100644
--- a/source/xapps-extra/oxine/FrugalBuild
+++ b/source/xapps-extra/oxine/FrugalBuild
@@ -3,10 +3,10 @@

pkgname=oxine
pkgver=0.7.1
-pkgrel=1
+pkgrel=2
pkgdesc="oxine is a lightweight pure OSD GUI for the famous xine engine."
depends=('libxtst' 'libxinerama' 'fontconfig' 'openssl' 'curl>=7.19.0' 
'xine-lib>=1.1.16.3-3' 'imagemagick' \
-   'eject' 'mjpegtools>=1.8.0-2' 'netpbm')
+   'eject' 'mjpegtools>=1.8.0-2' 'netpbm' 'libcdio')
makedepends=('inputproto' 'lirc')
groups=('xapps-extra')
archs=('i686' 'x86_64')
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] frugalware-current: dhcpcd-5.1.4-1-i686 *version bump

2009-12-26 Thread bouleetbil
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=62f5d5f70365798848f967524156c1c53c8d0592

commit 62f5d5f70365798848f967524156c1c53c8d0592
Author: bouleetbil 
Date:   Sat Dec 26 11:14:57 2009 +

dhcpcd-5.1.4-1-i686
*version bump

diff --git a/source/base/dhcpcd/FrugalBuild b/source/base/dhcpcd/FrugalBuild
index 47d1d3f..b98a4e4 100644
--- a/source/base/dhcpcd/FrugalBuild
+++ b/source/base/dhcpcd/FrugalBuild
@@ -3,7 +3,7 @@
# Contributor: AlexExtreme 

pkgname=dhcpcd
-pkgver=5.1.3
+pkgver=5.1.4
pkgrel=1
pkgdesc="A DHCP client daemon"
#url="http://dhcpcd.berlios.de";
@@ -15,7 +15,7 @@ rodepends=('frugalwareutils>=0.8.2-2')
_F_archive_nosort="y"
up2date="lynx -dump http://roy.marples.name/projects/dhcpcd/wiki/DhcpcdDownload 
| tac| Flasttarbz2"
source=(http://roy.marples.name/downloads/$pkgname/$pkgname-$pkgver.tar.bz2)
-sha1sums=('a42a52b663dc803f2128de67f5dbc385ad39ea0c')
+sha1sums=('125505c85ca45db2901bb80fdd11cfe4441fef1b')
backup=('/etc/dhcpcd.conf')

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


[Frugalware-git] frugalware-current: gtg-0.2-1-i686 *version bump

2009-12-26 Thread bouleetbil
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=88c01d73c4e68c25a710a09f801119b31c2bccd3

commit 88c01d73c4e68c25a710a09f801119b31c2bccd3
Author: bouleetbil 
Date:   Sat Dec 26 10:57:00 2009 +

gtg-0.2-1-i686
*version bump

diff --git a/source/gnome-extra/gtg/FrugalBuild 
b/source/gnome-extra/gtg/FrugalBuild
index 93aca34..91acf48 100644
--- a/source/gnome-extra/gtg/FrugalBuild
+++ b/source/gnome-extra/gtg/FrugalBuild
@@ -3,8 +3,8 @@
# Contributor: Othmane Benkirane 

pkgname=gtg
-pkgver=0.1.1
-pkgrel=2
+pkgver=0.2
+pkgrel=1
pkgdesc="Getting Things Gnome, simple personal organizer, inspired by the GTD 
(Getting Things Done) technique."
url="http://gtg.fritalk.com";
depends=('pygtk' 'configobj')
@@ -16,4 +16,4 @@ _F_gnome_iconcache="y"
_F_gnome_desktop="y"
Finclude gnome-scriptlet
source=(http://launchpad.net/$pkgname/trunk/$pkgver/+download/$pkgname-$pkgver.tar.gz)
-sha1sums=('d1b01b814ca5d7c24e49f57c31583f9d41e09dc7')
+sha1sums=('bf32911548637c835d00af8fd178e8502f66ac7e')
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] frugalware-current: perl-config-inifiles-2.55-1-i686 *version bump

2009-12-26 Thread bouleetbil
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=58808458325e16a270c82a35d7d8b9afc960d0a3

commit 58808458325e16a270c82a35d7d8b9afc960d0a3
Author: bouleetbil 
Date:   Sat Dec 26 10:39:24 2009 +

perl-config-inifiles-2.55-1-i686
*version bump

diff --git a/source/devel-extra/perl-config-inifiles/FrugalBuild 
b/source/devel-extra/perl-config-inifiles/FrugalBuild
index 1f5a314..3c03b4d 100644
--- a/source/devel-extra/perl-config-inifiles/FrugalBuild
+++ b/source/devel-extra/perl-config-inifiles/FrugalBuild
@@ -4,12 +4,12 @@
pkgname=perl-config-inifiles
_F_perl_name=Config-IniFiles
_F_perl_author=S/SH/SHLOMIF
-pkgver=2.54
+pkgver=2.55
pkgrel=1
pkgdesc="A module for reading .ini-style configuration files."
depends=('perl')
groups=('devel-extra')
Finclude perl
archs=('i686' 'x86_64' 'ppc')
-sha1sums=('62435de8ec698ca43f9f8e1485f797150573a0b8')
+sha1sums=('b887ba6d1c9f2c71fc76620e77b21329d3c88f9a')
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git


[Frugalware-git] frugalware-current: coherence-0.6.6.1-1-i686 *version bump

2009-12-26 Thread bouleetbil
Git-Url: 
http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=f2257e69b7823b5c37184f9b45d05cea8d4ed933

commit f2257e69b7823b5c37184f9b45d05cea8d4ed933
Author: bouleetbil 
Date:   Sat Dec 26 10:33:21 2009 +

coherence-0.6.6.1-1-i686
*version bump

diff --git a/source/devel-extra/coherence/FrugalBuild 
b/source/devel-extra/coherence/FrugalBuild
index 39df67d..abb559d 100644
--- a/source/devel-extra/coherence/FrugalBuild
+++ b/source/devel-extra/coherence/FrugalBuild
@@ -2,7 +2,7 @@
# Maintainer: bouleetbil 

pkgname=coherence
-pkgver=0.6.6
+pkgver=0.6.6.1
pkgrel=1
pkgdesc="Coherence is a framework written in Python enabling your application 
to participate in digital living networks, at the moment primarily the UPnP 
universe"
depends=('python' 'louie-python' 'configobj' 'nevow' \
@@ -14,4 +14,4 @@ url="https://coherence.beebits.net";
_F_archive_name="Coherence"
up2date="elinks -dump -source 
https://coherence.beebits.net/wiki/WikiStart#Download | Flasttar"
source=(https://coherence.beebits.net/download/${_F_archive_name}-${pkgver}.tar.gz)
-sha1sums=('ed08aac77a4baf3662bb0e13e4026620802eeab4')
+sha1sums=('92675de94e83e36a38dc4c7cf74dadf06369ac8e')
___
Frugalware-git mailing list
Frugalware-git@frugalware.org
http://frugalware.org/mailman/listinfo/frugalware-git