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 da7f0ff5cfbd4ae6ad3c4d73381ccf22d742caa6 Author: Devil505 Date: Tue Mar 9 18:40:37 2010 +0100 gnome-theme-ellannar-1.3.2-1-i686 * version bump diff --git a/source/gnome-extra/gnome-theme-ellannar/FrugalBuild b/source/gnome-extra/gnome-theme-ellannar/FrugalBuild index 8f04e9a..6b12aa3 100644 --- a/source/gnome-extra/gnome-theme-ellannar/FrugalBuild +++ b/source/gnome-extra/gnome-theme-ellannar/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: Devil505 pkgname=gnome-theme-ellannar -pkgver=1.3.1 +pkgver=1.3.2 pkgrel=1 pkgdesc="Ellanna theme for Gnome." url="http://www.bisigi-project.org" @@ -12,8 +12,8 @@ archs=('i686' 'x86_64') _F_archive_name="ellanna-theme" Fpkgversep="_" up2date="elinks -dump 'https://launchpad.net/~bisigi/+archive/ppa/+packages' | Flasttar | sed 's/.ppa3+nmu1//g'" -source=(https://launchpad.net/~bisigi/+archive/ppa/+files/ellanna-theme_1.3.1.karmic.ppa3+nmu1.tar.gz ellanna.patch) -sha1sums=('0c35d2a3a91312f8520cba778066f86033650c51' \ +source=(https://launchpad.net/~bisigi/+archive/ppa/+files/ellanna-theme_1.3.2.karmic.ppa3+nmu1.tar.gz ellanna.patch) +sha1sums=('18d6e330c1954638c5505af00fa306b549073e08' \ '4d05e335d123b4760c87a1356b00c42d5bbbed76') build() { From exceed.cedric at gmail.com Tue Mar 9 19:02:07 2010 From: exceed.cedric at gmail.com (exceed) Date: Tue, 9 Mar 2010 19:02:07 +0100 (CET) Subject: [Frugalware-git] frugalware-current: guitarix-0.06.0-1-i686 Message-ID: <20100309180207.E54BA1240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=de30f2dbcc534dbe30bb68afdc8e56fa2708bcca commit de30f2dbcc534dbe30bb68afdc8e56fa2708bcca Author: exceed Date: Tue Mar 9 20:07:18 2010 +0100 guitarix-0.06.0-1-i686 * Version bump * Fixed $_F_sourceforge_ext * Removed $_F_cd_path diff --git a/source/xmultimedia-extra/guitarix/FrugalBuild b/source/xmultimedia-extra/guitarix/FrugalBuild index 8eab418..a829a14 100644 --- a/source/xmultimedia-extra/guitarix/FrugalBuild +++ b/source/xmultimedia-extra/guitarix/FrugalBuild @@ -2,17 +2,16 @@ # Maintainer: exceed pkgname=guitarix -pkgver=0.05.8 +pkgver=0.06.0 pkgrel=1 pkgdesc="A simple Linux Rock Guitar Amplifier for jack" archs=('i686') url="http://guitarix.sourceforge.net/" groups=('xmultimedia-extra') depends=('ladspa_sdk' 'gtk+2' 'jack' 'libsndfile') -_F_sourceforge_ext=-1-nopkg.tar.bz2 -_F_cd_path=$pkgname-$pkgver-1 +_F_sourceforge_ext=-nopkg.tar.bz2 Finclude sourceforge -sha1sums=('f063eff97e3ca615c723dcd9a8edbb2bff586eb3') +sha1sums=('0941a73e82e4db4c5fe6de4b01026e6343d7e8fc') build() { From exceed.cedric at gmail.com Tue Mar 9 19:04:49 2010 From: exceed.cedric at gmail.com (exceed) Date: Tue, 9 Mar 2010 19:04:49 +0100 (CET) Subject: [Frugalware-git] frugalware-current: android-sdk-r05-1-i686 Message-ID: <20100309180449.68A931240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=42552cd15c9c8b3419e6ad431e1eaaa6bee2a63b commit 42552cd15c9c8b3419e6ad431e1eaaa6bee2a63b Author: exceed Date: Tue Mar 9 20:11:40 2010 +0100 android-sdk-r05-1-i686 * Version bump diff --git a/source/devel-extra/android-sdk/FrugalBuild b/source/devel-extra/android-sdk/FrugalBuild index fb41188..86f29e0 100644 --- a/source/devel-extra/android-sdk/FrugalBuild +++ b/source/devel-extra/android-sdk/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: exceed pkgname=android-sdk -pkgver=r04 +pkgver=r05 pkgextraver=-linux_86 Fpkgversep="_" pkgrel=1 @@ -16,7 +16,7 @@ source=(http://dl.google.com/android/${pkgname}${Fpkgversep}${pkgver}${pkgextrav $pkgname.sh) up2date="Flastarchive http://developer.android.com/sdk/index.html .tgz" options=('nobuild') -sha1sums=('3e86b9a6a7420deaa9829c4b3e668c189cd79365' \ +sha1sums=('bd6495069950a6373bd9743c26d525a22b3b5d3e' \ '2594ba3229b216d7aab09dd4e5d2a3ce82e2ea40' \ 'cc9288f0e9d2b93150e504f32db1000917ef737b') From exceed.cedric at gmail.com Tue Mar 9 19:12:39 2010 From: exceed.cedric at gmail.com (exceed) Date: Tue, 9 Mar 2010 19:12:39 +0100 (CET) Subject: [Frugalware-git] frugalware-current: giggle-0.4.97-1-i686 Message-ID: <20100309181239.9DD8F1240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=322e9b06d155d105aa7cd9474cf9df3a76de5bdd commit 322e9b06d155d105aa7cd9474cf9df3a76de5bdd Author: exceed Date: Tue Mar 9 20:19:14 2010 +0100 giggle-0.4.97-1-i686 * Version bump diff --git a/source/gnome-extra/giggle/FrugalBuild b/source/gnome-extra/giggle/FrugalBuild index 0c8a3e4..641dfbc 100644 --- a/source/gnome-extra/giggle/FrugalBuild +++ b/source/gnome-extra/giggle/FrugalBuild @@ -4,7 +4,7 @@ # Maintainer: jercel pkgname=giggle -pkgver=0.4.96 +pkgver=0.4.97 pkgrel=1 pkgdesc="Giggle is a graphical frontend for the git directory tracker (think of gitk on GTK+)." url="http://live.gnome.org/giggle" @@ -15,7 +15,7 @@ archs=('i686' 'x86_64') dummy="http://ftp.gnome.org/pub/GNOME/sources/giggle" source=($dummy/0.4/$pkgname-$pkgver.tar.gz) up2date="lynx -dump $dummy/0.4/ | Flasttar" -sha1sums=('feab3f91ce025bacb6f59ebff3e93d42b4056098') +sha1sums=('40418cc2a501c5411e73e2493fb023057f653666') _F_gnome_iconcache=y _F_gnome_desktop=y Finclude gnome-scriptlet From exceed.cedric at gmail.com Tue Mar 9 19:18:01 2010 From: exceed.cedric at gmail.com (exceed) Date: Tue, 9 Mar 2010 19:18:01 +0100 (CET) Subject: [Frugalware-git] frugalware-current: gnonlin-0.10.15-1-i686 Message-ID: <20100309181801.2C2B81240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=aad8ebdff31c1e44b6e18785dc7f82f77b44b101 commit aad8ebdff31c1e44b6e18785dc7f82f77b44b101 Author: exceed Date: Tue Mar 9 20:24:23 2010 +0100 gnonlin-0.10.15-1-i686 * Version bump diff --git a/source/xmultimedia-extra/gnonlin/FrugalBuild b/source/xmultimedia-extra/gnonlin/FrugalBuild index d2ec51e..6c5e301 100644 --- a/source/xmultimedia-extra/gnonlin/FrugalBuild +++ b/source/xmultimedia-extra/gnonlin/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: jercel pkgname=gnonlin -pkgver=0.10.14 +pkgver=0.10.15 pkgrel=1 pkgdesc="Gnonlin is a set of GStreamer elements to ease the creation of non-linear multimedia editors" url="http://gnonlin.sourceforge.net" @@ -12,6 +12,6 @@ groups=('xmultimedia-extra') archs=('i686' 'x86_64' 'ppc') up2date="Flasttar http://gstreamer.freedesktop.org/src/gnonlin" source=(http://gstreamer.freedesktop.org/src/gnonlin/$pkgname-$pkgver.tar.bz2) -sha1sums=('fc23d26341fe9626df5aeaafd83980f8f40d63aa') +sha1sums=('743f306ba55093ec2dcca5eb21b8fded5e6ac99f') # optimization OK From cedynamix at gmail.com Tue Mar 9 19:26:10 2010 From: cedynamix at gmail.com (Cedynamix) Date: Tue, 9 Mar 2010 19:26:10 +0100 (CET) Subject: [Frugalware-git] frugalware-current: listen-0.6.5-1-i686 Message-ID: <20100309182610.442ED1240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=4a8b781979b49e51b474599307645ebaf017917d commit 4a8b781979b49e51b474599307645ebaf017917d Author: Cedynamix Date: Tue Mar 9 19:24:13 2010 +0100 listen-0.6.5-1-i686 * version bump diff --git a/source/gnome-extra/listen/FrugalBuild b/source/gnome-extra/listen/FrugalBuild index a48fea6..b75fd72 100644 --- a/source/gnome-extra/listen/FrugalBuild +++ b/source/gnome-extra/listen/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: Cedrick Hannier alias Cedynamix pkgname=listen -pkgver=0.6.3 +pkgver=0.6.5 pkgrel=1 pkgdesc="Music player and management for GNOME" archs=('i686' 'x86_64') @@ -14,7 +14,7 @@ makedepends=('gettext' 'pkgconfig' 'intltool') options=('scriptlet') up2date="Flasttar $url/downloads" source=(http://download.listen-project.org/lastest/$pkgname-$pkgver.tar.gz) -sha1sums=('c07a1af9495731fb69b0bf69f188e5ce3a93f1bd') +sha1sums=('3a73976762816a6bb0912b30dc53c7150373c5a2') build() { Fcd From cedynamix at gmail.com Tue Mar 9 20:29:45 2010 From: cedynamix at gmail.com (Cedynamix) Date: Tue, 9 Mar 2010 20:29:45 +0100 (CET) Subject: [Frugalware-git] frugalware-current: limewire-5.5.5-1-i686 Message-ID: <20100309192945.04F241240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=944fd7a3e163be70af52ca13b3a6d44679b5d44f commit 944fd7a3e163be70af52ca13b3a6d44679b5d44f Author: Cedynamix Date: Tue Mar 9 20:08:12 2010 +0100 limewire-5.5.5-1-i686 * version bump diff --git a/source/xapps-extra/limewire/FrugalBuild b/source/xapps-extra/limewire/FrugalBuild index df62d29..b42c072 100644 --- a/source/xapps-extra/limewire/FrugalBuild +++ b/source/xapps-extra/limewire/FrugalBuild @@ -2,13 +2,13 @@ # Maintainer: Cedrick Hannier alias Cedynamix pkgname=limewire -pkgver=5.4.6 +pkgver=5.5.5 pkgrel=1 pkgdesc="LimeWire is the Flagship Client on the Gnutella Network" url="http://www.limewire.org/" license="GPL" _F_archive_name="LimeWireOther" -up2date="lynx -dump http://www.limewire.com/en |grep version|grep -o '[0-9\.]\+[0-9]'" +up2date="lynx -dump http://www.limewire.com/support |grep Version |grep -o '[0-9\.]\+[0-9]'" source=(http://www10.limewire.com/download/$_F_archive_name.zip limewire.png) groups=('xapps-extra') archs=('i686' 'x86_64') From devil505linux at gmail.com Tue Mar 9 20:41:10 2010 From: devil505linux at gmail.com (Devil505) Date: Tue, 9 Mar 2010 20:41:10 +0100 (CET) Subject: [Frugalware-git] frugalware-current: bouml-4.19-1-i686 * version bump Message-ID: <20100309194110.4A03C1240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=dc7284fff1452ff8571668c4e817e9a2b1cedcda commit dc7284fff1452ff8571668c4e817e9a2b1cedcda Author: Devil505 Date: Tue Mar 9 20:38:17 2010 +0100 bouml-4.19-1-i686 * version bump diff --git a/source/xapps-extra/bouml/FrugalBuild b/source/xapps-extra/bouml/FrugalBuild index c7442ee..e288491 100644 --- a/source/xapps-extra/bouml/FrugalBuild +++ b/source/xapps-extra/bouml/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: Devil505 pkgname=bouml -pkgver=4.18.2 +pkgver=4.19 pkgrel=1 pkgdesc="Free UML 2 tool box with C++, Java and Idl code generation" depends=('qt' 'libstdc++' 'zlib' 'libgl' 'libxmu' 'libxi' 'libxdamage') @@ -14,6 +14,6 @@ url="http://bouml.free.fr/" groups=('xapps-extra') archs=('i686' 'x86_64') _F_cd_path="${pkgname}_${pkgver}" -sha1sums=('c0a2bd32d9cc2602a1ea439fba95d32ec5c45f97') +sha1sums=('d0d8bc3c15a5190d18ac56c60aec8b73a86a111f') # optimization OK From crazy at frugalware.org Tue Mar 9 21:04:19 2010 From: crazy at frugalware.org (crazy) Date: Tue, 9 Mar 2010 21:04:19 +0100 (CET) Subject: [Frugalware-git] frugalware-current: shared-mime-info-0.71-1-x86_64 * Version bump Message-ID: <20100309200419.2CAA41240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=c5d0e32c32c1101d642af2c539cc638fad3b9abc commit c5d0e32c32c1101d642af2c539cc638fad3b9abc Author: crazy Date: Tue Mar 9 22:04:57 2010 +0100 shared-mime-info-0.71-1-x86_64 * Version bump diff --git a/source/xlib/shared-mime-info/FrugalBuild b/source/xlib/shared-mime-info/FrugalBuild index b0859ea..fabadf1 100644 --- a/source/xlib/shared-mime-info/FrugalBuild +++ b/source/xlib/shared-mime-info/FrugalBuild @@ -3,7 +3,7 @@ # Contributor: Laszlo Dvornik pkgname=shared-mime-info -pkgver=0.70 +pkgver=0.71 pkgrel=1 pkgdesc="Freedesktop.org Shared MIME Info" url="http://freedesktop.org/Software/shared-mime-info" @@ -13,7 +13,7 @@ groups=('xlib') archs=('i686' 'x86_64' 'ppc') up2date="lynx -dump $url | grep -m 1 \"$pkgname-[0-9\.]\+.tar.bz2\" | grep -o '[0-9\.]\+.tar.bz2' | sed 's|.tar.bz2||'" source=(http://freedesktop.org/~hadess/$pkgname-$pkgver.tar.bz2) -sha1sums=('7c3b50f9c68a58760ec9cf020b24a05f98f3edb7') +sha1sums=('6f3d3379662857646b0c5b95d5d26e47c0b6250a') Fconfopts="$Fconfopts --disable-update-mimedb" # optimization OK From cedynamix at gmail.com Tue Mar 9 21:18:13 2010 From: cedynamix at gmail.com (Cedynamix) Date: Tue, 9 Mar 2010 21:18:13 +0100 (CET) Subject: [Frugalware-git] frugalware-current: jbrout-0.3.282-1-i686 Message-ID: <20100309201813.AC9CE1240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=1c6c7ac3948b814e86935a233dde1ea5bb00b372 commit 1c6c7ac3948b814e86935a233dde1ea5bb00b372 Author: Cedynamix Date: Tue Mar 9 21:17:06 2010 +0100 jbrout-0.3.282-1-i686 * version bump diff --git a/source/xapps-extra/jbrout/FrugalBuild b/source/xapps-extra/jbrout/FrugalBuild index d0af3cc..723d82b 100644 --- a/source/xapps-extra/jbrout/FrugalBuild +++ b/source/xapps-extra/jbrout/FrugalBuild @@ -2,8 +2,8 @@ # Maintainer: Cedrick Hannier alias Cedynamix pkgname=jbrout -pkgver=0.3.174 -pkgrel=2 +pkgver=0.3.282 +pkgrel=1 pkgdesc="jBrout is a photo manager with support for IPTC keywords" url="http://code.google.com/p/jbrout/" groups=('xapps-extra') @@ -14,7 +14,7 @@ depends=('lxml' 'pygtk' 'imaging' 'fbida' 'jhead' 'pyexiv2') up2date="Flasttar http://jbrout.free.fr/download/sources/" options=('scriptlet') source=("http://jbrout.free.fr/download/sources/$pkgname$Fpkgversep$pkgver.tar.gz") -sha1sums=('68e4ea30999c41a93fd46e73b7c808f1ef9c8a5b') +sha1sums=('b614be606cc7908af0ec63f6ebae0b4de25235ab') build() { Fcd From exceed.cedric at gmail.com Tue Mar 9 21:33:53 2010 From: exceed.cedric at gmail.com (exceed) Date: Tue, 9 Mar 2010 21:33:53 +0100 (CET) Subject: [Frugalware-git] frugalware-current: libgsasl-1.4.1-1-i686 Message-ID: <20100309203353.74D301240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=902594f7784727427c765ea8b9b48d82994eee15 commit 902594f7784727427c765ea8b9b48d82994eee15 Author: exceed Date: Tue Mar 9 22:40:03 2010 +0100 libgsasl-1.4.1-1-i686 * Version bump diff --git a/source/lib-extra/libgsasl/FrugalBuild b/source/lib-extra/libgsasl/FrugalBuild index fa40e5a..b7b36e8 100644 --- a/source/lib-extra/libgsasl/FrugalBuild +++ b/source/lib-extra/libgsasl/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: jercel pkgname=libgsasl -pkgver=1.4.0 +pkgver=1.4.1 pkgrel=1 pkgdesc="Implementation of the Simple Authentication and Security Layer framework and a few common SASL mechanisms" url="http://www.gnu.org/software/gsasl/" @@ -11,6 +11,6 @@ groups=(lib-extra) archs=('i686' 'x86_64') up2date="lynx -dump ftp://ftp.gnu.org/pub/gnu/gsasl/ | Flasttar" source=(ftp://ftp.gnu.org/pub/gnu/gsasl/$pkgname-$pkgver.tar.gz) -sha1sums=('403b543b99cd9aa610fcb8d65f1e9f08e5cabbdc') +sha1sums=('1f40f29ab3343b241832e591f8421f05b3019412') # optimization OK From crazy at frugalware.org Tue Mar 9 21:40:24 2010 From: crazy at frugalware.org (crazy) Date: Tue, 9 Mar 2010 21:40:24 +0100 (CET) Subject: [Frugalware-git] frugalware-current: xine-lib-1.1.18.1-1-x86_64 * Version bump Message-ID: <20100309204024.09AEE1240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=ad6cfde95d1b57b7bac43e50ac0152c5ead025d7 commit ad6cfde95d1b57b7bac43e50ac0152c5ead025d7 Author: crazy Date: Tue Mar 9 22:40:06 2010 +0100 xine-lib-1.1.18.1-1-x86_64 * Version bump diff --git a/source/xlib/xine-lib/FrugalBuild b/source/xlib/xine-lib/FrugalBuild index 8d1b7cc..dcceb18 100644 --- a/source/xlib/xine-lib/FrugalBuild +++ b/source/xlib/xine-lib/FrugalBuild @@ -3,7 +3,7 @@ # Contributor: VMiklos pkgname=xine-lib -pkgver=1.1.17 +pkgver=1.1.18.1 pkgrel=1 pkgdesc="Xine multimedia playback engine libraries" _F_sourceforge_dirname="xine" @@ -19,7 +19,7 @@ options=('scriptlet') makedepends=('arts' 'esd' 'sdl' 'jack') groups=('xlib') archs=('i686' 'x86_64' 'ppc') -sha1sums=('2438e66bb571c8a4c981581188376687c42b72c4') +sha1sums=('783232b6d6e23850a7ac97bf53b2a8bc2e743270') build() { From exceed.cedric at gmail.com Tue Mar 9 21:44:36 2010 From: exceed.cedric at gmail.com (exceed) Date: Tue, 9 Mar 2010 21:44:36 +0100 (CET) Subject: [Frugalware-git] frugalware-current: libinfinity-0.4.1-1-i686 Message-ID: <20100309204436.83C1D1240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=75ed302111208fe0306a9b1fd382a2d8821c1e82 commit 75ed302111208fe0306a9b1fd382a2d8821c1e82 Author: exceed Date: Tue Mar 9 22:50:50 2010 +0100 libinfinity-0.4.1-1-i686 * Version bump diff --git a/source/lib-extra/libinfinity/FrugalBuild b/source/lib-extra/libinfinity/FrugalBuild index f335952..6771729 100644 --- a/source/lib-extra/libinfinity/FrugalBuild +++ b/source/lib-extra/libinfinity/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: jercel pkgname=libinfinity -pkgver=0.4.0 +pkgver=0.4.1 pkgrel=1 pkgdesc="libinfinity is an implementation of the Infinote protocol written in GObject-based C" url="http://gobby.0x539.de/trac/wiki/Infinote/Libinfinity" @@ -12,6 +12,6 @@ groups=('lib-extra') archs=('i686' 'x86_64') up2date="lynx -dump http://releases.0x539.de/libinfinity/ | Flasttar" source=(http://releases.0x539.de/libinfinity/$pkgname-$pkgver.tar.gz) -sha1sums=('04504687cdbaa3be76a81d37eb8ba8ad05192610') +sha1sums=('48783168a5c3a8835f3b8dd5369cde9be07baba6') # optimization OK From gholafox at free.fr Tue Mar 9 21:47:27 2010 From: gholafox at free.fr (gholafox) Date: Tue, 9 Mar 2010 21:47:27 +0100 (CET) Subject: [Frugalware-git] frugalware-current: mumble-1.2.2-1-i686 Message-ID: <20100309204727.BB1001240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=0ed8f68da4f3f10e87836261fe66a360f90fb3d5 commit 0ed8f68da4f3f10e87836261fe66a360f90fb3d5 Author: gholafox Date: Tue Mar 9 21:46:51 2010 +0100 mumble-1.2.2-1-i686 * Version bump diff --git a/source/xapps-extra/mumble/FrugalBuild b/source/xapps-extra/mumble/FrugalBuild index 0e7595d..6db3195 100644 --- a/source/xapps-extra/mumble/FrugalBuild +++ b/source/xapps-extra/mumble/FrugalBuild @@ -1,21 +1,21 @@ # Compiling Time: 0.76 SBU -# Maintainer: gholafox +# Maintainer: gholafox # Contributor: Devil505 pkgname=mumble -pkgver=1.1.8 +pkgver=1.2.2 pkgrel=1 pkgdesc="A voice chat application similar to TeamSpeak" rodepends=('qt4-plugin-sqlite3') -depends=('qt4-qdbus' 'speex' 'openssl' 'alsa-lib' 'libqtsql' 'libqtopengl' 'libqtnetwork' 'libgl' 'libice' 'libxext' 'libxdamage') +depends=('qt4-qdbus' 'speex' 'openssl' 'alsa-lib' 'libqtsql' 'libqtopengl' 'libqtnetwork' 'libgl' 'libice' 'libxext' 'libxdamage' 'libsndfile' 'libglu' 'avahi-compat' 'protobuf') makedepends=('pkgconfig' 'boost' 'qt4-linguist') options=('scriptlet') -_F_sourceforge_realname="Mumble & Murmur" +_F_sourceforge_realname="Mumble" _F_gnome_iconcache="y" Finclude sourceforge gnome-scriptlet groups=('xapps-extra') archs=('i686' 'x86_64') -sha1sums=('83b5ef771b6801953290ee184f1590686e831b8c') +sha1sums=('b2a7fd50e70147b3ea2361cbc5a577b0e1ae45ea') build() { Fcd @@ -37,10 +37,10 @@ build() { Fexerel ./release/plugins/liblink.so usr/lib/$pkgname/plugins/ Finstallrel 644 ./scripts/$pkgname.desktop usr/share/applications/$pkgname.desktop Finstallrel 644 ./man/mum* usr/share/man/man1/ - Finstallrel 644 ./icons/$pkgname.16x16.png usr/share/icons/hicolor/16x16/apps/$pkgname.png - Finstallrel 644 ./icons/$pkgname.32x32.png usr/share/icons/hicolor/32x32/apps/$pkgname.png - Finstallrel 644 ./icons/$pkgname.48x48.png usr/share/icons/hicolor/48x48/apps/$pkgname.png - Finstallrel 644 ./icons/$pkgname.64x64.png usr/share/icons/hicolor/64x64/apps/$pkgname.png + #Finstallrel 644 ./icons/$pkgname.16x16.png usr/share/icons/hicolor/16x16/apps/$pkgname.png + #Finstallrel 644 ./icons/$pkgname.32x32.png usr/share/icons/hicolor/32x32/apps/$pkgname.png + #Finstallrel 644 ./icons/$pkgname.48x48.png usr/share/icons/hicolor/48x48/apps/$pkgname.png + #Finstallrel 644 ./icons/$pkgname.64x64.png usr/share/icons/hicolor/64x64/apps/$pkgname.png Fbuild_gnome_scriptlet } From crazy at frugalware.org Tue Mar 9 21:52:38 2010 From: crazy at frugalware.org (crazy) Date: Tue, 9 Mar 2010 21:52:38 +0100 (CET) Subject: [Frugalware-git] frugalware-current: gmm-4.0.0-1-x86_64 * Version bump Message-ID: <20100309205238.C204C1240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=8f02cd03d17644851c339c9eac679962904a98ea commit 8f02cd03d17644851c339c9eac679962904a98ea Author: crazy Date: Tue Mar 9 22:53:26 2010 +0100 gmm-4.0.0-1-x86_64 * Version bump diff --git a/source/lib-extra/gmm/FrugalBuild b/source/lib-extra/gmm/FrugalBuild index dda17d5..ed5d3d9 100644 --- a/source/lib-extra/gmm/FrugalBuild +++ b/source/lib-extra/gmm/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: crazy pkgname=gmm -pkgver=3.1 +pkgver=4.0.0 pkgrel=1 pkgdesc="A generic C++ template library for sparse, dense and skyline matrices." url="http://home.gna.org/getfem/gmm_intro" @@ -11,4 +11,4 @@ groups=('lib-extra') archs=('i686' 'x86_64' 'ppc') up2date="lynx -dump http://home.gna.org/getfem/download.html|grep -om1 'gmm-\(.*\).tar.gz'|Flasttar" source=(http://download.gna.org/getfem/stable/$pkgname-$pkgver.tar.gz) -sha1sums=('d19c5deac50e7bf338ef77877ff2fb4ea02295f4') +sha1sums=('7eca39427b57271db1aefe4d27b671e58c4aeb63') From crazy at frugalware.org Tue Mar 9 21:55:46 2010 From: crazy at frugalware.org (crazy) Date: Tue, 9 Mar 2010 21:55:46 +0100 (CET) Subject: [Frugalware-git] frugalware-current: net6-1.3.12-1-x86_64 * Version bump Message-ID: <20100309205546.CE1EA1240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=f043051526952f7baa4921f1ccfe4e13c524fd34 commit f043051526952f7baa4921f1ccfe4e13c524fd34 Author: crazy Date: Tue Mar 9 22:56:36 2010 +0100 net6-1.3.12-1-x86_64 * Version bump diff --git a/source/lib-extra/net6/FrugalBuild b/source/lib-extra/net6/FrugalBuild index 216dd54..98d28fd 100644 --- a/source/lib-extra/net6/FrugalBuild +++ b/source/lib-extra/net6/FrugalBuild @@ -3,7 +3,7 @@ # Contributor: AlexExtreme pkgname=net6 -pkgver=1.3.11 +pkgver=1.3.12 pkgrel=1 pkgdesc="net6 is a library which eases the development of network-based applications" url="http://releases.0x539.de/net6/" @@ -14,6 +14,6 @@ groups=('lib-extra') archs=('i686' 'x86_64') up2date="lynx -dump $url | sed '/latest/d' | sed '/stable/d' | Flasttar" source=($url/$pkgname-$pkgver.tar.gz) -sha1sums=('8506e2cec848ac5b74591a4635ec57995e278049') +sha1sums=('edf024fded743da8951e3ae17ab23ea0d53a1f80') # optimization OK From crazy at frugalware.org Tue Mar 9 21:59:17 2010 From: crazy at frugalware.org (crazy) Date: Tue, 9 Mar 2010 21:59:17 +0100 (CET) Subject: [Frugalware-git] frugalware-current: glpk-4.43-1-x86_64 * Version bump Message-ID: <20100309205917.9303B1240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=afdfb5c6d5f69d6c3b3501d58b7e5fbff28c156a commit afdfb5c6d5f69d6c3b3501d58b7e5fbff28c156a Author: crazy Date: Tue Mar 9 22:59:56 2010 +0100 glpk-4.43-1-x86_64 * Version bump diff --git a/source/lib-extra/glpk/FrugalBuild b/source/lib-extra/glpk/FrugalBuild index 89fe1cf..cfd2320 100644 --- a/source/lib-extra/glpk/FrugalBuild +++ b/source/lib-extra/glpk/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: crazy pkgname=glpk -pkgver=4.40 +pkgver=4.43 pkgrel=1 pkgdesc="GNU Linear Programming Kit" url="http://www.gnu.org/software/glpk/" @@ -11,6 +11,6 @@ groups=('lib-extra') archs=('i686' 'x86_64') Fup2gnugz source=(ftp://ftp.gnu.org/gnu/$pkgname/$pkgname-$pkgver.tar.gz) -sha1sums=('d89e9ebaef776a5a704fc584572223ed51c029d9') +sha1sums=('6260df0fa47dd828458c169df90264d5ee1bf0a1') # optimization OK From crazy at frugalware.org Tue Mar 9 22:03:21 2010 From: crazy at frugalware.org (crazy) Date: Tue, 9 Mar 2010 22:03:21 +0100 (CET) Subject: [Frugalware-git] frugalware-current: tap-plugins-0.7.1-1-x86_64 * Version bump Message-ID: <20100309210321.809CF1240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=d5e3de6e19ae67d43263ed29ade2ae92010c8929 commit d5e3de6e19ae67d43263ed29ade2ae92010c8929 Author: crazy Date: Tue Mar 9 23:04:19 2010 +0100 tap-plugins-0.7.1-1-x86_64 * Version bump diff --git a/source/lib-extra/tap-plugins/FrugalBuild b/source/lib-extra/tap-plugins/FrugalBuild index 2831735..d146be3 100644 --- a/source/lib-extra/tap-plugins/FrugalBuild +++ b/source/lib-extra/tap-plugins/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: crazy pkgname=tap-plugins -pkgver=0.7.0 +pkgver=0.7.1 pkgrel=1 pkgdesc="Tom's Audio Processing plugins for LADSPA." depends=('glibc' 'ladspa_sdk') @@ -11,7 +11,7 @@ url="http://tap-plugins.sourceforge.net/" source=(${source[@]} makefile.patch) groups=('lib-extra') archs=('i686' 'x86_64') -sha1sums=('f29038312c23b90e178d08c227c14ba174c1592a' \ +sha1sums=('c368efd4d1e7856ab79f4485c8be5054354f7aeb' \ '121f4c818c22f4f61977d791f40d02431fe5f3f2') build() From crazy at frugalware.org Tue Mar 9 22:14:41 2010 From: crazy at frugalware.org (crazy) Date: Tue, 9 Mar 2010 22:14:41 +0100 (CET) Subject: [Frugalware-git] frugalware-current: aria2-1.8.3-1-x86_64 * Version bump * xmlrpc feature is enabled now Message-ID: <20100309211441.DF1DF1240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=3e7ba14efa4b06dd0a8457d90c23277d46466a04 commit 3e7ba14efa4b06dd0a8457d90c23277d46466a04 Author: crazy Date: Tue Mar 9 23:15:05 2010 +0100 aria2-1.8.3-1-x86_64 * Version bump * xmlrpc feature is enabled now diff --git a/source/network-extra/aria2/FrugalBuild b/source/network-extra/aria2/FrugalBuild index 108d2e2..ed77a19 100644 --- a/source/network-extra/aria2/FrugalBuild +++ b/source/network-extra/aria2/FrugalBuild @@ -2,16 +2,16 @@ # Maintainer: crazy pkgname=aria2 -pkgver=1.6.3 +pkgver=1.8.3 pkgrel=1 pkgdesc="aria2 is an utility for downloading files." -depends=('openssl' 'libstdc++' 'cppunit' 'c-ares>=1.5.1') -makedepends=('cvs' 'gnutls') +depends=('openssl' 'libxml2' 'c-ares' 'sqlite3' 'libstdc++') +makedepends=('cvs' 'gnutls' 'xmlrpc-c') license="GPL" groups=('network-extra') archs=('i686' 'x86_64') _F_sourceforge_ext=".tar.bz2" Finclude sourceforge -sha1sums=('5a3afab9751dcc59a90c543c26a187f931b18325') +sha1sums=('9ebd9b996ce1f86cc1b3e84d5cd236fee84d42f5') Fconfopts="$Fconfopts --without-gnutls" # optimization OK From exceed.cedric at gmail.com Tue Mar 9 22:50:25 2010 From: exceed.cedric at gmail.com (exceed) Date: Tue, 9 Mar 2010 22:50:25 +0100 (CET) Subject: [Frugalware-git] frugalware-current: cdw-0.3.95-1-i686 Message-ID: <20100309215025.C25041240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=4fc3ca2ed7d9e3745525f25aba45c32fea883708 commit 4fc3ca2ed7d9e3745525f25aba45c32fea883708 Author: exceed Date: Tue Mar 9 23:55:38 2010 +0100 cdw-0.3.95-1-i686 * New package from kikadf * Closes FS#4125 diff --git a/source/multimedia-extra/cdw/FrugalBuild b/source/multimedia-extra/cdw/FrugalBuild new file mode 100644 index 0000000..fba5281 --- /dev/null +++ b/source/multimedia-extra/cdw/FrugalBuild @@ -0,0 +1,19 @@ +# Compiling Time: 0.11 SBU +# Maintainer: exceed +# Contributor: kikadf + +pkgname=cdw +pkgver=0.3.95 +pkgrel=1 +pkgdesc="cdw is a front-end for command-line tools: cdrecord/wodim, +mkisofs/genisoimage, growisofs, dvd+rw-mediainfo, dvd+rw-format" +_F_sourceforge_sep="_" +_F_cd_path="${pkgname}_${pkgver}/$pkgname" +Finclude sourceforge +depends=('ncurses' 'libcdio' 'cdrtools' 'dvd+rw-tools') +groups=(multimedia-extra) +archs=('i686' 'x86_64') +sha1sums=('e5fd43bfe4dc5935ff1567ea775e518d7cf0c32c') + + +# optimization OK From cedynamix at gmail.com Tue Mar 9 23:12:12 2010 From: cedynamix at gmail.com (Cedynamix) Date: Tue, 9 Mar 2010 23:12:12 +0100 (CET) Subject: [Frugalware-git] frugalware-current: deja-dup-13.92-1-i686 Message-ID: <20100309221212.A29B91240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=a7d5718ba31cc2f6cabc3b806c94188a932779d6 commit a7d5718ba31cc2f6cabc3b806c94188a932779d6 Author: Cedynamix Date: Tue Mar 9 23:10:39 2010 +0100 deja-dup-13.92-1-i686 * version bump diff --git a/source/gnome-extra/deja-dup/FrugalBuild b/source/gnome-extra/deja-dup/FrugalBuild index 3be337e..dae8044 100644 --- a/source/gnome-extra/deja-dup/FrugalBuild +++ b/source/gnome-extra/deja-dup/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: Cedrick Hannier alias Cedynamix pkgname=deja-dup -pkgver=13.4 +pkgver=13.92 pkgrel=1 pkgdesc="D??j?? Dup is a simple backup program and uses duplicity as the backend." url="http://mterry.name/deja-dup/" @@ -15,6 +15,6 @@ groups=('gnome-extra') archs=('i686' 'x86_64') up2date="elinks -dump 'http://launchpad.net/$pkgname/+download' | Flasttar" source=(http://launchpad.net/$pkgname/14/$pkgver/+download/$pkgname-$pkgver.tar.bz2) -sha1sums=('fcc366aa07b7cddac53aa9f5668ab05e46dc680a') +sha1sums=('c06762bc11943d4f2a97848306823053f8c344e6') # optimization OK From cedynamix at gmail.com Wed Mar 10 00:06:40 2010 From: cedynamix at gmail.com (Cedynamix) Date: Wed, 10 Mar 2010 00:06:40 +0100 (CET) Subject: [Frugalware-git] frugalware-current: tesseract-gui-2.7-1-i686 Message-ID: <20100309230640.5D6981240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=183c041079a8d8d056377741f8fe3f4c9cea1284 commit 183c041079a8d8d056377741f8fe3f4c9cea1284 Author: Cedynamix Date: Wed Mar 10 00:06:13 2010 +0100 tesseract-gui-2.7-1-i686 * new package diff --git a/source/xapps-extra/tesseract-gui/FrugalBuild b/source/xapps-extra/tesseract-gui/FrugalBuild new file mode 100644 index 0000000..d6ec6f2 --- /dev/null +++ b/source/xapps-extra/tesseract-gui/FrugalBuild @@ -0,0 +1,23 @@ +# Compiling Time: 0.04 SBU +# Maintainer: Cedrick Hannier alias Cedynamix + +pkgname=tesseract-gui +pkgver=2.7 +pkgrel=1 +pkgdesc="A graphical way to use it with simple image manipulation thru ImageMagick" +archs=('i686' 'x86_64') +depends=('tesseract-ocr' 'imagemagick') +groups=('xapps-extra') +sha1sums=('836675ee21b9ee53b429029fe76615b081d4bc2c') +Finclude sourceforge + +build() { + Fcd + Fmkdir /usr + Fmkdir /usr/bin + Fmkdir /usr/share + Fmkdir /usr/share/icons + Fmkdir /usr/share/applications + make BASEDIR=$Fdestdir/usr/ install || Fdie +} + From vmiklos at frugalware.org Wed Mar 10 01:04:17 2010 From: vmiklos at frugalware.org (Miklos Vajna) Date: Wed, 10 Mar 2010 01:04:17 +0100 (CET) Subject: [Frugalware-git] homepage-ng: FSA638-wordpress Message-ID: <20100310000417.819ED1240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=homepage-ng.git;a=commitdiff;h=4d2f21f8a367dd656f652ee83c1de8423ed058f0 commit 4d2f21f8a367dd656f652ee83c1de8423ed058f0 Author: Miklos Vajna Date: Tue Mar 9 17:18:55 2010 +0100 FSA638-wordpress diff --git a/frugalware/xml/security.xml b/frugalware/xml/security.xml index bc82f35..34502dd 100644 --- a/frugalware/xml/security.xml +++ b/frugalware/xml/security.xml @@ -26,6 +26,19 @@ + 638 + 2010-03-10 + Miklos Vajna + wordpress + 2.9.1-1 + 2.9.2-1locris1 + http://bugs.frugalware.org/task/4131 + http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2010-0682 + A vulnerability has been discovered in WordPress, which can be exploited by malicious users to bypass certain security restrictions. + The vulnerability is caused due to WordPress not properly restricting access to trashed posts, which can be exploited to e.g. view a trashed post by accessing it's page directly. + Successful exploitation requires a valid user account. + + 637 2010-03-09 Miklos Vajna From cedynamix at gmail.com Wed Mar 10 07:59:27 2010 From: cedynamix at gmail.com (Cedynamix) Date: Wed, 10 Mar 2010 07:59:27 +0100 (CET) Subject: [Frugalware-git] frugalware-current: libgsf-1.14.17-1-i686 Message-ID: <20100310065927.E2D0C1240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=16c77bcdbcbbb91336856046014743995d2efdd2 commit 16c77bcdbcbbb91336856046014743995d2efdd2 Author: Cedynamix Date: Wed Mar 10 07:58:35 2010 +0100 libgsf-1.14.17-1-i686 * version bump diff --git a/source/lib/libgsf/FrugalBuild b/source/lib/libgsf/FrugalBuild index 0c30177..b0bb232 100644 --- a/source/lib/libgsf/FrugalBuild +++ b/source/lib/libgsf/FrugalBuild @@ -3,7 +3,7 @@ # Contributor: Miklos Nemeth pkgname=libgsf -pkgver=1.14.16 +pkgver=1.14.17 pkgrel=1 pkgdesc="A library for reading and writing structured files (eg MS OLE and Zip)" url="http://www.gnome.org/" @@ -12,7 +12,7 @@ makedepends=('intltool>=0.40.6' 'gtk-doc' 'perl-xml-parser' 'pygtk>=2.16.0' 'gvf groups=('lib') archs=('i686' 'x86_64' 'ppc') Finclude gnome python -sha1sums=('9461d816c283e977d88916932def678560f9c8d5') +sha1sums=('a1ea6d5e02b7f68cdc61977ec8eaf169e3b8abaf') subpkgs=('libgsf-gnome') subdescs=('GNOME specific extensions to libgsf') From bouleetbil at frogdev.info Wed Mar 10 08:23:57 2010 From: bouleetbil at frogdev.info (bouleetbil) Date: Wed, 10 Mar 2010 08:23:57 +0100 (CET) Subject: [Frugalware-git] frugalware-current: python-nose-0.11.3-1-i686 *version bump Message-ID: <20100310072357.D56BC1240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=b7e8ec546b437307f02421defdfcaf60b997bf78 commit b7e8ec546b437307f02421defdfcaf60b997bf78 Author: bouleetbil Date: Wed Mar 10 09:03:02 2010 +0000 python-nose-0.11.3-1-i686 *version bump diff --git a/source/devel-extra/python-nose/FrugalBuild b/source/devel-extra/python-nose/FrugalBuild index d3a0dd9..136505c 100644 --- a/source/devel-extra/python-nose/FrugalBuild +++ b/source/devel-extra/python-nose/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: bouleetbil pkgname=python-nose -pkgver=0.11.0 +pkgver=0.11.3 pkgrel=1 pkgdesc="nose provides an alternate test discovery and running process for unittest" depends=('python') @@ -11,5 +11,5 @@ archs=('i686' 'x86_64') _F_googlecode_name=nose _F_googlecode_dirname=$pkgname Finclude googlecode -sha1sums=('5a0d3e55436ac1d8c1906f003981daf58d06f819') +sha1sums=('abc234bc287c958464f58910ac96cef3feab6c5b') _F_cd_path=$_F_googlecode_name-$pkgver From bouleetbil at frogdev.info Wed Mar 10 09:01:47 2010 From: bouleetbil at frogdev.info (bouleetbil) Date: Wed, 10 Mar 2010 09:01:47 +0100 (CET) Subject: [Frugalware-git] frugalware-current: gtg-0.2.3-1-i686 *version bump Message-ID: <20100310080148.010321240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=683495c2461cc1263283c977b8a623779e936765 commit 683495c2461cc1263283c977b8a623779e936765 Author: bouleetbil Date: Wed Mar 10 09:41:02 2010 +0000 gtg-0.2.3-1-i686 *version bump diff --git a/source/gnome-extra/gtg/FrugalBuild b/source/gnome-extra/gtg/FrugalBuild index 91acf48..d4e7a28 100644 --- a/source/gnome-extra/gtg/FrugalBuild +++ b/source/gnome-extra/gtg/FrugalBuild @@ -3,7 +3,7 @@ # Contributor: Othmane Benkirane pkgname=gtg -pkgver=0.2 +pkgver=0.2.3 pkgrel=1 pkgdesc="Getting Things Gnome, simple personal organizer, inspired by the GTD (Getting Things Done) technique." url="http://gtg.fritalk.com" @@ -15,5 +15,5 @@ options=('scriptlet') _F_gnome_iconcache="y" _F_gnome_desktop="y" Finclude gnome-scriptlet -source=(http://launchpad.net/$pkgname/trunk/$pkgver/+download/$pkgname-$pkgver.tar.gz) -sha1sums=('bf32911548637c835d00af8fd178e8502f66ac7e') +source=(http://launchpad.net/$pkgname/0.2/$pkgver/+download/$pkgname-$pkgver.tar.gz) +sha1sums=('730de575d51faa9cd5b0b119c74100737e2b5464') From bouleetbil at frogdev.info Wed Mar 10 09:20:42 2010 From: bouleetbil at frogdev.info (bouleetbil) Date: Wed, 10 Mar 2010 09:20:42 +0100 (CET) Subject: [Frugalware-git] frugalware-current: gnumeric-1.10.1-1-x86_64 *version bump Message-ID: <20100310082042.EEF6C1240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=03d0c509bb6d2daeab771cf9c48edae533e8eb92 commit 03d0c509bb6d2daeab771cf9c48edae533e8eb92 Author: bouleetbil Date: Wed Mar 10 09:18:13 2010 +0100 gnumeric-1.10.1-1-x86_64 *version bump diff --git a/source/gnome-extra/gnumeric/FrugalBuild b/source/gnome-extra/gnumeric/FrugalBuild index eb530c3..0dbcb6a 100644 --- a/source/gnome-extra/gnumeric/FrugalBuild +++ b/source/gnome-extra/gnumeric/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: bouleetbil pkgname=gnumeric -pkgver=1.10.0 +pkgver=1.10.1 pkgrel=1 pkgdesc="The GNOME spreadsheet" url="http://www.gnome.org/projects/gnumeric/" @@ -17,6 +17,6 @@ _F_gnome_scrollkeeper="y" _F_gnome_desktop="y" _F_gnome_iconcache="y" Finclude gnome gnome-scriptlet -sha1sums=('3645087e4dde66f7b124a323d72487d943383aac') +sha1sums=('f547d488ae8d9cdb0c5d8780f8616d61df3ab7af') # optimization OK From bouleetbil at frogdev.info Wed Mar 10 09:29:17 2010 From: bouleetbil at frogdev.info (bouleetbil) Date: Wed, 10 Mar 2010 09:29:17 +0100 (CET) Subject: [Frugalware-git] frugalware-current: gstreamer-0.10.28-1-x86_64 *version bump Message-ID: <20100310082917.4724B1240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=b153f83cd515979caa176d8c0b2261ff2166446e commit b153f83cd515979caa176d8c0b2261ff2166446e Author: bouleetbil Date: Wed Mar 10 09:28:24 2010 +0100 gstreamer-0.10.28-1-x86_64 *version bump diff --git a/source/xmultimedia/gstreamer/FrugalBuild b/source/xmultimedia/gstreamer/FrugalBuild index 6e1c011..23b4077 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.27 +pkgver=0.10.28 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=('3be82307d051ed04253da4e1a6bfe78b4bd489c0' \ +sha1sums=('a1123d60c35c9be1f6f6357176056361f42e896b' \ 'b1a04cc8052418384e2f3a5de925abaeac8110ae') # optimization OK From bouleetbil at frogdev.info Wed Mar 10 09:41:56 2010 From: bouleetbil at frogdev.info (bouleetbil) Date: Wed, 10 Mar 2010 09:41:56 +0100 (CET) Subject: [Frugalware-git] frugalware-current: gst-plugins-base-0.10.28-1-x86_64 *version bump Message-ID: <20100310084156.A44621240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=8811906c73fba640d72ce84cb86df86d7efb98e6 commit 8811906c73fba640d72ce84cb86df86d7efb98e6 Author: bouleetbil Date: Wed Mar 10 09:40:57 2010 +0100 gst-plugins-base-0.10.28-1-x86_64 *version bump diff --git a/source/xmultimedia/gst-plugins-base/FrugalBuild b/source/xmultimedia/gst-plugins-base/FrugalBuild index 574bd51..7da94b3 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.27 +pkgver=0.10.28 pkgrel=1 pkgdesc="Plugins for GStreamer" url="http://gstreamer.freedesktop.org/" -depends=('libxv' 'libsm' 'gstreamer>=0.10.27') +depends=('libxv' 'libsm' 'gstreamer>=0.10.28') 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=('ab0842a20c688f39eb43e4bc13d72d754d674e93') +sha1sums=('c32b966e4ec3c81d520f80a03794cb11942df835') subpkgs=("$pkgname-gnomevfs" "$pkgname-cdparanoia" "$pkgname-pango" "$pkgname-alsa" \ "$pkgname-theora" "$pkgname-oil" "$pkgname-libvisual" "$pkgname-ogg" "$pkgname-vorbis" \ From bouleetbil at frogdev.info Wed Mar 10 09:42:33 2010 From: bouleetbil at frogdev.info (bouleetbil) Date: Wed, 10 Mar 2010 09:42:33 +0100 (CET) Subject: [Frugalware-git] frugalware-current: mod_wsgi-3.2-1-i686 *version bump Message-ID: <20100310084233.134C91240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=ab67bc34229f99bcf96dbed7642ee40244110b06 commit ab67bc34229f99bcf96dbed7642ee40244110b06 Author: bouleetbil Date: Wed Mar 10 10:21:38 2010 +0000 mod_wsgi-3.2-1-i686 *version bump diff --git a/source/network-extra/mod_wsgi/FrugalBuild b/source/network-extra/mod_wsgi/FrugalBuild index e189d59..e99f712 100644 --- a/source/network-extra/mod_wsgi/FrugalBuild +++ b/source/network-extra/mod_wsgi/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: bouleetbil pkgname=mod_wsgi -pkgver=3.1 +pkgver=3.2 pkgrel=1 pkgdesc="Python WSGI adapter module for Apache." url="http://www.modpython.org/" @@ -13,7 +13,7 @@ Finclude googlecode backup=(etc/httpd/conf/modules.d/mod_wsgi.conf) archs=('i686' 'x86_64') source=($source mod_wsgi.conf) -sha1sums=('4bfbfc07e6bb33df4eb7b78c4e65126d926441b8' \ +sha1sums=('227123f679f280d45639420fe2eeaa820f6a1cbc' \ '0f1e505e724e6915ea0169980722d2411e608a3a') build() From bouleetbil at frogdev.info Wed Mar 10 09:47:46 2010 From: bouleetbil at frogdev.info (bouleetbil) Date: Wed, 10 Mar 2010 09:47:46 +0100 (CET) Subject: [Frugalware-git] frugalware-current: telepathy-python-0.15.16-1-i686 *version bump Message-ID: <20100310084746.A06181240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=7a2bdafe414527f2dddf2c4e545491e65e68508a commit 7a2bdafe414527f2dddf2c4e545491e65e68508a Author: bouleetbil Date: Wed Mar 10 10:27:04 2010 +0000 telepathy-python-0.15.16-1-i686 *version bump diff --git a/source/devel-extra/telepathy-python/FrugalBuild b/source/devel-extra/telepathy-python/FrugalBuild index d782f03..90f1014 100644 --- a/source/devel-extra/telepathy-python/FrugalBuild +++ b/source/devel-extra/telepathy-python/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: bouleetbil pkgname=telepathy-python -pkgver=0.15.15 +pkgver=0.15.16 pkgrel=1 pkgdesc="Base classes for use in connection managers, and proxy classes for use in clients." url="http://telepathy.freedesktop.org/releases/$pkgname" @@ -11,4 +11,4 @@ source=(http://telepathy.freedesktop.org/releases/$pkgname/$pkgname-$pkgver.tar. depends=('dbus-python' 'libtelepathy') groups=('devel-extra') archs=('i686' 'x86_64' 'ppc') -sha1sums=('535be5c1b0cc950b0af7fe3273012fd9ae69bb16') +sha1sums=('11039037e392f914e851f6dc801cc37307030193') From bouleetbil at frogdev.info Wed Mar 10 10:04:25 2010 From: bouleetbil at frogdev.info (bouleetbil) Date: Wed, 10 Mar 2010 10:04:25 +0100 (CET) Subject: [Frugalware-git] frugalware-current: gst-plugins-good-0.10.21-1-x86_64 *version bump Message-ID: <20100310090425.CE8AE1240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=01768baef4f3d42782313c95de74a555a429e675 commit 01768baef4f3d42782313c95de74a555a429e675 Author: bouleetbil Date: Wed Mar 10 09:59:59 2010 +0100 gst-plugins-good-0.10.21-1-x86_64 *version bump diff --git a/source/xmultimedia/gst-plugins-good/FrugalBuild b/source/xmultimedia/gst-plugins-good/FrugalBuild index 2f57e80..a89b4e9 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.19 +pkgver=0.10.21 pkgrel=1 pkgdesc="Plugins for GStreamer (Good)" url="http://gstreamer.freedesktop.org/" -depends=('gst-plugins-base>=0.10.27' 'gstreamer>=0.10.27' 'zlib') +depends=('gst-plugins-base>=0.10.28' 'gstreamer>=0.10.28' '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=('f4be7dc0bcb3dc86c94ca4642a31d567cdd78828') +sha1sums=('ed619824f5ca4592bfe2b2f6df9d53f08bf5f360') # optimization OK From vmiklos at frugalware.org Wed Mar 10 13:55:16 2010 From: vmiklos at frugalware.org (Miklos Vajna) Date: Wed, 10 Mar 2010 13:55:16 +0100 (CET) Subject: [Frugalware-git] frugalware-current: bzr-2.1.0-1-i686 Message-ID: <20100310125516.273371240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=78de0df7eb6b1cf6d6bed0f609e61ab2aa434651 commit 78de0df7eb6b1cf6d6bed0f609e61ab2aa434651 Author: Miklos Vajna Date: Wed Mar 10 13:54:34 2010 +0100 bzr-2.1.0-1-i686 - version bump diff --git a/source/devel-extra/bzr/FrugalBuild b/source/devel-extra/bzr/FrugalBuild index 42390ce..cf35567 100644 --- a/source/devel-extra/bzr/FrugalBuild +++ b/source/devel-extra/bzr/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: Miklos Vajna pkgname=bzr -pkgver=2.0.4 +pkgver=2.1.0 pkgrel=1 pkgdesc="Next generation distributed version control" url="http://bazaar-vcs.org" From ryuo at frugalware.org Wed Mar 10 14:35:55 2010 From: ryuo at frugalware.org (James Buren) Date: Wed, 10 Mar 2010 14:35:55 +0100 (CET) Subject: [Frugalware-git] frugalware-current: awesome-3.4.4-1-i686 * version bump Message-ID: <20100310133555.04AEA1240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=f997b19b73e7ba2fb0be6de58246e5c2455e2481 commit f997b19b73e7ba2fb0be6de58246e5c2455e2481 Author: James Buren Date: Wed Mar 10 07:25:19 2010 -0600 awesome-3.4.4-1-i686 * version bump diff --git a/source/x11-extra/awesome/FrugalBuild b/source/x11-extra/awesome/FrugalBuild index abda2d2..1de7460 100644 --- a/source/x11-extra/awesome/FrugalBuild +++ b/source/x11-extra/awesome/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: James Buren pkgname=awesome -pkgver=3.4.3 +pkgver=3.4.4 pkgrel=1 pkgdesc="awesome is a floating and tiling window manager initialy based on a dwm code rewriting." url="http://awesome.naquadah.org/" @@ -18,7 +18,7 @@ groups=('x11-extra') archs=('i686' 'x86_64') up2date="curl -s '$url/download/' | grep 'Latest stable' | sed 's|.*version \(.*\) (.*|\1|'" source=($url/download/$pkgname-$pkgver.tar.bz2) -sha1sums=('d32c2cc722f970e09552bcd11a58789866c29094') +sha1sums=('923355b2e34320c4265fba4906a5b923869b88a6') build() { Fsed "" "" globalconf.h luaa.{c,h} {dbus,timer}.c From ryuo at frugalware.org Wed Mar 10 14:35:55 2010 From: ryuo at frugalware.org (James Buren) Date: Wed, 10 Mar 2010 14:35:55 +0100 (CET) Subject: [Frugalware-git] frugalware-current: code-browser-3.17-1-i686 * version bump Message-ID: <20100310133555.1652D1240003@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=708a84e1f94fb764b36de575d914743b6aa5210f commit 708a84e1f94fb764b36de575d914743b6aa5210f Author: James Buren Date: Wed Mar 10 07:27:18 2010 -0600 code-browser-3.17-1-i686 * version bump diff --git a/source/xapps-extra/code-browser/FrugalBuild b/source/xapps-extra/code-browser/FrugalBuild index d1b9517..8817234 100644 --- a/source/xapps-extra/code-browser/FrugalBuild +++ b/source/xapps-extra/code-browser/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: James Buren pkgname=code-browser -pkgver=3.15 +pkgver=3.17 pkgrel=1 pkgdesc="A folding text editor designed especially for source code." url="http://tibleiz.net/code-browser" @@ -14,7 +14,7 @@ depends=('gtk+2' 'glibc' 'libxau' 'libxdmcp' 'libxext' 'libxdamage' 'libxml2') makedepends=('imagemagick') groups=('xapps-extra') archs=('i686' 'x86_64') -sha1sums=('d649a0876ee1904e74feb244411b77f2c1f4f88a' \ +sha1sums=('a8e3274a8ba7a04253d6312ad88c4d3f9c7f9806' \ 'f015e1cf4519ae6165b73f789a15cda1ca57c64d') _F_desktop_name="Code Browser" _F_desktop_icon="$pkgname" From ryuo at frugalware.org Wed Mar 10 14:35:55 2010 From: ryuo at frugalware.org (James Buren) Date: Wed, 10 Mar 2010 14:35:55 +0100 (CET) Subject: [Frugalware-git] frugalware-current: tintin-2.00.0-1-i686 * version bump * fix up2date Message-ID: <20100310133555.312331240004@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=fbc951cb69fb8b63c3421b5a5bba84348b835295 commit fbc951cb69fb8b63c3421b5a5bba84348b835295 Author: James Buren Date: Wed Mar 10 07:31:56 2010 -0600 tintin-2.00.0-1-i686 * version bump * fix up2date diff --git a/source/games-extra/tintin/FrugalBuild b/source/games-extra/tintin/FrugalBuild index d80b312..b93c8e0 100644 --- a/source/games-extra/tintin/FrugalBuild +++ b/source/games-extra/tintin/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: James Buren pkgname=tintin -pkgver=1.99.9 +pkgver=2.00.0 pkgrel=1 pkgdesc="A console mud client from which other mud clients have been written." _F_googlecode_dirname="tintin-mud-client" @@ -10,8 +10,10 @@ Finclude googlecode depends=('zlib') groups=('games-extra') archs=('i686' 'x86_64') -sha1sums=('ee0607ff08734064594b099133f6f670fd7a7e8a') +sha1sums=('06032fcd4b9e2a7e418cc7aaafa6793c2410ba29') _F_cd_path="tt/src" +# tweak up2date so it works correctly now +up2date="${up2date/.tar.gz/-osx.tar.gz}" build() { From ryuo at frugalware.org Wed Mar 10 14:44:44 2010 From: ryuo at frugalware.org (James Buren) Date: Wed, 10 Mar 2010 14:44:44 +0100 (CET) Subject: [Frugalware-git] frugalware-current: libconfig-1.4.3-1-i686 * version bump Message-ID: <20100310134444.D69D51240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=d6b01c9d9b2e7682f1feb3c5a4321150f426dbd4 commit d6b01c9d9b2e7682f1feb3c5a4321150f426dbd4 Author: James Buren Date: Wed Mar 10 07:35:38 2010 -0600 libconfig-1.4.3-1-i686 * version bump diff --git a/source/lib-extra/libconfig/FrugalBuild b/source/lib-extra/libconfig/FrugalBuild index deba3a9..02e8c3e 100644 --- a/source/lib-extra/libconfig/FrugalBuild +++ b/source/lib-extra/libconfig/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: James Buren pkgname=libconfig -pkgver=1.4.2 +pkgver=1.4.3 pkgrel=1 pkgdesc="Configuration file library for C and C++." url="http://hyperrealm.com/libconfig/libconfig.html" @@ -11,6 +11,6 @@ groups=('lib-extra') archs=('i686' 'x86_64') up2date="Flasttar $url" source=(http://hyperrealm.com/libconfig/$pkgname-$pkgver.tar.gz) -sha1sums=('6ac073687f8135ea0579751527db71d711410d27') +sha1sums=('2f6a8235860d367731cf423afd4b53507cf066d0') # optimization OK From ryuo at frugalware.org Wed Mar 10 14:44:44 2010 From: ryuo at frugalware.org (James Buren) Date: Wed, 10 Mar 2010 14:44:44 +0100 (CET) Subject: [Frugalware-git] frugalware-current: textadept-2.1-1-i686 * version bump Message-ID: <20100310134444.EB9D51240003@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=5956fd6c3551844259a209604ad946c3a3525b29 commit 5956fd6c3551844259a209604ad946c3a3525b29 Author: James Buren Date: Wed Mar 10 07:40:54 2010 -0600 textadept-2.1-1-i686 * version bump diff --git a/source/xapps-extra/textadept/FrugalBuild b/source/xapps-extra/textadept/FrugalBuild index 6eb2e01..d3830e0 100644 --- a/source/xapps-extra/textadept/FrugalBuild +++ b/source/xapps-extra/textadept/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: James Buren pkgname=textadept -pkgver=2.0 +pkgver=2.1 pkgrel=1 pkgdesc='An extremely extensible Text Editor, uses a modified version of Scintilla.' _F_googlecode_sep='_' @@ -17,7 +17,7 @@ archs=('i686' 'x86_64') _F_desktop_name="Text Adept" _F_desktop_icon="$pkgname" _F_desktop_categories="GTK;Development;Utility;TextEditor;" -sha1sums=('1964282d8a409c89a236da4f924f4cc0a80f1b37' \ +sha1sums=('1719a8a99d0935969f9715fef7fb15df06a9ed8c' \ '9140fd8366f6cf877301c885877531c4e12f7537' \ '38b85c9588f62bd9933797ed6d0fd2d2bb93544f') From ryuo at frugalware.org Wed Mar 10 15:35:29 2010 From: ryuo at frugalware.org (James Buren) Date: Wed, 10 Mar 2010 15:35:29 +0100 (CET) Subject: [Frugalware-git] frugalware-current: medit-0.10.0-1-i686 * version bump * remove old dependencies Message-ID: <20100310143529.C1C301240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=97e24381972bdf197c3a34e24ba23458dfd128ec commit 97e24381972bdf197c3a34e24ba23458dfd128ec Author: James Buren Date: Wed Mar 10 08:31:11 2010 -0600 medit-0.10.0-1-i686 * version bump * remove old dependencies diff --git a/source/xapps-extra/medit/FrugalBuild b/source/xapps-extra/medit/FrugalBuild index 4dedba5..3456267 100644 --- a/source/xapps-extra/medit/FrugalBuild +++ b/source/xapps-extra/medit/FrugalBuild @@ -3,29 +3,26 @@ # Contributor: detto pkgname=medit -pkgver=0.9.4 -pkgrel=7 +pkgver=0.10.0 +pkgrel=1 pkgdesc="A useful programming and around-programming text editor." -depends=('libxml2' 'pygtk>=2.14.1-2') -rodepends=('vte-python' 'ctags') -makedepends=('intltool' 'perl-xml-parser') +depends=('gtk+2') groups=('xapps-extra') archs=('i686' 'x86_64') _F_sourceforge_ext=".tar.bz2" _F_sourceforge_dirname="mooedit" options=('scriptlet') _F_gnome_iconcache=y -Finclude sourceforge gnome-scriptlet +_F_cmake_type="Release" +Finclude gnome-scriptlet cmake sourceforge source=(${source[@]} frugalbuild.lang) -sha1sums=('99916ee3440d521ccc5976e44c97f595dce925a2' \ +sha1sums=('857ad41aef201d2a687999782e4905136b5d7ad8' \ '8af772c1e82599c1367b6e5e9a422e743d0c82d5') -Fconfopts="${Fconfopts} --disable-generated-files" build() { - Fsed "getline(" "m_getline(" moo/moolua/{ldebug.{h,c},lvm.c} - Fsed "(\"ctags" "(\"exuberant-ctags" moo/mooedit/plugins/ctags/ctags-doc.c - Fbuild - Ffile /usr/share/moo/language-specs/frugalbuild.lang + CMake_build + Fbuild_gnome_scriptlet + Ffile /usr/share/moo/language-specs/frugalbuild.lang } # optimization OK From bouleetbil at frogdev.info Wed Mar 10 16:10:54 2010 From: bouleetbil at frogdev.info (bouleetbil) Date: Wed, 10 Mar 2010 16:10:54 +0100 (CET) Subject: [Frugalware-git] frugalware-current: gobject-introspection-0.6.8-1-x86_64 *version bump Message-ID: <20100310151054.3EE5E1240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=d81812555631f3269126bbf55f477609d15a1137 commit d81812555631f3269126bbf55f477609d15a1137 Author: bouleetbil Date: Wed Mar 10 16:10:13 2010 +0100 gobject-introspection-0.6.8-1-x86_64 *version bump diff --git a/source/xlib-extra/gobject-introspection/FrugalBuild b/source/xlib-extra/gobject-introspection/FrugalBuild index 6ecd5ae..e43687e 100644 --- a/source/xlib-extra/gobject-introspection/FrugalBuild +++ b/source/xlib-extra/gobject-introspection/FrugalBuild @@ -2,13 +2,13 @@ # Maintainer: bouleetbil pkgname=gobject-introspection -pkgver=0.6.7 +pkgver=0.6.8 pkgrel=1 pkgdesc="Generate interface introspection data for GObject libraries." depends=('glib2' 'libffi' 'cairo' 'libxft') groups=('xlib-extra') archs=('i686' 'x86_64' 'ppc') Finclude gnome -sha1sums=('3bcf1f694e6603c2645c579b7d358feb10ece14c') +sha1sums=('e9fbb40007b82f561109a8c9cc580206700bb75a') # optimization OK From devil505linux at gmail.com Wed Mar 10 17:57:44 2010 From: devil505linux at gmail.com (Devil505) Date: Wed, 10 Mar 2010 17:57:44 +0100 (CET) Subject: [Frugalware-git] frugalware-current: gwibber-2.0.0-11-i686 * fixing depends Message-ID: <20100310165744.D57941240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=c2d67ed7c7aca6972f5f04fbe30703b70d47e9f7 commit c2d67ed7c7aca6972f5f04fbe30703b70d47e9f7 Author: Devil505 Date: Wed Mar 10 17:56:10 2010 +0100 gwibber-2.0.0-11-i686 * fixing depends diff --git a/source/gnome-extra/gwibber/FrugalBuild b/source/gnome-extra/gwibber/FrugalBuild index a39a92b..2fc7136 100644 --- a/source/gnome-extra/gwibber/FrugalBuild +++ b/source/gnome-extra/gwibber/FrugalBuild @@ -3,10 +3,10 @@ pkgname=gwibber pkgver=2.0.0 -pkgrel=10 +pkgrel=11 pkgdesc="Open Source microblogging client for GNOME, with webkit" url="https://launchpad.net/gwibber" -depends=('python-simplejson' 'pygtk' 'dbus-python' 'pywebkitgtk>=1.1.6-2' 'gnome-python' 'egenix-mx-base' 'feedparser' 'python-mako' 'gnome-python-desktop' 'notify-python' 'imaging' 'aspell' 'pycurl') +depends=('python-simplejson' 'pygtk' 'dbus-python' 'pywebkitgtk>=1.1.6-2' 'gnome-python' 'egenix-mx-base' 'feedparser' 'mako' 'gnome-python-desktop' 'notify-python' 'imaging' 'aspell' 'pycurl') makedepends=('setuptools' 'python-distutils-extra' 'intltool') options=('scriptlet') groups=('gnome-extra') From devil505linux at gmail.com Wed Mar 10 18:14:27 2010 From: devil505linux at gmail.com (Devil505) Date: Wed, 10 Mar 2010 18:14:27 +0100 (CET) Subject: [Frugalware-git] frugalware-current: perl-poe-1.287-1-i686 * version bump Message-ID: <20100310171427.3FC451240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=45ff12229b351c3920dcc2413f97d1783170ef3d commit 45ff12229b351c3920dcc2413f97d1783170ef3d Author: Devil505 Date: Wed Mar 10 18:13:12 2010 +0100 perl-poe-1.287-1-i686 * version bump diff --git a/source/devel-extra/perl-poe/FrugalBuild b/source/devel-extra/perl-poe/FrugalBuild index 72648f3..e3668ca 100644 --- a/source/devel-extra/perl-poe/FrugalBuild +++ b/source/devel-extra/perl-poe/FrugalBuild @@ -3,7 +3,7 @@ # Contributor: Zsolt Szalai pkgname=perl-poe -pkgver=1.284 +pkgver=1.287 pkgrel=1 pkgdesc="portable multitasking and networking framework for Perl" _F_perl_name=POE @@ -21,4 +21,4 @@ build() { make || Fdie Fmakeinstall } -sha1sums=('1dff9544fe11cb1723789489237df618126f75d0') +sha1sums=('48522d073e5d6d6b22f265960794f977c3fdf698') From devil505linux at gmail.com Wed Mar 10 18:20:56 2010 From: devil505linux at gmail.com (Devil505) Date: Wed, 10 Mar 2010 18:20:56 +0100 (CET) Subject: [Frugalware-git] frugalware-current: guake-0.4.1-1-i686 * fixing up2date Message-ID: <20100310172056.2BEDB1240003@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=c885d2f5b494f22be2ec84088a7c1e45d55ea8df commit c885d2f5b494f22be2ec84088a7c1e45d55ea8df Author: Devil505 Date: Wed Mar 10 18:19:49 2010 +0100 guake-0.4.1-1-i686 * fixing up2date diff --git a/source/gnome-extra/guake/FrugalBuild b/source/gnome-extra/guake/FrugalBuild index 048d645..3eb8fa4 100644 --- a/source/gnome-extra/guake/FrugalBuild +++ b/source/gnome-extra/guake/FrugalBuild @@ -15,7 +15,7 @@ _F_gnome_schemas=('/etc/gconf/schemas/guake.schemas') Finclude gnome-scriptlet groups=('gnome-extra') archs=('i686' 'x86_64' 'ppc') -up2date="lynx -dump http://trac.guake-terminal.org/files/ | Flasttar" +up2date="lynx -dump http://guake.org/files/ | Flasttar" source=(http://trac.guake-terminal.org/files/$pkgname-$pkgver.tar.gz) sha1sums=('dca2c16ce22b9d2a01e85428d541b2238e89fbb4') From devil505linux at gmail.com Wed Mar 10 18:20:56 2010 From: devil505linux at gmail.com (Devil505) Date: Wed, 10 Mar 2010 18:20:56 +0100 (CET) Subject: [Frugalware-git] frugalware-current: playonlinux-3.7.3-1-i686 * fixing up2date Message-ID: <20100310172056.16A0E1240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=c3ddef7bd0d489cf96817a4075c2556a40b48232 commit c3ddef7bd0d489cf96817a4075c2556a40b48232 Author: Devil505 Date: Wed Mar 10 18:15:50 2010 +0100 playonlinux-3.7.3-1-i686 * fixing up2date diff --git a/source/xapps-extra/playonlinux/FrugalBuild b/source/xapps-extra/playonlinux/FrugalBuild index 1e158b5..532439c 100644 --- a/source/xapps-extra/playonlinux/FrugalBuild +++ b/source/xapps-extra/playonlinux/FrugalBuild @@ -13,7 +13,7 @@ archs=('i686' '!x86_64') _F_archive_name="PlayOnLinux" Fpkgversep="_" _F_cd_path="$pkgname" -up2date="lynx -dump $url/en/download.html#generic | Flasttar" +up2date="lynx -dump $url/en/download-generic.html | Flasttar" source=(http://www.playonlinux.com/script_files/$_F_archive_name/$pkgver/${_F_archive_name}_$pkgver.tar.gz) sha1sums=('1f75e0efc97589b35efec483bfa4b4e5a37553d1') From devil505linux at gmail.com Wed Mar 10 18:20:56 2010 From: devil505linux at gmail.com (Devil505) Date: Wed, 10 Mar 2010 18:20:56 +0100 (CET) Subject: [Frugalware-git] frugalware-current: bleachbit-0.7.3-1-i686 * version bump Message-ID: <20100310172056.5ED571240004@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=f5274d82f05bad6fabac6a2f2ce3f279c0ea8ebb commit f5274d82f05bad6fabac6a2f2ce3f279c0ea8ebb Author: Devil505 Date: Wed Mar 10 18:20:12 2010 +0100 bleachbit-0.7.3-1-i686 * version bump diff --git a/source/xapps-extra/bleachbit/FrugalBuild b/source/xapps-extra/bleachbit/FrugalBuild index e37f7f2..bb05216 100644 --- a/source/xapps-extra/bleachbit/FrugalBuild +++ b/source/xapps-extra/bleachbit/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: Devil505 pkgname=bleachbit -pkgver=0.7.2 +pkgver=0.7.3 pkgrel=1 pkgdesc="BleachBit deletes unnecessary files to free valuable disk space and maintain privacy." depends=('pygtk>=2.14.1-2') @@ -11,7 +11,7 @@ _F_sourceforge_ext=".tar.bz2" Finclude sourceforge groups=('xapps-extra') archs=('i686' 'x86_64') -sha1sums=('1fff4832b2d1d514c44254392a6fac5e5ad7a057') +sha1sums=('28b41157a722145b5719e82a6567a4c07f8f8c56') build() { Fsed "prefix ?= /usr/local" "prefix ?= /usr" Makefile From devil505linux at gmail.com Wed Mar 10 18:23:04 2010 From: devil505linux at gmail.com (Devil505) Date: Wed, 10 Mar 2010 18:23:04 +0100 (CET) Subject: [Frugalware-git] frugalware-current: perl-filter-template-1.040-1-i686 * version bump Message-ID: <20100310172304.3C0EC1240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=0dad4e787fedf6c44fa2567da95c89a6ae825e4f commit 0dad4e787fedf6c44fa2567da95c89a6ae825e4f Author: Devil505 Date: Wed Mar 10 18:22:33 2010 +0100 perl-filter-template-1.040-1-i686 * version bump diff --git a/source/devel-extra/perl-filter-template/FrugalBuild b/source/devel-extra/perl-filter-template/FrugalBuild index daba6a0..18e607b 100644 --- a/source/devel-extra/perl-filter-template/FrugalBuild +++ b/source/devel-extra/perl-filter-template/FrugalBuild @@ -3,13 +3,13 @@ _F_perl_name=Filter-Template _F_perl_author=R/RC/RCAPUTO -pkgver=1.03 +pkgver=1.040 pkgrel=1 pkgdesc="Source filter for code templates or macros." depends=('') Finclude perl groups=('devel-extra') archs=('i686' 'x86_64') -sha1sums=('be3cb7cdfba8aad9b9122bf167269bca105dcd63') +sha1sums=('979998c0c043a068af581e281a9f4396104aba02') From devil505linux at gmail.com Wed Mar 10 18:27:36 2010 From: devil505linux at gmail.com (Devil505) Date: Wed, 10 Mar 2010 18:27:36 +0100 (CET) Subject: [Frugalware-git] frugalware-current: printoxx-2.4-1-i686 * version bump Message-ID: <20100310172736.07BEF1240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=93a81f3636e755db345d47a7dc8df31848d15bbf commit 93a81f3636e755db345d47a7dc8df31848d15bbf Author: Devil505 Date: Wed Mar 10 18:26:26 2010 +0100 printoxx-2.4-1-i686 * version bump diff --git a/source/xapps-extra/printoxx/FrugalBuild b/source/xapps-extra/printoxx/FrugalBuild index 8951017..52f2e27 100644 --- a/source/xapps-extra/printoxx/FrugalBuild +++ b/source/xapps-extra/printoxx/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: Devil505 pkgname=printoxx -pkgver=2.3.1 +pkgver=2.4 pkgrel=1 pkgdesc="Printoxx is a free open source Linux program for printing one or more image files with a user-defined page layout." 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=('4a8e2cd8a33839313523337c9b3fff3176eaaf11') +sha1sums=('bb71c7b6b3267a6c02711cd2659dbce76ebdd565') build() { From devil505linux at gmail.com Wed Mar 10 18:30:42 2010 From: devil505linux at gmail.com (Devil505) Date: Wed, 10 Mar 2010 18:30:42 +0100 (CET) Subject: [Frugalware-git] frugalware-current: simple-scan-0.9.7-1-i686 * version bump Message-ID: <20100310173042.16EF61240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=3294463bcfa378532b10a3d776adac512b8b8ca5 commit 3294463bcfa378532b10a3d776adac512b8b8ca5 Author: Devil505 Date: Wed Mar 10 18:29:55 2010 +0100 simple-scan-0.9.7-1-i686 * version bump diff --git a/source/gnome-extra/simple-scan/FrugalBuild b/source/gnome-extra/simple-scan/FrugalBuild index 848407d..842738d 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.6 +pkgver=0.9.7 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=('2e246a3af0828778527bbabd7979111228eef062') +sha1sums=('605b691188fa528a21db22a5a9dc160e1c3b3aa7') From devil505linux at gmail.com Wed Mar 10 18:57:56 2010 From: devil505linux at gmail.com (Devil505) Date: Wed, 10 Mar 2010 18:57:56 +0100 (CET) Subject: [Frugalware-git] frugalware-current: stormbaancoureur-2.1.6-1-i686 * version bump Message-ID: <20100310175756.D54CF1240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=6883a321932e1cc6c37b9b696491538723daa0f3 commit 6883a321932e1cc6c37b9b696491538723daa0f3 Author: Devil505 Date: Wed Mar 10 18:53:02 2010 +0100 stormbaancoureur-2.1.6-1-i686 * version bump diff --git a/source/games-extra/stormbaancoureur/FrugalBuild b/source/games-extra/stormbaancoureur/FrugalBuild index 842ded3..438ddec 100644 --- a/source/games-extra/stormbaancoureur/FrugalBuild +++ b/source/games-extra/stormbaancoureur/FrugalBuild @@ -3,16 +3,16 @@ # Contributor: jedifox pkgname=stormbaancoureur -pkgver=2.1.5 +pkgver=2.1.6 pkgrel=1 pkgdesc="Simulated Obstacle Course For Automobiles" -url="http://bram.creative4vision.nl/$pkgname" +url="http://www.stolk.org/stormbaancoureur/" depends=('plib' 'ode' 'freeglut' 'libgl' 'alsa-lib' 'libgcc' 'libxext' 'libxdamage') groups=('games-extra') archs=('i686' 'x86_64') up2date="lynx -dump $url/download/ |Flasttar" source=($url/download/$pkgname-$pkgver.tar.gz) -sha1sums=('3cbd1cb0879e143e5eb45699f133a5636a8eb0b7') +sha1sums=('2fbeecbfad7ee208c1e04483a764c2437edbcc19') _F_cd_path="$pkgname-$pkgver/src-$pkgname" _F_desktop_name="Stormbaan Coureur" From devil505linux at gmail.com Wed Mar 10 19:56:34 2010 From: devil505linux at gmail.com (Devil505) Date: Wed, 10 Mar 2010 19:56:34 +0100 (CET) Subject: [Frugalware-git] frugalware-current: python-mygpoclient-1.1-1-i686 * new package (for gpodder) Message-ID: <20100310185634.771ED1240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=f5989bbbb822576ce9bd44fdd4f3dd8333243a83 commit f5989bbbb822576ce9bd44fdd4f3dd8333243a83 Author: Devil505 Date: Wed Mar 10 19:55:44 2010 +0100 python-mygpoclient-1.1-1-i686 * new package (for gpodder) diff --git a/source/devel-extra/python-mygpoclient/FrugalBuild b/source/devel-extra/python-mygpoclient/FrugalBuild new file mode 100644 index 0000000..f0528e2 --- /dev/null +++ b/source/devel-extra/python-mygpoclient/FrugalBuild @@ -0,0 +1,20 @@ +# Compiling Time: 0.05 SBU +# Maintainer: Devil505 + +pkgname=python-mygpoclient +pkgver=1.1 +pkgrel=1 +pkgdesc="Client library for the my.gpodder.org web service" +url="http://thpinfo.com/2010/mygpoclient/" +depends=('python') +groups=('devel-extra') +archs=('i686') +_F_archive_name="mygpoclient" +up2date="Flasttar $url" +source=(http://thpinfo.com/2010/mygpoclient/$_F_archive_name-$pkgver.tar.gz) +sha1sums=('25c77cc3b54298541205fd2abe7ede69b2b373ae') + +build() { + Fcd $_F_archive_name-$pkgver + python setup.py install --root=$Fdestdir || Fdie +} From devil505linux at gmail.com Wed Mar 10 19:59:49 2010 From: devil505linux at gmail.com (Devil505) Date: Wed, 10 Mar 2010 19:59:49 +0100 (CET) Subject: [Frugalware-git] frugalware-current: python-mygpoclient-1.1-1-i686 * add x86_64 to archs Message-ID: <20100310185949.BB1631240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=0939f561f0e5fd1d261819b2c87324a893451b48 commit 0939f561f0e5fd1d261819b2c87324a893451b48 Author: Devil505 Date: Wed Mar 10 19:59:20 2010 +0100 python-mygpoclient-1.1-1-i686 * add x86_64 to archs diff --git a/source/devel-extra/python-mygpoclient/FrugalBuild b/source/devel-extra/python-mygpoclient/FrugalBuild index f0528e2..dd49f6f 100644 --- a/source/devel-extra/python-mygpoclient/FrugalBuild +++ b/source/devel-extra/python-mygpoclient/FrugalBuild @@ -8,7 +8,7 @@ pkgdesc="Client library for the my.gpodder.org web service" url="http://thpinfo.com/2010/mygpoclient/" depends=('python') groups=('devel-extra') -archs=('i686') +archs=('i686' 'x86_64') _F_archive_name="mygpoclient" up2date="Flasttar $url" source=(http://thpinfo.com/2010/mygpoclient/$_F_archive_name-$pkgver.tar.gz) From hermier at frugalware.org Wed Mar 10 20:04:10 2010 From: hermier at frugalware.org (Michel Hermier) Date: Wed, 10 Mar 2010 20:04:10 +0100 (CET) Subject: [Frugalware-git] frugalware-current: thunderbird-i18n-3.0.3-1-i686 Message-ID: <20100310190410.D8DA61240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=07c3028d22643561790c8b49d56097ca407150e5 commit 07c3028d22643561790c8b49d56097ca407150e5 Author: Michel Hermier Date: Wed Mar 10 20:03:06 2010 +0100 thunderbird-i18n-3.0.3-1-i686 * Bump version. diff --git a/source/locale-extra/thunderbird-i18n/FrugalBuild b/source/locale-extra/thunderbird-i18n/FrugalBuild index 3480711..193fb04 100644 --- a/source/locale-extra/thunderbird-i18n/FrugalBuild +++ b/source/locale-extra/thunderbird-i18n/FrugalBuild @@ -2,57 +2,57 @@ # Maintainer: Michel Hermier _F_mozilla_i18n_name=thunderbird -pkgver=3.0.1 -pkgrel=2 +pkgver=3.0.3 +pkgrel=1 Finclude mozilla-i18n -mozilla_i18n_lang_add "af" 'e2a379be9e0f0e83b19ff8eeb4ff803b308882ab' -mozilla_i18n_lang_add "ar" '010c0434518547e9fdd614bbf58c4384b3749e14' -mozilla_i18n_lang_add "be" '9fbb877fb55b01ca14856d0204dcd18174fc14cd' -mozilla_i18n_lang_add "bg" '308825c40bfdd373bee6cc7400aa35fa7bd994ec' -mozilla_i18n_lang_add "bn-BD" 'a7e0ead72f52cee0c2d7e63b89d44323efa364d6' -mozilla_i18n_lang_add "ca" '433b06dbe5453c7a225fa9ea850673675279e1b7' -mozilla_i18n_lang_add "cs" 'bf75e1957509bc9d7f068903c4102aeafed17c2e' -mozilla_i18n_lang_add "da" 'd00eae0311041548f2e5e683e846e7c1943ec6fb' -mozilla_i18n_lang_add "de" 'e4708de29474a5dd218b4cb6032bf11a1b691454' -mozilla_i18n_lang_add "el" 'dd5ce16ccf9fe7af5c5d3258924342d641e85f5b' -mozilla_i18n_lang_add "en-GB" '09db9b224efcb9ab9ee4041130a6c615b8fd2a99' -mozilla_i18n_lang_add "es-AR" '6b05423c53c361bd44b92452b3b6be404e59ba19' -mozilla_i18n_lang_add "es-ES" 'b63001bb2eca2a21536c98d31dff847197ad8e7c' -mozilla_i18n_lang_add "et" '28e40c179abd46d6032cd3d8443819f7a7478a71' -mozilla_i18n_lang_add "eu" 'ecf92a3deff31a19018af433464babfd8f9f1f79' -mozilla_i18n_lang_add "fi" 'f23f84395d5e649af703b0425ba2d5d7378dcf4c' -mozilla_i18n_lang_add "fr" '21aac50fc1f0e175cc8f9fcf4c9e3b2ae586323d' -mozilla_i18n_lang_add "fy-NL" '4a6b5bca0a7034ef999096190a89090490ac5a2c' -mozilla_i18n_lang_add "ga-IE" '1c60598bc536e1ecf662db37b5a5d985c01ba61c' -mozilla_i18n_lang_add "gl" 'cb506aebae67ba6256af83b1db3fd0d144d7e620' -mozilla_i18n_lang_add "he" '62d58822f8e710d261992d0cca9164c1206a34b9' -mozilla_i18n_lang_add "hu" '97b4de5556ab8861b42a9ae421e925bc6a33a0bb' -mozilla_i18n_lang_add "id" '35cfd8b74338d31aa83a93381f5d1901546b5e16' -mozilla_i18n_lang_add "is" '41fd0b7beaf045be714fe80b415e9a839fb6f647' -mozilla_i18n_lang_add "it" '7fddb230584fe646f7b1937732ed7410baaba7cd' -mozilla_i18n_lang_add "ja" '98e6bd85716e2c1f927aa32ca1e47087e19570f3' -mozilla_i18n_lang_add "ka" '51e177235c26d290c69aecae41c4fc4b2b08236a' -mozilla_i18n_lang_add "ko" '6a8d0ace894c3a7e86b58b0945828267e3355517' -mozilla_i18n_lang_add "lt" '67698778e5f65bb6d31cbffb119e6ce5bafc282d' -mozilla_i18n_lang_add "nb-NO" 'aad795d6c0fb7da2497bd6d42a15fc2b4bb5253d' -mozilla_i18n_lang_add "nl" 'a18cbbb12bc22e57892edd10b477bb87eed71ce8' -mozilla_i18n_lang_add "nn-NO" 'a2fe58579482e7c8eeca1d56be9650f9b4d90568' -mozilla_i18n_lang_add "pa-IN" '6c737f6941e29b405c17464c0abf058bf0e2a65c' -mozilla_i18n_lang_add "pl" 'fc71b9713184210e130b650ed381b6c696b171d6' -mozilla_i18n_lang_add "pt-BR" '8423e1c578502f988be6be202e36a3823743cc6e' -mozilla_i18n_lang_add "pt-PT" 'e8081bf4781ffbd3c7af0b7c16f3502eba721e60' -mozilla_i18n_lang_add "ro" '4a77f664883b1326e864c78f7d0b777171a8151a' -mozilla_i18n_lang_add "ru" 'f6614cd8041d44c59aa111e1409bd8f2a5b52313' -mozilla_i18n_lang_add "si" '157f267a85e764ff9a5385dee4d8e27b4d58bffa' -mozilla_i18n_lang_add "sk" '5722eb80d4ac60e80341c30dd2c045dc960f3bdf' -mozilla_i18n_lang_add "sq" '57581d6d94a8312cb7479abcf1c3a918cd017193' -mozilla_i18n_lang_add "sr" '53265b9ecea041cf8249ae0ca70e8c01a0f1213f' -mozilla_i18n_lang_add "sv-SE" '742593dc9fc58222b8316997c2beff756de031e1' -mozilla_i18n_lang_add "ta-LK" '10eb2cec7912bad97e9fea37bf08604ad5a45355' -mozilla_i18n_lang_add "tr" '152caf83890b830982a089665b8c27a084cf45be' -mozilla_i18n_lang_add "uk" '754bf42571e9741377de3bb2b1b0904c2ee9c26f' -mozilla_i18n_lang_add "vi" '8284e6ead456598043f5ce567a67c012fc817721' -mozilla_i18n_lang_add "zh-CN" 'ed7506510dfdd6ad5da899a8feb23258df656f75' -mozilla_i18n_lang_add "zh-TW" '83d17c3b43908c2d734d6f96a5d833549a1bda44' +mozilla_i18n_lang_add 'af' '98701231a628d5883cf01881382dd382eb0aebff' +mozilla_i18n_lang_add 'ar' 'c77cf957974ff02a0a9ff615ce85e6d4855e399c' +mozilla_i18n_lang_add 'be' 'b56cac82a6a27acf762c7c2e1b5704d13341da11' +mozilla_i18n_lang_add 'bg' '23a7256eaba734b87287607f3279a741abf830d9' +mozilla_i18n_lang_add 'bn-BD' '9d5ee2efc14a9f6cdba1214f2e1d09342803aeb5' +mozilla_i18n_lang_add 'ca' '18d2be902a8f87667aa25306684ca4a166022b47' +mozilla_i18n_lang_add 'cs' '6b4d62d039251db25decdf5dfaeb6c2ddfba41ac' +mozilla_i18n_lang_add 'da' '0171d6a87f2cf274343c2e76fb8be44187650af4' +mozilla_i18n_lang_add 'de' 'e57da45d4a7274d6f123b5c49096739edc4bd3f9' +mozilla_i18n_lang_add 'el' '23ca9cd007362d92c2cb6e42e44ef26c156beb91' +mozilla_i18n_lang_add 'en-GB' '5bf1cbb750850b22e96a61e7b90bbd3ea52ff1f5' +mozilla_i18n_lang_add 'es-AR' 'bc0791396d690b0e1e1a8bbcaa3910d4a42a3980' +mozilla_i18n_lang_add 'es-ES' 'be1775763988e78005250c6f94ac8a000adf2458' +mozilla_i18n_lang_add 'et' '0af26ec98f2a81893a34fdadaba07ed2107d6dc0' +mozilla_i18n_lang_add 'eu' '3c33a8cef021ddce19b1ea7f957348043df7540b' +mozilla_i18n_lang_add 'fi' '84600bfa026c6c8338f71115c396deb01781acda' +mozilla_i18n_lang_add 'fr' 'b9e54f710f8a36b8aeb80802e2d6879d0110b958' +mozilla_i18n_lang_add 'fy-NL' '9df414e5dac40ce09bbff5a476ee46b22b047a83' +mozilla_i18n_lang_add 'ga-IE' '82b1676e22d834d62d1b7dfd3922e4f0527e29ca' +mozilla_i18n_lang_add 'gl' 'da4dec1e5747fb7774360b02046e7761aa65e148' +mozilla_i18n_lang_add 'he' '1553ec4e58c8e85f6cf5d6f5b43e024d0fc5ec8a' +mozilla_i18n_lang_add 'hu' 'fd5e80d7199d3aeb192ac411fc7ab29024f8448f' +mozilla_i18n_lang_add 'id' 'ed4fa5aebf3ad55cebc727d185786245ccda530a' +mozilla_i18n_lang_add 'is' '51272eb8e6a4c9d1f850d802d51ce1de24b6c95e' +mozilla_i18n_lang_add 'it' '9922bbc4cfb5b6f4fa2d79ffae028b016a57e398' +mozilla_i18n_lang_add 'ja' '734b725b1f0c356c25fb1c9f46fbd5915edbf43d' +mozilla_i18n_lang_add 'ka' '818b567eaeb2becaeba99e35631c9ca552610b49' +mozilla_i18n_lang_add 'ko' '561edbd7c44591c4d4b9cbeb1d9c70e1ea3ddf12' +mozilla_i18n_lang_add 'lt' 'f94c6602f5c0b811315c2531efabb50229872ac6' +mozilla_i18n_lang_add 'nb-NO' '6423ee15e315d7fd212b5bf6e8619349abf8cd2a' +mozilla_i18n_lang_add 'nl' '554b3171127e32caced36a4d09d7003d3c044b2a' +mozilla_i18n_lang_add 'nn-NO' 'a3b7a035bfbb71a12858446ea6be10de3700ebae' +mozilla_i18n_lang_add 'pa-IN' 'f28b3bbf7317efded6d4ed48865ca8e3a506bc62' +mozilla_i18n_lang_add 'pl' 'cf0866f63aa1b7b819f29f80b0e459fb5769da85' +mozilla_i18n_lang_add 'pt-BR' '8bcbfed4077861f59ff4cd9f3631f90cc4cd6109' +mozilla_i18n_lang_add 'pt-PT' '1ac0c9fab217cda9616a90c2ac2ac3399224547c' +mozilla_i18n_lang_add 'ro' 'f4f06cb585557de51458b8d7ed5781bcffa2758b' +mozilla_i18n_lang_add 'ru' 'fb2a4d215175ca99dcd8096bed1fc7f0c065b68e' +mozilla_i18n_lang_add 'si' 'c13770f8d64062112073729a3606e7b130cc8395' +mozilla_i18n_lang_add 'sk' '6a183e1b20af4c86ce0835b8f8952e853932e682' +mozilla_i18n_lang_add 'sq' '14155bfc45e1e38f2e31a2ef1d9fabe8959f77e5' +mozilla_i18n_lang_add 'sr' 'ecb7fe859b03452694f37a6ba6fc750e51fcc39a' +mozilla_i18n_lang_add 'sv-SE' 'd177db629be7a8e95250fa85ea49ed5ab3cc4d6e' +mozilla_i18n_lang_add 'ta-LK' 'c7089f086e9a15d25ff5e10a906508c7dc10341f' +mozilla_i18n_lang_add 'tr' 'e3a65ca0dd5805cdaaa262a49d63b7f671913cab' +mozilla_i18n_lang_add 'uk' '127c16575bb94f115fe5b0fdb1c812f590fff976' +mozilla_i18n_lang_add 'vi' '2a30cbce506a190ddcefac5bbd98c9a4991f1bd9' +mozilla_i18n_lang_add 'zh-CN' 'e7bbc514d78b19b9836e983ced633fa0ce7e43d2' +mozilla_i18n_lang_add 'zh-TW' 'abfdddb28d07be2addf999e0b3a71cc5eb0c450f' mozilla_i18n_lang_fini From devil505linux at gmail.com Wed Mar 10 20:08:26 2010 From: devil505linux at gmail.com (Devil505) Date: Wed, 10 Mar 2010 20:08:26 +0100 (CET) Subject: [Frugalware-git] frugalware-current: gpodder-2.3-1-i686 * version bump Message-ID: <20100310190827.947C51240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=a86c84ea0ff67345d00d78e090585db4771e9cd5 commit a86c84ea0ff67345d00d78e090585db4771e9cd5 Author: Devil505 Date: Wed Mar 10 20:06:39 2010 +0100 gpodder-2.3-1-i686 * version bump diff --git a/source/gnome-extra/gpodder/FrugalBuild b/source/gnome-extra/gpodder/FrugalBuild index 35390fa..42e83ec 100644 --- a/source/gnome-extra/gpodder/FrugalBuild +++ b/source/gnome-extra/gpodder/FrugalBuild @@ -2,17 +2,17 @@ # Maintainer: Devil505 pkgname=gpodder -pkgver=2.0 +pkgver=2.3 pkgrel=1 pkgdesc="A podcast receiver/catcher." -depends=('pygtk' 'pyxml' 'wget' 'python' 'libglade' 'imagemagick>=6.4.8_9' 'feedparser' 'pysqlite2') -makedepends=('help2man') +depends=('pygtk' 'pyxml' 'wget' 'python' 'libglade' 'imagemagick>=6.4.8_9' 'feedparser' 'pysqlite2' 'python-mygpoclient') +makedepends=('intltool' 'help2man') groups=('gnome-extra') archs=('i686' 'x86_64') Finclude berlios _F_gnome_iconcache="y" options=('scriptlet') Finclude gnome-scriptlet -sha1sums=('47841ff1832dd222b7c63f765660b3d9716cbe95') +sha1sums=('744831b842da22c052ab368de2211c166f36426a') From cedynamix at gmail.com Wed Mar 10 20:13:49 2010 From: cedynamix at gmail.com (Cedynamix) Date: Wed, 10 Mar 2010 20:13:49 +0100 (CET) Subject: [Frugalware-git] frugalware-current: goffice-0.8.1-1-i686 Message-ID: <20100310191349.6BD841240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=58f6560ae1c6c0a6101f81e97e4db3c6ff076ca0 commit 58f6560ae1c6c0a6101f81e97e4db3c6ff076ca0 Author: Cedynamix Date: Wed Mar 10 20:11:44 2010 +0100 goffice-0.8.1-1-i686 * version bump diff --git a/source/gnome-extra/goffice/FrugalBuild b/source/gnome-extra/goffice/FrugalBuild index d4f0d3d..bcebc1f 100644 --- a/source/gnome-extra/goffice/FrugalBuild +++ b/source/gnome-extra/goffice/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: Cedrick Hannier alias Cedynamix pkgname=goffice -pkgver=0.8.0 +pkgver=0.8.1 pkgrel=1 pkgdesc="A glib/gtk set of document centric objects and utilities" url="http://www.gnome.org/" @@ -13,6 +13,6 @@ archs=('x86_64' 'i686' 'ppc') options=('scriptlet') _F_gnome_scrollkeeper="y" Finclude gnome gnome-scriptlet -sha1sums=('8a5540f91cb1619ee1d96ee65856e81624743acd') +sha1sums=('5d9a4dd72b10cc884a0e27f2baab4f90c25d0e72') # optimization OK From bouleetbil at frogdev.info Wed Mar 10 20:21:51 2010 From: bouleetbil at frogdev.info (bouleetbil) Date: Wed, 10 Mar 2010 20:21:51 +0100 (CET) Subject: [Frugalware-git] gnometesting: tomboy-1.1.4-1-x86_64 *version bump Message-ID: <20100310192151.C52B51240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=ead26a1f06e4713d82e2ccb0a148bad691851ff5 commit ead26a1f06e4713d82e2ccb0a148bad691851ff5 Author: bouleetbil Date: Wed Mar 10 20:20:34 2010 +0100 tomboy-1.1.4-1-x86_64 *version bump diff --git a/source/gnome-extra/tomboy/FrugalBuild b/source/gnome-extra/tomboy/FrugalBuild index ad9b5df..6dffd75 100644 --- a/source/gnome-extra/tomboy/FrugalBuild +++ b/source/gnome-extra/tomboy/FrugalBuild @@ -3,12 +3,12 @@ # Contributor: AlexExtreme pkgname=tomboy -pkgver=1.0.1 +pkgver=1.1.4 pkgrel=1 pkgdesc="A Wiki style desktop note-taking application" url="http://www.beatniksoftware.com/tomboy" -depends=('gnome-sharp' 'gtkspell' 'gnome-panel>=2.28.0' 'galago-sharp' \ -'gmime>=2.4.3' 'ndesk-dbus' 'ndesk-dbus-glib' 'gnome-desktop-sharp>=2.26.0-4' 'mono-addins') +depends=('gnome-sharp' 'gtkspell' 'gnome-panel>=2.29.0' 'galago-sharp' \ +'gmime>=2.4.3' 'ndesk-dbus' 'ndesk-dbus-glib' 'gnome-desktop-sharp>=2.26.0-6' 'mono-addins') makedepends=('intltool' 'gnome-doc-utils') groups=('gnome-extra') archs=('i686' 'x86_64' 'ppc') @@ -17,7 +17,7 @@ _F_gnome_scrollkeeper="y" _F_gnome_desktop="y" _F_gnome_iconcache="y" Finclude gnome gnome-scriptlet mono -sha1sums=('8e92a7fcb6081cc6da68c9ca7975de7920e068ba') +sha1sums=('d063d79233f405d19db5351d59d87ee3b91609fa') build() { Fmonoexport From devil505linux at gmail.com Wed Mar 10 20:47:11 2010 From: devil505linux at gmail.com (Devil505) Date: Wed, 10 Mar 2010 20:47:11 +0100 (CET) Subject: [Frugalware-git] frugalware-current: * removing python-mako (duplicate package with mako) Message-ID: <20100310194711.8DFE81240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=4f3b63876f8efe08d4048a7af98c4715b2c88f8e commit 4f3b63876f8efe08d4048a7af98c4715b2c88f8e Author: Devil505 Date: Wed Mar 10 20:44:38 2010 +0100 * removing python-mako (duplicate package with mako) diff --git a/source/devel-extra/python-mako/FrugalBuild b/source/devel-extra/python-mako/FrugalBuild deleted file mode 100644 index 503fca6..0000000 --- a/source/devel-extra/python-mako/FrugalBuild +++ /dev/null @@ -1,17 +0,0 @@ -# Compiling Time: 0.01 SBU -# Maintainer: Devil505 - -pkgname=python-mako -pkgver=0.3.1 -pkgrel=1 -pkgdesc="Hyperfast and lightweight templating for the Python platform." -url="http://www.makotemplates.org/" -depends=('python') -makedepends=('setuptools') -groups=('devel-extra') -archs=('i686' 'x86_64' 'ppc') -_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=('783b782a5eb23fe72dc1059d27d6d92cc75647b3') From elentir at mailoo.org Wed Mar 10 21:36:01 2010 From: elentir at mailoo.org (Elentir) Date: Wed, 10 Mar 2010 21:36:01 +0100 (CET) Subject: [Frugalware-git] setup: add libx11 package for gui image Message-ID: <20100310203601.A07EA1240011@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=setup.git;a=commitdiff;h=fea2c72440bcd35e9fc98fa8ced6c279e1a440a0 commit fea2c72440bcd35e9fc98fa8ced6c279e1a440a0 Author: Elentir Date: Mon Feb 8 20:27:06 2010 +0100 add libx11 package for gui image diff --git a/Makefile b/Makefile index a5cee9c..f98a540 100644 --- a/Makefile +++ b/Makefile @@ -730,4 +730,13 @@ libxdmcp: $(UNPACK); \ cp -a usr/lib/libXdmcp.so* ../libxdmcp/usr/lib +libx11: + $(CLEANUP) + mkdir -p libx11/usr/{lib,share} + $(UNPACK); \ + cp -a usr/lib/libX11.so* ../libx11/usr/lib/; \ + cp -a usr/lib/X11 ../libx11/usr/lib/; \ + cp -a usr/share/X11 ../libx11/usr/share/; \ + rm -rf ../libx11/usr/share/X11/locales + .NOTPARALLEL: diff --git a/configure b/configure index d0e4c6e..45d15fc 100755 --- a/configure +++ b/configure @@ -42,7 +42,7 @@ parser.add_option("--enable-gui", action="store_true", dest="gui", help="Build F # if we want the gui image, add appropriate package and remove useless ones if options.gui: - packages.extend(['coreutils', 'tzdata', 'libxau', 'libxcb', 'libxdmcp']) + packages.extend(['coreutils', 'tzdata', 'libxau', 'libxcb', 'libxdmcp', 'libx11']) # if we want debug then we should add gdb and it's dependencies sys.stdout.write("checking for debug support... ") From elentir at mailoo.org Wed Mar 10 21:36:01 2010 From: elentir at mailoo.org (Elentir) Date: Wed, 10 Mar 2010 21:36:01 +0100 (CET) Subject: [Frugalware-git] setup: add libfontenc package for gui image Message-ID: <20100310203601.B07DA1240014@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=setup.git;a=commitdiff;h=5bc0c33f457d45677c5168ada2912f9990f6e8ca commit 5bc0c33f457d45677c5168ada2912f9990f6e8ca Author: Elentir Date: Mon Feb 8 20:28:58 2010 +0100 add libfontenc package for gui image diff --git a/Makefile b/Makefile index f98a540..d4c405c 100644 --- a/Makefile +++ b/Makefile @@ -739,4 +739,10 @@ libx11: cp -a usr/share/X11 ../libx11/usr/share/; \ rm -rf ../libx11/usr/share/X11/locales +libfontenc: + $(CLEANUP) + mkdir -p libfontenc/usr/lib + $(UNPACK); \ + cp -a usr/lib/libfontenc.so* ../libfontenc/usr/lib + .NOTPARALLEL: diff --git a/configure b/configure index 45d15fc..3074dfb 100755 --- a/configure +++ b/configure @@ -42,7 +42,7 @@ parser.add_option("--enable-gui", action="store_true", dest="gui", help="Build F # if we want the gui image, add appropriate package and remove useless ones if options.gui: - packages.extend(['coreutils', 'tzdata', 'libxau', 'libxcb', 'libxdmcp', 'libx11']) + packages.extend(['coreutils', 'tzdata', 'libxau', 'libxcb', 'libxdmcp', 'libx11', 'libfontenc']) # if we want debug then we should add gdb and it's dependencies sys.stdout.write("checking for debug support... ") From elentir at mailoo.org Wed Mar 10 21:36:00 2010 From: elentir at mailoo.org (Elentir) Date: Wed, 10 Mar 2010 21:36:00 +0100 (CET) Subject: [Frugalware-git] setup: add --enable-gui option to configure Message-ID: <20100310203600.3AA3C1240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=setup.git;a=commitdiff;h=a804c08712b6ca93d8271580159ba3157ea75587 commit a804c08712b6ca93d8271580159ba3157ea75587 Author: Elentir Date: Sat Oct 17 21:25:49 2009 +0200 add --enable-gui option to configure diff --git a/configure b/configure index 27ecd96..b37c32b 100755 --- a/configure +++ b/configure @@ -37,6 +37,7 @@ parser.add_option("--enable-tftp", action="store_true", dest="tftp", help="Build parser.add_option("--disable-tftp", action="store_false", dest="tftp", help="Don't build tftp installer image (default)") parser.add_option("--repo", action="store", dest="repo", help="Select the repo to build for. Can be current (default), testing or stable") parser.add_option("--prefix", action="store", dest="prefix", help="Select the install prefix (defaults to /usr/local)") +parser.add_option("--enable-gui", action="store_true", dest="gui", help="Build Fwife installer image") (options, args) = parser.parse_args() # if we want debug then we should add gdb and it's dependencies @@ -128,6 +129,10 @@ if options.tftp: socket.write("TFTP = true\n") else: socket.write("TFTP = false\n") +if options.gui: + socket.write("GUI = true\n") +else: + socket.write("GUI = false\n") socket.write("PREFIX = %s\n" % options.prefix) From elentir at mailoo.org Wed Mar 10 21:36:00 2010 From: elentir at mailoo.org (Elentir) Date: Wed, 10 Mar 2010 21:36:00 +0100 (CET) Subject: [Frugalware-git] setup: add coreutils package for gui image Message-ID: <20100310203600.506DF1240003@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=setup.git;a=commitdiff;h=c36e059f29c443155f3afab662bb08f1610f39ea commit c36e059f29c443155f3afab662bb08f1610f39ea Author: Elentir Date: Mon Feb 8 20:15:59 2010 +0100 add coreutils package for gui image diff --git a/Makefile b/Makefile index 10cbc4e..228c1d3 100644 --- a/Makefile +++ b/Makefile @@ -700,4 +700,10 @@ ralink-firmware: $(UNPACK); \ cp -a lib ../ralink-firmware/ +coreutils: + $(CLEANUP) + mkdir -p coreutils/bin + $(UNPACK) + cp -a $(BDIR)/bin/nice coreutils/bin/ + .NOTPARALLEL: diff --git a/configure b/configure index b37c32b..8f31902 100755 --- a/configure +++ b/configure @@ -40,6 +40,10 @@ parser.add_option("--prefix", action="store", dest="prefix", help="Select the in parser.add_option("--enable-gui", action="store_true", dest="gui", help="Build Fwife installer image") (options, args) = parser.parse_args() +# if we want the gui image, add appropriate package and remove useless ones +if options.gui: + packages.extend(['coreutils']) + # if we want debug then we should add gdb and it's dependencies sys.stdout.write("checking for debug support... ") sys.stdout.flush() From elentir at mailoo.org Wed Mar 10 21:36:00 2010 From: elentir at mailoo.org (Elentir) Date: Wed, 10 Mar 2010 21:36:00 +0100 (CET) Subject: [Frugalware-git] setup: add libxau for gui image Message-ID: <20100310203600.CCE981240008@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=setup.git;a=commitdiff;h=f66627ee947a403dabe59ab2ca525228d0a6d7f1 commit f66627ee947a403dabe59ab2ca525228d0a6d7f1 Author: Elentir Date: Mon Feb 8 20:23:32 2010 +0100 add libxau for gui image diff --git a/Makefile b/Makefile index 56dbd14..3bdf82c 100644 --- a/Makefile +++ b/Makefile @@ -712,4 +712,10 @@ tzdata: $(UNPACK); \ cp -a usr/share/zoneinfo/zone.tab ../tzdata/usr/share/zoneinfo/ +libxau: + $(CLEANUP) + mkdir -p libxau/usr/lib + $(UNPACK); \ + cp -a usr/lib/libXau.so* ../libxau/usr/lib + .NOTPARALLEL: diff --git a/configure b/configure index c3770a5..11858d7 100755 --- a/configure +++ b/configure @@ -42,7 +42,7 @@ parser.add_option("--enable-gui", action="store_true", dest="gui", help="Build F # if we want the gui image, add appropriate package and remove useless ones if options.gui: - packages.extend(['coreutils', 'tzdata']) + packages.extend(['coreutils', 'tzdata', 'libxau']) # if we want debug then we should add gdb and it's dependencies sys.stdout.write("checking for debug support... ") From elentir at mailoo.org Wed Mar 10 21:36:00 2010 From: elentir at mailoo.org (Elentir) Date: Wed, 10 Mar 2010 21:36:00 +0100 (CET) Subject: [Frugalware-git] setup: add tzdata package for gui image Message-ID: <20100310203600.7AB1A1240004@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=setup.git;a=commitdiff;h=4feac8de5d309d32c6e8174d995874ea330f5e85 commit 4feac8de5d309d32c6e8174d995874ea330f5e85 Author: Elentir Date: Mon Feb 8 20:22:53 2010 +0100 add tzdata package for gui image diff --git a/Makefile b/Makefile index 228c1d3..56dbd14 100644 --- a/Makefile +++ b/Makefile @@ -706,4 +706,10 @@ coreutils: $(UNPACK) cp -a $(BDIR)/bin/nice coreutils/bin/ +tzdata: + $(CLEANUP) + mkdir -p tzdata/usr/share/zoneinfo + $(UNPACK); \ + cp -a usr/share/zoneinfo/zone.tab ../tzdata/usr/share/zoneinfo/ + .NOTPARALLEL: diff --git a/configure b/configure index 8f31902..c3770a5 100755 --- a/configure +++ b/configure @@ -42,7 +42,7 @@ parser.add_option("--enable-gui", action="store_true", dest="gui", help="Build F # if we want the gui image, add appropriate package and remove useless ones if options.gui: - packages.extend(['coreutils']) + packages.extend(['coreutils', 'tzdata']) # if we want debug then we should add gdb and it's dependencies sys.stdout.write("checking for debug support... ") From elentir at mailoo.org Wed Mar 10 21:36:00 2010 From: elentir at mailoo.org (Elentir) Date: Wed, 10 Mar 2010 21:36:00 +0100 (CET) Subject: [Frugalware-git] setup: add libxcb package for gui image Message-ID: <20100310203600.EBD1C124000C@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=setup.git;a=commitdiff;h=8ab4953514d11a93b9fdee311a431ea782981e1b commit 8ab4953514d11a93b9fdee311a431ea782981e1b Author: Elentir Date: Mon Feb 8 20:24:30 2010 +0100 add libxcb package for gui image diff --git a/Makefile b/Makefile index 3bdf82c..ec715d5 100644 --- a/Makefile +++ b/Makefile @@ -718,4 +718,10 @@ libxau: $(UNPACK); \ cp -a usr/lib/libXau.so* ../libxau/usr/lib +libxcb: + $(CLEANUP) + mkdir -p libxcb/usr/lib + $(UNPACK); \ + cp -a usr/lib/libxcb.so* ../libxcb/usr/lib + .NOTPARALLEL: diff --git a/configure b/configure index 11858d7..a951c82 100755 --- a/configure +++ b/configure @@ -42,7 +42,7 @@ parser.add_option("--enable-gui", action="store_true", dest="gui", help="Build F # if we want the gui image, add appropriate package and remove useless ones if options.gui: - packages.extend(['coreutils', 'tzdata', 'libxau']) + packages.extend(['coreutils', 'tzdata', 'libxau', 'libxcb']) # if we want debug then we should add gdb and it's dependencies sys.stdout.write("checking for debug support... ") From elentir at mailoo.org Wed Mar 10 21:36:01 2010 From: elentir at mailoo.org (Elentir) Date: Wed, 10 Mar 2010 21:36:01 +0100 (CET) Subject: [Frugalware-git] setup: add libxdmcp package for gui image Message-ID: <20100310203601.81F97124000E@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=setup.git;a=commitdiff;h=aa0cfc05c6c32f159e7bf6479ef41d9c5d211b6a commit aa0cfc05c6c32f159e7bf6479ef41d9c5d211b6a Author: Elentir Date: Mon Feb 8 20:25:26 2010 +0100 add libxdmcp package for gui image diff --git a/Makefile b/Makefile index ec715d5..a5cee9c 100644 --- a/Makefile +++ b/Makefile @@ -724,4 +724,10 @@ libxcb: $(UNPACK); \ cp -a usr/lib/libxcb.so* ../libxcb/usr/lib +libxdmcp: + $(CLEANUP) + mkdir -p libxdmcp/usr/lib + $(UNPACK); \ + cp -a usr/lib/libXdmcp.so* ../libxdmcp/usr/lib + .NOTPARALLEL: diff --git a/configure b/configure index a951c82..d0e4c6e 100755 --- a/configure +++ b/configure @@ -42,7 +42,7 @@ parser.add_option("--enable-gui", action="store_true", dest="gui", help="Build F # if we want the gui image, add appropriate package and remove useless ones if options.gui: - packages.extend(['coreutils', 'tzdata', 'libxau', 'libxcb']) + packages.extend(['coreutils', 'tzdata', 'libxau', 'libxcb', 'libxdmcp']) # if we want debug then we should add gdb and it's dependencies sys.stdout.write("checking for debug support... ") From elentir at mailoo.org Wed Mar 10 21:36:01 2010 From: elentir at mailoo.org (Elentir) Date: Wed, 10 Mar 2010 21:36:01 +0100 (CET) Subject: [Frugalware-git] setup: add libxfont package for gui image Message-ID: <20100310203601.DCB3F1240015@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=setup.git;a=commitdiff;h=48022d0d8620a8198c7165d3f2014dc3a7801941 commit 48022d0d8620a8198c7165d3f2014dc3a7801941 Author: Elentir Date: Mon Feb 8 20:29:44 2010 +0100 add libxfont package for gui image diff --git a/Makefile b/Makefile index d4c405c..9d075d6 100644 --- a/Makefile +++ b/Makefile @@ -745,4 +745,10 @@ libfontenc: $(UNPACK); \ cp -a usr/lib/libfontenc.so* ../libfontenc/usr/lib +libxfont: + $(CLEANUP) + mkdir -p libxfont/usr/lib + $(UNPACK); \ + cp -a usr/lib/libXfont.so* ../libxfont/usr/lib + .NOTPARALLEL: diff --git a/configure b/configure index 3074dfb..7b19828 100755 --- a/configure +++ b/configure @@ -42,7 +42,7 @@ parser.add_option("--enable-gui", action="store_true", dest="gui", help="Build F # if we want the gui image, add appropriate package and remove useless ones if options.gui: - packages.extend(['coreutils', 'tzdata', 'libxau', 'libxcb', 'libxdmcp', 'libx11', 'libfontenc']) + packages.extend(['coreutils', 'tzdata', 'libxau', 'libxcb', 'libxdmcp', 'libx11', 'libfontenc', 'libxfont']) # if we want debug then we should add gdb and it's dependencies sys.stdout.write("checking for debug support... ") From elentir at mailoo.org Wed Mar 10 21:36:01 2010 From: elentir at mailoo.org (Elentir) Date: Wed, 10 Mar 2010 21:36:01 +0100 (CET) Subject: [Frugalware-git] setup: add libxext package for gui image Message-ID: <20100310203601.EF1E91240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=setup.git;a=commitdiff;h=b829bf87eca15bf040d4d4ab76e85d0e97866f2c commit b829bf87eca15bf040d4d4ab76e85d0e97866f2c Author: Elentir Date: Mon Feb 8 20:30:13 2010 +0100 add libxext package for gui image diff --git a/Makefile b/Makefile index 9d075d6..9372c07 100644 --- a/Makefile +++ b/Makefile @@ -751,4 +751,10 @@ libxfont: $(UNPACK); \ cp -a usr/lib/libXfont.so* ../libxfont/usr/lib +libxext: + $(CLEANUP) + mkdir -p libxext/usr/lib + $(UNPACK); \ + cp -a usr/lib/libXext.so* ../libxext/usr/lib + .NOTPARALLEL: diff --git a/configure b/configure index 7b19828..909f6c9 100755 --- a/configure +++ b/configure @@ -42,7 +42,7 @@ parser.add_option("--enable-gui", action="store_true", dest="gui", help="Build F # if we want the gui image, add appropriate package and remove useless ones if options.gui: - packages.extend(['coreutils', 'tzdata', 'libxau', 'libxcb', 'libxdmcp', 'libx11', 'libfontenc', 'libxfont']) + packages.extend(['coreutils', 'tzdata', 'libxau', 'libxcb', 'libxdmcp', 'libx11', 'libfontenc', 'libxfont', 'libxext']) # if we want debug then we should add gdb and it's dependencies sys.stdout.write("checking for debug support... ") From elentir at mailoo.org Wed Mar 10 21:36:02 2010 From: elentir at mailoo.org (Elentir) Date: Wed, 10 Mar 2010 21:36:02 +0100 (CET) Subject: [Frugalware-git] setup: add libxrender package for gui image Message-ID: <20100310203602.00B9C1240003@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=setup.git;a=commitdiff;h=581d2244bb7725e0ed2ae6b94fb3c64517217967 commit 581d2244bb7725e0ed2ae6b94fb3c64517217967 Author: Elentir Date: Mon Feb 8 20:30:55 2010 +0100 add libxrender package for gui image diff --git a/Makefile b/Makefile index 9372c07..8e671de 100644 --- a/Makefile +++ b/Makefile @@ -757,4 +757,10 @@ libxext: $(UNPACK); \ cp -a usr/lib/libXext.so* ../libxext/usr/lib +libxrender: + $(CLEANUP) + mkdir -p libxrender/usr/lib + $(UNPACK); \ + cp -a usr/lib/libXrender.so* ../libxrender/usr/lib + .NOTPARALLEL: diff --git a/configure b/configure index 909f6c9..b4340f9 100755 --- a/configure +++ b/configure @@ -42,7 +42,8 @@ parser.add_option("--enable-gui", action="store_true", dest="gui", help="Build F # if we want the gui image, add appropriate package and remove useless ones if options.gui: - packages.extend(['coreutils', 'tzdata', 'libxau', 'libxcb', 'libxdmcp', 'libx11', 'libfontenc', 'libxfont', 'libxext']) + packages.extend(['coreutils', 'tzdata', 'libxau', 'libxcb', 'libxdmcp', 'libx11', 'libfontenc', 'libxfont', 'libxext', + 'libxrender']) # if we want debug then we should add gdb and it's dependencies sys.stdout.write("checking for debug support... ") From elentir at mailoo.org Wed Mar 10 21:36:02 2010 From: elentir at mailoo.org (Elentir) Date: Wed, 10 Mar 2010 21:36:02 +0100 (CET) Subject: [Frugalware-git] setup: add libxrandr package for gui image Message-ID: <20100310203602.089F81240004@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=setup.git;a=commitdiff;h=cfc9273598fe52af84b6f178f7ce6dc222baa511 commit cfc9273598fe52af84b6f178f7ce6dc222baa511 Author: Elentir Date: Mon Feb 8 20:31:32 2010 +0100 add libxrandr package for gui image diff --git a/Makefile b/Makefile index 8e671de..0db4bcd 100644 --- a/Makefile +++ b/Makefile @@ -763,4 +763,10 @@ libxrender: $(UNPACK); \ cp -a usr/lib/libXrender.so* ../libxrender/usr/lib +libxrandr: + $(CLEANUP) + mkdir -p libxrandr/usr/lib + $(UNPACK); \ + cp -a usr/lib/libXrandr.so* ../libxrandr/usr/lib + .NOTPARALLEL: diff --git a/configure b/configure index b4340f9..fa42dce 100755 --- a/configure +++ b/configure @@ -43,7 +43,7 @@ parser.add_option("--enable-gui", action="store_true", dest="gui", help="Build F # if we want the gui image, add appropriate package and remove useless ones if options.gui: packages.extend(['coreutils', 'tzdata', 'libxau', 'libxcb', 'libxdmcp', 'libx11', 'libfontenc', 'libxfont', 'libxext', - 'libxrender']) + 'libxrender', 'libxrandr']) # if we want debug then we should add gdb and it's dependencies sys.stdout.write("checking for debug support... ") From elentir at mailoo.org Wed Mar 10 21:36:02 2010 From: elentir at mailoo.org (Elentir) Date: Wed, 10 Mar 2010 21:36:02 +0100 (CET) Subject: [Frugalware-git] setup: add libxft package for gui image Message-ID: <20100310203602.0D2571240008@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=setup.git;a=commitdiff;h=ddb1a32c9d403d0605ba363d7bda0046ebea593a commit ddb1a32c9d403d0605ba363d7bda0046ebea593a Author: Elentir Date: Mon Feb 8 20:32:13 2010 +0100 add libxft package for gui image diff --git a/Makefile b/Makefile index 0db4bcd..15bbf82 100644 --- a/Makefile +++ b/Makefile @@ -769,4 +769,10 @@ libxrandr: $(UNPACK); \ cp -a usr/lib/libXrandr.so* ../libxrandr/usr/lib +libxft: + $(CLEANUP) + mkdir -p libxft/usr/lib + $(UNPACK); \ + cp -a usr/lib/libXft.so* ../libxft/usr/lib + .NOTPARALLEL: diff --git a/configure b/configure index fa42dce..fcaf2c5 100755 --- a/configure +++ b/configure @@ -43,7 +43,7 @@ parser.add_option("--enable-gui", action="store_true", dest="gui", help="Build F # if we want the gui image, add appropriate package and remove useless ones if options.gui: packages.extend(['coreutils', 'tzdata', 'libxau', 'libxcb', 'libxdmcp', 'libx11', 'libfontenc', 'libxfont', 'libxext', - 'libxrender', 'libxrandr']) + 'libxrender', 'libxrandr', 'libxft']) # if we want debug then we should add gdb and it's dependencies sys.stdout.write("checking for debug support... ") From elentir at mailoo.org Wed Mar 10 21:36:02 2010 From: elentir at mailoo.org (Elentir) Date: Wed, 10 Mar 2010 21:36:02 +0100 (CET) Subject: [Frugalware-git] setup: add libxpm package for gui image Message-ID: <20100310203602.11DA21240016@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=setup.git;a=commitdiff;h=fdea18515f69322a5f456f1e38467853e2336265 commit fdea18515f69322a5f456f1e38467853e2336265 Author: Elentir Date: Mon Feb 8 20:33:02 2010 +0100 add libxpm package for gui image diff --git a/Makefile b/Makefile index 15bbf82..573320a 100644 --- a/Makefile +++ b/Makefile @@ -775,4 +775,10 @@ libxft: $(UNPACK); \ cp -a usr/lib/libXft.so* ../libxft/usr/lib +libxpm: + $(CLEANUP) + mkdir -p libxpm/usr/lib + $(UNPACK); \ + cp -a usr/lib/libXpm.so* ../libxpm/usr/lib + .NOTPARALLEL: diff --git a/configure b/configure index fcaf2c5..bc0b6b8 100755 --- a/configure +++ b/configure @@ -43,7 +43,7 @@ parser.add_option("--enable-gui", action="store_true", dest="gui", help="Build F # if we want the gui image, add appropriate package and remove useless ones if options.gui: packages.extend(['coreutils', 'tzdata', 'libxau', 'libxcb', 'libxdmcp', 'libx11', 'libfontenc', 'libxfont', 'libxext', - 'libxrender', 'libxrandr', 'libxft']) + 'libxrender', 'libxrandr', 'libxft', 'libxpm']) # if we want debug then we should add gdb and it's dependencies sys.stdout.write("checking for debug support... ") From elentir at mailoo.org Wed Mar 10 21:36:02 2010 From: elentir at mailoo.org (Elentir) Date: Wed, 10 Mar 2010 21:36:02 +0100 (CET) Subject: [Frugalware-git] setup: add libxkbfile package for gui image Message-ID: <20100310203602.167D31240017@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=setup.git;a=commitdiff;h=ee084053329b4f4fea7dfe8b581fe7591540cb61 commit ee084053329b4f4fea7dfe8b581fe7591540cb61 Author: Elentir Date: Mon Feb 8 20:33:34 2010 +0100 add libxkbfile package for gui image diff --git a/Makefile b/Makefile index 573320a..f9c691a 100644 --- a/Makefile +++ b/Makefile @@ -781,4 +781,10 @@ libxpm: $(UNPACK); \ cp -a usr/lib/libXpm.so* ../libxpm/usr/lib +libxkbfile: + $(CLEANUP) + mkdir -p libxkbfile/usr/lib + $(UNPACK); \ + cp -a usr/lib/*.so* ../libxkbfile/usr/lib + .NOTPARALLEL: diff --git a/configure b/configure index bc0b6b8..aaf59e7 100755 --- a/configure +++ b/configure @@ -43,7 +43,7 @@ parser.add_option("--enable-gui", action="store_true", dest="gui", help="Build F # if we want the gui image, add appropriate package and remove useless ones if options.gui: packages.extend(['coreutils', 'tzdata', 'libxau', 'libxcb', 'libxdmcp', 'libx11', 'libfontenc', 'libxfont', 'libxext', - 'libxrender', 'libxrandr', 'libxft', 'libxpm']) + 'libxrender', 'libxrandr', 'libxft', 'libxpm', 'libxkbfile']) # if we want debug then we should add gdb and it's dependencies sys.stdout.write("checking for debug support... ") From elentir at mailoo.org Wed Mar 10 21:36:02 2010 From: elentir at mailoo.org (Elentir) Date: Wed, 10 Mar 2010 21:36:02 +0100 (CET) Subject: [Frugalware-git] setup: add libice package for gui image Message-ID: <20100310203602.1C0EE1240018@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=setup.git;a=commitdiff;h=d728a19aefae882eb650aed8983e28bef0be8300 commit d728a19aefae882eb650aed8983e28bef0be8300 Author: Elentir Date: Mon Feb 8 20:34:05 2010 +0100 add libice package for gui image diff --git a/Makefile b/Makefile index f9c691a..34b59e4 100644 --- a/Makefile +++ b/Makefile @@ -787,4 +787,10 @@ libxkbfile: $(UNPACK); \ cp -a usr/lib/*.so* ../libxkbfile/usr/lib +libice: + $(CLEANUP) + mkdir -p libice/usr/lib + $(UNPACK); \ + cp -a usr/lib/libICE.so* ../libice/usr/lib + .NOTPARALLEL: diff --git a/configure b/configure index aaf59e7..0dfe99d 100755 --- a/configure +++ b/configure @@ -43,7 +43,7 @@ parser.add_option("--enable-gui", action="store_true", dest="gui", help="Build F # if we want the gui image, add appropriate package and remove useless ones if options.gui: packages.extend(['coreutils', 'tzdata', 'libxau', 'libxcb', 'libxdmcp', 'libx11', 'libfontenc', 'libxfont', 'libxext', - 'libxrender', 'libxrandr', 'libxft', 'libxpm', 'libxkbfile']) + 'libxrender', 'libxrandr', 'libxft', 'libxpm', 'libxkbfile', 'libice']) # if we want debug then we should add gdb and it's dependencies sys.stdout.write("checking for debug support... ") From elentir at mailoo.org Wed Mar 10 21:36:02 2010 From: elentir at mailoo.org (Elentir) Date: Wed, 10 Mar 2010 21:36:02 +0100 (CET) Subject: [Frugalware-git] setup: add libsm package for gui image Message-ID: <20100310203602.21CEB1240019@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=setup.git;a=commitdiff;h=24a17884b59dbe037daaa0ff8aa28da27cd55fd5 commit 24a17884b59dbe037daaa0ff8aa28da27cd55fd5 Author: Elentir Date: Mon Feb 8 20:34:37 2010 +0100 add libsm package for gui image diff --git a/Makefile b/Makefile index 34b59e4..b765505 100644 --- a/Makefile +++ b/Makefile @@ -793,4 +793,10 @@ libice: $(UNPACK); \ cp -a usr/lib/libICE.so* ../libice/usr/lib +libsm: + $(CLEANUP) + mkdir -p libsm/usr/lib + $(UNPACK); \ + cp -a usr/lib/libSM.so* ../libsm/usr/lib + .NOTPARALLEL: diff --git a/configure b/configure index 0dfe99d..72eec90 100755 --- a/configure +++ b/configure @@ -43,7 +43,7 @@ parser.add_option("--enable-gui", action="store_true", dest="gui", help="Build F # if we want the gui image, add appropriate package and remove useless ones if options.gui: packages.extend(['coreutils', 'tzdata', 'libxau', 'libxcb', 'libxdmcp', 'libx11', 'libfontenc', 'libxfont', 'libxext', - 'libxrender', 'libxrandr', 'libxft', 'libxpm', 'libxkbfile', 'libice']) + 'libxrender', 'libxrandr', 'libxft', 'libxpm', 'libxkbfile', 'libice', 'libsm']) # if we want debug then we should add gdb and it's dependencies sys.stdout.write("checking for debug support... ") From elentir at mailoo.org Wed Mar 10 21:36:02 2010 From: elentir at mailoo.org (Elentir) Date: Wed, 10 Mar 2010 21:36:02 +0100 (CET) Subject: [Frugalware-git] setup: add libpciaccess package for gui image Message-ID: <20100310203602.40893124000E@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=setup.git;a=commitdiff;h=ee0ad7e74d09a41a65c9c889c29ea9506794e404 commit ee0ad7e74d09a41a65c9c889c29ea9506794e404 Author: Elentir Date: Mon Feb 8 20:35:37 2010 +0100 add libpciaccess package for gui image diff --git a/Makefile b/Makefile index 2f7dbcc..3c1a726 100644 --- a/Makefile +++ b/Makefile @@ -805,4 +805,10 @@ pixman: $(UNPACK); \ cp -a usr/lib/libpixman-1.so* ../pixman/usr/lib +libpciaccess: + $(CLEANUP) + mkdir -p libpciaccess/usr/lib + $(UNPACK); \ + cp -a usr/lib/libpciaccess.so* ../libpciaccess/usr/lib + .NOTPARALLEL: diff --git a/configure b/configure index 5eff864..c3ebdf9 100755 --- a/configure +++ b/configure @@ -43,7 +43,7 @@ parser.add_option("--enable-gui", action="store_true", dest="gui", help="Build F # if we want the gui image, add appropriate package and remove useless ones if options.gui: packages.extend(['coreutils', 'tzdata', 'libxau', 'libxcb', 'libxdmcp', 'libx11', 'libfontenc', 'libxfont', 'libxext', - 'libxrender', 'libxrandr', 'libxft', 'libxpm', 'libxkbfile', 'libice', 'libsm', 'pixman']) + 'libxrender', 'libxrandr', 'libxft', 'libxpm', 'libxkbfile', 'libice', 'libsm', 'pixman', 'libpciaccess']) # if we want debug then we should add gdb and it's dependencies sys.stdout.write("checking for debug support... ") From elentir at mailoo.org Wed Mar 10 21:36:02 2010 From: elentir at mailoo.org (Elentir) Date: Wed, 10 Mar 2010 21:36:02 +0100 (CET) Subject: [Frugalware-git] setup: add pixman package for gui image Message-ID: <20100310203602.2F708124000C@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=setup.git;a=commitdiff;h=44251d6631f305ea99829d44d5749246932c6fdd commit 44251d6631f305ea99829d44d5749246932c6fdd Author: Elentir Date: Mon Feb 8 20:35:03 2010 +0100 add pixman package for gui image diff --git a/Makefile b/Makefile index b765505..2f7dbcc 100644 --- a/Makefile +++ b/Makefile @@ -799,4 +799,10 @@ libsm: $(UNPACK); \ cp -a usr/lib/libSM.so* ../libsm/usr/lib +pixman: + $(CLEANUP) + mkdir -p pixman/usr/lib + $(UNPACK); \ + cp -a usr/lib/libpixman-1.so* ../pixman/usr/lib + .NOTPARALLEL: diff --git a/configure b/configure index 72eec90..5eff864 100755 --- a/configure +++ b/configure @@ -43,7 +43,7 @@ parser.add_option("--enable-gui", action="store_true", dest="gui", help="Build F # if we want the gui image, add appropriate package and remove useless ones if options.gui: packages.extend(['coreutils', 'tzdata', 'libxau', 'libxcb', 'libxdmcp', 'libx11', 'libfontenc', 'libxfont', 'libxext', - 'libxrender', 'libxrandr', 'libxft', 'libxpm', 'libxkbfile', 'libice', 'libsm']) + 'libxrender', 'libxrandr', 'libxft', 'libxpm', 'libxkbfile', 'libice', 'libsm', 'pixman']) # if we want debug then we should add gdb and it's dependencies sys.stdout.write("checking for debug support... ") From elentir at mailoo.org Wed Mar 10 21:36:02 2010 From: elentir at mailoo.org (Elentir) Date: Wed, 10 Mar 2010 21:36:02 +0100 (CET) Subject: [Frugalware-git] setup: add setxkbmap package for gui image Message-ID: <20100310203602.46355124001D@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=setup.git;a=commitdiff;h=8f7449deca58be374ec2ab4992aa9cfaf47da342 commit 8f7449deca58be374ec2ab4992aa9cfaf47da342 Author: Elentir Date: Mon Feb 8 20:36:15 2010 +0100 add setxkbmap package for gui image diff --git a/Makefile b/Makefile index 3c1a726..bbc32d1 100644 --- a/Makefile +++ b/Makefile @@ -811,4 +811,10 @@ libpciaccess: $(UNPACK); \ cp -a usr/lib/libpciaccess.so* ../libpciaccess/usr/lib +setxkbmap: + $(CLEANUP) + mkdir -p setxkbmap/usr/bin + $(UNPACK); \ + cp -a usr/bin/setxkbmap ../setxkbmap/usr/bin + .NOTPARALLEL: diff --git a/configure b/configure index c3ebdf9..4f43074 100755 --- a/configure +++ b/configure @@ -43,7 +43,8 @@ parser.add_option("--enable-gui", action="store_true", dest="gui", help="Build F # if we want the gui image, add appropriate package and remove useless ones if options.gui: packages.extend(['coreutils', 'tzdata', 'libxau', 'libxcb', 'libxdmcp', 'libx11', 'libfontenc', 'libxfont', 'libxext', - 'libxrender', 'libxrandr', 'libxft', 'libxpm', 'libxkbfile', 'libice', 'libsm', 'pixman', 'libpciaccess']) + 'libxrender', 'libxrandr', 'libxft', 'libxpm', 'libxkbfile', 'libice', 'libsm', 'pixman', 'libpciaccess', + 'setxkbmap']) # if we want debug then we should add gdb and it's dependencies sys.stdout.write("checking for debug support... ") From elentir at mailoo.org Wed Mar 10 21:36:02 2010 From: elentir at mailoo.org (Elentir) Date: Wed, 10 Mar 2010 21:36:02 +0100 (CET) Subject: [Frugalware-git] setup: add xkbcomp package for gui image Message-ID: <20100310203602.530661240011@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=setup.git;a=commitdiff;h=1e9b5da223460d9cf54859584f5e3d1cb9da931c commit 1e9b5da223460d9cf54859584f5e3d1cb9da931c Author: Elentir Date: Mon Feb 8 20:36:49 2010 +0100 add xkbcomp package for gui image diff --git a/Makefile b/Makefile index bbc32d1..bf0b0d8 100644 --- a/Makefile +++ b/Makefile @@ -817,4 +817,10 @@ setxkbmap: $(UNPACK); \ cp -a usr/bin/setxkbmap ../setxkbmap/usr/bin +xkbcomp: + $(CLEANUP) + mkdir -p xkbcomp/usr/bin + $(UNPACK); \ + cp -a usr/bin/xkbcomp ../xkbcomp/usr/bin + .NOTPARALLEL: diff --git a/configure b/configure index 4f43074..179607d 100755 --- a/configure +++ b/configure @@ -44,7 +44,7 @@ parser.add_option("--enable-gui", action="store_true", dest="gui", help="Build F if options.gui: packages.extend(['coreutils', 'tzdata', 'libxau', 'libxcb', 'libxdmcp', 'libx11', 'libfontenc', 'libxfont', 'libxext', 'libxrender', 'libxrandr', 'libxft', 'libxpm', 'libxkbfile', 'libice', 'libsm', 'pixman', 'libpciaccess', - 'setxkbmap']) + 'setxkbmap', 'xkbcomp']) # if we want debug then we should add gdb and it's dependencies sys.stdout.write("checking for debug support... ") From elentir at mailoo.org Wed Mar 10 21:36:02 2010 From: elentir at mailoo.org (Elentir) Date: Wed, 10 Mar 2010 21:36:02 +0100 (CET) Subject: [Frugalware-git] setup: add xkeyboard-config package for gui image Message-ID: <20100310203602.578F21240014@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=setup.git;a=commitdiff;h=7fb847c7e8ccdfd5816adddebf074945c5463fc6 commit 7fb847c7e8ccdfd5816adddebf074945c5463fc6 Author: Elentir Date: Mon Feb 8 20:37:30 2010 +0100 add xkeyboard-config package for gui image diff --git a/Makefile b/Makefile index bf0b0d8..5fb3f1f 100644 --- a/Makefile +++ b/Makefile @@ -823,4 +823,10 @@ xkbcomp: $(UNPACK); \ cp -a usr/bin/xkbcomp ../xkbcomp/usr/bin +xkeyboard-config: + $(CLEANUP) + mkdir -p xkeyboard-config/usr/share + $(UNPACK); \ + cp -a usr/share/X11 ../xkeyboard-config/usr/share/ + .NOTPARALLEL: diff --git a/configure b/configure index 179607d..cac2c73 100755 --- a/configure +++ b/configure @@ -44,7 +44,7 @@ parser.add_option("--enable-gui", action="store_true", dest="gui", help="Build F if options.gui: packages.extend(['coreutils', 'tzdata', 'libxau', 'libxcb', 'libxdmcp', 'libx11', 'libfontenc', 'libxfont', 'libxext', 'libxrender', 'libxrandr', 'libxft', 'libxpm', 'libxkbfile', 'libice', 'libsm', 'pixman', 'libpciaccess', - 'setxkbmap', 'xkbcomp']) + 'setxkbmap', 'xkbcomp', 'xkeyboard-config']) # if we want debug then we should add gdb and it's dependencies sys.stdout.write("checking for debug support... ") From elentir at mailoo.org Wed Mar 10 21:36:02 2010 From: elentir at mailoo.org (Elentir) Date: Wed, 10 Mar 2010 21:36:02 +0100 (CET) Subject: [Frugalware-git] setup: add xorg-server-minimal for gui image Message-ID: <20100310203602.5C375124001E@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=setup.git;a=commitdiff;h=8ea104a1da4025bbcb834a81f318928265c0097a commit 8ea104a1da4025bbcb834a81f318928265c0097a Author: Elentir Date: Mon Feb 15 22:45:58 2010 +0100 add xorg-server-minimal for gui image diff --git a/Makefile b/Makefile index 5fb3f1f..7de7c13 100644 --- a/Makefile +++ b/Makefile @@ -829,4 +829,12 @@ xkeyboard-config: $(UNPACK); \ cp -a usr/share/X11 ../xkeyboard-config/usr/share/ +xorg-server-minimal: + $(CLEANUP) + mkdir -p xorg-server-minimal/{var/{log,lib/xkb},usr/{bin,lib/{X11,xorg/modules/extensions}}} + $(UNPACK); \ + cp -a usr/bin/Xorg-fwife ../xorg-server-minimal/usr/bin/Xorg; \ + cp -a usr/lib/xorg-fwife/modules/*.so ../xorg-server-minimal/usr/lib/xorg/modules/; \ + cp -a usr/lib/xorg-fwife/modules/extensions/*.so ../xorg-server-minimal/usr/lib/xorg/modules/extensions/ + .NOTPARALLEL: diff --git a/configure b/configure index cac2c73..4aaabc0 100755 --- a/configure +++ b/configure @@ -44,7 +44,7 @@ parser.add_option("--enable-gui", action="store_true", dest="gui", help="Build F if options.gui: packages.extend(['coreutils', 'tzdata', 'libxau', 'libxcb', 'libxdmcp', 'libx11', 'libfontenc', 'libxfont', 'libxext', 'libxrender', 'libxrandr', 'libxft', 'libxpm', 'libxkbfile', 'libice', 'libsm', 'pixman', 'libpciaccess', - 'setxkbmap', 'xkbcomp', 'xkeyboard-config']) + 'setxkbmap', 'xkbcomp', 'xkeyboard-config', 'xorg-server-minimal']) # if we want debug then we should add gdb and it's dependencies sys.stdout.write("checking for debug support... ") From elentir at mailoo.org Wed Mar 10 21:36:02 2010 From: elentir at mailoo.org (Elentir) Date: Wed, 10 Mar 2010 21:36:02 +0100 (CET) Subject: [Frugalware-git] setup: add xf86-input-keyboard package for gui image Message-ID: <20100310203602.6EFFD1240025@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=setup.git;a=commitdiff;h=ada0ad1d64d50d73074838f363c6a6ee708c907b commit ada0ad1d64d50d73074838f363c6a6ee708c907b Author: Elentir Date: Mon Feb 15 22:46:46 2010 +0100 add xf86-input-keyboard package for gui image diff --git a/Makefile b/Makefile index 7de7c13..abe61ee 100644 --- a/Makefile +++ b/Makefile @@ -837,4 +837,10 @@ xorg-server-minimal: cp -a usr/lib/xorg-fwife/modules/*.so ../xorg-server-minimal/usr/lib/xorg/modules/; \ cp -a usr/lib/xorg-fwife/modules/extensions/*.so ../xorg-server-minimal/usr/lib/xorg/modules/extensions/ +xf86-input-keyboard: + $(CLEANUP) + mkdir -p xf86-input-keyboard/usr/lib/xorg/modules/input + $(UNPACK); \ + cp -a usr/lib/xorg/modules/input/*.so ../xf86-input-keyboard/usr/lib/xorg/modules/input/ + .NOTPARALLEL: diff --git a/configure b/configure index 4aaabc0..7e27e04 100755 --- a/configure +++ b/configure @@ -44,7 +44,7 @@ parser.add_option("--enable-gui", action="store_true", dest="gui", help="Build F if options.gui: packages.extend(['coreutils', 'tzdata', 'libxau', 'libxcb', 'libxdmcp', 'libx11', 'libfontenc', 'libxfont', 'libxext', 'libxrender', 'libxrandr', 'libxft', 'libxpm', 'libxkbfile', 'libice', 'libsm', 'pixman', 'libpciaccess', - 'setxkbmap', 'xkbcomp', 'xkeyboard-config', 'xorg-server-minimal']) + 'setxkbmap', 'xkbcomp', 'xkeyboard-config', 'xorg-server-minimal', 'xf86-input-keyboard']) # if we want debug then we should add gdb and it's dependencies sys.stdout.write("checking for debug support... ") From elentir at mailoo.org Wed Mar 10 21:36:02 2010 From: elentir at mailoo.org (Elentir) Date: Wed, 10 Mar 2010 21:36:02 +0100 (CET) Subject: [Frugalware-git] setup: add xf86-input-package for gui image Message-ID: <20100310203602.759851240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=setup.git;a=commitdiff;h=28ea3f5e5e8b84318abe31bbacc52cdc57b63fea commit 28ea3f5e5e8b84318abe31bbacc52cdc57b63fea Author: Elentir Date: Mon Feb 15 22:47:25 2010 +0100 add xf86-input-package for gui image diff --git a/Makefile b/Makefile index abe61ee..8d4c848 100644 --- a/Makefile +++ b/Makefile @@ -843,4 +843,10 @@ xf86-input-keyboard: $(UNPACK); \ cp -a usr/lib/xorg/modules/input/*.so ../xf86-input-keyboard/usr/lib/xorg/modules/input/ +xf86-input-mouse: + $(CLEANUP) + mkdir -p xf86-input-mouse/usr/lib/xorg/modules/input + $(UNPACK); \ + cp -a usr/lib/xorg/modules/input/*.so ../xf86-input-mouse/usr/lib/xorg/modules/input/ + .NOTPARALLEL: diff --git a/configure b/configure index 7e27e04..70ccc08 100755 --- a/configure +++ b/configure @@ -44,7 +44,7 @@ parser.add_option("--enable-gui", action="store_true", dest="gui", help="Build F if options.gui: packages.extend(['coreutils', 'tzdata', 'libxau', 'libxcb', 'libxdmcp', 'libx11', 'libfontenc', 'libxfont', 'libxext', 'libxrender', 'libxrandr', 'libxft', 'libxpm', 'libxkbfile', 'libice', 'libsm', 'pixman', 'libpciaccess', - 'setxkbmap', 'xkbcomp', 'xkeyboard-config', 'xorg-server-minimal', 'xf86-input-keyboard']) + 'setxkbmap', 'xkbcomp', 'xkeyboard-config', 'xorg-server-minimal', 'xf86-input-keyboard', 'xf86-input-mouse']) # if we want debug then we should add gdb and it's dependencies sys.stdout.write("checking for debug support... ") From elentir at mailoo.org Wed Mar 10 21:36:02 2010 From: elentir at mailoo.org (Elentir) Date: Wed, 10 Mar 2010 21:36:02 +0100 (CET) Subject: [Frugalware-git] setup: add xf86-video-vesa package for gui image Message-ID: <20100310203602.7B21C1240015@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=setup.git;a=commitdiff;h=da44235c544690c26735fa15d58794cb3252148b commit da44235c544690c26735fa15d58794cb3252148b Author: Elentir Date: Mon Feb 15 22:48:17 2010 +0100 add xf86-video-vesa package for gui image diff --git a/Makefile b/Makefile index 8d4c848..368f444 100644 --- a/Makefile +++ b/Makefile @@ -849,4 +849,10 @@ xf86-input-mouse: $(UNPACK); \ cp -a usr/lib/xorg/modules/input/*.so ../xf86-input-mouse/usr/lib/xorg/modules/input/ +xf86-video-vesa: + $(CLEANUP) + mkdir -p xf86-video-vesa/usr/lib/xorg/modules/drivers/ + $(UNPACK); \ + cp -a usr/lib/xorg/modules/drivers/*.so ../xf86-video-vesa/usr/lib/xorg/modules/drivers/ + .NOTPARALLEL: diff --git a/configure b/configure index 70ccc08..4fe2582 100755 --- a/configure +++ b/configure @@ -44,7 +44,8 @@ parser.add_option("--enable-gui", action="store_true", dest="gui", help="Build F if options.gui: packages.extend(['coreutils', 'tzdata', 'libxau', 'libxcb', 'libxdmcp', 'libx11', 'libfontenc', 'libxfont', 'libxext', 'libxrender', 'libxrandr', 'libxft', 'libxpm', 'libxkbfile', 'libice', 'libsm', 'pixman', 'libpciaccess', - 'setxkbmap', 'xkbcomp', 'xkeyboard-config', 'xorg-server-minimal', 'xf86-input-keyboard', 'xf86-input-mouse']) + 'setxkbmap', 'xkbcomp', 'xkeyboard-config', 'xorg-server-minimal', 'xf86-input-keyboard', 'xf86-input-mouse', + 'xf86-video-vesa']) # if we want debug then we should add gdb and it's dependencies sys.stdout.write("checking for debug support... ") From elentir at mailoo.org Wed Mar 10 21:36:02 2010 From: elentir at mailoo.org (Elentir) Date: Wed, 10 Mar 2010 21:36:02 +0100 (CET) Subject: [Frugalware-git] setup: add freetype2 package for gui image Message-ID: <20100310203602.8060A1240026@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=setup.git;a=commitdiff;h=cdb53bf2082d656e1946086cf2820234d3fafc1b commit cdb53bf2082d656e1946086cf2820234d3fafc1b Author: Elentir Date: Mon Feb 15 22:48:46 2010 +0100 add freetype2 package for gui image diff --git a/Makefile b/Makefile index 368f444..6f96f7e 100644 --- a/Makefile +++ b/Makefile @@ -855,4 +855,10 @@ xf86-video-vesa: $(UNPACK); \ cp -a usr/lib/xorg/modules/drivers/*.so ../xf86-video-vesa/usr/lib/xorg/modules/drivers/ +freetype2: + $(CLEANUP) + mkdir -p freetype2/usr/lib + $(UNPACK); \ + cp -a usr/lib/*.so* ../freetype2/usr/lib + .NOTPARALLEL: diff --git a/configure b/configure index 4fe2582..e526911 100755 --- a/configure +++ b/configure @@ -45,7 +45,7 @@ if options.gui: packages.extend(['coreutils', 'tzdata', 'libxau', 'libxcb', 'libxdmcp', 'libx11', 'libfontenc', 'libxfont', 'libxext', 'libxrender', 'libxrandr', 'libxft', 'libxpm', 'libxkbfile', 'libice', 'libsm', 'pixman', 'libpciaccess', 'setxkbmap', 'xkbcomp', 'xkeyboard-config', 'xorg-server-minimal', 'xf86-input-keyboard', 'xf86-input-mouse', - 'xf86-video-vesa']) + 'xf86-video-vesa', 'freetype2']) # if we want debug then we should add gdb and it's dependencies sys.stdout.write("checking for debug support... ") From elentir at mailoo.org Wed Mar 10 21:36:02 2010 From: elentir at mailoo.org (Elentir) Date: Wed, 10 Mar 2010 21:36:02 +0100 (CET) Subject: [Frugalware-git] setup: add fontconfig package for gui image Message-ID: <20100310203602.85A271240027@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=setup.git;a=commitdiff;h=857e7d3697a0458910272fd657406a68cd77a0f6 commit 857e7d3697a0458910272fd657406a68cd77a0f6 Author: Elentir Date: Mon Feb 15 22:49:17 2010 +0100 add fontconfig package for gui image diff --git a/Makefile b/Makefile index 6f96f7e..2fd5645 100644 --- a/Makefile +++ b/Makefile @@ -861,4 +861,12 @@ freetype2: $(UNPACK); \ cp -a usr/lib/*.so* ../freetype2/usr/lib +fontconfig: + $(CLEANUP) + mkdir -p fontconfig/usr/lib + $(UNPACK); \ + cp -a usr/lib/*.so* ../fontconfig/usr/lib; \ + cp -a etc ../fontconfig/; \ + cp -a usr/bin ../fontconfig/ + .NOTPARALLEL: diff --git a/configure b/configure index e526911..613a512 100755 --- a/configure +++ b/configure @@ -45,7 +45,7 @@ if options.gui: packages.extend(['coreutils', 'tzdata', 'libxau', 'libxcb', 'libxdmcp', 'libx11', 'libfontenc', 'libxfont', 'libxext', 'libxrender', 'libxrandr', 'libxft', 'libxpm', 'libxkbfile', 'libice', 'libsm', 'pixman', 'libpciaccess', 'setxkbmap', 'xkbcomp', 'xkeyboard-config', 'xorg-server-minimal', 'xf86-input-keyboard', 'xf86-input-mouse', - 'xf86-video-vesa', 'freetype2']) + 'xf86-video-vesa', 'freetype2', 'fontconfig']) # if we want debug then we should add gdb and it's dependencies sys.stdout.write("checking for debug support... ") From elentir at mailoo.org Wed Mar 10 21:36:02 2010 From: elentir at mailoo.org (Elentir) Date: Wed, 10 Mar 2010 21:36:02 +0100 (CET) Subject: [Frugalware-git] setup: add shared-mime-info package for gui image Message-ID: <20100310203602.9E19820E0002@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=setup.git;a=commitdiff;h=469db95d4e50fd02bcfb3586eda511e359721e26 commit 469db95d4e50fd02bcfb3586eda511e359721e26 Author: Elentir Date: Mon Feb 15 22:49:47 2010 +0100 add shared-mime-info package for gui image diff --git a/Makefile b/Makefile index 2fd5645..5040e46 100644 --- a/Makefile +++ b/Makefile @@ -869,4 +869,10 @@ fontconfig: cp -a etc ../fontconfig/; \ cp -a usr/bin ../fontconfig/ +shared-mime-info: + $(CLEANUP) + mkdir -p shared-mime-info/usr/share + $(UNPACK); \ + cp -a usr/share/mime ../shared-mime-info/usr/share + .NOTPARALLEL: diff --git a/configure b/configure index 613a512..d0f5ea1 100755 --- a/configure +++ b/configure @@ -45,7 +45,7 @@ if options.gui: packages.extend(['coreutils', 'tzdata', 'libxau', 'libxcb', 'libxdmcp', 'libx11', 'libfontenc', 'libxfont', 'libxext', 'libxrender', 'libxrandr', 'libxft', 'libxpm', 'libxkbfile', 'libice', 'libsm', 'pixman', 'libpciaccess', 'setxkbmap', 'xkbcomp', 'xkeyboard-config', 'xorg-server-minimal', 'xf86-input-keyboard', 'xf86-input-mouse', - 'xf86-video-vesa', 'freetype2', 'fontconfig']) + 'xf86-video-vesa', 'freetype2', 'fontconfig', 'shared-mime-info']) # if we want debug then we should add gdb and it's dependencies sys.stdout.write("checking for debug support... ") From elentir at mailoo.org Wed Mar 10 21:36:02 2010 From: elentir at mailoo.org (Elentir) Date: Wed, 10 Mar 2010 21:36:02 +0100 (CET) Subject: [Frugalware-git] setup: add giblib package for gui image Message-ID: <20100310203602.B22F11240003@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=setup.git;a=commitdiff;h=e8da478fcce2e8b9913b29db5edb15c329eb5b83 commit e8da478fcce2e8b9913b29db5edb15c329eb5b83 Author: Elentir Date: Mon Feb 15 22:50:20 2010 +0100 add giblib package for gui image diff --git a/Makefile b/Makefile index 5040e46..bdceb72 100644 --- a/Makefile +++ b/Makefile @@ -875,4 +875,10 @@ shared-mime-info: $(UNPACK); \ cp -a usr/share/mime ../shared-mime-info/usr/share +giblib: + $(CLEANUP) + mkdir -p giblib/usr/lib + $(UNPACK); \ + cp -a usr/lib/*.so* ../giblib/usr/lib + .NOTPARALLEL: diff --git a/configure b/configure index d0f5ea1..1226c6e 100755 --- a/configure +++ b/configure @@ -45,7 +45,7 @@ if options.gui: packages.extend(['coreutils', 'tzdata', 'libxau', 'libxcb', 'libxdmcp', 'libx11', 'libfontenc', 'libxfont', 'libxext', 'libxrender', 'libxrandr', 'libxft', 'libxpm', 'libxkbfile', 'libice', 'libsm', 'pixman', 'libpciaccess', 'setxkbmap', 'xkbcomp', 'xkeyboard-config', 'xorg-server-minimal', 'xf86-input-keyboard', 'xf86-input-mouse', - 'xf86-video-vesa', 'freetype2', 'fontconfig', 'shared-mime-info']) + 'xf86-video-vesa', 'freetype2', 'fontconfig', 'shared-mime-info', 'giblib']) # if we want debug then we should add gdb and it's dependencies sys.stdout.write("checking for debug support... ") From elentir at mailoo.org Wed Mar 10 21:36:02 2010 From: elentir at mailoo.org (Elentir) Date: Wed, 10 Mar 2010 21:36:02 +0100 (CET) Subject: [Frugalware-git] setup: add feh package for gui image Message-ID: <20100310203602.B7D221240004@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=setup.git;a=commitdiff;h=cc13c04e7fbeccf4dfe9b42626ab2cf706420328 commit cc13c04e7fbeccf4dfe9b42626ab2cf706420328 Author: Elentir Date: Mon Feb 15 22:50:52 2010 +0100 add feh package for gui image diff --git a/Makefile b/Makefile index bdceb72..7eb9732 100644 --- a/Makefile +++ b/Makefile @@ -881,4 +881,10 @@ giblib: $(UNPACK); \ cp -a usr/lib/*.so* ../giblib/usr/lib +feh: + $(CLEANUP) + mkdir -p feh/usr/bin + $(UNPACK); \ + cp -a usr/bin/feh ../feh/usr/bin/ + .NOTPARALLEL: diff --git a/configure b/configure index 1226c6e..6190cf4 100755 --- a/configure +++ b/configure @@ -45,7 +45,7 @@ if options.gui: packages.extend(['coreutils', 'tzdata', 'libxau', 'libxcb', 'libxdmcp', 'libx11', 'libfontenc', 'libxfont', 'libxext', 'libxrender', 'libxrandr', 'libxft', 'libxpm', 'libxkbfile', 'libice', 'libsm', 'pixman', 'libpciaccess', 'setxkbmap', 'xkbcomp', 'xkeyboard-config', 'xorg-server-minimal', 'xf86-input-keyboard', 'xf86-input-mouse', - 'xf86-video-vesa', 'freetype2', 'fontconfig', 'shared-mime-info', 'giblib']) + 'xf86-video-vesa', 'freetype2', 'fontconfig', 'shared-mime-info', 'giblib', 'feh']) # if we want debug then we should add gdb and it's dependencies sys.stdout.write("checking for debug support... ") From elentir at mailoo.org Wed Mar 10 21:36:02 2010 From: elentir at mailoo.org (Elentir) Date: Wed, 10 Mar 2010 21:36:02 +0100 (CET) Subject: [Frugalware-git] setup: add atk package for gui image Message-ID: <20100310203602.D27FF1240016@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=setup.git;a=commitdiff;h=b41884f9512f683d742722e315984db3c3cc3b2a commit b41884f9512f683d742722e315984db3c3cc3b2a Author: Elentir Date: Mon Feb 15 22:52:26 2010 +0100 add atk package for gui image diff --git a/Makefile b/Makefile index 4ab367d..95059aa 100644 --- a/Makefile +++ b/Makefile @@ -893,4 +893,10 @@ libxml2: $(UNPACK); \ cp -a usr/lib/*.so* ../libxml2/usr/lib +atk: + $(CLEANUP) + mkdir -p atk/usr/{lib,share} + $(UNPACK); \ + cp -a usr/lib/*.so* ../atk/usr/lib + .NOTPARALLEL: diff --git a/configure b/configure index 91d0c27..1656c65 100755 --- a/configure +++ b/configure @@ -45,7 +45,7 @@ if options.gui: packages.extend(['coreutils', 'tzdata', 'libxau', 'libxcb', 'libxdmcp', 'libx11', 'libfontenc', 'libxfont', 'libxext', 'libxrender', 'libxrandr', 'libxft', 'libxpm', 'libxkbfile', 'libice', 'libsm', 'pixman', 'libpciaccess', 'setxkbmap', 'xkbcomp', 'xkeyboard-config', 'xorg-server-minimal', 'xf86-input-keyboard', 'xf86-input-mouse', - 'xf86-video-vesa', 'freetype2', 'fontconfig', 'shared-mime-info', 'giblib', 'feh', 'libxml2']) + 'xf86-video-vesa', 'freetype2', 'fontconfig', 'shared-mime-info', 'giblib', 'feh', 'libxml2', 'atk']) # if we want debug then we should add gdb and it's dependencies sys.stdout.write("checking for debug support... ") From elentir at mailoo.org Wed Mar 10 21:36:02 2010 From: elentir at mailoo.org (Elentir) Date: Wed, 10 Mar 2010 21:36:02 +0100 (CET) Subject: [Frugalware-git] setup: add libxml2 package for gui image Message-ID: <20100310203602.CD7C41240008@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=setup.git;a=commitdiff;h=b827ca9e10388a432e149503acdd92e3fa679a02 commit b827ca9e10388a432e149503acdd92e3fa679a02 Author: Elentir Date: Mon Feb 15 22:51:59 2010 +0100 add libxml2 package for gui image diff --git a/Makefile b/Makefile index 7eb9732..4ab367d 100644 --- a/Makefile +++ b/Makefile @@ -887,4 +887,10 @@ feh: $(UNPACK); \ cp -a usr/bin/feh ../feh/usr/bin/ +libxml2: + $(CLEANUP) + mkdir -p libxml2/usr/lib + $(UNPACK); \ + cp -a usr/lib/*.so* ../libxml2/usr/lib + .NOTPARALLEL: diff --git a/configure b/configure index 6190cf4..91d0c27 100755 --- a/configure +++ b/configure @@ -45,7 +45,7 @@ if options.gui: packages.extend(['coreutils', 'tzdata', 'libxau', 'libxcb', 'libxdmcp', 'libx11', 'libfontenc', 'libxfont', 'libxext', 'libxrender', 'libxrandr', 'libxft', 'libxpm', 'libxkbfile', 'libice', 'libsm', 'pixman', 'libpciaccess', 'setxkbmap', 'xkbcomp', 'xkeyboard-config', 'xorg-server-minimal', 'xf86-input-keyboard', 'xf86-input-mouse', - 'xf86-video-vesa', 'freetype2', 'fontconfig', 'shared-mime-info', 'giblib', 'feh']) + 'xf86-video-vesa', 'freetype2', 'fontconfig', 'shared-mime-info', 'giblib', 'feh', 'libxml2']) # if we want debug then we should add gdb and it's dependencies sys.stdout.write("checking for debug support... ") From elentir at mailoo.org Wed Mar 10 21:36:02 2010 From: elentir at mailoo.org (Elentir) Date: Wed, 10 Mar 2010 21:36:02 +0100 (CET) Subject: [Frugalware-git] setup: add libpng package for gui image Message-ID: <20100310203602.DC0FA1240017@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=setup.git;a=commitdiff;h=4b6b8a3527d0c9ccf9f724ea216f0a6aedc3379a commit 4b6b8a3527d0c9ccf9f724ea216f0a6aedc3379a Author: Elentir Date: Mon Feb 15 22:52:57 2010 +0100 add libpng package for gui image diff --git a/Makefile b/Makefile index 95059aa..16263b5 100644 --- a/Makefile +++ b/Makefile @@ -899,4 +899,10 @@ atk: $(UNPACK); \ cp -a usr/lib/*.so* ../atk/usr/lib +libpng: + $(CLEANUP) + mkdir -p libpng/usr/lib + $(UNPACK); \ + cp -a usr/lib/*.so* ../libpng/usr/lib + .NOTPARALLEL: diff --git a/configure b/configure index 1656c65..400d48f 100755 --- a/configure +++ b/configure @@ -45,7 +45,8 @@ if options.gui: packages.extend(['coreutils', 'tzdata', 'libxau', 'libxcb', 'libxdmcp', 'libx11', 'libfontenc', 'libxfont', 'libxext', 'libxrender', 'libxrandr', 'libxft', 'libxpm', 'libxkbfile', 'libice', 'libsm', 'pixman', 'libpciaccess', 'setxkbmap', 'xkbcomp', 'xkeyboard-config', 'xorg-server-minimal', 'xf86-input-keyboard', 'xf86-input-mouse', - 'xf86-video-vesa', 'freetype2', 'fontconfig', 'shared-mime-info', 'giblib', 'feh', 'libxml2', 'atk']) + 'xf86-video-vesa', 'freetype2', 'fontconfig', 'shared-mime-info', 'giblib', 'feh', 'libxml2', 'atk', + 'libpng']) # if we want debug then we should add gdb and it's dependencies sys.stdout.write("checking for debug support... ") From elentir at mailoo.org Wed Mar 10 21:36:02 2010 From: elentir at mailoo.org (Elentir) Date: Wed, 10 Mar 2010 21:36:02 +0100 (CET) Subject: [Frugalware-git] setup: add libjpeg package for gui image Message-ID: <20100310203602.E4BFB20E0004@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=setup.git;a=commitdiff;h=61237a9acfe5025a16296842225f00b4541dd326 commit 61237a9acfe5025a16296842225f00b4541dd326 Author: Elentir Date: Mon Feb 15 22:53:27 2010 +0100 add libjpeg package for gui image diff --git a/Makefile b/Makefile index 16263b5..03bf3f6 100644 --- a/Makefile +++ b/Makefile @@ -905,4 +905,10 @@ libpng: $(UNPACK); \ cp -a usr/lib/*.so* ../libpng/usr/lib +libjpeg: + $(CLEANUP) + mkdir -p libjpeg/usr/lib + $(UNPACK); \ + cp -a usr/lib/*.so* ../libjpeg/usr/lib + .NOTPARALLEL: diff --git a/configure b/configure index 400d48f..82d36b6 100755 --- a/configure +++ b/configure @@ -46,7 +46,7 @@ if options.gui: 'libxrender', 'libxrandr', 'libxft', 'libxpm', 'libxkbfile', 'libice', 'libsm', 'pixman', 'libpciaccess', 'setxkbmap', 'xkbcomp', 'xkeyboard-config', 'xorg-server-minimal', 'xf86-input-keyboard', 'xf86-input-mouse', 'xf86-video-vesa', 'freetype2', 'fontconfig', 'shared-mime-info', 'giblib', 'feh', 'libxml2', 'atk', - 'libpng']) + 'libpng', 'libjpeg']) # if we want debug then we should add gdb and it's dependencies sys.stdout.write("checking for debug support... ") From elentir at mailoo.org Wed Mar 10 21:36:03 2010 From: elentir at mailoo.org (Elentir) Date: Wed, 10 Mar 2010 21:36:03 +0100 (CET) Subject: [Frugalware-git] setup: add libgcc package for gui image Message-ID: <20100310203603.065421240019@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=setup.git;a=commitdiff;h=c09e9f6ee196da90ba5430d7eb4bd080e813b7b2 commit c09e9f6ee196da90ba5430d7eb4bd080e813b7b2 Author: Elentir Date: Mon Feb 15 22:54:46 2010 +0100 add libgcc package for gui image diff --git a/Makefile b/Makefile index 012ff3f..0ba1734 100644 --- a/Makefile +++ b/Makefile @@ -917,4 +917,10 @@ libstdc++: $(UNPACK); \ cp -a usr/lib/*.so* ../libstdc++/usr/lib +libgcc: + $(CLEANUP) + mkdir -p libgcc/usr/lib + $(UNPACK); \ + cp -a usr/lib/*.so* ../libgcc/usr/lib + .NOTPARALLEL: diff --git a/configure b/configure index 724fab9..d26fa04 100755 --- a/configure +++ b/configure @@ -46,7 +46,7 @@ if options.gui: 'libxrender', 'libxrandr', 'libxft', 'libxpm', 'libxkbfile', 'libice', 'libsm', 'pixman', 'libpciaccess', 'setxkbmap', 'xkbcomp', 'xkeyboard-config', 'xorg-server-minimal', 'xf86-input-keyboard', 'xf86-input-mouse', 'xf86-video-vesa', 'freetype2', 'fontconfig', 'shared-mime-info', 'giblib', 'feh', 'libxml2', 'atk', - 'libpng', 'libjpeg', 'libstdc++']) + 'libpng', 'libjpeg', 'libstdc++', 'libgcc']) # if we want debug then we should add gdb and it's dependencies sys.stdout.write("checking for debug support... ") From elentir at mailoo.org Wed Mar 10 21:36:02 2010 From: elentir at mailoo.org (Elentir) Date: Wed, 10 Mar 2010 21:36:02 +0100 (CET) Subject: [Frugalware-git] setup: add libstdc++ package for gui image Message-ID: <20100310203602.F24EA1240018@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=setup.git;a=commitdiff;h=0a407f5b38fe8043802fa1cf8282e96d3b03a9b9 commit 0a407f5b38fe8043802fa1cf8282e96d3b03a9b9 Author: Elentir Date: Mon Feb 15 22:53:57 2010 +0100 add libstdc++ package for gui image diff --git a/Makefile b/Makefile index 03bf3f6..012ff3f 100644 --- a/Makefile +++ b/Makefile @@ -911,4 +911,10 @@ libjpeg: $(UNPACK); \ cp -a usr/lib/*.so* ../libjpeg/usr/lib +libstdc++: + $(CLEANUP) + mkdir -p libstdc++/usr/lib + $(UNPACK); \ + cp -a usr/lib/*.so* ../libstdc++/usr/lib + .NOTPARALLEL: diff --git a/configure b/configure index 82d36b6..724fab9 100755 --- a/configure +++ b/configure @@ -46,7 +46,7 @@ if options.gui: 'libxrender', 'libxrandr', 'libxft', 'libxpm', 'libxkbfile', 'libice', 'libsm', 'pixman', 'libpciaccess', 'setxkbmap', 'xkbcomp', 'xkeyboard-config', 'xorg-server-minimal', 'xf86-input-keyboard', 'xf86-input-mouse', 'xf86-video-vesa', 'freetype2', 'fontconfig', 'shared-mime-info', 'giblib', 'feh', 'libxml2', 'atk', - 'libpng', 'libjpeg']) + 'libpng', 'libjpeg', 'libstdc++']) # if we want debug then we should add gdb and it's dependencies sys.stdout.write("checking for debug support... ") From elentir at mailoo.org Wed Mar 10 21:36:03 2010 From: elentir at mailoo.org (Elentir) Date: Wed, 10 Mar 2010 21:36:03 +0100 (CET) Subject: [Frugalware-git] setup: add libsigc++2 package for gui image Message-ID: <20100310203603.0BBAE20E000A@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=setup.git;a=commitdiff;h=f117ecb7c36e684eca4bf83080271c7c12f84c5a commit f117ecb7c36e684eca4bf83080271c7c12f84c5a Author: Elentir Date: Mon Feb 15 22:55:13 2010 +0100 add libsigc++2 package for gui image diff --git a/Makefile b/Makefile index 0ba1734..e048d50 100644 --- a/Makefile +++ b/Makefile @@ -923,4 +923,10 @@ libgcc: $(UNPACK); \ cp -a usr/lib/*.so* ../libgcc/usr/lib +libsigc++2: + $(CLEANUP) + mkdir -p libsigc++2/usr/lib + $(UNPACK); \ + cp -a usr/lib/*.so* ../libsigc++2/usr/lib + .NOTPARALLEL: diff --git a/configure b/configure index d26fa04..9558f1b 100755 --- a/configure +++ b/configure @@ -46,7 +46,7 @@ if options.gui: 'libxrender', 'libxrandr', 'libxft', 'libxpm', 'libxkbfile', 'libice', 'libsm', 'pixman', 'libpciaccess', 'setxkbmap', 'xkbcomp', 'xkeyboard-config', 'xorg-server-minimal', 'xf86-input-keyboard', 'xf86-input-mouse', 'xf86-video-vesa', 'freetype2', 'fontconfig', 'shared-mime-info', 'giblib', 'feh', 'libxml2', 'atk', - 'libpng', 'libjpeg', 'libstdc++', 'libgcc']) + 'libpng', 'libjpeg', 'libstdc++', 'libgcc', 'libsigc++2']) # if we want debug then we should add gdb and it's dependencies sys.stdout.write("checking for debug support... ") From elentir at mailoo.org Wed Mar 10 21:36:03 2010 From: elentir at mailoo.org (Elentir) Date: Wed, 10 Mar 2010 21:36:03 +0100 (CET) Subject: [Frugalware-git] setup: add imlib2 package for gui image Message-ID: <20100310203603.152A6124000C@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=setup.git;a=commitdiff;h=ae7be0dcf7e8592f28549c692134acbaef64acf8 commit ae7be0dcf7e8592f28549c692134acbaef64acf8 Author: Elentir Date: Mon Feb 15 22:55:44 2010 +0100 add imlib2 package for gui image diff --git a/Makefile b/Makefile index e048d50..e5b2866 100644 --- a/Makefile +++ b/Makefile @@ -929,4 +929,12 @@ libsigc++2: $(UNPACK); \ cp -a usr/lib/*.so* ../libsigc++2/usr/lib +imlib2: + $(CLEANUP) + mkdir -p imlib2/usr/lib/imlib2/{loaders,filters} + $(UNPACK); \ + cp -a usr/lib/libImlib2.so* ../imlib2/usr/lib; \ + cp -a usr/lib/imlib2/loaders/*.so ../imlib2/usr/lib/imlib2/loaders/; \ + cp -a usr/lib/imlib2/filters/*.so ../imlib2/usr/lib/imlib2/filters/ + .NOTPARALLEL: diff --git a/configure b/configure index 9558f1b..6b562c5 100755 --- a/configure +++ b/configure @@ -46,7 +46,7 @@ if options.gui: 'libxrender', 'libxrandr', 'libxft', 'libxpm', 'libxkbfile', 'libice', 'libsm', 'pixman', 'libpciaccess', 'setxkbmap', 'xkbcomp', 'xkeyboard-config', 'xorg-server-minimal', 'xf86-input-keyboard', 'xf86-input-mouse', 'xf86-video-vesa', 'freetype2', 'fontconfig', 'shared-mime-info', 'giblib', 'feh', 'libxml2', 'atk', - 'libpng', 'libjpeg', 'libstdc++', 'libgcc', 'libsigc++2']) + 'libpng', 'libjpeg', 'libstdc++', 'libgcc', 'libsigc++2', 'imlib2']) # if we want debug then we should add gdb and it's dependencies sys.stdout.write("checking for debug support... ") From elentir at mailoo.org Wed Mar 10 21:36:03 2010 From: elentir at mailoo.org (Elentir) Date: Wed, 10 Mar 2010 21:36:03 +0100 (CET) Subject: [Frugalware-git] setup: add cairo-minimal package for gui image Message-ID: <20100310203603.26BA520E000B@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=setup.git;a=commitdiff;h=2a1fa00765be21d5687dd72fad5f5689ac3154a2 commit 2a1fa00765be21d5687dd72fad5f5689ac3154a2 Author: Elentir Date: Mon Feb 15 22:57:01 2010 +0100 add cairo-minimal package for gui image diff --git a/Makefile b/Makefile index 3c98b72..a131e35 100644 --- a/Makefile +++ b/Makefile @@ -944,4 +944,10 @@ openbox-minimal: cp -a usr/bin/openbox-fwife ../openbox-minimal/usr/bin/openbox; \ cp -a usr/lib/openbox-fwife/*.so* ../openbox-minimal/usr/lib +cairo-minimal: + $(CLEANUP) + mkdir -p cairo-minimal/usr/lib/ + $(UNPACK); \ + cp -a usr/lib/cairo-fwife/libcairo.so* ../cairo-minimal/usr/lib + .NOTPARALLEL: diff --git a/configure b/configure index 97b641f..f403f4f 100755 --- a/configure +++ b/configure @@ -46,7 +46,8 @@ if options.gui: 'libxrender', 'libxrandr', 'libxft', 'libxpm', 'libxkbfile', 'libice', 'libsm', 'pixman', 'libpciaccess', 'setxkbmap', 'xkbcomp', 'xkeyboard-config', 'xorg-server-minimal', 'xf86-input-keyboard', 'xf86-input-mouse', 'xf86-video-vesa', 'freetype2', 'fontconfig', 'shared-mime-info', 'giblib', 'feh', 'libxml2', 'atk', - 'libpng', 'libjpeg', 'libstdc++', 'libgcc', 'libsigc++2', 'imlib2', 'openbox-minimal']) + 'libpng', 'libjpeg', 'libstdc++', 'libgcc', 'libsigc++2', 'imlib2', 'openbox-minimal', + 'cairo-minimal']) # if we want debug then we should add gdb and it's dependencies sys.stdout.write("checking for debug support... ") From elentir at mailoo.org Wed Mar 10 21:36:03 2010 From: elentir at mailoo.org (Elentir) Date: Wed, 10 Mar 2010 21:36:03 +0100 (CET) Subject: [Frugalware-git] setup: add openbox-minimal package for gui image Message-ID: <20100310203603.1DEAC124000E@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=setup.git;a=commitdiff;h=055e1de52c8d05ef616a693f9d907566f61ae45d commit 055e1de52c8d05ef616a693f9d907566f61ae45d Author: Elentir Date: Mon Feb 15 22:56:28 2010 +0100 add openbox-minimal package for gui image diff --git a/Makefile b/Makefile index e5b2866..3c98b72 100644 --- a/Makefile +++ b/Makefile @@ -937,4 +937,11 @@ imlib2: cp -a usr/lib/imlib2/loaders/*.so ../imlib2/usr/lib/imlib2/loaders/; \ cp -a usr/lib/imlib2/filters/*.so ../imlib2/usr/lib/imlib2/filters/ +openbox-minimal: + $(CLEANUP) + mkdir -p openbox-minimal/usr/{bin,lib} + $(UNPACK); \ + cp -a usr/bin/openbox-fwife ../openbox-minimal/usr/bin/openbox; \ + cp -a usr/lib/openbox-fwife/*.so* ../openbox-minimal/usr/lib + .NOTPARALLEL: diff --git a/configure b/configure index 6b562c5..97b641f 100755 --- a/configure +++ b/configure @@ -46,7 +46,7 @@ if options.gui: 'libxrender', 'libxrandr', 'libxft', 'libxpm', 'libxkbfile', 'libice', 'libsm', 'pixman', 'libpciaccess', 'setxkbmap', 'xkbcomp', 'xkeyboard-config', 'xorg-server-minimal', 'xf86-input-keyboard', 'xf86-input-mouse', 'xf86-video-vesa', 'freetype2', 'fontconfig', 'shared-mime-info', 'giblib', 'feh', 'libxml2', 'atk', - 'libpng', 'libjpeg', 'libstdc++', 'libgcc', 'libsigc++2', 'imlib2']) + 'libpng', 'libjpeg', 'libstdc++', 'libgcc', 'libsigc++2', 'imlib2', 'openbox-minimal']) # if we want debug then we should add gdb and it's dependencies sys.stdout.write("checking for debug support... ") From elentir at mailoo.org Wed Mar 10 21:36:03 2010 From: elentir at mailoo.org (Elentir) Date: Wed, 10 Mar 2010 21:36:03 +0100 (CET) Subject: [Frugalware-git] setup: add pango-minimal package for gui image Message-ID: <20100310203603.40A97124001D@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=setup.git;a=commitdiff;h=3d5c9498d1503680fd6d58308402dcdde1335cd0 commit 3d5c9498d1503680fd6d58308402dcdde1335cd0 Author: Elentir Date: Mon Feb 15 22:57:35 2010 +0100 add pango-minimal package for gui image diff --git a/Makefile b/Makefile index a131e35..b1f4eb1 100644 --- a/Makefile +++ b/Makefile @@ -950,4 +950,11 @@ cairo-minimal: $(UNPACK); \ cp -a usr/lib/cairo-fwife/libcairo.so* ../cairo-minimal/usr/lib +pango-minimal: + $(CLEANUP) + mkdir -p pango-minimal/{etc/pango,usr/{bin,lib}} + $(UNPACK); \ + cp -a usr/lib/pango-fwife/libpango*.so* ../pango-minimal/usr/lib; \ + cp -a etc/pango-fwife/* ../pango-minimal/etc/pango/ + .NOTPARALLEL: diff --git a/configure b/configure index f403f4f..4771627 100755 --- a/configure +++ b/configure @@ -47,7 +47,7 @@ if options.gui: 'setxkbmap', 'xkbcomp', 'xkeyboard-config', 'xorg-server-minimal', 'xf86-input-keyboard', 'xf86-input-mouse', 'xf86-video-vesa', 'freetype2', 'fontconfig', 'shared-mime-info', 'giblib', 'feh', 'libxml2', 'atk', 'libpng', 'libjpeg', 'libstdc++', 'libgcc', 'libsigc++2', 'imlib2', 'openbox-minimal', - 'cairo-minimal']) + 'cairo-minimal', 'pango-minimal']) # if we want debug then we should add gdb and it's dependencies sys.stdout.write("checking for debug support... ") From elentir at mailoo.org Wed Mar 10 21:36:03 2010 From: elentir at mailoo.org (Elentir) Date: Wed, 10 Mar 2010 21:36:03 +0100 (CET) Subject: [Frugalware-git] setup: add gtk+2-minimal package for gui image Message-ID: <20100310203603.4E9731240011@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=setup.git;a=commitdiff;h=10f76c9d663e8aae755c6622390c388656cc4c60 commit 10f76c9d663e8aae755c6622390c388656cc4c60 Author: Elentir Date: Mon Feb 15 22:58:52 2010 +0100 add gtk+2-minimal package for gui image diff --git a/Makefile b/Makefile index b1f4eb1..868235f 100644 --- a/Makefile +++ b/Makefile @@ -62,6 +62,7 @@ export CCACHE_NOLINK=1 export CCACHE_UMASK=002 DIALOG_LANGS = $(shell find po -name *.po |sed 's/.*\/\(.*\).po/\1/' |tr '\n' ' ') GLIBC_LANGS = en_US,ISO-8859-1 da_DK,ISO-8859-1 de_DE,ISO-8859-1 fr_FR,ISO-8859-1 hu_HU,ISO-8859-2 id_ID,ISO-8859-1 it_IT,ISO-8859-1 nl_NL,ISO-8859-1 pt_BR,ISO-8859-1 ro_RO,ISO-8859-2 sk_SK,ISO-8859-2 sv_SE,ISO-8859-1 cs_CZ,ISO-8859-2 es_ES,ISO-8859-1 ru_RU,ISO-8859-5 tr_TR,ISO-8859-9 vi_VI,UTF-8 +GTK_LANGS = cs da de fr hu id it nl pt_BR ro sk sv ifeq ($(CARCH),x86_64) QEMU ?= qemu-system-x86_64 endif @@ -957,4 +958,13 @@ pango-minimal: cp -a usr/lib/pango-fwife/libpango*.so* ../pango-minimal/usr/lib; \ cp -a etc/pango-fwife/* ../pango-minimal/etc/pango/ +gtk+2-minimal: + $(CLEANUP) + mkdir -p gtk+2-minimal/usr/{share/locale,lib} + $(UNPACK); \ + cp -a usr/lib/gtk-fwife/*.so* ../gtk+2-minimal/usr/lib + for i in $(GTK_LANGS); do \ + if [ -d $(BDIR)/usr/share/locale-fwife/$$i ]; then cp -a $(BDIR)/usr/share/locale-fwife/$$i gtk+2-minimal/usr/share/locale; fi; \ + done + .NOTPARALLEL: diff --git a/configure b/configure index 4771627..49efa26 100755 --- a/configure +++ b/configure @@ -47,7 +47,7 @@ if options.gui: 'setxkbmap', 'xkbcomp', 'xkeyboard-config', 'xorg-server-minimal', 'xf86-input-keyboard', 'xf86-input-mouse', 'xf86-video-vesa', 'freetype2', 'fontconfig', 'shared-mime-info', 'giblib', 'feh', 'libxml2', 'atk', 'libpng', 'libjpeg', 'libstdc++', 'libgcc', 'libsigc++2', 'imlib2', 'openbox-minimal', - 'cairo-minimal', 'pango-minimal']) + 'cairo-minimal', 'pango-minimal', 'gtk+2-minimal']) # if we want debug then we should add gdb and it's dependencies sys.stdout.write("checking for debug support... ") From elentir at mailoo.org Wed Mar 10 21:36:03 2010 From: elentir at mailoo.org (Elentir) Date: Wed, 10 Mar 2010 21:36:03 +0100 (CET) Subject: [Frugalware-git] setup: add fwife-minimal package for gui image Message-ID: <20100310203603.58B641240014@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=setup.git;a=commitdiff;h=245b30d8377b95253fa6d02d3868cebc09fb39e4 commit 245b30d8377b95253fa6d02d3868cebc09fb39e4 Author: Elentir Date: Tue Feb 16 23:52:31 2010 +0100 add fwife-minimal package for gui image diff --git a/Makefile b/Makefile index 868235f..6eee876 100644 --- a/Makefile +++ b/Makefile @@ -967,4 +967,11 @@ gtk+2-minimal: if [ -d $(BDIR)/usr/share/locale-fwife/$$i ]; then cp -a $(BDIR)/usr/share/locale-fwife/$$i gtk+2-minimal/usr/share/locale; fi; \ done +fwife-minimal: + $(CLEANUP) + mkdir -p fwife-minimal/usr/lib/fwife/plugins/ + $(UNPACK); \ + cp -a usr/share/fwife-minimal/usr/{share,bin} ../fwife-minimal/usr/; \ + cp -a usr/share/fwife-minimal/usr/lib/fwife/plugins/*.so ../fwife-minimal/usr/lib/fwife/plugins/ + .NOTPARALLEL: diff --git a/configure b/configure index 49efa26..0683605 100755 --- a/configure +++ b/configure @@ -47,7 +47,7 @@ if options.gui: 'setxkbmap', 'xkbcomp', 'xkeyboard-config', 'xorg-server-minimal', 'xf86-input-keyboard', 'xf86-input-mouse', 'xf86-video-vesa', 'freetype2', 'fontconfig', 'shared-mime-info', 'giblib', 'feh', 'libxml2', 'atk', 'libpng', 'libjpeg', 'libstdc++', 'libgcc', 'libsigc++2', 'imlib2', 'openbox-minimal', - 'cairo-minimal', 'pango-minimal', 'gtk+2-minimal']) + 'cairo-minimal', 'pango-minimal', 'gtk+2-minimal', 'fwife-minimal']) # if we want debug then we should add gdb and it's dependencies sys.stdout.write("checking for debug support... ") From elentir at mailoo.org Wed Mar 10 21:36:03 2010 From: elentir at mailoo.org (Elentir) Date: Wed, 10 Mar 2010 21:36:03 +0100 (CET) Subject: [Frugalware-git] setup: add glibmm package for gui image Message-ID: <20100310203603.5FEE0124001E@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=setup.git;a=commitdiff;h=bf7dc432e2ebf01e2e7d424eb457b41a919b4920 commit bf7dc432e2ebf01e2e7d424eb457b41a919b4920 Author: Elentir Date: Tue Feb 16 23:53:03 2010 +0100 add glibmm package for gui image diff --git a/Makefile b/Makefile index 6eee876..1be9f93 100644 --- a/Makefile +++ b/Makefile @@ -974,4 +974,10 @@ fwife-minimal: cp -a usr/share/fwife-minimal/usr/{share,bin} ../fwife-minimal/usr/; \ cp -a usr/share/fwife-minimal/usr/lib/fwife/plugins/*.so ../fwife-minimal/usr/lib/fwife/plugins/ +glibmm: + $(CLEANUP) + mkdir -p glibmm/usr/lib + $(UNPACK); \ + cp -a usr/lib/*.so* ../glibmm/usr/lib + .NOTPARALLEL: diff --git a/configure b/configure index 0683605..ac2a6af 100755 --- a/configure +++ b/configure @@ -47,7 +47,7 @@ if options.gui: 'setxkbmap', 'xkbcomp', 'xkeyboard-config', 'xorg-server-minimal', 'xf86-input-keyboard', 'xf86-input-mouse', 'xf86-video-vesa', 'freetype2', 'fontconfig', 'shared-mime-info', 'giblib', 'feh', 'libxml2', 'atk', 'libpng', 'libjpeg', 'libstdc++', 'libgcc', 'libsigc++2', 'imlib2', 'openbox-minimal', - 'cairo-minimal', 'pango-minimal', 'gtk+2-minimal', 'fwife-minimal']) + 'cairo-minimal', 'pango-minimal', 'gtk+2-minimal', 'fwife-minimal', 'glibmm']) # if we want debug then we should add gdb and it's dependencies sys.stdout.write("checking for debug support... ") From elentir at mailoo.org Wed Mar 10 21:36:03 2010 From: elentir at mailoo.org (Elentir) Date: Wed, 10 Mar 2010 21:36:03 +0100 (CET) Subject: [Frugalware-git] setup: add cairomm-minimal package for gui image Message-ID: <20100310203603.653461240025@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=setup.git;a=commitdiff;h=6a452fd48c2e42fe1113b461001dea6b4914d695 commit 6a452fd48c2e42fe1113b461001dea6b4914d695 Author: Elentir Date: Tue Feb 16 23:53:28 2010 +0100 add cairomm-minimal package for gui image diff --git a/Makefile b/Makefile index 1be9f93..c5b865b 100644 --- a/Makefile +++ b/Makefile @@ -980,4 +980,10 @@ glibmm: $(UNPACK); \ cp -a usr/lib/*.so* ../glibmm/usr/lib +cairomm-minimal: + $(CLEANUP) + mkdir -p cairomm-minimal/usr/lib + $(UNPACK); \ + cp -a usr/lib/cairomm-fwife/*.so* ../cairomm-minimal/usr/lib + .NOTPARALLEL: diff --git a/configure b/configure index ac2a6af..ddbf74d 100755 --- a/configure +++ b/configure @@ -47,7 +47,7 @@ if options.gui: 'setxkbmap', 'xkbcomp', 'xkeyboard-config', 'xorg-server-minimal', 'xf86-input-keyboard', 'xf86-input-mouse', 'xf86-video-vesa', 'freetype2', 'fontconfig', 'shared-mime-info', 'giblib', 'feh', 'libxml2', 'atk', 'libpng', 'libjpeg', 'libstdc++', 'libgcc', 'libsigc++2', 'imlib2', 'openbox-minimal', - 'cairo-minimal', 'pango-minimal', 'gtk+2-minimal', 'fwife-minimal', 'glibmm']) + 'cairo-minimal', 'pango-minimal', 'gtk+2-minimal', 'fwife-minimal', 'glibmm', 'cairomm-minimal']) # if we want debug then we should add gdb and it's dependencies sys.stdout.write("checking for debug support... ") From elentir at mailoo.org Wed Mar 10 21:36:03 2010 From: elentir at mailoo.org (Elentir) Date: Wed, 10 Mar 2010 21:36:03 +0100 (CET) Subject: [Frugalware-git] setup: add pangomm-minimal package for gui image Message-ID: <20100310203603.7140B1240028@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=setup.git;a=commitdiff;h=29d70515c0e6f66540ed4b9be85d35f1d61d8d03 commit 29d70515c0e6f66540ed4b9be85d35f1d61d8d03 Author: Elentir Date: Tue Feb 16 23:54:05 2010 +0100 add pangomm-minimal package for gui image diff --git a/Makefile b/Makefile index c5b865b..d381133 100644 --- a/Makefile +++ b/Makefile @@ -986,4 +986,10 @@ cairomm-minimal: $(UNPACK); \ cp -a usr/lib/cairomm-fwife/*.so* ../cairomm-minimal/usr/lib +pangomm-minimal: + $(CLEANUP) + mkdir -p pangomm-minimal/usr/lib + $(UNPACK); \ + cp -a usr/lib/pangomm-fwife/*.so* ../pangomm-minimal/usr/lib + .NOTPARALLEL: diff --git a/configure b/configure index ddbf74d..98f02fd 100755 --- a/configure +++ b/configure @@ -47,7 +47,8 @@ if options.gui: 'setxkbmap', 'xkbcomp', 'xkeyboard-config', 'xorg-server-minimal', 'xf86-input-keyboard', 'xf86-input-mouse', 'xf86-video-vesa', 'freetype2', 'fontconfig', 'shared-mime-info', 'giblib', 'feh', 'libxml2', 'atk', 'libpng', 'libjpeg', 'libstdc++', 'libgcc', 'libsigc++2', 'imlib2', 'openbox-minimal', - 'cairo-minimal', 'pango-minimal', 'gtk+2-minimal', 'fwife-minimal', 'glibmm', 'cairomm-minimal']) + 'cairo-minimal', 'pango-minimal', 'gtk+2-minimal', 'fwife-minimal', 'glibmm', 'cairomm-minimal', + 'pangomm-minimal']) # if we want debug then we should add gdb and it's dependencies sys.stdout.write("checking for debug support... ") From elentir at mailoo.org Wed Mar 10 21:36:03 2010 From: elentir at mailoo.org (Elentir) Date: Wed, 10 Mar 2010 21:36:03 +0100 (CET) Subject: [Frugalware-git] setup: add gparted-minimal package for gui image Message-ID: <20100310203603.833B4124002C@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=setup.git;a=commitdiff;h=a6fec2fbb9f8021c60945601ecd91c00c92a9c02 commit a6fec2fbb9f8021c60945601ecd91c00c92a9c02 Author: Elentir Date: Tue Feb 16 23:56:06 2010 +0100 add gparted-minimal package for gui image diff --git a/Makefile b/Makefile index a865ac1..316eaba 100644 --- a/Makefile +++ b/Makefile @@ -998,4 +998,13 @@ gtkmm-minimal: $(UNPACK); \ cp -a usr/lib/gtkmm-fwife/*.so* ../gtkmm-minimal/usr/lib +gparted-minimal: + $(CLEANUP) + mkdir -p gparted-minimal/usr/{bin,share/locale} + $(UNPACK); \ + cp -a usr/sbin/gpartedbin-fwife ../gparted-minimal/usr/bin/gparted; \ + for i in $(GTK_LANGS); do \ + if [ -d $(BDIR)/usr/share/locale-fwife/$$i ]; then cp -a $(BDIR)/usr/share/locale-fwife/$$i gparted-minimal/usr/share/locale; fi; \ + done + .NOTPARALLEL: diff --git a/configure b/configure index b308c4a..7a65379 100755 --- a/configure +++ b/configure @@ -48,7 +48,7 @@ if options.gui: 'xf86-video-vesa', 'freetype2', 'fontconfig', 'shared-mime-info', 'giblib', 'feh', 'libxml2', 'atk', 'libpng', 'libjpeg', 'libstdc++', 'libgcc', 'libsigc++2', 'imlib2', 'openbox-minimal', 'cairo-minimal', 'pango-minimal', 'gtk+2-minimal', 'fwife-minimal', 'glibmm', 'cairomm-minimal', - 'pangomm-minimal', 'gtkmm-minimal']) + 'pangomm-minimal', 'gtkmm-minimal', 'gparted-minimal']) # if we want debug then we should add gdb and it's dependencies sys.stdout.write("checking for debug support... ") From elentir at mailoo.org Wed Mar 10 21:36:03 2010 From: elentir at mailoo.org (Elentir) Date: Wed, 10 Mar 2010 21:36:03 +0100 (CET) Subject: [Frugalware-git] setup: add gtkmm-minimal package for gui image Message-ID: <20100310203603.7A7451240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=setup.git;a=commitdiff;h=be8f3827dffba964ac2c5ba8df68d9998903481d commit be8f3827dffba964ac2c5ba8df68d9998903481d Author: Elentir Date: Tue Feb 16 23:55:11 2010 +0100 add gtkmm-minimal package for gui image diff --git a/Makefile b/Makefile index d381133..a865ac1 100644 --- a/Makefile +++ b/Makefile @@ -992,4 +992,10 @@ pangomm-minimal: $(UNPACK); \ cp -a usr/lib/pangomm-fwife/*.so* ../pangomm-minimal/usr/lib +gtkmm-minimal: + $(CLEANUP) + mkdir -p gtkmm-minimal/usr/lib + $(UNPACK); \ + cp -a usr/lib/gtkmm-fwife/*.so* ../gtkmm-minimal/usr/lib + .NOTPARALLEL: diff --git a/configure b/configure index 98f02fd..b308c4a 100755 --- a/configure +++ b/configure @@ -48,7 +48,7 @@ if options.gui: 'xf86-video-vesa', 'freetype2', 'fontconfig', 'shared-mime-info', 'giblib', 'feh', 'libxml2', 'atk', 'libpng', 'libjpeg', 'libstdc++', 'libgcc', 'libsigc++2', 'imlib2', 'openbox-minimal', 'cairo-minimal', 'pango-minimal', 'gtk+2-minimal', 'fwife-minimal', 'glibmm', 'cairomm-minimal', - 'pangomm-minimal']) + 'pangomm-minimal', 'gtkmm-minimal']) # if we want debug then we should add gdb and it's dependencies sys.stdout.write("checking for debug support... ") From elentir at mailoo.org Wed Mar 10 21:36:03 2010 From: elentir at mailoo.org (Elentir) Date: Wed, 10 Mar 2010 21:36:03 +0100 (CET) Subject: [Frugalware-git] setup: add dejavu-ttf package for gui image Message-ID: <20100310203603.8DB5A1240015@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=setup.git;a=commitdiff;h=f3637e4a4509af22d1d789dac00ce1e8f70988f2 commit f3637e4a4509af22d1d789dac00ce1e8f70988f2 Author: Elentir Date: Tue Feb 16 23:56:42 2010 +0100 add dejavu-ttf package for gui image diff --git a/Makefile b/Makefile index 316eaba..e4d2032 100644 --- a/Makefile +++ b/Makefile @@ -1007,4 +1007,10 @@ gparted-minimal: if [ -d $(BDIR)/usr/share/locale-fwife/$$i ]; then cp -a $(BDIR)/usr/share/locale-fwife/$$i gparted-minimal/usr/share/locale; fi; \ done +dejavu-ttf: + $(CLEANUP) + mkdir -p dejavu-ttf/usr/lib/X11/fonts/TTF + $(UNPACK); \ + cp -a usr/lib/X11/fonts/TTF/{DejaVuSans-Bold.ttf,DejaVuSans.ttf,DejaVuSans-Oblique.ttf} ../dejavu-ttf/usr/lib/X11/fonts/TTF + .NOTPARALLEL: diff --git a/configure b/configure index 7a65379..04215f4 100755 --- a/configure +++ b/configure @@ -48,7 +48,7 @@ if options.gui: 'xf86-video-vesa', 'freetype2', 'fontconfig', 'shared-mime-info', 'giblib', 'feh', 'libxml2', 'atk', 'libpng', 'libjpeg', 'libstdc++', 'libgcc', 'libsigc++2', 'imlib2', 'openbox-minimal', 'cairo-minimal', 'pango-minimal', 'gtk+2-minimal', 'fwife-minimal', 'glibmm', 'cairomm-minimal', - 'pangomm-minimal', 'gtkmm-minimal', 'gparted-minimal']) + 'pangomm-minimal', 'gtkmm-minimal', 'gparted-minimal', 'dejavu-ttf']) # if we want debug then we should add gdb and it's dependencies sys.stdout.write("checking for debug support... ") From elentir at mailoo.org Wed Mar 10 21:36:03 2010 From: elentir at mailoo.org (Elentir) Date: Wed, 10 Mar 2010 21:36:03 +0100 (CET) Subject: [Frugalware-git] setup: add fwifecd-config package for gui image Message-ID: <20100310203603.B7E431240026@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=setup.git;a=commitdiff;h=953840d2f32156ae25393f9771dd91a35a2bed8e commit 953840d2f32156ae25393f9771dd91a35a2bed8e Author: Elentir Date: Tue Feb 16 23:57:20 2010 +0100 add fwifecd-config package for gui image diff --git a/Makefile b/Makefile index e4d2032..c68d779 100644 --- a/Makefile +++ b/Makefile @@ -1013,4 +1013,13 @@ dejavu-ttf: $(UNPACK); \ cp -a usr/lib/X11/fonts/TTF/{DejaVuSans-Bold.ttf,DejaVuSans.ttf,DejaVuSans-Oblique.ttf} ../dejavu-ttf/usr/lib/X11/fonts/TTF +fwifecd-config: + $(CLEANUP) + mkdir -p fwifecd-config/{etc/{gtk-2.0,X11},usr/{lib/X11,share}} + $(UNPACK); \ + cp -a usr/share/fwifecd-config/xorg/xorg.conf ../fwifecd-config/etc/X11/; \ + cp -a usr/share/fwifecd-config/xorg/Options ../fwifecd-config/usr/lib/X11/; \ + cp -a usr/share/fwifecd-config/gtk/gtkrc ../fwifecd-config/etc/gtk-2.0/; \ + cp -a usr/share/fwifecd-config/openbox/* ../fwifecd-config/usr/share/ + .NOTPARALLEL: diff --git a/configure b/configure index 04215f4..5bedd09 100755 --- a/configure +++ b/configure @@ -48,7 +48,7 @@ if options.gui: 'xf86-video-vesa', 'freetype2', 'fontconfig', 'shared-mime-info', 'giblib', 'feh', 'libxml2', 'atk', 'libpng', 'libjpeg', 'libstdc++', 'libgcc', 'libsigc++2', 'imlib2', 'openbox-minimal', 'cairo-minimal', 'pango-minimal', 'gtk+2-minimal', 'fwife-minimal', 'glibmm', 'cairomm-minimal', - 'pangomm-minimal', 'gtkmm-minimal', 'gparted-minimal', 'dejavu-ttf']) + 'pangomm-minimal', 'gtkmm-minimal', 'gparted-minimal', 'dejavu-ttf', 'fwifecd-config']) # if we want debug then we should add gdb and it's dependencies sys.stdout.write("checking for debug support... ") From elentir at mailoo.org Wed Mar 10 21:36:03 2010 From: elentir at mailoo.org (Elentir) Date: Wed, 10 Mar 2010 21:36:03 +0100 (CET) Subject: [Frugalware-git] setup: add xf86-video-ati package for gui image Message-ID: <20100310203603.C5B1A124002D@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=setup.git;a=commitdiff;h=399988f0a0e5537b06ec73123bb207bef70b5edb commit 399988f0a0e5537b06ec73123bb207bef70b5edb Author: Elentir Date: Tue Feb 16 23:57:51 2010 +0100 add xf86-video-ati package for gui image diff --git a/Makefile b/Makefile index c68d779..2dfff42 100644 --- a/Makefile +++ b/Makefile @@ -1022,4 +1022,10 @@ fwifecd-config: cp -a usr/share/fwifecd-config/gtk/gtkrc ../fwifecd-config/etc/gtk-2.0/; \ cp -a usr/share/fwifecd-config/openbox/* ../fwifecd-config/usr/share/ +xf86-video-ati: + $(CLEANUP) + mkdir -p xf86-video-ati/usr/lib/xorg/modules/drivers/ + $(UNPACK); \ + cp -a usr/lib/xorg/modules/drivers/*.so ../xf86-video-ati/usr/lib/xorg/modules/drivers/ + .NOTPARALLEL: diff --git a/configure b/configure index 5bedd09..923f0b1 100755 --- a/configure +++ b/configure @@ -48,7 +48,7 @@ if options.gui: 'xf86-video-vesa', 'freetype2', 'fontconfig', 'shared-mime-info', 'giblib', 'feh', 'libxml2', 'atk', 'libpng', 'libjpeg', 'libstdc++', 'libgcc', 'libsigc++2', 'imlib2', 'openbox-minimal', 'cairo-minimal', 'pango-minimal', 'gtk+2-minimal', 'fwife-minimal', 'glibmm', 'cairomm-minimal', - 'pangomm-minimal', 'gtkmm-minimal', 'gparted-minimal', 'dejavu-ttf', 'fwifecd-config']) + 'pangomm-minimal', 'gtkmm-minimal', 'gparted-minimal', 'dejavu-ttf', 'fwifecd-config', 'xf86-video-ati']) # if we want debug then we should add gdb and it's dependencies sys.stdout.write("checking for debug support... ") From elentir at mailoo.org Wed Mar 10 21:36:04 2010 From: elentir at mailoo.org (Elentir) Date: Wed, 10 Mar 2010 21:36:04 +0100 (CET) Subject: [Frugalware-git] setup: add xf86-video-geode package for gui image Message-ID: <20100310203605.0247D20E000D@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=setup.git;a=commitdiff;h=b19e15e0e8a97fbc3c2c08552b8db7d02037d15f commit b19e15e0e8a97fbc3c2c08552b8db7d02037d15f Author: Elentir Date: Tue Feb 16 23:58:23 2010 +0100 add xf86-video-geode package for gui image diff --git a/Makefile b/Makefile index 2dfff42..58b0f5a 100644 --- a/Makefile +++ b/Makefile @@ -1028,4 +1028,10 @@ xf86-video-ati: $(UNPACK); \ cp -a usr/lib/xorg/modules/drivers/*.so ../xf86-video-ati/usr/lib/xorg/modules/drivers/ +xf86-video-geode: + $(CLEANUP) + mkdir -p xf86-video-geode/usr/lib/xorg/modules/drivers/ + $(UNPACK); \ + cp -a usr/lib/xorg/modules/drivers/*.so ../xf86-video-geode/usr/lib/xorg/modules/drivers/ + .NOTPARALLEL: diff --git a/configure b/configure index 923f0b1..8a6c773 100755 --- a/configure +++ b/configure @@ -48,7 +48,8 @@ if options.gui: 'xf86-video-vesa', 'freetype2', 'fontconfig', 'shared-mime-info', 'giblib', 'feh', 'libxml2', 'atk', 'libpng', 'libjpeg', 'libstdc++', 'libgcc', 'libsigc++2', 'imlib2', 'openbox-minimal', 'cairo-minimal', 'pango-minimal', 'gtk+2-minimal', 'fwife-minimal', 'glibmm', 'cairomm-minimal', - 'pangomm-minimal', 'gtkmm-minimal', 'gparted-minimal', 'dejavu-ttf', 'fwifecd-config', 'xf86-video-ati']) + 'pangomm-minimal', 'gtkmm-minimal', 'gparted-minimal', 'dejavu-ttf', 'fwifecd-config', 'xf86-video-ati', + 'xf86-video-geode']) # if we want debug then we should add gdb and it's dependencies sys.stdout.write("checking for debug support... ") From elentir at mailoo.org Wed Mar 10 21:36:06 2010 From: elentir at mailoo.org (Elentir) Date: Wed, 10 Mar 2010 21:36:06 +0100 (CET) Subject: [Frugalware-git] setup: add xf86-video-intel package for gui image Message-ID: <20100310203607.23A691240004@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=setup.git;a=commitdiff;h=9282d45ed5382c73b9d61ba7281c245088664228 commit 9282d45ed5382c73b9d61ba7281c245088664228 Author: Elentir Date: Tue Feb 16 23:59:06 2010 +0100 add xf86-video-intel package for gui image diff --git a/Makefile b/Makefile index 58b0f5a..704e699 100644 --- a/Makefile +++ b/Makefile @@ -1034,4 +1034,10 @@ xf86-video-geode: $(UNPACK); \ cp -a usr/lib/xorg/modules/drivers/*.so ../xf86-video-geode/usr/lib/xorg/modules/drivers/ +xf86-video-intel: + $(CLEANUP) + mkdir -p xf86-video-intel/usr/lib/xorg/modules/drivers/ + $(UNPACK); \ + cp -a usr/lib/xorg/modules/drivers/*.so ../xf86-video-intel/usr/lib/xorg/modules/drivers/ + .NOTPARALLEL: diff --git a/configure b/configure index 8a6c773..984ccf2 100755 --- a/configure +++ b/configure @@ -49,7 +49,7 @@ if options.gui: 'libpng', 'libjpeg', 'libstdc++', 'libgcc', 'libsigc++2', 'imlib2', 'openbox-minimal', 'cairo-minimal', 'pango-minimal', 'gtk+2-minimal', 'fwife-minimal', 'glibmm', 'cairomm-minimal', 'pangomm-minimal', 'gtkmm-minimal', 'gparted-minimal', 'dejavu-ttf', 'fwifecd-config', 'xf86-video-ati', - 'xf86-video-geode']) + 'xf86-video-geode', 'xf86-video-intel']) # if we want debug then we should add gdb and it's dependencies sys.stdout.write("checking for debug support... ") From elentir at mailoo.org Wed Mar 10 21:36:10 2010 From: elentir at mailoo.org (Elentir) Date: Wed, 10 Mar 2010 21:36:10 +0100 (CET) Subject: [Frugalware-git] setup: add xf86-video-nv package for gui image Message-ID: <20100310203610.987561240016@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=setup.git;a=commitdiff;h=5a8359b4d64d89f818690278da5fbd8f555121bf commit 5a8359b4d64d89f818690278da5fbd8f555121bf Author: Elentir Date: Wed Feb 17 00:01:49 2010 +0100 add xf86-video-nv package for gui image diff --git a/Makefile b/Makefile index 704e699..f1e18f7 100644 --- a/Makefile +++ b/Makefile @@ -1040,4 +1040,10 @@ xf86-video-intel: $(UNPACK); \ cp -a usr/lib/xorg/modules/drivers/*.so ../xf86-video-intel/usr/lib/xorg/modules/drivers/ +xf86-video-nv: + $(CLEANUP) + mkdir -p xf86-video-nv/usr/lib/xorg/modules/drivers/ + $(UNPACK); \ + cp -a usr/lib/xorg/modules/drivers/*.so ../xf86-video-nv/usr/lib/xorg/modules/drivers/ + .NOTPARALLEL: diff --git a/configure b/configure index 984ccf2..22267ef 100755 --- a/configure +++ b/configure @@ -49,7 +49,7 @@ if options.gui: 'libpng', 'libjpeg', 'libstdc++', 'libgcc', 'libsigc++2', 'imlib2', 'openbox-minimal', 'cairo-minimal', 'pango-minimal', 'gtk+2-minimal', 'fwife-minimal', 'glibmm', 'cairomm-minimal', 'pangomm-minimal', 'gtkmm-minimal', 'gparted-minimal', 'dejavu-ttf', 'fwifecd-config', 'xf86-video-ati', - 'xf86-video-geode', 'xf86-video-intel']) + 'xf86-video-geode', 'xf86-video-intel', 'xf86-video-nv']) # if we want debug then we should add gdb and it's dependencies sys.stdout.write("checking for debug support... ") From elentir at mailoo.org Wed Mar 10 21:36:12 2010 From: elentir at mailoo.org (Elentir) Date: Wed, 10 Mar 2010 21:36:12 +0100 (CET) Subject: [Frugalware-git] setup: add xf86-video-openchrome package for gui image Message-ID: <20100310203612.95E641240018@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=setup.git;a=commitdiff;h=c6ee00b3a15bf468e6df39b99bae4102c1eb7c44 commit c6ee00b3a15bf468e6df39b99bae4102c1eb7c44 Author: Elentir Date: Wed Feb 17 00:02:17 2010 +0100 add xf86-video-openchrome package for gui image diff --git a/Makefile b/Makefile index f1e18f7..11774af 100644 --- a/Makefile +++ b/Makefile @@ -1046,4 +1046,10 @@ xf86-video-nv: $(UNPACK); \ cp -a usr/lib/xorg/modules/drivers/*.so ../xf86-video-nv/usr/lib/xorg/modules/drivers/ +xf86-video-openchrome: + $(CLEANUP) + mkdir -p xf86-video-openchrome/usr/lib/xorg/modules/drivers/ + $(UNPACK); \ + cp -a usr/lib/xorg/modules/drivers/*.so ../xf86-video-openchrome/usr/lib/xorg/modules/drivers/ + .NOTPARALLEL: diff --git a/configure b/configure index 22267ef..fd51849 100755 --- a/configure +++ b/configure @@ -49,7 +49,7 @@ if options.gui: 'libpng', 'libjpeg', 'libstdc++', 'libgcc', 'libsigc++2', 'imlib2', 'openbox-minimal', 'cairo-minimal', 'pango-minimal', 'gtk+2-minimal', 'fwife-minimal', 'glibmm', 'cairomm-minimal', 'pangomm-minimal', 'gtkmm-minimal', 'gparted-minimal', 'dejavu-ttf', 'fwifecd-config', 'xf86-video-ati', - 'xf86-video-geode', 'xf86-video-intel', 'xf86-video-nv']) + 'xf86-video-geode', 'xf86-video-intel', 'xf86-video-nv', 'xf86-video-openchrome']) # if we want debug then we should add gdb and it's dependencies sys.stdout.write("checking for debug support... ") From elentir at mailoo.org Wed Mar 10 21:36:13 2010 From: elentir at mailoo.org (Elentir) Date: Wed, 10 Mar 2010 21:36:13 +0100 (CET) Subject: [Frugalware-git] setup: add libdrm package for gui image Message-ID: <20100310203613.4D7F6124000C@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=setup.git;a=commitdiff;h=318b50637bc4c6406cc2f8103c8327cf21bc6cce commit 318b50637bc4c6406cc2f8103c8327cf21bc6cce Author: Elentir Date: Wed Feb 17 00:02:51 2010 +0100 add libdrm package for gui image diff --git a/Makefile b/Makefile index 11774af..60dd889 100644 --- a/Makefile +++ b/Makefile @@ -1052,4 +1052,10 @@ xf86-video-openchrome: $(UNPACK); \ cp -a usr/lib/xorg/modules/drivers/*.so ../xf86-video-openchrome/usr/lib/xorg/modules/drivers/ +libdrm: + $(CLEANUP) + mkdir -p libdrm/usr/lib + $(UNPACK); \ + cp -a usr/lib/*.so* ../libdrm/usr/lib + .NOTPARALLEL: diff --git a/configure b/configure index fd51849..89c08fa 100755 --- a/configure +++ b/configure @@ -49,7 +49,7 @@ if options.gui: 'libpng', 'libjpeg', 'libstdc++', 'libgcc', 'libsigc++2', 'imlib2', 'openbox-minimal', 'cairo-minimal', 'pango-minimal', 'gtk+2-minimal', 'fwife-minimal', 'glibmm', 'cairomm-minimal', 'pangomm-minimal', 'gtkmm-minimal', 'gparted-minimal', 'dejavu-ttf', 'fwifecd-config', 'xf86-video-ati', - 'xf86-video-geode', 'xf86-video-intel', 'xf86-video-nv', 'xf86-video-openchrome']) + 'xf86-video-geode', 'xf86-video-intel', 'xf86-video-nv', 'xf86-video-openchrome', 'libdrm']) # if we want debug then we should add gdb and it's dependencies sys.stdout.write("checking for debug support... ") From elentir at mailoo.org Wed Mar 10 21:36:14 2010 From: elentir at mailoo.org (Elentir) Date: Wed, 10 Mar 2010 21:36:14 +0100 (CET) Subject: [Frugalware-git] setup: remove unused package in gui image Message-ID: <20100310203614.043CE124000E@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=setup.git;a=commitdiff;h=d311c83bff979cbad1b0a93594d85dbfbf385bdf commit d311c83bff979cbad1b0a93594d85dbfbf385bdf Author: Elentir Date: Mon Feb 15 23:08:42 2010 +0100 remove unused package in gui image diff --git a/configure b/configure index 89c08fa..66b3729 100755 --- a/configure +++ b/configure @@ -50,6 +50,8 @@ if options.gui: 'cairo-minimal', 'pango-minimal', 'gtk+2-minimal', 'fwife-minimal', 'glibmm', 'cairomm-minimal', 'pangomm-minimal', 'gtkmm-minimal', 'gparted-minimal', 'dejavu-ttf', 'fwifecd-config', 'xf86-video-ati', 'xf86-video-geode', 'xf86-video-intel', 'xf86-video-nv', 'xf86-video-openchrome', 'libdrm']) + packages.remove('bastet') + packages.remove('dialog') # if we want debug then we should add gdb and it's dependencies sys.stdout.write("checking for debug support... ") From elentir at mailoo.org Wed Mar 10 21:36:14 2010 From: elentir at mailoo.org (Elentir) Date: Wed, 10 Mar 2010 21:36:14 +0100 (CET) Subject: [Frugalware-git] setup: disable setup compiling when gui enabled Message-ID: <20100310203614.F04181240034@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=setup.git;a=commitdiff;h=b1d078ac0d820ec21a5db146f1b4df01044e1e4b commit b1d078ac0d820ec21a5db146f1b4df01044e1e4b Author: Elentir Date: Sat Oct 17 22:18:38 2009 +0200 disable setup compiling when gui enabled diff --git a/Makefile b/Makefile index 60dd889..b2ff582 100644 --- a/Makefile +++ b/Makefile @@ -145,11 +145,13 @@ ccache: install -d -m 2775 /var/cache/ccache/setup setup: +ifeq ($(GUI),false) ifeq ($(STABLE),false) $(MAKE) -C src current else $(MAKE) -C src stable endif +endif merge: $(packages) rm -rf $(MDIR) @@ -162,9 +164,11 @@ merge: $(packages) make -C po mos install-setup: setup +ifeq ($(GUI),false) mkdir -p $(MDIR)/lib/plugins cp src/setup $(MDIR)/bin/ cp src/plugins/*.so $(MDIR)/lib/plugins/ +endif misc: merge install-setup cp etc/inittab $(MDIR)/etc/ From elentir at mailoo.org Wed Mar 10 21:36:16 2010 From: elentir at mailoo.org (Elentir) Date: Wed, 10 Mar 2010 21:36:16 +0100 (CET) Subject: [Frugalware-git] setup: run mkfontdir on fonts directory Message-ID: <20100310203616.A530B1240019@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=setup.git;a=commitdiff;h=77c6dcee7a9c72df87e02ed5e78b2dd588f40156 commit 77c6dcee7a9c72df87e02ed5e78b2dd588f40156 Author: Elentir Date: Mon Feb 15 23:17:57 2010 +0100 run mkfontdir on fonts directory diff --git a/Makefile b/Makefile index 8b02687..6ceb23b 100644 --- a/Makefile +++ b/Makefile @@ -177,6 +177,7 @@ ifeq ($(GUI),true) cp gui/startx.sh $(MDIR)/bin/ chmod +x $(MDIR)/bin/start.sh chmod +x $(MDIR)/bin/startx.sh + mkfontdir $(MDIR)/usr/lib/X11/fonts/TTF else cp etc/inittab $(MDIR)/etc/ endif From elentir at mailoo.org Wed Mar 10 21:36:16 2010 From: elentir at mailoo.org (Elentir) Date: Wed, 10 Mar 2010 21:36:16 +0100 (CET) Subject: [Frugalware-git] setup: add initscripts for gui image Message-ID: <20100310203616.1F7B21240011@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=setup.git;a=commitdiff;h=a6efcc8d3e9a73301adb3f8003864117b14c6783 commit a6efcc8d3e9a73301adb3f8003864117b14c6783 Author: Elentir Date: Mon Feb 15 23:16:22 2010 +0100 add initscripts for gui image diff --git a/Makefile b/Makefile index b2ff582..8b02687 100644 --- a/Makefile +++ b/Makefile @@ -171,7 +171,15 @@ ifeq ($(GUI),false) endif misc: merge install-setup +ifeq ($(GUI),true) + cp gui/inittab $(MDIR)/etc/ + cp gui/start.sh $(MDIR)/bin/ + cp gui/startx.sh $(MDIR)/bin/ + chmod +x $(MDIR)/bin/start.sh + chmod +x $(MDIR)/bin/startx.sh +else cp etc/inittab $(MDIR)/etc/ +endif ifeq ($(DEBUG),gdb) sed -i 's|/bin/setup|/bin/gdb-start|' $(MDIR)/etc/inittab cp bin/gdb-start $(MDIR)/bin/ diff --git a/gui/inittab b/gui/inittab new file mode 100644 index 0000000..001bcc3 --- /dev/null +++ b/gui/inittab @@ -0,0 +1,16 @@ +# /etc/inittab for frugalware setup + +# Login /bin/sh invocations on selected ttys. +# +# Start the setup on the console +::respawn:-/bin/start.sh +# Start an "askfirst" shell on tty2 and tty3 +tty2::askfirst:-/bin/sh +tty3::askfirst:-/bin/sh + +# Reboot when ctrl-alt-del keys are pressed. +::ctrlaltdel:/sbin/reboot + +# Stuff to do before halting or rebooting. +::shutdown:/sbin/swapoff -a >/dev/null 2>&1 +::shutdown:/bin/umount -a -r >/dev/null 2>&1 diff --git a/gui/start.sh b/gui/start.sh new file mode 100644 index 0000000..af24d7c --- /dev/null +++ b/gui/start.sh @@ -0,0 +1,238 @@ +#!/bin/sh + +clear + +echo +echo +echo -e "\033[1;7;34;47mWelcome to Fwife Installer.\033[0m" +echo +echo + +echo " * Setting umask.." +umask 022 +echo " * Mounting /proc.." +mount -t proc none /proc +echo " * Mounting metafilesystems.." +mount -t sysfs none /sys +mount -t tmpfs none /tmp +echo " * Initialising mtab.." +cat /proc/mounts >/etc/mtab +echo " * Load kernel modules.." +modprobe isofs +modprobe ntfs +modprobe BusLogic +modprobe -q ehci-hcd +modprobe -q ohci-hcd +modprobe -q uhci-hcd + echo -e "\033[1;6;34m* Detecting hardware - This can take some time..\033[0m" +/etc/rc.d/rc.udev + +## Ugly hack for gparted witch use hal when a new partition is created but we don't have hal here :). +## Creating all possible nodes do the trick. +if [ -e "/dev/sda" ]; then + i=1 + for part in `seq 1 15`; + do + mknod -m 660 /dev/sda$i b 8 $part + i=$(expr $i + 1) + done +fi + +if [ -e "/dev/sdb" ]; then + i=1 + for part in `seq 17 31`; + do + mknod -m 660 /dev/sdb$i b 8 $part + i=$(expr $i + 1) + done +fi + +if [ -e "/dev/sdc" ]; then + i=1 + for part in `seq 33 47`; + do + mknod -m 660 /dev/sdc$i b 8 $part + i=$(expr $i + 1) + done +fi + +if [ -e "/dev/sdd" ]; then + i=1 + for part in `seq 49 63`; + do + mknod -m 660 /dev/sdd$i b 8 $part + i=$(expr $i + 1) + done +fi + +if [ -e "/dev/sde" ]; then + i=1 + for part in `seq 65 79`; + do + mknod -m 660 /dev/sde$i b 8 $part + i=$(expr $i + 1) + done +fi + +if [ -e "/dev/sdf" ]; then + i=1 + for part in `seq 81 95`; + do + mknod -m 660 /dev/sdf$i b 8 $part + i=$(expr $i + 1) + done +fi + +if [ -e "/dev/sdg" ]; then + i=1 + for part in `seq 97 111`; + do + mknod -m 660 /dev/sdg$i b 8 $part + i=$(expr $i + 1) + done +fi + +if [ -e "/dev/sdh" ]; then + i=1 + for part in `seq 113 127`; + do + mknod -m 660 /dev/sdh$i b 8 $part + i=$(expr $i + 1) + done +fi + +if [ -e "/dev/hda" ]; then + i=1 + for part in `seq 1 63`; + do + mknod -m 660 /dev/hda$i b 3 $part + i=$(expr $i + 1) + done +fi + +if [ -e "/dev/hdb" ]; then + i=1 + for part in `seq 65 127`; + do + mknod -m 660 /dev/hdb$i b 3 $part + i=$(expr $i + 1) + done +fi + +if [ -e "/dev/hdc" ]; then + i=1 + for part in `seq 1 63`; + do + mknod -m 660 /dev/hdc$i b 22 $part + i=$(expr $i + 1) + done +fi + +if [ -e "/dev/hdd" ]; then + i=1 + for part in `seq 65 127`; + do + mknod -m 660 /dev/hdd$i b 22 $part + i=$(expr $i + 1) + done +fi + +if [ -e "/dev/hde" ]; then + i=1 + for part in `seq 1 63`; + do + mknod -m 660 /dev/hde$i b 33 $part + i=$(expr $i + 1) + done +fi + +if [ -e "/dev/hdf" ]; then + i=1 + for part in `seq 65 127`; + do + mknod -m 660 /dev/hdf$i b 33 $part + i=$(expr $i + 1) + done +fi + +if [ -e "/dev/hdg" ]; then + i=1 + for part in `seq 1 63`; + do + mknod -m 660 /dev/hdg$i b 34 $part + i=$(expr $i + 1) + done +fi + +if [ -e "/dev/hdh" ]; then + i=1 + for part in `seq 65 127`; + do + mknod -m 660 /dev/hdh$i b 34 $part + i=$(expr $i + 1) + done +fi + +export DISPLAY=:0 +MOUSE=/dev/input/mice + +## launch dhcpcd, if an interface is finded it'll be detected by fwife, so the user don't need to configure it +echo " * Starting dhcpcd.." +dhcpcd -b -L -t 15 + +echo " * Parsing kernel cmdline for Fwife options.." + +for opt in `cat /proc/cmdline` +do + case $opt in + kmap=*) + # Check for a specified keymap (kmap=*). + echo " * Setting system keymap to: $KEYMAP.." + loadkeys ${opt#kmap=} + ;; + autodetectx) + Xorg -configure + mv xorg.conf.new /etc/X11/xorg.conf + AUTOCONF=true ;; + screen=*) + SCREEN=${opt#screen=} ;; + mouse=*) + MOUSE=${opt#mouse=} ;; + *) + continue ;; + esac +done + + +echo " * Create link for the mouse.." +ln -fs $MOUSE /dev/mouse + + +# Screen size config +if [ -z "$SCREEN" ]; then + if [ -z "$AUTOCONF" ]; then + sed -i 's# Modes# Modes "1280x1024" "1280x800" "1024x768" "800x600"#g' /etc/X11/xorg.conf + fi + NEW_SCREEN="auto" +else + case "$SCREEN" in + text) + ;; + *) + # Use specified screen resolution. + if [ -z "$AUTOCONF" ]; then + echo " * Use default resolution $SCREEN .." + sed -i "s# Modes# Modes \"$SCREEN\"#g" /etc/X11/xorg.conf + fi + NEW_SCREEN=$SCREEN + ;; + esac +fi + +if [ -z "$NEW_SCREEN" ]; then + echo " * Trying to start a shell.." + exec /bin/sh +else + echo " * Trying to start X server.." + startx.sh || exec /bin/sh +fi diff --git a/gui/startx.sh b/gui/startx.sh new file mode 100644 index 0000000..28efc0e --- /dev/null +++ b/gui/startx.sh @@ -0,0 +1,8 @@ +#!/bin/sh + +Xorg -nolisten tcp & +sleep 1 +openbox --config-file /usr/share/openbox/obconfig.xml & +sleep 1 +feh --bg-scale /usr/share/themes/backgrounds/fw.jpg & +fwife && killall Xorg & exec /bin/sh \ No newline at end of file From elentir at mailoo.org Wed Mar 10 21:36:17 2010 From: elentir at mailoo.org (Elentir) Date: Wed, 10 Mar 2010 21:36:17 +0100 (CET) Subject: [Frugalware-git] setup: run update-mime-database on mime directory Message-ID: <20100310203617.AABBC124001E@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=setup.git;a=commitdiff;h=c72671ba16252e569037012a616b443e35850684 commit c72671ba16252e569037012a616b443e35850684 Author: Elentir Date: Mon Feb 15 23:18:58 2010 +0100 run update-mime-database on mime directory diff --git a/Makefile b/Makefile index 6ceb23b..d7d720d 100644 --- a/Makefile +++ b/Makefile @@ -178,6 +178,7 @@ ifeq ($(GUI),true) chmod +x $(MDIR)/bin/start.sh chmod +x $(MDIR)/bin/startx.sh mkfontdir $(MDIR)/usr/lib/X11/fonts/TTF + update-mime-database $(MDIR)/usr/share/mime else cp etc/inittab $(MDIR)/etc/ endif From elentir at mailoo.org Wed Mar 10 21:36:17 2010 From: elentir at mailoo.org (Elentir) Date: Wed, 10 Mar 2010 21:36:17 +0100 (CET) Subject: [Frugalware-git] setup: add a symlink to xkb directory to fix setxkbmap Message-ID: <20100310203617.D0B6E20E0004@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=setup.git;a=commitdiff;h=a27c6a9ce1544efcadde5af3e514a519c6c935dd commit a27c6a9ce1544efcadde5af3e514a519c6c935dd Author: Elentir Date: Mon Feb 15 23:19:40 2010 +0100 add a symlink to xkb directory to fix setxkbmap diff --git a/Makefile b/Makefile index d7d720d..5fead96 100644 --- a/Makefile +++ b/Makefile @@ -179,6 +179,7 @@ ifeq ($(GUI),true) chmod +x $(MDIR)/bin/startx.sh mkfontdir $(MDIR)/usr/lib/X11/fonts/TTF update-mime-database $(MDIR)/usr/share/mime + ln -s /usr/share/X11/xkb $(MDIR)/usr/lib/X11/xkb else cp etc/inittab $(MDIR)/etc/ endif From elentir at mailoo.org Wed Mar 10 21:36:19 2010 From: elentir at mailoo.org (Elentir) Date: Wed, 10 Mar 2010 21:36:19 +0100 (CET) Subject: [Frugalware-git] setup: add gui-usb_img rule to makefile Message-ID: <20100310203619.9238E1240025@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=setup.git;a=commitdiff;h=bb60b9385b8f31f107cfd37486f8ee7c9532c417 commit bb60b9385b8f31f107cfd37486f8ee7c9532c417 Author: Elentir Date: Mon Feb 15 23:21:53 2010 +0100 add gui-usb_img rule to makefile diff --git a/Makefile b/Makefile index bff40df..ec4d7b8 100644 --- a/Makefile +++ b/Makefile @@ -329,6 +329,37 @@ gui-iso: -boot-load-size 4 -boot-info-table -o fwife-$(FWIFE-MINIMALVER)-$(CARCH).iso iso rm -rf iso +gui-usb_img: check_root + dd if=/dev/zero of=fwife-$(FWIFE-MINIMALVER)-$(CARCH)-usb.img bs=516096c count=$(shell echo $(CYL_COUNT) + 2 | bc) + echo -e 'n\np\n1\n\n\na\n1\nw'|/sbin/fdisk -u -C$(shell echo $(CYL_COUNT) + 2 | bc) -S63 -H16 fwife-$(FWIFE-MINIMALVER)-$(CARCH)-usb.img || true + losetup -d /dev/loop1 || true + losetup -o32256 /dev/loop1 fwife-$(FWIFE-MINIMALVER)-$(CARCH)-usb.img + /sbin/mke2fs -b1024 -F /dev/loop1 + sleep 1 + losetup -d /dev/loop1 + mkdir i + mount -o loop,offset=32256 fwife-$(FWIFE-MINIMALVER)-$(CARCH)-usb.img i + mkdir -p i/boot/grub + cp $(VMLINUZ)-$(KERNELV)-fw$(KERNELREL)-$(CARCH) i/boot/$(VMLINUZ)-$(KERNELV)-fw$(KERNELREL) + cp initrd-$(CARCH).img.gz i/boot/ + cp /usr/lib/grub/i386-*/stage{1,2} i/boot/grub/ + cp /boot/grub/message-frugalware i/boot/grub/message + echo -e "default=0 \n\ + timeout=10 \n\ + gfxmenu /boot/grub/message \n\ + title Fwife $(FWIFE-MINIMALVER) - $(KERNELV)-fw$(KERNELREL)-$(CARCH) \n\ + kernel /boot/$(VMLINUZ)-$(KERNELV)-fw$(KERNELREL) $(KERNEL_OPTS) autodetectx \n\ + initrd /boot/initrd-$(CARCH).img.gz \n\ + title Fwife $(FWIFE-MINIMALVER) - $(KERNELV)-fw$(KERNELREL)-$(CARCH) (generic) \n\ + kernel /boot/$(VMLINUZ)-$(KERNELV)-fw$(KERNELREL) $(KERNEL_OPTS) \n\ + initrd /boot/initrd-$(CARCH).img.gz" > i/boot/grub/menu.lst + umount i + rmdir i + echo -e "device (hd0) fwife-$(FWIFE-MINIMALVER)-$(CARCH)-usb.img \n\ + root (hd0,0) \n\ + setup (hd0) \n\ + quit" | grub --batch --device-map=/dev/null + update: git pull $(MAKE) -C src clean From elentir at mailoo.org Wed Mar 10 21:36:18 2010 From: elentir at mailoo.org (Elentir) Date: Wed, 10 Mar 2010 21:36:18 +0100 (CET) Subject: [Frugalware-git] setup: add gui-iso rule to makefile Message-ID: <20100310203618.79ECD1240014@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=setup.git;a=commitdiff;h=8734e9c0ece14eee81e6a3e87ee74012d9314e35 commit 8734e9c0ece14eee81e6a3e87ee74012d9314e35 Author: Elentir Date: Mon Feb 15 23:21:18 2010 +0100 add gui-iso rule to makefile diff --git a/Makefile b/Makefile index 5fead96..bff40df 100644 --- a/Makefile +++ b/Makefile @@ -310,6 +310,25 @@ tftp_img: check_root setup (fd0) \n\ quit" | grub --batch --device-map=/dev/null +gui-iso: + mkdir -p iso/boot/grub + cp /usr/lib/grub/i386-frugalware/stage2_eltorito iso/boot/grub + cp /boot/grub/message-frugalware iso/boot/grub/message + cp initrd-$(CARCH).img.gz iso/boot/ + cp $(VMLINUZ)-$(KERNELV)-fw$(KERNELREL)-$(CARCH) iso/boot/$(VMLINUZ)-$(KERNELV)-fw$(KERNELREL) + echo -e "default=0 \n\ + timeout=10 \n\ + gfxmenu /boot/grub/message \n\ + title Fwife $(FWIFE-MINIMALVER) - $(KERNELV)-fw$(KERNELREL)-$(CARCH) \n\ + kernel /boot/$(VMLINUZ)-$(KERNELV)-fw$(KERNELREL) $(KERNEL_OPTS) autodetectx \n\ + initrd /boot/initrd-$(CARCH).img.gz \n\ + title Fwife $(FWIFE-MINIMALVER) - $(KERNELV)-fw$(KERNELREL)-$(CARCH) (generic) \n\ + kernel /boot/$(VMLINUZ)-$(KERNELV)-fw$(KERNELREL) $(KERNEL_OPTS) \n\ + initrd /boot/initrd-$(CARCH).img.gz" > iso/boot/grub/menu.lst + mkisofs -R -b boot/grub/stage2_eltorito -no-emul-boot \ + -boot-load-size 4 -boot-info-table -o fwife-$(FWIFE-MINIMALVER)-$(CARCH).iso iso + rm -rf iso + update: git pull $(MAKE) -C src clean From elentir at mailoo.org Wed Mar 10 21:36:20 2010 From: elentir at mailoo.org (Elentir) Date: Wed, 10 Mar 2010 21:36:20 +0100 (CET) Subject: [Frugalware-git] setup: add some libs from glib2 when gui enabled Message-ID: <20100310203620.28FBE124002E@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=setup.git;a=commitdiff;h=41a1bf84e0e96d446837edba044b3d763f889d72 commit 41a1bf84e0e96d446837edba044b3d763f889d72 Author: Elentir Date: Mon Feb 8 21:57:50 2010 +0100 add some libs from glib2 when gui enabled diff --git a/Makefile b/Makefile index ec4d7b8..274085b 100644 --- a/Makefile +++ b/Makefile @@ -577,8 +577,12 @@ rp-pppoe: glib2: $(CLEANUP) mkdir -p glib2/usr/lib - $(UNPACK); \ - cp -a usr/lib/libglib-2.0.so* ../glib2/usr/lib/ + $(UNPACK) +ifeq ($(GUI),false) + cp -a $(BDIR)/usr/lib/libglib-2.0.so* glib2/usr/lib/ +else + cp -a $(BDIR)/usr/lib/*.so* glib2/usr/lib/ +endif parted: $(CLEANUP) From elentir at mailoo.org Wed Mar 10 21:36:21 2010 From: elentir at mailoo.org (Elentir) Date: Wed, 10 Mar 2010 21:36:21 +0100 (CET) Subject: [Frugalware-git] setup: add mkfs.ext{2, 3} from e2fsprogs when gui enabled Message-ID: <20100310203621.C51391240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=setup.git;a=commitdiff;h=a5a8cd9f1dd59c020daf33158ec769bd0bc4bc61 commit a5a8cd9f1dd59c020daf33158ec769bd0bc4bc61 Author: Elentir Date: Mon Feb 15 23:24:15 2010 +0100 add mkfs.ext{2,3} from e2fsprogs when gui enabled diff --git a/Makefile b/Makefile index 274085b..be3bbb2 100644 --- a/Makefile +++ b/Makefile @@ -412,7 +412,12 @@ e2fsprogs: $(CLEANUP) mkdir -p e2fsprogs/{sbin,lib} $(UNPACK) +# mkfs.ext{2,3} is used by gparted +ifeq ($(GUI),false) cp -a $(BDIR)/sbin/{mke2fs,e2fsck,badblocks,resize2fs,mkfs.ext4} e2fsprogs/sbin/ +else + cp -a $(BDIR)/sbin/{mke2fs,e2fsck,badblocks,resize2fs,mkfs.ext4,mkfs.ext2,mkfs.ext3} e2fsprogs/sbin/ +endif cp -a $(BDIR)/lib/{libcom_err*,libe2p*,libext2fs*} e2fsprogs/lib/ mkdir e2fsprogs/etc/ touch e2fsprogs/etc/fstab From elentir at mailoo.org Wed Mar 10 21:36:22 2010 From: elentir at mailoo.org (Elentir) Date: Wed, 10 Mar 2010 21:36:22 +0100 (CET) Subject: [Frugalware-git] setup: remove libncursesw shared library Message-ID: <20100310203622.2E99D1240017@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=setup.git;a=commitdiff;h=719dd523eee250c00a6e30e7261e3ad1d0a28a84 commit 719dd523eee250c00a6e30e7261e3ad1d0a28a84 Author: Elentir Date: Mon Feb 15 23:25:17 2010 +0100 remove libncursesw shared library * nothing is linked to it so we don't need it diff --git a/Makefile b/Makefile index be3bbb2..ab2c6c7 100644 --- a/Makefile +++ b/Makefile @@ -490,7 +490,7 @@ ncurses: $(CLEANUP) mkdir -p ncurses/{lib,usr/share/terminfo/l} $(UNPACK) - cp -a $(BDIR)/lib/libncurses*.so* ncurses/lib/ + cp -a $(BDIR)/lib/libncurses.so* ncurses/lib/ cp -a $(BDIR)/usr/share/terminfo/l/linux ncurses/usr/share/terminfo/l/ pacman-g2: From elentir at mailoo.org Wed Mar 10 21:36:22 2010 From: elentir at mailoo.org (Elentir) Date: Wed, 10 Mar 2010 21:36:22 +0100 (CET) Subject: [Frugalware-git] setup: add gui to EXTRA_TARGETS and install Message-ID: <20100310203622.6BC0C1240026@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=setup.git;a=commitdiff;h=fd3fe6ab7f4ff1013330f885b528a3ca4a0449c6 commit fd3fe6ab7f4ff1013330f885b528a3ca4a0449c6 Author: Elentir Date: Sat Feb 27 00:03:29 2010 +0100 add gui to EXTRA_TARGETS and install diff --git a/Makefile b/Makefile index ab2c6c7..b9a41f5 100644 --- a/Makefile +++ b/Makefile @@ -74,12 +74,19 @@ UML ?= linux ifneq ($(DEBUG),false) export CFLAGS = -g endif +ifeq ($(GUI),true) +EXTRA_TARGETS += gui-iso +ifeq ($(USB),true) +EXTRA_TARGETS += gui-usb_img +endif +else ifeq ($(USB),true) EXTRA_TARGETS += usb_img endif ifeq ($(TFTP),true) EXTRA_TARGETS += tftp_img endif +endif CDIR = /var/cache/pacman-g2/pkg CONFDIR = config @@ -109,6 +116,12 @@ clean: check_root install: install -d -m0755 $(DESTDIR)$(PREFIX)/share/setup +ifeq ($(GUI),true) + install -m0644 fwife-$(FWIFE-MINIMALVER)-$(CARCH).iso $(DESTDIR)$(PREFIX)/share/setup/fwife-$(FWIFE-MINIMALVER)-$(CARCH).iso +ifeq ($(USB),true) + install -m0644 fwife-$(FWIFE-MINIMALVER)-$(CARCH)-usb.img $(DESTDIR)$(PREFIX)/share/setup/fwife-$(FWIFE-MINIMALVER)-$(CARCH)-usb.img +endif +else install -m0644 $(VMLINUZ)-$(KERNELV)-fw$(KERNELREL)-$(CARCH) $(DESTDIR)$(PREFIX)/share/setup/$(VMLINUZ)-$(KERNELV)-fw$(KERNELREL)-$(CARCH) install -m0644 initrd-$(CARCH).img.gz $(DESTDIR)$(PREFIX)/share/setup/initrd-$(CARCH).img.gz ifeq ($(USB),true) @@ -117,6 +130,7 @@ endif ifeq ($(TFTP),true) install -m0644 frugalware-$(FWVER)-$(CARCH)-tftp.img $(DESTDIR)$(PREFIX)/share/setup/frugalware-$(FWVER)-$(CARCH)-tftp.img endif +endif distclean: clean $(MAKE) -C po distclean From elentir at mailoo.org Wed Mar 10 21:36:22 2010 From: elentir at mailoo.org (Elentir) Date: Wed, 10 Mar 2010 21:36:22 +0100 (CET) Subject: [Frugalware-git] setup: use udhcpc for dhcp autodetection in gui initscript Message-ID: <20100310203622.77605124001D@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=setup.git;a=commitdiff;h=21f47974d8de4ea64c49c13f830d5b22cc4a198c commit 21f47974d8de4ea64c49c13f830d5b22cc4a198c Author: Elentir Date: Wed Mar 10 21:29:26 2010 +0100 use udhcpc for dhcp autodetection in gui initscript diff --git a/gui/start.sh b/gui/start.sh index af24d7c..4f7a666 100644 --- a/gui/start.sh +++ b/gui/start.sh @@ -177,8 +177,18 @@ export DISPLAY=:0 MOUSE=/dev/input/mice ## launch dhcpcd, if an interface is finded it'll be detected by fwife, so the user don't need to configure it -echo " * Starting dhcpcd.." -dhcpcd -b -L -t 15 +echo " * Starting dhcp.." +mkdir -p /var/run/dhcpcd/resolv.conf/ +listiface=`ls /sys/class/net` +for i in $listiface; do + ifconfig $i up + udhcpc -n -t 2 -i $i + if [[ "$?" == "0" ]]; then + # used by fwife to find working dhcp connection + touch /var/run/dhcpcd/resolv.conf/$i + break + fi +done echo " * Parsing kernel cmdline for Fwife options.." From cedynamix at gmail.com Wed Mar 10 21:45:52 2010 From: cedynamix at gmail.com (Cedynamix) Date: Wed, 10 Mar 2010 21:45:52 +0100 (CET) Subject: [Frugalware-git] frugalware-current: libarchive-2.8.1-1-i686 Message-ID: <20100310204552.9E1DA1240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=6550de0bd7f6edf0f67052f283483a1bd681ba88 commit 6550de0bd7f6edf0f67052f283483a1bd681ba88 Author: Cedynamix Date: Wed Mar 10 21:44:29 2010 +0100 libarchive-2.8.1-1-i686 * version bump diff --git a/source/base/libarchive/FrugalBuild b/source/base/libarchive/FrugalBuild index 9c99eb4..ab40bdd 100644 --- a/source/base/libarchive/FrugalBuild +++ b/source/base/libarchive/FrugalBuild @@ -2,14 +2,14 @@ # Maintainer: Cedrick Hannier alias Cedynamix pkgname=libarchive -pkgver=2.7.1 -pkgrel=2 +pkgver=2.8.1 +pkgrel=1 pkgdesc="Library to create and read several different archive formats" groups=('base' 'chroot-core') archs=('i686' 'x86_64' 'ppc') Finclude googlecode depends=('bzip2>=1.0.5-2' 'zlib>=1.2.3-6' 'lzma>=4.32.7-2') -sha1sums=('3810ded09b2d248eab9754d008f0cf144f27848d') +sha1sums=('7054dacbc37af865e665065d92f7093bedc311f4') # Need to prevent mistakes like unclean chroot build and others and be sure that DONT link to ACL* Fconfopts=($Fconfopts --disable-xattr --disable-acl) #options=('force') From exceed.cedric at gmail.com Wed Mar 10 22:07:48 2010 From: exceed.cedric at gmail.com (exceed) Date: Wed, 10 Mar 2010 22:07:48 +0100 (CET) Subject: [Frugalware-git] frugalware-current: haskell-haskeline-0.6.2.2-1-i686 Message-ID: <20100310210748.EC3381240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=3603afbee7af0f69ac9bcd2cf20603271d805880 commit 3603afbee7af0f69ac9bcd2cf20603271d805880 Author: exceed Date: Wed Mar 10 23:14:06 2010 +0100 haskell-haskeline-0.6.2.2-1-i686 * Version bump diff --git a/source/devel-extra/haskell-haskeline/FrugalBuild b/source/devel-extra/haskell-haskeline/FrugalBuild index 08d9005..9ae5077 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.1.6 -pkgrel=2 +pkgver=0.6.2.2 +pkgrel=1 pkgdesc="A command-line interface for user input, written in Haskell." archs=('i686' 'x86_64') depends=('haskell-extensible-exceptions>=0.1.1.1' 'haskell-terminfo>=0.3.1.1' 'haskell-utf8-string') groups=('devel-extra') -sha1sums=('5d0934c099d7aa40fa1bb5854d5c4c268a6ac0a4') +sha1sums=('235cc0b6bbca582e4031962246c10c98f5048bc6') _F_haskell_setup="Setup.hs" Finclude haskell From exceed.cedric at gmail.com Wed Mar 10 22:14:59 2010 From: exceed.cedric at gmail.com (exceed) Date: Wed, 10 Mar 2010 22:14:59 +0100 (CET) Subject: [Frugalware-git] frugalware-current: mako-0.3.1-1-i686 Message-ID: <20100310211459.139B91240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=1dc187b0a683cf19418ddac1c531e1d97d708eab commit 1dc187b0a683cf19418ddac1c531e1d97d708eab Author: exceed Date: Wed Mar 10 23:21:19 2010 +0100 mako-0.3.1-1-i686 * Version bump diff --git a/source/devel-extra/mako/FrugalBuild b/source/devel-extra/mako/FrugalBuild index 56755be..bf75e79 100644 --- a/source/devel-extra/mako/FrugalBuild +++ b/source/devel-extra/mako/FrugalBuild @@ -4,7 +4,7 @@ pkgname=mako _F_archive_name="Mako" -pkgver=0.2.5 +pkgver=0.3.1 pkgrel=1 pkgdesc="Mako is a template library written in Python." url="http://www.makotemplates.org" @@ -14,5 +14,5 @@ groups=('devel-extra') archs=('i686' 'x86_64') up2date="lynx -dump http://pypi.python.org/packages/source/M/Mako/ |Flasttar" source=(http://pypi.python.org/packages/source/M/Mako/$_F_archive_name-$pkgver.tar.gz) -sha1sums=('b3e4d48c30b5a2d273959e3921de428772f2acb4') +sha1sums=('783b782a5eb23fe72dc1059d27d6d92cc75647b3') _F_makepkg_chkdep="python" From exceed.cedric at gmail.com Wed Mar 10 22:20:27 2010 From: exceed.cedric at gmail.com (exceed) Date: Wed, 10 Mar 2010 22:20:27 +0100 (CET) Subject: [Frugalware-git] frugalware-current: haskell-mmap-0.5.4-2-i686 Message-ID: <20100310212027.A7B671240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=dc1fe85870d2aa7a230e5780d5d138b3fa9b4e76 commit dc1fe85870d2aa7a230e5780d5d138b3fa9b4e76 Author: exceed Date: Wed Mar 10 23:26:45 2010 +0100 haskell-mmap-0.5.4-2-i686 * Version bump diff --git a/source/devel-extra/haskell-mmap/FrugalBuild b/source/devel-extra/haskell-mmap/FrugalBuild index adb8acc..3e6c611 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.4.1 +pkgver=0.5.4 pkgrel=2 pkgdesc="Provides a wrapper to mmap(2)." archs=('i686' 'x86_64') depends=('ghc>=6.10.1') groups=('devel-extra') -sha1sums=('5bfe85d60fea89e85c797687fd08493305563dbe') +sha1sums=('2180a65eb6a438d1b1c2d6c179dffe0986dda94e') _F_haskell_setup="Setup.hs" Finclude haskell From bouleetbil at frogdev.info Wed Mar 10 22:23:54 2010 From: bouleetbil at frogdev.info (bouleetbil) Date: Wed, 10 Mar 2010 22:23:54 +0100 (CET) Subject: [Frugalware-git] gnometesting: glade3-3.6.7-2-x86_64 *split it Message-ID: <20100310212354.A95491240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=8d101f780eea91c278fe1173fc2a701a1eee29ac commit 8d101f780eea91c278fe1173fc2a701a1eee29ac Author: bouleetbil Date: Wed Mar 10 22:23:38 2010 +0100 glade3-3.6.7-2-x86_64 *split it diff --git a/source/gnome-extra/glade3/FrugalBuild b/source/gnome-extra/glade3/FrugalBuild index 5386a0f..1c42dc3 100644 --- a/source/gnome-extra/glade3/FrugalBuild +++ b/source/gnome-extra/glade3/FrugalBuild @@ -3,10 +3,11 @@ pkgname=glade3 pkgver=3.6.7 -pkgrel=1 +pkgrel=2 pkgdesc="Glade is a GUI builder for GTK+ and Gnome. (VERSION 3)" url="http://glade.gnome.org/" -depends=('atk>=1.26.0' 'libgnomeui>=2.24.1-2' 'pango>=1.24.4' 'devhelp>=0.23') +depends=("devhelp>=0.23") +rodepends=('libglade3-gnome') makedepends=('perl-xml-parser' 'gtk-doc' 'intltool') _F_gnome_scrollkeeper="y" _F_gnome_desktop="y" @@ -17,6 +18,36 @@ groups=('gnome-extra') archs=('i686' 'x86_64' 'ppc') sha1sums=('7621d5ae486ed42c35bb1d147b5693428481e733' \ '28a0ecf9ea108499ea25af1238f3a8fccf9a05d7') -Fconfopts="$Fconfopts --enable-gtk-doc" +Fconfopts="$Fconfopts --enable-gnome --enable-gtk-doc --enable-python" + +subpkgs=("${subpkgs[@]}" "libglade3-gnome") +subdescs=("${subdescs[@]}" "Widget library gnome for Glade3") +subdepends=("${subdepends[@]}" "atk>=1.26.0 libgnomeui>=2.24.1-2 pango>=1.24.4") +subrodepends=("${subrodepends[@]}" "libglade3") +subgroups=("${subgroups[@]}" 'gnome') +subarchs=("${subarchs[@]}" 'i686 x86_64 ppc') + +subpkgs=("${subpkgs[@]}" "libglade3") +subdescs=("${subdescs[@]}" "Widget library for Glade3") +subdepends=("${subdepends[@]}" "atk>=1.26.0 pango>=1.24.4") +subrodepends=("${subrodepends[@]}" "") +subgroups=("${subgroups[@]}" 'xlib') +subarchs=("${subarchs[@]}" 'i686 x86_64 ppc') + +subpkgs=("${subpkgs[@]}" "glade3-doc") +subdescs=("${subdescs[@]}" "Glade3 documentation") +subdepends=("${subdepends[@]}" "") +subrodepends=("${subrodepends[@]}" "") +subgroups=("${subgroups[@]}" 'gnome-extra') +subarchs=("${subarchs[@]}" 'i686 x86_64 ppc') + +build() { + Fbuild + Fbuild_gnome_scriptlet + Fsplit glade3-doc usr/share/gtk-doc + Fsplit libglade3-gnome usr/lib/glade3/modules/libgladegnome* + Fsplit libglade3 usr/include + Fsplit libglade3 usr/lib +} # optimization OK From exceed.cedric at gmail.com Wed Mar 10 22:32:34 2010 From: exceed.cedric at gmail.com (exceed) Date: Wed, 10 Mar 2010 22:32:34 +0100 (CET) Subject: [Frugalware-git] frugalware-current: libvirt-0.7.7-1-i686 Message-ID: <20100310213234.C24C71240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=9c54f7ebb7345df992ece8b685a67e7a32cf7b88 commit 9c54f7ebb7345df992ece8b685a67e7a32cf7b88 Author: exceed Date: Wed Mar 10 23:37:45 2010 +0100 libvirt-0.7.7-1-i686 * Version bump diff --git a/source/xlib-extra/libvirt/FrugalBuild b/source/xlib-extra/libvirt/FrugalBuild index 2b58975..13345ec 100644 --- a/source/xlib-extra/libvirt/FrugalBuild +++ b/source/xlib-extra/libvirt/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: jercel pkgname=libvirt -pkgver=0.7.6 +pkgver=0.7.7 pkgrel=1 pkgdesc="libvirt is a library providing access to information from various virtualization tools" url="http://libvirt.org" @@ -12,7 +12,7 @@ groups=('xlib-extra') archs=('x86_64' 'i686') up2date="lynx -dump ftp://libvirt.org/libvirt/|grep "[0-9].tar.gz$"|sed 's/.*-\(.*\).t.*/\1/'|Fsort|sed -n '$ p'" source=(ftp://ftp.libvirt.org/libvirt/$pkgname-$pkgver.tar.gz) -sha1sums=('3ee150e4057d19443c48541330128d6774f9f11f') +sha1sums=('348df39ea0e50e444d7a6be34d6ddaecac57ed48') subpkgs=('libvirt-python') subdescs=('Python bindings for libvirt') From bouleetbil at frogdev.info Wed Mar 10 22:37:52 2010 From: bouleetbil at frogdev.info (bouleetbil) Date: Wed, 10 Mar 2010 22:37:52 +0100 (CET) Subject: [Frugalware-git] gnometesting: gnome-media-2.29.91-2-x86_64 *fixed depends Message-ID: <20100310213752.7FFA81240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=6dbbd962606b97355f38e05df3f15455c72fd4d3 commit 6dbbd962606b97355f38e05df3f15455c72fd4d3 Author: bouleetbil Date: Wed Mar 10 22:37:11 2010 +0100 gnome-media-2.29.91-2-x86_64 *fixed depends diff --git a/source/gnome/gnome-media/FrugalBuild b/source/gnome/gnome-media/FrugalBuild index 50bade5..dc86bd3 100644 --- a/source/gnome/gnome-media/FrugalBuild +++ b/source/gnome/gnome-media/FrugalBuild @@ -3,12 +3,12 @@ pkgname=gnome-media pkgver=2.29.91 -pkgrel=1 +pkgrel=2 pkgdesc="GNOME media tools" url="http://www.gnome.org/" depends=('gst-plugins-good>=0.10.4-2' 'gail>=1.22.0' 'rarian>=0.8.0' \ 'gst-plugins-base-oil' 'gst-plugins-good-gconf' \ - 'libcanberra-gtk' 'unique' 'glade3') + 'libcanberra-gtk' 'unique' 'libglade3-gnome') makedepends=('intltool' 'gnome-doc-utils') groups=('gnome' 'gnome-minimal') archs=('i686' 'x86_64' 'ppc') From exceed.cedric at gmail.com Wed Mar 10 22:38:45 2010 From: exceed.cedric at gmail.com (exceed) Date: Wed, 10 Mar 2010 22:38:45 +0100 (CET) Subject: [Frugalware-git] frugalware-current: adg-0.5.6-1-i686 Message-ID: <20100310213845.590271240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=dd125e2c2b595a8d1201d1a475ac29a991c87c55 commit dd125e2c2b595a8d1201d1a475ac29a991c87c55 Author: exceed Date: Wed Mar 10 23:44:06 2010 +0100 adg-0.5.6-1-i686 * Version bump diff --git a/source/lib-extra/adg/FrugalBuild b/source/lib-extra/adg/FrugalBuild index 6e48b66..2a940ed 100644 --- a/source/lib-extra/adg/FrugalBuild +++ b/source/lib-extra/adg/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: jercel pkgname=adg -pkgver=0.5.5 +pkgver=0.5.6 pkgrel=1 pkgdesc="Automatic Drawing Generation is GObject-based library designed for generating technical drawings" depends=('gtk+2' 'glib2' 'cairo') @@ -11,4 +11,4 @@ _F_sourceforge_ext=".tar.bz2" Finclude sourceforge groups=('lib-extra') archs=('i686' 'x86_64') -sha1sums=('f80d27fb687614973ec778ebc8984720e72f2a40') +sha1sums=('348d86f5f11ceaea5e604b7efac518319be6b932') From bouleetbil at frogdev.info Wed Mar 10 22:43:55 2010 From: bouleetbil at frogdev.info (bouleetbil) Date: Wed, 10 Mar 2010 22:43:55 +0100 (CET) Subject: [Frugalware-git] gnometesting: gal *dead package Message-ID: <20100310214355.4D8DD1240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=a9e88e6b6794aee2f7c2404df68b4ae0d4c83613 commit a9e88e6b6794aee2f7c2404df68b4ae0d4c83613 Author: bouleetbil Date: Wed Mar 10 22:39:40 2010 +0100 gal *dead package diff --git a/source/gnome/gal/FrugalBuild b/source/gnome/gal/FrugalBuild deleted file mode 100644 index b1017bd..0000000 --- a/source/gnome/gal/FrugalBuild +++ /dev/null @@ -1,18 +0,0 @@ -# Compiling time: 1.10 SBU -# Maintainer: AlexExtreme - -pkgname=gal -pkgver=2.5.3 -pkgrel=3 -pkgdesc="GNOME Application Libraries" -url="http://www.gnome.org/" -depends=('libgnomeprintui>=2.18.0' 'libgnomeui>=2.18.1') -makedepends=('intltool' 'gtk-doc') -groups=('gnome' 'gnome-minimal') -archs=('i686' 'x86_64' 'ppc') -_F_gnome_devel=y -Finclude gnome -sha1sums=('7c590925bfc9f2650464d658c2d970291b034449') -Fconfopts="$Fconfopts --enable-gtk-doc" - -# optimization OK From bouleetbil at frogdev.info Wed Mar 10 22:43:55 2010 From: bouleetbil at frogdev.info (bouleetbil) Date: Wed, 10 Mar 2010 22:43:55 +0100 (CET) Subject: [Frugalware-git] gnometesting: libgnome-2.28.0-2-x86_64 replaces/provides gal Message-ID: <20100310214355.5E2771240003@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=a9c6ef8a440a7e1074deb3c0a025247171866444 commit a9c6ef8a440a7e1074deb3c0a025247171866444 Author: bouleetbil Date: Wed Mar 10 22:43:56 2010 +0100 libgnome-2.28.0-2-x86_64 replaces/provides gal diff --git a/source/gnome/libgnome/FrugalBuild b/source/gnome/libgnome/FrugalBuild index 4e1f783..68c3f29 100644 --- a/source/gnome/libgnome/FrugalBuild +++ b/source/gnome/libgnome/FrugalBuild @@ -3,7 +3,7 @@ pkgname=libgnome pkgver=2.28.0 -pkgrel=1 +pkgrel=2 pkgdesc="Common libraries for GNOME" url="http://www.gnome.org/" depends=('esd' 'gtk+2-engines>=2.14.3' 'gnome-frugalware>=0.7.2' 'dbus-x11' \ @@ -11,6 +11,8 @@ depends=('esd' 'gtk+2-engines>=2.14.3' 'gnome-frugalware>=0.7.2' 'dbus-x11' \ makedepends=('intltool' 'gtk-doc') groups=('gnome' 'gnome-minimal') archs=('i686' 'x86_64' 'ppc') +replaces=('gal') +provides=('gal') _F_gnome_schemas=('/etc/gconf/schemas/desktop_gnome_typing_break.schemas' '/etc/gconf/schemas/desktop_gnome_thumbnailers.schemas' \ '/etc/gconf/schemas/desktop_gnome_thumbnail_cache.schemas' \ From bouleetbil at frogdev.info Wed Mar 10 22:45:27 2010 From: bouleetbil at frogdev.info (bouleetbil) Date: Wed, 10 Mar 2010 22:45:27 +0100 (CET) Subject: [Frugalware-git] gnometesting: gnome-frugalware-1.2.1-3-x86_64 *added gconf rodepends *.install use gconf Message-ID: <20100310214527.D34D41240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=c737c6f60003a30614fa6d16290c5dfc3acb9329 commit c737c6f60003a30614fa6d16290c5dfc3acb9329 Author: bouleetbil Date: Wed Mar 10 22:45:39 2010 +0100 gnome-frugalware-1.2.1-3-x86_64 *added gconf rodepends *.install use gconf diff --git a/source/gnome/gnome-frugalware/FrugalBuild b/source/gnome/gnome-frugalware/FrugalBuild index 7f2c93b..65c16fb 100644 --- a/source/gnome/gnome-frugalware/FrugalBuild +++ b/source/gnome/gnome-frugalware/FrugalBuild @@ -3,10 +3,10 @@ pkgname=gnome-frugalware pkgver=1.2.1 -pkgrel=2 +pkgrel=3 pkgdesc="Gnome default theme for Frugalware Linux." url="http://frugalware.org" -rodepends=('gnome-themes' 'gtk+2-engines>=2.16.1' 'dejavu-ttf' "gtk+2-theme-frugalware=$pkgver" 'frugalware-cursor-theme') +rodepends=('gnome-themes' 'gtk+2-engines>=2.16.1' 'dejavu-ttf' "gtk+2-theme-frugalware=$pkgver" 'frugalware-cursor-theme' 'gconf') depends=() groups=('gnome' 'gnome-minimal') archs=('i686' 'x86_64' 'ppc') From bouleetbil at frogdev.info Wed Mar 10 23:36:16 2010 From: bouleetbil at frogdev.info (bouleetbil) Date: Wed, 10 Mar 2010 23:36:16 +0100 (CET) Subject: [Frugalware-git] gnometesting: gtk+2-2.19.7-1-x86_64 *version bump Message-ID: <20100310223616.467201240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=f12a43322be4657b38779d503deada3cd2627429 commit f12a43322be4657b38779d503deada3cd2627429 Author: bouleetbil Date: Wed Mar 10 23:31:12 2010 +0100 gtk+2-2.19.7-1-x86_64 *version bump diff --git a/source/xlib/gtk+2/FrugalBuild b/source/xlib/gtk+2/FrugalBuild index d943cb8..fdb33e8 100644 --- a/source/xlib/gtk+2/FrugalBuild +++ b/source/xlib/gtk+2/FrugalBuild @@ -3,7 +3,7 @@ pkgname=gtk+2 _F_gnome_name=gtk+ -pkgver=2.19.6 +pkgver=2.19.7 pkgrel=1 pkgdesc="The GTK+ Toolkit (2.x series)" depends=('libxext' 'libxfixes' 'cairo>=1.8.8' 'libgcc' 'libjpeg' 'libtiff' 'libcups') @@ -14,7 +14,7 @@ archs=('i686' 'x86_64' 'ppc') Finclude gnome url="http://www.gtk.org/" _F_cd_path="gtk+-$pkgver" -sha1sums=('0a42eeee67fe2f3022f39fdf1a2a3817e520c0ff') +sha1sums=('5e6bcc85ea7080d3b32e484993f87514d3ec2922') subpkgs=("${subpkgs[@]}" "$pkgname-libs") subdescs=("${subdescs[@]}" "GTK+2 core libraries.") From bouleetbil at frogdev.info Wed Mar 10 23:49:13 2010 From: bouleetbil at frogdev.info (bouleetbil) Date: Wed, 10 Mar 2010 23:49:13 +0100 (CET) Subject: [Frugalware-git] gnometesting: pitivi-0.13.4-1-x86_64 *version bump Message-ID: <20100310224913.579601240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=efb2e915139ac1ca2fb406780f843c60f624c8a7 commit efb2e915139ac1ca2fb406780f843c60f624c8a7 Author: bouleetbil Date: Wed Mar 10 23:48:55 2010 +0100 pitivi-0.13.4-1-x86_64 *version bump diff --git a/source/gnome-extra/pitivi/FrugalBuild b/source/gnome-extra/pitivi/FrugalBuild index 709aa05..a13c13d 100644 --- a/source/gnome-extra/pitivi/FrugalBuild +++ b/source/gnome-extra/pitivi/FrugalBuild @@ -2,8 +2,8 @@ # Maintainer: bouleetbil pkgname=pitivi -pkgver=0.13.3 -pkgrel=2 +pkgver=0.13.4 +pkgrel=1 pkgdesc="A non-linear video editor in GNOME desktop" url="http://www.gnome.org" depends=('gstreamer' 'python' \ @@ -15,4 +15,4 @@ options=('scriptlet') groups=('gnome-extra') archs=('i686' 'x86_64' 'ppc') Finclude gnome -sha1sums=('6117ddb74f139d260a86f485e63d66355d192dd2') +sha1sums=('1dd72cd8589bbaf8551ed82edac2dc279ed13159') From bouleetbil at frogdev.info Thu Mar 11 00:13:14 2010 From: bouleetbil at frogdev.info (bouleetbil) Date: Thu, 11 Mar 2010 00:13:14 +0100 (CET) Subject: [Frugalware-git] gnometesting: pitivi-0.13.4-2-x86_64 *fixed depends *added gnome-scriptlet Message-ID: <20100310231314.2249A1240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gnometesting.git;a=commitdiff;h=92643a4418ea4b012891d85bbfcac648e3ecbf92 commit 92643a4418ea4b012891d85bbfcac648e3ecbf92 Author: bouleetbil Date: Thu Mar 11 00:12:34 2010 +0100 pitivi-0.13.4-2-x86_64 *fixed depends *added gnome-scriptlet diff --git a/source/gnome-extra/pitivi/FrugalBuild b/source/gnome-extra/pitivi/FrugalBuild index a13c13d..9262aca 100644 --- a/source/gnome-extra/pitivi/FrugalBuild +++ b/source/gnome-extra/pitivi/FrugalBuild @@ -3,10 +3,10 @@ pkgname=pitivi pkgver=0.13.4 -pkgrel=1 +pkgrel=2 pkgdesc="A non-linear video editor in GNOME desktop" url="http://www.gnome.org" -depends=('gstreamer' 'python' \ +depends=('gstreamer' 'python' 'pygoocanvas' \ 'pygtk' 'gnome-python' 'gst-python' \ 'gnonlin' 'gst-plugins-base' 'gst-ffmpeg' \ 'gst-plugins-good-png') @@ -14,5 +14,7 @@ makedepends=('perl-xml-parser' 'intltool') options=('scriptlet') groups=('gnome-extra') archs=('i686' 'x86_64' 'ppc') -Finclude gnome +_F_gnome_iconcache="y" +_F_gnome_desktop="y" +Finclude gnome gnome-scriptlet sha1sums=('1dd72cd8589bbaf8551ed82edac2dc279ed13159') From elentir at mailoo.org Thu Mar 11 00:51:17 2010 From: elentir at mailoo.org (Elentir) Date: Thu, 11 Mar 2010 00:51:17 +0100 (CET) Subject: [Frugalware-git] setup: fix dhcpcd script Message-ID: <20100310235117.696271240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=setup.git;a=commitdiff;h=9b607be5dc8305ae3ce52e42876ab5a920ff322c commit 9b607be5dc8305ae3ce52e42876ab5a920ff322c Author: Elentir Date: Thu Mar 11 00:44:22 2010 +0100 fix dhcpcd script * make it stop after the Nth try * fix the option used to specify an interface diff --git a/bin/dhcpcd b/bin/dhcpcd index 6498713..aebbc3d 100755 --- a/bin/dhcpcd +++ b/bin/dhcpcd @@ -7,4 +7,4 @@ do shift done ifconfig $last up -exec udhcpc "$@" +exec udhcpc -n -i $last From vmiklos at frugalware.org Thu Mar 11 00:51:55 2010 From: vmiklos at frugalware.org (Miklos Vajna) Date: Thu, 11 Mar 2010 00:51:55 +0100 (CET) Subject: [Frugalware-git] homepage-ng: FSA639-drupal Message-ID: <20100310235155.78C991240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=homepage-ng.git;a=commitdiff;h=95e91b7bce985aefcd965ce4fb4e6337b075abf5 commit 95e91b7bce985aefcd965ce4fb4e6337b075abf5 Author: Miklos Vajna Date: Thu Mar 11 00:51:50 2010 +0100 FSA639-drupal diff --git a/frugalware/xml/security.xml b/frugalware/xml/security.xml index 34502dd..c1ff799 100644 --- a/frugalware/xml/security.xml +++ b/frugalware/xml/security.xml @@ -26,6 +26,21 @@ + 639 + 2010-03-11 + Miklos Vajna + drupal + 5.21-1 + 5.22-2locris1 + http://bugs.frugalware.org/task/4132 + No CVE references, see http://drupal.org/node/731710. + Some vulnerabilities have been reported in Drupal, which can be exploited by malicious users to conduct script insertion attacks and bypass certain security restrictions. + 1) Input passed via the "langcode", "name", and "native" parameters in the languages interface while using the Locale module 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 "administer languages" permissions. + 2) An error in the handling of certain sessions can be exploited to maintain an open session despite the user being blocked. + + + 638 2010-03-10 Miklos Vajna From vmiklos at frugalware.org Thu Mar 11 00:53:51 2010 From: vmiklos at frugalware.org (Miklos Vajna) Date: Thu, 11 Mar 2010 00:53:51 +0100 (CET) Subject: [Frugalware-git] homepage-ng: FSA640-drupal6 Message-ID: <20100310235351.B39981240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=homepage-ng.git;a=commitdiff;h=77e67b2a6165b739c3045a9a8cd9097672b95718 commit 77e67b2a6165b739c3045a9a8cd9097672b95718 Author: Miklos Vajna Date: Thu Mar 11 00:53:49 2010 +0100 FSA640-drupal6 diff --git a/frugalware/xml/security.xml b/frugalware/xml/security.xml index c1ff799..9b52f4e 100644 --- a/frugalware/xml/security.xml +++ b/frugalware/xml/security.xml @@ -26,6 +26,17 @@ + 640 + 2010-03-11 + Miklos Vajna + drupal6 + 6.15-1 + 6.16-1locris1 + http://bugs.frugalware.org/task/4133 + No CVE references, see http://drupal.org/node/731710. + See FSA639 for details. + + 639 2010-03-11 Miklos Vajna From elentir at mailoo.org Thu Mar 11 01:16:12 2010 From: elentir at mailoo.org (Elentir) Date: Thu, 11 Mar 2010 01:16:12 +0100 (CET) Subject: [Frugalware-git] setup: use frugalware version instead of fwife version Message-ID: <20100311001612.6FFE81240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=setup.git;a=commitdiff;h=52988d324f019bca18e82ae8dab4bfd223940f83 commit 52988d324f019bca18e82ae8dab4bfd223940f83 Author: Elentir Date: Thu Mar 11 01:11:36 2010 +0100 use frugalware version instead of fwife version * in gui iso names and grub diff --git a/Makefile b/Makefile index b9a41f5..8bd7c86 100644 --- a/Makefile +++ b/Makefile @@ -117,9 +117,9 @@ clean: check_root install: install -d -m0755 $(DESTDIR)$(PREFIX)/share/setup ifeq ($(GUI),true) - install -m0644 fwife-$(FWIFE-MINIMALVER)-$(CARCH).iso $(DESTDIR)$(PREFIX)/share/setup/fwife-$(FWIFE-MINIMALVER)-$(CARCH).iso + install -m0644 fwife-$(FWVER)-$(CARCH).iso $(DESTDIR)$(PREFIX)/share/setup/fwife-$(FWVER)-$(CARCH).iso ifeq ($(USB),true) - install -m0644 fwife-$(FWIFE-MINIMALVER)-$(CARCH)-usb.img $(DESTDIR)$(PREFIX)/share/setup/fwife-$(FWIFE-MINIMALVER)-$(CARCH)-usb.img + install -m0644 fwife-$(FWVER)-$(CARCH)-usb.img $(DESTDIR)$(PREFIX)/share/setup/fwife-$(FWVER)-$(CARCH)-usb.img endif else install -m0644 $(VMLINUZ)-$(KERNELV)-fw$(KERNELREL)-$(CARCH) $(DESTDIR)$(PREFIX)/share/setup/$(VMLINUZ)-$(KERNELV)-fw$(KERNELREL)-$(CARCH) @@ -333,26 +333,26 @@ gui-iso: echo -e "default=0 \n\ timeout=10 \n\ gfxmenu /boot/grub/message \n\ - title Fwife $(FWIFE-MINIMALVER) - $(KERNELV)-fw$(KERNELREL)-$(CARCH) \n\ + title Fwife $(FWVER) - $(KERNELV)-fw$(KERNELREL)-$(CARCH) \n\ kernel /boot/$(VMLINUZ)-$(KERNELV)-fw$(KERNELREL) $(KERNEL_OPTS) autodetectx \n\ initrd /boot/initrd-$(CARCH).img.gz \n\ - title Fwife $(FWIFE-MINIMALVER) - $(KERNELV)-fw$(KERNELREL)-$(CARCH) (generic) \n\ + title Fwife $(FWVER) - $(KERNELV)-fw$(KERNELREL)-$(CARCH) (generic) \n\ kernel /boot/$(VMLINUZ)-$(KERNELV)-fw$(KERNELREL) $(KERNEL_OPTS) \n\ initrd /boot/initrd-$(CARCH).img.gz" > iso/boot/grub/menu.lst mkisofs -R -b boot/grub/stage2_eltorito -no-emul-boot \ - -boot-load-size 4 -boot-info-table -o fwife-$(FWIFE-MINIMALVER)-$(CARCH).iso iso + -boot-load-size 4 -boot-info-table -o fwife-$(FWVER)-$(CARCH).iso iso rm -rf iso gui-usb_img: check_root - dd if=/dev/zero of=fwife-$(FWIFE-MINIMALVER)-$(CARCH)-usb.img bs=516096c count=$(shell echo $(CYL_COUNT) + 2 | bc) - echo -e 'n\np\n1\n\n\na\n1\nw'|/sbin/fdisk -u -C$(shell echo $(CYL_COUNT) + 2 | bc) -S63 -H16 fwife-$(FWIFE-MINIMALVER)-$(CARCH)-usb.img || true + dd if=/dev/zero of=fwife-$(FWVER)-$(CARCH)-usb.img bs=516096c count=$(shell echo $(CYL_COUNT) + 2 | bc) + echo -e 'n\np\n1\n\n\na\n1\nw'|/sbin/fdisk -u -C$(shell echo $(CYL_COUNT) + 2 | bc) -S63 -H16 fwife-$(FWVER)-$(CARCH)-usb.img || true losetup -d /dev/loop1 || true - losetup -o32256 /dev/loop1 fwife-$(FWIFE-MINIMALVER)-$(CARCH)-usb.img + losetup -o32256 /dev/loop1 fwife-$(FWVER)-$(CARCH)-usb.img /sbin/mke2fs -b1024 -F /dev/loop1 sleep 1 losetup -d /dev/loop1 mkdir i - mount -o loop,offset=32256 fwife-$(FWIFE-MINIMALVER)-$(CARCH)-usb.img i + mount -o loop,offset=32256 fwife-$(FWVER)-$(CARCH)-usb.img i mkdir -p i/boot/grub cp $(VMLINUZ)-$(KERNELV)-fw$(KERNELREL)-$(CARCH) i/boot/$(VMLINUZ)-$(KERNELV)-fw$(KERNELREL) cp initrd-$(CARCH).img.gz i/boot/ @@ -361,15 +361,15 @@ gui-usb_img: check_root echo -e "default=0 \n\ timeout=10 \n\ gfxmenu /boot/grub/message \n\ - title Fwife $(FWIFE-MINIMALVER) - $(KERNELV)-fw$(KERNELREL)-$(CARCH) \n\ + title Fwife $(FWVER) - $(KERNELV)-fw$(KERNELREL)-$(CARCH) \n\ kernel /boot/$(VMLINUZ)-$(KERNELV)-fw$(KERNELREL) $(KERNEL_OPTS) autodetectx \n\ initrd /boot/initrd-$(CARCH).img.gz \n\ - title Fwife $(FWIFE-MINIMALVER) - $(KERNELV)-fw$(KERNELREL)-$(CARCH) (generic) \n\ + title Fwife $(FWVER) - $(KERNELV)-fw$(KERNELREL)-$(CARCH) (generic) \n\ kernel /boot/$(VMLINUZ)-$(KERNELV)-fw$(KERNELREL) $(KERNEL_OPTS) \n\ initrd /boot/initrd-$(CARCH).img.gz" > i/boot/grub/menu.lst umount i rmdir i - echo -e "device (hd0) fwife-$(FWIFE-MINIMALVER)-$(CARCH)-usb.img \n\ + echo -e "device (hd0) fwife-$(FWVER)-$(CARCH)-usb.img \n\ root (hd0,0) \n\ setup (hd0) \n\ quit" | grub --batch --device-map=/dev/null From bouleetbil at frogdev.info Thu Mar 11 10:59:10 2010 From: bouleetbil at frogdev.info (bouleetbil) Date: Thu, 11 Mar 2010 10:59:10 +0100 (CET) Subject: [Frugalware-git] frugalware-current: papyon-0.4.5-1-x86_64 *version bump Message-ID: <20100311095910.CB10C1240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=3b3a9b96cc3ffbaad2c470b2bee1b9555bdcecbf commit 3b3a9b96cc3ffbaad2c470b2bee1b9555bdcecbf Author: bouleetbil Date: Thu Mar 11 10:59:15 2010 +0100 papyon-0.4.5-1-x86_64 *version bump diff --git a/source/devel-extra/papyon/FrugalBuild b/source/devel-extra/papyon/FrugalBuild index cc413f1..516357c 100644 --- a/source/devel-extra/papyon/FrugalBuild +++ b/source/devel-extra/papyon/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: bouleetbil pkgname=papyon -pkgver=0.4.4 +pkgver=0.4.5 pkgrel=1 pkgdesc="Msn protocol in python for telepathy." url="http://telepathy.freedesktop.org/wiki/Papyon" @@ -11,4 +11,4 @@ source=("http://telepathy.freedesktop.org/releases/$pkgname/$pkgname-$pkgver.tar depends=('pygobject' 'pycrypto' 'pyopenssl' 'python>=2.6') groups=('devel-extra') archs=('i686' 'x86_64' 'ppc') -sha1sums=('ee17e17702ec7a3da9f93a8e0a10c35c1a27348a') +sha1sums=('33771381425b0b14fda7c381a0fd9498be7a260a') From bouleetbil at frogdev.info Thu Mar 11 11:03:09 2010 From: bouleetbil at frogdev.info (bouleetbil) Date: Thu, 11 Mar 2010 11:03:09 +0100 (CET) Subject: [Frugalware-git] frugalware-current: telepathy-butterfly-0.5.5-1-x86_64 *version bump Message-ID: <20100311100309.E21561240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=5dfdec1087e46ea047503f8416dd50fa71d8dbcc commit 5dfdec1087e46ea047503f8416dd50fa71d8dbcc Author: bouleetbil Date: Thu Mar 11 11:03:30 2010 +0100 telepathy-butterfly-0.5.5-1-x86_64 *version bump diff --git a/source/lib-extra/telepathy-butterfly/FrugalBuild b/source/lib-extra/telepathy-butterfly/FrugalBuild index 19fa336..4ee11ea 100644 --- a/source/lib-extra/telepathy-butterfly/FrugalBuild +++ b/source/lib-extra/telepathy-butterfly/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: bouleetbil pkgname=telepathy-butterfly -pkgver=0.5.4 +pkgver=0.5.5 pkgrel=1 pkgdesc="An MSN connection manager for Telepathy" url="http://telepathy.freedesktop.org/releases/$pkgname" @@ -11,7 +11,7 @@ source=("http://telepathy.freedesktop.org/releases/$pkgname/$pkgname-$pkgver.tar depends=('telepathy-python' 'papyon') groups=('lib-extra') archs=('i686' 'x86_64' 'ppc') -sha1sums=('abbe97ca801d1ad1e90791f21fe6b58b78ab1243') +sha1sums=('2eb4a6a549bd260c35f3d40cf296a852e5ccd976') build() { Fcd From bouleetbil at frogdev.info Thu Mar 11 15:31:35 2010 From: bouleetbil at frogdev.info (bouleetbil) Date: Thu, 11 Mar 2010 15:31:35 +0100 (CET) Subject: [Frugalware-git] frugalware-current: perl-goo-canvas-0.06-1-ppc Message-ID: <20100311143135.BBCE61240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=8282ed7f543f27d6a2d93d50b4d0b39d2e155602 commit 8282ed7f543f27d6a2d93d50b4d0b39d2e155602 Author: bouleetbil Date: Thu Mar 11 15:20:03 2010 +0100 perl-goo-canvas-0.06-1-ppc added ppc to archs() diff --git a/source/devel-extra/perl-goo-canvas/FrugalBuild b/source/devel-extra/perl-goo-canvas/FrugalBuild index 76c7ba2..3d39d3a 100644 --- a/source/devel-extra/perl-goo-canvas/FrugalBuild +++ b/source/devel-extra/perl-goo-canvas/FrugalBuild @@ -10,6 +10,6 @@ depends=('perl-cairo' 'perl-glib' 'goocanvas' 'perl-gtk2') makedepends=('perl-extutils-depends' 'perl-extutils-pkgconfig') Finclude perl groups=('devel-extra') -archs=('i686' 'x86_64') +archs=('i686' 'x86_64' 'ppc') sha1sums=('55696d3d81f9f268ebbb60142d3973d11727a500') From devil505linux at gmail.com Thu Mar 11 17:28:58 2010 From: devil505linux at gmail.com (Devil505) Date: Thu, 11 Mar 2010 17:28:58 +0100 (CET) Subject: [Frugalware-git] frugalware-current: pidgin-sipe-1.9.0-1-i686 * version bump Message-ID: <20100311162858.CB3201240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=1e6fdf1323166613847a3d45f3864b084e17557e commit 1e6fdf1323166613847a3d45f3864b084e17557e Author: Devil505 Date: Thu Mar 11 17:28:29 2010 +0100 pidgin-sipe-1.9.0-1-i686 * version bump diff --git a/source/xapps-extra/pidgin-sipe/FrugalBuild b/source/xapps-extra/pidgin-sipe/FrugalBuild index 1659fbf..0edf234 100644 --- a/source/xapps-extra/pidgin-sipe/FrugalBuild +++ b/source/xapps-extra/pidgin-sipe/FrugalBuild @@ -2,18 +2,17 @@ # Maintainer: Devil505 pkgname=pidgin-sipe -pkgver=1.8.1 +pkgver=1.9.0 pkgrel=1 pkgdesc="Pidgin Plug-in SIPE (Sip Exchange Protocol)" depends=('pidgin>=2.5.6-2' 'zlib') makedepends=('intltool') -_F_sourceforge_ext=".tar.bz2" _F_sourceforge_dirname="sipe" _F_sourceforge_prefix="$pkgname-" _F_sourceforge_realname="$_F_sourceforge_dirname" Finclude sourceforge groups=('xapps-extra' 'pidgin-plugins') archs=('i686' 'x86_64') -sha1sums=('2852f16506f19d64a23ff2bd4fe8ad3149752c38') +sha1sums=('20c339659f099f041f78afb5384d3430aab362b2') # optimization OK From devil505linux at gmail.com Thu Mar 11 17:34:53 2010 From: devil505linux at gmail.com (Devil505) Date: Thu, 11 Mar 2010 17:34:53 +0100 (CET) Subject: [Frugalware-git] frugalware-current: gnome-agenda-0.3.1.2-1-i686 * version bump Message-ID: <20100311163453.6F94C1240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=2b77cfffe524f70e57234c0926041de038fe2477 commit 2b77cfffe524f70e57234c0926041de038fe2477 Author: Devil505 Date: Thu Mar 11 17:34:34 2010 +0100 gnome-agenda-0.3.1.2-1-i686 * version bump diff --git a/source/gnome-extra/gnome-agenda/FrugalBuild b/source/gnome-extra/gnome-agenda/FrugalBuild index 33b763e..ded290d 100644 --- a/source/gnome-extra/gnome-agenda/FrugalBuild +++ b/source/gnome-extra/gnome-agenda/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: Devil505 pkgname=gnome-agenda -pkgver=0.3.1 +pkgver=0.3.1.2 pkgrel=1 pkgdesc="Display calendars on the GNOME desktop tray. Supports Google Calendar, Novell Groupwise, Evolution and iCalendar" url="http://code.google.com/p/gnome-agenda/" @@ -12,5 +12,5 @@ groups=('gnome-extra') archs=('i686' 'x86_64') up2date="Flasttar $url" source=(http://gnome-agenda.googlecode.com/svn/tags/$pkgname-$pkgver.tar.gz) -sha1sums=('507187c7a76a892c7a39ae056afb7f65d768ff2f') +sha1sums=('0e70ef39d0bad0943cd2e41c1bceddc92d6406ad') From devil505linux at gmail.com Thu Mar 11 19:00:10 2010 From: devil505linux at gmail.com (Devil505) Date: Thu, 11 Mar 2010 19:00:10 +0100 (CET) Subject: [Frugalware-git] frugalware-current: denemo-0.8.14-1-i686 * version bump Message-ID: <20100311180011.0078F1240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=b04df2d585e115986e76628c1d19cc6b98e1652e commit b04df2d585e115986e76628c1d19cc6b98e1652e Author: Devil505 Date: Thu Mar 11 18:57:21 2010 +0100 denemo-0.8.14-1-i686 * version bump diff --git a/source/gnome-extra/denemo/FrugalBuild b/source/gnome-extra/denemo/FrugalBuild index 41129b8..541c490 100644 --- a/source/gnome-extra/denemo/FrugalBuild +++ b/source/gnome-extra/denemo/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: Devil505 pkgname=denemo -pkgver=0.8.12 +pkgver=0.8.14 pkgrel=1 pkgdesc="GTK+ graphical music notation editor." url="http://savannah.gnu.org/projects/$pkgname" @@ -17,7 +17,7 @@ Fconfopts="${Fconfopts[@]} --enable-gtk2 \ --enable-nls \ --with-plugins="analysis,midiinput,rumour"" up2date="Flasttar http://download.savannah.gnu.org/releases/$pkgname/" -source=(http://download.savannah.gnu.org/releases/$pkgname/$pkgname-$pkgver.tar.gz) -sha1sums=('f66c2177cd84ad9c252d89305e653ed773cda414') +source=(http://mirrors.aixtools.net/sv/$pkgname/$pkgname-$pkgver.tar.gz) +sha1sums=('26e6575e3d2f53f7dee1d26252f5ff97f1970cfe') # optimization OK From crazy at frugalware.org Thu Mar 11 19:09:20 2010 From: crazy at frugalware.org (crazy) Date: Thu, 11 Mar 2010 19:09:20 +0100 (CET) Subject: [Frugalware-git] setup: formatdisk: restore xfs .. fsnum should be 5 for x86 and 4 for ppc now Message-ID: <20100311180920.177DD1240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=setup.git;a=commitdiff;h=fd1985fe54d66322f702d1364729348ddf9bdbcc commit fd1985fe54d66322f702d1364729348ddf9bdbcc Author: crazy Date: Thu Mar 11 20:09:39 2010 +0100 formatdisk: restore xfs .. fsnum should be 5 for x86 and 4 for ppc now diff --git a/src/plugins/formatdisk.c b/src/plugins/formatdisk.c index 1168b70..10537ef 100644 --- a/src/plugins/formatdisk.c +++ b/src/plugins/formatdisk.c @@ -225,9 +225,9 @@ char *selformatmode(char *dev) char *selfs(char *dev) { #ifndef ARCH_PPC - int fsnum=4; + int fsnum=5; #else - int fsnum=3; + int fsnum=4; #endif char *fss[] = { From ryuo at frugalware.org Thu Mar 11 20:57:09 2010 From: ryuo at frugalware.org (James Buren) Date: Thu, 11 Mar 2010 20:57:09 +0100 (CET) Subject: [Frugalware-git] frugalware-current: dclock-2.2.2-1-i686 * new package Message-ID: <20100311195709.06A9B1240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=aca0dfa8ff04c7ec0937b035e3c6bef745b9e2dd commit aca0dfa8ff04c7ec0937b035e3c6bef745b9e2dd Author: James Buren Date: Thu Mar 11 13:53:15 2010 -0600 dclock-2.2.2-1-i686 * new package diff --git a/source/x11-extra/dclock/FrugalBuild b/source/x11-extra/dclock/FrugalBuild new file mode 100644 index 0000000..ce2c1af --- /dev/null +++ b/source/x11-extra/dclock/FrugalBuild @@ -0,0 +1,31 @@ +# Compiling Time: 0.01 SBU +# Maintainer: James Buren + +pkgname=dclock +pkgver=2.2.2 +pkgrel=1 +pkgdesc="A digital clock for X11." +url="http://opencircuitdesign.com/~tim/programs" +depends=('libxt' 'libxft' 'libuuid' 'zlib') +rodepends=('alsa-utils') +groups=('x11-extra') +archs=('i686') +up2date="Flasttar $url" +_F_cd_path="$pkgname" +source=($url/archive/$pkgname-$pkgver.tgz) +sha1sums=('367729270583e09437dbb02c163ad5576dbe4d96') + +build() { + Fsed "sound" "sounds/$pkgname" DClock + Fsed "play" "$pkgname-aplay" DClock + Fsed "-m32" "$CFLAGS" Makefile + sed -i "10 i #include " dclock.c + Fmake + Fexerel /usr/bin/$pkgname + Fmanrel $pkgname.1 + Ffilerel sounds/*.wav /usr/share/sounds/$pkgname + Fdocrel DClock + Fwrapper "exec /usr/bin/aplay -q \"\$@\"" $pkgname-aplay +} + +# optimization OK From ryuo at frugalware.org Thu Mar 11 23:52:20 2010 From: ryuo at frugalware.org (James Buren) Date: Thu, 11 Mar 2010 23:52:20 +0100 (CET) Subject: [Frugalware-git] frugalware-current: cbpanel-0.3-1-i686 * new package Message-ID: <20100311225220.2B8091240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=ce98f100ede573d2fe0e57c037ac4ebd5c1a2070 commit ce98f100ede573d2fe0e57c037ac4ebd5c1a2070 Author: James Buren Date: Thu Mar 11 16:48:46 2010 -0600 cbpanel-0.3-1-i686 * new package diff --git a/source/x11-extra/cbpanel/FrugalBuild b/source/x11-extra/cbpanel/FrugalBuild new file mode 100644 index 0000000..dc876ef --- /dev/null +++ b/source/x11-extra/cbpanel/FrugalBuild @@ -0,0 +1,26 @@ +# Compiling Time: 0.01 SBU +# Maintainer: James Buren + +pkgname=cbpanel +pkgver=0.3 +pkgrel=1 +pkgdesc="A panel originating from Crunchbang Linux." +_url="http://www.ad-comp.be/public/projets/cbpanel" +url="http://crunchbanglinux.org/forums/topic/2515/crunchbang-panel/page/1/" +rodepends=('vte-python' 'python-xlib' 'gnome-python-desktop-wnck') +groups=('x11-extra') +archs=('i686' 'x86_64') +Fpkgversep="." +_F_cd_path="." +up2date="Flasttar $_url" +source=($_url/$pkgname.$pkgver.tar.bz2 $pkgname-config.patch) +sha1sums=('80bf6eb179e9376f46cd65b0f6615765bfe30497' \ + '8ba39a0f1e5a609900a53a69e3a2bbc2b244e76d') + +build() { + Fpatchall + Fmkdir /usr/lib + Fcp $pkgname /usr/lib + Frm /usr/lib/$pkgname/{control-install,make_deb.sh} + Fln /usr/lib/$pkgname/$pkgname /usr/bin/$pkgname +} diff --git a/source/x11-extra/cbpanel/cbpanel-config.patch b/source/x11-extra/cbpanel/cbpanel-config.patch new file mode 100644 index 0000000..b778814 --- /dev/null +++ b/source/x11-extra/cbpanel/cbpanel-config.patch @@ -0,0 +1,14 @@ +diff -aur cbpanel-2/config cbpanel/config +--- cbpanel-2/config 2010-03-11 16:39:08.740413055 -0600 ++++ cbpanel/config 2010-03-11 16:37:37.912413203 -0600 +@@ -10,6 +10,10 @@ + "OVERRIDE_GTK":"no", + "THEME":"grey", + "TIMEFORMAT":"%H:%M", ++"MENUTYPE":"", ++"MENU_LBL_SHOW":"", ++"MENULABEL":"", ++"OB_MENU_CMD":"" + } + + PLUGINS = [ From vmiklos at frugalware.org Fri Mar 12 02:44:31 2010 From: vmiklos at frugalware.org (Miklos Vajna) Date: Fri, 12 Mar 2010 02:44:31 +0100 (CET) Subject: [Frugalware-git] homepage-ng: FSA641-drupal-i18n Message-ID: <20100312014431.A9ABE1240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=homepage-ng.git;a=commitdiff;h=8b0b29223515e22974234104b56e35a3b01dd050 commit 8b0b29223515e22974234104b56e35a3b01dd050 Author: Miklos Vajna Date: Fri Mar 12 02:44:28 2010 +0100 FSA641-drupal-i18n diff --git a/frugalware/xml/security.xml b/frugalware/xml/security.xml index 9b52f4e..5e3fe53 100644 --- a/frugalware/xml/security.xml +++ b/frugalware/xml/security.xml @@ -26,6 +26,18 @@ + 641 + 2010-03-12 + Miklos Vajna + drupal-i18n + 5.x_2.5-1 + 5.x_2.6-1locris1 + http://bugs.frugalware.org/task/4134 + No CVE references, see http://drupal.org/node/731632. + A vulnerability has been reported in the Internationalization module for Drupal, which can be exploited by malicious users to compromise a vulnerable system. + Certain unspecified input is not properly sanitised before being used to translate the text. This can be exploited to execute arbitrary PHP code by passing a malicious string to the input filter. + + 640 2010-03-11 Miklos Vajna From vmiklos at frugalware.org Fri Mar 12 02:46:34 2010 From: vmiklos at frugalware.org (Miklos Vajna) Date: Fri, 12 Mar 2010 02:46:34 +0100 (CET) Subject: [Frugalware-git] homepage-ng: FSA642-druapl6-i18n Message-ID: <20100312014634.3A7AC1240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=homepage-ng.git;a=commitdiff;h=7ed4c5ca9e8b3c6ecd612fe18229658ec6ddcce9 commit 7ed4c5ca9e8b3c6ecd612fe18229658ec6ddcce9 Author: Miklos Vajna Date: Fri Mar 12 02:46:31 2010 +0100 FSA642-druapl6-i18n diff --git a/frugalware/xml/security.xml b/frugalware/xml/security.xml index 5e3fe53..ea91541 100644 --- a/frugalware/xml/security.xml +++ b/frugalware/xml/security.xml @@ -26,6 +26,17 @@ + 642 + 2010-03-12 + Miklos Vajna + drupal6-i18n + 6.x_1.2-1 + 6.x_1.3-1locris1 + http://bugs.frugalware.org/task/4134 + No CVE references, see http://drupal.org/node/731632. + See FSA641 for details. + + 641 2010-03-12 Miklos Vajna From vmiklos at frugalware.org Fri Mar 12 03:06:03 2010 From: vmiklos at frugalware.org (Miklos Vajna) Date: Fri, 12 Mar 2010 03:06:03 +0100 (CET) Subject: [Frugalware-git] frugalware-current: qemu-0.12.3-1-i686 Message-ID: <20100312020603.8F9651240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=ecf273a5b1491842b675af680d9e9776f3ea3113 commit ecf273a5b1491842b675af680d9e9776f3ea3113 Author: Miklos Vajna Date: Fri Mar 12 03:02:55 2010 +0100 qemu-0.12.3-1-i686 - version bump diff --git a/source/xapps-extra/qemu/FrugalBuild b/source/xapps-extra/qemu/FrugalBuild index a3970bb..bea4926 100644 --- a/source/xapps-extra/qemu/FrugalBuild +++ b/source/xapps-extra/qemu/FrugalBuild @@ -4,7 +4,7 @@ USE_DEVEL=${USE_DEVEL:-"n"} pkgname=qemu -pkgver=0.12.2 +pkgver=0.12.3 Fuse $USE_DEVEL && pkgver=svn6369 pkgrel=1 Fuse $USE_DEVEL && pkgrel=1 @@ -20,7 +20,7 @@ up2date="Flasttar http://download.savannah.gnu.org/releases/qemu" source=(http://download.savannah.gnu.org/releases/qemu/qemu-$pkgver.tar.gz \ rc.qemu rc.qemu-hu.po \ rc.qemu-system qemu-system README.Frugalware) -sha1sums=('9e826ea1458d358598fbf61ab577c8f849cd99c1' \ +sha1sums=('03ec307be094bb216bb5be17297e9f33e1a01b56' \ '563c18fe297f1e79b0172e3b426310ac5fbf1a83' \ 'ce31601e5712057938227923d4a9adf16eeb36e7' \ 'd7098b739aa58a004dc61e8e4124751aefad47b3' \ From ryuo at frugalware.org Fri Mar 12 12:46:47 2010 From: ryuo at frugalware.org (James Buren) Date: Fri, 12 Mar 2010 12:46:47 +0100 (CET) Subject: [Frugalware-git] frugalware-current: dmd-1.057-1-i686 * version bump Message-ID: <20100312114647.4396620E0002@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=e23ee333339ef6cce5dd329d09924dd4498d81a9 commit e23ee333339ef6cce5dd329d09924dd4498d81a9 Author: James Buren Date: Fri Mar 12 05:32:03 2010 -0600 dmd-1.057-1-i686 * version bump diff --git a/source/devel-extra/dmd/FrugalBuild b/source/devel-extra/dmd/FrugalBuild index d1c0001..2dca2ef 100644 --- a/source/devel-extra/dmd/FrugalBuild +++ b/source/devel-extra/dmd/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: James Buren pkgname=dmd -pkgver=1.046 +pkgver=1.057 pkgrel=1 pkgdesc="Official DMD compiler for D." url="http://www.digitalmars.com" @@ -12,7 +12,7 @@ archs=('i686' '!x86_64') source=(${url/www./ftp.}/$pkgname.$pkgver.zip) options=('nobuild' 'nomirror') up2date="lynx -dump '$url/d/1.0/changelog.html' | grep 'new for' | head -n1 | gawk '{print \$6}'" -sha1sums=('a1b263b047c3420b8bf9978ccb5abe008b6761c9') +sha1sums=('47cf347f878e577492939af5a5138d33ede66be5') build() { Fcd $pkgname From ryuo at frugalware.org Fri Mar 12 12:46:48 2010 From: ryuo at frugalware.org (James Buren) Date: Fri, 12 Mar 2010 12:46:48 +0100 (CET) Subject: [Frugalware-git] frugalware-current: xpyb-1.2-1-i686 * version bump Message-ID: <20100312114648.6AB9020E0004@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=cf646071efd6ba75da8ca5e7271d56cd9488ff54 commit cf646071efd6ba75da8ca5e7271d56cd9488ff54 Author: James Buren Date: Fri Mar 12 05:33:41 2010 -0600 xpyb-1.2-1-i686 * version bump diff --git a/source/xlib-extra/xpyb/FrugalBuild b/source/xlib-extra/xpyb/FrugalBuild index 1016332..8218e96 100644 --- a/source/xlib-extra/xpyb/FrugalBuild +++ b/source/xlib-extra/xpyb/FrugalBuild @@ -2,15 +2,15 @@ # Maintainer: James Buren pkgname=xpyb -pkgver=1.1 +pkgver=1.2 pkgrel=1 pkgdesc="Python bindings for XCB." url="http://xcb.freedesktop.org" -depends=('python' 'libxcb' 'glibc') +depends=('python' 'libxcb>=1.5' 'glibc') groups=('xlib-extra') archs=('i686' 'x86_64') up2date="Flasttar $url/dist" source=($url/dist/$pkgname-$pkgver.tar.bz2) -sha1sums=('e0d087d7a932e5084c17458f8906a7cd8af5a996') +sha1sums=('1fbb6a128e8c46321e1a5197c6c55c0b884c28fa') # optimization OK From ryuo at frugalware.org Fri Mar 12 12:46:49 2010 From: ryuo at frugalware.org (James Buren) Date: Fri, 12 Mar 2010 12:46:49 +0100 (CET) Subject: [Frugalware-git] frugalware-current: wgetpaste-2.16-1-i686 * version bump Message-ID: <20100312114649.1AD0620E000A@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=1a5981e33bd7a4d1e9e92b77f77bbff799ced807 commit 1a5981e33bd7a4d1e9e92b77f77bbff799ced807 Author: James Buren Date: Fri Mar 12 05:42:40 2010 -0600 wgetpaste-2.16-1-i686 * version bump diff --git a/source/apps-extra/wgetpaste/FrugalBuild b/source/apps-extra/wgetpaste/FrugalBuild index 983d2af..c4a7795 100644 --- a/source/apps-extra/wgetpaste/FrugalBuild +++ b/source/apps-extra/wgetpaste/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: James Buren pkgname=wgetpaste -pkgver=2.12 +pkgver=2.16 pkgrel=1 pkgdesc="A bash script for automating pasting to pastebins." url="http://wgetpaste.zlin.dk/" @@ -10,16 +10,16 @@ rodepends=('bash') groups=('apps-extra') archs=('i686' 'x86_64') backup=("etc/$pkgname.conf" "etc/$pkgname.d/zlin.conf") -up2date="Flastarchive $url .bz2" -source=($url/$pkgname-$pkgver.bz2 $url/wgetpaste.example $url/zlin.conf) -sha1sums=('33e332f7400181692804a09421af329c854b4191' \ +up2date="Flasttar $url" +source=($url/$pkgname-$pkgver.tar.bz2 $url/wgetpaste.example $url/zlin.conf) +sha1sums=('09f353e89561b9916227410554bc965c3a50751b' \ '090e322d2b3533dfc614ed896963274f238cfcc1' \ '47cf738ffa280333a58f7baf20ba3f1ea47a373d') build() { - Fexe $pkgname-$pkgver /usr/bin/$pkgname - Ffile $pkgname.example /etc/$pkgname + Fexe $pkgname-$pkgver/$pkgname /usr/bin/$pkgname + Ffile $pkgname.example /etc/$pkgname.conf Ffile /etc/$pkgname.d/zlin.conf } From vmiklos at frugalware.org Fri Mar 12 13:01:19 2010 From: vmiklos at frugalware.org (Miklos Vajna) Date: Fri, 12 Mar 2010 13:01:19 +0100 (CET) Subject: [Frugalware-git] kernel2633: kernel-2.6.33-1-i686 Message-ID: <20100312120119.51B6020E0002@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=kernel2633.git;a=commitdiff;h=c540545d9cab3300a82e7767337e745c7b663957 commit c540545d9cab3300a82e7767337e745c7b663957 Author: Miklos Vajna Date: Fri Mar 12 12:57:09 2010 +0100 kernel-2.6.33-1-i686 - version bump diff --git a/source/base/kernel/FrugalBuild b/source/base/kernel/FrugalBuild index 2d6f644..e801450 100644 --- a/source/base/kernel/FrugalBuild +++ b/source/base/kernel/FrugalBuild @@ -1,4 +1,4 @@ -# Compiling Time: 30.58 SBU +# Compiling Time: 36.67 SBU # Maintainer: Miklos Vajna USE_DEVEL=${USE_DEVEL:-"n"} diff --git a/source/base/kernel/config.i686 b/source/base/kernel/config.i686 index 467d46b..392ff1e 100644 --- a/source/base/kernel/config.i686 +++ b/source/base/kernel/config.i686 @@ -1,7 +1,7 @@ # # Automatically generated make config: don't edit -# Linux kernel version: 2.6.32-fw1 -# Wed Dec 9 23:08:20 2009 +# Linux kernel version: 2.6.33 +# Thu Mar 11 18:46:02 2010 # # CONFIG_64BIT is not set CONFIG_X86_32=y @@ -44,6 +44,7 @@ CONFIG_ARCH_POPULATES_NODE_MAP=y # CONFIG_AUDIT_ARCH is not set CONFIG_ARCH_SUPPORTS_OPTIMIZED_INLINING=y CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y +CONFIG_HAVE_INTEL_TXT=y CONFIG_GENERIC_HARDIRQS=y CONFIG_GENERIC_HARDIRQS_NO__DO_IRQ=y CONFIG_GENERIC_IRQ_PROBE=y @@ -68,9 +69,11 @@ CONFIG_LOCALVERSION_AUTO=y CONFIG_HAVE_KERNEL_GZIP=y CONFIG_HAVE_KERNEL_BZIP2=y CONFIG_HAVE_KERNEL_LZMA=y +CONFIG_HAVE_KERNEL_LZO=y CONFIG_KERNEL_GZIP=y # CONFIG_KERNEL_BZIP2 is not set # CONFIG_KERNEL_LZMA is not set +# CONFIG_KERNEL_LZO is not set CONFIG_SWAP=y CONFIG_SYSVIPC=y CONFIG_SYSVIPC_SYSCTL=y @@ -91,6 +94,7 @@ CONFIG_AUDIT_TREE=y # CONFIG_TREE_RCU=y # CONFIG_TREE_PREEMPT_RCU is not set +# CONFIG_TINY_RCU is not set # CONFIG_RCU_TRACE is not set CONFIG_RCU_FANOUT=32 # CONFIG_RCU_FANOUT_EXACT is not set @@ -118,6 +122,7 @@ CONFIG_INITRAMFS_SOURCE="" CONFIG_RD_GZIP=y CONFIG_RD_BZIP2=y CONFIG_RD_LZMA=y +CONFIG_RD_LZO=y CONFIG_CC_OPTIMIZE_FOR_SIZE=y CONFIG_SYSCTL=y CONFIG_ANON_INODES=y @@ -164,12 +169,15 @@ CONFIG_OPROFILE_IBS=y CONFIG_HAVE_OPROFILE=y # CONFIG_KPROBES is not set CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y +CONFIG_USER_RETURN_NOTIFIER=y CONFIG_HAVE_IOREMAP_PROT=y CONFIG_HAVE_KPROBES=y CONFIG_HAVE_KRETPROBES=y CONFIG_HAVE_ARCH_TRACEHOOK=y CONFIG_HAVE_DMA_ATTRS=y CONFIG_HAVE_DMA_API_DEBUG=y +CONFIG_HAVE_HW_BREAKPOINT=y +CONFIG_HAVE_USER_RETURN_NOTIFIER=y # # GCOV-based kernel profiling @@ -197,15 +205,42 @@ CONFIG_BLK_DEV_INTEGRITY=y # IO Schedulers # CONFIG_IOSCHED_NOOP=y -CONFIG_IOSCHED_AS=y CONFIG_IOSCHED_DEADLINE=y CONFIG_IOSCHED_CFQ=y -# CONFIG_DEFAULT_AS is not set # CONFIG_DEFAULT_DEADLINE is not set CONFIG_DEFAULT_CFQ=y # CONFIG_DEFAULT_NOOP is not set CONFIG_DEFAULT_IOSCHED="cfq" CONFIG_PREEMPT_NOTIFIERS=y +# CONFIG_INLINE_SPIN_TRYLOCK is not set +# CONFIG_INLINE_SPIN_TRYLOCK_BH is not set +# CONFIG_INLINE_SPIN_LOCK is not set +# CONFIG_INLINE_SPIN_LOCK_BH is not set +# CONFIG_INLINE_SPIN_LOCK_IRQ is not set +# CONFIG_INLINE_SPIN_LOCK_IRQSAVE is not set +# CONFIG_INLINE_SPIN_UNLOCK is not set +# CONFIG_INLINE_SPIN_UNLOCK_BH is not set +# CONFIG_INLINE_SPIN_UNLOCK_IRQ is not set +# CONFIG_INLINE_SPIN_UNLOCK_IRQRESTORE is not set +# CONFIG_INLINE_READ_TRYLOCK is not set +# CONFIG_INLINE_READ_LOCK is not set +# CONFIG_INLINE_READ_LOCK_BH is not set +# CONFIG_INLINE_READ_LOCK_IRQ is not set +# CONFIG_INLINE_READ_LOCK_IRQSAVE is not set +# CONFIG_INLINE_READ_UNLOCK is not set +# CONFIG_INLINE_READ_UNLOCK_BH is not set +# CONFIG_INLINE_READ_UNLOCK_IRQ is not set +# CONFIG_INLINE_READ_UNLOCK_IRQRESTORE is not set +# CONFIG_INLINE_WRITE_TRYLOCK is not set +# CONFIG_INLINE_WRITE_LOCK is not set +# CONFIG_INLINE_WRITE_LOCK_BH is not set +# CONFIG_INLINE_WRITE_LOCK_IRQ is not set +# CONFIG_INLINE_WRITE_LOCK_IRQSAVE is not set +# CONFIG_INLINE_WRITE_UNLOCK is not set +# CONFIG_INLINE_WRITE_UNLOCK_BH is not set +# CONFIG_INLINE_WRITE_UNLOCK_IRQ is not set +# CONFIG_INLINE_WRITE_UNLOCK_IRQRESTORE is not set +CONFIG_MUTEX_SPIN_ON_OWNER=y CONFIG_FREEZER=y # @@ -218,10 +253,10 @@ CONFIG_GENERIC_CLOCKEVENTS_BUILD=y CONFIG_SMP=y CONFIG_SPARSE_IRQ=y CONFIG_X86_MPPARSE=y -# CONFIG_X86_BIGSMP is not set +CONFIG_X86_BIGSMP=y CONFIG_X86_EXTENDED_PLATFORM=y -# CONFIG_X86_ELAN is not set -# CONFIG_X86_MRST is not set +CONFIG_X86_ELAN=y +CONFIG_X86_MRST=y # CONFIG_X86_RDC321X is not set # CONFIG_X86_32_NON_STANDARD is not set CONFIG_X86_SUPPORTS_MEMORY_FAILURE=y @@ -241,7 +276,7 @@ CONFIG_MEMTEST=y # CONFIG_M586 is not set # CONFIG_M586TSC is not set # CONFIG_M586MMX is not set -CONFIG_M686=y +# CONFIG_M686 is not set # CONFIG_MPENTIUMII is not set # CONFIG_MPENTIUMIII is not set # CONFIG_MPENTIUMM is not set @@ -262,24 +297,17 @@ CONFIG_M686=y # CONFIG_MCORE2 is not set # CONFIG_MATOM is not set # CONFIG_GENERIC_CPU is not set -CONFIG_X86_GENERIC=y CONFIG_X86_CPU=y -CONFIG_X86_L1_CACHE_BYTES=64 -CONFIG_X86_INTERNODE_CACHE_BYTES=64 +CONFIG_X86_INTERNODE_CACHE_SHIFT=4 CONFIG_X86_CMPXCHG=y -CONFIG_X86_L1_CACHE_SHIFT=5 +CONFIG_X86_L1_CACHE_SHIFT=4 CONFIG_X86_XADD=y -CONFIG_X86_PPRO_FENCE=y CONFIG_X86_WP_WORKS_OK=y CONFIG_X86_INVLPG=y CONFIG_X86_BSWAP=y CONFIG_X86_POPAD_OK=y -CONFIG_X86_INTEL_USERCOPY=y -CONFIG_X86_USE_PPRO_CHECKSUM=y -CONFIG_X86_TSC=y -CONFIG_X86_CMPXCHG64=y -CONFIG_X86_CMOV=y -CONFIG_X86_MINIMUM_CPU_FAMILY=5 +CONFIG_X86_ALIGNMENT_16=y +CONFIG_X86_MINIMUM_CPU_FAMILY=4 CONFIG_X86_DEBUGCTLMSR=y CONFIG_CPU_SUP_INTEL=y CONFIG_CPU_SUP_CYRIX_32=y @@ -292,7 +320,7 @@ CONFIG_HPET_TIMER=y CONFIG_HPET_EMULATE_RTC=y CONFIG_DMI=y # CONFIG_IOMMU_HELPER is not set -# CONFIG_IOMMU_API is not set +CONFIG_IOMMU_API=y CONFIG_NR_CPUS=8 CONFIG_SCHED_SMT=y CONFIG_SCHED_MC=y @@ -305,7 +333,7 @@ CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS=y CONFIG_X86_MCE=y CONFIG_X86_MCE_INTEL=y CONFIG_X86_MCE_AMD=y -# CONFIG_X86_ANCIENT_MCE is not set +CONFIG_X86_ANCIENT_MCE=y CONFIG_X86_MCE_THRESHOLD=y # CONFIG_X86_MCE_INJECT is not set CONFIG_X86_THERMAL_VECTOR=y @@ -319,7 +347,6 @@ CONFIG_MICROCODE_AMD=y CONFIG_MICROCODE_OLD_INTERFACE=y CONFIG_X86_MSR=m CONFIG_X86_CPUID=m -# CONFIG_X86_CPU_DEBUG is not set # CONFIG_NOHIGHMEM is not set CONFIG_HIGHMEM4G=y # CONFIG_HIGHMEM64G is not set @@ -329,6 +356,7 @@ CONFIG_HIGHMEM=y CONFIG_ARCH_FLATMEM_ENABLE=y CONFIG_ARCH_SPARSEMEM_ENABLE=y CONFIG_ARCH_SELECT_MEMORY_MODEL=y +CONFIG_ILLEGAL_POINTER_VALUE=0 CONFIG_SELECT_MEMORY_MODEL=y CONFIG_FLATMEM_MANUAL=y # CONFIG_DISCONTIGMEM_MANUAL is not set @@ -342,14 +370,13 @@ CONFIG_SPLIT_PTLOCK_CPUS=4 CONFIG_ZONE_DMA_FLAG=1 CONFIG_BOUNCE=y CONFIG_VIRT_TO_BUS=y -CONFIG_HAVE_MLOCK=y -CONFIG_HAVE_MLOCKED_PAGE_BIT=y CONFIG_MMU_NOTIFIER=y -# CONFIG_KSM is not set +CONFIG_KSM=y CONFIG_DEFAULT_MMAP_MIN_ADDR=65536 CONFIG_ARCH_SUPPORTS_MEMORY_FAILURE=y -# CONFIG_MEMORY_FAILURE is not set -# CONFIG_HIGHPTE is not set +CONFIG_MEMORY_FAILURE=y +CONFIG_HWPOISON_INJECT=m +CONFIG_HIGHPTE=y CONFIG_X86_CHECK_BIOS_CORRUPTION=y CONFIG_X86_BOOTPARAM_MEMORY_CORRUPTION_CHECK=y CONFIG_X86_RESERVE_LOW_64K=y @@ -417,7 +444,7 @@ CONFIG_ACPI_PCI_SLOT=m CONFIG_X86_PM_TIMER=y CONFIG_ACPI_CONTAINER=m CONFIG_ACPI_SBS=m -# CONFIG_SFI is not set +CONFIG_SFI=y CONFIG_X86_APM_BOOT=y CONFIG_APM=m # CONFIG_APM_IGNORE_USER_SUSPEND is not set @@ -449,6 +476,8 @@ CONFIG_CPU_FREQ_GOV_CONSERVATIVE=m # CPUFreq processor drivers # CONFIG_X86_ACPI_CPUFREQ=m +# CONFIG_ELAN_CPUFREQ is not set +# CONFIG_SC520_CPUFREQ is not set CONFIG_X86_POWERNOW_K6=m CONFIG_X86_POWERNOW_K7=m CONFIG_X86_POWERNOW_K7_ACPI=y @@ -484,11 +513,13 @@ CONFIG_PCI_GODIRECT=y # CONFIG_PCI_GOANY is not set CONFIG_PCI_DIRECT=y CONFIG_PCI_DOMAINS=y -# CONFIG_DMAR is not set +CONFIG_DMAR=y +# CONFIG_DMAR_DEFAULT_ON is not set +CONFIG_DMAR_FLOPPY_WA=y CONFIG_PCIEPORTBUS=y CONFIG_HOTPLUG_PCI_PCIE=m CONFIG_PCIEAER=y -# CONFIG_PCIE_ECRC is not set +CONFIG_PCIE_ECRC=y # CONFIG_PCIEAER_INJECT is not set CONFIG_PCIEASPM=y # CONFIG_PCIEASPM_DEBUG is not set @@ -498,22 +529,23 @@ CONFIG_PCI_LEGACY=y # CONFIG_PCI_DEBUG is not set CONFIG_PCI_STUB=m CONFIG_HT_IRQ=y -# CONFIG_PCI_IOV is not set +CONFIG_PCI_IOV=y +CONFIG_PCI_IOAPIC=y CONFIG_ISA_DMA_API=y CONFIG_ISA=y CONFIG_EISA=y -# CONFIG_EISA_VLB_PRIMING is not set +CONFIG_EISA_VLB_PRIMING=y CONFIG_EISA_PCI_EISA=y CONFIG_EISA_VIRTUAL_ROOT=y CONFIG_EISA_NAMES=y CONFIG_MCA=y CONFIG_MCA_LEGACY=y CONFIG_MCA_PROC_FS=y -# CONFIG_SCx200 is not set +CONFIG_SCx200=m +CONFIG_SCx200HR_TIMER=m CONFIG_OLPC=y CONFIG_K8_NB=y CONFIG_PCCARD=y -# CONFIG_PCMCIA_DEBUG is not set CONFIG_PCMCIA=y CONFIG_PCMCIA_LOAD_CIS=y # CONFIG_PCMCIA_IOCTL is not set @@ -562,9 +594,9 @@ CONFIG_PACKET_MMAP=y CONFIG_UNIX=y CONFIG_XFRM=y CONFIG_XFRM_USER=y -# CONFIG_XFRM_SUB_POLICY is not set -# CONFIG_XFRM_MIGRATE is not set -# CONFIG_XFRM_STATISTICS is not set +CONFIG_XFRM_SUB_POLICY=y +CONFIG_XFRM_MIGRATE=y +CONFIG_XFRM_STATISTICS=y CONFIG_XFRM_IPCOMP=m CONFIG_NET_KEY=m # CONFIG_NET_KEY_MIGRATE is not set @@ -637,6 +669,7 @@ CONFIG_INET6_XFRM_MODE_TUNNEL=m CONFIG_INET6_XFRM_MODE_BEET=m CONFIG_INET6_XFRM_MODE_ROUTEOPTIMIZATION=m CONFIG_IPV6_SIT=m +CONFIG_IPV6_SIT_6RD=y CONFIG_IPV6_NDISC_NODETYPE=y CONFIG_IPV6_TUNNEL=m CONFIG_IPV6_MULTIPLE_TABLES=y @@ -843,7 +876,10 @@ CONFIG_IP_SCTP=m # CONFIG_SCTP_HMAC_NONE is not set # CONFIG_SCTP_HMAC_SHA1 is not set CONFIG_SCTP_HMAC_MD5=y -# CONFIG_RDS is not set +CONFIG_RDS=m +CONFIG_RDS_RDMA=m +CONFIG_RDS_TCP=m +# CONFIG_RDS_DEBUG is not set CONFIG_TIPC=m # CONFIG_TIPC_ADVANCED is not set # CONFIG_TIPC_DEBUG is not set @@ -978,6 +1014,7 @@ CONFIG_CAN_BCM=m CONFIG_CAN_VCAN=m CONFIG_CAN_DEV=m # CONFIG_CAN_CALC_BITTIMING is not set +CONFIG_CAN_MCP251X=m CONFIG_CAN_SJA1000=m CONFIG_CAN_SJA1000_ISA=m CONFIG_CAN_SJA1000_PLATFORM=m @@ -1076,20 +1113,25 @@ CONFIG_BT_HCIBTUART=m CONFIG_BT_HCIVHCI=m CONFIG_BT_MRVL=m CONFIG_BT_MRVL_SDIO=m +CONFIG_BT_ATH3K=m CONFIG_AF_RXRPC=m # CONFIG_AF_RXRPC_DEBUG is not set CONFIG_RXKAD=m CONFIG_FIB_RULES=y CONFIG_WIRELESS=y +CONFIG_WIRELESS_EXT=y +CONFIG_WEXT_CORE=y +CONFIG_WEXT_PROC=y +CONFIG_WEXT_SPY=y +CONFIG_WEXT_PRIV=y CONFIG_CFG80211=m # CONFIG_NL80211_TESTMODE is not set # CONFIG_CFG80211_DEVELOPER_WARNINGS is not set # CONFIG_CFG80211_REG_DEBUG is not set CONFIG_CFG80211_DEFAULT_PS=y -CONFIG_CFG80211_DEFAULT_PS_VALUE=1 # CONFIG_CFG80211_DEBUGFS is not set CONFIG_WIRELESS_OLD_REGULATORY=y -CONFIG_WIRELESS_EXT=y +CONFIG_CFG80211_WEXT=y CONFIG_WIRELESS_EXT_SYSFS=y CONFIG_LIB80211=m CONFIG_LIB80211_CRYPT_WEP=m @@ -1196,6 +1238,7 @@ CONFIG_MTD_SC520CDP=m CONFIG_MTD_NETSC520=m CONFIG_MTD_TS5500=m CONFIG_MTD_SBC_GXX=m +# CONFIG_MTD_SCx200_DOCFLASH is not set CONFIG_MTD_AMD76XROM=m CONFIG_MTD_ICHXROM=m CONFIG_MTD_ESB2ROM=m @@ -1338,9 +1381,11 @@ CONFIG_BLK_DEV_UMEM=m # CONFIG_BLK_DEV_COW_COMMON is not set CONFIG_BLK_DEV_LOOP=m CONFIG_BLK_DEV_CRYPTOLOOP=m +CONFIG_BLK_DEV_DRBD=m +# CONFIG_DRBD_FAULT_INJECTION is not set CONFIG_BLK_DEV_NBD=m CONFIG_BLK_DEV_SX8=m -# CONFIG_BLK_DEV_UB is not set +CONFIG_BLK_DEV_UB=m CONFIG_BLK_DEV_RAM=y CONFIG_BLK_DEV_RAM_COUNT=16 CONFIG_BLK_DEV_RAM_SIZE=16384 @@ -1352,6 +1397,7 @@ CONFIG_ATA_OVER_ETH=m CONFIG_VIRTIO_BLK=m # CONFIG_BLK_DEV_HD is not set CONFIG_MISC_DEVICES=y +CONFIG_AD525X_DPOT=m CONFIG_IBM_ASM=m CONFIG_PHANTOM=m CONFIG_SGI_IOC4=m @@ -1359,9 +1405,12 @@ CONFIG_TIFM_CORE=m CONFIG_TIFM_7XX1=m CONFIG_ICS932S401=m CONFIG_ENCLOSURE_SERVICES=m +CONFIG_CS5535_MFGPT=m +CONFIG_CS5535_MFGPT_DEFAULT_IRQ=7 CONFIG_HP_ILO=m -CONFIG_DELL_LAPTOP=m -# CONFIG_ISL29003 is not set +CONFIG_ISL29003=m +CONFIG_DS1682=m +CONFIG_TI_DAC7512=m CONFIG_C2PORT=m CONFIG_C2PORT_DURAMAR_2150=m @@ -1376,6 +1425,9 @@ CONFIG_EEPROM_93CX6=m CONFIG_CB710_CORE=m # CONFIG_CB710_DEBUG is not set CONFIG_CB710_DEBUG_ASSUMPTIONS=y +CONFIG_IWMC3200TOP=m +# CONFIG_IWMC3200TOP_DEBUG is not set +# CONFIG_IWMC3200TOP_DEBUGFS is not set CONFIG_HAVE_IDE=y CONFIG_IDE=y @@ -1509,7 +1561,9 @@ CONFIG_SCSI_CXGB3_ISCSI=m CONFIG_SCSI_BNX2_ISCSI=m CONFIG_BE2ISCSI=m CONFIG_BLK_DEV_3W_XXXX_RAID=m +CONFIG_SCSI_HPSA=m CONFIG_SCSI_3W_9XXX=m +CONFIG_SCSI_3W_SAS=m CONFIG_SCSI_7000FASST=m CONFIG_SCSI_ACARD=m CONFIG_SCSI_AHA152X=m @@ -1547,6 +1601,7 @@ CONFIG_MEGARAID_SAS=m CONFIG_SCSI_HPTIOP=m CONFIG_SCSI_BUSLOGIC=m CONFIG_SCSI_FLASHPOINT=y +CONFIG_VMWARE_PVSCSI=m CONFIG_LIBFC=m CONFIG_LIBFCOE=m CONFIG_FCOE=m @@ -1608,6 +1663,7 @@ CONFIG_SCSI_ULTRASTOR=m CONFIG_SCSI_NSP32=m CONFIG_SCSI_DEBUG=m CONFIG_SCSI_PMCRAID=m +CONFIG_SCSI_PM8001=m CONFIG_SCSI_SRP=m CONFIG_SCSI_BFA_FC=m CONFIG_SCSI_LOWLEVEL_PCMCIA=y @@ -1676,6 +1732,7 @@ CONFIG_PATA_NS87415=m CONFIG_PATA_OPTI=m CONFIG_PATA_OPTIDMA=m CONFIG_PATA_PCMCIA=m +CONFIG_PATA_PDC2027X=m CONFIG_PATA_PDC_OLD=m CONFIG_PATA_QDI=m CONFIG_PATA_RADISYS=m @@ -1683,9 +1740,9 @@ CONFIG_PATA_RDC=m CONFIG_PATA_RZ1000=m CONFIG_PATA_SC1200=m CONFIG_PATA_SERVERWORKS=m -CONFIG_PATA_PDC2027X=m CONFIG_PATA_SIL680=m CONFIG_PATA_SIS=y +CONFIG_PATA_TOSHIBA=m CONFIG_PATA_VIA=m CONFIG_PATA_WINBOND=m CONFIG_PATA_WINBOND_VLB=m @@ -1733,7 +1790,7 @@ CONFIG_FUSION_LOGGING=y # # -# See the help texts for more information. +# The newer stack is recommended. # CONFIG_FIREWIRE=m CONFIG_FIREWIRE_OHCI=m @@ -1980,20 +2037,7 @@ CONFIG_ABYSS=m CONFIG_MADGEMC=m CONFIG_SMCTR=m CONFIG_WLAN=y -CONFIG_WLAN_PRE80211=y -CONFIG_STRIP=m -CONFIG_ARLAN=m -CONFIG_WAVELAN=m -CONFIG_PCMCIA_WAVELAN=m -CONFIG_PCMCIA_NETWAVE=m -CONFIG_WLAN_80211=y CONFIG_PCMCIA_RAYCS=m -CONFIG_LIBERTAS=m -CONFIG_LIBERTAS_USB=m -CONFIG_LIBERTAS_CS=m -CONFIG_LIBERTAS_SDIO=m -# CONFIG_LIBERTAS_SPI is not set -# CONFIG_LIBERTAS_DEBUG is not set CONFIG_LIBERTAS_THINFIRM=m CONFIG_LIBERTAS_THINFIRM_USB=m CONFIG_AIRO=m @@ -2012,43 +2056,16 @@ CONFIG_RTL8187_LEDS=y CONFIG_ADM8211=m CONFIG_MAC80211_HWSIM=m CONFIG_MWL8K=m -CONFIG_P54_COMMON=m -CONFIG_P54_USB=m -CONFIG_P54_PCI=m -CONFIG_P54_SPI=m -CONFIG_P54_LEDS=y CONFIG_ATH_COMMON=m +# CONFIG_ATH_DEBUG is not set CONFIG_ATH5K=m # CONFIG_ATH5K_DEBUG is not set +CONFIG_ATH9K_HW=m +CONFIG_ATH9K_COMMON=m CONFIG_ATH9K=m -# CONFIG_ATH9K_DEBUG is not set +# CONFIG_ATH9K_DEBUGFS is not set CONFIG_AR9170_USB=m CONFIG_AR9170_LEDS=y -CONFIG_IPW2100=m -CONFIG_IPW2100_MONITOR=y -# CONFIG_IPW2100_DEBUG is not set -CONFIG_IPW2200=m -CONFIG_IPW2200_MONITOR=y -# CONFIG_IPW2200_RADIOTAP is not set -# CONFIG_IPW2200_PROMISCUOUS is not set -CONFIG_IPW2200_QOS=y -# CONFIG_IPW2200_DEBUG is not set -CONFIG_LIBIPW=m -# CONFIG_LIBIPW_DEBUG is not set -CONFIG_IWLWIFI=m -CONFIG_IWLWIFI_LEDS=y -# CONFIG_IWLWIFI_SPECTRUM_MEASUREMENT is not set -# CONFIG_IWLWIFI_DEBUG is not set -CONFIG_IWLAGN=m -CONFIG_IWL4965=y -CONFIG_IWL5000=y -CONFIG_IWL3945=m -CONFIG_IWL3945_SPECTRUM_MEASUREMENT=y -CONFIG_HOSTAP=m -# CONFIG_HOSTAP_FIRMWARE is not set -CONFIG_HOSTAP_PLX=m -CONFIG_HOSTAP_PCI=m -CONFIG_HOSTAP_CS=m CONFIG_B43=m CONFIG_B43_PCI_AUTOSELECT=y CONFIG_B43_PCICORE_AUTOSELECT=y @@ -2070,15 +2087,62 @@ CONFIG_B43LEGACY_PIO=y CONFIG_B43LEGACY_DMA_AND_PIO_MODE=y # CONFIG_B43LEGACY_DMA_MODE is not set # CONFIG_B43LEGACY_PIO_MODE is not set -CONFIG_ZD1211RW=m -# CONFIG_ZD1211RW_DEBUG is not set +CONFIG_HOSTAP=m +# CONFIG_HOSTAP_FIRMWARE is not set +CONFIG_HOSTAP_PLX=m +CONFIG_HOSTAP_PCI=m +CONFIG_HOSTAP_CS=m +CONFIG_IPW2100=m +CONFIG_IPW2100_MONITOR=y +# CONFIG_IPW2100_DEBUG is not set +CONFIG_IPW2200=m +CONFIG_IPW2200_MONITOR=y +# CONFIG_IPW2200_RADIOTAP is not set +# CONFIG_IPW2200_PROMISCUOUS is not set +CONFIG_IPW2200_QOS=y +# CONFIG_IPW2200_DEBUG is not set +CONFIG_LIBIPW=m +# CONFIG_LIBIPW_DEBUG is not set +CONFIG_IWLWIFI=m +# CONFIG_IWLWIFI_SPECTRUM_MEASUREMENT is not set +# CONFIG_IWLWIFI_DEBUG is not set +# CONFIG_IWLWIFI_DEVICE_TRACING is not set +CONFIG_IWLAGN=m +CONFIG_IWL4965=y +CONFIG_IWL5000=y +CONFIG_IWL3945=m +CONFIG_IWL3945_SPECTRUM_MEASUREMENT=y +CONFIG_IWM=m +# CONFIG_IWM_DEBUG is not set +CONFIG_LIBERTAS=m +CONFIG_LIBERTAS_USB=m +CONFIG_LIBERTAS_CS=m +CONFIG_LIBERTAS_SDIO=m +# CONFIG_LIBERTAS_SPI is not set +# CONFIG_LIBERTAS_DEBUG is not set +CONFIG_HERMES=m +CONFIG_HERMES_CACHE_FW_ON_INIT=y +CONFIG_PLX_HERMES=m +CONFIG_TMD_HERMES=m +CONFIG_NORTEL_HERMES=m +CONFIG_PCI_HERMES=m +CONFIG_PCMCIA_HERMES=m +CONFIG_PCMCIA_SPECTRUM=m +CONFIG_P54_COMMON=m +CONFIG_P54_USB=m +CONFIG_P54_PCI=m +CONFIG_P54_SPI=m +CONFIG_P54_LEDS=y CONFIG_RT2X00=m CONFIG_RT2400PCI=m CONFIG_RT2500PCI=m CONFIG_RT61PCI=m +CONFIG_RT2800PCI_PCI=m +CONFIG_RT2800PCI=m CONFIG_RT2500USB=m CONFIG_RT73USB=m CONFIG_RT2800USB=m +CONFIG_RT2800_LIB=m CONFIG_RT2X00_LIB_PCI=m CONFIG_RT2X00_LIB_USB=m CONFIG_RT2X00_LIB=m @@ -2087,21 +2151,13 @@ CONFIG_RT2X00_LIB_FIRMWARE=y CONFIG_RT2X00_LIB_CRYPTO=y CONFIG_RT2X00_LIB_LEDS=y # CONFIG_RT2X00_DEBUG is not set -CONFIG_HERMES=m -CONFIG_HERMES_CACHE_FW_ON_INIT=y -CONFIG_PLX_HERMES=m -CONFIG_TMD_HERMES=m -CONFIG_NORTEL_HERMES=m -CONFIG_PCI_HERMES=m -CONFIG_PCMCIA_HERMES=m -CONFIG_PCMCIA_SPECTRUM=m CONFIG_WL12XX=m CONFIG_WL1251=m CONFIG_WL1251_SPI=m CONFIG_WL1251_SDIO=m CONFIG_WL1271=m -CONFIG_IWM=m -# CONFIG_IWM_DEBUG is not set +CONFIG_ZD1211RW=m +# CONFIG_ZD1211RW_DEBUG is not set # # WiMAX Wireless Broadband devices @@ -2109,6 +2165,7 @@ CONFIG_IWM=m CONFIG_WIMAX_I2400M=m CONFIG_WIMAX_I2400M_USB=m CONFIG_WIMAX_I2400M_SDIO=m +CONFIG_WIMAX_IWMC3200_SDIO=y CONFIG_WIMAX_I2400M_DEBUG_LEVEL=8 # @@ -2262,9 +2319,14 @@ CONFIG_MISDN_W6692=m CONFIG_MISDN_NETJET=m CONFIG_MISDN_IPAC=m CONFIG_MISDN_ISAR=m -# CONFIG_ISDN_PPP is not set -# CONFIG_ISDN_AUDIO is not set -# CONFIG_ISDN_X25 is not set +CONFIG_ISDN_PPP=y +CONFIG_ISDN_PPP_VJ=y +CONFIG_ISDN_MPP=y +CONFIG_IPPP_FILTER=y +CONFIG_ISDN_PPP_BSDCOMP=m +CONFIG_ISDN_AUDIO=y +CONFIG_ISDN_TTY_FAX=y +CONFIG_ISDN_X25=y # # ISDN feature submodules @@ -2283,47 +2345,55 @@ CONFIG_ISDN_DRV_HISAX=m # # D-channel protocol features # -# CONFIG_HISAX_EURO is not set -# CONFIG_HISAX_1TR6 is not set -# CONFIG_HISAX_NI1 is not set +CONFIG_HISAX_EURO=y +CONFIG_DE_AOC=y +# CONFIG_HISAX_NO_SENDCOMPLETE is not set +# CONFIG_HISAX_NO_LLC is not set +# CONFIG_HISAX_NO_KEYPAD is not set +CONFIG_HISAX_1TR6=y +CONFIG_HISAX_NI1=y CONFIG_HISAX_MAX_CARDS=8 # # HiSax supported cards # -# CONFIG_HISAX_16_0 is not set -# CONFIG_HISAX_16_3 is not set -# CONFIG_HISAX_TELESPCI is not set -# CONFIG_HISAX_S0BOX is not set -# CONFIG_HISAX_AVM_A1 is not set -# CONFIG_HISAX_FRITZPCI is not set -# CONFIG_HISAX_AVM_A1_PCMCIA is not set -# CONFIG_HISAX_ELSA is not set -# CONFIG_HISAX_IX1MICROR2 is not set -# CONFIG_HISAX_DIEHLDIVA is not set -# CONFIG_HISAX_ASUSCOM is not set -# CONFIG_HISAX_TELEINT is not set -# CONFIG_HISAX_HFCS is not set -# CONFIG_HISAX_SEDLBAUER is not set -# CONFIG_HISAX_SPORTSTER is not set -# CONFIG_HISAX_MIC is not set -# CONFIG_HISAX_NETJET is not set -# CONFIG_HISAX_NETJET_U is not set -# CONFIG_HISAX_NICCY is not set -# CONFIG_HISAX_ISURF is not set -# CONFIG_HISAX_HSTSAPHIR is not set -# CONFIG_HISAX_BKM_A4T is not set -# CONFIG_HISAX_SCT_QUADRO is not set -# CONFIG_HISAX_GAZEL is not set -# CONFIG_HISAX_HFC_PCI is not set -# CONFIG_HISAX_W6692 is not set -# CONFIG_HISAX_HFC_SX is not set -# CONFIG_HISAX_DEBUG is not set +CONFIG_HISAX_16_0=y +CONFIG_HISAX_16_3=y +CONFIG_HISAX_TELESPCI=y +CONFIG_HISAX_S0BOX=y +CONFIG_HISAX_AVM_A1=y +CONFIG_HISAX_FRITZPCI=y +CONFIG_HISAX_AVM_A1_PCMCIA=y +CONFIG_HISAX_ELSA=y +CONFIG_HISAX_IX1MICROR2=y +CONFIG_HISAX_DIEHLDIVA=y +CONFIG_HISAX_ASUSCOM=y +CONFIG_HISAX_TELEINT=y +CONFIG_HISAX_HFCS=y +CONFIG_HISAX_SEDLBAUER=y +CONFIG_HISAX_SPORTSTER=y +CONFIG_HISAX_MIC=y +CONFIG_HISAX_NETJET=y +CONFIG_HISAX_NETJET_U=y +CONFIG_HISAX_NICCY=y +CONFIG_HISAX_ISURF=y +CONFIG_HISAX_HSTSAPHIR=y +CONFIG_HISAX_BKM_A4T=y +CONFIG_HISAX_SCT_QUADRO=y +CONFIG_HISAX_GAZEL=y +CONFIG_HISAX_HFC_PCI=y +CONFIG_HISAX_W6692=y +CONFIG_HISAX_HFC_SX=y +CONFIG_HISAX_ENTERNOW_PCI=y +CONFIG_HISAX_DEBUG=y # # HiSax PCMCIA card service modules # +CONFIG_HISAX_SEDLBAUER_CS=m +CONFIG_HISAX_ELSA_CS=m CONFIG_HISAX_AVM_A1_CS=m +CONFIG_HISAX_TELES_CS=m # # HiSax sub driver modules @@ -2372,6 +2442,9 @@ CONFIG_ISDN_DIVAS_DIVACAPI=m CONFIG_ISDN_DIVAS_USERIDI=m CONFIG_ISDN_DIVAS_MAINT=m CONFIG_ISDN_DRV_GIGASET=m +CONFIG_GIGASET_CAPI=y +# CONFIG_GIGASET_I4L is not set +# CONFIG_GIGASET_DUMMYLL is not set CONFIG_GIGASET_BASE=m CONFIG_GIGASET_M105=m CONFIG_GIGASET_M101=m @@ -2386,6 +2459,7 @@ CONFIG_PHONE_IXJ_PCMCIA=m CONFIG_INPUT=y CONFIG_INPUT_FF_MEMLESS=y CONFIG_INPUT_POLLDEV=m +CONFIG_INPUT_SPARSEKMAP=m # # Userland interfaces @@ -2428,13 +2502,13 @@ CONFIG_MOUSE_PS2_TRACKPOINT=y CONFIG_MOUSE_PS2_OLPC=y CONFIG_MOUSE_SERIAL=m CONFIG_MOUSE_APPLETOUCH=m -# CONFIG_MOUSE_BCM5974 is not set +CONFIG_MOUSE_BCM5974=m CONFIG_MOUSE_INPORT=m CONFIG_MOUSE_ATIXL=y CONFIG_MOUSE_LOGIBM=m CONFIG_MOUSE_PC110PAD=m CONFIG_MOUSE_VSXXXAA=m -# CONFIG_MOUSE_GPIO is not set +CONFIG_MOUSE_GPIO=m CONFIG_MOUSE_SYNAPTICS_I2C=m CONFIG_INPUT_JOYSTICK=y CONFIG_JOYSTICK_ANALOG=m @@ -2477,6 +2551,7 @@ CONFIG_TOUCHSCREEN_ADS7846=m CONFIG_TOUCHSCREEN_AD7877=m CONFIG_TOUCHSCREEN_AD7879_I2C=m CONFIG_TOUCHSCREEN_AD7879=m +CONFIG_TOUCHSCREEN_DYNAPRO=m CONFIG_TOUCHSCREEN_EETI=m CONFIG_TOUCHSCREEN_FUJITSU=m CONFIG_TOUCHSCREEN_GUNZE=m @@ -2496,6 +2571,7 @@ CONFIG_TOUCHSCREEN_WM9705=y CONFIG_TOUCHSCREEN_WM9712=y CONFIG_TOUCHSCREEN_WM9713=y CONFIG_TOUCHSCREEN_USB_COMPOSITE=m +CONFIG_TOUCHSCREEN_MC13783=m CONFIG_TOUCHSCREEN_USB_EGALAX=y CONFIG_TOUCHSCREEN_USB_PANJIT=y CONFIG_TOUCHSCREEN_USB_3M=y @@ -2509,11 +2585,13 @@ CONFIG_TOUCHSCREEN_USB_GENERAL_TOUCH=y CONFIG_TOUCHSCREEN_USB_GOTOP=y CONFIG_TOUCHSCREEN_USB_JASTEC=y CONFIG_TOUCHSCREEN_USB_E2I=y +CONFIG_TOUCHSCREEN_USB_ZYTRONIC=y +CONFIG_TOUCHSCREEN_USB_ETT_TC5UH=y CONFIG_TOUCHSCREEN_TOUCHIT213=m CONFIG_TOUCHSCREEN_TSC2007=m CONFIG_INPUT_MISC=y CONFIG_INPUT_PCSPKR=m -# CONFIG_INPUT_APANEL is not set +CONFIG_INPUT_APANEL=m CONFIG_INPUT_WISTRON_BTNS=m CONFIG_INPUT_ATLAS_BTNS=m CONFIG_INPUT_ATI_REMOTE=m @@ -2526,7 +2604,6 @@ CONFIG_INPUT_UINPUT=m CONFIG_INPUT_WINBOND_CIR=m CONFIG_INPUT_PCF50633_PMU=m # CONFIG_INPUT_GPIO_ROTARY_ENCODER is not set -CONFIG_INPUT_WM831X_ON=m # # Hardware I/O ports @@ -2539,6 +2616,7 @@ CONFIG_SERIO_PARKBD=m CONFIG_SERIO_PCIPS2=m CONFIG_SERIO_LIBPS2=y # CONFIG_SERIO_RAW is not set +CONFIG_SERIO_ALTERA_PS2=m CONFIG_GAMEPORT=m CONFIG_GAMEPORT_NS558=m CONFIG_GAMEPORT_L4=m @@ -2640,6 +2718,7 @@ CONFIG_CARDMAN_4000=m CONFIG_CARDMAN_4040=m CONFIG_IPWIRELESS=m CONFIG_MWAVE=m +CONFIG_SCx200_GPIO=m CONFIG_PC8736x_GPIO=m CONFIG_NSC_GPIO=m CONFIG_CS5535_GPIO=m @@ -2695,7 +2774,7 @@ CONFIG_I2C_SCMI=m # # I2C system bus drivers (mostly embedded / system-on-chip) # -# CONFIG_I2C_GPIO is not set +CONFIG_I2C_GPIO=m CONFIG_I2C_OCORES=m CONFIG_I2C_SIMTEC=m @@ -2708,22 +2787,17 @@ CONFIG_I2C_TAOS_EVM=m CONFIG_I2C_TINY_USB=m # -# Graphics adapter I2C/DDC channel drivers -# -CONFIG_I2C_VOODOO3=m - -# # Other I2C/SMBus bus drivers # CONFIG_I2C_PCA_ISA=m CONFIG_I2C_PCA_PLATFORM=m # CONFIG_I2C_STUB is not set +# CONFIG_SCx200_I2C is not set CONFIG_SCx200_ACB=m # # Miscellaneous I2C Chip support # -CONFIG_DS1682=m CONFIG_SENSORS_TSL2550=m # CONFIG_I2C_DEBUG_CORE is not set # CONFIG_I2C_DEBUG_ALGO is not set @@ -2740,6 +2814,9 @@ CONFIG_SPI_BITBANG=m # CONFIG_SPI_BUTTERFLY is not set CONFIG_SPI_GPIO=m # CONFIG_SPI_LM70_LLP is not set +CONFIG_SPI_XILINX=m +CONFIG_SPI_XILINX_PLTFM=m +# CONFIG_SPI_DESIGNWARE is not set # # SPI Protocol Masters @@ -2767,11 +2844,12 @@ CONFIG_GPIO_SYSFS=y CONFIG_GPIO_MAX732X=m CONFIG_GPIO_PCA953X=m CONFIG_GPIO_PCF857X=m -CONFIG_GPIO_WM831X=m +CONFIG_GPIO_ADP5588=m # # PCI GPIO expanders: # +CONFIG_GPIO_CS5535=m # CONFIG_GPIO_LANGWELL is not set # @@ -2794,7 +2872,7 @@ CONFIG_W1_CON=y CONFIG_W1_MASTER_MATROX=m CONFIG_W1_MASTER_DS2490=m CONFIG_W1_MASTER_DS2482=m -# CONFIG_W1_MASTER_GPIO is not set +CONFIG_W1_MASTER_GPIO=m # # 1-wire Slaves @@ -2809,7 +2887,6 @@ CONFIG_W1_SLAVE_BQ27000=m CONFIG_POWER_SUPPLY=y # CONFIG_POWER_SUPPLY_DEBUG is not set CONFIG_PDA_POWER=m -CONFIG_WM831X_POWER=m CONFIG_WM8350_POWER=m CONFIG_BATTERY_DS2760=m CONFIG_BATTERY_DS2782=m @@ -2840,6 +2917,7 @@ CONFIG_SENSORS_ADT7470=m CONFIG_SENSORS_ADT7473=m CONFIG_SENSORS_ADT7475=m CONFIG_SENSORS_K8TEMP=m +CONFIG_SENSORS_K10TEMP=m CONFIG_SENSORS_ASB100=m CONFIG_SENSORS_ATXP1=m CONFIG_SENSORS_DS1621=m @@ -2848,7 +2926,7 @@ CONFIG_SENSORS_F71805F=m CONFIG_SENSORS_F71882FG=m CONFIG_SENSORS_F75375S=m CONFIG_SENSORS_FSCHMD=m -# CONFIG_SENSORS_G760A is not set +CONFIG_SENSORS_G760A=m CONFIG_SENSORS_GL518SM=m CONFIG_SENSORS_GL520SM=m CONFIG_SENSORS_CORETEMP=m @@ -2857,6 +2935,7 @@ CONFIG_SENSORS_IBMPEX=m CONFIG_SENSORS_IT87=m CONFIG_SENSORS_LM63=m CONFIG_SENSORS_LM70=m +CONFIG_SENSORS_LM73=m CONFIG_SENSORS_LM75=m CONFIG_SENSORS_LM77=m CONFIG_SENSORS_LM78=m @@ -2867,25 +2946,27 @@ CONFIG_SENSORS_LM87=m CONFIG_SENSORS_LM90=m CONFIG_SENSORS_LM92=m CONFIG_SENSORS_LM93=m -# CONFIG_SENSORS_LTC4215 is not set +CONFIG_SENSORS_LTC4215=m CONFIG_SENSORS_LTC4245=m -# CONFIG_SENSORS_LM95241 is not set +CONFIG_SENSORS_LM95241=m CONFIG_SENSORS_MAX1111=m CONFIG_SENSORS_MAX1619=m CONFIG_SENSORS_MAX6650=m CONFIG_SENSORS_PC87360=m CONFIG_SENSORS_PC87427=m CONFIG_SENSORS_PCF8591=m -# CONFIG_SENSORS_SHT15 is not set +CONFIG_SENSORS_SHT15=m CONFIG_SENSORS_SIS5595=m CONFIG_SENSORS_DME1737=m CONFIG_SENSORS_SMSC47M1=m CONFIG_SENSORS_SMSC47M192=m CONFIG_SENSORS_SMSC47B397=m CONFIG_SENSORS_ADS7828=m +CONFIG_SENSORS_AMC6821=m CONFIG_SENSORS_THMC50=m CONFIG_SENSORS_TMP401=m CONFIG_SENSORS_TMP421=m +CONFIG_SENSORS_VIA_CPUTEMP=m CONFIG_SENSORS_VIA686A=m CONFIG_SENSORS_VT1211=m CONFIG_SENSORS_VT8231=m @@ -2897,15 +2978,16 @@ CONFIG_SENSORS_W83L785TS=m CONFIG_SENSORS_W83L786NG=m CONFIG_SENSORS_W83627HF=m CONFIG_SENSORS_W83627EHF=m -CONFIG_SENSORS_WM831X=m CONFIG_SENSORS_WM8350=m CONFIG_SENSORS_HDAPS=m +CONFIG_SENSORS_LIS3_I2C=m CONFIG_SENSORS_APPLESMC=m +CONFIG_SENSORS_MC13783_ADC=m # # ACPI drivers # -# CONFIG_SENSORS_ATK0110 is not set +CONFIG_SENSORS_ATK0110=m CONFIG_SENSORS_LIS3LV02D=m CONFIG_THERMAL=y CONFIG_THERMAL_HWMON=y @@ -2916,12 +2998,12 @@ CONFIG_WATCHDOG=y # Watchdog Device Drivers # CONFIG_SOFT_WATCHDOG=m -CONFIG_WM831X_WATCHDOG=m CONFIG_WM8350_WATCHDOG=m CONFIG_ACQUIRE_WDT=m CONFIG_ADVANTECH_WDT=m CONFIG_ALIM1535_WDT=m CONFIG_ALIM7101_WDT=m +CONFIG_GEODE_WDT=m CONFIG_SC520_WDT=m CONFIG_SBC_FITPC2_WATCHDOG=m CONFIG_EUROTECH_WDT=m @@ -2935,6 +3017,7 @@ CONFIG_IT8712F_WDT=m CONFIG_IT87_WDT=m CONFIG_HP_WATCHDOG=m CONFIG_SC1200_WDT=m +CONFIG_SCx200_WDT=m CONFIG_PC87413_WDT=m CONFIG_60XX_WDT=m CONFIG_SBC8360_WDT=m @@ -2994,10 +3077,9 @@ CONFIG_MFD_SM501=m # CONFIG_MFD_SM501_GPIO is not set CONFIG_HTC_PASIC3=m CONFIG_UCB1400_CORE=m -# CONFIG_TPS65010 is not set +CONFIG_TPS65010=m # CONFIG_MFD_TMIO is not set CONFIG_MFD_WM8400=m -CONFIG_MFD_WM831X=m CONFIG_MFD_WM8350=m CONFIG_MFD_WM8350_I2C=m CONFIG_MFD_PCF50633=m @@ -3007,14 +3089,15 @@ CONFIG_PCF50633_GPIO=m CONFIG_AB3100_CORE=m CONFIG_AB3100_OTP=m # CONFIG_EZX_PCAP is not set +CONFIG_AB4500_CORE=m CONFIG_REGULATOR=y # CONFIG_REGULATOR_DEBUG is not set -# CONFIG_REGULATOR_FIXED_VOLTAGE is not set +CONFIG_REGULATOR_FIXED_VOLTAGE=m CONFIG_REGULATOR_VIRTUAL_CONSUMER=m CONFIG_REGULATOR_USERSPACE_CONSUMER=m CONFIG_REGULATOR_BQ24022=m CONFIG_REGULATOR_MAX1586=m -CONFIG_REGULATOR_WM831X=m +CONFIG_REGULATOR_MAX8660=m CONFIG_REGULATOR_WM8350=m CONFIG_REGULATOR_WM8400=m CONFIG_REGULATOR_PCF50633=m @@ -3040,6 +3123,8 @@ CONFIG_VIDEO_MEDIA=m # CONFIG_VIDEO_SAA7146=m CONFIG_VIDEO_SAA7146_VV=m +CONFIG_IR_CORE=m +CONFIG_VIDEO_IR=m # CONFIG_MEDIA_ATTACH is not set CONFIG_MEDIA_TUNER=m # CONFIG_MEDIA_TUNER_CUSTOMISE is not set @@ -3060,6 +3145,7 @@ CONFIG_MEDIA_TUNER_XC5000=m CONFIG_MEDIA_TUNER_MXL5005S=m CONFIG_MEDIA_TUNER_MXL5007T=m CONFIG_MEDIA_TUNER_MC44S803=m +CONFIG_MEDIA_TUNER_MAX2165=m CONFIG_VIDEO_V4L2=m CONFIG_VIDEO_V4L1=m CONFIG_VIDEOBUF_GEN=m @@ -3067,7 +3153,6 @@ CONFIG_VIDEOBUF_DMA_SG=m CONFIG_VIDEOBUF_VMALLOC=m CONFIG_VIDEOBUF_DVB=m CONFIG_VIDEO_BTCX=m -CONFIG_VIDEO_IR=m CONFIG_VIDEO_TVEEPROM=m CONFIG_VIDEO_TUNER=m CONFIG_VIDEO_CAPTURE_DRIVERS=y @@ -3153,10 +3238,13 @@ CONFIG_SOC_CAMERA=m CONFIG_SOC_CAMERA_MT9M001=m CONFIG_SOC_CAMERA_MT9M111=m CONFIG_SOC_CAMERA_MT9T031=m +CONFIG_SOC_CAMERA_MT9T112=m CONFIG_SOC_CAMERA_MT9V022=m +CONFIG_SOC_CAMERA_RJ54N1=m CONFIG_SOC_CAMERA_TW9910=m CONFIG_SOC_CAMERA_PLATFORM=m CONFIG_SOC_CAMERA_OV772X=m +CONFIG_SOC_CAMERA_OV9640=m CONFIG_V4L_USB_DRIVERS=y CONFIG_USB_VIDEO_CLASS=m CONFIG_USB_VIDEO_CLASS_INPUT_EVDEV=y @@ -3173,6 +3261,7 @@ CONFIG_USB_GSPCA_MARS=m CONFIG_USB_GSPCA_OV519=m CONFIG_USB_GSPCA_OV534=m CONFIG_USB_GSPCA_PAC207=m +CONFIG_USB_GSPCA_PAC7302=m CONFIG_USB_GSPCA_PAC7311=m CONFIG_USB_GSPCA_SN9C20X=m # CONFIG_USB_GSPCA_SN9C20X_EVDEV is not set @@ -3187,6 +3276,7 @@ CONFIG_USB_GSPCA_SPCA561=m # CONFIG_USB_GSPCA_SQ905 is not set # CONFIG_USB_GSPCA_SQ905C is not set CONFIG_USB_GSPCA_STK014=m +CONFIG_USB_GSPCA_STV0680=m CONFIG_USB_GSPCA_SUNPLUS=m CONFIG_USB_GSPCA_T613=m CONFIG_USB_GSPCA_TV8532=m @@ -3229,6 +3319,7 @@ CONFIG_RADIO_GEMTEK=m CONFIG_RADIO_GEMTEK_PCI=m CONFIG_RADIO_MAXIRADIO=m CONFIG_RADIO_MAESTRO=m +CONFIG_RADIO_MIROPCM20=m CONFIG_RADIO_SF16FMI=m CONFIG_RADIO_SF16FMR2=m CONFIG_RADIO_TERRATEC=m @@ -3241,6 +3332,7 @@ CONFIG_USB_DSBR=m # CONFIG_RADIO_SI470X is not set CONFIG_USB_MR800=m CONFIG_RADIO_TEA5764=m +CONFIG_RADIO_TEF6862=m CONFIG_DVB_MAX_ADAPTERS=8 # CONFIG_DVB_DYNAMIC_MINORS is not set CONFIG_DVB_CAPTURE_DRIVERS=y @@ -3283,8 +3375,9 @@ CONFIG_DVB_USB_CINERGY_T2=m CONFIG_DVB_USB_ANYSEE=m CONFIG_DVB_USB_DTV5100=m CONFIG_DVB_USB_AF9015=m -# CONFIG_DVB_USB_CE6230 is not set +CONFIG_DVB_USB_CE6230=m CONFIG_DVB_USB_FRIIO=m +CONFIG_DVB_USB_EC168=m CONFIG_DVB_TTUSB_BUDGET=m CONFIG_DVB_TTUSB_DEC=m CONFIG_SMS_SIANO_MDTV=m @@ -3322,6 +3415,7 @@ CONFIG_DVB_DM1105=m # Supported FireWire (IEEE 1394) Adapters # CONFIG_DVB_FIREDTV=m +CONFIG_DVB_FIREDTV_FIREWIRE=y CONFIG_DVB_FIREDTV_IEEE1394=y CONFIG_DVB_FIREDTV_INPUT=y @@ -3331,9 +3425,17 @@ CONFIG_DVB_FIREDTV_INPUT=y CONFIG_DVB_PT1=m # +# Supported Mantis Adapters +# +CONFIG_MANTIS_CORE=m +CONFIG_DVB_MANTIS=m +CONFIG_DVB_HOPPER=m + +# # Supported DVB Frontends # # CONFIG_DVB_FE_CUSTOMISE is not set +CONFIG_DVB_STB6100=m CONFIG_DVB_CX24110=m CONFIG_DVB_CX24123=m CONFIG_DVB_MT312=m @@ -3353,6 +3455,8 @@ CONFIG_DVB_TUNER_CX24113=m CONFIG_DVB_TDA826X=m CONFIG_DVB_CX24116=m CONFIG_DVB_SI21XX=m +CONFIG_DVB_DS3000=m +CONFIG_DVB_MB86A16=m CONFIG_DVB_SP8870=m CONFIG_DVB_SP887X=m CONFIG_DVB_CX22700=m @@ -3368,6 +3472,7 @@ CONFIG_DVB_DIB7000M=m CONFIG_DVB_DIB7000P=m CONFIG_DVB_TDA10048=m CONFIG_DVB_AF9013=m +CONFIG_DVB_EC100=m CONFIG_DVB_VES1820=m CONFIG_DVB_TDA10021=m CONFIG_DVB_TDA10023=m @@ -3387,7 +3492,8 @@ CONFIG_DVB_TUNER_DIB0070=m CONFIG_DVB_LNBP21=m CONFIG_DVB_ISL6405=m CONFIG_DVB_ISL6421=m -CONFIG_DVB_LGS8GL5=m +CONFIG_DVB_LGS8GXX=m +CONFIG_DVB_ATBM8830=m CONFIG_DAB=y CONFIG_USB_DABUSB=m @@ -3412,6 +3518,7 @@ CONFIG_DRM_TTM=m CONFIG_DRM_TDFX=m CONFIG_DRM_R128=m CONFIG_DRM_RADEON=m +CONFIG_DRM_RADEON_KMS=y CONFIG_DRM_I810=m CONFIG_DRM_I830=m CONFIG_DRM_I915=m @@ -3518,7 +3625,6 @@ CONFIG_BACKLIGHT_PROGEAR=m CONFIG_BACKLIGHT_CARILLO_RANCH=m CONFIG_BACKLIGHT_MBP_NVIDIA=m CONFIG_BACKLIGHT_SAHARA=m -CONFIG_BACKLIGHT_WM831X=m # # Display device support @@ -3632,8 +3738,8 @@ CONFIG_SND_SB16_CSP=y CONFIG_SND_SGALAXY=m CONFIG_SND_SSCAPE=m CONFIG_SND_WAVEFRONT=m -# CONFIG_SND_MSND_PINNACLE is not set -# CONFIG_SND_MSND_CLASSIC is not set +CONFIG_SND_MSND_PINNACLE=m +CONFIG_SND_MSND_CLASSIC=m CONFIG_SND_PCI=y CONFIG_SND_AD1889=m CONFIG_SND_ALS300=m @@ -3670,8 +3776,8 @@ CONFIG_SND_ECHO3G=m CONFIG_SND_INDIGO=m CONFIG_SND_INDIGOIO=m CONFIG_SND_INDIGODJ=m -# CONFIG_SND_INDIGOIOX is not set -# CONFIG_SND_INDIGODJX is not set +CONFIG_SND_INDIGOIOX=m +CONFIG_SND_INDIGODJX=m CONFIG_SND_EMU10K1=m CONFIG_SND_EMU10K1X=m CONFIG_SND_ENS1370=m @@ -3795,7 +3901,7 @@ CONFIG_USB_ARCH_HAS_OHCI=y CONFIG_USB_ARCH_HAS_EHCI=y CONFIG_USB=y # CONFIG_USB_DEBUG is not set -# CONFIG_USB_ANNOUNCE_NEW_DEVICES is not set +CONFIG_USB_ANNOUNCE_NEW_DEVICES=y # # Miscellaneous USB options @@ -4003,10 +4109,14 @@ CONFIG_USB_ETH=m CONFIG_USB_GADGETFS=m CONFIG_USB_FILE_STORAGE=m # CONFIG_USB_FILE_STORAGE_TEST is not set +CONFIG_USB_MASS_STORAGE=m CONFIG_USB_G_SERIAL=m CONFIG_USB_MIDI_GADGET=m CONFIG_USB_G_PRINTER=m CONFIG_USB_CDC_COMPOSITE=m +CONFIG_USB_G_MULTI=m +CONFIG_USB_G_MULTI_RNDIS=y +# CONFIG_USB_G_MULTI_CDC is not set # # OTG and related infrastructure @@ -4044,7 +4154,7 @@ CONFIG_MMC_WBSD=m # CONFIG_MMC_ATMELMCI is not set CONFIG_MMC_TIFM_SD=m CONFIG_MMC_SDRICOH_CS=m -# CONFIG_MMC_CB710 is not set +CONFIG_MMC_CB710=m CONFIG_MMC_VIA_SDMMC=m CONFIG_MEMSTICK=m # CONFIG_MEMSTICK_DEBUG is not set @@ -4066,16 +4176,20 @@ CONFIG_LEDS_CLASS=m # # LED drivers # +# CONFIG_LEDS_NET48XX is not set +# CONFIG_LEDS_WRAP is not set CONFIG_LEDS_ALIX2=m # CONFIG_LEDS_PCA9532 is not set # CONFIG_LEDS_GPIO is not set CONFIG_LEDS_LP3944=m # CONFIG_LEDS_CLEVO_MAIL is not set # CONFIG_LEDS_PCA955X is not set -CONFIG_LEDS_WM831X_STATUS=m CONFIG_LEDS_WM8350=m # CONFIG_LEDS_DAC124S085 is not set +CONFIG_LEDS_REGULATOR=m # CONFIG_LEDS_BD2802 is not set +CONFIG_LEDS_INTEL_SS4200=m +CONFIG_LEDS_LT3593=m # # LED Triggers @@ -4111,7 +4225,27 @@ CONFIG_INFINIBAND_IPOIB_DEBUG=y # CONFIG_INFINIBAND_IPOIB_DEBUG_DATA is not set CONFIG_INFINIBAND_SRP=m CONFIG_INFINIBAND_ISER=m -# CONFIG_EDAC is not set +CONFIG_EDAC=y + +# +# Reporting subsystems +# +# CONFIG_EDAC_DEBUG is not set +CONFIG_EDAC_DECODE_MCE=m +CONFIG_EDAC_MM_EDAC=m +CONFIG_EDAC_AMD76X=m +CONFIG_EDAC_E7XXX=m +CONFIG_EDAC_E752X=m +CONFIG_EDAC_I82875P=m +CONFIG_EDAC_I82975X=m +CONFIG_EDAC_I3000=m +CONFIG_EDAC_I3200=m +CONFIG_EDAC_X38=m +CONFIG_EDAC_I5400=m +CONFIG_EDAC_I82860=m +CONFIG_EDAC_R82600=m +CONFIG_EDAC_I5000=m +CONFIG_EDAC_I5100=m CONFIG_RTC_LIB=y CONFIG_RTC_CLASS=y CONFIG_RTC_HCTOSYS=y @@ -4141,6 +4275,7 @@ CONFIG_RTC_DRV_PCF8563=m CONFIG_RTC_DRV_PCF8583=m CONFIG_RTC_DRV_M41T80=m CONFIG_RTC_DRV_M41T80_WDT=y +CONFIG_RTC_DRV_BQ32K=m CONFIG_RTC_DRV_S35390A=m CONFIG_RTC_DRV_FM3130=m CONFIG_RTC_DRV_RX8581=m @@ -4170,9 +4305,10 @@ CONFIG_RTC_DRV_STK17TA8=m CONFIG_RTC_DRV_M48T86=m CONFIG_RTC_DRV_M48T35=m CONFIG_RTC_DRV_M48T59=m +CONFIG_RTC_DRV_MSM6242=m CONFIG_RTC_DRV_BQ4802=m +CONFIG_RTC_DRV_RP5C01=m CONFIG_RTC_DRV_V3020=m -CONFIG_RTC_DRV_WM831X=m CONFIG_RTC_DRV_WM8350=m CONFIG_RTC_DRV_PCF50633=m CONFIG_RTC_DRV_AB3100=m @@ -4180,6 +4316,8 @@ CONFIG_RTC_DRV_AB3100=m # # on-CPU RTC drivers # +CONFIG_RTC_DRV_MC13783=m +CONFIG_CS5535_CLOCK_EVENT_SRC=m CONFIG_DMADEVICES=y # @@ -4204,10 +4342,10 @@ CONFIG_CFAG12864B=m CONFIG_CFAG12864B_RATE=20 CONFIG_UIO=m CONFIG_UIO_CIF=m -# CONFIG_UIO_PDRV is not set -# CONFIG_UIO_PDRV_GENIRQ is not set -# CONFIG_UIO_SMX is not set -# CONFIG_UIO_AEC is not set +CONFIG_UIO_PDRV=m +CONFIG_UIO_PDRV_GENIRQ=m +CONFIG_UIO_SMX=m +CONFIG_UIO_AEC=m CONFIG_UIO_SERCOS3=m CONFIG_UIO_PCI_GENERIC=m @@ -4241,7 +4379,6 @@ CONFIG_POCH=m CONFIG_OTUS=m CONFIG_RT2860=m CONFIG_RT2870=m -CONFIG_RT3090=m CONFIG_COMEDI=m # CONFIG_COMEDI_DEBUG is not set CONFIG_COMEDI_PCI_DRIVERS=m @@ -4253,17 +4390,14 @@ CONFIG_PANEL_PARPORT=0 CONFIG_PANEL_PROFILE=5 # CONFIG_PANEL_CHANGE_MESSAGE is not set CONFIG_ALTERA_PCIE_CHDMA=m -CONFIG_RTL8187SE=m +CONFIG_R8187SE=m CONFIG_RTL8192SU=m +CONFIG_RTL8192U=m CONFIG_RTL8192E=m CONFIG_INPUT_MIMIO=m CONFIG_TRANZPORT=m # -# Android -# - -# # Qualcomm MSM Camera And Video # @@ -4271,13 +4405,22 @@ CONFIG_TRANZPORT=m # Camera Sensor Selection # CONFIG_INPUT_GPIO=m -# CONFIG_DST is not set -# CONFIG_POHMELFS is not set -# CONFIG_B3DFG is not set -# CONFIG_IDE_PHISON is not set -# CONFIG_PLAN9AUTH is not set -# CONFIG_LINE6_USB is not set -CONFIG_DRM_RADEON_KMS=y +CONFIG_POHMELFS=m +CONFIG_POHMELFS_DEBUG=y +CONFIG_POHMELFS_CRYPTO=y +CONFIG_B3DFG=m +CONFIG_IDE_PHISON=m +CONFIG_PLAN9AUTH=m +CONFIG_LINE6_USB=m +CONFIG_DRM_VMWGFX=m +CONFIG_DRM_NOUVEAU=m +CONFIG_DRM_NOUVEAU_BACKLIGHT=y +# CONFIG_DRM_NOUVEAU_DEBUG is not set + +# +# I2C encoder or helper chips +# +CONFIG_DRM_I2C_CH7006=m CONFIG_USB_SERIAL_QUATECH2=m CONFIG_USB_SERIAL_QUATECH_USB2=m CONFIG_VT6655=m @@ -4319,20 +4462,34 @@ CONFIG_LIS3L02DQ=m # Analog to digital convertors # CONFIG_MAX1363=m +# CONFIG_MAX1363_RING_BUFFER is not set # # Light sensors # -CONFIG_TSL2561=m +CONFIG_SENSORS_TSL2563=m # # Triggers - standalone # +CONFIG_RAMZSWAP=m +CONFIG_RAMZSWAP_STATS=y +CONFIG_BATMAN_ADV=m +# CONFIG_BATMAN_DEBUG is not set +CONFIG_SAMSUNG_LAPTOP=m +CONFIG_STRIP=m +CONFIG_ARLAN=m +CONFIG_WAVELAN=m +CONFIG_PCMCIA_WAVELAN=m +CONFIG_PCMCIA_NETWAVE=m +CONFIG_FB_SM7XX=m +# CONFIG_FB_SM7XX_ACCEL is not set CONFIG_X86_PLATFORM_DEVICES=y CONFIG_ACER_WMI=m CONFIG_ACERHDF=m CONFIG_ASUS_LAPTOP=m -# CONFIG_DELL_WMI is not set +CONFIG_DELL_LAPTOP=m +CONFIG_DELL_WMI=m CONFIG_FUJITSU_LAPTOP=m # CONFIG_FUJITSU_LAPTOP_DEBUG is not set CONFIG_TC1100_WMI=m @@ -4343,6 +4500,7 @@ CONFIG_COMPAL_LAPTOP=m CONFIG_SONY_LAPTOP=m CONFIG_SONYPI_COMPAT=y CONFIG_THINKPAD_ACPI=m +CONFIG_THINKPAD_ACPI_ALSA_SUPPORT=y # CONFIG_THINKPAD_ACPI_DEBUGFACILITIES is not set # CONFIG_THINKPAD_ACPI_DEBUG is not set # CONFIG_THINKPAD_ACPI_UNSAFE_LEDS is not set @@ -4351,9 +4509,12 @@ CONFIG_THINKPAD_ACPI_HOTKEY_POLL=y CONFIG_INTEL_MENLOW=m CONFIG_EEEPC_LAPTOP=m CONFIG_ACPI_WMI=m +CONFIG_MSI_WMI=m CONFIG_ACPI_ASUS=m CONFIG_TOPSTAR_LAPTOP=m CONFIG_ACPI_TOSHIBA=m +CONFIG_TOSHIBA_BT_RFKILL=m +CONFIG_ACPI_CMPC=m # # Firmware Drivers @@ -4392,7 +4553,7 @@ CONFIG_JBD2_DEBUG=y CONFIG_FS_MBCACHE=y CONFIG_REISERFS_FS=y # CONFIG_REISERFS_CHECK is not set -# CONFIG_REISERFS_PROC_INFO is not set +CONFIG_REISERFS_PROC_INFO=y CONFIG_REISERFS_FS_XATTR=y CONFIG_REISERFS_FS_POSIX_ACL=y CONFIG_REISERFS_FS_SECURITY=y @@ -4415,10 +4576,9 @@ CONFIG_OCFS2_FS_USERSPACE_CLUSTER=m CONFIG_OCFS2_FS_STATS=y CONFIG_OCFS2_DEBUG_MASKLOG=y CONFIG_OCFS2_DEBUG_FS=y -CONFIG_OCFS2_FS_POSIX_ACL=y CONFIG_BTRFS_FS=m CONFIG_BTRFS_FS_POSIX_ACL=y -# CONFIG_NILFS2_FS is not set +CONFIG_NILFS2_FS=m CONFIG_FILE_LOCKING=y CONFIG_FSNOTIFY=y CONFIG_DNOTIFY=y @@ -4455,7 +4615,7 @@ CONFIG_UDF_NLS=y # DOS/FAT/NT Filesystems # CONFIG_FAT_FS=m -# CONFIG_MSDOS_FS is not set +CONFIG_MSDOS_FS=m CONFIG_VFAT_FS=m CONFIG_FAT_DEFAULT_CODEPAGE=437 CONFIG_FAT_DEFAULT_IOCHARSET="utf8" @@ -4716,6 +4876,7 @@ CONFIG_BRANCH_PROFILE_NONE=y # CONFIG_PROFILE_ANNOTATED_BRANCHES is not set # CONFIG_PROFILE_ALL_BRANCHES is not set # CONFIG_POWER_TRACER is not set +# CONFIG_KSYM_TRACER is not set # CONFIG_STACK_TRACER is not set # CONFIG_KMEMTRACE is not set # CONFIG_WORKQUEUE_TRACER is not set @@ -4757,6 +4918,7 @@ CONFIG_DEFAULT_IO_DELAY_TYPE=0 # CONFIG_DEBUG_BOOT_PARAMS is not set # CONFIG_CPA_DEBUG is not set # CONFIG_OPTIMIZE_INLINING is not set +# CONFIG_DEBUG_STRICT_USER_COPY_CHECKS is not set # # Security options @@ -4768,12 +4930,16 @@ CONFIG_SECURITYFS=y CONFIG_SECURITY_NETWORK=y # CONFIG_SECURITY_NETWORK_XFRM is not set # CONFIG_SECURITY_PATH is not set -# CONFIG_SECURITY_FILE_CAPABILITIES is not set -# CONFIG_SECURITY_ROOTPLUG is not set +# CONFIG_INTEL_TXT is not set # CONFIG_SECURITY_SELINUX is not set # CONFIG_SECURITY_SMACK is not set # CONFIG_SECURITY_TOMOYO is not set # CONFIG_IMA is not set +# CONFIG_DEFAULT_SECURITY_SELINUX is not set +# CONFIG_DEFAULT_SECURITY_SMACK is not set +# CONFIG_DEFAULT_SECURITY_TOMOYO is not set +CONFIG_DEFAULT_SECURITY_DAC=y +CONFIG_DEFAULT_SECURITY="" CONFIG_XOR_BLOCKS=y CONFIG_ASYNC_CORE=y CONFIG_ASYNC_MEMCPY=y @@ -4926,10 +5092,11 @@ CONFIG_AUDIT_GENERIC=y CONFIG_ZLIB_INFLATE=y CONFIG_ZLIB_DEFLATE=m CONFIG_LZO_COMPRESS=m -CONFIG_LZO_DECOMPRESS=m +CONFIG_LZO_DECOMPRESS=y CONFIG_DECOMPRESS_GZIP=y CONFIG_DECOMPRESS_BZIP2=y CONFIG_DECOMPRESS_LZMA=y +CONFIG_DECOMPRESS_LZO=y CONFIG_GENERIC_ALLOCATOR=y CONFIG_REED_SOLOMON=m CONFIG_REED_SOLOMON_DEC16=y @@ -4942,3 +5109,4 @@ CONFIG_HAS_IOPORT=y CONFIG_HAS_DMA=y CONFIG_CHECK_SIGNATURE=y CONFIG_NLATTR=y +CONFIG_LRU_CACHE=m diff --git a/source/base/kernel/config.x86_64 b/source/base/kernel/config.x86_64 index 1e4d797..81ecac8 100644 --- a/source/base/kernel/config.x86_64 +++ b/source/base/kernel/config.x86_64 @@ -1,7 +1,7 @@ # # Automatically generated make config: don't edit -# Linux kernel version: 2.6.32 -# Mon Dec 7 19:58:29 2009 +# Linux kernel version: 2.6.33 +# Thu Mar 11 18:19:58 2010 # CONFIG_64BIT=y # CONFIG_X86_32 is not set @@ -69,9 +69,11 @@ CONFIG_LOCALVERSION_AUTO=y CONFIG_HAVE_KERNEL_GZIP=y CONFIG_HAVE_KERNEL_BZIP2=y CONFIG_HAVE_KERNEL_LZMA=y +CONFIG_HAVE_KERNEL_LZO=y CONFIG_KERNEL_GZIP=y # CONFIG_KERNEL_BZIP2 is not set # CONFIG_KERNEL_LZMA is not set +# CONFIG_KERNEL_LZO is not set CONFIG_SWAP=y CONFIG_SYSVIPC=y CONFIG_SYSVIPC_SYSCTL=y @@ -92,6 +94,7 @@ CONFIG_AUDIT_TREE=y # CONFIG_TREE_RCU=y # CONFIG_TREE_PREEMPT_RCU is not set +# CONFIG_TINY_RCU is not set # CONFIG_RCU_TRACE is not set CONFIG_RCU_FANOUT=64 # CONFIG_RCU_FANOUT_EXACT is not set @@ -119,6 +122,7 @@ CONFIG_INITRAMFS_SOURCE="" CONFIG_RD_GZIP=y CONFIG_RD_BZIP2=y CONFIG_RD_LZMA=y +CONFIG_RD_LZO=y CONFIG_CC_OPTIMIZE_FOR_SIZE=y CONFIG_SYSCTL=y CONFIG_ANON_INODES=y @@ -165,12 +169,15 @@ CONFIG_OPROFILE_IBS=y CONFIG_HAVE_OPROFILE=y # CONFIG_KPROBES is not set CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y +CONFIG_USER_RETURN_NOTIFIER=y CONFIG_HAVE_IOREMAP_PROT=y CONFIG_HAVE_KPROBES=y CONFIG_HAVE_KRETPROBES=y CONFIG_HAVE_ARCH_TRACEHOOK=y CONFIG_HAVE_DMA_ATTRS=y CONFIG_HAVE_DMA_API_DEBUG=y +CONFIG_HAVE_HW_BREAKPOINT=y +CONFIG_HAVE_USER_RETURN_NOTIFIER=y # # GCOV-based kernel profiling @@ -198,15 +205,42 @@ CONFIG_BLOCK_COMPAT=y # IO Schedulers # CONFIG_IOSCHED_NOOP=y -CONFIG_IOSCHED_AS=y CONFIG_IOSCHED_DEADLINE=y CONFIG_IOSCHED_CFQ=y -# CONFIG_DEFAULT_AS is not set # CONFIG_DEFAULT_DEADLINE is not set CONFIG_DEFAULT_CFQ=y # CONFIG_DEFAULT_NOOP is not set CONFIG_DEFAULT_IOSCHED="cfq" CONFIG_PREEMPT_NOTIFIERS=y +# CONFIG_INLINE_SPIN_TRYLOCK is not set +# CONFIG_INLINE_SPIN_TRYLOCK_BH is not set +# CONFIG_INLINE_SPIN_LOCK is not set +# CONFIG_INLINE_SPIN_LOCK_BH is not set +# CONFIG_INLINE_SPIN_LOCK_IRQ is not set +# CONFIG_INLINE_SPIN_LOCK_IRQSAVE is not set +# CONFIG_INLINE_SPIN_UNLOCK is not set +# CONFIG_INLINE_SPIN_UNLOCK_BH is not set +# CONFIG_INLINE_SPIN_UNLOCK_IRQ is not set +# CONFIG_INLINE_SPIN_UNLOCK_IRQRESTORE is not set +# CONFIG_INLINE_READ_TRYLOCK is not set +# CONFIG_INLINE_READ_LOCK is not set +# CONFIG_INLINE_READ_LOCK_BH is not set +# CONFIG_INLINE_READ_LOCK_IRQ is not set +# CONFIG_INLINE_READ_LOCK_IRQSAVE is not set +# CONFIG_INLINE_READ_UNLOCK is not set +# CONFIG_INLINE_READ_UNLOCK_BH is not set +# CONFIG_INLINE_READ_UNLOCK_IRQ is not set +# CONFIG_INLINE_READ_UNLOCK_IRQRESTORE is not set +# CONFIG_INLINE_WRITE_TRYLOCK is not set +# CONFIG_INLINE_WRITE_LOCK is not set +# CONFIG_INLINE_WRITE_LOCK_BH is not set +# CONFIG_INLINE_WRITE_LOCK_IRQ is not set +# CONFIG_INLINE_WRITE_LOCK_IRQSAVE is not set +# CONFIG_INLINE_WRITE_UNLOCK is not set +# CONFIG_INLINE_WRITE_UNLOCK_BH is not set +# CONFIG_INLINE_WRITE_UNLOCK_IRQ is not set +# CONFIG_INLINE_WRITE_UNLOCK_IRQRESTORE is not set +CONFIG_MUTEX_SPIN_ON_OWNER=y CONFIG_FREEZER=y # @@ -217,7 +251,7 @@ CONFIG_NO_HZ=y CONFIG_HIGH_RES_TIMERS=y CONFIG_GENERIC_CLOCKEVENTS_BUILD=y CONFIG_SMP=y -# CONFIG_X86_X2APIC is not set +CONFIG_X86_X2APIC=y CONFIG_SPARSE_IRQ=y CONFIG_X86_MPPARSE=y CONFIG_X86_EXTENDED_PLATFORM=y @@ -260,8 +294,7 @@ CONFIG_MEMTEST=y # CONFIG_MATOM is not set CONFIG_GENERIC_CPU=y CONFIG_X86_CPU=y -CONFIG_X86_L1_CACHE_BYTES=64 -CONFIG_X86_INTERNODE_CACHE_BYTES=64 +CONFIG_X86_INTERNODE_CACHE_SHIFT=6 CONFIG_X86_CMPXCHG=y CONFIG_X86_L1_CACHE_SHIFT=6 CONFIG_X86_WP_WORKS_OK=y @@ -307,7 +340,6 @@ CONFIG_MICROCODE_AMD=y CONFIG_MICROCODE_OLD_INTERFACE=y CONFIG_X86_MSR=m CONFIG_X86_CPUID=m -# CONFIG_X86_CPU_DEBUG is not set CONFIG_ARCH_PHYS_ADDR_T_64BIT=y CONFIG_DIRECT_GBPAGES=y # CONFIG_NUMA is not set @@ -315,6 +347,8 @@ CONFIG_ARCH_PROC_KCORE_TEXT=y CONFIG_ARCH_SPARSEMEM_DEFAULT=y CONFIG_ARCH_SPARSEMEM_ENABLE=y CONFIG_ARCH_SELECT_MEMORY_MODEL=y +CONFIG_ARCH_MEMORY_PROBE=y +CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000 CONFIG_SELECT_MEMORY_MODEL=y # CONFIG_FLATMEM_MANUAL is not set # CONFIG_DISCONTIGMEM_MANUAL is not set @@ -324,20 +358,22 @@ CONFIG_HAVE_MEMORY_PRESENT=y CONFIG_SPARSEMEM_EXTREME=y CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y CONFIG_SPARSEMEM_VMEMMAP=y -# CONFIG_MEMORY_HOTPLUG is not set +CONFIG_MEMORY_HOTPLUG=y +CONFIG_MEMORY_HOTPLUG_SPARSE=y +CONFIG_MEMORY_HOTREMOVE=y CONFIG_PAGEFLAGS_EXTENDED=y CONFIG_SPLIT_PTLOCK_CPUS=4 +CONFIG_MIGRATION=y CONFIG_PHYS_ADDR_T_64BIT=y CONFIG_ZONE_DMA_FLAG=1 CONFIG_BOUNCE=y CONFIG_VIRT_TO_BUS=y -CONFIG_HAVE_MLOCK=y -CONFIG_HAVE_MLOCKED_PAGE_BIT=y CONFIG_MMU_NOTIFIER=y -# CONFIG_KSM is not set +CONFIG_KSM=y CONFIG_DEFAULT_MMAP_MIN_ADDR=65536 CONFIG_ARCH_SUPPORTS_MEMORY_FAILURE=y -# CONFIG_MEMORY_FAILURE is not set +CONFIG_MEMORY_FAILURE=y +CONFIG_HWPOISON_INJECT=m CONFIG_X86_CHECK_BIOS_CORRUPTION=y CONFIG_X86_BOOTPARAM_MEMORY_CORRUPTION_CHECK=y CONFIG_X86_RESERVE_LOW_64K=y @@ -366,6 +402,7 @@ CONFIG_HOTPLUG_CPU=y # CONFIG_COMPAT_VDSO is not set # CONFIG_CMDLINE_BOOL is not set CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y +CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y # # Power management and ACPI options @@ -404,8 +441,9 @@ CONFIG_ACPI_BLACKLIST_YEAR=0 CONFIG_ACPI_PCI_SLOT=m CONFIG_X86_PM_TIMER=y CONFIG_ACPI_CONTAINER=m +CONFIG_ACPI_HOTPLUG_MEMORY=m CONFIG_ACPI_SBS=m -# CONFIG_SFI is not set +CONFIG_SFI=y # # CPU Frequency scaling @@ -462,7 +500,7 @@ CONFIG_INTR_REMAP=y CONFIG_PCIEPORTBUS=y CONFIG_HOTPLUG_PCI_PCIE=m CONFIG_PCIEAER=y -# CONFIG_PCIE_ECRC is not set +CONFIG_PCIE_ECRC=y CONFIG_PCIEAER_INJECT=m CONFIG_PCIEASPM=y # CONFIG_PCIEASPM_DEBUG is not set @@ -472,11 +510,11 @@ CONFIG_PCI_LEGACY=y # CONFIG_PCI_DEBUG is not set CONFIG_PCI_STUB=m CONFIG_HT_IRQ=y -# CONFIG_PCI_IOV is not set +CONFIG_PCI_IOV=y +CONFIG_PCI_IOAPIC=y CONFIG_ISA_DMA_API=y CONFIG_K8_NB=y CONFIG_PCCARD=y -# CONFIG_PCMCIA_DEBUG is not set CONFIG_PCMCIA=y CONFIG_PCMCIA_LOAD_CIS=y # CONFIG_PCMCIA_IOCTL is not set @@ -602,6 +640,7 @@ CONFIG_INET6_XFRM_MODE_TUNNEL=m CONFIG_INET6_XFRM_MODE_BEET=m CONFIG_INET6_XFRM_MODE_ROUTEOPTIMIZATION=m CONFIG_IPV6_SIT=m +CONFIG_IPV6_SIT_6RD=y CONFIG_IPV6_NDISC_NODETYPE=y CONFIG_IPV6_TUNNEL=m CONFIG_IPV6_MULTIPLE_TABLES=y @@ -935,6 +974,7 @@ CONFIG_CAN_BCM=m CONFIG_CAN_VCAN=m CONFIG_CAN_DEV=m # CONFIG_CAN_CALC_BITTIMING is not set +CONFIG_CAN_MCP251X=m CONFIG_CAN_SJA1000=m CONFIG_CAN_SJA1000_PLATFORM=m CONFIG_CAN_EMS_PCI=m @@ -1031,20 +1071,25 @@ CONFIG_BT_HCIBTUART=m CONFIG_BT_HCIVHCI=m CONFIG_BT_MRVL=m CONFIG_BT_MRVL_SDIO=m +CONFIG_BT_ATH3K=m CONFIG_AF_RXRPC=m # CONFIG_AF_RXRPC_DEBUG is not set CONFIG_RXKAD=m CONFIG_FIB_RULES=y CONFIG_WIRELESS=y +CONFIG_WIRELESS_EXT=y +CONFIG_WEXT_CORE=y +CONFIG_WEXT_PROC=y +CONFIG_WEXT_SPY=y +CONFIG_WEXT_PRIV=y CONFIG_CFG80211=m # CONFIG_NL80211_TESTMODE is not set # CONFIG_CFG80211_DEVELOPER_WARNINGS is not set CONFIG_CFG80211_REG_DEBUG=y CONFIG_CFG80211_DEFAULT_PS=y -CONFIG_CFG80211_DEFAULT_PS_VALUE=1 # CONFIG_CFG80211_DEBUGFS is not set CONFIG_WIRELESS_OLD_REGULATORY=y -CONFIG_WIRELESS_EXT=y +CONFIG_CFG80211_WEXT=y CONFIG_WIRELESS_EXT_SYSFS=y CONFIG_LIB80211=m CONFIG_LIB80211_CRYPT_WEP=m @@ -1230,7 +1275,7 @@ CONFIG_MTD_QINFO_PROBE=m CONFIG_MTD_UBI=m CONFIG_MTD_UBI_WL_THRESHOLD=4096 CONFIG_MTD_UBI_BEB_RESERVE=1 -# CONFIG_MTD_UBI_GLUEBI is not set +CONFIG_MTD_UBI_GLUEBI=m # # UBI debugging options @@ -1239,8 +1284,8 @@ CONFIG_MTD_UBI_BEB_RESERVE=1 CONFIG_PARPORT=m CONFIG_PARPORT_PC=m CONFIG_PARPORT_SERIAL=m -# CONFIG_PARPORT_PC_FIFO is not set -# CONFIG_PARPORT_PC_SUPERIO is not set +CONFIG_PARPORT_PC_FIFO=y +CONFIG_PARPORT_PC_SUPERIO=y CONFIG_PARPORT_PC_PCMCIA=m # CONFIG_PARPORT_GSC is not set CONFIG_PARPORT_AX88796=m @@ -1292,6 +1337,8 @@ CONFIG_BLK_DEV_UMEM=m # CONFIG_BLK_DEV_COW_COMMON is not set CONFIG_BLK_DEV_LOOP=m CONFIG_BLK_DEV_CRYPTOLOOP=m +CONFIG_BLK_DEV_DRBD=m +# CONFIG_DRBD_FAULT_INJECTION is not set CONFIG_BLK_DEV_NBD=m CONFIG_BLK_DEV_SX8=m # CONFIG_BLK_DEV_UB is not set @@ -1306,6 +1353,7 @@ CONFIG_ATA_OVER_ETH=m CONFIG_VIRTIO_BLK=m # CONFIG_BLK_DEV_HD is not set CONFIG_MISC_DEVICES=y +CONFIG_AD525X_DPOT=m CONFIG_IBM_ASM=m CONFIG_PHANTOM=m CONFIG_SGI_IOC4=m @@ -1313,9 +1361,12 @@ CONFIG_TIFM_CORE=m CONFIG_TIFM_7XX1=m CONFIG_ICS932S401=m CONFIG_ENCLOSURE_SERVICES=m +CONFIG_CS5535_MFGPT=m +CONFIG_CS5535_MFGPT_DEFAULT_IRQ=7 CONFIG_HP_ILO=m -CONFIG_DELL_LAPTOP=m # CONFIG_ISL29003 is not set +CONFIG_DS1682=m +CONFIG_TI_DAC7512=m CONFIG_C2PORT=m CONFIG_C2PORT_DURAMAR_2150=m @@ -1330,6 +1381,9 @@ CONFIG_EEPROM_93CX6=m CONFIG_CB710_CORE=m # CONFIG_CB710_DEBUG is not set CONFIG_CB710_DEBUG_ASSUMPTIONS=y +CONFIG_IWMC3200TOP=m +# CONFIG_IWMC3200TOP_DEBUG is not set +# CONFIG_IWMC3200TOP_DEBUGFS is not set CONFIG_HAVE_IDE=y CONFIG_IDE=y @@ -1446,7 +1500,9 @@ CONFIG_SCSI_CXGB3_ISCSI=m CONFIG_SCSI_BNX2_ISCSI=m CONFIG_BE2ISCSI=m CONFIG_BLK_DEV_3W_XXXX_RAID=m +CONFIG_SCSI_HPSA=m CONFIG_SCSI_3W_9XXX=m +CONFIG_SCSI_3W_SAS=m CONFIG_SCSI_ACARD=m CONFIG_SCSI_AACRAID=m CONFIG_SCSI_AIC7XXX=y @@ -1478,6 +1534,7 @@ CONFIG_MEGARAID_SAS=m # CONFIG_SCSI_MPT2SAS is not set CONFIG_SCSI_HPTIOP=m CONFIG_SCSI_BUSLOGIC=m +CONFIG_VMWARE_PVSCSI=m CONFIG_LIBFC=m CONFIG_LIBFCOE=m CONFIG_FCOE=m @@ -1514,6 +1571,7 @@ CONFIG_SCSI_DC395x=m CONFIG_SCSI_DC390T=m CONFIG_SCSI_DEBUG=m CONFIG_SCSI_PMCRAID=m +CONFIG_SCSI_PM8001=m CONFIG_SCSI_SRP=m CONFIG_SCSI_BFA_FC=m CONFIG_SCSI_LOWLEVEL_PCMCIA=y @@ -1576,15 +1634,16 @@ CONFIG_PATA_NS87415=m CONFIG_PATA_OPTI=m CONFIG_PATA_OPTIDMA=m CONFIG_PATA_PCMCIA=m +CONFIG_PATA_PDC2027X=m CONFIG_PATA_PDC_OLD=m CONFIG_PATA_RADISYS=m CONFIG_PATA_RDC=m CONFIG_PATA_RZ1000=m CONFIG_PATA_SC1200=m CONFIG_PATA_SERVERWORKS=m -CONFIG_PATA_PDC2027X=m CONFIG_PATA_SIL680=m CONFIG_PATA_SIS=y +CONFIG_PATA_TOSHIBA=m CONFIG_PATA_VIA=m CONFIG_PATA_WINBOND=m # CONFIG_PATA_SCH is not set @@ -1614,7 +1673,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 @@ -1631,7 +1690,7 @@ CONFIG_FUSION_LOGGING=y # # -# See the help texts for more information. +# The newer stack is recommended. # CONFIG_FIREWIRE=m CONFIG_FIREWIRE_OHCI=m @@ -1829,18 +1888,7 @@ CONFIG_TMS380TR=m CONFIG_TMSPCI=m CONFIG_ABYSS=m CONFIG_WLAN=y -CONFIG_WLAN_PRE80211=y -CONFIG_STRIP=m -CONFIG_PCMCIA_WAVELAN=m -CONFIG_PCMCIA_NETWAVE=m -CONFIG_WLAN_80211=y CONFIG_PCMCIA_RAYCS=m -CONFIG_LIBERTAS=m -CONFIG_LIBERTAS_USB=m -CONFIG_LIBERTAS_CS=m -CONFIG_LIBERTAS_SDIO=m -# CONFIG_LIBERTAS_SPI is not set -# CONFIG_LIBERTAS_DEBUG is not set CONFIG_LIBERTAS_THINFIRM=m CONFIG_LIBERTAS_THINFIRM_USB=m CONFIG_AIRO=m @@ -1859,42 +1907,15 @@ CONFIG_RTL8187_LEDS=y CONFIG_ADM8211=m # CONFIG_MAC80211_HWSIM is not set # CONFIG_MWL8K is not set -CONFIG_P54_COMMON=m -CONFIG_P54_USB=m -CONFIG_P54_PCI=m -# CONFIG_P54_SPI is not set -CONFIG_P54_LEDS=y CONFIG_ATH_COMMON=m +# CONFIG_ATH_DEBUG is not set CONFIG_ATH5K=m # CONFIG_ATH5K_DEBUG is not set +CONFIG_ATH9K_HW=m +CONFIG_ATH9K_COMMON=m CONFIG_ATH9K=m -# CONFIG_ATH9K_DEBUG is not set +# CONFIG_ATH9K_DEBUGFS is not set # CONFIG_AR9170_USB is not set -CONFIG_IPW2100=m -CONFIG_IPW2100_MONITOR=y -# CONFIG_IPW2100_DEBUG is not set -CONFIG_IPW2200=m -CONFIG_IPW2200_MONITOR=y -# CONFIG_IPW2200_RADIOTAP is not set -# CONFIG_IPW2200_PROMISCUOUS is not set -CONFIG_IPW2200_QOS=y -# CONFIG_IPW2200_DEBUG is not set -CONFIG_LIBIPW=m -# CONFIG_LIBIPW_DEBUG is not set -CONFIG_IWLWIFI=m -CONFIG_IWLWIFI_LEDS=y -# CONFIG_IWLWIFI_SPECTRUM_MEASUREMENT is not set -# CONFIG_IWLWIFI_DEBUG is not set -CONFIG_IWLAGN=m -CONFIG_IWL4965=y -CONFIG_IWL5000=y -CONFIG_IWL3945=m -CONFIG_IWL3945_SPECTRUM_MEASUREMENT=y -CONFIG_HOSTAP=m -# CONFIG_HOSTAP_FIRMWARE is not set -CONFIG_HOSTAP_PLX=m -CONFIG_HOSTAP_PCI=m -CONFIG_HOSTAP_CS=m CONFIG_B43=m CONFIG_B43_PCI_AUTOSELECT=y CONFIG_B43_PCICORE_AUTOSELECT=y @@ -1916,15 +1937,62 @@ CONFIG_B43LEGACY_PIO=y CONFIG_B43LEGACY_DMA_AND_PIO_MODE=y # CONFIG_B43LEGACY_DMA_MODE is not set # CONFIG_B43LEGACY_PIO_MODE is not set -CONFIG_ZD1211RW=m -# CONFIG_ZD1211RW_DEBUG is not set +CONFIG_HOSTAP=m +# CONFIG_HOSTAP_FIRMWARE is not set +CONFIG_HOSTAP_PLX=m +CONFIG_HOSTAP_PCI=m +CONFIG_HOSTAP_CS=m +CONFIG_IPW2100=m +CONFIG_IPW2100_MONITOR=y +# CONFIG_IPW2100_DEBUG is not set +CONFIG_IPW2200=m +CONFIG_IPW2200_MONITOR=y +# CONFIG_IPW2200_RADIOTAP is not set +# CONFIG_IPW2200_PROMISCUOUS is not set +CONFIG_IPW2200_QOS=y +# CONFIG_IPW2200_DEBUG is not set +CONFIG_LIBIPW=m +# CONFIG_LIBIPW_DEBUG is not set +CONFIG_IWLWIFI=m +# CONFIG_IWLWIFI_SPECTRUM_MEASUREMENT is not set +# CONFIG_IWLWIFI_DEBUG is not set +# CONFIG_IWLWIFI_DEVICE_TRACING is not set +CONFIG_IWLAGN=m +CONFIG_IWL4965=y +CONFIG_IWL5000=y +CONFIG_IWL3945=m +CONFIG_IWL3945_SPECTRUM_MEASUREMENT=y +CONFIG_IWM=m +# CONFIG_IWM_DEBUG is not set +CONFIG_LIBERTAS=m +CONFIG_LIBERTAS_USB=m +CONFIG_LIBERTAS_CS=m +CONFIG_LIBERTAS_SDIO=m +# CONFIG_LIBERTAS_SPI is not set +# CONFIG_LIBERTAS_DEBUG is not set +CONFIG_HERMES=m +CONFIG_HERMES_CACHE_FW_ON_INIT=y +CONFIG_PLX_HERMES=m +CONFIG_TMD_HERMES=m +CONFIG_NORTEL_HERMES=m +CONFIG_PCI_HERMES=m +CONFIG_PCMCIA_HERMES=m +CONFIG_PCMCIA_SPECTRUM=m +CONFIG_P54_COMMON=m +CONFIG_P54_USB=m +CONFIG_P54_PCI=m +# CONFIG_P54_SPI is not set +CONFIG_P54_LEDS=y CONFIG_RT2X00=m CONFIG_RT2400PCI=m CONFIG_RT2500PCI=m CONFIG_RT61PCI=m +CONFIG_RT2800PCI_PCI=m +CONFIG_RT2800PCI=m CONFIG_RT2500USB=m CONFIG_RT73USB=m CONFIG_RT2800USB=m +CONFIG_RT2800_LIB=m CONFIG_RT2X00_LIB_PCI=m CONFIG_RT2X00_LIB_USB=m CONFIG_RT2X00_LIB=m @@ -1933,21 +2001,13 @@ CONFIG_RT2X00_LIB_FIRMWARE=y CONFIG_RT2X00_LIB_CRYPTO=y CONFIG_RT2X00_LIB_LEDS=y # CONFIG_RT2X00_DEBUG is not set -CONFIG_HERMES=m -CONFIG_HERMES_CACHE_FW_ON_INIT=y -CONFIG_PLX_HERMES=m -CONFIG_TMD_HERMES=m -CONFIG_NORTEL_HERMES=m -CONFIG_PCI_HERMES=m -CONFIG_PCMCIA_HERMES=m -CONFIG_PCMCIA_SPECTRUM=m CONFIG_WL12XX=m CONFIG_WL1251=m CONFIG_WL1251_SPI=m CONFIG_WL1251_SDIO=m CONFIG_WL1271=m -CONFIG_IWM=m -# CONFIG_IWM_DEBUG is not set +CONFIG_ZD1211RW=m +# CONFIG_ZD1211RW_DEBUG is not set # # WiMAX Wireless Broadband devices @@ -1955,6 +2015,7 @@ CONFIG_IWM=m CONFIG_WIMAX_I2400M=m CONFIG_WIMAX_I2400M_USB=m CONFIG_WIMAX_I2400M_SDIO=m +CONFIG_WIMAX_IWMC3200_SDIO=y CONFIG_WIMAX_I2400M_DEBUG_LEVEL=8 # @@ -2098,9 +2159,14 @@ CONFIG_MISDN_W6692=m CONFIG_MISDN_NETJET=m CONFIG_MISDN_IPAC=m CONFIG_MISDN_ISAR=m -# CONFIG_ISDN_PPP is not set -# CONFIG_ISDN_AUDIO is not set -# CONFIG_ISDN_X25 is not set +CONFIG_ISDN_PPP=y +CONFIG_ISDN_PPP_VJ=y +CONFIG_ISDN_MPP=y +CONFIG_IPPP_FILTER=y +CONFIG_ISDN_PPP_BSDCOMP=m +CONFIG_ISDN_AUDIO=y +CONFIG_ISDN_TTY_FAX=y +CONFIG_ISDN_X25=y # # ISDN feature submodules @@ -2119,37 +2185,45 @@ CONFIG_ISDN_DRV_HISAX=m # # D-channel protocol features # -# CONFIG_HISAX_EURO is not set -# CONFIG_HISAX_1TR6 is not set -# CONFIG_HISAX_NI1 is not set +CONFIG_HISAX_EURO=y +CONFIG_DE_AOC=y +# CONFIG_HISAX_NO_SENDCOMPLETE is not set +# CONFIG_HISAX_NO_LLC is not set +# CONFIG_HISAX_NO_KEYPAD is not set +CONFIG_HISAX_1TR6=y +CONFIG_HISAX_NI1=y CONFIG_HISAX_MAX_CARDS=8 # # HiSax supported cards # -# CONFIG_HISAX_16_3 is not set -# CONFIG_HISAX_TELESPCI is not set -# CONFIG_HISAX_S0BOX is not set -# CONFIG_HISAX_FRITZPCI is not set -# CONFIG_HISAX_AVM_A1_PCMCIA is not set -# CONFIG_HISAX_ELSA is not set -# CONFIG_HISAX_DIEHLDIVA is not set -# CONFIG_HISAX_SEDLBAUER is not set -# CONFIG_HISAX_NETJET is not set -# CONFIG_HISAX_NETJET_U is not set -# CONFIG_HISAX_NICCY is not set -# CONFIG_HISAX_BKM_A4T is not set -# CONFIG_HISAX_SCT_QUADRO is not set -# CONFIG_HISAX_GAZEL is not set -# CONFIG_HISAX_HFC_PCI is not set -# CONFIG_HISAX_W6692 is not set -# CONFIG_HISAX_HFC_SX is not set -# CONFIG_HISAX_DEBUG is not set +CONFIG_HISAX_16_3=y +CONFIG_HISAX_TELESPCI=y +CONFIG_HISAX_S0BOX=y +CONFIG_HISAX_FRITZPCI=y +CONFIG_HISAX_AVM_A1_PCMCIA=y +CONFIG_HISAX_ELSA=y +CONFIG_HISAX_DIEHLDIVA=y +CONFIG_HISAX_SEDLBAUER=y +CONFIG_HISAX_NETJET=y +CONFIG_HISAX_NETJET_U=y +CONFIG_HISAX_NICCY=y +CONFIG_HISAX_BKM_A4T=y +CONFIG_HISAX_SCT_QUADRO=y +CONFIG_HISAX_GAZEL=y +CONFIG_HISAX_HFC_PCI=y +CONFIG_HISAX_W6692=y +CONFIG_HISAX_HFC_SX=y +CONFIG_HISAX_ENTERNOW_PCI=y +CONFIG_HISAX_DEBUG=y # # HiSax PCMCIA card service modules # +CONFIG_HISAX_SEDLBAUER_CS=m +CONFIG_HISAX_ELSA_CS=m CONFIG_HISAX_AVM_A1_CS=m +CONFIG_HISAX_TELES_CS=m # # HiSax sub driver modules @@ -2163,7 +2237,7 @@ CONFIG_HISAX_FRITZ_PCIPNP=m # Active cards # CONFIG_HYSDN=m -# CONFIG_HYSDN_CAPI is not set +CONFIG_HYSDN_CAPI=y CONFIG_ISDN_HDLC=m CONFIG_ISDN_CAPI=m CONFIG_ISDN_DRV_AVMB1_VERBOSE_REASON=y @@ -2191,7 +2265,14 @@ CONFIG_ISDN_DIVAS_PRIPCI=y CONFIG_ISDN_DIVAS_DIVACAPI=m CONFIG_ISDN_DIVAS_USERIDI=m CONFIG_ISDN_DIVAS_MAINT=m -# CONFIG_ISDN_DRV_GIGASET is not set +CONFIG_ISDN_DRV_GIGASET=m +CONFIG_GIGASET_CAPI=y +# CONFIG_GIGASET_I4L is not set +# CONFIG_GIGASET_DUMMYLL is not set +CONFIG_GIGASET_BASE=m +CONFIG_GIGASET_M105=m +CONFIG_GIGASET_M101=m +# CONFIG_GIGASET_DEBUG is not set CONFIG_PHONE=m CONFIG_PHONE_IXJ=m CONFIG_PHONE_IXJ_PCMCIA=m @@ -2202,6 +2283,7 @@ CONFIG_PHONE_IXJ_PCMCIA=m CONFIG_INPUT=y CONFIG_INPUT_FF_MEMLESS=y CONFIG_INPUT_POLLDEV=m +CONFIG_INPUT_SPARSEKMAP=m # # Userland interfaces @@ -2245,7 +2327,7 @@ CONFIG_MOUSE_SERIAL=m CONFIG_MOUSE_APPLETOUCH=m # CONFIG_MOUSE_BCM5974 is not set CONFIG_MOUSE_VSXXXAA=m -# CONFIG_MOUSE_GPIO is not set +CONFIG_MOUSE_GPIO=m CONFIG_MOUSE_SYNAPTICS_I2C=m CONFIG_INPUT_JOYSTICK=y CONFIG_JOYSTICK_ANALOG=m @@ -2272,7 +2354,7 @@ CONFIG_JOYSTICK_ZHENHUA=m CONFIG_JOYSTICK_DB9=m CONFIG_JOYSTICK_GAMECON=m CONFIG_JOYSTICK_TURBOGRAFX=m -# CONFIG_JOYSTICK_JOYDUMP is not set +CONFIG_JOYSTICK_JOYDUMP=m CONFIG_JOYSTICK_XPAD=m CONFIG_JOYSTICK_XPAD_FF=y CONFIG_JOYSTICK_XPAD_LEDS=y @@ -2285,10 +2367,10 @@ CONFIG_TABLET_USB_KBTAB=m CONFIG_TABLET_USB_WACOM=m CONFIG_INPUT_TOUCHSCREEN=y CONFIG_TOUCHSCREEN_ADS7846=m -# CONFIG_TOUCHSCREEN_AD7877 is not set -# CONFIG_TOUCHSCREEN_AD7879_I2C is not set -# CONFIG_TOUCHSCREEN_AD7879_SPI is not set -# CONFIG_TOUCHSCREEN_AD7879 is not set +CONFIG_TOUCHSCREEN_AD7877=m +CONFIG_TOUCHSCREEN_AD7879_I2C=m +CONFIG_TOUCHSCREEN_AD7879=m +CONFIG_TOUCHSCREEN_DYNAPRO=m CONFIG_TOUCHSCREEN_EETI=m CONFIG_TOUCHSCREEN_FUJITSU=m CONFIG_TOUCHSCREEN_GUNZE=m @@ -2296,17 +2378,18 @@ CONFIG_TOUCHSCREEN_ELO=m CONFIG_TOUCHSCREEN_WACOM_W8001=m CONFIG_TOUCHSCREEN_MCS5000=m CONFIG_TOUCHSCREEN_MTOUCH=m -# CONFIG_TOUCHSCREEN_INEXIO is not set +CONFIG_TOUCHSCREEN_INEXIO=m CONFIG_TOUCHSCREEN_MK712=m CONFIG_TOUCHSCREEN_PENMOUNT=m CONFIG_TOUCHSCREEN_TOUCHRIGHT=m CONFIG_TOUCHSCREEN_TOUCHWIN=m -# CONFIG_TOUCHSCREEN_UCB1400 is not set +CONFIG_TOUCHSCREEN_UCB1400=m CONFIG_TOUCHSCREEN_WM97XX=m CONFIG_TOUCHSCREEN_WM9705=y CONFIG_TOUCHSCREEN_WM9712=y CONFIG_TOUCHSCREEN_WM9713=y CONFIG_TOUCHSCREEN_USB_COMPOSITE=m +CONFIG_TOUCHSCREEN_MC13783=m CONFIG_TOUCHSCREEN_USB_EGALAX=y CONFIG_TOUCHSCREEN_USB_PANJIT=y CONFIG_TOUCHSCREEN_USB_3M=y @@ -2320,11 +2403,13 @@ CONFIG_TOUCHSCREEN_USB_GENERAL_TOUCH=y CONFIG_TOUCHSCREEN_USB_GOTOP=y CONFIG_TOUCHSCREEN_USB_JASTEC=y CONFIG_TOUCHSCREEN_USB_E2I=y -# CONFIG_TOUCHSCREEN_TOUCHIT213 is not set +CONFIG_TOUCHSCREEN_USB_ZYTRONIC=y +CONFIG_TOUCHSCREEN_USB_ETT_TC5UH=y +CONFIG_TOUCHSCREEN_TOUCHIT213=m CONFIG_TOUCHSCREEN_TSC2007=m CONFIG_INPUT_MISC=y CONFIG_INPUT_PCSPKR=m -# CONFIG_INPUT_APANEL is not set +CONFIG_INPUT_APANEL=m CONFIG_INPUT_ATLAS_BTNS=m CONFIG_INPUT_ATI_REMOTE=m CONFIG_INPUT_ATI_REMOTE2=m @@ -2335,8 +2420,7 @@ CONFIG_INPUT_CM109=m CONFIG_INPUT_UINPUT=m CONFIG_INPUT_WINBOND_CIR=m CONFIG_INPUT_PCF50633_PMU=m -# CONFIG_INPUT_GPIO_ROTARY_ENCODER is not set -CONFIG_INPUT_WM831X_ON=m +CONFIG_INPUT_GPIO_ROTARY_ENCODER=m # # Hardware I/O ports @@ -2348,7 +2432,8 @@ CONFIG_SERIO_CT82C710=m CONFIG_SERIO_PARKBD=m CONFIG_SERIO_PCIPS2=m CONFIG_SERIO_LIBPS2=y -# CONFIG_SERIO_RAW is not set +CONFIG_SERIO_RAW=m +CONFIG_SERIO_ALTERA_PS2=m CONFIG_GAMEPORT=m CONFIG_GAMEPORT_NS558=m CONFIG_GAMEPORT_L4=m @@ -2404,7 +2489,7 @@ CONFIG_SERIAL_8250_RSA=y # # Non-8250 serial port support # -# CONFIG_SERIAL_MAX3100 is not set +CONFIG_SERIAL_MAX3100=m CONFIG_SERIAL_CORE=y CONFIG_SERIAL_CORE_CONSOLE=y CONFIG_SERIAL_JSM=m @@ -2424,7 +2509,7 @@ CONFIG_IPMI_SI=m CONFIG_IPMI_WATCHDOG=m CONFIG_IPMI_POWEROFF=m CONFIG_HW_RANDOM=y -# CONFIG_HW_RANDOM_TIMERIOMEM is not set +CONFIG_HW_RANDOM_TIMERIOMEM=m CONFIG_HW_RANDOM_INTEL=m CONFIG_HW_RANDOM_AMD=m CONFIG_HW_RANDOM_VIA=m @@ -2495,7 +2580,7 @@ CONFIG_I2C_SCMI=m # # I2C system bus drivers (mostly embedded / system-on-chip) # -# CONFIG_I2C_GPIO is not set +CONFIG_I2C_GPIO=m CONFIG_I2C_OCORES=m CONFIG_I2C_SIMTEC=m @@ -2508,11 +2593,6 @@ CONFIG_I2C_TAOS_EVM=m CONFIG_I2C_TINY_USB=m # -# Graphics adapter I2C/DDC channel drivers -# -CONFIG_I2C_VOODOO3=m - -# # Other I2C/SMBus bus drivers # CONFIG_I2C_PCA_PLATFORM=m @@ -2521,7 +2601,6 @@ CONFIG_I2C_PCA_PLATFORM=m # # Miscellaneous I2C Chip support # -CONFIG_DS1682=m CONFIG_SENSORS_TSL2550=m # CONFIG_I2C_DEBUG_CORE is not set # CONFIG_I2C_DEBUG_ALGO is not set @@ -2538,6 +2617,9 @@ CONFIG_SPI_BITBANG=m # CONFIG_SPI_BUTTERFLY is not set CONFIG_SPI_GPIO=m # CONFIG_SPI_LM70_LLP is not set +CONFIG_SPI_XILINX=m +CONFIG_SPI_XILINX_PLTFM=m +# CONFIG_SPI_DESIGNWARE is not set # # SPI Protocol Masters @@ -2548,7 +2630,8 @@ CONFIG_SPI_TLE62X0=m # # PPS support # -# CONFIG_PPS is not set +CONFIG_PPS=m +# CONFIG_PPS_DEBUG is not set CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y CONFIG_GPIOLIB=y # CONFIG_DEBUG_GPIO is not set @@ -2564,11 +2647,12 @@ CONFIG_GPIO_SYSFS=y CONFIG_GPIO_MAX732X=m CONFIG_GPIO_PCA953X=m CONFIG_GPIO_PCF857X=m -CONFIG_GPIO_WM831X=m +CONFIG_GPIO_ADP5588=m # # PCI GPIO expanders: # +CONFIG_GPIO_CS5535=m # CONFIG_GPIO_LANGWELL is not set # @@ -2591,7 +2675,7 @@ CONFIG_W1_CON=y CONFIG_W1_MASTER_MATROX=m CONFIG_W1_MASTER_DS2490=m CONFIG_W1_MASTER_DS2482=m -# CONFIG_W1_MASTER_GPIO is not set +CONFIG_W1_MASTER_GPIO=m # # 1-wire Slaves @@ -2606,7 +2690,6 @@ CONFIG_W1_SLAVE_BQ27000=m CONFIG_POWER_SUPPLY=y # CONFIG_POWER_SUPPLY_DEBUG is not set CONFIG_PDA_POWER=m -CONFIG_WM831X_POWER=m CONFIG_WM8350_POWER=m CONFIG_BATTERY_DS2760=m CONFIG_BATTERY_DS2782=m @@ -2636,6 +2719,7 @@ CONFIG_SENSORS_ADT7470=m CONFIG_SENSORS_ADT7473=m CONFIG_SENSORS_ADT7475=m CONFIG_SENSORS_K8TEMP=m +CONFIG_SENSORS_K10TEMP=m CONFIG_SENSORS_ASB100=m CONFIG_SENSORS_ATXP1=m CONFIG_SENSORS_DS1621=m @@ -2644,7 +2728,7 @@ CONFIG_SENSORS_F71805F=m CONFIG_SENSORS_F71882FG=m CONFIG_SENSORS_F75375S=m CONFIG_SENSORS_FSCHMD=m -# CONFIG_SENSORS_G760A is not set +CONFIG_SENSORS_G760A=m CONFIG_SENSORS_GL518SM=m CONFIG_SENSORS_GL520SM=m CONFIG_SENSORS_CORETEMP=m @@ -2653,6 +2737,7 @@ CONFIG_SENSORS_IBMPEX=m CONFIG_SENSORS_IT87=m CONFIG_SENSORS_LM63=m CONFIG_SENSORS_LM70=m +CONFIG_SENSORS_LM73=m CONFIG_SENSORS_LM75=m CONFIG_SENSORS_LM77=m CONFIG_SENSORS_LM78=m @@ -2663,25 +2748,27 @@ CONFIG_SENSORS_LM87=m CONFIG_SENSORS_LM90=m CONFIG_SENSORS_LM92=m CONFIG_SENSORS_LM93=m -# CONFIG_SENSORS_LTC4215 is not set +CONFIG_SENSORS_LTC4215=m CONFIG_SENSORS_LTC4245=m -# CONFIG_SENSORS_LM95241 is not set +CONFIG_SENSORS_LM95241=m CONFIG_SENSORS_MAX1111=m CONFIG_SENSORS_MAX1619=m CONFIG_SENSORS_MAX6650=m CONFIG_SENSORS_PC87360=m CONFIG_SENSORS_PC87427=m CONFIG_SENSORS_PCF8591=m -# CONFIG_SENSORS_SHT15 is not set +CONFIG_SENSORS_SHT15=m CONFIG_SENSORS_SIS5595=m CONFIG_SENSORS_DME1737=m CONFIG_SENSORS_SMSC47M1=m CONFIG_SENSORS_SMSC47M192=m CONFIG_SENSORS_SMSC47B397=m CONFIG_SENSORS_ADS7828=m +CONFIG_SENSORS_AMC6821=m CONFIG_SENSORS_THMC50=m CONFIG_SENSORS_TMP401=m CONFIG_SENSORS_TMP421=m +CONFIG_SENSORS_VIA_CPUTEMP=m CONFIG_SENSORS_VIA686A=m CONFIG_SENSORS_VT1211=m CONFIG_SENSORS_VT8231=m @@ -2693,15 +2780,16 @@ CONFIG_SENSORS_W83L785TS=m CONFIG_SENSORS_W83L786NG=m CONFIG_SENSORS_W83627HF=m CONFIG_SENSORS_W83627EHF=m -CONFIG_SENSORS_WM831X=m CONFIG_SENSORS_WM8350=m CONFIG_SENSORS_HDAPS=m +CONFIG_SENSORS_LIS3_I2C=m CONFIG_SENSORS_APPLESMC=m +CONFIG_SENSORS_MC13783_ADC=m # # ACPI drivers # -# CONFIG_SENSORS_ATK0110 is not set +CONFIG_SENSORS_ATK0110=m CONFIG_SENSORS_LIS3LV02D=m CONFIG_THERMAL=y CONFIG_THERMAL_HWMON=y @@ -2712,12 +2800,12 @@ CONFIG_WATCHDOG=y # Watchdog Device Drivers # CONFIG_SOFT_WATCHDOG=m -CONFIG_WM831X_WATCHDOG=m CONFIG_WM8350_WATCHDOG=m CONFIG_ACQUIRE_WDT=m CONFIG_ADVANTECH_WDT=m CONFIG_ALIM1535_WDT=m CONFIG_ALIM7101_WDT=m +CONFIG_GEODE_WDT=m CONFIG_SC520_WDT=m CONFIG_SBC_FITPC2_WATCHDOG=m CONFIG_EUROTECH_WDT=m @@ -2782,10 +2870,9 @@ CONFIG_MFD_SM501=m CONFIG_MFD_SM501_GPIO=y CONFIG_HTC_PASIC3=m CONFIG_UCB1400_CORE=m -# CONFIG_TPS65010 is not set +CONFIG_TPS65010=m # CONFIG_MFD_TMIO is not set CONFIG_MFD_WM8400=m -CONFIG_MFD_WM831X=m CONFIG_MFD_WM8350=m CONFIG_MFD_WM8350_I2C=m CONFIG_MFD_PCF50633=m @@ -2795,14 +2882,15 @@ CONFIG_PCF50633_GPIO=m CONFIG_AB3100_CORE=m CONFIG_AB3100_OTP=m # CONFIG_EZX_PCAP is not set +CONFIG_AB4500_CORE=m CONFIG_REGULATOR=y # CONFIG_REGULATOR_DEBUG is not set -# CONFIG_REGULATOR_FIXED_VOLTAGE is not set +CONFIG_REGULATOR_FIXED_VOLTAGE=m CONFIG_REGULATOR_VIRTUAL_CONSUMER=m CONFIG_REGULATOR_USERSPACE_CONSUMER=m CONFIG_REGULATOR_BQ24022=m CONFIG_REGULATOR_MAX1586=m -# CONFIG_REGULATOR_WM831X is not set +CONFIG_REGULATOR_MAX8660=m CONFIG_REGULATOR_WM8350=m CONFIG_REGULATOR_WM8400=m CONFIG_REGULATOR_PCF50633=m @@ -2828,6 +2916,8 @@ CONFIG_VIDEO_MEDIA=m # CONFIG_VIDEO_SAA7146=m CONFIG_VIDEO_SAA7146_VV=m +CONFIG_IR_CORE=m +CONFIG_VIDEO_IR=m # CONFIG_MEDIA_ATTACH is not set CONFIG_MEDIA_TUNER=m # CONFIG_MEDIA_TUNER_CUSTOMISE is not set @@ -2848,6 +2938,7 @@ CONFIG_MEDIA_TUNER_XC5000=m CONFIG_MEDIA_TUNER_MXL5005S=m CONFIG_MEDIA_TUNER_MXL5007T=m CONFIG_MEDIA_TUNER_MC44S803=m +CONFIG_MEDIA_TUNER_MAX2165=m CONFIG_VIDEO_V4L2=m CONFIG_VIDEO_V4L1=m CONFIG_VIDEOBUF_GEN=m @@ -2855,7 +2946,6 @@ CONFIG_VIDEOBUF_DMA_SG=m CONFIG_VIDEOBUF_VMALLOC=m CONFIG_VIDEOBUF_DVB=m CONFIG_VIDEO_BTCX=m -CONFIG_VIDEO_IR=m CONFIG_VIDEO_TVEEPROM=m CONFIG_VIDEO_TUNER=m CONFIG_VIDEO_CAPTURE_DRIVERS=y @@ -2940,10 +3030,13 @@ CONFIG_SOC_CAMERA=m CONFIG_SOC_CAMERA_MT9M001=m CONFIG_SOC_CAMERA_MT9M111=m CONFIG_SOC_CAMERA_MT9T031=m +CONFIG_SOC_CAMERA_MT9T112=m CONFIG_SOC_CAMERA_MT9V022=m +CONFIG_SOC_CAMERA_RJ54N1=m CONFIG_SOC_CAMERA_TW9910=m CONFIG_SOC_CAMERA_PLATFORM=m CONFIG_SOC_CAMERA_OV772X=m +CONFIG_SOC_CAMERA_OV9640=m CONFIG_V4L_USB_DRIVERS=y CONFIG_USB_VIDEO_CLASS=m CONFIG_USB_VIDEO_CLASS_INPUT_EVDEV=y @@ -2960,6 +3053,7 @@ CONFIG_USB_GSPCA_MARS=m CONFIG_USB_GSPCA_OV519=m CONFIG_USB_GSPCA_OV534=m CONFIG_USB_GSPCA_PAC207=m +CONFIG_USB_GSPCA_PAC7302=m CONFIG_USB_GSPCA_PAC7311=m CONFIG_USB_GSPCA_SN9C20X=m # CONFIG_USB_GSPCA_SN9C20X_EVDEV is not set @@ -2974,6 +3068,7 @@ CONFIG_USB_GSPCA_SPCA561=m # CONFIG_USB_GSPCA_SQ905 is not set # CONFIG_USB_GSPCA_SQ905C is not set CONFIG_USB_GSPCA_STK014=m +CONFIG_USB_GSPCA_STV0680=m CONFIG_USB_GSPCA_SUNPLUS=m CONFIG_USB_GSPCA_T613=m CONFIG_USB_GSPCA_TV8532=m @@ -3018,6 +3113,7 @@ CONFIG_USB_DSBR=m # CONFIG_RADIO_SI470X is not set CONFIG_USB_MR800=m CONFIG_RADIO_TEA5764=m +CONFIG_RADIO_TEF6862=m CONFIG_DVB_MAX_ADAPTERS=8 # CONFIG_DVB_DYNAMIC_MINORS is not set CONFIG_DVB_CAPTURE_DRIVERS=y @@ -3064,8 +3160,9 @@ CONFIG_DVB_USB_CINERGY_T2=m CONFIG_DVB_USB_ANYSEE=m CONFIG_DVB_USB_DTV5100=m CONFIG_DVB_USB_AF9015=m -# CONFIG_DVB_USB_CE6230 is not set -# CONFIG_DVB_USB_FRIIO is not set +CONFIG_DVB_USB_CE6230=m +CONFIG_DVB_USB_FRIIO=m +CONFIG_DVB_USB_EC168=m CONFIG_DVB_TTUSB_BUDGET=m CONFIG_DVB_TTUSB_DEC=m CONFIG_SMS_SIANO_MDTV=m @@ -3103,6 +3200,7 @@ CONFIG_DVB_DM1105=m # Supported FireWire (IEEE 1394) Adapters # CONFIG_DVB_FIREDTV=m +CONFIG_DVB_FIREDTV_FIREWIRE=y CONFIG_DVB_FIREDTV_IEEE1394=y CONFIG_DVB_FIREDTV_INPUT=y @@ -3112,6 +3210,13 @@ CONFIG_DVB_FIREDTV_INPUT=y CONFIG_DVB_PT1=m # +# Supported Mantis Adapters +# +CONFIG_MANTIS_CORE=m +CONFIG_DVB_MANTIS=m +CONFIG_DVB_HOPPER=m + +# # Supported DVB Frontends # # CONFIG_DVB_FE_CUSTOMISE is not set @@ -3138,6 +3243,8 @@ CONFIG_DVB_TDA826X=m CONFIG_DVB_TUA6100=m CONFIG_DVB_CX24116=m CONFIG_DVB_SI21XX=m +CONFIG_DVB_DS3000=m +CONFIG_DVB_MB86A16=m CONFIG_DVB_SP8870=m CONFIG_DVB_SP887X=m CONFIG_DVB_CX22700=m @@ -3153,6 +3260,7 @@ CONFIG_DVB_DIB7000M=m CONFIG_DVB_DIB7000P=m CONFIG_DVB_TDA10048=m CONFIG_DVB_AF9013=m +CONFIG_DVB_EC100=m CONFIG_DVB_VES1820=m CONFIG_DVB_TDA10021=m CONFIG_DVB_TDA10023=m @@ -3172,7 +3280,8 @@ CONFIG_DVB_TUNER_DIB0070=m CONFIG_DVB_LNBP21=m CONFIG_DVB_ISL6405=m CONFIG_DVB_ISL6421=m -CONFIG_DVB_LGS8GL5=m +CONFIG_DVB_LGS8GXX=m +CONFIG_DVB_ATBM8830=m CONFIG_DAB=y CONFIG_USB_DABUSB=m @@ -3191,6 +3300,7 @@ CONFIG_DRM_TTM=m CONFIG_DRM_TDFX=m CONFIG_DRM_R128=m CONFIG_DRM_RADEON=m +CONFIG_DRM_RADEON_KMS=y CONFIG_DRM_I810=m CONFIG_DRM_I830=m CONFIG_DRM_I915=m @@ -3214,6 +3324,7 @@ CONFIG_FB_SYS_COPYAREA=m CONFIG_FB_SYS_IMAGEBLIT=m # CONFIG_FB_FOREIGN_ENDIAN is not set CONFIG_FB_SYS_FOPS=m +CONFIG_FB_DEFERRED_IO=y CONFIG_FB_SVGALIB=m # CONFIG_FB_MACMODES is not set CONFIG_FB_BACKLIGHT=y @@ -3292,7 +3403,6 @@ CONFIG_BACKLIGHT_PROGEAR=m CONFIG_BACKLIGHT_CARILLO_RANCH=m CONFIG_BACKLIGHT_MBP_NVIDIA=m CONFIG_BACKLIGHT_SAHARA=m -CONFIG_BACKLIGHT_WM831X=m # # Display device support @@ -3407,8 +3517,8 @@ CONFIG_SND_ECHO3G=m CONFIG_SND_INDIGO=m CONFIG_SND_INDIGOIO=m CONFIG_SND_INDIGODJ=m -# CONFIG_SND_INDIGOIOX is not set -# CONFIG_SND_INDIGODJX is not set +CONFIG_SND_INDIGOIOX=m +CONFIG_SND_INDIGODJX=m CONFIG_SND_EMU10K1=m CONFIG_SND_EMU10K1X=m CONFIG_SND_ENS1370=m @@ -3532,7 +3642,7 @@ CONFIG_USB_ARCH_HAS_OHCI=y CONFIG_USB_ARCH_HAS_EHCI=y CONFIG_USB=y # CONFIG_USB_DEBUG is not set -# CONFIG_USB_ANNOUNCE_NEW_DEVICES is not set +CONFIG_USB_ANNOUNCE_NEW_DEVICES=y # # Miscellaneous USB options @@ -3740,10 +3850,14 @@ CONFIG_USB_ETH=m CONFIG_USB_GADGETFS=m CONFIG_USB_FILE_STORAGE=m # CONFIG_USB_FILE_STORAGE_TEST is not set +CONFIG_USB_MASS_STORAGE=m CONFIG_USB_G_SERIAL=m CONFIG_USB_MIDI_GADGET=m CONFIG_USB_G_PRINTER=m CONFIG_USB_CDC_COMPOSITE=m +CONFIG_USB_G_MULTI=m +CONFIG_USB_G_MULTI_RNDIS=y +# CONFIG_USB_G_MULTI_CDC is not set # # OTG and related infrastructure @@ -3805,15 +3919,18 @@ CONFIG_LEDS_CLASS=m # LED drivers # CONFIG_LEDS_ALIX2=m -# CONFIG_LEDS_PCA9532 is not set -# CONFIG_LEDS_GPIO is not set +CONFIG_LEDS_PCA9532=m +CONFIG_LEDS_GPIO=m +CONFIG_LEDS_GPIO_PLATFORM=y CONFIG_LEDS_LP3944=m -# CONFIG_LEDS_CLEVO_MAIL is not set -# CONFIG_LEDS_PCA955X is not set -CONFIG_LEDS_WM831X_STATUS=m +CONFIG_LEDS_CLEVO_MAIL=m +CONFIG_LEDS_PCA955X=m CONFIG_LEDS_WM8350=m -# CONFIG_LEDS_DAC124S085 is not set -# CONFIG_LEDS_BD2802 is not set +CONFIG_LEDS_DAC124S085=m +CONFIG_LEDS_REGULATOR=m +CONFIG_LEDS_BD2802=m +CONFIG_LEDS_INTEL_SS4200=m +CONFIG_LEDS_LT3593=m # # LED Triggers @@ -3823,13 +3940,14 @@ CONFIG_LEDS_TRIGGER_TIMER=m CONFIG_LEDS_TRIGGER_IDE_DISK=y CONFIG_LEDS_TRIGGER_HEARTBEAT=m CONFIG_LEDS_TRIGGER_BACKLIGHT=m -# CONFIG_LEDS_TRIGGER_GPIO is not set +CONFIG_LEDS_TRIGGER_GPIO=m CONFIG_LEDS_TRIGGER_DEFAULT_ON=m # # iptables trigger is under Netfilter config (LED target) # -# CONFIG_ACCESSIBILITY is not set +CONFIG_ACCESSIBILITY=y +CONFIG_A11Y_BRAILLE_CONSOLE=y CONFIG_INFINIBAND=m CONFIG_INFINIBAND_USER_MAD=m CONFIG_INFINIBAND_USER_ACCESS=m @@ -3850,7 +3968,24 @@ CONFIG_INFINIBAND_IPOIB_DEBUG=y # CONFIG_INFINIBAND_IPOIB_DEBUG_DATA is not set CONFIG_INFINIBAND_SRP=m CONFIG_INFINIBAND_ISER=m -# CONFIG_EDAC is not set +CONFIG_EDAC=y + +# +# Reporting subsystems +# +# CONFIG_EDAC_DEBUG is not set +CONFIG_EDAC_DECODE_MCE=m +CONFIG_EDAC_MM_EDAC=m +CONFIG_EDAC_AMD64=m +# CONFIG_EDAC_AMD64_ERROR_INJECTION is not set +CONFIG_EDAC_E752X=m +CONFIG_EDAC_I82975X=m +CONFIG_EDAC_I3000=m +CONFIG_EDAC_I3200=m +CONFIG_EDAC_X38=m +CONFIG_EDAC_I5400=m +CONFIG_EDAC_I5000=m +CONFIG_EDAC_I5100=m CONFIG_RTC_LIB=y CONFIG_RTC_CLASS=y CONFIG_RTC_HCTOSYS=y @@ -3880,6 +4015,7 @@ CONFIG_RTC_DRV_PCF8563=m CONFIG_RTC_DRV_PCF8583=m CONFIG_RTC_DRV_M41T80=m CONFIG_RTC_DRV_M41T80_WDT=y +CONFIG_RTC_DRV_BQ32K=m CONFIG_RTC_DRV_S35390A=m CONFIG_RTC_DRV_FM3130=m CONFIG_RTC_DRV_RX8581=m @@ -3888,8 +4024,8 @@ CONFIG_RTC_DRV_RX8025=m # # SPI RTC drivers # -# CONFIG_RTC_DRV_M41T94 is not set -# CONFIG_RTC_DRV_DS1305 is not set +CONFIG_RTC_DRV_M41T94=m +CONFIG_RTC_DRV_DS1305=m CONFIG_RTC_DRV_DS1390=m CONFIG_RTC_DRV_MAX6902=m CONFIG_RTC_DRV_R9701=m @@ -3909,9 +4045,10 @@ CONFIG_RTC_DRV_STK17TA8=m CONFIG_RTC_DRV_M48T86=m CONFIG_RTC_DRV_M48T35=m CONFIG_RTC_DRV_M48T59=m +CONFIG_RTC_DRV_MSM6242=m CONFIG_RTC_DRV_BQ4802=m +CONFIG_RTC_DRV_RP5C01=m CONFIG_RTC_DRV_V3020=m -CONFIG_RTC_DRV_WM831X=m CONFIG_RTC_DRV_WM8350=m CONFIG_RTC_DRV_PCF50633=m CONFIG_RTC_DRV_AB3100=m @@ -3919,6 +4056,8 @@ CONFIG_RTC_DRV_AB3100=m # # on-CPU RTC drivers # +CONFIG_RTC_DRV_MC13783=m +CONFIG_CS5535_CLOCK_EVENT_SRC=m CONFIG_DMADEVICES=y # @@ -3980,7 +4119,6 @@ CONFIG_POCH=m CONFIG_OTUS=m CONFIG_RT2860=m CONFIG_RT2870=m -CONFIG_RT3090=m CONFIG_COMEDI=m # CONFIG_COMEDI_DEBUG is not set CONFIG_COMEDI_PCI_DRIVERS=m @@ -3992,17 +4130,14 @@ CONFIG_PANEL_PARPORT=0 CONFIG_PANEL_PROFILE=5 # CONFIG_PANEL_CHANGE_MESSAGE is not set CONFIG_ALTERA_PCIE_CHDMA=m -CONFIG_RTL8187SE=m +CONFIG_R8187SE=m CONFIG_RTL8192SU=m +CONFIG_RTL8192U=m CONFIG_RTL8192E=m CONFIG_INPUT_MIMIO=m CONFIG_TRANZPORT=m # -# Android -# - -# # Qualcomm MSM Camera And Video # @@ -4010,13 +4145,22 @@ CONFIG_TRANZPORT=m # Camera Sensor Selection # CONFIG_INPUT_GPIO=m -# CONFIG_DST is not set -# CONFIG_POHMELFS is not set -# CONFIG_B3DFG is not set -# CONFIG_IDE_PHISON is not set -# CONFIG_PLAN9AUTH is not set -# CONFIG_LINE6_USB is not set -CONFIG_DRM_RADEON_KMS=y +CONFIG_POHMELFS=m +# CONFIG_POHMELFS_DEBUG is not set +CONFIG_POHMELFS_CRYPTO=y +CONFIG_B3DFG=m +CONFIG_IDE_PHISON=m +CONFIG_PLAN9AUTH=m +CONFIG_LINE6_USB=m +CONFIG_DRM_VMWGFX=m +CONFIG_DRM_NOUVEAU=m +CONFIG_DRM_NOUVEAU_BACKLIGHT=y +# CONFIG_DRM_NOUVEAU_DEBUG is not set + +# +# I2C encoder or helper chips +# +CONFIG_DRM_I2C_CH7006=m CONFIG_USB_SERIAL_QUATECH2=m CONFIG_USB_SERIAL_QUATECH_USB2=m CONFIG_VT6655=m @@ -4058,20 +4202,32 @@ CONFIG_LIS3L02DQ=m # Analog to digital convertors # CONFIG_MAX1363=m +# CONFIG_MAX1363_RING_BUFFER is not set # # Light sensors # -CONFIG_TSL2561=m +CONFIG_SENSORS_TSL2563=m # # Triggers - standalone # +CONFIG_RAMZSWAP=m +CONFIG_RAMZSWAP_STATS=y +CONFIG_BATMAN_ADV=m +# CONFIG_BATMAN_DEBUG is not set +CONFIG_SAMSUNG_LAPTOP=m +CONFIG_STRIP=m +CONFIG_PCMCIA_WAVELAN=m +CONFIG_PCMCIA_NETWAVE=m +CONFIG_FB_SM7XX=m +# CONFIG_FB_SM7XX_ACCEL is not set CONFIG_X86_PLATFORM_DEVICES=y CONFIG_ACER_WMI=m CONFIG_ACERHDF=m CONFIG_ASUS_LAPTOP=m -# CONFIG_DELL_WMI is not set +CONFIG_DELL_LAPTOP=m +CONFIG_DELL_WMI=m CONFIG_FUJITSU_LAPTOP=m # CONFIG_FUJITSU_LAPTOP_DEBUG is not set CONFIG_HP_WMI=m @@ -4081,6 +4237,7 @@ CONFIG_COMPAL_LAPTOP=m CONFIG_SONY_LAPTOP=m CONFIG_SONYPI_COMPAT=y CONFIG_THINKPAD_ACPI=m +CONFIG_THINKPAD_ACPI_ALSA_SUPPORT=y # CONFIG_THINKPAD_ACPI_DEBUGFACILITIES is not set # CONFIG_THINKPAD_ACPI_DEBUG is not set # CONFIG_THINKPAD_ACPI_UNSAFE_LEDS is not set @@ -4089,9 +4246,12 @@ CONFIG_THINKPAD_ACPI_HOTKEY_POLL=y CONFIG_INTEL_MENLOW=m CONFIG_EEEPC_LAPTOP=m CONFIG_ACPI_WMI=m +CONFIG_MSI_WMI=m CONFIG_ACPI_ASUS=m CONFIG_TOPSTAR_LAPTOP=m CONFIG_ACPI_TOSHIBA=m +CONFIG_TOSHIBA_BT_RFKILL=m +CONFIG_ACPI_CMPC=m # # Firmware Drivers @@ -4130,7 +4290,7 @@ CONFIG_JBD2_DEBUG=y CONFIG_FS_MBCACHE=y CONFIG_REISERFS_FS=y # CONFIG_REISERFS_CHECK is not set -# CONFIG_REISERFS_PROC_INFO is not set +CONFIG_REISERFS_PROC_INFO=y CONFIG_REISERFS_FS_XATTR=y CONFIG_REISERFS_FS_POSIX_ACL=y CONFIG_REISERFS_FS_SECURITY=y @@ -4153,7 +4313,6 @@ CONFIG_OCFS2_FS_USERSPACE_CLUSTER=m CONFIG_OCFS2_FS_STATS=y CONFIG_OCFS2_DEBUG_MASKLOG=y CONFIG_OCFS2_DEBUG_FS=y -CONFIG_OCFS2_FS_POSIX_ACL=y CONFIG_BTRFS_FS=m CONFIG_BTRFS_FS_POSIX_ACL=y # CONFIG_NILFS2_FS is not set @@ -4193,7 +4352,7 @@ CONFIG_UDF_NLS=y # DOS/FAT/NT Filesystems # CONFIG_FAT_FS=m -# CONFIG_MSDOS_FS is not set +CONFIG_MSDOS_FS=m CONFIG_VFAT_FS=m CONFIG_FAT_DEFAULT_CODEPAGE=437 CONFIG_FAT_DEFAULT_IOCHARSET="utf8" @@ -4262,32 +4421,36 @@ CONFIG_UFS_FS=m CONFIG_NETWORK_FILESYSTEMS=y CONFIG_NFS_FS=m CONFIG_NFS_V3=y -# CONFIG_NFS_V3_ACL is not set +CONFIG_NFS_V3_ACL=y CONFIG_NFS_V4=y # CONFIG_NFS_V4_1 is not set CONFIG_NFSD=m +CONFIG_NFSD_V2_ACL=y CONFIG_NFSD_V3=y -# CONFIG_NFSD_V3_ACL is not set +CONFIG_NFSD_V3_ACL=y CONFIG_NFSD_V4=y CONFIG_LOCKD=m CONFIG_LOCKD_V4=y CONFIG_EXPORTFS=y +CONFIG_NFS_ACL_SUPPORT=m CONFIG_NFS_COMMON=y CONFIG_SUNRPC=m CONFIG_SUNRPC_GSS=m CONFIG_SUNRPC_XPRT_RDMA=m CONFIG_RPCSEC_GSS_KRB5=m -# CONFIG_RPCSEC_GSS_SPKM3 is not set +CONFIG_RPCSEC_GSS_SPKM3=m CONFIG_SMB_FS=m # CONFIG_SMB_NLS_DEFAULT is not set CONFIG_CIFS=m -# CONFIG_CIFS_STATS is not set -# CONFIG_CIFS_WEAK_PW_HASH is not set -# CONFIG_CIFS_UPCALL is not set -# CONFIG_CIFS_XATTR is not set +CONFIG_CIFS_STATS=y +CONFIG_CIFS_STATS2=y +CONFIG_CIFS_WEAK_PW_HASH=y +CONFIG_CIFS_UPCALL=y +CONFIG_CIFS_XATTR=y +CONFIG_CIFS_POSIX=y # CONFIG_CIFS_DEBUG2 is not set -# CONFIG_CIFS_DFS_UPCALL is not set -# CONFIG_CIFS_EXPERIMENTAL is not set +CONFIG_CIFS_DFS_UPCALL=y +CONFIG_CIFS_EXPERIMENTAL=y CONFIG_NCP_FS=m CONFIG_NCPFS_PACKET_SIGNING=y CONFIG_NCPFS_IOCTL_LOCKING=y @@ -4318,12 +4481,12 @@ CONFIG_SOLARIS_X86_PARTITION=y # CONFIG_UNIXWARE_DISKLABEL is not set CONFIG_LDM_PARTITION=y # CONFIG_LDM_DEBUG is not set -# CONFIG_SGI_PARTITION is not set -# CONFIG_ULTRIX_PARTITION is not set -# CONFIG_SUN_PARTITION is not set -# CONFIG_KARMA_PARTITION is not set -# CONFIG_EFI_PARTITION is not set -# CONFIG_SYSV68_PARTITION is not set +CONFIG_SGI_PARTITION=y +CONFIG_ULTRIX_PARTITION=y +CONFIG_SUN_PARTITION=y +CONFIG_KARMA_PARTITION=y +CONFIG_EFI_PARTITION=y +CONFIG_SYSV68_PARTITION=y CONFIG_NLS=y CONFIG_NLS_DEFAULT="iso8859-1" CONFIG_NLS_CODEPAGE_437=m @@ -4390,7 +4553,6 @@ CONFIG_TIMER_STATS=y # CONFIG_DEBUG_OBJECTS is not set # CONFIG_SLUB_DEBUG_ON is not set CONFIG_SLUB_STATS=y -# CONFIG_DEBUG_KMEMLEAK is not set # CONFIG_DEBUG_PREEMPT is not set # CONFIG_DEBUG_RT_MUTEXES is not set # CONFIG_RT_MUTEX_TESTER is not set @@ -4453,6 +4615,7 @@ CONFIG_BRANCH_PROFILE_NONE=y # CONFIG_PROFILE_ANNOTATED_BRANCHES is not set # CONFIG_PROFILE_ALL_BRANCHES is not set # CONFIG_POWER_TRACER is not set +# CONFIG_KSYM_TRACER is not set # CONFIG_STACK_TRACER is not set # CONFIG_KMEMTRACE is not set # CONFIG_WORKQUEUE_TRACER is not set @@ -4493,6 +4656,7 @@ CONFIG_DEFAULT_IO_DELAY_TYPE=0 # CONFIG_DEBUG_BOOT_PARAMS is not set # CONFIG_CPA_DEBUG is not set # CONFIG_OPTIMIZE_INLINING is not set +# CONFIG_DEBUG_STRICT_USER_COPY_CHECKS is not set # # Security options @@ -4504,13 +4668,16 @@ CONFIG_SECURITYFS=y CONFIG_SECURITY_NETWORK=y # CONFIG_SECURITY_NETWORK_XFRM is not set # CONFIG_SECURITY_PATH is not set -# CONFIG_SECURITY_FILE_CAPABILITIES is not set -# CONFIG_SECURITY_ROOTPLUG is not set # CONFIG_INTEL_TXT is not set # CONFIG_SECURITY_SELINUX is not set # CONFIG_SECURITY_SMACK is not set # CONFIG_SECURITY_TOMOYO is not set # CONFIG_IMA is not set +# CONFIG_DEFAULT_SECURITY_SELINUX is not set +# CONFIG_DEFAULT_SECURITY_SMACK is not set +# CONFIG_DEFAULT_SECURITY_TOMOYO is not set +CONFIG_DEFAULT_SECURITY_DAC=y +CONFIG_DEFAULT_SECURITY="" CONFIG_XOR_BLOCKS=y CONFIG_ASYNC_CORE=y CONFIG_ASYNC_MEMCPY=y @@ -4562,6 +4729,7 @@ CONFIG_CRYPTO_ECB=m CONFIG_CRYPTO_LRW=m CONFIG_CRYPTO_PCBC=m CONFIG_CRYPTO_XTS=m +CONFIG_CRYPTO_FPU=m # # Hash modes @@ -4588,13 +4756,14 @@ CONFIG_CRYPTO_SHA256=m CONFIG_CRYPTO_SHA512=m CONFIG_CRYPTO_TGR192=m CONFIG_CRYPTO_WP512=m +CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL=m # # Ciphers # CONFIG_CRYPTO_AES=m CONFIG_CRYPTO_AES_X86_64=m -# CONFIG_CRYPTO_AES_NI_INTEL is not set +CONFIG_CRYPTO_AES_NI_INTEL=m CONFIG_CRYPTO_ANUBIS=m CONFIG_CRYPTO_ARC4=m CONFIG_CRYPTO_BLOWFISH=m @@ -4617,7 +4786,7 @@ CONFIG_CRYPTO_TWOFISH_X86_64=m # Compression # CONFIG_CRYPTO_DEFLATE=m -# CONFIG_CRYPTO_ZLIB is not set +CONFIG_CRYPTO_ZLIB=m CONFIG_CRYPTO_LZO=m # @@ -4661,10 +4830,11 @@ CONFIG_LIBCRC32C=m CONFIG_ZLIB_INFLATE=y CONFIG_ZLIB_DEFLATE=m CONFIG_LZO_COMPRESS=m -CONFIG_LZO_DECOMPRESS=m +CONFIG_LZO_DECOMPRESS=y CONFIG_DECOMPRESS_GZIP=y CONFIG_DECOMPRESS_BZIP2=y CONFIG_DECOMPRESS_LZMA=y +CONFIG_DECOMPRESS_LZO=y CONFIG_GENERIC_ALLOCATOR=y CONFIG_REED_SOLOMON=m CONFIG_REED_SOLOMON_DEC16=y @@ -4677,3 +4847,4 @@ CONFIG_HAS_IOPORT=y CONFIG_HAS_DMA=y CONFIG_CHECK_SIGNATURE=y CONFIG_NLATTR=y +CONFIG_LRU_CACHE=m diff --git a/source/include/kernel-version.sh b/source/include/kernel-version.sh index 1b9d882..b2ca2f3 100644 --- a/source/include/kernel-version.sh +++ b/source/include/kernel-version.sh @@ -15,6 +15,6 @@ # * _F_kernelver_rel: the kernel release # * _F_kernelver_stable: the number of the -stable patch to use (if any) ### -_F_kernelver_ver=2.6.32 -_F_kernelver_rel=3 -_F_kernelver_stable=8 +_F_kernelver_ver=2.6.33 +_F_kernelver_rel=1 +_F_kernelver_stable= From vmiklos at frugalware.org Fri Mar 12 13:10:47 2010 From: vmiklos at frugalware.org (Miklos Vajna) Date: Fri, 12 Mar 2010 13:10:47 +0100 (CET) Subject: [Frugalware-git] frugalware-current: lvm2-2.02.62-1-i686 Message-ID: <20100312121047.2A27720E0002@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=24c626f688752247a29a101191309f8a4f7a9778 commit 24c626f688752247a29a101191309f8a4f7a9778 Author: Miklos Vajna Date: Fri Mar 12 13:10:07 2010 +0100 lvm2-2.02.62-1-i686 - version bump diff --git a/source/apps/lvm2/FrugalBuild b/source/apps/lvm2/FrugalBuild index 962f682..d0e85be 100644 --- a/source/apps/lvm2/FrugalBuild +++ b/source/apps/lvm2/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: Miklos Vajna pkgname=lvm2 -pkgver=2.02.61 +pkgver=2.02.62 pkgrel=1 pkgdesc="Logical Volume Manager 2 utilities" url="http://sources.redhat.com/lvm2/" From vmiklos at frugalware.org Fri Mar 12 13:19:05 2010 From: vmiklos at frugalware.org (Miklos Vajna) Date: Fri, 12 Mar 2010 13:19:05 +0100 (CET) Subject: [Frugalware-git] kernel2633: bcmwl-5.60.48.36-3-i686 Message-ID: <20100312121905.3A28220E0002@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=kernel2633.git;a=commitdiff;h=7685aa27b22aae6c494fb71bdd268438c47e33f2 commit 7685aa27b22aae6c494fb71bdd268438c47e33f2 Author: Miklos Vajna Date: Fri Mar 12 13:18:52 2010 +0100 bcmwl-5.60.48.36-3-i686 - patched for 2.6.33 diff --git a/source/network-extra/bcmwl/FrugalBuild b/source/network-extra/bcmwl/FrugalBuild index 7c59d03..9fb94d2 100644 --- a/source/network-extra/bcmwl/FrugalBuild +++ b/source/network-extra/bcmwl/FrugalBuild @@ -3,7 +3,7 @@ pkgname=bcmwl pkgver=5.60.48.36 -pkgrel=2 +pkgrel=3 pkgdesc="Broadcom 802.11 Linux STA wireless driver" url="http://www.broadcom.com/support/802.11/linux_sta.php" Finclude kernel-module @@ -25,6 +25,7 @@ source=(http://www.broadcom.com/docs/linux_sta/hybrid-portsrc-$_arch-v$pkgver.ta build() { Fpatchall + Fsed '#include ' '#include ' src/include/linuxver.h make -C /lib/modules/$_F_kernelmod_uname/build M=`pwd` || Fdie Ffilerel /lib/modules/$_F_kernelmod_uname/kernel/drivers/net/wireless/wl.ko Fbuild_kernelmod_scriptlet From ryuo at frugalware.org Fri Mar 12 14:22:15 2010 From: ryuo at frugalware.org (James Buren) Date: Fri, 12 Mar 2010 14:22:15 +0100 (CET) Subject: [Frugalware-git] frugalware-current: codelite-2.3.0.3833-1-i686 * version bump Message-ID: <20100312132215.76B0A20E0002@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=848b2c3dadfbdcecee6fbe19fc9b2db21bcdc48e commit 848b2c3dadfbdcecee6fbe19fc9b2db21bcdc48e Author: James Buren Date: Fri Mar 12 07:18:12 2010 -0600 codelite-2.3.0.3833-1-i686 * version bump diff --git a/source/xapps-extra/codelite/FrugalBuild b/source/xapps-extra/codelite/FrugalBuild index fa64f8d..963551b 100644 --- a/source/xapps-extra/codelite/FrugalBuild +++ b/source/xapps-extra/codelite/FrugalBuild @@ -2,14 +2,14 @@ # Maintainer: James Buren pkgname=codelite -pkgver=2.2.0.3681 +pkgver=2.3.0.3833 pkgrel=1 pkgdesc="IDE for C/C++ languages." Finclude sourceforge depends=('wxgtk-u8') groups=('xapps-extra') archs=('i686') -sha1sums=('3a20ddbebfec410a74328bb95565f70baf0370bc') +sha1sums=('b6832699166451a96b79c9542233a7b16e5ebedb') unset MAKEFLAGS build() { From crazy at frugalware.org Fri Mar 12 17:49:59 2010 From: crazy at frugalware.org (crazy) Date: Fri, 12 Mar 2010 17:49:59 +0100 (CET) Subject: [Frugalware-git] frugalware-current: xen-3.0.4-1-x86_64 * add nobuild to xen .. * xen is broken forever .. it makedepends on xen0 kernels * which gone a long time ago.. Message-ID: <20100312164959.402F520E0002@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=9314816285117e90a5ec17525537c1c3b50afb1b commit 9314816285117e90a5ec17525537c1c3b50afb1b Author: crazy Date: Fri Mar 12 18:50:04 2010 +0100 xen-3.0.4-1-x86_64 * add nobuild to xen .. * xen is broken forever .. it makedepends on xen0 kernels * which gone a long time ago.. diff --git a/source/xapps-extra/xen/FrugalBuild b/source/xapps-extra/xen/FrugalBuild index 7ca91c2..1a7819f 100644 --- a/source/xapps-extra/xen/FrugalBuild +++ b/source/xapps-extra/xen/FrugalBuild @@ -48,6 +48,8 @@ sha1sums=('7ca5af70996215229e143c7563e69b3719284a95' \ unset MAKEFLAGS unset LDFLAGS +options=('nobuild') + build() { Fcd $pkgname-${pkgver}_1-src From crazy at frugalware.org Fri Mar 12 18:37:02 2010 From: crazy at frugalware.org (crazy) Date: Fri, 12 Mar 2010 18:37:02 +0100 (CET) Subject: [Frugalware-git] frugalware-current: libvirt-0.7.7-2-x86_64 * remove xen from here Message-ID: <20100312173702.09F2620E0002@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=0a71b56488d4fac7f33e1e988b5ceb5e180b1b46 commit 0a71b56488d4fac7f33e1e988b5ceb5e180b1b46 Author: crazy Date: Fri Mar 12 19:22:51 2010 +0100 libvirt-0.7.7-2-x86_64 * remove xen from here diff --git a/source/xlib-extra/libvirt/FrugalBuild b/source/xlib-extra/libvirt/FrugalBuild index 13345ec..48b692f 100644 --- a/source/xlib-extra/libvirt/FrugalBuild +++ b/source/xlib-extra/libvirt/FrugalBuild @@ -3,10 +3,10 @@ pkgname=libvirt pkgver=0.7.7 -pkgrel=1 +pkgrel=2 pkgdesc="libvirt is a library providing access to information from various virtualization tools" url="http://libvirt.org" -depends=('libxml2' 'xen>=3.0.4' 'gnutls' 'cyrus-sasl' 'parted' 'lvm2') +depends=('libxml2' 'gnutls' 'cyrus-sasl' 'parted' 'lvm2') makedepends=('python' 'gtk-doc') groups=('xlib-extra') archs=('x86_64' 'i686') From devil505linux at gmail.com Fri Mar 12 19:07:53 2010 From: devil505linux at gmail.com (Devil505) Date: Fri, 12 Mar 2010 19:07:53 +0100 (CET) Subject: [Frugalware-git] frugalware-current: perl-authen-sasl-2.14-1-i686 * version bump Message-ID: <20100312180753.74BB720E0002@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=f94bd174ac271d6f0f3a795b0685e2f6452f329b commit f94bd174ac271d6f0f3a795b0685e2f6452f329b Author: Devil505 Date: Fri Mar 12 19:06:58 2010 +0100 perl-authen-sasl-2.14-1-i686 * version bump diff --git a/source/devel-extra/perl-authen-sasl/FrugalBuild b/source/devel-extra/perl-authen-sasl/FrugalBuild index d1a885c..11e14dd 100644 --- a/source/devel-extra/perl-authen-sasl/FrugalBuild +++ b/source/devel-extra/perl-authen-sasl/FrugalBuild @@ -3,11 +3,11 @@ _F_perl_name=Authen-SASL _F_perl_author=G/GB/GBARR -pkgver=2.13 +pkgver=2.14 pkgrel=1 pkgdesc="SASL authentication framework" depends=('perl-digest-hmac' 'perl-gssapi') Finclude perl groups=('devel-extra') archs=('i686' 'x86_64') -sha1sums=('474858839f2d3fa2a0f2fedeb4b0fb78d180fc74') +sha1sums=('3a0e220cbf464b6fe069d0054342172fac51f987') From devil505linux at gmail.com Fri Mar 12 19:08:46 2010 From: devil505linux at gmail.com (Devil505) Date: Fri, 12 Mar 2010 19:08:46 +0100 (CET) Subject: [Frugalware-git] frugalware-current: python-simplejson-2.1.0-1-i686 * version bump Message-ID: <20100312180846.A325120E0002@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=d717d38687775b1eaf756db01ab8bf957cac25c7 commit d717d38687775b1eaf756db01ab8bf957cac25c7 Author: Devil505 Date: Fri Mar 12 19:08:25 2010 +0100 python-simplejson-2.1.0-1-i686 * version bump diff --git a/source/devel-extra/python-simplejson/FrugalBuild b/source/devel-extra/python-simplejson/FrugalBuild index ce13112..ebcfa55 100644 --- a/source/devel-extra/python-simplejson/FrugalBuild +++ b/source/devel-extra/python-simplejson/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: Devil505 pkgname=python-simplejson -pkgver=2.0.9 +pkgver=2.1.0 pkgrel=1 pkgdesc="Simple, fast, extensible JSON encoder/decoder for Python" url="http://undefined.org/python/#simplejson" @@ -13,6 +13,6 @@ archs=('i686' 'x86_64' 'ppc') _F_archive_name="simplejson" up2date="Flasttar http://pypi.python.org/packages/source/s/simplejson/" source=("http://pypi.python.org/packages/source/s/$_F_archive_name/$_F_archive_name-$pkgver.tar.gz") -sha1sums=('b5b26059adbe677b06c299bed30557fcb0c7df8c') +sha1sums=('218819e6f8c1aaf6a27d6560eac53ff67613b3e7') # optimization OK From vmiklos at frugalware.org Fri Mar 12 19:39:35 2010 From: vmiklos at frugalware.org (Miklos Vajna) Date: Fri, 12 Mar 2010 19:39:35 +0100 (CET) Subject: [Frugalware-git] kernel2633: redirfs-0.7-7-i686 Message-ID: <20100312183935.ED83020E0002@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=kernel2633.git;a=commitdiff;h=3bf05797dfcf4fae2766710c47287c625e7db055 commit 3bf05797dfcf4fae2766710c47287c625e7db055 Author: Miklos Vajna Date: Fri Mar 12 19:39:20 2010 +0100 redirfs-0.7-7-i686 - rebuild with kernel-2.6.33 diff --git a/source/apps-extra/redirfs/FrugalBuild b/source/apps-extra/redirfs/FrugalBuild index d47502f..e159d46 100644 --- a/source/apps-extra/redirfs/FrugalBuild +++ b/source/apps-extra/redirfs/FrugalBuild @@ -4,7 +4,7 @@ pkgname=redirfs pkgver=0.7 realver=${pkgver/pre/-pre} -pkgrel=6 +pkgrel=7 pkgdesc="Redirecting FileSystem" url="http://www.redirfs.org/tiki-index.php" _F_kernelmod_scriptlet=$pkgname.install From exceed.cedric at gmail.com Fri Mar 12 21:13:29 2010 From: exceed.cedric at gmail.com (exceed) Date: Fri, 12 Mar 2010 21:13:29 +0100 (CET) Subject: [Frugalware-git] frugalware-current: mako-0.3.2-1-i686 Message-ID: <20100312201329.9B71220E0002@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=5c4613020f5d22a25641c079268aa40fdbfa7c44 commit 5c4613020f5d22a25641c079268aa40fdbfa7c44 Author: exceed Date: Fri Mar 12 22:20:04 2010 +0100 mako-0.3.2-1-i686 * Version bump diff --git a/source/devel-extra/mako/FrugalBuild b/source/devel-extra/mako/FrugalBuild index bf75e79..e126ebb 100644 --- a/source/devel-extra/mako/FrugalBuild +++ b/source/devel-extra/mako/FrugalBuild @@ -4,7 +4,7 @@ pkgname=mako _F_archive_name="Mako" -pkgver=0.3.1 +pkgver=0.3.2 pkgrel=1 pkgdesc="Mako is a template library written in Python." url="http://www.makotemplates.org" @@ -14,5 +14,5 @@ groups=('devel-extra') archs=('i686' 'x86_64') up2date="lynx -dump http://pypi.python.org/packages/source/M/Mako/ |Flasttar" source=(http://pypi.python.org/packages/source/M/Mako/$_F_archive_name-$pkgver.tar.gz) -sha1sums=('783b782a5eb23fe72dc1059d27d6d92cc75647b3') +sha1sums=('0c79ac769d8c9045fb86ac770b232b110d8f82c1') _F_makepkg_chkdep="python" From exceed.cedric at gmail.com Fri Mar 12 21:16:53 2010 From: exceed.cedric at gmail.com (exceed) Date: Fri, 12 Mar 2010 21:16:53 +0100 (CET) Subject: [Frugalware-git] frugalware-current: pyopengl-3.0.1-1-i686 Message-ID: <20100312201653.3215E20E0002@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=60650acb6a082ec0cc330b2242eec91d4427183f commit 60650acb6a082ec0cc330b2242eec91d4427183f Author: exceed Date: Fri Mar 12 22:23:33 2010 +0100 pyopengl-3.0.1-1-i686 * Version bump diff --git a/source/xlib-extra/pyopengl/FrugalBuild b/source/xlib-extra/pyopengl/FrugalBuild index 73c5dc6..98f98f3 100644 --- a/source/xlib-extra/pyopengl/FrugalBuild +++ b/source/xlib-extra/pyopengl/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: jercel pkgname=pyopengl -pkgver=3.0.1b1 +pkgver=3.0.1 pkgrel=1 pkgdesc="OpenGL implementation for python" depends=('python>=2.6.4' 'freeglut' 'libxi' 'libxmu>=1.0.4-2' 'python-ctypes') @@ -15,4 +15,4 @@ _F_sourceforge_dirname="pyopengl" Finclude sourceforge url="http://pyopengl.sourceforge.net/" _F_cd_path="PyOpenGL-$pkgver" -sha1sums=('5a05ad4d06d4f0bafc8dbbd13323fe508aaecc3b') +sha1sums=('35ca03f4c9fb452dc07788818fd1683e37f521bf') From exceed.cedric at gmail.com Fri Mar 12 21:34:32 2010 From: exceed.cedric at gmail.com (exceed) Date: Fri, 12 Mar 2010 21:34:32 +0100 (CET) Subject: [Frugalware-git] frugalware-current: tmux-1.2-1-i686 Message-ID: <20100312203432.61BE820E0002@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=7c82e21575dba32c5e3a625bd9e3a50ba00cee4c commit 7c82e21575dba32c5e3a625bd9e3a50ba00cee4c Author: exceed Date: Fri Mar 12 22:40:01 2010 +0100 tmux-1.2-1-i686 * Version bump * Added libevent in depends() * Fixed build() diff --git a/source/apps-extra/tmux/FrugalBuild b/source/apps-extra/tmux/FrugalBuild index 48bd45c..a63e88a 100644 --- a/source/apps-extra/tmux/FrugalBuild +++ b/source/apps-extra/tmux/FrugalBuild @@ -2,21 +2,14 @@ # Maintainer: jercel pkgname=tmux -pkgver=1.1 +pkgver=1.2 pkgrel=1 pkgdesc="A terminal multiplexer" url="http://sourceforge.net/projects/tmux/" -depends=('ncurses') +depends=('ncurses' 'libevent') Finclude sourceforge groups=('apps-extra') archs=('i686' 'x86_64') -sha1sums=('8dc57a70605930bbe61664bd52ed2c8081ea5a1c') - -build() -{ - Fcd - Fsed "PREFIX?= /usr/local" "PREFIX?= /usr/" GNUmakefile - Fbuild -} +sha1sums=('57a784dc998710a719ee3e13dcd29541611c009e') # optimization OK From vmiklos at frugalware.org Fri Mar 12 22:05:01 2010 From: vmiklos at frugalware.org (Miklos Vajna) Date: Fri, 12 Mar 2010 22:05:01 +0100 (CET) Subject: [Frugalware-git] kernel2633: lirc-0.8.6-9-i686 Message-ID: <20100312210501.C03C320E0002@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=kernel2633.git;a=commitdiff;h=84f057089ca8416576c701c7fd47b9444972fe1a commit 84f057089ca8416576c701c7fd47b9444972fe1a Author: Miklos Vajna Date: Fri Mar 12 22:04:44 2010 +0100 lirc-0.8.6-9-i686 - add kernel-2.6.33.patch diff --git a/source/apps-extra/lirc/FrugalBuild b/source/apps-extra/lirc/FrugalBuild index 8c91a1e..87d6658 100644 --- a/source/apps-extra/lirc/FrugalBuild +++ b/source/apps-extra/lirc/FrugalBuild @@ -3,7 +3,7 @@ pkgname=lirc pkgver=0.8.6 -pkgrel=8 +pkgrel=9 pkgdesc="LIRC is a package that allows you to decode and send infra-red signals of many commonly used remote controls." url="http://www.lirc.org/" Finclude kernel-module sourceforge @@ -20,7 +20,15 @@ rodepends=("lirc_modules=$pkgver liblirc=$pkgver") groups=('apps-extra') archs=('i686' 'x86_64') backup=(etc/lirc{d,md}.conf etc/sysconfig/lirc) -source=(${source[@]} rc.lirc lirc.logrotate lirc.sysconfig README.Frugalware kernel-2.6.32.patch) +source=(${source[@]} rc.lirc lirc.logrotate lirc.sysconfig README.Frugalware kernel-2.6.32.patch \ + kernel-2.6.33.patch) +sha1sums=('236cdbb1e03181d1fb1c5c1d0f85cec1ffa0665b' \ + '30a7d32e512af135840e657edfa0736ad9d53281' \ + '4342b004eb53d51fcbb9af2cf136bb4990874608' \ + '504e0cd04780e75b6a8ab6836815c1ed9058db78' \ + '0b80c73e902920c028dca98a9006aaa313c6e120' \ + '81d1673cb4fc1e2cb9261c623c86aafe0b7a5322' \ + '9e48e21c68db0fbaad037ad8ca3c1d252430158e') unset install build() { @@ -52,11 +60,5 @@ build() { Fbuild_kernelmod_scriptlet Fsplit liblirc usr/{include,lib} } -sha1sums=('236cdbb1e03181d1fb1c5c1d0f85cec1ffa0665b' \ - '30a7d32e512af135840e657edfa0736ad9d53281' \ - '4342b004eb53d51fcbb9af2cf136bb4990874608' \ - '504e0cd04780e75b6a8ab6836815c1ed9058db78' \ - '0b80c73e902920c028dca98a9006aaa313c6e120' \ - '81d1673cb4fc1e2cb9261c623c86aafe0b7a5322') # optimization OK diff --git a/source/apps-extra/lirc/kernel-2.6.33.patch b/source/apps-extra/lirc/kernel-2.6.33.patch new file mode 100644 index 0000000..fc0c21e --- /dev/null +++ b/source/apps-extra/lirc/kernel-2.6.33.patch @@ -0,0 +1,438 @@ +diff --git a/drivers/lirc_atiusb/lirc_atiusb.c b/drivers/lirc_atiusb/lirc_atiusb.c +index bfb3873..b0fe76f 100644 +--- a/drivers/lirc_atiusb/lirc_atiusb.c ++++ b/drivers/lirc_atiusb/lirc_atiusb.c +@@ -43,7 +43,7 @@ + #error "*******************************************************" + #endif + +-#include ++#include + + #include + #include +diff --git a/drivers/lirc_bt829/lirc_bt829.c b/drivers/lirc_bt829/lirc_bt829.c +index 4cd651f..6d68f2e 100644 +--- a/drivers/lirc_bt829/lirc_bt829.c ++++ b/drivers/lirc_bt829/lirc_bt829.c +@@ -22,7 +22,7 @@ + #if LINUX_VERSION_CODE < KERNEL_VERSION(2, 4, 0) + #error "This driver needs kernel version 2.4.0 or higher" + #endif +-#include ++#include + #include + #include + #include +diff --git a/drivers/lirc_dev/lirc_dev.c b/drivers/lirc_dev/lirc_dev.c +index 67cd87a..cce671d 100644 +--- a/drivers/lirc_dev/lirc_dev.c ++++ b/drivers/lirc_dev/lirc_dev.c +@@ -32,7 +32,7 @@ + #error "**********************************************************" + #endif + +-#include ++#include + #include + #include + #include +diff --git a/drivers/lirc_dev/lirc_dev.h b/drivers/lirc_dev/lirc_dev.h +index 87f18e5..c6aeebf 100644 +--- a/drivers/lirc_dev/lirc_dev.h ++++ b/drivers/lirc_dev/lirc_dev.h +@@ -30,221 +30,101 @@ + + struct lirc_buffer { + wait_queue_head_t wait_poll; +- spinlock_t lock; ++ spinlock_t fifo_lock; + unsigned int chunk_size; + unsigned int size; /* in chunks */ + /* Using chunks instead of bytes pretends to simplify boundary checking + * And should allow for some performance fine tunning later */ +-#ifdef LIRC_HAVE_KFIFO +- struct kfifo *fifo; +-#else +- unsigned int fill; /* in chunks */ +- int head, tail; /* in chunks */ +- unsigned char *data; +-#endif ++ struct kfifo fifo; ++ u8 fifo_initialized; + }; +-#ifndef LIRC_HAVE_KFIFO +-static inline void lirc_buffer_lock(struct lirc_buffer *buf, +- unsigned long *flags) +-{ +- spin_lock_irqsave(&buf->lock, *flags); +-} +-static inline void lirc_buffer_unlock(struct lirc_buffer *buf, +- unsigned long *flags) +-{ +- spin_unlock_irqrestore(&buf->lock, *flags); +-} +-static inline void _lirc_buffer_clear(struct lirc_buffer *buf) +-{ +- buf->head = 0; +- buf->tail = 0; +- buf->fill = 0; +-} +-#endif + static inline void lirc_buffer_clear(struct lirc_buffer *buf) + { +-#ifdef LIRC_HAVE_KFIFO +- if (buf->fifo) +- kfifo_reset(buf->fifo); +-#else + unsigned long flags; +- lirc_buffer_lock(buf, &flags); +- _lirc_buffer_clear(buf); +- lirc_buffer_unlock(buf, &flags); +-#endif ++ ++ if (buf->fifo_initialized) { ++ spin_lock_irqsave(&buf->fifo_lock, flags); ++ kfifo_reset(&buf->fifo); ++ spin_unlock_irqrestore(&buf->fifo_lock, flags); ++ } else ++ WARN(1, "calling %s on an uninitialized lirc_buffer\n", __func__); + } + static inline int lirc_buffer_init(struct lirc_buffer *buf, + unsigned int chunk_size, + unsigned int size) + { ++ int ret; ++ + init_waitqueue_head(&buf->wait_poll); +- spin_lock_init(&buf->lock); +-#ifndef LIRC_HAVE_KFIFO +- _lirc_buffer_clear(buf); +-#endif ++ spin_lock_init(&buf->fifo_lock); + buf->chunk_size = chunk_size; + buf->size = size; +-#ifdef LIRC_HAVE_KFIFO +- buf->fifo = kfifo_alloc(size*chunk_size, GFP_KERNEL, &buf->lock); +- if (!buf->fifo) +- return -ENOMEM; +-#else +- buf->data = kmalloc(size*chunk_size, GFP_KERNEL); +- if (buf->data == NULL) +- return -ENOMEM; +- memset(buf->data, 0, size*chunk_size); +-#endif +- return 0; ++ ret = kfifo_alloc(&buf->fifo, size * chunk_size, GFP_KERNEL); ++ if (ret == 0) ++ buf->fifo_initialized = 1; ++ return ret; + } + static inline void lirc_buffer_free(struct lirc_buffer *buf) + { +-#ifdef LIRC_HAVE_KFIFO +- if (buf->fifo) +- kfifo_free(buf->fifo); +-#else +- kfree(buf->data); +- buf->data = NULL; +- buf->head = 0; +- buf->tail = 0; +- buf->fill = 0; +- buf->chunk_size = 0; +- buf->size = 0; +-#endif ++ if (buf->fifo_initialized) { ++ kfifo_free(&buf->fifo); ++ buf->fifo_initialized = 0; ++ } else ++ WARN(1, "calling %s on an uninitialized lirc_buffer\n", __func__); + } +-#ifndef LIRC_HAVE_KFIFO +-static inline int _lirc_buffer_full(struct lirc_buffer *buf) ++static inline int lirc_buffer_len(struct lirc_buffer *buf) + { +- return (buf->fill >= buf->size); +-} +-#endif +-static inline int lirc_buffer_full(struct lirc_buffer *buf) +-{ +-#ifdef LIRC_HAVE_KFIFO +- return kfifo_len(buf->fifo) == buf->size * buf->chunk_size; +-#else ++ int len; + unsigned long flags; +- int ret; +- lirc_buffer_lock(buf, &flags); +- ret = _lirc_buffer_full(buf); +- lirc_buffer_unlock(buf, &flags); +- return ret; +-#endif ++ ++ spin_lock_irqsave(&buf->fifo_lock, flags); ++ len = kfifo_len(&buf->fifo); ++ spin_unlock_irqrestore(&buf->fifo_lock, flags); ++ ++ return len; + } +-#ifndef LIRC_HAVE_KFIFO +-static inline int _lirc_buffer_empty(struct lirc_buffer *buf) ++ ++static inline int lirc_buffer_full(struct lirc_buffer *buf) + { +- return !(buf->fill); ++ return lirc_buffer_len(buf) == buf->size * buf->chunk_size; + } +-#endif + static inline int lirc_buffer_empty(struct lirc_buffer *buf) + { +-#ifdef LIRC_HAVE_KFIFO +- return !kfifo_len(buf->fifo); +-#else +- unsigned long flags; +- int ret; +- lirc_buffer_lock(buf, &flags); +- ret = _lirc_buffer_empty(buf); +- lirc_buffer_unlock(buf, &flags); +- return ret; +-#endif ++ return !lirc_buffer_len(buf); + } +-#ifndef LIRC_HAVE_KFIFO +-static inline int _lirc_buffer_available(struct lirc_buffer *buf) +-{ +- return (buf->size - buf->fill); +-} +-#endif + static inline int lirc_buffer_available(struct lirc_buffer *buf) + { +-#ifdef LIRC_HAVE_KFIFO +- return buf->size - (kfifo_len(buf->fifo) / buf->chunk_size); +-#else +- unsigned long flags; +- int ret; +- lirc_buffer_lock(buf, &flags); +- ret = _lirc_buffer_available(buf); +- lirc_buffer_unlock(buf, &flags); +- return ret; +-#endif +-} +-#ifndef LIRC_HAVE_KFIFO +-static inline void _lirc_buffer_read_1(struct lirc_buffer *buf, +- unsigned char *dest) +-{ +- memcpy(dest, &buf->data[buf->head*buf->chunk_size], buf->chunk_size); +- buf->head = mod(buf->head+1, buf->size); +- buf->fill -= 1; ++ return buf->size - (lirc_buffer_len(buf) / buf->chunk_size); + } +-#endif +-static inline void lirc_buffer_read(struct lirc_buffer *buf, ++static inline unsigned int lirc_buffer_read(struct lirc_buffer *buf, + unsigned char *dest) + { +-#ifdef LIRC_HAVE_KFIFO +- if (kfifo_len(buf->fifo) >= buf->chunk_size) +- kfifo_get(buf->fifo, dest, buf->chunk_size); +-#else +- unsigned long flags; +- lirc_buffer_lock(buf, &flags); +- _lirc_buffer_read_1(buf, dest); +- lirc_buffer_unlock(buf, &flags); +-#endif +-} +-#ifndef LIRC_HAVE_KFIFO +-static inline void _lirc_buffer_write_1(struct lirc_buffer *buf, +- unsigned char *orig) +-{ +- memcpy(&buf->data[buf->tail*buf->chunk_size], orig, buf->chunk_size); +- buf->tail = mod(buf->tail+1, buf->size); +- buf->fill++; ++ unsigned int ret = 0; ++ ++ if (lirc_buffer_len(buf) >= buf->chunk_size) ++ ret = kfifo_out_locked(&buf->fifo, dest, buf->chunk_size, ++ &buf->fifo_lock); ++ return ret; + } +-#endif +-static inline void lirc_buffer_write(struct lirc_buffer *buf, ++static inline unsigned int lirc_buffer_write(struct lirc_buffer *buf, + unsigned char *orig) + { +-#ifdef LIRC_HAVE_KFIFO +- kfifo_put(buf->fifo, orig, buf->chunk_size); +-#else +- unsigned long flags; +- lirc_buffer_lock(buf, &flags); +- _lirc_buffer_write_1(buf, orig); +- lirc_buffer_unlock(buf, &flags); +-#endif +-} +-#ifndef LIRC_HAVE_KFIFO +-static inline void _lirc_buffer_write_n(struct lirc_buffer *buf, +- unsigned char *orig, int count) +-{ +- int space1; +- if (buf->head > buf->tail) +- space1 = buf->head - buf->tail; +- else +- space1 = buf->size - buf->tail; ++ unsigned int ret; ++ ++ ret = kfifo_in_locked(&buf->fifo, orig, buf->chunk_size, ++ &buf->fifo_lock); + +- if (count > space1) { +- memcpy(&buf->data[buf->tail * buf->chunk_size], orig, +- space1 * buf->chunk_size); +- memcpy(&buf->data[0], orig + (space1 * buf->chunk_size), +- (count - space1) * buf->chunk_size); +- } else { +- memcpy(&buf->data[buf->tail * buf->chunk_size], orig, +- count * buf->chunk_size); +- } +- buf->tail = mod(buf->tail + count, buf->size); +- buf->fill += count; ++ return ret; + } +-#endif +-static inline void lirc_buffer_write_n(struct lirc_buffer *buf, +- unsigned char *orig, int count) ++static inline unsigned int lirc_buffer_write_n(struct lirc_buffer *buf, ++ unsigned char *orig, int count) + { +-#ifdef LIRC_HAVE_KFIFO +- kfifo_put(buf->fifo, orig, count * buf->chunk_size); +-#else +- unsigned long flags; +- lirc_buffer_lock(buf, &flags); +- _lirc_buffer_write_n(buf, orig, count); +- lirc_buffer_unlock(buf, &flags); +-#endif ++ unsigned int ret; ++ ++ ret = kfifo_in_locked(&buf->fifo, orig, count * buf->chunk_size, ++ &buf->fifo_lock); ++ ++ return ret; + } + + struct lirc_driver { +diff --git a/drivers/lirc_igorplugusb/lirc_igorplugusb.c b/drivers/lirc_igorplugusb/lirc_igorplugusb.c +index ed4ae50..02c14a3 100644 +--- a/drivers/lirc_igorplugusb/lirc_igorplugusb.c ++++ b/drivers/lirc_igorplugusb/lirc_igorplugusb.c +@@ -47,7 +47,7 @@ + #error "*******************************************************" + #endif + +-#include ++#include + #include + #include + #include +diff --git a/drivers/lirc_imon/lirc_imon.c b/drivers/lirc_imon/lirc_imon.c +index c98c712..d23b916 100644 +--- a/drivers/lirc_imon/lirc_imon.c ++++ b/drivers/lirc_imon/lirc_imon.c +@@ -30,7 +30,7 @@ + #error "*** Sorry, this driver requires a 2.6 kernel" + #endif + +-#include ++#include + + #include + #include +diff --git a/drivers/lirc_it87/lirc_it87.c b/drivers/lirc_it87/lirc_it87.c +index defef9e..1d17d95 100644 +--- a/drivers/lirc_it87/lirc_it87.c ++++ b/drivers/lirc_it87/lirc_it87.c +@@ -36,7 +36,7 @@ + + #include + #include +-#include ++#include + #include + #include + #include +diff --git a/drivers/lirc_mceusb/lirc_mceusb.c b/drivers/lirc_mceusb/lirc_mceusb.c +index abcd566..3611646 100644 +--- a/drivers/lirc_mceusb/lirc_mceusb.c ++++ b/drivers/lirc_mceusb/lirc_mceusb.c +@@ -52,7 +52,7 @@ + #error "Sorry, this driver needs kernel version 2.6.5 or higher" + #error "*******************************************************" + #endif +-#include ++#include + #include + #include + #include +diff --git a/drivers/lirc_sasem/lirc_sasem.c b/drivers/lirc_sasem/lirc_sasem.c +index dc7f5fb..f8125ed 100644 +--- a/drivers/lirc_sasem/lirc_sasem.c ++++ b/drivers/lirc_sasem/lirc_sasem.c +@@ -41,7 +41,7 @@ + #error "*** Sorry, this driver requires kernel version 2.4.22 or higher" + #endif + +-#include ++#include + + #include + #include +diff --git a/drivers/lirc_serial/lirc_serial.c b/drivers/lirc_serial/lirc_serial.c +index d25d20a..f7e3143 100644 +--- a/drivers/lirc_serial/lirc_serial.c ++++ b/drivers/lirc_serial/lirc_serial.c +@@ -60,7 +60,7 @@ + #error "**********************************************************" + #endif + +-#include ++#include + + #if defined(CONFIG_SERIAL) || defined(CONFIG_SERIAL_8250) + #warning "******************************************" +diff --git a/drivers/lirc_sir/lirc_sir.c b/drivers/lirc_sir/lirc_sir.c +index 7778196..ac23bb8 100644 +--- a/drivers/lirc_sir/lirc_sir.c ++++ b/drivers/lirc_sir/lirc_sir.c +@@ -45,7 +45,7 @@ + # include + #endif + +-#include ++#include + #if !defined(CONFIG_SERIAL_MODULE) + #if !defined(LIRC_ON_SA1100) + #warning "******************************************" +diff --git a/drivers/lirc_streamzap/lirc_streamzap.c b/drivers/lirc_streamzap/lirc_streamzap.c +index e3b19cf..4ad2321 100755 +--- a/drivers/lirc_streamzap/lirc_streamzap.c ++++ b/drivers/lirc_streamzap/lirc_streamzap.c +@@ -35,7 +35,7 @@ + #error "Sorry, this driver needs kernel version 2.4.0 or higher" + #error "*******************************************************" + #endif +-#include ++#include + #include + #include + #include +diff --git a/drivers/lirc_wpc8769l/lirc_wpc8769l.c b/drivers/lirc_wpc8769l/lirc_wpc8769l.c +index 6a2a52f..70532a3 100644 +--- a/drivers/lirc_wpc8769l/lirc_wpc8769l.c ++++ b/drivers/lirc_wpc8769l/lirc_wpc8769l.c +@@ -37,7 +37,7 @@ + #error "**********************************************************" + #endif + +-#include ++#include + + #include + #include From vmiklos at frugalware.org Fri Mar 12 22:29:46 2010 From: vmiklos at frugalware.org (Miklos Vajna) Date: Fri, 12 Mar 2010 22:29:46 +0100 (CET) Subject: [Frugalware-git] kernel2633: acx100-20080806-23-i686 Message-ID: <20100312212946.7D9C920E0002@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=kernel2633.git;a=commitdiff;h=42a7fdaa67cf34bcb9230ce767bc03e80bde14b5 commit 42a7fdaa67cf34bcb9230ce767bc03e80bde14b5 Author: Miklos Vajna Date: Fri Mar 12 22:28:44 2010 +0100 acx100-20080806-23-i686 - add kernel-2.6.33.patch diff --git a/source/network-extra/acx100/FrugalBuild b/source/network-extra/acx100/FrugalBuild index 8eeaa0f..2598a93 100644 --- a/source/network-extra/acx100/FrugalBuild +++ b/source/network-extra/acx100/FrugalBuild @@ -4,7 +4,7 @@ pkgname=acx100 origname=acx-mac80211 pkgver=20080806 -pkgrel=22 +pkgrel=23 pkgdesc="The ACX100/ACX111 wireless network driver." _F_sourceforge_ext=".tar.bz2" _F_sourceforge_dirname=${pkgname} @@ -15,8 +15,8 @@ groups=('network-extra') archs=('i686' 'x86_64') _F_archive_name=${origname} up2date="Flasttar http://acx100.sourceforge.net/wiki/Main_Page" -source=(http://ftp.frugalware.org/pub/other/sources/$pkgname/{$origname-$pkgver.tar.bz2,fw.tar.bz2,ACX100_USB.bin,kernel-2.6.27-compat.patch.bz2} kernel-2.6.3{0,1}.patch) -signatures=($source.asc '' '' '' '' '') +source=(http://ftp.frugalware.org/pub/other/sources/$pkgname/{$origname-$pkgver.tar.bz2,fw.tar.bz2,ACX100_USB.bin,kernel-2.6.27-compat.patch.bz2} kernel-2.6.3{0,1,3}.patch) +signatures=($source.asc '' '' '' '' '' '') build() { # no Fcheckkernel, crosscompilation verified diff --git a/source/network-extra/acx100/kernel-2.6.33.patch b/source/network-extra/acx100/kernel-2.6.33.patch new file mode 100644 index 0000000..36eb386 --- /dev/null +++ b/source/network-extra/acx100/kernel-2.6.33.patch @@ -0,0 +1,26 @@ +diff --git a/pci.c b/pci.c +index af76968..0bb678e 100644 +--- a/pci.c ++++ b/pci.c +@@ -31,7 +31,7 @@ + */ + #define ACX_PCI 1 + +-#include ++#include + #include + #include + #include +diff --git a/usb.c b/usb.c +index bde3476..e7edd1a 100644 +--- a/usb.c ++++ b/usb.c +@@ -45,7 +45,7 @@ + #define ACX_USB 1 + + #include +-#include ++#include + #include + #include + #include From vmiklos at frugalware.org Fri Mar 12 23:21:40 2010 From: vmiklos at frugalware.org (Miklos Vajna) Date: Fri, 12 Mar 2010 23:21:40 +0100 (CET) Subject: [Frugalware-git] kernel2633: qc-usb-0.6.6-63-i686 Message-ID: <20100312222140.EEC3220E0002@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=kernel2633.git;a=commitdiff;h=4fbb62fbb3d9055bd6034ddba207128df3b007c9 commit 4fbb62fbb3d9055bd6034ddba207128df3b007c9 Author: Miklos Vajna Date: Fri Mar 12 22:52:18 2010 +0100 qc-usb-0.6.6-63-i686 - add kernel-2.6.33.patch diff --git a/source/multimedia-extra/qc-usb/FrugalBuild b/source/multimedia-extra/qc-usb/FrugalBuild index 10f8e35..6249ff5 100644 --- a/source/multimedia-extra/qc-usb/FrugalBuild +++ b/source/multimedia-extra/qc-usb/FrugalBuild @@ -3,20 +3,21 @@ pkgname=qc-usb pkgver=0.6.6 -pkgrel=62 +pkgrel=63 pkgdesc="Quickcam kernel driver." groups=('multimedia-extra') archs=('i686' 'x86_64') _F_sourceforge_dirname="qce-ga" Finclude sourceforge kernel-module url="http://qce-ga.sourceforge.net/" -source=($source kernel-2.6.2{4,6,7,8}.patch kernel-2.6.30.patch) +source=($source kernel-2.6.2{4,6,7,8}.patch kernel-2.6.3{0,3}.patch) sha1sums=('947a9f1233586af71d82e413f455ef01ee388b43' \ 'f77487fc75fe1a79d93813141448c04cc538a890' \ 'b549293fe695aa346b26a7d52c65ac142c4ae4bc' \ '5f7ccc2df2a017d8d6bdca2469aa65646e58685a' \ '1f8dd39d711f0160a6ce962989db6ad3550fccf4' \ - 'b735e4219a429f6c574726377a106162a251ed10') + 'b735e4219a429f6c574726377a106162a251ed10' \ + '7ab1ba881d2d8b0b0f86c4557eb7b3601e6f6ccf') build() { Fpatchall diff --git a/source/multimedia-extra/qc-usb/kernel-2.6.33.patch b/source/multimedia-extra/qc-usb/kernel-2.6.33.patch new file mode 100644 index 0000000..a535730 --- /dev/null +++ b/source/multimedia-extra/qc-usb/kernel-2.6.33.patch @@ -0,0 +1,41 @@ +diff --git a/qc-driver.c b/qc-driver.c +index d303148..2f3a91b 100644 +--- a/qc-driver.c ++++ b/qc-driver.c +@@ -49,8 +49,8 @@ + #include + #endif + #include +-#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,18)) || (HAVE_UTSRELEASE_H == 1) +-#include ++#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,18)) ++#include + #endif + #include + +diff --git a/qc-memory.c b/qc-memory.c +index 39a95f5..aaf74d7 100644 +--- a/qc-memory.c ++++ b/qc-memory.c +@@ -27,7 +27,7 @@ + */ + /* }}} */ + /* {{{ [fold] Includes */ +-#include ++#include + #include + + #ifdef CONFIG_SMP +diff --git a/quickcam.h b/quickcam.h +index 2b54bf2..2c8014d 100644 +--- a/quickcam.h ++++ b/quickcam.h +@@ -76,7 +76,7 @@ struct qc_userlut { + + #ifdef __KERNEL__ + +-#include ++#include + #include + + #ifdef CONFIG_SMP From vmiklos at frugalware.org Sat Mar 13 00:01:42 2010 From: vmiklos at frugalware.org (Miklos Vajna) Date: Sat, 13 Mar 2010 00:01:42 +0100 (CET) Subject: [Frugalware-git] kernel2633: dazuko-2.3.7-13-i686 Message-ID: <20100312230142.B269720E0002@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=kernel2633.git;a=commitdiff;h=2e4f69391f4eec321ec36e7e2246c1610afacba9 commit 2e4f69391f4eec321ec36e7e2246c1610afacba9 Author: Miklos Vajna Date: Sat Mar 13 00:01:31 2010 +0100 dazuko-2.3.7-13-i686 - add kernel-2.6.33.patch diff --git a/source/apps-extra/dazuko/FrugalBuild b/source/apps-extra/dazuko/FrugalBuild index b8edb7b..25bd889 100644 --- a/source/apps-extra/dazuko/FrugalBuild +++ b/source/apps-extra/dazuko/FrugalBuild @@ -5,7 +5,7 @@ pkgname=dazuko pkgver=2.3.7 realver=${pkgver/pre/-pre} redirver=0.7 -pkgrel=12 +pkgrel=13 pkgdesc="On-access virus scanning kernel interface" url="http://www.dazuko.org" license="GPL-2 BSD" @@ -19,8 +19,8 @@ up2date="Flasttar http://dazuko.dnsalias.org/files/" source=(http://dazuko.dnsalias.org/files/dazuko-$pkgver.tar.gz \ http://www.redirfs.org/packages/redirfs-$redirver.tar.gz \ README.Frugalware \ - kernel-2.6.29.patch) -signatures=($source.asc '' '' '') + kernel-2.6.{29,33}.patch) +signatures=($source.asc '' '' '' '') build() { Fcd $pkgname-$realver diff --git a/source/apps-extra/dazuko/kernel-2.6.33.patch b/source/apps-extra/dazuko/kernel-2.6.33.patch new file mode 100644 index 0000000..939950a --- /dev/null +++ b/source/apps-extra/dazuko/kernel-2.6.33.patch @@ -0,0 +1,31 @@ +diff --git a/configure b/configure +index 1caa547..bd57abc 100755 +--- a/configure ++++ b/configure +@@ -117,7 +117,7 @@ linux_check_objdir() + then + echo -n "kernel build source in ${LINUX_CHECK_OBJ}... " + +- if [ -f "${LINUX_CHECK_OBJ}/include/linux/version.h" -a -f "${LINUX_CHECK_OBJ}/include/linux/autoconf.h" ] ++ if [ -f "${LINUX_CHECK_OBJ}/include/linux/version.h" -a -f "${LINUX_CHECK_OBJ}/include/generated/autoconf.h" ] + then + LINUX_OBJ="$LINUX_CHECK_OBJ" + echo "yes" +diff --git a/linux_conf.c b/linux_conf.c +index 70e9981..0e29e67 100644 +--- a/linux_conf.c ++++ b/linux_conf.c +@@ -1,11 +1,9 @@ + #ifdef USE_CONFIG_H + #else +-#include ++#include + #endif + #include +-#ifdef USE_UTSRELEASE_H +-#include +-#endif ++#include + #include + + #ifndef KERNEL_VERSION From devil505linux at gmail.com Sat Mar 13 07:43:00 2010 From: devil505linux at gmail.com (Devil505) Date: Sat, 13 Mar 2010 07:43:00 +0100 (CET) Subject: [Frugalware-git] frugalware-current: pragha-0.7.3-1-i686 * version bump Message-ID: <20100313064300.A951A1240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=d4964fa4831bfd2e1df56a2227493e719ac96f6d commit d4964fa4831bfd2e1df56a2227493e719ac96f6d Author: Devil505 Date: Sat Mar 13 07:42:37 2010 +0100 pragha-0.7.3-1-i686 * version bump diff --git a/source/xapps-extra/pragha/FrugalBuild b/source/xapps-extra/pragha/FrugalBuild index 8cd31d1..c35c229 100644 --- a/source/xapps-extra/pragha/FrugalBuild +++ b/source/xapps-extra/pragha/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: Devil505 pkgname=pragha -pkgver=0.7.2 +pkgver=0.7.3 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=('2bfe965cf8c229b5edf954918fbe22ed71745bcc') +sha1sums=('599fc4e2cf90494c1c1ee0a92d47718b9a479f9f') build() { From devil505linux at gmail.com Sat Mar 13 08:38:29 2010 From: devil505linux at gmail.com (Devil505) Date: Sat, 13 Mar 2010 08:38:29 +0100 (CET) Subject: [Frugalware-git] frugalware-current: shotwell-0.5.0-1-i686 *version bump Message-ID: <20100313073829.EE7631240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=70dc3eae355f257a9249e9c6990d49217b9d2bd3 commit 70dc3eae355f257a9249e9c6990d49217b9d2bd3 Author: Devil505 Date: Sat Mar 13 08:37:15 2010 +0100 shotwell-0.5.0-1-i686 *version bump diff --git a/source/gnome-extra/shotwell/FrugalBuild b/source/gnome-extra/shotwell/FrugalBuild index 555dbfe..5f02053 100644 --- a/source/gnome-extra/shotwell/FrugalBuild +++ b/source/gnome-extra/shotwell/FrugalBuild @@ -2,11 +2,11 @@ # Maintainer: Devil505 pkgname=shotwell -pkgver=0.4.3 +pkgver=0.5.0 pkgrel=1 pkgdesc="A digital photo organizer designed for the GNOME desktop environment" url="http://yorba.org/shotwell/" -depends=('libgee' 'gconf' 'libgphoto2' 'unique' 'webkit' 'atk' 'libxslt' 'libxt' 'libice' 'libgcc' 'libxinerama' 'libxi' 'libxrandr' 'libxcursor' 'sqlite3' 'libsoup') +depends=('libgee' 'gconf' 'libgphoto2' 'unique' 'webkit' 'atk' 'libxslt' 'libxt' 'libice' 'libgcc' 'libxinerama' 'libxi' 'libxrandr' 'libxcursor' 'sqlite3' 'libsoup' 'libgudev') makedepends=('vala' 'intltool') options=('scriptlet') _F_gnome_desktop="y" @@ -14,8 +14,8 @@ _F_gnome_iconcache="y" Finclude gnome-scriptlet groups=('gnome-extra') archs=('i686' 'x86_64') -up2date="Flasttar $url" -source=(http://yorba.org/download/shotwell/0.4/$pkgname-$pkgver.tar.bz2) -sha1sums=('086402370ea95e700fce2ac88538239a83cb1589') +up2date="Flasttar $url/install/" +source=(http://yorba.org/download/shotwell/0.5/$pkgname-$pkgver.tar.bz2) +sha1sums=('818d50faea5323192b51749ee1331966c0601768') # optimization OK From devil505linux at gmail.com Sat Mar 13 10:36:33 2010 From: devil505linux at gmail.com (Devil505) Date: Sat, 13 Mar 2010 10:36:33 +0100 (CET) Subject: [Frugalware-git] frugalware-current: transmission-1.92-1-i686 * version bump Message-ID: <20100313093633.2574E1240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=ed7820595857dafab0abf03ba15d5a603926efe2 commit ed7820595857dafab0abf03ba15d5a603926efe2 Author: Devil505 Date: Sat Mar 13 10:35:46 2010 +0100 transmission-1.92-1-i686 * version bump diff --git a/source/xapps-extra/transmission/FrugalBuild b/source/xapps-extra/transmission/FrugalBuild index f107b69..46c3878 100644 --- a/source/xapps-extra/transmission/FrugalBuild +++ b/source/xapps-extra/transmission/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: Priyank Gosalia pkgname=transmission -pkgver=1.91 +pkgver=1.92 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=('edf221053def8667bfde08a9bcbb3a60162a65aa') +sha1sums=('129a3d67b4f7d22431df3c1aebdd8e4b76c64706') build() { From devil505linux at gmail.com Sat Mar 13 10:47:36 2010 From: devil505linux at gmail.com (Devil505) Date: Sat, 13 Mar 2010 10:47:36 +0100 (CET) Subject: [Frugalware-git] frugalware-current: gtkwave-3.3.4-1-i686 * version bump Message-ID: <20100313094736.5B7D81240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=da2a16e904e24ea59121b75e16b230fd38034737 commit da2a16e904e24ea59121b75e16b230fd38034737 Author: Devil505 Date: Sat Mar 13 10:46:45 2010 +0100 gtkwave-3.3.4-1-i686 * version bump diff --git a/source/xapps-extra/gtkwave/FrugalBuild b/source/xapps-extra/gtkwave/FrugalBuild index a2d1085..a26007b 100644 --- a/source/xapps-extra/gtkwave/FrugalBuild +++ b/source/xapps-extra/gtkwave/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: Priyank Gosalia pkgname=gtkwave -pkgver=3.3.2 +pkgver=3.3.4 pkgrel=1 pkgdesc="A wave viewer for LXT, LXT2, VZT, GHW and standard Verilog VCD/EVCD files." depends=('gtk+2>=2.16.5' 'gperf>=3.0.4') @@ -11,6 +11,6 @@ Finclude sourceforge groups=('xapps-extra' 'geda-suite') archs=('i686' 'x86_64') options=('scriptlet') -sha1sums=('f5562e79b5e416ed207795d0de24f9d5381ae996') +sha1sums=('2b475e9d563ba4517871e34463305147cc0388c2') # optimization OK From devil505linux at gmail.com Sat Mar 13 10:50:52 2010 From: devil505linux at gmail.com (Devil505) Date: Sat, 13 Mar 2010 10:50:52 +0100 (CET) Subject: [Frugalware-git] frugalware-current: sakura-2.3.7-1-i686 * version bump Message-ID: <20100313095052.4EA501240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=b5852e2c1e8c9e9b189df0ad4661927aba8878b3 commit b5852e2c1e8c9e9b189df0ad4661927aba8878b3 Author: Devil505 Date: Sat Mar 13 10:50:32 2010 +0100 sakura-2.3.7-1-i686 * version bump diff --git a/source/xapps-extra/sakura/FrugalBuild b/source/xapps-extra/sakura/FrugalBuild index 4ed571e..0f87f49 100644 --- a/source/xapps-extra/sakura/FrugalBuild +++ b/source/xapps-extra/sakura/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: Priyank Gosalia pkgname=sakura -pkgver=2.3.6 +pkgver=2.3.7 pkgrel=1 pkgdesc="Sakura is a terminal emulator based on GTK and VTE." url="http://pleyades.net/david/sakura.php" @@ -13,7 +13,7 @@ groups=('xapps-extra') archs=('i686' 'x86_64') up2date="lynx -dump $url | grep -m1 tar.bz2 | sed 's/.*-\(.*\).ta.*/\1/'" source=(http://pleyades.net/david/projects/$pkgname/$pkgname-$pkgver.tar.bz2) -sha1sums=('55eefa5232323ccbe8b6ff8f528a149a8c374abf') +sha1sums=('8ffbd39f4bf0c1e84d45bfed455645aea05b9c23') build() { From devil505linux at gmail.com Sat Mar 13 11:30:59 2010 From: devil505linux at gmail.com (Devil505) Date: Sat, 13 Mar 2010 11:30:59 +0100 (CET) Subject: [Frugalware-git] frugalware-current: gtranslator-1.9.7-1-i686 * version bump Message-ID: <20100313103059.7DF0A1240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=652da999c1acbb90af152802b52133f0ee880f74 commit 652da999c1acbb90af152802b52133f0ee880f74 Author: Devil505 Date: Sat Mar 13 11:29:06 2010 +0100 gtranslator-1.9.7-1-i686 * version bump diff --git a/source/gnome-extra/gtranslator/FrugalBuild b/source/gnome-extra/gtranslator/FrugalBuild index 8b11a26..4080d93 100644 --- a/source/gnome-extra/gtranslator/FrugalBuild +++ b/source/gnome-extra/gtranslator/FrugalBuild @@ -3,7 +3,7 @@ # Contributor: BMH1980 pkgname=gtranslator -pkgver=1.9.6 +pkgver=1.9.7 pkgrel=1 pkgdesc="An enhanced gettext po file editor for GNOME." url="http://www.gnome.org/" @@ -17,7 +17,7 @@ _F_gnome_desktop="y" _F_gnome_scrollkeeper="y" _F_gnome_devel="y" Finclude sourceforge gnome-scriptlet -sha1sums=('7ad1f4a9b640b7b07b20b8f0892656e310ed0976') +sha1sums=('03282c42e2fbf8930bc3cc35fd9804cc1ee9d0fb') # optimization OK From devil505linux at gmail.com Sat Mar 13 12:35:52 2010 From: devil505linux at gmail.com (Devil505) Date: Sat, 13 Mar 2010 12:35:52 +0100 (CET) Subject: [Frugalware-git] frugalware-current: subtitleeditor-0.36.0-1-i686 * version bump Message-ID: <20100313113552.8AB7B1240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=e2c847de4458429d0ec29355fd2cb2d3f7bd2056 commit e2c847de4458429d0ec29355fd2cb2d3f7bd2056 Author: Devil505 Date: Sat Mar 13 12:35:02 2010 +0100 subtitleeditor-0.36.0-1-i686 * version bump diff --git a/source/gnome-extra/subtitleeditor/FrugalBuild b/source/gnome-extra/subtitleeditor/FrugalBuild index 6d46065..4723723 100644 --- a/source/gnome-extra/subtitleeditor/FrugalBuild +++ b/source/gnome-extra/subtitleeditor/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: Priyank Gosalia pkgname=subtitleeditor -pkgver=0.35.1 +pkgver=0.36.0 pkgrel=1 pkgdesc="Subtitle Editor is a GTK+2 tool to edit subtitles." url="http://kitone.free.fr/subtitleeditor" @@ -16,8 +16,8 @@ Finclude gnome-scriptlet groups=('gnome-extra') archs=('i686' 'x86_64') up2date="lynx -dump $url | grep -m1 tar.gz | Flasttar" -source=(http://download.gna.org/$pkgname/0.35/$pkgname-$pkgver.tar.gz) +source=(http://download.gna.org/$pkgname/0.36/$pkgname-$pkgver.tar.gz) Fconfopts="${Fconfopts[@]} --enable-cairo" -sha1sums=('3c24bd1e176c1521f691b18c28b50b2b050bda50') +sha1sums=('d3d57378b0fcd3ca461c1a2510a1516b3b25ca87') # optimization OK From cedynamix at gmail.com Sat Mar 13 14:17:35 2010 From: cedynamix at gmail.com (Cedynamix) Date: Sat, 13 Mar 2010 14:17:35 +0100 (CET) Subject: [Frugalware-git] frugalware-current: keyutils-1.3-1-i686 Message-ID: <20100313131735.24B171240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=69b26cf4814a1d54c279ace23b5a760f69635e99 commit 69b26cf4814a1d54c279ace23b5a760f69635e99 Author: Cedynamix Date: Sat Mar 13 14:17:00 2010 +0100 keyutils-1.3-1-i686 * version bump diff --git a/source/apps-extra/keyutils/FrugalBuild b/source/apps-extra/keyutils/FrugalBuild index 24ae3d3..121a925 100644 --- a/source/apps-extra/keyutils/FrugalBuild +++ b/source/apps-extra/keyutils/FrugalBuild @@ -2,8 +2,8 @@ # Maintainer: Cedrick Hannier alias Cedynamix pkgname=keyutils -pkgver=1.2 -pkgrel=2 +pkgver=1.3 +pkgrel=1 pkgdesc="Keyutils is a set of utilities for managing the key retention facility in the kernel" url="https://rhn.redhat.com/errata/RHEA-2006-0090.html" depends=() @@ -11,7 +11,7 @@ archs=('i686' 'x86_64') groups=('apps-extra') source=(http://people.redhat.com/~dhowells/keyutils/keyutils-$pkgver.tar.bz2) up2date="lynx -dump http://people.redhat.com/~dhowells/keyutils/ | Flasttar" -sha1sums=('3d92a95fb2015835b883a5477e00ab87d339c92d') +sha1sums=('bc6f643c2774e62cb272b1e72271fe88b9da48f5') build() { Fsed '-O2' "$CFLAGS" Makefile From cedynamix at gmail.com Sat Mar 13 14:21:27 2010 From: cedynamix at gmail.com (Cedynamix) Date: Sat, 13 Mar 2010 14:21:27 +0100 (CET) Subject: [Frugalware-git] frugalware-current: libmp3splt-0.5.9-1-i686 Message-ID: <20100313132127.3D4771240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=8f2a1fd597626f171efbea3261d6d0254af29e78 commit 8f2a1fd597626f171efbea3261d6d0254af29e78 Author: Cedynamix Date: Sat Mar 13 14:21:07 2010 +0100 libmp3splt-0.5.9-1-i686 * version bump diff --git a/source/multimedia-extra/libmp3splt/FrugalBuild b/source/multimedia-extra/libmp3splt/FrugalBuild index cb4afb0..4fcbf0f 100644 --- a/source/multimedia-extra/libmp3splt/FrugalBuild +++ b/source/multimedia-extra/libmp3splt/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: Cedrick Hannier alias Cedynamix pkgname=libmp3splt -pkgver=0.5.8 +pkgver=0.5.9 pkgrel=1 pkgdesc="Library for mp3splt a utility for mp3/ogg splitting without decoding" _F_sourceforge_dirname="mp3splt" @@ -10,6 +10,6 @@ Finclude sourceforge depends=('libtool' 'libvorbis' 'libmad' 'libid3tag') groups=('multimedia-extra') archs=('i686' 'x86_64') -sha1sums=('d925cd1998050c074e06d2c3ce8db79066fee768') +sha1sums=('08238cb192de35524abadda6200ff8fd9d2a5df5') # optimization OK From cedynamix at gmail.com Sat Mar 13 14:27:21 2010 From: cedynamix at gmail.com (Cedynamix) Date: Sat, 13 Mar 2010 14:27:21 +0100 (CET) Subject: [Frugalware-git] frugalware-current: mp3splt-gtk-0.5.9-1-i686 Message-ID: <20100313132721.1981C1240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=8d63277417db241a4b71156da51545e9f37306a5 commit 8d63277417db241a4b71156da51545e9f37306a5 Author: Cedynamix Date: Sat Mar 13 14:26:59 2010 +0100 mp3splt-gtk-0.5.9-1-i686 * version bump diff --git a/source/multimedia-extra/mp3splt-gtk/FrugalBuild b/source/multimedia-extra/mp3splt-gtk/FrugalBuild index 3ffa5ea..4f6ffb3 100644 --- a/source/multimedia-extra/mp3splt-gtk/FrugalBuild +++ b/source/multimedia-extra/mp3splt-gtk/FrugalBuild @@ -2,15 +2,15 @@ # Maintainer: Cedrick Hannier alias Cedynamix pkgname=mp3splt-gtk -pkgver=0.5.8 +pkgver=0.5.9 pkgrel=1 pkgdesc="mp3splt-gtk is a interface for mp3splt, a utility for mp3/ogg splitting without decoding" _F_sourceforge_dirname="mp3splt" Finclude sourceforge -depends=('gtk+2' 'zlib' 'libmp3splt' 'audacious' 'libmowgli' 'dbus' 'gstreamer') +depends=('gtk+2' 'zlib' 'libmp3splt=0.5.9' 'audacious' 'libmowgli' 'dbus' 'gstreamer') groups=('multimedia-extra') archs=('i686' 'x86_64') Fconfopts="$Fconfopts --enable-audacious --disable-gstreamer --disable-mp3splttest" -sha1sums=('5df532ab46cf9bf0b574522c05bf1253b5ab4eb1') +sha1sums=('b8d002b8714ce9f0c21c830613b6bb2737eb6837') # optimization OK From cedynamix at gmail.com Sat Mar 13 14:30:50 2010 From: cedynamix at gmail.com (Cedynamix) Date: Sat, 13 Mar 2010 14:30:50 +0100 (CET) Subject: [Frugalware-git] frugalware-current: mp3splt-2.2.8-1-i686 Message-ID: <20100313133050.71C0D1240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=de39a2e2de2c9e99dd6c7761de435faf9463795f commit de39a2e2de2c9e99dd6c7761de435faf9463795f Author: Cedynamix Date: Sat Mar 13 14:30:32 2010 +0100 mp3splt-2.2.8-1-i686 * version bump diff --git a/source/multimedia-extra/mp3splt/FrugalBuild b/source/multimedia-extra/mp3splt/FrugalBuild index c2159fa..2577af3 100644 --- a/source/multimedia-extra/mp3splt/FrugalBuild +++ b/source/multimedia-extra/mp3splt/FrugalBuild @@ -1,14 +1,14 @@ -# Compiling Time: 0.09 SBU +# Compiling Time: 0.02 SBU # Maintainer: Cedrick Hannier alias Cedynamix pkgname=mp3splt -pkgver=2.2.7 +pkgver=2.2.8 pkgrel=1 pkgdesc="mp3splt is a utility for mp3/ogg splitting without decoding" Finclude sourceforge depends=('libmp3splt') groups=('multimedia-extra') archs=('i686' 'x86_64') -sha1sums=('e9ec5b601466fad4fc0df986473b30b143f137b4') +sha1sums=('9e2163194577d32e361502c078297a7f38416966') # optimization OK From exceed.cedric at gmail.com Sat Mar 13 14:33:29 2010 From: exceed.cedric at gmail.com (exceed) Date: Sat, 13 Mar 2010 14:33:29 +0100 (CET) Subject: [Frugalware-git] frugalware-current: clamtk-4.25-1-i686 Message-ID: <20100313133329.E5C841240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=4b89e559945aabe97ee26ab6f1494913f1cc1d05 commit 4b89e559945aabe97ee26ab6f1494913f1cc1d05 Author: exceed Date: Sat Mar 13 15:36:43 2010 +0100 clamtk-4.25-1-i686 * Version bump * Added some lang files & declare array[po] out of build() diff --git a/source/xapps-extra/clamtk/FrugalBuild b/source/xapps-extra/clamtk/FrugalBuild index 572a623..e744414 100644 --- a/source/xapps-extra/clamtk/FrugalBuild +++ b/source/xapps-extra/clamtk/FrugalBuild @@ -2,8 +2,8 @@ # Maintainer: Janos Kovacs pkgname=clamtk -pkgver=4.20 -pkgrel=2 +pkgver=4.25 +pkgrel=1 pkgdesc="ClamTk is a GUI front-end for ClamAV using gtk2-perl" rodepends=('perl-gtk2' 'clamav' 'perl-date-calc' 'perl-file-find-rule' 'perl-gettext') groups=('xapps-extra') @@ -11,15 +11,18 @@ replaces=('klamav') archs=('i686' 'x86_64') Finclude sourceforge url="http://clamtk.sourceforge.net/" -sha1sums=('0597b6b048704a9f9937551625eb5066cab2a987') +sha1sums=('799e36dac02a64145fbb9b6e1a5ffd04d2fb2b49') +lang=('ar' 'bg' 'cs' 'da' 'de' 'el_GR' 'en_GB' 'es' 'fr' 'gl' 'he' 'hr' 'hu' 'it' 'ja' 'ko' 'ms' \ + 'nb' 'nl' 'nl_BE' 'nl' 'pl' 'pt_BR' 'ro' 'ru' 'sk' 'sl' 'sv' 'th' 'tr' 'zh_CN') -build() { +build() +{ Fcd Fexerel usr/bin/clamtk Ficonrel ${pkgname}.{png,xpm} Ffilerel $Fmenudir/${pkgname}.desktop Ffilerel /usr/share/man/man1/${pkgname}.1.gz - for i in {cs_CZ,da,de,es,fr,it,pl,pt_BR,ru,zh_CN}; do + for i in ${lang[@]}; do Ffilerel po/$i.mo usr/share/locale/$i/LC_MESSAGES/$pkgname.mo done } From cedynamix at gmail.com Sat Mar 13 15:08:03 2010 From: cedynamix at gmail.com (Cedynamix) Date: Sat, 13 Mar 2010 15:08:03 +0100 (CET) Subject: [Frugalware-git] frugalware-current: youtube-dl-2010.03.13-1-i686 Message-ID: <20100313140803.C60171240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=e33485e6493810aa0913e14e63e75dc028e31703 commit e33485e6493810aa0913e14e63e75dc028e31703 Author: Cedynamix Date: Sat Mar 13 15:07:34 2010 +0100 youtube-dl-2010.03.13-1-i686 * version bump diff --git a/source/multimedia-extra/youtube-dl/FrugalBuild b/source/multimedia-extra/youtube-dl/FrugalBuild index c007d51..f557bed 100644 --- a/source/multimedia-extra/youtube-dl/FrugalBuild +++ b/source/multimedia-extra/youtube-dl/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: Cedrick Hannier alias Cedynamix pkgname=youtube-dl -pkgver=2010.01.06 +pkgver=2010.03.13 pkgrel=1 pkgdesc="A small command-line program to download videos from YouTube.com" archs=('i686' 'x86_64' 'ppc') @@ -12,7 +12,7 @@ groups=('multimedia-extra') options=('noversrc') up2date="lynx -dump -listonly http://bitbucket.org/rg3/youtube-dl/downloads/ | grep -m1 201 | sed 's/.*20/20/; s/\.zip//g'" source=(http://bitbucket.org/rg3/youtube-dl/get/$pkgver.zip) -sha1sums=('247065cd5f7e7f569f6ac958ee44de9e01abdf31') +sha1sums=('64b7743cafeb79aa58145f74769b59ea63e56a76') build() { Finstall 755 youtube-dl/youtube-dl /usr/bin/youtube-dl From cedynamix at gmail.com Sat Mar 13 15:43:20 2010 From: cedynamix at gmail.com (Cedynamix) Date: Sat, 13 Mar 2010 15:43:20 +0100 (CET) Subject: [Frugalware-git] frugalware-current: xmind-3.1.1-1-i686 Message-ID: <20100313144320.2DD0D1240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=e7227a4f10f8ca89bb99930f755ab79bff382c1d commit e7227a4f10f8ca89bb99930f755ab79bff382c1d Author: Cedynamix Date: Sat Mar 13 15:33:17 2010 +0100 xmind-3.1.1-1-i686 * version bump diff --git a/source/xapps-extra/xmind/FrugalBuild b/source/xapps-extra/xmind/FrugalBuild index 9187908..ae76d4a 100644 --- a/source/xapps-extra/xmind/FrugalBuild +++ b/source/xapps-extra/xmind/FrugalBuild @@ -3,9 +3,9 @@ pkgname=xmind extrapkg=portable -pkgver=3.0.3 -extraver=200904291819 -pkgrel=3 +pkgver=3.1.1 +extraver=200912022330 +pkgrel=1 pkgdesc="Brainstorming and Mind Mapping Software" url="http://www.xmind.net" groups=('xapps-extra') @@ -15,10 +15,10 @@ _F_cd_path="./" up2date="lynx -dump http://www.xmind.net/downloads/ | grep $extrapkg-[0-9\.]*zip$ | sed 's/$extrapkg-\(.*\).$extraver.zip/\1/' | Flastarchive" source=(http://dl.xmind.org/$pkgname-$extrapkg-$pkgver.$extraver.zip \ $pkgname.desktop $pkgname.png xmindini.diff) -sha1sums=('698f3270bf4ea55c34f6c2fe836a0431afcd4235' \ +sha1sums=('faa8b5a1196b70901a027cb9f41dd0f8f629e6c1' \ '89c9837c8c0e316dcab7edbaee95006bead36280' \ '1aeaea5206627c760ba7fd25a9c87a942b9687eb' \ - 'c649d0ac7bd0952d2fe6d9605b9b573a685f9cf7') + '1578bd325a9b2f8a2d31a59d41476245e2d8ee37') build() { Fcd @@ -30,9 +30,9 @@ build() { find $Fsrcdir/ -maxdepth 1 -type f -exec cp {} $Fdestdir/usr/share/xmind/ \; || Fdie Fcp Commons /usr/share/xmind/ if [ "$CARCH" == "i686" ]; then - SUBDIR="XMind for Linux" + SUBDIR="XMind_Linux" elif [ "$CARCH" == "x86_64" ]; then - SUBDIR="XMind for Linux 64bit" + SUBDIR="XMind_Linux_64bit" fi cp -a "$Fsrcdir/$SUBDIR" "$Fdestdir/usr/share/xmind/" || Fdie ln -sf "/usr/share/xmind/$SUBDIR/xmind" $Fdestdir/usr/bin/ || Fdie diff --git a/source/xapps-extra/xmind/xmindini.diff b/source/xapps-extra/xmind/xmindini.diff index c01bb80..6928cdf 100644 --- a/source/xapps-extra/xmind/xmindini.diff +++ b/source/xapps-extra/xmind/xmindini.diff @@ -1,10 +1,8 @@ ---- XMind for Linux/xmind.ini 2009-08-10 14:40:20.000000000 +0200 -+++ XMind for Linux/xmind.ini 2009-08-10 14:27:04.000000000 +0200 -@@ -9,5 +9,5 @@ - -Xmx512m +--- XMind_Linux/xmind-bin.ini 2009-12-03 08:48:19.000000000 +0100 ++++ XMind_Linux/xmind-bin.ini 2010-03-13 15:23:41.000000000 +0100 +@@ -11,4 +11,4 @@ -XX:MaxPermSize=256m - -Dosgi.requiredJavaVersion=1.5 + -Xms128m + -Xmx512m --Dosgi.instance.area=../Commons/data/workspace-cathy ---Dosgi.configuration.area=../Commons/data/configuration-cathy +-Dosgi.instance.area=@user.home/.xmind/workspace-cathy -+-Dosgi.configuration.area=@user.home/.xmind/configuration-cathy From priyank at frugalware.org Sat Mar 13 16:12:23 2010 From: priyank at frugalware.org (Priyank) Date: Sat, 13 Mar 2010 16:12:23 +0100 (CET) Subject: [Frugalware-git] frugalware-current: yudit-2.9.2-1-i686 Message-ID: <20100313151223.F1C6F1240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=c18ac611abd6c41054c512d917c21fb1de8e10f2 commit c18ac611abd6c41054c512d917c21fb1de8e10f2 Author: Priyank Date: Sat Mar 13 12:01:16 2010 +0530 yudit-2.9.2-1-i686 * Version Bump diff --git a/source/xapps-extra/yudit/FrugalBuild b/source/xapps-extra/yudit/FrugalBuild index bf3ca90..2bf0e9b 100644 --- a/source/xapps-extra/yudit/FrugalBuild +++ b/source/xapps-extra/yudit/FrugalBuild @@ -2,8 +2,8 @@ # Maintainer: Priyank Gosalia pkgname=yudit -pkgver=2.9.0 -pkgrel=2 +pkgver=2.9.2 +pkgrel=1 pkgdesc="(Y)unicode text editor for all unices" url="http://www.yudit.org/" depends=('libx11>=1.2.1-1' 'libxkbui>=1.0.2-2' 'libxext>=1.0.5-3' 'libxaw>=1.0.5-1' 'gettext') @@ -11,6 +11,6 @@ groups=('xapps-extra') archs=('i686' 'x86_64') up2date="lynx -dump http://yudit.org/download.html | grep -m1 tar.bz2$ | sed 's/.*-\(.*\).t.*/\1/'" source=(http://yudit.org/download/yudit-$pkgver.tar.bz2) -sha1sums=('d958c88f93707036e031c6d6ac12e2d20d68d0fd') +sha1sums=('9e38264c3a4faef8d23583aa24c4cf2ff5527eaf') unset MAKEFLAGS # optimization OK From priyank at frugalware.org Sat Mar 13 16:12:24 2010 From: priyank at frugalware.org (Priyank) Date: Sat, 13 Mar 2010 16:12:24 +0100 (CET) Subject: [Frugalware-git] frugalware-current: libzip-0.9.3-1-i686 Message-ID: <20100313151224.2AD901240003@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=575ff5a11624b26485afb1081d7fd815db3ae2d8 commit 575ff5a11624b26485afb1081d7fd815db3ae2d8 Author: Priyank Date: Sat Mar 13 20:41:24 2010 +0530 libzip-0.9.3-1-i686 * Version bump diff --git a/source/lib/libzip/FrugalBuild b/source/lib/libzip/FrugalBuild index c51f826..4cd8bdc 100644 --- a/source/lib/libzip/FrugalBuild +++ b/source/lib/libzip/FrugalBuild @@ -2,8 +2,8 @@ # Maintainer: Priyank Gosalia pkgname=libzip -pkgver=0.9 -pkgrel=2 +pkgver=0.9.3 +pkgrel=1 pkgdesc="libzip is a C library for reading, creating, and modifying zip archives." url="http://www.nih.at/libzip/" depends=() @@ -11,6 +11,6 @@ groups=('lib') archs=('i686' 'x86_64' 'ppc') up2date="lynx -dump $url | grep Current | sed 's/.*n: \(.*\) re.*/\1/'" source=($url/$pkgname-$pkgver.tar.gz) -sha1sums=('8cb2d875447b4efd0323627aa9b700c13ab8eae8') +sha1sums=('0e7d5110b3611a72c5384898ef0e202651b530fb') # optimization OK From priyank at frugalware.org Sat Mar 13 16:16:45 2010 From: priyank at frugalware.org (Priyank) Date: Sat, 13 Mar 2010 16:16:45 +0100 (CET) Subject: [Frugalware-git] frugalware-current: libisofs-0.6.28-1-i686 Message-ID: <20100313151645.AEACC1240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=ef864c130da56623b1971b425c019f51d8b4cb7f commit ef864c130da56623b1971b425c019f51d8b4cb7f Author: Priyank Date: Sat Mar 13 20:45:56 2010 +0530 libisofs-0.6.28-1-i686 * Version bump diff --git a/source/lib-extra/libisofs/FrugalBuild b/source/lib-extra/libisofs/FrugalBuild index 76fd6af..ee0d4cb 100644 --- a/source/lib-extra/libisofs/FrugalBuild +++ b/source/lib-extra/libisofs/FrugalBuild @@ -3,7 +3,7 @@ # Contributor: James Buren pkgname=libisofs -pkgver=0.6.24 +pkgver=0.6.28 pkgrel=1 pkgdesc="A library for creating ISO filesystem, among other things." url="http://libburnia-project.org" @@ -12,6 +12,6 @@ groups=('lib-extra') archs=('i686' 'x86_64' 'ppc') up2date="Flasttar $url/wiki/Releases" source=(http://files.libburnia-project.org/releases/$pkgname-$pkgver.tar.gz) -sha1sums=('128ac46cc734b8dd1d0cd1e4b618c2336b53a2e1') +sha1sums=('f76b9bd8393328b0590eb1795f0494d155a7193a') # optimization OK From priyank at frugalware.org Sat Mar 13 16:26:14 2010 From: priyank at frugalware.org (Priyank) Date: Sat, 13 Mar 2010 16:26:14 +0100 (CET) Subject: [Frugalware-git] frugalware-current: tea-27.0.0-1-i686 Message-ID: <20100313152614.196321240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=3277d4dcabe966fac32e5a9c0beec57917a6f35a commit 3277d4dcabe966fac32e5a9c0beec57917a6f35a Author: Priyank Date: Sat Mar 13 20:55:35 2010 +0530 tea-27.0.0-1-i686 * Version bump * Removed obsolete patch (tea-qmake.diff) diff --git a/source/xapps-extra/tea/FrugalBuild b/source/xapps-extra/tea/FrugalBuild index e97ec0c..603388f 100644 --- a/source/xapps-extra/tea/FrugalBuild +++ b/source/xapps-extra/tea/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: Priyank Gosalia pkgname=tea -pkgver=25.0.0 +pkgver=27.0.0 pkgrel=1 pkgdesc="TEA is a QT-based text editor for Linux and *BSD." _F_sourceforge_dirname="tea-editor" @@ -13,13 +13,12 @@ license="GPL" depends=('qt4' 'aspell' 'libzip') groups=('xapps-extra') archs=('i686' 'x86_64') -source=(${source/tea-editor-/tea-} $pkgname-qmake.diff) +source=(${source/tea-editor-/tea-}) _F_desktop_name="Tea Text Editor (Qt)" _F_desktop_icon=tea.png _F_desktop_categories="Utility;Editor;" _F_cd_path="$pkgname-$pkgver" -sha1sums=('c05b8858d7c99f410a967fe64d4a1b02f060b30f' \ - 'd88b041a04f97ae10f001eb6d3ce5e22ef068d8e') +sha1sums=('b0d6d3b806468368f8d58bfa2f159ce0c8a04142') build() { diff --git a/source/xapps-extra/tea/tea-qmake.diff b/source/xapps-extra/tea/tea-qmake.diff deleted file mode 100644 index 8b0617f..0000000 --- a/source/xapps-extra/tea/tea-qmake.diff +++ /dev/null @@ -1,16 +0,0 @@ -diff -Naur tea-22.3.0/src.pro tea-22.3.0.new/src.pro ---- tea-22.3.0/src.pro 2009-01-21 19:10:22.000000000 +0530 -+++ tea-22.3.0.new/src.pro 2009-02-01 12:33:04.000000000 +0530 -@@ -26,8 +26,11 @@ - xml \ - script \ - svg -+;target.path = /usr/local/bin -+DESTDIR = /var/tmp/fst/pkg -+PREFIX = $$DESTDIR/usr - TARGET = bin/tea --target.path = /usr/local/bin -+target.path = $$PREFIX/bin - INSTALLS += target - RESOURCES += application.qrc \ - rlvn.qrc From boobaa at frugalware.org Sat Mar 13 16:26:20 2010 From: boobaa at frugalware.org (CSÉCSY László) Date: Sat, 13 Mar 2010 16:26:20 +0100 (CET) Subject: [Frugalware-git] frugalware-current: drupal-tinymce-5.x_1.11-1-i686 version bump Message-ID: <20100313152620.47A591240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=d97dd855bddb2e836ba29d49d7643cdab3aacaf5 commit d97dd855bddb2e836ba29d49d7643cdab3aacaf5 Author: CS??CSY L??szl?? Date: Sat Mar 13 16:26:12 2010 +0100 drupal-tinymce-5.x_1.11-1-i686 version bump diff --git a/source/network-extra/drupal-tinymce/FrugalBuild b/source/network-extra/drupal-tinymce/FrugalBuild index aa23953..c6a109e 100644 --- a/source/network-extra/drupal-tinymce/FrugalBuild +++ b/source/network-extra/drupal-tinymce/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: CS?CSY L?szl? _F_drupal_module=tinymce -pkgver=5.x_1.10 +pkgver=5.x_1.11 pkgrel=1 pkgdesc="Integrates the TinyMCE WYSIWYG editor into Drupal" Finclude sourceforge drupal @@ -11,7 +11,7 @@ source=(${source[@]} http://$_F_sourceforge_mirror.dl.sourceforge.net/sourceforg http://ftp.frugalware.org/pub/other/sources/tinymce/tmclang-20080121.tar.gz) # This is to be fetched with: # curl -d "dlang[]=de&dlang[]=fr&dlang[]=hu&format=gzip" http://tinymce.moxiecode.com/language.php >tmclang-$date.tar.gz -sha1sums=('f0670e997c7520163d9843c03586e119df89a6d0' \ +sha1sums=('51a1b32708dcf94b2e04c2f48a77e9a811a66433' \ 'f85b183ba97aa839f5e48df4ac73ec3cace74474' \ '8007bd67b63224c169cd717f6668b0f712f87504' \ '12bdce54c5f90e3c6bcf38253a97e36a5d5aab17') From boobaa at frugalware.org Sat Mar 13 16:52:18 2010 From: boobaa at frugalware.org (CSÉCSY László) Date: Sat, 13 Mar 2010 16:52:18 +0100 (CET) Subject: [Frugalware-git] frugalware-current: drupal6-comment_notify-6.x_1.4-1-i686 version bump Message-ID: <20100313155218.062BD1240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=db23f4caa71c5536647df060db83f30a7a741e9f commit db23f4caa71c5536647df060db83f30a7a741e9f Author: CS??CSY L??szl?? Date: Sat Mar 13 16:52:09 2010 +0100 drupal6-comment_notify-6.x_1.4-1-i686 version bump diff --git a/source/network-extra/drupal6-comment_notify/FrugalBuild b/source/network-extra/drupal6-comment_notify/FrugalBuild index 9247c05..ab2cc1e 100644 --- a/source/network-extra/drupal6-comment_notify/FrugalBuild +++ b/source/network-extra/drupal6-comment_notify/FrugalBuild @@ -3,8 +3,8 @@ _F_drupal_module=comment_notify _F_drupal_ver=6.x -pkgver=6.x_1.3 +pkgver=6.x_1.4 pkgrel=1 pkgdesc="Sends notification e-mails to visitors about new comments on Drupal pages where they have commented" Finclude drupal -sha1sums=('42d98ce7a786ec14c39c159f497f022889dfe6d2') +sha1sums=('970824e265ec3ff11431e409d020ea300f61879c') From boobaa at frugalware.org Sat Mar 13 16:54:07 2010 From: boobaa at frugalware.org (CSÉCSY László) Date: Sat, 13 Mar 2010 16:54:07 +0100 (CET) Subject: [Frugalware-git] frugalware-current: drupal-taxonomy_access-5.x_2.0-1-i686 version bump Message-ID: <20100313155407.031DA1240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=61f128b2ac152aa3d628525f787f09dd16c022bf commit 61f128b2ac152aa3d628525f787f09dd16c022bf Author: CS??CSY L??szl?? Date: Sat Mar 13 16:54:01 2010 +0100 drupal-taxonomy_access-5.x_2.0-1-i686 version bump diff --git a/source/network-extra/drupal-taxonomy_access/FrugalBuild b/source/network-extra/drupal-taxonomy_access/FrugalBuild index 0670efa..0be9116 100644 --- a/source/network-extra/drupal-taxonomy_access/FrugalBuild +++ b/source/network-extra/drupal-taxonomy_access/FrugalBuild @@ -2,8 +2,8 @@ # Maintainer: CS?CSY L?szl? _F_drupal_module=taxonomy_access -pkgver=5.x_1.1 +pkgver=5.x_2.0 pkgrel=1 pkgdesc="Access control for user roles based on taxonomy categories in Drupal" Finclude drupal -sha1sums=('3f872cf30c47ac6e82e9074b8c3932b21c665973') +sha1sums=('fa20540a53023f7a39c487974b69cb3a970f30cd') From ryuo at frugalware.org Sat Mar 13 16:56:36 2010 From: ryuo at frugalware.org (James Buren) Date: Sat, 13 Mar 2010 16:56:36 +0100 (CET) Subject: [Frugalware-git] frugalware-current: Merge branch 'master' of git.frugalware.org:/home/ftp/pub/frugalware/frugalware-current Message-ID: <20100313155636.E8B8F1240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=e38802a2226a4c79199e247e90675be0a3e9b2da commit e38802a2226a4c79199e247e90675be0a3e9b2da Merge: c021867 61f128b Author: James Buren Date: Sat Mar 13 09:52:12 2010 -0600 Merge branch 'master' of git.frugalware.org:/home/ftp/pub/frugalware/frugalware-current From devil505linux at gmail.com Sat Mar 13 17:07:10 2010 From: devil505linux at gmail.com (Devil505) Date: Sat, 13 Mar 2010 17:07:10 +0100 (CET) Subject: [Frugalware-git] frugalware-current: courier-imap-4.7.0-1-i686 * version bump Message-ID: <20100313160710.094491240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=a5bf5aad74fd8b5c0914b8af3648ee441a181963 commit a5bf5aad74fd8b5c0914b8af3648ee441a181963 Author: Devil505 Date: Sat Mar 13 17:05:09 2010 +0100 courier-imap-4.7.0-1-i686 * version bump diff --git a/source/network-extra/courier-imap/FrugalBuild b/source/network-extra/courier-imap/FrugalBuild index 4448bbf..0d04791 100644 --- a/source/network-extra/courier-imap/FrugalBuild +++ b/source/network-extra/courier-imap/FrugalBuild @@ -3,7 +3,7 @@ # Contributor: Karoly CZOVEK pkgname=courier-imap -pkgver=4.6.0 +pkgver=4.7.0 pkgrel=1 pkgdesc="The Courier IMAP and POP3 server" _F_sourceforge_dirname="courier" @@ -18,7 +18,7 @@ makedepends=('postfix' 'openldap' 'mysql>=5.1.34' 'postgresql' 'courier-authlib' up2date="lynx -dump 'http://www.courier-mta.org/download.php'|grep imap|sed -n 's/.*-\(.*\)\.t.*/\1/;1 p'" source=($source rc.courier-imapd rc.courier-imapd-ssl rc.courier-pop3d \ rc.courier-pop3d-ssl README.frugalware) -sha1sums=('bec24c374007c3da265e0544891992ce5994d57f' \ +sha1sums=('9729f3add8692563865da5167cfe88f2227c3968' \ '0da77a7b652876916c7e228bc889586cc5e45176' \ '036597f9d7609fc172509c07198be5057a1d6651' \ '52babf7670b08ab32b426f1d7dd3692c8aa49b4c' \ From priyank at frugalware.org Sat Mar 13 17:18:06 2010 From: priyank at frugalware.org (Priyank) Date: Sat, 13 Mar 2010 17:18:06 +0100 (CET) Subject: [Frugalware-git] frugalwareutils: fwnet_writeconfig(): Write 'wpa_supplicant' to config file if it's set. Message-ID: <20100313161806.26D661240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalwareutils.git;a=commitdiff;h=d3f9bd4d3700ee0daa5c1296c8bb6bec5764580f commit d3f9bd4d3700ee0daa5c1296c8bb6bec5764580f Author: Priyank Date: Sat Mar 13 21:48:03 2010 +0530 fwnet_writeconfig(): Write 'wpa_supplicant' to config file if it's set. diff --git a/libfwnetconfig/libfwnetconfig.c b/libfwnetconfig/libfwnetconfig.c index 416170d..c60f84a 100644 --- a/libfwnetconfig/libfwnetconfig.c +++ b/libfwnetconfig/libfwnetconfig.c @@ -764,6 +764,8 @@ int fwnet_writeconfig(fwnet_profile_t *profile, char *host) fprintf(fp, "wpa_psk = %s\n", iface->wpa_psk); if(iface->wpa_driver != NULL && strlen(iface->wpa_driver)) fprintf(fp, "wpa_driver = %s\n", iface->wpa_driver); + if(iface->wpa_supplicant) + fprintf(fp, "wpa_supplicant = yes\n"); if(fwnet_is_dhcp(iface)) { fprintf(fp, "options = dhcp\n"); From vmiklos at frugalware.org Sat Mar 13 17:26:50 2010 From: vmiklos at frugalware.org (Miklos Vajna) Date: Sat, 13 Mar 2010 17:26:50 +0100 (CET) Subject: [Frugalware-git] kernel2633: r8168-8.016.00-3-i686 Message-ID: <20100313162650.31A631240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=kernel2633.git;a=commitdiff;h=17498b19c045d8ccca1de3acab3988099797def5 commit 17498b19c045d8ccca1de3acab3988099797def5 Author: Miklos Vajna Date: Sat Mar 13 17:26:36 2010 +0100 r8168-8.016.00-3-i686 - add kernel-2.6.33.patch diff --git a/source/network-extra/r8168/FrugalBuild b/source/network-extra/r8168/FrugalBuild index 9ed633f..b51a10c 100644 --- a/source/network-extra/r8168/FrugalBuild +++ b/source/network-extra/r8168/FrugalBuild @@ -4,16 +4,18 @@ pkgname=r8168 pkgver=8.016.00 -pkgrel=2 +pkgrel=3 Finclude kernel-module pkgdesc="Realtek driver for RTL8111/RTL8168 cards." url="http://www.realtek.com.tw" groups=('network-extra') archs=('i686' 'x86_64') up2date="Flasttar http://code.google.com/p/arcon/downloads/list" -source=(http://arcon.googlecode.com/files/${pkgname}-${pkgver}.tar.bz2 README.Frugalware) +source=(http://arcon.googlecode.com/files/${pkgname}-${pkgver}.tar.bz2 README.Frugalware\ + kernel-2.6.33.patch) sha1sums=('1a6e3ee3c79de87d0a82e505feb6925f2ba1e7a9' \ - 'e13c36b76076d097a2dc9696a24024f816e8b3e2') + 'e13c36b76076d097a2dc9696a24024f816e8b3e2' \ + '0c4f13bdc307a5d0a81c691b85d92cdaaea28f05') build() { unset MAKEFLAGS diff --git a/source/network-extra/r8168/kernel-2.6.33.patch b/source/network-extra/r8168/kernel-2.6.33.patch new file mode 100644 index 0000000..4b630e9 --- /dev/null +++ b/source/network-extra/r8168/kernel-2.6.33.patch @@ -0,0 +1,54 @@ +From 55e59c4b905de2060b32b038032aa6d556f6cf9c Mon Sep 17 00:00:00 2001 +From: Miklos Vajna +Date: Sat, 13 Mar 2010 17:21:59 +0100 +Subject: [PATCH] Convert ethtool get_stats_count() ops to get_sset_count() + +This string query operation was supposed to be replaced by the +generic get_sset_count() starting in 2007. Convert r8168's +implementation. +--- + src/r8168_n.c | 13 +++++++++---- + 1 files changed, 9 insertions(+), 4 deletions(-) + +diff --git a/src/r8168_n.c b/src/r8168_n.c +index 6bf88a7..05318ce 100644 +--- a/src/r8168_n.c ++++ b/src/r8168_n.c +@@ -306,7 +306,7 @@ struct _kc_ethtool_ops { + void (*self_test)(struct net_device *, struct ethtool_test *, u64 *); + void (*get_strings)(struct net_device *, u32 stringset, u8 *); + int (*phys_id)(struct net_device *, u32); +- int (*get_stats_count)(struct net_device *); ++ int (*get_sset_count)(struct net_device *); + void (*get_ethtool_stats)(struct net_device *, struct ethtool_stats *, + u64 *); + } *ethtool_ops = NULL; +@@ -1718,9 +1718,14 @@ struct rtl8168_counters { + }; + + static int +-rtl8168_get_stats_count(struct net_device *dev) ++rtl8168_get_sset_count(struct net_device *dev, int stringset) + { +- return ARRAY_SIZE(rtl8168_gstrings); ++ switch (stringset) { ++ case ETH_SS_STATS: ++ return ARRAY_SIZE(rtl8168_gstrings); ++ default: ++ return -EINVAL; ++ } + } + + static void +@@ -1931,7 +1936,7 @@ static struct ethtool_ops rtl8168_ethtool_ops = { + .get_wol = rtl8168_get_wol, + .set_wol = rtl8168_set_wol, + .get_strings = rtl8168_get_strings, +- .get_stats_count = rtl8168_get_stats_count, ++ .get_sset_count = rtl8168_get_sset_count, + .get_ethtool_stats = rtl8168_get_ethtool_stats, + #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,23) + #ifdef ETHTOOL_GPERMADDR +-- +1.7.0.2 + From vmiklos at frugalware.org Sat Mar 13 17:29:17 2010 From: vmiklos at frugalware.org (Miklos Vajna) Date: Sat, 13 Mar 2010 17:29:17 +0100 (CET) Subject: [Frugalware-git] frugalware-current: subversion-1.6.9-4-i686 Message-ID: <20100313162917.320E41240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=47af1651dbd599bb167da52cec19600cbb1696da commit 47af1651dbd599bb167da52cec19600cbb1696da Author: Miklos Vajna Date: Sat Mar 13 17:28:48 2010 +0100 subversion-1.6.9-4-i686 - add missing sqlite3 dep - thanks Roalf from #frugalware for reporting the bug diff --git a/source/devel-extra/subversion/FrugalBuild b/source/devel-extra/subversion/FrugalBuild index 98acc54..984d139 100644 --- a/source/devel-extra/subversion/FrugalBuild +++ b/source/devel-extra/subversion/FrugalBuild @@ -3,10 +3,10 @@ pkgname=subversion pkgver=1.6.9 -pkgrel=3 +pkgrel=4 pkgdesc="A version control system that is a compelling replacement for CVS." url="http://subversion.tigris.org/" -depends=('neon>=0.28.3' 'apr-util>=1.2.12' 'apr>=1.2.12' 'db>=4.7.25') +depends=('neon>=0.28.3' 'apr-util>=1.2.12' 'apr>=1.2.12' 'db>=4.7.25' 'sqlite3') makedepends=('krb5' 'swig>=1.3.34') groups=('devel-extra') archs=('i686' 'x86_64' 'ppc') From vmiklos at frugalware.org Sat Mar 13 17:50:07 2010 From: vmiklos at frugalware.org (Miklos Vajna) Date: Sat, 13 Mar 2010 17:50:07 +0100 (CET) Subject: [Frugalware-git] kernel2633: r8169-6.010.00-10-i686 Message-ID: <20100313165007.782531240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=kernel2633.git;a=commitdiff;h=12d63d5dfe646a65b2af9bd88c1d2d974da67b6c commit 12d63d5dfe646a65b2af9bd88c1d2d974da67b6c Author: Miklos Vajna Date: Sat Mar 13 17:49:48 2010 +0100 r8169-6.010.00-10-i686 - add kernel-2.6.33.patch diff --git a/source/network-extra/r8169/FrugalBuild b/source/network-extra/r8169/FrugalBuild index 29eb7ab..a3ef5d5 100644 --- a/source/network-extra/r8169/FrugalBuild +++ b/source/network-extra/r8169/FrugalBuild @@ -3,7 +3,7 @@ pkgname=r8169 pkgver=6.010.00 -pkgrel=9 +pkgrel=10 Finclude sourceforge kernel-module pkgdesc="Realtek driver for RTL8169/8110 cards." url="http://www.realtek.com.tw" @@ -11,10 +11,11 @@ groups=('network-extra') archs=('i686' 'x86_64') up2date="Flasttar ftp://WebUser:DAx7h9V at 202.65.194.211/cn/nic/" source=(ftp://WebUser:DAx7h9V at 202.65.194.212/cn/nic/r8169-$pkgver.tar.bz2 \ - kernel-2.6.3{0,1}.patch) + kernel-2.6.3{0,1,3}.patch) sha1sums=('4a96f2abea67bf389235e35aab845439216d12fb' \ 'fac6a84e1e027942339d5d692a03efe7ddce26d8' \ - '1e14ec6ce2980f9c83d7b1ab247cd0ca6521e890') + '1e14ec6ce2980f9c83d7b1ab247cd0ca6521e890' \ + '07ae57dad0525d4bc9fd362ad43806c7b4b6a132') build() { unset MAKEFLAGS diff --git a/source/network-extra/r8169/kernel-2.6.33.patch b/source/network-extra/r8169/kernel-2.6.33.patch new file mode 100644 index 0000000..6acac6f --- /dev/null +++ b/source/network-extra/r8169/kernel-2.6.33.patch @@ -0,0 +1,30 @@ +diff --git a/src/r8169_n.c b/src/r8169_n.c +index c0b7d0f..83e4755 100644 +--- a/src/r8169_n.c ++++ b/src/r8169_n.c +@@ -1035,9 +1035,14 @@ struct rtl8169_counters { + u16 tx_underun; + }; + +-static int rtl8169_get_stats_count(struct net_device *dev) ++static int rtl8169_get_sset_count(struct net_device *dev, int stringset) + { +- return ARRAY_SIZE(rtl8169_gstrings); ++ switch (stringset) { ++ case ETH_SS_STATS: ++ return ARRAY_SIZE(rtl8169_gstrings); ++ default: ++ return -EINVAL; ++ } + } + + static void rtl8169_get_ethtool_stats(struct net_device *dev, +@@ -1148,7 +1153,7 @@ static struct ethtool_ops rtl8169_ethtool_ops = { + .get_wol = rtl8169_get_wol, + .set_wol = rtl8169_set_wol, + .get_strings = rtl8169_get_strings, +- .get_stats_count = rtl8169_get_stats_count, ++ .get_sset_count = rtl8169_get_sset_count, + .get_ethtool_stats = rtl8169_get_ethtool_stats, + #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,23) + #ifdef ETHTOOL_GPERMADDR From vmiklos at frugalware.org Sat Mar 13 18:02:06 2010 From: vmiklos at frugalware.org (Miklos Vajna) Date: Sat, 13 Mar 2010 18:02:06 +0100 (CET) Subject: [Frugalware-git] kernel2633: ndiswrapper-1.55-10-i686 Message-ID: <20100313170206.46DE21240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=kernel2633.git;a=commitdiff;h=e41b5ffead0bba4c9ff337cb3b3d27c6eedfd2e4 commit e41b5ffead0bba4c9ff337cb3b3d27c6eedfd2e4 Author: Miklos Vajna Date: Sat Mar 13 18:01:54 2010 +0100 ndiswrapper-1.55-10-i686 - add kernel-2.6.33.patch diff --git a/source/network/ndiswrapper/FrugalBuild b/source/network/ndiswrapper/FrugalBuild index 958450f..9933dbe 100644 --- a/source/network/ndiswrapper/FrugalBuild +++ b/source/network/ndiswrapper/FrugalBuild @@ -4,7 +4,7 @@ pkgname=ndiswrapper pkgver=1.55 -pkgrel=9 +pkgrel=10 pkgdesc="Wrapper for using Windows drivers for some wireless cards" _F_kernelmod_scriptlet=$pkgname.install Finclude kernel-module sourceforge @@ -12,11 +12,12 @@ depends=(${depends[@]} 'pciutils' 'wireless_tools') groups=('network') archs=('i686' 'x86_64') source=(${source[@]} README.Frugalware ndiswrapper-detect-fix-x86_64.patch \ - kernel-2.6.31.patch) + kernel-2.6.3{1,3}.patch) sha1sums=('84f7b08347f09df109722dccfdf18cf439fbc3be' \ 'c3f24143cb9814326a2c0c3cbc8d58d953bac268' \ '7e46cc4bb72520d911f256748e8c3936498f001b' \ - '01f0509efd3e9efd38746ed07e39cb691708dadb') + '01f0509efd3e9efd38746ed07e39cb691708dadb' \ + '5c559abf3b01822522401e1375b02192d0535e36') build() { diff --git a/source/network/ndiswrapper/kernel-2.6.33.patch b/source/network/ndiswrapper/kernel-2.6.33.patch new file mode 100644 index 0000000..03f7691 --- /dev/null +++ b/source/network/ndiswrapper/kernel-2.6.33.patch @@ -0,0 +1,26 @@ +diff --git a/driver/Makefile b/driver/Makefile +index 5e53055..3780bf9 100644 +--- a/driver/Makefile ++++ b/driver/Makefile +@@ -26,7 +26,7 @@ endif + # Kernel Makefile doesn't always know the exact kernel version, so we + # get it from the kernel headers instead and pass it to make. + +-VERSION_H := $(KBUILD)/include/linux/utsrelease.h ++VERSION_H := $(KBUILD)/include/generated/utsrelease.h + ifeq (,$(wildcard $(VERSION_H))) + VERSION_H := $(KBUILD)/include/linux/version.h + endif +diff --git a/driver/ntoskernel.h b/driver/ntoskernel.h +index db9d209..35bf68c 100644 +--- a/driver/ntoskernel.h ++++ b/driver/ntoskernel.h +@@ -875,7 +875,7 @@ static inline struct nt_slist *PopEntrySList(nt_slist_header *head, + #define u64_low_32(x) ((u32)x) + #define u64_high_32(x) ((u32)(x >> 32)) + +-#if LINUX_VERSION_CODE <= KERNEL_VERSION(2,6,32) ++#if LINUX_VERSION_CODE <= KERNEL_VERSION(2,6,33) + static inline u64 cmpxchg8b(volatile u64 *ptr, u64 old, u64 new) + { + u64 prev; From devil505linux at gmail.com Sat Mar 13 18:03:51 2010 From: devil505linux at gmail.com (Devil505) Date: Sat, 13 Mar 2010 18:03:51 +0100 (CET) Subject: [Frugalware-git] frugalware-current: courier-authlib-0.63.0-1-i686 * version bump Message-ID: <20100313170351.6401F1240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=37bda1e2a04a2309b1d29f0478992e2f51d384e3 commit 37bda1e2a04a2309b1d29f0478992e2f51d384e3 Author: Devil505 Date: Sat Mar 13 18:00:28 2010 +0100 courier-authlib-0.63.0-1-i686 * version bump diff --git a/source/network-extra/courier-authlib/FrugalBuild b/source/network-extra/courier-authlib/FrugalBuild index 0c92f14..4bb35ea 100644 --- a/source/network-extra/courier-authlib/FrugalBuild +++ b/source/network-extra/courier-authlib/FrugalBuild @@ -3,7 +3,7 @@ # Contributor: Karoly CZOVEK pkgname=courier-authlib -pkgver=0.62.4 +pkgver=0.63.0 pkgrel=1 pkgdesc="The Courier authentication library & daemon" _F_sourceforge_dirname="courier" @@ -19,7 +19,7 @@ backup=('etc/courier/authdaemonrc' 'etc/courier/authlib/userdb') up2date="lynx -dump 'http://www.courier-mta.org/download.php'|grep authlib|sed -n 's/.*-\(.*\)\.t.*/\1/;1 p'" source=($source rc.courier-authlib rc.courier-authlib-de.po authdaemonrc.frugal \ README.frugalware) -sha1sums=('3f543ecd03d520fdfa5259d0d0b45a132e50aa99' \ +sha1sums=('c0877274de8b58ec4c7a41cfd87ad9b37c408304' \ '0f9b61c096dc7d164c1c2733cdd9742534731c79' \ '2ac194885e90df15d3d7fc3f38f3822cd931fa9a' \ '57669b3fd1d3dda9d4e00d91a6a53ab31fd8e5a0' \ From vmiklos at frugalware.org Sat Mar 13 18:10:24 2010 From: vmiklos at frugalware.org (Miklos Vajna) Date: Sat, 13 Mar 2010 18:10:24 +0100 (CET) Subject: [Frugalware-git] kernel2633: virtualbox-modules-3.0.12-7-i686 Message-ID: <20100313171024.2808F1240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=kernel2633.git;a=commitdiff;h=92e830ba599c20ba2056be020bd82143a82b8571 commit 92e830ba599c20ba2056be020bd82143a82b8571 Author: Miklos Vajna Date: Sat Mar 13 18:10:11 2010 +0100 virtualbox-modules-3.0.12-7-i686 - add kernel-2.6.33.patch diff --git a/source/apps-extra/virtualbox-modules/FrugalBuild b/source/apps-extra/virtualbox-modules/FrugalBuild index e7539d7..4229376 100644 --- a/source/apps-extra/virtualbox-modules/FrugalBuild +++ b/source/apps-extra/virtualbox-modules/FrugalBuild @@ -3,7 +3,7 @@ pkgname=virtualbox-modules pkgver=3.0.12 -pkgrel=6 +pkgrel=7 pkgdesc="Kernel modules for VirtualBox" url="http://www.virtualbox.org" Finclude kernel-module @@ -13,12 +13,16 @@ groups=('apps-extra') archs=('i686' 'x86_64') license=('GPL-2') up2date="lynx -dump ${url}|grep released|sed 's/.* \([0-9.]*\) .*/\1/;q'" -source=(http://gentoo.zerodev.it/files/vbox-kernel-module-src-${pkgver}.tar.bz2 ${pkgname}.install) +source=(http://gentoo.zerodev.it/files/vbox-kernel-module-src-${pkgver}.tar.bz2 ${pkgname}.install\ + kernel-2.6.33.patch) options=('scriptlet' 'genscriptlet') sha1sums=('fa02bff8062a332875e4d8269871db7f7d3bd5f6' \ - 'e529d5411395df6dcb64c303ea0956d92eb29516') + 'e529d5411395df6dcb64c303ea0956d92eb29516' \ + '280ba431e961217aa777688d3d3dc56d946c2117') build() { + _F_cd_path="." + Fpatchall Fmkdir ${_F_kernelmod_dir}/kernel/misc make KERN_DIR=${_F_kernelmod_dir}/build MODULE_DIR_TST=${Fdestdir}/${_F_kernelmod_dir} \ diff --git a/source/apps-extra/virtualbox-modules/kernel-2.6.33.patch b/source/apps-extra/virtualbox-modules/kernel-2.6.33.patch new file mode 100644 index 0000000..9078aa6 --- /dev/null +++ b/source/apps-extra/virtualbox-modules/kernel-2.6.33.patch @@ -0,0 +1,91 @@ +diff --git a/vboxdrv/SUPDrvInternal.h b/vboxdrv/SUPDrvInternal.h +index f51717f..7034437 100644 +--- a/vboxdrv/SUPDrvInternal.h ++++ b/vboxdrv/SUPDrvInternal.h +@@ -78,7 +78,7 @@ + RT_C_DECLS_END + + #elif defined(RT_OS_LINUX) +-# include ++# include + # include + # if defined(CONFIG_MODVERSIONS) && !defined(MODVERSIONS) + # define MODVERSIONS +diff --git a/vboxdrv/include/iprt/types.h b/vboxdrv/include/iprt/types.h +index 5d33962..2f5a06d 100644 +--- a/vboxdrv/include/iprt/types.h ++++ b/vboxdrv/include/iprt/types.h +@@ -84,7 +84,7 @@ + # define true linux_true + # define false linux_false + # define uintptr_t linux_uintptr_t +-# include ++# include + # include + # include + # undef uintptr_t +diff --git a/vboxdrv/r0drv/linux/the-linux-kernel.h b/vboxdrv/r0drv/linux/the-linux-kernel.h +index b40c910..ce2b4b9 100644 +--- a/vboxdrv/r0drv/linux/the-linux-kernel.h ++++ b/vboxdrv/r0drv/linux/the-linux-kernel.h +@@ -38,7 +38,7 @@ + #include + #define bool linux_bool + +-#include ++#include + #include + + /* We only support 2.4 and 2.6 series kernels */ +diff --git a/vboxnetadp/include/iprt/types.h b/vboxnetadp/include/iprt/types.h +index 5d33962..2f5a06d 100644 +--- a/vboxnetadp/include/iprt/types.h ++++ b/vboxnetadp/include/iprt/types.h +@@ -84,7 +84,7 @@ + # define true linux_true + # define false linux_false + # define uintptr_t linux_uintptr_t +-# include ++# include + # include + # include + # undef uintptr_t +diff --git a/vboxnetadp/r0drv/linux/the-linux-kernel.h b/vboxnetadp/r0drv/linux/the-linux-kernel.h +index b40c910..ce2b4b9 100644 +--- a/vboxnetadp/r0drv/linux/the-linux-kernel.h ++++ b/vboxnetadp/r0drv/linux/the-linux-kernel.h +@@ -38,7 +38,7 @@ + #include + #define bool linux_bool + +-#include ++#include + #include + + /* We only support 2.4 and 2.6 series kernels */ +diff --git a/vboxnetflt/include/iprt/types.h b/vboxnetflt/include/iprt/types.h +index 5d33962..2f5a06d 100644 +--- a/vboxnetflt/include/iprt/types.h ++++ b/vboxnetflt/include/iprt/types.h +@@ -84,7 +84,7 @@ + # define true linux_true + # define false linux_false + # define uintptr_t linux_uintptr_t +-# include ++# include + # include + # include + # undef uintptr_t +diff --git a/vboxnetflt/r0drv/linux/the-linux-kernel.h b/vboxnetflt/r0drv/linux/the-linux-kernel.h +index b40c910..ce2b4b9 100644 +--- a/vboxnetflt/r0drv/linux/the-linux-kernel.h ++++ b/vboxnetflt/r0drv/linux/the-linux-kernel.h +@@ -38,7 +38,7 @@ + #include + #define bool linux_bool + +-#include ++#include + #include + + /* We only support 2.4 and 2.6 series kernels */ From exceed.cedric at gmail.com Sat Mar 13 18:12:36 2010 From: exceed.cedric at gmail.com (exceed) Date: Sat, 13 Mar 2010 18:12:36 +0100 (CET) Subject: [Frugalware-git] frugalware-current: clamtk-4.25-2-i686 Message-ID: <20100313171236.4A8DF1240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=2ff5184bd257f55cdb0f390415254a5842ca7e60 commit 2ff5184bd257f55cdb0f390415254a5842ca7e60 Author: exceed Date: Sat Mar 13 19:18:43 2010 +0100 clamtk-4.25-2-i686 * Fixed depends() * Fixed build * So, it works *now*! diff --git a/source/xapps-extra/clamtk/FrugalBuild b/source/xapps-extra/clamtk/FrugalBuild index e744414..c898084 100644 --- a/source/xapps-extra/clamtk/FrugalBuild +++ b/source/xapps-extra/clamtk/FrugalBuild @@ -3,17 +3,15 @@ pkgname=clamtk pkgver=4.25 -pkgrel=1 +pkgrel=2 pkgdesc="ClamTk is a GUI front-end for ClamAV using gtk2-perl" -rodepends=('perl-gtk2' 'clamav' 'perl-date-calc' 'perl-file-find-rule' 'perl-gettext') +depends=('clamav' 'perl' 'perl-gtk2' 'perl-date-calc' 'perl-gettext' 'perl-config-tiny' 'perl-file-find-rule' 'perl-libwww' 'perl-net-dns') groups=('xapps-extra') replaces=('klamav') archs=('i686' 'x86_64') Finclude sourceforge url="http://clamtk.sourceforge.net/" sha1sums=('799e36dac02a64145fbb9b6e1a5ffd04d2fb2b49') -lang=('ar' 'bg' 'cs' 'da' 'de' 'el_GR' 'en_GB' 'es' 'fr' 'gl' 'he' 'hr' 'hu' 'it' 'ja' 'ko' 'ms' \ - 'nb' 'nl' 'nl_BE' 'nl' 'pl' 'pt_BR' 'ro' 'ru' 'sk' 'sl' 'sv' 'th' 'tr' 'zh_CN') build() { @@ -22,7 +20,10 @@ build() Ficonrel ${pkgname}.{png,xpm} Ffilerel $Fmenudir/${pkgname}.desktop Ffilerel /usr/share/man/man1/${pkgname}.1.gz - for i in ${lang[@]}; do - Ffilerel po/$i.mo usr/share/locale/$i/LC_MESSAGES/$pkgname.mo + for n in lib/* ; do + install -Dm644 $n ${Fdestdir}/usr/lib/perl5/site_perl/ClamTk/`basename $n` + done + for i in po/*.mo; do + Ffilerel $i usr/share/locale/$i/LC_MESSAGES/$pkgname.mo done } From devil505linux at gmail.com Sat Mar 13 19:40:32 2010 From: devil505linux at gmail.com (Devil505) Date: Sat, 13 Mar 2010 19:40:32 +0100 (CET) Subject: [Frugalware-git] frugalware-current: courier-maildrop-2.4.2-1-i686 * version bump Message-ID: <20100313184032.CA51F1240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=5fe0a3b0a8c68f163965213d941fe9be85aa2552 commit 5fe0a3b0a8c68f163965213d941fe9be85aa2552 Author: Devil505 Date: Sat Mar 13 19:38:51 2010 +0100 courier-maildrop-2.4.2-1-i686 * version bump diff --git a/source/network-extra/courier-maildrop/FrugalBuild b/source/network-extra/courier-maildrop/FrugalBuild index 6c0b421..686ebb0 100644 --- a/source/network-extra/courier-maildrop/FrugalBuild +++ b/source/network-extra/courier-maildrop/FrugalBuild @@ -2,8 +2,8 @@ # Maintainer: Karoly CZOVEK pkgname=courier-maildrop -pkgver=2.0.4 -pkgrel=2 +pkgver=2.4.2 +pkgrel=1 pkgdesc="The Courier maildrop MDA" _F_sourceforge_dirname="courier" _F_sourceforge_name="maildrop" @@ -15,7 +15,7 @@ groups=('network-extra') archs=('i686' 'x86_64') makedepends=('openldap' 'mysql' 'postgresql') up2date="lynx -dump 'http://www.courier-mta.org/download.php'|grep maildrop-|sed -n 's/.*-\(.*\)\.t.*/\1/;1 p'" -sha1sums=('df2755c1d0e00d19506b0659e59bf5d4756cce17') +sha1sums=('191f580cc05a4935d9061514017713f025437c73') build() { @@ -29,8 +29,8 @@ build() # this block is only required if we compile courier-imap source package Fmv /usr/bin/deliverquota /usr/bin/deliverquota.maildrop Fmv /usr/bin/maildirmake /usr/bin/maildirmake.maildrop - Fmv /usr/man/man1/maildirmake.1 /usr/man/man1/maildirmake.maildrop.1 - Fmv /usr/man/man8/deliverquota.8 /usr/man/man8/deliverquota.maildrop.8 + #Fmv /usr/man/man1/maildirmake.1 /usr/man/man1/maildirmake.maildrop.1 + #Fmv /usr/man/man8/deliverquota.8 /usr/man/man8/deliverquota.maildrop.8 } From devil505linux at gmail.com Sat Mar 13 20:32:59 2010 From: devil505linux at gmail.com (Devil505) Date: Sat, 13 Mar 2010 20:32:59 +0100 (CET) Subject: [Frugalware-git] frugalware-current: freeciv-2.2.0-1-i686 * version bump Message-ID: <20100313193259.8CB151240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=977f48122eff4b9e4e678a1755cd00788bba5d1f commit 977f48122eff4b9e4e678a1755cd00788bba5d1f Author: Devil505 Date: Sat Mar 13 20:28:27 2010 +0100 freeciv-2.2.0-1-i686 * version bump diff --git a/source/games-extra/freeciv/FrugalBuild b/source/games-extra/freeciv/FrugalBuild index fd07fff..538a445 100644 --- a/source/games-extra/freeciv/FrugalBuild +++ b/source/games-extra/freeciv/FrugalBuild @@ -3,8 +3,8 @@ # Maintainer: voroskoi pkgname=freeciv -pkgver=2.1.9 -pkgrel=2 +pkgver=2.2.0 +pkgrel=1 pkgdesc="A multiuser clone of the famous Microprose game of Civilization." depends=('gtk+2>=2.16.2-2' 'sdl_mixer>=1.2.8-2' 'libxdamage>=1.1.1-3' 'readline' 'ncurses') groups=('games-extra') @@ -12,6 +12,6 @@ archs=('i686' 'x86_64') Finclude sourceforge url="http://freeciv.wikia.com/wiki/Main_Page" up2date="lynx -dump $url |grep Stable |sed -ne 's/.*\([0-9].[0-9].[0-9]\) rel.*/\1/;1p'" -sha1sums=('29ed9421b7c010deb7864e6994867910b97434b1') +sha1sums=('91cbd69860e508f3f69931e7fa360e9e3e7f541f') # optimization OK From cedynamix at gmail.com Sat Mar 13 21:02:50 2010 From: cedynamix at gmail.com (Cedynamix) Date: Sat, 13 Mar 2010 21:02:50 +0100 (CET) Subject: [Frugalware-git] frugalware-current: limewire-5.5.6-1-i686 Message-ID: <20100313200250.C71FC1240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=eee780a2411f42244dd83be513bc37eca42c38e5 commit eee780a2411f42244dd83be513bc37eca42c38e5 Author: Cedynamix Date: Sat Mar 13 20:56:47 2010 +0100 limewire-5.5.6-1-i686 * version bump diff --git a/source/xapps-extra/limewire/FrugalBuild b/source/xapps-extra/limewire/FrugalBuild index b42c072..8ea4545 100644 --- a/source/xapps-extra/limewire/FrugalBuild +++ b/source/xapps-extra/limewire/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: Cedrick Hannier alias Cedynamix pkgname=limewire -pkgver=5.5.5 +pkgver=5.5.6 pkgrel=1 pkgdesc="LimeWire is the Flagship Client on the Gnutella Network" url="http://www.limewire.org/" @@ -13,7 +13,7 @@ source=(http://www10.limewire.com/download/$_F_archive_name.zip limewire.png) groups=('xapps-extra') archs=('i686' 'x86_64') rodepends=('j2re') -sha1sums=('3314e4356301cde12bf32e62787c807a4e4c8440' \ +sha1sums=('da2e86af95bdd7130891b731adad0c5ebd7c3eb8' \ '58ff2ee7b93cfcbff816d1c1e2b230cc30e4e302') _F_desktop_categories="Network;FileTransfer;P2P;" _F_desktop_icon="/usr/share/pixmaps/$pkgname.png" From cedynamix at gmail.com Sat Mar 13 21:40:54 2010 From: cedynamix at gmail.com (Cedynamix) Date: Sat, 13 Mar 2010 21:40:54 +0100 (CET) Subject: [Frugalware-git] frugalware-current: usbmanager-1.0.0-1-i686 Message-ID: <20100313204054.70F471240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=2b452631e973daca9e948d29ead1e90ed3d113cb commit 2b452631e973daca9e948d29ead1e90ed3d113cb Author: Cedynamix Date: Sat Mar 13 21:40:30 2010 +0100 usbmanager-1.0.0-1-i686 * version bump diff --git a/source/xapps-extra/usbmanager/FrugalBuild b/source/xapps-extra/usbmanager/FrugalBuild index 2196c22..5046737 100644 --- a/source/xapps-extra/usbmanager/FrugalBuild +++ b/source/xapps-extra/usbmanager/FrugalBuild @@ -2,8 +2,8 @@ # Maintainer: Cedrick Hannier alias Cedynamix pkgname=usbmanager -pkgver=1.0rc -pkgrel=2 +pkgver=1.0.0 +pkgrel=1 pkgdesc="A USB storage management interface" archs=('i686' 'x86_64') url="https://launchpad.net/$pkgname" @@ -13,9 +13,10 @@ groups=('xapps-extra') options=('scriptlet') _F_gnome_iconcache="y" _F_gnome_desktop="y" +_F_cd_path="$pkgname" Finclude gnome-scriptlet up2date="elinks -dump '$url/+download' | Flasttar" -source=($url/1.x/1.0-rc/+download/$pkgname-$pkgver.tar.gz) -sha1sums=('87ca1cf73053628581f9550d78b7c421191b6da6') +source=($url/1.x/$pkgver/+download/$pkgname-$pkgver.tar.gz) +sha1sums=('bc58e782bfb0513f77e6bd9aae1dcd89ac145b4a') # optimization OK From exceed.cedric at gmail.com Sat Mar 13 21:42:16 2010 From: exceed.cedric at gmail.com (exceed) Date: Sat, 13 Mar 2010 21:42:16 +0100 (CET) Subject: [Frugalware-git] frugalware-current: grass-6.3.0-1-i686 Message-ID: <20100313204216.974DA1240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=23ad37d95a9c3d42e0cae0be3570727abdcd3c6e commit 23ad37d95a9c3d42e0cae0be3570727abdcd3c6e Author: exceed Date: Sat Mar 13 22:48:57 2010 +0100 grass-6.3.0-1-i686 * Fixed up2date diff --git a/source/xapps-extra/grass/FrugalBuild b/source/xapps-extra/grass/FrugalBuild index 7e61d2a..fb4fc9c 100644 --- a/source/xapps-extra/grass/FrugalBuild +++ b/source/xapps-extra/grass/FrugalBuild @@ -11,7 +11,7 @@ depends=('libtiff' 'freetype2' 'libsm' 'ncurses' 'libstdc++' 'libpng' 'tk' 'gdal makedepends=('bison' 'flex' 'libjpeg' 'libpng' 'zlib' 'fftw') archs=('i686' 'x86_64') groups=('xapps-extra') -up2date="lynx -dump $url/download/ |grep $pkgname-[0-9\.]*\.*.tar.gz$ |sed -n 's/.*-\(.*\)\.t.*/\1/;1 p'" +up2date="Flastarchive http://grass.itc.it/grass64/source/ .tar.gz" source=($url/grass63/source/$pkgname-$pkgver.tar.gz) sha1sums=('052f57f8070fa7010527ecacdca0dcc1482f4661') From exceed.cedric at gmail.com Sat Mar 13 22:05:08 2010 From: exceed.cedric at gmail.com (exceed) Date: Sat, 13 Mar 2010 22:05:08 +0100 (CET) Subject: [Frugalware-git] frugalware-current: kcheckgmail-0.6.0-1-i686 Message-ID: <20100313210508.0A1091240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=f29f2f84831013bff58c4fb24225bd6ac09ff41f commit f29f2f84831013bff58c4fb24225bd6ac09ff41f Author: exceed Date: Sat Mar 13 23:09:39 2010 +0100 kcheckgmail-0.6.0-1-i686 * Version bump * Removed useless patch * Added libuuid to depends() diff --git a/source/kde-extra/kcheckgmail/FrugalBuild b/source/kde-extra/kcheckgmail/FrugalBuild index ad27abd..df86450 100644 --- a/source/kde-extra/kcheckgmail/FrugalBuild +++ b/source/kde-extra/kcheckgmail/FrugalBuild @@ -2,17 +2,15 @@ # Maintainer: Janos Kovacs pkgname=kcheckgmail -pkgver=0.5.7.7 -pkgrel=2 +pkgver=0.6.0 +pkgrel=1 pkgdesc="A system tray application to notify you about how many email messages you have in your Gmail account." license="GPL" archs=('i686' 'x86_64') groups=('kde-extra') _F_sourceforge_ext=".tar.bz2" Finclude kde sourceforge kde -depends=("kdelibs>=$_F_kde_ver" 'libqt3support' 'expat>=2.0.1') -source=($source http://ftp.frugalware.org/pub/other/sources/kcheckgmail/kde4-15b403d.patch.bz2) -sha1sums=('1a0431395ae91cf9e2571b3a50924f7b85206659' \ - 'c65aa9e7c96336f2ebba562bb8013a7937bc3f70') +depends=("kdelibs>=$_F_kde_ver" 'libqt3support' 'expat>=2.0.1' 'libuuid') +sha1sums=('b1424244a27bc1b770a74d12aaeef7b4be51056d') # optimization ok From exceed.cedric at gmail.com Sat Mar 13 22:13:37 2010 From: exceed.cedric at gmail.com (exceed) Date: Sat, 13 Mar 2010 22:13:37 +0100 (CET) Subject: [Frugalware-git] frugalware-current: devede-3.16.5-1-i686 Message-ID: <20100313211337.B3C3E1240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=749eebff4323da5c55a7fc1990f6a28fdf2740fa commit 749eebff4323da5c55a7fc1990f6a28fdf2740fa Author: exceed Date: Sat Mar 13 23:20:10 2010 +0100 devede-3.16.5-1-i686 * Version bump diff --git a/source/xmultimedia-extra/devede/FrugalBuild b/source/xmultimedia-extra/devede/FrugalBuild index 5ab12f1..08034e3 100644 --- a/source/xmultimedia-extra/devede/FrugalBuild +++ b/source/xmultimedia-extra/devede/FrugalBuild @@ -2,8 +2,8 @@ # Maintainer: Janos Kovacs pkgname=devede -pkgver=3.14.0 -pkgrel=2 +pkgver=3.16.5 +pkgrel=1 pkgdesc="DVD Video Creator" rodepends=('gtk+' 'python' 'pygtk' 'mplayer' 'mencoder' 'dvdauthor' 'vcdimager' 'cdrtools') archs=('i686' 'x86_64') @@ -12,7 +12,7 @@ _F_cd_path=${pkgname}-`echo ${pkgver} | sed 's/[a-z]//'` url=("http://www.rastersoft.com/programas/devede.html") source=(http://www.rastersoft.com/descargas/${pkgname}-${pkgver}.tar.bz2) up2date="lynx -dump 'http://www.rastersoft.com/programas/devede.html'|grep 'Current version'|sed 's/.*version\: \(.*\).*/\1/'" -sha1sums=('3fdf79e75c78c00e78aa6a7dfbba750c0224d64a') +sha1sums=('d4c1263f5f7736cd9c1384c640540c7afd1ad084') build() { Fcd $pkgname-$pkgver From exceed.cedric at gmail.com Sat Mar 13 22:27:02 2010 From: exceed.cedric at gmail.com (exceed) Date: Sat, 13 Mar 2010 22:27:02 +0100 (CET) Subject: [Frugalware-git] frugalware-current: kmplayer-0.11.2-1-i686 Message-ID: <20100313212702.68ABE1240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=1ef909d48d6acc3161b9228da6e8f099dfd01969 commit 1ef909d48d6acc3161b9228da6e8f099dfd01969 Author: exceed Date: Sat Mar 13 23:33:51 2010 +0100 kmplayer-0.11.2-1-i686 * Version bump diff --git a/source/kde-extra/kmplayer/FrugalBuild b/source/kde-extra/kmplayer/FrugalBuild index d1c6277..d39eea4 100644 --- a/source/kde-extra/kmplayer/FrugalBuild +++ b/source/kde-extra/kmplayer/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: Janos Kovacs pkgname=kmplayer -pkgver=0.11.1b +pkgver=0.11.2 pkgrel=1 pkgdesc="The KMPlayer KPart plugin for Konqueror mimics QuickTime, MS Media Player and RealPlayer plugin browser plugins." url="http://kmplayer.kde.org" @@ -16,7 +16,7 @@ groups=('kde-extra') options=('scriptlet') up2date="Flasttar $url/download.php" source=($url/pkgs/$pkgname-$pkgver.tar.bz2) -sha1sums=('e2bec0438f2915f079eb54e38978e3e3cd9f6ed0') +sha1sums=('78fbf4a2353f18f5bf3cc4d467e47f19d4ac9fe8') build() { From exceed.cedric at gmail.com Sat Mar 13 22:30:45 2010 From: exceed.cedric at gmail.com (exceed) Date: Sat, 13 Mar 2010 22:30:45 +0100 (CET) Subject: [Frugalware-git] frugalware-current: proj-4.7.0-1-i686 Message-ID: <20100313213045.7633B1240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=ace7eba95b2c636e07c6a7a815d9468c2ae8897d commit ace7eba95b2c636e07c6a7a815d9468c2ae8897d Author: exceed Date: Sat Mar 13 23:37:27 2010 +0100 proj-4.7.0-1-i686 * Version bump * Fixed upstream diff --git a/source/apps-extra/proj/FrugalBuild b/source/apps-extra/proj/FrugalBuild index 426a7c0..36600fd 100644 --- a/source/apps-extra/proj/FrugalBuild +++ b/source/apps-extra/proj/FrugalBuild @@ -2,16 +2,16 @@ # Maintainer: Janos Kovacs pkgname=proj -pkgver=4.6.0 +pkgver=4.7.0 pkgrel=1 pkgdesc="Cartographic projection software" -url="http://proj.maptools.org/" +url="http://trac.osgeo.org/proj/" license="MIT License, Copyright (c) 2000, Frank Warmerdam" depends=('glibc') archs=('i686' 'x86_64') groups=('apps-extra') -up2date="lynx -dump $url |grep $pkgname-[0-9\.]*\.tar.gz$ |sed -n 's/.*-\(.*\)\.t.*/\1/;1 p'" -source=(ftp://ftp.remotesensing.org/proj/$pkgname-$pkgver.tar.gz) -sha1sums=('972b74922d764f71fb0c01cd3f69255611291368') +up2date="Flastarchive http://download.osgeo.org/proj/ .tar.gz" +source=(http://download.osgeo.org/proj/$pkgname-$pkgver.tar.gz) +sha1sums=('bfe59b8dc1ea0c57e1426c37ff2b238fea66acd7') # optimization OK From exceed.cedric at gmail.com Sat Mar 13 22:38:16 2010 From: exceed.cedric at gmail.com (exceed) Date: Sat, 13 Mar 2010 22:38:16 +0100 (CET) Subject: [Frugalware-git] frugalware-current: kvpnc-0.9.6-1-i686 Message-ID: <20100313213816.E78291240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=3773243d76e5e22cc9dc73756748a43ba4f500a5 commit 3773243d76e5e22cc9dc73756748a43ba4f500a5 Author: exceed Date: Sat Mar 13 23:45:11 2010 +0100 kvpnc-0.9.6-1-i686 * Version bump diff --git a/source/kde-extra/kvpnc/FrugalBuild b/source/kde-extra/kvpnc/FrugalBuild index c2f88cf..e32496a 100644 --- a/source/kde-extra/kvpnc/FrugalBuild +++ b/source/kde-extra/kvpnc/FrugalBuild @@ -3,7 +3,7 @@ # Contributor: DeX77 pkgname=kvpnc -pkgver=0.9.3 +pkgver=0.9.6 pkgextraver=kde4 pkgrel=1 pkgdesc="KVpnc is a KDE frontend for for various vpn clients." @@ -19,12 +19,12 @@ _F_cmakekde_final=OFF Finclude kde up2date="lynx -dump http://home.gna.org/kvpnc/en/download.html| grep -m1 'Version'|sed 's/.*on //'" source=(http://download.gna.org/kvpnc/$pkgname-$pkgver-$pkgextraver.tar.bz2 README.Frugalware) +sha1sums=('9824d6892bb160c9b39eb252c13751c5563f4bc2' \ + '3ec29363089636486b6b187965fa8487169021b3') build() { CMakeKDE_build Fdoc README.Frugalware } -sha1sums=('3ffdd5fe8b740353f01d34265465c5833a93335f' \ - '3ec29363089636486b6b187965fa8487169021b3') # optimization OK From devil505linux at gmail.com Sat Mar 13 22:48:43 2010 From: devil505linux at gmail.com (Devil505) Date: Sat, 13 Mar 2010 22:48:43 +0100 (CET) Subject: [Frugalware-git] frugalware-current: wormux-0.9.1-1-i686 * version bump Message-ID: <20100313214843.04BE61240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=3e838cbc5578bbfe7c0b219479bb5c630d549fa5 commit 3e838cbc5578bbfe7c0b219479bb5c630d549fa5 Author: Devil505 Date: Sat Mar 13 21:55:49 2010 +0100 wormux-0.9.1-1-i686 * version bump diff --git a/source/games-extra/wormux/FrugalBuild b/source/games-extra/wormux/FrugalBuild index cdc6bcb..09c8514 100644 --- a/source/games-extra/wormux/FrugalBuild +++ b/source/games-extra/wormux/FrugalBuild @@ -3,7 +3,7 @@ # Maintainer: voroskoi pkgname=wormux -pkgver=0.9.0 +pkgver=0.9.1 pkgrel=1 pkgdesc="Wormux is free software clone of the Worms(R) series of games, developed by Team17." url="http://www.wormux.org/" @@ -12,6 +12,6 @@ groups=('games-extra') archs=('i686' 'x86_64') up2date="Flasttar http://download.gna.org/$pkgname/" source=(http://download.gna.org/$pkgname/$pkgname-$pkgver.tar.bz2) -sha1sums=('5298a3dc122c7a0449a06825797a4f08eecf5e71') +sha1sums=('75f4327c2752813c47364a87a6e526919103ed7d') # optimization OK From devil505linux at gmail.com Sat Mar 13 23:35:28 2010 From: devil505linux at gmail.com (Devil505) Date: Sat, 13 Mar 2010 23:35:28 +0100 (CET) Subject: [Frugalware-git] frugalware-current: smplayer-0.6.9-1-i686 * version bump Message-ID: <20100313223528.D42D11240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=c9ff78fabb2eb1ee1bee40f33fd985d33e247d2a commit c9ff78fabb2eb1ee1bee40f33fd985d33e247d2a Author: Devil505 Date: Sat Mar 13 23:32:47 2010 +0100 smplayer-0.6.9-1-i686 * version bump diff --git a/source/kde-extra/smplayer/FrugalBuild b/source/kde-extra/smplayer/FrugalBuild index 4808710..74ba50b 100644 --- a/source/kde-extra/smplayer/FrugalBuild +++ b/source/kde-extra/smplayer/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: voroskoi pkgname=smplayer -pkgver=0.6.8 +pkgver=0.6.9 pkgrel=1 pkgdesc="SMPlayer intends to be a complete front-end for MPlayer." makedepends=('qt4-linguist') @@ -14,7 +14,7 @@ groups=('kde-extra') _F_sourceforge_ext=.tar.bz2 Finclude kde sourceforge source=($source fix_it.patch) -sha1sums=('0f7d53babe1fd71ea9eddb448622d112495242e7' \ +sha1sums=('1879839c229b7ef2dcd6d7e34e2e2057fae5182c' \ 'a13c523780eb38f9d7ce835700399ea71b13967c') build() { From exceed.cedric at gmail.com Sat Mar 13 23:44:04 2010 From: exceed.cedric at gmail.com (exceed) Date: Sat, 13 Mar 2010 23:44:04 +0100 (CET) Subject: [Frugalware-git] frugalware-current: supertux-0.3.3-1-i686 Message-ID: <20100313224404.D4AE41240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=13634708e4de06aac1735f42cb069a92db5263ed commit 13634708e4de06aac1735f42cb069a92db5263ed Author: exceed Date: Sun Mar 14 00:40:59 2010 +0100 supertux-0.3.3-1-i686 * Version bump * Fixed upstream (berlios->googlecode) * New build with cmake * Removed useless gcc43 patch * Fixed depends() diff --git a/source/games-extra/supertux/FrugalBuild b/source/games-extra/supertux/FrugalBuild index 1c438c0..8afc57c 100644 --- a/source/games-extra/supertux/FrugalBuild +++ b/source/games-extra/supertux/FrugalBuild @@ -1,34 +1,18 @@ -# Compiling Time: 2.53 SBU +# Compiling Time: 1.22 SBU # Maintainer: Janos Kovacs pkgname=supertux -pkgver=0.3.1d -pkgrel=3 +pkgver=0.3.3 +pkgrel=1 pkgdesc="SuperTux is a classic 2D jump'n run sidescroller game in a style similar to the original SuperMario games." -_F_berlios_ext=".tar.bz2" -Finclude berlios -url="http://supertux.berlios.de/" -source=($source gcc43.patch) -depends=('sdl_mixer' 'sdlimage' 'physfs>=2.0.0' 'openal>=1.7.411' 'libvorbis' 'mesa') -makedepends=('jam') +_F_googlecode_ext=".tar.bz2" +Finclude googlecode +url="http://supertux.lethargik.org/" +depends=('sdl_mixer' 'sdlimage' 'physfs>=2.0.0' 'openal>=1.7.411' 'libvorbis' 'mesa' 'glew' 'boost') groups=('games-extra') archs=('i686' 'x86_64') license="GPL" -up2date="lynx -dump $url/wiki/index.php/Download/Installation | grep -m1 Release | sed 's/.*e \(.*\).*/\1/'" -sha1sums=('5d9fd1ee9da7c207ed3294fbc6aa189e68768d93' \ - '85451963e404b3f132099dce8445268116ff4f0b') +Finclude cmake +sha1sums=('f89214fd5d997b62753fbba7e1d089d81513f2de') -build() -{ - Fcd $pkgname-${pkgver/d/} - Fpatchall - # no O3's thx - Fsed '-O3' '' Jamrules - ./autogen.sh || Fdie - Fconf - jam -a || Fdie - export DESTDIR=$Fdestdir - jam install || Fdie -} -# optimization OK diff --git a/source/games-extra/supertux/gcc43.patch b/source/games-extra/supertux/gcc43.patch deleted file mode 100644 index 423d3d3..0000000 --- a/source/games-extra/supertux/gcc43.patch +++ /dev/null @@ -1,68 +0,0 @@ -diff -ruN supertux-0.3.1.orig/src/console.hpp supertux-0.3.1/src/console.hpp ---- supertux-0.3.1.orig/src/console.hpp 2008-01-03 21:59:27.000000000 +0100 -+++ supertux-0.3.1/src/console.hpp 2008-08-23 11:57:47.000000000 +0200 -@@ -27,6 +27,8 @@ - #include - #include - #include -+#include -+#include - - class Console; - class ConsoleStreamBuffer; -diff -ruN supertux-0.3.1.orig/src/lisp/lexer.cpp supertux-0.3.1/src/lisp/lexer.cpp ---- supertux-0.3.1.orig/src/lisp/lexer.cpp 2008-01-03 21:59:26.000000000 +0100 -+++ supertux-0.3.1/src/lisp/lexer.cpp 2008-08-23 13:45:58.000000000 +0200 -@@ -21,6 +21,7 @@ - #include - #include - #include -+#include - - #include "lexer.hpp" - -diff -ruN supertux-0.3.1.orig/src/sprite/sprite_manager.hpp supertux-0.3.1/src/sprite/sprite_manager.hpp ---- supertux-0.3.1.orig/src/sprite/sprite_manager.hpp 2008-01-03 21:59:26.000000000 +0100 -+++ supertux-0.3.1/src/sprite/sprite_manager.hpp 2008-08-23 13:29:34.000000000 +0200 -@@ -21,6 +21,7 @@ - #define SUPERTUX_SPRITE_MANAGER_H - - #include -+#include - - class SpriteData; - class Sprite; -diff -ruN supertux-0.3.1.orig/src/textscroller.hpp supertux-0.3.1/src/textscroller.hpp ---- supertux-0.3.1.orig/src/textscroller.hpp 2008-01-03 21:59:27.000000000 +0100 -+++ supertux-0.3.1/src/textscroller.hpp 2008-08-23 13:34:35.000000000 +0200 -@@ -24,6 +24,7 @@ - #include - #include - #include -+#include - - #include "screen.hpp" - #include "math/vector.hpp" -diff -ruN supertux-0.3.1.orig/src/title.cpp supertux-0.3.1/src/title.cpp ---- supertux-0.3.1.orig/src/title.cpp 2008-01-03 21:59:28.000000000 +0100 -+++ supertux-0.3.1/src/title.cpp 2008-08-23 12:05:19.000000000 +0200 -@@ -32,6 +32,7 @@ - #include - #include - #include -+#include - - #include "title.hpp" - #include "mainloop.hpp" -diff -ruN supertux-0.3.1.orig/src/video/sdl_texture.hpp supertux-0.3.1/src/video/sdl_texture.hpp ---- supertux-0.3.1.orig/src/video/sdl_texture.hpp 2008-01-03 21:59:22.000000000 +0100 -+++ supertux-0.3.1/src/video/sdl_texture.hpp 2008-08-23 13:37:14.000000000 +0200 -@@ -23,6 +23,7 @@ - #include - - #include -+#include - - #include "texture.hpp" - #include "color.hpp" - From vmiklos at frugalware.org Sun Mar 14 01:29:30 2010 From: vmiklos at frugalware.org (Miklos Vajna) Date: Sun, 14 Mar 2010 01:29:30 +0100 (CET) Subject: [Frugalware-git] kernel2633: madwifi-0.9.4-34-i686 Message-ID: <20100314002930.1C0C81240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=kernel2633.git;a=commitdiff;h=c1cb6f020a833a650841ab309e8a2f015c32b99b commit c1cb6f020a833a650841ab309e8a2f015c32b99b Author: Miklos Vajna Date: Sun Mar 14 01:28:01 2010 +0100 madwifi-0.9.4-34-i686 - add kernel-2.6.33.patch diff --git a/source/network/madwifi/FrugalBuild b/source/network/madwifi/FrugalBuild index e535f76..68f67a1 100644 --- a/source/network/madwifi/FrugalBuild +++ b/source/network/madwifi/FrugalBuild @@ -3,7 +3,7 @@ pkgname=madwifi pkgver=0.9.4 -pkgrel=33 +pkgrel=34 pkgdesc="Madwifi drivers for Atheros wireless chipsets" Finclude kernel-module depends=(${depends[@]} 'wireless_tools') @@ -13,7 +13,7 @@ groups=('network') archs=('i686' 'x86_64') Finclude sourceforge url="http://madwifi.sourceforge.net/" -source=($source madwifi-0.9.3-cflags.diff kernel-2.6.2{6,7,9}.patch kernel-2.6.3{0,1,2}.patch) +source=($source madwifi-0.9.3-cflags.diff kernel-2.6.2{6,7,9}.patch kernel-2.6.3{0,1,2,3}.patch) sha1sums=('6f289cb2e99d27b23570d15b69bf0f4240e34d1e' \ '26fdc221e5bb0299d8b3c41ad30b6fe6882a8e35' \ '41928bbfdbb4e1c1fa5c1ed93fb673542c18bbc3' \ @@ -21,7 +21,8 @@ sha1sums=('6f289cb2e99d27b23570d15b69bf0f4240e34d1e' \ '0afa565128984ebcae441580b83eb916a2f3f09c' \ '8e9aef8b6d7fe815bb0816f107b65cda362d520e' \ '49e925f5a0a1705e9e9475f44f4005d6576fe51b' \ - 'e066b925df4e9119879fc23818c18ae62ef3008a') + 'e066b925df4e9119879fc23818c18ae62ef3008a' \ + '9a5ceb3611a6eaadfc5f68003e31a62569754369') # If the package needs testing, feel free to poke Benjamin Woods diff --git a/source/network/madwifi/kernel-2.6.33.patch b/source/network/madwifi/kernel-2.6.33.patch new file mode 100644 index 0000000..c37481a --- /dev/null +++ b/source/network/madwifi/kernel-2.6.33.patch @@ -0,0 +1,525 @@ +diff --git a/Makefile.inc b/Makefile.inc +index b67a4de..e4f28b0 100644 +--- a/Makefile.inc ++++ b/Makefile.inc +@@ -146,7 +146,7 @@ ATH_RATE= $(TOP)/ath_rate + # + TOOLS= $(TOP)/tools + +-COPTS+= -Werror ++COPTS+= + INCS= -include $(TOP)/include/compat.h -I$(TOP)/include + + # TARGET defines the target platform architecture. It must match one of +diff --git a/ath/if_ath.c b/ath/if_ath.c +index 43ae664..82ec9ee 100644 +--- a/ath/if_ath.c ++++ b/ath/if_ath.c +@@ -9572,120 +9572,101 @@ static int mincalibrate = 1; /* once a second */ + static int maxint = 0x7fffffff; /* 32-bit big */ + + static const ctl_table ath_sysctl_template[] = { +- { .ctl_name = CTL_AUTO, +- .procname = "slottime", ++ { .procname = "slottime", + .mode = 0644, + .proc_handler = ath_sysctl_halparam, + .extra2 = (void *)ATH_SLOTTIME, + }, +- { .ctl_name = CTL_AUTO, +- .procname = "acktimeout", ++ { .procname = "acktimeout", + .mode = 0644, + .proc_handler = ath_sysctl_halparam, + .extra2 = (void *)ATH_ACKTIMEOUT, + }, +- { .ctl_name = CTL_AUTO, +- .procname = "ctstimeout", ++ { .procname = "ctstimeout", + .mode = 0644, + .proc_handler = ath_sysctl_halparam, + .extra2 = (void *)ATH_CTSTIMEOUT, + }, +- { .ctl_name = CTL_AUTO, +- .procname = "softled", ++ { .procname = "softled", + .mode = 0644, + .proc_handler = ath_sysctl_halparam, + .extra2 = (void *)ATH_SOFTLED, + }, +- { .ctl_name = CTL_AUTO, +- .procname = "ledpin", ++ { .procname = "ledpin", + .mode = 0644, + .proc_handler = ath_sysctl_halparam, + .extra2 = (void *)ATH_LEDPIN, + }, +- { .ctl_name = CTL_AUTO, +- .procname = "countrycode", ++ { .procname = "countrycode", + .mode = 0444, + .proc_handler = ath_sysctl_halparam, + .extra2 = (void *)ATH_COUNTRYCODE, + }, +- { .ctl_name = CTL_AUTO, +- .procname = "maxvaps", ++ { .procname = "maxvaps", + .mode = 0444, + .proc_handler = ath_sysctl_halparam, + .extra2 = (void *)ATH_MAXVAPS, + }, +- { .ctl_name = CTL_AUTO, +- .procname = "regdomain", ++ { .procname = "regdomain", + .mode = 0444, + .proc_handler = ath_sysctl_halparam, + .extra2 = (void *)ATH_REGDOMAIN, + }, + #ifdef AR_DEBUG +- { .ctl_name = CTL_AUTO, +- .procname = "debug", ++ { .procname = "debug", + .mode = 0644, + .proc_handler = ath_sysctl_halparam, + .extra2 = (void *)ATH_DEBUG, + }, + #endif +- { .ctl_name = CTL_AUTO, +- .procname = "txantenna", ++ { .procname = "txantenna", + .mode = 0644, + .proc_handler = ath_sysctl_halparam, + .extra2 = (void *)ATH_TXANTENNA, + }, +- { .ctl_name = CTL_AUTO, +- .procname = "rxantenna", ++ { .procname = "rxantenna", + .mode = 0644, + .proc_handler = ath_sysctl_halparam, + .extra2 = (void *)ATH_RXANTENNA, + }, +- { .ctl_name = CTL_AUTO, +- .procname = "diversity", ++ { .procname = "diversity", + .mode = 0644, + .proc_handler = ath_sysctl_halparam, + .extra2 = (void *)ATH_DIVERSITY, + }, +- { .ctl_name = CTL_AUTO, +- .procname = "txintrperiod", ++ { .procname = "txintrperiod", + .mode = 0644, + .proc_handler = ath_sysctl_halparam, + .extra2 = (void *)ATH_TXINTRPERIOD, + }, +- { .ctl_name = CTL_AUTO, +- .procname = "fftxqmin", ++ { .procname = "fftxqmin", + .mode = 0644, + .proc_handler = ath_sysctl_halparam, + .extra2 = (void *)ATH_FFTXQMIN, + }, +- { .ctl_name = CTL_AUTO, +- .procname = "tkipmic", ++ { .procname = "tkipmic", + .mode = 0644, + .proc_handler = ath_sysctl_halparam, + .extra2 = (void *)ATH_TKIPMIC, + }, + #ifdef ATH_SUPERG_XR +- { .ctl_name = CTL_AUTO, +- .procname = "xrpollperiod", ++ { .procname = "xrpollperiod", + .mode = 0644, + .proc_handler = ath_sysctl_halparam, + .extra2 = (void *)ATH_XR_POLL_PERIOD, + }, +- { .ctl_name = CTL_AUTO, +- .procname = "xrpollcount", ++ { .procname = "xrpollcount", + .mode = 0644, + .proc_handler = ath_sysctl_halparam, + .extra2 = (void *)ATH_XR_POLL_COUNT, + }, + #endif +- { .ctl_name = CTL_AUTO, +- .procname = "ackrate", ++ { .procname = "ackrate", + .mode = 0644, + .proc_handler = ath_sysctl_halparam, + .extra2 = (void *)ATH_ACKRATE, + }, +- { .ctl_name = CTL_AUTO, +- .procname = "intmit", ++ { .procname = "intmit", + .mode = 0644, + .proc_handler = ath_sysctl_halparam, + .extra2 = (void *)ATH_INTMIT, +@@ -9722,12 +9703,10 @@ ath_dynamic_sysctl_register(struct ath_softc *sc) + + /* setup the table */ + memset(sc->sc_sysctls, 0, space); +- sc->sc_sysctls[0].ctl_name = CTL_DEV; + sc->sc_sysctls[0].procname = "dev"; + sc->sc_sysctls[0].mode = 0555; + sc->sc_sysctls[0].child = &sc->sc_sysctls[2]; + /* [1] is NULL terminator */ +- sc->sc_sysctls[2].ctl_name = CTL_AUTO; + sc->sc_sysctls[2].procname = dev_name; + sc->sc_sysctls[2].mode = 0555; + sc->sc_sysctls[2].child = &sc->sc_sysctls[4]; +@@ -9830,44 +9809,38 @@ ath_announce(struct net_device *dev) + */ + static ctl_table ath_static_sysctls[] = { + #ifdef AR_DEBUG +- { .ctl_name = CTL_AUTO, +- .procname = "debug", ++ { .procname = "debug", + .mode = 0644, + .data = &ath_debug, + .maxlen = sizeof(ath_debug), + .proc_handler = proc_dointvec + }, + #endif +- { .ctl_name = CTL_AUTO, +- .procname = "countrycode", ++ { .procname = "countrycode", + .mode = 0444, + .data = &ath_countrycode, + .maxlen = sizeof(ath_countrycode), + .proc_handler = proc_dointvec + }, +- { .ctl_name = CTL_AUTO, +- .procname = "maxvaps", ++ { .procname = "maxvaps", + .mode = 0444, + .data = &ath_maxvaps, + .maxlen = sizeof(ath_maxvaps), + .proc_handler = proc_dointvec + }, +- { .ctl_name = CTL_AUTO, +- .procname = "outdoor", ++ { .procname = "outdoor", + .mode = 0444, + .data = &ath_outdoor, + .maxlen = sizeof(ath_outdoor), + .proc_handler = proc_dointvec + }, +- { .ctl_name = CTL_AUTO, +- .procname = "xchanmode", ++ { .procname = "xchanmode", + .mode = 0444, + .data = &ath_xchanmode, + .maxlen = sizeof(ath_xchanmode), + .proc_handler = proc_dointvec + }, +- { .ctl_name = CTL_AUTO, +- .procname = "calibrate", ++ { .procname = "calibrate", + .mode = 0644, + .data = &ath_calinterval, + .maxlen = sizeof(ath_calinterval), +@@ -9878,15 +9851,13 @@ static ctl_table ath_static_sysctls[] = { + { 0 } + }; + static ctl_table ath_ath_table[] = { +- { .ctl_name = DEV_ATH, +- .procname = "ath", ++ { .procname = "ath", + .mode = 0555, + .child = ath_static_sysctls + }, { 0 } + }; + static ctl_table ath_root_table[] = { +- { .ctl_name = CTL_DEV, +- .procname = "dev", ++ { .procname = "dev", + .mode = 0555, + .child = ath_ath_table + }, { 0 } +diff --git a/ath_hal/ah_os.c b/ath_hal/ah_os.c +index a4d0336..8d25abc 100644 +--- a/ath_hal/ah_os.c ++++ b/ath_hal/ah_os.c +@@ -436,50 +436,43 @@ EXPORT_SYMBOL(ath_hal_memcmp); + + static ctl_table ath_hal_sysctls[] = { + #ifdef AH_DEBUG +- { .ctl_name = CTL_AUTO, +- .procname = "debug", ++ { .procname = "debug", + .mode = 0644, + .data = &ath_hal_debug, + .maxlen = sizeof(ath_hal_debug), + .proc_handler = proc_dointvec + }, + #endif +- { .ctl_name = CTL_AUTO, +- .procname = "dma_beacon_response_time", ++ { .procname = "dma_beacon_response_time", + .data = &ath_hal_dma_beacon_response_time, + .maxlen = sizeof(ath_hal_dma_beacon_response_time), + .mode = 0644, + .proc_handler = proc_dointvec + }, +- { .ctl_name = CTL_AUTO, +- .procname = "sw_beacon_response_time", ++ { .procname = "sw_beacon_response_time", + .mode = 0644, + .data = &ath_hal_sw_beacon_response_time, + .maxlen = sizeof(ath_hal_sw_beacon_response_time), + .proc_handler = proc_dointvec + }, +- { .ctl_name = CTL_AUTO, +- .procname = "swba_backoff", ++ { .procname = "swba_backoff", + .mode = 0644, + .data = &ath_hal_additional_swba_backoff, + .maxlen = sizeof(ath_hal_additional_swba_backoff), + .proc_handler = proc_dointvec + }, + #ifdef AH_DEBUG_ALQ +- { .ctl_name = CTL_AUTO, +- .procname = "alq", ++ { .procname = "alq", + .mode = 0644, + .proc_handler = sysctl_hw_ath_hal_log + }, +- { .ctl_name = CTL_AUTO, +- .procname = "alq_size", ++ { .procname = "alq_size", + .mode = 0644, + .data = &ath_hal_alq_qsize, + .maxlen = sizeof(ath_hal_alq_qsize), + .proc_handler = proc_dointvec + }, +- { .ctl_name = CTL_AUTO, +- .procname = "alq_lost", ++ { .procname = "alq_lost", + .mode = 0644, + .data = &ath_hal_alq_lost, + .maxlen = sizeof(ath_hal_alq_lost), +@@ -489,22 +482,19 @@ static ctl_table ath_hal_sysctls[] = { + { 0 } + }; + static ctl_table ath_hal_table[] = { +- { .ctl_name = CTL_AUTO, +- .procname = "hal", ++ { .procname = "hal", + .mode = 0555, + .child = ath_hal_sysctls + }, { 0 } + }; + static ctl_table ath_ath_table[] = { +- { .ctl_name = DEV_ATH, +- .procname = "ath", ++ { .procname = "ath", + .mode = 0555, + .child = ath_hal_table + }, { 0 } + }; + static ctl_table ath_root_table[] = { +- { .ctl_name = CTL_DEV, +- .procname = "dev", ++ { .procname = "dev", + .mode = 0555, + .child = ath_ath_table + }, { 0 } +diff --git a/ath_rate/amrr/amrr.c b/ath_rate/amrr/amrr.c +index f6a7399..702ed12 100644 +--- a/ath_rate/amrr/amrr.c ++++ b/ath_rate/amrr/amrr.c +@@ -487,8 +487,7 @@ static int min_threshold = 1; + */ + + static ctl_table ath_rate_static_sysctls[] = { +- { .ctl_name = CTL_AUTO, +- .procname = "interval", ++ { .procname = "interval", + .mode = 0644, + .data = &ath_rateinterval, + .maxlen = sizeof(ath_rateinterval), +@@ -496,8 +495,7 @@ static ctl_table ath_rate_static_sysctls[] = { + .extra2 = &maxint, + .proc_handler = proc_dointvec_minmax + }, +- { .ctl_name = CTL_AUTO, +- .procname = "max_success_threshold", ++ { .procname = "max_success_threshold", + .mode = 0644, + .data = &ath_rate_max_success_threshold, + .maxlen = sizeof(ath_rate_max_success_threshold), +@@ -505,8 +503,7 @@ static ctl_table ath_rate_static_sysctls[] = { + .extra2 = &maxint, + .proc_handler = proc_dointvec_minmax + }, +- { .ctl_name = CTL_AUTO, +- .procname = "min_success_threshold", ++ { .procname = "min_success_threshold", + .mode = 0644, + .data = &ath_rate_min_success_threshold, + .maxlen = sizeof(ath_rate_min_success_threshold), +@@ -517,22 +514,19 @@ static ctl_table ath_rate_static_sysctls[] = { + { 0 } + }; + static ctl_table ath_rate_table[] = { +- { .ctl_name = CTL_AUTO, +- .procname = "rate", ++ { .procname = "rate", + .mode = 0555, + .child = ath_rate_static_sysctls + }, { 0 } + }; + static ctl_table ath_ath_table[] = { +- { .ctl_name = DEV_ATH, +- .procname = "ath", ++ { .procname = "ath", + .mode = 0555, + .child = ath_rate_table + }, { 0 } + }; + static ctl_table ath_root_table[] = { +- { .ctl_name = CTL_DEV, +- .procname = "dev", ++ { .procname = "dev", + .mode = 0555, + .child = ath_ath_table + }, { 0 } +diff --git a/ath_rate/onoe/onoe.c b/ath_rate/onoe/onoe.c +index a174d5d..d061de9 100644 +--- a/ath_rate/onoe/onoe.c ++++ b/ath_rate/onoe/onoe.c +@@ -435,8 +435,7 @@ static int maxint = 0x7fffffff; /* 32-bit big */ + * Static (i.e. global) sysctls. + */ + static ctl_table ath_rate_static_sysctls[] = { +- { .ctl_name = CTL_AUTO, +- .procname = "interval", ++ { .procname = "interval", + .mode = 0644, + .data = &ath_rateinterval, + .maxlen = sizeof(ath_rateinterval), +@@ -444,8 +443,7 @@ static ctl_table ath_rate_static_sysctls[] = { + .extra2 = &maxint, + .proc_handler = proc_dointvec_minmax + }, +- { .ctl_name = CTL_AUTO, +- .procname = "raise", ++ { .procname = "raise", + .mode = 0644, + .data = &ath_rate_raise, + .maxlen = sizeof(ath_rate_raise), +@@ -453,8 +451,7 @@ static ctl_table ath_rate_static_sysctls[] = { + .extra2 = &maxpercent, + .proc_handler = proc_dointvec_minmax + }, +- { .ctl_name = CTL_AUTO, +- .procname = "raise_threshold", ++ { .procname = "raise_threshold", + .mode = 0644, + .data = &ath_rate_raise_threshold, + .maxlen = sizeof(ath_rate_raise_threshold), +@@ -463,22 +460,19 @@ static ctl_table ath_rate_static_sysctls[] = { + { 0 } + }; + static ctl_table ath_rate_table[] = { +- { .ctl_name = CTL_AUTO, +- .procname = "rate", ++ { .procname = "rate", + .mode = 0555, + .child = ath_rate_static_sysctls + }, { 0 } + }; + static ctl_table ath_ath_table[] = { +- { .ctl_name = DEV_ATH, +- .procname = "ath", ++ { .procname = "ath", + .mode = 0555, + .child = ath_rate_table + }, { 0 } + }; + static ctl_table ath_root_table[] = { +- { .ctl_name = CTL_DEV, +- .procname = "dev", ++ { .procname = "dev", + .mode = 0555, + .child = ath_ath_table + }, { 0 } +diff --git a/kernelversion.c b/kernelversion.c +index a216978..440e8b9 100644 +--- a/kernelversion.c ++++ b/kernelversion.c +@@ -10,7 +10,7 @@ + + /* Linux 2.6.18+ uses */ + #ifndef UTS_RELEASE +-#include ++#include + #endif + + char *uts_release = UTS_RELEASE; +diff --git a/net80211/ieee80211_linux.c b/net80211/ieee80211_linux.c +index d433b10..18d56d2 100644 +--- a/net80211/ieee80211_linux.c ++++ b/net80211/ieee80211_linux.c +@@ -622,40 +622,33 @@ IEEE80211_SYSCTL_DECL(ieee80211_sysctl_monitor_crc_errors, ctl, write, filp, buf + + static const ctl_table ieee80211_sysctl_template[] = { + #ifdef IEEE80211_DEBUG +- { .ctl_name = CTL_AUTO, +- .procname = "debug", ++ { .procname = "debug", + .mode = 0644, + .proc_handler = ieee80211_sysctl_debug + }, + #endif +- { .ctl_name = CTL_AUTO, +- .procname = "dev_type", ++ { .procname = "dev_type", + .mode = 0644, + .proc_handler = ieee80211_sysctl_dev_type + }, +- { .ctl_name = CTL_AUTO, +- .procname = "monitor_nods_only", ++ { .procname = "monitor_nods_only", + .mode = 0644, + .proc_handler = ieee80211_sysctl_monitor_nods_only + }, +- { .ctl_name = CTL_AUTO, +- .procname = "monitor_txf_len", ++ { .procname = "monitor_txf_len", + .mode = 0644, + .proc_handler = ieee80211_sysctl_monitor_txf_len + }, +- { .ctl_name = CTL_AUTO, +- .procname = "monitor_phy_errors", ++ { .procname = "monitor_phy_errors", + .mode = 0644, + .proc_handler = ieee80211_sysctl_monitor_phy_errors + }, +- { .ctl_name = CTL_AUTO, +- .procname = "monitor_crc_errors", ++ { .procname = "monitor_crc_errors", + .mode = 0644, + .proc_handler = ieee80211_sysctl_monitor_crc_errors + }, + /* NB: must be last entry before NULL */ +- { .ctl_name = CTL_AUTO, +- .procname = "%parent", ++ { .procname = "%parent", + .maxlen = IFNAMSIZ, + .mode = 0444, + .proc_handler = proc_dostring +@@ -690,12 +683,10 @@ ieee80211_sysctl_vattach(struct ieee80211vap *vap) + + /* setup the table */ + memset(vap->iv_sysctls, 0, space); +- vap->iv_sysctls[0].ctl_name = CTL_NET; + vap->iv_sysctls[0].procname = "net"; + vap->iv_sysctls[0].mode = 0555; + vap->iv_sysctls[0].child = &vap->iv_sysctls[2]; + /* [1] is NULL terminator */ +- vap->iv_sysctls[2].ctl_name = CTL_AUTO; + vap->iv_sysctls[2].procname = devname; /* XXX bad idea? */ + vap->iv_sysctls[2].mode = 0555; + vap->iv_sysctls[2].child = &vap->iv_sysctls[4]; From vmiklos at frugalware.org Sun Mar 14 01:48:19 2010 From: vmiklos at frugalware.org (Miklos Vajna) Date: Sun, 14 Mar 2010 01:48:19 +0100 (CET) Subject: [Frugalware-git] kernel2633: acerhk-0.5.35-41-i686 Message-ID: <20100314004819.86BAC1240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=kernel2633.git;a=commitdiff;h=ddadf5fc9de0310a9fa3b035f10e336e723c2416 commit ddadf5fc9de0310a9fa3b035f10e336e723c2416 Author: Miklos Vajna Date: Sun Mar 14 01:47:47 2010 +0100 acerhk-0.5.35-41-i686 - add kernel2633.patch diff --git a/source/apps-extra/acerhk/FrugalBuild b/source/apps-extra/acerhk/FrugalBuild index 9277e1a..76463e4 100644 --- a/source/apps-extra/acerhk/FrugalBuild +++ b/source/apps-extra/acerhk/FrugalBuild @@ -4,16 +4,17 @@ pkgname=acerhk pkgver=0.5.35 -pkgrel=40 +pkgrel=41 pkgdesc="Acer Hotkey driver for Linux" url="http://www.cakey.de/acerhk/" Finclude kernel-module groups=('apps-extra') archs=('i686' '!x86_64') up2date="lynx -dump $url |grep tgz$|sed 's/.*-\(.*\)\.t.*/\1/'" -source=($url/archives/$pkgname-$pkgver.tgz kernel2630.patch) +source=($url/archives/$pkgname-$pkgver.tgz kernel263{0,3}.patch) sha1sums=('cf977b2bee3487a401b9c92f04fe8b2ac77f2db2' \ - '4b5e3ca6aa24e920dfd9bbcfa5b1e424b53bca77') + '4b5e3ca6aa24e920dfd9bbcfa5b1e424b53bca77' \ + '02815da77b85ba6b1d0460287e332a35d5b5886f') build() { @@ -21,7 +22,7 @@ build() # no Fcheckkernel, crosscompilation verified Fsed 'CFLAGS' 'EXTRA_CFLAGS' Makefile sed -i '/config.h/d' acerhk.c - KERNELSRC=/usr/src/linux Fmake + KERNELSRC=/usr/src/linux make acerhk.ko || Fdie Ffilerel $_F_kernelmod_dir/kernel/drivers/char/acerhk.ko Fbuild_kernelmod_scriptlet } diff --git a/source/apps-extra/acerhk/kernel2633.patch b/source/apps-extra/acerhk/kernel2633.patch new file mode 100644 index 0000000..b288ee9 --- /dev/null +++ b/source/apps-extra/acerhk/kernel2633.patch @@ -0,0 +1,13 @@ +diff --git a/Makefile b/Makefile +index 44905ef..c2ee782 100644 +--- a/Makefile ++++ b/Makefile +@@ -3,7 +3,7 @@ + #KERNELSRC=/usr/src/linux + KERNELSRC?=/lib/modules/`uname -r`/build + # Starting with 2.6.18, the kernel version is in utsrelease.h instead of version.h, accomodate both cases +-KERNELVERSION=$(shell awk -F\" '/REL/ {print $$2}' $(shell grep -s -l REL $(KERNELSRC)/include/linux/version.h $(KERNELSRC)/include/linux/utsrelease.h)) ++KERNELVERSION=$(shell awk -F\" '/REL/ {print $$2}' $(shell grep -s -l REL $(KERNELSRC)/include/linux/version.h $(KERNELSRC)/include/generated/utsrelease.h)) + KERNELMAJOR=$(shell echo $(KERNELVERSION)|head -c3) + + # next line is for kernel 2.6, if you integrate the driver in the kernel tree From devil505linux at gmail.com Sun Mar 14 07:43:23 2010 From: devil505linux at gmail.com (Devil505) Date: Sun, 14 Mar 2010 07:43:23 +0100 (CET) Subject: [Frugalware-git] frugalware-current: pyrex-0.9.8.6-1-i686 * version bump Message-ID: <20100314064323.3B6E51240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=c38353c734721c2cf0ba42b423819d2ce55eb6fa commit c38353c734721c2cf0ba42b423819d2ce55eb6fa Author: Devil505 Date: Sun Mar 14 07:43:01 2010 +0100 pyrex-0.9.8.6-1-i686 * version bump diff --git a/source/devel-extra/pyrex/FrugalBuild b/source/devel-extra/pyrex/FrugalBuild index 4253a3e..2b8039a 100644 --- a/source/devel-extra/pyrex/FrugalBuild +++ b/source/devel-extra/pyrex/FrugalBuild @@ -3,8 +3,8 @@ # Maintainer: voroskoi pkgname=pyrex -pkgver=0.9.8.5 -pkgrel=2 +pkgver=0.9.8.6 +pkgrel=1 pkgextraver= pkgdesc="A language for writing Python extension modules" url="http://www.cosc.canterbury.ac.nz/~greg/python/Pyrex/" @@ -13,7 +13,7 @@ groups=('devel-extra') archs=('i686' 'x86_64' 'ppc') up2date="lynx -dump $url |grep tar |sed -ne 's/.*-\(.*\).ta.*/\1/;1p' -e s/$pkgextraver//" source=($url/Pyrex-$pkgver$pkgextraver.tar.gz) -sha1sums=('8ee6fa87bae48a74f58e8328316aff4863ef7c05') +sha1sums=('8411d712d2e9157e795593ed5c4cc76b0ede1776') build() { From devil505linux at gmail.com Sun Mar 14 07:45:08 2010 From: devil505linux at gmail.com (Devil505) Date: Sun, 14 Mar 2010 07:45:08 +0100 (CET) Subject: [Frugalware-git] frugalware-current: numlockx-1.2-1-i686 * version bump Message-ID: <20100314064508.309871240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=05ce4e483dc116107bbf50570e07cf87a7520aac commit 05ce4e483dc116107bbf50570e07cf87a7520aac Author: Devil505 Date: Sun Mar 14 07:44:48 2010 +0100 numlockx-1.2-1-i686 * version bump diff --git a/source/xlib-extra/numlockx/FrugalBuild b/source/xlib-extra/numlockx/FrugalBuild index f97c4a1..33f5c27 100644 --- a/source/xlib-extra/numlockx/FrugalBuild +++ b/source/xlib-extra/numlockx/FrugalBuild @@ -2,8 +2,8 @@ # Maintainer: voroskoi pkgname=numlockx -pkgver=1.1 -pkgrel=3 +pkgver=1.2 +pkgrel=1 pkgdesc="Turns on numlock in X." url="http://ktown.kde.org/~seli/numlockx/" depends=('glibc' 'libxtst') @@ -11,7 +11,7 @@ groups=('xlib-extra') archs=('i686' 'x86_64') up2date="lynx -dump http://ktown.kde.org/~seli/numlockx/ |grep numlockx.*tar |sed -n -e 's/.*x-\(.*\)\.t.*/\1/;1 p'" source=(http://ktown.kde.org/~seli/numlockx/$pkgname-$pkgver.tar.gz) -sha1sums=('5c48276839ae108e2fa6dc2293ebfd87d83e45fd') +sha1sums=('0bc24c61a6bcbdaff3215b3c5c120e7d9142b1bf') build() { Fsed 'x_includes=NONE' 'x_includes=/usr/X11R6/include' configure From priyank at frugalware.org Sun Mar 14 07:49:03 2010 From: priyank at frugalware.org (Priyank) Date: Sun, 14 Mar 2010 07:49:03 +0100 (CET) Subject: [Frugalware-git] frugalware-current: perl-anyevent-5.251-1-i686 Message-ID: <20100314064903.A7E591240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=6bfb3a6a43c9da90950ea39ac38c303e5771733b commit 6bfb3a6a43c9da90950ea39ac38c303e5771733b Author: Priyank Date: Sun Mar 14 12:17:12 2010 +0530 perl-anyevent-5.251-1-i686 * Version bump diff --git a/source/devel-extra/perl-anyevent/FrugalBuild b/source/devel-extra/perl-anyevent/FrugalBuild index 41645f4..845f918 100644 --- a/source/devel-extra/perl-anyevent/FrugalBuild +++ b/source/devel-extra/perl-anyevent/FrugalBuild @@ -4,10 +4,10 @@ _F_perl_name=AnyEvent _F_perl_author=M/ML/MLEHMANN -pkgver=5.202 +pkgver=5.251 pkgdesc="Perl framework for multiple event loops." depends=('perl-event>=1.13') Finclude perl archs=('i686' 'x86_64' 'ppc') -sha1sums=('cc417ee5f6d909306fb0a936a0fe03c7f6bc1bd3') +sha1sums=('c0120c05437261d577cb52ddcf2d749c27c4bf18') From devil505linux at gmail.com Sun Mar 14 08:01:40 2010 From: devil505linux at gmail.com (Devil505) Date: Sun, 14 Mar 2010 08:01:40 +0100 (CET) Subject: [Frugalware-git] frugalware-current: fox-1.6.37-1-i686 * version bump Message-ID: <20100314070140.0A6C61240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=74fd72439606f98edadaa49d75cb124e8a902918 commit 74fd72439606f98edadaa49d75cb124e8a902918 Author: Devil505 Date: Sun Mar 14 07:58:56 2010 +0100 fox-1.6.37-1-i686 * version bump diff --git a/source/xlib-extra/fox/FrugalBuild b/source/xlib-extra/fox/FrugalBuild index 2ceae23..1e07e67 100644 --- a/source/xlib-extra/fox/FrugalBuild +++ b/source/xlib-extra/fox/FrugalBuild @@ -2,8 +2,8 @@ # Maintainer: voroskoi pkgname=fox -pkgver=1.6.36 -pkgrel=2 +pkgver=1.6.37 +pkgrel=1 pkgdesc="FOX is a C++ based Toolkit for developing Graphical User Interfaces easily and effectively." url="http://www.fox-toolkit.org/" depends=('libxft>=2.1.13-2' 'libxcursor>=1.1.9-2' 'libxrandr>=1.3.0-1' 'libjpeg' 'libpng' 'libtiff' 'bzip2' 'mesa>=7.4.2-5') @@ -11,7 +11,7 @@ groups=('xlib-extra') archs=('i686' 'x86_64') up2date="lynx -dump $url/download.html |grep fox-.*.tar.gz.*\(STABLE |sed -ne 's/.*x-\(.*\).t.*/\1/;1 p'" source=(http://www.fox-toolkit.org/ftp/$pkgname-$pkgver.tar.gz) -sha1sums=('28ad1823033027fb05887cb625301c2eae56c08e') +sha1sums=('971943803ea299fa17f75a6e3f19ed1b0e665f44') build() { export CPPFLAGS="$CFLAGS" From devil505linux at gmail.com Sun Mar 14 08:06:39 2010 From: devil505linux at gmail.com (Devil505) Date: Sun, 14 Mar 2010 08:06:39 +0100 (CET) Subject: [Frugalware-git] frugalware-current: gajim-0.13.3-1-i686 * version bump Message-ID: <20100314070639.6ED861240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=f8d6735e981535ecd94fd52907171f6d3716edf9 commit f8d6735e981535ecd94fd52907171f6d3716edf9 Author: Devil505 Date: Sun Mar 14 08:04:50 2010 +0100 gajim-0.13.3-1-i686 * version bump diff --git a/source/xapps-extra/gajim/FrugalBuild b/source/xapps-extra/gajim/FrugalBuild index 15885be..5d40268 100644 --- a/source/xapps-extra/gajim/FrugalBuild +++ b/source/xapps-extra/gajim/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: voroskoi pkgname=gajim -pkgver=0.13.2 +pkgver=0.13.3 pkgrel=1 pkgdesc="The goal of Gajim is to provide a full featured and easy to use Jabber client." url="http://www.gajim.org/" @@ -13,7 +13,7 @@ groups=('xapps-extra') archs=('i686' 'x86_64') up2date="lynx -dump http://www.gajim.org/downloads.php?lang=en |grep tar.bz2 |sed 's/.*-\(.*\).t.*/\1/'" source=(http://www.gajim.org/downloads/0.13/gajim-$pkgver.tar.bz2) -sha1sums=('ee3eaa33828d862208656e3862fd80846e5b9b31') +sha1sums=('44006e13ae17dd52ef35c233706b6f4d7ad9cb89') options=('nodocs') # optimization OK From priyank at frugalware.org Sun Mar 14 08:11:14 2010 From: priyank at frugalware.org (Priyank) Date: Sun, 14 Mar 2010 08:11:14 +0100 (CET) Subject: [Frugalware-git] frugalware-current: python-logilab-common-0.48.1-1-i686 Message-ID: <20100314071114.321811240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=5799948ce4c9cd828de86b082507893af1ba738c commit 5799948ce4c9cd828de86b082507893af1ba738c Author: Priyank Date: Sun Mar 14 12:40:07 2010 +0530 python-logilab-common-0.48.1-1-i686 * Version bump diff --git a/source/devel-extra/python-logilab-common/FrugalBuild b/source/devel-extra/python-logilab-common/FrugalBuild index 34f7ee9..245a553 100644 --- a/source/devel-extra/python-logilab-common/FrugalBuild +++ b/source/devel-extra/python-logilab-common/FrugalBuild @@ -4,7 +4,7 @@ pkgname=python-logilab-common _F_archive_name=logilab-common -pkgver=0.46.0 +pkgver=0.48.1 pkgrel=1 pkgdesc="Providing low level functionalities needed for logilab python programs." url="http://www.logilab.org/projects/common/project_view" @@ -15,5 +15,5 @@ up2date="lynx -dump http://www.logilab.org/ftp/pub/common | Flasttar" source=(ftp://ftp.logilab.org/pub/common/logilab-common-$pkgver.tar.gz) Finclude python _F_cd_path=logilab-common-$pkgver -sha1sums=('417ed8b2b1bbbca7760b44ba2fe286bf6705eb91') +sha1sums=('b131f4306fc52db766e149f1a2d53fa352b76529') From devil505linux at gmail.com Sun Mar 14 08:20:01 2010 From: devil505linux at gmail.com (Devil505) Date: Sun, 14 Mar 2010 08:20:01 +0100 (CET) Subject: [Frugalware-git] frugalware-current: unrar-3.9.9-1-i686 * version bump Message-ID: <20100314072001.B4A6D1240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=ae2e99fe76a1f0be79ad79a328a46d179b53d257 commit ae2e99fe76a1f0be79ad79a328a46d179b53d257 Author: Devil505 Date: Sun Mar 14 08:19:36 2010 +0100 unrar-3.9.9-1-i686 * version bump diff --git a/source/apps-extra/unrar/FrugalBuild b/source/apps-extra/unrar/FrugalBuild index 354b216..73685cf 100644 --- a/source/apps-extra/unrar/FrugalBuild +++ b/source/apps-extra/unrar/FrugalBuild @@ -3,7 +3,7 @@ # Maintainer: voroskoi pkgname=unrar -pkgver=3.9.6 +pkgver=3.9.9 pkgrel=1 pkgdesc="Uncompress rar files" url="http://www.rarlab.com/" @@ -12,7 +12,7 @@ groups=('apps-extra') archs=('i686' 'x86_64' 'ppc') up2date="lynx -dump $url/rar_add.htm |grep unrarsrc |sed 's/.*c-\(.*\).t.*/\1/'" source=(http://www.rarlab.com/rar/unrarsrc-$pkgver.tar.gz) -sha1sums=('b2c0f08060b8ec92f4439d41ed4c613f4b801ed8') +sha1sums=('0020f92b1c04128ff23784aa9ca4ebfd4cf18843') build() { Fcd $pkgname From devil505linux at gmail.com Sun Mar 14 08:22:52 2010 From: devil505linux at gmail.com (Devil505) Date: Sun, 14 Mar 2010 08:22:52 +0100 (CET) Subject: [Frugalware-git] frugalware-current: cracklib-2.8.16-1-i686 * version bump Message-ID: <20100314072252.E2DCB1240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=aeb892df2c6de05e1c24e5ac11a49e02e0ea80b3 commit aeb892df2c6de05e1c24e5ac11a49e02e0ea80b3 Author: Devil505 Date: Sun Mar 14 08:22:04 2010 +0100 cracklib-2.8.16-1-i686 * version bump diff --git a/source/lib-extra/cracklib/FrugalBuild b/source/lib-extra/cracklib/FrugalBuild index 58dcee4..60ae33b 100644 --- a/source/lib-extra/cracklib/FrugalBuild +++ b/source/lib-extra/cracklib/FrugalBuild @@ -2,14 +2,14 @@ # Maintainer: voroskoi pkgname=cracklib -pkgver=2.8.15 +pkgver=2.8.16 pkgrel=1 pkgdesc="Next generation version of libCrack password checking library." depends=('glibc') groups=('lib-extra') archs=('i686' 'x86_64') Finclude sourceforge -sha1sums=('2535a49da92bfece48639d23ada6964d122cc9ac') +sha1sums=('21c181ed22ab7ab1e178c09fa251c9615f9f336c') build() { Fbuild --with-default-dict='$(libdir)/cracklib_dict' From priyank at frugalware.org Sun Mar 14 08:26:19 2010 From: priyank at frugalware.org (Priyank) Date: Sun, 14 Mar 2010 08:26:19 +0100 (CET) Subject: [Frugalware-git] frugalware-current: libenca-1.13-1-i686 Message-ID: <20100314072619.A51991240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=64f69916c058d173e289a57d2b88451ff1766ffc commit 64f69916c058d173e289a57d2b88451ff1766ffc Author: Priyank Date: Sun Mar 14 12:55:13 2010 +0530 libenca-1.13-1-i686 * Version bump diff --git a/source/lib-extra/libenca/FrugalBuild b/source/lib-extra/libenca/FrugalBuild index a56342d..f37d8fa 100644 --- a/source/lib-extra/libenca/FrugalBuild +++ b/source/lib-extra/libenca/FrugalBuild @@ -3,7 +3,7 @@ pkgname=libenca _F_archive_name="${pkgname/lib/}" -pkgver=1.12 +pkgver=1.13 pkgrel=1 pkgdesc="An extremely naive character set analyzer library" url="http://gitorious.org/enca" @@ -12,7 +12,7 @@ groups=('lib-extra') archs=('i686' 'x86_64') up2date="lynx -dump $url | Flasttar" source=(http://dl.cihar.com/enca//${pkgname/lib/}-$pkgver.tar.bz2) -sha1sums=('36e1e6ebac9dbf701008d80362f10ac50378b4dc') +sha1sums=('448e5a6d356980ca6d489e760eacbcca118b320f') _F_cd_path=${pkgname/lib/}-$pkgver subpkgs=("enca") subdescs=("Enca is a character set analyzer") From priyank at frugalware.org Sun Mar 14 08:52:05 2010 From: priyank at frugalware.org (Priyank) Date: Sun, 14 Mar 2010 08:52:05 +0100 (CET) Subject: [Frugalware-git] fw-control-center: gnetconfig: Added WPA support Message-ID: <20100314075205.9E1D41240001@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=fw-control-center.git;a=commitdiff;h=931689ca35858cad5ba04e1a6c36c0a9700efa18 commit 931689ca35858cad5ba04e1a6c36c0a9700efa18 Author: Priyank Date: Sun Mar 14 01:27:41 2010 +0530 gnetconfig: Added WPA support diff --git a/gnetconfig/glade/gnetconfig.glade b/gnetconfig/glade/gnetconfig.glade index b5748d2..c92badc 100644 --- a/gnetconfig/glade/gnetconfig.glade +++ b/gnetconfig/glade/gnetconfig.glade @@ -1,7 +1,7 @@ - - - + + + 550 500 @@ -27,9 +27,9 @@ GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK + gtk-quit True GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - gtk-quit True True @@ -51,10 +51,10 @@ GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK + gtk-new True GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK New profile - gtk-new True True @@ -75,10 +75,10 @@ GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK + gtk-about True GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK About gnetconfig - gtk-about True True @@ -90,6 +90,7 @@ False + 0 @@ -104,11 +105,12 @@ 0 0 gtk-network - 5 + 5 False False + 0 @@ -159,6 +161,9 @@ Graphical network configuration tool for Frugalware linux. <b>Select profile: </b> True + + 0 + @@ -170,6 +175,9 @@ Graphical network configuration tool for Frugalware linux. True GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK + + 0 + @@ -180,7 +188,6 @@ Graphical network configuration tool for Frugalware linux. True True GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - 0 True @@ -192,6 +199,9 @@ Graphical network configuration tool for Frugalware linux. 0.80000001192092896 gtk-apply + + 0 + @@ -218,7 +228,6 @@ Graphical network configuration tool for Frugalware linux. True True GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - 0 True @@ -230,6 +239,9 @@ Graphical network configuration tool for Frugalware linux. 0.80000001192092896 gtk-delete + + 0 + @@ -269,6 +281,9 @@ Graphical network configuration tool for Frugalware linux. <b>Description:</b> True + + 0 + @@ -281,6 +296,9 @@ Graphical network configuration tool for Frugalware linux. True GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK + + 0 + @@ -288,13 +306,12 @@ Graphical network configuration tool for Frugalware linux. True True GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - 0 True GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK gtk-save - 1 + 1 @@ -342,6 +359,7 @@ Graphical network configuration tool for Frugalware linux. False 5 + 0 @@ -358,9 +376,9 @@ Graphical network configuration tool for Frugalware linux. True GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK 4 - GTK_POLICY_NEVER - GTK_POLICY_AUTOMATIC - GTK_SHADOW_IN + never + automatic + in 107 @@ -376,6 +394,7 @@ Graphical network configuration tool for Frugalware linux. False + 0 @@ -384,9 +403,9 @@ Graphical network configuration tool for Frugalware linux. True GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK 4 - GTK_POLICY_AUTOMATIC - GTK_POLICY_AUTOMATIC - GTK_SHADOW_ETCHED_OUT + automatic + automatic + etched-out True @@ -402,6 +421,9 @@ Graphical network configuration tool for Frugalware linux. + + 0 + @@ -409,14 +431,13 @@ Graphical network configuration tool for Frugalware linux. GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK 3 4 - GTK_BUTTONBOX_START + start True True True GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - 0 True @@ -430,6 +451,7 @@ Graphical network configuration tool for Frugalware linux. False 8 + 0 @@ -447,6 +469,11 @@ Graphical network configuration tool for Frugalware linux. + + False + False + 0 + @@ -454,7 +481,6 @@ Graphical network configuration tool for Frugalware linux. True True GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - 0 True @@ -468,6 +494,7 @@ Graphical network configuration tool for Frugalware linux. False 9 + 0 @@ -486,6 +513,8 @@ Graphical network configuration tool for Frugalware linux. + False + False 1 @@ -498,7 +527,6 @@ Graphical network configuration tool for Frugalware linux. True True GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - 0 True @@ -512,6 +540,7 @@ Graphical network configuration tool for Frugalware linux. False 8 + 0 @@ -530,6 +559,8 @@ Graphical network configuration tool for Frugalware linux. + False + False 3 @@ -539,7 +570,6 @@ Graphical network configuration tool for Frugalware linux. True True GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - 0 True @@ -553,6 +583,7 @@ Graphical network configuration tool for Frugalware linux. False 2 + 0 @@ -569,20 +600,23 @@ Graphical network configuration tool for Frugalware linux. + False + False 4 + gtk-delete True True True GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - gtk-delete True - 0 + False + False 5 @@ -607,8 +641,8 @@ Graphical network configuration tool for Frugalware linux. Connection - tab False + tab @@ -632,6 +666,7 @@ The full hostname is needed, such as: False False + 0 @@ -653,13 +688,12 @@ The full hostname is needed, such as: 354 + gtk-save True True True GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - gtk-save True - 0 @@ -682,9 +716,9 @@ The full hostname is needed, such as: Host - tab 1 False + tab @@ -709,6 +743,7 @@ If you don't have a name server on your network, just leave this blank. False + 0 @@ -721,8 +756,8 @@ If you don't have a name server on your network, just leave this blank. True True GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - GTK_POLICY_NEVER - GTK_SHADOW_ETCHED_IN + never + etched-in 65 @@ -732,35 +767,43 @@ If you don't have a name server on your network, just leave this blank. + + 0 + True GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK 7 - GTK_BUTTONBOX_START + start + gtk-add True True True GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - gtk-add True - 0 + + False + False + 0 + + gtk-delete True True True GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - gtk-delete True - 0 + False + False 1 @@ -790,9 +833,9 @@ If you don't have a name server on your network, just leave this blank. DNS - tab 2 False + tab @@ -823,8 +866,8 @@ If you don't have a name server on your network, just leave this blank. GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK 5 - GTK_WIN_POS_CENTER_ON_PARENT - GDK_WINDOW_TYPE_HINT_DIALOG + center-on-parent + dialog False @@ -910,63 +953,63 @@ lo False False 1 + 0 GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK 9 - 6 + 7 2 4 4 - - - - + True - True - Use WPA Encryption - 0 - True + GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK + 0 + 0 + <b>Mode:</b> + True - 1 - 2 - 3 - 4 + GTK_FILL + - + True GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - 0 - 0 - <b>WPA driver:</b> - True - PANGO_ELLIPSIZE_START + Ad-Hoc +Managed +Master +Monitor +Repeater +Secondary +Auto + - 5 - 6 - GTK_FILL - + 1 + 2 + GTK_FILL - + True GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK 0 0 - <b>WPA Passphrase:</b> + <b>WPA driver:</b> True + start - 4 - 5 + 6 + 7 GTK_FILL @@ -986,8 +1029,8 @@ ndiswrapper 1 2 - 5 - 6 + 6 + 7 GTK_FILL GTK_FILL @@ -997,39 +1040,40 @@ ndiswrapper True True GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK + 1 2 - 4 - 5 + 5 + 6 GTK_FILL GTK_FILL - + True GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK 0 0 - <b>Key:</b> + <b>WPA Passphrase:</b> True - 2 - 3 + 5 + 6 GTK_FILL - + True GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK 0 0 - <b>ESSID:</b> + <b>Authentication:</b> True @@ -1040,32 +1084,66 @@ ndiswrapper - + + True + GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK + Open +WEP +WPA + + + 1 + 2 + 1 + 2 + GTK_FILL + + + + + True + True + GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK + + + + 1 + 2 + 4 + 5 + GTK_FILL + GTK_FILL + + + + True GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK 0 0 - <b>Mode:</b> + <b>Key:</b> True + 4 + 5 GTK_FILL - + + Use WPA supplicant True True - GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK + False + True 1 2 2 3 - GTK_FILL - GTK_FILL @@ -1073,36 +1151,36 @@ ndiswrapper True True GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK + 1 2 - 1 - 2 + 3 + 4 GTK_FILL GTK_FILL - + True GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - Ad-Hoc -Managed -Master -Monitor -Repeater -Secondary -Auto - + 0 + 0 + <b>ESSID:</b> + True - 1 - 2 + 3 + 4 GTK_FILL - GTK_FILL + + + + False @@ -1246,6 +1324,7 @@ Auto 5 + 0 @@ -1306,14 +1385,14 @@ dhclient + Configure this interface for DSL connection True True + False GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK 6 - Configure this interface for DSL connection 0 0 - 0 True @@ -1429,6 +1508,9 @@ dhclient GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK gtk-properties + + 0 + @@ -1443,8 +1525,8 @@ dhclient - tab False + tab @@ -1465,6 +1547,7 @@ dhclient False + 0 @@ -1494,35 +1577,43 @@ dhclient GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK False + + 0 + True GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK 4 - GTK_BUTTONBOX_START + start + gtk-add True True True GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - gtk-add True - 0 + + False + False + 0 + + gtk-remove True True True GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - gtk-remove True - 0 + False + False 1 @@ -1575,35 +1666,43 @@ dhclient GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK False + + 0 + True GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK 4 - GTK_BUTTONBOX_START + start + gtk-add True True True GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - gtk-add True - 0 + + False + False + 0 + + gtk-remove True True True GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - gtk-remove True - 0 + False + False 1 @@ -1656,35 +1755,43 @@ dhclient GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK False + + 0 + True GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK 4 - GTK_BUTTONBOX_START +