From vmiklos at frugalware.org Mon Mar 1 01:23:28 2010 From: vmiklos at frugalware.org (Miklos Vajna) Date: Mon, 1 Mar 2010 01:23:28 +0100 (CET) Subject: [Frugalware-git] setup: replace dhcpcd with udhcpc from busybox Message-ID: <20100301002328.64E7B1240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=setup.git;a=commitdiff;h=b91b98548b1a7b2a97a0565fa1e6c3c74392e5c5 commit b91b98548b1a7b2a97a0565fa1e6c3c74392e5c5 Author: Miklos Vajna Date: Mon Mar 1 00:52:50 2010 +0100 replace dhcpcd with udhcpc from busybox it's smaller and for example dhcpcd is broken in vmware for some reason diff --git a/Makefile b/Makefile index 9ccb52e..10cbc4e 100644 --- a/Makefile +++ b/Makefile @@ -176,6 +176,9 @@ ifeq ($(DEBUG),valgrind) cp bin/valgrind-start $(MDIR)/bin/ endif cp bin/bootstrap $(MDIR)/bin/ + cp bin/dhcpcd $(MDIR)/sbin/ + mkdir -p $(MDIR)/usr/share/udhcpc/ + cp bin/default.script $(MDIR)/usr/share/udhcpc/ devices: compile mknod -m 700 $(MDIR)/dev/console c 5 1 @@ -356,13 +359,6 @@ reiserfsprogs: mkdir reiserfsprogs/etc/ touch reiserfsprogs/etc/fstab -dhcpcd: - $(CLEANUP) - mkdir -p dhcpcd/usr - $(UNPACK) - cp -a $(BDIR)/usr/libexec dhcpcd/usr/ - cp -a $(BDIR)/sbin dhcpcd/ - frugalware: $(CLEANUP) mkdir -p frugalware/{var/lib/frugalware/messages/,var/log,var/run,etc} diff --git a/bin/default.script b/bin/default.script new file mode 100755 index 0000000..2152389 --- /dev/null +++ b/bin/default.script @@ -0,0 +1,40 @@ +#!/bin/sh + +# udhcpc script edited by Tim Riker + +[ -z "$1" ] && echo "Error: should be called from udhcpc" && exit 1 + +RESOLV_CONF="/etc/resolv.conf" +[ -n "$broadcast" ] && BROADCAST="broadcast $broadcast" +[ -n "$subnet" ] && NETMASK="netmask $subnet" + +case "$1" in + deconfig) + /sbin/ifconfig $interface 0.0.0.0 + ;; + + renew|bound) + echo adding ip $ip + /sbin/ifconfig $interface $ip $BROADCAST $NETMASK + + if [ -n "$router" ] ; then + while route del default gw 0.0.0.0 dev $interface 2>/dev/null; do + : + done + + for i in $router ; do + echo adding gateway $i + route add default gw $i dev $interface + done + fi + + echo -n > $RESOLV_CONF + [ -n "$domain" ] && echo search $domain >> $RESOLV_CONF + for i in $dns ; do + echo adding dns $i + echo nameserver $i >> $RESOLV_CONF + done + ;; +esac + +exit 0 diff --git a/bin/dhcpcd b/bin/dhcpcd new file mode 100755 index 0000000..6498713 --- /dev/null +++ b/bin/dhcpcd @@ -0,0 +1,10 @@ +#!/bin/sh + +last= +while [ ! -z "$1" ] +do + last=$1 + shift +done +ifconfig $last up +exec udhcpc "$@" diff --git a/configure b/configure index c067388..0759554 100755 --- a/configure +++ b/configure @@ -5,7 +5,7 @@ from optparse import OptionParser # since we're in chroot, we no longer have to check for up to date libs. libs = [] -packages = ['parted', 'pacman-g2', 'bash', 'kernel', 'busybox', 'dhcpcd', 'dialog', 'e2fsprogs', +packages = ['parted', 'pacman-g2', 'bash', 'kernel', 'busybox', 'dialog', 'e2fsprogs', 'eject', 'frugalware', 'glibc', 'kbd', 'module-init-tools', 'ncurses', 'netkit-base', 'udev', 'util-linux-ng', 'mdadm', 'xfsprogs', 'ppp', 'rp-pppoe', 'glib2', From priyank at frugalware.org Mon Mar 1 06:02:11 2010 From: priyank at frugalware.org (Priyank) Date: Mon, 1 Mar 2010 06:02:11 +0100 (CET) Subject: [Frugalware-git] frugalware-current: gimmix-0.5.7.1-2-i686 Message-ID: <20100301050211.4F7C31240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=defdeaa95f212cb69dd8fc17da78836f8bcb5d12 commit defdeaa95f212cb69dd8fc17da78836f8bcb5d12 Author: Priyank Date: Mon Mar 1 10:30:19 2010 +0530 gimmix-0.5.7.1-2-i686 * Rebuild with libmpd-0.18.0 diff --git a/source/xapps-extra/gimmix/FrugalBuild b/source/xapps-extra/gimmix/FrugalBuild index e1403af..c0df0fb 100644 --- a/source/xapps-extra/gimmix/FrugalBuild +++ b/source/xapps-extra/gimmix/FrugalBuild @@ -3,13 +3,13 @@ pkgname=gimmix pkgver=0.5.7.1 -pkgrel=1 +pkgrel=2 pkgdesc="Gimmix is a graphical music player daemon (MPD) client." _F_berlios_ext=".tar.bz2" Finclude berlios url="http://gimmix.berlios.de/" rodepends=('mpd') -depends=('gtk+2>=2.16.2-2' 'libglade' 'libmpd>=0.17.0' 'libnxml' 'taglib>=1.6.1') +depends=('gtk+2>=2.16.2-2' 'libglade' 'libmpd>=0.18.0' 'libnxml' 'taglib>=1.6.1') makedepends=('intltool') groups=('xapps-extra') archs=('i686' 'x86_64') From bouleetbil at frogdev.info Mon Mar 1 09:58:13 2010 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 1 Mar 2010 09:58:13 +0100 (CET) Subject: [Frugalware-git] gnometesting: gnome-bump-howto.txt *update gnome howto bump Message-ID: <20100301085813.093871240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=486661b17937da4724bc0583d6ca7eeb68893746 commit 486661b17937da4724bc0583d6ca7eeb68893746 Author: bouleetbil Date: Mon Mar 1 09:22:16 2010 +0100 gnome-bump-howto.txt *update gnome howto bump diff --git a/docs/gnome-bump-howto.txt b/docs/gnome-bump-howto.txt index 1d4b861..8ad3662 100644 --- a/docs/gnome-bump-howto.txt +++ b/docs/gnome-bump-howto.txt @@ -41,6 +41,7 @@ packages. - hal - gamin - dbus-glib +- libgnome-keyring - gnome-keyring - libproxy - libsoup @@ -75,9 +76,9 @@ packages. - pygtk (*) - gnome-menus - librsvg +- libcanberra-gtk - gnome-panel - zenity -- libcanberra-gtk - metacity - gstreamer - liboil @@ -89,7 +90,7 @@ packages. - gnome-settings-daemon - nautilus - control-center -- gnome-session (don't bump it without pam) +- gnome-session - vte - gnome-terminal - libgtop @@ -113,8 +114,8 @@ packages. - eog - poppler - evince -- gnome-python-desktop - gedit +- gnome-python-desktop - alacarte - nautilus-cd-burner - gst-plugins-good @@ -156,11 +157,11 @@ packages. - opal - ekiga - dasher -- gnome-power-manager (don't bump it without policykit) +- gnome-power-manager - gnome-keyring-manager - deskbar-applet - fast-user-switch-applet -- gnome-screensaver (don't bump it, if gnome-power-manager is not bumped) +- gnome-screensaver - pessulus - sabayon - gnome-cups-manager From bouleetbil at frogdev.info Mon Mar 1 09:58:13 2010 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 1 Mar 2010 09:58:13 +0100 (CET) Subject: [Frugalware-git] gnometesting: gnome-vfs *back to main some core gnome use gnome-vfs Message-ID: <20100301085813.21BD11240003@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=91fd1d5b2c843bb0f2fbc521fa3acb0f4a18729f commit 91fd1d5b2c843bb0f2fbc521fa3acb0f4a18729f Author: bouleetbil Date: Mon Mar 1 09:24:52 2010 +0100 gnome-vfs *back to main some core gnome use gnome-vfs diff --git a/source/gnome-extra/gnome-vfs/00-default-browser.patch b/source/gnome/gnome-vfs/00-default-browser.patch similarity index 100% rename from source/gnome-extra/gnome-vfs/00-default-browser.patch rename to source/gnome/gnome-vfs/00-default-browser.patch diff --git a/source/gnome-extra/gnome-vfs/02-user-visible-drives.patch b/source/gnome/gnome-vfs/02-user-visible-drives.patch similarity index 100% rename from source/gnome-extra/gnome-vfs/02-user-visible-drives.patch rename to source/gnome/gnome-vfs/02-user-visible-drives.patch diff --git a/source/gnome-extra/gnome-vfs/FrugalBuild b/source/gnome/gnome-vfs/FrugalBuild similarity index 97% rename from source/gnome-extra/gnome-vfs/FrugalBuild rename to source/gnome/gnome-vfs/FrugalBuild index 16e55a4..fb546d1 100644 --- a/source/gnome-extra/gnome-vfs/FrugalBuild +++ b/source/gnome/gnome-vfs/FrugalBuild @@ -4,14 +4,14 @@ pkgname=gnome-vfs pkgver=2.24.2 -pkgrel=1 +pkgrel=2 pkgdesc="GNOME Virtual File System" url="http://www.gnome.org/" depends=('gconf>=2.28.0' 'bzip2' 'hal>=0.5.8.1' 'dbus-glib>=0.74-2' 'gnome-mime-data' 'gamin>=0.1.9-2' \ 'avahi-glib>=0.6.17' 'xfsprogs-acl' 'libkrb5' 'db>=4.7.25' 'pmount') makedepends=('intltool' 'krb5' 'samba') rodepends=('gnome-mount>=0.6') -groups=('gnome-extra') +groups=('gnome' 'gnome-minimal') archs=('i686' 'x86_64' 'ppc') _F_gnome_schemas=('/etc/gconf/schemas/desktop_default_applications.schemas' '/etc/gconf/schemas/desktop_gnome_url_handlers.schemas' diff --git a/source/gnome-extra/gnome-vfs/fstab_edit_crash.patch b/source/gnome/gnome-vfs/fstab_edit_crash.patch similarity index 100% rename from source/gnome-extra/gnome-vfs/fstab_edit_crash.patch rename to source/gnome/gnome-vfs/fstab_edit_crash.patch diff --git a/source/gnome-extra/gnome-vfs/gnome-vfs-2.8.2-schema_about_for_upstream.patch b/source/gnome/gnome-vfs/gnome-vfs-2.8.2-schema_about_for_upstream.patch similarity index 100% rename from source/gnome-extra/gnome-vfs/gnome-vfs-2.8.2-schema_about_for_upstream.patch rename to source/gnome/gnome-vfs/gnome-vfs-2.8.2-schema_about_for_upstream.patch diff --git a/source/gnome-extra/gnome-vfs/gnome-vfs-2.9.90-modules-conf.patch b/source/gnome/gnome-vfs/gnome-vfs-2.9.90-modules-conf.patch similarity index 100% rename from source/gnome-extra/gnome-vfs/gnome-vfs-2.9.90-modules-conf.patch rename to source/gnome/gnome-vfs/gnome-vfs-2.9.90-modules-conf.patch diff --git a/source/gnome-extra/gnome-vfs/resolve_fstab_symlinks.patch b/source/gnome/gnome-vfs/resolve_fstab_symlinks.patch similarity index 100% rename from source/gnome-extra/gnome-vfs/resolve_fstab_symlinks.patch rename to source/gnome/gnome-vfs/resolve_fstab_symlinks.patch From bouleetbil at frogdev.info Mon Mar 1 09:58:13 2010 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 1 Mar 2010 09:58:13 +0100 (CET) Subject: [Frugalware-git] gnometesting: clutter *moved to main *migration to clutter begin for gnome Message-ID: <20100301085813.2A8181240004@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=d014bb57e5326f439306e83456c2cdba443ca3c9 commit d014bb57e5326f439306e83456c2cdba443ca3c9 Author: bouleetbil Date: Mon Mar 1 09:29:26 2010 +0100 clutter *moved to main *migration to clutter begin for gnome diff --git a/source/xlib-extra/clutter/FrugalBuild b/source/xlib/clutter/FrugalBuild similarity index 90% rename from source/xlib-extra/clutter/FrugalBuild rename to source/xlib/clutter/FrugalBuild index 9c92411..8ec6a19 100644 --- a/source/xlib-extra/clutter/FrugalBuild +++ b/source/xlib/clutter/FrugalBuild @@ -4,11 +4,13 @@ pkgname=clutter pkgver=1.0.10 -pkgrel=1 +pkgrel=2 pkgdesc="A GObject based library for creating fast, visually rich graphical user interfaces." depends=('libxdamage' 'libxcomposite' 'libgl' 'freetype2' 'libxau>=1.0.4' 'libxdmcp' \ - 'gtk+2>=2.16.2-2' 'libxml2' 'gir-repository') + 'gtk+2>=2.16.2-2' 'libxml2') +makedepends=('gir-repository') Finclude clutter +groups=('xlib') source=($source clutter-1.0.0-disable-tests.patch) replaces=('clutter-cairo') provides=('clutter-cairo') diff --git a/source/xlib-extra/clutter/clutter-1.0.0-disable-tests.patch b/source/xlib/clutter/clutter-1.0.0-disable-tests.patch similarity index 100% rename from source/xlib-extra/clutter/clutter-1.0.0-disable-tests.patch rename to source/xlib/clutter/clutter-1.0.0-disable-tests.patch From bouleetbil at frogdev.info Mon Mar 1 09:58:13 2010 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 1 Mar 2010 09:58:13 +0100 (CET) Subject: [Frugalware-git] gnometesting: clutter-gtk *moved to xlib for gnome Message-ID: <20100301085813.32E531240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=4b1eb90786544d481d72d895aee62f271ce3806d commit 4b1eb90786544d481d72d895aee62f271ce3806d Author: bouleetbil Date: Mon Mar 1 09:33:57 2010 +0100 clutter-gtk *moved to xlib for gnome diff --git a/source/xlib-extra/clutter-gtk/FrugalBuild b/source/xlib/clutter-gtk/FrugalBuild similarity index 94% rename from source/xlib-extra/clutter-gtk/FrugalBuild rename to source/xlib/clutter-gtk/FrugalBuild index cbc1874..728733d 100644 --- a/source/xlib-extra/clutter-gtk/FrugalBuild +++ b/source/xlib/clutter-gtk/FrugalBuild @@ -4,11 +4,12 @@ pkgname=clutter-gtk pkgver=0.10.2 -pkgrel=1 +pkgrel=2 pkgdesc="Gtk+ libraries for Clutter." url="http://www.clutter-project.org" depends=('clutter>=1.0.4' 'atk' 'pango>=1.24.2-2' 'zlib' 'libxi' 'libxinerama' 'libxrandr>=1.3.0' 'libxcursor' 'libxxf86vm' 'libdrm') Finclude clutter +groups=('xlib') sha1sums=('2218aa871cd0c986d90af5cbeeec812cf6b5fa41') # optimization OK From bouleetbil at frogdev.info Mon Mar 1 09:58:13 2010 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 1 Mar 2010 09:58:13 +0100 (CET) Subject: [Frugalware-git] gnometesting: brasero *moved to gnome *nautilus-cdburn is deprecated switch to brasero Message-ID: <20100301085813.3A2FC1240008@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=29ac4d4b2bb22e739cf325935703cbc8207770b4 commit 29ac4d4b2bb22e739cf325935703cbc8207770b4 Author: bouleetbil Date: Mon Mar 1 09:47:22 2010 +0100 brasero *moved to gnome *nautilus-cdburn is deprecated switch to brasero diff --git a/source/gnome-extra/brasero/FrugalBuild b/source/gnome/brasero/FrugalBuild similarity index 95% rename from source/gnome-extra/brasero/FrugalBuild rename to source/gnome/brasero/FrugalBuild index ea1d343..1869963 100644 --- a/source/gnome-extra/brasero/FrugalBuild +++ b/source/gnome/brasero/FrugalBuild @@ -3,7 +3,7 @@ pkgname=brasero pkgver=2.29.91 -pkgrel=2 +pkgrel=3 pkgdesc="A CD/DVD Burning application for the GNOME desktop." url="http://www.gnome.org/projects/brasero/" makedepends=('intltool' 'gnome-doc-utils') @@ -12,7 +12,7 @@ depends=('libgnome>=2.28.0' 'cdrtools' 'dvd+rw-tools' \ 'hal>=0.5.11' 'libxml2' 'totem>=2.29.91' 'perl-xml-parser' 'dbus-glib>=0.80' \ 'libbeagle' 'popt' 'libdvdcss' 'libcanberra-gtk') makedepends=('nautilus>=2.29.0' 'gnome-doc-utils' 'intltool') -groups=('gnome-extra') +groups=('gnome') conflicts=('bonfire') replaces=('bonfire') archs=('i686' 'x86_64' 'ppc') @@ -20,7 +20,7 @@ subpkgs=("nautilus-brasero") subdescs=('An easy to use CD/DVD burning package for Nautilus') subdepends=("nautilus>=2.29.0") subrodepends=("$pkgname=$pkgver") -subgroups=('gnome-extra') +subgroups=('gnome') subarchs=('i686 x86_64 ppc') _F_gnome_schemas=('/etc/gconf/schemas/brasero.schemas') From bouleetbil at frogdev.info Mon Mar 1 09:58:13 2010 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 1 Mar 2010 09:58:13 +0100 (CET) Subject: [Frugalware-git] gnometesting: libbeagle *moved to lib for brasero Message-ID: <20100301085813.43D1A1240003@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=8971e13b36c291a822f3b6d84d92d65d25898dc2 commit 8971e13b36c291a822f3b6d84d92d65d25898dc2 Author: bouleetbil Date: Mon Mar 1 09:53:02 2010 +0100 libbeagle *moved to lib for brasero diff --git a/source/lib-extra/libbeagle/FrugalBuild b/source/lib/libbeagle/FrugalBuild similarity index 93% rename from source/lib-extra/libbeagle/FrugalBuild rename to source/lib/libbeagle/FrugalBuild index a0108f8..d547037 100644 --- a/source/lib-extra/libbeagle/FrugalBuild +++ b/source/lib/libbeagle/FrugalBuild @@ -3,11 +3,11 @@ pkgname=libbeagle pkgver=0.3.9 -pkgrel=1 +pkgrel=2 pkgdesc="Beagle client library." depends=('libxml2 glib2 glibc python>=2.6') makedepends=('pygtk') -groups=('lib-extra') +groups=('lib') archs=('i686' 'x86_64' 'ppc') options=('scriptlet') _F_gnome_devel="y" From bouleetbil at frogdev.info Mon Mar 1 09:58:13 2010 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 1 Mar 2010 09:58:13 +0100 (CET) Subject: [Frugalware-git] gnometesting: bluez-gnome *dead package replaces by gnome-bluetooth Message-ID: <20100301085813.4BA3C124000C@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=a70c1b0ecd9bbd05780fe65aa5c2e60186b1db2c commit a70c1b0ecd9bbd05780fe65aa5c2e60186b1db2c Author: bouleetbil Date: Mon Mar 1 09:54:02 2010 +0100 bluez-gnome *dead package replaces by gnome-bluetooth diff --git a/source/gnome-extra/bluez-gnome/FrugalBuild b/source/gnome-extra/bluez-gnome/FrugalBuild deleted file mode 100644 index 33b6299..0000000 --- a/source/gnome-extra/bluez-gnome/FrugalBuild +++ /dev/null @@ -1,40 +0,0 @@ -# Compiling Time: 0.56 SBU -# Maintainer: Priyank Gosalia - -pkgname=bluez-gnome -pkgver=0.28 -pkgrel=2 -pkgdesc="Bluetooth tools for GNOME" -url="http://www.bluez.org/" -depends=('dbus-glib>=0.76' 'openobex>=1.3-10' 'bluez-libs>=3.36' 'libnotify>=0.4.5-2' 'gconf>=2.26.2-2' 'gtk+2>=2.16.2-2') -rodepends=('bluez-utils>=3.36' 'obex-data-server>=0.3.4') -makedepends=('perl-xml-parser' 'intltool') -groups=('gnome-extra') -archs=('i686' 'x86_64') -up2date="lynx -dump http://www.bluez.org/download.html | grep $pkgname | Flasttar" -source=(http://bluez.sourceforge.net/download/$pkgname-$pkgver.tar.gz \ - $pkgname-0.7-categorize-menu-item.patch \ - $pkgname-fix_file_recieve_bug.patch) -sha1sums=('3678a691466e01ec4e8c639e6864d6de8164b26a' \ - 'ceebaca0a771d2de2544170bcc7cc9cd3e74e3f0' \ - '73048db20d03e17c2f7a31337e9ad59cb5547421') -_F_gnome_desktop=y -_F_gnome_iconcache=y -_F_gnome_mime=y -_F_gnome_schemas=('/etc/gconf/schemas/bluetooth-manager.schemas') -Finclude gnome-scriptlet - -build() { - Fcd - Fpatchall - Fmake - Fmakeinstall GCONF_DISABLE_SCHEMA_INSTALL=1 - Fexerel wizard/bluetooth-wizard /usr/bin/bluetooth-wizard - Fmkdir /usr/share/gnome - Fmv /etc/xdg/autostart /usr/share/gnome/ - Frm /etc/xdg - Frm /usr/share/icons/hicolor/icon-theme.cache - Fbuild_gnome_scriptlet -} - -# optimization OK diff --git a/source/gnome-extra/bluez-gnome/bluez-gnome-0.7-categorize-menu-item.patch b/source/gnome-extra/bluez-gnome/bluez-gnome-0.7-categorize-menu-item.patch deleted file mode 100644 index 9a9e485..0000000 --- a/source/gnome-extra/bluez-gnome/bluez-gnome-0.7-categorize-menu-item.patch +++ /dev/null @@ -1,10 +0,0 @@ -diff -urN bluez-gnome-0.7.orig/properties/bluetooth-properties.desktop.in bluez-gnome-0.7/properties/bluetooth-properties.desktop.in ---- bluez-gnome-0.7.orig/properties/bluetooth-properties.desktop.in 2007-05-26 16:05:34.000000000 +0100 -+++ bluez-gnome-0.7/properties/bluetooth-properties.desktop.in 2007-05-26 16:05:47.000000000 +0100 -@@ -6,5 +6,5 @@ - Exec=bluetooth-properties - Terminal=false - Type=Application --Categories=Settings; -+Categories=GNOME;GTK;Settings;HardwareSettings; - OnlyShowIn=GNOME; diff --git a/source/gnome-extra/bluez-gnome/bluez-gnome-fix_file_recieve_bug.patch b/source/gnome-extra/bluez-gnome/bluez-gnome-fix_file_recieve_bug.patch deleted file mode 100644 index 2aa21fa..0000000 --- a/source/gnome-extra/bluez-gnome/bluez-gnome-fix_file_recieve_bug.patch +++ /dev/null @@ -1,38 +0,0 @@ ---- bluez-gnome-0.25/applet/obex.c 2008-03-14 04:35:47.000000000 +0530 -+++ bluez-gnome-0.25.new/applet/obex.c 2008-05-08 20:35:23.000000000 +0530 -@@ -139,11 +139,17 @@ - - dir = g_get_user_special_dir(G_USER_DIRECTORY_DOWNLOAD); - -+ /* If the download directory is not set, use the user's Desktop dir -+ * so that the user can still receive files */ -+ if (dir == NULL) -+ dir = g_strdup_printf ("%s/Desktop", g_get_home_dir()); -+ - dbus_g_proxy_begin_call(opp_server, "Start", - start_opp_notify, NULL, NULL, - G_TYPE_STRING, dir, - G_TYPE_BOOLEAN, TRUE, - G_TYPE_BOOLEAN, TRUE, G_TYPE_INVALID); -+ g_free (dir); - } - - static void create_opp_server(DBusGProxy *manager) -@@ -206,11 +212,17 @@ - - dir = g_get_user_special_dir(G_USER_DIRECTORY_PUBLIC_SHARE); - -+ /* If the share directory is not set, use the user's home directory -+ * so that this service can work */ -+ if (dir == NULL) -+ dir = g_strdup_printf (g_get_home_dir()); -+ - dbus_g_proxy_begin_call(ftp_server, "Start", - start_ftp_notify, NULL, NULL, - G_TYPE_STRING, dir, - G_TYPE_BOOLEAN, FALSE, - G_TYPE_BOOLEAN, TRUE, G_TYPE_INVALID); -+ g_free (dir); - } - - static void create_ftp_server(DBusGProxy *manager) From bouleetbil at frogdev.info Mon Mar 1 09:58:13 2010 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 1 Mar 2010 09:58:13 +0100 (CET) Subject: [Frugalware-git] gnometesting: eel *dead package replaces by nautilus Message-ID: <20100301085813.56AA01240004@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=b1242d8f25f91cdebb7ea364e71cad8b0ddf6da9 commit b1242d8f25f91cdebb7ea364e71cad8b0ddf6da9 Author: bouleetbil Date: Mon Mar 1 09:55:51 2010 +0100 eel *dead package replaces by nautilus diff --git a/source/gnome/eel/FrugalBuild b/source/gnome/eel/FrugalBuild deleted file mode 100644 index 317b9dc..0000000 --- a/source/gnome/eel/FrugalBuild +++ /dev/null @@ -1,16 +0,0 @@ -# Compiling time: 0.42 SBU -# Maintainer: bouleetbil -# Contributor: Christian Hamar alias krix - -pkgname=eel -pkgver=2.26.0 -pkgrel=2 -pkgdesc="Eazel Extensions Library is a collection of widgets and extensions for GNOME" -depends=('gail>=2.16.2-2' 'gnome-menus>=2.26.1-2' 'gnome-desktop>=2.26.2-2') -makedepends=('perl-xml-parser' 'intltool') -groups=('gnome' 'gnome-minimal') -archs=('i686' 'x86_64' 'ppc') -Finclude gnome -sha1sums=('d56fccf0c4c12a072ceb4b479cc614f7480817cd') - -# optimization OK From bouleetbil at frogdev.info Mon Mar 1 09:58:13 2010 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 1 Mar 2010 09:58:13 +0100 (CET) Subject: [Frugalware-git] gnometesting: rhythmbox-0.12.7-1-x86_64 *version bump Message-ID: <20100301085813.5C3F41240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=7a1933017c975311c188faa53d26fb0f44daf275 commit 7a1933017c975311c188faa53d26fb0f44daf275 Author: bouleetbil Date: Mon Mar 1 09:56:58 2010 +0100 rhythmbox-0.12.7-1-x86_64 *version bump diff --git a/source/gnome/rhythmbox/FrugalBuild b/source/gnome/rhythmbox/FrugalBuild index 1bcc61f..78a178e 100644 --- a/source/gnome/rhythmbox/FrugalBuild +++ b/source/gnome/rhythmbox/FrugalBuild @@ -3,15 +3,15 @@ # Contributor: AlexExtreme pkgname=rhythmbox -pkgver=0.12.6 +pkgver=0.12.7 pkgrel=1 pkgdesc="A music management application for GNOME" url="http://www.rhythmbox.org/" -depends=('nautilus-cd-burner>=2.25.3-2' 'rarian' 'desktop-file-utils' \ - 'totem>=2.26.2-2' 'gst-plugins-base-oil' 'avahi-glib' 'libnotify' 'libsexy' \ - 'libsoup-gnome>=2.26.3-3' 'gnome-media>=2.26.0-2' 'dbus-glib>=0.74' 'python>=2.6' \ - 'evolution-data-server>=2.26.0' 'gnutls>=2.8' 'libgudev') -makedepends=('intltool' 'gnome-doc-utils' 'gst-python' 'libgpod>=0.6.0' ) +depends=('nautilus-brasero' 'rarian' 'desktop-file-utils' \ + 'totem>=2.29.0' 'gst-plugins-base-oil' 'avahi-glib' 'libnotify' 'libsexy' \ + 'libsoup-gnome>=2.29.0' 'gnome-media>=2.29.0' 'dbus-glib>=0.74' 'python>=2.6' \ + 'evolution-data-server>=2.29.0' 'gnutls>=2.8' 'libgudev') +makedepends=('intltool' 'gnome-doc-utils' 'gst-python' 'libgpod>=0.6.0' 'vala') rodepends=('notification-daemon') groups=('gnome') archs=('i686' 'x86_64' 'ppc') @@ -22,17 +22,18 @@ _F_gnome_iconcache="y" Finclude gnome-scriptlet gnome unset MAKEFLAGS Fconfopts="$Fconfopts --enable-mdns=avahi --with-playback=gstreamer-0-10 --enable-daap --enable-audioscrobbler --enable-python" -sha1sums=('f1ba375329471ec47475a4b0ce3e8bba430a537b') +sha1sums=('a793132c49f9a24053fb9d05514b380c4dd62f7c') subpkgs=("rhythmbox-plugins") subdescs=('Plugins for rhythmbox') -subdepends=("rhythmbox gst-python libgpod>=0.6.0") +subdepends=("gst-python libgpod>=0.6.0") +subrodepends=('rhythmbox') subgroups=('gnome-extra') subarchs=('i686 x86_64 ppc') build() { Fbuild - Fsplit rhythmbox-plugins usr/lib/rhythmbox/plugins + Fsplit $pkgname-plugins usr/lib/rhythmbox/plugins Fbuild_gnome_scriptlet } From bouleetbil at frogdev.info Mon Mar 1 10:13:02 2010 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 1 Mar 2010 10:13:02 +0100 (CET) Subject: [Frugalware-git] gnometesting: nautilus-cd-burner *moved to extra/ rebuild with gnome2.29 *will drop it if mono binding can use nautilus brasero Message-ID: <20100301091303.012EC1240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=ca11f9a2080cea357359fad5053333226bed9e03 commit ca11f9a2080cea357359fad5053333226bed9e03 Author: bouleetbil Date: Mon Mar 1 10:12:10 2010 +0100 nautilus-cd-burner *moved to extra/ rebuild with gnome2.29 *will drop it if mono binding can use nautilus brasero diff --git a/source/gnome/nautilus-cd-burner/FrugalBuild b/source/gnome-extra/nautilus-cd-burner/FrugalBuild similarity index 85% rename from source/gnome/nautilus-cd-burner/FrugalBuild rename to source/gnome-extra/nautilus-cd-burner/FrugalBuild index d19a522..9a43d62 100644 --- a/source/gnome/nautilus-cd-burner/FrugalBuild +++ b/source/gnome-extra/nautilus-cd-burner/FrugalBuild @@ -3,12 +3,12 @@ pkgname=nautilus-cd-burner pkgver=2.25.3 -pkgrel=3 +pkgrel=4 pkgdesc="An easy to use CD/DVD burning package for Nautilus" url="http://www.gnome.org/" -depends=('nautilus>=2.28.0' 'cdrtools') +depends=('nautilus>=2.29.0' 'cdrtools') makedepends=('intltool') -groups=('gnome' 'gnome-minimal') +groups=('gnome-extra') archs=('i686' 'x86_64' 'ppc') _F_gnome_schemas=('/etc/gconf/schemas/nautilus-cd-burner.schemas') _F_gnome_iconcache="y" From bouleetbil at frogdev.info Mon Mar 1 11:05:22 2010 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 1 Mar 2010 11:05:22 +0100 (CET) Subject: [Frugalware-git] gnometesting: gnome-python-desktop-2.29.1-2-x86_64 *rewrite it *moved deprecated binding to extra Message-ID: <20100301100522.189C41240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=0de601c558b4d3a0b989063ce750cbc61b60649e commit 0de601c558b4d3a0b989063ce750cbc61b60649e Author: bouleetbil Date: Mon Mar 1 11:01:55 2010 +0100 gnome-python-desktop-2.29.1-2-x86_64 *rewrite it *moved deprecated binding to extra diff --git a/source/gnome/gnome-python-desktop/FrugalBuild b/source/gnome/gnome-python-desktop/FrugalBuild index 9219ce2..4a323b6 100644 --- a/source/gnome/gnome-python-desktop/FrugalBuild +++ b/source/gnome/gnome-python-desktop/FrugalBuild @@ -4,38 +4,127 @@ pkgname=gnome-python-desktop pkgver=2.29.1 -pkgrel=1 +pkgrel=2 pkgdesc="Python bindings for GNOME desktop" url="http://www.pygtk.org/" depends=('gnome-python>=2.28.0') -makedepends=('metacity>=2.28.0' 'gnome-media>=2.28.0' 'gnome-panel>=2.29.0' 'gtksourceview1' 'totem>=2.29.0' \ - 'libgtop>=2.28.0' 'bug-buddy>=2.28.0' 'evince>=2.29.0' 'nautilus-cd-burner>=2.25.3-2' 'brasero') groups=('gnome') archs=('i686' 'x86_64' 'ppc') Finclude gnome python source=($source Fix_totem.diff) -subpkgs=("$pkgname-applet" "$pkgname-desktop" "$pkgname-keyring" "$pkgname-print" "$pkgname-gtksourceview" "$pkgname-gtop" "$pkgname-mediaprofiles" \ - "$pkgname-metacity" "$pkgname-rsvg" "$pkgname-totem" "$pkgname-wnck" "$pkgname-bugbuddy" "$pkgname-evince" \ - "$pkgname-evolution" "$pkgname-nautilusburn" "$pkgname-brasero") -subdescs=('Gnome panel applet python module' 'Gnome desktop python module' 'Gnome keyring python module' 'Gnome print python module' \ - 'Gtksourceview python module' 'Gtop python module' 'Gnome mediaprofiles python module' 'Metacity python module' \ - 'librsvg python module' 'Totem python module' 'libwnck python module' \ - 'Bug Buddy integration module' 'evince python module' 'evolution python module' 'nautilus-cd-burner python module' 'brasero python module') -subdepends=("gnome-panel>=2.29.0" "gnome-desktop>=2.29.0" "gnome-keyring>=2.29.0" \ - "libgnomeprint>=2.18.1 libgnomeprintui>=2.18.1" "gtksourceview1" \ - "libgtop>=2.28.0" "gnome-media>=2.26.0" "metacity>=2.28.0" \ - "librsvg" "totem>=2.29.0" \ - "python libxext glibc freetype2 libxau libxdmcp libice libxdamage libxml2 libwnck>=2.29.0" "bug-buddy>=2.28.0" \ - "evince>=2.26.0" "evolution" "nautilus-cd-burner" "brasero") -subgroups=('gnome' 'gnome' 'gnome' 'gnome' 'gnome' 'gnome' 'gnome' 'gnome' 'gnome' 'gnome' 'gnome' 'gnome'\ - 'gnome' 'gnome' 'gnome-extra' 'gnome-extra') -subarchs=('i686 x86_64 ppc' 'i686 x86_64 ppc' 'i686 x86_64 ppc' 'i686 x86_64 ppc' 'i686 x86_64 ppc' 'i686 x86_64 ppc' 'i686 x86_64 ppc' 'i686 x86_64 ppc' \ - 'i686 x86_64 ppc' 'i686 x86_64 ppc' 'i686 x86_64 ppc' 'i686 x86_64 ppc' 'i686 x86_64 ppc' 'i686 x86_64 ppc' 'i686 x86_64 ppc' \ - 'i686 x86_64 ppc') -subrodepends=("$pkgname=$pkgver" "$pkgname=$pkgver" "$pkgname=$pkgver" "$pkgname=$pkgver" \ - "$pkgname=$pkgver" "$pkgname=$pkgver" "$pkgname=$pkgver" "$pkgname=$pkgver $pkgname-print=$pkgver" \ - "$pkgname=$pkgver" "$pkgname=$pkgver" "$pkgname=$pkgver" "$pkgname=$pkgver" \ - "$pkgname=$pkgver" "$pkgname=$pkgver" "$pkgname=$pkgver" "$pkgname=$pkgver") + +subpkgs=("${subpkgs[@]}" "$pkgname-applet") +subdescs=("${subdescs[@]}" 'Gnome panel applet python module') +subdepends=("${subdepends[@]}" "gnome-panel>=2.29.0") +subrodepends=("${subrodepends[@]}" "$pkgname=$pkgver") +subgroups=("${subgroups[@]}" 'gnome') +subarchs=("${subarchs[@]}" 'i686 x86_64 ppc') + +subpkgs=("${subpkgs[@]}" "$pkgname-desktop") +subdescs=("${subdescs[@]}" 'Gnome desktop python module') +subdepends=("${subdepends[@]}" "gnome-desktop>=2.29.0") +subrodepends=("${subrodepends[@]}" "$pkgname=$pkgver") +subgroups=("${subgroups[@]}" 'gnome') +subarchs=("${subarchs[@]}" 'i686 x86_64 ppc') + +subpkgs=("${subpkgs[@]}" "$pkgname-keyring") +subdescs=("${subdescs[@]}" 'Gnome keyring python module') +subdepends=("${subdepends[@]}" "gnome-keyring>=2.29.0") +subrodepends=("${subrodepends[@]}" "$pkgname=$pkgver") +subgroups=("${subgroups[@]}" 'gnome') +subarchs=("${subarchs[@]}" 'i686 x86_64 ppc') + +subpkgs=("${subpkgs[@]}" "$pkgname-print") +subdescs=("${subdescs[@]}" 'Gnome print python module') +subdepends=("${subdepends[@]}" "libgnomeprint>=2.18.1 libgnomeprintui>=2.18.1") +subrodepends=("${subrodepends[@]}" "$pkgname=$pkgver") +subgroups=("${subgroups[@]}" 'gnome-extra') +subarchs=("${subarchs[@]}" 'i686 x86_64 ppc') + +subpkgs=("${subpkgs[@]}" "$pkgname-gtksourceview") +subdescs=("${subdescs[@]}" 'Gtksourceview python module') +subdepends=("${subdepends[@]}" "gtksourceview1") +subrodepends=("${subrodepends[@]}" "$pkgname=$pkgver") +subgroups=("${subgroups[@]}" 'gnome-extra') +subarchs=("${subarchs[@]}" 'i686 x86_64 ppc') + +subpkgs=("${subpkgs[@]}" "$pkgname-gtop") +subdescs=("${subdescs[@]}" 'Gtop python module') +subdepends=("${subdepends[@]}" "libgtop>=2.28.0") +subrodepends=("${subrodepends[@]}" "$pkgname=$pkgver") +subgroups=("${subgroups[@]}" 'gnome') +subarchs=("${subarchs[@]}" 'i686 x86_64 ppc') + +subpkgs=("${subpkgs[@]}" "$pkgname-mediaprofiles") +subdescs=("${subdescs[@]}" 'Gnome mediaprofiles python module') +subdepends=("${subdepends[@]}" "gnome-media>=2.29.0") +subrodepends=("${subrodepends[@]}" "$pkgname=$pkgver") +subgroups=("${subgroups[@]}" 'gnome') +subarchs=("${subarchs[@]}" 'i686 x86_64 ppc') + +subpkgs=("${subpkgs[@]}" "$pkgname-metacity") +subdescs=("${subdescs[@]}" 'Metacity python module') +subdepends=("${subdepends[@]}" "metacity>=2.28.0") +subrodepends=("${subrodepends[@]}" "$pkgname=$pkgver") +subgroups=("${subgroups[@]}" 'gnome') +subarchs=("${subarchs[@]}" 'i686 x86_64 ppc') + +subpkgs=("${subpkgs[@]}" "$pkgname-rsvg") +subdescs=("${subdescs[@]}" 'librsvg python module') +subdepends=("${subdepends[@]}" "librsvg") +subrodepends=("${subrodepends[@]}" "$pkgname=$pkgver") +subgroups=("${subgroups[@]}" 'gnome') +subarchs=("${subarchs[@]}" 'i686 x86_64 ppc') + +subpkgs=("${subpkgs[@]}" "$pkgname-totem") +subdescs=("${subdescs[@]}" 'Totem python module') +subdepends=("${subdepends[@]}" "totem>=2.29.0") +subrodepends=("${subrodepends[@]}" "$pkgname=$pkgver") +subgroups=("${subgroups[@]}" 'gnome') +subarchs=("${subarchs[@]}" 'i686 x86_64 ppc') + +subpkgs=("${subpkgs[@]}" "$pkgname-wnck") +subdescs=("${subdescs[@]}" 'libwnck python module') +subdepends=("${subdepends[@]}" "python libxext glibc freetype2 libxau \ + libxdmcp libice libxdamage libxml2 libwnck>=2.29.0") +subrodepends=("${subrodepends[@]}" "$pkgname=$pkgver") +subgroups=("${subgroups[@]}" 'gnome') +subarchs=("${subarchs[@]}" 'i686 x86_64 ppc') + +subpkgs=("${subpkgs[@]}" "$pkgname-bugbuddy") +subdescs=("${subdescs[@]}" 'Bug Buddy integration module') +subdepends=("${subdepends[@]}" "bug-buddy>=2.28.0") +subrodepends=("${subrodepends[@]}" "$pkgname=$pkgver") +subgroups=("${subgroups[@]}" 'gnome') +subarchs=("${subarchs[@]}" 'i686 x86_64 ppc') + +subpkgs=("${subpkgs[@]}" "$pkgname-evince") +subdescs=("${subdescs[@]}" 'evince python module') +subdepends=("${subdepends[@]}" "evince>=2.29.0") +subrodepends=("${subrodepends[@]}" "$pkgname=$pkgver") +subgroups=("${subgroups[@]}" 'gnome') +subarchs=("${subarchs[@]}" 'i686 x86_64 ppc') + +subpkgs=("${subpkgs[@]}" "$pkgname-evolution") +subdescs=("${subdescs[@]}" 'evolution python module') +subdepends=("${subdepends[@]}" "evolution>=2.29.0") +subrodepends=("${subrodepends[@]}" "$pkgname=$pkgver") +subgroups=("${subgroups[@]}" 'gnome') +subarchs=("${subarchs[@]}" 'i686 x86_64 ppc') + +subpkgs=("${subpkgs[@]}" "$pkgname-nautilusburn") +subdescs=("${subdescs[@]}" 'nautilus-cd-burner python module') +subdepends=("${subdepends[@]}" "nautilus-cd-burner") +subrodepends=("${subrodepends[@]}" "$pkgname=$pkgver") +subgroups=("${subgroups[@]}" 'gnome-extra') +subarchs=("${subarchs[@]}" 'i686 x86_64 ppc') + +subpkgs=("${subpkgs[@]}" "$pkgname-brasero") +subdescs=("${subdescs[@]}" 'brasero python module') +subdepends=("${subdepends[@]}" "brasero") +subrodepends=("${subrodepends[@]}" "$pkgname=$pkgver") +subgroups=("${subgroups[@]}" 'gnome') +subarchs=("${subarchs[@]}" 'i686 x86_64 ppc') ## NOTE: the depends are not really right for gnome-python-desktop-wnck , $pkgname depends/rodepends got removed ## to make some rox crap happy. So you have to add gnome-python{-desktop} depends to any gnome* package need From priyank at frugalware.org Mon Mar 1 11:50:21 2010 From: priyank at frugalware.org (Priyank) Date: Mon, 1 Mar 2010 11:50:21 +0100 (CET) Subject: [Frugalware-git] frugalware-current: gmpc-0.17.0-3-i686 Message-ID: <20100301105021.4A73C1240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=0b731d35de4efb4f5fc4c78c742a269afe08b77b commit 0b731d35de4efb4f5fc4c78c742a269afe08b77b Author: Priyank Date: Mon Mar 1 16:19:17 2010 +0530 gmpc-0.17.0-3-i686 * Rebuild with libmpd-0.18.0 diff --git a/source/xapps-extra/gmpc/FrugalBuild b/source/xapps-extra/gmpc/FrugalBuild index 283e361..41954fd 100644 --- a/source/xapps-extra/gmpc/FrugalBuild +++ b/source/xapps-extra/gmpc/FrugalBuild @@ -3,13 +3,13 @@ pkgname=gmpc pkgver=0.17.0 -pkgrel=2 +pkgrel=3 pkgdesc="Gnome Music Player Client." url="http://gmpcwiki.sarine.nl/index.php" makedepends=('intltool') -depends=('gtk+2>=2.16.2-2' 'libglade>=2.6.4-2' 'libmpd>=0.17.0' 'curl>=7.19.0') +depends=('gtk+2>=2.18.7' 'libglade>=2.6.4-2' 'libmpd>=0.18.0' 'curl>=7.19.0') rodepends=('mpd') -makedepends=('gob2' 'perl-xml' 'intltool') +makedepends=('gob2' 'perl-xml-parser' 'intltool') groups=('xapps-extra') archs=('i686' 'x86_64') _F_gnome_iconcache="y" From priyank at frugalware.org Mon Mar 1 11:53:57 2010 From: priyank at frugalware.org (Priyank) Date: Mon, 1 Mar 2010 11:53:57 +0100 (CET) Subject: [Frugalware-git] frugalware-current: gmpc-lyrics-0.17.0-3-i686 Message-ID: <20100301105357.2FED51240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=6560f1d08fab100050e2f24b7013d45a94347988 commit 6560f1d08fab100050e2f24b7013d45a94347988 Author: Priyank Date: Mon Mar 1 16:23:33 2010 +0530 gmpc-lyrics-0.17.0-3-i686 * Rebuild with libmpd-0.18.0 diff --git a/source/xapps-extra/gmpc-lyrics/FrugalBuild b/source/xapps-extra/gmpc-lyrics/FrugalBuild index 3307e85..1d0d721 100644 --- a/source/xapps-extra/gmpc-lyrics/FrugalBuild +++ b/source/xapps-extra/gmpc-lyrics/FrugalBuild @@ -3,10 +3,10 @@ pkgname=gmpc-lyrics pkgver=0.17.0 -pkgrel=2 +pkgrel=3 pkgdesc="A lyrics fetching plugin for Gmpc." url="http://gmpcwiki.sarine.nl/index.php/Lyrics" -depends=('gtk+2>=2.16.2-2' 'gmpc>=0.17.0-2' 'libxml2' 'libmpd') +depends=('gtk+2>=2.16.2-2' 'gmpc>=0.17.0-2' 'libxml2' 'libmpd>=0.18.0') groups=('xapps-extra') archs=('i686' 'x86_64') up2date="lynx -dump $url | grep Download -m1 | sed 's/.*\* \(.*\):.*/\1/'" From bouleetbil at frogdev.info Mon Mar 1 12:49:19 2010 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 1 Mar 2010 12:49:19 +0100 (CET) Subject: [Frugalware-git] gnometesting: nanny-2.29.3-4-x86_64 *added rc script and backup Message-ID: <20100301114919.DAE531240003@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=898e15e2c347662fa8acfd650d8b78b6f2f2c8c9 commit 898e15e2c347662fa8acfd650d8b78b6f2f2c8c9 Author: bouleetbil Date: Mon Mar 1 12:48:50 2010 +0100 nanny-2.29.3-4-x86_64 *added rc script and backup diff --git a/source/gnome-extra/nanny/FrugalBuild b/source/gnome-extra/nanny/FrugalBuild index c934e05..44ab043 100644 --- a/source/gnome-extra/nanny/FrugalBuild +++ b/source/gnome-extra/nanny/FrugalBuild @@ -3,22 +3,28 @@ pkgname=nanny pkgver=2.29.3 -pkgrel=3 +pkgrel=4 pkgdesc="Gnome Parental Control" -depends=('pygtk' 'twisted' 'dbus-python' 'imaging' 'hachoir-regex' 'gnome-desktop') +depends=('pygtk' 'twisted' 'dbus-python' 'imaging' 'hachoir-regex' 'gnome-desktop>=2.29.0' 'rarian') makedepends=('gnome-doc-utils' 'intltool') options=('scriptlet') groups=('gnome-extra') archs=('i686' 'x86_64') _F_gnome_iconcache="y" _F_gnome_desktop="y" +_F_gnome_scrollkeeper="y" +backup=('etc/sysconfig/nanny') Finclude gnome gnome-scriptlet -sha1sums=('b482bc1fda2999294e331642dc6bcbd3b240e0bf') +source=($source rc.nanny) +sha1sums=('b482bc1fda2999294e331642dc6bcbd3b240e0bf' \ + '288f35d61dd3bd1e4e9a88dccf71e641c30ccb3c') + build() { Fcd Fsed "admin" "root" daemon/data/dbus/nanny-daemon.conf Fbuild Fbuild_gnome_scriptlet + Frcd2 nanny } # optimization OK diff --git a/source/gnome-extra/nanny/rc.nanny b/source/gnome-extra/nanny/rc.nanny new file mode 100644 index 0000000..c764ca5 --- /dev/null +++ b/source/gnome-extra/nanny/rc.nanny @@ -0,0 +1,56 @@ +#!/bin/bash + +# (c) 2010 bouleetbil +# rc.nanny for FrugalWare +# distributed under GPL License + +# chkconfig: 2345 99 50 +# description: Gnome Parental Control + +source /lib/initscripts/functions +TEXTDOMAIN=nanny +TEXTDOMAINDIR=/lib/initscripts/messages +daemon="nanny" + +actions=(restart start status stop) + +NANNY_TAP="/usr/share/nanny/daemon/nanny.tap" +PID_FILE="/var/run/nanny/NannyDaemon.pid" +LOG_FILE="/var/log/nanny.log" + +TWISTD=$(which twistd) +DAEMON="$TWISTD --pidfile $PID_FILE -r glib2 --logfile $LOG_FILE -y $NANNY_TAP --" + +# Include nanny defaults if available +if [ -f /etc/sysconfig/nanny ] ; then + . /etc/sysconfig/nanny +fi + + +rc_start() +{ + start_msg + mkdir -p /var/run/nanny + echo "test $PID_FILE" + if [ ! -f $PID_FILE ]; then + $DAEMON 2>/dev/null 1>/dev/null + ok $? + else + ok 999 + fi +} + +rc_stop() +{ + stop_msg + if [ -f $PID_FILE ] ;then + kill $(eval ps aux | grep $LOG_FILE | awk '{ print $2 }' | head -1) + rm -rf $PID_FILE + ok $? + else + ok 999 + fi +} + +rc_exec $1 + From priyank at frugalware.org Mon Mar 1 16:05:14 2010 From: priyank at frugalware.org (Priyank) Date: Mon, 1 Mar 2010 16:05:14 +0100 (CET) Subject: [Frugalware-git] frugalware-current: gmpc-coveramazon-0.17.0-3-i686 Message-ID: <20100301150514.985DD1240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=cc67a02f8356730b655b66bff873937f9bc1fae9 commit cc67a02f8356730b655b66bff873937f9bc1fae9 Author: Priyank Date: Mon Mar 1 20:34:05 2010 +0530 gmpc-coveramazon-0.17.0-3-i686 * Rebuild with libmpd-0.18.0 diff --git a/source/xapps-extra/gmpc-coveramazon/FrugalBuild b/source/xapps-extra/gmpc-coveramazon/FrugalBuild index ccf0d75..6ebabd9 100644 --- a/source/xapps-extra/gmpc-coveramazon/FrugalBuild +++ b/source/xapps-extra/gmpc-coveramazon/FrugalBuild @@ -3,10 +3,10 @@ pkgname=gmpc-coveramazon pkgver=0.17.0 -pkgrel=2 -pkgdesc="A gmpc plugin that fetches cover art and album info from amazon." +pkgrel=3 +pkgdesc="A gmpc plugin that fetches cover art and album info from Amazon." url="http://gmpcwiki.sarine.nl/index.php/Coveramazon" -depends=('gtk+2>=2.16.2-2' 'gmpc>=0.17.0-2' 'libxml2') +depends=('gtk+2>=2.16.2-2' 'libmpd>=0.18.0' 'libxml2' 'gmpc>=0.17.0') groups=('xapps-extra') archs=('i686' 'x86_64') up2date="lynx -dump $url | grep -m1 Download | sed 's/.* \* \(.*\):.*/\1/'" From crazy at frugalware.org Mon Mar 1 16:16:07 2010 From: crazy at frugalware.org (crazy) Date: Mon, 1 Mar 2010 16:16:07 +0100 (CET) Subject: [Frugalware-git] frugalware-current: gfpm-1.3.2-3-x86_64 * backport 2 fixes from git to fix UI and logviewer crashes * closes #4122 Message-ID: <20100301151607.8922E1240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=cd6a147ad6f44f33cfa98fd1987af01ee1188462 commit cd6a147ad6f44f33cfa98fd1987af01ee1188462 Author: crazy Date: Mon Mar 1 17:15:48 2010 +0100 gfpm-1.3.2-3-x86_64 * backport 2 fixes from git to fix UI and logviewer crashes * closes #4122 diff --git a/source/xapps/gfpm/Fix_gtk.diff b/source/xapps/gfpm/Fix_gtk.diff deleted file mode 100644 index 7368d1a..0000000 --- a/source/xapps/gfpm/Fix_gtk.diff +++ /dev/null @@ -1,117 +0,0 @@ ---- gfpm-1.3.2/data/gfpm.ui 2009-09-05 17:42:44.000000000 +0200 -+++ gfpm-1.3.2/data/gfpm.ui 2009-09-11 17:35:52.000000000 +0200 -@@ -8,7 +8,7 @@ - 600 - - -- -+ - True - - -@@ -48,7 +48,7 @@ - Repositories - True - Manage Repositories -- image1 -+ image1111 - False - - -@@ -91,7 +91,7 @@ - _Optimize package database - True - True -- image3 -+ image3333 - False - - -@@ -102,7 +102,7 @@ - True - GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - True -- image4 -+ image4444 - False - - -@@ -278,11 +278,11 @@ - - - -- -+ - True - 5 - -- -+ - True - - -@@ -489,7 +489,7 @@ - 5 - 5 - -- -+ - True - False - automatic -@@ -807,7 +807,7 @@ - - - -- -+ - True - <b>Information</b> - True -@@ -1307,14 +1307,14 @@ - 0 - none - -- -+ - True - 6 - 6 - 6 - 6 - -- -+ - True - vertical - -@@ -3915,7 +3915,7 @@ - - - -- -+ - True - gfpm - -@@ -3924,17 +3924,17 @@ - gtk-clear - 1 - -- -+ - True - gtk-refresh - 1 - -- -+ - True - gtk-dialog-info - 1 - -- -+ - True - gtk-clear - diff --git a/source/xapps/gfpm/FrugalBuild b/source/xapps/gfpm/FrugalBuild index cb3e347..97c8c8e 100644 --- a/source/xapps/gfpm/FrugalBuild +++ b/source/xapps/gfpm/FrugalBuild @@ -3,7 +3,7 @@ pkgname=gfpm pkgver=1.3.2 -pkgrel=2 +pkgrel=3 pkgdesc="Graphical Frugalware Package Manager" url="http://ftp.frugalware.org/pub/other/gfpm" depends=('glib2' 'gtk+2>=2.16.4' 'pacman-g2>=3.7.3' 'frugalwareutils>=0.8.7') @@ -19,8 +19,10 @@ subdepends=("$pkgname=$pkgver nautilus>=2.26.3-2" "$pkgname=$pkgver thunar>=1.0. subgroups=('gnome' 'xfce4') subarchs=('i686 x86_64' 'i686 x86_64') up2date="lynx -dump $url | Flasttar" -source=($url/$pkgname-$pkgver.tar.gz Fix_gtk.diff) -signatures=(${source[0]}.asc '') +source=($url/$pkgname-$pkgver.tar.gz \ + fix-logviewer-crash-48897c4e5467c62cb36ab191eab6ce779f8714da.patch \ + fix-UI-crash-d7bc09e6e64e81077901d42c6fffd932baff910e.patch) +signatures=(${source[0]}.asc '' '') build() { diff --git a/source/xapps/gfpm/fix-UI-crash-d7bc09e6e64e81077901d42c6fffd932baff910e.patch b/source/xapps/gfpm/fix-UI-crash-d7bc09e6e64e81077901d42c6fffd932baff910e.patch new file mode 100644 index 0000000..2197c25 --- /dev/null +++ b/source/xapps/gfpm/fix-UI-crash-d7bc09e6e64e81077901d42c6fffd932baff910e.patch @@ -0,0 +1,110 @@ +From d7bc09e6e64e81077901d42c6fffd932baff910e Mon Sep 17 00:00:00 2001 +From: crazy +Date: Sat, 20 Feb 2010 02:00:14 +0100 +Subject: [PATCH] gfpm.ui: fix crash bug(s) , patch from elentir + +--- + data/gfpm.ui | 22 +++++++++++----------- + 1 files changed, 11 insertions(+), 11 deletions(-) + +diff --git a/data/gfpm.ui b/data/gfpm.ui +index 389b14d..0f91468 100644 +--- a/data/gfpm.ui ++++ b/data/gfpm.ui +@@ -680,7 +680,7 @@ + True + GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK + +- ++ + True + GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK + 0 +@@ -860,7 +860,7 @@ + + True + +- ++ + True + splash.png + +@@ -1102,7 +1102,7 @@ + GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK + 5 + +- ++ + True + GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK + 8 +@@ -1307,18 +1307,18 @@ + 0 + none + +- ++ + True + 6 + 6 + 6 + 6 + +- ++ + True + vertical + +- ++ + True + True + automatic +@@ -1341,7 +1341,7 @@ + + + +- ++ + True + <b>Information</b> + True +@@ -1444,7 +1444,7 @@ + True + GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK + +- ++ + True + GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK + 3 +@@ -1898,7 +1898,7 @@ + True + GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK + +- ++ + True + GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK + 0 +@@ -2397,7 +2397,7 @@ + True + GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK + +- ++ + True + vertical + +@@ -2455,7 +2455,7 @@ + + + +- ++ + True + 3 + 5 +-- +1.6.5.3 + diff --git a/source/xapps/gfpm/fix-logviewer-crash-48897c4e5467c62cb36ab191eab6ce779f8714da.patch b/source/xapps/gfpm/fix-logviewer-crash-48897c4e5467c62cb36ab191eab6ce779f8714da.patch new file mode 100644 index 0000000..e5a65ec --- /dev/null +++ b/source/xapps/gfpm/fix-logviewer-crash-48897c4e5467c62cb36ab191eab6ce779f8714da.patch @@ -0,0 +1,33 @@ +From 48897c4e5467c62cb36ab191eab6ce779f8714da Mon Sep 17 00:00:00 2001 +From: crazy +Date: Sat, 20 Feb 2010 05:31:02 +0100 +Subject: [PATCH] gfpm-logviewer.c: fix segfault and actually make that work since it didn't + +--- + src/gfpm-logviewer.c | 3 +++ + 1 files changed, 3 insertions(+), 0 deletions(-) + +diff --git a/src/gfpm-logviewer.c b/src/gfpm-logviewer.c +index 591aafb..7672623 100644 +--- a/src/gfpm-logviewer.c ++++ b/src/gfpm-logviewer.c +@@ -18,6 +18,8 @@ + * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + */ + ++ ++ + #include "gfpm-logviewer.h" + #include "gfpm-messages.h" + #include "gfpm-interface.h" +@@ -43,6 +45,7 @@ typedef struct _LogViewItem + #define DMK_FILE "/share/gfpm/datemsk" + + int getdate_err; ++struct tm *getdate(const char *string); + + /* Log viewer widgets */ + static GtkWidget *gfpm_logviewer_dlg; +-- +1.6.5.3 + From priyank at frugalware.org Mon Mar 1 16:21:30 2010 From: priyank at frugalware.org (Priyank) Date: Mon, 1 Mar 2010 16:21:30 +0100 (CET) Subject: [Frugalware-git] frugalware-current: gmpc-serverstats-0.17.0-3-i686 Message-ID: <20100301152130.4E1F11240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=d088497de98916da20c5f6442ed57792dd901c56 commit d088497de98916da20c5f6442ed57792dd901c56 Author: Priyank Date: Mon Mar 1 20:50:37 2010 +0530 gmpc-serverstats-0.17.0-3-i686 * Rebuild with libmpd-0.18.0 diff --git a/source/xapps-extra/gmpc-serverstats/FrugalBuild b/source/xapps-extra/gmpc-serverstats/FrugalBuild index 35be745..09edb71 100644 --- a/source/xapps-extra/gmpc-serverstats/FrugalBuild +++ b/source/xapps-extra/gmpc-serverstats/FrugalBuild @@ -3,10 +3,10 @@ pkgname=gmpc-serverstats pkgver=0.17.0 -pkgrel=2 +pkgrel=3 pkgdesc="A gmpc plugin that shows detailed information about a mpd database." url="http://gmpcwiki.sarine.nl/index.php/Server_statistics" -depends=('gtk+2>=2.16.2-2' 'gmpc>=0.17.0-2' 'libxml2' 'libmpd') +depends=('gtk+2>=2.16.2-2' 'gmpc>=0.17.0-2' 'libxml2' 'libmpd>=0.18.0') groups=('xapps-extra') archs=('i686' 'x86_64') up2date="lynx -dump $url | grep Download -m1 | sed 's/.*\* \(.*\):.*/\1/'" From bouleetbil at frogdev.info Mon Mar 1 17:24:25 2010 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 1 Mar 2010 17:24:25 +0100 (CET) Subject: [Frugalware-git] gnometesting: evolution-data-server-2.29.91-3-i686 *fixed depends Message-ID: <20100301162425.71E5A1240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=969e7431d7890917b8c9573341f09105fe823047 commit 969e7431d7890917b8c9573341f09105fe823047 Author: bouleetbil Date: Mon Mar 1 17:58:12 2010 +0000 evolution-data-server-2.29.91-3-i686 *fixed depends diff --git a/source/gnome/evolution-data-server/FrugalBuild b/source/gnome/evolution-data-server/FrugalBuild index c05540a..0d9b346 100644 --- a/source/gnome/evolution-data-server/FrugalBuild +++ b/source/gnome/evolution-data-server/FrugalBuild @@ -3,9 +3,9 @@ pkgname=evolution-data-server pkgver=2.29.91 -pkgrel=2 +pkgrel=3 pkgdesc="Evolution Data Server provides a central location for addressbook and calendar in the GNOME Desktop" -depends=('nss>=3.12' 'libsoup>=2.29.0' 'libgweather>=2.29.91' \ +depends=('nss>=3.12' 'libsoup-gnome>=2.29.0' 'libgweather>=2.29.91' \ 'libkrb5' 'db>=4.7.25' 'gnutls>=2.8' 'libical' 'gnome-keyring>=2.29.90-2') makedepends=('intltool' 'krb5') groups=('gnome' 'gnome-minimal') From vmiklos at frugalware.org Mon Mar 1 18:32:23 2010 From: vmiklos at frugalware.org (Miklos Vajna) Date: Mon, 1 Mar 2010 18:32:23 +0100 (CET) Subject: [Frugalware-git] frugalware: up to 1.2 Message-ID: <20100301173223.848A81240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware.git;a=commitdiff;h=a7ea0a1406f86db6ad7492a56e9d020abe69cf93 commit a7ea0a1406f86db6ad7492a56e9d020abe69cf93 Author: Miklos Vajna Date: Mon Mar 1 18:32:16 2010 +0100 up to 1.2 diff --git a/Makefile b/Makefile index 4ce87d4..955304b 100644 --- a/Makefile +++ b/Makefile @@ -16,7 +16,7 @@ # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA # -VERSION = 1.2rc2 +VERSION = 1.2 CODENAME = Locris FRUGALWARE_LANGS = de hu it From vmiklos at frugalware.org Mon Mar 1 18:34:48 2010 From: vmiklos at frugalware.org (Miklos Vajna) Date: Mon, 1 Mar 2010 18:34:48 +0100 (CET) Subject: [Frugalware-git] frugalware-current: frugalware-1.2-1-i686 Message-ID: <20100301173448.4BD2F1240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=d7f5c34ca787c8821eda49f1980f6c7f5d7d78ec commit d7f5c34ca787c8821eda49f1980f6c7f5d7d78ec Author: Miklos Vajna Date: Mon Mar 1 18:34:23 2010 +0100 frugalware-1.2-1-i686 - version bump diff --git a/source/base/frugalware/FrugalBuild b/source/base/frugalware/FrugalBuild index 4fe1557..b531d61 100644 --- a/source/base/frugalware/FrugalBuild +++ b/source/base/frugalware/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: Miklos Vajna pkgname=frugalware -pkgver=1.2rc2 +pkgver=1.2 pkgrel=1 pkgdesc="Basic Frugalware Linux filesystem package" url="http://ftp.frugalware.org/pub/other/frugalware/" From vmiklos at frugalware.org Mon Mar 1 18:48:59 2010 From: vmiklos at frugalware.org (Miklos Vajna) Date: Mon, 1 Mar 2010 18:48:59 +0100 (CET) Subject: [Frugalware-git] setup: updates for 1.0.8 Message-ID: <20100301174859.34BB31240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=setup.git;a=commitdiff;h=dfa61c42c4a97c00e9d31b5ce2aaf6c6f4f65722 commit dfa61c42c4a97c00e9d31b5ce2aaf6c6f4f65722 Author: Miklos Vajna Date: Mon Mar 1 18:49:07 2010 +0100 updates for 1.0.8 diff --git a/NEWS b/NEWS index bccce15..c70b820 100644 --- a/NEWS +++ b/NEWS @@ -1,5 +1,7 @@ VERSION DESCRIPTION ----------------------------------------------------------------------------- +1.0.8 - release for 1.2 + - use udhcpc from busybox instead of external dhcpcd 1.0.7 - devtmpfs and formatdisk fixes - libuuid and libblkid support 1.0.6 - dhcpcd-5.x support diff --git a/configure b/configure index 0759554..27ecd96 100755 --- a/configure +++ b/configure @@ -21,7 +21,7 @@ elif os.uname()[-1] == 'ppc': packages.extend(['mac-fdisk']) # when releasing a new setup, please update this. -version = "1.0.7" +version = "1.0.8" # parse our options parser = OptionParser(version="configure for Frugalware Setup v%s" % (version)) From vmiklos at frugalware.org Mon Mar 1 18:55:27 2010 From: vmiklos at frugalware.org (Miklos Vajna) Date: Mon, 1 Mar 2010 18:55:27 +0100 (CET) Subject: [Frugalware-git] frugalware-current: fwsetup-1.0.8-1-i686 Message-ID: <20100301175527.5CF811240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=d9306ff42e697349be3e3664fc5d0ea28e007645 commit d9306ff42e697349be3e3664fc5d0ea28e007645 Author: Miklos Vajna Date: Mon Mar 1 18:55:18 2010 +0100 fwsetup-1.0.8-1-i686 - version bump diff --git a/source/devel-extra/fwsetup/FrugalBuild b/source/devel-extra/fwsetup/FrugalBuild index ce55036..f783449 100644 --- a/source/devel-extra/fwsetup/FrugalBuild +++ b/source/devel-extra/fwsetup/FrugalBuild @@ -4,14 +4,14 @@ USE_DEVEL=${USE_DEVEL:-"n"} pkgname=fwsetup -pkgver=1.0.7 +pkgver=1.0.8 Fuse $USE_DEVEL && pkgver=0.8.8.9.gd348556 -pkgrel=2 +pkgrel=1 pkgdesc="Frugalware Setup" url="http://ftp.frugalware.org/pub/other/setup/" depends=() makedepends=('dialog' 'parted' 'pacman-g2>=3.5.5' 'module-init-tools' \ - 'frugalware>=1.2rc2' 'busybox>=1.12.1-2' 'frugalwareutils>=0.8.8' \ + 'frugalware>=1.2' 'busybox>=1.12.1-2' 'frugalwareutils>=0.8.8' \ 'gdb>=7.0.1-2') if [ "$CARCH" != "ppc" ]; then Fconfopts="$Fconfopts --enable-tftp" From vmiklos at frugalware.org Mon Mar 1 20:19:38 2010 From: vmiklos at frugalware.org (Miklos Vajna) Date: Mon, 1 Mar 2010 20:19:38 +0100 (CET) Subject: [Frugalware-git] homepage-ng: FSA626-phpmyadmin Message-ID: <20100301191938.B249F1240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=homepage-ng.git;a=commitdiff;h=2a7bc0f7f7771d857a6c7c389074d6f019b452ab commit 2a7bc0f7f7771d857a6c7c389074d6f019b452ab Author: Miklos Vajna Date: Mon Mar 1 20:19:21 2010 +0100 FSA626-phpmyadmin diff --git a/frugalware/xml/security.xml b/frugalware/xml/security.xml index 62b9353..85e3116 100644 --- a/frugalware/xml/security.xml +++ b/frugalware/xml/security.xml @@ -26,6 +26,20 @@ + 626 + 2010-03-01 + Miklos Vajna + phpmyadmin + 3.2.0.1-1 + 3.2.2.1-1getorin1 + http://bugs.frugalware.org/task/3996 + http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2009-3696 + http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2009-3697 + Some vulnerabilities have been reported in phpMyAdmin, which can be exploited by malicious users to conduct script insertion and SQL injection attacks. + 1) Input used as the MySQL table name is not properly sanitised before being used. This can be exploited to insert arbitrary HTML and script code, which will be executed in a user's browser session in context of an affected site when the malicious data is being viewed. + 2) Input passed to various parameters of the PDF schema generator feature is not properly sanitised before being used. This can be exploited to manipulate SQL queries by injecting arbitrary SQL code. + + 625 2009-12-09 Miklos Vajna From vmiklos at frugalware.org Mon Mar 1 20:22:26 2010 From: vmiklos at frugalware.org (Miklos Vajna) Date: Mon, 1 Mar 2010 20:22:26 +0100 (CET) Subject: [Frugalware-git] homepage-ng: FSA627-drupal-webform Message-ID: <20100301192226.4C5691240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=homepage-ng.git;a=commitdiff;h=8e1880e343daf197a54f8ec32da3729d3e98e639 commit 8e1880e343daf197a54f8ec32da3729d3e98e639 Author: Miklos Vajna Date: Mon Mar 1 20:22:23 2010 +0100 FSA627-drupal-webform diff --git a/frugalware/xml/security.xml b/frugalware/xml/security.xml index 85e3116..7d29594 100644 --- a/frugalware/xml/security.xml +++ b/frugalware/xml/security.xml @@ -26,6 +26,21 @@ + 627 + 2010-03-01 + Miklos Vajna + drupal-webform + 5.x_2.7-1 + 5.x_2.8-1getorin1 + http://bugs.frugalware.org/task/4000 + http://cve.mitre.org/cgi-bin/cvename.cgi?name=4532 + http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2009-4533 + Some vulnerabilities have been reported in the Webform module for Drupal, which can be exploited by malicious users to conduct script insertion attacks, and by malicious people to disclose potentially sensitive information. + 1) Input passed to field labels while creating new webforms is not properly sanitised before being used. This can be exploited to insert arbitrary HTML and script code, which will be executed in a user's browser session in context of an affected site when the malicious data is being viewed. + Successful exploitation of this vulnerability requires permissions to create webforms. + 2) An error in the handling of cached pages can be exploited to disclose session variables when caching is enabled. + + 626 2010-03-01 Miklos Vajna From vmiklos at frugalware.org Mon Mar 1 20:25:32 2010 From: vmiklos at frugalware.org (Miklos Vajna) Date: Mon, 1 Mar 2010 20:25:32 +0100 (CET) Subject: [Frugalware-git] homepage-ng: FSA628-drupal6-webform Message-ID: <20100301192532.C0C0D1240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=homepage-ng.git;a=commitdiff;h=b5f5f4b5ef4413965515111bec89454fa21d5057 commit b5f5f4b5ef4413965515111bec89454fa21d5057 Author: Miklos Vajna Date: Mon Mar 1 20:25:28 2010 +0100 FSA628-drupal6-webform diff --git a/frugalware/xml/security.xml b/frugalware/xml/security.xml index 7d29594..f0df371 100644 --- a/frugalware/xml/security.xml +++ b/frugalware/xml/security.xml @@ -26,6 +26,18 @@ + 628 + 2010-03-01 + Miklos Vajna + drupal6-webform + 6.x_2.7-1 + 6.x_2.8-1getorin1 + http://bugs.frugalware.org/task/4001 + http://cve.mitre.org/cgi-bin/cvename.cgi?name=4532 + http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2009-4533 + See FSA627 for details. + + 627 2010-03-01 Miklos Vajna From vmiklos at frugalware.org Mon Mar 1 20:29:34 2010 From: vmiklos at frugalware.org (Miklos Vajna) Date: Mon, 1 Mar 2010 20:29:34 +0100 (CET) Subject: [Frugalware-git] homepage-ng: FSA629-wordpress Message-ID: <20100301192934.A4B7F1240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=homepage-ng.git;a=commitdiff;h=270f1e8ddaaf3fe42b2efa4d0a8b2601095f8066 commit 270f1e8ddaaf3fe42b2efa4d0a8b2601095f8066 Author: Miklos Vajna Date: Mon Mar 1 20:29:32 2010 +0100 FSA629-wordpress diff --git a/frugalware/xml/security.xml b/frugalware/xml/security.xml index f0df371..ceea622 100644 --- a/frugalware/xml/security.xml +++ b/frugalware/xml/security.xml @@ -26,6 +26,18 @@ + 629 + 2010-03-01 + Miklos Vajna + wordpress + 2.8.4-1 + 2.8.5-1getorin1 + http://bugs.frugalware.org/task/4007 + No CVE, see http://wordpress.org/development/2009/10/wordpress-2-8-5-hardening-release/. + A vulnerability has been reported in WordPress, which can be exploited by malicious people to cause a DoS (Denial of Service). + The vulnerability is caused due to the wp-trackback.php script letting users pass multiple source character encodings to the "mb_convert_encoding()" function, which can be used to cause a high CPU load, potentially resulting in a DoS. + + 628 2010-03-01 Miklos Vajna From vmiklos at frugalware.org Mon Mar 1 20:33:06 2010 From: vmiklos at frugalware.org (Miklos Vajna) Date: Mon, 1 Mar 2010 20:33:06 +0100 (CET) Subject: [Frugalware-git] homepage-ng: FSA630-drupal-link Message-ID: <20100301193306.ABDCC1240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=homepage-ng.git;a=commitdiff;h=0230732756289d6b9f60c64662c09de21b3af9c1 commit 0230732756289d6b9f60c64662c09de21b3af9c1 Author: Miklos Vajna Date: Mon Mar 1 20:33:04 2010 +0100 FSA630-drupal-link diff --git a/frugalware/xml/security.xml b/frugalware/xml/security.xml index ceea622..d9a8514 100644 --- a/frugalware/xml/security.xml +++ b/frugalware/xml/security.xml @@ -26,6 +26,18 @@ + 630 + 2010-03-01 + Miklos Vajna + drupal-link + 5.x_2.5-1 + 5.x_2.6-1getorin1 + http://bugs.frugalware.org/task/4024 + http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2009-3915 + A vulnerability has been reported in the Link module for Drupal, which can be exploited by malicious users to conduct script insertion attacks. + Input passed via the link title parameter, when using the "Separate title and URL" format, is not properly sanitised before being displayed to the user. This can be exploited to insert arbitrary HTML and script code, which will be executed in a user's browser session in context of an affected site when the malicious data is being viewed. + + 629 2010-03-01 Miklos Vajna @@ -45,7 +57,7 @@ 6.x_2.7-1 6.x_2.8-1getorin1 http://bugs.frugalware.org/task/4001 - http://cve.mitre.org/cgi-bin/cvename.cgi?name=4532 + http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2009-4532 http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2009-4533 See FSA627 for details. From vmiklos at frugalware.org Mon Mar 1 20:34:43 2010 From: vmiklos at frugalware.org (Miklos Vajna) Date: Mon, 1 Mar 2010 20:34:43 +0100 (CET) Subject: [Frugalware-git] homepage-ng: FSA631-drupal6-link Message-ID: <20100301193443.CDE2C1240003@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=homepage-ng.git;a=commitdiff;h=843b2f45353771789daaba530ac92c9672a986b1 commit 843b2f45353771789daaba530ac92c9672a986b1 Author: Miklos Vajna Date: Mon Mar 1 20:34:41 2010 +0100 FSA631-drupal6-link diff --git a/frugalware/xml/security.xml b/frugalware/xml/security.xml index d9a8514..2ca63db 100644 --- a/frugalware/xml/security.xml +++ b/frugalware/xml/security.xml @@ -26,6 +26,17 @@ + 631 + 2010-03-01 + Miklos Vajna + drupal6-link + 6.x_2.6-1 + 6.x_2.8-1getorin1 + http://bugs.frugalware.org/task/4025 + http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2009-3915 + See FSA630 for details. + + 630 2010-03-01 Miklos Vajna From vmiklos at frugalware.org Mon Mar 1 20:40:48 2010 From: vmiklos at frugalware.org (Miklos Vajna) Date: Mon, 1 Mar 2010 20:40:48 +0100 (CET) Subject: [Frugalware-git] homepage-ng: FSA632-wireshark Message-ID: <20100301194048.130F51240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=homepage-ng.git;a=commitdiff;h=6f60c50729dc63f448f1c4458ed8adbbc3049a0f commit 6f60c50729dc63f448f1c4458ed8adbbc3049a0f Author: Miklos Vajna Date: Mon Mar 1 20:40:45 2010 +0100 FSA632-wireshark diff --git a/frugalware/xml/security.xml b/frugalware/xml/security.xml index 2ca63db..ef31e9c 100644 --- a/frugalware/xml/security.xml +++ b/frugalware/xml/security.xml @@ -26,6 +26,25 @@ + 632 + 2010-03-01 + Miklos Vajna + wireshark + 1.2.2-1getorin1 + 1.2.3-1getorin1 + http://bugs.frugalware.org/task/4026 + http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2009-2560 + http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2009-3549 + http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2009-3550 + http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2009-3551 + Some vulnerabilities have been reported in Wireshark, which can be exploited by malicious people to cause a DoS (Denial of Service). + 1) An alignment error within the "dissect_paltalk()" function in epan/dissectors/packet-paltalk.c of the Paltalk dissector can be exploited to cause a crash. + Note: Successful exploitation requires that Wireshark is running on an alignment sensitive architecture. + 2) A NULL pointer dereference error within the DCERPC/NT dissector when can be exploited to cause a crash. + 3) An off-by-one error within the "dissect_negprot_response()" function in epan/dissectors/packet-smb.c of the SMB dissector can be exploited to cause a crash. + 4) An error within the RADIUS dissector can be exploited to cause a crash. + + 631 2010-03-01 Miklos Vajna From vmiklos at frugalware.org Mon Mar 1 20:43:13 2010 From: vmiklos at frugalware.org (Miklos Vajna) Date: Mon, 1 Mar 2010 20:43:13 +0100 (CET) Subject: [Frugalware-git] homepage-ng: FSA633-wordpress Message-ID: <20100301194313.C4A8D1240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=homepage-ng.git;a=commitdiff;h=4d6d0500dc1cdda01d5283975c772fd801c9c8c8 commit 4d6d0500dc1cdda01d5283975c772fd801c9c8c8 Author: Miklos Vajna Date: Mon Mar 1 20:43:11 2010 +0100 FSA633-wordpress diff --git a/frugalware/xml/security.xml b/frugalware/xml/security.xml index ef31e9c..f94c997 100644 --- a/frugalware/xml/security.xml +++ b/frugalware/xml/security.xml @@ -26,6 +26,21 @@ + 633 + 2010-03-01 + Miklos Vajna + wordpress + 2.8.5-1getorin1 + 2.8.6-1getorin1 + http://bugs.frugalware.org/task/4043 + http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2009-3890 + http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2009-3891 + A security issue and a vulnerability have been reported in WordPress, which can be exploited by malicious users to conduct script insertion attacks and compromise a vulnerable system. + 1) The security issue is caused due to the wp_check_filetype() function in /wp-includes/functions.php improperly validating uploaded files. This can be exploited to execute arbitrary PHP code by uploading a malicious PHP script with multiple extensions. + Successful exploitation of this vulnerability requires that Apache is not configured to handle the mime-type for media files with an e.g. "gif", "jpg", "png", "tif", "wmv" extension. + 2) Input passed via certain parameters to press-this.php is not properly sanitised before being displayed to the user. This can be exploited to insert arbitrary HTML and script code, which will be executed in a user's browser session in context of an affected site when the malicious data is being viewed. + + 632 2010-03-01 Miklos Vajna From vmiklos at frugalware.org Mon Mar 1 20:52:17 2010 From: vmiklos at frugalware.org (Miklos Vajna) Date: Mon, 1 Mar 2010 20:52:17 +0100 (CET) Subject: [Frugalware-git] homepage-ng: FSA634-drupal Message-ID: <20100301195217.806451240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=homepage-ng.git;a=commitdiff;h=d873ac7f7630326f90cc6a6366b712402275d852 commit d873ac7f7630326f90cc6a6366b712402275d852 Author: Miklos Vajna Date: Mon Mar 1 20:52:15 2010 +0100 FSA634-drupal diff --git a/frugalware/xml/security.xml b/frugalware/xml/security.xml index f94c997..22a69bf 100644 --- a/frugalware/xml/security.xml +++ b/frugalware/xml/security.xml @@ -26,6 +26,18 @@ + 634 + 2010-03-01 + Miklos Vajna + drupal + 5.20-1getorin1 + 5.21-1getorin1 + http://bugs.frugalware.org/task/4052 + http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2009-4369 + A vulnerability has been reported in Drupal Core, which can be exploited by malicious users to conduct script insertion attacks. + Input passed to the "Category" input field of the Contact module's administration form is not properly sanitised before being displayed to the user. + + 633 2010-03-01 Miklos Vajna From vmiklos at frugalware.org Mon Mar 1 20:54:32 2010 From: vmiklos at frugalware.org (Miklos Vajna) Date: Mon, 1 Mar 2010 20:54:32 +0100 (CET) Subject: [Frugalware-git] homepage-ng: FSA635-drupal6 Message-ID: <20100301195432.85B601240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=homepage-ng.git;a=commitdiff;h=8321d0d519603d8169a0c5c4e6b0345b497d888f commit 8321d0d519603d8169a0c5c4e6b0345b497d888f Author: Miklos Vajna Date: Mon Mar 1 20:54:30 2010 +0100 FSA635-drupal6 diff --git a/frugalware/xml/security.xml b/frugalware/xml/security.xml index 22a69bf..5ea72a0 100644 --- a/frugalware/xml/security.xml +++ b/frugalware/xml/security.xml @@ -26,6 +26,22 @@ + 635 + 2010-03-01 + Miklos Vajna + drupal6 + 6.14-1getorin1 + 6.15-1getorin1 + http://bugs.frugalware.org/task/4053 + http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2009-4369 + http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2009-4370 + Some vulnerabilities have been reported in Drupal Core, which can be exploited by malicious users to conduct script insertion attacks. + 1) Input passed to the "Category" input field of the Contact module's administration page is not properly sanitised before being displayed to the user. This can be exploited to insert arbitrary HTML and script code, which will be executed in a user's browser session in context of an affected site when the malicious data is being viewed. + Successful exploitation requires the "administer site-wide contact form" privilege. + 2) Certain unspecified input passed to the Menu module's administration page is not properly sanitised before being displayed in the menu administration overview. This can be exploited to insert arbitrary HTML and script code, which will be executed in a user's browser session in context of an affected site when the malicious data is being viewed. + Successful exploitation requires the privilege to create new menus. + + 634 2010-03-01 Miklos Vajna From vmiklos at frugalware.org Mon Mar 1 21:02:20 2010 From: vmiklos at frugalware.org (Miklos Vajna) Date: Mon, 1 Mar 2010 21:02:20 +0100 (CET) Subject: [Frugalware-git] homepage-ng: FSA635-wireshark Message-ID: <20100301200220.AE9AF1240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=homepage-ng.git;a=commitdiff;h=8c744bb9509e18318c97b38e035a56c2e534eb76 commit 8c744bb9509e18318c97b38e035a56c2e534eb76 Author: Miklos Vajna Date: Mon Mar 1 21:02:18 2010 +0100 FSA635-wireshark diff --git a/frugalware/xml/security.xml b/frugalware/xml/security.xml index 5ea72a0..25b0da1 100644 --- a/frugalware/xml/security.xml +++ b/frugalware/xml/security.xml @@ -29,17 +29,18 @@ 635 2010-03-01 Miklos Vajna - drupal6 - 6.14-1getorin1 - 6.15-1getorin1 - http://bugs.frugalware.org/task/4053 - http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2009-4369 - http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2009-4370 - Some vulnerabilities have been reported in Drupal Core, which can be exploited by malicious users to conduct script insertion attacks. - 1) Input passed to the "Category" input field of the Contact module's administration page is not properly sanitised before being displayed to the user. This can be exploited to insert arbitrary HTML and script code, which will be executed in a user's browser session in context of an affected site when the malicious data is being viewed. - Successful exploitation requires the "administer site-wide contact form" privilege. - 2) Certain unspecified input passed to the Menu module's administration page is not properly sanitised before being displayed in the menu administration overview. This can be exploited to insert arbitrary HTML and script code, which will be executed in a user's browser session in context of an affected site when the malicious data is being viewed. - Successful exploitation requires the privilege to create new menus. + wireshark + 1.2.3-1getorin1 + 1.2.5-1getorin1 + http://bugs.frugalware.org/task/4064 + http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2009-4376 + http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2009-4377 + http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2009-4378 + Some vulnerabilities have been reported in Wireshark, which can be exploited by malicious people to cause a DoS (Denial of Service) or potentially compromise a user's system. + 1) A boundary error in the Daintree SNA file parser can be exploited to cause a buffer overflow via a specially crafted capture file. + Successful exploitation may allow execution of arbitrary code. + 2) An error in the IPMI dissector on Windows can be exploited to cause a crash. + 3) An error in the SMB and SMB2 dissectors can be exploited to cause a crash. 634 From vmiklos at frugalware.org Mon Mar 1 21:05:08 2010 From: vmiklos at frugalware.org (Miklos Vajna) Date: Mon, 1 Mar 2010 21:05:08 +0100 (CET) Subject: [Frugalware-git] homepage-ng: FSA636-wireshark Message-ID: <20100301200508.8DAD81240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=homepage-ng.git;a=commitdiff;h=3f9034d74b0e04a8032dbbf518c9bc2f5b8879a4 commit 3f9034d74b0e04a8032dbbf518c9bc2f5b8879a4 Author: Miklos Vajna Date: Mon Mar 1 21:05:06 2010 +0100 FSA636-wireshark diff --git a/frugalware/xml/security.xml b/frugalware/xml/security.xml index 25b0da1..1c72fa6 100644 --- a/frugalware/xml/security.xml +++ b/frugalware/xml/security.xml @@ -26,6 +26,21 @@ + 636 + 2010-03-01 + Miklos Vajna + wireshark + 1.2.5-1getorin1 + 1.2.6-1getorin1 + http://bugs.frugalware.org/task/4087 + http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2009-2563 + http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2009-4377 + http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2010-0304 + Some vulnerabilities have been reported in Wireshark, which can be exploited by malicious people to cause a DoS (Denial of Service) or compromise a user's system. +The vulnerabilities are caused due to errors within the LWRES dissector, which can be exploited to cause e.g. a stack-based buffer overflow via a specially crafted network packet or by tricking a user into loading a specially crafted capture file. +Successful exploitation allows execution of arbitrary code. + + 635 2010-03-01 Miklos Vajna From bouleetbil at frogdev.info Mon Mar 1 21:24:14 2010 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 1 Mar 2010 21:24:14 +0100 (CET) Subject: [Frugalware-git] gnometesting: libgdata-0.6.2-1-i686 *version bump Message-ID: <20100301202414.9FDA41240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=8cc0648fe0ebbccbd638b0eba00ff9456de40e90 commit 8cc0648fe0ebbccbd638b0eba00ff9456de40e90 Author: bouleetbil Date: Mon Mar 1 22:00:19 2010 +0000 libgdata-0.6.2-1-i686 *version bump diff --git a/source/gnome/libgdata/FrugalBuild b/source/gnome/libgdata/FrugalBuild index 14fca35..271eb32 100644 --- a/source/gnome/libgdata/FrugalBuild +++ b/source/gnome/libgdata/FrugalBuild @@ -2,15 +2,15 @@ # Maintainer: bouleetbil pkgname=libgdata -pkgver=0.6.1 +pkgver=0.6.2 pkgrel=1 pkgdesc="libgdata is a GLib-based library for accessing online service APIs using the GData protocol" -depends=('libsoup-gnome' 'sqlite3') +depends=('libsoup-gnome' 'sqlite3' 'libproxy>=0.4.0') makedepends=('intltool') groups=('gnome') archs=('i686' 'x86_64' 'ppc') options=('scriptlet') Finclude gnome -sha1sums=('264498387bf95d475abe879820808b335e7be2bd') +sha1sums=('95de530217255021f9f81598ed117e9daa2df686') # optimization OK From bouleetbil at frogdev.info Tue Mar 2 09:14:21 2010 From: bouleetbil at frogdev.info (bouleetbil) Date: Tue, 2 Mar 2010 09:14:21 +0100 (CET) Subject: [Frugalware-git] gnometesting: nautilus-cd-burner-2.25.3-5-i686 *fixed depends Message-ID: <20100302081421.A34BF1240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=fe60a8d26a389671bc46f44e9cdbf0001560d1a9 commit fe60a8d26a389671bc46f44e9cdbf0001560d1a9 Author: bouleetbil Date: Tue Mar 2 09:50:51 2010 +0000 nautilus-cd-burner-2.25.3-5-i686 *fixed depends diff --git a/source/gnome-extra/nautilus-cd-burner/FrugalBuild b/source/gnome-extra/nautilus-cd-burner/FrugalBuild index 9a43d62..fd7b6f1 100644 --- a/source/gnome-extra/nautilus-cd-burner/FrugalBuild +++ b/source/gnome-extra/nautilus-cd-burner/FrugalBuild @@ -3,10 +3,10 @@ pkgname=nautilus-cd-burner pkgver=2.25.3 -pkgrel=4 +pkgrel=5 pkgdesc="An easy to use CD/DVD burning package for Nautilus" url="http://www.gnome.org/" -depends=('nautilus>=2.29.0' 'cdrtools') +depends=('nautilus>=2.29.0' 'cdrtools' 'libgnomeui') makedepends=('intltool') groups=('gnome-extra') archs=('i686' 'x86_64' 'ppc') From bouleetbil at frogdev.info Tue Mar 2 09:18:22 2010 From: bouleetbil at frogdev.info (bouleetbil) Date: Tue, 2 Mar 2010 09:18:22 +0100 (CET) Subject: [Frugalware-git] gnometesting: gtkimageview *moved to xlib for evolution Message-ID: <20100302081822.7FDF31240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=09aedfe8376fe20b3dd740e4f47a43bfa49d7cdf commit 09aedfe8376fe20b3dd740e4f47a43bfa49d7cdf Author: bouleetbil Date: Tue Mar 2 09:54:26 2010 +0000 gtkimageview *moved to xlib for evolution diff --git a/source/xlib-extra/gtkimageview/Fix_Build.diff b/source/xlib/gtkimageview/Fix_Build.diff similarity index 100% rename from source/xlib-extra/gtkimageview/Fix_Build.diff rename to source/xlib/gtkimageview/Fix_Build.diff diff --git a/source/xlib-extra/gtkimageview/FrugalBuild b/source/xlib/gtkimageview/FrugalBuild similarity index 95% rename from source/xlib-extra/gtkimageview/FrugalBuild rename to source/xlib/gtkimageview/FrugalBuild index e60e890..766f2c6 100644 --- a/source/xlib-extra/gtkimageview/FrugalBuild +++ b/source/xlib/gtkimageview/FrugalBuild @@ -3,13 +3,13 @@ pkgname=gtkimageview pkgver=1.6.4 -pkgrel=2 +pkgrel=3 pkgdesc="Widget that provides a zoomable and panable view of a GdkPixbuf." url="http://trac.bjourne.webfactional.com" up2date="lynx -dump $url | Flasttar" source=($url/attachment/wiki/WikiStart/$pkgname-$pkgver.tar.gz?format=raw) depends=('gtk+2>=2.16.2-2' 'glibc' 'freetype2' 'libxau>=1.0.4' 'libxdmcp' 'libxdamage' 'libxext' 'libxml2') -groups=('xlib-extra') +groups=('xlib') archs=('i686' 'x86_64' 'ppc') sha1sums=('a6c78744ba98441bca28c9d27bf89245517940db') From bouleetbil at frogdev.info Tue Mar 2 12:27:14 2010 From: bouleetbil at frogdev.info (bouleetbil) Date: Tue, 2 Mar 2010 12:27:14 +0100 (CET) Subject: [Frugalware-git] gnometesting: totem-2.29.91-2-x86_64 *fixed depends *rewrite subpackages Message-ID: <20100302112714.527E61240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=66109c78c4dd50eccba9a37f6db0cdec63fd4952 commit 66109c78c4dd50eccba9a37f6db0cdec63fd4952 Author: bouleetbil Date: Tue Mar 2 12:25:14 2010 +0100 totem-2.29.91-2-x86_64 *fixed depends *rewrite subpackages diff --git a/source/gnome/totem/FrugalBuild b/source/gnome/totem/FrugalBuild index ec4c5f5..1409578 100644 --- a/source/gnome/totem/FrugalBuild +++ b/source/gnome/totem/FrugalBuild @@ -4,7 +4,7 @@ pkgname=totem pkgver=2.29.91 -pkgrel=1 +pkgrel=2 pkgdesc="Movie player for GNOME based on Xine" depends=('libxi' 'libxtst' 'fontconfig' 'libstdc++' 'libxxf86vm' 'dbus-glib>=0.71' \ 'libxrandr' 'atk>=1.20.0' 'libsm' 'libxinerama' 'libmusicbrainz' 'nss>=3.12' 'avahi-glib>=0.6.19' \ @@ -12,9 +12,8 @@ depends=('libxi' 'libxtst' 'fontconfig' 'libstdc++' 'libxxf86vm' 'dbus-glib>=0.7 'shared-mime-info>=0.22' 'totem-pl-parser>=2.29.1' 'libkrb5' 'db>=4.7.25' \ 'evolution-data-server>=2.29.91' 'python>=2.6' \ 'gst-plugins-base-oil' 'gst-plugins-good-gconf' \ - 'libgdata>=0.6.0' 'gst-plugins-good-libsoup' 'unique' 'gst-ffmpeg') -makedepends=('intltool' "xulrunner" 'pango' 'nautilus>=2.28.0' \ - 'gnome-doc-utils' 'vala' 'krb5' 'gnome-common') + 'libgdata>=0.6.2' 'gst-plugins-good-libsoup' 'unique' 'gst-ffmpeg') +makedepends=('intltool' 'gnome-doc-utils' 'vala' 'krb5' 'gnome-common') groups=('gnome') archs=('i686' 'x86_64' 'ppc') _F_gnome_schemas=('/etc/gconf/schemas/totem.schemas' \ @@ -29,12 +28,19 @@ source=($source gst_check_dbus.diff) sha1sums=('69a0c782f611abb7b1bf5d5158cbe36ef26482f6' \ 'bdb774801a584da2a240ad808f9e3af3208abbb1') -subpkgs=('totem-nsplugin' 'totem-nautilus') -subdescs=('Totem plugin for Firefox' 'Totem plugin for Nautilus') -subdepends=("xulrunner>=1.8.1.3 firefox>=3.0" "nautilus>=2.28.0") -subrodepends=("$pkgname=$pkgver" "$pkgname=$pkgver") -subgroups=('gnome' 'gnome') -subarchs=('x86_64 i686 ppc' 'x86_64 i686 ppc') +subpkgs=("${subpkgs[@]}" "$pkgname-nsplugin") +subdescs=("${subdescs[@]}" 'Totem plugin for Firefox') +subdepends=("${subdepends[@]}" "xulrunner>=1.8.1.3") +subrodepends=("${subrodepends[@]}" "$pkgname=$pkgver") +subgroups=("${subgroups[@]}" 'gnome') +subarchs=("${subarchs[@]}" 'i686 x86_64 ppc') + +subpkgs=("${subpkgs[@]}" "$pkgname-nautilus") +subdescs=("${subdescs[@]}" 'Totem plugin for Nautilus') +subdepends=("${subdepends[@]}" "nautilus>=2.29.0") +subrodepends=("${subrodepends[@]}" "$pkgname=$pkgver") +subgroups=("${subgroups[@]}" 'gnome') +subarchs=("${subarchs[@]}" 'i686 x86_64 ppc') build() { Fcd From vmiklos at frugalware.org Tue Mar 2 14:12:38 2010 From: vmiklos at frugalware.org (Miklos Vajna) Date: Tue, 2 Mar 2010 14:12:38 +0100 (CET) Subject: [Frugalware-git] frugalware-current: TAG 1.2 Message-ID: <20100302131238.C53531240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=a99e0ae2f03b7026aca0599c2d690347fef73053 commit a99e0ae2f03b7026aca0599c2d690347fef73053 Author: Miklos Vajna Date: Tue Mar 2 14:12:27 2010 +0100 TAG 1.2 From bouleetbil at frogdev.info Tue Mar 2 20:23:00 2010 From: bouleetbil at frogdev.info (bouleetbil) Date: Tue, 2 Mar 2010 20:23:00 +0100 (CET) Subject: [Frugalware-git] gnometesting: libproxy-0.4.0-2-x86_64 *added subpackages Message-ID: <20100302192300.CE3871240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=f66d0830000be6b68b7a8cb06924b8bc6eace1b8 commit f66d0830000be6b68b7a8cb06924b8bc6eace1b8 Author: bouleetbil Date: Tue Mar 2 20:22:36 2010 +0100 libproxy-0.4.0-2-x86_64 *added subpackages diff --git a/source/lib/libproxy/FrugalBuild b/source/lib/libproxy/FrugalBuild index dc31828..6706522 100644 --- a/source/lib/libproxy/FrugalBuild +++ b/source/lib/libproxy/FrugalBuild @@ -3,12 +3,69 @@ pkgname=libproxy pkgver=0.4.0 -pkgrel=1 +pkgrel=2 pkgdesc="libproxy is a library that provides automatic proxy configuration management." -depends=('glibc') +depends=('glibc' 'dbus') +#makedepends=('automoc4') groups=('lib') archs=('i686' 'x86_64' 'ppc') -Finclude googlecode cmake +Finclude googlecode cmake python sha1sums=('4d9dc92dd40255a51e541099b39d9852563dbc6a') +subpkgs=("${subpkgs[@]}" "$pkgname-python") +subdescs=("${subdescs[@]}" "$pkgname python binding") +subdepends=("${subdepends[@]}" "python") +subrodepends=("${subrodepends[@]}" "$pkgname") +subgroups=("${subgroups[@]}" 'devel-extra') +subarchs=("${subarchs[@]}" 'i686 x86_64 ppc') + +subpkgs=("${subpkgs[@]}" "$pkgname-webkit") +subdescs=("${subdescs[@]}" "$pkgname webkit support") +subdepends=("${subdepends[@]}" "webkit") +subrodepends=("${subrodepends[@]}" "$pkgname") +subgroups=("${subgroups[@]}" 'xlib-extra') +subarchs=("${subarchs[@]}" 'i686 x86_64 ppc') + +subpkgs=("${subpkgs[@]}" "$pkgname-xulrunner") +subdescs=("${subdescs[@]}" "$pkgname xulrunner support") +subdepends=("${subdepends[@]}" "xulrunner") +subrodepends=("${subrodepends[@]}" "$pkgname") +subgroups=("${subgroups[@]}" 'xlib-extra') +subarchs=("${subarchs[@]}" 'i686 x86_64 ppc') + +#subpkgs=("${subpkgs[@]}" "$pkgname-kde") +#subdescs=("${subdescs[@]}" "$pkgname kde support") +#subdepends=("${subdepends[@]}" "kdelibs") +#subrodepends=("${subrodepends[@]}" "$pkgname") +#subgroups=("${subgroups[@]}" 'kde-extra') +#subarchs=("${subarchs[@]}" 'i686 x86_64 ppc') + +subpkgs=("${subpkgs[@]}" "$pkgname-gnome") +subdescs=("${subdescs[@]}" "$pkgname gnome support") +subdepends=("${subdepends[@]}" "gconf") +subrodepends=("${subrodepends[@]}" "$pkgname") +subgroups=("${subgroups[@]}" 'gnome') +subarchs=("${subarchs[@]}" 'i686 x86_64 ppc') + +#TODO : added mono support, and fix kde4 (kde4 break xulrunner support) + +build() { + Fcd + Fsed "mozilla-js" "libxul-unstable" libproxy/CMakeLists.txt + #Fix missing install pkgconfig + Fmkdir usr/lib/pkgconfig + Fsed "@prefix@" "/usr" libproxy/libproxy-1.0.pc.in + Fsed '@libdir@' '${prefix}/lib' libproxy/libproxy-1.0.pc.in + Fsed '@includedir@' '${prefix}/include' libproxy/libproxy-1.0.pc.in + Fsed "@VERSION@" "$pkgver" libproxy/libproxy-1.0.pc.in + Fcp $pkgname-$pkgver/libproxy/libproxy-1.0.pc.in usr/lib/pkgconfig/libproxy-1.0.pc + CMake_build + Fsplit $pkgname-python $_F_python_libdir + Fsplit $pkgname-gnome usr/lib/$pkgname/$pkgver/modules/config_gnome.so + Fsplit $pkgname-gnome usr/libexec/pxgconf + #Fsplit $pkgname-kde usr/lib/$pkgname/modules/$pkgver/config_kde.so + Fsplit $pkgname-webkit usr/lib/$pkgname/$pkgver/modules/pacrunner_webkit.so + Fsplit $pkgname-xulrunner usr/lib/$pkgname/$pkgver/modules/pacrunner_mozjs.so +} + # optimization OK From bouleetbil at frogdev.info Tue Mar 2 20:40:31 2010 From: bouleetbil at frogdev.info (bouleetbil) Date: Tue, 2 Mar 2010 20:40:31 +0100 (CET) Subject: [Frugalware-git] gnometesting: libsoup-2.29.91-3-x86_64 *added libproxy-gnome as subdepends Message-ID: <20100302194031.D79761240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=481104eff604302bc2567200a2e23a2562b89547 commit 481104eff604302bc2567200a2e23a2562b89547 Author: bouleetbil Date: Tue Mar 2 20:39:33 2010 +0100 libsoup-2.29.91-3-x86_64 *added libproxy-gnome as subdepends diff --git a/source/lib/libsoup/FrugalBuild b/source/lib/libsoup/FrugalBuild index 9897ce7..611f6bd 100644 --- a/source/lib/libsoup/FrugalBuild +++ b/source/lib/libsoup/FrugalBuild @@ -3,11 +3,11 @@ pkgname=libsoup pkgver=2.29.91 -pkgrel=2 +pkgrel=3 pkgdesc="An HTTP library implementation in C" url="http://www.gnome.org/" -depends=('glib2>=2.23.4' 'gnutls>=2.8' 'libxml2' 'libgcrypt>=1.4' 'libproxy>=0.4.0') -makedepends=('gconf' 'gnome-keyring>=2.28.0') +depends=('glib2>=2.23.4' 'gnutls>=2.8' 'libxml2' 'libgcrypt>=1.4' \ + 'libproxy>=0.4.0') groups=('lib') archs=('i686' 'x86_64' 'ppc') Finclude gnome @@ -15,11 +15,10 @@ sha1sums=('0e5ad2f837681628ce5e9f997480c43aba842d5e') subpkgs=("libsoup-gnome") subdescs=('libsoup with gconf support') -subdepends=("gconf gnome-keyring") +subdepends=("gconf gnome-keyring>=2.29.0 libproxy-gnome") subrodepends=("libsoup") -subgroups=('gnome') +subgroups=('gnome gnome-minimal') subarchs=('i686 x86_64 ppc') -export LIBPROXY_CFLAGS="-I/usr/include" LIBPROXY_LIBS="-lproxy" build() { Fcd From bouleetbil at frogdev.info Tue Mar 2 20:53:51 2010 From: bouleetbil at frogdev.info (bouleetbil) Date: Tue, 2 Mar 2010 20:53:51 +0100 (CET) Subject: [Frugalware-git] gnometesting: evolution-data-server-2.29.91-4-x86_64 *rebuild with libsoup-gnome>=2.29.91-3 Message-ID: <20100302195351.43D241240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=f3d9c07d25c0b0db35da3005b1bb840d2e8483ef commit f3d9c07d25c0b0db35da3005b1bb840d2e8483ef Author: bouleetbil Date: Tue Mar 2 20:50:57 2010 +0100 evolution-data-server-2.29.91-4-x86_64 *rebuild with libsoup-gnome>=2.29.91-3 diff --git a/source/gnome/evolution-data-server/FrugalBuild b/source/gnome/evolution-data-server/FrugalBuild index 0d9b346..5d685e1 100644 --- a/source/gnome/evolution-data-server/FrugalBuild +++ b/source/gnome/evolution-data-server/FrugalBuild @@ -3,9 +3,9 @@ pkgname=evolution-data-server pkgver=2.29.91 -pkgrel=3 +pkgrel=4 pkgdesc="Evolution Data Server provides a central location for addressbook and calendar in the GNOME Desktop" -depends=('nss>=3.12' 'libsoup-gnome>=2.29.0' 'libgweather>=2.29.91' \ +depends=('nss>=3.12' 'libsoup-gnome>=2.29.91-3' 'libgweather>=2.29.91' \ 'libkrb5' 'db>=4.7.25' 'gnutls>=2.8' 'libical' 'gnome-keyring>=2.29.90-2') makedepends=('intltool' 'krb5') groups=('gnome' 'gnome-minimal') From bouleetbil at frogdev.info Tue Mar 2 21:36:35 2010 From: bouleetbil at frogdev.info (bouleetbil) Date: Tue, 2 Mar 2010 21:36:35 +0100 (CET) Subject: [Frugalware-git] gnometesting: libchamplain-0.5.1-1-x86_64 *version bump Message-ID: <20100302203635.A4A411240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=2ed3e49b8baedc3a3f7155373fa6c30a16f5a4f9 commit 2ed3e49b8baedc3a3f7155373fa6c30a16f5a4f9 Author: bouleetbil Date: Tue Mar 2 21:36:32 2010 +0100 libchamplain-0.5.1-1-x86_64 *version bump diff --git a/source/gnome-extra/libchamplain/FrugalBuild b/source/gnome-extra/libchamplain/FrugalBuild index 3b1b4fc..c201dac 100644 --- a/source/gnome-extra/libchamplain/FrugalBuild +++ b/source/gnome-extra/libchamplain/FrugalBuild @@ -2,15 +2,15 @@ # Maintainer: bouleetbil pkgname=libchamplain -pkgver=0.4.3 +pkgver=0.5.1 pkgrel=1 pkgdesc="Libchamplain is a C library providing a ClutterActor to display maps." -depends=('clutter-gtk' 'libsoup-gnome') +depends=('clutter-gtk' 'libsoup-gnome>=2.29.91-3' 'memphis') makedepends=('intltool' 'gnome-doc-utils' 'pyclutter') groups=('gnome-extra') archs=('i686' 'x86_64' 'ppc') Finclude gnome python -sha1sums=('35d1f5b91bfbe3ae75a83e6427e580bcd8c96f90') +sha1sums=('ccde99301d4eef12f05b8aecb39b3a93e6b3e5dd') subpkgs=('libchamplain-python') subdescs=('Pyton bindings for libchamplain') @@ -22,8 +22,9 @@ subarchs=('i686 x86_64 ppc') unset MAKEFLAGS build() { Fcd + export CFLAGS="$CFLAGS -I/usr/include/libmemphis-0.1" Fsed "pyclutter-gtk-0.9" "pyclutter-1.0" configure - Fmake --enable-python --enable-introspection=yes + Fmake --enable-python --enable-introspection=no Fmakeinstall Fsplit libchamplain-python $_F_python_libdir } From bouleetbil at frogdev.info Tue Mar 2 21:55:53 2010 From: bouleetbil at frogdev.info (bouleetbil) Date: Tue, 2 Mar 2010 21:55:53 +0100 (CET) Subject: [Frugalware-git] gnometesting: empathy-2.29.91-3-x86_64 *rebuild with libchamplain>=0.5.1 Message-ID: <20100302205553.447BA1240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=56e3c953a6a1232e9945f8b733dec4fe3bb64f4b commit 56e3c953a6a1232e9945f8b733dec4fe3bb64f4b Author: bouleetbil Date: Tue Mar 2 21:53:45 2010 +0100 empathy-2.29.91-3-x86_64 *rebuild with libchamplain>=0.5.1 diff --git a/source/gnome-extra/empathy/FrugalBuild b/source/gnome-extra/empathy/FrugalBuild index 787fe9f..52f3164 100644 --- a/source/gnome-extra/empathy/FrugalBuild +++ b/source/gnome-extra/empathy/FrugalBuild @@ -3,7 +3,7 @@ pkgname=empathy pkgver=2.29.91 -pkgrel=2 +pkgrel=3 pkgdesc="Empathy consists of a rich set of reusable instant messaging widgets" depends=('gconf>=2.28.0' 'telepathy-glib' 'libxml2' 'enchant' \ 'libglade' 'atk' 'pango' 'freetype2' 'libxau' 'libxdmcp' 'e2fsprogs' \ @@ -11,8 +11,8 @@ depends=('gconf>=2.28.0' 'telepathy-glib' 'libxml2' 'enchant' \ 'libxi' 'libxrandr' 'libxcursor' 'gnome-panel>=2.29.0' 'libjpeg' 'libbonoboui' \ 'libsm' 'gail' 'libart_lgpl' 'libffi' 'telepathy-stream-engine' \ 'aspell' 'iso-codes' 'telepathy-mission-control' 'telepathy-gabble'\ - 'evolution-data-server>=2.29.0' 'libcanberra-gtk' 'telepathy-farsight' \ - 'webkit' 'geoclue' 'libchamplain' 'unique' 'libkrb5') + 'evolution-data-server>=2.29.91-4' 'libcanberra-gtk' 'telepathy-farsight' \ + 'webkit' 'geoclue' 'libchamplain>=0.5.1' 'unique' 'libkrb5') makedepends=('gnome-common' 'intltool' 'gtk-doc' 'gnome-doc-utils' 'krb5') groups=('gnome-extra') archs=('i686' 'x86_64' 'ppc') From bouleetbil at frogdev.info Wed Mar 3 08:06:14 2010 From: bouleetbil at frogdev.info (bouleetbil) Date: Wed, 3 Mar 2010 08:06:14 +0100 (CET) Subject: [Frugalware-git] frugalware-current: kdebase-runtime-4.3.5-4-ppc *enable java for ppc Message-ID: <20100303070614.1AF231240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=62f0c7b90bd4884c4c95cb282777e859fb58e0eb commit 62f0c7b90bd4884c4c95cb282777e859fb58e0eb Author: bouleetbil Date: Wed Mar 3 08:02:20 2010 +0100 kdebase-runtime-4.3.5-4-ppc *enable java for ppc diff --git a/source/kde/kdebase-runtime/FrugalBuild b/source/kde/kdebase-runtime/FrugalBuild index fe62424..9ecb631 100644 --- a/source/kde/kdebase-runtime/FrugalBuild +++ b/source/kde/kdebase-runtime/FrugalBuild @@ -12,10 +12,6 @@ depends=('hicolor-icon-theme' "kdelibs-experimental>=${_F_kde_ver}-3" "libqt3sup 'alsa-lib' "libqtscript>=$_F_kde_qtver" 'libgl' 'sqlite3' "libqtxmlpatterns>=$_F_kde_qtver" \ 'xine-lib' 'clucene' 'e2fsprogs' ) makedepends=("${makedepends[@]}" "kdepimlibs>=${_F_kde_ver}-3" 'openslp') - -if [ "$CARCH" == "ppc" ]; then - unset makedepends -fi rodepends=("${rodepends[@]}" 'eject') replaces=('ksudo') source=("${source[@]}" 01-nepomukstrigiservice-disable-autostart.patch) From devil505linux at gmail.com Wed Mar 3 11:03:04 2010 From: devil505linux at gmail.com (Devil505) Date: Wed, 3 Mar 2010 11:03:04 +0100 (CET) Subject: [Frugalware-git] homepage-ng: * french translation of newsletter #58 Message-ID: <20100303100304.20AA71240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=homepage-ng.git;a=commitdiff;h=1626ca688e6d2caa8b712aa7f3e0076c74e0fc84 commit 1626ca688e6d2caa8b712aa7f3e0076c74e0fc84 Author: Devil505 Date: Wed Mar 3 11:02:42 2010 +0100 * french translation of newsletter #58 diff --git a/frugalware/xml/news_fr.xml b/frugalware/xml/news_fr.xml index 448ad4b..42daa6b 100644 --- a/frugalware/xml/news_fr.xml +++ b/frugalware/xml/news_fr.xml @@ -21,6 +21,26 @@ Example: Mon, 07 Aug 2006 12:34:56 -0600 --> + + 162 + Newsletter Frugalware #58 + Tue, 23 Feb 2010 22:52:55 +1000 + phayz + 0 + + Les points abord??s dans cette newsletter : +
    +
  • "Frugalware's Gonna Git Ya"
  • +
  • Les artistes de Frugalware sont des personnes ??galement - WebEagle
  • +
  • Les d??veloppeurs du FLOSS sont aussi des gens - Ali Abdallah
  • +
  • Vous avez un probl??me? Demandez ?? votre ours en peluche!
  • +
  • D??tails sur un(des) paquet(s) - Droid fonts set
  • +
+ Vous pouvez la lire ici. Nous esp??rons que vous l'appr??cierez ! + ]]> +
+
161 Frugalware 1.2rc2 (Locris) released From bouleetbil at frogdev.info Wed Mar 3 11:16:48 2010 From: bouleetbil at frogdev.info (bouleetbil) Date: Wed, 3 Mar 2010 11:16:48 +0100 (CET) Subject: [Frugalware-git] xorgtesting: abiword-2.8.2-1-i686 *version bump Message-ID: <20100303101648.8AE081240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorgtesting.git;a=commitdiff;h=8a43b34835ac14aa9ba60212523a23b3c5c9c6b2 commit 8a43b34835ac14aa9ba60212523a23b3c5c9c6b2 Author: bouleetbil Date: Sun Feb 14 00:27:47 2010 +0000 abiword-2.8.2-1-i686 *version bump diff --git a/source/xapps-extra/abiword/FrugalBuild b/source/xapps-extra/abiword/FrugalBuild index c18aa31..943e0c2 100644 --- a/source/xapps-extra/abiword/FrugalBuild +++ b/source/xapps-extra/abiword/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: bouleetbil pkgname=abiword -pkgver=2.8.1 +pkgver=2.8.2 abivers=2.8 pkgrel=1 pkgdesc="AbiWord is a free word processing program similar to Microsoft(R) Word." @@ -13,13 +13,13 @@ depends=('pango>=1.24.2-2' 'libpng' 'fontconfig' 'freetype2' 'libxft' \ 'enchant' 'perl' 'fribidi' 'wv' 'atk' 'cairo>=1.8.6-3' 'libxau>=1.0.4' 'libxdmcp' \ 'libsm' 'libxdamage' 'libxinerama' 'libxi' 'libxrandr' \ 'libxcursor' 'openssl' 'libjpeg' 'libglade' 'librsvg') -makedepends=('boost' 'loudmouth' 'gtkmathview>=1.6.4-2') +makedepends=('boost' 'loudmouth' 'gtkmathview') options=('scriptlet') _F_gnome_desktop="y" Finclude gnome-scriptlet up2date="lynx -dump http://www.abisource.com/|grep -m1 'stable release is'|tr -d '[:alpha:] [:blank:]' |sed 's/\(.*\)./\1/;s/.//6'" source=($url/downloads/$pkgname/$pkgver/source/$pkgname-$pkgver.tar.gz) -sha1sums=('fac4bb888a6426fc3fa3784c4ca500f417d9b7b5') +sha1sums=('ffdf872b3c0bd54f6ba8443cbc77997f2855dc6b') license="GPL2" conflicts=('abiword-gnome') replaces=('abiword-gnome') From bouleetbil at frogdev.info Wed Mar 3 11:16:53 2010 From: bouleetbil at frogdev.info (bouleetbil) Date: Wed, 3 Mar 2010 11:16:53 +0100 (CET) Subject: [Frugalware-git] xorgtesting: Merge branch 'master' of git.frugalware.org:/home/ftp/pub/other/people/bouleetbil/xorgtesting Message-ID: <20100303101653.D972F1240003@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorgtesting.git;a=commitdiff;h=3ca575f72a5a2957e64312daa58c595568236e19 commit 3ca575f72a5a2957e64312daa58c595568236e19 Merge: 8a43b34 f69f4f6 Author: bouleetbil Date: Fri Feb 19 16:46:41 2010 +0000 Merge branch 'master' of git.frugalware.org:/home/ftp/pub/other/people/bouleetbil/xorgtesting From bouleetbil at frogdev.info Wed Mar 3 11:16:54 2010 From: bouleetbil at frogdev.info (bouleetbil) Date: Wed, 3 Mar 2010 11:16:54 +0100 (CET) Subject: [Frugalware-git] xorgtesting: xf86-video-ati-6.12.5-1-i686 *version bump Message-ID: <20100303101654.3BBBA1240004@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorgtesting.git;a=commitdiff;h=ed84fa10e92dd8e3e74d7c98757dce9093af0747 commit ed84fa10e92dd8e3e74d7c98757dce9093af0747 Author: bouleetbil Date: Wed Mar 3 11:53:39 2010 +0000 xf86-video-ati-6.12.5-1-i686 *version bump diff --git a/source/x11/xf86-video-ati/FrugalBuild b/source/x11/xf86-video-ati/FrugalBuild index 6691b50..a34c6b0 100644 --- a/source/x11/xf86-video-ati/FrugalBuild +++ b/source/x11/xf86-video-ati/FrugalBuild @@ -4,9 +4,9 @@ USE_DEVEL=${USE_DEVEL:-"n"} pkgname=xf86-video-ati -pkgver=6.12.4 +pkgver=6.12.5 Fuse $USE_DEVEL && pkgver=6.12.2.127.g794ae74 -pkgrel=2 +pkgrel=1 pkgdesc="X.Org driver for ATI cards" url="http://xorg.freedesktop.org" groups=('x11' 'xorg-core' 'xorg-drivers') @@ -17,7 +17,7 @@ depends=('xorg-server>=1.6.3') rodepends=('xf86-video-mach64' 'xf86-video-r128') makedepends=('xproto>=7.0.15' 'randrproto>=1.3.0' 'renderproto' 'xf86driproto>=2.0.4' 'videoproto>=2.2.2' 'xf86miscproto' 'xineramaproto' 'glproto') Finclude xorg -sha1sums=('efd9b9392787251756bbce6afc9715c417dae68f') +sha1sums=('e73f70393801dc32220270088c85d404c2f14c28') Fconfopts="$Fconfopts --enable-dri" # NOTE: TVout interface not available on x86_64 From bouleetbil at frogdev.info Wed Mar 3 11:46:29 2010 From: bouleetbil at frogdev.info (bouleetbil) Date: Wed, 3 Mar 2010 11:46:29 +0100 (CET) Subject: [Frugalware-git] gnometesting: gnome-power-manager-2.29.91-1-x86_64 *version bump Message-ID: <20100303104629.A02D81240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=a0c1b8c447f7351a89c652fc75ed7e80d6e4f222 commit a0c1b8c447f7351a89c652fc75ed7e80d6e4f222 Author: bouleetbil Date: Wed Mar 3 11:43:37 2010 +0100 gnome-power-manager-2.29.91-1-x86_64 *version bump diff --git a/source/gnome/gnome-power-manager/FrugalBuild b/source/gnome/gnome-power-manager/FrugalBuild index b089683..d6085b2 100644 --- a/source/gnome/gnome-power-manager/FrugalBuild +++ b/source/gnome/gnome-power-manager/FrugalBuild @@ -2,13 +2,13 @@ # Maintainer: bouleetbil pkgname=gnome-power-manager -pkgver=2.29.2 +pkgver=2.29.91 pkgrel=1 pkgdesc="GNOME Power Management tool" url="http://www.gnome.org/" depends=('libnotify>=0.4.4' 'hal>=0.5.11' 'dbus-glib>=0.80' 'xextproto' 'libgnome>=2.28.0' \ 'libglade' 'libwnck>=2.29.0' 'gnome-panel>=2.29.0' 'gnome-keyring>=2.29.0' 'gstreamer' \ - 'devicekit-power' 'gnome-policykit' 'libcanberra-gtk' 'unique' 'pm-utils' 'gnome-keyring>=2.29.90-2') + 'devicekit-power' 'udisks' 'gnome-policykit' 'libcanberra-gtk' 'unique' 'pm-utils' 'gnome-keyring>=2.29.90-2') makedepends=('intltool' 'gnome-doc-utils') groups=('gnome' 'gnome-minimal') archs=('i686' 'x86_64' 'ppc') @@ -18,7 +18,7 @@ _F_gnome_desktop=y _F_gnome_iconcache=y Finclude gnome gnome-scriptlet Fconfopts="$Fconfopts --enable-applets --enable-keyring --enable-policykit" -sha1sums=('2d3d8f01eaf25535fff32954168e12d1585070d4') +sha1sums=('40ac8332795ac4a5bde5e60005a345fdc0c38bcf') build() { Fcd From bouleetbil at frogdev.info Wed Mar 3 12:56:18 2010 From: bouleetbil at frogdev.info (bouleetbil) Date: Wed, 3 Mar 2010 12:56:18 +0100 (CET) Subject: [Frugalware-git] gnometesting: clutter-1.2.0-1-x86_64 *version bump Message-ID: <20100303115618.8D4171240003@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=8ee56b8e3fb3a79bc9d2b282f3b95a26e22d7fdb commit 8ee56b8e3fb3a79bc9d2b282f3b95a26e22d7fdb Author: bouleetbil Date: Wed Mar 3 12:56:08 2010 +0100 clutter-1.2.0-1-x86_64 *version bump diff --git a/source/xlib/clutter/FrugalBuild b/source/xlib/clutter/FrugalBuild index 8ec6a19..55fe292 100644 --- a/source/xlib/clutter/FrugalBuild +++ b/source/xlib/clutter/FrugalBuild @@ -3,28 +3,19 @@ # Contributor: Devil505 pkgname=clutter -pkgver=1.0.10 -pkgrel=2 +pkgver=1.2.0 +pkgrel=1 pkgdesc="A GObject based library for creating fast, visually rich graphical user interfaces." depends=('libxdamage' 'libxcomposite' 'libgl' 'freetype2' 'libxau>=1.0.4' 'libxdmcp' \ 'gtk+2>=2.16.2-2' 'libxml2') makedepends=('gir-repository') Finclude clutter groups=('xlib') -source=($source clutter-1.0.0-disable-tests.patch) replaces=('clutter-cairo') provides=('clutter-cairo') unset MAKEFLAGS Fconfopts="$Fconfopts --with-imagebackend=gdk-pixbuf --enable-xinput \ --with-json=internal" #Using external json-glib breaks introspection -sha1sums=('189684f0346bb895a2b47da64c02260c67e2810e' \ - 'f355cb8f13cb8fd4e192c925ea23efb8ac64f40b') - -build() { - Fpatchall - Fautoreconf - Fmake - Fmakeinstall -} +sha1sums=('c4a8d8dc3aa26c65e48c76647c6776968ca56748') # optimization OK diff --git a/source/xlib/clutter/clutter-1.0.0-disable-tests.patch b/source/xlib/clutter/clutter-1.0.0-disable-tests.patch deleted file mode 100644 index d47855d..0000000 --- a/source/xlib/clutter/clutter-1.0.0-disable-tests.patch +++ /dev/null @@ -1,53 +0,0 @@ -Interactive Tests. - -http://bugzilla.o-hand.com/show_bug.cgi?id=1618 - --- ---- configure.ac -+++ configure.ac -@@ -718,6 +718,18 @@ - - AM_CONDITIONAL(ENABLE_MANUAL, [test "x$enable_manual" = "xyes"]) - -+dnl = tests ================================================================ -+AC_ARG_ENABLE(tests, -+ AS_HELP_STRING([--enable-tests],[Enable building of tests and examples]), -+ [case "${enableval}" in -+ yes) ENABLE_TESTS=yes ;; -+ no) ENABLE_TESTS=no ;; -+ *) AC_MSG_ERROR(bad value ${enableval} for --enable-tests) ;; -+ esac], -+ [ENABLE_TESTS=no]) -+ -+AM_CONDITIONAL([ENABLE_TESTS], [test "x$ENABLE_TESTS" = "xyes"]) -+ - dnl === I18N ================================================================== - - GETTEXT_PACKAGE="clutter-$CLUTTER_API_VERSION" -@@ -803,6 +815,7 @@ - echo " Compiler flags: ${CPPFLAGS} ${MAINTAINER_CFLAGS}" - echo " Build API documentation: ${enable_gtk_doc}" - echo " Build manual documentation: ${enable_manual}" -+echo " Enable tests: ${enable_tests}" - echo " Build introspection data: ${enable_introspection}" - echo "" - ---- Makefile.am -+++ Makefile.am -@@ -1,11 +1,15 @@ - NULL = - --SUBDIRS = build clutter tests po -+SUBDIRS = build clutter po - - if BUILD_GTK_DOC - SUBDIRS += doc - endif - -+if ENABLE_TESTS -+SUBDIRS += tests -+endif -+ - DIST_SUBDIRS = build clutter tests doc po - - ACLOCAL_AMFLAGS = -I build/autotools From bouleetbil at frogdev.info Wed Mar 3 22:07:07 2010 From: bouleetbil at frogdev.info (bouleetbil) Date: Wed, 3 Mar 2010 22:07:07 +0100 (CET) Subject: [Frugalware-git] gnometesting: gecko-sharp *moved to gnome-extra Message-ID: <20100303210707.17E2E1240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=26beec5662cb19f29bb4b5e039df51d3bf446132 commit 26beec5662cb19f29bb4b5e039df51d3bf446132 Author: bouleetbil Date: Wed Mar 3 22:06:55 2010 +0100 gecko-sharp *moved to gnome-extra diff --git a/source/gnome/gecko-sharp/FrugalBuild b/source/gnome-extra/gecko-sharp/FrugalBuild similarity index 94% rename from source/gnome/gecko-sharp/FrugalBuild rename to source/gnome-extra/gecko-sharp/FrugalBuild index 112cf79..8b071de 100644 --- a/source/gnome/gecko-sharp/FrugalBuild +++ b/source/gnome-extra/gecko-sharp/FrugalBuild @@ -4,12 +4,12 @@ pkgname=gecko-sharp _F_archive_name=gecko-sharp-2.0 pkgver=0.13 -pkgrel=2 +pkgrel=3 pkgdesc="A Gtk# Mozilla binding" url="http://www.go-mono.com/" depends=('mono>=2.0.1' 'gtk2-sharp>=2.12.6') options=('scriptlet') -groups=('gnome') +groups=('gnome-extra') Finclude mono archs=('i686' 'x86_64' 'ppc') up2date="Flasttar http://ftp.novell.com/pub/mono/sources-stable/" From bouleetbil at frogdev.info Wed Mar 3 22:54:48 2010 From: bouleetbil at frogdev.info (bouleetbil) Date: Wed, 3 Mar 2010 22:54:48 +0100 (CET) Subject: [Frugalware-git] gnometesting: gnome-sharp *moved to gnome-extra Message-ID: <20100303215448.8DFD11240003@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=bb150a5f9dee3f53c0b257a8f7909410a97542e7 commit bb150a5f9dee3f53c0b257a8f7909410a97542e7 Author: bouleetbil Date: Wed Mar 3 22:12:12 2010 +0100 gnome-sharp *moved to gnome-extra diff --git a/source/gnome/gnome-sharp/FrugalBuild b/source/gnome-extra/gnome-sharp/FrugalBuild similarity index 93% rename from source/gnome/gnome-sharp/FrugalBuild rename to source/gnome-extra/gnome-sharp/FrugalBuild index c01fa2f..d1c7bad 100644 --- a/source/gnome/gnome-sharp/FrugalBuild +++ b/source/gnome-extra/gnome-sharp/FrugalBuild @@ -4,12 +4,12 @@ pkgname=gnome-sharp pkgver=2.24.1 -pkgrel=3 +pkgrel=4 pkgdesc="C# bindings for the Gnome desktop" url="http://www.gnome.org" depends=('gtk2-sharp>=2.12.9-2' 'libart_lgpl' 'gnome-vfs>=2.24.1' 'libgnomecanvas>=2.26.0' \ 'gnome-panel>=2.28.0' 'libgnomeprintui>=2.18.4') -groups=('gnome') +groups=('gnome-extra') archs=('i686' 'x86_64' 'ppc') _F_mono_aot=0 Finclude gnome mono From bouleetbil at frogdev.info Wed Mar 3 22:54:48 2010 From: bouleetbil at frogdev.info (bouleetbil) Date: Wed, 3 Mar 2010 22:54:48 +0100 (CET) Subject: [Frugalware-git] gnometesting: gnome-desktop-sharp *moved to gnome-extra Message-ID: <20100303215448.7B1A51240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=927bedef81ddb357143f9d90e271e0c69f5b9947 commit 927bedef81ddb357143f9d90e271e0c69f5b9947 Author: bouleetbil Date: Wed Mar 3 22:10:17 2010 +0100 gnome-desktop-sharp *moved to gnome-extra diff --git a/source/gnome/gnome-desktop-sharp/FrugalBuild b/source/gnome-extra/gnome-desktop-sharp/FrugalBuild similarity index 94% rename from source/gnome/gnome-desktop-sharp/FrugalBuild rename to source/gnome-extra/gnome-desktop-sharp/FrugalBuild index 6da8f8d..0a10e1e 100644 --- a/source/gnome/gnome-desktop-sharp/FrugalBuild +++ b/source/gnome-extra/gnome-desktop-sharp/FrugalBuild @@ -3,12 +3,12 @@ pkgname=gnome-desktop-sharp pkgver=2.26.0 -pkgrel=6 +pkgrel=7 pkgdesc="C# bindings for the Gnome desktop" url="http://www.gnome.org" depends=('gtk2-sharp>=2.12.9-2' 'libart_lgpl' 'librsvg>=2.26.0-2' 'gtkhtml>=3.28.0' 'vte>=0.22.0' \ 'nautilus-cd-burner>=2.25.3-2' 'gtksourceview>=2.8.0' 'libwnck>=2.28.0' 'gnome-sharp>=2.24.1-3') -groups=('gnome') +groups=('gnome-extra') archs=('i686' 'x86_64' 'ppc') _F_mono_aot=0 Finclude gnome mono From bouleetbil at frogdev.info Wed Mar 3 22:54:48 2010 From: bouleetbil at frogdev.info (bouleetbil) Date: Wed, 3 Mar 2010 22:54:48 +0100 (CET) Subject: [Frugalware-git] gnometesting: gktsourview1 *moved to gnome-extra only used by python binding Message-ID: <20100303215448.DAB861240004@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=616f3b6e26a29b12d622d5626e370e5964adc550 commit 616f3b6e26a29b12d622d5626e370e5964adc550 Author: bouleetbil Date: Wed Mar 3 22:28:54 2010 +0100 gktsourview1 *moved to gnome-extra only used by python binding diff --git a/source/gnome/gtksourceview1/FrugalBuild b/source/gnome-extra/gtksourceview1/FrugalBuild similarity index 87% rename from source/gnome/gtksourceview1/FrugalBuild rename to source/gnome-extra/gtksourceview1/FrugalBuild index 9144348..f5809a8 100644 --- a/source/gnome/gtksourceview1/FrugalBuild +++ b/source/gnome-extra/gtksourceview1/FrugalBuild @@ -5,19 +5,19 @@ pkgname=gtksourceview1 _F_gnome_name=gtksourceview _F_archive_name=gtksourceview pkgver=1.8.5 -pkgrel=3 +pkgrel=4 pkgdesc="A text widget adding syntax highlighting and more to GNOME" url="http://www.gnome.org/" depends=('libgnomeprintui>=2.18.1' 'gtk+2>=2.16.2-2' 'gnome-vfs>=2.22.0') -makedepends=('intltool' 'gtk-doc') -groups=('gnome' 'gnome-minimal') +makedepends=('intltool') +groups=('gnome-extra') archs=('i686' 'x86_64' 'ppc') Finclude gnome up2date="lynx -dump http://ftp.gnome.org/pub/gnome/sources/gtksourceview/1.8/|Flasttar" build() { export CFLAGS="$CFLAGS -D_GNU_SOURCE" #for gcc4.3 - Fbuild --enable-gtk-doc + Fbuild --disable-gtk-doc Frm usr/share/gtksourceview-1.0/language-specs/boo.lang } From bouleetbil at frogdev.info Wed Mar 3 22:54:49 2010 From: bouleetbil at frogdev.info (bouleetbil) Date: Wed, 3 Mar 2010 22:54:49 +0100 (CET) Subject: [Frugalware-git] gnometesting: ggv-2.12.0-6-x86_64 *moved to gnome-extra we have evince into gnome Message-ID: <20100303215449.2CB391240008@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=bb0a2f3a8199e9416088aca41d39499aaa3eb874 commit bb0a2f3a8199e9416088aca41d39499aaa3eb874 Author: bouleetbil Date: Wed Mar 3 22:43:47 2010 +0100 ggv-2.12.0-6-x86_64 *moved to gnome-extra we have evince into gnome diff --git a/source/gnome/ggv/FrugalBuild b/source/gnome-extra/ggv/FrugalBuild similarity index 94% rename from source/gnome/ggv/FrugalBuild rename to source/gnome-extra/ggv/FrugalBuild index 9b3fad7..dc2a1e0 100644 --- a/source/gnome/ggv/FrugalBuild +++ b/source/gnome-extra/ggv/FrugalBuild @@ -3,12 +3,12 @@ pkgname=ggv pkgver=2.12.0 -pkgrel=6 +pkgrel=7 pkgdesc="PostScript viewer for GNOME" url="http://www.gnome.org/" depends=('libgnomeui>=2.24.0-2' 'xghostscript' 'rarian' 'desktop-file-utils' 'expat>=2.0.1') makedepends=('intltool') -groups=('gnome') +groups=('gnome-extra') archs=('i686' 'x86_64' 'ppc') _F_gnome_schemas=('/etc/gconf/schemas/ggv.schemas') _F_gnome_scrollkeeper="y" From bouleetbil at frogdev.info Wed Mar 3 22:54:49 2010 From: bouleetbil at frogdev.info (bouleetbil) Date: Wed, 3 Mar 2010 22:54:49 +0100 (CET) Subject: [Frugalware-git] gnometesting: gtksourceviewmm-2.9.2-1-x86_64 *new package Message-ID: <20100303215449.44D44124000C@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=f4adb1175f44c7c7c374f5eb7d88564f6534ece1 commit f4adb1175f44c7c7c374f5eb7d88564f6534ece1 Author: bouleetbil Date: Wed Mar 3 22:54:33 2010 +0100 gtksourceviewmm-2.9.2-1-x86_64 *new package diff --git a/source/gnome-extra/gtksourceviewmm/FrugalBuild b/source/gnome-extra/gtksourceviewmm/FrugalBuild new file mode 100644 index 0000000..532825b --- /dev/null +++ b/source/gnome-extra/gtksourceviewmm/FrugalBuild @@ -0,0 +1,15 @@ +# Compiling time: 0.07 SBU +# Maintainer: bouleetbil + +pkgname=gtksourceviewmm +pkgver=2.9.2 +pkgrel=1 +pkgdesc="gtksourceviewmm is C++ API for gtksourceview" +depends=('gtksourceview' 'gtkmm') +groups=('gnome-extra') +options=('scriptlet') +Finclude gnome +archs=('i686' 'x86_64') +sha1sums=('1d761236f6631aa8c56191d7d1f6c9dfeaf52b28') + +# optimization OK From bouleetbil at frogdev.info Wed Mar 3 23:22:36 2010 From: bouleetbil at frogdev.info (bouleetbil) Date: Wed, 3 Mar 2010 23:22:36 +0100 (CET) Subject: [Frugalware-git] gnometesting: libpst-0.6.45-1-x86_64 *new package for evolution Message-ID: <20100303222236.A0C211240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=bdab298963a194ee202b5d5a6d4a3b8edd13e02f commit bdab298963a194ee202b5d5a6d4a3b8edd13e02f Author: bouleetbil Date: Wed Mar 3 23:22:27 2010 +0100 libpst-0.6.45-1-x86_64 *new package for evolution diff --git a/source/xlib/libpst/FrugalBuild b/source/xlib/libpst/FrugalBuild new file mode 100644 index 0000000..6f406be --- /dev/null +++ b/source/xlib/libpst/FrugalBuild @@ -0,0 +1,17 @@ +# Compiling Time: 0.27 SBU +# Maintainer: bouleetbil + +pkgname=libpst +pkgver=0.6.45 +pkgrel=1 +pkgdesc="Utilities to convert Outlook .pst files to other formats" +url="http://www.five-ten-sg.com/$pkgname" +up2date="Flasttar $url/packages/" +source=($url/packages/$pkgname-$pkgver.tar.gz) +depends=('imagemagick' 'python' 'libboost') +makedepends=('boost') +groups=('xlib') +archs=('i686' 'x86_64' 'ppc') +sha1sums=('c79e09793051e77586b602b2762e4ae30fb91f0a') + +# optimization OK From vmiklos at frugalware.org Thu Mar 4 11:28:31 2010 From: vmiklos at frugalware.org (Miklos Vajna) Date: Thu, 4 Mar 2010 11:28:31 +0100 (CET) Subject: [Frugalware-git] frugalware-current: docs/upgrade: add dhcpcd-5.x section Message-ID: <20100304102831.B8A7F1240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=fa8fe025728162bb7a6ae6e4100f220e514f94cb commit fa8fe025728162bb7a6ae6e4100f220e514f94cb Author: Miklos Vajna Date: Thu Mar 4 11:28:24 2010 +0100 docs/upgrade: add dhcpcd-5.x section diff --git a/docs/upgrade.txt b/docs/upgrade.txt index 73369bc..c68832c 100644 --- a/docs/upgrade.txt +++ b/docs/upgrade.txt @@ -86,6 +86,26 @@ files are not parsed completely. So be warned, it's expected that you need to re-configure a few of your favorite KDE applications before they are ready to work again. +== DHCP client 5.x upgrade + +We shipped the DHCP client daemon 3.x series in Getorin and now we +updated to 5.x in Locris. This includes a major internal dhcpcd rework, +but there should be no big incompatibility on the user side. Minor +issues may appear, for example if you do not want dhcpcd touch your +`/etc/resolv.conf` file, and you used the following directive in a +`netconfig` profile: + +---- +dhcp_opts = -R +---- + +now you need: + + +---- +dhcp_opts = -C 20-resolv.conf +---- + == The reboot Since the kernel is upgraded, too, you have to reboot your machine. From vmiklos at frugalware.org Thu Mar 4 11:31:33 2010 From: vmiklos at frugalware.org (Miklos Vajna) Date: Thu, 4 Mar 2010 11:31:33 +0100 (CET) Subject: [Frugalware-git] frugalware-current: upgrade: add dhcpcd history link Message-ID: <20100304103133.EB6691240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=cc976821d030bfe1a83937146a26ed0f7a43bb87 commit cc976821d030bfe1a83937146a26ed0f7a43bb87 Author: Miklos Vajna Date: Thu Mar 4 11:31:31 2010 +0100 upgrade: add dhcpcd history link diff --git a/docs/upgrade.txt b/docs/upgrade.txt index c68832c..ec8b210 100644 --- a/docs/upgrade.txt +++ b/docs/upgrade.txt @@ -90,10 +90,11 @@ are ready to work again. We shipped the DHCP client daemon 3.x series in Getorin and now we updated to 5.x in Locris. This includes a major internal dhcpcd rework, -but there should be no big incompatibility on the user side. Minor -issues may appear, for example if you do not want dhcpcd touch your -`/etc/resolv.conf` file, and you used the following directive in a -`netconfig` profile: +but there should be no big incompatibility on the user side. (See +http://roy.marples.name/projects/dhcpcd/wiki/DhcpcdHistory[here] for a +more detailed history.) Minor issues may appear, for example if you do +not want dhcpcd touch your `/etc/resolv.conf` file, and you used the +following directive in a `netconfig` profile: ---- dhcp_opts = -R From bouleetbil at frogdev.info Thu Mar 4 12:25:12 2010 From: bouleetbil at frogdev.info (bouleetbil) Date: Thu, 4 Mar 2010 12:25:12 +0100 (CET) Subject: [Frugalware-git] gnometesting: gnome-color-manager-2.29.4-1-x86_64 *new package Message-ID: <20100304112512.D26DD1240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=160c1a54a312c1cb08d2eeb8dd4f61cbc094d1ef commit 160c1a54a312c1cb08d2eeb8dd4f61cbc094d1ef Author: bouleetbil Date: Thu Mar 4 12:25:08 2010 +0100 gnome-color-manager-2.29.4-1-x86_64 *new package diff --git a/source/gnome-extra/gnome-color-manager/FrugalBuild b/source/gnome-extra/gnome-color-manager/FrugalBuild new file mode 100644 index 0000000..ee10750 --- /dev/null +++ b/source/gnome-extra/gnome-color-manager/FrugalBuild @@ -0,0 +1,20 @@ +# Compiling time: 0.07 SBU +# Maintainer: bouleetbil + +pkgname=gnome-color-manager +pkgver=2.29.4 +pkgrel=1 +pkgdesc="$pkgname install and generate color profiles in the GNOME desktop" +depends=('gtk+2' 'gnome-desktop' 'unique' 'vte' 'libgudev' 'lcms' 'libcanberra-gtk' \ + 'cups') +makedepends=('intltool' 'gnome-doc-utils') +groups=('gnome-extra') +options=('scriptlet') +_F_gnome_schemas=('/etc/gconf/schemas/gnome-color-manager.schemas') +_F_gnome_desktop="y" +_F_gnome_iconcache="y" +Finclude gnome gnome-scriptlet +archs=('i686' 'x86_64') +sha1sums=('fd2d6d293f4da385c6d184474656e9d4edc13976') + +# optimization OK From bouleetbil at frogdev.info Thu Mar 4 12:30:52 2010 From: bouleetbil at frogdev.info (bouleetbil) Date: Thu, 4 Mar 2010 12:30:52 +0100 (CET) Subject: [Frugalware-git] gnometesting: libpst-0.6.45-2-x86_64 *added subpackage *added missing pkgconfig file Message-ID: <20100304113052.E7CCD1240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=235045eef9d77e5d962280b6ec31d49528cda808 commit 235045eef9d77e5d962280b6ec31d49528cda808 Author: bouleetbil Date: Thu Mar 4 12:30:17 2010 +0100 libpst-0.6.45-2-x86_64 *added subpackage *added missing pkgconfig file diff --git a/source/xlib/libpst/FrugalBuild b/source/xlib/libpst/FrugalBuild index 6f406be..ed64514 100644 --- a/source/xlib/libpst/FrugalBuild +++ b/source/xlib/libpst/FrugalBuild @@ -3,15 +3,31 @@ pkgname=libpst pkgver=0.6.45 -pkgrel=1 +pkgrel=2 pkgdesc="Utilities to convert Outlook .pst files to other formats" url="http://www.five-ten-sg.com/$pkgname" up2date="Flasttar $url/packages/" source=($url/packages/$pkgname-$pkgver.tar.gz) -depends=('imagemagick' 'python' 'libboost') +depends=('imagemagick' 'libboost') +Finclude python makedepends=('boost') groups=('xlib') archs=('i686' 'x86_64' 'ppc') sha1sums=('c79e09793051e77586b602b2762e4ae30fb91f0a') +subpkgs=("${subpkgs[@]}" "$pkgname-python") +subdescs=("${subdescs[@]}" "$pkgname python binding") +subdepends=("${subdepends[@]}" "python") +subrodepends=("${subrodepends[@]}" "$pkgname") +subgroups=("${subgroups[@]}" 'devel-extra') +subarchs=("${subarchs[@]}" 'i686 x86_64 ppc') + +build() { + Fbuild + #Fix missing install pkgconfig + Fmkdir usr/lib/pkgconfig + Fcp $pkgname-$pkgver/$pkgname.pc usr/lib/pkgconfig + Fsplit $pkgname-python $_F_python_libdir +} + # optimization OK From bouleetbil at frogdev.info Thu Mar 4 14:36:35 2010 From: bouleetbil at frogdev.info (bouleetbil) Date: Thu, 4 Mar 2010 14:36:35 +0100 (CET) Subject: [Frugalware-git] gnometesting: libpst-0.6.45-3-x86_64 *added --enable-libpst-shared Message-ID: <20100304133635.F019420E0002@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=2104b5f0aab9aa6e48207696a1208e96c45dea6e commit 2104b5f0aab9aa6e48207696a1208e96c45dea6e Author: bouleetbil Date: Thu Mar 4 14:35:08 2010 +0100 libpst-0.6.45-3-x86_64 *added --enable-libpst-shared diff --git a/source/xlib-extra/libpst/FrugalBuild b/source/xlib-extra/libpst/FrugalBuild index ed64514..c09369f 100644 --- a/source/xlib-extra/libpst/FrugalBuild +++ b/source/xlib-extra/libpst/FrugalBuild @@ -3,7 +3,7 @@ pkgname=libpst pkgver=0.6.45 -pkgrel=2 +pkgrel=3 pkgdesc="Utilities to convert Outlook .pst files to other formats" url="http://www.five-ten-sg.com/$pkgname" up2date="Flasttar $url/packages/" @@ -11,7 +11,7 @@ source=($url/packages/$pkgname-$pkgver.tar.gz) depends=('imagemagick' 'libboost') Finclude python makedepends=('boost') -groups=('xlib') +groups=('xlib-extra') archs=('i686' 'x86_64' 'ppc') sha1sums=('c79e09793051e77586b602b2762e4ae30fb91f0a') @@ -23,10 +23,7 @@ subgroups=("${subgroups[@]}" 'devel-extra') subarchs=("${subarchs[@]}" 'i686 x86_64 ppc') build() { - Fbuild - #Fix missing install pkgconfig - Fmkdir usr/lib/pkgconfig - Fcp $pkgname-$pkgver/$pkgname.pc usr/lib/pkgconfig + Fbuild --enable-libpst-shared --enable-python Fsplit $pkgname-python $_F_python_libdir } From bouleetbil at frogdev.info Thu Mar 4 14:36:35 2010 From: bouleetbil at frogdev.info (bouleetbil) Date: Thu, 4 Mar 2010 14:36:35 +0100 (CET) Subject: [Frugalware-git] gnometesting: libpst-0.6.45-3-x86_64 *moved to extra, plugin evolution is splitted into gnome-extra Message-ID: <20100304133635.E15251240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=d71568fc6ae1c851e8aee360ebaceb6c52be78c3 commit d71568fc6ae1c851e8aee360ebaceb6c52be78c3 Author: bouleetbil Date: Thu Mar 4 12:43:57 2010 +0100 libpst-0.6.45-3-x86_64 *moved to extra, plugin evolution is splitted into gnome-extra diff --git a/source/xlib/libpst/FrugalBuild b/source/xlib-extra/libpst/FrugalBuild similarity index 100% rename from source/xlib/libpst/FrugalBuild rename to source/xlib-extra/libpst/FrugalBuild From bouleetbil at frogdev.info Thu Mar 4 17:38:33 2010 From: bouleetbil at frogdev.info (bouleetbil) Date: Thu, 4 Mar 2010 17:38:33 +0100 (CET) Subject: [Frugalware-git] gnometesting: evolution-2.29.91-2-x86_64 *added subpackage pst *should split all plugins *drop gal depends, gal is deprecated and should be deleted Message-ID: <20100304163833.20C231240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=c90fcb4fe9e387ec7935c4549785b2975adeaf9e commit c90fcb4fe9e387ec7935c4549785b2975adeaf9e Author: bouleetbil Date: Thu Mar 4 17:24:38 2010 +0100 evolution-2.29.91-2-x86_64 *added subpackage pst *should split all plugins *drop gal depends, gal is deprecated and should be deleted diff --git a/source/gnome/evolution/FrugalBuild b/source/gnome/evolution/FrugalBuild index 1268c27..6a095bb 100644 --- a/source/gnome/evolution/FrugalBuild +++ b/source/gnome/evolution/FrugalBuild @@ -3,10 +3,10 @@ pkgname=evolution pkgver=2.29.91 -pkgrel=1 +pkgrel=2 pkgdesc="Integrated mail, calendar and address book suite for GNOME" -depends=('gail>=2.19.4' 'gal>=2.5.3-3' 'evolution-data-server>=2.29.0' 'gtkhtml>=3.29.91' \ - 'gnome-spell>=1.0.8-2' 'rarian' 'libkrb5' \ +depends=('gail>=2.19.4' 'evolution-data-server>=2.29.0' \ + 'gtkhtml>=3.29.91' 'gnome-spell>=1.0.8-2' 'rarian' 'libkrb5' \ 'evolution-data-server-ldap>=2.29.0' 'libbonobo>=2.24.0' 'nss>=3.12' 'nspr>=4.7.1' \ 'libnotify' 'gnome-pilot-conduits>=2.0.17-3' 'db>=4.7.25' 'unique' \ 'gst-plugins-base' 'gtkimageview') @@ -31,6 +31,13 @@ _F_gnome_iconcache="y" Finclude gnome gnome-scriptlet url="http://www.gnome.org/projects/evolution/" +subpkgs=("${subpkgs[@]}" "$pkgname-pst") +subdescs=("${subdescs[@]}" "PST importer plugin for Evolution") +subdepends=("${subdepends[@]}" "libytnef libpst") +subrodepends=("${subrodepends[@]}" "$pkgname") +subgroups=("${subgroups[@]}" 'gnome-extra') +subarchs=("${subarchs[@]}" 'i686 x86_64 ppc') + # Pilot conduits disabled atm :S # Still disabled at 2.12.0 :S @@ -64,11 +71,14 @@ build() { --enable-file-chooser=yes \ --enable-cairo-calendar=yes \ --disable-nm \ - --disable-pst-import + --enable-pst-import Fsed '.*KILL_PROCESS_CMD.*' '#define KILL_PROCESS_CMD "killall"' config.h make || Fdie Fmakeinstall GCONF_DISABLE_SCHEMA_INSTALL=1 + #TODO : Should split all plugins + Fsplit $pkgname-pst usr/lib/$pkgname/2.30/plugins/org-gnome-pst-import.eplug + Fsplit $pkgname-pst usr/lib/$pkgname/2.30/plugins/liborg-gnome-pst-import.so Fbuild_gnome_scriptlet } sha1sums=('2668ef216590ab395a3c452cd2b4184fa0078ac6') From bouleetbil at frogdev.info Thu Mar 4 22:37:19 2010 From: bouleetbil at frogdev.info (bouleetbil) Date: Thu, 4 Mar 2010 22:37:19 +0100 (CET) Subject: [Frugalware-git] gnometesting: nautilus-2.29.91-3-x86_64 *enable libbeagle support *we should install it for brasero Message-ID: <20100304213719.7F1091240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=1be9beb68e085a40da4d16e2096c2f49c69a14ad commit 1be9beb68e085a40da4d16e2096c2f49c69a14ad Author: bouleetbil Date: Thu Mar 4 22:33:36 2010 +0100 nautilus-2.29.91-3-x86_64 *enable libbeagle support *we should install it for brasero diff --git a/source/gnome/nautilus/FrugalBuild b/source/gnome/nautilus/FrugalBuild index 7f7a348..72c358d 100644 --- a/source/gnome/nautilus/FrugalBuild +++ b/source/gnome/nautilus/FrugalBuild @@ -3,12 +3,12 @@ pkgname=nautilus pkgver=2.29.91 -pkgrel=2 +pkgrel=3 pkgdesc="A file manager for GNOME" url="http://www.gnome.org/" depends=('librsvg>=2.26.0' 'libexif' 'eject' 'desktop-file-utils' 'libgnome>=2.28.0' \ - 'exempi' 'gvfs-gconf' 'unique>=1.0.6-3' 'gconf' 'gnome-desktop>=2.29.0' 'gail') -# Seems exempi needs as depend! + 'exempi' 'gvfs-gconf' 'unique>=1.0.6-3' 'gconf' 'gnome-desktop>=2.29.0' 'gail' \ + 'libbeagle') makedepends=('intltool') groups=('gnome' 'gnome-minimal') archs=('i686' 'x86_64' 'ppc') @@ -18,7 +18,7 @@ _F_gnome_mime="y" _F_gnome_iconcache="y" Finclude gnome gnome-scriptlet source=(${source[@]} $pkgname-2.16.0-frugalware_defaults.patch) -Fconfopts="$Fconfopts --disable-tracker --disable-beagle --disable-packagekit" +Fconfopts="$Fconfopts --disable-packagekit" sha1sums=('4cce737a076c442b6ef643113e49e32192337ddb' \ 'e859475c48401f91516e52f5ffd0d17421a999ae') provides=('eel') From bouleetbil at frogdev.info Fri Mar 5 08:18:31 2010 From: bouleetbil at frogdev.info (bouleetbil) Date: Fri, 5 Mar 2010 08:18:31 +0100 (CET) Subject: [Frugalware-git] xorgtesting: xf86-input-penmount-1.4.1-1-x86_64 *version bump Message-ID: <20100305071831.134991240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorgtesting.git;a=commitdiff;h=bae0d2ff5946c94cbe53c3d2914bc80039ab8e67 commit bae0d2ff5946c94cbe53c3d2914bc80039ab8e67 Author: bouleetbil Date: Fri Mar 5 08:18:43 2010 +0100 xf86-input-penmount-1.4.1-1-x86_64 *version bump diff --git a/source/x11/xf86-input-penmount/FixXinput.diff b/source/x11/xf86-input-penmount/FixXinput.diff deleted file mode 100644 index 65d2cfd..0000000 --- a/source/x11/xf86-input-penmount/FixXinput.diff +++ /dev/null @@ -1,69 +0,0 @@ -From dab0c2742c034750e3e9673167eb20812b679818 Mon Sep 17 00:00:00 2001 -From: Peter Hutterer -Date: Fri, 17 Jul 2009 03:59:43 +0000 -Subject: Cope with XINPUT ABI 7. - -Signed-off-by: Peter Hutterer ---- -diff --git a/src/xf86PM.c b/src/xf86PM.c -index 0c01760..1e38124 100644 ---- a/src/xf86PM.c -+++ b/src/xf86PM.c -@@ -181,6 +181,9 @@ ProcessDeviceInit(PenMountPrivatePtr priv, DeviceIntPtr dev, InputInfoPtr pInfo) - unsigned char map[] = - {0, 1}; - int min_x, min_y, max_x, max_y; -+ Atom axis_labels[2] = { 0, 0 }; -+ Atom btn_label = 0; -+ - /* - * these have to be here instead of in the SetupProc, because when the - * SetupProc is run at server startup, screenInfo is not setup yet -@@ -191,7 +194,11 @@ ProcessDeviceInit(PenMountPrivatePtr priv, DeviceIntPtr dev, InputInfoPtr pInfo) - /* - * Device reports button press for 1 button. - */ -- if (InitButtonClassDeviceStruct (dev, 1, map) == FALSE) -+ if (InitButtonClassDeviceStruct (dev, 1, -+#if GET_ABI_MAJOR(ABI_XINPUT_VERSION) >= 7 -+ &btn_label, -+#endif -+ map) == FALSE) - { - ErrorF ("Unable to allocate PenMount ButtonClassDeviceStruct\n"); - return !Success; -@@ -202,6 +209,9 @@ ProcessDeviceInit(PenMountPrivatePtr priv, DeviceIntPtr dev, InputInfoPtr pInfo) - * Axes min and max values are reported in raw coordinates. - */ - if (InitValuatorClassDeviceStruct (dev, 2, -+#if GET_ABI_MAJOR(ABI_XINPUT_VERSION) >= 7 -+ axis_labels, -+#endif - #if GET_ABI_MAJOR(ABI_XINPUT_VERSION) < 3 - xf86GetMotionEvents, - #endif -@@ -234,11 +244,19 @@ ProcessDeviceInit(PenMountPrivatePtr priv, DeviceIntPtr dev, InputInfoPtr pInfo) - min_y = 0; - } - -- InitValuatorAxisStruct (dev, 0, min_x, max_x, -+ InitValuatorAxisStruct (dev, 0, -+#if GET_ABI_MAJOR(ABI_XINPUT_VERSION) >= 7 -+ axis_labels[0], -+#endif -+ min_x, max_x, - 9500, - 0 /* min_res */ , - 9500 /* max_res */ ); -- InitValuatorAxisStruct (dev, 1, min_y, max_y, -+ InitValuatorAxisStruct (dev, 1, -+#if GET_ABI_MAJOR(ABI_XINPUT_VERSION) >= 7 -+ axis_labels[1], -+#endif -+ min_y, max_y, - 10500, - 0 /* min_res */ , - 10500 /* max_res */ ); --- -cgit v0.8.2 - diff --git a/source/x11/xf86-input-penmount/FrugalBuild b/source/x11/xf86-input-penmount/FrugalBuild index 1608f3d..c1c0fa2 100644 --- a/source/x11/xf86-input-penmount/FrugalBuild +++ b/source/x11/xf86-input-penmount/FrugalBuild @@ -2,11 +2,9 @@ # Maintainer: Christian Hamar alias krix pkgname=xf86-input-penmount -pkgver=1.4.0 -pkgrel=2 +pkgver=1.4.1 +pkgrel=1 Finclude xorg -source=($source FixXinput.diff) -sha1sums=('f997597a754f5dd0b5df4c1db0b42fbb11400514' \ - '78a20376999051ab57060891ac5223ec735e8333') +sha1sums=('a6923fe92ffbc698813063a5426b4ba2edfe465f') # optimization OK From vmiklos at frugalware.org Fri Mar 5 14:34:04 2010 From: vmiklos at frugalware.org (Miklos Vajna) Date: Fri, 5 Mar 2010 14:34:04 +0100 (CET) Subject: [Frugalware-git] frugalware-1.2: pacman-g2-3.7.6-3locris1-i686 Message-ID: <20100305133404.D0F311240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-1.2.git;a=commitdiff;h=e7071b6454ae434c28951e7bfacd659016fe54d3 commit e7071b6454ae434c28951e7bfacd659016fe54d3 Author: Miklos Vajna Date: Fri Mar 5 14:33:18 2010 +0100 pacman-g2-3.7.6-3locris1-i686 - detault to -stable diff --git a/source/base/pacman-g2/FrugalBuild b/source/base/pacman-g2/FrugalBuild index 5172eae..f7e7a62 100644 --- a/source/base/pacman-g2/FrugalBuild +++ b/source/base/pacman-g2/FrugalBuild @@ -7,7 +7,7 @@ USE_MINIMAL=${USE_MINIMAL:-"n"} pkgname=pacman-g2 pkgver=3.7.6 Fuse $USE_DEVEL && pkgver=3.7.3.32.gedb838c -pkgrel=2 +pkgrel=3locris1 pkgdesc="A .tar.bz2 based package manager library (libpacman) and client (pacman-g2) with dependency support." url="http://ftp.frugalware.org/pub/other/pacman-g2/" backup=(etc/{makepkg,pacman-g2}.conf etc/pacman-g2/repos/{frugalware,frugalware-current}) @@ -26,8 +26,9 @@ _F_archive_nosort=y up2date="lynx -dump $url/releases/ |Flasttar" if ! Fuse $USE_DEVEL; then source=($url/releases/$pkgname-$pkgver.tar.gz \ - http://git.frugalware.org/patches/pacman-g2/e2a9204.patch) - signatures=("$source.asc" '') + http://git.frugalware.org/patches/pacman-g2/e2a9204.patch \ + stable.diff) + signatures=("$source.asc" '' '') else _F_scm_type="git" _F_scm_url="git://git.frugalware.org/pub/other/pacman-g2/pacman-g2" diff --git a/source/base/pacman-g2/stable.diff b/source/base/pacman-g2/stable.diff new file mode 100644 index 0000000..de62edb --- /dev/null +++ b/source/base/pacman-g2/stable.diff @@ -0,0 +1,17 @@ +diff --git a/etc/pacman-g2.conf.in b/etc/pacman-g2.conf.in +index 23c24b3..d581d05 100644 +--- a/etc/pacman-g2.conf.in ++++ b/etc/pacman-g2.conf.in +@@ -19,10 +19,10 @@ OldDelay = 3 + # tree to avoid conflicts + + # -current +-Include = /etc/pacman-g2/repos/frugalware-current ++#Include = /etc/pacman-g2/repos/frugalware-current + + # -stable +-#Include = /etc/pacman-g2/repos/frugalware ++Include = /etc/pacman-g2/repos/frugalware + + # An example of a custom package repository. See the pacman-g2 manpage for + # tips on creating your own repositories. From vmiklos at frugalware.org Fri Mar 5 14:40:07 2010 From: vmiklos at frugalware.org (Miklos Vajna) Date: Fri, 5 Mar 2010 14:40:07 +0100 (CET) Subject: [Frugalware-git] frugalware-1.2: pacman-tools-1.2.1-3locris1-i686 Message-ID: <20100305134007.0DD191240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-1.2.git;a=commitdiff;h=a518ce0be6fd82e4df9e7ecd89aab28c673a649a commit a518ce0be6fd82e4df9e7ecd89aab28c673a649a Author: Miklos Vajna Date: Fri Mar 5 14:39:19 2010 +0100 pacman-tools-1.2.1-3locris1-i686 - defalt to -stable diff --git a/source/devel/pacman-tools/FrugalBuild b/source/devel/pacman-tools/FrugalBuild index 37b1dea..8537876 100644 --- a/source/devel/pacman-tools/FrugalBuild +++ b/source/devel/pacman-tools/FrugalBuild @@ -6,7 +6,7 @@ USE_DEVEL=${USE_DEVEL:-"n"} pkgname=pacman-tools pkgver=1.2.1 Fuse $USE_DEVEL && pkgver=1.1.7.13.g544f9ab -pkgrel=2 +pkgrel=3locris1 pkgdesc="Tools for developers for managing packages" url="http://ftp.frugalware.org/pub/other/pacman-tools" depends=('bash' 'perl>=5.10.0-8' 'pacman-g2>=3.7.0-4' 'wget>=1.11.4-2' @@ -18,8 +18,9 @@ backup=(etc/repoman.conf etc/syncpkg{cd/c,d/d,d/ctl}config.py) up2date="Flasttar $url" if ! Fuse $USE_DEVEL; then source=($url/$pkgname-$pkgver.tar.gz \ - http://git.frugalware.org/patches/pacman-tools/850232c.patch) - signatures=(${source[0]}.asc '') + http://git.frugalware.org/patches/pacman-tools/850232c.patch \ + stable.diff) + signatures=(${source[0]}.asc '' '') else _F_scm_type="git" _F_scm_url="git://git.frugalware.org/pub/other/pacman-tools/pacman-tools" diff --git a/source/devel/pacman-tools/stable.diff b/source/devel/pacman-tools/stable.diff new file mode 100644 index 0000000..b9523d9 --- /dev/null +++ b/source/devel/pacman-tools/stable.diff @@ -0,0 +1,15 @@ +diff --git a/repoman.conf b/repoman.conf +index 35d41f6..37ca7b2 100644 +--- a/repoman.conf ++++ b/repoman.conf +@@ -7,8 +7,8 @@ + + # the order is important, the first repo will be used as a default for + # developer actions (like up, del and so on) +-source /etc/repoman.d/current +-#source /etc/repoman.d/stable ++#source /etc/repoman.d/current ++source /etc/repoman.d/stable + + # default repo to search the include dir in + fst_root=/var/fst/ From vmiklos at frugalware.org Fri Mar 5 14:46:37 2010 From: vmiklos at frugalware.org (Miklos Vajna) Date: Fri, 5 Mar 2010 14:46:37 +0100 (CET) Subject: [Frugalware-git] frugalware-1.2: fwsetup-1.0.8-2loccris1-i686 Message-ID: <20100305134637.1C3F21240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-1.2.git;a=commitdiff;h=8733f4c03656b4fbb5449d9ffd16efc85954bd60 commit 8733f4c03656b4fbb5449d9ffd16efc85954bd60 Author: Miklos Vajna Date: Fri Mar 5 14:45:15 2010 +0100 fwsetup-1.0.8-2loccris1-i686 - default to stable, disable debug diff --git a/source/devel-extra/fwsetup/FrugalBuild b/source/devel-extra/fwsetup/FrugalBuild index f783449..08e9c02 100644 --- a/source/devel-extra/fwsetup/FrugalBuild +++ b/source/devel-extra/fwsetup/FrugalBuild @@ -6,7 +6,7 @@ USE_DEVEL=${USE_DEVEL:-"n"} pkgname=fwsetup pkgver=1.0.8 Fuse $USE_DEVEL && pkgver=0.8.8.9.gd348556 -pkgrel=1 +pkgrel=2loccris1 pkgdesc="Frugalware Setup" url="http://ftp.frugalware.org/pub/other/setup/" depends=() @@ -42,7 +42,7 @@ build() make prepare fi export PATH=$PATH:/sbin - Fbuild --prefix=$Fprefix --repo=current --enable-usb --with-debug=gdb + Fbuild --prefix=$Fprefix --repo=stable --enable-usb } # optimization OK From vmiklos at frugalware.org Sat Mar 6 02:19:22 2010 From: vmiklos at frugalware.org (Miklos Vajna) Date: Sat, 6 Mar 2010 02:19:22 +0100 (CET) Subject: [Frugalware-git] frugalware-1.2: fwsetup-1.0.8-2locris1-ppc Message-ID: <20100306011922.E596A1240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-1.2.git;a=commitdiff;h=e4e1448c1e605c14970ed5e102a8eb1f29b302a8 commit e4e1448c1e605c14970ed5e102a8eb1f29b302a8 Author: Miklos Vajna Date: Sat Mar 6 02:17:31 2010 +0100 fwsetup-1.0.8-2locris1-ppc - fix typo in pkgrel diff --git a/source/devel-extra/fwsetup/FrugalBuild b/source/devel-extra/fwsetup/FrugalBuild index 08e9c02..90aa60d 100644 --- a/source/devel-extra/fwsetup/FrugalBuild +++ b/source/devel-extra/fwsetup/FrugalBuild @@ -6,7 +6,7 @@ USE_DEVEL=${USE_DEVEL:-"n"} pkgname=fwsetup pkgver=1.0.8 Fuse $USE_DEVEL && pkgver=0.8.8.9.gd348556 -pkgrel=2loccris1 +pkgrel=2locris1 pkgdesc="Frugalware Setup" url="http://ftp.frugalware.org/pub/other/setup/" depends=() From vmiklos at frugalware.org Sat Mar 6 12:43:48 2010 From: vmiklos at frugalware.org (Miklos Vajna) Date: Sat, 6 Mar 2010 12:43:48 +0100 (CET) Subject: [Frugalware-git] frugalware-1.2: docs: update VERSION Message-ID: <20100306114348.A529220E0002@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-1.2.git;a=commitdiff;h=e461d516a9931c24bc5a4ce3446b593a57a87d18 commit e461d516a9931c24bc5a4ce3446b593a57a87d18 Author: Miklos Vajna Date: Sat Mar 6 12:43:44 2010 +0100 docs: update VERSION diff --git a/docs/Makefile b/docs/Makefile index d5d1f55..c1e766e 100644 --- a/docs/Makefile +++ b/docs/Makefile @@ -16,8 +16,7 @@ # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -VERSION = $(shell git describe) (-current) -#VERSION = 0.6 (Terminus) +VERSION = 1.2 (Locris) PO_DIR ?= ~/git/translations/po XML_PATH = /usr/share/sgml/docbook/dtd/xml-dtd-4.2 From bouleetbil at frogdev.info Sat Mar 6 13:24:46 2010 From: bouleetbil at frogdev.info (bouleetbil) Date: Sat, 6 Mar 2010 13:24:46 +0100 (CET) Subject: [Frugalware-git] gnometesting: evolution-2.29.91-3-x86_64 *added subpackage *now anjal can build without all evolution *pilot* is a subpackage, we can perhaps moved all pilote* from gnome to gnome-extra Message-ID: <20100306122446.1508F20E0002@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=de455df5c711bdc309bc400f9c16444f9af150db commit de455df5c711bdc309bc400f9c16444f9af150db Author: bouleetbil Date: Sat Mar 6 13:05:10 2010 +0100 evolution-2.29.91-3-x86_64 *added subpackage *now anjal can build without all evolution *pilot* is a subpackage, we can perhaps moved all pilote* from gnome to gnome-extra diff --git a/source/gnome/evolution/FrugalBuild b/source/gnome/evolution/FrugalBuild index 6a095bb..e631a60 100644 --- a/source/gnome/evolution/FrugalBuild +++ b/source/gnome/evolution/FrugalBuild @@ -3,13 +3,12 @@ pkgname=evolution pkgver=2.29.91 -pkgrel=2 +evo_major=2.30 +pkgrel=3 pkgdesc="Integrated mail, calendar and address book suite for GNOME" -depends=('gail>=2.19.4' 'evolution-data-server>=2.29.0' \ - 'gtkhtml>=3.29.91' 'gnome-spell>=1.0.8-2' 'rarian' 'libkrb5' \ - 'evolution-data-server-ldap>=2.29.0' 'libbonobo>=2.24.0' 'nss>=3.12' 'nspr>=4.7.1' \ - 'libnotify' 'gnome-pilot-conduits>=2.0.17-3' 'db>=4.7.25' 'unique' \ +depends=('unique' \ 'gst-plugins-base' 'gtkimageview') +rodepends=("$pkgname-base" "$pkgname-audio") makedepends=('intltool' 'gnome-doc-utils>=0.14.0' 'openldap' \ 'psmisc' 'gnome-common' 'krb5' 'gtk-doc') groups=('gnome') @@ -38,8 +37,45 @@ subrodepends=("${subrodepends[@]}" "$pkgname") subgroups=("${subgroups[@]}" 'gnome-extra') subarchs=("${subarchs[@]}" 'i686 x86_64 ppc') -# Pilot conduits disabled atm :S -# Still disabled at 2.12.0 :S +subpkgs=("${subpkgs[@]}" "$pkgname-conduit") +subdescs=("${subdescs[@]}" "conduit plugin for Evolution") +subdepends=("${subdepends[@]}" "gnome-pilot-conduits>=2.0.17-3") +subrodepends=("${subrodepends[@]}" "$pkgname") +subgroups=("${subgroups[@]}" 'gnome') +subarchs=("${subarchs[@]}" 'i686 x86_64 ppc') + +subpkgs=("${subpkgs[@]}" "$pkgname-audio") +subdescs=("${subdescs[@]}" "audio plugin for Evolution") +subdepends=("${subdepends[@]}" "gst-plugins-base") +subrodepends=("${subrodepends[@]}" "$pkgname") +subgroups=("${subgroups[@]}" 'gnome') +subarchs=("${subarchs[@]}" 'i686 x86_64 ppc') + +subpkgs=("${subpkgs[@]}" "$pkgname-base") +subdescs=("${subdescs[@]}" "base library for Evolution") +subdepends=("${subdepends[@]}" "gail>=2.19.4 evolution-data-server>=2.29.0 \ + gtkhtml>=3.29.91 gnome-spell>=1.0.8-2 rarian libkrb5 \ + evolution-data-server-ldap>=2.29.0 libbonobo>=2.24.0 nss>=3.12 nspr>=4.7.1 \ + libnotify db>=4.7.25") +subrodepends=("${subrodepends[@]}" "") +subgroups=("${subgroups[@]}" 'gnome') +subarchs=("${subarchs[@]}" 'i686 x86_64 ppc') + +subpkgs=("${subpkgs[@]}" "$pkgname-bogofilter") +subdescs=("${subdescs[@]}" "bogofilter for Evolution") +subdepends=("${subdepends[@]}" "bogofilter") +subrodepends=("${subrodepends[@]}" "$pkgname") +subgroups=("${subgroups[@]}" 'gnome-extra') +subarchs=("${subarchs[@]}" 'i686 x86_64 ppc') + +subpkgs=("${subpkgs[@]}" "$pkgname-spamassassin") +subdescs=("${subdescs[@]}" "spamassassin library for Evolution") +subdepends=("${subdepends[@]}" "spamassassin") +subrodepends=("${subrodepends[@]}" "$pkgname") +subgroups=("${subgroups[@]}" 'gnome-extra') +subarchs=("${subarchs[@]}" 'i686 x86_64 ppc') + +#TODO : added mono binding build() { Fcd @@ -77,8 +113,54 @@ build() { Fmakeinstall GCONF_DISABLE_SCHEMA_INSTALL=1 #TODO : Should split all plugins - Fsplit $pkgname-pst usr/lib/$pkgname/2.30/plugins/org-gnome-pst-import.eplug - Fsplit $pkgname-pst usr/lib/$pkgname/2.30/plugins/liborg-gnome-pst-import.so + #PST + Fsplit $pkgname-pst usr/lib/$pkgname/$evo_major/plugins/org-gnome-pst-import.eplug + Fsplit $pkgname-pst usr/lib/$pkgname/$evo_major/plugins/liborg-gnome-pst-import.* + + #conduit + Fsplit $pkgname-conduit usr/lib/evolution/$evo_major/*conduit* + Fsplit $pkgname-conduit usr/share/gnome-pilot/conduits + + #audio + Fsplit $pkgname-audio usr/lib/evolution/$evo_major/plugins/org-gnome-audio-inline.eplug + Fsplit $pkgname-audio usr/lib/evolution/$evo_major/plugins/liborg-gnome-audio-inline.* + + #bogofilter + Fsplit $pkgname-bogofilter usr/lib/$pkgname/$evo_major/plugins/org-gnome-bogo-junk-plugin.eplug + Fsplit $pkgname-bogofilter usr/lib/$pkgname/$evo_major/plugins/liborg-gnome-bogo-junk-plugin.* + + #spamassassin + Fsplit $pkgname-spamassassin usr/lib/$pkgname/$evo_major/plugins/org-gnome-sa-junk-plugin.eplug + Fsplit $pkgname-spamassassin usr/lib/$pkgname/$evo_major/plugins/liborg-gnome-sa-junk-plugin.* + + #base for frontend evolution as anjal + Fsplit $pkgname-base usr/include/evolution-$evo_major + Fsplit $pkgname-base usr/lib/pkgconfig/evolution-calendar.pc + Fsplit $pkgname-base usr/lib/pkgconfig/evolution-mail.pc + Fsplit $pkgname-base usr/lib/pkgconfig/evolution-plugin.pc + Fsplit $pkgname-base usr/lib/pkgconfig/evolution-shell.pc + Fsplit $pkgname-base usr/lib/evolution/$evo_major/libcomposer.* + Fsplit $pkgname-base usr/lib/evolution/$evo_major/libeabutil.* + Fsplit $pkgname-base usr/lib/evolution/$evo_major/libecontacteditor.* + Fsplit $pkgname-base usr/lib/evolution/$evo_major/libecontactlisteditor.* + Fsplit $pkgname-base usr/lib/evolution/$evo_major/libemformat.* + Fsplit $pkgname-base usr/lib/evolution/$evo_major/libemiscwidgets.* + Fsplit $pkgname-base usr/lib/evolution/$evo_major/libeshell.* + Fsplit $pkgname-base usr/lib/evolution/$evo_major/libessmime.* + Fsplit $pkgname-base usr/lib/evolution/$evo_major/libetable.* + Fsplit $pkgname-base usr/lib/evolution/$evo_major/libetext.* + Fsplit $pkgname-base usr/lib/evolution/$evo_major/libetimezonedialog.* + Fsplit $pkgname-base usr/lib/evolution/$evo_major/libeutil.* + Fsplit $pkgname-base usr/lib/evolution/$evo_major/libevolution-a11y.* + Fsplit $pkgname-base usr/lib/evolution/$evo_major/libevolution-addressbook-importers.* + Fsplit $pkgname-base usr/lib/evolution/$evo_major/libevolution-calendar.* + Fsplit $pkgname-base usr/lib/evolution/$evo_major/libevolution-calendar-importers.* + Fsplit $pkgname-base usr/lib/evolution/$evo_major/libevolution-mail-importers.* + Fsplit $pkgname-base usr/lib/evolution/$evo_major/libevolution-mail.* + Fsplit $pkgname-base usr/lib/evolution/$evo_major/libevolution-smime.* + Fsplit $pkgname-base usr/lib/evolution/$evo_major/libfilter.* + Fsplit $pkgname-base usr/lib/evolution/$evo_major/libmenus.* + Fbuild_gnome_scriptlet } sha1sums=('2668ef216590ab395a3c452cd2b4184fa0078ac6') From bouleetbil at frogdev.info Sat Mar 6 14:20:39 2010 From: bouleetbil at frogdev.info (bouleetbil) Date: Sat, 6 Mar 2010 14:20:39 +0100 (CET) Subject: [Frugalware-git] gnometesting: anjal-0.3.2-1-x86_64 *version bump Message-ID: <20100306132039.86DE320E0002@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=6ff7a8fd8a6a67af9c45be635f7089b54d1dda28 commit 6ff7a8fd8a6a67af9c45be635f7089b54d1dda28 Author: bouleetbil Date: Sat Mar 6 14:20:54 2010 +0100 anjal-0.3.2-1-x86_64 *version bump diff --git a/source/gnome-extra/anjal/FrugalBuild b/source/gnome-extra/anjal/FrugalBuild index 463ceeb..d17a858 100644 --- a/source/gnome-extra/anjal/FrugalBuild +++ b/source/gnome-extra/anjal/FrugalBuild @@ -2,11 +2,13 @@ # Maintainer: bouleetbil pkgname=anjal -pkgver=0.1 -pkgrel=2 +pkgver=0.3.2 +pkgrel=1 pkgdesc="email-client specially made for netbook" -depends=('evolution>=2.28.2-2' 'webkit' 'gtkhtml' 'evolution-data-server') -makedepends=('gtk-doc' 'intltool') +depends=('evolution-base>=2.29.91' 'webkit' 'gtkhtml' 'gnome-pilot' \ + 'evolution-data-server' 'gnome-desktop' 'unique' 'libcanberra-gtk' \ + 'libkrb5') +makedepends=('gtk-doc' 'intltool' 'krb5') groups=('gnome-extra') archs=('i686' 'x86_64') options=('scriptlet') @@ -15,6 +17,6 @@ _F_gnome_desktop="y" _F_gnome_iconcache="y" _F_gnome_schemas=('/etc/gconf/schemas/anjal.schemas') Finclude gnome gnome-scriptlet -sha1sums=('c55881d1d9f56c5a633bfd1a13a4229c10990f3e') +sha1sums=('76d24ffdbd00684dbfbdbbaa04ba3b270d7cc584') # optimization OK From bouleetbil at frogdev.info Sat Mar 6 14:25:46 2010 From: bouleetbil at frogdev.info (bouleetbil) Date: Sat, 6 Mar 2010 14:25:46 +0100 (CET) Subject: [Frugalware-git] gnometesting: evolution-2.29.91-4-x86_64 *fixed depends *linking to gnome-pilot but not gnome-pilot-conduit Message-ID: <20100306132547.61B3220E0002@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=dc4b30b03bb90d2ebf378a0dab2870a043d1feca commit dc4b30b03bb90d2ebf378a0dab2870a043d1feca Author: bouleetbil Date: Sat Mar 6 14:25:20 2010 +0100 evolution-2.29.91-4-x86_64 *fixed depends *linking to gnome-pilot but not gnome-pilot-conduit diff --git a/source/gnome/evolution/FrugalBuild b/source/gnome/evolution/FrugalBuild index e631a60..36c5f41 100644 --- a/source/gnome/evolution/FrugalBuild +++ b/source/gnome/evolution/FrugalBuild @@ -4,7 +4,7 @@ pkgname=evolution pkgver=2.29.91 evo_major=2.30 -pkgrel=3 +pkgrel=4 pkgdesc="Integrated mail, calendar and address book suite for GNOME" depends=('unique' \ 'gst-plugins-base' 'gtkimageview') @@ -56,7 +56,7 @@ subdescs=("${subdescs[@]}" "base library for Evolution") subdepends=("${subdepends[@]}" "gail>=2.19.4 evolution-data-server>=2.29.0 \ gtkhtml>=3.29.91 gnome-spell>=1.0.8-2 rarian libkrb5 \ evolution-data-server-ldap>=2.29.0 libbonobo>=2.24.0 nss>=3.12 nspr>=4.7.1 \ - libnotify db>=4.7.25") + libnotify db>=4.7.25 gnome-pilot") subrodepends=("${subrodepends[@]}" "") subgroups=("${subgroups[@]}" 'gnome') subarchs=("${subarchs[@]}" 'i686 x86_64 ppc') From bouleetbil at frogdev.info Sat Mar 6 17:14:21 2010 From: bouleetbil at frogdev.info (bouleetbil) Date: Sat, 6 Mar 2010 17:14:21 +0100 (CET) Subject: [Frugalware-git] gnometesting: tracker-0.7.24-1-x86_64 *version bump Message-ID: <20100306161421.ECD9A20E0002@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=14a3cca17382ad5b217784ce40336529893a0ee1 commit 14a3cca17382ad5b217784ce40336529893a0ee1 Author: bouleetbil Date: Sat Mar 6 17:14:13 2010 +0100 tracker-0.7.24-1-x86_64 *version bump diff --git a/source/gnome-extra/tracker/Fix_IncludeGmime.diff b/source/gnome-extra/tracker/Fix_IncludeGmime.diff deleted file mode 100644 index a80a2ea..0000000 --- a/source/gnome-extra/tracker/Fix_IncludeGmime.diff +++ /dev/null @@ -1,853 +0,0 @@ -diff -u tracker-0.6.6/src/trackerd/cache.h tracker-0.6.6new/src/trackerd/cache.h ---- tracker-0.6.6/src/trackerd/cache.h 2008-05-24 02:38:29.000000000 +0200 -+++ tracker-0.6.6new/src/trackerd/cache.h 2008-12-05 11:35:06.000000000 +0100 -@@ -26,8 +26,8 @@ - - #include - --#include --#include -+#include "list.h" -+#include "memchunk.h" - - G_BEGIN_DECLS - -diff -u tracker-0.6.6/src/trackerd/charset-map.c tracker-0.6.6new/src/trackerd/charset-map.c ---- tracker-0.6.6/src/trackerd/charset-map.c 2008-05-24 02:38:26.000000000 +0200 -+++ tracker-0.6.6new/src/trackerd/charset-map.c 2008-12-05 11:48:21.000000000 +0100 -@@ -108,7 +108,7 @@ - return !memcmp (v1, v2, 256); - } - --int main (int argc, char **argv) -+int main2 (int argc, char **argv) - { - unsigned char *block = NULL; - unsigned int bit = 0x01; -Seulement dans tracker-0.6.6new/src/trackerd: .deps -diff -u tracker-0.6.6/src/trackerd/gen-table.c tracker-0.6.6new/src/trackerd/gen-table.c ---- tracker-0.6.6/src/trackerd/gen-table.c 2008-05-24 02:38:27.000000000 +0200 -+++ tracker-0.6.6new/src/trackerd/gen-table.c 2008-12-05 11:51:24.000000000 +0100 -@@ -142,7 +142,7 @@ - header_init_bits (IS_PSAFE, 0, FALSE, CHARS_PSPECIAL); - } - --int main (int argc, char **argv) -+int main3 (int argc, char **argv) - { - int i; - -diff -u tracker-0.6.6/src/trackerd/gmime.c tracker-0.6.6new/src/trackerd/gmime.c ---- tracker-0.6.6/src/trackerd/gmime.c 2008-05-24 02:38:27.000000000 +0200 -+++ tracker-0.6.6new/src/trackerd/gmime.c 2008-12-05 11:02:27.000000000 +0100 -@@ -39,10 +39,9 @@ - - - GQuark gmime_error_quark; -- --const guint gmime_major_version = GMIME_MAJOR_VERSION; --const guint gmime_minor_version = GMIME_MINOR_VERSION; --const guint gmime_micro_version = GMIME_MICRO_VERSION; -+const guint gmime_major_version = 2; -+const guint gmime_minor_version = 2; -+const guint gmime_micro_version = 23; - const guint gmime_interface_age = 0; - const guint gmime_binary_age = 0; - -@@ -62,17 +61,8 @@ - **/ - gboolean - g_mime_check_version (guint major, guint minor, guint micro) --{ -- if (GMIME_MAJOR_VERSION > major) -- return TRUE; -- -- if (GMIME_MAJOR_VERSION == major && GMIME_MINOR_VERSION > minor) -- return TRUE; -- -- if (GMIME_MAJOR_VERSION == major && GMIME_MINOR_VERSION == minor && GMIME_MICRO_VERSION >= micro) -- return TRUE; -- -- return FALSE; -+{ -+ return TRUE; - } - - -diff -u tracker-0.6.6/src/trackerd/gmime-cipher-context.h tracker-0.6.6new/src/trackerd/gmime-cipher-context.h ---- tracker-0.6.6/src/trackerd/gmime-cipher-context.h 2008-05-24 02:38:27.000000000 +0200 -+++ tracker-0.6.6new/src/trackerd/gmime-cipher-context.h 2008-12-05 10:15:30.000000000 +0100 -@@ -27,8 +27,8 @@ - - #include - --#include --#include -+#include "gmime-stream.h" -+#include "gmime-session.h" - - G_BEGIN_DECLS - -diff -u tracker-0.6.6/src/trackerd/gmime-content-type.h tracker-0.6.6new/src/trackerd/gmime-content-type.h ---- tracker-0.6.6/src/trackerd/gmime-content-type.h 2008-05-24 02:38:27.000000000 +0200 -+++ tracker-0.6.6new/src/trackerd/gmime-content-type.h 2008-12-05 10:15:57.000000000 +0100 -@@ -23,7 +23,7 @@ - #define __GMIME_CONTENT_TYPE_H__ - - #include --#include -+#include "gmime-param.h" - - G_BEGIN_DECLS - -diff -u tracker-0.6.6/src/trackerd/gmime-data-wrapper.h tracker-0.6.6new/src/trackerd/gmime-data-wrapper.h ---- tracker-0.6.6/src/trackerd/gmime-data-wrapper.h 2008-05-24 02:38:27.000000000 +0200 -+++ tracker-0.6.6new/src/trackerd/gmime-data-wrapper.h 2008-12-05 10:26:20.000000000 +0100 -@@ -25,9 +25,9 @@ - #include - #include - --#include --#include --#include -+#include "gmime-content-type.h" -+#include "gmime-stream.h" -+#include "gmime-utils.h" - - G_BEGIN_DECLS - -diff -u tracker-0.6.6/src/trackerd/gmime-disposition.h tracker-0.6.6new/src/trackerd/gmime-disposition.h ---- tracker-0.6.6/src/trackerd/gmime-disposition.h 2008-05-24 02:38:26.000000000 +0200 -+++ tracker-0.6.6new/src/trackerd/gmime-disposition.h 2008-12-05 10:16:36.000000000 +0100 -@@ -23,7 +23,7 @@ - #define __GMIME_DISPOSITION_H__ - - #include --#include -+#include "gmime-param.h" - - G_BEGIN_DECLS - -diff -u tracker-0.6.6/src/trackerd/gmime-filter-basic.h tracker-0.6.6new/src/trackerd/gmime-filter-basic.h ---- tracker-0.6.6/src/trackerd/gmime-filter-basic.h 2008-05-24 02:38:27.000000000 +0200 -+++ tracker-0.6.6new/src/trackerd/gmime-filter-basic.h 2008-12-05 10:17:02.000000000 +0100 -@@ -22,7 +22,7 @@ - #ifndef __GMIME_FILTER_BASIC_H__ - #define __GMIME_FILTER_BASIC_H__ - --#include -+#include "gmime-filter.h" - - G_BEGIN_DECLS - -diff -u tracker-0.6.6/src/trackerd/gmime-filter-best.h tracker-0.6.6new/src/trackerd/gmime-filter-best.h ---- tracker-0.6.6/src/trackerd/gmime-filter-best.h 2008-05-24 02:38:27.000000000 +0200 -+++ tracker-0.6.6new/src/trackerd/gmime-filter-best.h 2008-12-05 10:17:29.000000000 +0100 -@@ -22,9 +22,9 @@ - #ifndef __GMIME_FILTER_BEST_H__ - #define __GMIME_FILTER_BEST_H__ - --#include --#include --#include -+#include "gmime-filter.h" -+#include "gmime-charset.h" -+#include "gmime-utils.h" - - G_BEGIN_DECLS - -diff -u tracker-0.6.6/src/trackerd/gmime-filter-charset.c tracker-0.6.6new/src/trackerd/gmime-filter-charset.c ---- tracker-0.6.6/src/trackerd/gmime-filter-charset.c 2008-05-24 02:38:26.000000000 +0200 -+++ tracker-0.6.6new/src/trackerd/gmime-filter-charset.c 2008-12-05 11:29:13.000000000 +0100 -@@ -54,7 +54,7 @@ - - - static GMimeFilterClass *parent_class = NULL; -- -+#define ICONV_CONST - - GType - g_mime_filter_charset_get_type (void) -diff -u tracker-0.6.6/src/trackerd/gmime-filter-charset.h tracker-0.6.6new/src/trackerd/gmime-filter-charset.h ---- tracker-0.6.6/src/trackerd/gmime-filter-charset.h 2008-05-24 02:38:27.000000000 +0200 -+++ tracker-0.6.6new/src/trackerd/gmime-filter-charset.h 2008-12-05 10:17:43.000000000 +0100 -@@ -23,7 +23,7 @@ - #define __GMIME_FILTER_CHARSET_H__ - - #include --#include -+#include "gmime-filter.h" - - G_BEGIN_DECLS - -diff -u tracker-0.6.6/src/trackerd/gmime-filter-crlf.h tracker-0.6.6new/src/trackerd/gmime-filter-crlf.h ---- tracker-0.6.6/src/trackerd/gmime-filter-crlf.h 2008-05-24 02:38:27.000000000 +0200 -+++ tracker-0.6.6new/src/trackerd/gmime-filter-crlf.h 2008-12-05 10:17:56.000000000 +0100 -@@ -22,7 +22,7 @@ - #ifndef __GMIME_FILTER_CRLF_H__ - #define __GMIME_FILTER_CRLF_H__ - --#include -+#include "gmime-filter.h" - - G_BEGIN_DECLS - -diff -u tracker-0.6.6/src/trackerd/gmime-filter-enriched.h tracker-0.6.6new/src/trackerd/gmime-filter-enriched.h ---- tracker-0.6.6/src/trackerd/gmime-filter-enriched.h 2008-05-24 02:38:27.000000000 +0200 -+++ tracker-0.6.6new/src/trackerd/gmime-filter-enriched.h 2008-12-05 10:18:16.000000000 +0100 -@@ -22,7 +22,7 @@ - #ifndef __GMIME_FILTER_ENRICHED_H__ - #define __GMIME_FILTER_ENRICHED_H__ - --#include -+#include "gmime-filter.h" - - G_BEGIN_DECLS - -diff -u tracker-0.6.6/src/trackerd/gmime-filter-from.h tracker-0.6.6new/src/trackerd/gmime-filter-from.h ---- tracker-0.6.6/src/trackerd/gmime-filter-from.h 2008-05-24 02:38:26.000000000 +0200 -+++ tracker-0.6.6new/src/trackerd/gmime-filter-from.h 2008-12-05 10:18:29.000000000 +0100 -@@ -22,7 +22,7 @@ - #ifndef __GMIME_FILTER_FROM_H__ - #define __GMIME_FILTER_FROM_H__ - --#include -+#include "gmime-filter.h" - - G_BEGIN_DECLS - -diff -u tracker-0.6.6/src/trackerd/gmime-filter-gzip.h tracker-0.6.6new/src/trackerd/gmime-filter-gzip.h ---- tracker-0.6.6/src/trackerd/gmime-filter-gzip.h 2008-05-24 02:38:27.000000000 +0200 -+++ tracker-0.6.6new/src/trackerd/gmime-filter-gzip.h 2008-12-05 10:18:42.000000000 +0100 -@@ -22,7 +22,7 @@ - #ifndef __GMIME_FILTER_GZIP_H__ - #define __GMIME_FILTER_GZIP_H__ - --#include -+#include "gmime-filter.h" - - G_BEGIN_DECLS - -diff -u tracker-0.6.6/src/trackerd/gmime-filter-html.h tracker-0.6.6new/src/trackerd/gmime-filter-html.h ---- tracker-0.6.6/src/trackerd/gmime-filter-html.h 2008-05-24 02:38:27.000000000 +0200 -+++ tracker-0.6.6new/src/trackerd/gmime-filter-html.h 2008-12-05 10:18:54.000000000 +0100 -@@ -22,7 +22,7 @@ - #ifndef __GMIME_FILTER_HTML_H__ - #define __GMIME_FILTER_HTML_H__ - --#include -+#include "gmime-filter.h" - - G_BEGIN_DECLS - -diff -u tracker-0.6.6/src/trackerd/gmime-filter-md5.h tracker-0.6.6new/src/trackerd/gmime-filter-md5.h ---- tracker-0.6.6/src/trackerd/gmime-filter-md5.h 2008-05-24 02:38:26.000000000 +0200 -+++ tracker-0.6.6new/src/trackerd/gmime-filter-md5.h 2008-12-05 10:19:43.000000000 +0100 -@@ -22,7 +22,7 @@ - #ifndef __GMIME_FILTER_MD5_H__ - #define __GMIME_FILTER_MD5_H__ - --#include -+#include "gmime-filter.h" - - G_BEGIN_DECLS - -diff -u tracker-0.6.6/src/trackerd/gmime-filter-strip.h tracker-0.6.6new/src/trackerd/gmime-filter-strip.h ---- tracker-0.6.6/src/trackerd/gmime-filter-strip.h 2008-05-24 02:38:27.000000000 +0200 -+++ tracker-0.6.6new/src/trackerd/gmime-filter-strip.h 2008-12-05 10:19:55.000000000 +0100 -@@ -22,7 +22,7 @@ - #ifndef __GMIME_FILTER_STRIP_H__ - #define __GMIME_FILTER_STRIP_H__ - --#include -+#include "gmime-filter.h" - - G_BEGIN_DECLS - -diff -u tracker-0.6.6/src/trackerd/gmime-filter-windows.h tracker-0.6.6new/src/trackerd/gmime-filter-windows.h ---- tracker-0.6.6/src/trackerd/gmime-filter-windows.h 2008-05-24 02:38:27.000000000 +0200 -+++ tracker-0.6.6new/src/trackerd/gmime-filter-windows.h 2008-12-05 10:20:06.000000000 +0100 -@@ -22,7 +22,7 @@ - #ifndef __GMIME_FILTER_WINDOWS_H__ - #define __GMIME_FILTER_WINDOWS_H__ - --#include -+#include "gmime-filter.h" - - G_BEGIN_DECLS - -diff -u tracker-0.6.6/src/trackerd/gmime-filter-yenc.h tracker-0.6.6new/src/trackerd/gmime-filter-yenc.h ---- tracker-0.6.6/src/trackerd/gmime-filter-yenc.h 2008-05-24 02:38:26.000000000 +0200 -+++ tracker-0.6.6new/src/trackerd/gmime-filter-yenc.h 2008-12-05 10:20:19.000000000 +0100 -@@ -22,7 +22,7 @@ - #ifndef __GMIME_FILTER_YENC_H__ - #define __GMIME_FILTER_YENC_H__ - --#include -+#include "gmime-filter.h" - - G_BEGIN_DECLS - -diff -u tracker-0.6.6/src/trackerd/gmime-gpg-context.h tracker-0.6.6new/src/trackerd/gmime-gpg-context.h ---- tracker-0.6.6/src/trackerd/gmime-gpg-context.h 2008-05-24 02:38:26.000000000 +0200 -+++ tracker-0.6.6new/src/trackerd/gmime-gpg-context.h 2008-12-05 10:20:30.000000000 +0100 -@@ -22,7 +22,7 @@ - #ifndef __GMIME_GPG_CONTEXT_H__ - #define __GMIME_GPG_CONTEXT_H__ - --#include -+#include "gmime-cipher-context.h" - - G_BEGIN_DECLS - -diff -u tracker-0.6.6/src/trackerd/gmime.h tracker-0.6.6new/src/trackerd/gmime.h ---- tracker-0.6.6/src/trackerd/gmime.h 2008-05-24 02:38:27.000000000 +0200 -+++ tracker-0.6.6new/src/trackerd/gmime.h 2008-12-05 10:12:31.000000000 +0100 -@@ -23,51 +23,51 @@ - #define __GMIME_H__ - - #include --#include --#include --#include --#include --#include --#include --#include --#include --#include --#include --#include --#include --#include --#include --#include --#include --#include --#include --#include --#include --#include --#include --#include --#include --#include --#include --#include --#include --#include --#include --#include --#include --#include --#include --#include --#include --#include --#include --#include --#include --#include --#include --#include --#include --#include -+#include "gmime-error.h" -+#include "gmime-charset.h" -+#include "gmime-iconv.h" -+#include "gmime-iconv-utils.h" -+#include "gmime-param.h" -+#include "gmime-content-type.h" -+#include "gmime-disposition.h" -+#include "gmime-data-wrapper.h" -+#include "gmime-object.h" -+#include "gmime-part.h" -+#include "gmime-multipart.h" -+#include "gmime-multipart-encrypted.h" -+#include "gmime-multipart-signed.h" -+#include "gmime-message.h" -+#include "gmime-message-part.h" -+#include "gmime-message-partial.h" -+#include "internet-address.h" -+#include "gmime-parser.h" -+#include "gmime-utils.h" -+#include "gmime-stream.h" -+#include "gmime-stream-buffer.h" -+#include "gmime-stream-cat.h" -+#include "gmime-stream-file.h" -+#include "gmime-stream-filter.h" -+#include "gmime-stream-fs.h" -+#include "gmime-stream-mem.h" -+#include "gmime-stream-mmap.h" -+#include "gmime-stream-null.h" -+#include "gmime-filter.h" -+#include "gmime-filter-basic.h" -+#include "gmime-filter-best.h" -+#include "gmime-filter-charset.h" -+#include "gmime-filter-crlf.h" -+#include "gmime-filter-enriched.h" -+#include "gmime-filter-from.h" -+#include "gmime-filter-gzip.h" -+#include "gmime-filter-html.h" -+#include "gmime-filter-md5.h" -+#include "gmime-filter-strip.h" -+#include "gmime-filter-windows.h" -+#include "gmime-filter-yenc.h" -+#include "gmime-session.h" -+#include "gmime-session-simple.h" -+#include "gmime-cipher-context.h" -+#include "gmime-gpg-context.h" - - G_BEGIN_DECLS - -diff -u tracker-0.6.6/src/trackerd/gmime-header.h tracker-0.6.6new/src/trackerd/gmime-header.h ---- tracker-0.6.6/src/trackerd/gmime-header.h 2008-05-24 02:38:27.000000000 +0200 -+++ tracker-0.6.6new/src/trackerd/gmime-header.h 2008-12-05 10:20:41.000000000 +0100 -@@ -23,7 +23,7 @@ - #define __GMIME_HEADER_H__ - - #include --#include -+#include "gmime-stream.h" - - G_BEGIN_DECLS - -diff -u tracker-0.6.6/src/trackerd/gmime-message.h tracker-0.6.6new/src/trackerd/gmime-message.h ---- tracker-0.6.6/src/trackerd/gmime-message.h 2008-07-05 01:05:53.000000000 +0200 -+++ tracker-0.6.6new/src/trackerd/gmime-message.h 2008-12-05 10:21:15.000000000 +0100 -@@ -25,10 +25,10 @@ - #include - #include - --#include --#include --#include --#include -+#include "gmime-object.h" -+#include "gmime-header.h" -+#include "gmime-stream.h" -+#include "internet-address.h" - - G_BEGIN_DECLS - -diff -u tracker-0.6.6/src/trackerd/gmime-message-part.h tracker-0.6.6new/src/trackerd/gmime-message-part.h ---- tracker-0.6.6/src/trackerd/gmime-message-part.h 2008-05-24 02:38:27.000000000 +0200 -+++ tracker-0.6.6new/src/trackerd/gmime-message-part.h 2008-12-05 10:27:02.000000000 +0100 -@@ -22,8 +22,8 @@ - #ifndef __GMIME_MESSAGE_PART_H__ - #define __GMIME_MESSAGE_PART_H__ - --#include --#include -+#include "gmime-object.h" -+#include "gmime-message.h" - - G_BEGIN_DECLS - -diff -u tracker-0.6.6/src/trackerd/gmime-message-partial.h tracker-0.6.6new/src/trackerd/gmime-message-partial.h ---- tracker-0.6.6/src/trackerd/gmime-message-partial.h 2008-05-24 02:38:27.000000000 +0200 -+++ tracker-0.6.6new/src/trackerd/gmime-message-partial.h 2008-12-05 10:21:32.000000000 +0100 -@@ -24,8 +24,8 @@ - - #include - --#include --#include -+#include "gmime-part.h" -+#include "gmime-message.h" - - G_BEGIN_DECLS - -diff -u tracker-0.6.6/src/trackerd/gmime-multipart-encrypted.h tracker-0.6.6new/src/trackerd/gmime-multipart-encrypted.h ---- tracker-0.6.6/src/trackerd/gmime-multipart-encrypted.h 2008-05-24 02:38:27.000000000 +0200 -+++ tracker-0.6.6new/src/trackerd/gmime-multipart-encrypted.h 2008-12-05 10:21:57.000000000 +0100 -@@ -22,8 +22,8 @@ - #ifndef __GMIME_MULTIPART_ENCRYPTED_H__ - #define __GMIME_MULTIPART_ENCRYPTED_H__ - --#include --#include -+#include "gmime-multipart.h" -+#include "gmime-cipher-context.h" - - G_BEGIN_DECLS - -diff -u tracker-0.6.6/src/trackerd/gmime-multipart.h tracker-0.6.6new/src/trackerd/gmime-multipart.h ---- tracker-0.6.6/src/trackerd/gmime-multipart.h 2008-05-24 02:38:27.000000000 +0200 -+++ tracker-0.6.6new/src/trackerd/gmime-multipart.h 2008-12-05 10:21:42.000000000 +0100 -@@ -24,7 +24,7 @@ - - #include - --#include -+#include "gmime-object.h" - - G_BEGIN_DECLS - -diff -u tracker-0.6.6/src/trackerd/gmime-multipart-signed.h tracker-0.6.6new/src/trackerd/gmime-multipart-signed.h ---- tracker-0.6.6/src/trackerd/gmime-multipart-signed.h 2008-05-24 02:38:27.000000000 +0200 -+++ tracker-0.6.6new/src/trackerd/gmime-multipart-signed.h 2008-12-05 10:22:12.000000000 +0100 -@@ -22,8 +22,8 @@ - #ifndef __GMIME_MULTIPART_SIGNED_H__ - #define __GMIME_MULTIPART_SIGNED_H__ - --#include --#include -+#include "gmime-multipart.h" -+#include "gmime-cipher-context.h" - - G_BEGIN_DECLS - -diff -u tracker-0.6.6/src/trackerd/gmime-object.h tracker-0.6.6new/src/trackerd/gmime-object.h ---- tracker-0.6.6/src/trackerd/gmime-object.h 2008-05-24 02:38:26.000000000 +0200 -+++ tracker-0.6.6new/src/trackerd/gmime-object.h 2008-12-05 10:22:31.000000000 +0100 -@@ -25,9 +25,9 @@ - #include - #include - --#include --#include --#include -+#include "gmime-content-type.h" -+#include "gmime-stream.h" -+#include "gmime-header.h" - - G_BEGIN_DECLS - -diff -u tracker-0.6.6/src/trackerd/gmime-parser.h tracker-0.6.6new/src/trackerd/gmime-parser.h ---- tracker-0.6.6/src/trackerd/gmime-parser.h 2008-09-13 15:24:40.000000000 +0200 -+++ tracker-0.6.6new/src/trackerd/gmime-parser.h 2008-12-05 10:23:04.000000000 +0100 -@@ -26,10 +26,10 @@ - #include - #include - --#include --#include --#include --#include -+#include "gmime-object.h" -+#include "gmime-message.h" -+#include "gmime-content-type.h" -+#include "gmime-stream.h" - - G_BEGIN_DECLS - -diff -u tracker-0.6.6/src/trackerd/gmime-part.h tracker-0.6.6new/src/trackerd/gmime-part.h ---- tracker-0.6.6/src/trackerd/gmime-part.h 2008-05-26 14:14:23.000000000 +0200 -+++ tracker-0.6.6new/src/trackerd/gmime-part.h 2008-12-05 10:23:33.000000000 +0100 -@@ -25,10 +25,10 @@ - #include - #include - --#include --#include --#include --#include -+#include "gmime-object.h" -+#include "gmime-param.h" -+#include "gmime-disposition.h" -+#include "gmime-data-wrapper.h" - - G_BEGIN_DECLS - -diff -u tracker-0.6.6/src/trackerd/gmime-session-simple.h tracker-0.6.6new/src/trackerd/gmime-session-simple.h ---- tracker-0.6.6/src/trackerd/gmime-session-simple.h 2008-05-24 02:38:27.000000000 +0200 -+++ tracker-0.6.6new/src/trackerd/gmime-session-simple.h 2008-12-05 10:23:51.000000000 +0100 -@@ -22,7 +22,7 @@ - #ifndef __GMIME_SESSION_SIMPLE_H__ - #define __GMIME_SESSION_SIMPLE_H__ - --#include -+#include "gmime-session.h" - - G_BEGIN_DECLS - -diff -u tracker-0.6.6/src/trackerd/gmime-stream-buffer.h tracker-0.6.6new/src/trackerd/gmime-stream-buffer.h ---- tracker-0.6.6/src/trackerd/gmime-stream-buffer.h 2008-05-24 02:38:26.000000000 +0200 -+++ tracker-0.6.6new/src/trackerd/gmime-stream-buffer.h 2008-12-05 10:27:34.000000000 +0100 -@@ -22,7 +22,7 @@ - #ifndef __GMIME_STREAM_BUFFER_H__ - #define __GMIME_STREAM_BUFFER_H__ - --#include -+#include "gmime-stream.h" - - G_BEGIN_DECLS - -diff -u tracker-0.6.6/src/trackerd/gmime-stream-cat.h tracker-0.6.6new/src/trackerd/gmime-stream-cat.h ---- tracker-0.6.6/src/trackerd/gmime-stream-cat.h 2008-05-24 02:38:26.000000000 +0200 -+++ tracker-0.6.6new/src/trackerd/gmime-stream-cat.h 2008-12-05 10:24:15.000000000 +0100 -@@ -23,7 +23,7 @@ - #define __GMIME_STREAM_CAT_H__ - - #include --#include -+#include "gmime-stream.h" - - G_BEGIN_DECLS - -diff -u tracker-0.6.6/src/trackerd/gmime-stream-file.h tracker-0.6.6new/src/trackerd/gmime-stream-file.h ---- tracker-0.6.6/src/trackerd/gmime-stream-file.h 2008-05-24 02:38:27.000000000 +0200 -+++ tracker-0.6.6new/src/trackerd/gmime-stream-file.h 2008-12-05 10:24:27.000000000 +0100 -@@ -24,7 +24,7 @@ - - #include - #include --#include -+#include "gmime-stream.h" - - G_BEGIN_DECLS - -diff -u tracker-0.6.6/src/trackerd/gmime-stream-filter.h tracker-0.6.6new/src/trackerd/gmime-stream-filter.h ---- tracker-0.6.6/src/trackerd/gmime-stream-filter.h 2008-05-24 02:38:27.000000000 +0200 -+++ tracker-0.6.6new/src/trackerd/gmime-stream-filter.h 2008-12-05 10:24:40.000000000 +0100 -@@ -22,8 +22,8 @@ - #ifndef __GMIME_STREAM_FILTER_H__ - #define __GMIME_STREAM_FILTER_H__ - --#include --#include -+#include "gmime-stream.h" -+#include "gmime-filter.h" - - G_BEGIN_DECLS - -diff -u tracker-0.6.6/src/trackerd/gmime-stream-fs.h tracker-0.6.6new/src/trackerd/gmime-stream-fs.h ---- tracker-0.6.6/src/trackerd/gmime-stream-fs.h 2008-05-24 02:38:27.000000000 +0200 -+++ tracker-0.6.6new/src/trackerd/gmime-stream-fs.h 2008-12-05 10:24:51.000000000 +0100 -@@ -23,7 +23,7 @@ - #define __GMIME_STREAM_FS_H__ - - #include --#include -+#include "gmime-stream.h" - - G_BEGIN_DECLS - -diff -u tracker-0.6.6/src/trackerd/gmime-stream-mem.h tracker-0.6.6new/src/trackerd/gmime-stream-mem.h ---- tracker-0.6.6/src/trackerd/gmime-stream-mem.h 2008-05-24 02:38:27.000000000 +0200 -+++ tracker-0.6.6new/src/trackerd/gmime-stream-mem.h 2008-12-05 10:25:01.000000000 +0100 -@@ -23,7 +23,7 @@ - #define __GMIME_STREAM_MEM_H__ - - #include --#include -+#include "gmime-stream.h" - - G_BEGIN_DECLS - -diff -u tracker-0.6.6/src/trackerd/gmime-stream-mmap.h tracker-0.6.6new/src/trackerd/gmime-stream-mmap.h ---- tracker-0.6.6/src/trackerd/gmime-stream-mmap.h 2008-05-24 02:38:27.000000000 +0200 -+++ tracker-0.6.6new/src/trackerd/gmime-stream-mmap.h 2008-12-05 10:25:13.000000000 +0100 -@@ -22,7 +22,7 @@ - #ifndef __GMIME_STREAM_MMAP_H__ - #define __GMIME_STREAM_MMAP_H__ - --#include -+#include "gmime-stream.h" - - G_BEGIN_DECLS - -diff -u tracker-0.6.6/src/trackerd/gmime-stream-null.h tracker-0.6.6new/src/trackerd/gmime-stream-null.h ---- tracker-0.6.6/src/trackerd/gmime-stream-null.h 2008-05-24 02:38:26.000000000 +0200 -+++ tracker-0.6.6new/src/trackerd/gmime-stream-null.h 2008-12-05 10:25:25.000000000 +0100 -@@ -23,7 +23,7 @@ - #define __GMIME_STREAM_NULL_H__ - - #include --#include -+#include "gmime-stream.h" - - G_BEGIN_DECLS - - -diff -u tracker-0.6.6/src/trackerd/Makefile.am tracker-0.6.6new/src/trackerd/Makefile.am ---- tracker-0.6.6/src/trackerd/Makefile.am 2008-01-15 05:05:03.000000000 +0100 -+++ tracker-0.6.6new/src/trackerd/Makefile.am 2008-12-05 11:53:01.000000000 +0100 -@@ -4,7 +4,6 @@ - -DTRACKER_LOCALEDIR=\""$(localedir)"\" \ - $(GLIB2_CFLAGS) \ - $(PANGO_CFLAGS) \ -- $(GMIME_CFLAGS) \ - $(HAL_CFLAGS) \ - $(FAM_CFLAGS) \ - $(DBUS_CFLAGS) \ -@@ -93,7 +92,120 @@ - tracker-ioprio.c \ - tracker-ioprio.h \ - tracker-os-dependant.h \ -- tracker-watch.h -+ tracker-watch.h \ -+ charset-map.c \ -+ gen-table.c \ -+ gmime.c \ -+ gmime.h \ -+ gmime-charset.c \ -+ gmime-charset.h \ -+ gmime-charset-map-private.h \ -+ gmime-cipher-context.c \ -+ gmime-cipher-context.h \ -+ gmime-common.c \ -+ gmime-common.h \ -+ gmime-content-type.c \ -+ gmime-content-type.h \ -+ gmime-data-wrapper.c \ -+ gmime-data-wrapper.h \ -+ gmime-disposition.c \ -+ gmime-disposition.h \ -+ gmime-error.h \ -+ gmime-filter.c \ -+ gmime-filter.h \ -+ gmime-filter-basic.c \ -+ gmime-filter-basic.h \ -+ gmime-filter-best.c \ -+ gmime-filter-best.h \ -+ gmime-filter-charset.c \ -+ gmime-filter-charset.h \ -+ gmime-filter-crlf.c \ -+ gmime-filter-crlf.h \ -+ gmime-filter-enriched.c \ -+ gmime-filter-enriched.h \ -+ gmime-filter-from.c \ -+ gmime-filter-from.h \ -+ gmime-filter-gzip.c \ -+ gmime-filter-gzip.h \ -+ gmime-filter-html.c \ -+ gmime-filter-html.h \ -+ gmime-filter-md5.c \ -+ gmime-filter-md5.h \ -+ gmime-filter-strip.c \ -+ gmime-filter-strip.h \ -+ gmime-filter-windows.c \ -+ gmime-filter-windows.h \ -+ gmime-filter-yenc.c \ -+ gmime-filter-yenc.h \ -+ gmime-gpg-context.c \ -+ gmime-gpg-context.h \ -+ gmime-header.c \ -+ gmime-header.h \ -+ gmime-iconv.c \ -+ gmime-iconv.h \ -+ gmime-iconv-utils.c \ -+ gmime-iconv-utils.h \ -+ gmime-message.c \ -+ gmime-message.h \ -+ gmime-message-part.c \ -+ gmime-message-part.h \ -+ gmime-message-partial.c \ -+ gmime-message-partial.h \ -+ gmime-multipart.c \ -+ gmime-multipart.h \ -+ gmime-multipart-encrypted.c \ -+ gmime-multipart-encrypted.h \ -+ gmime-multipart-signed.c \ -+ gmime-multipart-signed.h \ -+ gmime-object.c \ -+ gmime-object.h \ -+ gmime-param.c \ -+ gmime-param.h \ -+ gmime-parser.c \ -+ gmime-parser.h \ -+ gmime-parse-utils.c \ -+ gmime-parse-utils.h \ -+ gmime-part.c \ -+ gmime-part.h \ -+ gmime-session.c \ -+ gmime-session.h \ -+ gmime-session-simple.c \ -+ gmime-session-simple.h \ -+ gmime-stream.c \ -+ gmime-stream.h \ -+ gmime-stream-buffer.c \ -+ gmime-stream-buffer.h \ -+ gmime-stream-cat.c \ -+ gmime-stream-cat.h \ -+ gmime-stream-file.c \ -+ gmime-stream-file.h \ -+ gmime-stream-filter.c \ -+ gmime-stream-filter.h \ -+ gmime-stream-fs.c \ -+ gmime-stream-fs.h \ -+ gmime-stream-mem.c \ -+ gmime-stream-mem.h \ -+ gmime-stream-mmap.c \ -+ gmime-stream-mmap.h \ -+ gmime-stream-null.c \ -+ gmime-stream-null.h \ -+ gmime-table-private.h \ -+ gmime-utils.c \ -+ gmime-utils.h \ -+ internet-address.c \ -+ internet-address.h \ -+ cache.c \ -+ cache.h \ -+ gtrie.c \ -+ gtrie.h \ -+ list.c \ -+ list.h \ -+ md5-utils.c \ -+ md5-utils.h \ -+ memchunk.c \ -+ memchunk.h \ -+ url-scanner.c \ -+ url-scanner.h - - if OS_WIN32 - trackerd_win_libs = -lws2_32 -lkernel32 -@@ -104,7 +216,6 @@ - $(FAM_LIBS) \ - $(DBUS_LIBS) \ - $(PANGO_LIBS) \ -- $(GMIME_LIBS) \ - $(HAL_LIBS) \ - $(SQLITE3_LIBS) \ - $(QDBM_LIBS) \ - -diff -u tracker-0.6.6/src/trackerd/tracker-email-evolution.h tracker-0.6.6new/src/trackerd/tracker-email-evolution.h ---- tracker-0.6.6/src/trackerd/tracker-email-evolution.h 2008-01-15 05:05:03.000000000 +0100 -+++ tracker-0.6.6new/src/trackerd/tracker-email-evolution.h 2008-12-05 10:28:15.000000000 +0100 -@@ -22,7 +22,7 @@ - #define _TRACKER_EMAIL_EVOLUTION_H_ - - #include --#include -+#include "gmime.h" - - #include "config.h" - -diff -u tracker-0.6.6/src/trackerd/tracker-email-kmail.h tracker-0.6.6new/src/trackerd/tracker-email-kmail.h ---- tracker-0.6.6/src/trackerd/tracker-email-kmail.h 2008-01-15 05:05:03.000000000 +0100 -+++ tracker-0.6.6new/src/trackerd/tracker-email-kmail.h 2008-12-05 10:29:00.000000000 +0100 -@@ -22,7 +22,7 @@ - #define _TRACKER_EMAIL_KMAIL_H_ - - #include --#include -+#include "gmime.h" - - #include "config.h" - -diff -u tracker-0.6.6/src/trackerd/tracker-email-thunderbird.h tracker-0.6.6new/src/trackerd/tracker-email-thunderbird.h ---- tracker-0.6.6/src/trackerd/tracker-email-thunderbird.h 2008-01-15 05:05:03.000000000 +0100 -+++ tracker-0.6.6new/src/trackerd/tracker-email-thunderbird.h 2008-12-05 10:28:37.000000000 +0100 -@@ -22,7 +22,7 @@ - #define _TRACKER_MBOX_THUNDERBIRD_H_ - - #include --#include -+#include "gmime.h" - - #include "tracker-email-utils.h" - -diff -u tracker-0.6.6/src/trackerd/tracker-email-utils.h tracker-0.6.6new/src/trackerd/tracker-email-utils.h ---- tracker-0.6.6/src/trackerd/tracker-email-utils.h 2008-01-15 05:05:03.000000000 +0100 -+++ tracker-0.6.6new/src/trackerd/tracker-email-utils.h 2008-12-05 10:13:11.000000000 +0100 -@@ -21,7 +21,7 @@ - #ifndef _TRACKER_EMAIL_BASE_H_ - #define _TRACKER_EMAIL_BASE_H_ - --#include -+#include "gmime.h" - - #include "tracker-email.h" - diff --git a/source/gnome-extra/tracker/FrugalBuild b/source/gnome-extra/tracker/FrugalBuild index 621f485..701f546 100644 --- a/source/gnome-extra/tracker/FrugalBuild +++ b/source/gnome-extra/tracker/FrugalBuild @@ -3,12 +3,12 @@ # Contributor: AlexExtreme pkgname=tracker -pkgver=0.6.6 -pkgrel=3 +pkgver=0.7.24 +pkgrel=1 pkgdesc="Tracker is a first class object database, extensible tag/metadata database, search tool and indexer." -depends=('gtk+2>=2.18.0-1' 'dbus-glib>=0.76' 'sqlite3' 'gamin' \ +depends=('gtk+2>=2.19.4' 'dbus-glib>=0.76' 'sqlite3' 'gamin' \ 'poppler-glib>=0.8.0' 'libvorbis' 'libpng' 'libexif' 'libgsf' 'gstreamer' \ - 'gnome-desktop>=2.28.0-1' 'gnome-vfs>=2.24.0' 'exempi') + 'gnome-desktop>=2.29.0' 'gnome-vfs>=2.24.0' 'exempi' 'devicekit-power') makedepends=('intltool' 'perl-xml-parser' 'deskbar-applet') groups=('gnome-extra') conflicts=('tracker-search-tool') @@ -18,49 +18,20 @@ archs=('i686' 'x86_64') _F_gnome_desktop="y" _F_gnome_iconcache="y" Finclude gnome-scriptlet gnome -url="http://www.gnome.org/~jamiemcc/tracker/" -gmimevers=2.2.23 -source=($url/$pkgname-$pkgver.tar.gz trackerd.desktop trackerd_wrap \ - http://ftp.gnome.org/pub/gnome/sources/gmime/2.2/gmime-$gmimevers.tar.bz2 \ - disable_DependGmime.diff Fix_IncludeGmime.diff) - -sha1sums=('2a904a29454ec7513ac5ecb91b8bddf0cf92617b' \ - 'b6f38d8e9b40c8c78019d023caa688188fff3042' \ - '830d6539fdbadf51a468cd6fa37ef5416ef2bc84' \ - 'b7b59b47ae4ae4f03e9f3f1de62bc980c4baaf9e' \ - '2c3e4b1655f3eb662bdcbed150f988db655fb642' \ - 'e2234ad88171200a16969c04a0d659de1b1a9d13') - -export CFLAGS="$CFLAGS -fno-strict-aliasing" +sha1sums=('15073c99ea4268b918d06e3fc7005e8c60896ae7') unset MAKEFLAGS -#Don't forget to add gmime depend when bump package - -build() -{ - #for static build broken with new gmime - Fcd - mv ../gmime-$gmimevers/gmime/*.h src/trackerd/ || Fdie - mv ../gmime-$gmimevers/gmime/*.c src/trackerd/ || Fdie - mv ../gmime-$gmimevers/util/*.h src/trackerd/ || Fdie - mv ../gmime-$gmimevers/util/*.c src/trackerd/ || Fdie - Fpatchall || Fdie - libtoolize --force --copy || Fdie - aclocal || Fdie - autoconf || Fdie - automake || Fdie - - Fmake \ - --with-deskbar-applet-handler-dir=/usr/lib/deskbar-applet/handlers/ \ - --disable-warnings --disable-debug - Fmakeinstall +subpkgs=("${subpkgs[@]}" "$pkgname-nautilus") +subdescs=("${subdescs[@]}" "nautilus plugin tracker") +subdepends=("${subdepends[@]}" "nautilus") +subrodepends=("${subrodepends[@]}" "$pkgname") +subgroups=("${subgroups[@]}" 'gnome-extra') +subarchs=("${subarchs[@]}" 'i686 x86_64') - # Trackerd should run at login - Fmkdir /usr/share/gnome/autostart - cp $Fsrcdir/trackerd.desktop $Fdestdir/usr/share/gnome/autostart/ || Fdie - # Wrapper to make it STFU - Fexerel $Fsrcdir/trackerd_wrap /usr/bin/trackerd_wrap +build() { + Fbuild + Fsplit $pkgname-nautilus usr/lib/nautilus Fbuild_gnome_scriptlet } diff --git a/source/gnome-extra/tracker/trackerd.desktop b/source/gnome-extra/tracker/trackerd.desktop deleted file mode 100644 index 33f2a50..0000000 --- a/source/gnome-extra/tracker/trackerd.desktop +++ /dev/null @@ -1,10 +0,0 @@ -[Desktop Entry] -Encoding=UTF-8 -Name=Tracker -Comment=Index, tag, search and give metadata to your files -Icon=system-search -Exec=/usr/bin/trackerd_wrap -Terminal=false -Type=Application -Categories= -OnlyShowIn=GNOME; diff --git a/source/gnome-extra/tracker/trackerd_wrap b/source/gnome-extra/tracker/trackerd_wrap deleted file mode 100644 index 33db2d5..0000000 --- a/source/gnome-extra/tracker/trackerd_wrap +++ /dev/null @@ -1,3 +0,0 @@ -#!/bin/bash - -exec /usr/bin/trackerd >> /dev/null 2>&1 From vmiklos at frugalware.org Sat Mar 6 23:45:38 2010 From: vmiklos at frugalware.org (Miklos Vajna) Date: Sat, 6 Mar 2010 23:45:38 +0100 (CET) Subject: [Frugalware-git] frugalware-current: docs/upgrade: add the list of expected-to-be-replaced packages Message-ID: <20100306224538.5FFCF20E0002@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=d7102d46e50909666d73a79294f057f7d26f2648 commit d7102d46e50909666d73a79294f057f7d26f2648 Author: Miklos Vajna Date: Sat Mar 6 23:44:47 2010 +0100 docs/upgrade: add the list of expected-to-be-replaced packages diff --git a/docs/upgrade.txt b/docs/upgrade.txt index ec8b210..1a45259 100644 --- a/docs/upgrade.txt +++ b/docs/upgrade.txt @@ -28,11 +28,38 @@ Now it's time to upgrade the system itself: ---- # pacman-g2 -Su +:: Replace bluez-libs with frugalware/bluez? [Y/n] +:: Replace fast-user-switch-applet with frugalware/gdm? [Y/n] +:: Replace frugalrledit with frugalware/gservice? [Y/n] +:: Replace nuvola with frugalware/kdeartwork? [Y/n] +:: Replace dbus-qt3 with frugalware/kdebase-workspace? [Y/n] +:: Replace kdeaddons with frugalware/kdeplasma-addons? [Y/n] +:: Replace libungif with frugalware/libgif-libungif? [Y/n] +:: Replace perl-xml-libxml-common with frugalware/perl-xml-libxml? [Y/n] +:: Replace xf86-input-magictouch with frugalware/xf86-input-keyboard? [Y/n] +:: Replace xf86-input-microtouch with frugalware/xf86-input-keyboard? [Y/n] +:: Replace xf86-input-calcomp with frugalware/xf86-input-mouse? [Y/n] +:: Replace xf86-input-digitaledge with frugalware/xf86-input-mouse? [Y/n] +:: Replace xf86-input-dmc with frugalware/xf86-input-mouse? [Y/n] +:: Replace xf86-input-elo2300 with frugalware/xf86-input-mouse? [Y/n] +:: Replace xf86-input-jamstudio with frugalware/xf86-input-mouse? [Y/n] +:: Replace xf86-input-magellan with frugalware/xf86-input-mouse? [Y/n] +:: Replace xf86-input-palmax with frugalware/xf86-input-mouse? [Y/n] +:: Replace xf86-input-spaceorb with frugalware/xf86-input-mouse? [Y/n] +:: Replace xf86-input-summa with frugalware/xf86-input-mouse? [Y/n] +:: Replace xf86-input-tek4957 with frugalware/xf86-input-mouse? [Y/n] +:: Replace xf86-input-ur98 with frugalware/xf86-input-mouse? [Y/n] +:: Replace xf86-video-cyrix with frugalware/xf86-video-geode? [Y/n] +:: Replace xf86-video-via with frugalware/xf86-video-openchrome? [Y/n] +:: Replace xf86-video-vga with frugalware/xf86-video-vesa? [Y/n] +:: Replace lbxproxy with frugalware/xorg-server? [Y/n] +:: Replace proxymngr with frugalware/xorg-server? [Y/n] +:: Replace liblbxutil with frugalware/xorg-server? [Y/n] ---- -//You will be asked to replace the above packages automatically. These -//are normal and you are expected to answer 'Y' to these questions (or -//just hit ENTER). +You will be asked to replace the above packages automatically. These +are normal and you are expected to answer 'Y' to these questions (or +just hit ENTER). After this, the list of to-be-upgraded packages is displayed. Just hit enter and wait. Make some tea, it can take a while. :-) From vmiklos at frugalware.org Sun Mar 7 19:13:22 2010 From: vmiklos at frugalware.org (Miklos Vajna) Date: Sun, 7 Mar 2010 19:13:22 +0100 (CET) Subject: [Frugalware-git] homepage-ng: 1.2 announce draft Message-ID: <20100307181322.99E341240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=homepage-ng.git;a=commitdiff;h=f06202cb81e0014d3723acd6e9678802ac7d8e9f commit f06202cb81e0014d3723acd6e9678802ac7d8e9f Author: Miklos Vajna Date: Sun Mar 7 19:13:17 2010 +0100 1.2 announce draft diff --git a/frugalware/xml/news.xml b/frugalware/xml/news.xml index ec6662a..8259bfe 100644 --- a/frugalware/xml/news.xml +++ b/frugalware/xml/news.xml @@ -22,6 +22,33 @@ Example: Mon, 07 Aug 2006 12:34:56 -0600 --> + 163 + Frugalware 1.2 (Locris) released + Mon, 08 Mar 2010 08:51:34 +0100 + Miklos Vajna + 1 + Frugalware 1.2 Locris is released !
+ The Frugalware Developer Team is pleased to announce the immediate availability of Frugalware 1.2, our twelfth stable release.
+ No new features have been added since 1.2rc2, but 62 changes have been made to fix minor bugs. If you didn't follow the changes during the pre/rc releases, here are the most important changes since 1.1 in no particular order:
+
    +
  • Up to date packages: Linux kernel 2.6.32.8, GNU C library 2.11.1, Xorg 7.5, GNOME 2.28, KDE 4.3.5 to name a few major components.
  • +
  • KMS (Kernel Mode-Setting) is now enabled by default for Intel and Radeon cards.
  • +
  • PAM (Pluggable Authentication Modules) is now part of the base system.
  • +
  • Introduced devtmpfs: you can now exclude /dev from backups, along with /proc and /sys.
  • +
  • Removed several large games from the install images (CD/DVD) which means one less DVD or 4 less CDs.
  • +
  • We finally upgraded our KDE (and related) packages to the 4.x branch. The work started back in April 2009 and now we thought it's a good move to merge that testing repository.
  • +
  • This release comes with Xorg 7.5, see the upstream list of new features.
  • +
  • We've updated our bluez userspace stack to the 4.x branch, which allowed us to improve both GNOME and KDE bluetooth support.
  • +
+ Please refer to the Frugalware Locris ChangeLog for more information.
+ Download for i686, x86_64 and ppc: See our mirror list. Don't forget to check the integrity of the install images before burning!
+ NOTE: Click here to read more about what media you need for the installation.
+ If you are upgrading to Locris from our previous stable release (Getorin), please read the upgrade part of our documentation.
+ ]]> +
+
+ 162 Frugalware Newsletter Issue 58 Tue, 23 Feb 2010 22:52:55 +1000 From bouleetbil at frogdev.info Sun Mar 7 23:57:47 2010 From: bouleetbil at frogdev.info (bouleetbil) Date: Sun, 7 Mar 2010 23:57:47 +0100 (CET) Subject: [Frugalware-git] gnometesting: gnome-icon-theme-2.29.2-1-x86_64 *version bump Message-ID: <20100307225747.EAABA1240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=48ae731413b64df4242766526033c59dd0aa6659 commit 48ae731413b64df4242766526033c59dd0aa6659 Author: bouleetbil Date: Sun Mar 7 23:54:24 2010 +0100 gnome-icon-theme-2.29.2-1-x86_64 *version bump diff --git a/source/gnome/gnome-icon-theme/FrugalBuild b/source/gnome/gnome-icon-theme/FrugalBuild index a50b261..b26343d 100644 --- a/source/gnome/gnome-icon-theme/FrugalBuild +++ b/source/gnome/gnome-icon-theme/FrugalBuild @@ -2,8 +2,8 @@ # Maintainer: bouleetbil pkgname=gnome-icon-theme -pkgver=2.29.0 -pkgrel=2 +pkgver=2.29.2 +pkgrel=1 pkgdesc="Default icon theme for GNOME" url="http://www.gnome.org/" depends=('hicolor-icon-theme') @@ -11,12 +11,4 @@ makedepends=('perl-xml-parser' 'icon-naming-utils>=0.8.2' 'intltool') groups=('gnome' 'gnome-minimal') archs=('i686' 'x86_64' 'ppc') Finclude gnome -source=($source gnome-icon-theme.pc) -sha1sums=('2f6ec1550d2d1033acb75f1b29da2cfba6377b31' \ - '2920488af31c61fb7444c820d000954d453a9b50') - -build() { - Fbluild - Fmkdir usr/lib/pkgconfig - Fcp gnome-icon-theme.pc usr/lib/pkgconfig/ -} +sha1sums=('3fb57f37919d3a482115eb90a75e2bb2333ce5fd') diff --git a/source/gnome/gnome-icon-theme/gnome-icon-theme.pc b/source/gnome/gnome-icon-theme/gnome-icon-theme.pc deleted file mode 100644 index 74a08ea..0000000 --- a/source/gnome/gnome-icon-theme/gnome-icon-theme.pc +++ /dev/null @@ -1,7 +0,0 @@ -Name: gnome-icon-theme -Description: A collection of icons used as the basis for GNOME themes -Version: 2.29.0 -Requires: -Libs: -Cflags: - From vmiklos at frugalware.org Mon Mar 8 10:06:52 2010 From: vmiklos at frugalware.org (Miklos Vajna) Date: Mon, 8 Mar 2010 10:06:52 +0100 (CET) Subject: [Frugalware-git] homepage-ng: 1.2 final is out Message-ID: <20100308090652.A9CAE20E0002@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=homepage-ng.git;a=commitdiff;h=971ee0f2c2d9486abf0fb46b2e59e090681ff920 commit 971ee0f2c2d9486abf0fb46b2e59e090681ff920 Author: Miklos Vajna Date: Mon Mar 8 10:06:49 2010 +0100 1.2 final is out diff --git a/frugalware/xml/news.xml b/frugalware/xml/news.xml index 8259bfe..62d55e0 100644 --- a/frugalware/xml/news.xml +++ b/frugalware/xml/news.xml @@ -26,7 +26,7 @@ Example: Mon, 07 Aug 2006 12:34:56 -0600 --> Frugalware 1.2 (Locris) released Mon, 08 Mar 2010 08:51:34 +0100 Miklos Vajna - 1 + 0 Frugalware 1.2 Locris is released !
The Frugalware Developer Team is pleased to announce the immediate availability of Frugalware 1.2, our twelfth stable release.
diff --git a/frugalware/xml/roadmap.xml b/frugalware/xml/roadmap.xml index 53ad17f..062f253 100644 --- a/frugalware/xml/roadmap.xml +++ b/frugalware/xml/roadmap.xml @@ -27,7 +27,7 @@ Santanni. 1.2 Mar 8, 2010 - 0 + 1 rc2 From bouleetbil at frogdev.info Mon Mar 8 10:15:16 2010 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 8 Mar 2010 10:15:16 +0100 (CET) Subject: [Frugalware-git] frugalware-current: webkit-1.1.22-1-x86_64 *version bump Message-ID: <20100308091516.A9FB420E0002@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=4524cb46f08824915ff196d013afa941c1fe3013 commit 4524cb46f08824915ff196d013afa941c1fe3013 Author: bouleetbil Date: Mon Mar 8 10:13:55 2010 +0100 webkit-1.1.22-1-x86_64 *version bump diff --git a/source/xlib-extra/webkit/FrugalBuild b/source/xlib-extra/webkit/FrugalBuild index 8ec1d6c..e307e21 100644 --- a/source/xlib-extra/webkit/FrugalBuild +++ b/source/xlib-extra/webkit/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: bouleetbil pkgname=webkit -pkgver=1.1.21 +pkgver=1.1.22 pkgrel=1 pkgdesc="Open source web browser engine that's used by Safari" url="http://www.webkit.org" @@ -23,6 +23,6 @@ Fconfopts="${Fconfopts[@]} --enable-icon-database --enable-svg \ WEBKIT_LIB_DIR=/usr/lib \ --build=$CARCH-pc-linux-gnu \ --host=$CARCH-pc-linux-gnu" -sha1sums=('aee54ec994f4e0f0dcc7e048c73e1fed67aa2368') +sha1sums=('d8728515a23eec859a2d46e3ec8baf2820dcb72a') # optimization OK From bouleetbil at frogdev.info Mon Mar 8 10:16:27 2010 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 8 Mar 2010 10:16:27 +0100 (CET) Subject: [Frugalware-git] frugalware-current: menu-cache-0.3.2-1-i686 *version bump Message-ID: <20100308091627.E5ECF20E0002@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=469a21c206357fe7947988998f674d216ae6a0c3 commit 469a21c206357fe7947988998f674d216ae6a0c3 Author: bouleetbil Date: Mon Mar 8 10:31:14 2010 +0100 menu-cache-0.3.2-1-i686 *version bump diff --git a/source/xlib-extra/menu-cache/FrugalBuild b/source/xlib-extra/menu-cache/FrugalBuild index 5a28c68..21ca499 100644 --- a/source/xlib-extra/menu-cache/FrugalBuild +++ b/source/xlib-extra/menu-cache/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: bouleetbil pkgname=menu-cache -pkgver=0.2.6 +pkgver=0.3.2 pkgrel=1 pkgdesc="library creating and utilizing caches to speed up the manipulation for freedesktop.org defined application menus" depends=('glib2') @@ -13,6 +13,6 @@ archs=('i686' 'x86_64' 'ppc') _F_sourceforge_dirname="lxde" Finclude sourceforge url="http://lxde.org/" -sha1sums=('b747d5b563946bf5d76574bd51b4ef9238530128') +sha1sums=('1c92ae19326a18ca9ce588704a5d8e746a8ec244') # optimization OK From bouleetbil at frogdev.info Mon Mar 8 10:19:27 2010 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 8 Mar 2010 10:19:27 +0100 (CET) Subject: [Frugalware-git] frugalware-current: taglib-sharp-2.0.3.6-1-x86_64 *version bump Message-ID: <20100308091927.9AF9520E0002@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=8840714e6ec0bc38cc96c3e49efb5495929013e3 commit 8840714e6ec0bc38cc96c3e49efb5495929013e3 Author: bouleetbil Date: Mon Mar 8 10:19:33 2010 +0100 taglib-sharp-2.0.3.6-1-x86_64 *version bump diff --git a/source/apps-extra/taglib-sharp/FrugalBuild b/source/apps-extra/taglib-sharp/FrugalBuild index 823c47f..7eba540 100644 --- a/source/apps-extra/taglib-sharp/FrugalBuild +++ b/source/apps-extra/taglib-sharp/FrugalBuild @@ -3,11 +3,11 @@ # Contributor: bouleetbil pkgname=taglib-sharp -pkgver=2.0.3.3 +pkgver=2.0.3.6 pkgrel=1 pkgdesc="Mono/C# bindings for taglib" url="http://banshee-project.org/" -depends=('mono>=2.0.1' 'taglib') +depends=('mono>=2.6.1' 'taglib') groups=('apps-extra') archs=('i686' 'x86_64' 'ppc') up2date="lynx --dump http://download.banshee-project.org/taglib-sharp/ | grep LATEST-IS- | head -1 |cut -d '-' -f 3| cut -d ' ' -f 1" @@ -15,5 +15,5 @@ source=(http://download.banshee-project.org/$pkgname/$pkgver/$pkgname-$pkgver.ta _F_mono_aot=0 options=('scriptlet') Finclude mono -sha1sums=('e963057fc5bb0ff623c5a13ccccbbcfd4766c731') +sha1sums=('df4044260296d225e15794665859a4adeec64726') Fconfopts="$Fconfopts --disable-docs" From bouleetbil at frogdev.info Mon Mar 8 10:20:27 2010 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 8 Mar 2010 10:20:27 +0100 (CET) Subject: [Frugalware-git] frugalware-current: lxpanel-0.5.5-1-i686 *version bump Message-ID: <20100308092027.54E8E20E0002@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=92b9178d106880ecc322a65ffdbfb73e0cef02b1 commit 92b9178d106880ecc322a65ffdbfb73e0cef02b1 Author: bouleetbil Date: Mon Mar 8 10:35:23 2010 +0100 lxpanel-0.5.5-1-i686 *version bump diff --git a/source/x11-extra/lxpanel/FrugalBuild b/source/x11-extra/lxpanel/FrugalBuild index 1ebce9e..2eeb955 100644 --- a/source/x11-extra/lxpanel/FrugalBuild +++ b/source/x11-extra/lxpanel/FrugalBuild @@ -2,11 +2,11 @@ # Maintainer: bouleetbil pkgname=lxpanel -pkgver=0.5.4.1 +pkgver=0.5.5 pkgrel=1 pkgdesc="lxpanel is a light-weight X11 desktop panel for lxde" depends=('wireless_tools' 'gtk+2>=2.16.2-2' 'alsa-lib' 'libxpm' 'libxdamage' 'freetype2' \ - 'libxau' 'libxdmcp' 'libxext' 'libxml2' 'menu-cache' 'lxmenu-data') + 'libxau' 'libxdmcp' 'libxext' 'libxml2' 'menu-cache>=0.3.2' 'lxmenu-data') rodepends=('pcmanfm' 'lxsession-lite' 'gtk+2-engines' 'gtk+2-theme-frugalware') makedepends=('intltool') options=('scriptlet') @@ -16,6 +16,6 @@ _F_sourceforge_dirname="lxde" _F_sourceforge_prefix="lxpanel " Finclude sourceforge url="http://lxde.org/" -sha1sums=('c0130528b21e6be22b24eeeb4a525df0c52b2447') +sha1sums=('f3354f13f926226742b65c406988ba7c97009d79') # optimization OK From bouleetbil at frogdev.info Mon Mar 8 10:22:40 2010 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 8 Mar 2010 10:22:40 +0100 (CET) Subject: [Frugalware-git] frugalware-current: banshee-1.5.4-1-x86_64 *version bump Message-ID: <20100308092240.AB5A720E0002@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=a95f7e85ef79a390d8bd8d6f258853584379ac86 commit a95f7e85ef79a390d8bd8d6f258853584379ac86 Author: bouleetbil Date: Mon Mar 8 10:22:13 2010 +0100 banshee-1.5.4-1-x86_64 *version bump diff --git a/source/gnome-extra/banshee/FrugalBuild b/source/gnome-extra/banshee/FrugalBuild index 1ad96eb..3287f50 100644 --- a/source/gnome-extra/banshee/FrugalBuild +++ b/source/gnome-extra/banshee/FrugalBuild @@ -4,7 +4,7 @@ pkgname=banshee _F_archive_name=$pkgname-1 -pkgver=1.5.3 +pkgver=1.5.4 pkgrel=1 pkgdesc="Banshee is a Mono based media player for Gnome" url="http://banshee-project.org" @@ -12,7 +12,7 @@ depends=('gnome-sharp>=2.24.1-2' 'ipod-sharp>=0.8.5' 'sqlite3' 'hal' 'libmusicbr 'mono-zeroconf>=0.7.6' 'gst-plugins-base-cdparanoia' 'gst-plugins-base-gnomevfs' \ 'gst-plugins-good-gconf' 'gst-plugins-base-oil' 'podsleuth' 'boo' \ 'karma-sharp>=0.1.0-5' 'libmtp>=0.3.7' 'ndesk-dbus-glib' 'njb-sharp' 'taglib-sharp' 'mono-addins' \ - 'gnome-desktop-sharp>=2.24.0-1') + 'gnome-desktop-sharp>=2.24.0-1' 'webkit-sharp') conflicts=('banshee-official-plugins') provides=('banshee-official-plugins') replaces=('banshee-official-plugins') @@ -29,7 +29,7 @@ source=(http://banshee-project.org/files/$pkgname/$_F_archive_name-$pkgver.tar.b Fconfopts="$Fconfopts --disable-docs --enable-avahi --enable-ipod \ --enable-karma --enable-mtp --enable-external-ndesk-dbus \ --enable-njb --disable-debug" -sha1sums=('9d1c40a59b7a05e42ed4c2270acf2d58797e6765') +sha1sums=('97a8bac07484de663911b81a1ceed29049173c23') _F_cd_path=$_F_archive_name-$pkgver build() { From bouleetbil at frogdev.info Mon Mar 8 10:23:58 2010 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 8 Mar 2010 10:23:58 +0100 (CET) Subject: [Frugalware-git] frugalware-current: banshee-community-extensions-1.5.4-1-x86_64 *new package Message-ID: <20100308092358.755F920E0002@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=00249ac5723afc8715082d41b1028fd855dee27e commit 00249ac5723afc8715082d41b1028fd855dee27e Author: bouleetbil Date: Mon Mar 8 10:24:22 2010 +0100 banshee-community-extensions-1.5.4-1-x86_64 *new package diff --git a/source/gnome-extra/banshee-community-extensions/FrugalBuild b/source/gnome-extra/banshee-community-extensions/FrugalBuild new file mode 100644 index 0000000..1075b9e --- /dev/null +++ b/source/gnome-extra/banshee-community-extensions/FrugalBuild @@ -0,0 +1,26 @@ +# Compiling Time: 0.36 SBU +# Maintainer: bouleetbil + +pkgname=banshee-community-extensions +pkgver=1.5.4 +pkgrel=1 +pkgdesc="Banshee Community Extensions" +url="http://banshee-project.org" +depends=('banshee>=1.5.4' 'libsamplerate' 'lirc' 'webkit-sharp') +makedepends=('perl-xml-parser' 'intltool') +groups=('gnome-extra') +archs=('i686' 'x86_64') +options=('scriptlet') +_F_mono_aot=0 +Finclude mono +up2date="lynx -dump $url/download/ | Flasttarbz2" +source=(http://download.banshee-project.org/$pkgname/$pkgver/$pkgname-$pkgver.tar.bz2) +sha1sums=('d5be3d643e6902e5ab755da35e9ddd39f1711050') +Fconfopts="$Fconfopts --enable-gnome \ + --enable-release --enable-alarmclock \ + --disable-awn --disable-clutterflow \ + --enable-lcd --enable-lirc \ + --enable-liveradio --enable-lyrics \ + --enable-mirage --enable-radiostationfetcher --enable-streamrecorder" + +# optimization OK From bouleetbil at frogdev.info Mon Mar 8 10:25:14 2010 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 8 Mar 2010 10:25:14 +0100 (CET) Subject: [Frugalware-git] frugalware-current: cairo-1.8.10-1-x86_64 *version bump Message-ID: <20100308092514.7573920E0002@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=72f51177e23248281706a5ff713c8a0fde4a6db4 commit 72f51177e23248281706a5ff713c8a0fde4a6db4 Author: bouleetbil Date: Mon Mar 8 10:25:28 2010 +0100 cairo-1.8.10-1-x86_64 *version bump diff --git a/source/xlib/cairo/FrugalBuild b/source/xlib/cairo/FrugalBuild index 2959942..7476541 100644 --- a/source/xlib/cairo/FrugalBuild +++ b/source/xlib/cairo/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: Christian Hamar alias krix pkgname=cairo -pkgver=1.8.8 +pkgver=1.8.10 pkgrel=1 pkgdesc="A vector graphics library with cross-device output support" url="http://cairographics.org" @@ -15,6 +15,6 @@ up2date="lynx -dump 'http://cairographics.org/releases/?C=D;O=A'|grep -m1 '/LATE source=($url/releases/$pkgname-$pkgver.tar.gz) options=('scriptlet') Fconfopts="$Fconfopts --enable-glitz --enable-gtk-doc --enable-pdf --enable-ps --enable-xcb" -sha1sums=('e4b8b219427d1ca3dc95f5f44914dce1ae0c3766') +sha1sums=('fd5e8ca82ff0e8542ea4c51612cad387f2a49df3') # optimization OK From bouleetbil at frogdev.info Mon Mar 8 10:26:46 2010 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 8 Mar 2010 10:26:46 +0100 (CET) Subject: [Frugalware-git] frugalware-current: midori-0.2.3-1-x86_64 *version bump Message-ID: <20100308092646.5CD2A20E0002@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=dc3ab2938ca4ed0fba14e7974a4313e4908cfa06 commit dc3ab2938ca4ed0fba14e7974a4313e4908cfa06 Author: bouleetbil Date: Mon Mar 8 10:27:03 2010 +0100 midori-0.2.3-1-x86_64 *version bump diff --git a/source/xapps-extra/midori/FrugalBuild b/source/xapps-extra/midori/FrugalBuild index d59dad4..ac6ad7f 100644 --- a/source/xapps-extra/midori/FrugalBuild +++ b/source/xapps-extra/midori/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: bouleetbil pkgname=midori -pkgver=0.2.2 +pkgver=0.2.3 pkgrel=1 url="http://www.twotoasts.de/index.php?/pages/midori_summary.html" up2date="lynx --dump --source $url | Flasttarbz2" @@ -20,7 +20,7 @@ _F_desktop_icon="/usr/share/icons/hicolor/22x22/apps/midori.png" _F_desktop_categories="Network;WebBrowser;" options=('scriptlet') Finclude gnome-scriptlet -sha1sums=('053718ef0c907d5fb905d3cd71b053460a9b1927' \ +sha1sums=('44e2558681d9a31b1c1203064445a2a36ab42a91' \ '22cd3ef3c214770774b22e370fdb8a83bb5a7932' \ '0dade4dbb55953dc1fa10d21a7b8d8dd4c635fa7') Fconfopts="--prefix=$Fprefix" From bouleetbil at frogdev.info Mon Mar 8 10:28:02 2010 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 8 Mar 2010 10:28:02 +0100 (CET) Subject: [Frugalware-git] frugalware-current: syslinux-3.85-1-x86_64 *version bump *added x86_64 to archs() Message-ID: <20100308092802.7086720E0002@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=254d0af1adc74b8a2f34dc40f872b08ee0227e28 commit 254d0af1adc74b8a2f34dc40f872b08ee0227e28 Author: bouleetbil Date: Mon Mar 8 10:28:16 2010 +0100 syslinux-3.85-1-x86_64 *version bump *added x86_64 to archs() diff --git a/source/base-extra/syslinux/FrugalBuild b/source/base-extra/syslinux/FrugalBuild index 5232d90..5137114 100644 --- a/source/base-extra/syslinux/FrugalBuild +++ b/source/base-extra/syslinux/FrugalBuild @@ -2,14 +2,14 @@ # Maintainer: bouleetbil pkgname=syslinux -pkgver=3.84 +pkgver=3.85 pkgrel=1 pkgdesc="bootloaders for MS-DOS FAT filesystems" url="http://syslinux.zytor.com" depends=('coreutils' 'nasm') rodepends=('mbrsyslinux') groups=('base-extra') -archs=('i686') +archs=('i686' 'x86_64') up2date="Flasttar www.kernel.org/pub/linux/utils/boot/$pkgname/" source=(http://www.kernel.org/pub/linux/utils/boot/$pkgname/$pkgname-$pkgver.tar.gz \ README.Frugalware) From bouleetbil at frogdev.info Mon Mar 8 10:30:33 2010 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 8 Mar 2010 10:30:33 +0100 (CET) Subject: [Frugalware-git] frugalware-current: libgda-4.1.4-1-x86_64 *version bump *disable broken docs Message-ID: <20100308093033.659D020E0002@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=77556eacd0406ac91998ca2d1259e05075e371a5 commit 77556eacd0406ac91998ca2d1259e05075e371a5 Author: bouleetbil Date: Mon Mar 8 10:29:38 2010 +0100 libgda-4.1.4-1-x86_64 *version bump *disable broken docs diff --git a/source/lib/libgda/FrugalBuild b/source/lib/libgda/FrugalBuild index 6ec915f..787e589 100644 --- a/source/lib/libgda/FrugalBuild +++ b/source/lib/libgda/FrugalBuild @@ -3,7 +3,7 @@ # Contributor: AlexExtreme pkgname=libgda -pkgver=4.1.3 +pkgver=4.1.4 pkgrel=1 pkgdesc="An interface to the GDA architecture" url="http://www.gnome-db.org/" @@ -11,11 +11,11 @@ depends=('glib2' 'libxslt' 'readline' 'popt' 'libpq' 'libmysqlclient>=5.1.34' 'l makedepends=('intltool' 'perl-xml-parser' 'db>=4.7.25' 'unixodbc' 'gtk-doc' 'openldap' 'mysql>=5.1.34' 'postgresql' 'gnome-common') groups=('lib') archs=('i686' 'x86_64' 'ppc') -_F_gnome_devel="y" _F_gnome_scrollkeeper="y" -options=('scriptlet' 'force') +_F_gnome_devel="y" +options=('scriptlet') Finclude gnome gnome-scriptlet -Fconfopts="$Fconfopts --enable-gtk-doc --with-sqlite=/usr" -sha1sums=('519c4d5de4c00f2473e121b6452b45aa2daf1e7b') +Fconfopts="$Fconfopts --disable-gtk-doc --with-sqlite=/usr" +sha1sums=('b18c1b7d3114ca370a54bb7bbd6bbb931509a46a') # optimization OK From bouleetbil at frogdev.info Mon Mar 8 10:32:15 2010 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 8 Mar 2010 10:32:15 +0100 (CET) Subject: [Frugalware-git] frugalware-current: telepathy-gabble-0.9.6-1-x86_64 *version bump Message-ID: <20100308093215.E737920E0002@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=174f3c62d8b9de4e3c721a7edce45aa7af31729b commit 174f3c62d8b9de4e3c721a7edce45aa7af31729b Author: bouleetbil Date: Mon Mar 8 10:32:28 2010 +0100 telepathy-gabble-0.9.6-1-x86_64 *version bump diff --git a/source/lib-extra/telepathy-gabble/FrugalBuild b/source/lib-extra/telepathy-gabble/FrugalBuild index 8ceb131..6e47fbd 100644 --- a/source/lib-extra/telepathy-gabble/FrugalBuild +++ b/source/lib-extra/telepathy-gabble/FrugalBuild @@ -3,7 +3,7 @@ # Contributor: AlexExtreme pkgname=telepathy-gabble -pkgver=0.9.4 +pkgver=0.9.6 pkgrel=1 pkgdesc="Telepathy is a D-Bus framework for unifying real time communication." url="http://telepathy.freedesktop.org/" @@ -14,6 +14,6 @@ groups=('lib-extra') archs=('i686' 'x86_64' 'ppc') up2date="lynx -dump http://telepathy.freedesktop.org/releases/telepathy-gabble | Flasttar" source=(http://telepathy.freedesktop.org/releases/telepathy-gabble/$pkgname-$pkgver.tar.gz) -sha1sums=('f04ad606c2e7c856ad0ffa106114f78a77d1caa5') +sha1sums=('bffad62058d3cffc2cf07b9578623be2e5342e67') # optimization OK From bouleetbil at frogdev.info Mon Mar 8 10:33:46 2010 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 8 Mar 2010 10:33:46 +0100 (CET) Subject: [Frugalware-git] frugalware-current: syslinux-3.85-1-x86_64 *forgot x86_64 to subarchs() Message-ID: <20100308093346.6FF4A20E0002@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=d48950d304f991b9e0c06dd1092f43aae3cfbe59 commit d48950d304f991b9e0c06dd1092f43aae3cfbe59 Author: bouleetbil Date: Mon Mar 8 10:33:44 2010 +0100 syslinux-3.85-1-x86_64 *forgot x86_64 to subarchs() diff --git a/source/base-extra/syslinux/FrugalBuild b/source/base-extra/syslinux/FrugalBuild index 5137114..32f91a2 100644 --- a/source/base-extra/syslinux/FrugalBuild +++ b/source/base-extra/syslinux/FrugalBuild @@ -21,7 +21,7 @@ subdescs=('EXTLINUX is a new syslinux derivative, which boots from a Linux ext2/ subdepends=('coreutils nasm' '') subrodepends=('mbrsyslinux' '') subgroups=('base-extra' 'base-extra') -subarchs=('i686' 'i686') +subarchs=('i686 x86_64' 'i686 x86_64') build() { Fcd From bouleetbil at frogdev.info Mon Mar 8 10:34:13 2010 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 8 Mar 2010 10:34:13 +0100 (CET) Subject: [Frugalware-git] frugalware-current: telepathy-idle-0.1.6-1-x86_64 *version bump Message-ID: <20100308093413.A9BB420E0002@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=977e35287db1485d469c7dee47bf63d06bd93bf0 commit 977e35287db1485d469c7dee47bf63d06bd93bf0 Author: bouleetbil Date: Mon Mar 8 10:34:30 2010 +0100 telepathy-idle-0.1.6-1-x86_64 *version bump diff --git a/source/lib-extra/telepathy-idle/FrugalBuild b/source/lib-extra/telepathy-idle/FrugalBuild index ae4881b..90ed523 100644 --- a/source/lib-extra/telepathy-idle/FrugalBuild +++ b/source/lib-extra/telepathy-idle/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: bouleetbil pkgname=telepathy-idle -pkgver=0.1.5 +pkgver=0.1.6 pkgrel=1 pkgdesc="Full-featured IRC connection manager for Telepathy" url="http://telepathy.freedesktop.org/releases/$pkgname" @@ -11,6 +11,6 @@ source=("http://telepathy.freedesktop.org/releases/$pkgname/$pkgname-$pkgver.tar depends=('dbus-glib' 'openssl' 'telepathy-glib' 'libxslt') groups=('lib-extra') archs=('i686' 'x86_64' 'ppc') -sha1sums=('3cc6c735aeab7a3923b1fc81a6f8d5f5a47bda09') +sha1sums=('445cb728172e4a82a350cec1d562d8adcfc271f3') # optimization OK From bouleetbil at frogdev.info Mon Mar 8 10:35:14 2010 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 8 Mar 2010 10:35:14 +0100 (CET) Subject: [Frugalware-git] frugalware-current: telepathy-sofiasip-0.6.1-1-x86_64 *version bump Message-ID: <20100308093514.4251F20E0002@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=ce13e0e02cce5910b1f61695f3c785a1fafc8663 commit ce13e0e02cce5910b1f61695f3c785a1fafc8663 Author: bouleetbil Date: Mon Mar 8 10:35:37 2010 +0100 telepathy-sofiasip-0.6.1-1-x86_64 *version bump diff --git a/source/lib-extra/telepathy-sofiasip/FrugalBuild b/source/lib-extra/telepathy-sofiasip/FrugalBuild index 94c2172..bf1e147 100644 --- a/source/lib-extra/telepathy-sofiasip/FrugalBuild +++ b/source/lib-extra/telepathy-sofiasip/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: bouleetbil pkgname=telepathy-sofiasip -pkgver=0.6.0 +pkgver=0.6.1 pkgrel=1 pkgdesc="A SIP connection manager for Telepathy based around the Sofia-SIP library." url="http://telepathy.freedesktop.org/" @@ -11,6 +11,6 @@ source=("http://telepathy.freedesktop.org/releases/$pkgname/$pkgname-$pkgver.tar depends=('libtelepathy' 'sofia-sip') groups=('lib-extra') archs=('i686' 'x86_64') -sha1sums=('1193544ea0112e51fe5e0170e5415e5c33a553f5') +sha1sums=('bb4a66ed9acd9662b92a87612067568da1a412af') # optimization OK From bouleetbil at frogdev.info Mon Mar 8 10:35:54 2010 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 8 Mar 2010 10:35:54 +0100 (CET) Subject: [Frugalware-git] frugalware-current: lxterminal-0.1.7-1-x86_64 *version bump Message-ID: <20100308093554.BC68F20E0002@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=e0230436a89329b16dfd7b67a50779ed416ecd18 commit e0230436a89329b16dfd7b67a50779ed416ecd18 Author: bouleetbil Date: Mon Mar 8 10:36:19 2010 +0100 lxterminal-0.1.7-1-x86_64 *version bump diff --git a/source/xapps-extra/lxterminal/FrugalBuild b/source/xapps-extra/lxterminal/FrugalBuild index f9ef6a0..3a05118 100644 --- a/source/xapps-extra/lxterminal/FrugalBuild +++ b/source/xapps-extra/lxterminal/FrugalBuild @@ -2,8 +2,8 @@ # Maintainer: bouleetbil pkgname=lxterminal -pkgver=0.1.6 -pkgrel=3 +pkgver=0.1.7 +pkgrel=1 pkgdesc="Desktop-independent VTE-based terminal emulator for LXDE" depends=('gtk+2>=2.16.2-2' 'vte>=0.22.0' 'libxft' 'libxau' 'libxdmcp' 'libice' \ 'ncurses' 'libxdamage' 'libxml2') @@ -14,6 +14,6 @@ archs=('i686' 'x86_64' 'ppc') _F_sourceforge_dirname="lxde" Finclude sourceforge url="http://lxde.org/" -sha1sums=('f2109f42d72ef43ab293128469dc561c2a4ce09b') +sha1sums=('b689f753238faf610a361a524eca24e1583b7f94') # optimization OK From bouleetbil at frogdev.info Mon Mar 8 10:37:00 2010 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 8 Mar 2010 10:37:00 +0100 (CET) Subject: [Frugalware-git] frugalware-current: gstreamer-0.10.27-1-x86_64 *version bump Message-ID: <20100308093700.0F2BC20E0002@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=d11376e1883c5895a8495daeb997482bb0c86b2a commit d11376e1883c5895a8495daeb997482bb0c86b2a Author: bouleetbil Date: Mon Mar 8 10:36:51 2010 +0100 gstreamer-0.10.27-1-x86_64 *version bump diff --git a/source/xmultimedia/gstreamer/FrugalBuild b/source/xmultimedia/gstreamer/FrugalBuild index 56808a4..6e1c011 100644 --- a/source/xmultimedia/gstreamer/FrugalBuild +++ b/source/xmultimedia/gstreamer/FrugalBuild @@ -3,7 +3,7 @@ # Contributor: Christian Hamar alias krix pkgname=gstreamer -pkgver=0.10.26 +pkgver=0.10.27 pkgrel=1 pkgdesc="Open Source Multimedia Framework" url="http://gstreamer.freedesktop.org/" @@ -40,7 +40,7 @@ build() Fsplit $pkgname-docs usr/share/gtk-doc } -sha1sums=('868dccf7d2a844af88fd2fcf05c92822285fd9ab' \ +sha1sums=('3be82307d051ed04253da4e1a6bfe78b4bd489c0' \ 'b1a04cc8052418384e2f3a5de925abaeac8110ae') # optimization OK From bouleetbil at frogdev.info Mon Mar 8 10:56:47 2010 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 8 Mar 2010 10:56:47 +0100 (CET) Subject: [Frugalware-git] frugalware-current: xmms2-0.7-1-x86_64 *version bump Message-ID: <20100308095647.B8EAA20E0002@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=177e00f69aaab204d0289e28a616d8acbc341791 commit 177e00f69aaab204d0289e28a616d8acbc341791 Author: bouleetbil Date: Mon Mar 8 10:56:20 2010 +0100 xmms2-0.7-1-x86_64 *version bump diff --git a/source/xmultimedia-extra/xmms2/FrugalBuild b/source/xmultimedia-extra/xmms2/FrugalBuild index ab52f0f..783384a 100644 --- a/source/xmultimedia-extra/xmms2/FrugalBuild +++ b/source/xmultimedia-extra/xmms2/FrugalBuild @@ -2,9 +2,9 @@ # Maintainer: Priyank Gosalia pkgname=xmms2 -pkgver=0.6 -relname="DrMattDestruction" -pkgrel=3 +pkgver=0.7 +relname="DrNo" +pkgrel=1 pkgdesc="A complete rewrite of the popular music player." _F_sourceforge_ext=".tar.bz2" Finclude sourceforge @@ -16,14 +16,14 @@ depends=('alsa-lib' 'libmad' 'libvorbis' 'curl>=7.19.0' 'faad2>=2.7' \ makedepends=('glib2' 'sqlite3' 'libboost-mt>=1.37.0' 'boost>=1.37.0' 'perl' 'pyrex' 'ruby') groups=('xmultimedia-extra') archs=('i686' 'x86_64' 'ppc') -source=(${source/$pkgver/${pkgver}${relname}} gcc43.patch) +source=(${source/$pkgver/${pkgver}${relname}}) options=('scriptlet') -sha1sums=('524b64d2f8db1d7d84449566a46f6b56ad4ceabb' \ - '61a1a1cc4c256031a12458adf8262fd4edb963e9') +sha1sums=('4999568654a0d2aba84bda4b22145058bbd3fcb2') 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=("$pkgname=$pkgver libboost-mt>=1.35.0" "$pkgname=$pkgver perl" "$pkgname=$pkgver pyrex" "$pkgname=$pkgver ruby") +subdepends=("libboost-mt>=1.35.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 ppc' 'i686 x86_64 ppc' 'i686 x86_64 ppc' 'i686 x86_64 ppc') Finclude python From bouleetbil at frogdev.info Mon Mar 8 10:58:55 2010 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 8 Mar 2010 10:58:55 +0100 (CET) Subject: [Frugalware-git] frugalware-current: gst-plugins-base-0.10.27-1-x86_64 *version bump Message-ID: <20100308095855.884B720E0002@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=747bfe770c27be89522aba3926429555ad13d442 commit 747bfe770c27be89522aba3926429555ad13d442 Author: bouleetbil Date: Mon Mar 8 10:57:52 2010 +0100 gst-plugins-base-0.10.27-1-x86_64 *version bump diff --git a/source/xmultimedia/gst-plugins-base/FrugalBuild b/source/xmultimedia/gst-plugins-base/FrugalBuild index b749b0b..574bd51 100644 --- a/source/xmultimedia/gst-plugins-base/FrugalBuild +++ b/source/xmultimedia/gst-plugins-base/FrugalBuild @@ -3,11 +3,11 @@ # Maintainer: bouleetbil pkgname=gst-plugins-base -pkgver=0.10.26 +pkgver=0.10.27 pkgrel=1 pkgdesc="Plugins for GStreamer" url="http://gstreamer.freedesktop.org/" -depends=('libxv' 'libsm' 'gstreamer>=0.10.26') +depends=('libxv' 'libsm' 'gstreamer>=0.10.27') rodepends=('libmms' 'hermes' 'ortp') makedepends=('gtk-doc' 'pyxml' 'gnome-vfs>=2.22.0' 'cdparanoia' 'pango>=1.24.2-2' 'liboil>=0.3.14' \ 'alsa-lib' 'libtheora' 'fontconfig' 'dbus-glib>=0.74-2' 'avahi-glib>=0.6.14-2' \ @@ -18,7 +18,7 @@ options=('scriptlet') replaces=('gst-plugins') up2date="lynx -dump $url/src/$pkgname/|grep '.tar.bz2$'|sort -n -r|head -n 1|sed 's/.*-\(.*\).t.*/\1/'" source=($url/src/$pkgname/$pkgname-$pkgver.tar.bz2) -sha1sums=('33f6be03b4baf199dbb13f12d8a4f4749f79843f') +sha1sums=('ab0842a20c688f39eb43e4bc13d72d754d674e93') subpkgs=("$pkgname-gnomevfs" "$pkgname-cdparanoia" "$pkgname-pango" "$pkgname-alsa" \ "$pkgname-theora" "$pkgname-oil" "$pkgname-libvisual" "$pkgname-ogg" "$pkgname-vorbis" \ From bouleetbil at frogdev.info Mon Mar 8 11:00:10 2010 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 8 Mar 2010 11:00:10 +0100 (CET) Subject: [Frugalware-git] frugalware-current: xmms2-scrobbler-0.4.0-2-x86_64 *rebuild with xmms2 0.7 Message-ID: <20100308100010.A66D820E0002@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=1e52a639801ea2b957915937eceb929427529662 commit 1e52a639801ea2b957915937eceb929427529662 Author: bouleetbil Date: Mon Mar 8 11:00:25 2010 +0100 xmms2-scrobbler-0.4.0-2-x86_64 *rebuild with xmms2 0.7 diff --git a/source/apps-extra/xmms2-scrobbler/FrugalBuild b/source/apps-extra/xmms2-scrobbler/FrugalBuild index f19137e..95fd0fc 100644 --- a/source/apps-extra/xmms2-scrobbler/FrugalBuild +++ b/source/apps-extra/xmms2-scrobbler/FrugalBuild @@ -3,10 +3,10 @@ pkgname=xmms2-scrobbler pkgver=0.4.0 -pkgrel=1 +pkgrel=2 pkgdesc="XMMS2-Scrobbler is an Audioscrobbler client for XMMS2." url="http://code-monkey.de/pages/xmms2-scrobbler" -depends=('xmms2=0.6') +depends=('xmms2>=0.7') groups=('apps-extra') archs=('i686' 'x86_64') up2date="Flasttar $url" From bouleetbil at frogdev.info Mon Mar 8 11:05:10 2010 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 8 Mar 2010 11:05:10 +0100 (CET) Subject: [Frugalware-git] frugalware-current: lxmusic-0.4.3-1-x86_64 *version bump Message-ID: <20100308100510.81B6220E0002@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=9c4376a0401a8a09652530164d2e5a0a83e01c8a commit 9c4376a0401a8a09652530164d2e5a0a83e01c8a Author: bouleetbil Date: Mon Mar 8 11:05:29 2010 +0100 lxmusic-0.4.3-1-x86_64 *version bump diff --git a/source/xapps-extra/lxmusic/FrugalBuild b/source/xapps-extra/lxmusic/FrugalBuild index 65b1f47..ac7375b 100644 --- a/source/xapps-extra/lxmusic/FrugalBuild +++ b/source/xapps-extra/lxmusic/FrugalBuild @@ -2,10 +2,10 @@ # Maintainer: bouleetbil pkgname=lxmusic -pkgver=0.4.2 +pkgver=0.4.3 pkgrel=1 pkgdesc="A xmms2 music player" -depends=('xmms2-libs-c++>=0.6' 'glibc' 'libxau>=1.0.4' 'libxdmcp' 'freetype2' 'libxext>=1.0.5-3' 'libxdamage' 'libxml2' \ +depends=('xmms2-libs-c++>=0.7' 'glibc' 'libxau>=1.0.4' 'libxdmcp' 'freetype2' 'libxext>=1.0.5-3' 'libxdamage' 'libxml2' \ 'gtk+2>=2.16.2-2') makedepends=('intltool') options=('scriptlet') @@ -17,6 +17,6 @@ _F_gnome_desktop="y" _F_sourceforge_dirname="lxde" Finclude sourceforge url="http://lxde.org/" -sha1sums=('ffb2a3a2b0fb54103228b6892137915dad7263e2') +sha1sums=('af941435919b6d533640b8d63bb13788f5bf34a8') # optimization OK From bouleetbil at frogdev.info Mon Mar 8 11:13:16 2010 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 8 Mar 2010 11:13:16 +0100 (CET) Subject: [Frugalware-git] frugalware-current: connman-0.50-1-x86_64 *version bump Message-ID: <20100308101316.1130A20E0002@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=e91e2e2f549fe85622fec4edba1e1d47acc0ea42 commit e91e2e2f549fe85622fec4edba1e1d47acc0ea42 Author: bouleetbil Date: Mon Mar 8 11:13:35 2010 +0100 connman-0.50-1-x86_64 *version bump diff --git a/source/network-extra/connman/FrugalBuild b/source/network-extra/connman/FrugalBuild index 7b112a9..8e21b60 100644 --- a/source/network-extra/connman/FrugalBuild +++ b/source/network-extra/connman/FrugalBuild @@ -2,8 +2,8 @@ # Maintainer: bouleetbil pkgname=connman -pkgver=0.49 -pkgrel=2 +pkgver=0.50 +pkgrel=1 url="http://connman.net/" pkgdesc="open source connection manager" up2date="Flasttar http://www.kernel.org/pub/linux/network/connman/" @@ -11,7 +11,7 @@ source=(http://www.kernel.org/pub/linux/network/connman/$pkgname-$pkgver.tar.gz depends=('wpa_supplicant' 'bluez>=4.61' 'dhclient' 'polkit' 'udev' 'ppp' 'wireless_tools') groups=('network-extra') archs=('i686' 'x86_64') -sha1sums=('e5f4d1caceb6c0f5d8ca7a360c080652f269d951' \ +sha1sums=('f437648454dadde07695723fa1e15e3e9fdff1ec' \ '5e37747152eb40a5896ca7d0f084ec15e8b0a59d') Fconfopts="$Fconfopts \ --enable-threads \ From bouleetbil at frogdev.info Mon Mar 8 11:19:58 2010 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 8 Mar 2010 11:19:58 +0100 (CET) Subject: [Frugalware-git] frugalware-current: telepathy-haze-0.3.4-1-x86_64 *version bump Message-ID: <20100308101958.B194220E0002@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=b9ef4391db0e0d1309afe053582c8b2b975c5037 commit b9ef4391db0e0d1309afe053582c8b2b975c5037 Author: bouleetbil Date: Mon Mar 8 11:20:17 2010 +0100 telepathy-haze-0.3.4-1-x86_64 *version bump diff --git a/source/lib-extra/telepathy-haze/FrugalBuild b/source/lib-extra/telepathy-haze/FrugalBuild index 1227590..be1a617 100644 --- a/source/lib-extra/telepathy-haze/FrugalBuild +++ b/source/lib-extra/telepathy-haze/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: bouleetbil pkgname=telepathy-haze -pkgver=0.3.3 +pkgver=0.3.4 pkgrel=1 pkgdesc="A telepathy connection manager that use libpurple" url="http://telepathy.freedesktop.org/releases/$pkgname" @@ -11,6 +11,6 @@ source=("http://telepathy.freedesktop.org/releases/$pkgname/$pkgname-$pkgver.tar depends=('telepathy-glib' 'libpurple') groups=('lib-extra') archs=('i686' 'x86_64' 'ppc') -sha1sums=('00a658250ec891763142941f6eea31374d10b58d') +sha1sums=('7fe23e8b319f6a1c887b380327543ae601486db3') # optimization OK From bouleetbil at frogdev.info Mon Mar 8 11:23:15 2010 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 8 Mar 2010 11:23:15 +0100 (CET) Subject: [Frugalware-git] frugalware-current: gst-plugins-good-0.10.19-1-x86_64 *version bump Message-ID: <20100308102315.31DC120E0002@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=1d8d56da206f67a3e9bba1d9700dcc414db206f4 commit 1d8d56da206f67a3e9bba1d9700dcc414db206f4 Author: bouleetbil Date: Mon Mar 8 11:21:09 2010 +0100 gst-plugins-good-0.10.19-1-x86_64 *version bump diff --git a/source/xmultimedia/gst-plugins-good/FrugalBuild b/source/xmultimedia/gst-plugins-good/FrugalBuild index 5623304..2f57e80 100644 --- a/source/xmultimedia/gst-plugins-good/FrugalBuild +++ b/source/xmultimedia/gst-plugins-good/FrugalBuild @@ -3,11 +3,11 @@ # Contributor: Christian Hamar alias krix pkgname=gst-plugins-good -pkgver=0.10.18 +pkgver=0.10.19 pkgrel=1 pkgdesc="Plugins for GStreamer (Good)" url="http://gstreamer.freedesktop.org/" -depends=('gst-plugins-base>=0.10.26' 'gstreamer>=0.10.26' 'zlib') +depends=('gst-plugins-base>=0.10.27' 'gstreamer>=0.10.27' 'zlib') makedepends=('gtk-doc' 'pyxml' 'gconf>=2.28.0' 'esd' 'ladspa_sdk' 'speex>=1.2beta3.2' 'libshout' 'aalib' \ 'libjpeg' 'flac>=1.1.3' 'libavc1394' 'libpng' 'libdv' 'cairo' \ 'liboil>=0.3.14' 'taglib>=1.5' 'hal>=0.5.7.1-3' 'libiec61883' 'libcaca' \ @@ -98,6 +98,6 @@ build() { Fsplit $pkgname-libsoup usr/lib/gstreamer-0.10/libgstsouphttpsrc.* Fsplit $pkgname-docs usr/share/gtk-doc } -sha1sums=('74a463ed6e300598bd14f3f8915f2765f5420bd5') +sha1sums=('f4be7dc0bcb3dc86c94ca4642a31d567cdd78828') # optimization OK From bouleetbil at frogdev.info Mon Mar 8 11:24:00 2010 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 8 Mar 2010 11:24:00 +0100 (CET) Subject: [Frugalware-git] frugalware-current: flickcurl-1.17-1-x86_64 *version bump Message-ID: <20100308102400.DE83E20E0002@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=2eaac396755349f4f26c448799014cceb9c82542 commit 2eaac396755349f4f26c448799014cceb9c82542 Author: bouleetbil Date: Mon Mar 8 11:24:13 2010 +0100 flickcurl-1.17-1-x86_64 *version bump diff --git a/source/lib-extra/flickcurl/FrugalBuild b/source/lib-extra/flickcurl/FrugalBuild index 7e430e1..ea6df3e 100644 --- a/source/lib-extra/flickcurl/FrugalBuild +++ b/source/lib-extra/flickcurl/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: bouleetbil pkgname=flickcurl -pkgver=1.16 +pkgver=1.17 pkgrel=1 url="http://librdf.org/flickcurl/" pkgdesc="C library for the Flickr API" @@ -11,6 +11,6 @@ up2date="Flasttar $url" depends=('curl' 'libxml2' 'raptor') groups=('lib-extra') archs=('i686' 'x86_64') -sha1sums=('4c43dbc0424cbc34afb376694b265b5076e65cb7') +sha1sums=('d06ef73c90c9239dd7dd28f6a1e1407091160c36') # optimization OK From bouleetbil at frogdev.info Mon Mar 8 11:34:10 2010 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 8 Mar 2010 11:34:10 +0100 (CET) Subject: [Frugalware-git] frugalware-current: gst-plugins-ugly-0.10.14-1-x86_64 *version bump Message-ID: <20100308103410.406BA20E0002@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=d5b99fbd9def0471bae722e542bda62d1824d972 commit d5b99fbd9def0471bae722e542bda62d1824d972 Author: bouleetbil Date: Mon Mar 8 11:33:31 2010 +0100 gst-plugins-ugly-0.10.14-1-x86_64 *version bump diff --git a/source/xmultimedia/gst-plugins-ugly/FrugalBuild b/source/xmultimedia/gst-plugins-ugly/FrugalBuild index 0c1b8dc..a6b78c4 100644 --- a/source/xmultimedia/gst-plugins-ugly/FrugalBuild +++ b/source/xmultimedia/gst-plugins-ugly/FrugalBuild @@ -3,11 +3,11 @@ # Cintributor: AlexExtreme pkgname=gst-plugins-ugly -pkgver=0.10.13 -pkgrel=2 +pkgver=0.10.14 +pkgrel=1 pkgdesc="Plugins for GStreamer (Ugly)" url="http://gstreamer.freedesktop.org/" -depends=('gst-plugins-base>=0.10.23' 'gstreamer>=0.10.23') +depends=('gst-plugins-base>=0.10.27' 'gstreamer>=0.10.27') makedepends=('gtk-doc' 'pyxml' 'a52dec' 'liboil>=0.3.14' 'lame' 'libmad' \ 'libdvdread>=4.1.3' 'libid3tag' 'mpeg2dec>=0.4.1' 'libsidplay' 'libcdio>=0.81-1' 'x264>=20090416' 'libxcb' 'libxau' 'libxdmcp') groups=('xmultimedia') @@ -21,9 +21,12 @@ subpkgs=("$pkgname-a52dec" "$pkgname-lame" "$pkgname-mad" "$pkgname-dvdread" \ subdescs=('GStreamer a52dec plugin (Ugly).' 'GStreamer lame plugin (Ugly).' 'GStreamer mad plugin (Ugly).' \ 'GStreamer dvdread plugin (Ugly).' 'GStreamer mpeg2dec plugin (Ugly).' 'GStreamer sidplay plugin (Ugly).' \ 'GStreamer Plugins Documentation.' 'GStreamer cdio plugin (Ugly).' 'GStreamer x264 plugin (Ugly).') -subdepends=("a52dec liboil>=0.3.14 $pkgname=$pkgver" "lame $pkgname=$pkgver" "libmad libid3tag $pkgname=$pkgver" \ - "libdvdread $pkgname=$pkgver" "mpeg2dec>=0.4.1 $pkgname=$pkgver" "libsidplay $pkgname=$pkgver" '' "libcdio>=0.81-1 $pkgname=$pkgver" \ - "$pkgname=$pkgver libxcb libxau libxdmcp x264>=20080426") +subdepends=("a52dec liboil>=0.3.14" "lame" "libmad libid3tag" \ + "libdvdread" "mpeg2dec>=0.4.1" "libsidplay" '' "libcdio>=0.81-1" \ + "libxcb libxau libxdmcp x264>=20080426") +subrodepends=("$pkgname=$pkgver" "$pkgname=$pkgver" "$pkgname=$pkgver" "$pkgname=$pkgver" \ + "$pkgname=$pkgver" "$pkgname=$pkgver" "$pkgname=$pkgver" "$pkgname=$pkgver" \ + "$pkgname=$pkgver") subgroups=('xmultimedia' 'xmultimedia' 'xmultimedia' 'xmultimedia' 'xmultimedia' \ 'xmultimedia' 'docs-extra' 'xmultimedia' 'xmultimedia') subarchs=('i686 x86_64 ppc' 'i686 x86_64 ppc' 'i686 x86_64 ppc' 'i686 x86_64 ppc' \ @@ -56,6 +59,6 @@ build() Fsplit $pkgname-cdio usr/lib/gstreamer-0.10/libgstcdio.* Fsplit $pkgname-x264 usr/lib/gstreamer-0.10/libgstx264.* } +sha1sums=('b1622b732335835c73b334c3769e00834ad0e387') # optimization OK -sha1sums=('20252cc743cbdcca62c702b5ab703c2be0f9d955') From bouleetbil at frogdev.info Mon Mar 8 12:24:26 2010 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 8 Mar 2010 12:24:26 +0100 (CET) Subject: [Frugalware-git] frugalware-current: lxsession-lite-0.4.2-1-i686 *version bump Message-ID: <20100308112426.3931420E0002@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=c5dadf2cbbc23b1fad2c8849f4f0deded0a07918 commit c5dadf2cbbc23b1fad2c8849f4f0deded0a07918 Author: bouleetbil Date: Mon Mar 8 12:39:20 2010 +0100 lxsession-lite-0.4.2-1-i686 *version bump diff --git a/source/x11-extra/lxsession-lite/FrugalBuild b/source/x11-extra/lxsession-lite/FrugalBuild index cbd2f34..95b145d 100644 --- a/source/x11-extra/lxsession-lite/FrugalBuild +++ b/source/x11-extra/lxsession-lite/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: bouleetbil pkgname=lxsession-lite -pkgver=0.4.1 +pkgver=0.4.2 pkgrel=1 pkgdesc="LXDE Session Manager" depends=('libice' 'glibc' 'gtk+2>=2.16.2-2' 'freetype2' 'libxau>=1.0.4' 'libxdmcp' 'dbus' 'libxdamage' 'libxext' 'hal') @@ -17,6 +17,6 @@ _F_sourceforge_realname="LXSession (session manager)" _F_sourceforge_dirname="lxde" Finclude sourceforge url="http://lxde.org/" -sha1sums=('7cee20cad8ca9241074891237c16af0a4b2010e4') +sha1sums=('8ba9967211abd3c5218b7b626d007d2cb2ae1ddb') _F_cd_path=$_F_sourceforge_name-$pkgver # optimization OK From bouleetbil at frogdev.info Mon Mar 8 12:27:57 2010 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 8 Mar 2010 12:27:57 +0100 (CET) Subject: [Frugalware-git] frugalware-current: gst-plugins-bad-0.10.18-1-x86_64 *version bump Message-ID: <20100308112758.1800720E0002@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=344b8da454d6dfdb45c2319a96bf52417e58d62e commit 344b8da454d6dfdb45c2319a96bf52417e58d62e Author: bouleetbil Date: Mon Mar 8 12:26:24 2010 +0100 gst-plugins-bad-0.10.18-1-x86_64 *version bump diff --git a/source/xmultimedia/gst-plugins-bad/FrugalBuild b/source/xmultimedia/gst-plugins-bad/FrugalBuild index 40bd1c9..94e9068 100644 --- a/source/xmultimedia/gst-plugins-bad/FrugalBuild +++ b/source/xmultimedia/gst-plugins-bad/FrugalBuild @@ -2,11 +2,11 @@ # Maintainer: bouleetbil pkgname=gst-plugins-bad -pkgver=0.10.17 -pkgrel=3 +pkgver=0.10.18 +pkgrel=1 pkgdesc="Plugins for GStreamer (Bad)" url="http://gstreamer.freedesktop.org/" -depends=('gst-plugins-base>=0.10.24' 'libstdc++' 'zlib' 'gstreamer>=0.10.24') +depends=('gst-plugins-base>=0.10.27' 'libstdc++' 'zlib' 'gstreamer>=0.10.27') makedepends=('krb5') groups=('xmultimedia') options=('scriptlet') @@ -14,7 +14,7 @@ archs=('i686' 'x86_64' 'ppc') replaces=("$pkgname-swfdec" "$pkgname-nas" "$pkgname-opengl") source=($url/src/$pkgname/$pkgname-$pkgver.tar.bz2) up2date="lynx -dump $url/src/$pkgname/|grep '.tar.bz2$'|sort -n -r|head -n 1|sed 's/.*-\(.*\).t.*/\1/'" -sha1sums=('9715e927765fcb836600975b9ea93c095bbb787e') +sha1sums=('33853ed4f3be8d80c42a2a8dcce7052a08c1d64f') ## TODO: figure why nas is broken and re-add it subpkgs=("$pkgname-bzip2" "$pkgname-dts" "$pkgname-faac" "$pkgname-faad2" "$pkgname-mms" \ From bouleetbil at frogdev.info Mon Mar 8 12:27:58 2010 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 8 Mar 2010 12:27:58 +0100 (CET) Subject: [Frugalware-git] frugalware-current: gst-ffmpeg-0.10.10-1-x86_64 *version bump Message-ID: <20100308112758.3F71C20E0004@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=724d65c01c2092fab903fc20f2cb41dfbdf6a77a commit 724d65c01c2092fab903fc20f2cb41dfbdf6a77a Author: bouleetbil Date: Mon Mar 8 12:27:05 2010 +0100 gst-ffmpeg-0.10.10-1-x86_64 *version bump diff --git a/source/xmultimedia/gst-ffmpeg/FrugalBuild b/source/xmultimedia/gst-ffmpeg/FrugalBuild index cce53a7..beca998 100644 --- a/source/xmultimedia/gst-ffmpeg/FrugalBuild +++ b/source/xmultimedia/gst-ffmpeg/FrugalBuild @@ -2,17 +2,17 @@ # Maintainer: bouleetbil pkgname=gst-ffmpeg -pkgver=0.10.9 +pkgver=0.10.10 pkgrel=1 pkgdesc="Gstreamer Multimedia Framework FFMpeg Plugin" url="http://www.gstreamer.net" -depends=('gst-plugins-base>=0.10.25' 'gst-plugins-base-oil>=0.10.25' 'libstdc++') +depends=('gst-plugins-base>=0.10.27' 'gst-plugins-base-oil>=0.10.27' 'libstdc++') makedepends=('sdl' 'freetype2') groups=('xmultimedia') archs=('i686' 'x86_64' 'ppc') up2date="lynx -dump http://gstreamer.freedesktop.org/src/gst-ffmpeg/|sort -r -n|grep -m1 '.tar.bz2$'|sed 's/.*-\(.*\).tar.bz2/\1/'" source=(http://gstreamer.freedesktop.org/src/$pkgname/$pkgname-$pkgver.tar.bz2) -sha1sums=('88b68958680d345ebb7b261dbabd12b5908869ef') +sha1sums=('966450c350c058ed05d73bb224234e171dd54f7e') build() { From bouleetbil at frogdev.info Mon Mar 8 12:31:43 2010 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 8 Mar 2010 12:31:43 +0100 (CET) Subject: [Frugalware-git] frugalware-current: perl-gstreamer-interfaces-0.05-1-x86_64 *version bump Message-ID: <20100308113143.D23D920E0002@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=9fd735ea4b8f6aa9d92577fe96b55bf12e71ea46 commit 9fd735ea4b8f6aa9d92577fe96b55bf12e71ea46 Author: bouleetbil Date: Mon Mar 8 12:32:09 2010 +0100 perl-gstreamer-interfaces-0.05-1-x86_64 *version bump diff --git a/source/xlib-extra/perl-gstreamer-interfaces/FrugalBuild b/source/xlib-extra/perl-gstreamer-interfaces/FrugalBuild index cb0eda1..770a57f 100644 --- a/source/xlib-extra/perl-gstreamer-interfaces/FrugalBuild +++ b/source/xlib-extra/perl-gstreamer-interfaces/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: bouleetbil pkgname=perl-gstreamer-interfaces -pkgver=0.04 +pkgver=0.05 pkgrel=1 pkgdesc="Perl interface to the GStreamer Interfaces library" url="http://search.cpan.org/~tsch/" @@ -13,4 +13,4 @@ _F_perl_author=T/TS/TSCH Finclude perl groups=('xlib-extra') archs=('i686' 'x86_64' 'ppc') -sha1sums=('57fb9ae3df82a3c28f0a8a9aa9a6e627713f91f0') +sha1sums=('b78a030214106960f1ff7ce5c11091e0ecbc1666') From russelldickenson at gmail.com Mon Mar 8 12:32:50 2010 From: russelldickenson at gmail.com (Russell Dickenson) Date: Mon, 8 Mar 2010 21:32:50 +1000 Subject: [Frugalware-git] homepage-ng: 1.2 final is out In-Reply-To: <20100308090652.A9CAE20E0002@genesis.frugalware.org> References: <20100308090652.A9CAE20E0002@genesis.frugalware.org> Message-ID: On 8 March 2010 19:06, Miklos Vajna wrote: > Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=homepage-ng.git;a=commitdiff;h=971ee0f2c2d9486abf0fb46b2e59e090681ff920 > > commit 971ee0f2c2d9486abf0fb46b2e59e090681ff920 > Author: Miklos Vajna > Date: ? Mon Mar 8 10:06:49 2010 +0100 > > 1.2 final is out [snip] Congratulations to the developers, artists and translators on another great release. I had hoped to get a newsletter issue out just before the release but real life got in the way. May you always be Frugal, Russell Dickenson (AKA phayz) From bouleetbil at frogdev.info Mon Mar 8 12:34:22 2010 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 8 Mar 2010 12:34:22 +0100 (CET) Subject: [Frugalware-git] frugalware-current: perl-config-inifiles-2.57-1-x86_64 *version bump Message-ID: <20100308113422.37A5F20E0002@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=fe7ee46573ffc2877a73cede3aafa06861cc2d79 commit fe7ee46573ffc2877a73cede3aafa06861cc2d79 Author: bouleetbil Date: Mon Mar 8 12:34:46 2010 +0100 perl-config-inifiles-2.57-1-x86_64 *version bump diff --git a/source/devel-extra/perl-config-inifiles/FrugalBuild b/source/devel-extra/perl-config-inifiles/FrugalBuild index a2a4454..a19c182 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.56 +pkgver=2.57 pkgrel=1 pkgdesc="A module for reading .ini-style configuration files." depends=('perl') groups=('devel-extra') Finclude perl archs=('i686' 'x86_64' 'ppc') -sha1sums=('5f717351086fcedcfe99ff79151dc33ac63e7c7a') +sha1sums=('4f2d4dd69fcf16e2c75bc573d444b8463ef7920c') From bouleetbil at frogdev.info Mon Mar 8 12:37:59 2010 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 8 Mar 2010 12:37:59 +0100 (CET) Subject: [Frugalware-git] frugalware-current: python-ldap-2.3.11-1-x86_64 *version bump Message-ID: <20100308113759.59AF220E0002@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=504db0c5753356718d67eff2e98bb5d83714a964 commit 504db0c5753356718d67eff2e98bb5d83714a964 Author: bouleetbil Date: Mon Mar 8 12:38:17 2010 +0100 python-ldap-2.3.11-1-x86_64 *version bump diff --git a/source/devel-extra/python-ldap/FrugalBuild b/source/devel-extra/python-ldap/FrugalBuild index 7c82a74..77c8bf1 100644 --- a/source/devel-extra/python-ldap/FrugalBuild +++ b/source/devel-extra/python-ldap/FrugalBuild @@ -3,7 +3,7 @@ # Contributor: AlexExtreme pkgname=python-ldap -pkgver=2.3.10 +pkgver=2.3.11 pkgrel=1 pkgdesc="This is a python module to access an LDAP server" groups=('devel-extra') @@ -13,6 +13,6 @@ makedepends=('openldap') url="http://www.python-ldap.org"; up2date="Flasttar http://pypi.python.org/packages/source/p/$pkgname/" source=(http://pypi.python.org/packages/source/p/$pkgname/$pkgname-$pkgver.tar.gz) -sha1sums=('b15c15a71956c5f51a3642e513c206cf03d6248e') +sha1sums=('bcc77e242b19092e4e2917e380be497ff4c9ce74') # optimization OK From bouleetbil at frogdev.info Mon Mar 8 12:44:03 2010 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 8 Mar 2010 12:44:03 +0100 (CET) Subject: [Frugalware-git] frugalware-current: argparse-1.1-1-x86_64 *version bump *added x86_64 to archs() Message-ID: <20100308114403.9DB6020E0002@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=71a898b2826c2ca038f978bebccab55dbedc3fdd commit 71a898b2826c2ca038f978bebccab55dbedc3fdd Author: bouleetbil Date: Mon Mar 8 12:44:14 2010 +0100 argparse-1.1-1-x86_64 *version bump *added x86_64 to archs() diff --git a/source/devel-extra/argparse/FrugalBuild b/source/devel-extra/argparse/FrugalBuild index 6a1cb82..cef0bf1 100644 --- a/source/devel-extra/argparse/FrugalBuild +++ b/source/devel-extra/argparse/FrugalBuild @@ -2,13 +2,13 @@ # Maintainer: bouleetbil pkgname=argparse -pkgver=1.0.1 +pkgver=1.1 pkgrel=1 pkgdesc="Python command line parser" depends=('python') groups=('devel-extra') _F_googlecode_ext=".zip" Finclude googlecode -archs=('i686') -sha1sums=('2d11d7c3ae6dca73d15c92d20ce8bb99f95daa0f') +archs=('i686' 'x86_64') +sha1sums=('da0c55dc79cafe0eec50e7f10b06c72319a96f78') From bouleetbil at frogdev.info Mon Mar 8 12:50:40 2010 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 8 Mar 2010 12:50:40 +0100 (CET) Subject: [Frugalware-git] frugalware-current: dhcpcd-5.2.1-1-x86_64 *version bump Message-ID: <20100308115040.33F1F20E0002@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=6a03bd2736af3b8950c053d102dd439e4dd1d58e commit 6a03bd2736af3b8950c053d102dd439e4dd1d58e Author: bouleetbil Date: Mon Mar 8 12:50:57 2010 +0100 dhcpcd-5.2.1-1-x86_64 *version bump diff --git a/source/base/dhcpcd/FrugalBuild b/source/base/dhcpcd/FrugalBuild index cfb59a6..b36ee18 100644 --- a/source/base/dhcpcd/FrugalBuild +++ b/source/base/dhcpcd/FrugalBuild @@ -3,7 +3,7 @@ # Contributor: AlexExtreme pkgname=dhcpcd -pkgver=5.1.5 +pkgver=5.2.1 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=('b6a064c9dec71f2adadff9fbc61fac9bd8f379de') +sha1sums=('698742d22359b6b57526996fc93d88b44fa467d2') backup=('etc/dhcpcd.conf') build() { From bouleetbil at frogdev.info Mon Mar 8 12:51:24 2010 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 8 Mar 2010 12:51:24 +0100 (CET) Subject: [Frugalware-git] frugalware-current: commons-lang-2.5-1-x86_64 *version bump *used zip source tar.gz is broken Message-ID: <20100308115124.39E2F20E0002@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=9a884d17cb6ffca5486e4d232b44120b8669ccd7 commit 9a884d17cb6ffca5486e4d232b44120b8669ccd7 Author: bouleetbil Date: Mon Mar 8 12:51:16 2010 +0100 commons-lang-2.5-1-x86_64 *version bump *used zip source tar.gz is broken diff --git a/source/devel-extra/commons-lang/FrugalBuild b/source/devel-extra/commons-lang/FrugalBuild index 927fff1..f881b75 100644 --- a/source/devel-extra/commons-lang/FrugalBuild +++ b/source/devel-extra/commons-lang/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: bouleetbil pkgname=commons-lang -pkgver=2.4 +pkgver=2.5 pkgrel=1 pkgdesc="The Lang Component provides a host of helper utilities for the java.lang API" url="http://commons.apache.org/lang/" @@ -10,14 +10,14 @@ Finclude java groups=('devel-extra') archs=('i686' 'x86_64') up2date="Flastarchive http://www.apache.org/dist/commons/lang/source/ -src.tar.gz" -source=(http://www.apache.org/dist/commons/lang/source/$pkgname-$pkgver-src.tar.gz) -sha1sums=('61ec8be8c2cf8f4c4272545666f936dd9f7e2a29') +source=(http://www.apache.org/dist/commons/lang/source/$pkgname-$pkgver-src.zip) +sha1sums=('c0b32d32a98a1d7748af2627122f4ee78b46ba39') _F_cd_path="$pkgname-$pkgver-src" build() { Fcd Fjavacleanup Fant jar - mv dist/commons-lang{-$pkgver,}.jar || Fdie - Fjar dist/commons-lang.jar + mv target/commons-lang{-$pkgver,}.jar || Fdie + Fjar target/commons-lang.jar } From bouleetbil at frogdev.info Mon Mar 8 12:53:35 2010 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 8 Mar 2010 12:53:35 +0100 (CET) Subject: [Frugalware-git] frugalware-current: configobj-4.7.2-1-x86_64 *version bump Message-ID: <20100308115335.E0B1620E0002@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=4a9e4f677c2b4a6a901e0d777ceb53016408134a commit 4a9e4f677c2b4a6a901e0d777ceb53016408134a Author: bouleetbil Date: Mon Mar 8 12:54:01 2010 +0100 configobj-4.7.2-1-x86_64 *version bump diff --git a/source/devel-extra/configobj/FrugalBuild b/source/devel-extra/configobj/FrugalBuild index 1508764..326cd84 100644 --- a/source/devel-extra/configobj/FrugalBuild +++ b/source/devel-extra/configobj/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: bouleetbil pkgname=configobj -pkgver=4.7.1 +pkgver=4.7.2 pkgrel=1 pkgdesc="Simple but powerful config file reader and writer: an ini file round tripper." depends=('python') @@ -12,5 +12,5 @@ archs=('i686' 'x86_64') _F_sourceforge_ext=".zip" Finclude sourceforge url="http://www.voidspace.org.uk/python/configobj.html" -sha1sums=('1cfd1e888ed0ed28b763abf51c782c0a52135ea3') +sha1sums=('2e6e33a5f685926bea2d4745cf81403c2c974e81') From bouleetbil at frogdev.info Mon Mar 8 12:54:45 2010 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 8 Mar 2010 12:54:45 +0100 (CET) Subject: [Frugalware-git] frugalware-current: perl-ppi-1.210-1-x86_64 *version bump Message-ID: <20100308115445.F138720E0002@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=ea830c5892455545a5cbca9f4a3ffde33d896bb9 commit ea830c5892455545a5cbca9f4a3ffde33d896bb9 Author: bouleetbil Date: Mon Mar 8 12:55:06 2010 +0100 perl-ppi-1.210-1-x86_64 *version bump diff --git a/source/devel-extra/perl-ppi/FrugalBuild b/source/devel-extra/perl-ppi/FrugalBuild index cb4e8eb..312af08 100644 --- a/source/devel-extra/perl-ppi/FrugalBuild +++ b/source/devel-extra/perl-ppi/FrugalBuild @@ -3,11 +3,11 @@ _F_perl_name=PPI _F_perl_author=A/AD/ADAMK -pkgver=1.209 +pkgver=1.210 pkgrel=1 pkgdesc="Parse, Analyze and Manipulate Perl (without perl)" Finclude perl depends=('perl-io-string' 'perl-clone' 'perl-list-moreutils' 'perl-params-util' 'perl-task-weaken') pkgname=perl-ppi archs=('i686' 'x86_64' 'ppc') -sha1sums=('234c3ed617b9f7039faea2a43ffc6836768b2f60') +sha1sums=('02a22a7f2b0de2c3922899f7c6d16620cc93a480') From bouleetbil at frogdev.info Mon Mar 8 13:11:09 2010 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 8 Mar 2010 13:11:09 +0100 (CET) Subject: [Frugalware-git] frugalware-current: lucene-3.0.1-1-x86_64 *version bump Message-ID: <20100308121109.03DBD20E0002@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=80c11fcf526241e2681797e2184c87efd1e68238 commit 80c11fcf526241e2681797e2184c87efd1e68238 Author: bouleetbil Date: Mon Mar 8 13:11:01 2010 +0100 lucene-3.0.1-1-x86_64 *version bump diff --git a/source/devel-extra/lucene/FrugalBuild b/source/devel-extra/lucene/FrugalBuild index dd4ecdd..60c105b 100644 --- a/source/devel-extra/lucene/FrugalBuild +++ b/source/devel-extra/lucene/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: bouleetbil pkgname=lucene -pkgver=3.0.0 +pkgver=3.0.1 pkgrel=1 pkgdesc="High-performance, full-featured text search engine written entirely in Java" url="http://jakarta.apache.org/$pkgname/" @@ -10,8 +10,8 @@ Finclude java groups=('devel-extra') archs=('i686' 'x86_64') up2date="Flastarchive http://www.apache.org/dist/$pkgname/java/ -src.tar.gz" -source=(http://www.apache.org/dist/$pkgname/java/$pkgname-$pkgver-src.tar.gz Fix_Build.diff) -sha1sums=('45e6c44c15eaaf866dffc81379279036eaec971f' \ +source=(http://www.apache.org/dist/$pkgname/java/$pkgname-$pkgver-src.zip Fix_Build.diff) +sha1sums=('dbe24ff64bea3fb47aeb77f84cb9fa15e2486085' \ '12853ed1a9db658fe9b9487bf4277b38d43e63de') build() { @@ -19,6 +19,6 @@ build() { Fpatchall Fjavacleanup Fant - mv build/${pkgname}-core-3.0-dev.jar ${pkgname}-core.jar || Fdie + mv build/${pkgname}-core-3.0.1-dev.jar ${pkgname}-core.jar || Fdie Fjar ${pkgname}-core.jar } From bouleetbil at frogdev.info Mon Mar 8 13:16:22 2010 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 8 Mar 2010 13:16:22 +0100 (CET) Subject: [Frugalware-git] frugalware-current: volti-0.1.8-1-x86_64 *version bump Message-ID: <20100308121622.ECDF120E0002@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=aac48f6b76ec2a2758934eb03d52a0f8a257f665 commit aac48f6b76ec2a2758934eb03d52a0f8a257f665 Author: bouleetbil Date: Mon Mar 8 13:16:47 2010 +0100 volti-0.1.8-1-x86_64 *version bump diff --git a/source/xapps-extra/volti/Fix_started.diff b/source/xapps-extra/volti/Fix_started.diff deleted file mode 100644 index 84b8512..0000000 --- a/source/xapps-extra/volti/Fix_started.diff +++ /dev/null @@ -1,14 +0,0 @@ ---- volti-0.1.6/src/main.py~ 2010-01-16 13:23:19.000000000 +0000 -+++ volti-0.1.6/src/main.py 2010-01-25 22:28:55.000000000 +0000 -@@ -175,7 +175,10 @@ - def mixer_get_pid(self): - pid = Popen(["pidof", "-x", preferences.prefs["mixer"]], stdout=PIPE).communicate()[0] - if pid: -- return int(pid) -+ try: -+ return int(pid) -+ except ValueError: -+ return None - return None - - def mixer_get_active(self): diff --git a/source/xapps-extra/volti/FrugalBuild b/source/xapps-extra/volti/FrugalBuild index 26bb666..7dd4ecc 100644 --- a/source/xapps-extra/volti/FrugalBuild +++ b/source/xapps-extra/volti/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: bouleetbil pkgname=volti -pkgver=0.1.6 +pkgver=0.1.8 pkgrel=1 pkgdesc="gtk+ application for controlling audio volume" depends=('pygtk' 'pyalsaaudio' 'dbus-python') @@ -11,7 +11,4 @@ archs=('i686' 'x86_64') options=('scriptlet') _F_gnome_desktop="y" Finclude gnome-scriptlet googlecode -source=($source Fix_started.diff) -sha1sums=('1b0e57a7d12d8367a5205d002534093e03766d9c' \ - '1350fff5bb9aa3136277bb2ea4a4b79c8037c43c') - +sha1sums=('3ad4293bb2384f9085ade07ad05c5bfbd79288ec') From bouleetbil at frogdev.info Mon Mar 8 13:23:59 2010 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 8 Mar 2010 13:23:59 +0100 (CET) Subject: [Frugalware-git] frugalware-current: gadmin-openvpn-server-0.1.5-1-x86_64 *version bump Message-ID: <20100308122359.3EA1C20E0002@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=1cca097b9a8f0bcbc03037682889269a469187a0 commit 1cca097b9a8f0bcbc03037682889269a469187a0 Author: bouleetbil Date: Mon Mar 8 13:24:22 2010 +0100 gadmin-openvpn-server-0.1.5-1-x86_64 *version bump diff --git a/source/xapps-extra/gadmin-openvpn-server/FrugalBuild b/source/xapps-extra/gadmin-openvpn-server/FrugalBuild index 5dfb308..aaa8e87 100644 --- a/source/xapps-extra/gadmin-openvpn-server/FrugalBuild +++ b/source/xapps-extra/gadmin-openvpn-server/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: bouleetbil pkgname=gadmin-openvpn-server -pkgver=0.1.2 +pkgver=0.1.5 pkgrel=1 pkgdesc="GADMIN-OPENVPN-SERVER -- A GTK+ administration tool for the OpenVPN server" url="http://www.gadmintools.org" @@ -13,6 +13,6 @@ groups=('xapps-extra') options=('scriptlet') up2date="lynx -dump http://mange.dynalias.org/linux/gadmin-openvpn/server/ |Flasttar" source=(http://mange.dynalias.org/linux/gadmin-openvpn/server/${pkgname}-${pkgver}.tar.gz) -sha1sums=('c0d877fc8c7e40800294866abf969b178d9c2746') +sha1sums=('27a6c2dae254af190378d781585c9dd230ace62a') # optimization OK From bouleetbil at frogdev.info Mon Mar 8 13:27:46 2010 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 8 Mar 2010 13:27:46 +0100 (CET) Subject: [Frugalware-git] frugalware-current: gscan2pdf-0.9.30-1-x86_64 *version bump Message-ID: <20100308122746.24C2C20E0002@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=673439a3ba371d470ab545acfa262ae4a5de5bb3 commit 673439a3ba371d470ab545acfa262ae4a5de5bb3 Author: bouleetbil Date: Mon Mar 8 13:28:04 2010 +0100 gscan2pdf-0.9.30-1-x86_64 *version bump diff --git a/source/xapps-extra/gscan2pdf/FrugalBuild b/source/xapps-extra/gscan2pdf/FrugalBuild index cbb8356..89795da 100644 --- a/source/xapps-extra/gscan2pdf/FrugalBuild +++ b/source/xapps-extra/gscan2pdf/FrugalBuild @@ -2,17 +2,18 @@ # Maintainer: bouleetbil pkgname=gscan2pdf -pkgver=0.9.29 +pkgver=0.9.30 pkgrel=1 pkgdesc="A GUI to ease the process of producing a multipage PDF from a scan." depends=('perl-gtk2' 'sane-backends' 'gettext' 'imagemagick>=6.4.8_9' 'perl-config-general' \ 'xdg-utils' 'djvulibre' 'gocr' 'perl-gtk2-imageview' 'perl-gettext' \ 'perl-gtk2-ex-simple-list' 'perl-pdf-api2' 'perl-sane' 'perl-test-critic' \ - 'perl-forks' 'perl-list-moreutils' 'perl-set-intspan' 'perl-sys-sigaction') + 'perl-forks' 'perl-list-moreutils' 'perl-set-intspan' 'perl-sys-sigaction' \ + 'perl-goo-canvas' 'perl-xml-simple ') makedepends=('perl-extutils-depends') groups=('xapps-extra') archs=('i686' 'x86_64' 'ppc') options=('scriptlet') _F_gnome_desktop="y" Finclude sourceforge gnome-scriptlet -sha1sums=('a4e84cfcd98f50bc606983c261abe48c7fbd0b1e') +sha1sums=('0406033dfae70c6c409cfe9625c56b6b6ef2435d') From bouleetbil at frogdev.info Mon Mar 8 13:29:24 2010 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 8 Mar 2010 13:29:24 +0100 (CET) Subject: [Frugalware-git] frugalware-current: gadmin-openvpn-client-0.1.1-1-x86_64 *version bump Message-ID: <20100308122924.A9B8820E0002@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=0277374795b74a7ecfdba985e2f34c308e9a5a73 commit 0277374795b74a7ecfdba985e2f34c308e9a5a73 Author: bouleetbil Date: Mon Mar 8 13:29:48 2010 +0100 gadmin-openvpn-client-0.1.1-1-x86_64 *version bump diff --git a/source/xapps-extra/gadmin-openvpn-client/FrugalBuild b/source/xapps-extra/gadmin-openvpn-client/FrugalBuild index 00850b6..9a32252 100644 --- a/source/xapps-extra/gadmin-openvpn-client/FrugalBuild +++ b/source/xapps-extra/gadmin-openvpn-client/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: bouleetbil pkgname=gadmin-openvpn-client -pkgver=0.0.8 +pkgver=0.1.1 pkgrel=1 pkgdesc="GADMIN-OPENVPN-CLIENT -- A GTK+ administration tool for the OpenVPN client" url="http://www.gadmintools.org" @@ -13,6 +13,6 @@ groups=('xapps-extra') options=('scriptlet') up2date="lynx -dump http://mange.dynalias.org/linux/gadmin-openvpn/client/ |Flasttar" source=(http://mange.dynalias.org/linux/gadmin-openvpn/client/${pkgname}-${pkgver}.tar.gz) -sha1sums=('35e66ad426d33bcf53bbc19d284d8a161bc097d9') +sha1sums=('eafc442f7ab454d6cab875cddecbb15d75cea672') # optimization OK From bouleetbil at frogdev.info Mon Mar 8 14:05:30 2010 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 8 Mar 2010 14:05:30 +0100 (CET) Subject: [Frugalware-git] frugalware-current: glabels-2.2.7-1-x86_64 *version bump Message-ID: <20100308130530.0F4A820E0002@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=96483161f9112b4b6ead9711e8c185f3a1634bf0 commit 96483161f9112b4b6ead9711e8c185f3a1634bf0 Author: bouleetbil Date: Mon Mar 8 14:04:54 2010 +0100 glabels-2.2.7-1-x86_64 *version bump diff --git a/source/gnome-extra/glabels/FrugalBuild b/source/gnome-extra/glabels/FrugalBuild index 95aca0b..553ebc6 100644 --- a/source/gnome-extra/glabels/FrugalBuild +++ b/source/gnome-extra/glabels/FrugalBuild @@ -2,8 +2,8 @@ # Maintainer: bouleetbil pkgname=glabels -pkgver=2.2.6 -pkgrel=2 +pkgver=2.2.7 +pkgrel=1 pkgdesc="gLabels is a program for creating labels and business cards for the GNOME" depends=('libjpeg' 'libbonoboui' 'libsm' 'gail>=2.16.2-2' 'libart_lgpl' 'libglade>=2.6.4-2' \ 'atk' 'pango' 'freetype2' 'libxau' 'libxdmcp' 'evolution-data-server>=2.26.2-2' \ @@ -17,6 +17,6 @@ options=('scriptlet') _F_gnome_desktop="y" Finclude sourceforge gnome-scriptlet Fconfopts="${Fconfopts[@]} --disable-update-mimedb --disable-update-desktopdb" -sha1sums=('f51ee679072cd5e0e5bfe1e0a7d62265a78003d6') +sha1sums=('cba6a01e14bd503e6d82077a8b68dc3b40e77883') # optimization OK From bouleetbil at frogdev.info Mon Mar 8 14:44:58 2010 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 8 Mar 2010 14:44:58 +0100 (CET) Subject: [Frugalware-git] frugalware-current: gyachi-1.2.6-1-i686 *version bump Message-ID: <20100308134458.ED48420E0002@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=d3628a74f56092be0b9cecdf6e86e25137fcae8b commit d3628a74f56092be0b9cecdf6e86e25137fcae8b Author: bouleetbil Date: Mon Mar 8 15:23:35 2010 +0000 gyachi-1.2.6-1-i686 *version bump diff --git a/source/gnome-extra/gyachi/FrugalBuild b/source/gnome-extra/gyachi/FrugalBuild index e8bf74b..58b99fd 100644 --- a/source/gnome-extra/gyachi/FrugalBuild +++ b/source/gnome-extra/gyachi/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: bouleetbil pkgname=gyachi -pkgver=1.2.4 +pkgver=1.2.6 pkgrel=1 pkgdesc="A fork from Gyach Enhanced Yahoo client for Linux." depends=('libtool' 'libgtkhtml>=2.11.1-3' 'atk' 'pango' 'freetype2' 'openssl' 'libxau' \ @@ -16,7 +16,7 @@ archs=('i686') Finclude sourceforge gnome-scriptlet Fconfopts="$Fconfopts --enable-plugin_photo_album --disable-plugin_xmms\ --with-x --disable-plugin_pulseaudio" -sha1sums=('3f1f60aac68cc473be35c9dd83f459db94938d9a') +sha1sums=('43283da268a57d291adfb680294b311f8a36c891') build() { Fcd From bouleetbil at frogdev.info Mon Mar 8 14:49:20 2010 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 8 Mar 2010 14:49:20 +0100 (CET) Subject: [Frugalware-git] gnometesting: epiphany-2.29.91-1-x86_64 *version bump *added frugalware default homepage Message-ID: <20100308134920.D219120E0002@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=f885d2cf50e3077cbd6e5e85783ec071ef9e3af7 commit f885d2cf50e3077cbd6e5e85783ec071ef9e3af7 Author: bouleetbil Date: Mon Mar 8 14:48:16 2010 +0100 epiphany-2.29.91-1-x86_64 *version bump *added frugalware default homepage diff --git a/source/gnome-extra/epiphany/FrugalBuild b/source/gnome-extra/epiphany/FrugalBuild index 85c3ed6..8200a88 100644 --- a/source/gnome-extra/epiphany/FrugalBuild +++ b/source/gnome-extra/epiphany/FrugalBuild @@ -2,18 +2,16 @@ # Maintainer: bouleetbil pkgname=epiphany -pkgver=2.28.2 +pkgver=2.29.91 pkgrel=1 pkgdesc="GNOME webbrowser based on the WebKit rendering engine" url="http://www.gnome.org/projects/epiphany/" -depends=('libstdc++' 'dbus-x11' 'atk' 'libxslt' 'gnome-desktop>=2.28.0' 'startup-notification' \ - 'webkit' 'docbook-xsl' 'libsoup-gnome' 'seed>=2.28.1') -makedepends=('pygtk>=2.16.0' 'gtk-doc>=1.9' 'perl-xml-parser' 'python>=2.6' \ +depends=('libstdc++' 'dbus-x11' 'atk' 'libxslt' 'gnome-desktop>=2.29.0' 'startup-notification' \ + 'webkit' 'docbook-xsl' 'libsoup-gnome' 'seed>=2.29.91') +makedepends=('pygtk>=2.16.0' 'gtk-doc>=1.9' 'perl-xml-parser' 'python>=2.6' 'gir-repository' \ 'gnome-python>=2.28.0' 'iso-codes' 'gnome-doc-utils>=0.16.0' 'intltool') _F_gnome_schemas=('/etc/gconf/schemas/epiphany.schemas' - '/etc/gconf/schemas/epiphany-lockdown.schemas' - '/etc/gconf/schemas/epiphany-pango.schemas' - '/etc/gconf/schemas/epiphany-fonts.schemas') + '/etc/gconf/schemas/epiphany-lockdown.schemas') _F_gnome_scrollkeeper="y" _F_gnome_desktop="y" _F_gnome_iconcache="y" @@ -21,7 +19,9 @@ Finclude gnome gnome-scriptlet groups=('gnome-extra') archs=('x86_64' 'i686' 'ppc') Fconfopts="$Fconfopts --enable-seed --enable-introspection --disable-nss \ - --enable-python --enable-certificate-manager --disable-gtk-doc" -sha1sums=('8f382e18dba2ca4292350f1c979986a68ee9b668') + --enable-python --disable-gtk-doc --without-ca-file --with-distributor-name=Frugalware" +source=($source homepage.diff) +sha1sums=('651ee64c06839fdc4e79beec3ac20d9ea9dfc3e4' \ + '159658b8098bbffcf72782fc46b2f2ab05cec264') # optimization OK diff --git a/source/gnome-extra/epiphany/homepage.diff b/source/gnome-extra/epiphany/homepage.diff new file mode 100644 index 0000000..d6c6fea --- /dev/null +++ b/source/gnome-extra/epiphany/homepage.diff @@ -0,0 +1,11 @@ +--- epiphany-1.0.1/data/epiphany.schemas.in.foo Fri Oct 10 14:23:48 2003 ++++ epiphany-1.0.1/data/epiphany.schemas.in Fri Oct 10 14:24:42 2003 +@@ -5,7 +5,7 @@ + /apps/epiphany/general/homepage + epiphany + string +- http://www.google.com ++ http://www.frugalware.org/ + + Home page + Address of the user's home page. From bouleetbil at frogdev.info Mon Mar 8 15:02:28 2010 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 8 Mar 2010 15:02:28 +0100 (CET) Subject: [Frugalware-git] frugalware-current: gnome-subtitles-1.0-1-x86_64 *version bump Message-ID: <20100308140228.3622C20E0002@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=3bd39895e0350f38d1021705556dfe5420ac646e commit 3bd39895e0350f38d1021705556dfe5420ac646e Author: bouleetbil Date: Mon Mar 8 15:02:25 2010 +0100 gnome-subtitles-1.0-1-x86_64 *version bump diff --git a/source/gnome-extra/gnome-subtitles/FrugalBuild b/source/gnome-extra/gnome-subtitles/FrugalBuild index 34223ae..696ce4c 100644 --- a/source/gnome-extra/gnome-subtitles/FrugalBuild +++ b/source/gnome-extra/gnome-subtitles/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: bouleetbil pkgname=gnome-subtitles -pkgver=0.9.1 +pkgver=1.0 pkgrel=1 pkgdesc="Video subtitling for the GNOME desktop" depends=('mono>=2.0.1' 'gnome-sharp' 'gstreamer' 'gst-plugins-base' \ @@ -15,7 +15,7 @@ options=('scriptlet') _F_gnome_desktop="y" _F_gnome_schemas=('/etc/gconf/schemas/gnome-subtitles.schemas') Finclude sourceforge gnome-scriptlet mono -sha1sums=('5dd240a392ea1fd9e672caeb45fb9aa55b87a620') +sha1sums=('ba051ec54f645781039ea1ca362ae974d550f6f6') build() { Fmonoexport From bouleetbil at frogdev.info Mon Mar 8 15:29:08 2010 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 8 Mar 2010 15:29:08 +0100 (CET) Subject: [Frugalware-git] frugalware-current: keepnote-0.6.2-1-x86_64 *version bump Message-ID: <20100308142908.D9AF620E0002@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=d5bc730b741740df842ec2a8be42ad3908e560c1 commit d5bc730b741740df842ec2a8be42ad3908e560c1 Author: bouleetbil Date: Mon Mar 8 15:29:16 2010 +0100 keepnote-0.6.2-1-x86_64 *version bump diff --git a/source/gnome-extra/keepnote/FrugalBuild b/source/gnome-extra/keepnote/FrugalBuild index c34ddf5..d3e677d 100644 --- a/source/gnome-extra/keepnote/FrugalBuild +++ b/source/gnome-extra/keepnote/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: Cedrick Hannier alias Cedynamix pkgname=keepnote -pkgver=0.6.1 +pkgver=0.6.2 pkgrel=1 pkgdesc="KeepNote is a note taking application." archs=('i686' 'x86_64') @@ -13,4 +13,4 @@ _F_gnome_iconcache="y" Finclude gnome-scriptlet up2date="Flasttar $url/download/" source=($url/download/$pkgname-$pkgver.tar.gz) -sha1sums=('97fe2cd2325aa51046697a9e7e37b89ec33f3dde') +sha1sums=('f9917cb13a94711f73664c83e7ad81c73b38a13a') From bouleetbil at frogdev.info Mon Mar 8 15:40:44 2010 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 8 Mar 2010 15:40:44 +0100 (CET) Subject: [Frugalware-git] frugalware-current: libquicktime-1.1.5-1-x86_64 *version bump Message-ID: <20100308144044.572F120E0002@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=da269ca29a1a51891159e0b73bc1d88e3319f647 commit da269ca29a1a51891159e0b73bc1d88e3319f647 Author: bouleetbil Date: Mon Mar 8 15:40:42 2010 +0100 libquicktime-1.1.5-1-x86_64 *version bump diff --git a/source/xlib/libquicktime/FrugalBuild b/source/xlib/libquicktime/FrugalBuild index c215568..6abd66f 100644 --- a/source/xlib/libquicktime/FrugalBuild +++ b/source/xlib/libquicktime/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: Christian Hamar alias krix pkgname=libquicktime -pkgver=1.1.4 +pkgver=1.1.5 pkgrel=1 pkgdesc="A library based on quicktime4linux with extensions" depends=('lame' 'gtk+2>=2.18.6' 'alsa-lib' 'libdv' 'libvorbis' 'libavc1394' 'faac>=1.25' 'faad2>=2.7' 'ffmpeg>=20090403' 'libraw1394>=2.0.0') @@ -12,7 +12,7 @@ archs=('x86_64' 'i686' 'ppc') options=('scriptlet') Finclude sourceforge url="http://libquicktime.sourceforge.net/" -sha1sums=('6c5d902e0b2cadd82d190e4643e9f706e2f10238') +sha1sums=('11dad92fe9dbb67aa8ef42c3404d3acba7ae2a37') build() { From bouleetbil at frogdev.info Mon Mar 8 15:48:49 2010 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 8 Mar 2010 15:48:49 +0100 (CET) Subject: [Frugalware-git] frugalware-current: mypaint-0.8.2-1-x86_64 *version bump Message-ID: <20100308144849.161CE20E0002@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=5fc0d81f83ec72da7b4cab342cd1aa322a67c60d commit 5fc0d81f83ec72da7b4cab342cd1aa322a67c60d Author: bouleetbil Date: Mon Mar 8 15:47:51 2010 +0100 mypaint-0.8.2-1-x86_64 *version bump diff --git a/source/xapps-extra/mypaint/FrugalBuild b/source/xapps-extra/mypaint/FrugalBuild index c693760..ba69986 100644 --- a/source/xapps-extra/mypaint/FrugalBuild +++ b/source/xapps-extra/mypaint/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: jercel pkgname=mypaint -pkgver=0.8.0 +pkgver=0.8.2 pkgrel=1 pkgdesc="Painting application with focus on brushes" url="http://mypaint.intilinux.com/" @@ -17,7 +17,7 @@ groups=('xapps-extra') archs=('x86_64' 'i686') up2date="Flasttarbz2 ${url}?page_id=6" source=(http://download.gna.org/$pkgname/$pkgname-$pkgver.tar.bz2) -sha1sums=('5ed96486c5c796631a885011fdbefb2ac3d9b347') +sha1sums=('f82ca2e25a1a1db291877a0fd0e170b2b7ce8da4') build() { Fmkdir /usr/share/ From bouleetbil at frogdev.info Mon Mar 8 15:55:59 2010 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 8 Mar 2010 15:55:59 +0100 (CET) Subject: [Frugalware-git] frugalware-current: dvd95-1.6p0-1-x86_64 *version bump Message-ID: <20100308145559.B76A620E0002@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=6b157a193ac1b4d94b7216e681ab3b876516ebd1 commit 6b157a193ac1b4d94b7216e681ab3b876516ebd1 Author: bouleetbil Date: Mon Mar 8 15:56:12 2010 +0100 dvd95-1.6p0-1-x86_64 *version bump diff --git a/source/gnome-extra/dvd95/FrugalBuild b/source/gnome-extra/dvd95/FrugalBuild index eba936f..7c00a4e 100644 --- a/source/gnome-extra/dvd95/FrugalBuild +++ b/source/gnome-extra/dvd95/FrugalBuild @@ -2,8 +2,8 @@ # Maintainer: Christian Hamar alias krix pkgname=dvd95 -pkgver=1.5p3 -pkgrel=2 +pkgver=1.6p0 +pkgrel=1 pkgdesc="A DVD9 to DVD5 converter" _F_gnome_desktop="y" Finclude gnome-scriptlet sourceforge @@ -13,7 +13,7 @@ makedepends=('perl-xml-parser' 'intltool') groups=('gnome-extra') archs=('i686' 'x86_64') up2date="lynx -dump http://sourceforge.net/project/showfiles.php?group_id=161064 | Flasttar" -sha1sums=('b317c79742111c3cc8c8e39a0292eb6d65e8fcef') +sha1sums=('0bfd7f0baff214e1cd2e7f9dad1eb99faf62421d') build() { # Fix for pixmap bug :P From bouleetbil at frogdev.info Mon Mar 8 15:58:15 2010 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 8 Mar 2010 15:58:15 +0100 (CET) Subject: [Frugalware-git] frugalware-current: gitg-0.0.6-1-x86_64 *version bump Message-ID: <20100308145816.2C6CC20E0002@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=523ec961799cf9e68e9f9ec48cac74373359cc5f commit 523ec961799cf9e68e9f9ec48cac74373359cc5f Author: bouleetbil Date: Mon Mar 8 15:58:36 2010 +0100 gitg-0.0.6-1-x86_64 *version bump diff --git a/source/gnome-extra/gitg/FrugalBuild b/source/gnome-extra/gitg/FrugalBuild index 869473e..dc56390 100644 --- a/source/gnome-extra/gitg/FrugalBuild +++ b/source/gnome-extra/gitg/FrugalBuild @@ -2,10 +2,10 @@ # Maintainer: jercel pkgname=gitg -pkgver=0.0.5 +pkgver=0.0.6 pkgrel=1 pkgdesc="gitg is a git repository viewer targeting gtk+/Gnome" -depends=('gtksourceview>=2.6.2-2' 'libxdmcp>=1.0.2-2' 'zlib' 'gconf>=2.26.2-2' 'libxinerama>=1.0.3' 'libxi>=1.2.1' 'libxcursor>=1.1.9-2') +depends=('gtksourceview>=2.6.2-2' 'libxdmcp>=1.0.2-2' 'zlib' 'gconf>=2.28.0' 'libxinerama>=1.0.3' 'libxi>=1.2.1' 'libxcursor>=1.1.9-2') makedepends=('intltool' 'pkgconfig>=0.23-3') _F_gnome_desktop="y" _F_gnome_iconcache="y" @@ -14,5 +14,6 @@ options=('scriptlet') Finclude gnome gnome-scriptlet groups=('gnome-extra') archs=('i686' 'x86_64') -sha1sums=('1a71f0d4bcc212dd2a910ddd9578b65229994f05') +sha1sums=('ddc9459fe91aeef545ff453173bda60f0c294760') + # optimization OK From bouleetbil at frogdev.info Mon Mar 8 16:41:16 2010 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 8 Mar 2010 16:41:16 +0100 (CET) Subject: [Frugalware-git] frugalware-current: mysql-workbench-oss-5.2.16-1-x86_64 *version bump Message-ID: <20100308154116.3B19B20E0002@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=51c5a8428401e742fb4ab29c7d38880fcc6792a0 commit 51c5a8428401e742fb4ab29c7d38880fcc6792a0 Author: bouleetbil Date: Mon Mar 8 16:38:24 2010 +0100 mysql-workbench-oss-5.2.16-1-x86_64 *version bump diff --git a/source/gnome-extra/mysql-workbench-oss/FrugalBuild b/source/gnome-extra/mysql-workbench-oss/FrugalBuild index df3333a..49e159d 100644 --- a/source/gnome-extra/mysql-workbench-oss/FrugalBuild +++ b/source/gnome-extra/mysql-workbench-oss/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: bouleetbil pkgname=mysql-workbench-oss -pkgver=5.2.8 +pkgver=5.2.16 pkgrel=1 pkgdesc="MySQL Workbench is a cross-platform, visual database design tool developed by MySQL." url="http://wb.mysql.com/" @@ -16,7 +16,7 @@ Fconfopts="${Fconfopts[@]} --enable-readline --with-system-ctemplate" up2date="lynx -dump -source http://dev.mysql.com/downloads/workbench/5.1.html |Flasttar" mirror="http://mysql.mirrors.crysys.hit.bme.hu/" source=($mirror/Downloads/MySQLGUITools/$pkgname-$pkgver.tar.gz) -sha1sums=('60f68219893f653ecd1cdc208b5108e41e9cbb6c') +sha1sums=('1e7d48c1f97bc96e79623d6bb459219cb5769892') replaces=('mysql-administrator') provides=('mysql-administrator') From devil505linux at gmail.com Mon Mar 8 17:10:55 2010 From: devil505linux at gmail.com (Devil505) Date: Mon, 8 Mar 2010 17:10:55 +0100 (CET) Subject: [Frugalware-git] frugalware-current: chromium-browser-5.0.307.11-1-i686 * version bump * updating patches Message-ID: <20100308161055.395AB20E0002@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=24975033b7c7d738d1bb162c00e29e5bdb7336aa commit 24975033b7c7d738d1bb162c00e29e5bdb7336aa Author: Devil505 Date: Mon Mar 8 17:10:04 2010 +0100 chromium-browser-5.0.307.11-1-i686 * version bump * updating patches diff --git a/source/gnome-extra/chromium-browser/FrugalBuild b/source/gnome-extra/chromium-browser/FrugalBuild index 4a59424..6cc765d 100644 --- a/source/gnome-extra/chromium-browser/FrugalBuild +++ b/source/gnome-extra/chromium-browser/FrugalBuild @@ -2,12 +2,12 @@ # Maintainer: Devil505 pkgname=chromium-browser -pkgver=4.0.249.78 +pkgver=5.0.307.11 pkgrel=1 pkgdesc='An open-source browser project that aims to build a safer, faster, and more stable way for all users to experience the web' url='http://www.chromium.org/' -depends=('nss' 'gconf' 'alsa-lib' 'hicolor-icon-theme' 'libxslt' 'ffmpeg') -makedepends=('python' 'perl' 'gperf') +depends=('nss' 'gconf' 'alsa-lib' 'hicolor-icon-theme' 'libxslt' 'ffmpeg' 'libevent' 'libxscrnsaver') +makedepends=('python' 'perl' 'gperf' 'yasm' 'libgl') license=('BSD') groups=('gnome-extra') archs=('i686' 'x86_64') @@ -17,12 +17,12 @@ up2date="Flasttar http://ftp.frugalware.org/pub/other/people/devil505/snapshots/ source=(http://ftp.frugalware.org/pub/other/people/devil505/snapshots/$pkgname/$pkgname-$pkgver.tar.bz2 \ $pkgname.desktop $pkgname.sh \ drop_sse2.patch ffmpeg_branding_mime.patch libpng-1.4.patch) -sha1sums=('e8ba3aa5f698341e521ecb7a9b47eaf90a3fcf4d' \ +sha1sums=('1f68a78c96e25335b2612572fa5bef579bbc8909' \ '78ed8913b8a598de6a9e45d206973a846dbe8a51' \ 'e06de4aee77b3deb77e3b08ebb175ec02da42ced' \ - '48c08d66c0c210cb8261207ef077157cdb1a12fb' \ - '0c0cdd36beb0663a74136a98b501ab5e2d256d3a' \ - '5e20f6b7e276ab300aa8d037de073703aa02d5a3') + 'c47d35b1539bcc9fd80df253eb2ba43d3b76f6ff' \ + 'dcf0bcd9da6e5e81787095d64ccfc8c1cb6ba02e' \ + 'b9114103b3a30c7f85e528d1e80fe4e0f1fc51b5') build() { Fcd @@ -36,12 +36,13 @@ build() { release_extra_cflags='${CFLAGS}' \ ffmpeg_branding=Chrome \ use_system_libjpeg=1 \ - use_system_libxml=1 \ use_system_libxslt=1 \ use_system_bzip2=1 \ use_system_libpng=1 \ use_system_ffmpeg=1 \ - werror=" + use_system_yasm=1 \ + use_system_libevent=1 \ + use_system_ssl=1" Fpatchall @@ -53,7 +54,7 @@ build() { Fmkdir usr/lib/chromium Fexerel out/Release/chrome usr/lib/chromium/chromium - Finstallrel 4755 out/Release/chrome_sandbox usr/lib/chromium/chromium-sandbox + Finstallrel 4555 out/Release/chrome_sandbox usr/lib/chromium/chromium-sandbox Ffileschown usr/lib/chromium/chromium-sandbox root root Finstallrel 644 out/Release/chrome.pak usr/lib/chromium/chrome.pak diff --git a/source/gnome-extra/chromium-browser/drop_sse2.patch b/source/gnome-extra/chromium-browser/drop_sse2.patch index 41da934..66051ff 100644 --- a/source/gnome-extra/chromium-browser/drop_sse2.patch +++ b/source/gnome-extra/chromium-browser/drop_sse2.patch @@ -1,6 +1,6 @@ ---- src/build/common.gypi 2009-12-17 01:57:20.000000000 +0100 -+++ src/build/common.gypi 2009-12-17 02:37:05.663568345 +0100 -@@ -652,15 +652,6 @@ +--- src/build/common.gypi 2010-02-11 19:30:43.000000000 +0100 ++++ src/build/common.gypi 2010-02-11 21:07:58.505011143 +0100 +@@ -759,15 +759,6 @@ # used during computation does not change depending on how the # compiler optimized the code, since the value is always kept # in its specified precision. diff --git a/source/gnome-extra/chromium-browser/ffmpeg_branding_mime.patch b/source/gnome-extra/chromium-browser/ffmpeg_branding_mime.patch index 506146a..083026e 100644 --- a/source/gnome-extra/chromium-browser/ffmpeg_branding_mime.patch +++ b/source/gnome-extra/chromium-browser/ffmpeg_branding_mime.patch @@ -1,5 +1,5 @@ ---- src/net/base/mime_util.cc 2009-12-13 19:09:26.467781732 +0100 -+++ src/net/base/mime_util.cc 2009-12-13 19:10:14.967931404 +0100 +--- src/net/base/mime_util.cc 2010-02-11 20:07:33.939537145 +0100 ++++ src/net/base/mime_util.cc 2010-02-11 20:07:33.955373468 +0100 @@ -188,7 +188,6 @@ "audio/ogg", "application/ogg", @@ -8,15 +8,15 @@ // MPEG-4. "video/mp4", "video/x-m4v", -@@ -198,7 +197,6 @@ - // MP3. +@@ -199,7 +198,6 @@ "audio/mp3", "audio/x-mp3", + "audio/mpeg", -#endif }; // List of supported codecs when passed in with . -@@ -206,10 +204,8 @@ +@@ -207,10 +205,8 @@ // Refer to http://wiki.whatwg.org/wiki/Video_type_parameters#Browser_Support // for more information. static const char* const supported_media_codecs[] = { diff --git a/source/gnome-extra/chromium-browser/libpng-1.4.patch b/source/gnome-extra/chromium-browser/libpng-1.4.patch index 111b5e8..a3c4baf 100644 --- a/source/gnome-extra/chromium-browser/libpng-1.4.patch +++ b/source/gnome-extra/chromium-browser/libpng-1.4.patch @@ -1,28 +1,43 @@ ---- src/app/gfx/codec/orig/png_codec.cc 2009-11-19 12:14:46.000000000 -0800 -+++ src/app/gfx/codec/png_codec.cc 2009-11-19 12:15:56.000000000 -0800 -@@ -350,9 +350,9 @@ +--- src/app/gfx/codec/png_codec.cc ++++ src/app/gfx/codec/png_codec.cc +@@ -190,7 +190,7 @@ void DecodeInfoCallback(png_struct* png_ptr, png_info* info_ptr) { + unsigned long long total_size = + static_cast(w) * static_cast(h); + if (total_size > ((1 << 29) - 1)) +- longjmp(png_ptr->jmpbuf, 1); ++ longjmp(png_jmpbuf(png_ptr), 1); + state->width = static_cast(w); + state->height = static_cast(h); + +@@ -279,7 +279,7 @@ void DecodeInfoCallback(png_struct* png_ptr, png_info* info_ptr) { + } + } else { + NOTREACHED() << "Unknown input channels"; +- longjmp(png_ptr->jmpbuf, 1); ++ longjmp(png_jmpbuf(png_ptr), 1); + } + + if (state->bitmap) { +@@ -349,10 +349,7 @@ bool BuildPNGStruct(const unsigned char* input, size_t input_size, + if (png_sig_cmp(const_cast(input), 0, 8) != 0) return false; - *png_ptr = png_create_read_struct(PNG_LIBPNG_VER_STRING, +- *png_ptr = png_create_read_struct(PNG_LIBPNG_VER_STRING, - png_voidp_NULL, - png_error_ptr_NULL, - png_error_ptr_NULL); -+ 0, -+ 0, -+ 0); ++ *png_ptr = png_create_read_struct(PNG_LIBPNG_VER_STRING, NULL, NULL, NULL); if (!*png_ptr) return false; -@@ -574,9 +574,9 @@ +@@ -574,9 +571,7 @@ bool PNGCodec::Encode(const unsigned char* input, ColorFormat format, DCHECK(input_color_components * w <= row_byte_width); png_struct* png_ptr = png_create_write_struct(PNG_LIBPNG_VER_STRING, - png_voidp_NULL, - png_error_ptr_NULL, - png_error_ptr_NULL); -+ 0, -+ 0, -+ 0); ++ NULL, NULL, NULL); if (!png_ptr) return false; png_info* info_ptr = png_create_info_struct(png_ptr); @@ -35,9 +50,9 @@ - png_voidp_NULL, - png_error_ptr_NULL, - png_error_ptr_NULL); -+ 0, -+ 0, -+ 0); ++ NULL, ++ NULL, ++ NULL); if (!pngPtr) return false; From devil505linux at gmail.com Mon Mar 8 17:14:36 2010 From: devil505linux at gmail.com (Devil505) Date: Mon, 8 Mar 2010 17:14:36 +0100 (CET) Subject: [Frugalware-git] frugalware-current: json-glib-0.10.2-1-i686 *version bump Message-ID: <20100308161436.6563420E0002@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=12378391f6338f9f514211d62ab5f996e634b92f commit 12378391f6338f9f514211d62ab5f996e634b92f Author: Devil505 Date: Mon Mar 8 17:14:11 2010 +0100 json-glib-0.10.2-1-i686 *version bump diff --git a/source/devel-extra/json-glib/FrugalBuild b/source/devel-extra/json-glib/FrugalBuild index 185db03..0916fd5 100644 --- a/source/devel-extra/json-glib/FrugalBuild +++ b/source/devel-extra/json-glib/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: Devil505 pkgname=json-glib -pkgver=0.10.0 +pkgver=0.10.2 pkgrel=1 pkgdesc="JSON library built on GLib" url="http://live.gnome.org/JsonGlib" @@ -10,6 +10,6 @@ Finclude gnome depends=('glib2') groups=('devel-extra') archs=('i686' 'x86_64' 'ppc') -sha1sums=('e8bcab59da1c7d8f84dd3c50f3e20e117c4a26d1') +sha1sums=('ed106b81338819ebe58daeacdeb54ccc148c4c8e') # optimization OK From devil505linux at gmail.com Mon Mar 8 17:23:10 2010 From: devil505linux at gmail.com (Devil505) Date: Mon, 8 Mar 2010 17:23:10 +0100 (CET) Subject: [Frugalware-git] frugalware-current: pino-0.2.1-1-i686 * version bump Message-ID: <20100308162310.ADDA620E0002@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=be14e8880320358b790e1e5b4d190fc7a6a732f0 commit be14e8880320358b790e1e5b4d190fc7a6a732f0 Author: Devil505 Date: Mon Mar 8 17:22:36 2010 +0100 pino-0.2.1-1-i686 * version bump diff --git a/source/xapps-extra/pino/FrugalBuild b/source/xapps-extra/pino/FrugalBuild index c737c68..00a2b1d 100644 --- a/source/xapps-extra/pino/FrugalBuild +++ b/source/xapps-extra/pino/FrugalBuild @@ -2,10 +2,10 @@ # Maintainer: Devil505 pkgname=pino -pkgver=0.1.5 +pkgver=0.2.1 pkgrel=1 pkgdesc="Pino is a Twitter client for the Linux desktop. It's simple and fast." -depends=('atk' 'libxau' 'libxdmcp' 'libgee' 'libnotify' 'webkit' 'libxinerama' 'libxi' 'libxrandr' 'libxcursor' 'libxdamage' 'libjpeg' 'libxslt' 'libxt' 'libice' 'libgcc' 'util-linux-ng') +depends=('atk' 'libgee' 'libnotify' 'webkit' 'unique' 'libxinerama' 'libxi' 'libxrandr' 'libxcursor' 'libxcomposite' 'libjpeg' 'libxslt' 'libxt' 'libice' 'libuuid') makedepends=('vala' 'intltool') options=('scriptlet') _F_googlecode_ext=".tar.bz2" @@ -14,7 +14,7 @@ _F_gnome_iconcache="y" Finclude googlecode gnome-scriptlet groups=('xapps-extra') archs=('i686' 'x86_64') -sha1sums=('9070a68ec89d4501734b618f633eb794870724e7') +sha1sums=('36f215ede36d3573be30e9be0b7824d453ea45a3') build() { Fcd From crazy at frugalware.org Mon Mar 8 17:24:11 2010 From: crazy at frugalware.org (crazy) Date: Mon, 8 Mar 2010 17:24:11 +0100 (CET) Subject: [Frugalware-git] frugalware-current: sqlite3-3.6.22-1-x86_64 * Version bump * ( need to bump while it block tbird ) Message-ID: <20100308162411.6CB8F20E0002@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=586aeff9721359de5639fd5a96ceeddf23fd41e6 commit 586aeff9721359de5639fd5a96ceeddf23fd41e6 Author: crazy Date: Mon Mar 8 18:23:22 2010 +0100 sqlite3-3.6.22-1-x86_64 * Version bump * ( need to bump while it block tbird ) diff --git a/source/lib/sqlite3/FrugalBuild b/source/lib/sqlite3/FrugalBuild index 7ff12ed..f4b7092 100644 --- a/source/lib/sqlite3/FrugalBuild +++ b/source/lib/sqlite3/FrugalBuild @@ -3,7 +3,7 @@ # Maintainer: voroskoi pkgname=sqlite3 -pkgver=3.6.20 +pkgver=3.6.22 pkgrel=1 pkgdesc="A C library that implements an SQL database engine" url="http://www.sqlite.org/" @@ -14,7 +14,7 @@ archs=('i686' 'x86_64' 'ppc') _F_cd_path="sqlite-$pkgver" up2date="lynx -dump http://www.sqlite.org/ |grep Version |sed 's/.*n \(.*\) of.*/\1/'" source=(http://www.sqlite.org/sqlite-$pkgver.tar.gz) -sha1sums=('8e50d1bdab6ab7dbc9c6398cc4ef4d709b114528') +sha1sums=('7a29a469d5e28040224a934ed0c28041412876d8') subpkgs=('lemon') subdescs=('The Lemon program is an LALR(1) parser generator.') diff --git a/source/xapps/thunderbird/thunderbird.png b/source/xapps/thunderbird/thunderbird.png deleted file mode 100644 index a0020a6..0000000 Binary files a/source/xapps/thunderbird/thunderbird.png and /dev/null differ From devil505linux at gmail.com Mon Mar 8 17:29:38 2010 From: devil505linux at gmail.com (Devil505) Date: Mon, 8 Mar 2010 17:29:38 +0100 (CET) Subject: [Frugalware-git] frugalware-current: canto-0.7.6-1-i686 * version bump Message-ID: <20100308162938.7767D20E0002@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=ab20b57c5bedc2d72c428e6c3c9f71cc5669aa4c commit ab20b57c5bedc2d72c428e6c3c9f71cc5669aa4c Author: Devil505 Date: Mon Mar 8 17:29:01 2010 +0100 canto-0.7.6-1-i686 * version bump diff --git a/source/apps-extra/canto/FrugalBuild b/source/apps-extra/canto/FrugalBuild index ac0bacb..c842ca2 100644 --- a/source/apps-extra/canto/FrugalBuild +++ b/source/apps-extra/canto/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: Devil505 pkgname=canto -pkgver=0.7.5 +pkgver=0.7.6 pkgrel=1 pkgdesc="A ncurses Atom/RSS/RDF aggregator" url="http://codezen.org/canto/" @@ -11,6 +11,6 @@ groups=('apps-extra') archs=('i686') up2date="Flasttar $url" source=(http://codezen.org/static/$pkgname-$pkgver.tar.gz) -sha1sums=('38186e0db5c491b1380f598ab9987f542b0835c2') +sha1sums=('00547175623b717e432e7c30be1728af000b429a') # optimization OK From devil505linux at gmail.com Mon Mar 8 17:36:22 2010 From: devil505linux at gmail.com (Devil505) Date: Mon, 8 Mar 2010 17:36:22 +0100 (CET) Subject: [Frugalware-git] frugalware-current: fortune-mod-himym-0.3-1-i686 * version bump Message-ID: <20100308163622.B744E20E0002@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=3565ef88550675b62ba1e1ef8ad0f34f45ea62cd commit 3565ef88550675b62ba1e1ef8ad0f34f45ea62cd Author: Devil505 Date: Mon Mar 8 17:35:50 2010 +0100 fortune-mod-himym-0.3-1-i686 * version bump diff --git a/source/games-extra/fortune-mod-himym/FrugalBuild b/source/games-extra/fortune-mod-himym/FrugalBuild index 9388e80..d58b3cf 100644 --- a/source/games-extra/fortune-mod-himym/FrugalBuild +++ b/source/games-extra/fortune-mod-himym/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: Devil505 pkgname=fortune-mod-himym -pkgver=0.2 +pkgver=0.3 pkgrel=1 pkgdesc="How I Met Your Mother fortune cookies" url="http://m-redd.com/mod/" @@ -11,11 +11,10 @@ groups=('games-extra') archs=('i686' 'x86_64') up2date="Flasttar $url" source=(http://m-redd.com/mod/$pkgname-$pkgver.tar.gz) -sha1sums=('873ea43e79bbb1eb0575e5efba709aad04698c9c') +sha1sums=('5a4346ace1ddfd15014c1cd46c37d7e9c5984e2f') build() { Fcd Fmkdir usr/share/fortune - Finstallrel 644 HIMYM usr/share/fortune - Finstallrel 644 HIMYM.dat usr/share/fortune + Finstallrel 644 himym usr/share/fortune } From devil505linux at gmail.com Mon Mar 8 17:50:20 2010 From: devil505linux at gmail.com (Devil505) Date: Mon, 8 Mar 2010 17:50:20 +0100 (CET) Subject: [Frugalware-git] frugalware-current: zaz-0.3.3-1-i686 * version bump Message-ID: <20100308165020.8508820E0002@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=c45e71acbbf7195d497ee2f2bd11063ba2ed4987 commit c45e71acbbf7195d497ee2f2bd11063ba2ed4987 Author: Devil505 Date: Mon Mar 8 17:45:43 2010 +0100 zaz-0.3.3-1-i686 * version bump diff --git a/source/games-extra/zaz/FrugalBuild b/source/games-extra/zaz/FrugalBuild index 4cbba34..2a69740 100644 --- a/source/games-extra/zaz/FrugalBuild +++ b/source/games-extra/zaz/FrugalBuild @@ -2,13 +2,13 @@ # Maintainer: Devil505 pkgname=zaz -pkgver=0.3.1 +pkgver=0.3.3 pkgrel=1 pkgdesc="Puzzle game where the player has to arrange balls in triplets." depends=('libvorbis' 'libtheora' 'ftgl>=2.1.3_rc5' 'libglu' 'sdlimage' 'libstdc++' 'libxext' 'libxdamage') Finclude sourceforge groups=('games-extra') archs=('i686' 'x86_64') -sha1sums=('90180b083e2d49c43ab144570054d546dca3cb03') +sha1sums=('c0ab3255fec5de2f9c728d478a75b419f6a74103') # optimization OK From exceed.cedric at gmail.com Mon Mar 8 18:10:02 2010 From: exceed.cedric at gmail.com (exceed) Date: Mon, 8 Mar 2010 18:10:02 +0100 (CET) Subject: [Frugalware-git] frugalware-current: xdelta-3.0y-1-i686 Message-ID: <20100308171002.CD90A20E0002@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=eedfad25f4b211bca1382985a16059526574bc52 commit eedfad25f4b211bca1382985a16059526574bc52 Author: exceed Date: Mon Mar 8 19:16:01 2010 +0100 xdelta-3.0y-1-i686 * Version bump diff --git a/source/devel-extra/xdelta/FrugalBuild b/source/devel-extra/xdelta/FrugalBuild index 4e6a4f3..3fb177b 100644 --- a/source/devel-extra/xdelta/FrugalBuild +++ b/source/devel-extra/xdelta/FrugalBuild @@ -3,7 +3,7 @@ # Contributor: Othmane Benkirane pkgname=xdelta -pkgver=3.0x +pkgver=3.0y pkgrel=1 pkgdesc="Delta/differential compression tools and binary diff tool" url="http://xdelta.org" @@ -15,7 +15,7 @@ Finclude googlecode python up2date="Flastarchive http://code.google.com/p/$pkgname/downloads/list?q=label:Featured .tar.gz" source=(http://${pkgname}.googlecode.com/files/${pkgname}${pkgver}.tar.gz) _F_cd_path="${pkgname}${pkgver}" -sha1sums=('8f0eea4b102a8b5ab649cd0932d655b648250e3e') +sha1sums=('3120ff9ff57734e08c06a97675572370d2da92e4') build() { From exceed.cedric at gmail.com Mon Mar 8 18:16:17 2010 From: exceed.cedric at gmail.com (exceed) Date: Mon, 8 Mar 2010 18:16:17 +0100 (CET) Subject: [Frugalware-git] frugalware-current: fsarchiver-0.6.8-1-i686 Message-ID: <20100308171617.591D420E0002@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=e04cc132741fc6ab6e57d590c8ff7a2fd3c217b9 commit e04cc132741fc6ab6e57d590c8ff7a2fd3c217b9 Author: exceed Date: Mon Mar 8 19:22:47 2010 +0100 fsarchiver-0.6.8-1-i686 * Version bump diff --git a/source/apps-extra/fsarchiver/FrugalBuild b/source/apps-extra/fsarchiver/FrugalBuild index 9579755..7100684 100644 --- a/source/apps-extra/fsarchiver/FrugalBuild +++ b/source/apps-extra/fsarchiver/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: exceed pkgname=fsarchiver -pkgver=0.6.7 +pkgver=0.6.8 pkgrel=1 pkgdesc="Save the contents of a file-system to a compressed archive file" depends=('zlib' 'lzo' 'bzip2' 'libgcrypt' 'e2fsprogs' 'ntfs-3g>=2010.1.16') @@ -11,6 +11,6 @@ Finclude sourceforge groups=('apps-extra') archs=('i686' 'x86_64') Fconfopts="${Fconfopts[@]} --disable-lzma" -sha1sums=('7816683494c54e875d61e47f0044b6d2c7c04442') +sha1sums=('ea3a46bfd729883c07edaa28ce2ce648d8810093') # optimization OK From exceed.cedric at gmail.com Mon Mar 8 18:31:22 2010 From: exceed.cedric at gmail.com (exceed) Date: Mon, 8 Mar 2010 18:31:22 +0100 (CET) Subject: [Frugalware-git] frugalware-current: ncmpcpp-0.5.2-1-i686 Message-ID: <20100308173122.B5DC920E0002@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=506b986b0d77a4b813fd3cccfb4a454081ca2ff5 commit 506b986b0d77a4b813fd3cccfb4a454081ca2ff5 Author: exceed Date: Mon Mar 8 19:37:25 2010 +0100 ncmpcpp-0.5.2-1-i686 * Version bump diff --git a/source/multimedia-extra/ncmpcpp/FrugalBuild b/source/multimedia-extra/ncmpcpp/FrugalBuild index 870b45d..3100339 100644 --- a/source/multimedia-extra/ncmpcpp/FrugalBuild +++ b/source/multimedia-extra/ncmpcpp/FrugalBuild @@ -3,7 +3,7 @@ # Contributor: Laszlo Papp pkgname=ncmpcpp -pkgver=0.5.1 +pkgver=0.5.2 pkgrel=1 pkgdesc="An almost exact clone of ncmpc with some new features." url="http://unkart.ovh.org/ncmpcpp/" @@ -13,6 +13,6 @@ archs=('i686' 'x86_64') Fconfopts="${Fconfopts[@]} --enable-unicode --enable-clock --with-taglib --with-curl" up2date="Flasttar $url/download.php" source=("$url/$pkgname-$pkgver.tar.bz2") -sha1sums=('b1b17353d72c5ed469d21d2c77cdf34a1421ed8e') +sha1sums=('fefa8a6a120a479f83a0af7cd60596289d7d1398') # optimization OK From devil505linux at gmail.com Mon Mar 8 18:39:32 2010 From: devil505linux at gmail.com (Devil505) Date: Mon, 8 Mar 2010 18:39:32 +0100 (CET) Subject: [Frugalware-git] frugalware-current: spring-0.81.2-1-i686 * version bump Message-ID: <20100308173932.B003820E0002@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=4abfe8d2c706d00cd4ba02f0b509f5aa8ecec9ae commit 4abfe8d2c706d00cd4ba02f0b509f5aa8ecec9ae Author: Devil505 Date: Mon Mar 8 18:33:58 2010 +0100 spring-0.81.2-1-i686 * version bump diff --git a/source/games-extra/spring/FrugalBuild b/source/games-extra/spring/FrugalBuild index 2918c27..77f9d85 100644 --- a/source/games-extra/spring/FrugalBuild +++ b/source/games-extra/spring/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: Devil505 pkgname=spring -pkgver=0.81.1.3 +pkgver=0.81.2 pkgrel=1 pkgdesc="A free 3D game engine for the real-time-strategy (RTS) game Total Annihilation" depends=('glew' 'devil' 'libboost-mt' 'sdl' 'libxmu' 'libxi' 'libgl' 'libtiff' 'libjpeg' 'libsm' 'libxcb' 'libxdamage' 'e2fsprogs' 'openal' 'libvorbis' 'freetype2' 'libxcursor' 'openal') @@ -18,7 +18,7 @@ _F_cd_path="${pkgname}_${pkgver}" _F_cmake_confopts="-DCMAKE_INSTALL_PREFIX=/usr -DDATADIR=share/spring -DUSE_GML_SIM=ON -DUSE_GML=ON" Finclude cmake source=($source README.Frugalware) -sha1sums=('7b7994cc90c5ef23331d9dd28677a62ebbdad068' \ +sha1sums=('1bec9713322282989f57c930d1f38a5bb85dff0d' \ '5721b8c82c14fbfc895f86cbfbd7a1b00dcbc894') build() { From devil505linux at gmail.com Mon Mar 8 19:18:01 2010 From: devil505linux at gmail.com (Devil505) Date: Mon, 8 Mar 2010 19:18:01 +0100 (CET) Subject: [Frugalware-git] frugalware-current: pidgin-2.6.6-1-i686 * version bump Message-ID: <20100308181801.D29A620E0002@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=01b79ddfae74bdc46284ad459e78618ea5a037b7 commit 01b79ddfae74bdc46284ad459e78618ea5a037b7 Author: Devil505 Date: Mon Mar 8 19:13:25 2010 +0100 pidgin-2.6.6-1-i686 * version bump diff --git a/source/xapps/pidgin/FrugalBuild b/source/xapps/pidgin/FrugalBuild index 3842043..c35adfb 100644 --- a/source/xapps/pidgin/FrugalBuild +++ b/source/xapps/pidgin/FrugalBuild @@ -3,7 +3,7 @@ # Contributor: voroskoi pkgname=pidgin -pkgver=2.6.5 +pkgver=2.6.6 pkgrel=1 pkgdesc="A multi-protocol instant messaging (IM) client" depends=('gtk+2>=2.16.2-2' 'libao' 'audiofile' 'gtkspell>=2.0.11-3' 'startup-notification>=0.9-3' \ @@ -21,7 +21,7 @@ _F_sourceforge_ext=".tar.bz2" Finclude sourceforge url="http://www.pidgin.im/" options=('scriptlet') -sha1sums=('e50edbe0fe588d7222d54154942550ef1788b89d') +sha1sums=('d74459152f9598139a3fd8aee385e3366722155c') subpkgs=("libpurple") subdescs=('Library intended to be used by programmers seeking to write an IM client that connects to many IM networks.') subdepends=("avahi-compat>=0.6.21 dbus-glib>=0.74 avahi-glib>=0.6.21 gnutls>=2.8 libxml2 libxslt nss>=3.12 farsight2 nice") From devil505linux at gmail.com Mon Mar 8 19:18:03 2010 From: devil505linux at gmail.com (Devil505) Date: Mon, 8 Mar 2010 19:18:03 +0100 (CET) Subject: [Frugalware-git] frugalware-current: bilboplanet-0.3.2-1-i686 * version bump Message-ID: <20100308181803.414DB20E0004@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=e3e2bd510ffbd5ad24212f8d40516a2e79bf9bcf commit e3e2bd510ffbd5ad24212f8d40516a2e79bf9bcf Author: Devil505 Date: Mon Mar 8 19:17:02 2010 +0100 bilboplanet-0.3.2-1-i686 * version bump diff --git a/source/network-extra/bilboplanet/FrugalBuild b/source/network-extra/bilboplanet/FrugalBuild index 10bc091..09a62fb 100644 --- a/source/network-extra/bilboplanet/FrugalBuild +++ b/source/network-extra/bilboplanet/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: Devil505 pkgname=bilboplanet -pkgver=0.3.1 +pkgver=0.3.2 pkgrel=1 pkgdesc="BilboPlanet's project is A Rss feed agregator free software write in PHP." url="http://www.bilboplanet.com" @@ -11,7 +11,7 @@ groups=('network-extra') archs=('i686' 'x86_64') up2date="Flasttar $url" source=($url/downloads/$pkgname-$pkgver.tar.gz) -sha1sums=('22312a25b78e38706f7fecc4f3e677819b939825') +sha1sums=('6e27385dfd7ecd040a7e3372278aff91d3c14440') build() { From devil505linux at gmail.com Mon Mar 8 19:24:53 2010 From: devil505linux at gmail.com (Devil505) Date: Mon, 8 Mar 2010 19:24:53 +0100 (CET) Subject: [Frugalware-git] frugalware-current: guvcview-1.3.0-1-i686 * version bump Message-ID: <20100308182453.995A320E0002@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=6334194954ca691aec6c118b604a1fd663558c89 commit 6334194954ca691aec6c118b604a1fd663558c89 Author: Devil505 Date: Mon Mar 8 19:24:18 2010 +0100 guvcview-1.3.0-1-i686 * version bump diff --git a/source/xapps-extra/guvcview/FrugalBuild b/source/xapps-extra/guvcview/FrugalBuild index 6151f92..36da961 100644 --- a/source/xapps-extra/guvcview/FrugalBuild +++ b/source/xapps-extra/guvcview/FrugalBuild @@ -2,10 +2,10 @@ # Maintainer: Devil505 pkgname=guvcview -pkgver=1.2.2 +pkgver=1.3.0 pkgrel=1 pkgdesc="A video viewer and capturer for the linux uvc driver" -depends=('gtk+2>=2.16.6' 'libxau>=1.0.4-1' 'libxdmcp' 'portaudio' 'twolame' 'ffmpeg>=20090403-1' 'libxext>=1.0.5-3' 'libraw1394' 'libogg' 'libxdamage>=1.1.1-3' 'libxml2') +depends=('gtk+2>=2.16.6' 'libxau>=1.0.4-1' 'libxdmcp' 'portaudio' 'twolame' 'ffmpeg>=20090403-1' 'libxext>=1.0.5-3' 'libraw1394' 'libogg' 'libxdamage>=1.1.1-3' 'libxml2' 'libv4l') options=('scriptlet') _F_berlios_name="$pkgname-src" _F_berlios_dirname="$pkgname" @@ -14,6 +14,6 @@ Finclude berlios groups=('xapps-extra') archs=('i686' 'x86_64') _F_cd_path="$_F_berlios_name-$pkgver" -sha1sums=('e889db57bb83790dfa96fb5fcb233f3549606a98') +sha1sums=('4d3240519e8f82340ffc686efd1554aa72faebee') # optimization OK From devil505linux at gmail.com Mon Mar 8 19:29:08 2010 From: devil505linux at gmail.com (Devil505) Date: Mon, 8 Mar 2010 19:29:08 +0100 (CET) Subject: [Frugalware-git] frugalware-current: pidgin-facebookchat-1.65-1-i686 * version bump Message-ID: <20100308182908.D885120E0002@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=9c355baa8e9160e3d0cf261e0cf79b97e4a4ec98 commit 9c355baa8e9160e3d0cf261e0cf79b97e4a4ec98 Author: Devil505 Date: Mon Mar 8 19:28:35 2010 +0100 pidgin-facebookchat-1.65-1-i686 * version bump diff --git a/source/xapps-extra/pidgin-facebookchat/FrugalBuild b/source/xapps-extra/pidgin-facebookchat/FrugalBuild index c2d8ef5..1bdfa28 100644 --- a/source/xapps-extra/pidgin-facebookchat/FrugalBuild +++ b/source/xapps-extra/pidgin-facebookchat/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: Devil505 pkgname=pidgin-facebookchat -pkgver=1.64 +pkgver=1.65 pkgrel=1 pkgdesc="This is a Facebook chat plugin for Pidgin and libpurple messengers." _F_googlecode_ext=".tar.bz2" @@ -12,7 +12,7 @@ Finclude googlecode depends=('pidgin' 'json-glib>=0.8.0') groups=('xapps-extra' 'pidgin-plugins') archs=('i686' 'x86_64' 'ppc') -sha1sums=('d512f2bfae58d053b355a28a3bf7ad49fa37d939') +sha1sums=('945c46dc606c990c740fc6cc15ee6b99f8c52baa') build() { Fcd "$pkgname" From devil505linux at gmail.com Mon Mar 8 19:34:57 2010 From: devil505linux at gmail.com (Devil505) Date: Mon, 8 Mar 2010 19:34:57 +0100 (CET) Subject: [Frugalware-git] frugalware-current: musicmanager-0.10.19-1-i686 * version bump Message-ID: <20100308183457.AB1E120E0002@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=787309f100455389a2c4cfcbe4db1490a28f52b5 commit 787309f100455389a2c4cfcbe4db1490a28f52b5 Author: Devil505 Date: Mon Mar 8 19:33:58 2010 +0100 musicmanager-0.10.19-1-i686 * version bump diff --git a/source/xapps-extra/musicmanager/FrugalBuild b/source/xapps-extra/musicmanager/FrugalBuild index 8a49827..7105baf 100644 --- a/source/xapps-extra/musicmanager/FrugalBuild +++ b/source/xapps-extra/musicmanager/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: Devil505 pkgname=musicmanager -pkgver=0.10.18 +pkgver=0.10.19 pkgrel=1 pkgdesc="Music Manager and Player" depends=('fox' 'libxext' 'libxrender' 'libglu' 'xine-lib' 'dbus' 'taglib' 'sqlite3' 'libxfixes') @@ -13,5 +13,5 @@ _F_gnome_desktop="y" Finclude googlecode gnome-scriptlet groups=('xapps-extra') archs=('i686' 'x86_64') -sha1sums=('166cd7e6fd24c2cbd5b8d86bc5fad355b36b7eea') +sha1sums=('ce3a50e540cf46c29f0af1e4f8aee47866e597d2') From bouleetbil at frogdev.info Mon Mar 8 19:51:48 2010 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 8 Mar 2010 19:51:48 +0100 (CET) Subject: [Frugalware-git] frugalware-current: itext-5.0.1-1-x86_64 *version bump Message-ID: <20100308185148.1963D20E0004@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=17df0c38f96f61dd18b816fb62fa93dda7679c6a commit 17df0c38f96f61dd18b816fb62fa93dda7679c6a Author: bouleetbil Date: Mon Mar 8 19:50:23 2010 +0100 itext-5.0.1-1-x86_64 *version bump diff --git a/source/devel-extra/itext/FrugalBuild b/source/devel-extra/itext/FrugalBuild index 6f5fca1..c5419d3 100644 --- a/source/devel-extra/itext/FrugalBuild +++ b/source/devel-extra/itext/FrugalBuild @@ -2,17 +2,18 @@ # Maintainer: bouleetbil pkgname=itext -pkgver=5.0.0 +pkgver=5.0.1 pkgrel=1 pkgdesc="A Java library that generate documents in the Portable Document Format (PDF) and/or HTML." groups=('devel-extra') archs=('i686' 'x86_64') _F_sourceforge_name="iText-src" _F_sourceforge_realname="iText" +_F_sourceforge_ext=".zip" Finclude sourceforge java depends=(${depends[@]} 'bctsp' 'dom4j') url="http://www.lowagie.com/iText/" -sha1sums=('db8b0406372d610f416e1322d177fbdd19ae3da0') +sha1sums=('5ddfde5a2b211e1a7c4a87f37068db12fe1d0fc9') _F_cd_path="src" build() { From bouleetbil at frogdev.info Mon Mar 8 20:08:51 2010 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 8 Mar 2010 20:08:51 +0100 (CET) Subject: [Frugalware-git] frugalware-current: xterm-256-1-i686 *version bump Message-ID: <20100308190851.BD45A20E0002@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=4508e2ae280a5b2bf798c3de1a82c061efdb272a commit 4508e2ae280a5b2bf798c3de1a82c061efdb272a Author: bouleetbil Date: Mon Mar 8 20:47:23 2010 +0000 xterm-256-1-i686 *version bump diff --git a/source/x11/xterm/FrugalBuild b/source/x11/xterm/FrugalBuild index 56d0e69..eba156e 100644 --- a/source/x11/xterm/FrugalBuild +++ b/source/x11/xterm/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: Christian Hamar alias krix pkgname=xterm -pkgver=255 +pkgver=256 pkgrel=1 pkgdesc="X terminal emulator" url="http://dickey.his.com/xterm/" @@ -42,5 +42,5 @@ build() { Fbuild_gnome_scriptlet } -sha1sums=('09bd7afe42afd14e36b5467bc2e8b6bdb86102e0') +sha1sums=('e71abcc1c63ba56eeab004608abe926dcebd2aa6') # optimization OK From devil505linux at gmail.com Mon Mar 8 20:09:16 2010 From: devil505linux at gmail.com (Devil505) Date: Mon, 8 Mar 2010 20:09:16 +0100 (CET) Subject: [Frugalware-git] frugalware-current: gbrainy-1.40-1-i686 * version bump Message-ID: <20100308190916.BCE8120E0002@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=df8f3c0600eed54558cfffe29dc32da6c24ad0ea commit df8f3c0600eed54558cfffe29dc32da6c24ad0ea Author: Devil505 Date: Mon Mar 8 20:08:02 2010 +0100 gbrainy-1.40-1-i686 * version bump diff --git a/source/gnome-extra/gbrainy/FrugalBuild b/source/gnome-extra/gbrainy/FrugalBuild index c662b91..54a4024 100644 --- a/source/gnome-extra/gbrainy/FrugalBuild +++ b/source/gnome-extra/gbrainy/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: Devil505 pkgname=gbrainy -pkgver=1.30 +pkgver=1.40 pkgrel=1 pkgdesc="brain teaser game and trainer" url="http://live.gnome.org/$pkgname" @@ -17,7 +17,7 @@ Finclude gnome-scriptlet groups=('gnome-extra') up2date="lynx -dump $url | Flasttar" source=(http://gent.softcatala.org/jmas/$pkgname/$pkgname-$pkgver.tar.gz) -sha1sums=('65e75763203b01254c90f3fb3cc3c89c0d77956f') +sha1sums=('fd9ef3bb03d43968d1f5c9b6dd783f1cf956f6ca') build() { From devil505linux at gmail.com Mon Mar 8 20:14:28 2010 From: devil505linux at gmail.com (Devil505) Date: Mon, 8 Mar 2010 20:14:28 +0100 (CET) Subject: [Frugalware-git] frugalware-current: pino-0.2.1-2-i686 * pkgrel++ Message-ID: <20100308191428.7F0C020E0004@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=d04e988650b3bc05cae52b94591e67793309fcd6 commit d04e988650b3bc05cae52b94591e67793309fcd6 Author: Devil505 Date: Mon Mar 8 20:14:16 2010 +0100 pino-0.2.1-2-i686 * pkgrel++ diff --git a/source/xapps-extra/pino/FrugalBuild b/source/xapps-extra/pino/FrugalBuild index 00a2b1d..98ff526 100644 --- a/source/xapps-extra/pino/FrugalBuild +++ b/source/xapps-extra/pino/FrugalBuild @@ -3,7 +3,7 @@ pkgname=pino pkgver=0.2.1 -pkgrel=1 +pkgrel=2 pkgdesc="Pino is a Twitter client for the Linux desktop. It's simple and fast." depends=('atk' 'libgee' 'libnotify' 'webkit' 'unique' 'libxinerama' 'libxi' 'libxrandr' 'libxcursor' 'libxcomposite' 'libjpeg' 'libxslt' 'libxt' 'libice' 'libuuid') makedepends=('vala' 'intltool') From devil505linux at gmail.com Mon Mar 8 20:14:28 2010 From: devil505linux at gmail.com (Devil505) Date: Mon, 8 Mar 2010 20:14:28 +0100 (CET) Subject: [Frugalware-git] frugalware-current: msn-pecan-0.1.0-1-i686 * version bump Message-ID: <20100308191428.6EA6E20E0002@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=3c1a5b379359bcd96a8709a352709bd20ce9361c commit 3c1a5b379359bcd96a8709a352709bd20ce9361c Author: Devil505 Date: Mon Mar 8 20:14:03 2010 +0100 msn-pecan-0.1.0-1-i686 * version bump diff --git a/source/xapps-extra/msn-pecan/FrugalBuild b/source/xapps-extra/msn-pecan/FrugalBuild index d7ca5e2..6cfa61d 100644 --- a/source/xapps-extra/msn-pecan/FrugalBuild +++ b/source/xapps-extra/msn-pecan/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: Devil505 pkgname=msn-pecan -pkgver=0.0.19 +pkgver=0.1.0 pkgrel=1 pkgdesc="A fork of the MSN protocol plugin for libpurple (Pidgin/Finch) using the WLM protocol instead of MSN." depends=(' pidgin>=2.5.6-2' 'zlib') @@ -11,4 +11,4 @@ Finclude googlecode options=('scriptlet') groups=('xapps-extra') archs=('i686' 'x86_64') -sha1sums=('54b5ec219afd4fe5926db0fc6f2b79ef64302dce') +sha1sums=('15bbd2eaa9755326d891f806a3ea8e839b80bec3') From devil505linux at gmail.com Mon Mar 8 20:23:45 2010 From: devil505linux at gmail.com (Devil505) Date: Mon, 8 Mar 2010 20:23:45 +0100 (CET) Subject: [Frugalware-git] frugalware-current: gnome-mplayer-0.9.9.2-1-i686 * version bump Message-ID: <20100308192345.02D1E20E0002@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=7222602fe87902a3ab059c31cf0850d647aecff3 commit 7222602fe87902a3ab059c31cf0850d647aecff3 Author: Devil505 Date: Mon Mar 8 20:23:08 2010 +0100 gnome-mplayer-0.9.9.2-1-i686 * version bump diff --git a/source/gnome-extra/gnome-mplayer/FrugalBuild b/source/gnome-extra/gnome-mplayer/FrugalBuild index 46d3065..b3c5b71 100644 --- a/source/gnome-extra/gnome-mplayer/FrugalBuild +++ b/source/gnome-extra/gnome-mplayer/FrugalBuild @@ -3,7 +3,7 @@ # Contributor: Priyank Gosalia pkgname=gnome-mplayer -pkgver=0.9.9 +pkgver=0.9.9.2 pkgrel=1 pkgdesc="A media player for GNOME that uses MPlayer." url="http://dekorte.homeip.net/download/gnome-mplayer" @@ -16,7 +16,7 @@ _F_gnome_schemas=('/etc/gconf/schemas/gnome-mplayer.schemas') _F_gnome_desktop="y" _F_gnome_iconcache="y" Finclude gnome-scriptlet -sha1sums=('8fe3c391a2f41c3c7306f7c8975aefa5c2c0f2fd') +sha1sums=('b46a6e6bcec8d214b7bd257e939b0bff5c67f660') build () { From devil505linux at gmail.com Mon Mar 8 20:28:11 2010 From: devil505linux at gmail.com (Devil505) Date: Mon, 8 Mar 2010 20:28:11 +0100 (CET) Subject: [Frugalware-git] frugalware-current: pragha-0.7.2-1-i686 *version bump Message-ID: <20100308192811.F261320E0002@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=1f6ebaa837b2e4472293001a7778dc08481132fc commit 1f6ebaa837b2e4472293001a7778dc08481132fc Author: Devil505 Date: Mon Mar 8 20:27:42 2010 +0100 pragha-0.7.2-1-i686 *version bump diff --git a/source/xapps-extra/pragha/FrugalBuild b/source/xapps-extra/pragha/FrugalBuild index 58179f6..8cd31d1 100644 --- a/source/xapps-extra/pragha/FrugalBuild +++ b/source/xapps-extra/pragha/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: Devil505 pkgname=pragha -pkgver=0.7.1.1 +pkgver=0.7.2 pkgrel=1 pkgdesc="Pragha is is a lightweight GTK+ music manager. It is written completely in C and GTK+. This it is a fork of Consonance Music Manager." depends=('dbus-glib' 'flac' 'gtk+2' 'libao' 'libmad' 'libnotify' 'libsndfile' 'libvorbis' 'sqlite3' 'libmodplug' 'libcdio' 'libcddb' 'curl' 'taglib') @@ -13,7 +13,7 @@ _F_gnome_desktop="y" Finclude googlecode gnome-scriptlet groups=('xapps-extra') archs=('i686' 'x86_64') -sha1sums=('a13e3139bb6f5d42d7ebffbcb0b48246cc17bd31') +sha1sums=('2bfe965cf8c229b5edf954918fbe22ed71745bcc') build() { From hermier at frugalware.org Mon Mar 8 22:22:53 2010 From: hermier at frugalware.org (Michel Hermier) Date: Mon, 8 Mar 2010 22:22:53 +0100 (CET) Subject: [Frugalware-git] frugalware-current: amsn-0.98.3-1-i686 Message-ID: <20100308212253.11B5220E0002@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=b7c0704d5c1a053ca8084606e091f552e60ae5ee commit b7c0704d5c1a053ca8084606e091f552e60ae5ee Author: Michel Hermier Date: Mon Mar 8 22:19:27 2010 +0100 amsn-0.98.3-1-i686 * Bump version. diff --git a/source/xapps-extra/amsn/FrugalBuild b/source/xapps-extra/amsn/FrugalBuild index 91d0618..48ed690 100644 --- a/source/xapps-extra/amsn/FrugalBuild +++ b/source/xapps-extra/amsn/FrugalBuild @@ -2,21 +2,48 @@ # Maintainer: crazy pkgname=amsn -pkgver=0.98.1 +pkgver=0.98.3 pkgrel=1 -pkgdesc="AMsN is a great messenger client" -depends=('libice>=1.0.5-1' 'libjpeg' 'libx11>=1.2.1-1' 'libsm>=1.1.0-1' 'libstdc++' 'libpng' 'tk>=8.5.7-2' 'farsight2') +pkgdesc="aMSN is a great messenger client" +depends=('libice>=1.0.5-1' 'libjpeg' 'libx11>=1.2.1-1' 'libsm>=1.1.0-1' 'libstdc++' 'libpng' 'tk>=8.5.7-2' 'farsight2' 'libv4l') rodepends=('tls') groups=('xapps-extra') archs=('i686' 'x86_64' 'ppc') options=('force') +_F_sourceforge_ext='-src.tar.bz2' Finclude sourceforge -source=($source amsn.patch) -sha1sums=('b9146d47c825e5a428ad7ff713fc7a293cd8ed70' \ +source=("${source[@]}" amsn.patch) +sha1sums=('aa8383a11ce66352aceee27f9c291c1410b3403d' \ '97a871735cefde7e7d8bdc575ed91bb2700c7f4d') -provides=('amsn-plugin-music') -replaces=('amsn-plugin-music') +conflicts=('amsn-plugin-actionsmenu' \ + 'amsn-plugin-amsnplus' \ + 'amsn-plugin-bugbuddy' \ + 'amsn-plugin-changeit' \ + 'amsn-plugin-colorize' \ + 'amsn-plugin-dbusviewer' \ + 'amsn-plugin-desktopintegration' \ + 'amsn-plugin-dualdisplaypicture' \ + 'amsn-plugin-emotes' \ + 'amsn-plugin-fpsstats' \ + 'amsn-plugin-gename' \ + 'amsn-plugin-glogs' \ + 'amsn-plugin-gnotify' \ + 'amsn-plugin-invisibility' \ + 'amsn-plugin-lilypondim' \ + 'amsn-plugin-movewin' \ + 'amsn-plugin-music' \ + 'amsn-plugin-openwith' \ + 'amsn-plugin-organize-received' \ + 'amsn-plugin-pop3' \ + 'amsn-plugin-sayit' \ + 'amsn-plugin-sendrecents' \ + 'amsn-plugin-spellcheck' \ + 'amsn-plugin-transparent' \ + 'amsn-plugin-userstatus' \ + 'amsn-plugin-whatis') +provides=("${conflicts[@]}") +replaces=("${conflicts[@]}") build() { From vmiklos at frugalware.org Mon Mar 8 22:39:20 2010 From: vmiklos at frugalware.org (Miklos Vajna) Date: Mon, 8 Mar 2010 22:39:20 +0100 (CET) Subject: [Frugalware-git] homepage-ng: 1.2 final HU translation Message-ID: <20100308213920.4C75B20E0002@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=homepage-ng.git;a=commitdiff;h=faba2e3c8604fb97a52c16bf241400dbcb6d005d commit faba2e3c8604fb97a52c16bf241400dbcb6d005d Author: Miklos Vajna Date: Mon Mar 8 22:39:16 2010 +0100 1.2 final HU translation diff --git a/frugalware/xml/news_hu.xml b/frugalware/xml/news_hu.xml index 146c5db..cc84b3c 100644 --- a/frugalware/xml/news_hu.xml +++ b/frugalware/xml/news_hu.xml @@ -17,6 +17,34 @@ + 163 + Megjelent a Frugalware 1.2 (Locris) + Mon, 08 Mar 2010 08:51:34 +0100 + Miklos Vajna + 1 + Megjelent a Frugalware 1.2 (Locris)!
+ A Frugalware Fejleszt??i Csapat ??r??mmel jelenti be a Frugalware 1.2, tizenkettedik stabil kiad??sunk azonnali el??rhet??s??g??t.
+ Az 1.2rc2 ??ta ??j funkci??t nem vezett??nk be, ellenben 62 apr??bb hib??t kijav??tottunk. Azok sz??m??ra, akik nem k??vett??k az el??zetes kiad??sokat, ??me a legfontosabb v??ltoz??sok az 1.1 ??ta, v??letlenszer?? sorrendben:
+
    +
  • Naprak??sz csomagok: Linux kernel 2.6.32.8, GNU C library 2.11.1, Xorg 7.5, GNOME 2.28, KDE 4.3.5 - csak hogy n??h??ny nagyobb ??sszetev??t eml??ts??nk.
  • +
  • A KMS (Kernel Mode-Setting) alap??rtelmezetten be van kapcsolva Intel ??s Radeon videok??rty??k eset??n.
  • +
  • A PAM (Pluggable Authentication Modules) beker??lt az alaprendszerbe.
  • +
  • A devtmpfs haszn??lat??val a /proc ??s a /sys mellett a /dev is mell??zhet?? a rendszerment??sekb??l.
  • +
  • T??bb nagy j??t??k elt??vol??t??sra ker??lt a telep??t??k??szletekb??l (CD/DVD), ??gy eggyel kevesebb DVD-t vagy n??ggyel kevesebb CD-t kell let??lteni.
  • +
  • V??gre megt??rt??nt a KDE ??s a kapcsol??d?? csomagok 4.x verzi??ra v??lt??sa, a m??g tavaly ??prilisban elkezdett tesztel??s most jutott olyan szintre, melyet m??r ??rdemesnek tartottuk beolvasztani a stabil ??gba.
  • +
  • +N??lunk is bemutatkozik az X.Org 7.5, mellyel kapcsolatban az X.Org kiad??si megjegyz??sei szolg??ltatnak b??vebb inform??ci??t (angolul).
  • +
  • Friss??lt a BlueZ felhaszn??l??i r??tege is a 4.x ??gra, ezzel a GNOME ??s a KDE Bluetooth t??mogat??sa is javult.
  • +
+ B??vebb inform??ci??k a Frugalware Locris V??ltoz??sok List??j??ban olvashat??k (angolul).
+ Let??lt??s i686, x86_64 ??s ppc architekt??r??ra: See our mirror list. Ki??r??s el??tt ellen??rizze a telep??t?? integrit??s??t!
+ Megjegyz??s: Itt tal??l tov??bbi inform??ci??kat, ha nem tudja eld??nteni, melyik telep??t??si forma a legmegfelel??bb ??nnek.
+ Ha a legut??bbi stabil kiad??sr??l (Getorin) friss??t a Locrisra, k??rj??k, olvassa el a friss??t??sre vonatkoz?? r??szt a dokument??ci??nkban (angolul).
+ ]]> +
+
+ 145 Megjelent a Frugalware 1.1 (Getorin) Mon, 07 Sep 2009 09:37:34 +0200 From bouleetbil at frogdev.info Mon Mar 8 22:47:38 2010 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 8 Mar 2010 22:47:38 +0100 (CET) Subject: [Frugalware-git] frugalware-current: gnome-do-0.8.2-1-i686 *version bump Message-ID: <20100308214738.5EB2420E0002@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=776af361161747be8939d3bebfb54916799ff281 commit 776af361161747be8939d3bebfb54916799ff281 Author: bouleetbil Date: Mon Mar 8 23:25:46 2010 +0000 gnome-do-0.8.2-1-i686 *version bump diff --git a/source/gnome-extra/gnome-do/FrugalBuild b/source/gnome-extra/gnome-do/FrugalBuild index 838a085..2f06418 100644 --- a/source/gnome-extra/gnome-do/FrugalBuild +++ b/source/gnome-extra/gnome-do/FrugalBuild @@ -2,8 +2,8 @@ # Maintainer: bouleetbil pkgname=gnome-do -pkgver=0.8.1 -pkgrel=2 +pkgver=0.8.2 +pkgrel=1 pkgdesc="A powerful, remote control for GNOME" depends=('gtk+2>=2.16.2-2' 'glibc' 'freetype2' 'libxau>=1.0.4' 'libxdmcp' 'libxdamage' \ 'libxext>=1.0.5-3' 'libxml2' 'gnome-sharp' 'ndesk-dbus-glib' 'gnome-keyring-sharp' \ @@ -14,12 +14,12 @@ options=('scriptlet') archs=('i686' 'x86_64') url="http://do.davebsd.com/" up2date="elinks -dump https://edge.launchpad.net/do | Flasttar" -source=(http://ppa.launchpad.net/do-core/ubuntu/pool/main/g/$pkgname/${pkgname}_$pkgver.orig.tar.gz) +source=(http://edge.launchpad.net/do/0.8/$pkgver/+download/$pkgname-$pkgver.tar.gz) _F_gnome_desktop="y" _F_gnome_iconcache="y" _F_gnome_schemas=('/etc/gconf/schemas/gnome-do.schemas') Finclude mono gnome-scriptlet -sha1sums=('c9a2476699213dc1aea68ad2d744861510733da5') +sha1sums=('4a92714a483341a8e31a8a04627e725fa5594851') build() { unset MAKEFLAGS From bouleetbil at frogdev.info Mon Mar 8 22:49:43 2010 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 8 Mar 2010 22:49:43 +0100 (CET) Subject: [Frugalware-git] frugalware-current: do-plugins-0.8.2-1-i686 *version bump Message-ID: <20100308214943.499D520E0002@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=65414123367947a3a5b33bdb5074ae71939598a3 commit 65414123367947a3a5b33bdb5074ae71939598a3 Author: bouleetbil Date: Mon Mar 8 23:28:15 2010 +0000 do-plugins-0.8.2-1-i686 *version bump diff --git a/source/gnome-extra/do-plugins/FrugalBuild b/source/gnome-extra/do-plugins/FrugalBuild index 23c9148..645c577 100644 --- a/source/gnome-extra/do-plugins/FrugalBuild +++ b/source/gnome-extra/do-plugins/FrugalBuild @@ -3,10 +3,10 @@ pkgname=do-plugins _F_archive_name=gnome-do-plugins -pkgver=0.8.1 +pkgver=0.8.2 pkgrel=1 pkgdesc="plugins for Gnome-do" -depends=('gnome-do' 'gnome-sharp' 'gtk-sharp') +depends=('gnome-do>=0.8.2' 'gnome-sharp' 'gtk-sharp') makedepends=('perl-xml-parser' 'intltool' 'evolution-sharp' 'banshee' 'libflickrnet' 'epiphany' 'firefox' \ 'monodevelop' 'bison') groups=('gnome-extra') @@ -14,13 +14,14 @@ options=('scriptlet') archs=('i686' 'x86_64') url="http://do.davebsd.com/" up2date="lynx -dump -source 'http://do.davebsd.com/download.shtml' | Flasttar" -source=(http://edge.launchpad.net/$pkgname/0.8/$pkgver/+download/$_F_archive_name-$pkgver.tar.gz disable_google_do.diff) +source=(http://edge.launchpad.net/$pkgname/0.8/$pkgver/+download/$_F_archive_name-$pkgver.tar.gz mono2.6.diff) Finclude mono -sha1sums=('a3eadb07c4dfd9ff21c80b502c855a84c8741b9b' \ - 'e66eed2dc060f7f58bee07640fdcc2ca1b8c6ffa') +sha1sums=('897a2949d126201505701e64b07a3a89232362d3' \ + '3e231390c7e3c7564778cad91a712f12e44187e8') subpkgs=("do-plugins-evolution" "do-plugins-banshee" "do-plugins-flickr" "do-plugins-epiphany" "do-plugins-firefox") subdescs=('plugin gnome-do for evolution' 'plugin gnome-do for banshee' 'plugin gnome-do for flickr' 'plugin gnome-do for epiphany' 'plugin gnome-do for firefox') -subdepends=("$pkgname=$pkgver evolution-sharp" "$pkgname=$pkgver banshee" "$pkgname=$pkgver libflickrnet" "$pkgname=$pkgver epiphany" "$pkgname=$pkgver firefox") +subdepends=("evolution-sharp" "banshee" "libflickrnet" "epiphany" "firefox") +subrodepends=("$pkgname=$pkgver" "$pkgname=$pkgver" "$pkgname=$pkgver" "$pkgname=$pkgver" "$pkgname=$pkgver") subgroups=('gnome-extra' 'gnome-extra' 'gnome-extra' 'gnome-extra' 'gnome-extra') subarchs=('i686 x86_64' 'i686 x86_64' 'i686 x86_64' 'i686 x86_64' 'i686 x86_64') _F_cd_path=$_F_archive_name-$pkgver @@ -32,10 +33,10 @@ build() { Fautoreconf Fmake Fmakeinstall - Fsplit do-plugins-evolution /usr/share/gnome-do/plugins/*Evolution* - Fsplit do-plugins-banshee /usr/share/gnome-do/plugins/*Banshee* - Fsplit do-plugins-flickr /usr/share/gnome-do/plugins/*Flickr* - Fsplit do-plugins-epiphany /usr/share/gnome-do/plugins/*Epiphany* - Fsplit do-plugins-firefox /usr/share/gnome-do/plugins/*Firefox* + Fsplit do-plugins-evolution /usr/lib/gnome-do/plugins/*Evolution* + Fsplit do-plugins-banshee /usr/lib/gnome-do/plugins/*Banshee* + Fsplit do-plugins-flickr /usr/lib/gnome-do/plugins/*Flickr* + Fsplit do-plugins-epiphany /usr/lib/gnome-do/plugins/*Epiphany* + Fsplit do-plugins-firefox /usr/lib/gnome-do/plugins/*Firefox* Fmonocleanup } diff --git a/source/gnome-extra/do-plugins/disable_google_do.diff b/source/gnome-extra/do-plugins/disable_google_do.diff deleted file mode 100644 index 05b36ad..0000000 --- a/source/gnome-extra/do-plugins/disable_google_do.diff +++ /dev/null @@ -1,30 +0,0 @@ ---- gnome-do-plugins-0.8.0/configure.ac 2009-01-29 21:03:08.000000000 +0100 -+++ gnome-do-plugins-0.8.0/configure.ac 2009-02-01 16:50:47.000000000 +0100 -@@ -129,12 +129,6 @@ - GNOME-Screenshot/Makefile - GNOME-Session/Makefile - GNOME-Terminal/Makefile --GoogleCalculator/Makefile --GoogleCalendar/Makefile --GoogleContacts/Makefile --GoogleDocs/Makefile --GoogleMaps/Makefile --GoogleSearch/Makefile - ImageShack/Makefile - JIRA/Makefile - Launchpad/Makefile ---- gnome-do-plugins-0.8.0/Makefile.am 2009-01-22 20:33:48.000000000 +0100 -+++ gnome-do-plugins-0.8.0/Makefile.am 2009-02-01 16:54:16.000000000 +0100 -@@ -24,12 +24,6 @@ - GNOME-Screenshot \ - GNOME-Session \ - GNOME-Terminal \ -- GoogleCalculator \ -- GoogleCalendar \ -- GoogleContacts \ -- GoogleDocs \ -- GoogleMaps \ -- GoogleSearch \ - ImageShack \ - JIRA \ - Launchpad \ diff --git a/source/gnome-extra/do-plugins/mono2.6.diff b/source/gnome-extra/do-plugins/mono2.6.diff new file mode 100644 index 0000000..20bee8d --- /dev/null +++ b/source/gnome-extra/do-plugins/mono2.6.diff @@ -0,0 +1,15 @@ +=== modified file 'Evolution/src/ContactItemSource.cs' +--- Evolution/src/ContactItemSource.cs 2009-06-22 04:05:16 +0000 ++++ Evolution/src/ContactItemSource.cs 2010-02-12 01:08:47 +0000 +@@ -32,8 +32,8 @@ + { + public struct ContactAttribute + { +- public string Detail { get; protected set; } +- public string Key { get; protected set; } ++ public string Detail { get; private set; } ++ public string Key { get; private set; } + + public ContactAttribute (string key, string detail) + { + From bouleetbil at frogdev.info Mon Mar 8 22:51:41 2010 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 8 Mar 2010 22:51:41 +0100 (CET) Subject: [Frugalware-git] frugalware-current: xmms2-0.7-1-i686 *forgot to delete useless patch Message-ID: <20100308215141.A9DE820E0002@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=3333194d0d9df8e4f252c5f24240f19007c76405 commit 3333194d0d9df8e4f252c5f24240f19007c76405 Author: bouleetbil Date: Mon Mar 8 23:30:04 2010 +0000 xmms2-0.7-1-i686 *forgot to delete useless patch diff --git a/source/xmultimedia-extra/xmms2/gcc43.patch b/source/xmultimedia-extra/xmms2/gcc43.patch deleted file mode 100644 index 52d3dea..0000000 --- a/source/xmultimedia-extra/xmms2/gcc43.patch +++ /dev/null @@ -1,11 +0,0 @@ -diff -Nur xmms2-0.4DrKosmos/src/include/xmmsclient/xmmsclient++/helpers.h xmms2-0.4DrKosmos.new/src/include/xmmsclient/xmmsclient++/helpers.h ---- xmms2-0.4DrKosmos/src/include/xmmsclient/xmmsclient++/helpers.h 2007-11-15 19:25:07.000000000 +0100 -+++ xmms2-0.4DrKosmos.new/src/include/xmmsclient/xmmsclient++/helpers.h 2008-06-05 00:32:11.000000000 +0200 -@@ -32,6 +32,7 @@ - #include - #include - #include -+#include - - namespace Xmms - { From vmiklos at frugalware.org Mon Mar 8 22:59:20 2010 From: vmiklos at frugalware.org (Miklos Vajna) Date: Mon, 8 Mar 2010 22:59:20 +0100 (CET) Subject: [Frugalware-git] homepage-ng: 1.2 HU: fix missing translated string Message-ID: <20100308215920.0B1D520E0002@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=homepage-ng.git;a=commitdiff;h=42716529bd019c10109f208fcdb8f04b6e2d6882 commit 42716529bd019c10109f208fcdb8f04b6e2d6882 Author: Miklos Vajna Date: Mon Mar 8 22:59:17 2010 +0100 1.2 HU: fix missing translated string diff --git a/frugalware/xml/news_hu.xml b/frugalware/xml/news_hu.xml index cc84b3c..6c35730 100644 --- a/frugalware/xml/news_hu.xml +++ b/frugalware/xml/news_hu.xml @@ -38,7 +38,7 @@ N??lunk is bemutatkozik az X.Org 7.5, mellyel kapcsolatban Locris V??ltoz??sok List??j??ban olvashat??k (angolul).
- Let??lt??s i686, x86_64 ??s ppc architekt??r??ra: See our mirror list. Ki??r??s el??tt ellen??rizze a telep??t?? integrit??s??t!
+ Let??lt??s i686, x86_64 ??s ppc architekt??r??ra: Tekintse meg t??k??rszervereink list??j??t. Ki??r??s el??tt ellen??rizze a telep??t?? integrit??s??t!
Megjegyz??s: Itt tal??l tov??bbi inform??ci??kat, ha nem tudja eld??nteni, melyik telep??t??si forma a legmegfelel??bb ??nnek.
Ha a legut??bbi stabil kiad??sr??l (Getorin) friss??t a Locrisra, k??rj??k, olvassa el a friss??t??sre vonatkoz?? r??szt a dokument??ci??nkban (angolul).
]]> From bouleetbil at frogdev.info Mon Mar 8 23:00:00 2010 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 8 Mar 2010 23:00:00 +0100 (CET) Subject: [Frugalware-git] frugalware-current: libstdc++-emul-4.4.3_2-1-x86_64 Message-ID: <20100308220000.B2BF620E0002@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=e26001cf60f4ae9c895cdfb8fa12fceac9ec27c6 commit e26001cf60f4ae9c895cdfb8fa12fceac9ec27c6 Author: bouleetbil Date: Mon Mar 8 22:59:49 2010 +0100 libstdc++-emul-4.4.3_2-1-x86_64 version bump diff --git a/source/emul-extra/libstdc++-emul/FrugalBuild b/source/emul-extra/libstdc++-emul/FrugalBuild index 161c1c2..aceb087 100644 --- a/source/emul-extra/libstdc++-emul/FrugalBuild +++ b/source/emul-extra/libstdc++-emul/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: Christian Hamar alias krix pkgname=libstdc++-emul -pkgver=4.4.3_1 +pkgver=4.4.3_2 pkgrel=1 pkgdesc="The GNU Standard C++ Library for emulation of i686 on x86_64" url="http://gcc.gnu.org/" @@ -10,4 +10,4 @@ depends=('glibc-emul' 'libgcc-emul') groups=('emul-extra') archs=('!i686' 'x86_64') Finclude emul -sha1sums=('96fb88abab72d3c8d913ab278fef9d77ca28f63d') +sha1sums=('f609f3799735bbefedf84d11dc2ea06d7603b427') From bouleetbil at frogdev.info Mon Mar 8 23:01:36 2010 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 8 Mar 2010 23:01:36 +0100 (CET) Subject: [Frugalware-git] frugalware-current: sqlite3-emul-3.6.22_1-1-x86_64 Message-ID: <20100308220136.1538320E0002@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=9c1e09ebfd1bfe68ce2c2b58ed455719173394d2 commit 9c1e09ebfd1bfe68ce2c2b58ed455719173394d2 Author: bouleetbil Date: Mon Mar 8 23:02:00 2010 +0100 sqlite3-emul-3.6.22_1-1-x86_64 version bump diff --git a/source/emul-extra/sqlite3-emul/FrugalBuild b/source/emul-extra/sqlite3-emul/FrugalBuild index 8f5d835..ba070a0 100644 --- a/source/emul-extra/sqlite3-emul/FrugalBuild +++ b/source/emul-extra/sqlite3-emul/FrugalBuild @@ -2,11 +2,11 @@ # Maintainer: Devil505 pkgname=sqlite3-emul -pkgver=3.6.20_1 +pkgver=3.6.22_1 pkgrel=1 pkgdesc="A C library that implements an SQL database engine for emulation of i686 on x86_64" url="http://www.sqlite.org/" depends=('readline-emul') groups=('emul-extra') Finclude emul -sha1sums=('3669455a15642afc90e67f9685663a122095e0c3') +sha1sums=('b606944e54b887d2c87dfe5fdd217a91027b435f') From bouleetbil at frogdev.info Mon Mar 8 23:02:04 2010 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 8 Mar 2010 23:02:04 +0100 (CET) Subject: [Frugalware-git] frugalware-current: xf86-input-penmount-1.4.1-1-i686 *version bump Message-ID: <20100308220205.1032520E0002@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=41ec513cd53cd0eceee8188c4a4c1beada4f593c commit 41ec513cd53cd0eceee8188c4a4c1beada4f593c Author: bouleetbil Date: Mon Mar 8 23:40:43 2010 +0000 xf86-input-penmount-1.4.1-1-i686 *version bump diff --git a/source/x11/xf86-input-penmount/FixXinput.diff b/source/x11/xf86-input-penmount/FixXinput.diff deleted file mode 100644 index 65d2cfd..0000000 --- a/source/x11/xf86-input-penmount/FixXinput.diff +++ /dev/null @@ -1,69 +0,0 @@ -From dab0c2742c034750e3e9673167eb20812b679818 Mon Sep 17 00:00:00 2001 -From: Peter Hutterer -Date: Fri, 17 Jul 2009 03:59:43 +0000 -Subject: Cope with XINPUT ABI 7. - -Signed-off-by: Peter Hutterer ---- -diff --git a/src/xf86PM.c b/src/xf86PM.c -index 0c01760..1e38124 100644 ---- a/src/xf86PM.c -+++ b/src/xf86PM.c -@@ -181,6 +181,9 @@ ProcessDeviceInit(PenMountPrivatePtr priv, DeviceIntPtr dev, InputInfoPtr pInfo) - unsigned char map[] = - {0, 1}; - int min_x, min_y, max_x, max_y; -+ Atom axis_labels[2] = { 0, 0 }; -+ Atom btn_label = 0; -+ - /* - * these have to be here instead of in the SetupProc, because when the - * SetupProc is run at server startup, screenInfo is not setup yet -@@ -191,7 +194,11 @@ ProcessDeviceInit(PenMountPrivatePtr priv, DeviceIntPtr dev, InputInfoPtr pInfo) - /* - * Device reports button press for 1 button. - */ -- if (InitButtonClassDeviceStruct (dev, 1, map) == FALSE) -+ if (InitButtonClassDeviceStruct (dev, 1, -+#if GET_ABI_MAJOR(ABI_XINPUT_VERSION) >= 7 -+ &btn_label, -+#endif -+ map) == FALSE) - { - ErrorF ("Unable to allocate PenMount ButtonClassDeviceStruct\n"); - return !Success; -@@ -202,6 +209,9 @@ ProcessDeviceInit(PenMountPrivatePtr priv, DeviceIntPtr dev, InputInfoPtr pInfo) - * Axes min and max values are reported in raw coordinates. - */ - if (InitValuatorClassDeviceStruct (dev, 2, -+#if GET_ABI_MAJOR(ABI_XINPUT_VERSION) >= 7 -+ axis_labels, -+#endif - #if GET_ABI_MAJOR(ABI_XINPUT_VERSION) < 3 - xf86GetMotionEvents, - #endif -@@ -234,11 +244,19 @@ ProcessDeviceInit(PenMountPrivatePtr priv, DeviceIntPtr dev, InputInfoPtr pInfo) - min_y = 0; - } - -- InitValuatorAxisStruct (dev, 0, min_x, max_x, -+ InitValuatorAxisStruct (dev, 0, -+#if GET_ABI_MAJOR(ABI_XINPUT_VERSION) >= 7 -+ axis_labels[0], -+#endif -+ min_x, max_x, - 9500, - 0 /* min_res */ , - 9500 /* max_res */ ); -- InitValuatorAxisStruct (dev, 1, min_y, max_y, -+ InitValuatorAxisStruct (dev, 1, -+#if GET_ABI_MAJOR(ABI_XINPUT_VERSION) >= 7 -+ axis_labels[1], -+#endif -+ min_y, max_y, - 10500, - 0 /* min_res */ , - 10500 /* max_res */ ); --- -cgit v0.8.2 - diff --git a/source/x11/xf86-input-penmount/FrugalBuild b/source/x11/xf86-input-penmount/FrugalBuild index 1608f3d..c1c0fa2 100644 --- a/source/x11/xf86-input-penmount/FrugalBuild +++ b/source/x11/xf86-input-penmount/FrugalBuild @@ -2,11 +2,9 @@ # Maintainer: Christian Hamar alias krix pkgname=xf86-input-penmount -pkgver=1.4.0 -pkgrel=2 +pkgver=1.4.1 +pkgrel=1 Finclude xorg -source=($source FixXinput.diff) -sha1sums=('f997597a754f5dd0b5df4c1db0b42fbb11400514' \ - '78a20376999051ab57060891ac5223ec735e8333') +sha1sums=('a6923fe92ffbc698813063a5426b4ba2edfe465f') # optimization OK From bouleetbil at frogdev.info Mon Mar 8 23:03:25 2010 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 8 Mar 2010 23:03:25 +0100 (CET) Subject: [Frugalware-git] frugalware-current: cairo-emul-1.8.10_1-1-x86_64 Message-ID: <20100308220325.3650C20E0002@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=e45c3f04fab59d9b5d514454c52e9f601094639d commit e45c3f04fab59d9b5d514454c52e9f601094639d Author: bouleetbil Date: Mon Mar 8 23:03:38 2010 +0100 cairo-emul-1.8.10_1-1-x86_64 version bump diff --git a/source/emul-extra/cairo-emul/FrugalBuild b/source/emul-extra/cairo-emul/FrugalBuild index 4c1d80e..058865f 100644 --- a/source/emul-extra/cairo-emul/FrugalBuild +++ b/source/emul-extra/cairo-emul/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: Christian Hamar alias krix pkgname=cairo-emul -pkgver=1.8.8_1 +pkgver=1.8.10_1 pkgrel=1 pkgdesc="A vector graphics library with cross-device output support (32bit emul)" url="http://cairographics.org" @@ -10,4 +10,4 @@ depends=('glitz-emul' 'libxrender-emul' 'fontconfig-emul' 'libpng-emul') groups=('emul-extra') archs=('!i686' 'x86_64') Finclude emul -sha1sums=('6cf423c48ac38471c63c61023ef4753123333e0f') +sha1sums=('758e2f4603c30faffbb2ccd065b40c3b9297fa27') From bouleetbil at frogdev.info Mon Mar 8 23:04:41 2010 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 8 Mar 2010 23:04:41 +0100 (CET) Subject: [Frugalware-git] frugalware-current: frugalware-emul-1.2_1-1-x86_64 Message-ID: <20100308220441.BD7AA20E0002@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=f2883f12c84a54e38cc0e5165b89765b8d746b3b commit f2883f12c84a54e38cc0e5165b89765b8d746b3b Author: bouleetbil Date: Mon Mar 8 23:05:12 2010 +0100 frugalware-emul-1.2_1-1-x86_64 version bump diff --git a/source/emul-extra/frugalware-emul/FrugalBuild b/source/emul-extra/frugalware-emul/FrugalBuild index 7effb7d..8df5e09 100644 --- a/source/emul-extra/frugalware-emul/FrugalBuild +++ b/source/emul-extra/frugalware-emul/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: Christian Hamar alias krix pkgname=frugalware-emul -pkgver=1.2rc1_1 +pkgver=1.2_1 pkgrel=1 pkgdesc="Basic Frugalware Linux filesystem package (32 emulation)" url="http://frugalware.org" @@ -22,4 +22,4 @@ build() { ln -s . $Fdestdir/usr/lib/chroot32/usr/X11R6 || Fdie Fmkdir /usr/lib/chroot32/usr/lib/X11/fonts } -sha1sums=('667049da3a7ab8e422506bbace14f1f86f95ff53') +sha1sums=('67f4b6e6af7cfdf0431d4e4ed58995a68a52298d') From bouleetbil at frogdev.info Mon Mar 8 23:06:01 2010 From: bouleetbil at frogdev.info (bouleetbil) Date: Mon, 8 Mar 2010 23:06:01 +0100 (CET) Subject: [Frugalware-git] frugalware-current: libgcc-emul-4.4.3_2-1-x86_64 Message-ID: <20100308220601.DBFEE20E0002@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=8a7a6876fc723821234a51bc326464e81a9a50ac commit 8a7a6876fc723821234a51bc326464e81a9a50ac Author: bouleetbil Date: Mon Mar 8 23:06:32 2010 +0100 libgcc-emul-4.4.3_2-1-x86_64 version bump diff --git a/source/emul-extra/libgcc-emul/FrugalBuild b/source/emul-extra/libgcc-emul/FrugalBuild index aea8f8a..4b7c93d 100644 --- a/source/emul-extra/libgcc-emul/FrugalBuild +++ b/source/emul-extra/libgcc-emul/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: Christian Hamar alias krix pkgname=libgcc-emul -pkgver=4.4.3_1 +pkgver=4.4.3_2 pkgrel=1 pkgdesc="The GNU Standard C++ Library for emulation of i686 on x86_64" url="http://gcc.gnu.org/" @@ -12,4 +12,4 @@ provides=('gcc-lib-emul') replaces=('gcc-lib-emul') archs=('!i686' 'x86_64') Finclude emul -sha1sums=('e5f1f1c8a635121f8c5e04914ad037dbfbdb5af2') +sha1sums=('f5e5415617d68d81b5c9b6fc251ee8a97e67bfd1') From vmiklos at frugalware.org Mon Mar 8 23:12:26 2010 From: vmiklos at frugalware.org (Miklos Vajna) Date: Mon, 8 Mar 2010 23:12:26 +0100 (CET) Subject: [Frugalware-git] frugalware-current: m4-1.4.14-1-i686 Message-ID: <20100308221226.AF12E20E0002@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=9276b579247085fc5e3fa3b0499b682a9b747281 commit 9276b579247085fc5e3fa3b0499b682a9b747281 Author: Miklos Vajna Date: Mon Mar 8 23:11:53 2010 +0100 m4-1.4.14-1-i686 - version bump diff --git a/source/devel/m4/FrugalBuild b/source/devel/m4/FrugalBuild index 9f0a8c9..2cb1489 100644 --- a/source/devel/m4/FrugalBuild +++ b/source/devel/m4/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: Miklos Vajna pkgname=m4 -pkgver=1.4.13 +pkgver=1.4.14 pkgrel=1 pkgdesc="An implementation of the traditional Unix macro processor" url="http://www.gnu.org/software/m4" From vmiklos at frugalware.org Mon Mar 8 23:18:13 2010 From: vmiklos at frugalware.org (Miklos Vajna) Date: Mon, 8 Mar 2010 23:18:13 +0100 (CET) Subject: [Frugalware-git] frugalware-current: perl-params-validate-0.95-1-i686 Message-ID: <20100308221813.AAAF620E0002@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=c9ac9d8458c1df434ebd6324f99c8b410166300b commit c9ac9d8458c1df434ebd6324f99c8b410166300b Author: Miklos Vajna Date: Mon Mar 8 23:18:09 2010 +0100 perl-params-validate-0.95-1-i686 - version bump diff --git a/source/devel-extra/perl-params-validate/FrugalBuild b/source/devel-extra/perl-params-validate/FrugalBuild index c361001..25c7736 100644 --- a/source/devel-extra/perl-params-validate/FrugalBuild +++ b/source/devel-extra/perl-params-validate/FrugalBuild @@ -3,13 +3,13 @@ _F_perl_name=Params-Validate _F_perl_author=D/DR/DROLSKY -pkgver=0.94 +pkgver=0.95 pkgdesc="Validate sub params against a spec" depends=('glibc') groups=('devel-extra') Finclude perl archs=('i686' 'x86_64') -sha1sums=('f34214e7f8807ea59feed26f88282bd3dc21572f') +sha1sums=('6001152f60275f224cbfc8afb821298328693746') build() { Fcd From vmiklos at frugalware.org Mon Mar 8 23:21:12 2010 From: vmiklos at frugalware.org (Miklos Vajna) Date: Mon, 8 Mar 2010 23:21:12 +0100 (CET) Subject: [Frugalware-git] frugalware-current: perl-image-exiftool-8.10-1-i686 Message-ID: <20100308222112.CFF1720E0002@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=8263d1a09a3dbb0edf453a9211f3676fef0e7833 commit 8263d1a09a3dbb0edf453a9211f3676fef0e7833 Author: Miklos Vajna Date: Mon Mar 8 23:21:01 2010 +0100 perl-image-exiftool-8.10-1-i686 - version bump diff --git a/source/lib-extra/perl-image-exiftool/FrugalBuild b/source/lib-extra/perl-image-exiftool/FrugalBuild index f076369..003b1e5 100644 --- a/source/lib-extra/perl-image-exiftool/FrugalBuild +++ b/source/lib-extra/perl-image-exiftool/FrugalBuild @@ -3,10 +3,10 @@ _F_perl_name=Image-ExifTool _F_perl_author="E/EX/EXIFTOOL" -pkgver=8.00 +pkgver=8.10 pkgdesc="Read and write meta information in images" depends=('perl') Finclude perl groups=('lib-extra') archs=('i686' 'x86_64') -sha1sums=('dfed07271cf3a012d45e0b9a7f82deecce35cada') +sha1sums=('38a1ee61c7d8a466445dd5a3efdc0ad3f7b536ae') From vmiklos at frugalware.org Mon Mar 8 23:27:43 2010 From: vmiklos at frugalware.org (Miklos Vajna) Date: Mon, 8 Mar 2010 23:27:43 +0100 (CET) Subject: [Frugalware-git] frugalware-current: perl-datetime-timezone-1.13-1-i686 Message-ID: <20100308222743.5779920E0002@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=a078f6bfc3bc4a0624642f761387549312cb6c12 commit a078f6bfc3bc4a0624642f761387549312cb6c12 Author: Miklos Vajna Date: Mon Mar 8 23:27:17 2010 +0100 perl-datetime-timezone-1.13-1-i686 - version bump diff --git a/source/devel-extra/perl-datetime-timezone/FrugalBuild b/source/devel-extra/perl-datetime-timezone/FrugalBuild index e00c425..e8874ae 100644 --- a/source/devel-extra/perl-datetime-timezone/FrugalBuild +++ b/source/devel-extra/perl-datetime-timezone/FrugalBuild @@ -3,10 +3,10 @@ _F_perl_name=DateTime-TimeZone _F_perl_author=D/DR/DROLSKY -pkgver=1.08 +pkgver=1.13 pkgdesc="Time zone object base class and factory" depends=('perl-class-singleton' 'perl-params-validate') groups=('devel-extra') Finclude perl archs=('i686' 'x86_64') -sha1sums=('ef38c40bfe27f9ca50b711ed152e361e210c26ac') +sha1sums=('6cc267e623a279c4cbc160aed4971dc634df09aa') From vmiklos at frugalware.org Mon Mar 8 23:33:15 2010 From: vmiklos at frugalware.org (Miklos Vajna) Date: Mon, 8 Mar 2010 23:33:15 +0100 (CET) Subject: [Frugalware-git] frugalware-current: perl-io-socket-ssl-1.32-1-i686 Message-ID: <20100308223315.355D820E0002@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=3513acf246b995a674a75085b9658c1d13e9b651 commit 3513acf246b995a674a75085b9658c1d13e9b651 Author: Miklos Vajna Date: Mon Mar 8 23:32:53 2010 +0100 perl-io-socket-ssl-1.32-1-i686 - version bump diff --git a/source/devel/perl-io-socket-ssl/FrugalBuild b/source/devel/perl-io-socket-ssl/FrugalBuild index 37df7d3..272f849 100644 --- a/source/devel/perl-io-socket-ssl/FrugalBuild +++ b/source/devel/perl-io-socket-ssl/FrugalBuild @@ -3,11 +3,11 @@ _F_perl_name=IO-Socket-SSL _F_perl_author=S/SU/SULLR -pkgver=1.31 +pkgver=1.32 pkgrel=1 pkgdesc="Perl extension Nearly transparent SSL encapsulation for IO::Socket::INET" depends=('perl-net-ssleay>=1.35-1') Finclude perl groups=('devel') archs=('i686' 'x86_64' 'ppc') -sha1sums=('06fc8e9d85e53e7a2156988f1e009272e9871d81') +sha1sums=('efe5cbaadcd285e0399fded86ea6cf5540ce138b') From vmiklos at frugalware.org Mon Mar 8 23:35:08 2010 From: vmiklos at frugalware.org (Miklos Vajna) Date: Mon, 8 Mar 2010 23:35:08 +0100 (CET) Subject: [Frugalware-git] frugalware-current: kernel-2.6.32-3-i686 Message-ID: <20100308223508.6B3BA20E0002@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=7027f50a1f8af40a10c27d070d0e1a23cac41452 commit 7027f50a1f8af40a10c27d070d0e1a23cac41452 Author: Miklos Vajna Date: Mon Mar 8 23:34:44 2010 +0100 kernel-2.6.32-3-i686 - s/m/y/ for CONFIG_FUSION_SPI, so that booting an installed system in vmware is possible diff --git a/source/base/kernel/config.i686 b/source/base/kernel/config.i686 index e78df67..467d46b 100644 --- a/source/base/kernel/config.i686 +++ b/source/base/kernel/config.i686 @@ -1716,7 +1716,7 @@ CONFIG_DM_MULTIPATH_ST=m CONFIG_DM_DELAY=m CONFIG_DM_UEVENT=y CONFIG_FUSION=y -CONFIG_FUSION_SPI=m +CONFIG_FUSION_SPI=y CONFIG_FUSION_FC=m CONFIG_FUSION_SAS=m CONFIG_FUSION_MAX_SGE=128 From exceed.cedric at gmail.com Mon Mar 8 23:43:34 2010 From: exceed.cedric at gmail.com (exceed) Date: Mon, 8 Mar 2010 23:43:34 +0100 (CET) Subject: [Frugalware-git] frugalware-current: ecasound-2.7.1-1-i686 Message-ID: <20100308224334.422CB20E0002@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=dae3ecef6f93763f70fbd1ed659ecfb37e9088c4 commit dae3ecef6f93763f70fbd1ed659ecfb37e9088c4 Author: exceed Date: Tue Mar 9 00:49:50 2010 +0100 ecasound-2.7.1-1-i686 * Version bump diff --git a/source/multimedia-extra/ecasound/FrugalBuild b/source/multimedia-extra/ecasound/FrugalBuild index f54693b..137965d 100644 --- a/source/multimedia-extra/ecasound/FrugalBuild +++ b/source/multimedia-extra/ecasound/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: exceed pkgname=ecasound -pkgver=2.7.0 +pkgver=2.7.1 pkgrel=1 pkgdesc="A software package designed for multitrack audio processing" archs=('i686') @@ -12,6 +12,6 @@ depends=('audiofile' 'libsamplerate' 'python' 'readline' 'jack' 'ncurses-ruby') makedepends=('ruby') up2date="Flastarchive http://ecasound.seul.org/download/ .tar.gz" source=(http://ecasound.seul.org/download/$pkgname-$pkgver.tar.gz) -sha1sums=('f2943665064580ecec7e97688a06c78d83e51bc4') +sha1sums=('1af6759d9a37c553cdec595f7b6a35a270ec5833') # optimization OK From exceed.cedric at gmail.com Mon Mar 8 23:51:45 2010 From: exceed.cedric at gmail.com (exceed) Date: Mon, 8 Mar 2010 23:51:45 +0100 (CET) Subject: [Frugalware-git] frugalware-current: libewf-20100226-1-i686 Message-ID: <20100308225145.666B320E0002@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=a25a5aad2c17d00235292bfade1e3e541abfc3e6 commit a25a5aad2c17d00235292bfade1e3e541abfc3e6 Author: exceed Date: Tue Mar 9 00:58:21 2010 +0100 libewf-20100226-1-i686 * Version bump diff --git a/source/lib-extra/libewf/FrugalBuild b/source/lib-extra/libewf/FrugalBuild index e5bd541..861cdd4 100644 --- a/source/lib-extra/libewf/FrugalBuild +++ b/source/lib-extra/libewf/FrugalBuild @@ -2,13 +2,13 @@ # Maintainer: exceed pkgname=libewf -pkgver=20100126 +pkgver=20100226 pkgrel=1 pkgdesc="Library for support of the Expert Witness Compression Format (EWF)" depends=('e2fsprogs' 'openssl' 'zlib' 'perl-crypt-openssl-rsa') groups=('lib-extra') archs=('i686' 'x86_64') Finclude sourceforge -sha1sums=('53204b0ae3cc6a06c88ce3647966aca46c2360d4') +sha1sums=('b9b1012548a7ba445ce4702b08737ddb459c52ec') # optimization OK From exceed.cedric at gmail.com Mon Mar 8 23:57:37 2010 From: exceed.cedric at gmail.com (exceed) Date: Mon, 8 Mar 2010 23:57:37 +0100 (CET) Subject: [Frugalware-git] frugalware-current: afflib-3.5.8-1-i686 Message-ID: <20100308225737.8A50520E0002@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=3b9b60e2ac53e05ad7657f94958b381a03033766 commit 3b9b60e2ac53e05ad7657f94958b381a03033766 Author: exceed Date: Tue Mar 9 01:03:33 2010 +0100 afflib-3.5.8-1-i686 * Version bump diff --git a/source/lib-extra/afflib/FrugalBuild b/source/lib-extra/afflib/FrugalBuild index db6927e..bf68f86 100644 --- a/source/lib-extra/afflib/FrugalBuild +++ b/source/lib-extra/afflib/FrugalBuild @@ -2,8 +2,8 @@ # Maintainer: exceed pkgname=afflib -pkgver=3.5.7 -pkgrel=2 +pkgver=3.5.8 +pkgrel=1 pkgdesc="AFFLIB is an open source implementation of AFF written in C" url="http://www.afflib.org/" depends=('expat' 'readline' 'libewf' 'libstdc++' 'fuse') @@ -11,6 +11,6 @@ groups=('lib-extra') archs=('i686' 'x86_64') up2date="Flasttar http://www.afflib.org/downloads/" source=(http://www.afflib.org/downloads/$pkgname-$pkgver.tar.gz) -sha1sums=('99937eab00bebe50a704ebc4b94bcfd2fe5f101d') +sha1sums=('18584d2360d47eb3d4a1e2ea54fab54362df67e9') # optimization OK From exceed.cedric at gmail.com Mon Mar 8 23:59:57 2010 From: exceed.cedric at gmail.com (exceed) Date: Mon, 8 Mar 2010 23:59:57 +0100 (CET) Subject: [Frugalware-git] frugalware-current: autopsy-2.23-1-i686 Message-ID: <20100308225957.42D5D20E0002@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=0d5a52e2cc8ea8c4f3f7cf87adc2a1f3703ff96c commit 0d5a52e2cc8ea8c4f3f7cf87adc2a1f3703ff96c Author: exceed Date: Tue Mar 9 01:06:30 2010 +0100 autopsy-2.23-1-i686 * Version bump diff --git a/source/apps-extra/autopsy/FrugalBuild b/source/apps-extra/autopsy/FrugalBuild index 3d91232..23421df 100644 --- a/source/apps-extra/autopsy/FrugalBuild +++ b/source/apps-extra/autopsy/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: exceed pkgname=autopsy -pkgver=2.22 +pkgver=2.23 pkgrel=1 pkgdesc="The Autopsy Forensic Browser is a GUI to the command line digital investigation tools in The Sleuth Kit" depends=('coreutils' 'grep' 'perl' 'file' 'sleuthkit') @@ -10,7 +10,7 @@ groups=('apps-extra') archs=('i686' 'x86_64') Finclude sourceforge source=("${source[@]}" "autopsy") -sha1sums=('71c4d20cfec6b51a5c15bba91a26a2331925613b' \ +sha1sums=('5f5ed44464e935088a1988d515ac4d1e4a98583e' \ 'fbd0f5ab18f75c7b8455a104ec7be0b81acfe26d') build() From vmiklos at frugalware.org Tue Mar 9 00:00:06 2010 From: vmiklos at frugalware.org (Miklos Vajna) Date: Tue, 9 Mar 2010 00:00:06 +0100 (CET) Subject: [Frugalware-git] frugalware-current: openssh-5.4p1-1-i686 Message-ID: <20100308230006.03B1D20E0002@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=60a82857f4f9712a0816780389247d6df8cf1bdc commit 60a82857f4f9712a0816780389247d6df8cf1bdc Author: Miklos Vajna Date: Tue Mar 9 00:00:01 2010 +0100 openssh-5.4p1-1-i686 - version bump diff --git a/source/network/openssh/FrugalBuild b/source/network/openssh/FrugalBuild index aebfcf7..9c41309 100644 --- a/source/network/openssh/FrugalBuild +++ b/source/network/openssh/FrugalBuild @@ -3,7 +3,7 @@ # Maintainer: voroskoi pkgname=openssh -pkgver=5.3p1 +pkgver=5.4p1 pkgrel=1 pkgdesc='Secure Shell daemon and clients' url="http://www.openssh.com/" @@ -13,8 +13,8 @@ makedepends=('tcp_wrappers') replaces=('kssh') groups=('network') archs=('i686' 'x86_64' 'ppc') -up2date="lynx -dump ftp://ftp.fsn.hu/pub/openbsd/OpenSSH/portable/|Flasttar" -source=(ftp://ftp.fsn.hu/pub/openbsd/OpenSSH/portable/$pkgname-$pkgver.tar.gz \ +up2date="lynx -dump http://ftp.openbsd.org/pub/OpenBSD/OpenSSH/portable/|Flasttar" +source=(http://ftp.openbsd.org/pub/OpenBSD/OpenSSH/portable/$pkgname-$pkgver.tar.gz \ README.Frugalware \ rc.sshd rc.sshd-{hu,de}.po \ rc.tunnel tunnel) From vmiklos at frugalware.org Tue Mar 9 00:24:38 2010 From: vmiklos at frugalware.org (Miklos Vajna) Date: Tue, 9 Mar 2010 00:24:38 +0100 (CET) Subject: [Frugalware-git] frugalware-current: xar-1.5.2-2-i686 Message-ID: <20100308232438.CAAF520E0002@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=8f360e92c970da92767c452b82622b60ec061e32 commit 8f360e92c970da92767c452b82622b60ec061e32 Author: Miklos Vajna Date: Tue Mar 9 00:14:34 2010 +0100 xar-1.5.2-2-i686 - add CVE-2010-0055.patch - closes #4128 diff --git a/source/apps-extra/xar/CVE-2010-0055.patch b/source/apps-extra/xar/CVE-2010-0055.patch new file mode 100644 index 0000000..8be4389 --- /dev/null +++ b/source/apps-extra/xar/CVE-2010-0055.patch @@ -0,0 +1,49 @@ +Index: xar/lib/archive.c +=================================================================== +--- xar/lib/archive.c (revision 224) ++++ xar/lib/archive.c (revision 225) +@@ -330,6 +330,44 @@ + + EVP_DigestFinal(&XAR(ret)->toc_ctx, toccksum, &tlen); + ++ const char *value; ++ uint64_t offset = 0; ++ uint64_t length = tlen; ++ if( xar_prop_get( XAR_FILE(ret) , "checksum/offset", &value) == 0 ) { ++ errno = 0; ++ offset = strtoull( value, (char **)NULL, 10); ++ if( errno != 0 ) { ++ xar_close(ret); ++ return NULL; ++ } ++ } else if( xar_signature_first(ret) != NULL ) { ++ // All archives that have a signature also specify the location ++ // of the checksum. If the location isn't specified, error out. ++ xar_close(ret); ++ return NULL; ++ } ++ ++ XAR(ret)->heap_offset = xar_get_heap_offset(ret) + offset; ++ if( lseek(XAR(ret)->fd, XAR(ret)->heap_offset, SEEK_SET) == -1 ) { ++ xar_close(ret); ++ return NULL; ++ } ++ if( xar_prop_get( XAR_FILE(ret) , "checksum/size", &value) == 0 ) { ++ errno = 0; ++ length = strtoull( value, (char **)NULL, 10); ++ if( errno != 0 ) { ++ xar_close(ret); ++ return NULL; ++ } ++ } else if( xar_signature_first(ret) != NULL ) { ++ xar_close(ret); ++ return NULL; ++ } ++ if( length != tlen ) { ++ xar_close(ret); ++ return NULL; ++ } ++ + xar_read_fd(XAR(ret)->fd, cval, tlen); + XAR(ret)->heap_offset += tlen; + if( memcmp(cval, toccksum, tlen) != 0 ) { diff --git a/source/apps-extra/xar/FrugalBuild b/source/apps-extra/xar/FrugalBuild index 3c7948b..0b886f2 100644 --- a/source/apps-extra/xar/FrugalBuild +++ b/source/apps-extra/xar/FrugalBuild @@ -3,14 +3,21 @@ pkgname=xar pkgver=1.5.2 -pkgrel=1 +pkgrel=2 pkgdesc="eXtensible ARchiver" Finclude googlecode depends=('libxml2' 'openssl' 'zlib' 'bzip2') groups=('apps-extra') archs=('i686' 'x86_64') up2date="Flasttar $url/downloads/list" # up2date from Finclude googlecode does not work :/ -sha1sums=('eb411a92167387aa5d06a81970f7e929ec3087c9') -Fconfopts="${Fconfopts[@]} --prefix=$Fdestdir/usr" +source=($source CVE-2010-0055.patch) +sha1sums=('eb411a92167387aa5d06a81970f7e929ec3087c9' \ + '984835c3d232d83a84bbb08f2abe11be08bcb72e') + +build() +{ + Fmake --host=$CARCH-frugalware-linux-gnu + Fmakeinstall DESTDIR=$Fdestdir +} # optimization OK From vmiklos at frugalware.org Tue Mar 9 00:25:12 2010 From: vmiklos at frugalware.org (Miklos Vajna) Date: Tue, 9 Mar 2010 00:25:12 +0100 (CET) Subject: [Frugalware-git] frugalware-1.2: xar-1.5.2-2locris1-i686 Message-ID: <20100308232512.C431C20E0002@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-1.2.git;a=commitdiff;h=56dc8b83b2af45a2a2cce619a64e6dbfeaedd0cb commit 56dc8b83b2af45a2a2cce619a64e6dbfeaedd0cb Author: Miklos Vajna Date: Tue Mar 9 00:20:38 2010 +0100 xar-1.5.2-2locris1-i686 - add CVE-2010-0055.patch - closes #4128 (cherry picked from commit 8f360e92c970da92767c452b82622b60ec061e32) diff --git a/source/apps-extra/xar/CVE-2010-0055.patch b/source/apps-extra/xar/CVE-2010-0055.patch new file mode 100644 index 0000000..8be4389 --- /dev/null +++ b/source/apps-extra/xar/CVE-2010-0055.patch @@ -0,0 +1,49 @@ +Index: xar/lib/archive.c +=================================================================== +--- xar/lib/archive.c (revision 224) ++++ xar/lib/archive.c (revision 225) +@@ -330,6 +330,44 @@ + + EVP_DigestFinal(&XAR(ret)->toc_ctx, toccksum, &tlen); + ++ const char *value; ++ uint64_t offset = 0; ++ uint64_t length = tlen; ++ if( xar_prop_get( XAR_FILE(ret) , "checksum/offset", &value) == 0 ) { ++ errno = 0; ++ offset = strtoull( value, (char **)NULL, 10); ++ if( errno != 0 ) { ++ xar_close(ret); ++ return NULL; ++ } ++ } else if( xar_signature_first(ret) != NULL ) { ++ // All archives that have a signature also specify the location ++ // of the checksum. If the location isn't specified, error out. ++ xar_close(ret); ++ return NULL; ++ } ++ ++ XAR(ret)->heap_offset = xar_get_heap_offset(ret) + offset; ++ if( lseek(XAR(ret)->fd, XAR(ret)->heap_offset, SEEK_SET) == -1 ) { ++ xar_close(ret); ++ return NULL; ++ } ++ if( xar_prop_get( XAR_FILE(ret) , "checksum/size", &value) == 0 ) { ++ errno = 0; ++ length = strtoull( value, (char **)NULL, 10); ++ if( errno != 0 ) { ++ xar_close(ret); ++ return NULL; ++ } ++ } else if( xar_signature_first(ret) != NULL ) { ++ xar_close(ret); ++ return NULL; ++ } ++ if( length != tlen ) { ++ xar_close(ret); ++ return NULL; ++ } ++ + xar_read_fd(XAR(ret)->fd, cval, tlen); + XAR(ret)->heap_offset += tlen; + if( memcmp(cval, toccksum, tlen) != 0 ) { diff --git a/source/apps-extra/xar/FrugalBuild b/source/apps-extra/xar/FrugalBuild index 3c7948b..0fb83fa 100644 --- a/source/apps-extra/xar/FrugalBuild +++ b/source/apps-extra/xar/FrugalBuild @@ -3,14 +3,21 @@ pkgname=xar pkgver=1.5.2 -pkgrel=1 +pkgrel=2locris1 pkgdesc="eXtensible ARchiver" Finclude googlecode depends=('libxml2' 'openssl' 'zlib' 'bzip2') groups=('apps-extra') archs=('i686' 'x86_64') up2date="Flasttar $url/downloads/list" # up2date from Finclude googlecode does not work :/ -sha1sums=('eb411a92167387aa5d06a81970f7e929ec3087c9') -Fconfopts="${Fconfopts[@]} --prefix=$Fdestdir/usr" +source=($source CVE-2010-0055.patch) +sha1sums=('eb411a92167387aa5d06a81970f7e929ec3087c9' \ + '984835c3d232d83a84bbb08f2abe11be08bcb72e') + +build() +{ + Fmake --host=$CARCH-frugalware-linux-gnu + Fmakeinstall DESTDIR=$Fdestdir +} # optimization OK From vmiklos at frugalware.org Tue Mar 9 00:25:42 2010 From: vmiklos at frugalware.org (Miklos Vajna) Date: Tue, 9 Mar 2010 00:25:42 +0100 (CET) Subject: [Frugalware-git] homepage-ng: FSA637-xar Message-ID: <20100308232542.1B90520E0002@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=homepage-ng.git;a=commitdiff;h=0ff2bf22cfffc29b97b479516b2e42a927215a01 commit 0ff2bf22cfffc29b97b479516b2e42a927215a01 Author: Miklos Vajna Date: Tue Mar 9 00:24:08 2010 +0100 FSA637-xar diff --git a/frugalware/xml/security-1.1.xml b/frugalware/xml/security-1.1.xml new file mode 100644 index 0000000..1c72fa6 --- /dev/null +++ b/frugalware/xml/security-1.1.xml @@ -0,0 +1,297 @@ + + + + + + + + + + + + + + + + + + + + + +]> + + + + + + 636 + 2010-03-01 + Miklos Vajna + wireshark + 1.2.5-1getorin1 + 1.2.6-1getorin1 + http://bugs.frugalware.org/task/4087 + http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2009-2563 + http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2009-4377 + http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2010-0304 + Some vulnerabilities have been reported in Wireshark, which can be exploited by malicious people to cause a DoS (Denial of Service) or compromise a user's system. +The vulnerabilities are caused due to errors within the LWRES dissector, which can be exploited to cause e.g. a stack-based buffer overflow via a specially crafted network packet or by tricking a user into loading a specially crafted capture file. +Successful exploitation allows execution of arbitrary code. + + + 635 + 2010-03-01 + Miklos Vajna + wireshark + 1.2.3-1getorin1 + 1.2.5-1getorin1 + http://bugs.frugalware.org/task/4064 + http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2009-4376 + http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2009-4377 + http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2009-4378 + Some vulnerabilities have been reported in Wireshark, which can be exploited by malicious people to cause a DoS (Denial of Service) or potentially compromise a user's system. + 1) A boundary error in the Daintree SNA file parser can be exploited to cause a buffer overflow via a specially crafted capture file. + Successful exploitation may allow execution of arbitrary code. + 2) An error in the IPMI dissector on Windows can be exploited to cause a crash. + 3) An error in the SMB and SMB2 dissectors can be exploited to cause a crash. + + + 634 + 2010-03-01 + Miklos Vajna + drupal + 5.20-1getorin1 + 5.21-1getorin1 + http://bugs.frugalware.org/task/4052 + http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2009-4369 + A vulnerability has been reported in Drupal Core, which can be exploited by malicious users to conduct script insertion attacks. + Input passed to the "Category" input field of the Contact module's administration form is not properly sanitised before being displayed to the user. + + + 633 + 2010-03-01 + Miklos Vajna + wordpress + 2.8.5-1getorin1 + 2.8.6-1getorin1 + http://bugs.frugalware.org/task/4043 + http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2009-3890 + http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2009-3891 + A security issue and a vulnerability have been reported in WordPress, which can be exploited by malicious users to conduct script insertion attacks and compromise a vulnerable system. + 1) The security issue is caused due to the wp_check_filetype() function in /wp-includes/functions.php improperly validating uploaded files. This can be exploited to execute arbitrary PHP code by uploading a malicious PHP script with multiple extensions. + Successful exploitation of this vulnerability requires that Apache is not configured to handle the mime-type for media files with an e.g. "gif", "jpg", "png", "tif", "wmv" extension. + 2) Input passed via certain parameters to press-this.php is not properly sanitised before being displayed to the user. This can be exploited to insert arbitrary HTML and script code, which will be executed in a user's browser session in context of an affected site when the malicious data is being viewed. + + + 632 + 2010-03-01 + Miklos Vajna + wireshark + 1.2.2-1getorin1 + 1.2.3-1getorin1 + http://bugs.frugalware.org/task/4026 + http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2009-2560 + http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2009-3549 + http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2009-3550 + http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2009-3551 + Some vulnerabilities have been reported in Wireshark, which can be exploited by malicious people to cause a DoS (Denial of Service). + 1) An alignment error within the "dissect_paltalk()" function in epan/dissectors/packet-paltalk.c of the Paltalk dissector can be exploited to cause a crash. + Note: Successful exploitation requires that Wireshark is running on an alignment sensitive architecture. + 2) A NULL pointer dereference error within the DCERPC/NT dissector when can be exploited to cause a crash. + 3) An off-by-one error within the "dissect_negprot_response()" function in epan/dissectors/packet-smb.c of the SMB dissector can be exploited to cause a crash. + 4) An error within the RADIUS dissector can be exploited to cause a crash. + + + 631 + 2010-03-01 + Miklos Vajna + drupal6-link + 6.x_2.6-1 + 6.x_2.8-1getorin1 + http://bugs.frugalware.org/task/4025 + http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2009-3915 + See FSA630 for details. + + + 630 + 2010-03-01 + Miklos Vajna + drupal-link + 5.x_2.5-1 + 5.x_2.6-1getorin1 + http://bugs.frugalware.org/task/4024 + http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2009-3915 + A vulnerability has been reported in the Link module for Drupal, which can be exploited by malicious users to conduct script insertion attacks. + Input passed via the link title parameter, when using the "Separate title and URL" format, is not properly sanitised before being displayed to the user. This can be exploited to insert arbitrary HTML and script code, which will be executed in a user's browser session in context of an affected site when the malicious data is being viewed. + + + 629 + 2010-03-01 + Miklos Vajna + wordpress + 2.8.4-1 + 2.8.5-1getorin1 + http://bugs.frugalware.org/task/4007 + No CVE, see http://wordpress.org/development/2009/10/wordpress-2-8-5-hardening-release/. + A vulnerability has been reported in WordPress, which can be exploited by malicious people to cause a DoS (Denial of Service). + The vulnerability is caused due to the wp-trackback.php script letting users pass multiple source character encodings to the "mb_convert_encoding()" function, which can be used to cause a high CPU load, potentially resulting in a DoS. + + + 628 + 2010-03-01 + Miklos Vajna + drupal6-webform + 6.x_2.7-1 + 6.x_2.8-1getorin1 + http://bugs.frugalware.org/task/4001 + http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2009-4532 + http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2009-4533 + See FSA627 for details. + + + 627 + 2010-03-01 + Miklos Vajna + drupal-webform + 5.x_2.7-1 + 5.x_2.8-1getorin1 + http://bugs.frugalware.org/task/4000 + http://cve.mitre.org/cgi-bin/cvename.cgi?name=4532 + http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2009-4533 + Some vulnerabilities have been reported in the Webform module for Drupal, which can be exploited by malicious users to conduct script insertion attacks, and by malicious people to disclose potentially sensitive information. + 1) Input passed to field labels while creating new webforms is not properly sanitised before being used. This can be exploited to insert arbitrary HTML and script code, which will be executed in a user's browser session in context of an affected site when the malicious data is being viewed. + Successful exploitation of this vulnerability requires permissions to create webforms. + 2) An error in the handling of cached pages can be exploited to disclose session variables when caching is enabled. + + + 626 + 2010-03-01 + Miklos Vajna + phpmyadmin + 3.2.0.1-1 + 3.2.2.1-1getorin1 + http://bugs.frugalware.org/task/3996 + http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2009-3696 + http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2009-3697 + Some vulnerabilities have been reported in phpMyAdmin, which can be exploited by malicious users to conduct script insertion and SQL injection attacks. + 1) Input used as the MySQL table name is not properly sanitised before being used. This can be exploited to insert arbitrary HTML and script code, which will be executed in a user's browser session in context of an affected site when the malicious data is being viewed. + 2) Input passed to various parameters of the PDF schema generator feature is not properly sanitised before being used. This can be exploited to manipulate SQL queries by injecting arbitrary SQL code. + + + 625 + 2009-12-09 + Miklos Vajna + kernel + 2.6.30-3 + 2.6.30-4getorin1 + http://bugs.frugalware.org/task/4047 + http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2009-1298 + This fixes a vulnerability, which potentially can be exploited by malicious people to cause a DoS (immediate OOPS and hang, complete loss of response, even of console). + The vulnerability is caused due to an error within the "ip_defrag()" function in net/ipv4/ip_fragment.c, which may be exploited to cause a NULL pointer dereference by sending overly large packets to a vulnerable system. + + + 624 + 2009-09-27 + Miklos Vajna + drupal6-commentrss + 6.x_2.1-1 + 6.x_2.2-1getorin1 + http://bugs.frugalware.org/task/3950 + No CVE references, see http://drupal.org/node/579290. + See FSA623 for more info. + + + 623 + 2009-09-27 + Miklos Vajna + drupal-commentrss + 5.x_2.1-1 + 5.x_2.2-1getorin1 + http://bugs.frugalware.org/task/3949 + No CVE references, see http://drupal.org/node/579280. + A vulnerability has been reported in the Comment RSS module for Drupal, which can be exploited to disclose potentially sensitive information. + The vulnerability is caused due to the module not properly respecting access restrictions when adding the link to a node, which can be exploited to disclose potentially sensitive information. + + + 622 + 2009-09-27 + Miklos Vajna + drupal6 + 6.13-1 + 6.14-1getorin1 + http://bugs.frugalware.org/task/3948 + No CVE references, see http://drupal.org/node/579476. + See FSA621 for more info. + + + 621 + 2009-09-27 + Miklos Vajna + drupal + 5.19-1 + 5.20-1getorin1 + http://bugs.frugalware.org/task/3947 + No CVE references, see http://drupal.org/node/579484. + Some vulnerabilities have been reported in Drupal, which can be exploited by malicious users to hijack accounts and compromise a vulnerable system, and by malicious people to conduct cross-site request forgery attacks. + 1) The OpenID module allows users to perform certain actions via HTTP requests without performing any validation checks to verify the requests. This can be exploited to e.g. add OpenID identities to existing accounts. + 2) An unspecified error within the OpenID Authentication 2.0 implementation can be exploited to hijack another user's account if the same OpenID 2.0 provider is used. + 3) An error within the File API when processing certain file extensions can be exploited to e.g. upload files which can be executed by the web server. + Note: Successful exploitation requires that the web server is configured to ignore Drupal's ".htaccess" file. + + + 620 + 2009-09-27 + Miklos Vajna + drupal-date + 5.x_2.7-1 + 5.x_2.8-1getorin1 + http://bugs.frugalware.org/task/3951 + No CVE references, see http://drupal.org/node/579144. + A vulnerability has been reported in the Date module for Drupal, which can be exploited by malicious users to conduct script insertion attacks. + Certain unspecified input is not properly sanitised before being displayed in the page title. This can be exploited to insert arbitrary HTML and script code, which will be executed in a user's browser session in context of an affected site when the malicious data is being viewed. + Successful exploitation requires privileges to post date content. + + + 619 + 2009-09-27 + Miklos Vajna + horde-webmail + 1.2.3-1 + 1.2.4-1getorin1 + http://bugs.frugalware.org/task/3958 + http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2009-3236 + Some vulnerabilities have been reported in Horde Groupware and Horde Groupware Webmail Edition, which can be exploited by malicious people to conduct cross-site scripting and script insertion attacks and by malicious users to compromise a vulnerable system. + 1) Two vulnerabilities can be exploited to conduct cross-site scripting or script insertion attacks. + 2) An error within the form library of the Horde Application Framework when handling image form fields can be exploited to overwrite arbitrary local files. + + + 618 + 2009-09-27 + Miklos Vajna + wireshark + 1.2.1-1 + 1.2.2-1getorin1 + http://bugs.frugalware.org/task/3957 + http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2009-3241 + http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2009-3242 + http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2009-3243 + Some vulnerabilities have been reported in Wireshark, which can be exploited by malicious people to cause a DoS (Denial of Service). + 1) An error in the "OpcUa" dissector can be exploited to exhaust CPU and memory resources via a specially crafted "Service CallRequest" packet. + 2) An assertion error in the "GSM A RR" dissector can be exploited to cause a crash. + 3) An error in the TLS dissector can be exploited to cause a crash on certain platforms (e.g. Windows) via specially crafted TLS 1.2 network packets. + + + 617 + 2009-09-27 + Miklos Vajna + drupal6-devel + 6.x_1.17-1 + 6.x_1.18-1getorin1 + http://bugs.frugalware.org/task/3964 + No CVE references, see http://drupal.org/node/585952. + A vulnerability has been reported in the Devel module for Drupal, which can be exploited by malicious users to conduct script insertion attacks. + The variable editor does not properly sanitise the variable name before displaying it to the user. This can be exploited to insert arbitrary HTML and script code, which will be executed in a user's browser session in context of an affected site when the malicious data is being viewed. + + diff --git a/frugalware/xml/security.xml b/frugalware/xml/security.xml index 1c72fa6..bc82f35 100644 --- a/frugalware/xml/security.xml +++ b/frugalware/xml/security.xml @@ -26,272 +26,14 @@ - 636 - 2010-03-01 - Miklos Vajna - wireshark - 1.2.5-1getorin1 - 1.2.6-1getorin1 - http://bugs.frugalware.org/task/4087 - http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2009-2563 - http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2009-4377 - http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2010-0304 - Some vulnerabilities have been reported in Wireshark, which can be exploited by malicious people to cause a DoS (Denial of Service) or compromise a user's system. -The vulnerabilities are caused due to errors within the LWRES dissector, which can be exploited to cause e.g. a stack-based buffer overflow via a specially crafted network packet or by tricking a user into loading a specially crafted capture file. -Successful exploitation allows execution of arbitrary code. - - - 635 - 2010-03-01 - Miklos Vajna - wireshark - 1.2.3-1getorin1 - 1.2.5-1getorin1 - http://bugs.frugalware.org/task/4064 - http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2009-4376 - http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2009-4377 - http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2009-4378 - Some vulnerabilities have been reported in Wireshark, which can be exploited by malicious people to cause a DoS (Denial of Service) or potentially compromise a user's system. - 1) A boundary error in the Daintree SNA file parser can be exploited to cause a buffer overflow via a specially crafted capture file. - Successful exploitation may allow execution of arbitrary code. - 2) An error in the IPMI dissector on Windows can be exploited to cause a crash. - 3) An error in the SMB and SMB2 dissectors can be exploited to cause a crash. - - - 634 - 2010-03-01 - Miklos Vajna - drupal - 5.20-1getorin1 - 5.21-1getorin1 - http://bugs.frugalware.org/task/4052 - http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2009-4369 - A vulnerability has been reported in Drupal Core, which can be exploited by malicious users to conduct script insertion attacks. - Input passed to the "Category" input field of the Contact module's administration form is not properly sanitised before being displayed to the user. - - - 633 - 2010-03-01 - Miklos Vajna - wordpress - 2.8.5-1getorin1 - 2.8.6-1getorin1 - http://bugs.frugalware.org/task/4043 - http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2009-3890 - http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2009-3891 - A security issue and a vulnerability have been reported in WordPress, which can be exploited by malicious users to conduct script insertion attacks and compromise a vulnerable system. - 1) The security issue is caused due to the wp_check_filetype() function in /wp-includes/functions.php improperly validating uploaded files. This can be exploited to execute arbitrary PHP code by uploading a malicious PHP script with multiple extensions. - Successful exploitation of this vulnerability requires that Apache is not configured to handle the mime-type for media files with an e.g. "gif", "jpg", "png", "tif", "wmv" extension. - 2) Input passed via certain parameters to press-this.php is not properly sanitised before being displayed to the user. This can be exploited to insert arbitrary HTML and script code, which will be executed in a user's browser session in context of an affected site when the malicious data is being viewed. - - - 632 - 2010-03-01 - Miklos Vajna - wireshark - 1.2.2-1getorin1 - 1.2.3-1getorin1 - http://bugs.frugalware.org/task/4026 - http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2009-2560 - http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2009-3549 - http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2009-3550 - http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2009-3551 - Some vulnerabilities have been reported in Wireshark, which can be exploited by malicious people to cause a DoS (Denial of Service). - 1) An alignment error within the "dissect_paltalk()" function in epan/dissectors/packet-paltalk.c of the Paltalk dissector can be exploited to cause a crash. - Note: Successful exploitation requires that Wireshark is running on an alignment sensitive architecture. - 2) A NULL pointer dereference error within the DCERPC/NT dissector when can be exploited to cause a crash. - 3) An off-by-one error within the "dissect_negprot_response()" function in epan/dissectors/packet-smb.c of the SMB dissector can be exploited to cause a crash. - 4) An error within the RADIUS dissector can be exploited to cause a crash. - - - 631 - 2010-03-01 - Miklos Vajna - drupal6-link - 6.x_2.6-1 - 6.x_2.8-1getorin1 - http://bugs.frugalware.org/task/4025 - http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2009-3915 - See FSA630 for details. - - - 630 - 2010-03-01 - Miklos Vajna - drupal-link - 5.x_2.5-1 - 5.x_2.6-1getorin1 - http://bugs.frugalware.org/task/4024 - http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2009-3915 - A vulnerability has been reported in the Link module for Drupal, which can be exploited by malicious users to conduct script insertion attacks. - Input passed via the link title parameter, when using the "Separate title and URL" format, is not properly sanitised before being displayed to the user. This can be exploited to insert arbitrary HTML and script code, which will be executed in a user's browser session in context of an affected site when the malicious data is being viewed. - - - 629 - 2010-03-01 - Miklos Vajna - wordpress - 2.8.4-1 - 2.8.5-1getorin1 - http://bugs.frugalware.org/task/4007 - No CVE, see http://wordpress.org/development/2009/10/wordpress-2-8-5-hardening-release/. - A vulnerability has been reported in WordPress, which can be exploited by malicious people to cause a DoS (Denial of Service). - The vulnerability is caused due to the wp-trackback.php script letting users pass multiple source character encodings to the "mb_convert_encoding()" function, which can be used to cause a high CPU load, potentially resulting in a DoS. - - - 628 - 2010-03-01 - Miklos Vajna - drupal6-webform - 6.x_2.7-1 - 6.x_2.8-1getorin1 - http://bugs.frugalware.org/task/4001 - http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2009-4532 - http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2009-4533 - See FSA627 for details. - - - 627 - 2010-03-01 - Miklos Vajna - drupal-webform - 5.x_2.7-1 - 5.x_2.8-1getorin1 - http://bugs.frugalware.org/task/4000 - http://cve.mitre.org/cgi-bin/cvename.cgi?name=4532 - http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2009-4533 - Some vulnerabilities have been reported in the Webform module for Drupal, which can be exploited by malicious users to conduct script insertion attacks, and by malicious people to disclose potentially sensitive information. - 1) Input passed to field labels while creating new webforms is not properly sanitised before being used. This can be exploited to insert arbitrary HTML and script code, which will be executed in a user's browser session in context of an affected site when the malicious data is being viewed. - Successful exploitation of this vulnerability requires permissions to create webforms. - 2) An error in the handling of cached pages can be exploited to disclose session variables when caching is enabled. - - - 626 - 2010-03-01 - Miklos Vajna - phpmyadmin - 3.2.0.1-1 - 3.2.2.1-1getorin1 - http://bugs.frugalware.org/task/3996 - http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2009-3696 - http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2009-3697 - Some vulnerabilities have been reported in phpMyAdmin, which can be exploited by malicious users to conduct script insertion and SQL injection attacks. - 1) Input used as the MySQL table name is not properly sanitised before being used. This can be exploited to insert arbitrary HTML and script code, which will be executed in a user's browser session in context of an affected site when the malicious data is being viewed. - 2) Input passed to various parameters of the PDF schema generator feature is not properly sanitised before being used. This can be exploited to manipulate SQL queries by injecting arbitrary SQL code. - - - 625 - 2009-12-09 - Miklos Vajna - kernel - 2.6.30-3 - 2.6.30-4getorin1 - http://bugs.frugalware.org/task/4047 - http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2009-1298 - This fixes a vulnerability, which potentially can be exploited by malicious people to cause a DoS (immediate OOPS and hang, complete loss of response, even of console). - The vulnerability is caused due to an error within the "ip_defrag()" function in net/ipv4/ip_fragment.c, which may be exploited to cause a NULL pointer dereference by sending overly large packets to a vulnerable system. - - - 624 - 2009-09-27 - Miklos Vajna - drupal6-commentrss - 6.x_2.1-1 - 6.x_2.2-1getorin1 - http://bugs.frugalware.org/task/3950 - No CVE references, see http://drupal.org/node/579290. - See FSA623 for more info. - - - 623 - 2009-09-27 - Miklos Vajna - drupal-commentrss - 5.x_2.1-1 - 5.x_2.2-1getorin1 - http://bugs.frugalware.org/task/3949 - No CVE references, see http://drupal.org/node/579280. - A vulnerability has been reported in the Comment RSS module for Drupal, which can be exploited to disclose potentially sensitive information. - The vulnerability is caused due to the module not properly respecting access restrictions when adding the link to a node, which can be exploited to disclose potentially sensitive information. - - - 622 - 2009-09-27 - Miklos Vajna - drupal6 - 6.13-1 - 6.14-1getorin1 - http://bugs.frugalware.org/task/3948 - No CVE references, see http://drupal.org/node/579476. - See FSA621 for more info. - - - 621 - 2009-09-27 - Miklos Vajna - drupal - 5.19-1 - 5.20-1getorin1 - http://bugs.frugalware.org/task/3947 - No CVE references, see http://drupal.org/node/579484. - Some vulnerabilities have been reported in Drupal, which can be exploited by malicious users to hijack accounts and compromise a vulnerable system, and by malicious people to conduct cross-site request forgery attacks. - 1) The OpenID module allows users to perform certain actions via HTTP requests without performing any validation checks to verify the requests. This can be exploited to e.g. add OpenID identities to existing accounts. - 2) An unspecified error within the OpenID Authentication 2.0 implementation can be exploited to hijack another user's account if the same OpenID 2.0 provider is used. - 3) An error within the File API when processing certain file extensions can be exploited to e.g. upload files which can be executed by the web server. - Note: Successful exploitation requires that the web server is configured to ignore Drupal's ".htaccess" file. - - - 620 - 2009-09-27 - Miklos Vajna - drupal-date - 5.x_2.7-1 - 5.x_2.8-1getorin1 - http://bugs.frugalware.org/task/3951 - No CVE references, see http://drupal.org/node/579144. - A vulnerability has been reported in the Date module for Drupal, which can be exploited by malicious users to conduct script insertion attacks. - Certain unspecified input is not properly sanitised before being displayed in the page title. This can be exploited to insert arbitrary HTML and script code, which will be executed in a user's browser session in context of an affected site when the malicious data is being viewed. - Successful exploitation requires privileges to post date content. - - - 619 - 2009-09-27 - Miklos Vajna - horde-webmail - 1.2.3-1 - 1.2.4-1getorin1 - http://bugs.frugalware.org/task/3958 - http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2009-3236 - Some vulnerabilities have been reported in Horde Groupware and Horde Groupware Webmail Edition, which can be exploited by malicious people to conduct cross-site scripting and script insertion attacks and by malicious users to compromise a vulnerable system. - 1) Two vulnerabilities can be exploited to conduct cross-site scripting or script insertion attacks. - 2) An error within the form library of the Horde Application Framework when handling image form fields can be exploited to overwrite arbitrary local files. - - - 618 - 2009-09-27 - Miklos Vajna - wireshark - 1.2.1-1 - 1.2.2-1getorin1 - http://bugs.frugalware.org/task/3957 - http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2009-3241 - http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2009-3242 - http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2009-3243 - Some vulnerabilities have been reported in Wireshark, which can be exploited by malicious people to cause a DoS (Denial of Service). - 1) An error in the "OpcUa" dissector can be exploited to exhaust CPU and memory resources via a specially crafted "Service CallRequest" packet. - 2) An assertion error in the "GSM A RR" dissector can be exploited to cause a crash. - 3) An error in the TLS dissector can be exploited to cause a crash on certain platforms (e.g. Windows) via specially crafted TLS 1.2 network packets. - - - 617 - 2009-09-27 - Miklos Vajna - drupal6-devel - 6.x_1.17-1 - 6.x_1.18-1getorin1 - http://bugs.frugalware.org/task/3964 - No CVE references, see http://drupal.org/node/585952. - A vulnerability has been reported in the Devel module for Drupal, which can be exploited by malicious users to conduct script insertion attacks. - The variable editor does not properly sanitise the variable name before displaying it to the user. This can be exploited to insert arbitrary HTML and script code, which will be executed in a user's browser session in context of an affected site when the malicious data is being viewed. + 637 + 2010-03-09 + Miklos Vajna + xar + 1.5.2-1 + 1.5.2-2locris1 + http://bugs.frugalware.org/task/4128 + http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2010-0055 + Braden Thomas from Apple has discovered a signature verification bypass issue in xar. The issue is that xar_open assumes that the checksum is stored at offset 0, but xar_signature_copy_signed_data uses xar property "checksum/offset" to find the offset to the checksum when validating the signature. As a result, a modified xar archive can pass signature validation by putting the checksum for the modified TOC at offset 0, pointing "checksum/offset" at the non-modified checksum at a higher offset, and using the original non-modified signature. From devil505linux at gmail.com Tue Mar 9 06:45:35 2010 From: devil505linux at gmail.com (Devil505) Date: Tue, 9 Mar 2010 06:45:35 +0100 (CET) Subject: [Frugalware-git] frugalware-current: gecko-mediaplayer-0.9.9.2-1-i686 * version bump Message-ID: <20100309054535.49B781240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=39255bda23141430e251582ce9bf3d0a9c7be039 commit 39255bda23141430e251582ce9bf3d0a9c7be039 Author: Devil505 Date: Tue Mar 9 06:44:50 2010 +0100 gecko-mediaplayer-0.9.9.2-1-i686 * version bump diff --git a/source/gnome-extra/gecko-mediaplayer/FrugalBuild b/source/gnome-extra/gecko-mediaplayer/FrugalBuild index 25daf67..619768d 100644 --- a/source/gnome-extra/gecko-mediaplayer/FrugalBuild +++ b/source/gnome-extra/gecko-mediaplayer/FrugalBuild @@ -2,17 +2,17 @@ # Maintainer: Devil505 pkgname=gecko-mediaplayer -pkgver=0.9.9 +pkgver=0.9.9.2 pkgrel=1 pkgdesc="browser plugin that uses GNOME MPlayer to play media in a browser (Mozilla, Firefox, Opera, etc.)." url="http://dekorte.homeip.net/download/gecko-mediaplayer/" -depends=('gnome-mplayer>=0.9.9' 'dbus-glib' 'gconf' 'libstdc++') +depends=('gnome-mplayer>=0.9.9.2' 'dbus-glib' 'gconf' 'libstdc++') makedepends=('xulrunner' 'pkgconfig') Finclude googlecode _F_gnome_schemas=('/etc/gconf/schemas/gecko-mediaplayer.schemas') Finclude gnome-scriptlet groups=(gnome-extra) archs=('i686' 'x86_64' 'ppc') -sha1sums=('68481e9df9c57812763f5e5cfcd01627dbe0a894') +sha1sums=('fb9620bbb9e4df27a7e588dcf3d0b6e55188c262') # optimization OK From devil505linux at gmail.com Tue Mar 9 06:49:50 2010 From: devil505linux at gmail.com (Devil505) Date: Tue, 9 Mar 2010 06:49:50 +0100 (CET) Subject: [Frugalware-git] frugalware-current: simple-scan-0.9.6-1-i686 * version bump Message-ID: <20100309054950.5AC781240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=5d2003f5fafc94f85de9c3eda0e960feba24bd6c commit 5d2003f5fafc94f85de9c3eda0e960feba24bd6c Author: Devil505 Date: Tue Mar 9 06:49:29 2010 +0100 simple-scan-0.9.6-1-i686 * version bump diff --git a/source/gnome-extra/simple-scan/FrugalBuild b/source/gnome-extra/simple-scan/FrugalBuild index e403e29..848407d 100644 --- a/source/gnome-extra/simple-scan/FrugalBuild +++ b/source/gnome-extra/simple-scan/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: Devil505 pkgname=simple-scan -pkgver=0.9.3 +pkgver=0.9.6 pkgrel=1 pkgdesc="Simple scanning utility" url="http://launchpad.net/simple-scan" @@ -15,5 +15,5 @@ groups=('gnome-extra') archs=('i686' 'x86_64') up2date="elinks -dump $url | Flasttar" source=($url/trunk/${pkgver}/+download/${pkgname}-${pkgver}.tar.gz) -sha1sums=('4d4e1d48c70f94258b913fcd10a90da54070ee1a') +sha1sums=('2e246a3af0828778527bbabd7979111228eef062') From devil505linux at gmail.com Tue Mar 9 07:00:14 2010 From: devil505linux at gmail.com (Devil505) Date: Tue, 9 Mar 2010 07:00:14 +0100 (CET) Subject: [Frugalware-git] frugalware-current: rednotebook-0.9.3-1-i686 * version bump Message-ID: <20100309060014.A43891240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=53229ac93de30aee3deeb77a379ff6058ec14062 commit 53229ac93de30aee3deeb77a379ff6058ec14062 Author: Devil505 Date: Tue Mar 9 06:59:41 2010 +0100 rednotebook-0.9.3-1-i686 * version bump diff --git a/source/gnome-extra/rednotebook/FrugalBuild b/source/gnome-extra/rednotebook/FrugalBuild index d03a945..976eea3 100644 --- a/source/gnome-extra/rednotebook/FrugalBuild +++ b/source/gnome-extra/rednotebook/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: Devil505 pkgname=rednotebook -pkgver=0.9.2 +pkgver=0.9.3 pkgrel=1 pkgdesc="RedNotebook is a desktop diary that makes it very easy for you to keep track of the stuff you do and the thoughts you have." depends=('pygtk' 'libgtkhtml' 'pyyaml' 'gnome-python-extras') @@ -11,4 +11,4 @@ _F_gnome_iconcache="y" Finclude sourceforge gnome-scriptlet groups=('gnome-extra') archs=('i686' 'x86_64') -sha1sums=('f5fe23c16864226dfad1048cf1708c81cdd74526') +sha1sums=('a50fffb5118943501e4bd1dadf7fc038999ef286') From bouleetbil at frogdev.info Tue Mar 9 08:02:13 2010 From: bouleetbil at frogdev.info (bouleetbil) Date: Tue, 9 Mar 2010 08:02:13 +0100 (CET) Subject: [Frugalware-git] frugalware-current: xf86-video-nv-2.1.17-1-i686 *version bump Message-ID: <20100309070213.D635B1240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=96873b6dfea721a320e1dc9bfd73bc0b980a2392 commit 96873b6dfea721a320e1dc9bfd73bc0b980a2392 Author: bouleetbil Date: Tue Mar 9 08:40:56 2010 +0000 xf86-video-nv-2.1.17-1-i686 *version bump diff --git a/source/x11/xf86-video-nv/FrugalBuild b/source/x11/xf86-video-nv/FrugalBuild index 5a75fd6..84cccf4 100644 --- a/source/x11/xf86-video-nv/FrugalBuild +++ b/source/x11/xf86-video-nv/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: Christian Hamar alias krix pkgname=xf86-video-nv -pkgver=2.1.16 +pkgver=2.1.17 pkgrel=1 pkgdesc="X.Org driver for NVidia cards" url="http://xorg.freedesktop.org" @@ -11,6 +11,6 @@ archs=('i686' 'x86_64' 'ppc') depends=('xorg-server>=1.6.3') makedepends=('randrproto>1.3.0' 'renderproto' 'videoproto>=2.2.2' 'xf86dgaproto' 'util-macros') Finclude xorg -sha1sums=('fce8c42268f1b60c8aece2adb35d780f02300fe8') +sha1sums=('9f165c085e6420470191a544404066524f2f1c61') # optimization OK From vmiklos at frugalware.org Tue Mar 9 08:05:34 2010 From: vmiklos at frugalware.org (Miklos Vajna) Date: Tue, 9 Mar 2010 08:05:34 +0100 (CET) Subject: [Frugalware-git] frugalware-current: git-1.7.0.2-1-i686 Message-ID: <20100309070534.D50F91240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=05a473616573f3c3aa9e41feca23dc6f231c474c commit 05a473616573f3c3aa9e41feca23dc6f231c474c Author: Miklos Vajna Date: Tue Mar 9 08:03:22 2010 +0100 git-1.7.0.2-1-i686 - version bump diff --git a/source/devel-extra/git/FrugalBuild b/source/devel-extra/git/FrugalBuild index d40b43f..d1550ab 100644 --- a/source/devel-extra/git/FrugalBuild +++ b/source/devel-extra/git/FrugalBuild @@ -8,7 +8,7 @@ USE_DEVEL=${USE_DEVEL:-"n"} USE_HTMLMAN=${USE_HTMLMAN:-"y"} pkgname=git -pkgver=1.7.0 +pkgver=1.7.0.2 Fuse $USE_DEVEL && pkgver=1.6.1.87.g1562445 pkgrel=1 pkgdesc="A fast, scalable, distributed revision control system." From vmiklos at frugalware.org Tue Mar 9 08:07:16 2010 From: vmiklos at frugalware.org (Miklos Vajna) Date: Tue, 9 Mar 2010 08:07:16 +0100 (CET) Subject: [Frugalware-git] frugalware-current: byacc-20100216-1-i686 Message-ID: <20100309070716.1468E1240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=cbf953d9fa2465c0fa2d21b009f72fdb315f1be2 commit cbf953d9fa2465c0fa2d21b009f72fdb315f1be2 Author: Miklos Vajna Date: Tue Mar 9 08:06:51 2010 +0100 byacc-20100216-1-i686 - version bump diff --git a/source/devel-extra/byacc/FrugalBuild b/source/devel-extra/byacc/FrugalBuild index da14595..a0f2032 100644 --- a/source/devel-extra/byacc/FrugalBuild +++ b/source/devel-extra/byacc/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: Miklos Vajna pkgname=byacc -pkgver=20091027 +pkgver=20100216 pkgrel=1 pkgdesc="The Berkeley variant of the Yacc parser generator." url="http://invisible-island.net/byacc/byacc.html" @@ -11,7 +11,7 @@ groups=('devel-extra') archs=('i686' 'x86_64' 'ppc') up2date="lynx -dump ftp://invisible-island.net/byacc/|grep tgz$|sed -n 's/.*c-\(.*\)\.t.*/\1/;s/-/_/;$ p'" source=(ftp://invisible-island.net/byacc/byacc-$pkgver.tgz) -sha1sums=('46b56e99bdd0dd7499877794a69f6ea41a9a4767') +sha1sums=('4cf554040103e458cb0653569cf5d0dadd5e63c6') build() { From boobaa at frugalware.org Tue Mar 9 08:16:37 2010 From: boobaa at frugalware.org (CSÉCSY László) Date: Tue, 9 Mar 2010 08:16:37 +0100 (CET) Subject: [Frugalware-git] frugalware-current: man-pages-3.24-1-i686 version bump Message-ID: <20100309071637.5590C1240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=25ca34b951df3d6c3dd490ea5b941158f1f9d0c7 commit 25ca34b951df3d6c3dd490ea5b941158f1f9d0c7 Author: CS??CSY L??szl?? Date: Tue Mar 9 08:16:19 2010 +0100 man-pages-3.24-1-i686 version bump diff --git a/source/apps/man-pages/FrugalBuild b/source/apps/man-pages/FrugalBuild index a17b137..4a24b60 100644 --- a/source/apps/man-pages/FrugalBuild +++ b/source/apps/man-pages/FrugalBuild @@ -3,7 +3,7 @@ # Contributor: Miklos Vajna pkgname=man-pages -pkgver=3.23 +pkgver=3.24 pkgrel=1 pkgdesc="Man pages are online documentation for Linux" url="http://www.win.tue.nl/~aeb/linux/man" @@ -43,4 +43,4 @@ build() Frm /usr/share/man/man3/{ctime,queue,random,regex,string}.3 } -sha1sums=('428c676cab0f4626978688bc626f0b4638d70d10') +sha1sums=('f2c6a5de843cea26e2542b7dd93b9adbc1bd7584') From boobaa at frugalware.org Tue Mar 9 08:21:48 2010 From: boobaa at frugalware.org (CSÉCSY László) Date: Tue, 9 Mar 2010 08:21:48 +0100 (CET) Subject: [Frugalware-git] frugalware-current: phpmyadmin-3.3.0-1-i686 version bump Message-ID: <20100309072148.D7AD01240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=f45c1263e363d09b9b877ccc845db3deb86623f1 commit f45c1263e363d09b9b877ccc845db3deb86623f1 Author: CS??CSY L??szl?? Date: Tue Mar 9 08:21:41 2010 +0100 phpmyadmin-3.3.0-1-i686 version bump diff --git a/source/network-extra/phpmyadmin/FrugalBuild b/source/network-extra/phpmyadmin/FrugalBuild index cee2b38..0b4db51 100644 --- a/source/network-extra/phpmyadmin/FrugalBuild +++ b/source/network-extra/phpmyadmin/FrugalBuild @@ -3,7 +3,7 @@ # Maintainer: CS?CSY L?szl? pkgname=phpmyadmin -pkgver=3.2.5 +pkgver=3.3.0 pkgrel=1 pkgdesc="Set of PHP-scripts to administrate MySQL over the WWW." _F_sourceforge_ext="-all-languages.tar.bz2" @@ -29,4 +29,4 @@ build() Frm /var/www/html/phpMyAdmin-${pkgver//_/-}-all-languages.tar.bz2 } -sha1sums=('e8511c9ddfcd7d157965a6c43a0afcc2be019f08') +sha1sums=('f19f6495d0f80b94882c2ee1c888fe634cb28643') From boobaa at frugalware.org Tue Mar 9 08:23:15 2010 From: boobaa at frugalware.org (CSÉCSY László) Date: Tue, 9 Mar 2010 08:23:15 +0100 (CET) Subject: [Frugalware-git] frugalware-current: drupal6-demo-6.x_1.4-1-i686 version bump Message-ID: <20100309072316.010D61240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=2f1562b548cced9202ca650ac3bd656db34cf2b2 commit 2f1562b548cced9202ca650ac3bd656db34cf2b2 Author: CS??CSY L??szl?? Date: Tue Mar 9 08:22:52 2010 +0100 drupal6-demo-6.x_1.4-1-i686 version bump diff --git a/source/network-extra/drupal6-demo/FrugalBuild b/source/network-extra/drupal6-demo/FrugalBuild index e745a06..0005ded 100644 --- a/source/network-extra/drupal6-demo/FrugalBuild +++ b/source/network-extra/drupal6-demo/FrugalBuild @@ -3,8 +3,8 @@ _F_drupal_module=demo _F_drupal_ver=6.x -pkgver=6.x_1.3 +pkgver=6.x_1.4 pkgrel=1 pkgdesc="Allows you to take snapshots of your Drupal site" Finclude drupal -sha1sums=('7e2f1a6577ed596de619bd771b9d54945b0f32dc') +sha1sums=('984aeb617ddd89a1211e2f468be4f9141a63afbe') From boobaa at frugalware.org Tue Mar 9 08:25:28 2010 From: boobaa at frugalware.org (CSÉCSY László) Date: Tue, 9 Mar 2010 08:25:28 +0100 (CET) Subject: [Frugalware-git] frugalware-current: drupal6-schema-6.x_1.7-1-i686 version bump Message-ID: <20100309072528.C35B71240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=6bc6ef4cfb070cf127ea1fb5206fa5d9bb91b805 commit 6bc6ef4cfb070cf127ea1fb5206fa5d9bb91b805 Author: CS??CSY L??szl?? Date: Tue Mar 9 08:25:21 2010 +0100 drupal6-schema-6.x_1.7-1-i686 version bump diff --git a/source/network-extra/drupal6-schema/FrugalBuild b/source/network-extra/drupal6-schema/FrugalBuild index b43b024..1c99460 100644 --- a/source/network-extra/drupal6-schema/FrugalBuild +++ b/source/network-extra/drupal6-schema/FrugalBuild @@ -3,8 +3,8 @@ _F_drupal_module=schema _F_drupal_ver=6.x -pkgver=6.x_1.6 +pkgver=6.x_1.7 pkgrel=1 pkgdesc="Provides more Schema functionality not in the core Drupal Schema API" Finclude drupal -sha1sums=('59ebdaee9a00fc73114a807884093c3199544bc9') +sha1sums=('c00b04cd27b6a4c473f497be6ab2348c128253ef') From boobaa at frugalware.org Tue Mar 9 08:27:23 2010 From: boobaa at frugalware.org (CSÉCSY László) Date: Tue, 9 Mar 2010 08:27:23 +0100 (CET) Subject: [Frugalware-git] frugalware-current: drupal-link-5.x_2.7-1-i686 version bump Message-ID: <20100309072723.ED5B91240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=a27e2ea2a15146daacf82ba774042e306c0c6eb8 commit a27e2ea2a15146daacf82ba774042e306c0c6eb8 Author: CS??CSY L??szl?? Date: Tue Mar 9 08:27:18 2010 +0100 drupal-link-5.x_2.7-1-i686 version bump diff --git a/source/network-extra/drupal-link/FrugalBuild b/source/network-extra/drupal-link/FrugalBuild index 0e35b2a..d7ffaea 100644 --- a/source/network-extra/drupal-link/FrugalBuild +++ b/source/network-extra/drupal-link/FrugalBuild @@ -2,9 +2,9 @@ # Maintainer: CS?CSY L?szl? _F_drupal_module=link -pkgver=5.x_2.6 +pkgver=5.x_2.7 pkgrel=1 pkgdesc="This Drupal module provides a CCK field which lets you add a complete link to your content types" rodepends=('drupal-cck') Finclude drupal -sha1sums=('1dc3363b7479d590ca4099b48339c58c786c95bf') +sha1sums=('2bb32ef22da8578eea6cc6dd87f7df05aa366c05') From boobaa at frugalware.org Tue Mar 9 08:31:16 2010 From: boobaa at frugalware.org (CSÉCSY László) Date: Tue, 9 Mar 2010 08:31:16 +0100 (CET) Subject: [Frugalware-git] frugalware-current: perl-geo-ipfree-1.100470-1-i686 version bump Message-ID: <20100309073116.387C41240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=2472cff8fcecbbf32ba81a060df1f9a5aac95aca commit 2472cff8fcecbbf32ba81a060df1f9a5aac95aca Author: CS??CSY L??szl?? Date: Tue Mar 9 08:30:40 2010 +0100 perl-geo-ipfree-1.100470-1-i686 version bump diff --git a/source/devel-extra/perl-geo-ipfree/FrugalBuild b/source/devel-extra/perl-geo-ipfree/FrugalBuild index 1912c70..56aec5c 100644 --- a/source/devel-extra/perl-geo-ipfree/FrugalBuild +++ b/source/devel-extra/perl-geo-ipfree/FrugalBuild @@ -3,9 +3,9 @@ _F_perl_name=Geo-IPfree _F_perl_author=B/BR/BRICAS -pkgver=0.8 +pkgver=1.100470 pkgdesc="DB of IPs is free & small." depends=('perl') Finclude perl -sha1sums=('fb661916f5e15df0927a0def1ed955747801aa97') +sha1sums=('935ddfe0fa90e5a0582252c0687aba78c480e75d') archs=(${archs[@]} 'x86_64') From boobaa at frugalware.org Tue Mar 9 08:32:52 2010 From: boobaa at frugalware.org (CSÉCSY László) Date: Tue, 9 Mar 2010 08:32:52 +0100 (CET) Subject: [Frugalware-git] frugalware-current: python-paver-1.0.2-1-i686 version bump Message-ID: <20100309073252.3C8621240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=cf1c279fd9c76e3cd1ce8bd49f5a0760d3900024 commit cf1c279fd9c76e3cd1ce8bd49f5a0760d3900024 Author: CS??CSY L??szl?? Date: Tue Mar 9 08:32:34 2010 +0100 python-paver-1.0.2-1-i686 version bump diff --git a/source/devel-extra/python-paver/FrugalBuild b/source/devel-extra/python-paver/FrugalBuild index abad554..3671e34 100644 --- a/source/devel-extra/python-paver/FrugalBuild +++ b/source/devel-extra/python-paver/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: CS?CSY L?szl? pkgname=python-paver -pkgver=1.0 +pkgver=1.0.2 pkgrel=1 pkgdesc="Easy build, distribution and deployment scripting" url="http://www.blueskyonmars.com/projects/paver/" @@ -12,4 +12,4 @@ archs=('i686' 'x86_64') up2date="lynx -dump http://pypi.python.org/pypi/Paver/ | grep tar -m1 | sed 's/.*-\(.*\)\.tar.*/\1/'" source=(http://pypi.python.org/packages/source/P/Paver/Paver-$pkgver.tar.gz) _F_cd_path=Paver-$pkgver -sha1sums=('108677ec5604add38d213fa4b8c38f18c3d8cab0') +sha1sums=('fd5e1530df5bd1dc6f5495661cfc0b2b9003fd96') From boobaa at frugalware.org Tue Mar 9 08:36:30 2010 From: boobaa at frugalware.org (CSÉCSY László) Date: Tue, 9 Mar 2010 08:36:30 +0100 (CET) Subject: [Frugalware-git] frugalware-current: perl-locale-maketext-lexicon-0.79-1-i686 version bump Message-ID: <20100309073630.2312E1240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=09f481712ddada3338cb11e8c3f1ae7bb83a0549 commit 09f481712ddada3338cb11e8c3f1ae7bb83a0549 Author: CS??CSY L??szl?? Date: Tue Mar 9 08:35:32 2010 +0100 perl-locale-maketext-lexicon-0.79-1-i686 version bump diff --git a/source/devel-extra/perl-locale-maketext-lexicon/FrugalBuild b/source/devel-extra/perl-locale-maketext-lexicon/FrugalBuild index 6ccde46..70aa59b 100644 --- a/source/devel-extra/perl-locale-maketext-lexicon/FrugalBuild +++ b/source/devel-extra/perl-locale-maketext-lexicon/FrugalBuild @@ -5,11 +5,11 @@ pkgname=perl-locale-maketext-lexicon _F_perl_name=Locale-Maketext-Lexicon _F_perl_author=D/DR/DRTECH -pkgver=0.77 +pkgver=0.79 pkgrel=1 pkgdesc="Use other catalog formats in Maketext" depends=('perl') groups=('devel-extra') Finclude perl archs=('i686' 'x86_64') -sha1sums=('297229b18585d9c35c637b395627c8dd1090729f') +sha1sums=('dc374e5b3ac8c689116dbc259b930505fa3856a6') From boobaa at frugalware.org Tue Mar 9 08:42:48 2010 From: boobaa at frugalware.org (CSÉCSY László) Date: Tue, 9 Mar 2010 08:42:48 +0100 (CET) Subject: [Frugalware-git] frugalware-current: k9copy-2.3.5-1-i686 version bump Message-ID: <20100309074248.834A01240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=622c290ec8fd09ba685a751fa043f52bcea32981 commit 622c290ec8fd09ba685a751fa043f52bcea32981 Author: CS??CSY L??szl?? Date: Tue Mar 9 08:42:42 2010 +0100 k9copy-2.3.5-1-i686 version bump diff --git a/source/kde-extra/k9copy/FrugalBuild b/source/kde-extra/k9copy/FrugalBuild index 1933e39..1da4b18 100644 --- a/source/kde-extra/k9copy/FrugalBuild +++ b/source/kde-extra/k9copy/FrugalBuild @@ -3,7 +3,7 @@ # Contributor: VMiklos pkgname=k9copy -pkgver=2.3.4 +pkgver=2.3.5 pkgrel=1 pkgdesc="K9Copy is a small utility which allows the copy of DVD under Linux." groups=('kde-extra') @@ -14,7 +14,7 @@ _F_kde_defaults=0 Finclude sourceforge kde url="http://k9copy.sourceforge.net/index.php" depends=("${depends[@]}" "kdebase-runtime>=$_F_kde_ver" 'xine-lib' 'mpeg2dec' 'dvd+rw-tools' 'dvdauthor') -sha1sums=('c8cec2850a28e01baade78076494ecc7dfe626a9') +sha1sums=('9ca21db87120fe9ad5a424c8a42aebf499497563') build() { Fcd From boobaa at frugalware.org Tue Mar 9 08:47:53 2010 From: boobaa at frugalware.org (CSÉCSY László) Date: Tue, 9 Mar 2010 08:47:53 +0100 (CET) Subject: [Frugalware-git] frugalware-current: bibletime-2.6-1-i686 version bump Message-ID: <20100309074753.7822A1240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=d76ca94caaaec11783fe185f70920769f50b333e commit d76ca94caaaec11783fe185f70920769f50b333e Author: CS??CSY L??szl?? Date: Tue Mar 9 08:47:46 2010 +0100 bibletime-2.6-1-i686 version bump diff --git a/source/kde-extra/bibletime/FrugalBuild b/source/kde-extra/bibletime/FrugalBuild index 2a412de..4cbfb3d 100644 --- a/source/kde-extra/bibletime/FrugalBuild +++ b/source/kde-extra/bibletime/FrugalBuild @@ -3,7 +3,7 @@ # Contributor: Bence Nagy pkgname=bibletime -pkgver=2.5 +pkgver=2.6 pkgrel=1 pkgdesc="Bible study software for KDE" groups=('kde-extra') @@ -16,4 +16,4 @@ makedepends=("${makedepends[@]}" 'boost') url='http://www.bibletime.info' # optimization OK -sha1sums=('e97735a44126c2c2d008c4635ab02441d878c794') +sha1sums=('6f3ef0f01ca058868fadab4a72899f8d938c1272') From boobaa at frugalware.org Tue Mar 9 08:50:33 2010 From: boobaa at frugalware.org (CSÉCSY László) Date: Tue, 9 Mar 2010 08:50:33 +0100 (CET) Subject: [Frugalware-git] frugalware-current: wordpress-2.9.2-1-i686 version bump closes #4131 in -current Message-ID: <20100309075033.3C0D61240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=bf6ef24bc4a684a6b7040de0e9c7cb8254b4070d commit bf6ef24bc4a684a6b7040de0e9c7cb8254b4070d Author: CS??CSY L??szl?? Date: Tue Mar 9 08:50:06 2010 +0100 wordpress-2.9.2-1-i686 version bump closes #4131 in -current diff --git a/source/network-extra/wordpress/FrugalBuild b/source/network-extra/wordpress/FrugalBuild index 01b02ad..ea92b39 100644 --- a/source/network-extra/wordpress/FrugalBuild +++ b/source/network-extra/wordpress/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: CS?CSY L?szl? pkgname=wordpress -pkgver=2.9.1 +pkgver=2.9.2 pkgrel=1 pkgdesc="a state-of-the-art semantic personal publishing platform" url="http://wordpress.org/" @@ -21,4 +21,4 @@ build() Fmv ../src/$pkgname /var/www/$pkgname } -sha1sums=('c5d8f2fd4d9f099f9f8de0d00cfa26b5a5f1401d') +sha1sums=('c4bc4fa6e4b1c631d372a930852873303708a881') From boobaa at frugalware.org Tue Mar 9 08:51:44 2010 From: boobaa at frugalware.org (CSÉCSY László) Date: Tue, 9 Mar 2010 08:51:44 +0100 (CET) Subject: [Frugalware-git] frugalware-current: drupal-5.22-1-i686 version bump closes #4132 in -current Message-ID: <20100309075144.08F5B1240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=76a8bf022910042416a5ae4746ad9012eef8a90e commit 76a8bf022910042416a5ae4746ad9012eef8a90e Author: CS??CSY L??szl?? Date: Tue Mar 9 08:51:25 2010 +0100 drupal-5.22-1-i686 version bump closes #4132 in -current diff --git a/source/network-extra/drupal/FrugalBuild b/source/network-extra/drupal/FrugalBuild index af47442..0f16c35 100644 --- a/source/network-extra/drupal/FrugalBuild +++ b/source/network-extra/drupal/FrugalBuild @@ -3,7 +3,7 @@ # Contributor: AlexExtreme pkgname=drupal -pkgver=5.21 +pkgver=5.22 pkgrel=1 pkgdesc="An advanced content management system to manage your website" url="http://drupal.org" @@ -15,7 +15,7 @@ up2date="lynx -dump http://drupal.org/project/Drupal+project | grep -m1 'l-5[0-9 backup=(var/www/drupal/sites/default/settings.php) source=(http://drupal.org/files/projects/drupal-$pkgver.tar.gz \ drupalsetup README.Frugalware) -sha1sums=('a361c7e0259f30994ff47c7f363711df2cd12793' \ +sha1sums=('32e8d4dbaf6dee6841b2ea8496535ca0ebe1ebd9' \ 'c56deef0edee4cea4b9391d20358eb7e2faf0005' \ '64c0eadd7a2e00b11644458a4eeea8e3203fa739') options=('stick') From boobaa at frugalware.org Tue Mar 9 08:52:46 2010 From: boobaa at frugalware.org (CSÉCSY László) Date: Tue, 9 Mar 2010 08:52:46 +0100 (CET) Subject: [Frugalware-git] frugalware-current: drupal6-6.16-1-i686 version bump closes #4133 in -current Message-ID: <20100309075246.7B1601240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=05fcc67cc05844064379247b85ebbf218a2be686 commit 05fcc67cc05844064379247b85ebbf218a2be686 Author: CS??CSY L??szl?? Date: Tue Mar 9 08:52:30 2010 +0100 drupal6-6.16-1-i686 version bump closes #4133 in -current diff --git a/source/network-extra/drupal6/FrugalBuild b/source/network-extra/drupal6/FrugalBuild index 8f9ac02..999c3d7 100644 --- a/source/network-extra/drupal6/FrugalBuild +++ b/source/network-extra/drupal6/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: CS?CSY L?szl? pkgname=drupal6 -pkgver=6.15 +pkgver=6.16 pkgrel=1 pkgdesc="An open source content management platform" url="http://drupal.org" @@ -13,7 +13,7 @@ up2date="lynx -dump http://drupal.org/project/Drupal+project | grep -m1 'l-6[0-9 backup=(var/www/drupal6/sites/default/settings.php) source=(http://drupal.org/files/projects/drupal-$pkgver.tar.gz \ README.Frugalware) -sha1sums=('5be5ebf85c9ffa33e71c5a0f05d1308d3af19ab8' \ +sha1sums=('90db81b6f4b9b0514c9cdd1338f344492beb5477' \ '3e301be2f8a247c86b5f32e68773c9618322e7d7') options=('stick') From boobaa at frugalware.org Tue Mar 9 08:54:03 2010 From: boobaa at frugalware.org (CSÉCSY László) Date: Tue, 9 Mar 2010 08:54:03 +0100 (CET) Subject: [Frugalware-git] frugalware-current: drupal-i18n-5.x_2.6-1-i686 version bump closes #4134 in -current Message-ID: <20100309075403.532661240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=11df28f40dc34bd68c5a3b8416d616f8510dc4ea commit 11df28f40dc34bd68c5a3b8416d616f8510dc4ea Author: CS??CSY L??szl?? Date: Tue Mar 9 08:53:32 2010 +0100 drupal-i18n-5.x_2.6-1-i686 version bump closes #4134 in -current diff --git a/source/network-extra/drupal-i18n/FrugalBuild b/source/network-extra/drupal-i18n/FrugalBuild index e667a72..8361ea7 100644 --- a/source/network-extra/drupal-i18n/FrugalBuild +++ b/source/network-extra/drupal-i18n/FrugalBuild @@ -2,8 +2,8 @@ # Maintainer: CS?CSY L?szl? _F_drupal_module=i18n -pkgver=5.x_2.5 +pkgver=5.x_2.6 pkgrel=1 pkgdesc="A collection of modules to add multi-lingual capabilities to Drupal" Finclude drupal -sha1sums=('741e4c73e6c290ca245041a2033f443ccd99650b') +sha1sums=('780c496a8c0776e3001ad93974c682c5dd25440b') From boobaa at frugalware.org Tue Mar 9 08:55:13 2010 From: boobaa at frugalware.org (CSÉCSY László) Date: Tue, 9 Mar 2010 08:55:13 +0100 (CET) Subject: [Frugalware-git] frugalware-current: drupal6-i18n-6.x_1.3-1-i686 version bump closes #4135 in -current Message-ID: <20100309075513.925221240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=1860bbe8459cc36bbd4aaa7f0833460dc4a10001 commit 1860bbe8459cc36bbd4aaa7f0833460dc4a10001 Author: CS??CSY L??szl?? Date: Tue Mar 9 08:54:45 2010 +0100 drupal6-i18n-6.x_1.3-1-i686 version bump closes #4135 in -current diff --git a/source/network-extra/drupal6-i18n/FrugalBuild b/source/network-extra/drupal6-i18n/FrugalBuild index 844379d..e741762 100644 --- a/source/network-extra/drupal6-i18n/FrugalBuild +++ b/source/network-extra/drupal6-i18n/FrugalBuild @@ -3,8 +3,8 @@ _F_drupal_module=i18n _F_drupal_ver=6.x -pkgver=6.x_1.2 +pkgver=6.x_1.3 pkgrel=1 pkgdesc="Enables multilingual content in Drupal" Finclude drupal -sha1sums=('69d41ed75d3e6cd82386a96d125c472f9747954e') +sha1sums=('830f937fc590a7fa344a873531512a616ba02da1') From boobaa at frugalware.org Tue Mar 9 09:21:58 2010 From: boobaa at frugalware.org (CSÉCSY László) Date: Tue, 9 Mar 2010 09:21:58 +0100 (CET) Subject: [Frugalware-git] frugalware-current: tellico-2.2-1-i686 version bump Message-ID: <20100309082158.27E081240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=b72384747440dd28361f1f6c2d77e0f40474dbda commit b72384747440dd28361f1f6c2d77e0f40474dbda Author: CS??CSY L??szl?? Date: Tue Mar 9 09:21:49 2010 +0100 tellico-2.2-1-i686 version bump diff --git a/source/kde-extra/tellico/FrugalBuild b/source/kde-extra/tellico/FrugalBuild index 16f652d..b2c0b0e 100644 --- a/source/kde-extra/tellico/FrugalBuild +++ b/source/kde-extra/tellico/FrugalBuild @@ -2,8 +2,8 @@ # Maintainer: CS?CSY L?szl? pkgname=tellico -pkgver=2.1.1 -pkgrel=2 +pkgver=2.2 +pkgrel=1 pkgdesc="A collection manager for the KDE environment." groups=('kde-extra') archs=('i686' 'x86_64') @@ -12,7 +12,7 @@ depends=("${depends[@]}" "kdelibs>=$_F_kde_ver" "libxslt" "kdemultimedia" "kdepi url="http://tellico-project.org" up2date="Flastarchive $url/download .tar.bz2" source=($url/files/$pkgname-$pkgver.tar.bz2) -sha1sums=('6492bfe71dfaf66652fe060722cd3bf187b38401') +sha1sums=('fac25f4e776fcfd41ac0b60a6982081be7880296') # optimization OK From boobaa at frugalware.org Tue Mar 9 09:25:02 2010 From: boobaa at frugalware.org (CSÉCSY László) Date: Tue, 9 Mar 2010 09:25:02 +0100 (CET) Subject: [Frugalware-git] frugalware-current: jhead-2.90-1-i686 version bump Message-ID: <20100309082502.5057A1240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=8532c5483331f6618bc601efb00983e1f7b9f700 commit 8532c5483331f6618bc601efb00983e1f7b9f700 Author: CS??CSY L??szl?? Date: Tue Mar 9 09:24:30 2010 +0100 jhead-2.90-1-i686 version bump diff --git a/source/apps-extra/jhead/FrugalBuild b/source/apps-extra/jhead/FrugalBuild index a4199cf..7f93fa3 100644 --- a/source/apps-extra/jhead/FrugalBuild +++ b/source/apps-extra/jhead/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: CS?CSY L?szl? pkgname=jhead -pkgver=2.88 +pkgver=2.90 pkgrel=1 pkgdesc="Exif Jpeg camera setting parser and thumbnail remover" url="http://www.sentex.net/~mwandel/jhead/" @@ -26,4 +26,4 @@ build() { } # optimization OK -sha1sums=('96668909d9cbeb6653defc03b50dbbb57057ff00') +sha1sums=('f24a611d5c359b6c0a24184718ec983b9d0eb449') From bouleetbil at frogdev.info Tue Mar 9 09:25:59 2010 From: bouleetbil at frogdev.info (bouleetbil) Date: Tue, 9 Mar 2010 09:25:59 +0100 (CET) Subject: [Frugalware-git] frugalware-current: gparted-0.5.2-1-x86_64 *version bump Message-ID: <20100309082559.6B2B01240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=06e2c6a41bbd947afdb38f080c1c65669d2b3827 commit 06e2c6a41bbd947afdb38f080c1c65669d2b3827 Author: bouleetbil Date: Tue Mar 9 09:24:41 2010 +0100 gparted-0.5.2-1-x86_64 *version bump diff --git a/source/xapps-extra/gparted/FrugalBuild b/source/xapps-extra/gparted/FrugalBuild index 5a07b1f..6d890c2 100644 --- a/source/xapps-extra/gparted/FrugalBuild +++ b/source/xapps-extra/gparted/FrugalBuild @@ -2,8 +2,8 @@ # Maintainer: bouleetbil pkgname=gparted -pkgver=0.5.1 -pkgrel=2 +pkgver=0.5.2 +pkgrel=1 pkgdesc="Parted GUI written in C++ using gtkmm as Graphical Toolkit" depends=('parted>=1.8.8' 'gtkmm>=2.18.2' 'freetype2' 'pango>=1.24.2-2' 'hal') makedepends=('perl-xml-parser' 'gnome-doc-utils') @@ -15,7 +15,7 @@ _F_sourceforge_prefix="$pkgname-" Finclude sourceforge url="http://gparted.sourceforge.net" source=($source gparted-kde.desktop) -sha1sums=('d1e483b1566b2c589cbdbe8a8aecf358a8f5d1f3' \ +sha1sums=('63170eb49473b7ac270a38adae34bd15ac30006a' \ '9fef48cb9b11c71c79a5b4ce8bf1296920a095c2') subpkgs=("$pkgname-minimal") From boobaa at frugalware.org Tue Mar 9 09:27:37 2010 From: boobaa at frugalware.org (CSÉCSY László) Date: Tue, 9 Mar 2010 09:27:37 +0100 (CET) Subject: [Frugalware-git] frugalware-current: drupal6-mollom-6.x_1.12-1-i686 version bump Message-ID: <20100309082737.134B01240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=924b4def54e4ce8e437e11fe705bf31fe2eaa6e3 commit 924b4def54e4ce8e437e11fe705bf31fe2eaa6e3 Author: CS??CSY L??szl?? Date: Tue Mar 9 09:27:29 2010 +0100 drupal6-mollom-6.x_1.12-1-i686 version bump diff --git a/source/network-extra/drupal6-mollom/FrugalBuild b/source/network-extra/drupal6-mollom/FrugalBuild index 3384fa0..583e724 100644 --- a/source/network-extra/drupal6-mollom/FrugalBuild +++ b/source/network-extra/drupal6-mollom/FrugalBuild @@ -3,8 +3,8 @@ _F_drupal_module=mollom _F_drupal_ver=6.x -pkgver=6.x_1.10 +pkgver=6.x_1.12 pkgrel=1 pkgdesc="Protects against comment and contact form spam in Drupal" Finclude drupal -sha1sums=('0b356850657b87ced00226f1a461565aa7b28ecd') +sha1sums=('60bf1b7d4c2a90b0c85febe420cd5402de1192a4') From boobaa at frugalware.org Tue Mar 9 09:28:42 2010 From: boobaa at frugalware.org (CSÉCSY László) Date: Tue, 9 Mar 2010 09:28:42 +0100 (CET) Subject: [Frugalware-git] frugalware-current: drupal6-pathauto-6.x_1.3-1-i686 version bump Message-ID: <20100309082842.5DA8F1240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=165b9787df91f18134025caeda085a769c9ae87e commit 165b9787df91f18134025caeda085a769c9ae87e Author: CS??CSY L??szl?? Date: Tue Mar 9 09:28:18 2010 +0100 drupal6-pathauto-6.x_1.3-1-i686 version bump diff --git a/source/network-extra/drupal6-pathauto/FrugalBuild b/source/network-extra/drupal6-pathauto/FrugalBuild index a04e1f0..393e151 100644 --- a/source/network-extra/drupal6-pathauto/FrugalBuild +++ b/source/network-extra/drupal6-pathauto/FrugalBuild @@ -3,9 +3,9 @@ _F_drupal_module=pathauto _F_drupal_ver=6.x -pkgver=6.x_1.2 +pkgver=6.x_1.3 pkgrel=1 pkgdesc="Automatically generates path aliases for various kinds of Drupal content" rodepends=('drupal6-token') Finclude drupal -sha1sums=('72582f5cb6d4c6141bb432101c2d634e78a1a0be') +sha1sums=('a63fe6b04f3cd895b65cda2c4d61da00cc04d18e') From bouleetbil at frogdev.info Tue Mar 9 09:36:14 2010 From: bouleetbil at frogdev.info (bouleetbil) Date: Tue, 9 Mar 2010 09:36:14 +0100 (CET) Subject: [Frugalware-git] frugalware-current: midori-0.2.4-1-x86_64 *version bump Message-ID: <20100309083614.23F441240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=17060d91ad544f8a8332a18d36d16e1ee8d51686 commit 17060d91ad544f8a8332a18d36d16e1ee8d51686 Author: bouleetbil Date: Tue Mar 9 09:36:11 2010 +0100 midori-0.2.4-1-x86_64 *version bump diff --git a/source/xapps-extra/midori/FrugalBuild b/source/xapps-extra/midori/FrugalBuild index ac6ad7f..49082a3 100644 --- a/source/xapps-extra/midori/FrugalBuild +++ b/source/xapps-extra/midori/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: bouleetbil pkgname=midori -pkgver=0.2.3 +pkgver=0.2.4 pkgrel=1 url="http://www.twotoasts.de/index.php?/pages/midori_summary.html" up2date="lynx --dump --source $url | Flasttarbz2" @@ -20,7 +20,7 @@ _F_desktop_icon="/usr/share/icons/hicolor/22x22/apps/midori.png" _F_desktop_categories="Network;WebBrowser;" options=('scriptlet') Finclude gnome-scriptlet -sha1sums=('44e2558681d9a31b1c1203064445a2a36ab42a91' \ +sha1sums=('41b11ff4a65256fc3fdcafb8151f60195d7f8845' \ '22cd3ef3c214770774b22e370fdb8a83bb5a7932' \ '0dade4dbb55953dc1fa10d21a7b8d8dd4c635fa7') Fconfopts="--prefix=$Fprefix" From boobaa at frugalware.org Tue Mar 9 09:44:29 2010 From: boobaa at frugalware.org (CSÉCSY László) Date: Tue, 9 Mar 2010 09:44:29 +0100 (CET) Subject: [Frugalware-git] frugalware-1.2: wordpress-2.9.2-1locris1-i686 secfix verbump, backport of bf6ef24 closes #4131 in -stable Message-ID: <20100309084429.2C2871240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-1.2.git;a=commitdiff;h=09ecc1af314b9f1892a026f47328eb336a0957f4 commit 09ecc1af314b9f1892a026f47328eb336a0957f4 Author: CS?CSY L?szl? Date: Tue Mar 9 09:44:00 2010 +0100 wordpress-2.9.2-1locris1-i686 secfix verbump, backport of bf6ef24 closes #4131 in -stable diff --git a/source/network-extra/wordpress/FrugalBuild b/source/network-extra/wordpress/FrugalBuild index 01b02ad..99b45fb 100644 --- a/source/network-extra/wordpress/FrugalBuild +++ b/source/network-extra/wordpress/FrugalBuild @@ -2,8 +2,8 @@ # Maintainer: CS?CSY L?szl? pkgname=wordpress -pkgver=2.9.1 -pkgrel=1 +pkgver=2.9.2 +pkgrel=1locris1 pkgdesc="a state-of-the-art semantic personal publishing platform" url="http://wordpress.org/" rodepends=('php>=4.2' 'mysql>=4.0') @@ -21,4 +21,4 @@ build() Fmv ../src/$pkgname /var/www/$pkgname } -sha1sums=('c5d8f2fd4d9f099f9f8de0d00cfa26b5a5f1401d') +sha1sums=('c4bc4fa6e4b1c631d372a930852873303708a881') From boobaa at frugalware.org Tue Mar 9 09:47:10 2010 From: boobaa at frugalware.org (CSÉCSY László) Date: Tue, 9 Mar 2010 09:47:10 +0100 (CET) Subject: [Frugalware-git] frugalware-1.2: drupal6-6.16-1locris1-i686 secfix verbump, backport of 05fcc67 closes #4133 in -stable Message-ID: <20100309084711.00A131240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-1.2.git;a=commitdiff;h=7a8f9fcdb40016caed38583d097551c3e836cde6 commit 7a8f9fcdb40016caed38583d097551c3e836cde6 Author: CS?CSY L?szl? Date: Tue Mar 9 09:46:20 2010 +0100 drupal6-6.16-1locris1-i686 secfix verbump, backport of 05fcc67 closes #4133 in -stable diff --git a/source/network-extra/drupal6/FrugalBuild b/source/network-extra/drupal6/FrugalBuild index 8f9ac02..99d11f8 100644 --- a/source/network-extra/drupal6/FrugalBuild +++ b/source/network-extra/drupal6/FrugalBuild @@ -2,8 +2,8 @@ # Maintainer: CS?CSY L?szl? pkgname=drupal6 -pkgver=6.15 -pkgrel=1 +pkgver=6.16 +pkgrel=1locris1 pkgdesc="An open source content management platform" url="http://drupal.org" rodepends=('apache' 'php') @@ -13,7 +13,7 @@ up2date="lynx -dump http://drupal.org/project/Drupal+project | grep -m1 'l-6[0-9 backup=(var/www/drupal6/sites/default/settings.php) source=(http://drupal.org/files/projects/drupal-$pkgver.tar.gz \ README.Frugalware) -sha1sums=('5be5ebf85c9ffa33e71c5a0f05d1308d3af19ab8' \ +sha1sums=('90db81b6f4b9b0514c9cdd1338f344492beb5477' \ '3e301be2f8a247c86b5f32e68773c9618322e7d7') options=('stick') From boobaa at frugalware.org Tue Mar 9 09:49:19 2010 From: boobaa at frugalware.org (CSÉCSY László) Date: Tue, 9 Mar 2010 09:49:19 +0100 (CET) Subject: [Frugalware-git] frugalware-1.2: drupal-i18n-5.x_2.6-1locris1-i686 secfix verbump, backport of 11df28f closes #4134 in -stable Message-ID: <20100309084919.A53EF1240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-1.2.git;a=commitdiff;h=e3c4a312a2525b5b587d1bab76e0364f7e81521a commit e3c4a312a2525b5b587d1bab76e0364f7e81521a Author: CS?CSY L?szl? Date: Tue Mar 9 09:48:51 2010 +0100 drupal-i18n-5.x_2.6-1locris1-i686 secfix verbump, backport of 11df28f closes #4134 in -stable diff --git a/source/network-extra/drupal-i18n/FrugalBuild b/source/network-extra/drupal-i18n/FrugalBuild index e667a72..532fd6d 100644 --- a/source/network-extra/drupal-i18n/FrugalBuild +++ b/source/network-extra/drupal-i18n/FrugalBuild @@ -2,8 +2,8 @@ # Maintainer: CS?CSY L?szl? _F_drupal_module=i18n -pkgver=5.x_2.5 -pkgrel=1 +pkgver=5.x_2.6 +pkgrel=1locris1 pkgdesc="A collection of modules to add multi-lingual capabilities to Drupal" Finclude drupal -sha1sums=('741e4c73e6c290ca245041a2033f443ccd99650b') +sha1sums=('780c496a8c0776e3001ad93974c682c5dd25440b') From boobaa at frugalware.org Tue Mar 9 09:51:45 2010 From: boobaa at frugalware.org (CSÉCSY László) Date: Tue, 9 Mar 2010 09:51:45 +0100 (CET) Subject: [Frugalware-git] frugalware-1.2: drupal6-i18n-6.x_1.3-1locris1-i686 secfix verbump, backport of 1860bbe closes #4135 in -stable Message-ID: <20100309085145.EF2751240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-1.2.git;a=commitdiff;h=0dd865b34f5b5cbe2ab792b120bc16552e3ddf69 commit 0dd865b34f5b5cbe2ab792b120bc16552e3ddf69 Author: CS?CSY L?szl? Date: Tue Mar 9 09:50:59 2010 +0100 drupal6-i18n-6.x_1.3-1locris1-i686 secfix verbump, backport of 1860bbe closes #4135 in -stable diff --git a/source/network-extra/drupal6-i18n/FrugalBuild b/source/network-extra/drupal6-i18n/FrugalBuild index 844379d..da07287 100644 --- a/source/network-extra/drupal6-i18n/FrugalBuild +++ b/source/network-extra/drupal6-i18n/FrugalBuild @@ -3,8 +3,8 @@ _F_drupal_module=i18n _F_drupal_ver=6.x -pkgver=6.x_1.2 -pkgrel=1 +pkgver=6.x_1.3 +pkgrel=1locris1 pkgdesc="Enables multilingual content in Drupal" Finclude drupal -sha1sums=('69d41ed75d3e6cd82386a96d125c472f9747954e') +sha1sums=('830f937fc590a7fa344a873531512a616ba02da1') From bouleetbil at frogdev.info Tue Mar 9 10:26:28 2010 From: bouleetbil at frogdev.info (bouleetbil) Date: Tue, 9 Mar 2010 10:26:28 +0100 (CET) Subject: [Frugalware-git] frugalware-current: redmine-0.9.3-1-x86_64 *version bump Message-ID: <20100309092628.9FFB91240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=b663852ac1dc1737a76e64988ba78222e1b79dbb commit b663852ac1dc1737a76e64988ba78222e1b79dbb Author: bouleetbil Date: Tue Mar 9 10:25:57 2010 +0100 redmine-0.9.3-1-x86_64 *version bump diff --git a/source/network-extra/redmine/FrugalBuild b/source/network-extra/redmine/FrugalBuild index c9ae62c..8fad93b 100644 --- a/source/network-extra/redmine/FrugalBuild +++ b/source/network-extra/redmine/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: bouleetbil pkgname=redmine -pkgver=0.9.0 +pkgver=0.9.3 pkgrel=1 pkgdesc="Redmine is a flexible project management web application written using Ruby on Rails framework." url="http://www.redmine.org/projects/redmine" @@ -10,16 +10,16 @@ rodepends=("rails" "rubygems") groups=('network-extra') archs=('i686' 'x86_64') up2date="Flasttar http://rubyforge.org/frs/?group_id=1850" -source=(http://rubyforge.org/frs/download.php/68515/$pkgname-$pkgver.tar.gz README.Frugalware) -sha1sums=('155e138f49292522231746a3806f6a62c018f6d2' \ +source=(http://rubyforge.org/frs/download.php/69451/$pkgname-$pkgver.zip README.Frugalware) +sha1sums=('22a2625abd641aad9d178f0c512b606f9707d1f1' \ '47a9d05bc22e9998f95335515c6ca1bfe6413c85') build() { Fmkdir /var/www/html - Ffile $pkgname-$pkgver.tar.gz /var/www/html + Ffile $pkgname-$pkgver.zip /var/www/html cd $Fdestdir/var/www/html - tar -xzf $pkgname-$pkgver.tar.gz || Fdie + Fextract $pkgname-$pkgver.zip || Fdie Fmv /var/www/html/$pkgname-$pkgver /var/www/html/$pkgname - Frm $pkgname-$pkgver.tar.gz + Frm /var/www/html/$pkgname-$pkgver.zip } From bouleetbil at frogdev.info Tue Mar 9 10:32:42 2010 From: bouleetbil at frogdev.info (bouleetbil) Date: Tue, 9 Mar 2010 10:32:42 +0100 (CET) Subject: [Frugalware-git] frugalware-current: lxde-settings-daemon *dead package already replaces Message-ID: <20100309093242.F37421240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=993fdabc5c77a366b33f28a563c73ad016dfd6eb commit 993fdabc5c77a366b33f28a563c73ad016dfd6eb Author: bouleetbil Date: Tue Mar 9 10:32:59 2010 +0100 lxde-settings-daemon *dead package already replaces diff --git a/source/xapps-extra/lxde-settings-daemon/FrugalBuild b/source/xapps-extra/lxde-settings-daemon/FrugalBuild deleted file mode 100644 index 0600d56..0000000 --- a/source/xapps-extra/lxde-settings-daemon/FrugalBuild +++ /dev/null @@ -1,21 +0,0 @@ -# Compiling Time: 0.01 SBU -# Maintainer: bouleetbil - -pkgname=lxde-settings-daemon -pkgver=0.4.1 -pkgrel=1 -pkgdesc="LXDE settings daemon" -depends=('lxde-common') -options=('scriptlet') -groups=('xapps-extra' 'lxde-desktop') -archs=('i686' 'x86_64' 'ppc') -_F_sourceforge_ext=".tar.bz2" -_F_sourceforge_prefix="LXDE settings daemon " -_F_sourceforge_dirname="lxde" -Finclude sourceforge -source=($source usethemefw.diff) -url="http://lxde.org/" -sha1sums=('e1e402804f52d62bffe798cab64b1676d18197c3' \ - '9530e2de482c3ec3cf81a0394f20fd2a8025f214') - -# optimization OK From bouleetbil at frogdev.info Tue Mar 9 10:36:57 2010 From: bouleetbil at frogdev.info (bouleetbil) Date: Tue, 9 Mar 2010 10:36:57 +0100 (CET) Subject: [Frugalware-git] frugalware-current: gnome-bluetooth *dead package *replaces by gnome-bluetooth Message-ID: <20100309093657.8990C1240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=afc82deb99d21d77f774d35245730fe256f50afd commit afc82deb99d21d77f774d35245730fe256f50afd Author: bouleetbil Date: Tue Mar 9 10:37:12 2010 +0100 gnome-bluetooth *dead package *replaces by gnome-bluetooth diff --git a/source/gnome-extra/bluez-gnome/FrugalBuild b/source/gnome-extra/bluez-gnome/FrugalBuild deleted file mode 100644 index 33b6299..0000000 --- a/source/gnome-extra/bluez-gnome/FrugalBuild +++ /dev/null @@ -1,40 +0,0 @@ -# Compiling Time: 0.56 SBU -# Maintainer: Priyank Gosalia - -pkgname=bluez-gnome -pkgver=0.28 -pkgrel=2 -pkgdesc="Bluetooth tools for GNOME" -url="http://www.bluez.org/" -depends=('dbus-glib>=0.76' 'openobex>=1.3-10' 'bluez-libs>=3.36' 'libnotify>=0.4.5-2' 'gconf>=2.26.2-2' 'gtk+2>=2.16.2-2') -rodepends=('bluez-utils>=3.36' 'obex-data-server>=0.3.4') -makedepends=('perl-xml-parser' 'intltool') -groups=('gnome-extra') -archs=('i686' 'x86_64') -up2date="lynx -dump http://www.bluez.org/download.html | grep $pkgname | Flasttar" -source=(http://bluez.sourceforge.net/download/$pkgname-$pkgver.tar.gz \ - $pkgname-0.7-categorize-menu-item.patch \ - $pkgname-fix_file_recieve_bug.patch) -sha1sums=('3678a691466e01ec4e8c639e6864d6de8164b26a' \ - 'ceebaca0a771d2de2544170bcc7cc9cd3e74e3f0' \ - '73048db20d03e17c2f7a31337e9ad59cb5547421') -_F_gnome_desktop=y -_F_gnome_iconcache=y -_F_gnome_mime=y -_F_gnome_schemas=('/etc/gconf/schemas/bluetooth-manager.schemas') -Finclude gnome-scriptlet - -build() { - Fcd - Fpatchall - Fmake - Fmakeinstall GCONF_DISABLE_SCHEMA_INSTALL=1 - Fexerel wizard/bluetooth-wizard /usr/bin/bluetooth-wizard - Fmkdir /usr/share/gnome - Fmv /etc/xdg/autostart /usr/share/gnome/ - Frm /etc/xdg - Frm /usr/share/icons/hicolor/icon-theme.cache - Fbuild_gnome_scriptlet -} - -# optimization OK diff --git a/source/gnome-extra/bluez-gnome/bluez-gnome-0.7-categorize-menu-item.patch b/source/gnome-extra/bluez-gnome/bluez-gnome-0.7-categorize-menu-item.patch deleted file mode 100644 index 9a9e485..0000000 --- a/source/gnome-extra/bluez-gnome/bluez-gnome-0.7-categorize-menu-item.patch +++ /dev/null @@ -1,10 +0,0 @@ -diff -urN bluez-gnome-0.7.orig/properties/bluetooth-properties.desktop.in bluez-gnome-0.7/properties/bluetooth-properties.desktop.in ---- bluez-gnome-0.7.orig/properties/bluetooth-properties.desktop.in 2007-05-26 16:05:34.000000000 +0100 -+++ bluez-gnome-0.7/properties/bluetooth-properties.desktop.in 2007-05-26 16:05:47.000000000 +0100 -@@ -6,5 +6,5 @@ - Exec=bluetooth-properties - Terminal=false - Type=Application --Categories=Settings; -+Categories=GNOME;GTK;Settings;HardwareSettings; - OnlyShowIn=GNOME; diff --git a/source/gnome-extra/bluez-gnome/bluez-gnome-fix_file_recieve_bug.patch b/source/gnome-extra/bluez-gnome/bluez-gnome-fix_file_recieve_bug.patch deleted file mode 100644 index 2aa21fa..0000000 --- a/source/gnome-extra/bluez-gnome/bluez-gnome-fix_file_recieve_bug.patch +++ /dev/null @@ -1,38 +0,0 @@ ---- bluez-gnome-0.25/applet/obex.c 2008-03-14 04:35:47.000000000 +0530 -+++ bluez-gnome-0.25.new/applet/obex.c 2008-05-08 20:35:23.000000000 +0530 -@@ -139,11 +139,17 @@ - - dir = g_get_user_special_dir(G_USER_DIRECTORY_DOWNLOAD); - -+ /* If the download directory is not set, use the user's Desktop dir -+ * so that the user can still receive files */ -+ if (dir == NULL) -+ dir = g_strdup_printf ("%s/Desktop", g_get_home_dir()); -+ - dbus_g_proxy_begin_call(opp_server, "Start", - start_opp_notify, NULL, NULL, - G_TYPE_STRING, dir, - G_TYPE_BOOLEAN, TRUE, - G_TYPE_BOOLEAN, TRUE, G_TYPE_INVALID); -+ g_free (dir); - } - - static void create_opp_server(DBusGProxy *manager) -@@ -206,11 +212,17 @@ - - dir = g_get_user_special_dir(G_USER_DIRECTORY_PUBLIC_SHARE); - -+ /* If the share directory is not set, use the user's home directory -+ * so that this service can work */ -+ if (dir == NULL) -+ dir = g_strdup_printf (g_get_home_dir()); -+ - dbus_g_proxy_begin_call(ftp_server, "Start", - start_ftp_notify, NULL, NULL, - G_TYPE_STRING, dir, - G_TYPE_BOOLEAN, FALSE, - G_TYPE_BOOLEAN, TRUE, G_TYPE_INVALID); -+ g_free (dir); - } - - static void create_ftp_server(DBusGProxy *manager) From bouleetbil at frogdev.info Tue Mar 9 10:38:42 2010 From: bouleetbil at frogdev.info (bouleetbil) Date: Tue, 9 Mar 2010 10:38:42 +0100 (CET) Subject: [Frugalware-git] frugalware-current: lxde-settings-daemon *forgot to delete useless patch Message-ID: <20100309093842.135E11240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=018ccfc47a3e8af61fe28298edd4fa24576a99ac commit 018ccfc47a3e8af61fe28298edd4fa24576a99ac Author: bouleetbil Date: Tue Mar 9 10:38:58 2010 +0100 lxde-settings-daemon *forgot to delete useless patch diff --git a/source/xapps-extra/lxde-settings-daemon/usethemefw.diff b/source/xapps-extra/lxde-settings-daemon/usethemefw.diff deleted file mode 100644 index 198611e..0000000 --- a/source/xapps-extra/lxde-settings-daemon/usethemefw.diff +++ /dev/null @@ -1,11 +0,0 @@ ---- lxde-settings-daemon-0.4/config 2009-04-30 22:33:58.000000000 +0200 -+++ lxde-settings-daemon-0.4/config.new 2009-04-30 22:34:05.000000000 +0200 -@@ -4,7 +4,7 @@ - #iNet/DndDragThreshold - #iNet/CursorBlink - #iNet/CursorBlinkTime --sNet/ThemeName=Clearlooks -+sNet/ThemeName=Frugalware - sNet/IconThemeName=nuoveXT2 - sGtk/FontName=Sans 10 - #iGtk/IconSizes From bouleetbil at frogdev.info Tue Mar 9 10:43:45 2010 From: bouleetbil at frogdev.info (bouleetbil) Date: Tue, 9 Mar 2010 10:43:45 +0100 (CET) Subject: [Frugalware-git] frugalware-current: xf86-video-vmware-11.0.0-1-x86_64 *version bump Message-ID: <20100309094345.EEA201240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=534453a8cc1c8539f876dd36fb32283a794db3ce commit 534453a8cc1c8539f876dd36fb32283a794db3ce Author: bouleetbil Date: Tue Mar 9 10:44:07 2010 +0100 xf86-video-vmware-11.0.0-1-x86_64 *version bump diff --git a/source/x11/xf86-video-vmware/FrugalBuild b/source/x11/xf86-video-vmware/FrugalBuild index e637961..2f70f5d 100644 --- a/source/x11/xf86-video-vmware/FrugalBuild +++ b/source/x11/xf86-video-vmware/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: Christian Hamar alias krix pkgname=xf86-video-vmware -pkgver=10.16.9 +pkgver=11.0.0 pkgrel=1 pkgdesc="X.Org video driver for vmware cards" url="http://xorg.freedesktop.org" @@ -11,6 +11,6 @@ archs=('i686' 'x86_64') depends=('xorg-server>=1.7.4') makedepends=('randrproto>=1.3.1' 'renderproto' 'xineramaproto') Finclude xorg -sha1sums=('4e0e5d193f3e83dce46a7d39d52257629e51f4d3') +sha1sums=('ca3b8ed295355302a110cd9acb64ddd868cbaf2a') # optimization OK From bouleetbil at frogdev.info Tue Mar 9 11:12:08 2010 From: bouleetbil at frogdev.info (bouleetbil) Date: Tue, 9 Mar 2010 11:12:08 +0100 (CET) Subject: [Frugalware-git] gnometesting: glib2-2.23.5-1-x86_64 *version bump *disable doc for the devel version Message-ID: <20100309101208.801611240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=d70faa7815682f9da57eef44597c5af70f4063b7 commit d70faa7815682f9da57eef44597c5af70f4063b7 Author: bouleetbil Date: Tue Mar 9 11:10:37 2010 +0100 glib2-2.23.5-1-x86_64 *version bump *disable doc for the devel version diff --git a/source/base/glib2/FrugalBuild b/source/base/glib2/FrugalBuild index 6164846..a687eb5 100644 --- a/source/base/glib2/FrugalBuild +++ b/source/base/glib2/FrugalBuild @@ -1,10 +1,10 @@ # Compiling time: 3.33 SBU # Maintainer: bouleetbil -USE_DOC=${USE_DOC:-"y"} +USE_DOC=${USE_DOC:-"n"} pkgname=glib2 -pkgver=2.23.4 +pkgver=2.23.5 pkgrel=1 pkgdesc="Common C routines used by GTK+2 and other libraries" url="http://www.gtk.org/" @@ -18,7 +18,7 @@ _F_gnome_devel="n" Finclude gnome _F_cd_path="glib-$pkgver" ## DON'T remove nor change the debug level or it breaks again .. -sha1sums=('a2ba4fac49acc09cca457b20feec178c02075cf1') +sha1sums=('b27ece611e52db546a49819b48d5a4a0ea4d6cb2') if Fuse $USE_DOC; then makedepends=("${makedepends[@]}" 'gtk-doc>=1.11') Fconfopts="$Fconfopts --enable-gtk-doc" From bouleetbil at frogdev.info Tue Mar 9 11:52:59 2010 From: bouleetbil at frogdev.info (bouleetbil) Date: Tue, 9 Mar 2010 11:52:59 +0100 (CET) Subject: [Frugalware-git] gnometesting: vinagre-2.29.91-1-x86_64 *version bump Message-ID: <20100309105259.55D931240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=1f1532dbe72638ab2da2e84c71a448c10151c3e7 commit 1f1532dbe72638ab2da2e84c71a448c10151c3e7 Author: bouleetbil Date: Tue Mar 9 11:52:52 2010 +0100 vinagre-2.29.91-1-x86_64 *version bump diff --git a/source/gnome-extra/vinagre/FrugalBuild b/source/gnome-extra/vinagre/FrugalBuild index e446e1b..455978a 100644 --- a/source/gnome-extra/vinagre/FrugalBuild +++ b/source/gnome-extra/vinagre/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: bouleetbil pkgname=vinagre -pkgver=2.28.1 +pkgver=2.29.91 pkgrel=1 pkgdesc="VNC Client for the GNOME Desktop" depends=('libglade' 'gtk-vnc' 'gnutls' 'libgcrypt' 'libavahi-ui' 'atk' \ @@ -17,6 +17,6 @@ _F_gnome_iconcache="y" Finclude gnome gnome-scriptlet groups=('gnome-extra') archs=('i686' 'ppc' 'x86_64') -sha1sums=('0ef0f876559cf41e70b25e9fdbdd291271822c68') +sha1sums=('8973396b5dda138eca149d6b05c158125509a45c') # optimization OK From vmiklos at frugalware.org Tue Mar 9 13:28:00 2010 From: vmiklos at frugalware.org (Miklos Vajna) Date: Tue, 9 Mar 2010 13:28:00 +0100 (CET) Subject: [Frugalware-git] frugalware-current: erlang-13B04-1-i686 Message-ID: <20100309122800.E26DC1240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=accabd63038c8396f04af07271dc49bd63ac1817 commit accabd63038c8396f04af07271dc49bd63ac1817 Author: Miklos Vajna Date: Tue Mar 9 13:13:32 2010 +0100 erlang-13B04-1-i686 - version bump diff --git a/source/devel-extra/erlang/FrugalBuild b/source/devel-extra/erlang/FrugalBuild index 45bce96..fa9251a 100644 --- a/source/devel-extra/erlang/FrugalBuild +++ b/source/devel-extra/erlang/FrugalBuild @@ -10,10 +10,10 @@ else fi pkgname=erlang -pkgver=13B03 +pkgver=13B04 ertsver=5.7.2 interfacever=3.6.2 -pkgrel=3 +pkgrel=1 pkgdesc="A programming language designed at the Ericsson Computer Science Laboratory." url="http://www.erlang.org/" depends=('openssl' 'ncurses') @@ -27,9 +27,9 @@ up2date="Flasttar http://www.erlang.org/download.html" source=(http://www.erlang.org/download/otp_src_R${pkgver/_/-}.tar.gz \ http://www.erlang.org/download/otp_doc_html_R${pkgver/_/-}.tar.gz \ http://www.erlang.org/download/otp_doc_man_R${pkgver/_/-}.tar.gz) -sha1sums=('161f22d498da244d4b32181a78b04d97523857d1' \ - '3a578b3d83fe7bb7abd74823d65548e17cd228e6' \ - '2241651db8c4bce02fc5d34d63c983a3d55d1011') +sha1sums=('fe785833a8029cbb3aee188bdb417f4da33fbd06' \ + 'dc0e68cb1dd6f45cbd5ea792260b16f91eaa0e2f' \ + '660e52302d270138f8e9f2f2b6a562026998012c') subpkgs=('wxerlang') subdescs=('Erlang bindings for wxWidgets API.') @@ -41,8 +41,8 @@ subarchs=('i686 x86_64 ppc') if Fuse $USE_ODBC; then subpkgs=("${subpkgs[@]}" 'erlang-odbc') subdescs=("${subdescs[@]}" 'The Erlang ODBC application.') - subdepends=("${subdepends[@]}" "$pkgname=$pkgver") - subrodepends=("${subrodepends[@]}" '') + subdepends=("${subdepends[@]}" '') + subrodepends=("${subrodepends[@]}" "$pkgname=$pkgver") subgroups=("${subgroups[@]}" 'devel-extra') subarchs=("${subarchs[@]}" "i686 x86_64 ppc") fi From vmiklos at frugalware.org Tue Mar 9 13:28:00 2010 From: vmiklos at frugalware.org (Miklos Vajna) Date: Tue, 9 Mar 2010 13:28:00 +0100 (CET) Subject: [Frugalware-git] frugalware-current: mercurial-1.5-1-i686 Message-ID: <20100309122800.F407F1240003@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=bf2ec9aa9ab530d05b94159f868d3c8ed5c047ba commit bf2ec9aa9ab530d05b94159f868d3c8ed5c047ba Author: Miklos Vajna Date: Tue Mar 9 13:27:41 2010 +0100 mercurial-1.5-1-i686 - version bump diff --git a/source/devel-extra/mercurial/FrugalBuild b/source/devel-extra/mercurial/FrugalBuild index c8a300d..71ca0a8 100644 --- a/source/devel-extra/mercurial/FrugalBuild +++ b/source/devel-extra/mercurial/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: Miklos Vajna pkgname=mercurial -pkgver=1.4.3 +pkgver=1.5 pkgrel=1 pkgdesc="A fast, lightweight source control management system." url="http://mercurial.selenic.com/" @@ -13,7 +13,7 @@ groups=('devel-extra') archs=('i686' 'x86_64') up2date="Flasttar $url/release/" source=($url/release/$pkgname-$pkgver.tar.gz) -sha1sums=('26ed2726b4a8886bbc5a1b3e0823ad252a13b991') +sha1sums=('f4e5ff53be661a8bd1422c70ae76337aafbffa56') subpkgs=('mercurial-hgk') subdescs=('Graphical repository and history browser based on gitk.') From vmiklos at frugalware.org Tue Mar 9 13:36:18 2010 From: vmiklos at frugalware.org (Miklos Vajna) Date: Tue, 9 Mar 2010 13:36:18 +0100 (CET) Subject: [Frugalware-git] homepage-ng: 1.2 HU remove hidden bit which was there by mistake Message-ID: <20100309123618.B72041240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=homepage-ng.git;a=commitdiff;h=1fd527e9c305490ff3f4ab4c3265f9604e4c5636 commit 1fd527e9c305490ff3f4ab4c3265f9604e4c5636 Author: Miklos Vajna Date: Tue Mar 9 13:36:12 2010 +0100 1.2 HU remove hidden bit which was there by mistake diff --git a/frugalware/xml/news_hu.xml b/frugalware/xml/news_hu.xml index 6c35730..0c8e0af 100644 --- a/frugalware/xml/news_hu.xml +++ b/frugalware/xml/news_hu.xml @@ -21,7 +21,7 @@ Megjelent a Frugalware 1.2 (Locris) Mon, 08 Mar 2010 08:51:34 +0100 Miklos Vajna - 1 + 0 Megjelent a Frugalware 1.2 (Locris)!
A Frugalware Fejleszt??i Csapat ??r??mmel jelenti be a Frugalware 1.2, tizenkettedik stabil kiad??sunk azonnali el??rhet??s??g??t.
From vmiklos at frugalware.org Tue Mar 9 13:50:28 2010 From: vmiklos at frugalware.org (Miklos Vajna) Date: Tue, 9 Mar 2010 13:50:28 +0100 (CET) Subject: [Frugalware-git] frugalware-current: haskell-dataenc-0.13.0.2-1-i686 Message-ID: <20100309125028.04F3A1240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=b976c6ebcff4691d5861aee72243965a6e142eba commit b976c6ebcff4691d5861aee72243965a6e142eba Author: Miklos Vajna Date: Tue Mar 9 13:50:13 2010 +0100 haskell-dataenc-0.13.0.2-1-i686 - new package diff --git a/source/devel-extra/haskell-dataenc/FrugalBuild b/source/devel-extra/haskell-dataenc/FrugalBuild new file mode 100644 index 0000000..007307b --- /dev/null +++ b/source/devel-extra/haskell-dataenc/FrugalBuild @@ -0,0 +1,14 @@ +# Compiling Time: 0.04 SBU +# Maintainer: jercel +# Contributor: Miklos Vajna + +pkgname=haskell-dataenc +pkgver=0.13.0.2 +pkgrel=1 +pkgdesc="haskell-dataenc" +archs=('i686' 'x86_64') +depends=('ghc>=6.10.1') +groups=('devel-extra') +sha1sums=('6a737797973441da9150d34ca91707be3c0f4570') +_F_haskell_setup="Setup.hs" +Finclude haskell From vmiklos at frugalware.org Tue Mar 9 13:58:30 2010 From: vmiklos at frugalware.org (Miklos Vajna) Date: Tue, 9 Mar 2010 13:58:30 +0100 (CET) Subject: [Frugalware-git] frugalware-current: haskell-mmap-0.4.1-2-i686 Message-ID: <20100309125830.DD03B1240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=f03cc78baf2c9aaa67962221363e7ab5b81d067a commit f03cc78baf2c9aaa67962221363e7ab5b81d067a Author: Miklos Vajna Date: Tue Mar 9 13:56:59 2010 +0100 haskell-mmap-0.4.1-2-i686 - revert back to the 0.4.x branch, haskell-hashed-storage requires that and no other package uses this pkg diff --git a/source/devel-extra/darcs/FrugalBuild b/source/devel-extra/darcs/FrugalBuild index 02d85f9..c07a7a4 100644 --- a/source/devel-extra/darcs/FrugalBuild +++ b/source/devel-extra/darcs/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: Miklos Vajna pkgname=darcs -pkgver=2.3.1 +pkgver=2.4 pkgrel=1 pkgdesc="David's Advanced Revision Control System" depends=('gmp' 'curl>=7.19.0' 'readline') @@ -11,5 +11,5 @@ archs=('i686' 'x86_64') makedepends=('haskell-hashed-storage' 'haskell-haskeline' 'latex2html') Finclude haskell source=($source README.Frugalware) -sha1sums=('ad4ce1b7ee88b0509da93af4114a6126cc6f6560' \ +sha1sums=('c33e0e5ba9f4a179beba4ed047f5d56dff4a44e9' \ '6f6443a7530355f0f5cc0524f87a7ca46c6992ca') diff --git a/source/devel-extra/haskell-hashed-storage/FrugalBuild b/source/devel-extra/haskell-hashed-storage/FrugalBuild index 579fcdb..b3fd33f 100644 --- a/source/devel-extra/haskell-hashed-storage/FrugalBuild +++ b/source/devel-extra/haskell-hashed-storage/FrugalBuild @@ -3,12 +3,12 @@ # Contributor: Miklos Vajna pkgname=haskell-hashed-storage -pkgver=0.3.8 +pkgver=0.4.7 pkgrel=1 pkgdesc="Support code for reading and manipulating hashed file storage." archs=('i686' 'x86_64') -depends=('haskell-extensible-exceptions' 'haskell-mmap' 'haskell-zlib') +depends=('haskell-extensible-exceptions' 'haskell-mmap' 'haskell-zlib' 'haskell-dataenc' 'haskell-binary') groups=('devel-extra') -sha1sums=('29a1835653d434efee526b72e842f29d66c4b0e5') +sha1sums=('dc732b95ea3f454d870544012093fd203dd214fd') _F_haskell_setup="Setup.hs" Finclude haskell diff --git a/source/devel-extra/haskell-mmap/FrugalBuild b/source/devel-extra/haskell-mmap/FrugalBuild index 63eab71..adb8acc 100644 --- a/source/devel-extra/haskell-mmap/FrugalBuild +++ b/source/devel-extra/haskell-mmap/FrugalBuild @@ -3,12 +3,12 @@ # Contributor: Miklos Vajna pkgname=haskell-mmap -pkgver=0.5.4 -pkgrel=1 +pkgver=0.4.1 +pkgrel=2 pkgdesc="Provides a wrapper to mmap(2)." archs=('i686' 'x86_64') depends=('ghc>=6.10.1') groups=('devel-extra') -sha1sums=('2180a65eb6a438d1b1c2d6c179dffe0986dda94e') +sha1sums=('5bfe85d60fea89e85c797687fd08493305563dbe') _F_haskell_setup="Setup.hs" Finclude haskell From russelldickenson at gmail.com Tue Mar 9 14:01:19 2010 From: russelldickenson at gmail.com (Russell Dickenson (phayz)) Date: Tue, 9 Mar 2010 14:01:19 +0100 (CET) Subject: [Frugalware-git] homepage-ng: Newsletter issue 59 Message-ID: <20100309130119.BC3671240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=homepage-ng.git;a=commitdiff;h=9143f457f1491bf12fc1cb62f295fe8cfb47c7f0 commit 9143f457f1491bf12fc1cb62f295fe8cfb47c7f0 Author: Russell Dickenson (phayz) Date: Tue Mar 9 23:09:34 2010 +1000 Newsletter issue 59 * initial release new file: issue59.html modified: ../xml/news.xml diff --git a/frugalware/weeklynews/issue59.html b/frugalware/weeklynews/issue59.html new file mode 100644 index 0000000..92953fa --- /dev/null +++ b/frugalware/weeklynews/issue59.html @@ -0,0 +1,427 @@ +

Frugalware Linux Newsletter - Issue 59

+ +

...to inform...to educate...to entertain

+ +

"An SQL query goes into a bar, walks up to two tables and asks, "Can I join + you?""

+ +

Welcome

+ +

The newsletter's aim is to keep you up to date with what's happened + recently in the world of the Linux distribution 'Frugalware'.

+ +

Features of this issue include:

+ +
    +
  • Jump for Frugalware
  • + +
  • Frugalware's developers are people too - Pingax
  • + +
  • FLOSS developers are people too - Marc Kerbiquet
  • + +
  • Tips and tricks - Search and replace text in multiple files
  • +
+ +

Events

+ +

Here's a selection of events which have occurred since the previous + newsletter:

+ +

Locris is here!

+ +

On 8 March 2010, Miklos Vajna + announced the release of Frugalware 1.2 - code-name "Locris". It has been + a great 6 months since the previous release, with several major improvements. + Everyone who contributed to this release - the developers, artists and + translators - can be very proud of the results of their hard work. Thanks also + to everyone who took the time to report bugs they found, because 1.2 is a + better release for your effort.

+ +

Icons added to the newsletter

+ +

Icons for each main section of the newsletter were recently added to make + it look better. This is something I have been wanting to do for several + months, but never quite managed to get done. Soon after I added a task for + this to the Frugalware Bug Tracking System (BTS), developer Devil505 added + them. Since then I have replaced one of the icons and made some formatting + adjustments. I believe the newsletter looks better with these icons added, + but I would like to hear others' opinions. Thanks to Devil505 for his work in + adding the icons, without which it may never have been done. :)

+ +

Jump for Frugalware

+ +

To celebrate the release of Frugalware 1.2, the entire team has decided to + make a skydive together. During the dive they will maneuver themselves into + position to spell out the word "Frugalware". Practice has gone well so far, + although this has only been in an airport hanger. WebEagle has been given the + role of jump master, since he's the only team member with skydiving + experience. If the jump goes well the team will have celebrated in style. If + the jump doesn't go well then 1.2 will be the last Frugalware release. Keep + your fingers crossed! :P

+ + +

Frugalware's developers are people + too

+ +

This is the latest in the ongoing series of interviews with Frugalware's + developers. This issue's interview is with Pingax, who is a very new member of + the team. Please read on...

+ +
+
What's your name?
+ +
+

My name is Anthony but I prefer people call me Tony.

+
+ +
What's your IRC nickname?
+ +
+

You can find me on IRC with the nickname Pingax.

+
+ +
In what country do you live?
+ +
+

I live in France (in Britain, at the west). I've always lived in this + country.

+
+ +
In what country were you born?
+ +
+

France.

+
+ +
What do you like the most about where you live (the + country and/or town/city)?
+ +
+

I'm near the sea, which is something I really like.

+
+ +
What do you do for the Frugalware + project?
+ +
+

For the Frugalware Project, I started to contribute by packaging + software (actually only one : dotclear). I'm also a moderator on the + French Frugalware community's board. I also translate the project (using + Pootle). +

+
+ +
What motivates you to work on Frugalware?
+ +
+

The fact that Frugalware is the first distribution which gives me + pleasure in learning exactly how a Linux system works. I hope this story + will live a long, long time :)

+
+ +
What do you do when you're not working on Frugalware? +
+ +
+

When I'm not working on Frugalware, I'm coding my own blog-script (PHP + & MySQL) and learning other languages (Python, C/C++).

+
+ +
What's the view from your front door?
+ +
+

For the last question, I've no photo. I've only Internet access at work + for the moment. But I can say the view in front of my door is the door of + the neighbours ;)

+
+
+ + +

FLOSS developers are people + too

+ +

Without developers, we wouldn't have the Linux kernel and all the software + that we run on the platform. What motivates FLOSS developers? Why does anyone + choose to spend their time writing software when they don't get paid to do + so? What do developers do when they're not writing software? These questions + and more are the inspiration behind this new section of the newsletter. Many + thanks to all the developers who have agreed to this interview.

+ +

Interviews in the next few issues will feature:

+ +
    +
  • David Siegel - Gnome Do developer;
  • + +
  • Jesse van den Kieboom - gedit developer.
  • +
+ +

This issue, we have an interview with Marc Kerbiquet, developer of Code + Browser.

+ +
+
What's your name?
+ +
+

Marc Kerbiquet.

+
+ +
What FLOSS projects are you involved in?
+ +
+

Mainly Code Browser, a folding text editor. I've also published an XML + parser in assembly and a lightweight OpenDocument viewer.

+
+ +
Why did you develop your own programming + language?
+ +
+

Because I like to design programming languages. There is a lot of + stuff to experiment with in this field. The language I used to develop + Code Browser is just one among a lot of other experiments.

+
+ +
What led to you being a FLOSS + developer/contributor?
+ +
+

I've written a text editor with a rather unique folding system. I did + it for myself but I thought that it would be also useful to other people + fed up of long flat text files.

+
+ +
What do you like about being a FLOSS + developer/contributor?
+ +
+

I like the feedback I receive from users, it is always interesting to + know what they like or what they would like in the application. It can + influence the direction of the development and it really motivates me to + maintain and improve my applications.

+ +

I also like to be my own boss: no deadline, no feature imposed by + consumers or by a marketing department.

+
+ +
What don't you like about being a FLOSS + developer/contributor?
+ +
+

Nothing.

+
+ +
What do you do outside the FLOSS world?
+ +
+

Work on non-free software ;-)

+
+ +
What operating system(s) do you use and why?
+ +
+

Windows XP and Linux. Windows XP is fine when you can manage security + issues.

+
+ +
If people are interested in helping your project(s), how might + they do this?
+ +
+

They can send me suggestions and bug reports by email. Any help is + welcome.

+
+
+ + +

New Packages

+ +

In this new section of the newsletter I'll highlight some new packages + which have been added since the previous issue.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Package's NameDescriptionMaintainer
simple-scan-0.9.0-1Simple scanning utility (aimed at the GNOME desktop).Devil505
openshot-1.0.0-1An open-source, non-linear video editor for Linux based on the MLT + framework.Devil505
iotop-0.4-1Program with a top-like UI used to show the I/O associated with each + process.Miklos Vajna
+ + +

Tips and tricks

+ +

Disclaimer - Be aware that the hints & tips provided here have + NOT been tested and so come with no warranty.

+ +

Search and replace text in multiple files

+ +

A few weeks ago I found that I had made an error in most newsletter issues. + I had forgotten a word from the same sentence in every issue that had + the problem, so I needed to do a search and replace. Thanks to sed - the + stream editor - I was able to fix these errors very quickly.

+ +

Before I explain how I fixed my errors, here's a description from sed's own + man page: "Sed is a stream editor. A stream editor is used to perform basic + text transformations on an input stream (a file or input from a pipeline)." + sed is powerful as a text transformation tool because of its support for + regular expressions. It's a CLI tool and is very useful when you want to + perform the same text transformation often, or as in my case, the same text + transformation against many files at once. Like many CLI tools, it does one + job and does it very well. When it is can be combined with other CLI tools, + it can be even more powerful. Real-life examples of sed's use are + FrugalBuild files, where it is used most often to manipulate URLs.

+ +

To fix my errors, I gave the following command in the directory that + contained the newsletter issues:

+ +
sed -i 's/wrong_text/right_text/g' *.html
+ +

This command will substitute ("s") all instances ("g") of + "wrong_text" with "right_text" in every file that matches the file pattern + "*.html".

+ +

This section relies on your contributions! If you have some tips and + tricks that you would like to be shown in the newsletter, please + post them on the forums.

+ + +

Focus On Package(s)

+ +

K3B

+

K3B is a KDE-oriented desktop application for + burning CD/DVD/Blu-ray media. Although it is aimed at the KDE desktop + environment, it has been used by many GNOME users because of its features and + stability. When its developer - Sebastian Trueg - began the project in 1999 he + was unhappy with existing applications. K3B is the result of many years' hard + work and is a well-respected application in the FLOSS world. Its features + include creating CDs and DVDs, also ripping content from existing CDs and + DVDs. + + +

Bug fixes

+ +

The following table gives you a overview of activity on bugs and feature + requests as at 9 March 2010. In each cell of the table is a link to a detailed + list of the relevant bugs or feature requests.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
ActivityBugsFeature
+ Requests
Open + 143 + 195
Opened since the previous newsletter + 5 + 4
Closed since the previous newsletter + 27 + 2
+ + +

Security announcements

+ +

Remember - According to the normal support arrangements for + Frugalware, the release of 1.2 ("Locris") means that no further security or + bug fixes will be released for Frugalware 1.1 ("Getorin") or earlier.

+ +

Here is a list of security issues which have been + discovered and fixed in the 1.2 release since the previous newsletter.

+ + + +
FSAPackageFSA DescriptionUpgrade To
FSA637xarBraden Thomas from Apple has discovered a signature verification bypass issue in xarxar-1.5.2-2locris1
+ + +

About the newsletter

+ +

Author

+ +

The Frugalware newsletter is written and edited by Russell Dickenson (AKA + phayz). Credit for the Frugalware distribution goes to the development + team.

+ +

Translations

+ +

The newsletter is currently translated into French and Danish by their respective communities as + soon as possible. Please be patient as it can take some time to translate + each issue. Thanks to all those involved in providing and hosting these + translations.

+ +

Release

+ +

To allow time for review and corrections, each newsletter is written ahead + of its release date. Therefore it may not mention events which occurred in + the few days before its release - e.g. security fixes. To be sure that you've + got the very latest information on these topics, go to the appropriate page + of the Frugalware web site.

+ +

Feedback

+ +

If you have feedback about the Frugalware newsletter - whether good or bad + - please provide it via the forums. Your feedback is valuable because we want + the newsletter to meet the needs of Frugalware's users.

+ + diff --git a/frugalware/xml/news.xml b/frugalware/xml/news.xml index 62d55e0..7ebc7e1 100644 --- a/frugalware/xml/news.xml +++ b/frugalware/xml/news.xml @@ -22,6 +22,25 @@ Example: Mon, 07 Aug 2006 12:34:56 -0600 --> + 164 + Frugalware Newsletter Issue 59 + Tue, 09 Mar 2010 23:06:27 +1000 + phayz + 0 + + Features of this issue include: +
    +
  • Jump for Frugalware
  • +
  • Frugalware's developers are people too - Pingax
  • +
  • FLOSS developers are people too - Marc Kerbiquet
  • +
  • Tips and tricks - Search and replace text in multiple files
  • +
+ You can read it here. We hope you like it! + ]]> +
+
+ 163 Frugalware 1.2 (Locris) released Mon, 08 Mar 2010 08:51:34 +0100 From russelldickenson at gmail.com Tue Mar 9 14:04:44 2010 From: russelldickenson at gmail.com (Russell Dickenson (phayz)) Date: Tue, 9 Mar 2010 14:04:44 +0100 (CET) Subject: [Frugalware-git] homepage-ng: Newsletter issue 59 Message-ID: <20100309130444.5659C1240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=homepage-ng.git;a=commitdiff;h=0e60173a3915f2b99ce279c86e735a36b61f69bc commit 0e60173a3915f2b99ce279c86e735a36b61f69bc Author: Russell Dickenson (phayz) Date: Tue Mar 9 23:13:23 2010 +1000 Newsletter issue 59 * fixed URL for newsletter's icons modified: issue59.html diff --git a/frugalware/weeklynews/issue59.html b/frugalware/weeklynews/issue59.html index 92953fa..85a4c9d 100644 --- a/frugalware/weeklynews/issue59.html +++ b/frugalware/weeklynews/issue59.html @@ -22,7 +22,7 @@
  • Tips and tricks - Search and replace text in multiple files
  • -

    Events

    +

    Events

    Here's a selection of events which have occurred since the previous newsletter:

    @@ -60,7 +60,7 @@ your fingers crossed! :P

    -

    Frugalware's developers are people +

    Frugalware's developers are people too

    This is the latest in the ongoing series of interviews with Frugalware's @@ -137,7 +137,7 @@ -

    FLOSS developers are people +

    FLOSS developers are people too

    Without developers, we wouldn't have the Linux kernel and all the software @@ -233,7 +233,7 @@ -

    New Packages

    +

    New Packages

    In this new section of the newsletter I'll highlight some new packages which have been added since the previous issue.

    @@ -275,7 +275,7 @@ -

    Tips and tricks

    +

    Tips and tricks

    Disclaimer - Be aware that the hints & tips provided here have NOT been tested and so come with no warranty.

    @@ -312,7 +312,7 @@ post them on the forums.

    -

    Focus On Package(s)

    +

    Focus On Package(s)

    K3B

    K3B is a KDE-oriented desktop application for @@ -325,7 +325,7 @@ DVDs. -

    Bug fixes

    +

    Bug fixes

    The following table gives you a overview of activity on bugs and feature requests as at 9 March 2010. In each cell of the table is a link to a detailed @@ -379,7 +379,7 @@ -

    Security announcements

    +

    Security announcements

    Remember - According to the normal support arrangements for Frugalware, the release of 1.2 ("Locris") means that no further security or @@ -393,7 +393,7 @@ -

    About the newsletter

    +

    About the newsletter

    Author

    From bouleetbil at frogdev.info Tue Mar 9 14:10:59 2010 From: bouleetbil at frogdev.info (bouleetbil) Date: Tue, 9 Mar 2010 14:10:59 +0100 (CET) Subject: [Frugalware-git] gnometesting: gdm-2.29.92-1-x86_64 *version bump *drop useless gksu depends Message-ID: <20100309131059.B6A3A1240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=38f47db2a4384465ef093b47723e5e2291386583 commit 38f47db2a4384465ef093b47723e5e2291386583 Author: bouleetbil Date: Tue Mar 9 14:10:13 2010 +0100 gdm-2.29.92-1-x86_64 *version bump *drop useless gksu depends diff --git a/source/gnome/gdm/FrugalBuild b/source/gnome/gdm/FrugalBuild index 2a3b0a9..7389dc6 100644 --- a/source/gnome/gdm/FrugalBuild +++ b/source/gnome/gdm/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: bouleetbil pkgname=gdm -pkgver=2.29.6 +pkgver=2.29.92 pkgrel=1 pkgdesc="GNOME Display Manager" url="http://www.gnome.org/" @@ -11,14 +11,14 @@ depends=('zenity>=2.28.0' 'libgnomeui>=2.24.1-2' 'libxi' 'fontconfig' 'libxrandr 'librsvg>=2.26.0' 'gnome-keyring' 'consolekit-x11>=0.3.0-3' 'libcanberra-gtk' \ 'libxinerama' 'libxcursor' 'libxevie' 'xorg-server>=1.6.1' 'gnome-applets' \ 'pam') -rodepends=('xsm' 'sessreg' 'gksu' 'xmessage') +rodepends=('xsm' 'sessreg' 'xmessage') makedepends=('intltool' 'gnome-doc-utils') groups=('gnome' 'gnome-minimal') archs=('i686' 'x86_64' 'ppc') Finclude gnome source=(${source[@]} \ polkit-gnome-authentication-agent-1.desktop) -sha1sums=('4805731e52422b4a52552b75b9b912281316f8e4' \ +sha1sums=('002ea77c7db8833e817916bb28f1db29f89812a5' \ '93d1f9a7d068dd8e70c930abea9acf5b770a3485') conflicts=('fast-user-switch-applet') From vmiklos at frugalware.org Tue Mar 9 14:31:41 2010 From: vmiklos at frugalware.org (Miklos Vajna) Date: Tue, 9 Mar 2010 14:31:41 +0100 (CET) Subject: [Frugalware-git] frugalware-current: haskell-terminfo-0.3.1.1-2-i686 Message-ID: <20100309133141.9DEDC1240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=2a7c836a44b51d059d07285668f3bc47a78812a7 commit 2a7c836a44b51d059d07285668f3bc47a78812a7 Author: Miklos Vajna Date: Tue Mar 9 14:31:24 2010 +0100 haskell-terminfo-0.3.1.1-2-i686 - rebuild with haskell-extensible-exceptions diff --git a/source/devel-extra/haskell-terminfo/FrugalBuild b/source/devel-extra/haskell-terminfo/FrugalBuild index a55e205..84687a1 100644 --- a/source/devel-extra/haskell-terminfo/FrugalBuild +++ b/source/devel-extra/haskell-terminfo/FrugalBuild @@ -4,10 +4,10 @@ pkgname=haskell-terminfo pkgver=0.3.1.1 -pkgrel=1 +pkgrel=2 pkgdesc="Haskell bindings to the terminfo library." archs=('i686' 'x86_64') -depends=('haskell-extensible-exceptions') +depends=('haskell-extensible-exceptions>=0.1.1.1') groups=('devel-extra') sha1sums=('31461914b845615c4a9f7ab19f2b245e12d98861') Finclude haskell From vmiklos at frugalware.org Tue Mar 9 14:33:43 2010 From: vmiklos at frugalware.org (Miklos Vajna) Date: Tue, 9 Mar 2010 14:33:43 +0100 (CET) Subject: [Frugalware-git] frugalware-current: haskell-haskeline-0.6.1.6-2-i686 Message-ID: <20100309133343.2A5251240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=aa171098c0dc06d82ea5e5a9093cfbff8f2588f5 commit aa171098c0dc06d82ea5e5a9093cfbff8f2588f5 Author: Miklos Vajna Date: Tue Mar 9 14:33:24 2010 +0100 haskell-haskeline-0.6.1.6-2-i686 - rebuild with newer haskell-extensible-exceptions and haskell-terminfo diff --git a/source/devel-extra/haskell-haskeline/FrugalBuild b/source/devel-extra/haskell-haskeline/FrugalBuild index e5c0d82..08d9005 100644 --- a/source/devel-extra/haskell-haskeline/FrugalBuild +++ b/source/devel-extra/haskell-haskeline/FrugalBuild @@ -3,12 +3,12 @@ # Contributor: Miklos Vajna pkgname=haskell-haskeline -pkgver=0.6.2.2 -pkgrel=1 +pkgver=0.6.1.6 +pkgrel=2 pkgdesc="A command-line interface for user input, written in Haskell." archs=('i686' 'x86_64') -depends=('haskell-extensible-exceptions' 'haskell-terminfo' 'haskell-utf8-string') +depends=('haskell-extensible-exceptions>=0.1.1.1' 'haskell-terminfo>=0.3.1.1' 'haskell-utf8-string') groups=('devel-extra') -sha1sums=('235cc0b6bbca582e4031962246c10c98f5048bc6') +sha1sums=('5d0934c099d7aa40fa1bb5854d5c4c268a6ac0a4') _F_haskell_setup="Setup.hs" Finclude haskell From devil505linux at gmail.com Tue Mar 9 17:25:21 2010 From: devil505linux at gmail.com (Devil505) Date: Tue, 9 Mar 2010 17:25:21 +0100 (CET) Subject: [Frugalware-git] frugalware-current: transmission-1.91-1-i686 * version bump Message-ID: <20100309162521.30BE91240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=256d6f0b136b9fae3ef87857687ffde714af2850 commit 256d6f0b136b9fae3ef87857687ffde714af2850 Author: Devil505 Date: Tue Mar 9 17:24:29 2010 +0100 transmission-1.91-1-i686 * version bump diff --git a/source/xapps-extra/transmission/FrugalBuild b/source/xapps-extra/transmission/FrugalBuild index b7d30c8..f107b69 100644 --- a/source/xapps-extra/transmission/FrugalBuild +++ b/source/xapps-extra/transmission/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: Priyank Gosalia pkgname=transmission -pkgver=1.83 +pkgver=1.91 pkgrel=1 pkgdesc="A free, lightweight BitTorrent Client." url="http://transmission.m0k.org/" @@ -15,7 +15,7 @@ archs=('i686' 'x86_64') options=('scriptlet') up2date="lynx -dump -nolist http://download.m0k.org/transmission/files/ | Flasttarbz2" source=(http://download.m0k.org/transmission/files/$pkgname-$pkgver.tar.bz2) -sha1sums=('c62114829de6e1006958750db71f55d99f3f3c62') +sha1sums=('edf221053def8667bfde08a9bcbb3a60162a65aa') build() { From devil505linux at gmail.com Tue Mar 9 17:33:02 2010 From: devil505linux at gmail.com (Devil505) Date: Tue, 9 Mar 2010 17:33:02 +0100 (CET) Subject: [Frugalware-git] frugalware-current: pyspacewar-0.9.7-1-i686 * version bump Message-ID: <20100309163302.8B90E1240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=af89bf878fd05c84926d442b7cb5289ca00e6eb9 commit af89bf878fd05c84926d442b7cb5289ca00e6eb9 Author: Devil505 Date: Tue Mar 9 17:32:43 2010 +0100 pyspacewar-0.9.7-1-i686 * version bump diff --git a/source/games-extra/pyspacewar/FrugalBuild b/source/games-extra/pyspacewar/FrugalBuild index 20a6e2c..47f391e 100644 --- a/source/games-extra/pyspacewar/FrugalBuild +++ b/source/games-extra/pyspacewar/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: Devil505 pkgname=pyspacewar -pkgver=0.9.5 +pkgver=0.9.7 pkgrel=1 pkgdesc="Open-source game, loosely inspired by Spacewar, Gravity Wars, and a bit by Star Control (I and II)." url="http://mg.pov.lt/pyspacewar" @@ -11,7 +11,7 @@ groups=('games-extra') archs=('i686') up2date="lynx -dump $url | Flasttar" source=("$url/$pkgname-$pkgver.tar.gz") -sha1sums=('5487a75574144e9ee81a5cb7b10631bcb19d89e8') +sha1sums=('7311bc4dac6dc5f419c92ec79f1abb3d6db4b44c') _F_desktop_categories="Game;ArcadeGame;" From crazy at frugalware.org Tue Mar 9 17:35:47 2010 From: crazy at frugalware.org (crazy) Date: Tue, 9 Mar 2010 17:35:47 +0100 (CET) Subject: [Frugalware-git] frugalware-current: sqlite3-3.6.22-2-x86_64 * enabled FTS3 for bird .. Message-ID: <20100309163547.A03C41240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=5b2bdcab5646bc185e5c4931661711d1d3d1d5f2 commit 5b2bdcab5646bc185e5c4931661711d1d3d1d5f2 Author: crazy Date: Tue Mar 9 18:35:54 2010 +0100 sqlite3-3.6.22-2-x86_64 * enabled FTS3 for bird .. diff --git a/source/lib/sqlite3/FrugalBuild b/source/lib/sqlite3/FrugalBuild index f4b7092..0d06f96 100644 --- a/source/lib/sqlite3/FrugalBuild +++ b/source/lib/sqlite3/FrugalBuild @@ -4,7 +4,7 @@ pkgname=sqlite3 pkgver=3.6.22 -pkgrel=1 +pkgrel=2 pkgdesc="A C library that implements an SQL database engine" url="http://www.sqlite.org/" depends=('readline') @@ -25,6 +25,9 @@ subarchs=('i686 x86_64 ppc') build() { + ## to see what this does see : http://www.sqlite.org/compile.html + ## also third need that .. without it does weird crap. + export CFLAGS="$CFLAGS -DSQLITE_ENABLE_FTS3=1 -DSQLITE_ENABLE_FTS3_PARENTHESIS=1" Fbuild \ --enable-threadsafe \ --enable-threads-override-locks \ From devil505linux at gmail.com Tue Mar 9 17:38:59 2010 From: devil505linux at gmail.com (Devil505) Date: Tue, 9 Mar 2010 17:38:59 +0100 (CET) Subject: [Frugalware-git] frugalware-current: fillets-ng-0.9.3-1-i686 * version bump * removing useless patch Message-ID: <20100309163859.9377C1240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=3aaa33ce86f9fd969ae07584ed842fc7fcd99732 commit 3aaa33ce86f9fd969ae07584ed842fc7fcd99732 Author: Devil505 Date: Tue Mar 9 17:37:31 2010 +0100 fillets-ng-0.9.3-1-i686 * version bump * removing useless patch diff --git a/source/games-extra/fillets-ng/FrugalBuild b/source/games-extra/fillets-ng/FrugalBuild index eb099a2..189ea1f 100644 --- a/source/games-extra/fillets-ng/FrugalBuild +++ b/source/games-extra/fillets-ng/FrugalBuild @@ -2,8 +2,8 @@ # Maintainer: Devil505 pkgname=fillets-ng -pkgver=0.9.2 -pkgrel=2 +pkgver=0.9.3 +pkgrel=1 pkgdesc="A port of the wonderful puzzle game Fish Fillets." rodepends=('fillets-ng-data>=0.9.2') depends=('sdl_ttf>=2.0.9-2' 'sdlimage>=1.2.6-3' 'sdl_mixer>=1.2.8-2' 'lua' 'fribidi' 'libx11>=1.2.1' 'libstdc++') @@ -13,10 +13,9 @@ Finclude sourceforge options=('nobuild') groups=('games-extra') archs=('i686' 'x86_64') -source=($source http://fillets.sourceforge.net/img/icon.png fix_fribidi.patch) -sha1sums=('fc535f8f00618db03e7181fd25f5efabad56255e' \ - '34ae8ea35629795eae16c5a83b09fdb6f221d86c' \ - 'edd16a8d95c06dbe8c3048c8b899220d62084f4c') +source=($source http://fillets.sourceforge.net/img/icon.png) +sha1sums=('3ac6c14b675eabae20050b01c22c9e55d3bfb7b6' \ + '34ae8ea35629795eae16c5a83b09fdb6f221d86c') _F_desktop_name="Fish Fillets Next Generation" _F_desktop_desc="Wonderful puzzle game Fish Fillets" diff --git a/source/games-extra/fillets-ng/fix_fribidi.patch b/source/games-extra/fillets-ng/fix_fribidi.patch deleted file mode 100644 index 2e490eb..0000000 --- a/source/games-extra/fillets-ng/fix_fribidi.patch +++ /dev/null @@ -1,21 +0,0 @@ -diff -ru fillets-ng-0.8.1.orig/src/effect/Font.cpp fillets-ng-0.8.1/src/effect/Font.cpp ---- fillets-ng-0.8.1.orig/src/effect/Font.cpp 2006-01-05 23:31:18.000000000 +0100 -+++ fillets-ng-0.8.1/src/effect/Font.cpp 2009-03-02 21:20:23.000000000 +0100 -@@ -26,7 +26,7 @@ - FriBidiChar *logicalString = new FriBidiChar[text.length() + 1]; - FriBidiChar *visualString = new FriBidiChar[text.length() + 1]; - -- int ucsLength = fribidi_utf8_to_unicode(const_cast(text.c_str()), -+ int ucsLength = fribidi_charset_to_unicode(FRIBIDI_CHAR_SET_UTF8, const_cast(text.c_str()), - text.length(), logicalString); - fribidi_boolean ok = fribidi_log2vis(logicalString, ucsLength, &base, - visualString, NULL, NULL, NULL); -@@ -37,7 +37,7 @@ - } - - char *buffer = new char[text.length() + 1]; -- int length = fribidi_unicode_to_utf8(visualString, ucsLength, buffer); -+ int length = fribidi_unicode_to_charset(FRIBIDI_CHAR_SET_UTF8, visualString, ucsLength, buffer); - std::string result = std::string(buffer, length); - delete[] buffer; - delete[] visualString; From devil505linux at gmail.com Tue Mar 9 17:41:00 2010 From: devil505linux at gmail.com (Devil505) Date: Tue, 9 Mar 2010 17:41:00 +0100 (CET) Subject: [Frugalware-git] frugalware-current: flvstreamer-2.1c1-1-i686 * version bump Message-ID: <20100309164100.94F251240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=2b20fd275e657e06bfe63d84da3b9c3b7395af6c commit 2b20fd275e657e06bfe63d84da3b9c3b7395af6c Author: Devil505 Date: Tue Mar 9 17:40:07 2010 +0100 flvstreamer-2.1c1-1-i686 * version bump diff --git a/source/multimedia-extra/flvstreamer/FrugalBuild b/source/multimedia-extra/flvstreamer/FrugalBuild index 4c3f54c..dd4daca 100644 --- a/source/multimedia-extra/flvstreamer/FrugalBuild +++ b/source/multimedia-extra/flvstreamer/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: Devil505 pkgname=flvstreamer -pkgver=2.1a +pkgver=2.1c1 pkgrel=1 pkgdesc="Open source command-line RTMP client" url="http://savannah.nongnu.org/projects/flvstreamer" @@ -11,7 +11,7 @@ groups=('multimedia-extra') archs=('i686' 'x86_64') up2date="Flasttar http://mirrors.zerg.biz/nongnu/flvstreamer/source/" source=(http://mirrors.zerg.biz/nongnu/flvstreamer/source/$pkgname-$pkgver.tar.gz) -sha1sums=('971faf1dbe6c99bd93dd45df90266563a24fedc4') +sha1sums=('07fac3dea65d8de8afbcc3c892d7830a90b66f10') build() { Fcd $pkgname From devil505linux at gmail.com Tue Mar 9 17:42:47 2010 From: devil505linux at gmail.com (Devil505) Date: Tue, 9 Mar 2010 17:42:47 +0100 (CET) Subject: [Frugalware-git] frugalware-current: python-mako-0.3.1-1-i686 * version bump Message-ID: <20100309164247.07FEF1240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=2ffbb5dfa97c84688aa326b23244a8223c31e524 commit 2ffbb5dfa97c84688aa326b23244a8223c31e524 Author: Devil505 Date: Tue Mar 9 17:41:31 2010 +0100 python-mako-0.3.1-1-i686 * version bump diff --git a/source/devel-extra/python-mako/FrugalBuild b/source/devel-extra/python-mako/FrugalBuild index 978fe0d..503fca6 100644 --- a/source/devel-extra/python-mako/FrugalBuild +++ b/source/devel-extra/python-mako/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: Devil505 pkgname=python-mako -pkgver=0.2.5 +pkgver=0.3.1 pkgrel=1 pkgdesc="Hyperfast and lightweight templating for the Python platform." url="http://www.makotemplates.org/" @@ -14,4 +14,4 @@ _F_archive_name="Mako" up2date="Flasttar $url/download.html" source=($url/downloads/$_F_archive_name-$pkgver.tar.gz) _F_cd_path="$_F_archive_name-$pkgver" -sha1sums=('b3e4d48c30b5a2d273959e3921de428772f2acb4') +sha1sums=('783b782a5eb23fe72dc1059d27d6d92cc75647b3') From devil505linux at gmail.com Tue Mar 9 18:09:04 2010 From: devil505linux at gmail.com (Devil505) Date: Tue, 9 Mar 2010 18:09:04 +0100 (CET) Subject: [Frugalware-git] frugalware-current: dkopp-5.1-1-i686 * version bump Message-ID: <20100309170904.312681240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=9eb6da374601953d8cc43ad8b8c5d6ff4483a956 commit 9eb6da374601953d8cc43ad8b8c5d6ff4483a956 Author: Devil505 Date: Tue Mar 9 18:08:44 2010 +0100 dkopp-5.1-1-i686 * version bump diff --git a/source/xapps-extra/dkopp/FrugalBuild b/source/xapps-extra/dkopp/FrugalBuild index a474de0..8f4d330 100644 --- a/source/xapps-extra/dkopp/FrugalBuild +++ b/source/xapps-extra/dkopp/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: Devil505 pkgname=dkopp -pkgver=5.0 +pkgver=5.1 pkgrel=1 pkgdesc="Program to copy or back-up disk files to DVD." url="http://kornelix.squarespace.com/$pkgname/" @@ -11,15 +11,18 @@ options=('scriptlet') groups=('xapps-extra') archs=('i686' 'x86_64') up2date="lynx -dump http://kornelix.squarespace.com/downloads/ | Flasttar" -source=(http://kornelix.squarespace.com/storage/downloads/$pkgname-$pkgver.tar.gz Makefile) -sha1sums=('8a656c81130c089b3cd91f0fd4e6847b7bbd50f8' \ - '80e4321aa89836e3ceb141325951b8f47fffb11c') +source=(http://kornelix.squarespace.com/storage/downloads/$pkgname-$pkgver.tar.gz) +sha1sums=('27751f6e2c89805ebd3cad751c56778e3b984f50') build() { Fcd - cp $Fsrcdir/Makefile . || Fdie - Fmake - Fmkdir usr/share/applications - Fmakeinstall + Fsed "kornelix-" "" Makefile + Fsed "xdg-" "#xdg-" Makefile + PREFIX=/usr make || Fdie + Fmkdir usr/share/{$pkgname,applications,man/man1} + make PREFIX=$Fdestdir/usr menu || Fdie + make DESTDIR=$Fdestdir PREFIX=/usr install || Fdie + Fmv usr/share/$pkgname/$pkgname.desktop usr/share/applications/$pkgname.desktop } + diff --git a/source/xapps-extra/dkopp/Makefile b/source/xapps-extra/dkopp/Makefile deleted file mode 100644 index cf594b3..0000000 --- a/source/xapps-extra/dkopp/Makefile +++ /dev/null @@ -1,48 +0,0 @@ -PROGRAM = dkopp -VERSION = 5.0 - -# use $PREFIX if defined, else assume /usr/local -ifeq "$(PREFIX)" "" - PREFIX = /usr -endif - -SOURCE = $(PROGRAM)-$(VERSION).cpp -BINDIR = $(PREFIX)/bin -DATADIR = $(PREFIX)/share/$(PROGRAM) -DOCDIR = $(PREFIX)/share/doc/$(PROGRAM) -DESKTOP = $(PREFIX)/share/applications/$(PROGRAM).desktop -MANDIR = $(PREFIX)/share/man/man1 - -# replace CFLAGS and LFLAGS -O (oh) with -g for GDB debugging -CFLAGS = -O -Wall -c `pkg-config --cflags gtk+-2.0` -LFLAGS = -O -Wall -rdynamic `pkg-config --libs gtk+-2.0 gthread-2.0` - -$(PROGRAM): $(PROGRAM).o zfuncs.o - @ g++ $(LFLAGS) -o $(PROGRAM) $(PROGRAM).o zfuncs.o - -$(PROGRAM).o: $(SOURCE) zfuncs.h - @ g++ $(CFLAGS) -o $(PROGRAM).o $(SOURCE) \ - -D "DATADIR=\"$(DATADIR)\"" -D "DOCDIR=\"$(DOCDIR)\"" - -zfuncs.o: zfuncs.cpp zfuncs.h - @ g++ $(CFLAGS) zfuncs.cpp \ - -D "DATADIR=\"$(DATADIR)\"" -D "DOCDIR=\"$(DOCDIR)\"" -D "BINDIR=\"$(BINDIR)\"" - -install: $(PROGRAM) - mkdir -p $(DESTDIR)$(DOCDIR) - mkdir -p $(DESTDIR)$(BINDIR) - mkdir -p $(DESTDIR)$(DATADIR) - cp -R doc/* $(DESTDIR)$(DOCDIR) - cp -R data/* $(DESTDIR)$(DATADIR) - cp $(PROGRAM) $(DESTDIR)$(BINDIR) -# install .desktop file (menu entry) - @echo "[Desktop Entry]" > $(DESTDIR)/$(DESKTOP) - @echo "Name=$(PROGRAM)" >> $(DESTDIR)/$(DESKTOP) - @echo "Categories=Utility" >> $(DESTDIR)/$(DESKTOP) - @echo "Type=Application" >> $(DESTDIR)/$(DESKTOP) - @echo "Terminal=false" >> $(DESTDIR)/$(DESKTOP) - @echo "Exec=$(BINDIR)/$(PROGRAM)" >> $(DESTDIR)/$(DESKTOP) - @echo "Icon=$(DATADIR)/icons/$(PROGRAM).png" >> $(DESTDIR)/$(DESKTOP) - @echo "GenericName=Copy Files to Removable Media" >> $(DESTDIR)/$(DESKTOP) - - From devil505linux at gmail.com Tue Mar 9 18:14:29 2010 From: devil505linux at gmail.com (Devil505) Date: Tue, 9 Mar 2010 18:14:29 +0100 (CET) Subject: [Frugalware-git] frugalware-current: fotoxx-9.7-1-i686 * version bump Message-ID: <20100309171429.430A01240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=16aed10e994c5fc58bfee7df7a3df33b3a0bee1c commit 16aed10e994c5fc58bfee7df7a3df33b3a0bee1c Author: Devil505 Date: Tue Mar 9 18:14:04 2010 +0100 fotoxx-9.7-1-i686 * version bump diff --git a/source/xapps-extra/fotoxx/FrugalBuild b/source/xapps-extra/fotoxx/FrugalBuild index 43fd686..3dcf6a1 100644 --- a/source/xapps-extra/fotoxx/FrugalBuild +++ b/source/xapps-extra/fotoxx/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: Devil505 pkgname=fotoxx -pkgver=9.5 +pkgver=9.7 pkgrel=1 pkgdesc="A program for improving image files made with a digital camera" url="http://kornelix.squarespace.com/$pkgname/" @@ -12,7 +12,7 @@ groups=('xapps-extra') archs=('i686' 'x86_64') up2date="lynx -dump http://kornelix.squarespace.com/downloads/ | Flasttar" source=(http://kornelix.squarespace.com/storage/downloads/$pkgname-$pkgver.tar.gz) -sha1sums=('a30330c49d0e283f63b1c87c3dabbaba21e91a48') +sha1sums=('11d7e12b573080c5e5d3dfbbbb2e1d16f6e31f50') replaces=('fotox') build() { From crazy at frugalware.org Tue Mar 9 18:25:39 2010 From: crazy at frugalware.org (crazy) Date: Tue, 9 Mar 2010 18:25:39 +0100 (CET) Subject: [Frugalware-git] frugalware-current: thunderbird-3.0.3-1-x86_64 * Version bump * cleanup whole FB * removed ac_cv_visibility_pragma=no .. * don't uset MAKEFLAGS is fine on SMP * build with system sqlite3 .. seems to fix the idexer somewhat more * removed old and ugly icon .. We use the icon from source tarball now Message-ID: <20100309172539.46DBF1240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=10826db44837d68c80d911eaad3a5df173f71191 commit 10826db44837d68c80d911eaad3a5df173f71191 Author: crazy Date: Tue Mar 9 19:20:42 2010 +0100 thunderbird-3.0.3-1-x86_64 * Version bump * cleanup whole FB * removed ac_cv_visibility_pragma=no .. * don't uset MAKEFLAGS is fine on SMP * build with system sqlite3 .. seems to fix the idexer somewhat more * removed old and ugly icon .. We use the icon from source tarball now diff --git a/source/xapps/thunderbird/FrugalBuild b/source/xapps/thunderbird/FrugalBuild index 54d1c77..0ac96e1 100644 --- a/source/xapps/thunderbird/FrugalBuild +++ b/source/xapps/thunderbird/FrugalBuild @@ -3,11 +3,12 @@ # Contributor: Krisztian VASAS pkgname=thunderbird -pkgver=3.0.1 +pkgver=3.0.3 pkgrel=1 pkgdesc="Mozilla Thunderbird mail and newsgroup client" url="http://www.mozilla.org/products/thunderbird/" -depends=('alsa-lib' 'curl' 'cairo>=1.4.14' 'dbus-glib' 'gtk+2>=2.16.2-2' 'libpng>=1.2.41-2' 'nss>=3.12' 'nspr>=4.7.1' 'pango>=1.16.2' 'wireless_tools' 'libstdc++' 'libxt>=1.0.5' 'libidl') +depends=('alsa-lib' 'curl' 'cairo>=1.4.14' 'dbus-glib' 'gtk+2>=2.16.2-2' 'libpng>=1.2.41-2' 'nss>=3.12' \ + 'nspr>=4.7.1' 'pango>=1.16.2' 'wireless_tools' 'libstdc++' 'libxt>=1.0.5' 'libidl' 'sqlite3>=3.6.22-2') makedepends=('zip') groups=('xapps') archs=('i686' 'x86_64' 'ppc') @@ -15,30 +16,30 @@ options=('scriptlet') up2date="Flastarchive http://releases.mozilla.org/pub/mozilla.org/thunderbird/releases/latest/source '\.source\.tar\.bz2'" source=(http://releases.mozilla.org/pub/mozilla.org/$pkgname/releases/$pkgver/source/$pkgname-$pkgver.source.tar.bz2 \ $pkgname.desktop \ - $pkgname.install \ - $pkgname.png \ mozilla-gcc44.patch \ thunderbird-locale.patch \ thunderbird-shared-error.patch) -signatures=("${source[0]}.asc" '' '' '' '' '' '') +signatures=("${source[0]}.asc" '' '' '' '') build() { - unset MAKEFLAGS + #unset MAKEFLAGS Fcd comm-1.9.1 + ## and again > -Os broken weird .. use -Os here *again* + export CFLAGS="${CFLAGS[@]/-O2/-Os}" + export CXXFLAGS="${CXXFLAGS[@]/-O2/-Os}" + export MOZILLA_OFFICIAL=1 export BUILD_OFFICIAL=1 - ## lalala same as FF -# sed -i '/layout.css.dpi/s/-1/72/' mozilla/modules/libpref/src/init/all.js || Fdie - # Let jars get compressed. Fsed '\-0' '\-9' mozilla/config/make-jars.pl Fpatchall - ac_cv_visibility_pragma=no Fmake \ + ## ac_cv_visibility_pragma=no Fmake \ + Fmake \ --disable-accessibility \ --disable-activex \ --disable-activex-scripting \ @@ -72,6 +73,7 @@ build() --enable-reorder \ --enable-svg \ --enable-system-cairo \ + --enable-system-sqlite \ --enable-xft \ --enable-xsl \ --enable-xterm-updates \ @@ -85,8 +87,6 @@ build() --with-system-png \ --with-system-zlib -# --enable-optimize="$CFLAGS" \ -# --enable-system-hunspell \ # Does not use Fmakeinstall here because DESDIR is not found in root Makefile Fexec make DESTDIR="$Fdestdir" install @@ -100,14 +100,9 @@ build() Frm /usr/bin/$pkgname Fln /usr/lib/$pkgname/$pkgname /usr/bin/$pkgname - # Install RSS feed support. -# Ffilerel mail/extensions/newsblog/rss.rdf \ -# /usr/lib/$pkgname/defaults/isp/rss.rdf -# Ffilerel mailnews/base/ispdata/movemail.rdf \ -# /usr/lib/$pkgname/defaults/isp/movemail.rdf - # Install icon for the menu file. - Ffile /usr/share/pixmaps/$pkgname.png + Finstallrel 0644 ./other-licenses/branding/thunderbird/mailicon256.png \ + /usr/share/pixmaps/$pkgname.png # Install menu file. Ffile /usr/share/applications/$pkgname.desktop From devil505linux at gmail.com Tue Mar 9 18:40:29 2010 From: devil505linux at gmail.com (Devil505) Date: Tue, 9 Mar 2010 18:40:29 +0100 (CET) Subject: [Frugalware-git] frugalware-current: openshot-1.0.0-1-i686 * version bump Message-ID: <20100309174029.EFB151240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=35ace8a8bcba0531d2fd3ca9c361361e6192b9d9 commit 35ace8a8bcba0531d2fd3ca9c361361e6192b9d9 Author: Devil505 Date: Tue Mar 9 18:28:03 2010 +0100 openshot-1.0.0-1-i686 * version bump diff --git a/source/xapps-extra/openshot/FrugalBuild b/source/xapps-extra/openshot/FrugalBuild index 5245e71..31fa243 100644 --- a/source/xapps-extra/openshot/FrugalBuild +++ b/source/xapps-extra/openshot/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: Devil505 pkgname=openshot -pkgver=1.0.0 +pkgver=1.1.0 pkgrel=1 url="http://www.openshotvideo.com/" pkgdesc="an open-source, non-linear video editor for Linux based on MLT framework" @@ -10,5 +10,5 @@ depends=('mlt-python' 'pygoocanvas' 'sdl' 'librsvg' 'pyxdg') groups=('xapps-extra') archs=('i686') up2date="elinks -dump 'https://launchpad.net/openshot' | Flasttar" -source=(http://launchpad.net/$pkgname/1.0/$pkgver/+download/$pkgname-$pkgver.tar.gz) -sha1sums=('04f566c66a233c66e74dfd538425dbb0decdc3d6') +source=(http://launchpad.net/openshot/1.1/$pkgver/+download/$pkgname-$pkgver.tar.gz) +sha1sums=('319c30b3f89ac0961a572a0c60126a2830c4b371') From devil505linux at gmail.com Tue Mar 9 18:44:42 2010 From: devil505linux at gmail.com (Devil505) Date: Tue, 9 Mar 2010 18:44:42 +0100 (CET) Subject: [Frugalware-git] frugalware-current: gnome-theme-ellannar-1.3.2-1-i686 * version bump Message-ID: <20100309174442.A72B71240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=da7f0ff5cfbd4ae6ad3c4d73381ccf22d742caa6 commit da7