From vmiklos at frugalware.org Sat Sep 1 00:28:10 2007 From: vmiklos at frugalware.org (VMiklos) Date: Sat Sep 1 00:28:12 2007 Subject: [Frugalware-git] setup: Revert "loadsource/is_netinstall(): more cleanup from hermier" Message-ID: <20070831222810.2AB7313A4063@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=setup/.git;a=commitdiff;h=ee4a8f1da708a4c0724ac848a99475c8505d1840 commit ee4a8f1da708a4c0724ac848a99475c8505d1840 Author: VMiklos Date: Sat Sep 1 02:27:42 2007 +0200 Revert "loadsource/is_netinstall(): more cleanup from hermier" This reverts commit 8ff156d. The cleanup was ok when booting the kernel + initrd in qemu but it breaks real netinstalls. diff --git a/src/plugins/loadsource.c b/src/plugins/loadsource.c index d4a2c94..e611230 100644 --- a/src/plugins/loadsource.c +++ b/src/plugins/loadsource.c @@ -102,7 +102,11 @@ int is_netinstall(char *path) int ret; ptr = g_strdup_printf("%s/frugalware-%s", path, ARCH); - ret = !stat(ptr, &statbuf) && !S_ISDIR(statbuf.st_mode); + if(!stat(ptr, &statbuf) + && S_ISDIR(statbuf.st_mode)) + ret = 0; + else + ret = 1; FREE(ptr); return(ret); } From vmiklos at frugalware.org Sat Sep 1 00:35:37 2007 From: vmiklos at frugalware.org (VMiklos) Date: Sat Sep 1 00:35:40 2007 Subject: [Frugalware-git] frugalware-current: fwsetup-0.7.9-3-x86_64 Message-ID: <20070831223537.8C25B13A4063@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current/.git;a=commitdiff;h=f01415621621adf0035a2c027c9eb753c45783da commit f01415621621adf0035a2c027c9eb753c45783da Author: VMiklos Date: Sat Sep 1 00:34:28 2007 +0200 fwsetup-0.7.9-3-x86_64 fix another blocker diff --git a/source/devel-extra/fwsetup/FrugalBuild b/source/devel-extra/fwsetup/FrugalBuild index 0469f88..d13b430 100644 --- a/source/devel-extra/fwsetup/FrugalBuild +++ b/source/devel-extra/fwsetup/FrugalBuild @@ -3,7 +3,7 @@ pkgname=fwsetup pkgver=0.7.9 -pkgrel=2 +pkgrel=3 pkgdesc="Frugalware Setup" url="http://ftp.frugalware.org/pub/other/setup/" depends=() @@ -12,8 +12,9 @@ groups=('devel-extra') archs=('i686' 'x86_64') up2date="lynx -dump $url/releases/ |Flasttar" source=($url/releases/$pkgname-$pkgver.tar.gz \ - http://git.frugalware.org/patches/setup/b205628210e4c7e204e4556d08b2eecb17c3ef7b.patch) -signatures=("$source.asc" '') + http://git.frugalware.org/patches/setup/b205628210e4c7e204e4556d08b2eecb17c3ef7b.patch \ + http://git.frugalware.org/patches/setup/ee4a8f1da708a4c0724ac848a99475c8505d1840.patch) +signatures=("$source.asc" '' '') options=('nofakeroot') unset MAKEFLAGS Fconfopts="$Fconfopts --repo=testing" From vmiklos at frugalware.org Sat Sep 1 01:45:15 2007 From: vmiklos at frugalware.org (VMiklos) Date: Sat Sep 1 01:45:17 2007 Subject: [Frugalware-git] setup: bin/bootstrap: cleanup Message-ID: <20070831234515.0C31F13A4064@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=setup/.git;a=commitdiff;h=f2336b56c810d694aa59c0ff6ff3ce83e241b312 commit f2336b56c810d694aa59c0ff6ff3ce83e241b312 Author: VMiklos Date: Sat Sep 1 03:43:55 2007 +0200 bin/bootstrap: cleanup diff --git a/Makefile b/Makefile index 4efd7be..d8b0e66 100644 --- a/Makefile +++ b/Makefile @@ -148,7 +148,6 @@ endif cp etc/rc.S $(MDIR)/etc/rc.d/ chmod +x $(MDIR)/etc/rc.d/rc.S cp bin/bootstrap $(MDIR)/bin/ - chmod +x $(MDIR)/bin/bootstrap devices: compile mknod -m 700 $(MDIR)/dev/console c 5 1 From vmiklos at frugalware.org Sat Sep 1 01:45:14 2007 From: vmiklos at frugalware.org (VMiklos) Date: Sat Sep 1 01:45:17 2007 Subject: [Frugalware-git] setup: update adsl hack for newer frugalwareutils Message-ID: <20070831234514.E9A2413A4063@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=setup/.git;a=commitdiff;h=36cd196ed99a4b32c344fc8c16a4698f5600779c commit 36cd196ed99a4b32c344fc8c16a4698f5600779c Author: VMiklos Date: Sat Sep 1 03:43:23 2007 +0200 update adsl hack for newer frugalwareutils diff --git a/Makefile b/Makefile index c8bbf09..4efd7be 100644 --- a/Makefile +++ b/Makefile @@ -149,8 +149,6 @@ endif chmod +x $(MDIR)/etc/rc.d/rc.S cp bin/bootstrap $(MDIR)/bin/ chmod +x $(MDIR)/bin/bootstrap - cp bin/service $(MDIR)/sbin/ - chmod +x $(MDIR)/sbin/service devices: compile mknod -m 700 $(MDIR)/dev/console c 5 1 @@ -384,6 +382,7 @@ rp-pppoe: $(UNPACK); \ cp -a etc ../rp-pppoe/; \ cp -a usr/sbin ../rp-pppoe/usr/; \ + cp bin/pppoe-start ../rp-pppoe/sbin/ glib2: $(CLEANUP) diff --git a/bin/pppoe-start b/bin/pppoe-start new file mode 100755 index 0000000..93766da --- /dev/null +++ b/bin/pppoe-start @@ -0,0 +1,3 @@ +#!/bin/sh + +pppoe-connect >/dev/tty4 2>/dev/tty4 & diff --git a/bin/service b/bin/service deleted file mode 100644 index 879b990..0000000 --- a/bin/service +++ /dev/null @@ -1,7 +0,0 @@ -#!/bin/sh - -if [ "$1" = "adsl" -a "$2" = "start" ]; then - pppoe-connect >/dev/tty4 2>/dev/tty4 & -else - echo "usage: $0 adsl start" -fi From vmiklos at frugalware.org Sat Sep 1 01:45:15 2007 From: vmiklos at frugalware.org (VMiklos) Date: Sat Sep 1 01:45:17 2007 Subject: [Frugalware-git] setup: bin/bootstrap: permission fix Message-ID: <20070831234515.2FFBD13A4065@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=setup/.git;a=commitdiff;h=a6c1050642358fdc618bb98a5842ec7d058ecd64 commit a6c1050642358fdc618bb98a5842ec7d058ecd64 Author: VMiklos Date: Sat Sep 1 03:44:38 2007 +0200 bin/bootstrap: permission fix diff --git a/bin/bootstrap b/bin/bootstrap old mode 100644 new mode 100755 From vmiklos at frugalware.org Sat Sep 1 14:24:25 2007 From: vmiklos at frugalware.org (VMiklos) Date: Sat Sep 1 14:24:26 2007 Subject: [Frugalware-git] pacman-tools: fblint: permission fix Message-ID: <20070901122425.2B57C13A4063@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=pacman-tools/.git;a=commitdiff;h=a00d340bf4421df26502e165d40d7972fbce861c commit a00d340bf4421df26502e165d40d7972fbce861c Author: VMiklos Date: Sat Sep 1 14:24:20 2007 +0200 fblint: permission fix diff --git a/fblint b/fblint old mode 100644 new mode 100755 From vmiklos at frugalware.org Sat Sep 1 15:05:58 2007 From: vmiklos at frugalware.org (VMiklos) Date: Sat Sep 1 15:06:01 2007 Subject: [Frugalware-git] ooodev: openoffice.org-2.3oog680_m1-1-i686 Message-ID: <20070901130558.9207113A4003@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=ooodev/.git;a=commitdiff;h=de8754ebc16e41a3143f6d281df73f061e59e5c6 commit de8754ebc16e41a3143f6d281df73f061e59e5c6 Author: VMiklos Date: Sat Sep 1 15:05:52 2007 +0200 openoffice.org-2.3oog680_m1-1-i686 symlink the mozilla plugin to /usr/lib/mozilla/plugins diff --git a/source/xapps/openoffice.org/FrugalBuild b/source/xapps/openoffice.org/FrugalBuild index c1496d9..16a0bcc 100644 --- a/source/xapps/openoffice.org/FrugalBuild +++ b/source/xapps/openoffice.org/FrugalBuild @@ -154,6 +154,10 @@ build() { Fmakeinstall + # Enable the mozilla plugin + Fmkdir /usr/lib/mozilla/plugins + Fln /usr/lib/openoffice.org/program/libnpsoplugin.so /usr/lib/mozilla/plugins/ + # Remove some dicts, our separate package is more recent Frm usr/lib/openoffice.org/share/dict/ooo/*hu_HU* From vmiklos at frugalware.org Sat Sep 1 15:18:24 2007 From: vmiklos at frugalware.org (VMiklos) Date: Sat Sep 1 15:18:27 2007 Subject: [Frugalware-git] ooodev: openoffice.org-2.3oog680_m2-1-i686 Message-ID: <20070901131824.5E43213A4003@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=ooodev/.git;a=commitdiff;h=5111b3020067ac8a9b9c345563f58d827eaac33b commit 5111b3020067ac8a9b9c345563f58d827eaac33b Author: VMiklos Date: Sat Sep 1 15:18:18 2007 +0200 openoffice.org-2.3oog680_m2-1-i686 update to newer milestone diff --git a/source/xapps/openoffice.org/FrugalBuild b/source/xapps/openoffice.org/FrugalBuild index 16a0bcc..97adafb 100644 --- a/source/xapps/openoffice.org/FrugalBuild +++ b/source/xapps/openoffice.org/FrugalBuild @@ -16,10 +16,10 @@ if [ ! "`check_option DEVEL`" ]; then else upstream=2.3 tree=oog680 - milestone=1 + milestone=2 pkgver=$upstream${tree}_m$milestone pkgrel=1 - snapshot=20070830 + snapshot=20070901 fi pkgdesc="OpenOffice.org, a full office productivity suite." url="http://www.openoffice.org/" @@ -112,7 +112,6 @@ build() { cp $Fsrcdir/hu.sdf src/GSI_hu.sdf || return 1 # Remove our patches so that incremental build will be possible. - sed -i '/--disable-mozilla/d' distro-configs/Frugalware.conf.in Fpatchall # SMP build From vmiklos at frugalware.org Sat Sep 1 15:48:20 2007 From: vmiklos at frugalware.org (VMiklos) Date: Sat Sep 1 15:48:22 2007 Subject: [Frugalware-git] ooodev: openoffice.org-2.3oog680_m2-1-x86_64 Message-ID: <20070901134820.417ED13A4003@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=ooodev/.git;a=commitdiff;h=4c434cb4e46b1cc85b243f0de28555105edd2e5e commit 4c434cb4e46b1cc85b243f0de28555105edd2e5e Author: VMiklos Date: Sat Sep 1 15:48:07 2007 +0200 openoffice.org-2.3oog680_m2-1-x86_64 work around smp build diff --git a/source/xapps/openoffice.org/FrugalBuild b/source/xapps/openoffice.org/FrugalBuild index 97adafb..3a3f20c 100644 --- a/source/xapps/openoffice.org/FrugalBuild +++ b/source/xapps/openoffice.org/FrugalBuild @@ -115,10 +115,10 @@ build() { Fpatchall # SMP build - #if [ ! -z "$MAKEFLAGS" ]; then - # Fconfopts="$Fconfopts --with-num-cpus=${MAKEFLAGS/-j}" - # unset MAKEFLAGS - #fi + if [ ! -z "$MAKEFLAGS" ]; then + #Fconfopts="$Fconfopts --with-num-cpus=${MAKEFLAGS/-j}" + unset MAKEFLAGS + fi # Other options. Fconfopts="$Fconfopts \ From vmiklos at frugalware.org Sat Sep 1 22:45:56 2007 From: vmiklos at frugalware.org (VMiklos) Date: Sat Sep 1 22:45:58 2007 Subject: [Frugalware-git] setup: fw_inputbox(): enable wildcards for passwords, jut like in libfwdialog Message-ID: <20070901204556.A267713A4003@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=setup/.git;a=commitdiff;h=933fa493f0d3b5e5888b5675061a177509ffa55a commit 933fa493f0d3b5e5888b5675061a177509ffa55a Author: VMiklos Date: Sat Sep 1 22:45:40 2007 +0200 fw_inputbox(): enable wildcards for passwords, jut like in libfwdialog diff --git a/src/util.c b/src/util.c index 290b524..fb2ba18 100644 --- a/src/util.c +++ b/src/util.c @@ -462,8 +462,11 @@ int fw_inputbox(const char *title, const char *cprompt, int height, int width, dialog_vars.input_result = my_buffer; dlg_put_backtitle(); dlg_clear(); + if(password) + dialog_vars.insecure = 1; ret = dialog_inputbox(title, cprompt, height, width, init, password); + dialog_vars.insecure = 0; if (ret != DLG_EXIT_CANCEL) return(0); else From vmiklos at frugalware.org Sat Sep 1 23:34:47 2007 From: vmiklos at frugalware.org (VMiklos) Date: Sat Sep 1 23:35:06 2007 Subject: [Frugalware-git] bmf: asciidoc-8.2.3b1-1bmf1-i686 Message-ID: <20070901213447.2143B13A4003@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=bmf/.git;a=commitdiff;h=a1f89ab9fb259e8ae92bf7c3fe984587c68a645f commit a1f89ab9fb259e8ae92bf7c3fe984587c68a645f Author: VMiklos Date: Sat Sep 1 23:32:20 2007 +0200 asciidoc-8.2.3b1-1bmf1-i686 update permalink patch, this one is the version from svn diff --git a/source/apps-extra/asciidoc/FrugalBuild b/source/apps-extra/asciidoc/FrugalBuild index 193c5d7..39765e4 100644 --- a/source/apps-extra/asciidoc/FrugalBuild +++ b/source/apps-extra/asciidoc/FrugalBuild @@ -2,8 +2,8 @@ # Maintainer: voroskoi pkgname=asciidoc -pkgver=8.2.2 -pkgrel=2bmf1 +pkgver=8.2.3b1 +pkgrel=1bmf1 pkgdesc="AsciiDoc is a text document format for writing short documents, articles, books and UNIX man pages." url="http://www.methods.co.nz/asciidoc/index.html" depends=() @@ -12,17 +12,18 @@ makedepends=('imagemagick' 'libpng' 'libjpeg' 'fontconfig') groups=('apps-extra') archs=('i686' 'x86_64') up2date="lynx -dump http://www.methods.co.nz/asciidoc/downloads.html |Flasttar" -source=(http://www.methods.co.nz/asciidoc/asciidoc-$pkgver.tar.gz \ - http://frugalware.org/~vmiklos/patches/asciidoc-8.2.2-permalink.diff) +source=(http://www.methods.co.nz/asciidoc/asciidoc-8.2.2.tar.gz \ + http://hcoop.net//pipermail/asciidoc-discuss/attachments/20070901/f0c10ef4/attachment.txt) build() { + Fcd asciidoc-8.2.2 Fmkdir $Fprefix/bin $Fprefix/share/vim Fsed 'BINDIR=/usr/local/bin' "BINDIR=$Fdestdir/$Fprefix/bin" install.sh Fsed 'MANDIR=/usr/local/man' "MANDIR=$Fdestdir/$Fprefix/man" install.sh Fsed 'CONFDIR=/etc/asciidoc' "CONFDIR=$Fdestdir/$Fsysconfdir/asciidoc" install.sh Fsed 'VIM_CONFDIR=/etc/vim' "VIM_CONFDIR=$Fdestdir/$Fprefix/share/vim" install.sh Fsed 'http://www.oasis-open.org/docbook/xml/' 'file:///usr/share/sgml/docbook/dtd/xml-dtd-' docbook.conf - Fpatchall + Fpatch attachment.txt sh install.sh # provive the images in jpg format, too. this is necessary as fop can't # use png images without license problems for pdfs @@ -32,4 +33,4 @@ build() { done } sha1sums=('ffd0de7b45474a88ab3b895f5c440024a954540a' \ - '4c0c5442bc989e93ad861e99f1d6149ed10f5042') + 'b02bc879af19d3dbd55c0f9af6f3cb131b34cff2') From vmiklos at frugalware.org Sun Sep 2 00:13:54 2007 From: vmiklos at frugalware.org (VMiklos) Date: Sun Sep 2 00:13:57 2007 Subject: [Frugalware-git] pacman-tools: update volumes.xml example Message-ID: <20070901221354.EFCDF13A4016@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=pacman-tools/.git;a=commitdiff;h=26db164daace920a6422f0d50167a6968e3d2c15 commit 26db164daace920a6422f0d50167a6968e3d2c15 Author: VMiklos Date: Sun Sep 2 00:13:11 2007 +0200 update volumes.xml example the previous example was for 0.5pre2 and was quite outdated diff --git a/mkiso/volumes.xml b/mkiso/volumes.xml index ff16c7e..89b8c01 100644 --- a/mkiso/volumes.xml +++ b/mkiso/volumes.xml @@ -1,67 +1,13 @@ - /home/ftp/pub/frugalware/frugalware-current - /home/ftp/pub/frugalware/frugalware-current-iso - 0.5pre2 - Siwenna - - i686 - net - - - i686 - cd - 1 - - - i686 - cd - 2 - - - i686 - cd - 3 - - - i686 - cd - 4 - - - i686 - cd - 5 - - - i686 - cd - 6 - - - i686 - cd - 7 - - - i686 - cd - 8 - - - i686 - cd - 9 - + /home/ftp/pub/frugalware/frugalware-testing + /home/ftp/pub/frugalware/frugalware-testing-iso + 0.6rc1 + Sayshell i686 dvd 1 - - i686 - dvd - 2 - From vmiklos at frugalware.org Sun Sep 2 00:13:54 2007 From: vmiklos at frugalware.org (VMiklos) Date: Sun Sep 2 00:13:58 2007 Subject: [Frugalware-git] pacman-tools: mkisorelease: import Message-ID: <20070901221354.CC6D813A4003@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=pacman-tools/.git;a=commitdiff;h=aef0944e729a6d6583379ba6c588d2d12eb75078 commit aef0944e729a6d6583379ba6c588d2d12eb75078 Author: VMiklos Date: Sun Sep 2 00:12:43 2007 +0200 mkisorelease: import diff --git a/mkisorelease b/mkisorelease new file mode 100755 index 0000000..76b0ccd --- /dev/null +++ b/mkisorelease @@ -0,0 +1,27 @@ +#!/bin/sh + +# initial attempt to do a fully automated update of the -iso dir for a release +# this script can do the net, cd* and dvd* images for one arch atm + +dosplit() +{ + sed -i "s|[a-z]\+|$1|" $xml + sed -i 's|$|\1|' $xml + sed -i "s|[0-9]\+|1|" $xml + num=`$mkiso -c|grep "expected volume number"|sed 's/.*: //'` + for i in `seq 1 $num` + do + sed -i "s|[0-9]\+|$i|" $xml + $mkiso + done +} + +mkiso=mkiso.libalpm +xml=volumes.xml + +sed -i "s|[a-z]\+|net|" $xml +sed -i 's|\(.*\)$||' $xml +$mkiso + +dosplit cd +dosplit dvd From vmiklos at frugalware.org Sun Sep 2 00:17:07 2007 From: vmiklos at frugalware.org (VMiklos) Date: Sun Sep 2 00:17:11 2007 Subject: [Frugalware-git] pacman-tools: mkisorelease: typo fix Message-ID: <20070901221707.EDCDB13A4003@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=pacman-tools/.git;a=commitdiff;h=61ed6261280e01fdbe8d92b2a4ec34adf816a1aa commit 61ed6261280e01fdbe8d92b2a4ec34adf816a1aa Author: VMiklos Date: Sun Sep 2 00:15:34 2007 +0200 mkisorelease: typo fix diff --git a/mkisorelease b/mkisorelease index 76b0ccd..48c1b86 100755 --- a/mkisorelease +++ b/mkisorelease @@ -16,7 +16,7 @@ dosplit() done } -mkiso=mkiso.libalpm +mkiso=mkiso xml=volumes.xml sed -i "s|[a-z]\+|net|" $xml From vmiklos at frugalware.org Sun Sep 2 01:11:11 2007 From: vmiklos at frugalware.org (VMiklos) Date: Sun Sep 2 01:11:15 2007 Subject: [Frugalware-git] frugalware: service: typo fix Message-ID: <20070901231111.4C45913A4003@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware/.git;a=commitdiff;h=0a9a3b457c0ca730da063c40aef35cc935402a2a commit 0a9a3b457c0ca730da063c40aef35cc935402a2a Author: VMiklos Date: Sun Sep 2 01:10:24 2007 +0200 service: typo fix closes #2349 diff --git a/var/service b/var/service index 997e047..b90e7c0 100644 --- a/var/service +++ b/var/service @@ -8,7 +8,7 @@ TEXTDOMAIN=service TEXTDOMAINDIR=/var/lib/frugalware/messages if [ "$1" = "--version" ]; then - echo "fwmirror (pacman-tools) 0.2" + echo "service (pacman-tools) 0.2" echo echo "Copyright (c) 2003-2007 by Miklos Vajna " echo "This is free software; see the source for copying conditions. There is NO" From vmiklos at frugalware.org Sun Sep 2 01:15:48 2007 From: vmiklos at frugalware.org (VMiklos) Date: Sun Sep 2 01:15:58 2007 Subject: [Frugalware-git] vmiklos: git-1.5.2.5-2-i686 Message-ID: <20070901231548.BE26013A4003@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=vmiklos/.git;a=commitdiff;h=701fb89349697b8325d4b11b3177724e5935146e commit 701fb89349697b8325d4b11b3177724e5935146e Author: VMiklos Date: Sun Sep 2 01:14:56 2007 +0200 git-1.5.2.5-2-i686 split git-gui to a new subpkg as it depends on tk diff --git a/source/devel-extra/git/FrugalBuild b/source/devel-extra/git/FrugalBuild index 5377d88..116115c 100644 --- a/source/devel-extra/git/FrugalBuild +++ b/source/devel-extra/git/FrugalBuild @@ -3,8 +3,8 @@ pkgname=git pkgver=1.5.2.5 -pkgrel=1 -pkgdesc="the stupid content tracker" +pkgrel=2 +pkgdesc="A fast, scalable, distributed revision control system." url="http://www.kernel.org/pub/software/scm/git/" depends=('curl>=7.16.0' 'openssl') makedepends=('asciidoc' 'docbook-xsl>=1.73.0-2' 'docbook-xml' 'sgml-common' 'xmlto') @@ -16,26 +16,24 @@ gitweb.modules.d gitweb.conf README.Frugalware) signatures=(${source[0]}.sign '' '' '') options=('scriptlet') -subpkgs=('gitweb' 'gitk') -subdescs=('Web interface for Git.' 'Tk based git repository browser') -subdepends=("git=$pkgver" "git=$pkgver tk") -subbackup=('etc/gitweb.conf etc/httpd/conf/modules.d/gitweb.conf' '') -subgroups=('network-extra' 'xapps-extra') -subarchs=('i686 x86_64' 'i686 x86_64') +subpkgs=('gitweb' 'git-gui' 'gitk') +subdescs=('Web interface for Git.' 'Git GUI tool.' 'Git revision tree visualiser.') +subdepends=("git=$pkgver" "git=$pkgver tk" "git=$pkgver tk") +subbackup=('etc/gitweb.conf etc/httpd/conf/modules.d/gitweb.conf' '' '') +subgroups=('network-extra' 'xapps-extra' 'xapps-extra') +subarchs=('i686 x86_64' 'i686 x86_64' 'i686 x86_64') build() { Fsed '^\(CFLAGS =\) .*' "\1 $CFLAGS" Makefile # fix path, we do not put the contrib dir to the documentation folder Fsed 'doc/' '' templates/hooks--post-receive - # fix default gitconfig - Fsed '\(ETC_GITCONFIG =\) .*' '\1 /etc/gitconfig' Makefile make configure || return 1 Fmkdir /usr/bin Fpatchall Fconf - make ASCIIDOC8=YesPlease all doc || return 1 - Fmakeinstall install-doc + make ASCIIDOC8=YesPlease ETC_GITCONFIG=/etc/gitconfig all doc || return 1 + Fmakeinstall install-doc ETC_GITCONFIG=/etc/gitconfig make -C Documentation WEBDOC_DEST=$Fdestdir/usr/share/doc/$pkgname-$pkgver/html install-webdoc || return 1 Fdocrel Documentation/SubmittingPatches Fdocrel Documentation/technical @@ -55,6 +53,10 @@ build() Fsplit gitweb /etc /var Fdoc README.Frugalware + # git-gui + Fsplit git-gui usr/bin/git-{gui,citool} + Fsplit git-gui usr/share/git-gui + # gitk Fsplit gitk usr/bin/gitk Fsplit gitk usr/share/man/man1/gitk.1 From vmiklos at frugalware.org Sun Sep 2 02:17:53 2007 From: vmiklos at frugalware.org (VMiklos) Date: Sun Sep 2 02:17:55 2007 Subject: [Frugalware-git] bmf: git-1.5.3.rc7.30.g947ad2-1-i686 Message-ID: <20070902001753.1CE3C13A4003@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=bmf/.git;a=commitdiff;h=eeaff46fc4174afd80d96efa53e247add3f5ed72 commit eeaff46fc4174afd80d96efa53e247add3f5ed72 Author: VMiklos Date: Sun Sep 2 02:17:30 2007 +0200 git-1.5.3.rc7.30.g947ad2-1-i686 bump to rc7, sync with current diff --git a/source/devel-extra/git/FrugalBuild b/source/devel-extra/git/FrugalBuild index e36a6e5..9b168a8 100644 --- a/source/devel-extra/git/FrugalBuild +++ b/source/devel-extra/git/FrugalBuild @@ -2,45 +2,44 @@ # Maintainer: VMiklos pkgname=git -pkgver=1.5.3.rc6.1.gadf5 +pkgver=1.5.3.rc7.30.g947ad2 pkgrel=1 -pkgdesc="the stupid content tracker" +pkgdesc="A fast, scalable, distributed revision control system." url="http://www.kernel.org/pub/software/scm/git/" depends=('curl>=7.16.0' 'openssl') -makedepends=('asciidoc' 'docbook-xsl' 'docbook-xml' 'sgml-common' 'xmlto') +makedepends=('asciidoc' 'docbook-xsl>=1.73.0-2' 'docbook-xml' 'sgml-common' 'xmlto') groups=('devel-extra') archs=('i686' 'x86_64') -up2date="lynx -dump '$url/?C=M;O=D'|grep bz2$|sed -n 's/.*-\(.*\)\.t.*/\1/;1 p'" +up2date="lynx -dump '$url/?C=M;O=D'|grep 'git-[0-9.]*.tar.bz2$'|sed -n 's/.*-\(.*\)\.t.*/\1/;1 p'" source=(gitweb.modules.d gitweb.conf README.Frugalware) sha1sums=('c60be6e086241b85b1f0d89db22c24fc21dc6432' \ '58698ef6cf0dad734e1a1ee5689c0c4d83bf27b5' \ 'a0aa4b43cfd81b74c28343495bf6c8a2f50adcaa') options=('scriptlet') + +subpkgs=('gitweb' 'git-gui' 'gitk') +subdescs=('Web interface for Git.' 'Git GUI tool.' 'Git revision tree visualiser.') +subdepends=("git=$pkgver" "git=$pkgver tk" "git=$pkgver tk") +subbackup=('etc/gitweb.conf etc/httpd/conf/modules.d/gitweb.conf' '' '') +subgroups=('network-extra' 'xapps-extra' 'xapps-extra') +subarchs=('i686 x86_64' 'i686 x86_64' 'i686 x86_64') + _F_scm_type="git" _F_scm_url="git://git.kernel.org/pub/scm/git/git.git" Finclude scm -subpkgs=('gitweb' 'gitk') -subdescs=('Web interface for Git.' 'Tk based git repository browser') -subdepends=("git=$pkgver" "git=$pkgver tk") -subbackup=('etc/gitweb.conf etc/httpd/conf/modules.d/gitweb.conf' '') -subgroups=('network-extra' 'xapps-extra') -subarchs=('i686 x86_64' 'i686 x86_64') - build() { Funpack_scm Fsed '^\(CFLAGS =\) .*' "\1 $CFLAGS" Makefile # fix path, we do not put the contrib dir to the documentation folder Fsed 'doc/' '' templates/hooks--post-receive - # fix default gitconfig - Fsed '\(ETC_GITCONFIG =\) .*' '\1 /etc/gitconfig' Makefile make configure || return 1 Fmkdir /usr/bin Fpatchall Fconf - make ASCIIDOC8=YesPlease all doc || return 1 - Fmakeinstall install-doc + make ASCIIDOC8=YesPlease ETC_GITCONFIG=/etc/gitconfig all doc || return 1 + Fmakeinstall install-doc ETC_GITCONFIG=/etc/gitconfig make -C Documentation WEBDOC_DEST=$Fdestdir/usr/share/doc/$pkgname-$pkgver/html install-webdoc || return 1 Fdocrel Documentation/SubmittingPatches Fdocrel Documentation/technical @@ -60,8 +59,13 @@ build() Fsplit gitweb /etc /var Fdoc README.Frugalware + # git-gui + Fsplit git-gui usr/bin/git-{gui,citool} + Fsplit git-gui usr/share/git-gui + # gitk Fsplit gitk usr/bin/gitk + Fsplit gitk usr/share/man/man1/gitk.1 } # optimization OK From vmiklos at frugalware.org Sun Sep 2 03:06:23 2007 From: vmiklos at frugalware.org (VMiklos) Date: Sun Sep 2 03:06:27 2007 Subject: [Frugalware-git] bmf: git-1.5.3.rc7.30.g947ad2-2-i686 Message-ID: <20070902010623.98D2B13A4003@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=bmf/.git;a=commitdiff;h=40870ae835c3933886a6944adb3a9411cdc4235a commit 40870ae835c3933886a6944adb3a9411cdc4235a Author: VMiklos Date: Sun Sep 2 03:06:01 2007 +0200 git-1.5.3.rc7.30.g947ad2-2-i686 - install missing Error.pm manually - split git-{gui,citool} doc to the gut-gui subpkg diff --git a/source/devel-extra/git/FrugalBuild b/source/devel-extra/git/FrugalBuild index 9b168a8..b364bb9 100644 --- a/source/devel-extra/git/FrugalBuild +++ b/source/devel-extra/git/FrugalBuild @@ -3,7 +3,7 @@ pkgname=git pkgver=1.5.3.rc7.30.g947ad2 -pkgrel=1 +pkgrel=2 pkgdesc="A fast, scalable, distributed revision control system." url="http://www.kernel.org/pub/software/scm/git/" depends=('curl>=7.16.0' 'openssl') @@ -40,6 +40,7 @@ build() Fconf make ASCIIDOC8=YesPlease ETC_GITCONFIG=/etc/gitconfig all doc || return 1 Fmakeinstall install-doc ETC_GITCONFIG=/etc/gitconfig + Ffilerel perl/private-Error.pm /usr/lib/perl5/site_perl/current/Error.pm make -C Documentation WEBDOC_DEST=$Fdestdir/usr/share/doc/$pkgname-$pkgver/html install-webdoc || return 1 Fdocrel Documentation/SubmittingPatches Fdocrel Documentation/technical @@ -62,10 +63,13 @@ build() # git-gui Fsplit git-gui usr/bin/git-{gui,citool} Fsplit git-gui usr/share/git-gui + Fsplit git-gui usr/share/man/man1/git-{gui,citool}.1 + Fsplit git-gui usr/share/doc/git-$pkgver/html/git-{gui,citool}.html # gitk Fsplit gitk usr/bin/gitk Fsplit gitk usr/share/man/man1/gitk.1 + Fsplit git-gui usr/share/doc/git-$pkgver/html/gitk.html } # optimization OK From vmiklos at frugalware.org Sun Sep 2 04:15:58 2007 From: vmiklos at frugalware.org (VMiklos) Date: Sun Sep 2 04:16:01 2007 Subject: [Frugalware-git] vmiklos: asciidoc-8.2.2-2-i686 Message-ID: <20070902021558.D917013A4003@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=vmiklos/.git;a=commitdiff;h=631376244d9e1364d0e5c22e31a43e108c1a5f41 commit 631376244d9e1364d0e5c22e31a43e108c1a5f41 Author: VMiklos Date: Sun Sep 2 04:15:40 2007 +0200 asciidoc-8.2.2-2-i686 add mathml fonts diff --git a/source/apps-extra/asciidoc/FrugalBuild b/source/apps-extra/asciidoc/FrugalBuild index cb003b4..e0b8000 100644 --- a/source/apps-extra/asciidoc/FrugalBuild +++ b/source/apps-extra/asciidoc/FrugalBuild @@ -3,7 +3,7 @@ pkgname=asciidoc pkgver=8.2.2 -pkgrel=1 +pkgrel=2 pkgdesc="AsciiDoc is a text document format for writing short documents, articles, books and UNIX man pages." url="http://www.methods.co.nz/asciidoc/index.html" depends=() @@ -12,7 +12,10 @@ makedepends=('imagemagick' 'libpng' 'libjpeg' 'fontconfig') groups=('apps-extra') archs=('i686' 'x86_64') up2date="lynx -dump http://www.methods.co.nz/asciidoc/downloads.html |Flasttar" -source=(http://www.methods.co.nz/asciidoc/asciidoc-$pkgver.tar.gz) +source=(http://www.methods.co.nz/asciidoc/asciidoc-$pkgver.tar.gz \ + http://ftp.frugalware.org/pub/other/sources/asciidoc/asciidoc-fonts-0.1.tar.bz2) +sha1sums=('ffd0de7b45474a88ab3b895f5c440024a954540a' \ + '717779406f876f439ac37c79878f403ecdef3467') build() { Fmkdir $Fprefix/bin $Fprefix/share/vim @@ -28,5 +31,7 @@ build() { do convert $i ${i%%.png}.jpg || return 1 done + # install the mathml fonts + Fmkdir /usr/lib/X11/fonts/TTF + Ffile asciidoc-fonts-0.1/*.ttf /usr/lib/X11/fonts/TTF } -sha1sums=('ffd0de7b45474a88ab3b895f5c440024a954540a') diff --git a/source/apps-extra/asciidoc/asciidoc.install b/source/apps-extra/asciidoc/asciidoc.install new file mode 100644 index 0000000..bb8442b --- /dev/null +++ b/source/apps-extra/asciidoc/asciidoc.install @@ -0,0 +1,24 @@ +post_install() +{ + echo -n "updating fonts cache..." + mkfontscale /usr/lib/X11/fonts/TTF + mkfontdir /usr/lib/X11/fonts/TTF + /usr/bin/fc-cache --force --system-only + echo "done." +} + +post_upgrade() +{ + post_install +} + + +post_remove() +{ + post_install +} + +op=$1 +shift + +$op $* From vmiklos at frugalware.org Sun Sep 2 04:31:05 2007 From: vmiklos at frugalware.org (VMiklos) Date: Sun Sep 2 04:31:15 2007 Subject: [Frugalware-git] vmiklos: beryl-0.2.1-2-i686 Message-ID: <20070902023105.40C4413A4003@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=vmiklos/.git;a=commitdiff;h=e471e57b836faa6a13e35320d39b56d7f6998eae commit e471e57b836faa6a13e35320d39b56d7f6998eae Author: VMiklos Date: Sun Sep 2 04:30:30 2007 +0200 beryl-0.2.1-2-i686 hack: export LIBXCB_ALLOW_SLOPPY_LOCK otherwise beryl just won't work under kde ok crazy@ diff --git a/source/x11-extra/beryl/FrugalBuild b/source/x11-extra/beryl/FrugalBuild index 25b9552..858e5e0 100644 --- a/source/x11-extra/beryl/FrugalBuild +++ b/source/x11-extra/beryl/FrugalBuild @@ -3,7 +3,7 @@ pkgname=beryl _F_beryl_name=beryl-core -pkgrel=1 +pkgrel=2 depends=('glitz>=0.5.6' 'libsvg-cairo' 'libxevie' 'libxdamage' 'libpng' 'libgl' 'libglx' 'glproto' \ 'libxrandr' 'startup-notification' 'libwnck' 'libxcomposite' 'mesa>=6.5.2-2') makedepends=('makedepend' 'perl-xml' 'intltool') @@ -14,8 +14,8 @@ options=('scriptlet') Finclude beryl source=(${source[@]} beryl.sh http://releases.beryl-project.org/0.1.99.2/beryl-mesa-0.1.99.2.tar.bz2) sha1sums=('31c491caffd3defe3f099efd665554216bf66dfe' \ - '8f29636f99e474abfba33aa98b6ac366c075c204' \ - '4fbc2bb45263dce497184b46f9350120fc2424d9') + 'ca9a8211e27839570c208b984b27190b08946965' \ + '4fbc2bb45263dce497184b46f9350120fc2424d9') Fconfopts="$Fconfopts --enable-xgl --disable-gconf" build() { diff --git a/source/x11-extra/beryl/beryl.sh b/source/x11-extra/beryl/beryl.sh index 76ad3c4..a2b6d45 100644 --- a/source/x11-extra/beryl/beryl.sh +++ b/source/x11-extra/beryl/beryl.sh @@ -6,4 +6,6 @@ fi if [ "$ENABLE_BERYL" == "1" ]; then export KDEWM=beryl-manager + # hack! + export LIBXCB_ALLOW_SLOPPY_LOCK=1 fi From janny at frugalware.org Sun Sep 2 11:58:57 2007 From: janny at frugalware.org (janny) Date: Sun Sep 2 11:58:59 2007 Subject: [Frugalware-git] fwlive: fwlive-0.7rc1 Message-ID: <20070902095857.57E4113A4119@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=fwlive/.git;a=commitdiff;h=08889110d3f32d78a426bac074f07477569d0a99 commit 08889110d3f32d78a426bac074f07477569d0a99 Author: janny Date: Sun Sep 2 11:54:13 2007 +0200 fwlive-0.7rc1 * remove pkg with conflicting dependencies * add janny/fwlive repo to live base * other cosmetics in codes diff --git a/Makefile b/Makefile index fd53aef..e912d22 100644 --- a/Makefile +++ b/Makefile @@ -201,6 +201,9 @@ create-users: checkroot fi live-base: checkroot + echo "Include = /etc/pacman.d/janny" >> ${CHROOTDIR}/${TREE}/etc/pacman.conf; \ + echo "[janny]" > ${CHROOTDIR}/${TREE}/etc/pacman.d/janny; \ + echo "Server = http://ftp.frugalware.org/pub/other/people/janny/fwlive/frugalware-i686/" >> ${CHROOTDIR}/${TREE}/etc/pacman.d/janny; \ cp -a live-base ${CHROOTDIR}/${TREE}/tmp/ mkdir -p ${CHROOTDIR}/${TREE}/tmp/live-base/cd-root/boot/grub ${CHROOTDIR}/${TREE}/tmp/live-base/initrd/rootfs/{lib,bin,etc} ln -sf configsave ${CHROOTDIR}/${TREE}/usr/local/bin/configrestore diff --git a/config b/config index 1a35114..3b10d5b 100644 --- a/config +++ b/config @@ -31,7 +31,7 @@ FWVER = $(shell date +%Y%m%d) FWCODENAME = -current endif ifeq ($(findstring testing,$(TREE)),testing) -FWVER = 0.7pre1 +FWVER = 0.7rc1 FWCODENAME = Sayshell endif FWVER ?= 0.6 @@ -57,7 +57,7 @@ FWUSERPASS = ${FWLUSER} FWROOTPASS = fwroot # configsave will save these directories -SAVEDIRS = etc home root var +SAVEDIRS = etc home lib root usr var # set this to 'n' if you don't want to include the installer on the livecd CONFIG_SETUP = y @@ -65,10 +65,9 @@ CONFIG_SETUP = y # additional packages to be installed by the profiles DRIVERS = ndiswrapper-fwlive ipw2200-firmware gspcav1-fwlive \ qc-usb-fwlive cdemu-fwlive truecrypt-fwlive dazuko-fwlive \ - busybox-fwlive lirc-fwlive acerhk-fwlive fglrx-fwlive \ - nvidia-96xx-fwlive nvidia-fwlive madwifi-fwlive rt2500-fwlive \ + busybox-fwlive lirc-fwlive acerhk-fwlive madwifi-fwlive \ wlan-ng-fwlive acx100-fwlive adm8211-fwlive ipw3945-fwlive \ - ndiswrapper-fwlive rt2400-fwlive rtl8110-fwlive kqemu-fwlive + rt2500-fwlive rt2400-fwlive rtl8110-fwlive kqemu-fwlive INST_MUSTHAVE_APPS = busybox-fwlive util-linux grub-theme-fwlive \ sudo aufs squashfs cdrtools ntfs-3g ifneq ($(ARCH),x86_64) diff --git a/live-base/tools/liblinuxlive b/live-base/tools/liblinuxlive index 95014ca..9e58c00 100644 --- a/live-base/tools/liblinuxlive +++ b/live-base/tools/liblinuxlive @@ -542,7 +542,6 @@ fstab_update() fstab_update_line $FSTAB~ devpts /dev/pts devpts gid=5,mode=620 fstab_update_line $FSTAB~ proc /proc proc defaults list_cdrom_devices | while read DEVICE; do -# MOUNTDIR="/mnt/`basename $DEVICE`_cdrom" MOUNTDIR="/media/`basename $DEVICE`_cdrom" mkdir -p $1/$MOUNTDIR fstab_update_line $FSTAB~ $DEVICE $MOUNTDIR iso9660 noauto,users,exec @@ -553,7 +552,6 @@ fstab_update() REMOVABLE="_removable" fi -# MOUNTDIR="/mnt/$DEV$REMOVABLE" MOUNTDIR="/media/$DEV$REMOVABLE" FS="`blkid -s TYPE $DEVICE | cut -d = -f 2 | tr -d ' \"'`" @@ -577,9 +575,7 @@ fstab_update() fi done -# fstab_update_line $FSTAB~ /dev/fd0 /mnt/floppy vfat,msdos noauto,noatime,users,suid,dev,exec fstab_update_line $FSTAB~ /dev/fd0 /media/floppy vfat,msdos noauto,noatime,users,suid,dev,exec -# mkdir -p $1/mnt/floppy mkdir -p $1/media/floppy mv -f $FSTAB~ $FSTAB diff --git a/menu.lst b/menu.lst index 3f01f18..a09f7b3 100644 --- a/menu.lst +++ b/menu.lst @@ -3,7 +3,7 @@ timeout=5 gfxmenu /boot/grub/message title @GRUBTITLE@ - kernel /boot/vmlinuz initrd=/boot/initrd.gz init=linuxrc max_loop=255 load_ramdisk=1 prompt_ramdisk=0 ramdisk_size=4444 rw root=/dev/ram0 + kernel /boot/vmlinuz initrd=/boot/initrd.gz init=linuxrc max_loop=255 load_ramdisk=1 prompt_ramdisk=0 ramdisk_size=39484 rw root=/dev/ram initrd /boot/initrd.gz title Memtest86+ From vmiklos at frugalware.org Sun Sep 2 16:05:41 2007 From: vmiklos at frugalware.org (VMiklos) Date: Sun Sep 2 16:05:49 2007 Subject: [Frugalware-git] vmiklos: docs/repos: mention a tricky chmod Message-ID: <20070902140541.CC23A13A4119@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=vmiklos.git;a=commitdiff;h=437a242026f550915e22b866fdfbbdf5e9a0c90a commit 437a242026f550915e22b866fdfbbdf5e9a0c90a Author: VMiklos Date: Sun Sep 2 16:05:21 2007 +0200 docs/repos: mention a tricky chmod diff --git a/docs/repos.txt b/docs/repos.txt index 715e0ac..e5d742d 100644 --- a/docs/repos.txt +++ b/docs/repos.txt @@ -16,6 +16,13 @@ create a repository to update to a newer python version, then probably you will do all the work, create it under `/pub/other/people/nick/reponame`. Simply create a dir, issue `git init` and push at least one commit to there. +If you want to allow others to push to your repo, then you want to allow them +to lock your repo. This requires + +---- +chmod g+w .git +---- + Now anyone can `git clone` it, using a 'full mirror', for example `ftp://ftp12.frugalware.org/mirrors/ftp.frugalware.org/pub/`. From vmiklos at frugalware.org Sun Sep 2 16:11:54 2007 From: vmiklos at frugalware.org (VMiklos) Date: Sun Sep 2 16:11:56 2007 Subject: [Frugalware-git] vmiklos: tools/gitpull: use bare repos Message-ID: <20070902141154.5BAE913A4119@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=vmiklos.git;a=commitdiff;h=e30f4feae0c3d9b28fc836354181711cb486455f commit e30f4feae0c3d9b28fc836354181711cb486455f Author: VMiklos Date: Sun Sep 2 16:11:37 2007 +0200 tools/gitpull: use bare repos - this makes pull faster - this is what the git devs recommend diff --git a/tools/gitpull b/tools/gitpull index 50f6577..396e17a 100755 --- a/tools/gitpull +++ b/tools/gitpull @@ -6,24 +6,24 @@ cd `dirname $0`/../repos : > projects.list.new for i in `rsync $server|sed 's/.* \([^ ]\)/\1/;1 d'` do - if [ -d $i ]; then - cd $i - git pull -q + if [ -d $i.git ]; then + cd $i.git + git fetch -q $server/$i/.git cd .. else - git clone -q $server/$i/.git + git clone --bare -q $server/$i/.git $i.git fi - rm -rf $i/.git/refs/remotes - rsync $server/$i/.git/owner $i/.git/ - rsync $server/$i/.git/description $i/.git/ - python -c "import os; sock = os.popen('rsync -l $server/$i'); buf = sock.read(); sock.close(); print 'rsync://rsync.frugalware.org' + os.path.abspath('$server/$i/../'[len('rsync://rsync.frugalware.org'):] + buf.split(' -> ')[1].strip()) + '/.git'" > $i/.git/cloneurl - echo "http://git.frugalware.org/repos/$i/.git" >> $i/.git/cloneurl - python -c "import os; sock = os.popen('rsync -l $server/$i'); buf = sock.read(); sock.close(); print 'nick@git.frugalware.org:/home/ftp' + os.path.abspath('$server/$i/../'[len('rsync://rsync.frugalware.org'):] + buf.split(' -> ')[1].strip()) + ' (for developers only)'" >> $i/.git/cloneurl - if [ -f $i/.git/owner ]; then - owner=$(python -c "from urllib import urlencode; owner='$(cat $i/.git/owner)'; print urlencode({'':owner.strip()})[1:]") + rm -rf $i.git/refs/remotes + rsync $server/$i/.git/owner $i.git/ + rsync $server/$i/.git/description $i.git/ + python -c "import os; sock = os.popen('rsync -l $server/$i'); buf = sock.read(); sock.close(); print 'rsync://rsync.frugalware.org' + os.path.abspath('$server/$i/../'[len('rsync://rsync.frugalware.org'):] + buf.split(' -> ')[1].strip()) + '/.git'" > $i.git/cloneurl + echo "http://git.frugalware.org/repos/$i/.git" >> $i.git/cloneurl + python -c "import os; sock = os.popen('rsync -l $server/$i'); buf = sock.read(); sock.close(); print 'nick@git.frugalware.org:/home/ftp' + os.path.abspath('$server/$i/../'[len('rsync://rsync.frugalware.org'):] + buf.split(' -> ')[1].strip()) + ' (for developers only)'" >> $i.git/cloneurl + if [ -f $i.git/owner ]; then + owner=$(python -c "from urllib import urlencode; owner='$(cat $i.git/owner)'; print urlencode({'':owner.strip()})[1:]") else owner="Unknown" fi - echo "$i%2F.git $owner" >> projects.list.new + echo "$i.git $owner" >> projects.list.new done mv -f projects.list.new projects.list From vmiklos at frugalware.org Sun Sep 2 16:57:58 2007 From: vmiklos at frugalware.org (VMiklos) Date: Sun Sep 2 16:57:59 2007 Subject: [Frugalware-git] vmiklos: git-1.5.3-1-i686 Message-ID: <20070902145758.4E3F313A4119@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=vmiklos.git;a=commitdiff;h=4e3e2c19bd893c11b9f72879d443f100c03c9e3d commit 4e3e2c19bd893c11b9f72879d443f100c03c9e3d Author: VMiklos Date: Sun Sep 2 16:57:33 2007 +0200 git-1.5.3-1-i686 version bump diff --git a/source/devel-extra/git/FrugalBuild b/source/devel-extra/git/FrugalBuild index 116115c..418e471 100644 --- a/source/devel-extra/git/FrugalBuild +++ b/source/devel-extra/git/FrugalBuild @@ -2,8 +2,8 @@ # Maintainer: VMiklos pkgname=git -pkgver=1.5.2.5 -pkgrel=2 +pkgver=1.5.3 +pkgrel=1 pkgdesc="A fast, scalable, distributed revision control system." url="http://www.kernel.org/pub/software/scm/git/" depends=('curl>=7.16.0' 'openssl') @@ -25,15 +25,14 @@ subarchs=('i686 x86_64' 'i686 x86_64' 'i686 x86_64') build() { - Fsed '^\(CFLAGS =\) .*' "\1 $CFLAGS" Makefile - # fix path, we do not put the contrib dir to the documentation folder + # undebianize Fsed 'doc/' '' templates/hooks--post-receive - make configure || return 1 - Fmkdir /usr/bin - Fpatchall + Fsed ' (on debian)' '' templates/hooks--post-receive + Fconf - make ASCIIDOC8=YesPlease ETC_GITCONFIG=/etc/gitconfig all doc || return 1 - Fmakeinstall install-doc ETC_GITCONFIG=/etc/gitconfig + make V=1 CLFAGS="$CFLAGS" ASCIIDOC8=YesPlease ETC_GITCONFIG=/etc/gitconfig all doc || return 1 + Fmakeinstall install-doc ETC_GITCONFIG=/etc/gitconfig mandir=/usr/share/man + Ffilerel perl/private-Error.pm /usr/lib/perl5/site_perl/current/Error.pm make -C Documentation WEBDOC_DEST=$Fdestdir/usr/share/doc/$pkgname-$pkgver/html install-webdoc || return 1 Fdocrel Documentation/SubmittingPatches Fdocrel Documentation/technical @@ -56,10 +55,13 @@ build() # git-gui Fsplit git-gui usr/bin/git-{gui,citool} Fsplit git-gui usr/share/git-gui + Fsplit git-gui usr/share/man/man1/git-{gui,citool}.1 + Fsplit git-gui usr/share/doc/git-$pkgver/html/git-{gui,citool}.{html,txt} # gitk Fsplit gitk usr/bin/gitk Fsplit gitk usr/share/man/man1/gitk.1 + Fsplit git-gui usr/share/doc/git-$pkgver/html/gitk.{html,txt} } # optimization OK From vmiklos at frugalware.org Sun Sep 2 17:16:55 2007 From: vmiklos at frugalware.org (VMiklos) Date: Sun Sep 2 17:16:56 2007 Subject: [Frugalware-git] vmiklos: git-1.5.3-1-i686 Message-ID: <20070902151655.3BA2913A4119@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=vmiklos.git;a=commitdiff;h=844df2266314db570ebe316a7a5193c3215de237 commit 844df2266314db570ebe316a7a5193c3215de237 Author: VMiklos Date: Sun Sep 2 17:16:43 2007 +0200 git-1.5.3-1-i686 don't isntall gitweb.perl. though the docs says to copy gitweb/git*, this would install both gitweb.cgi and gitweb.perl, while the first is generated from the second diff --git a/source/devel-extra/git/FrugalBuild b/source/devel-extra/git/FrugalBuild index 418e471..2231a03 100644 --- a/source/devel-extra/git/FrugalBuild +++ b/source/devel-extra/git/FrugalBuild @@ -46,6 +46,7 @@ build() # gitweb Fmkdir /var/www/gitweb + rm gitweb/gitweb.perl cp gitweb/git* $Fdestdir/var/www/gitweb Ffile gitweb.modules.d /etc/httpd/conf/modules.d/gitweb.conf Ffile /etc/gitweb.conf From vmiklos at frugalware.org Sun Sep 2 23:29:05 2007 From: vmiklos at frugalware.org (VMiklos) Date: Sun Sep 2 23:29:06 2007 Subject: [Frugalware-git] vmiklos: perl-getopt-mixed-1.10-1-i686 Message-ID: <20070902212905.0DBAF13A4119@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=vmiklos.git;a=commitdiff;h=14b360b84451b467c78af9079283c484b281ef7d commit 14b360b84451b467c78af9079283c484b281ef7d Author: VMiklos Date: Sun Sep 2 23:28:49 2007 +0200 perl-getopt-mixed-1.10-1-i686 new package diff --git a/source/devel-extra/perl-getopt-mixed/FrugalBuild b/source/devel-extra/perl-getopt-mixed/FrugalBuild new file mode 100644 index 0000000..819a78d --- /dev/null +++ b/source/devel-extra/perl-getopt-mixed/FrugalBuild @@ -0,0 +1,9 @@ +# Compiling Time: 0.1 SBU +# Maintainer: Zsolt Szalai + +_F_perl_name=Getopt-Mixed +_F_perl_author=C/CJ/CJM +pkgver=1.10 +pkgdesc="Getopt processing with both long and short options." +Finclude perl +sha1sums=('3d5fb052910e4a560ff02c4e4f594a27fe1d22e0') From vmiklos at frugalware.org Sun Sep 2 23:37:23 2007 From: vmiklos at frugalware.org (VMiklos) Date: Sun Sep 2 23:37:25 2007 Subject: [Frugalware-git] vmiklos: t-prot-2.4-1-i686 Message-ID: <20070902213723.9094F13A4119@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=vmiklos.git;a=commitdiff;h=882d9e009210c5c088b8b82d6fe4d876dd2a592e commit 882d9e009210c5c088b8b82d6fe4d876dd2a592e Author: VMiklos Date: Sun Sep 2 23:37:14 2007 +0200 t-prot-2.4-1-i686 new package diff --git a/source/network-extra/t-prot/FrugalBuild b/source/network-extra/t-prot/FrugalBuild new file mode 100644 index 0000000..515908e --- /dev/null +++ b/source/network-extra/t-prot/FrugalBuild @@ -0,0 +1,21 @@ +# Compiling Time: 0 SBU +# Maintainer: VMiklos + +pkgname=t-prot +pkgver=2.4 +pkgrel=1 +pkgdesc="A TOFU protection script." +url="http://www.escape.de/~tolot/mutt/t-prot" +rodepends=('perl-getopt-mixed') +groups=('network-extra') +archs=('i686') +up2date="lynx -dump $url/downloads/|Flasttar" +source=(http://www.escape.de/~tolot/mutt/t-prot/downloads/t-prot-$pkgver.tar.gz) +signatures=($source.asc) + +build() +{ + Fcd + Fexerel /usr/bin/t-prot + Fmanrel t-prot.1 +} From vmiklos at frugalware.org Mon Sep 3 00:15:36 2007 From: vmiklos at frugalware.org (VMiklos) Date: Mon Sep 3 00:15:39 2007 Subject: [Frugalware-git] pacman-tools: repoman: spelling fixes Message-ID: <20070902221536.DA8EF13A4119@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=pacman-tools.git;a=commitdiff;h=27e34394d1aefe3d6d53c4c7c01b95332fb0ebe1 commit 27e34394d1aefe3d6d53c4c7c01b95332fb0ebe1 Author: VMiklos Date: Mon Sep 3 00:14:26 2007 +0200 repoman: spelling fixes closes #2341 diff --git a/repoman b/repoman index 74c08d9..3d949d6 100755 --- a/repoman +++ b/repoman @@ -14,10 +14,10 @@ cl|changelog [category/]package Generate a Changelog file. c|clean package Delete a package. del|delete file Delete a file from FST. ls|list directory List a directory in FST. -rec|record [parameters] Records a pacakge. +rec|record [parameters] Record a package. up|upload source destination Upload a file to FST. -push [record parameters] Pushes a pacakge. -fpmmerge repo Merges fpms from an other repo. +push [record parameters] Push a package. +fpmmerge repo Merge fpms from another repo. Global options: -d|--dry-run Don't actually run the commands. From vmiklos at frugalware.org Mon Sep 3 00:35:59 2007 From: vmiklos at frugalware.org (VMiklos) Date: Mon Sep 3 00:36:00 2007 Subject: [Frugalware-git] vmiklos: java-gcj-compat-1.0.72-5-i686 Message-ID: <20070902223559.849E213A4119@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=vmiklos.git;a=commitdiff;h=020706d493f00b5180b3e67e481883af6759e5ca commit 020706d493f00b5180b3e67e481883af6759e5ca Author: VMiklos Date: Mon Sep 3 00:35:48 2007 +0200 java-gcj-compat-1.0.72-5-i686 - add a simlink for openoffice.org - also improve the "why don't bump this pkg" comment diff --git a/source/devel-extra/java-gcj-compat/FrugalBuild b/source/devel-extra/java-gcj-compat/FrugalBuild index ab84a2b..dcb1de4 100644 --- a/source/devel-extra/java-gcj-compat/FrugalBuild +++ b/source/devel-extra/java-gcj-compat/FrugalBuild @@ -3,7 +3,7 @@ pkgname=java-gcj-compat pkgver=1.0.72 -pkgrel=4 +pkgrel=5 gccver=4.2.1 javaver="1.5.0-gcj-1.5.0.0" pkgdesc="A collection of wrapper scripts, symlinks and jar files." @@ -22,6 +22,9 @@ sha1sums=('4f5267544927e1826facbd988ecb4992dde43f76'\ # http://gcc.gnu.org/ml/java-patches/2007-q1/msg00656.html # and here are some infos about what new options gcc will need: # http://gcc.gnu.org/ml/java-patches/2007-q1/msg00658.html +# a simple check is to +# ls libjava/classpath/tools/classes/com/sun/javadoc/SourcePosition.class +# if that file exists, then we can bump this pkg build() { @@ -41,6 +44,8 @@ build() Fln /usr/bin/gjdoc /usr/lib/jvm/java-$javaver/bin/javadoc # gcc-4.2.0, no more fastjar Frm /usr/bin/jar + # openoffice.org wants this + Fln gcj-4.2.1/libjawt.so /usr/lib } # optimization OK From vmiklos at frugalware.org Mon Sep 3 00:50:41 2007 From: vmiklos at frugalware.org (VMiklos) Date: Mon Sep 3 00:50:43 2007 Subject: [Frugalware-git] vmiklos: openssh-4.6p1-5-i686 Message-ID: <20070902225041.D169913A4119@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=vmiklos.git;a=commitdiff;h=684bb97e55e74386e6d9c71d3a0c9382b42352bb commit 684bb97e55e74386e6d9c71d3a0c9382b42352bb Author: VMiklos Date: Mon Sep 3 00:42:25 2007 +0200 openssh-4.6p1-5-i686 README.Frugalware: remove broken example, spelling fix diff --git a/source/network/openssh/README.Frugalware b/source/network/openssh/README.Frugalware index aa6811b..6768966 100644 --- a/source/network/openssh/README.Frugalware +++ b/source/network/openssh/README.Frugalware @@ -28,4 +28,4 @@ Then configure your webbrowser to use the proxy, for example in firefox, select `Manual proxy configuration` and then set `SOCKS Host` to localhost, `Port` to 8080. -NOTE: Don't forget to clear other proxy fields! (HTTP, SSL, FTP, etc) +NOTE: Don't forget to clear other proxy fields! (HTTP, SSL, FTP, etc.) From vmiklos at frugalware.org Mon Sep 3 00:50:42 2007 From: vmiklos at frugalware.org (VMiklos) Date: Mon Sep 3 00:50:43 2007 Subject: [Frugalware-git] vmiklos: kqemu-1.3.0pre11-13-i686 Message-ID: <20070902225042.06BE313A4119@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=vmiklos.git;a=commitdiff;h=842f264dabc96ff9d2df953b9d633f5985ebb73c commit 842f264dabc96ff9d2df953b9d633f5985ebb73c Author: VMiklos Date: Mon Sep 3 00:48:43 2007 +0200 kqemu-1.3.0pre11-13-i686 add a README.Frugalware diff --git a/source/xapps-extra/kqemu/FrugalBuild b/source/xapps-extra/kqemu/FrugalBuild index 29bd2bd..6ed70fd 100644 --- a/source/xapps-extra/kqemu/FrugalBuild +++ b/source/xapps-extra/kqemu/FrugalBuild @@ -11,8 +11,9 @@ Finclude kernel-module groups=('xapps-extra') archs=('i686' 'x86_64') up2date="lynx -dump $url/download.html|grep kqemu.*gz$|sed 's/.*-\(.*\)\.t.*/\1/;q'" -source=($url/kqemu-$pkgver.tar.gz) -sha1sums=('780d48b99715e6b2671864ad5050f1c9506fcb71') +source=($url/kqemu-$pkgver.tar.gz README.Frugalware) +sha1sums=('780d48b99715e6b2671864ad5050f1c9506fcb71' \ + 'e1eb29a8e4c453480a18857c4416d1cc979a28f4') build() { @@ -22,4 +23,5 @@ build() Fmkdir /etc/udev/rules.d/ echo 'KERNEL=="kqemu*", NAME="%k", GROUP="users", MODE="0660"' \ > $Fdestdir/etc/udev/rules.d/48-qemu.rules + Fdoc README.Frugalware } diff --git a/source/xapps-extra/kqemu/README.Frugalware b/source/xapps-extra/kqemu/README.Frugalware new file mode 100644 index 0000000..04fe05e --- /dev/null +++ b/source/xapps-extra/kqemu/README.Frugalware @@ -0,0 +1,10 @@ +If you want to use kqemu, you need to mount `tmpfs` on `/dev/shm`. This is not +problematic, `qemu` prints a usable error message if you miss that. The problem +is that you have to do this again and again after each reboot. If you hate +this, then just add the following line to your `/etc/fstab`: + +---- +tmpfs /dev/shm tmpfs defaults,size=144m 0 0 +---- + +// vim: ft=asciidoc From vmiklos at frugalware.org Mon Sep 3 00:55:28 2007 From: vmiklos at frugalware.org (VMiklos) Date: Mon Sep 3 00:55:29 2007 Subject: [Frugalware-git] vmiklos: openssh-4.6p1-5-i686 Message-ID: <20070902225528.A7EE613A4119@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=vmiklos.git;a=commitdiff;h=c95612b5a015b23b8a5204220f03e4c9f5e9a41e commit c95612b5a015b23b8a5204220f03e4c9f5e9a41e Author: VMiklos Date: Mon Sep 3 00:55:23 2007 +0200 openssh-4.6p1-5-i686 uh, i forgot to stage the first hunk diff --git a/source/network/openssh/README.Frugalware b/source/network/openssh/README.Frugalware index 6768966..12bde5f 100644 --- a/source/network/openssh/README.Frugalware +++ b/source/network/openssh/README.Frugalware @@ -1,16 +1,11 @@ === Forwarding ports -------------------------------------- -# ssh -L 8000:server.com:80 server.com +# ssh -L 8000:localhost:80 server.com -------------------------------------- After this you can access server.com:80 at localhost:8000 even if server.com:80 -is not accessible from your machine. In case you don't have ssh to server.com -but you have one to a machine which is allowed to access server.com:80, use - --------------------------------------- -# ssh -L 8000:server.com:80 ssh.server.com --------------------------------------- +is not accessible from your machine. === Socks proxy From vmiklos at frugalware.org Mon Sep 3 01:27:51 2007 From: vmiklos at frugalware.org (VMiklos) Date: Mon Sep 3 01:27:53 2007 Subject: [Frugalware-git] frugalware-current: NEWS: update for 0.7rc1 Message-ID: <20070902232751.3D45E13A4119@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=eba61756b6cf16140d58d4cf139c1974c37d8176 commit eba61756b6cf16140d58d4cf139c1974c37d8176 Author: VMiklos Date: Mon Sep 3 01:27:34 2007 +0200 NEWS: update for 0.7rc1 diff --git a/NEWS b/NEWS index 68db5e8..e699ac1 100644 --- a/NEWS +++ b/NEWS @@ -3,7 +3,24 @@ Frugalware (0.7) - pre2: pending + rc1: pending + + * Package updates: + * GNU C Library 2.6.1 + * Replaced util-linux with util-linux-ng + * More than 30 new packages + * Added detailed documentation for the util-linux-ng, amavisd-new and + ejabberd packages + * More than 900 changes: package updates, bug- and security fixes. + * New features: + * Added permalinks to the documentation + * Rewritten the package builder daemon, which is now supports distributed + operation. This results continous package updates even if one package + builder server is not available. + * Setup: + * new Danish translation + + pre2: Jul 30, 2007 * Package updates: * Linux kernel 2.6.22 From vmiklos at frugalware.org Mon Sep 3 01:42:30 2007 From: vmiklos at frugalware.org (VMiklos) Date: Mon Sep 3 01:42:31 2007 Subject: [Frugalware-git] frugalware-current: NEWS: spelling fix Message-ID: <20070902234230.96B0A13A4119@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=1343e2ed42c55e96565df3011910fac0664fc404 commit 1343e2ed42c55e96565df3011910fac0664fc404 Author: VMiklos Date: Mon Sep 3 01:42:25 2007 +0200 NEWS: spelling fix diff --git a/NEWS b/NEWS index e699ac1..04af99c 100644 --- a/NEWS +++ b/NEWS @@ -15,7 +15,7 @@ Frugalware (0.7) * New features: * Added permalinks to the documentation * Rewritten the package builder daemon, which is now supports distributed - operation. This results continous package updates even if one package + operation. This results in continuous package updates even if one package builder server is not available. * Setup: * new Danish translation From vmiklos at frugalware.org Mon Sep 3 13:07:43 2007 From: vmiklos at frugalware.org (VMiklos) Date: Mon Sep 3 13:07:44 2007 Subject: [Frugalware-git] frugalware-current: t/xorg: more blacklist Message-ID: <20070903110743.4256F13A4152@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=92b9168d82f933223051b66813ec6e93c72a6700 commit 92b9168d82f933223051b66813ec6e93c72a6700 Author: VMiklos Date: Mon Sep 3 13:07:33 2007 +0200 t/xorg: more blacklist ok krix@ diff --git a/t/xorg b/t/xorg index 18e5e34..4c9cd5a 100755 --- a/t/xorg +++ b/t/xorg @@ -29,6 +29,7 @@ ls source/x11|sed 's|/$||' >$fw # xf86-video-glide: makedepends on xfree86.. # grandr: requires xrandr >= 1.2. initial FB @ http://yugo.frugalware.org/~vmiklos/grandr/FrugalBuild # xbacklight: xorg-1.3-only +# constype, libpciaccess, pixman, xf86-video-amd, xf86-video-xgi: xorg-1.3 diff -u $upstream $fw|grep ^-[^-] |grep -v \ -'\(xf86-video-impact\|compiz\|xf86-video-wsfb\|mkcfm\|xkbdata\|xf86-video-vermilion\|xf86-video-intel\|xf86-video-glide\|grandr\|xbacklight\)'|sed 's/^-//' +'\(xf86-video-impact\|compiz\|xf86-video-wsfb\|mkcfm\|xkbdata\|xf86-video-vermilion\|xf86-video-intel\|xf86-video-glide\|grandr\|xbacklightconstype\|libpciaccess\|pixman\|xf86-video-amd\|xf86-video-xgi\)'|sed 's/^-//' rm -f $upstream $fw From vmiklos at frugalware.org Mon Sep 3 15:00:47 2007 From: vmiklos at frugalware.org (VMiklos) Date: Mon Sep 3 15:00:48 2007 Subject: [Frugalware-git] vmiklos: squid-2.6.STABLE15-1-i686 Message-ID: <20070903130047.1C1E413A4152@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=vmiklos.git;a=commitdiff;h=6aed593160fa26d108b6b7904510383f509cf866 commit 6aed593160fa26d108b6b7904510383f509cf866 Author: VMiklos Date: Mon Sep 3 15:00:31 2007 +0200 squid-2.6.STABLE15-1-i686 bump to 'stable 15' add reload target to rc script diff --git a/source/network-extra/squid/FrugalBuild b/source/network-extra/squid/FrugalBuild index 4cbb7ab..0992ff4 100644 --- a/source/network-extra/squid/FrugalBuild +++ b/source/network-extra/squid/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: VMiklos pkgname=squid -pkgver=2.6.STABLE14 +pkgver=2.6.STABLE15 pkgrel=1 pkgdesc="Squid Web Proxy Cache" url="http://www.squid-cache.org/" @@ -13,18 +13,21 @@ archs=('i686' 'x86_64') backup=(etc/squid/{mime,msntauth,squid}.conf) up2date="lynx -dump $url/Versions/v2/2.6/|grep -1 Current|sed -n 's/.*-\([^ ]*\) .*/\1/;$ p'" source=(http://www.squid-cache.org/Versions/v2/2.6/$pkgname-$pkgver.tar.bz2 \ + http://www.squid-cache.org/Versions/v2/2.6/changesets/11622.patch \ $pkgname-2.6.STABLE3-dirs.diff $pkgname-2.6.STABLE3-samba.diff \ $pkgname-2.6.STABLE3-username.diff rc.squid squid) -sha1sums=('ff4801955707ff8a6bba69275951071d6ce55d33' \ +sha1sums=('4b7f6567198f9db4d95059e1a3580b16c9e619ad' \ + '3a988692e2d1e1803e66bfd9b6544e48290069a4' \ 'a1482482406661090951fa4c4304ca6604db2d14' \ '8eacf8bd974c461162aaba72b5bc4109cc1104c7' \ '7dbae27eeee7b62e685f6758a06d984b0b62668e' \ - '0fd7d10edfda7e9851bf4a63b82552492a823174' \ + '57728d2d5388ea6184f40d87997e03e1363f787b' \ '53042dd86e482d4a6eff9e34ecb01352439c5026') build() { Fpatchall + autoconf || return 1 Fmake --datadir=/usr/share/squid --sysconfdir=/etc/squid \ --libexecdir=/usr/lib/squid --localstatedir=/var \ --enable-auth="basic,digest,ntlm" \ diff --git a/source/network-extra/squid/rc.squid b/source/network-extra/squid/rc.squid index 1ef224e..20175ec 100644 --- a/source/network-extra/squid/rc.squid +++ b/source/network-extra/squid/rc.squid @@ -17,6 +17,8 @@ elif [ "$1" = "restart" ]; then "$0" stop sleep 1 "$0" start +elif [ "$1" = "reload" ]; then + squid -k reconfigure else # start if [ ! -f /var/cache/squid/swap.state ]; then start "$createcache" From vmiklos at frugalware.org Mon Sep 3 15:19:02 2007 From: vmiklos at frugalware.org (VMiklos) Date: Mon Sep 3 15:19:04 2007 Subject: [Frugalware-git] pacman-tools: fblint: fix get_root() Message-ID: <20070903131902.70FF513A4152@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=pacman-tools.git;a=commitdiff;h=a0fb4ee1977af3701942860fcf966fc1220b6714 commit a0fb4ee1977af3701942860fcf966fc1220b6714 Author: VMiklos Date: Mon Sep 3 15:15:16 2007 +0200 fblint: fix get_root() diff --git a/fblint b/fblint index 5b8d485..c301569 100755 --- a/fblint +++ b/fblint @@ -47,7 +47,7 @@ get_root() local i i=`git rev-parse --git-dir 2>/dev/null` if [ -n "$i" ]; then - echo `dirname $i` + echo $(basename $(dirname $i)) _scm=git return fi @@ -170,7 +170,7 @@ if [ ! -z "$subpkgs" ]; then check "right number of suboptions" "[ \"${#suboptions[@]}\" = 0 ] || [ \"${#suboptions[@]}\" = \"${#subpkgs[@]}\" ]" fi -if [ "`get_root`" = "frugalware-stable" ]; then +if [ "`get_root`" = "stable" ]; then check "unchanged pkgrel" "echo $pkgrel | grep -q '\(siwenna\|terminus\)'" fi From vmiklos at frugalware.org Mon Sep 3 15:19:02 2007 From: vmiklos at frugalware.org (VMiklos) Date: Mon Sep 3 15:19:04 2007 Subject: [Frugalware-git] pacman-tools: fblint: allow missing md5/sha1sums and signatures if there are no remote sources Message-ID: <20070903131902.9B02213A4152@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=pacman-tools.git;a=commitdiff;h=5731ea7c9c466dc328caa3edec0e1ffbbd2a7400 commit 5731ea7c9c466dc328caa3edec0e1ffbbd2a7400 Author: VMiklos Date: Mon Sep 3 15:18:55 2007 +0200 fblint: allow missing md5/sha1sums and signatures if there are no remote sources diff --git a/fblint b/fblint index c301569..238d006 100755 --- a/fblint +++ b/fblint @@ -132,7 +132,14 @@ check "valid first group" "! echo $groups |grep -q -- - || echo $groups|grep -q check "valid options()" "[ -z \"$(echo ${options[@]}|tr ' ' '\n' |grep -v '\(nodocs\|nostrip\|force\|nobuild\|nofakeroot\|scriptlet\|stick\|devel\)')\" ]" check "archs" "[ ! -z \"$archs\" ]" check "up2date" "[ ! -z \"`echo $up2date|sed 's/\$(/\\\\\$(/g'`\" ]" -check "md5sums/sha1sums/signatures" "[ ${#md5sums[@]} -gt 0 -o ${#sha1sums[@]} -gt 0 -o ${#signatures[@]} -gt 0 ]" +_fblint_have_remote_source=n +for i in ${source[@]} +do + echo $i|grep -q :// && _fblint_have_remote_source=y +done +if [ "$_fblint_have_remote_source" = "y" ]; then + check "md5sums/sha1sums/signatures" "[ ${#md5sums[@]} -gt 0 -o ${#sha1sums[@]} -gt 0 -o ${#signatures[@]} -gt 0 ]" +fi if [ ${#md5sums[@]} -gt 0 ]; then check "right number of md5sums" "[ ${#md5sums[@]} -eq ${#source[@]} ]" fi From vmiklos at frugalware.org Mon Sep 3 16:30:08 2007 From: vmiklos at frugalware.org (VMiklos) Date: Mon Sep 3 16:30:14 2007 Subject: [Frugalware-git] vmiklos: git-1.5.3.1-1-i686 Message-ID: <20070903143008.5DA9213A4152@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=vmiklos.git;a=commitdiff;h=1796e514742c29f43564036258ecafe2566f2599 commit 1796e514742c29f43564036258ecafe2566f2599 Author: VMiklos Date: Mon Sep 3 16:29:50 2007 +0200 git-1.5.3.1-1-i686 version bump diff --git a/source/devel-extra/git/FrugalBuild b/source/devel-extra/git/FrugalBuild index 2231a03..b06872e 100644 --- a/source/devel-extra/git/FrugalBuild +++ b/source/devel-extra/git/FrugalBuild @@ -2,7 +2,9 @@ # Maintainer: VMiklos pkgname=git -pkgver=1.5.3 +USE_DEVEL=${USE_DEVEL:-""} +pkgver=1.5.3.1 +[ $USE_DEVEL ] && pkgver=1.5.3.rc7.30.g947ad2 pkgrel=1 pkgdesc="A fast, scalable, distributed revision control system." url="http://www.kernel.org/pub/software/scm/git/" @@ -11,9 +13,11 @@ makedepends=('asciidoc' 'docbook-xsl>=1.73.0-2' 'docbook-xml' 'sgml-common' 'xml groups=('devel-extra') archs=('i686' 'x86_64') up2date="lynx -dump '$url/?C=M;O=D'|grep 'git-[0-9.]*.tar.bz2$'|sed -n 's/.*-\(.*\)\.t.*/\1/;1 p'" -source=($url/$pkgname-$pkgver.tar.bz2 \ -gitweb.modules.d gitweb.conf README.Frugalware) -signatures=(${source[0]}.sign '' '' '') +if ! [ $USE_DEVEL ]; then + source=($url/$pkgname-$pkgver.tar.bz2) + signatures=(${source[0]}.sign '' '' '') +fi +source=(${source[@]} gitweb.modules.d gitweb.conf README.Frugalware) options=('scriptlet') subpkgs=('gitweb' 'git-gui' 'gitk') @@ -23,8 +27,16 @@ subbackup=('etc/gitweb.conf etc/httpd/conf/modules.d/gitweb.conf' '' '') subgroups=('network-extra' 'xapps-extra' 'xapps-extra') subarchs=('i686 x86_64' 'i686 x86_64' 'i686 x86_64') +if [ $USE_DEVEL ]; then + _F_scm_type="git" + _F_scm_url="git://git.kernel.org/pub/scm/git/git.git" + Finclude scm +fi + build() { + [ $USE_DEVEL ] && Funpack_scm + # undebianize Fsed 'doc/' '' templates/hooks--post-receive Fsed ' (on debian)' '' templates/hooks--post-receive From vmiklos at frugalware.org Mon Sep 3 21:29:46 2007 From: vmiklos at frugalware.org (VMiklos) Date: Mon Sep 3 21:29:49 2007 Subject: [Frugalware-git] vmiklos: docs/getting-involved: more desc about devspaces Message-ID: <20070903192946.A94C213A4152@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=vmiklos.git;a=commitdiff;h=b1d26acc16a34321492357c3d91056cb97ec40f9 commit b1d26acc16a34321492357c3d91056cb97ec40f9 Author: VMiklos Date: Mon Sep 3 21:29:37 2007 +0200 docs/getting-involved: more desc about devspaces explain what is the difference between the /pub/other/people/nick and the ~/public_html dir diff --git a/docs/getting-involved.txt b/docs/getting-involved.txt index 723699a..1131d51 100644 --- a/docs/getting-involved.txt +++ b/docs/getting-involved.txt @@ -171,6 +171,11 @@ following services: on the artwork or so) * voice on the #frugalware.dev channel * a @frugalware.org mail address (with imaps/pop3s access) +* Public and private devspace. The first is in the `/pub/other/people/nick` dir + and this is mirrored (you must not put private stuff to there). The later is + your `~/public_html` dir: it is not mirrored and there is no backup for it. + Though you may temporarily put private stuff to there. +* a @frugalware.org jabber account if you want one What you should do: From vmiklos at frugalware.org Mon Sep 3 22:38:22 2007 From: vmiklos at frugalware.org (VMiklos) Date: Mon Sep 3 22:38:26 2007 Subject: [Frugalware-git] vmiklos: dhcp-3.0.6-2-i686 Message-ID: <20070903203822.B82A013A4152@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=vmiklos.git;a=commitdiff;h=e2f864d6e279d016ed762798e86f4dd0d8cfb9b8 commit e2f864d6e279d016ed762798e86f4dd0d8cfb9b8 Author: VMiklos Date: Mon Sep 3 22:38:09 2007 +0200 dhcp-3.0.6-2-i686 fix the restart target in the rc script diff --git a/source/network/dhcp/FrugalBuild b/source/network/dhcp/FrugalBuild index a422166..e8c70a0 100644 --- a/source/network/dhcp/FrugalBuild +++ b/source/network/dhcp/FrugalBuild @@ -3,7 +3,7 @@ pkgname=dhcp pkgver=3.0.6 -pkgrel=1 +pkgrel=2 pkgdesc="The ISC DHCP server" url="http://www.isc.org/sw/dhcp/" depends=('glibc') @@ -15,7 +15,7 @@ up2date="lynx -dump $url |grep dhcp-[0-9] |sed -ne 's/.*p-\(.*\).t.*/\1/;1 p'" source=(ftp://ftp.isc.org/isc/$pkgname/$pkgname-$pkgver.tar.gz \ rc.dhcpd rc.dhcpd-hu.po README.Frugalware $pkgname-3.0.4-networkmanager-fixes.patch dhclient.conf) sha1sums=('204e509580d57d0cfff23529274612ca8c710efb' \ - '78b0defcc0dbdc85b947bdf9c0037b0530358a32' \ + '4b8d8813f497d3a9aa21eeb113ae965b7b7fdf81' \ 'fd70ba41e16c15d69529eeb216be103e042f3437' \ '0510d9057df9dcf1c476961930f0ac65f7de87f9' \ '638b5a5eb6e4459db52e6e65c7d015d246b70e3e' \ diff --git a/source/network/dhcp/rc.dhcpd b/source/network/dhcp/rc.dhcpd index f838266..8ef2748 100644 --- a/source/network/dhcp/rc.dhcpd +++ b/source/network/dhcp/rc.dhcpd @@ -15,12 +15,12 @@ TEXTDOMAINDIR=/lib/initscripts/messages actions=(restart start status stop) daemon=$"DHCP server" -pid="$(pidof dhcpd 2> /dev/null)" +pid="pidof dhcpd 2> /dev/null" rc_start() { start_msg - if [ -z ${pid} ] ; then + if [[ "$(eval $pid)" == "" ]] ; then dhcpd ok $? else @@ -31,7 +31,7 @@ rc_start() rc_stop() { stop_msg - if [ ! -z ${pid} ] ; then + if [[ "$(eval $pid)" != "" ]] ; then killall dhcpd ok $? else From vmiklos at frugalware.org Mon Sep 3 22:49:55 2007 From: vmiklos at frugalware.org (VMiklos) Date: Mon Sep 3 22:49:57 2007 Subject: [Frugalware-git] homepage-ng: draft for 0.7rc1 Message-ID: <20070903204955.7769D13A4152@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=homepage-ng.git;a=commitdiff;h=b6043509e8d5f9b0f153971fb0fafd44dc196f1a commit b6043509e8d5f9b0f153971fb0fafd44dc196f1a Author: VMiklos Date: Mon Sep 3 22:49:50 2007 +0200 draft for 0.7rc1 diff --git a/frugalware/xml/news.xml b/frugalware/xml/news.xml index 15a8468..8bd4d02 100644 --- a/frugalware/xml/news.xml +++ b/frugalware/xml/news.xml @@ -17,6 +17,85 @@ + 73 + Frugalware 0.7rc1 (Sayshell) released + Tue Sep 4 02:40:14 CEST 2007 + VMiklos + 1 + announce the immediate availability of Frugalware 0.7rc1, the first candidate of the upcoming 0.7 stable release.
+ A short and incomplete list of changes since 0.7pre2:
+
    +
  • Package updates: +
      +
    • GNU C Library 2.6.1
    • +
    • Replaced util-linux with util-linux-ng
    • +
    • More than 30 new packages
    • +
    • Added detailed documentation for the util-linux-ng, amavisd-new and ejabberd packages
    • +
    • More than 900 changes: package updates, bug- and security fixes.
    • +
    +
  • +
  • New features: +
      +
    • Added permalinks to the documentation
    • +
    • Rewritten the package builder daemon, which is now supports distributed operation. This results in continuous package updates even if one package builder server is not available.
    • +
    +
  • +
  • Setup: +
      +
    • new Danish translation
    • +
    +
  • +
+ Please refer to the Frugalware Testing ChangeLog for more information.
+ Download for i686:
+ NOTE: Don't download CDs 3-12 or the second DVD unless you don't have an internet connection
+ livecd, + netinstall, + usb, + tftp, + cd1, + cd2, + cd3, + cd4, + cd5, + cd6, + cd7, + cd8, + cd9, + cd10, + cd11, + cd12, + cd13, + dvd1 and + dvd2 +
+ SHA1SUMS: +
+4bb7b25e1a0e10e3074e8536043b2560e7d1482b  frugalware-0.7rc1-i686-cd10.iso
+930bffed77bc653acb36def009e3cd60967888c2  frugalware-0.7rc1-i686-cd11.iso
+99dec9ae6fa90e65a55ada6066006fe7077c2674  frugalware-0.7rc1-i686-cd12.iso
+c99cb96116a19a5d08520855eda42410fb879e2c  frugalware-0.7rc1-i686-cd13.iso
+cc5917a64ae70ca5b1abacf77b91a456e22a10a3  frugalware-0.7rc1-i686-cd1.iso
+12c6510a6b82fb59993776b6f70bb3f00484f219  frugalware-0.7rc1-i686-cd2.iso
+16d444b76438c322af803677566af1f6a4061055  frugalware-0.7rc1-i686-cd3.iso
+aa96e6d0e10707219967fa350e7db4548df69e5d  frugalware-0.7rc1-i686-cd4.iso
+7adc55e038707e989062b93a633cdbb622481cbd  frugalware-0.7rc1-i686-cd5.iso
+7e6985290a71b5e60605829894d12bb12f0b7385  frugalware-0.7rc1-i686-cd6.iso
+155f8d14301c8ac4bc40f2fc94f97051be376ce0  frugalware-0.7rc1-i686-cd7.iso
+0f02412084c7ec1b5a9a00f27cce755663286cf7  frugalware-0.7rc1-i686-cd8.iso
+e5cdb93601e2d56da31efd207fb45160ac67e096  frugalware-0.7rc1-i686-cd9.iso
+8e7d7936a578a6fef9065bbb80c7cd4b02ee3e45  frugalware-0.7rc1-i686-dvd1.iso
+eb2ad29098cc9fcab5b715abda398f559ed4080e  frugalware-0.7rc1-i686-dvd2.iso
+86818f76c430a9a941d7c292ca9e17dc90f686d7  frugalware-0.7rc1-i686-net.iso
+50d45d74cf8d019df9ab1b1cbd988902b74a7536  fwlive-0.7rc1-i686-full.iso
+819e936e9b4ce96f92279958ecb869e744d07874  frugalware-0.7rc1-i686-tftp.img.gz
+a1a22df8d4ea671fb88c0fac30510af19bd578e3  frugalware-0.7rc1-i686-usb.tar.gz
+			
+ ]]> +
+
+ 72 Frugalware 0.7pre2 (Sayshell) released Mon Jul 30 09:25:25 CEST 2007 From vmiklos at frugalware.org Mon Sep 3 22:55:30 2007 From: vmiklos at frugalware.org (VMiklos) Date: Mon Sep 3 22:55:33 2007 Subject: [Frugalware-git] homepage-ng: typo (found by Alex) Message-ID: <20070903205530.EEAD213A4152@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=homepage-ng.git;a=commitdiff;h=4bdd47373b99b792e2c870df8adc48c336018cb2 commit 4bdd47373b99b792e2c870df8adc48c336018cb2 Author: VMiklos Date: Mon Sep 3 22:55:25 2007 +0200 typo (found by Alex) diff --git a/frugalware/xml/news.xml b/frugalware/xml/news.xml index 8bd4d02..3496878 100644 --- a/frugalware/xml/news.xml +++ b/frugalware/xml/news.xml @@ -38,7 +38,7 @@
  • New features:
    • Added permalinks to the documentation
    • -
    • Rewritten the package builder daemon, which is now supports distributed operation. This results in continuous package updates even if one package builder server is not available.
    • +
    • Rewritten the package builder daemon, which now supports distributed operation. This results in continuous package updates even if one package builder server is not available.
  • Setup: From vmiklos at frugalware.org Tue Sep 4 11:33:28 2007 From: vmiklos at frugalware.org (VMiklos) Date: Tue Sep 4 11:33:30 2007 Subject: [Frugalware-git] homepage-ng: 0.7rc1 is out! :) Message-ID: <20070904093328.35CE013A4152@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=homepage-ng.git;a=commitdiff;h=8ee973a16d8cb7a8a1fca65503250ffd42546fb5 commit 8ee973a16d8cb7a8a1fca65503250ffd42546fb5 Author: VMiklos Date: Tue Sep 4 11:33:18 2007 +0200 0.7rc1 is out! :) diff --git a/frugalware/xml/news.xml b/frugalware/xml/news.xml index 3496878..aa0f113 100644 --- a/frugalware/xml/news.xml +++ b/frugalware/xml/news.xml @@ -21,7 +21,7 @@ Frugalware 0.7rc1 (Sayshell) released Tue Sep 4 02:40:14 CEST 2007 VMiklos - 1 + 0 announce the immediate availability of Frugalware 0.7rc1, the first candidate of the upcoming 0.7 stable release.
    A short and incomplete list of changes since 0.7pre2:
    diff --git a/frugalware/xml/roadmap.xml b/frugalware/xml/roadmap.xml index 35d6535..1fa9d6c 100644 --- a/frugalware/xml/roadmap.xml +++ b/frugalware/xml/roadmap.xml @@ -36,7 +36,7 @@ rc1 Sep 4, 2007 - 0 + 1 pre2 From krics at linuxforum.hu Tue Sep 4 11:59:46 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Tue Sep 4 11:59:48 2007 Subject: [Frugalware-git] frugalware-current: librsvg-2.18.2-1-i686 Message-ID: <20070904095946.6D88A13A41A7@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=8968f4adf1ec90f377eb3f3c7b9824abe54c685f commit 8968f4adf1ec90f377eb3f3c7b9824abe54c685f Author: Christian Hamar alias krix Date: Tue Sep 4 11:57:47 2007 +0200 librsvg-2.18.2-1-i686 * Version bump diff --git a/source/gnome/librsvg/FrugalBuild b/source/gnome/librsvg/FrugalBuild index 54d8d78..4cda38a 100644 --- a/source/gnome/librsvg/FrugalBuild +++ b/source/gnome/librsvg/FrugalBuild @@ -3,7 +3,7 @@ # Contributor: VMiklos pkgname=librsvg -pkgver=2.18.1 +pkgver=2.18.2 pkgrel=1 pkgdesc="A high performance SVG rendering library for GNOME" url="http://www.gnome.org/" @@ -12,11 +12,7 @@ makedepends=('gtk-doc') groups=('gnome' 'gnome-core') archs=('i686' 'x86_64') Finclude gnome -sha1sums=('1b5a15515b32eaf3eef709237dac8365e26f30ca') - -build() { - Fbuild --enable-gtk-doc --enable-pixbuf-loader --enable-gtk-theme \ - --with-croco --enable-mozilla-plugin -} +sha1sums=('9e3017817708025737e53b60fe3bfa813e670e02') +Fconfopts="$Fconfopts --enable-gtk-doc --enable-pixbuf-loader --enable-gtk-theme --with-croco --enable-mozilla-plugin" # optimization OK From vmiklos at frugalware.org Tue Sep 4 12:29:54 2007 From: vmiklos at frugalware.org (VMiklos) Date: Tue Sep 4 12:30:00 2007 Subject: [Frugalware-git] ooodev: replace options=('devel') with USE_DEVEL Message-ID: <20070904102954.E341E13A41AC@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=ooodev.git;a=commitdiff;h=14df1567ec34c57c073651445fe2cdec6608d8d6 commit 14df1567ec34c57c073651445fe2cdec6608d8d6 Author: VMiklos Date: Tue Sep 4 12:20:41 2007 +0200 replace options=('devel') with USE_DEVEL this is good because then the value of this option can be changed from the commandline, without modifying the FB diff --git a/source/xapps/openoffice.org/FrugalBuild b/source/xapps/openoffice.org/FrugalBuild index 97adafb..1e1d0ac 100644 --- a/source/xapps/openoffice.org/FrugalBuild +++ b/source/xapps/openoffice.org/FrugalBuild @@ -3,9 +3,8 @@ # Contributor: Laszlo Dvornik pkgname=openoffice.org -# uncomment this to get a -devel build -options=('devel') -if [ ! "`check_option DEVEL`" ]; then +USE_DEVEL=${USE_DEVEL:-""} +if ! [ $USE_DEVEL ]; then upstream=2.2.1 branch=2-2 tree=oof680 @@ -34,7 +33,7 @@ makedepends=('curl' 'intltool' 'tcsh' 'pam-headers' 'firefox' 'apache-ant' 'gcc- 'libbonobo' 'procps' 'openldap' 'mono' 'gperf' 'xulrunner') groups=('xapps') archs=('i686' 'x86_64') -if [ ! "`check_option DEVEL`" ]; then +if ! [ $USE_DEVEL ]; then up2date="lynx -dump $url |grep version:|sed 's/.*: //'" source=(http://ftp.frugalware.org/pub/other/sources/ooo-build/ooo-build-$branch-$snapshot.tar.bz2 \ http://hu.openoffice.org/source/browse/*checkout*/hu/src/2.2.0/SDF/hu.sdf.bz2) @@ -60,7 +59,7 @@ subinstall=("" "$_F_gnome_scriptlet") ooosubpkgs=('de' 'es' 'fr' 'hu') ooosubdescs=('German' 'Spanish' 'French' 'Hungarian') -if [ ! "`check_option DEVEL`" ]; then +if ! [ $USE_DEVEL ]; then ooosubpkgs=(${ooosubpkgs[@]} 'af' 'ar' 'be-BY' 'bg' 'bn' 'bn-BD' 'bn-IN' 'br' 'bs' 'ca' 'cy' 'cs' 'da' 'el' 'en-GB' 'en-ZA' 'eo' 'et' 'eu' 'fi' 'ga' 'gl' 'gu-IN' 'he' 'hi-IN' 'hr' 'it' 'ja' 'km' 'kn-IN' 'ko' 'lo' 'lt' 'lv' 'mk' 'ms' 'nb' 'ne' 'nl' 'nn' 'nr' 'ns' 'pa-IN' 'pl' 'pt' 'pt-BR' 'ru' 'rw' 'sh-YU' 'sk' 'sl' 'sr-CS' 'ss' 'st' 'sv' 'sw' 'sw-TZ' 'sx' 'ta-IN' 'th' 'tn' 'tr' 'ts' 've' 'vi' 'xh' 'zh-CN' 'zh-TW' 'zu' 'fa' 'ku' 'as-IN' 'ml-IN' 'mr-IN' 'or-IN' 'te-IN' 'tg' 'ti-ER' 'uk' 'ur-IN' 'dz') ooosubdescs=(${ooosubdescs[@]} 'Afrikaans' 'Arabic' 'Belarusian' 'Bulgarian' 'Bengali' 'Bengali (Bangladesh)' 'Bengali (India)' 'Breton' 'Bosnian' 'Catalan' 'Welsh' 'Czech' 'Danish' 'Greek' 'English (GB)' 'English (South Africa)' 'Esperanto' 'Estonian' 'Basque' 'Finnish' 'Irish' 'Galician' 'Gujarati' 'Hebrew' 'Hindi' 'Croatian' 'Italian' 'Japanese' 'Khmer (Cambodia)' 'Kannada' 'Korean' 'Lao' 'Lithuanian' 'Latvian' 'Macedonian' 'Malay' 'Norwegian Bokmal' 'Nepali' 'Dutch' 'Norwegian Nynorsk' 'Ndebele, South' 'NorthernSotho/Sepedi' 'Punjabi' 'Polish' 'Portuguese' 'Brazil (Port.)' 'Russian' 'Kinyarwanda' 'Serbian Latin' 'Slovak' 'Slovenian' 'Serbian Cyrillic' 'Swati' 'Sotho' 'Swedish' 'Swahili' 'Swahili ' 'South Georgian' 'Tamil' 'Thai' 'Tswana' 'Turkish' 'Tsonga' 'Venda' 'Vietnamese' 'Xhosa' 'Chinese (simplified)' 'Chinese (traditional)' 'Zulu' 'Persian' 'Kurdish' 'Assamese' 'Malayalam' 'Marathi' 'Oriya' 'Telugu' 'Tajik' 'Tigrinya' 'Ukrainian' 'Urdu' 'Dzongkha') fi @@ -101,7 +100,7 @@ done build() { Fmonoexport - if [ ! "`check_option DEVEL`" ]; then + if ! [ $USE_DEVEL ]; then Fcd ooo-build-${branch//-/.} rm -f patches/src680/fix-invisible-text.diff else @@ -141,7 +140,7 @@ build() { # Optimize build. export ARCH_FLAGS="$CFLAGS" - if [ "`check_option DEVEL`" ]; then + if ! [ $USE_DEVEL ]; then Fconf --with-lang="en-US de es fr hu" --enable-separate-helpcontent else Fconf --with-lang=ALL From vmiklos at frugalware.org Tue Sep 4 12:29:55 2007 From: vmiklos at frugalware.org (VMiklos) Date: Tue Sep 4 12:30:00 2007 Subject: [Frugalware-git] ooodev: enable USE_DEVEL by default in this branch Message-ID: <20070904102955.36A9713A41AE@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=ooodev.git;a=commitdiff;h=96a5151dd1305d467d7040bfbb7ac2c023487d44 commit 96a5151dd1305d467d7040bfbb7ac2c023487d44 Author: VMiklos Date: Tue Sep 4 12:21:22 2007 +0200 enable USE_DEVEL by default in this branch diff --git a/source/xapps/openoffice.org/FrugalBuild b/source/xapps/openoffice.org/FrugalBuild index 1e1d0ac..a5b84b9 100644 --- a/source/xapps/openoffice.org/FrugalBuild +++ b/source/xapps/openoffice.org/FrugalBuild @@ -3,7 +3,7 @@ # Contributor: Laszlo Dvornik pkgname=openoffice.org -USE_DEVEL=${USE_DEVEL:-""} +USE_DEVEL=${USE_DEVEL:-"y"} if ! [ $USE_DEVEL ]; then upstream=2.2.1 branch=2-2 From vmiklos at frugalware.org Tue Sep 4 12:29:55 2007 From: vmiklos at frugalware.org (VMiklos) Date: Tue Sep 4 12:30:00 2007 Subject: [Frugalware-git] ooodev: openoffice.org-2.3oog680_m3-1-i686 Message-ID: <20070904102955.524D213A41AF@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=ooodev.git;a=commitdiff;h=6e23baa2acaf905409eaea67851dcfda1b301226 commit 6e23baa2acaf905409eaea67851dcfda1b301226 Author: VMiklos Date: Tue Sep 4 12:21:54 2007 +0200 openoffice.org-2.3oog680_m3-1-i686 up to oog680m3 diff --git a/source/xapps/openoffice.org/FrugalBuild b/source/xapps/openoffice.org/FrugalBuild index a5b84b9..84d6c99 100644 --- a/source/xapps/openoffice.org/FrugalBuild +++ b/source/xapps/openoffice.org/FrugalBuild @@ -15,10 +15,10 @@ if ! [ $USE_DEVEL ]; then else upstream=2.3 tree=oog680 - milestone=2 + milestone=3 pkgver=$upstream${tree}_m$milestone pkgrel=1 - snapshot=20070901 + snapshot=20070904 fi pkgdesc="OpenOffice.org, a full office productivity suite." url="http://www.openoffice.org/" From vmiklos at frugalware.org Tue Sep 4 12:29:55 2007 From: vmiklos at frugalware.org (VMiklos) Date: Tue Sep 4 12:30:00 2007 Subject: [Frugalware-git] ooodev: openoffice.org-2.3oog680_m3-1-i686 Message-ID: <20070904102955.91DDB13A41B0@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=ooodev.git;a=commitdiff;h=a3300d9ab9e6e6114b1f3309882c2592127aa511 commit a3300d9ab9e6e6114b1f3309882c2592127aa511 Author: VMiklos Date: Tue Sep 4 12:29:36 2007 +0200 openoffice.org-2.3oog680_m3-1-i686 remove a FIXME: ideally this will again build without any hacks (we needed a manual symlink in the chroot before) diff --git a/source/xapps/openoffice.org/FrugalBuild b/source/xapps/openoffice.org/FrugalBuild index 84d6c99..b99340c 100644 --- a/source/xapps/openoffice.org/FrugalBuild +++ b/source/xapps/openoffice.org/FrugalBuild @@ -96,8 +96,6 @@ done # You can find a few random notes about building OOo here: # http://wiki.frugalware.org/OOo_building -# FIXME: an ln -s gcj-4.2.1/libjawt.so /usr/lib is needed atm - build() { Fmonoexport if ! [ $USE_DEVEL ]; then From krics at linuxforum.hu Tue Sep 4 13:19:15 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Tue Sep 4 13:19:17 2007 Subject: [Frugalware-git] frugalware-current: libarchive-2.2.7-1-i686 Message-ID: <20070904111915.925E513A41A4@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=cc7668588c9089449b182a2669774c35b66940d6 commit cc7668588c9089449b182a2669774c35b66940d6 Author: Christian Hamar alias krix Date: Tue Sep 4 13:17:09 2007 +0200 libarchive-2.2.7-1-i686 * Version bump diff --git a/source/base/libarchive/FrugalBuild b/source/base/libarchive/FrugalBuild index df9a93f..634120e 100644 --- a/source/base/libarchive/FrugalBuild +++ b/source/base/libarchive/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: Christian Hamar alias krix pkgname=libarchive -pkgver=2.2.6 +pkgver=2.2.7 pkgrel=1 pkgdesc="Library to create and read several different archive formats" groups=('base' 'chroot-core') @@ -11,5 +11,5 @@ url="http://people.freebsd.org/~kientzle/libarchive/" depends=('bzip2' 'zlib') up2date="lynx -dump $url |Flasttar" source=($url/src/$pkgname-$pkgver.tar.gz) -sha1sums=('3e8b69479c1f9beaf01d3b1672573ac33a74b120') +sha1sums=('d43edd5694177c0611982ff79a28b36774518e1b') # optimization OK From vmiklos at frugalware.org Tue Sep 4 13:30:35 2007 From: vmiklos at frugalware.org (VMiklos) Date: Tue Sep 4 13:30:36 2007 Subject: [Frugalware-git] frugalware-current: screen-4.0.3-2-i686 Message-ID: <20070904113035.4531A13A41AA@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=428d0d5e6ba590a804c6a363847d3598883f4290 commit 428d0d5e6ba590a804c6a363847d3598883f4290 Author: VMiklos Date: Tue Sep 4 13:30:13 2007 +0200 screen-4.0.3-2-i686 added a README.Frugalware diff --git a/source/apps/screen/FrugalBuild b/source/apps/screen/FrugalBuild index 49936cf..77f4287 100644 --- a/source/apps/screen/FrugalBuild +++ b/source/apps/screen/FrugalBuild @@ -3,7 +3,7 @@ pkgname=screen pkgver=4.0.3 -pkgrel=1 +pkgrel=2 pkgdesc="A full-screen window manager that multiplexes a physical terminal" url="http://www.gnu.org/software/screen/screen.html" pkgurl="http://ftp.uni-erlangen.de/pub/utilities/$pkgname" @@ -11,9 +11,10 @@ depends=('ncurses') groups=('apps') archs=('i686' 'x86_64') up2date="lynx -dump $pkgurl|grep -v 'doc'|grep 'screen-'|sort -n -r|grep -m1 '.tar.gz'|sed 's/.*-\(.*\).t.*/\1/'" -source=($pkgurl/$pkgname-$pkgver.tar.gz screen-4.0.3-nosuid.diff) +source=($pkgurl/$pkgname-$pkgver.tar.gz screen-4.0.3-nosuid.diff \ + README.Frugalware) +sha1sums=('7bc6e2f0959ffaae6f52d698c26c774e7dec3545' \ + '41890308184675c90cd528a206ce4117760188ca' \ + 'aee108ed81e41b3fd2e6d6d028a659fa7abd100a') Fconfopts="$Fconfopts --disable-pam" - # optimization OK -sha1sums=('7bc6e2f0959ffaae6f52d698c26c774e7dec3545' \ - '41890308184675c90cd528a206ce4117760188ca') diff --git a/source/apps/screen/README.Frugalware b/source/apps/screen/README.Frugalware new file mode 100644 index 0000000..b1b4265 --- /dev/null +++ b/source/apps/screen/README.Frugalware @@ -0,0 +1,22 @@ +=== Keeping your screen running across reboots + +You may want to restart your screen session automatically after a reboot. This +is the case, for example, when we seed the Frugalware ISOs using a torrent +client. Here is what you need: + +- Set up your `~/.screenrc` so that it'll start your application when screen + starts up: + +---- +screen -t seed 0 /bin/sh -c 'cd $HOME/frugalware-torrents; rtorrent' +---- + +- Run `crontab -e` and append the following line to your crontab: + +---- +@reboot screen -d -m +---- + +You're ready! + +// vim: ft=asciidoc From priyank at frugalware.org Tue Sep 4 13:35:41 2007 From: priyank at frugalware.org (Priyank) Date: Tue Sep 4 13:35:45 2007 Subject: [Frugalware-git] frugalware-current: ristretto-0.0.3-1-i686 Message-ID: <20070904113541.4851513A41AD@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=645a4402ca436823bb2985e0b120a462661ca043 commit 645a4402ca436823bb2985e0b120a462661ca043 Author: Priyank Date: Tue Sep 4 17:02:48 2007 +0530 ristretto-0.0.3-1-i686 * Version bump diff --git a/source/xfce4/ristretto/FrugalBuild b/source/xfce4/ristretto/FrugalBuild index 2305bcc..d75e663 100644 --- a/source/xfce4/ristretto/FrugalBuild +++ b/source/xfce4/ristretto/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: Priyank Gosalia pkgname=ristretto -pkgver=0.0.2 +pkgver=0.0.3 pkgrel=1 pkgdesc="A fast and lightweight picture viewer for Xfce." makedepends=('intltool') @@ -12,6 +12,6 @@ archs=('i686' 'x86_64') _F_gnome_iconcache="y" _F_xfce_goodies_ext=".tar.gz" Finclude xfce4 gnome-scriptlet -sha1sums=('748b5bfe6b2e240ac9c8440174d128b6bc85d810') +sha1sums=('019a8ce5c0e0d257283fd6834b5720ac958acf90') # optimization OK From vmiklos at frugalware.org Tue Sep 4 13:36:12 2007 From: vmiklos at frugalware.org (VMiklos) Date: Tue Sep 4 13:36:13 2007 Subject: [Frugalware-git] pacman-tools: revert "fblint: improve 'valid options()' check" Message-ID: <20070904113612.11C7B13A41B1@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=pacman-tools.git;a=commitdiff;h=789309b5b4e5a5b7070a66da3d415e43313e2545 commit 789309b5b4e5a5b7070a66da3d415e43313e2545 Author: VMiklos Date: Tue Sep 4 13:36:04 2007 +0200 revert "fblint: improve 'valid options()' check" - this reverts commit 18514fde2d09f8e84e43691895d4b60215360551 - it allowed to use custom options, but it turns out that they are bad - options can't be modified from commandline - see the postfix pkg for a good example about how to live without custom options diff --git a/fblint b/fblint index 238d006..33b9221 100755 --- a/fblint +++ b/fblint @@ -128,8 +128,7 @@ check "pkgdesc" "[ ! -z \"$pkgdesc\" ]" check "url" "[ ! -z \"$url\" ]" check "groups" "[ ! -z \"$groups\" ]" check "valid first group" "! echo $groups |grep -q -- - || echo $groups|grep -q -- -extra$" -# allowing 'devel' here is a bit tricky, as it's not documented but we use it actually, ie in OOo's FB -check "valid options()" "[ -z \"$(echo ${options[@]}|tr ' ' '\n' |grep -v '\(nodocs\|nostrip\|force\|nobuild\|nofakeroot\|scriptlet\|stick\|devel\)')\" ]" +check "valid options()" "[ -z \"$(echo ${options[@]}|tr ' ' '\n' |grep -v '\(nodocs\|nostrip\|force\|nobuild\|nofakeroot\|scriptlet\|stick\)')\" ]" check "archs" "[ ! -z \"$archs\" ]" check "up2date" "[ ! -z \"`echo $up2date|sed 's/\$(/\\\\\$(/g'`\" ]" _fblint_have_remote_source=n From priyank at frugalware.org Tue Sep 4 13:44:23 2007 From: priyank at frugalware.org (Priyank) Date: Tue Sep 4 13:44:29 2007 Subject: [Frugalware-git] frugalware-current: guiloader-2.10.1-1-i686 Message-ID: <20070904114423.73E0B13A41B4@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=ad831d10b97063e22e87e45e2be16522296fa742 commit ad831d10b97063e22e87e45e2be16522296fa742 Author: Priyank Date: Tue Sep 4 17:11:36 2007 +0530 guiloader-2.10.1-1-i686 * Version bump diff --git a/source/xapps-extra/guiloader/FrugalBuild b/source/xapps-extra/guiloader/FrugalBuild index 7349b05..b31a4a6 100644 --- a/source/xapps-extra/guiloader/FrugalBuild +++ b/source/xapps-extra/guiloader/FrugalBuild @@ -3,7 +3,7 @@ # Old Maintainer: Miklos Németh pkgname=guiloader -pkgver=2.10.0 +pkgver=2.10.1 pkgrel=1 pkgdesc="GUILoader for Crow Designer" _F_sourceforge_dirname="crow-designer" @@ -14,6 +14,6 @@ depends=('gtk+2') groups=('xapps-extra') archs=('i686' 'x86_64') up2date="lynx -dump $url | grep tar.bz2 | grep -m1 guiloader-\[0-9] | sed 's/.*r-\(.*\).t.*/\1/'" -sha1sums=('5bd4474b28e7cd722cb609c4b4e390d48971384c') +sha1sums=('d34d062203f92fbc85908646fb8ef1e41e5a1737') # optimization OK From priyank at frugalware.org Tue Sep 4 13:51:19 2007 From: priyank at frugalware.org (Priyank) Date: Tue Sep 4 13:51:21 2007 Subject: [Frugalware-git] frugalware-current: guiloader-cpp-2.10.1-1-i686 Message-ID: <20070904115119.9C89613A41B7@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=190e2a2038b3dae7237e38ade2f95cc028c8beec commit 190e2a2038b3dae7237e38ade2f95cc028c8beec Author: Priyank Date: Tue Sep 4 17:19:23 2007 +0530 guiloader-cpp-2.10.1-1-i686 * Version bump diff --git a/source/xapps-extra/guiloader-cpp/FrugalBuild b/source/xapps-extra/guiloader-cpp/FrugalBuild index 6bee451..c01fd9c 100644 --- a/source/xapps-extra/guiloader-cpp/FrugalBuild +++ b/source/xapps-extra/guiloader-cpp/FrugalBuild @@ -3,7 +3,7 @@ # Old Maintainer: Miklos Nemeth pkgname=guiloader-cpp -pkgver=2.10.0 +pkgver=2.10.1 pkgrel=1 pkgdesc="GUILoader-C++ for Crow Designer." _F_sourceforge_dirname="crow-designer" @@ -11,11 +11,11 @@ _F_sourceforge_name="guiloader-c++" _F_sourceforge_ext=".tar.bz2" Finclude sourceforge url="http://crow-designer.sourceforge.net" -depends=('guiloader>=2.10.0' 'gtkmm') +depends=('guiloader>=2.10.1' 'gtkmm') groups=('xapps-extra') archs=('i686' 'x86_64') up2date="lynx -dump $url | grep tar.bz2 | grep guiloader -m1 | sed 's/.*-\(.*\).t.*/\1/'" _F_cd_path="guiloader-c++-$pkgver" -sha1sums=('47aac561f319a65771a7dcc0db148436618de9b1') +sha1sums=('376bdba991076da43fbcd31ab97640bc77fe7322') # optimization OK From priyank at frugalware.org Tue Sep 4 14:02:33 2007 From: priyank at frugalware.org (Priyank) Date: Tue Sep 4 14:02:36 2007 Subject: [Frugalware-git] frugalware-current: crow-2.11.1-1-i686 Message-ID: <20070904120233.69A4B13A41BA@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=a0321d2a64c9c5acce21f1c1414dcaefd553ed19 commit a0321d2a64c9c5acce21f1c1414dcaefd553ed19 Author: Priyank Date: Tue Sep 4 17:28:54 2007 +0530 crow-2.11.1-1-i686 * Version bump diff --git a/source/xapps-extra/crow/FrugalBuild b/source/xapps-extra/crow/FrugalBuild index 345a918..88b4dcd 100644 --- a/source/xapps-extra/crow/FrugalBuild +++ b/source/xapps-extra/crow/FrugalBuild @@ -1,8 +1,8 @@ -# Compiling Time: 1.38 SBU +# Compiling Time: 0.80 SBU # Maintainer: Priyank Gosalia pkgname=crow -pkgver=2.11.0 +pkgver=2.11.1 pkgrel=1 pkgdesc="Modern GUI Designer for GTK+" _F_sourceforge_name="crow" @@ -10,10 +10,10 @@ _F_sourceforge_dirname="crow-designer" _F_sourceforge_ext=".tar.bz2" Finclude sourceforge url="http://crow-designer.sourceforge.net" -depends=('guiloader>=2.10.0' 'guiloader-cpp>=2.10.0' 'gtkmm' \ +depends=('guiloader>=2.10.1' 'guiloader-cpp>=2.10.1' 'gtkmm' \ 'dbus-glib' 'xdg-utils') groups=('xapps-extra') archs=('i686' 'x86_64') -sha1sums=('864478ca39ac5d2537e9d4d606120534cafee3c4') +sha1sums=('fb355c629140e6ac86754f94e524673ac4e7fc53') # optimization OK From priyank at frugalware.org Tue Sep 4 14:07:56 2007 From: priyank at frugalware.org (Priyank) Date: Tue Sep 4 14:07:58 2007 Subject: [Frugalware-git] frugalware-current: keytouch-editor-3.1.3-1-i686 Message-ID: <20070904120756.2239D13A41BD@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=f64a6f905f6ae84a0032587f301716d738a46ed7 commit f64a6f905f6ae84a0032587f301716d738a46ed7 Author: Priyank Date: Tue Sep 4 17:35:57 2007 +0530 keytouch-editor-3.1.3-1-i686 * Version bump diff --git a/source/xapps-extra/keytouch-editor/FrugalBuild b/source/xapps-extra/keytouch-editor/FrugalBuild index 09dbba3..09b8c98 100644 --- a/source/xapps-extra/keytouch-editor/FrugalBuild +++ b/source/xapps-extra/keytouch-editor/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: Priyank Gosalia pkgname=keytouch-editor -pkgver=3.1.2 +pkgver=3.1.3 pkgrel=1 pkgdesc="A utility to create keyboard files for keytouch." _F_sourceforge_dirname="keytouch" @@ -13,6 +13,6 @@ license="GPL" depends=('gtk+2') groups=('xapps-extra') archs=('i686' 'x86_64') -sha1sums=('597930fd10b6f7e8ce1a8dc18c43e0084376d4f5') +sha1sums=('a8c0b28bac4b1f9de3897e1a78dc14b4d994334e') # optimization OK From vmiklos at frugalware.org Wed Sep 5 00:14:29 2007 From: vmiklos at frugalware.org (VMiklos) Date: Wed Sep 5 00:14:31 2007 Subject: [Frugalware-git] frugalware-current: new Fuse() function for USE_DEVEL variables Message-ID: <20070904221429.6807413A4152@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=3a5d754afc980d1987c0f09713a3ff26cb0a917b commit 3a5d754afc980d1987c0f09713a3ff26cb0a917b Author: VMiklos Date: Wed Sep 5 00:12:09 2007 +0200 new Fuse() function for USE_DEVEL variables diff --git a/source/include/util.sh b/source/include/util.sh index a9e6b82..50fdd03 100644 --- a/source/include/util.sh +++ b/source/include/util.sh @@ -963,6 +963,22 @@ Fsplit() done } +## +# * Fuse(): Checks a use variable. Parameter: a use variable. Example: Fuse +# $USE_DEVEL. +## +Fuse() +{ + if [ "$1" = "n" ]; then + return 1 + elif [ "$1" = "y" ]; then + return 0 + else + Fmessage "Unknown use variable!" + Fdie + fi +} + ### # * check_option(): Check if a logical flag is defined in options() or not. # Parameter: name of the logical flag. Example: if [ "`check_option DEVEL`" ]; From vmiklos at frugalware.org Wed Sep 5 00:14:29 2007 From: vmiklos at frugalware.org (VMiklos) Date: Wed Sep 5 00:14:32 2007 Subject: [Frugalware-git] frugalware-current: git-1.5.3.1-1-i686 Message-ID: <20070904221429.9080F13A4153@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=e9ac9ed368d024e229e3aec6339e1298ce4a07c2 commit e9ac9ed368d024e229e3aec6339e1298ce4a07c2 Author: VMiklos Date: Wed Sep 5 00:13:38 2007 +0200 git-1.5.3.1-1-i686 use Fuse() diff --git a/source/devel-extra/git/FrugalBuild b/source/devel-extra/git/FrugalBuild index b06872e..36004f8 100644 --- a/source/devel-extra/git/FrugalBuild +++ b/source/devel-extra/git/FrugalBuild @@ -2,9 +2,9 @@ # Maintainer: VMiklos pkgname=git -USE_DEVEL=${USE_DEVEL:-""} +USE_DEVEL=${USE_DEVEL:-"n"} pkgver=1.5.3.1 -[ $USE_DEVEL ] && pkgver=1.5.3.rc7.30.g947ad2 +Fuse $USE_DEVEL && pkgver=1.5.3.rc7.30.g947ad2 pkgrel=1 pkgdesc="A fast, scalable, distributed revision control system." url="http://www.kernel.org/pub/software/scm/git/" @@ -13,7 +13,7 @@ makedepends=('asciidoc' 'docbook-xsl>=1.73.0-2' 'docbook-xml' 'sgml-common' 'xml groups=('devel-extra') archs=('i686' 'x86_64') up2date="lynx -dump '$url/?C=M;O=D'|grep 'git-[0-9.]*.tar.bz2$'|sed -n 's/.*-\(.*\)\.t.*/\1/;1 p'" -if ! [ $USE_DEVEL ]; then +if ! Fuse $USE_DEVEL; then source=($url/$pkgname-$pkgver.tar.bz2) signatures=(${source[0]}.sign '' '' '') fi @@ -27,7 +27,7 @@ subbackup=('etc/gitweb.conf etc/httpd/conf/modules.d/gitweb.conf' '' '') subgroups=('network-extra' 'xapps-extra' 'xapps-extra') subarchs=('i686 x86_64' 'i686 x86_64' 'i686 x86_64') -if [ $USE_DEVEL ]; then +if Fuse $USE_DEVEL; then _F_scm_type="git" _F_scm_url="git://git.kernel.org/pub/scm/git/git.git" Finclude scm @@ -35,7 +35,7 @@ fi build() { - [ $USE_DEVEL ] && Funpack_scm + Fuse $USE_DEVEL && Funpack_scm # undebianize Fsed 'doc/' '' templates/hooks--post-receive From vmiklos at frugalware.org Wed Sep 5 00:38:43 2007 From: vmiklos at frugalware.org (VMiklos) Date: Wed Sep 5 00:38:46 2007 Subject: [Frugalware-git] frugalware-current: git-1.5.3.1-1-i686 Message-ID: <20070904223843.EF6CD13A4152@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=8ec4a4c66a0dc9d543d639e13287cc2903cdaded commit 8ec4a4c66a0dc9d543d639e13287cc2903cdaded Author: VMiklos Date: Wed Sep 5 00:38:34 2007 +0200 git-1.5.3.1-1-i686 brr, i left out a hunk accidently diff --git a/source/devel-extra/git/FrugalBuild b/source/devel-extra/git/FrugalBuild index 36004f8..541fc65 100644 --- a/source/devel-extra/git/FrugalBuild +++ b/source/devel-extra/git/FrugalBuild @@ -1,8 +1,9 @@ # Compiling Time: 0.36 SBU # Maintainer: VMiklos -pkgname=git USE_DEVEL=${USE_DEVEL:-"n"} + +pkgname=git pkgver=1.5.3.1 Fuse $USE_DEVEL && pkgver=1.5.3.rc7.30.g947ad2 pkgrel=1 From vmiklos at frugalware.org Wed Sep 5 00:43:41 2007 From: vmiklos at frugalware.org (VMiklos) Date: Wed Sep 5 00:43:43 2007 Subject: [Frugalware-git] frugalware-current: docs/makepkg: a section about USE_DEVEL Message-ID: <20070904224341.A0D2713A4152@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=f0aa98271240f556c6e77caab8b2d0275b0b998c commit f0aa98271240f556c6e77caab8b2d0275b0b998c Author: VMiklos Date: Wed Sep 5 00:43:34 2007 +0200 docs/makepkg: a section about USE_DEVEL diff --git a/docs/makepkg.txt b/docs/makepkg.txt index 3dff180..bd289b3 100644 --- a/docs/makepkg.txt +++ b/docs/makepkg.txt @@ -144,6 +144,33 @@ parallel build / one user'. (See man makepkg for more info about the benefits of building in a chroot). +== Use variables + +You can alter the result of the build process using environment variables +without touching the FrugalBuild itself. The `git` package is a good example. +Using + +----------------------------------- +$ USE_DEVEL=y sudo makepkg [] +----------------------------------- + +for that package results in a build of git's development version. Here is what +you need if you want so for your package: + +---- +# set the variable to false by default +USE_DEVEL=${USE_DEVEL:-"n"} + +(...) + +# these commands will be evaluated only in case USE_DEVEL is set to true +if Fuse $USE_DEVEL; then + _F_scm_type="git" + _F_scm_url="git://git.kernel.org/pub/scm/git/git.git" + Finclude scm +fi +---- + In the next section we will see an example for a simple FrugalBuild script. == A simple example From vmiklos at frugalware.org Wed Sep 5 00:47:50 2007 From: vmiklos at frugalware.org (VMiklos) Date: Wed Sep 5 00:47:52 2007 Subject: [Frugalware-git] pacman-tools: repoman manpage: mention the USE_DEVEL variable Message-ID: <20070904224750.534F513A4152@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=pacman-tools.git;a=commitdiff;h=7b41cc091bd5e13bc2b5fa03b0b68c63e1788374 commit 7b41cc091bd5e13bc2b5fa03b0b68c63e1788374 Author: VMiklos Date: Wed Sep 5 00:47:07 2007 +0200 repoman manpage: mention the USE_DEVEL variable diff --git a/repoman.1 b/repoman.1 index 3e5acda..66b81f6 100644 --- a/repoman.1 +++ b/repoman.1 @@ -23,6 +23,14 @@ pacman-g2 -S pkg repoman merge pkg pacman-g2 -Ss foo repoman search foo .fi +There is a possibility to alter the result of the merge without editing the +buildscript for some packages. To build the development version of a package, +type: + +.nf +USE_DEVEL=y repoman merge pkg +.fi + .SH USAGE .BR Note: This section is for developers. If you're a user, just skip it. From priyank at frugalware.org Wed Sep 5 08:28:39 2007 From: priyank at frugalware.org (Priyank) Date: Wed Sep 5 08:28:42 2007 Subject: [Frugalware-git] gfpm: gfpm-messages: allow setting message title for different dialogs like (question, input, message, error, etc) Message-ID: <20070905062839.53B3313A41E1@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gfpm.git;a=commitdiff;h=fc855111b2e46bb559c6347f949e94b4d368ca4c commit fc855111b2e46bb559c6347f949e94b4d368ca4c Author: Priyank Date: Wed Sep 5 11:56:47 2007 +0530 gfpm-messages: allow setting message title for different dialogs like (question, input, message, error, etc) diff --git a/data/gfpm.glade b/data/gfpm.glade index 34ffe64..71e2bb1 100644 --- a/data/gfpm.glade +++ b/data/gfpm.glade @@ -629,9 +629,6 @@ Installed packages 2 - - - diff --git a/src/gfpm-interface.c b/src/gfpm-interface.c index 72ac31c..8d03ffe 100644 --- a/src/gfpm-interface.c +++ b/src/gfpm-interface.c @@ -262,12 +262,12 @@ cb_gfpm_apply_btn_clicked (GtkButton *button, gpointer data) if (!gfpm_package_list_is_empty(GFPM_INSTALL_LIST) && !gfpm_package_list_is_empty(GFPM_REMOVE_LIST)) { - gfpm_message (_("No changes to apply.")); + gfpm_message (_("Gfpm"), _("No changes to apply.")); return; } if (gfpm_apply_dlg_show() != GTK_RESPONSE_OK) { - if (gfpm_question(_("Are you sure you want to cancel this operation ? \nNote: All changes made till now will be reverted."))==GTK_RESPONSE_YES) + if (gfpm_question(_("Cancel Operation"), _("Are you sure you want to cancel this operation ? \nNote: All changes made till now will be reverted."))==GTK_RESPONSE_YES) { /* revert all changes */ gfpm_package_list_free (GFPM_INSTALL_LIST); @@ -294,7 +294,7 @@ cb_gfpm_apply_btn_clicked (GtkButton *button, gpointer data) if (pm_errno == PM_ERR_HANDLE_LOCK) errorstr = g_string_append (errorstr, _("If you're sure a package manager is not already running, you can delete /tmp/pacman-g2.lck")); - gfpm_error (errorstr->str); + gfpm_error (_("Error"), errorstr->str); return; } @@ -316,7 +316,7 @@ cb_gfpm_apply_btn_clicked (GtkButton *button, gpointer data) { char *str = g_strdup_printf ("Failed to commit transaction (%s)", pacman_strerror(pm_errno)); errorstr = g_string_append (errorstr, str); - gfpm_error (errorstr->str); + gfpm_error (_("Error"), errorstr->str); g_free (str); g_string_free (errorstr, FALSE); return; @@ -345,7 +345,7 @@ cb_gfpm_apply_btn_clicked (GtkButton *button, gpointer data) if (pm_errno == PM_ERR_HANDLE_LOCK) errorstr = g_string_append (errorstr, _("If you're sure a package manager is not already running, you can delete /tmp/pacman-g2.lck")); - gfpm_error (errorstr->str); + gfpm_error (_("Error"), errorstr->str); return; } @@ -360,14 +360,14 @@ cb_gfpm_apply_btn_clicked (GtkButton *button, gpointer data) if (gfpm_trans_prepare(data) == -1) goto cleanup; pkgs = pacman_trans_getinfo (PM_TRANS_PACKAGES); - if (pkgs == NULL) gfpm_error ("Error getting transaction info"); + if (pkgs == NULL) gfpm_error (_("Error"), "Error getting transaction info"); /* commit transaction */ if (pacman_trans_commit(&data) == -1) { char *str = g_strdup_printf ("Failed to commit transaction (%s)", pacman_strerror(pm_errno)); errorstr = g_string_append (errorstr, str); - gfpm_error (errorstr->str); + gfpm_error (_("Error"), errorstr->str); g_free (str); g_string_free (errorstr, FALSE); return; @@ -865,7 +865,7 @@ gfpm_trans_prepare (PM_LIST *list) GList *pkgs = NULL; gchar *str = NULL; str = g_strdup_printf (_("Failed to prepare transaction (%s)\n"), pacman_strerror (pm_errno)); - gfpm_error (str); + gfpm_error (_("Error"), str); g_free (str); switch ((long)pm_errno) { @@ -896,7 +896,7 @@ gfpm_trans_prepare (PM_LIST *list) g_string_free (depstring, FALSE); } pacman_list_free (list); - gfpm_plist_message (_("Following dependencies were not met. Please install these packages first."), GTK_MESSAGE_WARNING, pkgs); + gfpm_plist_message (_("Missing dependencies"), _("Following dependencies were not met. Please install these packages first."), GTK_MESSAGE_WARNING, pkgs); break; case PM_ERR_CONFLICTING_DEPS: for (i=pacman_list_first(list);i;i=pacman_list_next(i)) @@ -908,7 +908,7 @@ gfpm_trans_prepare (PM_LIST *list) g_string_free (depstring, FALSE); } pacman_list_free (list); - gfpm_plist_message (_("This package conflicts with the following packages"), GTK_MESSAGE_WARNING, pkgs); + gfpm_plist_message (_("Package conflict"), _("This package conflicts with the following packages"), GTK_MESSAGE_WARNING, pkgs); break; } return -1; @@ -942,7 +942,7 @@ cb_gfpm_refresh_button_clicked (GtkButton *button, gpointer data) if (strcmp((char*)pacman_pkg_getinfo(pm_lpkg, PM_PKG_VERSION), (char*)pacman_pkg_getinfo(pm_spkg, PM_PKG_VERSION))) { - if (gfpm_question (updatestr) == GTK_RESPONSE_YES) + if (gfpm_question (_("Update pacman-g2"), updatestr) == GTK_RESPONSE_YES) { gfpm_package_list_add (GFPM_INSTALL_LIST, "pacman-g2"); cb_gfpm_apply_btn_clicked (NULL, NULL); @@ -959,7 +959,7 @@ cb_gfpm_refresh_button_clicked (GtkButton *button, gpointer data) if (pm_errno == PM_ERR_HANDLE_LOCK) errorstr = g_string_append (errorstr, _("If you're sure a package manager is not already running, you can delete /tmp/pacman-g2.lck")); - gfpm_error (errorstr->str); + gfpm_error (_("Error"), errorstr->str); return; } if (pacman_trans_sysupgrade()==-1) @@ -974,11 +974,11 @@ cb_gfpm_refresh_button_clicked (GtkButton *button, gpointer data) better way to check this!! */ if (pacman_list_count(packages) <= 0) { - gfpm_message (_("No changes to apply.")); + gfpm_message ("Gfpm", _("No changes to apply.")); goto cleanup; } /* FIXME END */ - if (gfpm_plist_question(_("Following packages will be upgraded. Do you want to continue ?"), gfpm_pmlist_to_glist(packages)) == GTK_RESPONSE_YES) + if (gfpm_plist_question(_("Package upgrade"), _("Following packages will be upgraded. Do you want to continue ?"), gfpm_pmlist_to_glist(packages)) == GTK_RESPONSE_YES) { /* PM_LIST *i = NULL; @@ -1171,7 +1171,7 @@ cb_gfpm_search_keypress (GtkWidget *widget, GdkEventKey *event, gpointer data) if (l == NULL) { gfpm_update_status (_("Search Complete")); - gfpm_error (_("No package found")); + gfpm_error (_("Package not found"), _("No such package found")); return; } icon_yes = gfpm_get_icon (ICON_INSTALLED, 16); @@ -1331,17 +1331,17 @@ cb_gfpm_clear_cache_apply_clicked (GtkButton *button, gpointer data) if (gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(gfpm_clrold_opt)) == TRUE) { - if (gfpm_question(_("Are you sure you want to remove old packages from cache ?")) == GTK_RESPONSE_YES) + if (gfpm_question(_("Clear package cache"), _("Are you sure you want to remove old packages from cache ?")) == GTK_RESPONSE_YES) { while (gtk_events_pending()) gtk_main_iteration (); ret = pacman_sync_cleancache (0); if (!ret) - gfpm_message (_("Finished clearing the cache")); + gfpm_message ("Gfpm", _("Finished clearing the cache")); else { errstr = g_strdup_printf (_("Failed to clean the cache (%s)"), pacman_strerror(pm_errno)); - gfpm_message (errstr); + gfpm_error (_("Error clearing cache"), errstr); g_free (errstr); } } @@ -1349,17 +1349,17 @@ cb_gfpm_clear_cache_apply_clicked (GtkButton *button, gpointer data) } else if (gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(gfpm_clrall_opt)) == TRUE) { - if (gfpm_question(_("Are you sure you want to remove all packages from cache ?")) == GTK_RESPONSE_YES) + if (gfpm_question(_("Clear package cache"), _("Are you sure you want to remove all packages from cache ?")) == GTK_RESPONSE_YES) { while (gtk_events_pending()) gtk_main_iteration (); ret = pacman_sync_cleancache (1); if (!ret) - gfpm_message (_("Finished clearing the cache")); + gfpm_message ("Gfpm", _("Finished clearing the cache")); else { errstr = g_strdup_printf (_("Failed to clean the cache (%s)"), pacman_strerror(pm_errno)); - gfpm_message (errstr); + gfpm_message (_("Error clearing cache"), errstr); g_free (errstr); } } @@ -1381,10 +1381,10 @@ cb_gfpm_install_file_clicked (GtkButton *button, gpointer data) fpm = gtk_file_chooser_get_filename (GTK_FILE_CHOOSER(gfpm_inst_filechooser)); if (fpm == NULL) { - gfpm_error (_("No package selected for install. Please select a package to install.")); + gfpm_error (_("No packages selected"), _("No package selected for install. Please select a package to install.")); return; } - if (gfpm_question(_("Are you sure you want to install this package ?")) != GTK_RESPONSE_YES) + if (gfpm_question(_("Install package"), _("Are you sure you want to install this package ?")) != GTK_RESPONSE_YES) return; if (gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(gfpm_inst_upgcheck))) type = PM_TRANS_TYPE_UPGRADE; @@ -1401,7 +1401,7 @@ cb_gfpm_install_file_clicked (GtkButton *button, gpointer data) if (pm_errno == PM_ERR_HANDLE_LOCK) { errorstr = g_string_append (errorstr, _("If you're sure a package manager is not already running, you can delete /tmp/pacman-g2.lck")); - gfpm_error (errorstr->str); + gfpm_error (_("Error"), errorstr->str); } return; } @@ -1413,13 +1413,13 @@ cb_gfpm_install_file_clicked (GtkButton *button, gpointer data) if (pacman_trans_commit(&trans_data) == -1) { str = g_strdup_printf (_("Failed to commit transaction (%s)\n"), pacman_strerror (pm_errno)); - gfpm_error (str); + gfpm_error (_("Error"), str); g_free (str); goto cleanup; } else { - gfpm_message (_("Package successfully installed")); + gfpm_message ("Gfpm", _("Package successfully installed")); } cleanup: diff --git a/src/gfpm-messages.c b/src/gfpm-messages.c index 1197e62..9c13510 100644 --- a/src/gfpm-messages.c +++ b/src/gfpm-messages.c @@ -221,7 +221,7 @@ gfpm_apply_dlg_show_rem_box (gboolean show) void -gfpm_error (const char *error_str) +gfpm_error (const char *message_title, const char *error_str) { GtkWidget *error_dlg = NULL; @@ -235,6 +235,7 @@ gfpm_error (const char *error_str) "%s", error_str); gtk_window_set_resizable (GTK_WINDOW(error_dlg), FALSE); + gtk_window_set_title (GTK_WINDOW(error_dlg), message_title); gtk_dialog_run (GTK_DIALOG(error_dlg)); gtk_widget_destroy (error_dlg); @@ -242,7 +243,7 @@ gfpm_error (const char *error_str) } void -gfpm_message (const char *message_str) +gfpm_message (const char *message_title, const char *message_str) { GtkWidget *message_dlg; @@ -253,6 +254,7 @@ gfpm_message (const char *message_str) "%s", message_str); gtk_window_set_resizable (GTK_WINDOW(message_dlg), FALSE); + gtk_window_set_title (GTK_WINDOW(message_dlg), message_title); gtk_dialog_run (GTK_DIALOG(message_dlg)); gtk_widget_destroy (message_dlg); @@ -260,7 +262,7 @@ gfpm_message (const char *message_str) } gint -gfpm_question (const char *message_str) +gfpm_question (const char *message_title, const char *message_str) { GtkWidget *dialog; gint ret; @@ -272,6 +274,7 @@ gfpm_question (const char *message_str) "%s", message_str); gtk_window_set_resizable (GTK_WINDOW(dialog), FALSE); + gtk_window_set_title (GTK_WINDOW(dialog), message_title); ret = gtk_dialog_run (GTK_DIALOG(dialog)); gtk_widget_destroy (dialog); @@ -279,7 +282,7 @@ gfpm_question (const char *message_str) } gint -gfpm_plist_question (const char *main_msg, GList *packages) +gfpm_plist_question (const char *message_title, const char *main_msg, GList *packages) { GtkWidget *dialog; GtkListStore *store; @@ -349,6 +352,7 @@ gfpm_plist_question (const char *main_msg, GList *packages) gtk_box_pack_start (GTK_BOX(GTK_DIALOG(dialog)->vbox), GTK_WIDGET(swindow), FALSE, FALSE, 0); gtk_widget_show_all (GTK_DIALOG(dialog)->vbox); gtk_window_set_resizable (GTK_WINDOW(dialog), FALSE); + gtk_window_set_title (GTK_WINDOW(dialog), message_title); ret = gtk_dialog_run (GTK_DIALOG(dialog)); if (ret == GTK_RESPONSE_YES) @@ -394,7 +398,7 @@ cb_gfpm_plist_question_upgrade_toggled (GtkCellRendererToggle *toggle, gchar *pa } void -gfpm_plist_message (const char *main_msg, GtkMessageType type, GList *packages) +gfpm_plist_message (const char *message_title, const char *main_msg, GtkMessageType type, GList *packages) { GtkWidget *dialog; GtkListStore *store; @@ -433,6 +437,7 @@ gfpm_plist_message (const char *main_msg, GtkMessageType type, GList *packages) gtk_box_pack_start (GTK_BOX(GTK_DIALOG(dialog)->vbox), GTK_WIDGET(swindow), FALSE, FALSE, 0); gtk_widget_show_all (GTK_DIALOG(dialog)->vbox); gtk_window_set_resizable (GTK_WINDOW(dialog), FALSE); + gtk_window_set_title (GTK_WINDOW(dialog), message_title); gtk_dialog_run (GTK_DIALOG(dialog)); gtk_widget_destroy (dialog); @@ -487,7 +492,7 @@ cb_gfpm_trans_conv (unsigned char event, void *data1, void *data2, void *data3, (char*)pacman_pkg_getinfo (data1, PM_PKG_NAME), (char*)data3, (char*)pacman_pkg_getinfo (data2, PM_PKG_NAME)); - if (gfpm_question(_(str)) == GTK_RESPONSE_YES) + if (gfpm_question(_("Replace package"), _(str)) == GTK_RESPONSE_YES) *response = 1; else *response = 0; @@ -496,7 +501,7 @@ cb_gfpm_trans_conv (unsigned char event, void *data1, void *data2, void *data3, str = g_strdup_printf ("%s requires %s, but it is IgnorePkg. Install anyway?", (char*)pacman_pkg_getinfo (data1, PM_PKG_NAME), (char*)pacman_pkg_getinfo (data2, PM_PKG_NAME)); - if (gfpm_question(_(str)) == GTK_RESPONSE_YES) + if (gfpm_question("Gfpm", _(str)) == GTK_RESPONSE_YES) *response = 1; else *response = 0; @@ -504,7 +509,7 @@ cb_gfpm_trans_conv (unsigned char event, void *data1, void *data2, void *data3, case PM_TRANS_CONV_REMOVE_HOLDPKG: str = g_strdup_printf ("%s is designated as HoldPkg. Remove anyway?", (char*)pacman_pkg_getinfo (data1, PM_PKG_NAME)); - if (gfpm_question(_(str)) == GTK_RESPONSE_YES) + if (gfpm_question("Gfpm", _(str)) == GTK_RESPONSE_YES) *response = 1; else *response = 0; @@ -514,7 +519,7 @@ cb_gfpm_trans_conv (unsigned char event, void *data1, void *data2, void *data3, (char*)data1, (char*)data2, (char*)data2); - if (gfpm_question(_(str)) == GTK_RESPONSE_YES) + if (gfpm_question(_("Conflict"), _(str)) == GTK_RESPONSE_YES) *response = 1; else *response = 0; @@ -523,7 +528,7 @@ cb_gfpm_trans_conv (unsigned char event, void *data1, void *data2, void *data3, str = g_strdup_printf ("%s-%s: local version is newer. Upgrade anyway?", (char*)pacman_pkg_getinfo (data1, PM_PKG_NAME), (char*)pacman_pkg_getinfo (data1, PM_PKG_VERSION)); - if (gfpm_question(_(str)) == GTK_RESPONSE_YES) + if (gfpm_question(_("Local version newer"), _(str)) == GTK_RESPONSE_YES) *response = 1; else *response = 0; @@ -532,7 +537,7 @@ cb_gfpm_trans_conv (unsigned char event, void *data1, void *data2, void *data3, str = g_strdup_printf ("%s-%s: local version is up to date. Upgrade anyway?", (char*)pacman_pkg_getinfo (data1, PM_PKG_NAME), (char*)pacman_pkg_getinfo (data1, PM_PKG_VERSION)); - if (gfpm_question(_(str)) == GTK_RESPONSE_YES) + if (gfpm_question(_("Local version up to date"), _(str)) == GTK_RESPONSE_YES) *response = 1; else *response = 0; @@ -541,7 +546,7 @@ cb_gfpm_trans_conv (unsigned char event, void *data1, void *data2, void *data3, str = g_strdup_printf ("Archive %s is corrupted. Do you want to delete it?", (char*)pacman_pkg_getinfo (data1, PM_PKG_NAME), (char*)pacman_pkg_getinfo (data1, PM_PKG_VERSION)); - if (gfpm_question(_(str)) == GTK_RESPONSE_YES) + if (gfpm_question(_("Package corrupted"), _(str)) == GTK_RESPONSE_YES) *response = 1; else *response = 0; @@ -549,4 +554,4 @@ cb_gfpm_trans_conv (unsigned char event, void *data1, void *data2, void *data3, } return; } - + diff --git a/src/gfpm-messages.h b/src/gfpm-messages.h index 6c3d674..61a617e 100644 --- a/src/gfpm-messages.h +++ b/src/gfpm-messages.h @@ -17,15 +17,15 @@ void gfpm_apply_dlg_show_rem_box (gboolean); void gfpm_apply_dlg_reset (void); void gfpm_apply_dlg_hide (void); -void gfpm_error (const char *); +void gfpm_error (const char *, const char *); -void gfpm_message (const char *); +void gfpm_message (const char *, const char *); -gint gfpm_question (const char *); +gint gfpm_question (const char *, const char *); -gint gfpm_plist_question (const char *, GList *); +gint gfpm_plist_question (const char *, const char *, GList *); -void gfpm_plist_message (const char *, GtkMessageType, GList *); +void gfpm_plist_message (const char *, const char *, GtkMessageType, GList *); char * gfpm_input (const char *, const char *, int *); diff --git a/src/gfpm.c b/src/gfpm.c index 597deea..2b3c11b 100644 --- a/src/gfpm.c +++ b/src/gfpm.c @@ -53,7 +53,7 @@ main (int argc, char *argv[]) if (!xml) { - gfpm_error (_("Failed to initialize interface.")); + gfpm_error (_("Interface initialization failed"), _("Failed to initialize interface.")); return 1; } @@ -61,7 +61,7 @@ main (int argc, char *argv[]) if (pacman_initialize ("/") == -1) { - gfpm_error (_("Failed to initialize libpacman")); + gfpm_error (_("Error initializing libpacman"), _("Failed to initialize libpacman")); return 1; } From priyank at frugalware.org Wed Sep 5 08:29:59 2007 From: priyank at frugalware.org (Priyank) Date: Wed Sep 5 08:29:59 2007 Subject: [Frugalware-git] gfpm: gfpm-about: add credits for artwork designers. Message-ID: <20070905062959.6409013A41E5@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gfpm.git;a=commitdiff;h=474a1cb7b9c127ddecd1005edf885ffc5f77396b commit 474a1cb7b9c127ddecd1005edf885ffc5f77396b Author: Priyank Date: Wed Sep 5 11:58:11 2007 +0530 gfpm-about: add credits for artwork designers. diff --git a/src/gfpm-about.c b/src/gfpm-about.c index 0901d19..8523778 100644 --- a/src/gfpm-about.c +++ b/src/gfpm-about.c @@ -53,6 +53,11 @@ static gchar *authors[] = { "Priyank M. Gosalia ", }; static gchar *translators[] = { NULL }; +static gchar *artists[] = { "Viktor Gondor ", + "Sekkyumu ", + "Priyank Gosalia ", + NULL + }; void gfpm_about (void) { @@ -65,6 +70,7 @@ gfpm_about (void) "comments", _("A graphical package manager for Frugalware Linux."), "license", license, "authors", authors, + "artists", artists, "translator-credits", translators, "website", "http://www.frugalware.org/", "website-label", "http://www.frugalware.org/", From priyank at frugalware.org Wed Sep 5 08:34:51 2007 From: priyank at frugalware.org (Priyank) Date: Wed Sep 5 08:34:53 2007 Subject: [Frugalware-git] gfpm: TODO: (DONE) Rewrite all dialog_* message dialogs to support dialog titles. Message-ID: <20070905063451.7C29113A41E8@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gfpm.git;a=commitdiff;h=4dd09372bec669b5894c725d92e86200d7d2a69d commit 4dd09372bec669b5894c725d92e86200d7d2a69d Author: Priyank Date: Wed Sep 5 12:01:57 2007 +0530 TODO: (DONE) Rewrite all dialog_* message dialogs to support dialog titles. diff --git a/TODO b/TODO index e3953fe..d66395b 100644 --- a/TODO +++ b/TODO @@ -19,13 +19,5 @@ ----- krix ----- - Support for reading repos from pacman conf ------ krix ----- -- Rewrite or redesign all dialog_* callback and window to support dialog titles - can be done such: - foo_dialog_run(char *foobar) -> foo_dialog_run(char *foobar, char *title) - Then we can set up our titles for every dialogs, because now there are tons of - untitled dialogs which looks ugly :) - - Last updated: 2007. aug. 10. 00.02.37 CEST Last updater: Christian Hamar alias kRiX From priyank at frugalware.org Wed Sep 5 08:40:30 2007 From: priyank at frugalware.org (Priyank) Date: Wed Sep 5 08:40:32 2007 Subject: [Frugalware-git] gfpm: gfpm-interface: do not perform two iterations while loading groups treeview. Message-ID: <20070905064030.AFFA513A41EB@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gfpm.git;a=commitdiff;h=1945d508891b2f7a234357a410504d24734c4ac0 commit 1945d508891b2f7a234357a410504d24734c4ac0 Author: Priyank Date: Wed Sep 5 12:09:04 2007 +0530 gfpm-interface: do not perform two iterations while loading groups treeview. diff --git a/src/gfpm-interface.c b/src/gfpm-interface.c index 8d03ffe..5319994 100644 --- a/src/gfpm-interface.c +++ b/src/gfpm-interface.c @@ -426,10 +426,6 @@ gfpm_load_groups_tvw (const char *repo_name) for (l=pacman_db_getgrpcache(db); l; l=pacman_list_next(l)) { - /* FIXME - why we doing iteration twice ?? Maybe just we can remove this one and - put asprintf* line before gfpm_update_status(temp) */ - while (gtk_events_pending()) - gtk_main_iteration (); asprintf (&temp, _("Loading groups ... [%s]"), (char*)pacman_list_getdata(l)); while (gtk_events_pending()) gtk_main_iteration (); From priyank at frugalware.org Wed Sep 5 09:40:18 2007 From: priyank at frugalware.org (Priyank) Date: Wed Sep 5 09:40:20 2007 Subject: [Frugalware-git] gfpm: gfpm-interface: cb_gfpm_refresh_button_clicked() Message-ID: <20070905074018.E0FCD13A41E1@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gfpm.git;a=commitdiff;h=85e88328c17735462459a80732d24b3d6e52fc11 commit 85e88328c17735462459a80732d24b3d6e52fc11 Author: Priyank Date: Wed Sep 5 13:08:57 2007 +0530 gfpm-interface: cb_gfpm_refresh_button_clicked() don't use pacman_list_count() to check if updates are available as this is a bit slower. instead, just check if the list is NULL. diff --git a/src/gfpm-interface.c b/src/gfpm-interface.c index 5319994..043956c 100644 --- a/src/gfpm-interface.c +++ b/src/gfpm-interface.c @@ -966,13 +966,11 @@ cb_gfpm_refresh_button_clicked (GtkButton *button, gpointer data) /* Drop 'no changes to apply' instead of an empty list, if no need to upgrade any package */ - /* FIXME FIX ME FIXME PLS! pacman_list_count() seems a bit slow, need some - better way to check this!! */ - if (pacman_list_count(packages) <= 0) + if (packages == NULL) { gfpm_message ("Gfpm", _("No changes to apply.")); goto cleanup; - } /* FIXME END */ + } if (gfpm_plist_question(_("Package upgrade"), _("Following packages will be upgraded. Do you want to continue ?"), gfpm_pmlist_to_glist(packages)) == GTK_RESPONSE_YES) { From priyank at frugalware.org Wed Sep 5 11:27:09 2007 From: priyank at frugalware.org (Priyank) Date: Wed Sep 5 11:27:11 2007 Subject: [Frugalware-git] gfpm: gfpm Message-ID: <20070905092709.5DBF113A41E1@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gfpm.git;a=commitdiff;h=20b3dd785ee8a3a852f2f2047056f93c7d94a53d commit 20b3dd785ee8a3a852f2f2047056f93c7d94a53d Author: Priyank Date: Wed Sep 5 14:55:42 2007 +0530 gfpm * gfpm can now manage multiple repositories. * repositories are parsed from pacman.conf diff --git a/data/gfpm.glade b/data/gfpm.glade index 71e2bb1..f19190d 100644 --- a/data/gfpm.glade +++ b/data/gfpm.glade @@ -269,8 +269,7 @@ True - All packages -Installed packages + False diff --git a/src/gfpm-db.c b/src/gfpm-db.c index 34ca785..f572737 100644 --- a/src/gfpm-db.c +++ b/src/gfpm-db.c @@ -19,8 +19,7 @@ */ #define _GNU_SOURCE -#define FW_CURRENT "frugalware-current" -#define FW_LOCAL "local" +#define CFG_FILE "/etc/pacman.conf" #include #include "gfpm-db.h" @@ -30,20 +29,39 @@ PM_DB *sync_db = NULL; PM_DB *local_db = NULL; char *repo = NULL; +static GList *dblist = NULL; + +static void _db_callback (char *section, PM_DB *db); int gfpm_db_init (void) { - if (NULL == (sync_db=pacman_db_register(FW_CURRENT))) - return 1; + //if (NULL == (sync_db=pacman_db_register(FW_CURRENT))) + // return 1; if (NULL == (local_db=pacman_db_register(FW_LOCAL))) return 1; - asprintf (&repo, "%s", FW_CURRENT); + //asprintf (&repo, "%s", FW_CURRENT); return 0; } void +gfpm_db_register (const char *dbname) +{ + if (sync_db != NULL); + { + pacman_db_unregister (sync_db); + sync_db = NULL; + g_free (repo); + } + if (strcmp(dbname,"local")) + sync_db = pacman_db_register (dbname); + asprintf (&repo, dbname); + + return; +} + +void gfpm_db_cleanup (void) { pacman_db_unregister (sync_db); @@ -53,3 +71,30 @@ gfpm_db_cleanup (void) return; } +static void +_db_callback (char *section, PM_DB *db) +{ + dblist = g_list_append (dblist, db); + + return; +} + +int +gfpm_db_populate_repolist (void) +{ + /* get the list of usable repositories */ + if (pacman_parse_config (CFG_FILE, _db_callback, "") == -1) + { + printf ("error parsing config file"); + return 1; + } + + return 0; +} + +GList * +gfpm_db_get_repolist (void) +{ + return dblist; +} + diff --git a/src/gfpm-db.h b/src/gfpm-db.h index 73c97b4..0f381d7 100644 --- a/src/gfpm-db.h +++ b/src/gfpm-db.h @@ -8,9 +8,17 @@ #include #include #include +#include +#define FW_CURRENT "frugalware-current" +#define FW_STABLE "frugalware-stable" +#define FW_LOCAL "local" + +void gfpm_db_register (const char *); int gfpm_db_init (void); void gfpm_db_cleanup (void); +int gfpm_db_populate_repolist (void); +GList *gfpm_db_get_repolist (void); #endif diff --git a/src/gfpm-interface.c b/src/gfpm-interface.c index 043956c..39f08e5 100644 --- a/src/gfpm-interface.c +++ b/src/gfpm-interface.c @@ -72,6 +72,7 @@ static GtkWidget *gfpm_apply_inst_depcheck; static GtkWidget *gfpm_apply_inst_dwocheck; static GtkWidget *gfpm_apply_rem_depcheck; +static void gfpm_populate_repos_combobox (GtkComboBox *combo); static void cb_gfpm_repos_combo_changed (GtkComboBox *combo, gpointer data); static void cb_gfpm_groups_tvw_selected (GtkTreeSelection *selection, gpointer data); static void cb_gfpm_pkgs_tvw_selected (GtkTreeSelection *selection, gpointer data); @@ -84,6 +85,32 @@ static void cb_gfpm_clear_cache_apply_clicked (GtkButton *button, gpointer data) static void cb_gfpm_refresh_button_clicked (GtkButton *button, gpointer data); static void cb_gfpm_mark_for_upgrade (GtkButton *button, gpointer data); +static void +gfpm_populate_repos_combobox (GtkComboBox *combo) +{ + GList *rlist = NULL; + GtkListStore *store = NULL; + GtkTreeIter iter; + gint index = -1; + + store = GTK_LIST_STORE (gtk_combo_box_get_model(GTK_COMBO_BOX(combo))); + rlist = gfpm_db_get_repolist (); + for (;rlist != NULL;rlist=rlist->next) + { + char *repo = (char *)pacman_db_getinfo ((PM_DB *)rlist->data, PM_DB_TREENAME); + gtk_list_store_append (store, &iter); + gtk_list_store_set (store, &iter, 0, repo, -1); + if (!strcmp(repo,FW_CURRENT)) + index++; + } + gtk_list_store_append (store, &iter); + gtk_list_store_set (store, &iter, 0, (char*)_("Installed Packages"), -1); + g_signal_connect (G_OBJECT(combo), "changed", G_CALLBACK(cb_gfpm_repos_combo_changed), NULL); + gtk_combo_box_set_active (GTK_COMBO_BOX(combo), index); + + return; +} + void gfpm_interface_init (void) { @@ -116,11 +143,7 @@ gfpm_interface_init (void) gfpm_apply_rem_depcheck = glade_xml_get_widget (xml, "applyremdepcheck"); gfpm_apply_inst_dwocheck = glade_xml_get_widget (xml, "applyinstdwcheck"); - /* Setup repository combobox */ - widget = glade_xml_get_widget (xml, "combobox_repos"); - store = GTK_LIST_STORE(gtk_combo_box_get_model(GTK_COMBO_BOX(widget))); - gtk_combo_box_set_active (GTK_COMBO_BOX(widget), 0); - g_signal_connect (G_OBJECT(widget), "changed", G_CALLBACK(cb_gfpm_repos_combo_changed), NULL); + //g_signal_connect (G_OBJECT(widget), "changed", G_CALLBACK(cb_gfpm_repos_combo_changed), NULL); /* Setup groups treeview */ store = gtk_list_store_new (1, G_TYPE_STRING); @@ -211,6 +234,11 @@ gfpm_interface_init (void) gtk_tree_view_insert_column_with_attributes (GTK_TREE_VIEW(gfpm_info_tvw), -1, "Value", renderer, "text", 1, NULL); gtk_tree_view_set_model (GTK_TREE_VIEW(gfpm_info_tvw), GTK_TREE_MODEL(store)); g_object_set (gfpm_info_tvw, "hover-selection", TRUE, NULL); + + /* Setup repository combobox */ + widget = glade_xml_get_widget (xml, "combobox_repos"); + if (gfpm_db_populate_repolist() == 0) + gfpm_populate_repos_combobox (widget); /* search */ g_signal_connect (G_OBJECT(glade_xml_get_widget(xml, "search_entry1")), "key-release-event", G_CALLBACK(cb_gfpm_search_keypress), NULL); @@ -245,7 +273,6 @@ gfpm_interface_init (void) gfpm_progress_init (); /* load default repo */ - gfpm_load_groups_tvw ("frugalware-current"); gtk_widget_hide (gfpm_splash); gtk_widget_show_all (gfpm_mw); @@ -413,7 +440,7 @@ gfpm_load_groups_tvw (const char *repo_name) PM_DB *db; char *temp; - if (!strcmp(repo_name,"frugalware-current")) + if (strcmp(repo_name,"local")) db = sync_db; else db = local_db; @@ -423,7 +450,6 @@ gfpm_load_groups_tvw (const char *repo_name) model = gtk_tree_view_get_model (GTK_TREE_VIEW(gfpm_groups_tvw)); gtk_list_store_clear (GTK_LIST_STORE(model)); - for (l=pacman_db_getgrpcache(db); l; l=pacman_list_next(l)) { asprintf (&temp, _("Loading groups ... [%s]"), (char*)pacman_list_getdata(l)); @@ -1000,30 +1026,21 @@ cleanup: static void cb_gfpm_repos_combo_changed (GtkComboBox *combo, gpointer data) { - gint index; + gchar *text = NULL; - index = gtk_combo_box_get_active (combo); - switch (index) + text = gtk_combo_box_get_active_text (combo); + if (!strcmp(text, "Installed Packages")) { - case 0: /* frugalware-Current */ - g_free (repo); - asprintf (&repo, "frugalware-current"); - gfpm_load_groups_tvw ("frugalware-current"); - break; - - case 1: /* local */ - g_free (repo); - asprintf (&repo, "local"); - gfpm_load_groups_tvw ("local"); - break; - - default: break; + g_free (text); + text = g_strdup ("local"); } + gfpm_db_register (text); + gfpm_load_groups_tvw (text); + g_free (text); return; } - static void cb_gfpm_groups_tvw_selected (GtkTreeSelection *selection, gpointer data) { From priyank at frugalware.org Wed Sep 5 11:31:23 2007 From: priyank at frugalware.org (Priyank) Date: Wed Sep 5 11:31:25 2007 Subject: [Frugalware-git] gfpm: TODO: (DONE) Support for reading repos from pacman conf Message-ID: <20070905093123.C397313A41E1@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gfpm.git;a=commitdiff;h=9e8f773dd083024f555baf0a591356bda045d1ba commit 9e8f773dd083024f555baf0a591356bda045d1ba Author: Priyank Date: Wed Sep 5 15:00:04 2007 +0530 TODO: (DONE) Support for reading repos from pacman conf diff --git a/TODO b/TODO index d66395b..f3f6ee1 100644 --- a/TODO +++ b/TODO @@ -16,8 +16,5 @@ and check in group treeview function for it. Maybe it is better, because we can deal with custom repos or file based repos too. ------ krix ----- -- Support for reading repos from pacman conf - Last updated: 2007. aug. 10. 00.02.37 CEST Last updater: Christian Hamar alias kRiX From krics at linuxforum.hu Wed Sep 5 11:36:50 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Wed Sep 5 11:36:52 2007 Subject: [Frugalware-git] gfpm: warning fix at pacman_db_register Message-ID: <20070905093650.C141513A41E1@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gfpm.git;a=commitdiff;h=16489ef679911d892e54fd377ac1a4d8537ad2b8 commit 16489ef679911d892e54fd377ac1a4d8537ad2b8 Author: Christian Hamar alias krix Date: Wed Sep 5 11:34:58 2007 +0200 warning fix at pacman_db_register * Cast to (char *) at pacman_db_register(dbname) because dbname is const char * and gcc says warnings :P diff --git a/src/gfpm-db.c b/src/gfpm-db.c index f572737..394dc0a 100644 --- a/src/gfpm-db.c +++ b/src/gfpm-db.c @@ -55,7 +55,7 @@ gfpm_db_register (const char *dbname) g_free (repo); } if (strcmp(dbname,"local")) - sync_db = pacman_db_register (dbname); + sync_db = pacman_db_register ((char*)dbname); asprintf (&repo, dbname); return; From krics at linuxforum.hu Wed Sep 5 11:39:00 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Wed Sep 5 11:39:01 2007 Subject: [Frugalware-git] gfpm: Cast GTK_COMBO_BOX usage at gfpm_populate_repos_combo Message-ID: <20070905093900.1B7A813A41E1@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gfpm.git;a=commitdiff;h=5b2eef8da2577204fd9d141d4b766d3258112b89 commit 5b2eef8da2577204fd9d141d4b766d3258112b89 Author: Christian Hamar alias krix Date: Wed Sep 5 11:37:07 2007 +0200 Cast GTK_COMBO_BOX usage at gfpm_populate_repos_combo * Added GTK_COMBO_BOX(widget) to gfpm_populate_repos_combobox, becaue needed that. diff --git a/src/gfpm-interface.c b/src/gfpm-interface.c index 39f08e5..b0ccaa3 100644 --- a/src/gfpm-interface.c +++ b/src/gfpm-interface.c @@ -238,7 +238,7 @@ gfpm_interface_init (void) /* Setup repository combobox */ widget = glade_xml_get_widget (xml, "combobox_repos"); if (gfpm_db_populate_repolist() == 0) - gfpm_populate_repos_combobox (widget); + gfpm_populate_repos_combobox (GTK_COMBO_BOX(widget)); /* search */ g_signal_connect (G_OBJECT(glade_xml_get_widget(xml, "search_entry1")), "key-release-event", G_CALLBACK(cb_gfpm_search_keypress), NULL); From krics at linuxforum.hu Wed Sep 5 11:42:47 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Wed Sep 5 11:42:47 2007 Subject: [Frugalware-git] gfpm: Added missing declaration of gfpm_trans_prepare Message-ID: <20070905094247.1284A13A41E1@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gfpm.git;a=commitdiff;h=be8a37314db3d570533b415dc8f4bdf487918a6f commit be8a37314db3d570533b415dc8f4bdf487918a6f Author: Christian Hamar alias krix Date: Wed Sep 5 11:40:53 2007 +0200 Added missing declaration of gfpm_trans_prepare * Added missing declaration of gfpm_trans_prepare() * Made it static because no other file use this diff --git a/src/gfpm-interface.c b/src/gfpm-interface.c index b0ccaa3..257a4f5 100644 --- a/src/gfpm-interface.c +++ b/src/gfpm-interface.c @@ -84,6 +84,8 @@ static void cb_gfpm_install_file_clicked (GtkButton *button, gpointer data); static void cb_gfpm_clear_cache_apply_clicked (GtkButton *button, gpointer data); static void cb_gfpm_refresh_button_clicked (GtkButton *button, gpointer data); static void cb_gfpm_mark_for_upgrade (GtkButton *button, gpointer data); +static gint gfpm_trans_prepare (PM_LIST *list); + static void gfpm_populate_repos_combobox (GtkComboBox *combo) @@ -878,7 +880,7 @@ gfpm_load_files_txtvw (const char *pkg_name, gboolean inst) return; } -gint +static gint gfpm_trans_prepare (PM_LIST *list) { if (pacman_trans_prepare(&list)) From krics at linuxforum.hu Wed Sep 5 11:45:03 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Wed Sep 5 11:45:04 2007 Subject: [Frugalware-git] gfpm: Remove PM_PKG_VERSION when Arhive is corrupted Message-ID: <20070905094503.4FF7F13A41E1@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gfpm.git;a=commitdiff;h=178203a2e8d582f6a9badb41b93e7da557243eaf commit 178203a2e8d582f6a9badb41b93e7da557243eaf Author: Christian Hamar alias krix Date: Wed Sep 5 11:43:11 2007 +0200 Remove PM_PKG_VERSION when Arhive is corrupted * We dont need PM_PKG_VERSION when print out that archive is corrupted * FIxes a too many arguments warning. (wondering why this is just a warning) diff --git a/src/gfpm-messages.c b/src/gfpm-messages.c index 9c13510..9f86fff 100644 --- a/src/gfpm-messages.c +++ b/src/gfpm-messages.c @@ -544,8 +544,7 @@ cb_gfpm_trans_conv (unsigned char event, void *data1, void *data2, void *data3, break; case PM_TRANS_CONV_CORRUPTED_PKG: str = g_strdup_printf ("Archive %s is corrupted. Do you want to delete it?", - (char*)pacman_pkg_getinfo (data1, PM_PKG_NAME), - (char*)pacman_pkg_getinfo (data1, PM_PKG_VERSION)); + (char*)pacman_pkg_getinfo (data1, PM_PKG_NAME)); if (gfpm_question(_("Package corrupted"), _(str)) == GTK_RESPONSE_YES) *response = 1; else From priyank at frugalware.org Wed Sep 5 11:45:27 2007 From: priyank at frugalware.org (Priyank) Date: Wed Sep 5 11:45:28 2007 Subject: [Frugalware-git] frugalware-current: tea-17.2.1-1-i686 Message-ID: <20070905094527.1897F13A41E1@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=ce7d5ac06e735eb0ec7245fa178c8baafca1d926 commit ce7d5ac06e735eb0ec7245fa178c8baafca1d926 Author: Priyank Date: Wed Sep 5 15:12:17 2007 +0530 tea-17.2.1-1-i686 * Version bump diff --git a/source/gnome-extra/tea/FrugalBuild b/source/gnome-extra/tea/FrugalBuild index d7a760d..4d8f020 100644 --- a/source/gnome-extra/tea/FrugalBuild +++ b/source/gnome-extra/tea/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: Priyank Gosalia pkgname=tea -pkgver=17.2.0 +pkgver=17.2.1 pkgrel=1 pkgdesc="TEA is a GTK2-based text editor for Linux and *BSD." _F_sourceforge_name=tea-editor @@ -19,7 +19,7 @@ _F_desktop_name=Tea _F_desktop_icon=tea.png _F_desktop_categories="Utility;Editor;" _F_cd_path="$pkgname-$pkgver" -sha1sums=('22b192cfb257ee9461ad3dded0035c1c5bdbf3a7') +sha1sums=('8f4215fbc1edf19358bd782f280869a0c1ed570a') build() { From priyank at frugalware.org Wed Sep 5 11:47:41 2007 From: priyank at frugalware.org (Priyank) Date: Wed Sep 5 11:47:43 2007 Subject: [Frugalware-git] gfpm: TODO: updated Message-ID: <20070905094741.B3C1D13A41E1@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gfpm.git;a=commitdiff;h=83927866910e23893ef057c4e7da4452685d7293 commit 83927866910e23893ef057c4e7da4452685d7293 Author: Priyank Date: Wed Sep 5 15:16:22 2007 +0530 TODO: updated diff --git a/TODO b/TODO index f3f6ee1..472a21f 100644 --- a/TODO +++ b/TODO @@ -16,5 +16,5 @@ and check in group treeview function for it. Maybe it is better, because we can deal with custom repos or file based repos too. -Last updated: 2007. aug. 10. 00.02.37 CEST -Last updater: Christian Hamar alias kRiX +Last updated: Wed Sep 5 15:15:15 IST 2007 +Last updater: Priyank Gosalia From krics at linuxforum.hu Wed Sep 5 11:48:24 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Wed Sep 5 11:48:31 2007 Subject: [Frugalware-git] gfpm: Addition to autoclean.sh Message-ID: <20070905094824.3527413A41E1@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gfpm.git;a=commitdiff;h=c3de5703da54d34419bf5390ddec1f40a2b70aa2 commit c3de5703da54d34419bf5390ddec1f40a2b70aa2 Author: Christian Hamar alias krix Date: Wed Sep 5 11:46:27 2007 +0200 Addition to autoclean.sh * Clean up 16x16, 24x24 dirs too (Makefile's and Makefile.in's) diff --git a/autoclean.sh b/autoclean.sh index 3ad7dc9..543f12d 100644 --- a/autoclean.sh +++ b/autoclean.sh @@ -22,8 +22,8 @@ rm -rf data/Makefile.in rm -rf data/Makefile rm -rf data/icons/Makefile.in rm -rf data/icons/Makefile -rm -rf data/icons/{32x32,128x128,48x48}/Makefile.in -rm -rf data/icons/{32x32,128x128,48x48}/Makefile +rm -rf data/icons/{16x16,24x24,32x32,128x128,48x48}/Makefile.in +rm -rf data/icons/{16x16,24x24,32x32,128x128,48x48}/Makefile rm -rf po/stamp-it rm -rf intltool-{extract,merge,update} rm -rf intltool-{extract,merge,update}.in From priyank at frugalware.org Wed Sep 5 11:50:36 2007 From: priyank at frugalware.org (Priyank) Date: Wed Sep 5 11:50:37 2007 Subject: [Frugalware-git] gfpm: TODO: updated again! Message-ID: <20070905095036.EFFB513A41E1@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gfpm.git;a=commitdiff;h=62ac4d82ab2175ffe1a37c455d2035de48e01adb commit 62ac4d82ab2175ffe1a37c455d2035de48e01adb Author: Priyank Date: Wed Sep 5 15:18:37 2007 +0530 TODO: updated again! diff --git a/TODO b/TODO index 472a21f..bdcee67 100644 --- a/TODO +++ b/TODO @@ -1,7 +1,4 @@ ----- krix ----- -- Check FIXME tags in source and review those - ------ krix ----- - We can create a 'Not installed packages' entry in our combobox. How can be ? Well give for the reponame some like: "frugalware-current-ni" then check for that in treeview group loading function, if reponam is frugalware-current-ni From priyank at frugalware.org Wed Sep 5 11:56:02 2007 From: priyank at frugalware.org (Priyank) Date: Wed Sep 5 11:56:02 2007 Subject: [Frugalware-git] frugalware-current: urlgfe-1.0.1-1-i686 Message-ID: <20070905095602.168A613A41E1@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=d15860d23c3ca2c8cbf90c5b916c108cc01bd9df commit d15860d23c3ca2c8cbf90c5b916c108cc01bd9df Author: Priyank Date: Wed Sep 5 15:24:04 2007 +0530 urlgfe-1.0.1-1-i686 * Version bump diff --git a/source/xapps-extra/urlgfe/FrugalBuild b/source/xapps-extra/urlgfe/FrugalBuild index 54faf96..d7c10b2 100644 --- a/source/xapps-extra/urlgfe/FrugalBuild +++ b/source/xapps-extra/urlgfe/FrugalBuild @@ -15,4 +15,12 @@ groups=('xapps-extra') archs=('i686' 'x86_64') sha1sums=('ae74ed407593b3b8dd26c97479404058b91ad279') +build() +{ + Fcd + Fconf + make mkinstalldirs="../install-sh -d" DESTDIR=$Fdestdir install +} + + # optimization OK From priyank at frugalware.org Wed Sep 5 12:03:17 2007 From: priyank at frugalware.org (Priyank) Date: Wed Sep 5 12:03:19 2007 Subject: [Frugalware-git] frugalware-current: urlgfe-1.0.2-1-i686 Message-ID: <20070905100317.D72A613A41E1@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=c1a0a93f9fe7db9c2e3b2c462bc7c47ebf394f9e commit c1a0a93f9fe7db9c2e3b2c462bc7c47ebf394f9e Author: Priyank Date: Wed Sep 5 15:31:00 2007 +0530 urlgfe-1.0.2-1-i686 * Version bump diff --git a/source/xapps-extra/urlgfe/FrugalBuild b/source/xapps-extra/urlgfe/FrugalBuild index d7c10b2..f12bbed 100644 --- a/source/xapps-extra/urlgfe/FrugalBuild +++ b/source/xapps-extra/urlgfe/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: Priyank Gosalia pkgname=urlgfe -pkgver=1.0.1 +pkgver=1.0.2 pkgrel=1 pkgdesc="urlgfe is a GTK2 based download manager." _F_sourceforge_dirname="urlget" @@ -13,7 +13,7 @@ depends=('gtk+2' 'curl>=7.16.0') options=('scriptlet') groups=('xapps-extra') archs=('i686' 'x86_64') -sha1sums=('ae74ed407593b3b8dd26c97479404058b91ad279') +sha1sums=('6059d0ad957309c36903420da68e204d6323684b') build() { From crazy at frugalware.org Wed Sep 5 12:13:54 2007 From: crazy at frugalware.org (crazy) Date: Wed Sep 5 12:13:56 2007 Subject: [Frugalware-git] frugalware-current: boost-1.34.0-4-i686 Message-ID: <20070905101354.3972F13A41E1@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=2777b36a7cd7fe151f54001ed66e16faecd51769 commit 2777b36a7cd7fe151f54001ed66e16faecd51769 Author: crazy Date: Wed Sep 5 12:11:32 2007 +0200 boost-1.34.0-4-i686 * Fix for CXXFLAGS * added -d2 ( verbose level ) to jam so we see what we build diff --git a/source/devel-extra/boost/FrugalBuild b/source/devel-extra/boost/FrugalBuild index e6207c2..a416ea3 100644 --- a/source/devel-extra/boost/FrugalBuild +++ b/source/devel-extra/boost/FrugalBuild @@ -25,8 +25,9 @@ build() { Fcd Fpatchall + Fsed "-O3" "$CXXFLAGS -fno-strict-aliasing" tools/build/v2/tools/gcc.jam BOOSTJAM="/usr/bin/bjam" - OPTIONS="release debug-symbols=off optimization=off threading=single,multi" + OPTIONS="release debug-symbols=off optimization=speed threading=single,multi -d2" JOBS="$MAKEFLAGS" ${BOOSTJAM} \ From priyank at frugalware.org Wed Sep 5 12:18:34 2007 From: priyank at frugalware.org (Priyank) Date: Wed Sep 5 12:18:35 2007 Subject: [Frugalware-git] gfpm: Gfpm: 1.0.0 Released Message-ID: <20070905101834.D5E1B13A41E1@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gfpm.git;a=commitdiff;h=353e3ae8e849b1e94f180ac5e11265563e7a196b commit 353e3ae8e849b1e94f180ac5e11265563e7a196b Author: Priyank Date: Wed Sep 5 15:47:12 2007 +0530 Gfpm: 1.0.0 Released diff --git a/NEWS b/NEWS index e69de29..5e1fb4b 100644 --- a/NEWS +++ b/NEWS @@ -0,0 +1,3 @@ +VERSION DESCRIPTION +--------------------------------------------------------------------------------------------------------- +1.0.0 (2007-09-05) - Initial Release diff --git a/configure.ac b/configure.ac index 08d90e8..aa2a1e2 100644 --- a/configure.ac +++ b/configure.ac @@ -1,7 +1,7 @@ ENV_CFLAGS=$CFLAGS AC_PREREQ(2.59) -AC_INIT([Gfpm], 0.1, [priyankmg@gmail.com], gfpm) +AC_INIT([Gfpm], 1.0.0, [priyankmg@gmail.com], gfpm) AC_CONFIG_SRCDIR([src/gfpm.c]) AC_LANG(C) AM_CONFIG_HEADER(config.h) From crazy at frugalware.org Wed Sep 5 12:20:25 2007 From: crazy at frugalware.org (crazy) Date: Wed Sep 5 12:20:25 2007 Subject: [Frugalware-git] frugalware-current: libwpd-0.8.11-1-i686 Message-ID: <20070905102025.110D513A41E1@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=68e8e8fb8fdfc90874c3f1327f74f8ab18f28558 commit 68e8e8fb8fdfc90874c3f1327f74f8ab18f28558 Author: crazy Date: Wed Sep 5 12:17:29 2007 +0200 libwpd-0.8.11-1-i686 * Version bump diff --git a/source/xlib/libwpd/FrugalBuild b/source/xlib/libwpd/FrugalBuild index a47e5eb..747cf04 100644 --- a/source/xlib/libwpd/FrugalBuild +++ b/source/xlib/libwpd/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: crazy pkgname=libwpd -pkgver=0.8.10 +pkgver=0.8.11 pkgrel=1 pkgdesc="libwpd is a C++ library designed to help process WordPerfect documents." url="http://libwpd.sourceforge.net/" @@ -12,6 +12,6 @@ _F_sourceforge_prefix='libwpd-' Finclude sourceforge groups=('xlib') archs=('i686' 'x86_64') -sha1sums=('3c68e293b260459ef4b5935f3db6a2dc82b7a285') +sha1sums=('135c7c9b91ec2284616c2dce24401e2f9d7554c6') # optimization OK From crazy at frugalware.org Wed Sep 5 12:22:40 2007 From: crazy at frugalware.org (crazy) Date: Wed Sep 5 12:22:42 2007 Subject: [Frugalware-git] frugalware-current: opencdk-0.6.0-1-i686 Message-ID: <20070905102240.98D8B13A41E1@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=ced031b10e0327ad070c23d9a95a855027658a90 commit ced031b10e0327ad070c23d9a95a855027658a90 Author: crazy Date: Wed Sep 5 12:20:12 2007 +0200 opencdk-0.6.0-1-i686 * Version bump diff --git a/source/lib/opencdk/FrugalBuild b/source/lib/opencdk/FrugalBuild index 33649d6..3c599f3 100644 --- a/source/lib/opencdk/FrugalBuild +++ b/source/lib/opencdk/FrugalBuild @@ -3,7 +3,7 @@ # Contributor: Laszlo Dvornik pkgname=opencdk -pkgver=0.5.9 +pkgver=0.6.0 pkgrel=1 pkgdesc="The Open Crypto Development Kit provides basic parts of the OpenPGP message format" url="http://www.gnu.org/software/gnutls/" @@ -12,6 +12,6 @@ archs=('i686' 'x86_64') depends=('libgcrypt' 'zlib') up2date="lynx -dump ftp://ftp.gnutls.org/pub/gnutls/opencdk|grep 'opencdk-\(.*\).tar.gz$'|sort -n -r|head -n 1|sed 's/.*-\(.*\).t.*/\1/'" source=(ftp://ftp.gnutls.org/pub/gnutls/$pkgname/$pkgname-$pkgver.tar.gz) -sha1sums=('7b4375bf9326d77699687845c10589d409cbd7e3') +sha1sums=('40cffb5482d64a749e627ae7dd047a0c8f63366d') # optimization OK From priyank at frugalware.org Wed Sep 5 12:29:56 2007 From: priyank at frugalware.org (Priyank) Date: Wed Sep 5 12:29:58 2007 Subject: [Frugalware-git] frugalware-current: ristretto-0.3-1-i686 Message-ID: <20070905102956.631A413A41E1@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=b825299464adb7a32c4d0b57aed2695b5e2e2a59 commit b825299464adb7a32c4d0b57aed2695b5e2e2a59 Author: Priyank Date: Wed Sep 5 15:57:34 2007 +0530 ristretto-0.3-1-i686 * Fixed url (Thanks phayz for noticing) diff --git a/source/xfce4/ristretto/FrugalBuild b/source/xfce4/ristretto/FrugalBuild index d75e663..6f4dcac 100644 --- a/source/xfce4/ristretto/FrugalBuild +++ b/source/xfce4/ristretto/FrugalBuild @@ -12,6 +12,7 @@ archs=('i686' 'x86_64') _F_gnome_iconcache="y" _F_xfce_goodies_ext=".tar.gz" Finclude xfce4 gnome-scriptlet +url="http://goodies.xfce.org/projects/applications/ristretto" sha1sums=('019a8ce5c0e0d257283fd6834b5720ac958acf90') # optimization OK From priyank at frugalware.org Wed Sep 5 12:37:19 2007 From: priyank at frugalware.org (Priyank) Date: Wed Sep 5 12:37:20 2007 Subject: [Frugalware-git] frugalware-current: gpodder-0.9.5-1-i686 Message-ID: <20070905103719.1710A13A41E1@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=0695bedec02da83d0018b70484d067c3f02a9cf3 commit 0695bedec02da83d0018b70484d067c3f02a9cf3 Author: Priyank Date: Wed Sep 5 16:04:35 2007 +0530 gpodder-0.9.5-1-i686 * Version bump diff --git a/source/gnome-extra/gpodder/FrugalBuild b/source/gnome-extra/gpodder/FrugalBuild index 2cd3621..763855b 100644 --- a/source/gnome-extra/gpodder/FrugalBuild +++ b/source/gnome-extra/gpodder/FrugalBuild @@ -3,7 +3,7 @@ # Contributor: Devil505 pkgname=gpodder -pkgver=0.9.3 +pkgver=0.9.5 pkgrel=1 pkgdesc="A podcast reciever/catcher." depends=('pygtk' 'pyxml' 'wget' 'python' 'libglade' 'imagemagick') @@ -12,5 +12,5 @@ archs=('i686') Finclude berlios _F_gnome_iconcache="y" Finclude gnome-scriptlet -sha1sums=('f8b7ca3fb873a24044fae2b092bb750e8ec7f340') +sha1sums=('a2fded9f84319b49d503ed93b4bdf594dba68cb0') From priyank at frugalware.org Wed Sep 5 12:42:21 2007 From: priyank at frugalware.org (Priyank) Date: Wed Sep 5 12:42:31 2007 Subject: [Frugalware-git] frugalware-current: pybluez-0.13-1-i686 Message-ID: <20070905104221.CA98E13A41E1@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=0dfb19ee811c6f6d776c9d190636f8fc8e03a105 commit 0dfb19ee811c6f6d776c9d190636f8fc8e03a105 Author: Priyank Date: Wed Sep 5 16:10:00 2007 +0530 pybluez-0.13-1-i686 * Version bump diff --git a/source/lib-extra/pybluez/FrugalBuild b/source/lib-extra/pybluez/FrugalBuild index c50ce0d..f68aca1 100644 --- a/source/lib-extra/pybluez/FrugalBuild +++ b/source/lib-extra/pybluez/FrugalBuild @@ -3,7 +3,7 @@ # Contributor: cs-cam pkgname=pybluez -pkgver=0.12 +pkgver=0.13 pkgrel=1 pkgdesc="Python wrapper for bluez-libs" url="http://org.csail.mit.edu/pybluez" @@ -13,6 +13,6 @@ groups=('lib-extra') archs=('i686' 'x86_64') up2date="lynx -dump http://org.csail.mit.edu/pybluez/download.html | grep -o -m 1 'pybluez-src-[0-9\.]\+[0-9]' | sed 's/pybluez-src-//g'" source=($url/release/pybluez-src-$pkgver.tar.gz) -sha1sums=('8d8cbe973da0b4826e32dc76791a5cdf30424d7b') +sha1sums=('d1ae6e3e8e44f2d456215b980e668c336c991c9e') # optimization OK From crazy at frugalware.org Wed Sep 5 12:46:37 2007 From: crazy at frugalware.org (crazy) Date: Wed Sep 5 12:46:40 2007 Subject: [Frugalware-git] frugalware-current: Revert "opencdk-0.6.0-1-i686" Message-ID: <20070905104637.EE2A113A41E1@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=e3afef1e0f167c73ef887921d097ea34aa6845a3 commit e3afef1e0f167c73ef887921d097ea34aa6845a3 Author: crazy Date: Wed Sep 5 12:41:54 2007 +0200 Revert "opencdk-0.6.0-1-i686" * This reverts commit ced031b10e0327ad070c23d9a95a855027658a90. * damn gnutls does not like this one .. I think voroskoi should * take over opencdk diff --git a/source/lib/opencdk/FrugalBuild b/source/lib/opencdk/FrugalBuild index 3c599f3..33649d6 100644 --- a/source/lib/opencdk/FrugalBuild +++ b/source/lib/opencdk/FrugalBuild @@ -3,7 +3,7 @@ # Contributor: Laszlo Dvornik pkgname=opencdk -pkgver=0.6.0 +pkgver=0.5.9 pkgrel=1 pkgdesc="The Open Crypto Development Kit provides basic parts of the OpenPGP message format" url="http://www.gnu.org/software/gnutls/" @@ -12,6 +12,6 @@ archs=('i686' 'x86_64') depends=('libgcrypt' 'zlib') up2date="lynx -dump ftp://ftp.gnutls.org/pub/gnutls/opencdk|grep 'opencdk-\(.*\).tar.gz$'|sort -n -r|head -n 1|sed 's/.*-\(.*\).t.*/\1/'" source=(ftp://ftp.gnutls.org/pub/gnutls/$pkgname/$pkgname-$pkgver.tar.gz) -sha1sums=('40cffb5482d64a749e627ae7dd047a0c8f63366d') +sha1sums=('7b4375bf9326d77699687845c10589d409cbd7e3') # optimization OK From krics at linuxforum.hu Wed Sep 5 12:48:29 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Wed Sep 5 12:48:29 2007 Subject: [Frugalware-git] gfpm: Added GFPM_RELEASE_NAME to .ac file Message-ID: <20070905104829.250BB13A41E1@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gfpm.git;a=commitdiff;h=25d731156028f84268d2b54c287e783fa08e0aee commit 25d731156028f84268d2b54c287e783fa08e0aee Author: Christian Hamar alias krix Date: Wed Sep 5 12:46:35 2007 +0200 Added GFPM_RELEASE_NAME to .ac file * Ship a GFPM_RELEASE_NAME for gfpm releases - TODO: Need to implement it in About and maybe in main title of app ? diff --git a/configure.ac b/configure.ac index aa2a1e2..0c6dd2b 100644 --- a/configure.ac +++ b/configure.ac @@ -2,6 +2,7 @@ ENV_CFLAGS=$CFLAGS AC_PREREQ(2.59) AC_INIT([Gfpm], 1.0.0, [priyankmg@gmail.com], gfpm) +AC_DEFINE_UNQUOTED([GFPM_RELEASE_NAME], ["fill it"], [Release codenames]) AC_CONFIG_SRCDIR([src/gfpm.c]) AC_LANG(C) AM_CONFIG_HEADER(config.h) @@ -49,6 +50,7 @@ else fi AC_SUBST([GFPM_DEBUG]) +AC_SUBST([GFPM_RELEASE_NAME]) ALL_LINGUAS="" GETTEXT_PACKAGE=gfpm From priyank at frugalware.org Wed Sep 5 13:01:36 2007 From: priyank at frugalware.org (Priyank) Date: Wed Sep 5 13:01:41 2007 Subject: [Frugalware-git] gfpm: gfpm-interface: allow searching for packages in repos other than local and frugalware-current Message-ID: <20070905110137.0562313A41E1@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gfpm.git;a=commitdiff;h=e73a5e0496a7429d6ec33add762a635b1c143b0f commit e73a5e0496a7429d6ec33add762a635b1c143b0f Author: Priyank Date: Wed Sep 5 16:29:12 2007 +0530 gfpm-interface: allow searching for packages in repos other than local and frugalware-current diff --git a/src/gfpm-interface.c b/src/gfpm-interface.c index 257a4f5..c75787f 100644 --- a/src/gfpm-interface.c +++ b/src/gfpm-interface.c @@ -1176,7 +1176,7 @@ cb_gfpm_search_keypress (GtkWidget *widget, GdkEventKey *event, gpointer data) l = pacman_db_search (local_db); r = 0; } - else if (!strcmp("frugalware-current", repo)) + else { l = pacman_db_search (sync_db); r = 1; @@ -1223,7 +1223,7 @@ cb_gfpm_search_keypress (GtkWidget *widget, GdkEventKey *event, gpointer data) gtk_list_store_set (store, &iter, 0, TRUE, 1, (up==FALSE)?icon_yes:icon_up, - 2, (char*)pacman_pkg_getinfo (pm_spkg, PM_PKG_NAME), + 2, (char*)pacman_pkg_getinfo (pm_lpkg, PM_PKG_NAME), 3, (char*)pacman_pkg_getinfo (pm_lpkg, PM_PKG_VERSION), 4, (char*)pacman_pkg_getinfo (pm_spkg, PM_PKG_VERSION), //5, (char*)pacman_pkg_getinfo (pm_lpkg, PM_PKG_DESC), From vmiklos at frugalware.org Wed Sep 5 13:55:41 2007 From: vmiklos at frugalware.org (VMiklos) Date: Wed Sep 5 13:55:43 2007 Subject: [Frugalware-git] ooodev: openoffice.org-2.3oog680_m3-1-x86_64 Message-ID: <20070905115541.1534713A41E1@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=ooodev.git;a=commitdiff;h=fc7faec8b6ab9546dcbb4c22165d3316fbd0c8cd commit fc7faec8b6ab9546dcbb4c22165d3316fbd0c8cd Author: VMiklos Date: Wed Sep 5 13:54:15 2007 +0200 openoffice.org-2.3oog680_m3-1-x86_64 typo: restrict the list of built languages for devel builds again diff --git a/source/xapps/openoffice.org/FrugalBuild b/source/xapps/openoffice.org/FrugalBuild index b246776..f66e27f 100644 --- a/source/xapps/openoffice.org/FrugalBuild +++ b/source/xapps/openoffice.org/FrugalBuild @@ -138,7 +138,7 @@ build() { # Optimize build. export ARCH_FLAGS="$CFLAGS" - if ! [ $USE_DEVEL ]; then + if [ $USE_DEVEL ]; then Fconf --with-lang="en-US de es fr hu" --enable-separate-helpcontent else Fconf --with-lang=ALL From priyank at frugalware.org Wed Sep 5 13:55:47 2007 From: priyank at frugalware.org (Priyank) Date: Wed Sep 5 13:55:54 2007 Subject: [Frugalware-git] gfpm: gfpm Message-ID: <20070905115547.91F3A13A41E4@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gfpm.git;a=commitdiff;h=588c78e855f37d4f76f5a9a9a21e8a05900b0533 commit 588c78e855f37d4f76f5a9a9a21e8a05900b0533 Author: Priyank Date: Wed Sep 5 17:24:01 2007 +0530 gfpm * 1.0.0 Release name - Triton * Added translator credits * Cleanup diff --git a/AUTHORS b/AUTHORS index 105c4a5..1bec763 100644 --- a/AUTHORS +++ b/AUTHORS @@ -4,6 +4,11 @@ Developers * Christian Hamar alias krix * Miklos Nemeth +Translators +=========== +* hu - Vajna Miklos +* fr - Michel Hermier + Artwork ======== * Priyank M. Gosalia diff --git a/configure.ac b/configure.ac index 0c6dd2b..0dda340 100644 --- a/configure.ac +++ b/configure.ac @@ -2,7 +2,7 @@ ENV_CFLAGS=$CFLAGS AC_PREREQ(2.59) AC_INIT([Gfpm], 1.0.0, [priyankmg@gmail.com], gfpm) -AC_DEFINE_UNQUOTED([GFPM_RELEASE_NAME], ["fill it"], [Release codenames]) +AC_DEFINE_UNQUOTED([GFPM_RELEASE_NAME], ["Triton"], [Release codenames]) AC_CONFIG_SRCDIR([src/gfpm.c]) AC_LANG(C) AM_CONFIG_HEADER(config.h) diff --git a/data/gfpm.glade b/data/gfpm.glade index f19190d..68c75f1 100644 --- a/data/gfpm.glade +++ b/data/gfpm.glade @@ -3,7 +3,6 @@ - gfpm - Frugalware Package Manager GTK_WIN_POS_CENTER 740 575 diff --git a/src/gfpm-about.c b/src/gfpm-about.c index 8523778..4e44861 100644 --- a/src/gfpm-about.c +++ b/src/gfpm-about.c @@ -51,7 +51,10 @@ static gchar *authors[] = { "Priyank M. Gosalia ", "Miklos Nemeth ", NULL }; -static gchar *translators[] = { NULL }; +static gchar *translators[] = { "Vajna Miklos (hu)", + "Michel Hermier (fr)", + NULL + }; static gchar *artists[] = { "Viktor Gondor ", "Sekkyumu ", diff --git a/src/gfpm-interface.c b/src/gfpm-interface.c index c75787f..f1db65c 100644 --- a/src/gfpm-interface.c +++ b/src/gfpm-interface.c @@ -129,7 +129,7 @@ gfpm_interface_init (void) while (gtk_events_pending()) gtk_main_iteration (); - sleep (2); + sleep (1); gfpm_groups_tvw = glade_xml_get_widget (xml, "grouptreeview"); gfpm_pkgs_tvw = glade_xml_get_widget (xml, "pkgstreeview"); gfpm_info_tvw = glade_xml_get_widget (xml, "infotreeview"); @@ -145,8 +145,6 @@ gfpm_interface_init (void) gfpm_apply_rem_depcheck = glade_xml_get_widget (xml, "applyremdepcheck"); gfpm_apply_inst_dwocheck = glade_xml_get_widget (xml, "applyinstdwcheck"); - //g_signal_connect (G_OBJECT(widget), "changed", G_CALLBACK(cb_gfpm_repos_combo_changed), NULL); - /* Setup groups treeview */ store = gtk_list_store_new (1, G_TYPE_STRING); renderer = gtk_cell_renderer_text_new (); @@ -209,15 +207,6 @@ gfpm_interface_init (void) gtk_tree_view_column_set_resizable (column, FALSE); gtk_tree_view_append_column (GTK_TREE_VIEW(gfpm_pkgs_tvw), column); - /* - renderer = gtk_cell_renderer_text_new (); - column = gtk_tree_view_column_new_with_attributes (_("Description"), - renderer, - "text", 5, - NULL); - gtk_tree_view_column_set_resizable (column, FALSE); - gtk_tree_view_append_column (GTK_TREE_VIEW(gfpm_pkgs_tvw), column); - */ gtk_tree_view_set_model (GTK_TREE_VIEW(gfpm_pkgs_tvw), GTK_TREE_MODEL(store)); selection = gtk_tree_view_get_selection (GTK_TREE_VIEW(gfpm_pkgs_tvw)); @@ -274,8 +263,10 @@ gfpm_interface_init (void) gfpm_messages_init (); gfpm_progress_init (); - /* load default repo */ gtk_widget_hide (gfpm_splash); + gchar *title = g_strdup_printf ("%s (%s)", PACKAGE_STRING, GFPM_RELEASE_NAME); + gtk_window_set_title (gfpm_mw, title); + g_free (title); gtk_widget_show_all (gfpm_mw); /* unref the glade xml object */ From crazy at frugalware.org Wed Sep 5 13:57:55 2007 From: crazy at frugalware.org (crazy) Date: Wed Sep 5 13:57:56 2007 Subject: [Frugalware-git] frugalware-current: php-5.2.4-1-i686 Message-ID: <20070905115755.0DCD813A41E1@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=24b3286c32764e56d8fa212a456cd67c8cdc907b commit 24b3286c32764e56d8fa212a456cd67c8cdc907b Author: crazy Date: Wed Sep 5 13:52:23 2007 +0200 php-5.2.4-1-i686 * Version bump * killed off some config options are gone in .4 * closes #2383 in -current diff --git a/source/devel/php/CVE-2007-3806.diff b/source/devel/php/CVE-2007-3806.diff deleted file mode 100644 index 5b0e0e7..0000000 --- a/source/devel/php/CVE-2007-3806.diff +++ /dev/null @@ -1,10 +0,0 @@ ---- ext/standard/dir.c.orig 2007-02-25 02:16:23.000000000 +0900 -+++ ext/standard/dir.c -@@ -395,6 +395,7 @@ PHP_FUNCTION(glob) - } - #endif - -+ memset(&globbuf, 0, sizeof(glob_t)); - globbuf.gl_offs = 0; - if (0 != (ret = glob(pattern, flags & GLOB_FLAGMASK, NULL, &globbuf))) { - #ifdef GLOB_NOMATCH diff --git a/source/devel/php/FrugalBuild b/source/devel/php/FrugalBuild index 5bf9ea4..81834bb 100644 --- a/source/devel/php/FrugalBuild +++ b/source/devel/php/FrugalBuild @@ -3,8 +3,8 @@ # Contributor: VMiklos pkgname=php -pkgver=5.2.3 -pkgrel=3 +pkgver=5.2.4 +pkgrel=1 pkgdesc="A widely-used general-purpose scripting language" url="http://www.php.net" backup=(etc/{php.ini,httpd/conf/modules.d/$pkgname.conf}) @@ -16,7 +16,7 @@ groups=('devel') archs=('i686' 'x86_64') up2date="lynx -dump http://www.php.net/downloads.php |grep 'Complete Source Code' -3|sed -n 's/.*P \(.*\)/\1/;2 p'" source=(http://www.php.net/distributions/$pkgname-$pkgver.tar.gz \ - php.ini php.conf README.Frugalware CVE-2007-3806.diff) + php.ini php.conf README.Frugalware) subpkgs=("$pkgname-cgi") suboptions=('nodocs') ## its depends on PHP and the same files are installed etc @@ -29,7 +29,6 @@ build() { ## the php config phpconfig="--with-config-file-path=/etc \ - --enable-mailparse \ --enable-bcmath=shared \ --enable-calendar=shared \ --enable-ftp=shared \ @@ -41,17 +40,12 @@ build() --enable-shmop=shared \ --enable-sysvsem=shared \ --enable-sysvshm=shared \ - --enable-track-vars \ - --enable-trans-sid \ --enable-safe-mode \ --enable-sockets=shared \ --enable-exif \ --enable-sigchild \ --enable-pcntl \ - --enable-memory-limit \ --enable-sysvmsg \ - --enable-yp \ - --enable-dbx \ --enable-mbstring \ --without-db2 \ --without-db3 \ @@ -67,14 +61,11 @@ build() --with-openssl \ --with-gettext \ --with-pear=/usr/share/pear \ - --with-dom \ - --with-dom-xslt \ --with-png-dir=/usr \ --with-regex=php \ --with-zlib \ --with-xsl \ --with-pgsql=shared \ - --with-pgsql-sock=/tmp/pgsql.sock \ --with-mysqli \ --with-curl=/usr/bin \ --with-xmlrpc \ @@ -131,10 +122,9 @@ build() Ffile /etc/php.ini Fln /etc/php.ini /usr/lib/php.ini } -sha1sums=('c2dfab484ce16ebac8f29544641b4690f4b8f034' \ +sha1sums=('20e9c6cd9766eca78f04d4166703d26ee24815e8' \ '9ba6e9430bdba5f6ab2bad15e7cc354d0ea3fd58' \ '0850ef23512a02e8460dc36f08f453d148dcd9df' \ - '40ae88f0721e02a2c75de76be342c51c85bf734d' \ - 'c4bfe3432ccbc2d369269f44d3b70a2afc244452') + '40ae88f0721e02a2c75de76be342c51c85bf734d') # optimization OK From boobaa at frugalware.org Wed Sep 5 14:04:22 2007 From: boobaa at frugalware.org (CSÉCSY László) Date: Wed Sep 5 14:04:24 2007 Subject: [Frugalware-git] frugalware-current: postfix-2.4.5-2-i686 Message-ID: <20070905120422.7732113A41E1@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=9b1f721205c2666953351414b9a40bb9411a3277 commit 9b1f721205c2666953351414b9a40bb9411a3277 Author: CSÉCSY László Date: Wed Sep 5 14:03:52 2007 +0200 postfix-2.4.5-2-i686 clean up the FB a little bit and getting rid of gentoo-like USE_* crap diff --git a/source/network/postfix/FrugalBuild b/source/network/postfix/FrugalBuild index 87ede9c..0035cd2 100644 --- a/source/network/postfix/FrugalBuild +++ b/source/network/postfix/FrugalBuild @@ -6,7 +6,7 @@ pkgname=postfix pkgver=2.4.5 -pkgrel=1 +pkgrel=2 vdaver=2.4.5 pkgdesc="A fast, easy to administer, and secure MTA" url="http://www.postfix.org/" @@ -33,48 +33,11 @@ sha1sums=('dc3616ffd441c23748273527b6693835f3502ad2'\ 'b05736300a01bc6d4d0ca7bb92704de29b68651d'\ '7bc3a9639e64747b49bd862dc7cc326ab3aacd72') -APPLY_PATCH_VDA=${APPLY_PATCH_VDA:-1} -USE_FEATURE_SASL=${USE_FEATURE_SASL:-1} -USE_FEATURE_TLS=${USE_FEATURE_TLS:-1} -USE_BACKEND_MYSQL=${USE_BACKEND_MYSQL:-1} -USE_BACKEND_PGSQL=${USE_BACKEND_PGSQL:-1} -USE_BACKEND_LDAP=${USE_BACKEND_LDAP:-0} - build() { - if [ $USE_BACKEND_MYSQL -eq 1 ]; then - msg "Building with mysql support" - CCARGS="${CCARGS} -DHAS_MYSQL -I /usr/include/mysql " - AUXLIBS="${AUXLIBS} -L/usr/lib/mysql -lmysqlclient " - fi - - if [ $USE_BACKEND_MYSQL -eq 1 ]; then - msg "Building with postgresql support" - CCARGS="${CCARGS} -DHAS_PGSQL -I /usr/include/phsql " - AUXLIBS="${AUXLIBS} -L/usr/lib/pgsql -lpq " - fi - - if [ $USE_FEATURE_SASL -eq 1 ]; then - msg "Building with sasl support" - CCARGS="${CCARGS} -DUSE_SASL_AUTH -DUSE_CYRUS_SASL -I /usr/include/sasl" - AUXLIBS="${AUXLIBS} -L/usr/lib -lm -lz -lsasl2" - fi - - if [ $USE_FEATURE_TLS -eq 1 ]; then - msg "Building with TLS support" - CCARGS="${CCARGS} -DUSE_TLS" - fi - - if [ $USE_BACKEND_LDAP -eq 1 ]; then - msg "Building with LDAP support" - CCARGS="${CCARGS} -DHAS_LDAP" - AUXLIBS="${AUXLIBS} -lldap " - fi - - if [ $APPLY_PATCH_VDA -eq 1 ]; then - Fpatch postfix-$vdaver-vda-ng.patch - fi - + CCARGS="${CCARGS} -DHAS_MYSQL -I /usr/include/mysql -DHAS_PGSQL -I /usr/include/phsql -DUSE_SASL_AUTH -DUSE_CYRUS_SASL -I /usr/include/sasl -DUSE_TLS -DHAS_LDAP" + AUXLIBS="${AUXLIBS} -L/usr/lib/mysql -lmysqlclient -L/usr/lib/pgsql -lpq -L/usr/lib -lm -lz -lsasl2 -lldap" + Fpatch postfix-$vdaver-vda-ng.patch Fcd make CCARGS="${CCARGS}" AUXLIBS="${AUXLIBS}" OPT="${CFLAGS}" makefiles make || return 1 @@ -92,6 +55,4 @@ build() Fln /usr/sbin/sendmail /usr/lib/sendmail } -# vim: ft=sh -# optimalization OK # optimization OK From vmiklos at frugalware.org Wed Sep 5 14:06:55 2007 From: vmiklos at frugalware.org (VMiklos) Date: Wed Sep 5 14:06:58 2007 Subject: [Frugalware-git] frugalware-current: docs/xml/authors: update Message-ID: <20070905120655.B864113A41E1@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=a22ad2fd59cb85da1c4b1bbbe125e670d073ddb9 commit a22ad2fd59cb85da1c4b1bbbe125e670d073ddb9 Author: VMiklos Date: Wed Sep 5 03:28:41 2007 +0200 docs/xml/authors: update - slin no longer maintains packages - mention voroskoi as the security wizard - remove my long list, replace it with 'the rest' diff --git a/docs/xml/authors.xml b/docs/xml/authors.xml index bedae18..6aceadb 100644 --- a/docs/xml/authors.xml +++ b/docs/xml/authors.xml @@ -34,7 +34,6 @@ if you modify this file, be sure it's still valid - xmllint is your friend CzĂśvek, KĂĄroly slin slinky@rei.keni.hu - network category maintainer bug tracking system server hoster @@ -119,10 +118,7 @@ if you modify this file, be sure it's still valid - xmllint is your friend Vajna, MiklĂłs vmiklos vmiklos@frugalware.org - Frugalware core - devel category maintainer - CD/DVD images maintainer - dns, ftp, rsync, mailman admin + the rest Vasas, KrisztiĂĄn @@ -139,7 +135,7 @@ if you modify this file, be sure it's still valid - xmllint is your friend VĂśrĂśskői, AndrĂĄs voroskoi voroskoi@frugalware.org - multimedia category maintainer + security advisories e17 maintainer From vmiklos at frugalware.org Wed Sep 5 14:06:55 2007 From: vmiklos at frugalware.org (VMiklos) Date: Wed Sep 5 14:06:58 2007 Subject: [Frugalware-git] frugalware-current: docs/testsuite: spelling fix Message-ID: <20070905120655.C998613A41E2@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=92e1c0d006bd30a108628cb55dd51b4925615d22 commit 92e1c0d006bd30a108628cb55dd51b4925615d22 Author: VMiklos Date: Wed Sep 5 03:52:08 2007 +0200 docs/testsuite: spelling fix diff --git a/docs/testsuite.txt b/docs/testsuite.txt index fb16a42..6975ea9 100644 --- a/docs/testsuite.txt +++ b/docs/testsuite.txt @@ -27,7 +27,7 @@ name of the test may not be self-expressing. - The tests are called in a `./testname` form, without any argument. This allows you to use various interpreted programming languages (python, bash, -etc). +etc.). - If the test 'passes', there should be no output. This means that there may be a `-v` or `--verbose` option to generate output even if the test passes, From priyank at frugalware.org Wed Sep 5 14:08:16 2007 From: priyank at frugalware.org (Priyank) Date: Wed Sep 5 14:08:18 2007 Subject: [Frugalware-git] gfpm: gfpm: last minute fixes Message-ID: <20070905120816.F2D5413A41E1@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gfpm.git;a=commitdiff;h=8b027400218b708ab5f5be7b16ae757da44cb313 commit 8b027400218b708ab5f5be7b16ae757da44cb313 Author: Priyank Date: Wed Sep 5 17:36:51 2007 +0530 gfpm: last minute fixes diff --git a/NEWS b/NEWS index 5e1fb4b..3f533e3 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,4 @@ -VERSION DESCRIPTION +VERSION DESCRIPTION --------------------------------------------------------------------------------------------------------- -1.0.0 (2007-09-05) - Initial Release +1.0.0 Triton (2007-09-05) - Initial Release + diff --git a/src/gfpm-about.c b/src/gfpm-about.c index 4e44861..7753d68 100644 --- a/src/gfpm-about.c +++ b/src/gfpm-about.c @@ -64,11 +64,12 @@ static gchar *artists[] = { "Viktor Gondor ", void gfpm_about (void) { + gchar *ver = g_strdup_printf ("%s (%s)", VERSION, GFPM_RELEASE_NAME); if (!about_pixbuf) about_pixbuf = gfpm_get_icon ("gfpm", 128); gtk_show_about_dialog (GTK_WINDOW(gfpm_mw), "name", PACKAGE, - "version", VERSION, + "version", ver, "copyright", _("(C) 2006-2007 Frugalware Developer Team (GPL)"), "comments", _("A graphical package manager for Frugalware Linux."), "license", license, @@ -80,6 +81,7 @@ gfpm_about (void) "logo", about_pixbuf, "wrap-license", TRUE, NULL); + g_free (ver); return; } From crazy at frugalware.org Wed Sep 5 14:08:44 2007 From: crazy at frugalware.org (crazy) Date: Wed Sep 5 14:08:45 2007 Subject: [Frugalware-git] frugalware-current: eaccelerator-0.9.5.1-3-i686 Message-ID: <20070905120844.B60B413A41E1@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=e8f799afbecb69db3d102fbd0591fd431c0bc00e commit e8f799afbecb69db3d102fbd0591fd431c0bc00e Author: crazy Date: Wed Sep 5 14:05:51 2007 +0200 eaccelerator-0.9.5.1-3-i686 * rebuild with php * fix signatures diff --git a/source/devel-extra/eaccelerator/FrugalBuild b/source/devel-extra/eaccelerator/FrugalBuild index 898bcc8..cdca061 100644 --- a/source/devel-extra/eaccelerator/FrugalBuild +++ b/source/devel-extra/eaccelerator/FrugalBuild @@ -3,7 +3,7 @@ pkgname=eaccelerator pkgver=0.9.5.1 -pkgrel=2 +pkgrel=3 pkgdesc="PHP accelerator and encoder" url="http://eaccelerator.net/" license="GPL2" @@ -11,10 +11,10 @@ _F_sourceforge_ext=".tar.bz2" Finclude sourceforge up2date="lynx -dump http://eaccelerator.net/wiki | grep ']Release' | tail -n 1 | sed 's/.*Release-\(.*\) -.*/\1/'" source=(http://bart.$pkgname.net/source/$pkgver/$pkgname-$pkgver.tar.bz2 README.Frugalware) -signatures=(http://bart.$pkgname.net/source/$pkgver/$pkgname-$pkgver.tar.bz2.sig '') +signatures=(http://bart.$pkgname.net/source/$pkgver/$pkgname-$pkgver.tar.bz2.asc '') groups=('devel-extra') archs=('i686' 'x86_64') -depends=('php>=5.2.3') +depends=('php>=5.2.4') build() { From priyank at frugalware.org Wed Sep 5 14:16:45 2007 From: priyank at frugalware.org (Priyank) Date: Wed Sep 5 14:16:49 2007 Subject: [Frugalware-git] gfpm: Fix CFLAGS in configure.ac Message-ID: <20070905121645.298F313A41E1@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gfpm.git;a=commitdiff;h=e4ff63d494445f9bf80802a1fa32c2cfbfedf0fd commit e4ff63d494445f9bf80802a1fa32c2cfbfedf0fd Author: Priyank Date: Wed Sep 5 17:45:20 2007 +0530 Fix CFLAGS in configure.ac diff --git a/configure.ac b/configure.ac index 0dda340..f1b1a92 100644 --- a/configure.ac +++ b/configure.ac @@ -16,7 +16,7 @@ AC_HEADER_STDC AC_CHECK_HEADERS([locale.h stdlib.h string.h sys/ioctl.h unistd.h alpm.h]) if test "${GCC}" = "yes" ; then - CFLAGS="${ENV_CFLAGS} -pipe" + CFLAGS="${CFLAGS} -pipe" fi AC_ARG_ENABLE(werror, From boobaa at frugalware.org Wed Sep 5 14:17:13 2007 From: boobaa at frugalware.org (CSÉCSY László) Date: Wed Sep 5 14:17:15 2007 Subject: [Frugalware-git] frugalware-current: wordpress-2.2.2-1-i686 Message-ID: <20070905121713.D61BC13A41E1@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=61fa60101adb7c21cdf22793ffde4fe3afda46eb commit 61fa60101adb7c21cdf22793ffde4fe3afda46eb Author: CSÉCSY LĂĄszlĂł Date: Wed Sep 5 14:16:14 2007 +0200 wordpress-2.2.2-1-i686 version bump closes #2363 in -current diff --git a/source/network-extra/wordpress/FrugalBuild b/source/network-extra/wordpress/FrugalBuild index 93a0042..00d69a0 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.2.1 +pkgver=2.2.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 } # optimization OK - noarch -sha1sums=('9014fe17c1f8913ca89b2e1de67ca9bb4df26bfd') +sha1sums=('2ab690dea011f9addcda18ef6579cdc93b7af3fc') From crazy at frugalware.org Wed Sep 5 14:23:42 2007 From: crazy at frugalware.org (crazy) Date: Wed Sep 5 14:23:44 2007 Subject: [Frugalware-git] frugalware-current: 7zip-4.53-1-i686 Message-ID: <20070905122342.2A2A313A41E1@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=8c8892c3fd8bf42a0f370d7d999a2cfbb0a8ae83 commit 8c8892c3fd8bf42a0f370d7d999a2cfbb0a8ae83 Author: crazy Date: Wed Sep 5 14:20:34 2007 +0200 7zip-4.53-1-i686 * Version bump diff --git a/source/apps-extra/7zip/FrugalBuild b/source/apps-extra/7zip/FrugalBuild index 3e89c00..027153d 100644 --- a/source/apps-extra/7zip/FrugalBuild +++ b/source/apps-extra/7zip/FrugalBuild @@ -3,7 +3,7 @@ # Contributor: Tuxbubling pkgname=7zip -pkgver=4.51 +pkgver=4.53 pkgrel=1 pkgdesc="7-Zip is a file archiver with high compression ratio." _F_sourceforge_name="p7zip" @@ -36,5 +36,5 @@ build() } -sha1sums=('e3708dc69ec44dba554ab15d0cacbc226eae9420') +sha1sums=('5776025e49d14f3148d2a9b5d3d067bb19c6d745') # optimization OK From priyank at frugalware.org Wed Sep 5 14:26:39 2007 From: priyank at frugalware.org (Priyank) Date: Wed Sep 5 14:26:41 2007 Subject: [Frugalware-git] frugalware-current: gfpm-1.0.0-1-i686 Message-ID: <20070905122639.359DE13A41E1@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=99e7310b4180d397826512a33a6dbbe389a99bc6 commit 99e7310b4180d397826512a33a6dbbe389a99bc6 Author: Priyank Date: Wed Sep 5 17:53:54 2007 +0530 gfpm-1.0.0-1-i686 * New package / Initial import diff --git a/source/xapps/gfpm/FrugalBuild b/source/xapps/gfpm/FrugalBuild new file mode 100644 index 0000000..34d54b8 --- /dev/null +++ b/source/xapps/gfpm/FrugalBuild @@ -0,0 +1,19 @@ +# Compiling Time: 0.05 SBU +# Maintainer: Priyank Gosalia + +pkgname=gfpm +pkgver=1.0.0 +pkgrel=1 +pkgdesc="Graphical Frugalware Package Manager" +url="http://ftp.frugalware.org/pub/other/gfpm" +depends=('glib2' 'gtk+2' 'libglade' 'pacman-g2') +makedepends=('pkgconfig' 'intltool') +groups=('xapps') +archs=('i686' 'x86_64') +_F_gnome_iconcache="y" +Finclude gnome-scriptlet +up2date="lynx -dump $url | Flasttar" +source=($url/$pkgname-$pkgver.tar.gz) +signatures=(${source[0]}.asc) + +# optimization OK From crazy at frugalware.org Wed Sep 5 14:31:34 2007 From: crazy at frugalware.org (crazy) Date: Wed Sep 5 14:31:37 2007 Subject: [Frugalware-git] frugalware-current: kiwi-1.9.17-1-i686 Message-ID: <20070905123134.59B0213A41E1@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=f529ca8880aca1d5a2030810a9e779141751832b commit f529ca8880aca1d5a2030810a9e779141751832b Author: crazy Date: Wed Sep 5 14:28:31 2007 +0200 kiwi-1.9.17-1-i686 * Version bump diff --git a/source/xlib-extra/kiwi/FrugalBuild b/source/xlib-extra/kiwi/FrugalBuild index dbe107e..b9de3eb 100644 --- a/source/xlib-extra/kiwi/FrugalBuild +++ b/source/xlib-extra/kiwi/FrugalBuild @@ -3,7 +3,7 @@ # Contributor: BMH1980 pkgname=kiwi -pkgver=1.9.16 +pkgver=1.9.17 pkgrel=1 pkgdesc="A framework for Python applications with graphical user interfaces" url="http://www.async.com.br/projects/kiwi/" @@ -13,4 +13,4 @@ up2date="lynx -dump http://www.async.com.br/projects/kiwi/getit.html|grep -m1 'k groups=('xlib-extra') archs=('i686' 'x86_64') depends=('pygtk') -sha1sums=('74eef37ce58267e1006da573004984df540f5bd6') +sha1sums=('b54f7221cc841e0084317fb6b3eb3d1ed986a059') From crazy at frugalware.org Wed Sep 5 14:33:22 2007 From: crazy at frugalware.org (crazy) Date: Wed Sep 5 14:33:24 2007 Subject: [Frugalware-git] frugalware-current: desktop-file-utils-0.14-1-i686 Message-ID: <20070905123322.148D013A41E1@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=8312f1d5bd3494b81c84c9b73153a11d806146e5 commit 8312f1d5bd3494b81c84c9b73153a11d806146e5 Author: crazy Date: Wed Sep 5 14:30:49 2007 +0200 desktop-file-utils-0.14-1-i686 * Version bump * I wonder why this has group 'gnome' ? should be apps ... diff --git a/source/gnome/desktop-file-utils/FrugalBuild b/source/gnome/desktop-file-utils/FrugalBuild index 7ab98fa..33af402 100644 --- a/source/gnome/desktop-file-utils/FrugalBuild +++ b/source/gnome/desktop-file-utils/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: AlexExtreme pkgname=desktop-file-utils -pkgver=0.13 +pkgver=0.14 pkgrel=1 pkgdesc="Utilities for manipulating desktop files" url="http://freedesktop.org/wiki/Software/desktop-file-utils" @@ -11,6 +11,6 @@ groups=('gnome') archs=('i686' 'x86_64') up2date="lynx -dump 'http://freedesktop.org/software/desktop-file-utils/releases/?C=M;O=D'|grep tar.gz$|sed -n 's/.*-\(.*\).t.*/\1/;1 p'" source=(http://freedesktop.org/software/desktop-file-utils/releases/$pkgname-$pkgver.tar.gz) -sha1sums=('b277d503018edf8814f61ec253d29681d2db7a9a') +sha1sums=('2329e2329649f8010e07de0b1181177d7031b23e') # optimization OK From crazy at frugalware.org Wed Sep 5 14:35:55 2007 From: crazy at frugalware.org (crazy) Date: Wed Sep 5 14:35:57 2007 Subject: [Frugalware-git] frugalware-current: xmltv-0.5.48-1-i686 Message-ID: <20070905123555.2D91913A41E1@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=386ad7e16c259101b88e90235c9685e3f61efa3d commit 386ad7e16c259101b88e90235c9685e3f61efa3d Author: crazy Date: Wed Sep 5 14:33:15 2007 +0200 xmltv-0.5.48-1-i686 * Version bump diff --git a/source/apps-extra/xmltv/FrugalBuild b/source/apps-extra/xmltv/FrugalBuild index 8b9e770..f15fef0 100644 --- a/source/apps-extra/xmltv/FrugalBuild +++ b/source/apps-extra/xmltv/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: AlexExtreme pkgname=xmltv -pkgver=0.5.47 +pkgver=0.5.48 pkgrel=1 pkgdesc="XMLTV is a set of programs to process TV (tvguide) listings and manage your TV viewing" _F_sourceforge_ext=".tar.bz2" @@ -13,7 +13,7 @@ depends=('perl-xml' 'perl-xml-twig' 'perl-libwww' 'perl-archive-zip' 'perl-cgi' 'perl-xml-writer' 'perl-unicode-string') groups=('apps-extra') archs=('i686' 'x86_64') -sha1sums=('c29ce6761c089aca21489ef8cb088c3757561895') +sha1sums=('f3bc8b17d7e3fe2c656e34d984edef40d042fb9c') build() { Fcd From boobaa at frugalware.org Wed Sep 5 14:37:40 2007 From: boobaa at frugalware.org (CSÉCSY László) Date: Wed Sep 5 14:37:42 2007 Subject: [Frugalware-git] frugalware-current: hunspell-1.1.12_2-1-i686 Message-ID: <20070905123740.8AC5913A41E1@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=0eedec3cea51622cf2c31ace4d9ba5fc3b391446 commit 0eedec3cea51622cf2c31ace4d9ba5fc3b391446 Author: CSÉCSY LĂĄszlĂł Date: Wed Sep 5 14:21:25 2007 +0200 hunspell-1.1.12_2-1-i686 version bump diff --git a/source/apps-extra/hunspell/FrugalBuild b/source/apps-extra/hunspell/FrugalBuild index 4f947a4..2d43d13 100644 --- a/source/apps-extra/hunspell/FrugalBuild +++ b/source/apps-extra/hunspell/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: CSÉCSY László pkgname=hunspell -pkgver=1.1.11_2 +pkgver=1.1.12_2 pkgrel=1 pkgdesc="An interactive Hungarian spell checker" url="http://hunspell.sourceforge.net/" @@ -16,7 +16,7 @@ up2date="lynx -dump http://hunspell.sourceforge.net/ | grep -m1 'http.*tar\.gz' source=(${source[@]} \ http://forditas.fsf.hu/scripts/huspell \ http://forditas.fsf.hu/scripts/huspell-po) -sha1sums=('5e2092b3b07084e7aaf71bc88d838a832e91b301' \ +sha1sums=('2bd8ff433f5d4d4901fc6592f7f340013017acf5' \ '8beb23bebd6901d64901190f18ce996d5a9e6d4b' \ '69ccc901cb15fbc3d02ce752d74037e1b48ce077') From crazy at frugalware.org Wed Sep 5 14:40:29 2007 From: crazy at frugalware.org (crazy) Date: Wed Sep 5 14:40:32 2007 Subject: [Frugalware-git] frugalware-current: twistedweb-0.7.0-1-i686 Message-ID: <20070905124029.E145113A41E1@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=16e5691b65843f8d13eae49dc687204199e57a7c commit 16e5691b65843f8d13eae49dc687204199e57a7c Author: crazy Date: Wed Sep 5 14:37:46 2007 +0200 twistedweb-0.7.0-1-i686 * Version bump diff --git a/source/devel-extra/twistedweb/FrugalBuild b/source/devel-extra/twistedweb/FrugalBuild index a1919ef..6f4c73a 100644 --- a/source/devel-extra/twistedweb/FrugalBuild +++ b/source/devel-extra/twistedweb/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: Miklos Nemeth pkgname=twistedweb -pkgver=0.6.0 +pkgver=0.7.0 pkgrel=1 pkgdesc="Twisted web is a web server, and also provides basic HTTP client support." url="http://twistedmatrix.com/trac/wiki/TwistedProject" @@ -12,4 +12,4 @@ archs=('i686' 'x86_64') up2date="lynx -dump 'http://twistedmatrix.com/trac/wiki/Downloads'|grep 'TwistedWeb-\(.*\).tar.bz2'|Flasttarbz2" source=(http://tmrc.mit.edu/mirror/twisted/Web/${pkgver%.?}/TwistedWeb-$pkgver.tar.bz2) _F_cd_path="TwistedWeb-$pkgver" -sha1sums=('2593bfe51939e5260671a96e396f57e701685788') +sha1sums=('fefc02f5d72e5693e57f5970b6be639af5a31db1') From vmiklos at frugalware.org Wed Sep 5 14:40:51 2007 From: vmiklos at frugalware.org (VMiklos) Date: Wed Sep 5 14:40:53 2007 Subject: [Frugalware-git] bmf: git-1.5.3.1.1.g1e61-1-i686 Message-ID: <20070905124051.DD49313A41E2@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=bmf.git;a=commitdiff;h=b2c1b96caa4bc4a34a2f1642d97b06b234666bfd commit b2c1b96caa4bc4a34a2f1642d97b06b234666bfd Author: VMiklos Date: Wed Sep 5 14:40:36 2007 +0200 git-1.5.3.1.1.g1e61-1-i686 bump to post-1.5.3 diff --git a/source/devel-extra/git/FrugalBuild b/source/devel-extra/git/FrugalBuild index b364bb9..0c71e49 100644 --- a/source/devel-extra/git/FrugalBuild +++ b/source/devel-extra/git/FrugalBuild @@ -1,9 +1,12 @@ # Compiling Time: 0.36 SBU # Maintainer: VMiklos +USE_DEVEL=${USE_DEVEL:-"y"} + pkgname=git -pkgver=1.5.3.rc7.30.g947ad2 -pkgrel=2 +pkgver=1.5.3.1 +Fuse $USE_DEVEL && pkgver=1.5.3.1.1.g1e61 +pkgrel=1 pkgdesc="A fast, scalable, distributed revision control system." url="http://www.kernel.org/pub/software/scm/git/" depends=('curl>=7.16.0' 'openssl') @@ -11,10 +14,11 @@ makedepends=('asciidoc' 'docbook-xsl>=1.73.0-2' 'docbook-xml' 'sgml-common' 'xml groups=('devel-extra') archs=('i686' 'x86_64') up2date="lynx -dump '$url/?C=M;O=D'|grep 'git-[0-9.]*.tar.bz2$'|sed -n 's/.*-\(.*\)\.t.*/\1/;1 p'" -source=(gitweb.modules.d gitweb.conf README.Frugalware) -sha1sums=('c60be6e086241b85b1f0d89db22c24fc21dc6432' \ - '58698ef6cf0dad734e1a1ee5689c0c4d83bf27b5' \ - 'a0aa4b43cfd81b74c28343495bf6c8a2f50adcaa') +if ! Fuse $USE_DEVEL; then + source=($url/$pkgname-$pkgver.tar.bz2) + signatures=(${source[0]}.sign '' '' '') +fi +source=(${source[@]} gitweb.modules.d gitweb.conf README.Frugalware) options=('scriptlet') subpkgs=('gitweb' 'git-gui' 'gitk') @@ -24,22 +28,26 @@ subbackup=('etc/gitweb.conf etc/httpd/conf/modules.d/gitweb.conf' '' '') subgroups=('network-extra' 'xapps-extra' 'xapps-extra') subarchs=('i686 x86_64' 'i686 x86_64' 'i686 x86_64') -_F_scm_type="git" -_F_scm_url="git://git.kernel.org/pub/scm/git/git.git" -Finclude scm +if Fuse $USE_DEVEL; then + _F_scm_type="git" + _F_scm_url="git://git.kernel.org/pub/scm/git/git.git" + Finclude scm +fi build() { - Funpack_scm - Fsed '^\(CFLAGS =\) .*' "\1 $CFLAGS" Makefile - # fix path, we do not put the contrib dir to the documentation folder + if Fuse $USE_DEVEL; then + Funpack_scm + make configure + fi + + # undebianize Fsed 'doc/' '' templates/hooks--post-receive - make configure || return 1 - Fmkdir /usr/bin - Fpatchall + Fsed ' (on debian)' '' templates/hooks--post-receive + Fconf - make ASCIIDOC8=YesPlease ETC_GITCONFIG=/etc/gitconfig all doc || return 1 - Fmakeinstall install-doc ETC_GITCONFIG=/etc/gitconfig + make V=1 CLFAGS="$CFLAGS" ASCIIDOC8=YesPlease ETC_GITCONFIG=/etc/gitconfig all doc || return 1 + Fmakeinstall install-doc ETC_GITCONFIG=/etc/gitconfig mandir=/usr/share/man Ffilerel perl/private-Error.pm /usr/lib/perl5/site_perl/current/Error.pm make -C Documentation WEBDOC_DEST=$Fdestdir/usr/share/doc/$pkgname-$pkgver/html install-webdoc || return 1 Fdocrel Documentation/SubmittingPatches @@ -54,6 +62,7 @@ build() # gitweb Fmkdir /var/www/gitweb + rm gitweb/gitweb.perl cp gitweb/git* $Fdestdir/var/www/gitweb Ffile gitweb.modules.d /etc/httpd/conf/modules.d/gitweb.conf Ffile /etc/gitweb.conf @@ -64,12 +73,12 @@ build() Fsplit git-gui usr/bin/git-{gui,citool} Fsplit git-gui usr/share/git-gui Fsplit git-gui usr/share/man/man1/git-{gui,citool}.1 - Fsplit git-gui usr/share/doc/git-$pkgver/html/git-{gui,citool}.html + Fsplit git-gui usr/share/doc/git-$pkgver/html/git-{gui,citool}.{html,txt} # gitk Fsplit gitk usr/bin/gitk Fsplit gitk usr/share/man/man1/gitk.1 - Fsplit git-gui usr/share/doc/git-$pkgver/html/gitk.html + Fsplit git-gui usr/share/doc/git-$pkgver/html/gitk.{html,txt} } # optimization OK From vmiklos at frugalware.org Wed Sep 5 14:43:24 2007 From: vmiklos at frugalware.org (VMiklos) Date: Wed Sep 5 14:43:29 2007 Subject: [Frugalware-git] frugalware-current: scm.sh: use git checkout after git pull Message-ID: <20070905124324.2960A13A41E1@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=d1f9f7a0b74883946dc58c9a67f1eb57ad24c722 commit d1f9f7a0b74883946dc58c9a67f1eb57ad24c722 Author: VMiklos Date: Wed Sep 5 14:42:19 2007 +0200 scm.sh: use git checkout after git pull diff --git a/source/include/scm.sh b/source/include/scm.sh index ad99ebd..1add83a 100644 --- a/source/include/scm.sh +++ b/source/include/scm.sh @@ -133,7 +133,7 @@ Funpack_scm() elif [ "$_F_scm_type" == "git" ]; then if [ -d $pkgname ]; then cd $pkgname - git pull + git pull && git checkout -f else git clone $_F_scm_url $pkgname || Fdie cd $pkgname From vmiklos at frugalware.org Wed Sep 5 14:43:24 2007 From: vmiklos at frugalware.org (VMiklos) Date: Wed Sep 5 14:43:30 2007 Subject: [Frugalware-git] frugalware-current: git-1.5.3.1-1-i686 Message-ID: <20070905124324.5A40213A41E2@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=dea9b65b7886cb0549b23cca7c8d2da178c919df commit dea9b65b7886cb0549b23cca7c8d2da178c919df Author: VMiklos Date: Wed Sep 5 14:42:43 2007 +0200 git-1.5.3.1-1-i686 generate configure for devel builds diff --git a/source/devel-extra/git/FrugalBuild b/source/devel-extra/git/FrugalBuild index 541fc65..35f2eec 100644 --- a/source/devel-extra/git/FrugalBuild +++ b/source/devel-extra/git/FrugalBuild @@ -36,7 +36,10 @@ fi build() { - Fuse $USE_DEVEL && Funpack_scm + if Fuse $USE_DEVEL; then + Funpack_scm + make configure + fi # undebianize Fsed 'doc/' '' templates/hooks--post-receive From vmiklos at frugalware.org Wed Sep 5 14:46:08 2007 From: vmiklos at frugalware.org (VMiklos) Date: Wed Sep 5 14:46:10 2007 Subject: [Frugalware-git] frugalware-current: openoffice.org-2.2.1-2-i686 Message-ID: <20070905124608.80ECC13A41E1@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=8a5f1400d2a90443b0be07dd339c3e26c3f2dbda commit 8a5f1400d2a90443b0be07dd339c3e26c3f2dbda Author: VMiklos Date: Wed Sep 5 14:46:02 2007 +0200 openoffice.org-2.2.1-2-i686 replace check_option with Fuse diff --git a/source/xapps/openoffice.org/FrugalBuild b/source/xapps/openoffice.org/FrugalBuild index ce9455d..faf37a8 100644 --- a/source/xapps/openoffice.org/FrugalBuild +++ b/source/xapps/openoffice.org/FrugalBuild @@ -2,10 +2,10 @@ # Maintainer: Janny # Contributor: Laszlo Dvornik +USE_DEVEL=${USE_DEVEL:-"n"} + pkgname=openoffice.org -# uncomment this to get a -devel build -#options=('devel') -if [ ! "`check_option DEVEL`" ]; then +if ! Fuse $USE_DEVEL; then upstream=2.2.1 branch=2-2 tree=oof680 @@ -34,7 +34,7 @@ makedepends=('curl' 'intltool' 'tcsh' 'pam-headers' 'firefox' 'apache-ant' 'gcc- 'libbonobo' 'procps' 'openldap' 'mono') groups=('xapps') archs=('i686' 'x86_64') -if [ ! "`check_option DEVEL`" ]; then +if ! Fuse $USE_DEVEL; then up2date="lynx -dump $url |grep version:|sed 's/.*: //'" source=(http://ftp.frugalware.org/pub/other/sources/ooo-build/ooo-build-$branch-$snapshot.tar.bz2 \ http://hu.openoffice.org/source/browse/*checkout*/hu/src/2.2.0/SDF/hu.sdf.bz2 \ @@ -61,7 +61,7 @@ subinstall=("" "$_F_gnome_scriptlet") ooosubpkgs=('de' 'es' 'fr' 'hu') ooosubdescs=('German' 'Spanish' 'French' 'Hungarian') -if [ ! "`check_option DEVEL`" ]; then +if ! Fuse $USE_DEVEL; then ooosubpkgs=(${ooosubpkgs[@]} 'af' 'ar' 'be-BY' 'bg' 'bn' 'bn-BD' 'bn-IN' 'br' 'bs' 'ca' 'cy' 'cs' 'da' 'el' 'en-GB' 'en-ZA' 'eo' 'et' 'eu' 'fi' 'ga' 'gl' 'gu-IN' 'he' 'hi-IN' 'hr' 'it' 'ja' 'km' 'kn-IN' 'ko' 'lo' 'lt' 'lv' 'mk' 'ms' 'nb' 'ne' 'nl' 'nn' 'nr' 'ns' 'pa-IN' 'pl' 'pt' 'pt-BR' 'ru' 'rw' 'sh-YU' 'sk' 'sl' 'sr-CS' 'ss' 'st' 'sv' 'sw' 'sw-TZ' 'sx' 'ta-IN' 'th' 'tn' 'tr' 'ts' 've' 'vi' 'xh' 'zh-CN' 'zh-TW' 'zu' 'fa' 'ku' 'as-IN' 'ml-IN' 'mr-IN' 'or-IN' 'te-IN' 'tg' 'ti-ER' 'uk' 'ur-IN' 'dz') ooosubdescs=(${ooosubdescs[@]} 'Afrikaans' 'Arabic' 'Belarusian' 'Bulgarian' 'Bengali' 'Bengali (Bangladesh)' 'Bengali (India)' 'Breton' 'Bosnian' 'Catalan' 'Welsh' 'Czech' 'Danish' 'Greek' 'English (GB)' 'English (South Africa)' 'Esperanto' 'Estonian' 'Basque' 'Finnish' 'Irish' 'Galician' 'Gujarati' 'Hebrew' 'Hindi' 'Croatian' 'Italian' 'Japanese' 'Khmer (Cambodia)' 'Kannada' 'Korean' 'Lao' 'Lithuanian' 'Latvian' 'Macedonian' 'Malay' 'Norwegian Bokmal' 'Nepali' 'Dutch' 'Norwegian Nynorsk' 'Ndebele, South' 'NorthernSotho/Sepedi' 'Punjabi' 'Polish' 'Portuguese' 'Brazil (Port.)' 'Russian' 'Kinyarwanda' 'Serbian Latin' 'Slovak' 'Slovenian' 'Serbian Cyrillic' 'Swati' 'Sotho' 'Swedish' 'Swahili' 'Swahili ' 'South Georgian' 'Tamil' 'Thai' 'Tswana' 'Turkish' 'Tsonga' 'Venda' 'Vietnamese' 'Xhosa' 'Chinese (simplified)' 'Chinese (traditional)' 'Zulu' 'Persian' 'Kurdish' 'Assamese' 'Malayalam' 'Marathi' 'Oriya' 'Telugu' 'Tajik' 'Tigrinya' 'Ukrainian' 'Urdu' 'Dzongkha') fi @@ -100,7 +100,7 @@ done build() { Fmonoexport - if [ ! "`check_option DEVEL`" ]; then + if ! Fuse $USE_DEVEL; then Fcd ooo-build-${branch//-/.} else Fcd ooo-build @@ -146,7 +146,7 @@ build() { # Optimize build. export ARCH_FLAGS="$CFLAGS" - if [ "`check_option DEVEL`" ]; then + if Fuse $USE_DEVEL; then Fconf --with-lang="en-US de es fr hu" else Fconf --with-lang=ALL From priyank at frugalware.org Wed Sep 5 14:47:33 2007 From: priyank at frugalware.org (Priyank) Date: Wed Sep 5 14:47:34 2007 Subject: [Frugalware-git] frugalware-current: util.sh: allow multiple words in _F_desktop_exec Message-ID: <20070905124733.40B5F13A41E1@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=4311e598787e41c7ebcb701d10dc0902bda19dc7 commit 4311e598787e41c7ebcb701d10dc0902bda19dc7 Author: Priyank Date: Wed Sep 5 18:14:13 2007 +0530 util.sh: allow multiple words in _F_desktop_exec diff --git a/source/include/util.sh b/source/include/util.sh index 50fdd03..721d601 100644 --- a/source/include/util.sh +++ b/source/include/util.sh @@ -884,8 +884,8 @@ Fdesktop2() dicon=$_F_desktop_icon fi - if [ ! -z $_F_desktop_exec ] ; then - dexec=$_F_desktop_exec + if [ ! -z "$_F_desktop_exec" ] ; then + dexec="$_F_desktop_exec" else dexec=$pkgname fi From priyank at frugalware.org Wed Sep 5 14:48:50 2007 From: priyank at frugalware.org (Priyank) Date: Wed Sep 5 14:48:51 2007 Subject: [Frugalware-git] frugalware-current: gfpm-1.0.0-2-i686 Message-ID: <20070905124850.10C4C13A41E1@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=a474379c6b0e872e555ff9962398538ffd1bfd2b commit a474379c6b0e872e555ff9962398538ffd1bfd2b Author: Priyank Date: Wed Sep 5 18:16:38 2007 +0530 gfpm-1.0.0-2-i686 * Rebuild because of broken tarball * Added gfpm.desktop * Added gksu to depends diff --git a/source/xapps/gfpm/FrugalBuild b/source/xapps/gfpm/FrugalBuild index 34d54b8..0e85e72 100644 --- a/source/xapps/gfpm/FrugalBuild +++ b/source/xapps/gfpm/FrugalBuild @@ -3,17 +3,29 @@ pkgname=gfpm pkgver=1.0.0 -pkgrel=1 +pkgrel=2 pkgdesc="Graphical Frugalware Package Manager" url="http://ftp.frugalware.org/pub/other/gfpm" +rodepends=('gksu') depends=('glib2' 'gtk+2' 'libglade' 'pacman-g2') makedepends=('pkgconfig' 'intltool') groups=('xapps') archs=('i686' 'x86_64') _F_gnome_iconcache="y" Finclude gnome-scriptlet +_F_desktop_name="Gfpm" +_F_desktop_icon="gfpm" +_F_desktop_exec="gksu gfpm" +_F_desktop_categories="GTK;System;" up2date="lynx -dump $url | Flasttar" source=($url/$pkgname-$pkgver.tar.gz) signatures=(${source[0]}.asc) +build() +{ + Fbuild + Fbuild_gnome_scriptlet + Fdesktop2 +} + # optimization OK From vmiklos at frugalware.org Wed Sep 5 14:50:00 2007 From: vmiklos at frugalware.org (VMiklos) Date: Wed Sep 5 14:50:03 2007 Subject: [Frugalware-git] ooodev: openoffice.org-2.3oog680_m3-1-i686 Message-ID: <20070905125000.48E0913A41E1@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=ooodev.git;a=commitdiff;h=c4c97d35ad795ae4aae148831ed6801a2758645b commit c4c97d35ad795ae4aae148831ed6801a2758645b Author: VMiklos Date: Wed Sep 5 14:49:54 2007 +0200 openoffice.org-2.3oog680_m3-1-i686 merge in Fuse changes from -current diff --git a/source/xapps/openoffice.org/FrugalBuild b/source/xapps/openoffice.org/FrugalBuild index f66e27f..f1ed602 100644 --- a/source/xapps/openoffice.org/FrugalBuild +++ b/source/xapps/openoffice.org/FrugalBuild @@ -2,9 +2,10 @@ # Maintainer: Janny # Contributor: Laszlo Dvornik -pkgname=openoffice.org USE_DEVEL=${USE_DEVEL:-"y"} -if ! [ $USE_DEVEL ]; then + +pkgname=openoffice.org +if ! Fuse $USE_DEVEL; then upstream=2.2.1 branch=2-2 tree=oof680 @@ -33,7 +34,7 @@ makedepends=('curl' 'intltool' 'tcsh' 'pam-headers' 'firefox' 'apache-ant' 'gcc- 'libbonobo' 'procps' 'openldap' 'mono' 'gperf' 'xulrunner') groups=('xapps') archs=('i686' 'x86_64') -if ! [ $USE_DEVEL ]; then +if ! Fuse $USE_DEVEL; then up2date="lynx -dump $url |grep version:|sed 's/.*: //'" source=(http://ftp.frugalware.org/pub/other/sources/ooo-build/ooo-build-$branch-$snapshot.tar.bz2 \ http://hu.openoffice.org/source/browse/*checkout*/hu/src/2.2.0/SDF/hu.sdf.bz2) @@ -59,7 +60,7 @@ subinstall=("" "$_F_gnome_scriptlet") ooosubpkgs=('de' 'es' 'fr' 'hu') ooosubdescs=('German' 'Spanish' 'French' 'Hungarian') -if ! [ $USE_DEVEL ]; then +if ! Fuse $USE_DEVEL; then ooosubpkgs=(${ooosubpkgs[@]} 'af' 'ar' 'be-BY' 'bg' 'bn' 'bn-BD' 'bn-IN' 'br' 'bs' 'ca' 'cy' 'cs' 'da' 'el' 'en-GB' 'en-ZA' 'eo' 'et' 'eu' 'fi' 'ga' 'gl' 'gu-IN' 'he' 'hi-IN' 'hr' 'it' 'ja' 'km' 'kn-IN' 'ko' 'lo' 'lt' 'lv' 'mk' 'ms' 'nb' 'ne' 'nl' 'nn' 'nr' 'ns' 'pa-IN' 'pl' 'pt' 'pt-BR' 'ru' 'rw' 'sh-YU' 'sk' 'sl' 'sr-CS' 'ss' 'st' 'sv' 'sw' 'sw-TZ' 'sx' 'ta-IN' 'th' 'tn' 'tr' 'ts' 've' 'vi' 'xh' 'zh-CN' 'zh-TW' 'zu' 'fa' 'ku' 'as-IN' 'ml-IN' 'mr-IN' 'or-IN' 'te-IN' 'tg' 'ti-ER' 'uk' 'ur-IN' 'dz') ooosubdescs=(${ooosubdescs[@]} 'Afrikaans' 'Arabic' 'Belarusian' 'Bulgarian' 'Bengali' 'Bengali (Bangladesh)' 'Bengali (India)' 'Breton' 'Bosnian' 'Catalan' 'Welsh' 'Czech' 'Danish' 'Greek' 'English (GB)' 'English (South Africa)' 'Esperanto' 'Estonian' 'Basque' 'Finnish' 'Irish' 'Galician' 'Gujarati' 'Hebrew' 'Hindi' 'Croatian' 'Italian' 'Japanese' 'Khmer (Cambodia)' 'Kannada' 'Korean' 'Lao' 'Lithuanian' 'Latvian' 'Macedonian' 'Malay' 'Norwegian Bokmal' 'Nepali' 'Dutch' 'Norwegian Nynorsk' 'Ndebele, South' 'NorthernSotho/Sepedi' 'Punjabi' 'Polish' 'Portuguese' 'Brazil (Port.)' 'Russian' 'Kinyarwanda' 'Serbian Latin' 'Slovak' 'Slovenian' 'Serbian Cyrillic' 'Swati' 'Sotho' 'Swedish' 'Swahili' 'Swahili ' 'South Georgian' 'Tamil' 'Thai' 'Tswana' 'Turkish' 'Tsonga' 'Venda' 'Vietnamese' 'Xhosa' 'Chinese (simplified)' 'Chinese (traditional)' 'Zulu' 'Persian' 'Kurdish' 'Assamese' 'Malayalam' 'Marathi' 'Oriya' 'Telugu' 'Tajik' 'Tigrinya' 'Ukrainian' 'Urdu' 'Dzongkha') fi @@ -98,7 +99,7 @@ done build() { Fmonoexport - if ! [ $USE_DEVEL ]; then + if ! Fuse $USE_DEVEL; then Fcd ooo-build-${branch//-/.} rm -f patches/src680/fix-invisible-text.diff else @@ -138,7 +139,7 @@ build() { # Optimize build. export ARCH_FLAGS="$CFLAGS" - if [ $USE_DEVEL ]; then + if Fuse $USE_DEVEL; then Fconf --with-lang="en-US de es fr hu" --enable-separate-helpcontent else Fconf --with-lang=ALL From crazy at frugalware.org Wed Sep 5 14:50:57 2007 From: crazy at frugalware.org (crazy) Date: Wed Sep 5 14:50:59 2007 Subject: [Frugalware-git] frugalware-current: azureus-3.0.2.2-1-i686 Message-ID: <20070905125057.8013C13A41E1@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=66b2cc986736b4e675fed127063a5bfe52ed9e19 commit 66b2cc986736b4e675fed127063a5bfe52ed9e19 Author: crazy Date: Wed Sep 5 14:44:21 2007 +0200 azureus-3.0.2.2-1-i686 * Version bump diff --git a/source/xapps-extra/azureus/FrugalBuild b/source/xapps-extra/azureus/FrugalBuild index 49c547c..e039223 100644 --- a/source/xapps-extra/azureus/FrugalBuild +++ b/source/xapps-extra/azureus/FrugalBuild @@ -3,7 +3,7 @@ # Contributor: Shrift pkgname=azureus -pkgver=3.0.2.0 +pkgver=3.0.2.2 pkgrel=1 pkgdesc="A Java BitTorrent Client" rodepends=('gtk+2' 'j2re') @@ -12,9 +12,9 @@ archs=('i686' 'x86_64') _F_sourceforge_prefix=azureus- Finclude sourceforge [ "$CARCH" == "i686" ] && _arch="" && \ - sha1sums=('a27c91da1e091b68a4e5893acbf91638252d9fdb') + sha1sums=('99c70f14b1e4c2a3f94db2929eb2562a985feecb') [ "$CARCH" == "x86_64" ] && _arch=-x86_64 && \ - sha1sums=('50dd5aebfbd43ff720cb7145718372bb124bb31c') + sha1sums=('e221a4f4ecb1f82797e5d18fc961f44df1be8789') source=(${source%az*}/Azureus_$pkgver'_'linux$_arch.tar.bz2 $pkgname.desktop) sha1sums=(${sha1sums[@]} '7fbddde5f38583716cd3868a91064fcb6d1d56c8') From crazy at frugalware.org Wed Sep 5 14:58:39 2007 From: crazy at frugalware.org (crazy) Date: Wed Sep 5 14:58:43 2007 Subject: [Frugalware-git] frugalware-current: twistedwords-0.5.0-1-i686 Message-ID: <20070905125839.9295313A41E1@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=9577195ba79f0098556deaa0fe5c8eeee4d6e9b1 commit 9577195ba79f0098556deaa0fe5c8eeee4d6e9b1 Author: crazy Date: Wed Sep 5 14:55:59 2007 +0200 twistedwords-0.5.0-1-i686 * Version bump diff --git a/source/devel-extra/twistedwords/FrugalBuild b/source/devel-extra/twistedwords/FrugalBuild index a677290..700dcec 100644 --- a/source/devel-extra/twistedwords/FrugalBuild +++ b/source/devel-extra/twistedwords/FrugalBuild @@ -3,8 +3,8 @@ pkgname=twistedwords -pkgver=0.3.0 -pkgrel=2 +pkgver=0.5.0 +pkgrel=1 pkgdesc="Low-level protocol implementations of OSCAR (AIM and ICQ), IRC, MSN, TOC (AIM), Jabber." url="http://twistedmatrix.com/trac/wiki/TwistedProject" depends=('twisted>=2.2.0-2' 'python>=2.5') @@ -21,4 +21,4 @@ build() Frm /usr/bin } -sha1sums=('4877de5acdce885c911280e912ed2d7b6bb8ee07') +sha1sums=('ab4d2c271ba4be1c35446826ccdf9f6d5f17c3f6') From crazy at frugalware.org Wed Sep 5 15:15:23 2007 From: crazy at frugalware.org (crazy) Date: Wed Sep 5 15:15:25 2007 Subject: [Frugalware-git] frugalware-current: libgdiplus-1.2.5-1-i686 Message-ID: <20070905131523.12B9513A41E1@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=557ac9303856892ff4fd4aca3f4e2067a7bdbba8 commit 557ac9303856892ff4fd4aca3f4e2067a7bdbba8 Author: crazy Date: Wed Sep 5 15:12:45 2007 +0200 libgdiplus-1.2.5-1-i686 * Version bump * reworked patch diff --git a/source/xlib/libgdiplus/FrugalBuild b/source/xlib/libgdiplus/FrugalBuild index b19fd5b..0d1fc1d 100644 --- a/source/xlib/libgdiplus/FrugalBuild +++ b/source/xlib/libgdiplus/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: AlexExtreme pkgname=libgdiplus -pkgver=1.2.4 +pkgver=1.2.5 pkgrel=1 pkgdesc="libgdiplus is an implementation of the GDI+ library on Windows" url="http://www.mono-project.com" @@ -20,6 +20,6 @@ build() { Fmakeinstall } -sha1sums=('53498e13ba0756ff1cb8a0b6227044dbc6bb3603'\ - '2e210e98900ccfe006534cb919f1b97836572e5a') +sha1sums=('871e71c59680e602716b41caaa13655d1d55d229' \ + '546aeb7dae60f59b34a3ac0072de5face6f201d1') # optimization OK From priyank at frugalware.org Wed Sep 5 15:16:47 2007 From: priyank at frugalware.org (Priyank) Date: Wed Sep 5 15:16:49 2007 Subject: [Frugalware-git] frugalware-current: gfpm-1.0.0-3-i686 Message-ID: <20070905131647.4106B13A41E1@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=dd3efa73851d1a025a2b9524dcaa3d8e35e8eb9f commit dd3efa73851d1a025a2b9524dcaa3d8e35e8eb9f Author: Priyank Date: Wed Sep 5 18:43:46 2007 +0530 gfpm-1.0.0-3-i686 * Removed dependency on gksu * Added a .desktop for KDE * Something else i forgot diff --git a/source/xapps/gfpm/FrugalBuild b/source/xapps/gfpm/FrugalBuild index 0e85e72..2ed27ca 100644 --- a/source/xapps/gfpm/FrugalBuild +++ b/source/xapps/gfpm/FrugalBuild @@ -3,10 +3,9 @@ pkgname=gfpm pkgver=1.0.0 -pkgrel=2 +pkgrel=3 pkgdesc="Graphical Frugalware Package Manager" url="http://ftp.frugalware.org/pub/other/gfpm" -rodepends=('gksu') depends=('glib2' 'gtk+2' 'libglade' 'pacman-g2') makedepends=('pkgconfig' 'intltool') groups=('xapps') @@ -17,15 +16,20 @@ _F_desktop_name="Gfpm" _F_desktop_icon="gfpm" _F_desktop_exec="gksu gfpm" _F_desktop_categories="GTK;System;" +_F_desktop_onlyshowin="GNOME;XFCE;" up2date="lynx -dump $url | Flasttar" -source=($url/$pkgname-$pkgver.tar.gz) -signatures=(${source[0]}.asc) +source=($url/$pkgname-$pkgver.tar.gz gfpm-kde.desktop) +sha1sums=('2aaaf1633b52391aa298a7debb4580a80eb5fa34' \ + '1d583bd8f54f1804d8c8aa82eb3e599fe8f36d91') +signatures=(${source[0]}.asc '') build() { Fbuild Fbuild_gnome_scriptlet Fdesktop2 + Fmkdir /usr/share/applications/kde + Ffile gfpm-kde.desktop /usr/share/applications/kde/gfpm.desktop } # optimization OK diff --git a/source/xapps/gfpm/gfpm-kde.desktop b/source/xapps/gfpm/gfpm-kde.desktop new file mode 100644 index 0000000..69bcb2f --- /dev/null +++ b/source/xapps/gfpm/gfpm-kde.desktop @@ -0,0 +1,11 @@ +[Desktop Entry] +Encoding=UTF-8 +Name=Gfpm +Comment=Graphical Frugalware Package Manager +Exec=kdesu gfpm +Icon=gfpm.png +Terminal=false +Type=Application +Categories=KDE;Application;System; +OnlyShowIn=KDE + From crazy at frugalware.org Wed Sep 5 15:21:11 2007 From: crazy at frugalware.org (crazy) Date: Wed Sep 5 15:21:13 2007 Subject: [Frugalware-git] frugalware-current: libgdiplus-1.2.5-1-i686 Message-ID: <20070905132111.9085E13A41E1@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=e7dd71d78d9d545c4873d0692b1aeb4a52a0d218 commit e7dd71d78d9d545c4873d0692b1aeb4a52a0d218 Author: crazy Date: Wed Sep 5 15:17:30 2007 +0200 libgdiplus-1.2.5-1-i686 * err wth .. diff --git a/source/xlib/libgdiplus/system-cairo.patch b/source/xlib/libgdiplus/system-cairo.patch index 5f46750..188542f 100644 --- a/source/xlib/libgdiplus/system-cairo.patch +++ b/source/xlib/libgdiplus/system-cairo.patch @@ -65,16 +65,4 @@ diff -ur libgdiplus-1.1.15-old/configure.in libgdiplus-1.1.15/configure.in GDIPLUS_LIBS="$CAIRO_LIBS `pkg-config --libs glib-2.0 ` `pkg-config freetype2 fontconfig --libs`" GDIPLUS_CFLAGS="$CAIRO_CFLAGS `pkg-config --cflags glib-2.0 ` `pkg-config freetype2 fontconfig --cflags`" -diff -ur libgdiplus-1.1.15-old/src/gdip.h libgdiplus-1.1.15/src/gdip.h ---- libgdiplus-1.1.15-old/src/gdip.h 2006-04-14 10:04:54.000000000 -0700 -+++ libgdiplus-1.1.15/src/gdip.h 2006-04-21 18:06:49.000000000 -0700 -@@ -24,7 +24,8 @@ - - #include "config.h" - --#include "pixman.h" -+#include -+typedef uint32_t pixman_bits_t; - - #ifdef USE_INCLUDED_CAIRO - #include + From vmiklos at frugalware.org Wed Sep 5 15:43:56 2007 From: vmiklos at frugalware.org (VMiklos) Date: Wed Sep 5 15:43:58 2007 Subject: [Frugalware-git] frugalware-current: python-2.5.1-5-i686 Message-ID: <20070905134356.0445213A41E1@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=13aa58328c928a6dfbb37888f3b6f97eda6552b9 commit 13aa58328c928a6dfbb37888f3b6f97eda6552b9 Author: VMiklos Date: Wed Sep 5 15:43:36 2007 +0200 python-2.5.1-5-i686 added insecure_pathnames.diff closes #2382 diff --git a/source/devel/python/FrugalBuild b/source/devel/python/FrugalBuild index 162d4e7..510a818 100644 --- a/source/devel/python/FrugalBuild +++ b/source/devel/python/FrugalBuild @@ -4,7 +4,7 @@ pkgname=python pkgver=2.5.1 shortpkgver=2.5 # 2.3 if $pkgver=2.3.4 -pkgrel=4 +pkgrel=5 pkgdesc="A high-level scripting language" url="http://www.python.org" depends=('glibc' 'db>=4.6.18' 'bzip2' 'gdbm' 'openssl' 'glib2') @@ -14,8 +14,9 @@ archs=('i686' 'x86_64' 'ppc') options=('scriptlet') up2date="lynx -dump $url/download/|grep current|sed 's/.*n \(.*\)\. .*/\1/;q'" source=(http://www.python.org/ftp/python/$pkgver/Python-$pkgver.tar.bz2 \ - Python-2.4.1-gdbm-1.patch) -signatures=(http://www.python.org/download/releases/$pkgver/Python-$pkgver.tar.bz2.asc '') + Python-2.4.1-gdbm-1.patch \ + insecure_pathnames.diff) +signatures=($source.asc '' '') subpkgs=("$pkgname-tools") subdescs=("Optional development tools to extending Python") diff --git a/source/devel/python/insecure_pathnames.diff b/source/devel/python/insecure_pathnames.diff new file mode 100644 index 0000000..8af2c3a --- /dev/null +++ b/source/devel/python/insecure_pathnames.diff @@ -0,0 +1,69 @@ +From: http://bugs.python.org/file8339/insecure_pathnames.diff + +Index: Lib/tarfile.py +=================================================================== +--- a/Lib/tarfile.py (revision 57571) ++++ b/Lib/tarfile.py (working copy) +@@ -340,6 +340,9 @@ + class ExtractError(TarError): + """General exception for extract errors.""" + pass ++class SecurityError(ExtractError): ++ """Exception for insecure pathnames.""" ++ pass + class ReadError(TarError): + """Exception for unreadble tar archives.""" + pass +@@ -2006,12 +2009,13 @@ + + self.members.append(tarinfo) + +- def extractall(self, path=".", members=None): ++ def extractall(self, path=".", members=None, check_paths=True): + """Extract all members from the archive to the current working + directory and set owner, modification time and permissions on + directories afterwards. `path' specifies a different directory + to extract to. `members' is optional and must be a subset of the +- list returned by getmembers(). ++ list returned by getmembers(). If `check_paths' is True insecure ++ pathnames are not extracted. + """ + directories = [] + +@@ -2019,6 +2023,20 @@ + members = self + + for tarinfo in members: ++ if check_paths: ++ try: ++ self._check_path(tarinfo.name) ++ if tarinfo.islnk(): ++ self._check_path(tarinfo.linkname) ++ if tarinfo.issym(): ++ self._check_path(os.path.join(tarinfo.name, tarinfo.linkname)) ++ except SecurityError, e: ++ if self.errorlevel > 1: ++ raise ++ else: ++ self._dbg(1, "tarfile: %s" % e) ++ continue ++ + if tarinfo.isdir(): + # Extract directory with a safe mode, so that + # all files below can be extracted as well. +@@ -2329,6 +2347,15 @@ + #-------------------------------------------------------------------------- + # Little helper methods: + ++ def _check_path(self, path): ++ """Raise an SecurityError if `path' is an insecure pathname. ++ """ ++ path = normpath(path) ++ if path.startswith("/"): ++ raise SecurityError("found insecure absolute path %r" % path) ++ if path.startswith("../"): ++ raise SecurityError("found insecure relative path %r" % path) ++ + def _getmember(self, name, tarinfo=None): + """Find an archive member by name from bottom to top. + If tarinfo is given, it is used as the starting point. From priyank at frugalware.org Wed Sep 5 15:47:42 2007 From: priyank at frugalware.org (Priyank) Date: Wed Sep 5 15:47:43 2007 Subject: [Frugalware-git] gfpm: configure.ac: don't append an extra -pipe to CFLAGS Message-ID: <20070905134742.5104113A41E1@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gfpm.git;a=commitdiff;h=551c075bbd5c107587abe0575897379c953f9010 commit 551c075bbd5c107587abe0575897379c953f9010 Author: Priyank Date: Wed Sep 5 19:16:12 2007 +0530 configure.ac: don't append an extra -pipe to CFLAGS diff --git a/configure.ac b/configure.ac index f1b1a92..621f4de 100644 --- a/configure.ac +++ b/configure.ac @@ -15,10 +15,6 @@ AC_PROG_CC(GCC) AC_HEADER_STDC AC_CHECK_HEADERS([locale.h stdlib.h string.h sys/ioctl.h unistd.h alpm.h]) -if test "${GCC}" = "yes" ; then - CFLAGS="${CFLAGS} -pipe" -fi - AC_ARG_ENABLE(werror, AC_HELP_STRING([ --enable-werror], [Enable -Werror usage]), [werror="yes"]) AC_ARG_ENABLE(debug, From priyank at frugalware.org Wed Sep 5 15:54:06 2007 From: priyank at frugalware.org (Priyank) Date: Wed Sep 5 15:54:08 2007 Subject: [Frugalware-git] gfpm: Makevars: s/gnetconfig/gfpm (thx crazy) Message-ID: <20070905135406.CB37F13A41E1@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gfpm.git;a=commitdiff;h=1ba97cd19f56569a287926c6841c1c5168aee93a commit 1ba97cd19f56569a287926c6841c1c5168aee93a Author: Priyank Date: Wed Sep 5 19:22:42 2007 +0530 Makevars: s/gnetconfig/gfpm (thx crazy) diff --git a/po/Makevars b/po/Makevars index 8167502..af70240 100644 --- a/po/Makevars +++ b/po/Makevars @@ -1,7 +1,7 @@ # Makefile variables for PO directory in any package using GNU gettext. # Usually the message domain is the same as the package name. -DOMAIN = gnetconfig +DOMAIN = gfpm # These two variables depend on the location of this directory. subdir = po From priyank at frugalware.org Wed Sep 5 16:03:56 2007 From: priyank at frugalware.org (Priyank) Date: Wed Sep 5 16:03:58 2007 Subject: [Frugalware-git] gfpm: autogen.sh: s/gnetconfig/gfpm :)) Message-ID: <20070905140356.401E113A41E1@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gfpm.git;a=commitdiff;h=2dd29677c5fabd4b3a04a20108ede809bff96bc8 commit 2dd29677c5fabd4b3a04a20108ede809bff96bc8 Author: Priyank Date: Wed Sep 5 19:32:32 2007 +0530 autogen.sh: s/gnetconfig/gfpm :)) diff --git a/autogen.sh b/autogen.sh index f99a8ac..42190f0 100755 --- a/autogen.sh +++ b/autogen.sh @@ -18,8 +18,8 @@ import_pootle() : > po/LINGUAS for i in $(/bin/ls $po_dir/gfpm) do - [ -e $po_dir/gfpm/$i/gnetconfig.po ] || continue - cp $po_dir/gfpm/$i/gnetconfig.po po/$i.po + [ -e $po_dir/gfpm/$i/gfpm.po ] || continue + cp $po_dir/gfpm/$i/gfpm.po po/$i.po if msgfmt -c --statistics -o po/$i.gmo po/$i.po; then echo $i >> po/LINGUAS else From priyank at frugalware.org Wed Sep 5 16:13:50 2007 From: priyank at frugalware.org (Priyank) Date: Wed Sep 5 16:13:52 2007 Subject: [Frugalware-git] gfpm: gfpm: added gfpm.desktop for GNOME/XFCE and KDE Message-ID: <20070905141350.5BF2813A41E1@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gfpm.git;a=commitdiff;h=6cd23c46967ebf025d791da55319dc21a74a5be0 commit 6cd23c46967ebf025d791da55319dc21a74a5be0 Author: Priyank Date: Wed Sep 5 19:42:27 2007 +0530 gfpm: added gfpm.desktop for GNOME/XFCE and KDE diff --git a/data/Makefile.am b/data/Makefile.am index 587b764..83cc419 100644 --- a/data/Makefile.am +++ b/data/Makefile.am @@ -3,5 +3,11 @@ SUBDIRS = icons gladedir = $(datadir)/gfpm glade_DATA = gfpm.glade splash.png +gnomedesktopdir = $(datadir)/applications +gnomedesktop_DATA = gfpm.desktop + +kdedesktopdir = $(datadir)/applications/kde +kdedesktop_DATA = gfpm-kde.desktop + EXTRA_DIST = $(glade_DATA) diff --git a/data/gfpm-kde.desktop b/data/gfpm-kde.desktop new file mode 100644 index 0000000..69bcb2f --- /dev/null +++ b/data/gfpm-kde.desktop @@ -0,0 +1,11 @@ +[Desktop Entry] +Encoding=UTF-8 +Name=Gfpm +Comment=Graphical Frugalware Package Manager +Exec=kdesu gfpm +Icon=gfpm.png +Terminal=false +Type=Application +Categories=KDE;Application;System; +OnlyShowIn=KDE + diff --git a/data/gfpm.desktop b/data/gfpm.desktop new file mode 100644 index 0000000..bdc4bca --- /dev/null +++ b/data/gfpm.desktop @@ -0,0 +1,12 @@ +[Desktop Entry] +Encoding=UTF-8 +Name=Gfpm +Comment=Graphical Frugalware Package Manager +Exec=gksu gfpm +Terminal=false +Type=Application +StartupNotify=true +Icon=gfpm +Categories=Application;GTK;System; +MimeType= +OnlyShowIn=GNOME;XFCE; From crazy at frugalware.org Wed Sep 5 16:18:06 2007 From: crazy at frugalware.org (crazy) Date: Wed Sep 5 16:18:08 2007 Subject: [Frugalware-git] frugalware-current: mono-1.2.5-1-i686 Message-ID: <20070905141806.A622413A41E1@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=77a413015c4523955e3a6df6c00119d30df09dee commit 77a413015c4523955e3a6df6c00119d30df09dee Author: crazy Date: Wed Sep 5 16:05:42 2007 +0200 mono-1.2.5-1-i686 * Version bump * fixed install file * added Fautoreconf for this release diff --git a/source/devel/mono/FrugalBuild b/source/devel/mono/FrugalBuild index 622e2f8..6eb921b 100644 --- a/source/devel/mono/FrugalBuild +++ b/source/devel/mono/FrugalBuild @@ -2,12 +2,12 @@ # Maintainer: AlexExtreme pkgname=mono -pkgver=1.2.4 +pkgver=1.2.5 pkgrel=1 pkgdesc="Mono runtime and class libraries, a C# compiler/interpreter" url="http://www.mono-project.com/" depends=('glib2' 'zlib') -makedepends=('libgdiplus>=1.2.3') +makedepends=('libgdiplus>=1.2.5') rodepends=('libxml2') groups=('devel') archs=('i686' 'x86_64') @@ -15,12 +15,15 @@ Finclude mono up2date="lynx -dump http://www.go-mono.com/sources-stable/|grep -m1 'mono-'|sed 's/.*-\(.*\).t.*/\1/'" source=(http://www.go-mono.com/sources/$pkgname/$pkgname-$pkgver.tar.bz2 rc.mono rc.mono-hu.po) Fconfopts="$Fconfopts --with-tls=__thread --with-libgdiplus=installed" -sha1sums=('b09aaf583f203cd6aaf511fb1f17ed356dbaa586'\ - '143399121fac3d5dc47fb07e8dec4ded182a14bd'\ +sha1sums=('2ca60493d048b9fbef551e26ff00e9dbd4c80b96' \ + '143399121fac3d5dc47fb07e8dec4ded182a14bd' \ '6c19f98462d7bb1ecba79a3ad284ea02a1eac2ec') build() { Fmonoexport + Fcd + libtoolize -c -f || Fdie + Fautoreconf Fbuild Fmonocleanup } diff --git a/source/devel/mono/mono.install b/source/devel/mono/mono.install index e0bff3a..d4d15eb 100644 --- a/source/devel/mono/mono.install +++ b/source/devel/mono/mono.install @@ -1,6 +1,6 @@ post_install() { - if [ -x /usr/sbin/chkconfig ]; then - chkconfig --add rc.mono + if [ -e /usr/sbin/chkconfig ] && [ -x /usr/sbin/chkconfig ]; then + /usr/sbin/chkconfig --add rc.mono fi } @@ -10,8 +10,8 @@ post_upgrade() { pre_remove() { - if [ -x /usr/sbin/chkconfig ]; then - chkconfig --del rc.mono + if [ -e /usr/sbin/chkconfig ] && [ -x /usr/sbin/chkconfig ]; then + /usr/sbin/chkconfig --del rc.mono fi } From crazy at frugalware.org Wed Sep 5 16:30:57 2007 From: crazy at frugalware.org (crazy) Date: Wed Sep 5 16:31:02 2007 Subject: [Frugalware-git] frugalware-current: monodoc-1.2.5-1-i686 Message-ID: <20070905143057.366D413A41E1@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=a2c2f826a20299f540d2d4fa729927f8177a3238 commit a2c2f826a20299f540d2d4fa729927f8177a3238 Author: crazy Date: Wed Sep 5 16:26:09 2007 +0200 monodoc-1.2.5-1-i686 * Version bump diff --git a/source/gnome-extra/monodoc/FrugalBuild b/source/gnome-extra/monodoc/FrugalBuild index c6d90c3..958c102 100644 --- a/source/gnome-extra/monodoc/FrugalBuild +++ b/source/gnome-extra/monodoc/FrugalBuild @@ -2,11 +2,11 @@ # Maintainer: Christian Hamar alias krix pkgname=monodoc -pkgver=1.2.4 +pkgver=1.2.5 pkgrel=1 pkgdesc="Documentation for mono's .Net class library" url="http://www.mono-project.com/" -depends=('gtk2-sharp' 'desktop-file-utils' 'mono>=1.2.4') +depends=('gtk2-sharp' 'desktop-file-utils' 'mono>=1.2.5') makedepends=('pkgconfig') groups=('gnome-extra') archs=('i686' 'x86_64') @@ -14,6 +14,6 @@ options=('scriptlet') Finclude mono up2date="lynx -dump 'http://go-mono.com/sources-stable/'|grep -m1 'monodoc-'|sed 's/.*-\(.*\).zip/\1/'" source=(http://go-mono.com/sources/$pkgname/$pkgname-$pkgver.zip) -sha1sums=('d6891798e1fb43f75d610d3ca53eb9c63af1f85b') +sha1sums=('7cc404a335ad8a8e739c684bc8e6b11751c8083d') unset MAKEFLAGS From vmiklos at frugalware.org Wed Sep 5 16:40:24 2007 From: vmiklos at frugalware.org (VMiklos) Date: Wed Sep 5 16:40:26 2007 Subject: [Frugalware-git] frugalware-current: apache-2.2.4-6-i686 Message-ID: <20070905144024.DB86213A41E1@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=050a1202282827f6fc9af1fe75752b900835f7cd commit 050a1202282827f6fc9af1fe75752b900835f7cd Author: VMiklos Date: Wed Sep 5 16:39:58 2007 +0200 apache-2.2.4-6-i686 added CVE-2007-3847.patch closes #2381 diff --git a/source/network/apache/CVE-2007-3847.patch b/source/network/apache/CVE-2007-3847.patch new file mode 100644 index 0000000..e4a8ea2 --- /dev/null +++ b/source/network/apache/CVE-2007-3847.patch @@ -0,0 +1,86 @@ +--- 2.2.x/modules/proxy/proxy_util.c 2007/07/17 17:12:58 556972 ++++ 2.2.x/modules/proxy/proxy_util.c 2007/08/06 17:27:09 563198 +@@ -280,70 +280,28 @@ + return NULL; + } + +-static const char * const lwday[7] = +-{"Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"}; +- + /* + * If the date is a valid RFC 850 date or asctime() date, then it +- * is converted to the RFC 1123 format, otherwise it is not modified. +- * This routine is not very fast at doing conversions, as it uses +- * sscanf and sprintf. However, if the date is already correctly +- * formatted, then it exits very quickly. ++ * is converted to the RFC 1123 format. + */ + PROXY_DECLARE(const char *) +- ap_proxy_date_canon(apr_pool_t *p, const char *x1) ++ ap_proxy_date_canon(apr_pool_t *p, const char *date) + { +- char *x = apr_pstrdup(p, x1); +- int wk, mday, year, hour, min, sec, mon; +- char *q, month[4], zone[4], week[4]; ++ apr_status_t rv; ++ char* ndate; + +- q = strchr(x, ','); +- /* check for RFC 850 date */ +- if (q != NULL && q - x > 3 && q[1] == ' ') { +- *q = '\0'; +- for (wk = 0; wk < 7; wk++) +- if (strcmp(x, lwday[wk]) == 0) +- break; +- *q = ','; +- if (wk == 7) +- return x; /* not a valid date */ +- if (q[4] != '-' || q[8] != '-' || q[11] != ' ' || q[14] != ':' || +- q[17] != ':' || strcmp(&q[20], " GMT") != 0) +- return x; +- if (sscanf(q + 2, "%u-%3s-%u %u:%u:%u %3s", &mday, month, &year, +- &hour, &min, &sec, zone) != 7) +- return x; +- if (year < 70) +- year += 2000; +- else +- year += 1900; +- } +- else { +-/* check for acstime() date */ +- if (x[3] != ' ' || x[7] != ' ' || x[10] != ' ' || x[13] != ':' || +- x[16] != ':' || x[19] != ' ' || x[24] != '\0') +- return x; +- if (sscanf(x, "%3s %3s %u %u:%u:%u %u", week, month, &mday, &hour, +- &min, &sec, &year) != 7) +- return x; +- for (wk = 0; wk < 7; wk++) +- if (strcmp(week, apr_day_snames[wk]) == 0) +- break; +- if (wk == 7) +- return x; ++ apr_time_t time = apr_date_parse_http(date); ++ if (!time) { ++ return date; + } + +-/* check date */ +- for (mon = 0; mon < 12; mon++) +- if (strcmp(month, apr_month_snames[mon]) == 0) +- break; +- if (mon == 12) +- return x; ++ ndate = apr_palloc(p, APR_RFC822_DATE_LEN); ++ rv = apr_rfc822_date(ndate, time); ++ if (rv != APR_SUCCESS) { ++ return date; ++ } + +- q = apr_palloc(p, 30); +- apr_snprintf(q, 30, "%s, %.2d %s %d %.2d:%.2d:%.2d GMT", apr_day_snames[wk], +- mday, apr_month_snames[mon], year, hour, min, sec); +- return q; ++ return ndate; + } + + PROXY_DECLARE(request_rec *)ap_proxy_make_fake_req(conn_rec *c, request_rec *r) diff --git a/source/network/apache/FrugalBuild b/source/network/apache/FrugalBuild index bd006de..3bc98fa 100644 --- a/source/network/apache/FrugalBuild +++ b/source/network/apache/FrugalBuild @@ -4,7 +4,7 @@ pkgname=apache pkgver=2.2.4 -pkgrel=5 +pkgrel=6 pkgdesc="A high performance Unix-based HTTP server (with SSL)" url="http://httpd.apache.org/" backup=(etc/httpd/conf/{httpd.conf,ssl.conf,ssl.crt/server.crt,ssl.csr/server.csr,ssl.key/server.key} \ @@ -17,8 +17,13 @@ source=(http://www.apache.org/dist/httpd/httpd-$pkgver.tar.gz \ http://ftp.frugalware.org/pub/other/sources/apache/mkcert.tar.gz \ rc.httpd rc.httpd-hu.po httpd.conf ssl.conf \ README.Frugalware index.html http://frugalware.org/images/frugalware.png \ - CVE-2006-5752.patch CVE-2007-1863.patch CVE-2007-3304.patch) -signatures=($source.asc '' '' '' '' '' '' '' '' '' '' '') + CVE-2006-5752.patch CVE-2007-1863.patch CVE-2007-3304.patch \ + CVE-2007-3847.patch) +signatures=($source.asc '' '' '' '' '' '' '' '' '' '' '' '') + +# svn web interface: +# http://svn.apache.org/viewvc/httpd/httpd/branches/2.2.x/ +# use it when you dig for secfixes build() { From crazy at frugalware.org Wed Sep 5 16:43:37 2007 From: crazy at frugalware.org (crazy) Date: Wed Sep 5 16:43:38 2007 Subject: [Frugalware-git] frugalware-current: mono-tools-1.2.4-2-i686 Message-ID: <20070905144337.2C84D13A41E1@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=3aea96a9dca9591ce98b68a8ce2e70f461072335 commit 3aea96a9dca9591ce98b68a8ce2e70f461072335 Author: crazy Date: Wed Sep 5 16:40:52 2007 +0200 mono-tools-1.2.4-2-i686 * rebuild with mono diff --git a/source/gnome-extra/mono-tools/FrugalBuild b/source/gnome-extra/mono-tools/FrugalBuild index f501585..a1cda25 100644 --- a/source/gnome-extra/mono-tools/FrugalBuild +++ b/source/gnome-extra/mono-tools/FrugalBuild @@ -3,10 +3,10 @@ pkgname=mono-tools pkgver=1.2.4 -pkgrel=1 +pkgrel=2 pkgdesc="Mono Tools is a collection of development and testing programs and utilities for use with Mono." url="http://www.mono-project.com/" -depends=('gnome-sharp' 'desktop-file-utils' 'gecko-sharp' 'monodoc>=1.2.4' 'xulrunner') +depends=('gnome-sharp' 'desktop-file-utils' 'gecko-sharp' 'monodoc>=1.2.5' 'xulrunner') makedepends=('pkgconfig') groups=('gnome-extra') archs=('i686' 'x86_64') From crazy at frugalware.org Wed Sep 5 16:59:48 2007 From: crazy at frugalware.org (crazy) Date: Wed Sep 5 16:59:50 2007 Subject: [Frugalware-git] frugalware-current: monodevelop-0.14-4-i686 Message-ID: <20070905145948.C0D2213A41E1@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=67bafe8983f9465935cc1e89157116ec1c1ee157 commit 67bafe8983f9465935cc1e89157116ec1c1ee157 Author: crazy Date: Wed Sep 5 16:56:14 2007 +0200 monodevelop-0.14-4-i686 * rebuild with mono* diff --git a/source/gnome-extra/monodevelop/FrugalBuild b/source/gnome-extra/monodevelop/FrugalBuild index 9ab9308..f762b91 100644 --- a/source/gnome-extra/monodevelop/FrugalBuild +++ b/source/gnome-extra/monodevelop/FrugalBuild @@ -3,10 +3,10 @@ pkgname=monodevelop pkgver=0.14 -pkgrel=3 +pkgrel=4 pkgdesc="A project to port SharpDevelop to Gtk#" url="http://www.mono-project.com/" -depends=('gecko-sharp' 'gtksourceview-sharp' 'shared-mime-info' 'mono-tools' 'firefox=2.0.0.6' 'ikvm' 'boo' 'gnome-sharp') +depends=('gecko-sharp' 'gtksourceview-sharp' 'shared-mime-info' 'mono-tools>=1.2.4-2' 'firefox=2.0.0.6' 'ikvm' 'boo' 'gnome-sharp') makedepends=('intltool') groups=('gnome-extra') archs=('i686' 'x86_64') From priyank at frugalware.org Wed Sep 5 18:28:53 2007 From: priyank at frugalware.org (Priyank) Date: Wed Sep 5 18:28:55 2007 Subject: [Frugalware-git] gfpm: gfpm-progress: whitespace fix Message-ID: <20070905162853.28D4F13A41E1@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gfpm.git;a=commitdiff;h=0bad3214a044bd6c24402877afc1fdf9f4f659c4 commit 0bad3214a044bd6c24402877afc1fdf9f4f659c4 Author: Priyank Date: Wed Sep 5 21:57:10 2007 +0530 gfpm-progress: whitespace fix diff --git a/src/gfpm-progress.c b/src/gfpm-progress.c index 7377e37..53c1399 100644 --- a/src/gfpm-progress.c +++ b/src/gfpm-progress.c @@ -250,7 +250,6 @@ gfpm_progress_event (unsigned char event, void *data1, void *data2) break; case PM_TRANS_EVT_SCRIPTLET_START: substr = g_strdup ((char*)data1); - break; case PM_TRANS_EVT_SCRIPTLET_DONE: substr = g_strdup (_("Done")); From priyank at frugalware.org Wed Sep 5 18:33:22 2007 From: priyank at frugalware.org (Priyank) Date: Wed Sep 5 18:33:24 2007 Subject: [Frugalware-git] gfpm: gfpm: Release 1.0.1 (Bugfix release) Message-ID: <20070905163322.73BEA13A41E1@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gfpm.git;a=commitdiff;h=b16ee20c7e854111d402ca4a91ddce98e2847cc5 commit b16ee20c7e854111d402ca4a91ddce98e2847cc5 Author: Priyank Date: Wed Sep 5 22:01:50 2007 +0530 gfpm: Release 1.0.1 (Bugfix release) diff --git a/NEWS b/NEWS index 3f533e3..7df6c4a 100644 --- a/NEWS +++ b/NEWS @@ -1,4 +1,6 @@ VERSION DESCRIPTION --------------------------------------------------------------------------------------------------------- +1.0.1 - *.po generation fixes + - added gfpm.desktop for KDE and GNOME/XFCE 1.0.0 Triton (2007-09-05) - Initial Release diff --git a/configure.ac b/configure.ac index 621f4de..ce4a288 100644 --- a/configure.ac +++ b/configure.ac @@ -1,7 +1,7 @@ ENV_CFLAGS=$CFLAGS AC_PREREQ(2.59) -AC_INIT([Gfpm], 1.0.0, [priyankmg@gmail.com], gfpm) +AC_INIT([Gfpm], 1.0.1, [priyankmg@gmail.com], gfpm) AC_DEFINE_UNQUOTED([GFPM_RELEASE_NAME], ["Triton"], [Release codenames]) AC_CONFIG_SRCDIR([src/gfpm.c]) AC_LANG(C) From vmiklos at frugalware.org Wed Sep 5 23:05:59 2007 From: vmiklos at frugalware.org (VMiklos) Date: Wed Sep 5 23:06:01 2007 Subject: [Frugalware-git] frugalwareutils: move the gpg part to the release target so that the dist target can be used anywhere Message-ID: <20070905210559.F1FCA13A41E1@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalwareutils.git;a=commitdiff;h=45160b7059c8f67c5d5e195e6e6c1a917b6879e4 commit 45160b7059c8f67c5d5e195e6e6c1a917b6879e4 Author: VMiklos Date: Wed Sep 5 21:47:31 2007 +0200 move the gpg part to the release target so that the dist target can be used anywhere diff --git a/Makefile b/Makefile index 81b7be1..b52729a 100644 --- a/Makefile +++ b/Makefile @@ -60,17 +60,13 @@ dist: make -C frugalwareutils-$(VERSION) prepare tar czf frugalwareutils-$(VERSION).tar.gz frugalwareutils-$(VERSION) rm -rf frugalwareutils-$(VERSION) -ifneq ($(DRY_RUN),1) - gpg --comment "See http://ftp.frugalware.org/pub/README.GPG for info" \ - -ba -u 20F55619 frugalwareutils-$(VERSION).tar.gz - mv frugalwareutils-$(VERSION).tar.gz{,.asc} ../ -else - rm -f frugalwareutils-$(VERSION).tar.gz -endif release: git tag $(VERSION) $(MAKE) dist + gpg --comment "See http://ftp.frugalware.org/pub/README.GPG for info" \ + -ba -u 20F55619 frugalwareutils-$(VERSION).tar.gz + mv frugalwareutils-$(VERSION).tar.gz{,.asc} ../ # FIXME: extend these to handle po4a, too update-po: From vmiklos at frugalware.org Wed Sep 5 23:11:29 2007 From: vmiklos at frugalware.org (VMiklos) Date: Wed Sep 5 23:11:30 2007 Subject: [Frugalware-git] frugalwareutils: updates for 0.7.5 Message-ID: <20070905211129.2852B13A41E1@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalwareutils.git;a=commitdiff;h=072360acaf02d75ccfd34a9c01d6e83cbabd1459 commit 072360acaf02d75ccfd34a9c01d6e83cbabd1459 Author: VMiklos Date: Wed Sep 5 23:09:55 2007 +0200 updates for 0.7.5 diff --git a/Makefile.inc b/Makefile.inc index d40f083..caaba42 100644 --- a/Makefile.inc +++ b/Makefile.inc @@ -1,6 +1,6 @@ # Makefile.inc for frugalwareutils # -# Copyright (C) 2006 Miklos Vajna +# Copyright (C) 2006-2007 Miklos Vajna # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -16,7 +16,7 @@ # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA # -VERSION = 0.7.4 +VERSION = 0.7.5 MAJORVER = 0 DO_RECURSIVE = @ for i in $(SUBDIRS); do $(MAKE) -C $$i $@ || exit 1; done diff --git a/NEWS b/NEWS index a5056bb..faaee88 100644 --- a/NEWS +++ b/NEWS @@ -1,5 +1,7 @@ VERSION DESCRIPTION ----------------------------------------------------------------------------- +0.7.5 - fixed to work with os-prober >= 1.21 + - new Danish translation 0.7.4 - grubconfig, libfrugalwareutils: spelling fixes - added Italian translation - converted to git From vmiklos at frugalware.org Wed Sep 5 23:20:27 2007 From: vmiklos at frugalware.org (VMiklos) Date: Wed Sep 5 23:20:30 2007 Subject: [Frugalware-git] frugalware-current: frugalwareutils-0.7.5-1-i686 Message-ID: <20070905212027.9176B13A41E1@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=b3108ac3535347ca3d013a7512a025d80895801b commit b3108ac3535347ca3d013a7512a025d80895801b Author: VMiklos Date: Wed Sep 5 23:16:12 2007 +0200 frugalwareutils-0.7.5-1-i686 version bump diff --git a/source/base/frugalwareutils/FrugalBuild b/source/base/frugalwareutils/FrugalBuild index 0609c51..119fb31 100644 --- a/source/base/frugalwareutils/FrugalBuild +++ b/source/base/frugalwareutils/FrugalBuild @@ -2,8 +2,8 @@ # Maintainer: VMiklos pkgname=frugalwareutils -pkgver=0.7.4 -pkgrel=2 +pkgver=0.7.5 +pkgrel=1 pkgdesc="Frugalware configuration utilities." url="http://ftp.frugalware.org/pub/other/frugalwareutils" depends=('glib2' 'ncurses' 'parted>=1.8.8' 'pacman-g2>=3.5.1') From vmiklos at frugalware.org Thu Sep 6 00:03:59 2007 From: vmiklos at frugalware.org (VMiklos) Date: Thu Sep 6 00:04:01 2007 Subject: [Frugalware-git] frugalware-current: kernel-2.6.22-5-i686 Message-ID: <20070905220359.2B0CE13A41E1@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=07c9adaccb666b1923a6e63173565ccb6432d1d4 commit 07c9adaccb666b1923a6e63173565ccb6432d1d4 Author: VMiklos Date: Wed Sep 5 23:56:49 2007 +0200 kernel-2.6.22-5-i686 bump to patchlevel '6', add CVE-2007-3843.diff closes #2366 diff --git a/source/base/kernel/CVE-2007-3843.diff b/source/base/kernel/CVE-2007-3843.diff new file mode 100644 index 0000000..bda4c88 --- /dev/null +++ b/source/base/kernel/CVE-2007-3843.diff @@ -0,0 +1,179 @@ +From: Steve French +Date: Thu, 28 Jun 2007 18:41:42 +0000 (+0000) +Subject: [CIFS] Fix sign mount option and sign proc config setting +X-Git-Tag: v2.6.23-rc1~478^2~20 +X-Git-Url: http://git.kernel.org/?p=linux%2Fkernel%2Fgit%2Ftorvalds%2Flinux-2.6.git;a=commitdiff_plain;h=762e5ab77c803c819e45d054518a98efb70b0f60 + +[CIFS] Fix sign mount option and sign proc config setting + +We were checking the wrong (old) global variable to determine +whether to override server and force signing on the SMB +connection. + +Acked-by: Dave Kleikamp +Signed-off-by: Steve French +--- + +diff --git a/fs/cifs/cifs_debug.c b/fs/cifs/cifs_debug.c +index ebd1335..42fafa1 100644 +--- a/fs/cifs/cifs_debug.c ++++ b/fs/cifs/cifs_debug.c +@@ -901,90 +901,14 @@ security_flags_write(struct file *file, const char __user *buffer, + } + /* flags look ok - update the global security flags for cifs module */ + extended_security = flags; ++ if (extended_security & CIFSSEC_MUST_SIGN) { ++ /* requiring signing implies signing is allowed */ ++ extended_security |= CIFSSEC_MAY_SIGN; ++ cFYI(1, ("packet signing now required")); ++ } else if ((extended_security & CIFSSEC_MAY_SIGN) == 0) { ++ cFYI(1, ("packet signing disabled")); ++ } ++ /* BB should we turn on MAY flags for other MUST options? */ + return count; + } +- +-/* static int +-ntlmv2_enabled_read(char *page, char **start, off_t off, +- int count, int *eof, void *data) +-{ +- int len; +- +- len = sprintf(page, "%d\n", ntlmv2_support); +- +- len -= off; +- *start = page + off; +- +- if (len > count) +- len = count; +- else +- *eof = 1; +- +- if (len < 0) +- len = 0; +- +- return len; +-} +-static int +-ntlmv2_enabled_write(struct file *file, const char __user *buffer, +- unsigned long count, void *data) +-{ +- char c; +- int rc; +- +- rc = get_user(c, buffer); +- if (rc) +- return rc; +- if (c == '0' || c == 'n' || c == 'N') +- ntlmv2_support = 0; +- else if (c == '1' || c == 'y' || c == 'Y') +- ntlmv2_support = 1; +- else if (c == '2') +- ntlmv2_support = 2; +- +- return count; +-} +- +-static int +-packet_signing_enabled_read(char *page, char **start, off_t off, +- int count, int *eof, void *data) +-{ +- int len; +- +- len = sprintf(page, "%d\n", sign_CIFS_PDUs); +- +- len -= off; +- *start = page + off; +- +- if (len > count) +- len = count; +- else +- *eof = 1; +- +- if (len < 0) +- len = 0; +- +- return len; +-} +-static int +-packet_signing_enabled_write(struct file *file, const char __user *buffer, +- unsigned long count, void *data) +-{ +- char c; +- int rc; +- +- rc = get_user(c, buffer); +- if (rc) +- return rc; +- if (c == '0' || c == 'n' || c == 'N') +- sign_CIFS_PDUs = 0; +- else if (c == '1' || c == 'y' || c == 'Y') +- sign_CIFS_PDUs = 1; +- else if (c == '2') +- sign_CIFS_PDUs = 2; +- +- return count; +-} */ +- +- + #endif +diff --git a/fs/cifs/cifssmb.c b/fs/cifs/cifssmb.c +index 57419a1..4a2458e 100644 +--- a/fs/cifs/cifssmb.c ++++ b/fs/cifs/cifssmb.c +@@ -426,11 +426,11 @@ CIFSSMBNegotiate(unsigned int xid, struct cifsSesInfo *ses) + + /* if any of auth flags (ie not sign or seal) are overriden use them */ + if(ses->overrideSecFlg & (~(CIFSSEC_MUST_SIGN | CIFSSEC_MUST_SEAL))) +- secFlags = ses->overrideSecFlg; ++ secFlags = ses->overrideSecFlg; /* BB FIXME fix sign flags? */ + else /* if override flags set only sign/seal OR them with global auth */ + secFlags = extended_security | ses->overrideSecFlg; + +- cFYI(1,("secFlags 0x%x",secFlags)); ++ cFYI(1, ("secFlags 0x%x", secFlags)); + + pSMB->hdr.Mid = GetNextMid(server); + pSMB->hdr.Flags2 |= (SMBFLG2_UNICODE | SMBFLG2_ERR_STATUS); +@@ -633,22 +633,32 @@ CIFSSMBNegotiate(unsigned int xid, struct cifsSesInfo *ses) + #ifdef CONFIG_CIFS_WEAK_PW_HASH + signing_check: + #endif +- if(sign_CIFS_PDUs == FALSE) { ++ if ((secFlags & CIFSSEC_MAY_SIGN) == 0) { ++ /* MUST_SIGN already includes the MAY_SIGN FLAG ++ so if this is zero it means that signing is disabled */ ++ cFYI(1, ("Signing disabled")); + if(server->secMode & SECMODE_SIGN_REQUIRED) +- cERROR(1,("Server requires " +- "/proc/fs/cifs/PacketSigningEnabled to be on")); ++ cERROR(1, ("Server requires " ++ "/proc/fs/cifs/PacketSigningEnabled " ++ "to be on")); + server->secMode &= + ~(SECMODE_SIGN_ENABLED | SECMODE_SIGN_REQUIRED); +- } else if(sign_CIFS_PDUs == 1) { ++ } else if ((secFlags & CIFSSEC_MUST_SIGN) == CIFSSEC_MUST_SIGN) { ++ /* signing required */ ++ cFYI(1, ("Must sign - segFlags 0x%x", secFlags)); ++ if ((server->secMode & ++ (SECMODE_SIGN_ENABLED | SECMODE_SIGN_REQUIRED)) == 0) { ++ cERROR(1, ++ ("signing required but server lacks support")); ++ } else ++ server->secMode |= SECMODE_SIGN_REQUIRED; ++ } else { ++ /* signing optional ie CIFSSEC_MAY_SIGN */ + if((server->secMode & SECMODE_SIGN_REQUIRED) == 0) + server->secMode &= + ~(SECMODE_SIGN_ENABLED | SECMODE_SIGN_REQUIRED); +- } else if(sign_CIFS_PDUs == 2) { +- if((server->secMode & +- (SECMODE_SIGN_ENABLED | SECMODE_SIGN_REQUIRED)) == 0) { +- cERROR(1,("signing required but server lacks support")); +- } + } ++ + neg_err_exit: + cifs_buf_release(pSMB); + diff --git a/source/base/kernel/FrugalBuild b/source/base/kernel/FrugalBuild index 7a6d9de..2995d1f 100644 --- a/source/base/kernel/FrugalBuild +++ b/source/base/kernel/FrugalBuild @@ -1,5 +1,5 @@ # Compiling Time: 11.74 SBU # Maintainer: VMiklos -_F_kernel_patches=(aacraid.diff pxa27x.diff) +_F_kernel_patches=(aacraid.diff pxa27x.diff CVE-2007-3843.diff) Finclude kernel diff --git a/source/include/kernel-version.sh b/source/include/kernel-version.sh index fac57dc..41c3c63 100644 --- a/source/include/kernel-version.sh +++ b/source/include/kernel-version.sh @@ -16,5 +16,5 @@ # * _F_kernelver_stable: the number of the -stable patch to use (if any) ### _F_kernelver_ver=2.6.22 -_F_kernelver_rel=4 -_F_kernelver_stable=5 +_F_kernelver_rel=5 +_F_kernelver_stable=6 From vmiklos at frugalware.org Thu Sep 6 00:12:43 2007 From: vmiklos at frugalware.org (VMiklos) Date: Thu Sep 6 00:12:44 2007 Subject: [Frugalware-git] frugalware-current: cdemu-0.8-25-i686 Message-ID: <20070905221243.6C27913A41E1@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=da10515fc685934df05a55e327635d448fd2f4e2 commit da10515fc685934df05a55e327635d448fd2f4e2 Author: VMiklos Date: Thu Sep 6 00:08:12 2007 +0200 cdemu-0.8-25-i686 rebuilt with kernel-2.6.22-5 diff --git a/source/apps-extra/cdemu/FrugalBuild b/source/apps-extra/cdemu/FrugalBuild index 58a4371..548b753 100644 --- a/source/apps-extra/cdemu/FrugalBuild +++ b/source/apps-extra/cdemu/FrugalBuild @@ -3,7 +3,7 @@ pkgname=cdemu pkgver=0.8 -pkgrel=24 +pkgrel=25 pkgdesc="A kernel module designed to simulate a CD drive with just simple cue/bin files." Finclude kernel-module depends=(${depends[@]} 'python') From vmiklos at frugalware.org Thu Sep 6 00:12:43 2007 From: vmiklos at frugalware.org (VMiklos) Date: Thu Sep 6 00:12:45 2007 Subject: [Frugalware-git] frugalware-current: fglrx-8.40.4-4-i686 Message-ID: <20070905221243.9013F13A41E6@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=94f3afc5cb54f817089bb9911cdd3be9636ded29 commit 94f3afc5cb54f817089bb9911cdd3be9636ded29 Author: VMiklos Date: Thu Sep 6 00:08:14 2007 +0200 fglrx-8.40.4-4-i686 rebuilt with kernel-2.6.22-5 diff --git a/source/x11-extra/fglrx/FrugalBuild b/source/x11-extra/fglrx/FrugalBuild index 8cfb473..5bea4ab 100644 --- a/source/x11-extra/fglrx/FrugalBuild +++ b/source/x11-extra/fglrx/FrugalBuild @@ -4,7 +4,7 @@ pkgname=fglrx pkgver=8.40.4 -pkgrel=3 +pkgrel=4 pkgdesc="Hardware Accelerated ATi driver for xorg" url="http://www.ati.com/" # libstdc++5: no hardware acceleration without it From vmiklos at frugalware.org Thu Sep 6 00:12:43 2007 From: vmiklos at frugalware.org (VMiklos) Date: Thu Sep 6 00:12:45 2007 Subject: [Frugalware-git] frugalware-current: adm8211-20060111-27-i686 Message-ID: <20070905221243.B5ADA13A41E1@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=582231084225ca3edddf9992c7ce247d5d1918a0 commit 582231084225ca3edddf9992c7ce247d5d1918a0 Author: VMiklos Date: Thu Sep 6 00:08:15 2007 +0200 adm8211-20060111-27-i686 rebuilt with kernel-2.6.22-5 diff --git a/source/network-extra/adm8211/FrugalBuild b/source/network-extra/adm8211/FrugalBuild index 5649967..bad15a2 100644 --- a/source/network-extra/adm8211/FrugalBuild +++ b/source/network-extra/adm8211/FrugalBuild @@ -3,7 +3,7 @@ pkgname=adm8211 pkgver=20060111 -pkgrel=26 +pkgrel=27 pkgdesc="IEEE 802.11 wireless LAN driver for adm8211 based cards" url="http://aluminum.sourmilk.net/adm8211/" Finclude kernel-module From vmiklos at frugalware.org Thu Sep 6 00:12:43 2007 From: vmiklos at frugalware.org (VMiklos) Date: Thu Sep 6 00:12:48 2007 Subject: [Frugalware-git] frugalware-current: rt2400-1.2.2_b3-8-i686 Message-ID: <20070905221243.DFF1E13A41E1@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=3241af17e2a4dfe129f90e22b62ed8e7d67b4c03 commit 3241af17e2a4dfe129f90e22b62ed8e7d67b4c03 Author: VMiklos Date: Thu Sep 6 00:08:17 2007 +0200 rt2400-1.2.2_b3-8-i686 rebuilt with kernel-2.6.22-5 diff --git a/source/network-extra/rt2400/FrugalBuild b/source/network-extra/rt2400/FrugalBuild index 15a1a46..c0badbe 100644 --- a/source/network-extra/rt2400/FrugalBuild +++ b/source/network-extra/rt2400/FrugalBuild @@ -3,7 +3,7 @@ pkgname=rt2400 pkgver=1.2.2_b3 -pkgrel=7 +pkgrel=8 pkgdesc="Driver for wireless cards that are based on the Ralink rt2400 chipsets." Finclude kernel-module sourceforge url="http://rt2x00.serialmonkey.com/wiki/index.php" From vmiklos at frugalware.org Thu Sep 6 00:12:44 2007 From: vmiklos at frugalware.org (VMiklos) Date: Thu Sep 6 00:12:49 2007 Subject: [Frugalware-git] frugalware-current: rt2500-1.1.0_b4-26-i686 Message-ID: <20070905221244.3594713A41E1@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=a2a83a6aefa9a702e0b80990e37665575873ea50 commit a2a83a6aefa9a702e0b80990e37665575873ea50 Author: VMiklos Date: Thu Sep 6 00:08:18 2007 +0200 rt2500-1.1.0_b4-26-i686 rebuilt with kernel-2.6.22-5 diff --git a/source/network-extra/rt2500/FrugalBuild b/source/network-extra/rt2500/FrugalBuild index 4031b90..66cbeec 100644 --- a/source/network-extra/rt2500/FrugalBuild +++ b/source/network-extra/rt2500/FrugalBuild @@ -3,7 +3,7 @@ pkgname=rt2500 pkgver=1.1.0_b4 -pkgrel=25 +pkgrel=26 pkgdesc="Driver for wireless cards that are based on the Ralink rt2400 and rt2500 chipsets." _F_sourceforge_dirname="rt2400" Finclude kernel-module sourceforge From vmiklos at frugalware.org Thu Sep 6 00:12:44 2007 From: vmiklos at frugalware.org (VMiklos) Date: Thu Sep 6 00:12:49 2007 Subject: [Frugalware-git] frugalware-current: acx100-0.3.36-15-i686 Message-ID: <20070905221244.5F53C13A41E1@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=1c9cdcd3553d93ad649e0248a18c5398c288ce34 commit 1c9cdcd3553d93ad649e0248a18c5398c288ce34 Author: VMiklos Date: Thu Sep 6 00:08:20 2007 +0200 acx100-0.3.36-15-i686 rebuilt with kernel-2.6.22-5 diff --git a/source/network-extra/acx100/FrugalBuild b/source/network-extra/acx100/FrugalBuild index 227420d..d960213 100644 --- a/source/network-extra/acx100/FrugalBuild +++ b/source/network-extra/acx100/FrugalBuild @@ -4,7 +4,7 @@ pkgname=acx100 pkgver=0.3.36 pkgdate=20070101 -pkgrel=14 +pkgrel=15 pkgdesc="The ACX100/ACX111 wireless network driver." url="http://www.cmartin.tk/acx" Finclude kernel-module From vmiklos at frugalware.org Thu Sep 6 00:12:44 2007 From: vmiklos at frugalware.org (VMiklos) Date: Thu Sep 6 00:12:49 2007 Subject: [Frugalware-git] frugalware-current: qc-usb-0.6.6-21-i686 Message-ID: <20070905221244.7F24C13A41E6@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=52142b797b27ed7f0cdeb50ecb7ed1eae63cd5ab commit 52142b797b27ed7f0cdeb50ecb7ed1eae63cd5ab Author: VMiklos Date: Thu Sep 6 00:08:21 2007 +0200 qc-usb-0.6.6-21-i686 rebuilt with kernel-2.6.22-5 diff --git a/source/multimedia-extra/qc-usb/FrugalBuild b/source/multimedia-extra/qc-usb/FrugalBuild index 4a5faa1..2df13cc 100644 --- a/source/multimedia-extra/qc-usb/FrugalBuild +++ b/source/multimedia-extra/qc-usb/FrugalBuild @@ -3,7 +3,7 @@ pkgname=qc-usb pkgver=0.6.6 -pkgrel=20 +pkgrel=21 pkgdesc="Quickcam kernel driver." groups=('multimedia-extra') archs=('i686' 'x86_64') From vmiklos at frugalware.org Thu Sep 6 00:12:44 2007 From: vmiklos at frugalware.org (VMiklos) Date: Thu Sep 6 00:12:49 2007 Subject: [Frugalware-git] frugalware-current: rlocate-0.5.6-3-i686 Message-ID: <20070905221244.CFB1713A41E6@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=ec28dbb7fa6d2d734aebb7707ef39a11a0b3dce2 commit ec28dbb7fa6d2d734aebb7707ef39a11a0b3dce2 Author: VMiklos Date: Thu Sep 6 00:08:23 2007 +0200 rlocate-0.5.6-3-i686 rebuilt with kernel-2.6.22-5 diff --git a/source/apps-extra/rlocate/FrugalBuild b/source/apps-extra/rlocate/FrugalBuild index fec0aa3..6cb0907 100644 --- a/source/apps-extra/rlocate/FrugalBuild +++ b/source/apps-extra/rlocate/FrugalBuild @@ -3,7 +3,7 @@ pkgname=rlocate pkgver=0.5.6 -pkgrel=2 +pkgrel=3 pkgdesc="rlocate is an implementation of the locate command" Finclude kernel-module depends=(${depends[@]} 'glibc' 'util-linux' 'psmisc') From vmiklos at frugalware.org Thu Sep 6 00:12:45 2007 From: vmiklos at frugalware.org (VMiklos) Date: Thu Sep 6 00:12:50 2007 Subject: [Frugalware-git] frugalware-current: ipw3945-1.2.2-3-i686 Message-ID: <20070905221245.5E4F713A41E5@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=4edd5d00ff9dd83423714986b2563d12967d3468 commit 4edd5d00ff9dd83423714986b2563d12967d3468 Author: VMiklos Date: Thu Sep 6 00:08:25 2007 +0200 ipw3945-1.2.2-3-i686 rebuilt with kernel-2.6.22-5 diff --git a/source/network-extra/ipw3945/FrugalBuild b/source/network-extra/ipw3945/FrugalBuild index 96e1189..c048830 100644 --- a/source/network-extra/ipw3945/FrugalBuild +++ b/source/network-extra/ipw3945/FrugalBuild @@ -3,7 +3,7 @@ pkgname=ipw3945 pkgver=1.2.2 -pkgrel=2 +pkgrel=3 pkgdesc="Intel PRO/Wireless 3945ABG Driver for Linux" _F_sourceforge_ext=".tgz" Finclude sourceforge kernel-module From vmiklos at frugalware.org Thu Sep 6 00:12:46 2007 From: vmiklos at frugalware.org (VMiklos) Date: Thu Sep 6 00:12:50 2007 Subject: [Frugalware-git] frugalware-current: dazuko-2.3.3-10-i686 Message-ID: <20070905221246.46B9C13A41E6@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=3c67e58e632cbe50924d151ab36ece42642ffb4d commit 3c67e58e632cbe50924d151ab36ece42642ffb4d Author: VMiklos Date: Thu Sep 6 00:08:26 2007 +0200 dazuko-2.3.3-10-i686 rebuilt with kernel-2.6.22-5 diff --git a/source/apps-extra/dazuko/FrugalBuild b/source/apps-extra/dazuko/FrugalBuild index 175ed94..57633b2 100644 --- a/source/apps-extra/dazuko/FrugalBuild +++ b/source/apps-extra/dazuko/FrugalBuild @@ -3,7 +3,7 @@ pkgname=dazuko pkgver=2.3.3 -pkgrel=9 +pkgrel=10 pkgdesc="On-access virus scanning kernel interface" url="http://www.dazuko.org" license="GPL-2 BSD" From vmiklos at frugalware.org Thu Sep 6 00:12:46 2007 From: vmiklos at frugalware.org (VMiklos) Date: Thu Sep 6 00:12:50 2007 Subject: [Frugalware-git] frugalware-current: nvidia-100.14.11-5-i686 Message-ID: <20070905221246.EC27C13A41E5@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=d6f28303a8c850bddb8e7377916654a1de2ad98f commit d6f28303a8c850bddb8e7377916654a1de2ad98f Author: VMiklos Date: Thu Sep 6 00:08:28 2007 +0200 nvidia-100.14.11-5-i686 rebuilt with kernel-2.6.22-5 diff --git a/source/x11-extra/nvidia/FrugalBuild b/source/x11-extra/nvidia/FrugalBuild index dbfc388..192aaa4 100644 --- a/source/x11-extra/nvidia/FrugalBuild +++ b/source/x11-extra/nvidia/FrugalBuild @@ -3,7 +3,7 @@ pkgname=nvidia pkgver=100.14.11 -pkgrel=4 +pkgrel=5 pkgdesc="3D accelerated display driver for Nvidia cards" url="http://www.nvidia.com/object/linux_display_archive.html" conflicts=('libgl' 'libglx') From vmiklos at frugalware.org Thu Sep 6 00:12:47 2007 From: vmiklos at frugalware.org (VMiklos) Date: Thu Sep 6 00:12:51 2007 Subject: [Frugalware-git] frugalware-current: gspcav1-1.00.18-9-i686 Message-ID: <20070905221247.4C8AE13A41E6@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=e261749b9a48f513b174db165e348f115851df37 commit e261749b9a48f513b174db165e348f115851df37 Author: VMiklos Date: Thu Sep 6 00:08:29 2007 +0200 gspcav1-1.00.18-9-i686 rebuilt with kernel-2.6.22-5 diff --git a/source/multimedia-extra/gspcav1/FrugalBuild b/source/multimedia-extra/gspcav1/FrugalBuild index 5cc58e0..33fb9ef 100644 --- a/source/multimedia-extra/gspcav1/FrugalBuild +++ b/source/multimedia-extra/gspcav1/FrugalBuild @@ -3,7 +3,7 @@ pkgname=gspcav1 pkgver=1.00.18 -pkgrel=8 +pkgrel=9 pkgdate=20070508 pkgdesc="One driver Upto 220 Webcams supported" url="http://mxhaard.free.fr" From vmiklos at frugalware.org Thu Sep 6 00:12:47 2007 From: vmiklos at frugalware.org (VMiklos) Date: Thu Sep 6 00:12:51 2007 Subject: [Frugalware-git] frugalware-current: ndiswrapper-1.47-7-i686 Message-ID: <20070905221247.78AEC13A41E5@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=3f9a01a412fe42785d9ff3040edb7b5fc97aa041 commit 3f9a01a412fe42785d9ff3040edb7b5fc97aa041 Author: VMiklos Date: Thu Sep 6 00:08:31 2007 +0200 ndiswrapper-1.47-7-i686 rebuilt with kernel-2.6.22-5 diff --git a/source/network-extra/ndiswrapper/FrugalBuild b/source/network-extra/ndiswrapper/FrugalBuild index cc65060..5c862f6 100644 --- a/source/network-extra/ndiswrapper/FrugalBuild +++ b/source/network-extra/ndiswrapper/FrugalBuild @@ -4,7 +4,7 @@ pkgname=ndiswrapper pkgver=1.47 -pkgrel=6 +pkgrel=7 pkgdesc="Wrapper for using Windows drivers for some wireless cards" Finclude kernel-module sourceforge unset install From vmiklos at frugalware.org Thu Sep 6 00:12:47 2007 From: vmiklos at frugalware.org (VMiklos) Date: Thu Sep 6 00:13:00 2007 Subject: [Frugalware-git] frugalware-current: truecrypt-4.3-11-i686 Message-ID: <20070905221247.BB21613A41F3@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=2f747d3a1423ca0f4ebf830b20ab6caf0f1f476c commit 2f747d3a1423ca0f4ebf830b20ab6caf0f1f476c Author: VMiklos Date: Thu Sep 6 00:08:32 2007 +0200 truecrypt-4.3-11-i686 rebuilt with kernel-2.6.22-5 diff --git a/source/apps-extra/truecrypt/FrugalBuild b/source/apps-extra/truecrypt/FrugalBuild index 73c9b86..8096252 100644 --- a/source/apps-extra/truecrypt/FrugalBuild +++ b/source/apps-extra/truecrypt/FrugalBuild @@ -4,7 +4,7 @@ pkgname=truecrypt pkgver=4.3 pkgextraver=a -pkgrel=10 +pkgrel=11 pkgdesc="A free open-source disk encryption software" url="http://www.truecrypt.org/" Finclude kernel-module From vmiklos at frugalware.org Thu Sep 6 00:12:48 2007 From: vmiklos at frugalware.org (VMiklos) Date: Thu Sep 6 00:13:00 2007 Subject: [Frugalware-git] frugalware-current: nvidia-96xx-1.0_9639-7-i686 Message-ID: <20070905221248.127EE13A41F8@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=025595b0eead99c78c65184922d8037d3cdb98c1 commit 025595b0eead99c78c65184922d8037d3cdb98c1 Author: VMiklos Date: Thu Sep 6 00:08:34 2007 +0200 nvidia-96xx-1.0_9639-7-i686 rebuilt with kernel-2.6.22-5 diff --git a/source/x11-extra/nvidia-96xx/FrugalBuild b/source/x11-extra/nvidia-96xx/FrugalBuild index 35e2aba..88ed912 100644 --- a/source/x11-extra/nvidia-96xx/FrugalBuild +++ b/source/x11-extra/nvidia-96xx/FrugalBuild @@ -4,7 +4,7 @@ pkgname=nvidia-96xx pkgver=1.0_9639 nvver=`echo $pkgver|sed 's/_/-/'` -pkgrel=6 +pkgrel=7 pkgdesc="3d accelerated display driver for Nvidia cards" url="http://www.nvidia.com/object/linux_display_archive.html" conflicts=('libgl' 'libglx' 'nvidia') From vmiklos at frugalware.org Thu Sep 6 00:12:48 2007 From: vmiklos at frugalware.org (VMiklos) Date: Thu Sep 6 00:13:00 2007 Subject: [Frugalware-git] frugalware-current: virtualbox-1.4.0-7-i686 Message-ID: <20070905221248.4453613A41FA@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=8ff0ede86f87be439d3d5eb0f387602a670ef2f1 commit 8ff0ede86f87be439d3d5eb0f387602a670ef2f1 Author: VMiklos Date: Thu Sep 6 00:08:35 2007 +0200 virtualbox-1.4.0-7-i686 rebuilt with kernel-2.6.22-5 diff --git a/source/xapps-extra/virtualbox/FrugalBuild b/source/xapps-extra/virtualbox/FrugalBuild index e5cce8e..01fcadf 100644 --- a/source/xapps-extra/virtualbox/FrugalBuild +++ b/source/xapps-extra/virtualbox/FrugalBuild @@ -4,7 +4,7 @@ pkgname=virtualbox realname=VirtualBox pkgver=1.4.0 -pkgrel=6 +pkgrel=7 pkgdesc="InnoTek VirtualBox is a family of powerful x86 virtualization products for enterprise as well as home use." url="http://www.virtualbox.org" Finclude kernel-module From vmiklos at frugalware.org Thu Sep 6 00:12:51 2007 From: vmiklos at frugalware.org (VMiklos) Date: Thu Sep 6 00:13:01 2007 Subject: [Frugalware-git] frugalware-current: kqemu-1.3.0pre11-14-i686 Message-ID: <20070905221251.376AE13A41E1@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=c5d215f533657641765a6816aeb17a540956af31 commit c5d215f533657641765a6816aeb17a540956af31 Author: VMiklos Date: Thu Sep 6 00:08:37 2007 +0200 kqemu-1.3.0pre11-14-i686 rebuilt with kernel-2.6.22-5 diff --git a/source/xapps-extra/kqemu/FrugalBuild b/source/xapps-extra/kqemu/FrugalBuild index 6ed70fd..d22a7d6 100644 --- a/source/xapps-extra/kqemu/FrugalBuild +++ b/source/xapps-extra/kqemu/FrugalBuild @@ -3,7 +3,7 @@ pkgname=kqemu pkgver=1.3.0pre11 -pkgrel=13 +pkgrel=14 pkgdesc="QEMU Accelerator Module" url="http://fabrice.bellard.free.fr/qemu/" depends=('qemu') From vmiklos at frugalware.org Thu Sep 6 00:12:51 2007 From: vmiklos at frugalware.org (VMiklos) Date: Thu Sep 6 00:13:01 2007 Subject: [Frugalware-git] frugalware-current: lirc-0.8.2-7-i686 Message-ID: <20070905221251.7137B13A41E8@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=bb23e2578cc0a0573b9f232889e25c5611a3b7b6 commit bb23e2578cc0a0573b9f232889e25c5611a3b7b6 Author: VMiklos Date: Thu Sep 6 00:08:39 2007 +0200 lirc-0.8.2-7-i686 rebuilt with kernel-2.6.22-5 diff --git a/source/apps-extra/lirc/FrugalBuild b/source/apps-extra/lirc/FrugalBuild index c6b0878..9f31430 100644 --- a/source/apps-extra/lirc/FrugalBuild +++ b/source/apps-extra/lirc/FrugalBuild @@ -3,7 +3,7 @@ pkgname=lirc pkgver=0.8.2 -pkgrel=6 +pkgrel=7 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 From vmiklos at frugalware.org Thu Sep 6 00:12:51 2007 From: vmiklos at frugalware.org (VMiklos) Date: Thu Sep 6 00:13:01 2007 Subject: [Frugalware-git] frugalware-current: rtl8110-1.06-8-i686 Message-ID: <20070905221251.AC4AB13A41E1@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=631e276453081bece21303f5b53919deea633900 commit 631e276453081bece21303f5b53919deea633900 Author: VMiklos Date: Thu Sep 6 00:08:40 2007 +0200 rtl8110-1.06-8-i686 rebuilt with kernel-2.6.22-5 diff --git a/source/network-extra/rtl8110/FrugalBuild b/source/network-extra/rtl8110/FrugalBuild index bbc2590..2170f43 100644 --- a/source/network-extra/rtl8110/FrugalBuild +++ b/source/network-extra/rtl8110/FrugalBuild @@ -3,7 +3,7 @@ pkgname=rtl8110 pkgver=1.06 -pkgrel=7 +pkgrel=8 pkgdesc="Realtek driver(r1000) for RTL8169/8110 cards." url="http://www.realtek.com.tw" Finclude kernel-module From vmiklos at frugalware.org Thu Sep 6 00:12:52 2007 From: vmiklos at frugalware.org (VMiklos) Date: Thu Sep 6 00:13:01 2007 Subject: [Frugalware-git] frugalware-current: wlan-ng-0.2.8-8-i686 Message-ID: <20070905221252.2797813A41E9@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=1aabae23a38612659e3e651a294c9daf2c863533 commit 1aabae23a38612659e3e651a294c9daf2c863533 Author: VMiklos Date: Thu Sep 6 00:08:42 2007 +0200 wlan-ng-0.2.8-8-i686 rebuilt with kernel-2.6.22-5 diff --git a/source/network-extra/wlan-ng/FrugalBuild b/source/network-extra/wlan-ng/FrugalBuild index 6515c1a..b74be27 100644 --- a/source/network-extra/wlan-ng/FrugalBuild +++ b/source/network-extra/wlan-ng/FrugalBuild @@ -3,7 +3,7 @@ pkgname=wlan-ng pkgver=0.2.8 -pkgrel=7 +pkgrel=8 pkgdesc="Wireless Lan modules" url="http://www.linux-wlan.org/" Finclude kernel-module From vmiklos at frugalware.org Thu Sep 6 00:12:52 2007 From: vmiklos at frugalware.org (VMiklos) Date: Thu Sep 6 00:13:02 2007 Subject: [Frugalware-git] frugalware-current: acerhk-0.5.34-5-i686 Message-ID: <20070905221252.4D15213A41E1@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=e5ad85014402fe3b579bba2cd81275722bb89b8a commit e5ad85014402fe3b579bba2cd81275722bb89b8a Author: VMiklos Date: Thu Sep 6 00:08:43 2007 +0200 acerhk-0.5.34-5-i686 rebuilt with kernel-2.6.22-5 diff --git a/source/apps-extra/acerhk/FrugalBuild b/source/apps-extra/acerhk/FrugalBuild index 59f7568..304ef64 100644 --- a/source/apps-extra/acerhk/FrugalBuild +++ b/source/apps-extra/acerhk/FrugalBuild @@ -4,7 +4,7 @@ pkgname=acerhk pkgver=0.5.34 -pkgrel=4 +pkgrel=5 pkgdesc="Acer Hotkey driver for Linux" url="http://www.cakey.de/acerhk/" Finclude kernel-module From vmiklos at frugalware.org Thu Sep 6 00:12:52 2007 From: vmiklos at frugalware.org (VMiklos) Date: Thu Sep 6 00:13:02 2007 Subject: [Frugalware-git] frugalware-current: madwifi-0.9.3.2-3-i686 Message-ID: <20070905221252.B02DA13A41E1@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=e93cc78d68730c2b8ca7bd54a96ffc8ae9d1c85b commit e93cc78d68730c2b8ca7bd54a96ffc8ae9d1c85b Author: VMiklos Date: Thu Sep 6 00:08:45 2007 +0200 madwifi-0.9.3.2-3-i686 rebuilt with kernel-2.6.22-5 diff --git a/source/network/madwifi/FrugalBuild b/source/network/madwifi/FrugalBuild index cf97d5b..af966aa 100644 --- a/source/network/madwifi/FrugalBuild +++ b/source/network/madwifi/FrugalBuild @@ -3,7 +3,7 @@ pkgname=madwifi pkgver=0.9.3.2 -pkgrel=2 +pkgrel=3 pkgdesc="Madwifi drivers for Atheros wireless chipsets" url="http://madwifi.sourceforge.net/" Finclude kernel-module From vmiklos at frugalware.org Thu Sep 6 01:02:35 2007 From: vmiklos at frugalware.org (VMiklos) Date: Thu Sep 6 01:02:47 2007 Subject: [Frugalware-git] frugalware-current: tar-1.18-2-i686 Message-ID: <20070905230235.0A8D213A41E6@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=1f9864940da375777602b9d45c239909af19f86d commit 1f9864940da375777602b9d45c239909af19f86d Author: VMiklos Date: Thu Sep 6 01:02:18 2007 +0200 tar-1.18-2-i686 added CVE-2007-4131.diff closes #2376 diff --git a/source/base/tar/CVE-2007-4131.diff b/source/base/tar/CVE-2007-4131.diff new file mode 100644 index 0000000..27b2c95 --- /dev/null +++ b/source/base/tar/CVE-2007-4131.diff @@ -0,0 +1,20 @@ +2005-05-15 Dmitry V. Levin + + * src/names.c (contains_dot_dot): Fix ".." detection. + Previous edition fails to recognize "foo//.." case. + +--- tar-1.15.1/src/names.c.orig 2004-09-06 11:30:54 +0000 ++++ tar-1.15.1/src/names.c 2005-05-15 13:21:13 +0000 +@@ -1152,11 +1152,10 @@ contains_dot_dot (char const *name) + if (p[0] == '.' && p[1] == '.' && (ISSLASH (p[2]) || !p[2])) + return 1; + +- do ++ while (! ISSLASH (*p)) + { + if (! *p++) + return 0; + } +- while (! ISSLASH (*p)); + } + } diff --git a/source/base/tar/FrugalBuild b/source/base/tar/FrugalBuild index fbb93d2..6c1cc98 100644 --- a/source/base/tar/FrugalBuild +++ b/source/base/tar/FrugalBuild @@ -3,7 +3,7 @@ pkgname=tar pkgver=1.18 -pkgrel=1 +pkgrel=2 pkgdesc="Utility used to store, backup, and transport files" url="http://www.gnu.org/software/tar/tar.html" depends=('bash') @@ -11,8 +11,8 @@ groups=('base' 'chroot-core') archs=('i686' 'x86_64' 'ppc') Fup2gnugz source=(http://ftp.gnu.org/gnu/$pkgname/$pkgname-$pkgver.tar.gz tar.1 \ - $pkgname-1.16-lzma.diff) -signatures=($source.sig '' '') + $pkgname-1.16-lzma.diff CVE-2007-4131.diff) +signatures=($source.sig '' '' '') build() { From voroskoi at frugalware.org Thu Sep 6 08:22:50 2007 From: voroskoi at frugalware.org (voroskoi) Date: Thu Sep 6 08:22:53 2007 Subject: [Frugalware-git] frugalware-current: engrave-20070829-1-i686 Message-ID: <20070906062250.8BD0313A41FB@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=d75341d3f967999d04e22b476f4e63a64793bb8e commit d75341d3f967999d04e22b476f4e63a64793bb8e Author: voroskoi Date: Thu Sep 6 08:15:16 2007 +0200 engrave-20070829-1-i686 version bump diff --git a/source/e17-extra/engrave/FrugalBuild b/source/e17-extra/engrave/FrugalBuild index fe5a796..0e41ea1 100644 --- a/source/e17-extra/engrave/FrugalBuild +++ b/source/e17-extra/engrave/FrugalBuild @@ -2,13 +2,13 @@ # Maintainer: voroskoi pkgname=engrave -pkgver=20070622 +pkgver=20070829 pkgrel=1 pkgdesc="Engrave is a library for editing edje .eet files for E17" -depends=('ecore>=0.9.9.039') +depends=('ecore>=0.9.9.041') groups=('e17-extra' 'e17-misc') archs=('i686' 'x86_64') Finclude e17-cvs -sha1sums=('4b5222568d3addeac3e8a043363b039e2cf31b3b') +sha1sums=('7538b5e112273def56e72d76da999f10357152ab') # optimization OK From voroskoi at frugalware.org Thu Sep 6 08:33:57 2007 From: voroskoi at frugalware.org (voroskoi) Date: Thu Sep 6 08:33:58 2007 Subject: [Frugalware-git] frugalware-current: entice-20070829-1-i686 Message-ID: <20070906063357.58F4613A41FB@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=f95494c32d881b7b6c8646a63183cfe2730b639a commit f95494c32d881b7b6c8646a63183cfe2730b639a Author: voroskoi Date: Thu Sep 6 08:27:17 2007 +0200 entice-20070829-1-i686 version bump diff --git a/source/e17-extra/entice/FrugalBuild b/source/e17-extra/entice/FrugalBuild index 85ccc96..789f99e 100644 --- a/source/e17-extra/entice/FrugalBuild +++ b/source/e17-extra/entice/FrugalBuild @@ -2,13 +2,13 @@ # Maintainer: voroskoi pkgname=entice -pkgver=20070622 +pkgver=20070829 pkgrel=1 pkgdesc="Entice is an image viewer for E17." -depends=('esmart>=0.9.0.009') +depends=('esmart>=0.9.0.011') groups=('e17-extra' 'e17-apps') archs=('i686') Finclude e17-cvs -sha1sums=('04d779ad2cbfde206271d24b956ce86b80ce6a71') +sha1sums=('d12f3b920fe7fc48e28f768f6c9629fcf3bd5ed1') # optimization OK From voroskoi at frugalware.org Thu Sep 6 09:43:37 2007 From: voroskoi at frugalware.org (voroskoi) Date: Thu Sep 6 09:43:39 2007 Subject: [Frugalware-git] frugalware-current: evfs-20070829-1-i686 Message-ID: <20070906074337.A52E613A41FD@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=ba4c274e5551efc538161c4bff30d8e349ca29a8 commit ba4c274e5551efc538161c4bff30d8e349ca29a8 Author: voroskoi Date: Thu Sep 6 09:37:58 2007 +0200 evfs-20070829-1-i686 version bump added samba, taglib and ftp support updated {make,}depends() accordingly diff --git a/source/e17-extra/evfs/FrugalBuild b/source/e17-extra/evfs/FrugalBuild index c8dbede..ed58068 100644 --- a/source/e17-extra/evfs/FrugalBuild +++ b/source/e17-extra/evfs/FrugalBuild @@ -2,13 +2,14 @@ # Maintainer: voroskoi pkgname=evfs -pkgver=20070622 +pkgver=20070829 pkgrel=1 pkgdesc="EVFS for E17." -depends=('ecore>=0.9.9.039' 'sqlite3' 'bzip2') +makedepends=('samba') +depends=('sqlite3' 'efreet>=0.0.3.006' 'bzip2' 'curl' 'libsmbclient' 'taglib') groups=('e17-extra' 'e17-misc') archs=('i686') Finclude e17-cvs -sha1sums=('f403ca6e4d78c5233f7fb2ffd17375a3e80f1565') +sha1sums=('8eea1499706893847b95c78dbd3da1c69f54c5d5') # optimization OK From voroskoi at frugalware.org Thu Sep 6 09:49:15 2007 From: voroskoi at frugalware.org (voroskoi) Date: Thu Sep 6 09:49:17 2007 Subject: [Frugalware-git] frugalware-current: ktorrent-2.2.2-1-x86_64 Message-ID: <20070906074915.78E9E13A41FB@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=5e9e5138de32031cce821b67ab62473e024a67cc commit 5e9e5138de32031cce821b67ab62473e024a67cc Author: voroskoi Date: Thu Sep 6 09:48:10 2007 +0200 ktorrent-2.2.2-1-x86_64 version bump diff --git a/source/kde-extra/ktorrent/FrugalBuild b/source/kde-extra/ktorrent/FrugalBuild index f813b6a..25c813e 100644 --- a/source/kde-extra/ktorrent/FrugalBuild +++ b/source/kde-extra/ktorrent/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: voroskoi pkgname=ktorrent -pkgver=2.2.1 +pkgver=2.2.2 pkgrel=1 pkgdesc="KTorrent is a BitTorrent program for KDE." depends=('kdelibs' 'libgl' 'libxmu' 'libxi' 'libxdamage' 'gmp' 'avahi' 'dbus') @@ -12,6 +12,6 @@ Finclude kde url="http://ktorrent.pwsp.net/" up2date="lynx -dump $url/index.php?page=downloads |grep http.*tar.gz |sed -ne 's/.*t-\(.*\).t.*/\1/;1 p'" source=(http://ktorrent.pwsp.net/downloads/$pkgver/$pkgname-$pkgver.tar.gz) -sha1sums=('53dd36430fd47b396b16d30d466c45bd87ae40b2') +sha1sums=('a9f780bca529e7628e5a9aeba8d22dcfde0a46e6') # optimization OK From voroskoi at frugalware.org Thu Sep 6 09:53:06 2007 From: voroskoi at frugalware.org (voroskoi) Date: Thu Sep 6 09:53:07 2007 Subject: [Frugalware-git] frugalware-current: exml-20070829-1-i686 Message-ID: <20070906075306.1ADC313A41FB@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=ce2fdc84c55812873a2c43bffeee4440156c1f00 commit ce2fdc84c55812873a2c43bffeee4440156c1f00 Author: voroskoi Date: Thu Sep 6 09:48:08 2007 +0200 exml-20070829-1-i686 version bump diff --git a/source/e17-extra/exml/FrugalBuild b/source/e17-extra/exml/FrugalBuild index 925491a..373ba32 100644 --- a/source/e17-extra/exml/FrugalBuild +++ b/source/e17-extra/exml/FrugalBuild @@ -2,13 +2,13 @@ # Maintainer: voroskoi pkgname=exml -pkgver=20070622 +pkgver=20070829 pkgrel=1 pkgdesc="XML parser/writer for E17." -depends=('ecore>=0.9.9.039' 'libxslt' 'zlib') +depends=('ecore>=0.9.9.041' 'libxslt' 'zlib') groups=('e17-extra' 'e17-misc') archs=('i686' 'x86_64') Finclude e17-cvs -sha1sums=('c768756a9a1d2614718d18e90190fa90bf7c71e9') +sha1sums=('05a7ab4aeae94ade6f2f6f242126fbcd831eb1b9') # optimization OK From voroskoi at frugalware.org Thu Sep 6 10:03:23 2007 From: voroskoi at frugalware.org (voroskoi) Date: Thu Sep 6 10:03:25 2007 Subject: [Frugalware-git] homepage-ng: FSA252-php Message-ID: <20070906080323.7204813A41FB@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=homepage-ng.git;a=commitdiff;h=5834341f12c8d8127d78fa5ee146f249ca081445 commit 5834341f12c8d8127d78fa5ee146f249ca081445 Author: voroskoi Date: Thu Sep 6 09:59:22 2007 +0200 FSA252-php diff --git a/frugalware/xml/security.xml b/frugalware/xml/security.xml index d4cf728..f340f27 100644 --- a/frugalware/xml/security.xml +++ b/frugalware/xml/security.xml @@ -27,6 +27,18 @@ + 252 + 2007-09-06 + voroskoi + php + 5.2.3-1terminus2 + 5.2.3-1terminus3 + http://bugs.frugalware.org/task/2267 + http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2007-3806 + shinnai has discovered a vulnerability in PHP, which can be exploited by malicious, local users to bypass certain security restrictions. + The vulnerability is caused due to an error in the handling of an uninitialized structure inside the "glob()" function. This can be exploited to execute arbitrary code, which may lead to security restrictions (e.g. the "disable_functions" directive) being bypassed. + + 251 2007-08-17 voroskoi From voroskoi at frugalware.org Thu Sep 6 10:07:52 2007 From: voroskoi at frugalware.org (voroskoi) Date: Thu Sep 6 10:07:53 2007 Subject: [Frugalware-git] frugalware-current: e_dbus-0.1.0.003-1-i686 Message-ID: <20070906080752.4FE9613A41FB@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=1467f296a3754cb0a4c4e40cbfc0edfdc6b29d23 commit 1467f296a3754cb0a4c4e40cbfc0edfdc6b29d23 Author: voroskoi Date: Thu Sep 6 10:02:10 2007 +0200 e_dbus-0.1.0.003-1-i686 version bump diff --git a/source/e17-extra/e_dbus/FrugalBuild b/source/e17-extra/e_dbus/FrugalBuild index 873f317..7e7d7a1 100644 --- a/source/e17-extra/e_dbus/FrugalBuild +++ b/source/e17-extra/e_dbus/FrugalBuild @@ -2,13 +2,13 @@ # Maintainer: voroskoi pkgname=e_dbus -pkgver=0.1.0.001 +pkgver=0.1.0.003 pkgrel=1 pkgdesc="EFL wrappers for dbus." depends=('ecore>=0.9.9.039' 'dbus') groups=('e17-extra' 'e17-core') archs=('i686' 'x86_64') Finclude e17 -sha1sums=('a2243877bc3eb36db746f56f113f8dffbf4d0c7f') +sha1sums=('876f163472a215b60344ceed82b104ec035bb85f') # optimization OK From janny at frugalware.org Thu Sep 6 10:14:22 2007 From: janny at frugalware.org (janny) Date: Thu Sep 6 10:14:24 2007 Subject: [Frugalware-git] frugalware-current: clamav-0.91.2-1-i686 Message-ID: <20070906081422.8119713A41FB@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=2c2740e75b267e89a3fd2fc4c3ce0990fb8bd2c9 commit 2c2740e75b267e89a3fd2fc4c3ce0990fb8bd2c9 Author: janny Date: Thu Sep 6 10:13:49 2007 +0200 clamav-0.91.2-1-i686 version bump closes #2375 diff --git a/source/apps-extra/clamav/FrugalBuild b/source/apps-extra/clamav/FrugalBuild index 0da7520..c33cb15 100644 --- a/source/apps-extra/clamav/FrugalBuild +++ b/source/apps-extra/clamav/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: Janny pkgname=clamav -pkgver=0.91.1 +pkgver=0.91.2 pkgrel=1 pkgdesc="Clam AntiVirus is a GPL anti-virus toolkit for UNIX" depends=('gmp' 'bzip2' 'curl>=7.16.0') @@ -12,7 +12,7 @@ groups=('apps-extra') archs=('i686' 'x86_64') Finclude sourceforge source=($source rc.clamav rc.clamav-hu.po) -sha1sums=('51ff98325b5ffd49dfc0f0cbf92134c0d872cd21' \ +sha1sums=('f18007c3045a1d78967adad805c6934d46ca6419' \ '90b22c99927b56992ac05042029d2702db79a8b0' \ '57d36966c45adfd6b3ebd10b91874194924ab2c3') From voroskoi at frugalware.org Thu Sep 6 10:20:45 2007 From: voroskoi at frugalware.org (voroskoi) Date: Thu Sep 6 10:20:46 2007 Subject: [Frugalware-git] homepage-ng: FSA253-poppler Message-ID: <20070906082045.0951013A41FB@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=homepage-ng.git;a=commitdiff;h=e3b6b1a8ac2f7eb074d9b9e3b29d97ef5105c62a commit e3b6b1a8ac2f7eb074d9b9e3b29d97ef5105c62a Author: voroskoi Date: Thu Sep 6 10:16:42 2007 +0200 FSA253-poppler diff --git a/frugalware/xml/security.xml b/frugalware/xml/security.xml index f340f27..3d20645 100644 --- a/frugalware/xml/security.xml +++ b/frugalware/xml/security.xml @@ -27,6 +27,18 @@ + 253 + 2007-09-06 + voroskoi + poppler + 0.5.4-2 + 0.5.4-3terminus1 + http://bugs.frugalware.org/task/2300 + http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2007-3387 + A vulnerability has been reported in Poppler, which potentially can be exploited by malicious people to compromise an application using the library. + The vulnerability is caused due to the use of vulnerable Xpdf code, which may allow the execution of arbitrary code. + + 252 2007-09-06 voroskoi From voroskoi at frugalware.org Thu Sep 6 10:29:30 2007 From: voroskoi at frugalware.org (voroskoi) Date: Thu Sep 6 10:29:31 2007 Subject: [Frugalware-git] homepage-ng: FSA254-opera Message-ID: <20070906082930.5263213A41FB@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=homepage-ng.git;a=commitdiff;h=e1adfdf60158d6e1df683de1edd85b8a8333b486 commit e1adfdf60158d6e1df683de1edd85b8a8333b486 Author: voroskoi Date: Thu Sep 6 10:25:28 2007 +0200 FSA254-opera diff --git a/frugalware/xml/security.xml b/frugalware/xml/security.xml index 3d20645..791b804 100644 --- a/frugalware/xml/security.xml +++ b/frugalware/xml/security.xml @@ -27,6 +27,18 @@ + 254 + 2007-09-06 + voroskoi + opera + 9.22-1terminus1 + 9.23-1terminus1 + http://bugs.frugalware.org/task/2369 + http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2007-4367 + A vulnerability has been reported in Opera, which potentially can be exploited by malicious people to compromise a user's system. + The vulnerability is caused due to an unspecified error when processing JavaScript code and can result in a virtual function call using an invalid pointer. This can be exploited to execute arbitrary code by e.g. tricking a user into visiting a malicious website. + + 253 2007-09-06 voroskoi From voroskoi at frugalware.org Thu Sep 6 10:34:31 2007 From: voroskoi at frugalware.org (voroskoi) Date: Thu Sep 6 10:34:35 2007 Subject: [Frugalware-git] homepage-ng: FSA255-tar Message-ID: <20070906083431.CBA1D13A41FB@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=homepage-ng.git;a=commitdiff;h=f97a29de14855f9b548e224af373e877495f8f52 commit f97a29de14855f9b548e224af373e877495f8f52 Author: voroskoi Date: Thu Sep 6 10:30:32 2007 +0200 FSA255-tar diff --git a/frugalware/xml/security.xml b/frugalware/xml/security.xml index 791b804..3c8f571 100644 --- a/frugalware/xml/security.xml +++ b/frugalware/xml/security.xml @@ -27,6 +27,18 @@ + 255 + 2007-09-06 + voroskoi + tar + 1.16.1-1 + 1.16.1-2terminus1 + http://bugs.frugalware.org/task/2376 + http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2007-4131 + A vulnerability has been reported in GNU tar, which can be exploited by malicious people to compromise a user's system. + The vulnerability is caused due to an input validation error when extracting tar archives. This can be exploited to extract files to arbitrary locations outside the specified directory with the permissions of the user running GNU tar by using the "//.." directory traversal sequence in a specially crafted tar archive. + + 254 2007-09-06 voroskoi From voroskoi at frugalware.org Thu Sep 6 10:34:56 2007 From: voroskoi at frugalware.org (voroskoi) Date: Thu Sep 6 10:34:57 2007 Subject: [Frugalware-git] frugalware-current: elicit-20070829-1-i686 Message-ID: <20070906083456.9CA2613A41FB@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=931dddf5b46de123f4a098972ac4d7f8f516428f commit 931dddf5b46de123f4a098972ac4d7f8f516428f Author: voroskoi Date: Thu Sep 6 10:18:55 2007 +0200 elicit-20070829-1-i686 version bump diff --git a/source/e17-extra/elicit/FrugalBuild b/source/e17-extra/elicit/FrugalBuild index e43d897..9af3c92 100644 --- a/source/e17-extra/elicit/FrugalBuild +++ b/source/e17-extra/elicit/FrugalBuild @@ -2,14 +2,14 @@ # Maintainer: voroskoi pkgname=elicit -pkgver=20070622 +pkgver=20070829 pkgrel=1 pkgdesc="Elicit is a tool for examining images on your desktop." url="http://www.get-e.org" -depends=('esmart>=0.9.0.009') +depends=('esmart>=0.9.0.011') groups=('e17-extra' 'e17-misc') archs=('i686') Finclude e17-cvs -sha1sums=('ceb7920416197e3a37279ea34f09b8008a314eb3') +sha1sums=('6bcc88187487df811cf10997ae98150abc7ee81b') # optimization OK From voroskoi at frugalware.org Thu Sep 6 10:44:59 2007 From: voroskoi at frugalware.org (voroskoi) Date: Thu Sep 6 10:45:03 2007 Subject: [Frugalware-git] frugalware-current: e17-wlan-20070829-1-i686 Message-ID: <20070906084459.DB14D13A41FB@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=d917dcbd3e2ea9deffed77fb5ce28fc8f8d4a35f commit d917dcbd3e2ea9deffed77fb5ce28fc8f8d4a35f Author: voroskoi Date: Thu Sep 6 10:39:53 2007 +0200 e17-wlan-20070829-1-i686 version bump diff --git a/source/e17-extra/e17-wlan/FrugalBuild b/source/e17-extra/e17-wlan/FrugalBuild index a8c44c9..730b5c3 100644 --- a/source/e17-extra/e17-wlan/FrugalBuild +++ b/source/e17-extra/e17-wlan/FrugalBuild @@ -3,13 +3,13 @@ pkgname=e17-wlan _F_e17_name=wlan -pkgver=20070622 +pkgver=20070829 pkgrel=1 pkgdesc="Wireless module for E17." -depends=('ewm>=0.16.999.039') +depends=('ewm>=0.16.999.041') groups=('e17-extra' 'e17-misc') archs=('i686') Finclude e17-cvs -sha1sums=('652a1016aa6e8487fafefaf653fad2cfb30604b0') +sha1sums=('49fd33358ddc265d4635e834a2aafa870047523e') # optimization OK From voroskoi at frugalware.org Thu Sep 6 11:09:04 2007 From: voroskoi at frugalware.org (voroskoi) Date: Thu Sep 6 11:09:05 2007 Subject: [Frugalware-git] frugalware-current: mixer-20070829-1-i686 Message-ID: <20070906090904.8415E13A41FB@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=93017f19c72fe65e49329139fa760f8352ddccc4 commit 93017f19c72fe65e49329139fa760f8352ddccc4 Author: voroskoi Date: Thu Sep 6 11:03:46 2007 +0200 mixer-20070829-1-i686 version bump diff --git a/source/e17-extra/mixer/FrugalBuild b/source/e17-extra/mixer/FrugalBuild index acee4f0..6a688cf 100644 --- a/source/e17-extra/mixer/FrugalBuild +++ b/source/e17-extra/mixer/FrugalBuild @@ -2,13 +2,13 @@ # Maintainer: voroskoi pkgname=mixer -pkgver=20070622 +pkgver=20070829 pkgrel=1 pkgdesc="Shelf replacement for the old evolume module." -depends=('ewm>=0.16.999.039' 'alsa-lib') +depends=('ewm>=0.16.999.041' 'alsa-lib') groups=('e17-extra' 'e17-misc') archs=('i686') Finclude e17-cvs -sha1sums=('ee050677a550e1f6d1441a5359e2eed10198e77b') +sha1sums=('87d1f9a5dc626a6be81a8bf5925f66b9bddc6aae') # optimization OK From voroskoi at frugalware.org Thu Sep 6 11:17:22 2007 From: voroskoi at frugalware.org (voroskoi) Date: Thu Sep 6 11:17:25 2007 Subject: [Frugalware-git] frugalware-current: enterminus-20070829-1-i686 Message-ID: <20070906091722.8C0CF13A41FB@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=5007fd615e45cd0f83e77163db5d79e10e9089d3 commit 5007fd615e45cd0f83e77163db5d79e10e9089d3 Author: voroskoi Date: Thu Sep 6 11:12:49 2007 +0200 enterminus-20070829-1-i686 version bump diff --git a/source/e17-extra/enterminus/FrugalBuild b/source/e17-extra/enterminus/FrugalBuild index 8b32214..872b0ff 100644 --- a/source/e17-extra/enterminus/FrugalBuild +++ b/source/e17-extra/enterminus/FrugalBuild @@ -2,13 +2,13 @@ # Maintainer: voroskoi pkgname=enterminus -pkgver=20070622 +pkgver=20070829 pkgrel=1 pkgdesc="Enterminus is a terminal emulator using the EFL. It uses Evas to render it's text." -depends=('ecore>=0.9.9.039') +depends=('ecore>=0.9.9.041') groups=('e17-extra' 'e17-misc') archs=('i686') Finclude e17-cvs -sha1sums=('2f7b1449f82a60cbe298a1d61b2bd58ce5a14d56') +sha1sums=('64e3211dd5bb08aa33ea99852d7db8af9ee16c1f') # optimization OK From voroskoi at frugalware.org Thu Sep 6 11:28:56 2007 From: voroskoi at frugalware.org (voroskoi) Date: Thu Sep 6 11:29:00 2007 Subject: [Frugalware-git] homepage-ng: FSA256-tor Message-ID: <20070906092856.E128313A41FB@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=homepage-ng.git;a=commitdiff;h=aa5e1fe7d1af9a5e5a118547d4f7947bc05d54d7 commit aa5e1fe7d1af9a5e5a118547d4f7947bc05d54d7 Author: voroskoi Date: Thu Sep 6 11:24:53 2007 +0200 FSA256-tor diff --git a/frugalware/xml/security.xml b/frugalware/xml/security.xml index 3c8f571..0cfabe7 100644 --- a/frugalware/xml/security.xml +++ b/frugalware/xml/security.xml @@ -27,6 +27,19 @@ + 256 + 2007-09-06 + voroskoi + tor + 0.1.2.14-1terminus1 + 0.1.2.16-1terminus1 + http://bugs.frugalware.org/task/2365 + http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2007-4174 + A vulnerability has been reported in Tor, which can be exploited by malicious people to bypass certain security restrictions. + The vulnerability is caused due to the ControlPort (localhost:9051) handling commands without authentication when the first command was not a successful "authenticate" command. This can be exploited to e.g. modify the "torrc" file, when a user views a malicious web page containing a specially crafted POST request or via a malicious tor exit node. + Successful exploitation may compromise a user's anonymity, but requires that the ControlPort is enabled. + + 255 2007-09-06 voroskoi From voroskoi at frugalware.org Thu Sep 6 11:35:40 2007 From: voroskoi at frugalware.org (voroskoi) Date: Thu Sep 6 11:35:41 2007 Subject: [Frugalware-git] homepage-ng: FSA257-po4a Message-ID: <20070906093540.01BCD13A41FB@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=homepage-ng.git;a=commitdiff;h=7b70a958dda86eabcd0e9967bfeaa312b2f72573 commit 7b70a958dda86eabcd0e9967bfeaa312b2f72573 Author: voroskoi Date: Thu Sep 6 11:31:13 2007 +0200 FSA257-po4a diff --git a/frugalware/xml/security.xml b/frugalware/xml/security.xml index 0cfabe7..6b4c7c0 100644 --- a/frugalware/xml/security.xml +++ b/frugalware/xml/security.xml @@ -27,6 +27,18 @@ + 257 + 2007-09-06 + voroskoi + po4a + 0.30-1 + 0.30-2terminus1 + http://bugs.frugalware.org/task/2374 + http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2007-4462 + A security issue has been reported in po4a, which can be exploited by malicious, local users to perform certain actions with escalated privileges. + The security issue is caused due to the "gettextize()" function in lib/Locale/Po4a/Po.pm creating the file "/tmp/gettextization.failed.po" in an insecure manner. This can be exploited via symlink attacks to e.g. overwrite arbitrary files with the permissions of the user running the po4a-gettextize tool. + + 256 2007-09-06 voroskoi From voroskoi at frugalware.org Thu Sep 6 11:40:31 2007 From: voroskoi at frugalware.org (voroskoi) Date: Thu Sep 6 11:40:32 2007 Subject: [Frugalware-git] frugalware-current: eclair-20070829-1-i686 Message-ID: <20070906094031.8C99C13A41FB@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=cc0762f8de8e934527e408f2c25d7d3b60c3b298 commit cc0762f8de8e934527e408f2c25d7d3b60c3b298 Author: voroskoi Date: Thu Sep 6 11:33:08 2007 +0200 eclair-20070829-1-i686 version bump updated depends() diff --git a/source/e17-extra/eclair/FrugalBuild b/source/e17-extra/eclair/FrugalBuild index ab0e289..21dc2e0 100644 --- a/source/e17-extra/eclair/FrugalBuild +++ b/source/e17-extra/eclair/FrugalBuild @@ -2,13 +2,13 @@ # Maintainer: voroskoi pkgname=eclair -pkgver=20070622 +pkgver=20070829 pkgrel=1 pkgdesc="Eclair is a media player for E17." -depends=('emotion>=0.0.1.006' 'esmart>=0.9.0.009' 'taglib' 'libxml2' 'sqlite3') +depends=('sqlite3' 'emotion>=0.0.1.008' 'gstreamer' 'esmart>=0.9.0.011' 'taglib') groups=('e17-extra' 'e17-apps') archs=('i686' 'x86_64') Finclude e17-cvs -sha1sums=('960112f2c04a2293e108ac4d1e266d9a9deae2a5') +sha1sums=('0fea0b90b1fec0edfc22c4ebb2d5ef10663a51cb') # optimization OK From voroskoi at frugalware.org Thu Sep 6 11:58:01 2007 From: voroskoi at frugalware.org (voroskoi) Date: Thu Sep 6 11:58:03 2007 Subject: [Frugalware-git] homepage-ng: FSA258-apache Message-ID: <20070906095801.36A8013A41FB@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=homepage-ng.git;a=commitdiff;h=20bded9d7c66674fd7a6b679f9610cb1adebedb7 commit 20bded9d7c66674fd7a6b679f9610cb1adebedb7 Author: voroskoi Date: Thu Sep 6 11:53:36 2007 +0200 FSA258-apache diff --git a/frugalware/xml/security.xml b/frugalware/xml/security.xml index 6b4c7c0..4db5666 100644 --- a/frugalware/xml/security.xml +++ b/frugalware/xml/security.xml @@ -27,6 +27,19 @@ + 258 + 2007-09-06 + voroskoi + apache + 2.2.4-2terminus1 + 2.2.4-2terminus2 + http://bugs.frugalware.org/task/2381 + http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2007-3847 + A vulnerability has been reported in the Apache mod_proxy module, which can be exploited by malicious people to cause a DoS (Denial of Service). + The vulnerability is caused due to the improper handling of date headers within the "ap_proxy_date_canon()" function in proxy_util.c. This can be exploited to cause a DoS by sending specially crafted requests to the affected server. + Successful exploitation results in a crash if a threaded Multi-Processing Module is used on servers where a reverse or forward proxy is configured. + + 257 2007-09-06 voroskoi From voroskoi at frugalware.org Thu Sep 6 12:02:11 2007 From: voroskoi at frugalware.org (voroskoi) Date: Thu Sep 6 12:02:13 2007 Subject: [Frugalware-git] frugalware-current: e17-news-20070829-1-i686 Message-ID: <20070906100211.D38F313A41FB@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=12272a5db7b8e13284ba0cd2965de2394ad731a4 commit 12272a5db7b8e13284ba0cd2965de2394ad731a4 Author: voroskoi Date: Thu Sep 6 11:56:38 2007 +0200 e17-news-20070829-1-i686 version bump diff --git a/source/e17-extra/e17-news/FrugalBuild b/source/e17-extra/e17-news/FrugalBuild index dd00ad9..d2ae961 100644 --- a/source/e17-extra/e17-news/FrugalBuild +++ b/source/e17-extra/e17-news/FrugalBuild @@ -3,13 +3,13 @@ pkgname=e17-news _F_e17_name=news -pkgver=20070622 +pkgver=20070829 pkgrel=1 pkgdesc="Network monitoring module for E17." -depends=('ewm>=0.16.999.039') +depends=('ewm>=0.16.999.041') groups=('e17-extra' 'e17-misc') archs=('i686') Finclude e17-cvs -sha1sums=('fb67ad7920881a924364328f0b29a89492902d02') +sha1sums=('eac710ea942ff822a953b1db838144a0062e7949') # optimization OK From voroskoi at frugalware.org Thu Sep 6 13:21:28 2007 From: voroskoi at frugalware.org (voroskoi) Date: Thu Sep 6 13:21:31 2007 Subject: [Frugalware-git] frugalware-current: unrar-3.7.7-1-i686 Message-ID: <20070906112128.3834E13A41FB@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=0f50c85e20fae82e0f6799fe1431d99269ba377d commit 0f50c85e20fae82e0f6799fe1431d99269ba377d Author: voroskoi Date: Thu Sep 6 13:16:37 2007 +0200 unrar-3.7.7-1-i686 version bump diff --git a/source/apps-extra/unrar/FrugalBuild b/source/apps-extra/unrar/FrugalBuild index d8f77d1..2fca65c 100644 --- a/source/apps-extra/unrar/FrugalBuild +++ b/source/apps-extra/unrar/FrugalBuild @@ -3,7 +3,7 @@ # Maintainer: voroskoi pkgname=unrar -pkgver=3.7.6 +pkgver=3.7.7 pkgrel=1 pkgdesc="Uncompress rar files" url="http://www.rarlab.com/" @@ -20,7 +20,7 @@ build() { make -f makefile.unix || Fdie Fexerel /usr/bin/unrar } -sha1sums=('b75966a564a799a082d1c95de5e4a44e21cf33d1'\ +sha1sums=('99a93dc0df554b4354d7af758ab487f17f107ade' \ '265050fcbedceafba4ad8aff1cfc4390954e4203') # optimization OK From priyank at frugalware.org Thu Sep 6 15:02:39 2007 From: priyank at frugalware.org (Priyank) Date: Thu Sep 6 15:02:41 2007 Subject: [Frugalware-git] frugalware-current: gfpm-1.0.1-1-i686 Message-ID: <20070906130239.0A4AB13A41FB@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=838db4b04e3cd2444d5a9687b881b2bb7d9d3ef9 commit 838db4b04e3cd2444d5a9687b881b2bb7d9d3ef9 Author: Priyank Date: Wed Sep 5 22:18:46 2007 +0530 gfpm-1.0.1-1-i686 * Version bump * Added a patch to workaround the scriptlet crash bug diff --git a/source/xapps/gfpm/FrugalBuild b/source/xapps/gfpm/FrugalBuild index 2ed27ca..64d3c36 100644 --- a/source/xapps/gfpm/FrugalBuild +++ b/source/xapps/gfpm/FrugalBuild @@ -2,8 +2,8 @@ # Maintainer: Priyank Gosalia pkgname=gfpm -pkgver=1.0.0 -pkgrel=3 +pkgver=1.0.1 +pkgrel=1 pkgdesc="Graphical Frugalware Package Manager" url="http://ftp.frugalware.org/pub/other/gfpm" depends=('glib2' 'gtk+2' 'libglade' 'pacman-g2') @@ -12,24 +12,16 @@ groups=('xapps') archs=('i686' 'x86_64') _F_gnome_iconcache="y" Finclude gnome-scriptlet -_F_desktop_name="Gfpm" -_F_desktop_icon="gfpm" -_F_desktop_exec="gksu gfpm" -_F_desktop_categories="GTK;System;" -_F_desktop_onlyshowin="GNOME;XFCE;" up2date="lynx -dump $url | Flasttar" -source=($url/$pkgname-$pkgver.tar.gz gfpm-kde.desktop) -sha1sums=('2aaaf1633b52391aa298a7debb4580a80eb5fa34' \ - '1d583bd8f54f1804d8c8aa82eb3e599fe8f36d91') +source=($url/$pkgname-$pkgver.tar.gz $pkgname-$pkgver-scriptlet-workaround.diff) +sha1sums=('81d146bd5d01592a3f9cd66227a13303b903d1f2' \ + 'fb2380bb23c2022b2a903a40d3e3c31fcb30b749') signatures=(${source[0]}.asc '') build() { Fbuild Fbuild_gnome_scriptlet - Fdesktop2 - Fmkdir /usr/share/applications/kde - Ffile gfpm-kde.desktop /usr/share/applications/kde/gfpm.desktop } # optimization OK diff --git a/source/xapps/gfpm/gfpm-1.0.1-scriptlet-workaround.diff b/source/xapps/gfpm/gfpm-1.0.1-scriptlet-workaround.diff new file mode 100644 index 0000000..dc76626 --- /dev/null +++ b/source/xapps/gfpm/gfpm-1.0.1-scriptlet-workaround.diff @@ -0,0 +1,14 @@ +diff -Naur gfpm-1.0.1/src/gfpm-progress.c gfpm-1.0.1.new/src/gfpm-progress.c +--- gfpm-1.0.1/src/gfpm-progress.c 2007-09-05 22:01:50.000000000 +0530 ++++ gfpm-1.0.1.new/src/gfpm-progress.c 2007-09-05 22:05:20.000000000 +0530 +@@ -194,8 +194,8 @@ + return; + gtk_widget_hide (rate_box); + gtk_widget_hide (rec_label); +- while (gtk_events_pending ()) +- gtk_main_iteration (); ++ //while (gtk_events_pending ()) ++ // gtk_main_iteration (); + switch (event) + { + case PM_TRANS_EVT_CHECKDEPS_START: diff --git a/source/xapps/gfpm/gfpm-kde.desktop b/source/xapps/gfpm/gfpm-kde.desktop deleted file mode 100644 index 69bcb2f..0000000 --- a/source/xapps/gfpm/gfpm-kde.desktop +++ /dev/null @@ -1,11 +0,0 @@ -[Desktop Entry] -Encoding=UTF-8 -Name=Gfpm -Comment=Graphical Frugalware Package Manager -Exec=kdesu gfpm -Icon=gfpm.png -Terminal=false -Type=Application -Categories=KDE;Application;System; -OnlyShowIn=KDE - From priyank at frugalware.org Thu Sep 6 15:38:54 2007 From: priyank at frugalware.org (Priyank) Date: Thu Sep 6 15:38:56 2007 Subject: [Frugalware-git] gfpm: gfpm-interface: fix segfault when trying to synchronize repositories other than frugalware-current Message-ID: <20070906133854.70FF613A41FB@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gfpm.git;a=commitdiff;h=aa1532ce3b716ebb3e6af0b73274de6ee904f4d5 commit aa1532ce3b716ebb3e6af0b73274de6ee904f4d5 Author: Priyank Date: Thu Sep 6 19:06:14 2007 +0530 gfpm-interface: fix segfault when trying to synchronize repositories other than frugalware-current diff --git a/src/gfpm-interface.c b/src/gfpm-interface.c index f1db65c..3a7f400 100644 --- a/src/gfpm-interface.c +++ b/src/gfpm-interface.c @@ -954,17 +954,19 @@ cb_gfpm_refresh_button_clicked (GtkButton *button, gpointer data) /* check for a pacman-g2 update */ pm_lpkg = pacman_db_readpkg (local_db, "pacman-g2"); pm_spkg = pacman_db_readpkg (sync_db, "pacman-g2"); - if (strcmp((char*)pacman_pkg_getinfo(pm_lpkg, PM_PKG_VERSION), - (char*)pacman_pkg_getinfo(pm_spkg, PM_PKG_VERSION))) + if (pm_lpkg && pm_spkg) { - if (gfpm_question (_("Update pacman-g2"), updatestr) == GTK_RESPONSE_YES) + if (strcmp((char*)pacman_pkg_getinfo(pm_lpkg, PM_PKG_VERSION), + (char*)pacman_pkg_getinfo(pm_spkg, PM_PKG_VERSION))) { - gfpm_package_list_add (GFPM_INSTALL_LIST, "pacman-g2"); - cb_gfpm_apply_btn_clicked (NULL, NULL); - goto cleanup; + if (gfpm_question (_("Update pacman-g2"), updatestr) == GTK_RESPONSE_YES) + { + gfpm_package_list_add (GFPM_INSTALL_LIST, "pacman-g2"); + cb_gfpm_apply_btn_clicked (NULL, NULL); + goto cleanup; + } } } - if (pacman_trans_init(PM_TRANS_TYPE_SYNC, 0, gfpm_progress_event, cb_gfpm_trans_conv, gfpm_progress_install) == -1) { gchar *str; @@ -987,7 +989,7 @@ cb_gfpm_refresh_button_clicked (GtkButton *button, gpointer data) upgrade any package */ if (packages == NULL) { - gfpm_message ("Gfpm", _("No changes to apply.")); + gfpm_message ("No new updates available", _("No new package updates are available. The system is up to date.")); goto cleanup; } From priyank at frugalware.org Thu Sep 6 15:54:39 2007 From: priyank at frugalware.org (Priyank) Date: Thu Sep 6 15:54:41 2007 Subject: [Frugalware-git] frugalware-current: terminal-0.2.6-2-i686 Message-ID: <20070906135439.A7A6313A4205@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=ff563c8fd6abcc56313cd47d41715af6996f6c80 commit ff563c8fd6abcc56313cd47d41715af6996f6c80 Author: Priyank Date: Thu Sep 6 19:22:02 2007 +0530 terminal-0.2.6-2-i686 * added a patch from ubuntu to fix a security issue * closes #2256 diff --git a/source/xfce4/terminal/02_CVE-2007-3770.patch.diff b/source/xfce4/terminal/02_CVE-2007-3770.patch.diff new file mode 100644 index 0000000..5f16646 --- /dev/null +++ b/source/xfce4/terminal/02_CVE-2007-3770.patch.diff @@ -0,0 +1,206 @@ +diff -Nur xfce4-terminal-0.2.6/helpers/balsa.desktop.in xfce4-terminal-0.2.6.new/helpers/balsa.desktop.in +--- xfce4-terminal-0.2.6/helpers/balsa.desktop.in 2007-01-20 06:30:46.000000000 -0800 ++++ xfce4-terminal-0.2.6.new/helpers/balsa.desktop.in 2007-08-13 10:32:15.320271415 -0700 +@@ -5,4 +5,4 @@ + Type=Application + X-Terminal-Binaries=balsa + X-Terminal-Category=MailReader +-X-Terminal-Command=%B -m "mailto:%u" ++X-Terminal-Command=%B -m mailto:%u +diff -Nur xfce4-terminal-0.2.6/helpers/epiphany.desktop.in xfce4-terminal-0.2.6.new/helpers/epiphany.desktop.in +--- xfce4-terminal-0.2.6/helpers/epiphany.desktop.in 2007-01-20 06:30:46.000000000 -0800 ++++ xfce4-terminal-0.2.6.new/helpers/epiphany.desktop.in 2007-08-13 10:32:15.320271415 -0700 +@@ -5,4 +5,4 @@ + Type=Application + X-Terminal-Binaries=epiphany; + X-Terminal-Category=WebBrowser +-X-Terminal-Command=%B "%u" ++X-Terminal-Command=%B %u +diff -Nur xfce4-terminal-0.2.6/helpers/evolution.desktop.in xfce4-terminal-0.2.6.new/helpers/evolution.desktop.in +--- xfce4-terminal-0.2.6/helpers/evolution.desktop.in 2007-01-20 06:30:46.000000000 -0800 ++++ xfce4-terminal-0.2.6.new/helpers/evolution.desktop.in 2007-08-13 10:32:15.316271487 -0700 +@@ -5,4 +5,4 @@ + Type=Application + X-Terminal-Binaries=evolution-2.2;evolution-2.0;evolution-1.6;evolution-1.5;evolution-1.4;evolution; + X-Terminal-Category=MailReader +-X-Terminal-Command=%B "mailto:%u" ++X-Terminal-Command=%B mailto:%u +diff -Nur xfce4-terminal-0.2.6/helpers/exo-open-browser.desktop.in xfce4-terminal-0.2.6.new/helpers/exo-open-browser.desktop.in +--- xfce4-terminal-0.2.6/helpers/exo-open-browser.desktop.in 2007-01-20 06:30:46.000000000 -0800 ++++ xfce4-terminal-0.2.6.new/helpers/exo-open-browser.desktop.in 2007-08-13 10:32:15.320271415 -0700 +@@ -5,4 +5,4 @@ + Type=Application + X-Terminal-Binaries=exo-open + X-Terminal-Category=WebBrowser +-X-Terminal-Command=%B --launch WebBrowser "%u" ++X-Terminal-Command=%B --launch WebBrowser %u +diff -Nur xfce4-terminal-0.2.6/helpers/exo-open-mailer.desktop.in xfce4-terminal-0.2.6.new/helpers/exo-open-mailer.desktop.in +--- xfce4-terminal-0.2.6/helpers/exo-open-mailer.desktop.in 2007-01-20 06:30:46.000000000 -0800 ++++ xfce4-terminal-0.2.6.new/helpers/exo-open-mailer.desktop.in 2007-08-13 10:32:15.316271487 -0700 +@@ -5,4 +5,4 @@ + Type=Application + X-Terminal-Binaries=exo-open + X-Terminal-Category=MailReader +-X-Terminal-Command=%B --launch MailReader "%u" ++X-Terminal-Command=%B --launch MailReader %u +diff -Nur xfce4-terminal-0.2.6/helpers/firefox.desktop.in xfce4-terminal-0.2.6.new/helpers/firefox.desktop.in +--- xfce4-terminal-0.2.6/helpers/firefox.desktop.in 2007-01-20 06:30:46.000000000 -0800 ++++ xfce4-terminal-0.2.6.new/helpers/firefox.desktop.in 2007-08-13 10:32:15.320271415 -0700 +@@ -5,4 +5,4 @@ + Type=Application + X-Terminal-Binaries=firefox;firefox-gtk2;firefox-gtk;mozilla-firefox; + X-Terminal-Category=WebBrowser +-X-Terminal-Command=%B -remote "openURL(%u)" || %B "%u" ++X-Terminal-Command=%B -remote openURL\(%u\) || %B %u +diff -Nur xfce4-terminal-0.2.6/helpers/galeon.desktop.in xfce4-terminal-0.2.6.new/helpers/galeon.desktop.in +--- xfce4-terminal-0.2.6/helpers/galeon.desktop.in 2007-01-20 06:30:46.000000000 -0800 ++++ xfce4-terminal-0.2.6.new/helpers/galeon.desktop.in 2007-08-13 10:32:15.320271415 -0700 +@@ -5,4 +5,4 @@ + Type=Application + X-Terminal-Binaries=galeon; + X-Terminal-Category=WebBrowser +-X-Terminal-Command=%B "%u" ++X-Terminal-Command=%B %u +diff -Nur xfce4-terminal-0.2.6/helpers/kmail.desktop.in xfce4-terminal-0.2.6.new/helpers/kmail.desktop.in +--- xfce4-terminal-0.2.6/helpers/kmail.desktop.in 2007-01-20 06:30:46.000000000 -0800 ++++ xfce4-terminal-0.2.6.new/helpers/kmail.desktop.in 2007-08-13 10:32:15.320271415 -0700 +@@ -5,4 +5,4 @@ + Type=Application + X-Terminal-Binaries=kmail; + X-Terminal-Category=MailReader +-X-Terminal-Command=%B "%u" ++X-Terminal-Command=%B %u +diff -Nur xfce4-terminal-0.2.6/helpers/konqueror.desktop.in xfce4-terminal-0.2.6.new/helpers/konqueror.desktop.in +--- xfce4-terminal-0.2.6/helpers/konqueror.desktop.in 2007-01-20 06:30:46.000000000 -0800 ++++ xfce4-terminal-0.2.6.new/helpers/konqueror.desktop.in 2007-08-13 10:32:19.804190841 -0700 +@@ -5,6 +5,4 @@ + Type=Application + X-Terminal-Binaries=konqueror; + X-Terminal-Category=WebBrowser +-X-Terminal-Command=%B "%u" +- +- ++X-Terminal-Command=%B %u +diff -Nur xfce4-terminal-0.2.6/helpers/lynx.desktop.in xfce4-terminal-0.2.6.new/helpers/lynx.desktop.in +--- xfce4-terminal-0.2.6/helpers/lynx.desktop.in 2007-01-20 06:30:46.000000000 -0800 ++++ xfce4-terminal-0.2.6.new/helpers/lynx.desktop.in 2007-08-13 10:32:15.320271415 -0700 +@@ -5,4 +5,4 @@ + Type=Application + X-Terminal-Binaries=lynx; + X-Terminal-Category=WebBrowser +-X-Terminal-Command=Terminal -x %B "%u" ++X-Terminal-Command=Terminal -x %B %u +diff -Nur xfce4-terminal-0.2.6/helpers/mozilla-browser.desktop.in xfce4-terminal-0.2.6.new/helpers/mozilla-browser.desktop.in +--- xfce4-terminal-0.2.6/helpers/mozilla-browser.desktop.in 2007-01-20 06:30:46.000000000 -0800 ++++ xfce4-terminal-0.2.6.new/helpers/mozilla-browser.desktop.in 2007-08-13 10:32:15.320271415 -0700 +@@ -5,4 +5,4 @@ + Type=Application + X-Terminal-Binaries=mozilla;mozilla-gtk2;mozilla-gtk; + X-Terminal-Category=WebBrowser +-X-Terminal-Command=%B -remote "openURL(%u,new-window)" || %B "%u" ++X-Terminal-Command=%B -remote openURL\(%u,new-window\) || %B %u +diff -Nur xfce4-terminal-0.2.6/helpers/mozilla-mailer.desktop.in xfce4-terminal-0.2.6.new/helpers/mozilla-mailer.desktop.in +--- xfce4-terminal-0.2.6/helpers/mozilla-mailer.desktop.in 2007-01-20 06:30:46.000000000 -0800 ++++ xfce4-terminal-0.2.6.new/helpers/mozilla-mailer.desktop.in 2007-08-13 10:32:15.316271487 -0700 +@@ -5,4 +5,4 @@ + Type=Application + X-Terminal-Binaries=mozilla;mozilla-gtk2;mozilla-gtk; + X-Terminal-Category=MailReader +-X-Terminal-Command=%B -remote "mailto(%u)" || %B -compose "mailto:%u" ++X-Terminal-Command=%B -remote mailto\(%u\) || %B -compose mailto:%u +diff -Nur xfce4-terminal-0.2.6/helpers/mutt.desktop.in xfce4-terminal-0.2.6.new/helpers/mutt.desktop.in +--- xfce4-terminal-0.2.6/helpers/mutt.desktop.in 2007-01-20 06:30:46.000000000 -0800 ++++ xfce4-terminal-0.2.6.new/helpers/mutt.desktop.in 2007-08-13 10:32:15.320271415 -0700 +@@ -5,4 +5,4 @@ + Type=Application + X-Terminal-Binaries=mutt; + X-Terminal-Category=MailReader +-X-Terminal-Command=Terminal -x %B "%u" ++X-Terminal-Command=Terminal -x %B %u +diff -Nur xfce4-terminal-0.2.6/helpers/opera-browser.desktop.in xfce4-terminal-0.2.6.new/helpers/opera-browser.desktop.in +--- xfce4-terminal-0.2.6/helpers/opera-browser.desktop.in 2007-01-20 06:30:46.000000000 -0800 ++++ xfce4-terminal-0.2.6.new/helpers/opera-browser.desktop.in 2007-08-13 10:32:15.316271487 -0700 +@@ -5,4 +5,4 @@ + Type=Application + X-Terminal-Binaries=opera; + X-Terminal-Category=WebBrowser +-X-Terminal-Command=%B -remote "openURL(%u,new-window)" || %B "%u" ++X-Terminal-Command=%B -remote openURL\(%u,new-window\) || %B %u +diff -Nur xfce4-terminal-0.2.6/helpers/opera-mailer.desktop.in xfce4-terminal-0.2.6.new/helpers/opera-mailer.desktop.in +--- xfce4-terminal-0.2.6/helpers/opera-mailer.desktop.in 2007-01-20 06:30:46.000000000 -0800 ++++ xfce4-terminal-0.2.6.new/helpers/opera-mailer.desktop.in 2007-08-13 10:32:15.320271415 -0700 +@@ -5,4 +5,4 @@ + Type=Application + X-Terminal-Binaries=opera; + X-Terminal-Category=MailReader +-X-Terminal-Command=%B -remote "openURL(mailto:%u)" || %B "mailto:%u" ++X-Terminal-Command=%B -remote openURL\(mailto:%u\) || %B mailto:%u +diff -Nur xfce4-terminal-0.2.6/helpers/sensible-browser.desktop.in xfce4-terminal-0.2.6.new/helpers/sensible-browser.desktop.in +--- xfce4-terminal-0.2.6/helpers/sensible-browser.desktop.in 2007-01-20 06:30:46.000000000 -0800 ++++ xfce4-terminal-0.2.6.new/helpers/sensible-browser.desktop.in 2007-08-13 10:32:15.320271415 -0700 +@@ -5,4 +5,4 @@ + Type=Application + X-Terminal-Binaries=sensible-browser + X-Terminal-Category=WebBrowser +-X-Terminal-Command=%B "%u" ++X-Terminal-Command=%B %u +diff -Nur xfce4-terminal-0.2.6/helpers/sylpheed-claws.desktop.in xfce4-terminal-0.2.6.new/helpers/sylpheed-claws.desktop.in +--- xfce4-terminal-0.2.6/helpers/sylpheed-claws.desktop.in 2007-01-20 06:30:46.000000000 -0800 ++++ xfce4-terminal-0.2.6.new/helpers/sylpheed-claws.desktop.in 2007-08-13 10:32:15.320271415 -0700 +@@ -7,4 +7,4 @@ + StartupNotify=true + X-Terminal-Binaries=sylpheed-claws; + X-Terminal-Category=MailReader +-X-Terminal-Command=%B --compose "%u" ++X-Terminal-Command=%B --compose %u +diff -Nur xfce4-terminal-0.2.6/helpers/thunderbird.desktop.in xfce4-terminal-0.2.6.new/helpers/thunderbird.desktop.in +--- xfce4-terminal-0.2.6/helpers/thunderbird.desktop.in 2007-01-20 06:30:46.000000000 -0800 ++++ xfce4-terminal-0.2.6.new/helpers/thunderbird.desktop.in 2007-08-13 10:32:15.320271415 -0700 +@@ -5,4 +5,4 @@ + Type=Application + X-Terminal-Binaries=thunderbird;thunderbird-gtk2;thunderbird-gtk;mozilla-thunderbird; + X-Terminal-Category=MailReader +-X-Terminal-Command=%B -remote "mailto(%u)" || %B -compose "mailto:%u" ++X-Terminal-Command=%B -remote mailto\(%u\) || %B -compose mailto:%u +diff -Nur xfce4-terminal-0.2.6/terminal/terminal-helper.c xfce4-terminal-0.2.6.new/terminal/terminal-helper.c +--- xfce4-terminal-0.2.6/terminal/terminal-helper.c 2007-01-20 06:30:51.000000000 -0800 ++++ xfce4-terminal-0.2.6.new/terminal/terminal-helper.c 2007-08-13 10:32:15.324271343 -0700 +@@ -349,6 +349,7 @@ + gchar *argv[4]; + gchar *command; + gchar *t; ++ gchar *escaped; + guint n; + + g_return_if_fail (TERMINAL_IS_HELPER (helper)); +@@ -359,6 +360,8 @@ + if (s[0] == '%' && g_ascii_tolower (s[1]) == 'u') + ++n; + ++ escaped = g_shell_quote (uri); ++ + if (n > 0) + { + command = g_new (gchar, strlen (helper->command) + n * strlen (uri) + 1); +@@ -366,7 +369,7 @@ + { + if (s[0] == '%' && g_ascii_tolower (s[1]) == 'u') + { +- for (u = uri; *u != '\0'; ) ++ for (u = escaped; *u != '\0'; ) + *t++ = *u++; + s += 2; + } +@@ -379,9 +382,11 @@ + } + else + { +- command = g_strconcat (helper->command, " ", uri, NULL); ++ command = g_strconcat (helper->command, " ", escaped, NULL); + } + ++ g_free (escaped); ++ + argv[0] = "/bin/sh"; + argv[1] = "-c"; + argv[2] = command; diff --git a/source/xfce4/terminal/FrugalBuild b/source/xfce4/terminal/FrugalBuild index 0fdd9c2..b8439c1 100644 --- a/source/xfce4/terminal/FrugalBuild +++ b/source/xfce4/terminal/FrugalBuild @@ -4,9 +4,9 @@ pkgname=terminal _F_xfce_name=Terminal pkgver=0.2.6 -pkgrel=1 +pkgrel=2 pkgdesc="A modern virtual terminal emulator for Xfce." -makedepends=('xfce4-dev-tools>=4.4.0' 'intltool') +makedepends=('xfce4-dev-tools>=4.4.0' 'intltool') depends=('libexo>=0.3.2' 'vte' 'dbus-glib>=0.71') groups=('xfce4' 'xfce4-core') archs=('i686' 'x86_64') @@ -14,6 +14,8 @@ _F_gnome_iconcache="y" options=('scriptlet') Finclude xfce4 gnome-scriptlet _F_cd_path="$_F_xfce_name-$pkgver" -sha1sums=('8851179492c4768a1a53d2424d7a7c8b1a873c58') +source=(${source} 02_CVE-2007-3770.patch.diff) +sha1sums=('8851179492c4768a1a53d2424d7a7c8b1a873c58' \ + '8b2aeb8cbd0dd6e1bb88a38ae205a0249625095e') # optimization OK From priyank at frugalware.org Thu Sep 6 16:20:44 2007 From: priyank at frugalware.org (Priyank) Date: Thu Sep 6 16:20:46 2007 Subject: [Frugalware-git] fw-control-center: gnetconfig-mcs-plugin: Initial import Message-ID: <20070906142044.6151F13A421C@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=fw-control-center.git;a=commitdiff;h=4e230dbe112f49ce5d9c8e5c7eb9ce0b2e6cf103 commit 4e230dbe112f49ce5d9c8e5c7eb9ce0b2e6cf103 Author: Priyank Date: Thu Sep 6 19:45:47 2007 +0530 gnetconfig-mcs-plugin: Initial import * This plugin adds a gnetconfig icon to Xfce control center so that users can tweak their network settings directly from the Xfce control center. diff --git a/gnetconfig-mcs-plugin/AUTHORS b/gnetconfig-mcs-plugin/AUTHORS new file mode 100644 index 0000000..8a60ed7 --- /dev/null +++ b/gnetconfig-mcs-plugin/AUTHORS @@ -0,0 +1,7 @@ +Author +======= +Priyank Gosalia + +Original Author +=============== +Bernhard Walle diff --git a/gnetconfig-mcs-plugin/COPYING b/gnetconfig-mcs-plugin/COPYING new file mode 100644 index 0000000..623b625 --- /dev/null +++ b/gnetconfig-mcs-plugin/COPYING @@ -0,0 +1,340 @@ + GNU GENERAL PUBLIC LICENSE + Version 2, June 1991 + + Copyright (C) 1989, 1991 Free Software Foundation, Inc. + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The licenses for most software are designed to take away your +freedom to share and change it. By contrast, the GNU General Public +License is intended to guarantee your freedom to share and change free +software--to make sure the software is free for all its users. This +General Public License applies to most of the Free Software +Foundation's software and to any other program whose authors commit to +using it. (Some other Free Software Foundation software is covered by +the GNU Library General Public License instead.) You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +this service if you wish), that you receive source code or can get it +if you want it, that you can change the software or use pieces of it +in new free programs; and that you know you can do these things. + + To protect your rights, we need to make restrictions that forbid +anyone to deny you these rights or to ask you to surrender the rights. +These restrictions translate to certain responsibilities for you if you +distribute copies of the software, or if you modify it. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must give the recipients all the rights that +you have. You must make sure that they, too, receive or can get the +source code. And you must show them these terms so they know their +rights. + + We protect your rights with two steps: (1) copyright the software, and +(2) offer you this license which gives you legal permission to copy, +distribute and/or modify the software. + + Also, for each author's protection and ours, we want to make certain +that everyone understands that there is no warranty for this free +software. If the software is modified by someone else and passed on, we +want its recipients to know that what they have is not the original, so +that any problems introduced by others will not reflect on the original +authors' reputations. + + Finally, any free program is threatened constantly by software +patents. We wish to avoid the danger that redistributors of a free +program will individually obtain patent licenses, in effect making the +program proprietary. To prevent this, we have made it clear that any +patent must be licensed for everyone's free use or not licensed at all. + + The precise terms and conditions for copying, distribution and +modification follow. + + GNU GENERAL PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License applies to any program or other work which contains +a notice placed by the copyright holder saying it may be distributed +under the terms of this General Public License. The "Program", below, +refers to any such program or work, and a "work based on the Program" +means either the Program or any derivative work under copyright law: +that is to say, a work containing the Program or a portion of it, +either verbatim or with modifications and/or translated into another +language. (Hereinafter, translation is included without limitation in +the term "modification".) Each licensee is addressed as "you". + +Activities other than copying, distribution and modification are not +covered by this License; they are outside its scope. The act of +running the Program is not restricted, and the output from the Program +is covered only if its contents constitute a work based on the +Program (independent of having been made by running the Program). +Whether that is true depends on what the Program does. + + 1. You may copy and distribute verbatim copies of the Program's +source code as you receive it, in any medium, provided that you +conspicuously and appropriately publish on each copy an appropriate +copyright notice and disclaimer of warranty; keep intact all the +notices that refer to this License and to the absence of any warranty; +and give any other recipients of the Program a copy of this License +along with the Program. + +You may charge a fee for the physical act of transferring a copy, and +you may at your option offer warranty protection in exchange for a fee. + + 2. You may modify your copy or copies of the Program or any portion +of it, thus forming a work based on the Program, and copy and +distribute such modifications or work under the terms of Section 1 +above, provided that you also meet all of these conditions: + + a) You must cause the modified files to carry prominent notices + stating that you changed the files and the date of any change. + + b) You must cause any work that you distribute or publish, that in + whole or in part contains or is derived from the Program or any + part thereof, to be licensed as a whole at no charge to all third + parties under the terms of this License. + + c) If the modified program normally reads commands interactively + when run, you must cause it, when started running for such + interactive use in the most ordinary way, to print or display an + announcement including an appropriate copyright notice and a + notice that there is no warranty (or else, saying that you provide + a warranty) and that users may redistribute the program under + these conditions, and telling the user how to view a copy of this + License. (Exception: if the Program itself is interactive but + does not normally print such an announcement, your work based on + the Program is not required to print an announcement.) + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the Program, +and can be reasonably considered independent and separate works in +themselves, then this License, and its terms, do not apply to those +sections when you distribute them as separate works. But when you +distribute the same sections as part of a whole which is a work based +on the Program, the distribution of the whole must be on the terms of +this License, whose permissions for other licensees extend to the +entire whole, and thus to each and every part regardless of who wrote it. + +Thus, it is not the intent of this section to claim rights or contest +your rights to work written entirely by you; rather, the intent is to +exercise the right to control the distribution of derivative or +collective works based on the Program. + +In addition, mere aggregation of another work not based on the Program +with the Program (or with a work based on the Program) on a volume of +a storage or distribution medium does not bring the other work under +the scope of this License. + + 3. You may copy and distribute the Program (or a work based on it, +under Section 2) in object code or executable form under the terms of +Sections 1 and 2 above provided that you also do one of the following: + + a) Accompany it with the complete corresponding machine-readable + source code, which must be distributed under the terms of Sections + 1 and 2 above on a medium customarily used for software interchange; or, + + b) Accompany it with a written offer, valid for at least three + years, to give any third party, for a charge no more than your + cost of physically performing source distribution, a complete + machine-readable copy of the corresponding source code, to be + distributed under the terms of Sections 1 and 2 above on a medium + customarily used for software interchange; or, + + c) Accompany it with the information you received as to the offer + to distribute corresponding source code. (This alternative is + allowed only for noncommercial distribution and only if you + received the program in object code or executable form with such + an offer, in accord with Subsection b above.) + +The source code for a work means the preferred form of the work for +making modifications to it. For an executable work, complete source +code means all the source code for all modules it contains, plus any +associated interface definition files, plus the scripts used to +control compilation and installation of the executable. However, as a +special exception, the source code distributed need not include +anything that is normally distributed (in either source or binary +form) with the major components (compiler, kernel, and so on) of the +operating system on which the executable runs, unless that component +itself accompanies the executable. + +If distribution of executable or object code is made by offering +access to copy from a designated place, then offering equivalent +access to copy the source code from the same place counts as +distribution of the source code, even though third parties are not +compelled to copy the source along with the object code. + + 4. You may not copy, modify, sublicense, or distribute the Program +except as expressly provided under this License. Any attempt +otherwise to copy, modify, sublicense or distribute the Program is +void, and will automatically terminate your rights under this License. +However, parties who have received copies, or rights, from you under +this License will not have their licenses terminated so long as such +parties remain in full compliance. + + 5. You are not required to accept this License, since you have not +signed it. However, nothing else grants you permission to modify or +distribute the Program or its derivative works. These actions are +prohibited by law if you do not accept this License. Therefore, by +modifying or distributing the Program (or any work based on the +Program), you indicate your acceptance of this License to do so, and +all its terms and conditions for copying, distributing or modifying +the Program or works based on it. + + 6. Each time you redistribute the Program (or any work based on the +Program), the recipient automatically receives a license from the +original licensor to copy, distribute or modify the Program subject to +these terms and conditions. You may not impose any further +restrictions on the recipients' exercise of the rights granted herein. +You are not responsible for enforcing compliance by third parties to +this License. + + 7. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), +conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot +distribute so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you +may not distribute the Program at all. For example, if a patent +license would not permit royalty-free redistribution of the Program by +all those who receive copies directly or indirectly through you, then +the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Program. + +If any portion of this section is held invalid or unenforceable under +any particular circumstance, the balance of the section is intended to +apply and the section as a whole is intended to apply in other +circumstances. + +It is not the purpose of this section to induce you to infringe any +patents or other property right claims or to contest validity of any +such claims; this section has the sole purpose of protecting the +integrity of the free software distribution system, which is +implemented by public license practices. Many people have made +generous contributions to the wide range of software distributed +through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing +to distribute software through any other system and a licensee cannot +impose that choice. + +This section is intended to make thoroughly clear what is believed to +be a consequence of the rest of this License. + + 8. If the distribution and/or use of the Program is restricted in +certain countries either by patents or by copyrighted interfaces, the +original copyright holder who places the Program under this License +may add an explicit geographical distribution limitation excluding +those countries, so that distribution is permitted only in or among +countries not thus excluded. In such case, this License incorporates +the limitation as if written in the body of this License. + + 9. The Free Software Foundation may publish revised and/or new versions +of the General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + +Each version is given a distinguishing version number. If the Program +specifies a version number of this License which applies to it and "any +later version", you have the option of following the terms and conditions +either of that version or of any later version published by the Free +Software Foundation. If the Program does not specify a version number of +this License, you may choose any version ever published by the Free Software +Foundation. + + 10. If you wish to incorporate parts of the Program into other free +programs whose distribution conditions are different, write to the author +to ask for permission. For software which is copyrighted by the Free +Software Foundation, write to the Free Software Foundation; we sometimes +make exceptions for this. Our decision will be guided by the two goals +of preserving the free status of all derivatives of our free software and +of promoting the sharing and reuse of software generally. + + NO WARRANTY + + 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY +FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN +OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES +PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED +OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS +TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE +PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, +REPAIR OR CORRECTION. + + 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR +REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, +INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING +OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED +TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY +YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER +PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE +POSSIBILITY OF SUCH DAMAGES. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +convey the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + + +Also add information on how to contact you by electronic and paper mail. + +If the program is interactive, make it output a short notice like this +when it starts in an interactive mode: + + Gnomovision version 69, Copyright (C) year name of author + Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, the commands you use may +be called something other than `show w' and `show c'; they could even be +mouse-clicks or menu items--whatever suits your program. + +You should also get your employer (if you work as a programmer) or your +school, if any, to sign a "copyright disclaimer" for the program, if +necessary. Here is a sample; alter the names: + + Yoyodyne, Inc., hereby disclaims all copyright interest in the program + `Gnomovision' (which makes passes at compilers) written by James Hacker. + + , 1 April 1989 + Ty Coon, President of Vice + +This General Public License does not permit incorporating your program into +proprietary programs. If your program is a subroutine library, you may +consider it more useful to permit linking proprietary applications with the +library. If this is what you want to do, use the GNU Library General +Public License instead of this License. diff --git a/gnetconfig-mcs-plugin/ChangeLog b/gnetconfig-mcs-plugin/ChangeLog new file mode 100644 index 0000000..e69de29 diff --git a/gnetconfig-mcs-plugin/INSTALL b/gnetconfig-mcs-plugin/INSTALL new file mode 100644 index 0000000..5458714 --- /dev/null +++ b/gnetconfig-mcs-plugin/INSTALL @@ -0,0 +1,234 @@ +Installation Instructions +************************* + +Copyright (C) 1994, 1995, 1996, 1999, 2000, 2001, 2002, 2004, 2005, +2006 Free Software Foundation, Inc. + +This file is free documentation; the Free Software Foundation gives +unlimited permission to copy, distribute and modify it. + +Basic Installation +================== + +Briefly, the shell commands `./configure; make; make install' should +configure, build, and install this package. The following +more-detailed instructions are generic; see the `README' file for +instructions specific to this package. + + The `configure' shell script attempts to guess correct values for +various system-dependent variables used during compilation. It uses +those values to create a `Makefile' in each directory of the package. +It may also create one or more `.h' files containing system-dependent +definitions. Finally, it creates a shell script `config.status' that +you can run in the future to recreate the current configuration, and a +file `config.log' containing compiler output (useful mainly for +debugging `configure'). + + It can also use an optional file (typically called `config.cache' +and enabled with `--cache-file=config.cache' or simply `-C') that saves +the results of its tests to speed up reconfiguring. Caching is +disabled by default to prevent problems with accidental use of stale +cache files. + + If you need to do unusual things to compile the package, please try +to figure out how `configure' could check whether to do them, and mail +diffs or instructions to the address given in the `README' so they can +be considered for the next release. If you are using the cache, and at +some point `config.cache' contains results you don't want to keep, you +may remove or edit it. + + The file `configure.ac' (or `configure.in') is used to create +`configure' by a program called `autoconf'. You need `configure.ac' if +you want to change it or regenerate `configure' using a newer version +of `autoconf'. + +The simplest way to compile this package is: + + 1. `cd' to the directory containing the package's source code and type + `./configure' to configure the package for your system. + + Running `configure' might take a while. While running, it prints + some messages telling which features it is checking for. + + 2. Type `make' to compile the package. + + 3. Optionally, type `make check' to run any self-tests that come with + the package. + + 4. Type `make install' to install the programs and any data files and + documentation. + + 5. You can remove the program binaries and object files from the + source code directory by typing `make clean'. To also remove the + files that `configure' created (so you can compile the package for + a different kind of computer), type `make distclean'. There is + also a `make maintainer-clean' target, but that is intended mainly + for the package's developers. If you use it, you may have to get + all sorts of other programs in order to regenerate files that came + with the distribution. + +Compilers and Options +===================== + +Some systems require unusual options for compilation or linking that the +`configure' script does not know about. Run `./configure --help' for +details on some of the pertinent environment variables. + + You can give `configure' initial values for configuration parameters +by setting variables in the command line or in the environment. Here +is an example: + + ./configure CC=c99 CFLAGS=-g LIBS=-lposix + + *Note Defining Variables::, for more details. + +Compiling For Multiple Architectures +==================================== + +You can compile the package for more than one kind of computer at the +same time, by placing the object files for each architecture in their +own directory. To do this, you can use GNU `make'. `cd' to the +directory where you want the object files and executables to go and run +the `configure' script. `configure' automatically checks for the +source code in the directory that `configure' is in and in `..'. + + With a non-GNU `make', it is safer to compile the package for one +architecture at a time in the source code directory. After you have +installed the package for one architecture, use `make distclean' before +reconfiguring for another architecture. + +Installation Names +================== + +By default, `make install' installs the package's commands under +`/usr/local/bin', include files under `/usr/local/include', etc. You +can specify an installation prefix other than `/usr/local' by giving +`configure' the option `--prefix=PREFIX'. + + You can specify separate installation prefixes for +architecture-specific files and architecture-independent files. If you +pass the option `--exec-prefix=PREFIX' to `configure', the package uses +PREFIX as the prefix for installing programs and libraries. +Documentation and other data files still use the regular prefix. + + In addition, if you use an unusual directory layout you can give +options like `--bindir=DIR' to specify different values for particular +kinds of files. Run `configure --help' for a list of the directories +you can set and what kinds of files go in them. + + If the package supports it, you can cause programs to be installed +with an extra prefix or suffix on their names by giving `configure' the +option `--program-prefix=PREFIX' or `--program-suffix=SUFFIX'. + +Optional Features +================= + +Some packages pay attention to `--enable-FEATURE' options to +`configure', where FEATURE indicates an optional part of the package. +They may also pay attention to `--with-PACKAGE' options, where PACKAGE +is something like `gnu-as' or `x' (for the X Window System). The +`README' should mention any `--enable-' and `--with-' options that the +package recognizes. + + For packages that use the X Window System, `configure' can usually +find the X include and library files automatically, but if it doesn't, +you can use the `configure' options `--x-includes=DIR' and +`--x-libraries=DIR' to specify their locations. + +Specifying the System Type +========================== + +There may be some features `configure' cannot figure out automatically, +but needs to determine by the type of machine the package will run on. +Usually, assuming the package is built to be run on the _same_ +architectures, `configure' can figure that out, but if it prints a +message saying it cannot guess the machine type, give it the +`--build=TYPE' option. TYPE can either be a short name for the system +type, such as `sun4', or a canonical name which has the form: + + CPU-COMPANY-SYSTEM + +where SYSTEM can have one of these forms: + + OS KERNEL-OS + + See the file `config.sub' for the possible values of each field. If +`config.sub' isn't included in this package, then this package doesn't +need to know the machine type. + + If you are _building_ compiler tools for cross-compiling, you should +use the option `--target=TYPE' to select the type of system they will +produce code for. + + If you want to _use_ a cross compiler, that generates code for a +platform different from the build platform, you should specify the +"host" platform (i.e., that on which the generated programs will +eventually be run) with `--host=TYPE'. + +Sharing Defaults +================ + +If you want to set default values for `configure' scripts to share, you +can create a site shell script called `config.site' that gives default +values for variables like `CC', `cache_file', and `prefix'. +`configure' looks for `PREFIX/share/config.site' if it exists, then +`PREFIX/etc/config.site' if it exists. Or, you can set the +`CONFIG_SITE' environment variable to the location of the site script. +A warning: not all `configure' scripts look for a site script. + +Defining Variables +================== + +Variables not defined in a site shell script can be set in the +environment passed to `configure'. However, some packages may run +configure again during the build, and the customized values of these +variables may be lost. In order to avoid this problem, you should set +them in the `configure' command line, using `VAR=value'. For example: + + ./configure CC=/usr/local2/bin/gcc + +causes the specified `gcc' to be used as the C compiler (unless it is +overridden in the site shell script). + +Unfortunately, this technique does not work for `CONFIG_SHELL' due to +an Autoconf bug. Until the bug is fixed you can use this workaround: + + CONFIG_SHELL=/bin/bash /bin/bash ./configure CONFIG_SHELL=/bin/bash + +`configure' Invocation +====================== + +`configure' recognizes the following options to control how it operates. + +`--help' +`-h' + Print a summary of the options to `configure', and exit. + +`--version' +`-V' + Print the version of Autoconf used to generate the `configure' + script, and exit. + +`--cache-file=FILE' + Enable the cache: use and save the results of the tests in FILE, + traditionally `config.cache'. FILE defaults to `/dev/null' to + disable caching. + +`--config-cache' +`-C' + Alias for `--cache-file=config.cache'. + +`--quiet' +`--silent' +`-q' + Do not print messages saying which checks are being made. To + suppress all normal output, redirect it to `/dev/null' (any error + messages will still be shown). + +`--srcdir=DIR' + Look for the package's source code in directory DIR. Usually + `configure' can determine that directory automatically. + +`configure' also accepts some other, not widely useful, options. Run +`configure --help' for more details. + diff --git a/gnetconfig-mcs-plugin/Makefile.am b/gnetconfig-mcs-plugin/Makefile.am new file mode 100644 index 0000000..c3961c8 --- /dev/null +++ b/gnetconfig-mcs-plugin/Makefile.am @@ -0,0 +1,25 @@ +# $Id: Makefile.am 2284 2006-12-29 14:39:00Z pollux $ + +SUBDIRS = \ + icons \ + po \ + src + +AUTOMAKE_OPTIONS = \ + 1.8 \ + dist-bzip2 + +distclean-local: + rm -rf *.cache *~ + +EXTRA_DIST = \ + intltool-extract.in \ + intltool-merge.in \ + intltool-update.in + +DISTCLEANFILES = \ + intltool-extract \ + intltool-merge \ + intltool-update + +# vi:set ts=8 sw=8 noet ai nocindent syntax=automake: diff --git a/gnetconfig-mcs-plugin/NEWS b/gnetconfig-mcs-plugin/NEWS new file mode 100644 index 0000000..c6a967f --- /dev/null +++ b/gnetconfig-mcs-plugin/NEWS @@ -0,0 +1,3 @@ +VERSION DESCRIPTION +------------------------------------------------------------------------------------------ +0.1.0 (2007-09-06) - Initial Release diff --git a/gnetconfig-mcs-plugin/README b/gnetconfig-mcs-plugin/README new file mode 100644 index 0000000..d53ca03 --- /dev/null +++ b/gnetconfig-mcs-plugin/README @@ -0,0 +1,16 @@ +gnetconfig mcs plugin +---------------------- + +This plugin adds a Gnetconfig icon to the XFCE settings manager. +This will allow you to tweak your network settings directly from Xfce +settings manager. +It requires gksu to get superuser permissions. If gksu is not installed, +it uses xterm as a prompt for the root password. + +Author +------- +Priyank M. Gosalia + +Original Author +---------------- +Bernhard Walle diff --git a/gnetconfig-mcs-plugin/autoclean.sh b/gnetconfig-mcs-plugin/autoclean.sh new file mode 100755 index 0000000..a545666 --- /dev/null +++ b/gnetconfig-mcs-plugin/autoclean.sh @@ -0,0 +1,29 @@ +#!/bin/sh -xu + +[ -f Makefile ] && make distclean +rm -rf autom4te.cache +rm -rf Makefile +rm -rf Makefile.in +rm -rf configure +rm -rf config.* +rm -rf stamp* +rm -rf depcomp +rm -rf install-sh +rm -rf missing +rm -rf src/Makefile +rm -rf src/Makefile.in +rm -rf aclocal.m4 +rm -rf ltmain.sh +rm -rf compile +rm -rf libtool +rm -rf mkinstalldirs +rm -rf config.rpath +rm -rf intltool-extract +rm -rf intltool-merge +rm -rf intltool-update +rm -rf po/stamp-it +rm -rf intltool*.in +rm -rf po/Makefile.in.in +rm -rf po/Makefile.in +rm -rf po/Makefile +rm -rf po/POTFILES diff --git a/gnetconfig-mcs-plugin/autogen.sh b/gnetconfig-mcs-plugin/autogen.sh new file mode 100755 index 0000000..07cbb20 --- /dev/null +++ b/gnetconfig-mcs-plugin/autogen.sh @@ -0,0 +1,72 @@ +#!/bin/sh -e + +gen_pot() +{ + cd po/ + mv Makevars Makevars.tmp + cp /usr/bin/intltool-extract ./ + intltool-update --pot --gettext-package=gnetconfig-mcs-plugin + rm intltool-extract + mv Makevars.tmp Makevars + cd - >/dev/null +} + +import_pootle() +{ + po_dir=~/git/translations/po + if [ -d $po_dir ]; then + : > po/LINGUAS + for i in $(/bin/ls $po_dir/fwcontrolcenter) + do + [ -e $po_dir/fwcontrolcenter/$i/gnetconfig.po ] || continue + cp $po_dir/fwcontrolcenter/$i/gnetconfig.po po/$i.po + if msgfmt -c --statistics -o po/$i.gmo po/$i.po; then + echo $i >> po/LINGUAS + else + echo "WARNING: po/$i.po will break your build!" + fi + done + else + echo "WARNING: no po files will be used" + fi +} + +cd `dirname $0` + +if [ "$1" == "--pot-only" ]; then + gen_pot + exit 0 +fi + +if [ "$1" == "--dist" ]; then + ver=`grep AC_INIT configure.ac|sed 's/.*, \([0-9\.]*\), .*/\1/'` + git-archive --format=tar --prefix=gnetconfig-mcs-plugin-$ver/ HEAD | tar xf - + git log --no-merges |git name-rev --tags --stdin > gnetconfig-mcs-plugin-$ver/ChangeLog + cd gnetconfig-mcs-plugin-$ver + ./autogen.sh --git + cd .. + tar czf gnetconfig-mcs-plugin-$ver.tar.gz gnetconfig-mcs-plugin-$ver + rm -rf gnetconfig-$ver + gpg --comment "See http://ftp.frugalware.org/pub/README.GPG for info" \ + -ba -u 20F55619 gnetconfig-$ver.tar.gz + #mv gnetconfig-$ver.tar.gz.asc ../.. + exit 0 +fi + +cat /usr/share/aclocal/libtool.m4 >> aclocal.m4 + +intltoolize -c -f --automake +import_pootle +gen_pot +libtoolize -f -c +aclocal --force +autoheader -f +autoconf -f +cp -f $(dirname $(which automake))/../share/automake/mkinstalldirs ./ +cp -f $(dirname $(which automake))/../share/gettext/config.rpath ./ +xdt-autogen +automake -a -c --gnu --foreign +if [ "$1" == "--git" ]; then + rm -rf autom4te.cache +fi + diff --git a/gnetconfig-mcs-plugin/configure.in b/gnetconfig-mcs-plugin/configure.in new file mode 100644 index 0000000..f0887b8 --- /dev/null +++ b/gnetconfig-mcs-plugin/configure.in @@ -0,0 +1,77 @@ +dnl Copyright (c) 2006 Jean-François Wauthy +dnl + +dnl *************************** +dnl *** Version information *** +dnl *************************** +m4_define([gnetconfig_mcs_plugin_version_major], [0]) +m4_define([gnetconfig_mcs_plugin_version_minor], [1]) +m4_define([gnetconfig_mcs_plugin_version_micro], [0]) +m4_define([gnetconfig_mcs_plugin_version_nano], []) +m4_define([gnetconfig_mcs_plugin_version_tag], []) +m4_define([gnetconfig_mcs_plugin_version], [gnetconfig_mcs_plugin_version_major().gnetconfig_mcs_plugin_version_minor().gnetconfig_mcs_plugin_version_micro()ifelse(gnetconfig_mcs_plugin_version_nano(), [], [], [.gnetconfig_mcs_plugin_version_nano()])ifelse(gnetconfig_mcs_plugin_version_tag(), [svn], [gnetconfig_mcs_plugin_version_tag()-gnetconfig_mcs_plugin_version_build()], [gnetconfig_mcs_plugin_version_tag()])]) + + +dnl # DO NOT MODIFY ANYTHING BELOW THIS LINE, UNLESS YOU KNOW WHAT +dnl # YOU ARE DOING. + + +dnl ******************************************* +dnl *** Debugging support for SVN snapshots *** +dnl ******************************************* +m4_define([gnetconfig_mcs_plugin_debug_default], [ifelse(gnetconfig_mcs_plugin_version_tag(), [svn], [yes], [minimum])]) + +dnl *************************** +dnl *** Initialize autoconf *** +dnl *************************** +AC_COPYRIGHT([Copyright (c) 2007 Priyank Gosalia ]) +AC_INIT([gnetconfig-mcs-plugin], [gnetconfig_mcs_plugin_version], [priyankmg@gmail.com]) +AC_PREREQ([2.50]) +AC_REVISION([$Id: configure.in.in 2292 2007-01-01 16:46:03Z pollux $]) +AC_PROG_MAKE_SET() + +dnl *************************** +dnl *** Initialize automake *** +dnl *************************** +AM_INIT_AUTOMAKE([AC_PACKAGE_TARNAME()], [AC_PACKAGE_VERSION()]) +AM_CONFIG_HEADER([config.h]) +AM_MAINTAINER_MODE() + +dnl ******************************** +dnl *** Check for basic programs *** +dnl ******************************** +AC_PROG_CC() +AC_PROG_INSTALL() +AC_PROG_INTLTOOL([0.31], [no-xml]) +AC_PROG_LIBTOOL() + +dnl *************************************** +dnl *** Check for standard header files *** +dnl *************************************** +AC_HEADER_STDC() + +dnl ****************************** +dnl *** Check for i18n support *** +dnl ****************************** +XDT_I18N() + +dnl *********************************** +dnl *** Check for required packages *** +dnl *********************************** +XDT_CHECK_PACKAGE([GTK], [gtk+-2.0], [2.6.0]) +XDT_CHECK_PACKAGE([LIBXFCEGUI4], [libxfcegui4-1.0], [4.4.1]) + +dnl ********************************** +dnl *** Check for xfce-mcs-manager *** +dnl ********************************** +XDT_XFCE_MCS_PLUGIN([XFCE_MCS_MANAGER], [4.4.1]) + +XDT_FEATURE_DEBUG + +AC_OUTPUT([ +Makefile +icons/Makefile +icons/48x48/Makefile +src/Makefile +po/Makefile.in +]) diff --git a/gnetconfig-mcs-plugin/icons/48x48/Makefile.am b/gnetconfig-mcs-plugin/icons/48x48/Makefile.am new file mode 100644 index 0000000..a3f8589 --- /dev/null +++ b/gnetconfig-mcs-plugin/icons/48x48/Makefile.am @@ -0,0 +1,7 @@ +iconsdir = $(datadir)/icons/hicolor/48x48/apps +icons_DATA = \ + gnetconfig-mcs.png + +EXTRA_DIST = \ + $(icons_DATA) + diff --git a/gnetconfig-mcs-plugin/icons/48x48/Makefile.in b/gnetconfig-mcs-plugin/icons/48x48/Makefile.in new file mode 100644 index 0000000..34bb8cc --- /dev/null +++ b/gnetconfig-mcs-plugin/icons/48x48/Makefile.in @@ -0,0 +1,415 @@ +# Makefile.in generated by automake 1.10 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005, 2006 Free Software Foundation, Inc. +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + +VPATH = @srcdir@ +pkgdatadir = $(datadir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +subdir = icons/48x48 +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/configure.in +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +SOURCES = +DIST_SOURCES = +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = `echo $$p | sed -e 's|^.*/||'`; +am__installdirs = "$(DESTDIR)$(iconsdir)" +iconsDATA_INSTALL = $(INSTALL_DATA) +DATA = $(icons_DATA) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +ALL_LINGUAS = @ALL_LINGUAS@ +AMTAR = @AMTAR@ +AR = @AR@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CATALOGS = @CATALOGS@ +CATOBJEXT = @CATOBJEXT@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CPP = @CPP@ +CPPFLAGS = @CPPFLAGS@ +CXX = @CXX@ +CXXCPP = @CXXCPP@ +CXXDEPMODE = @CXXDEPMODE@ +CXXFLAGS = @CXXFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DATADIRNAME = @DATADIRNAME@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +ECHO = @ECHO@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +EXEEXT = @EXEEXT@ +F77 = @F77@ +FFLAGS = @FFLAGS@ +GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GMOFILES = @GMOFILES@ +GMSGFMT = @GMSGFMT@ +GREP = @GREP@ +GTK_CFLAGS = @GTK_CFLAGS@ +GTK_LIBS = @GTK_LIBS@ +GTK_REQUIRED_VERSION = @GTK_REQUIRED_VERSION@ +GTK_VERSION = @GTK_VERSION@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INSTOBJEXT = @INSTOBJEXT@ +INTLLIBS = @INTLLIBS@ +INTLTOOL_CAVES_RULE = @INTLTOOL_CAVES_RULE@ +INTLTOOL_DESKTOP_RULE = @INTLTOOL_DESKTOP_RULE@ +INTLTOOL_DIRECTORY_RULE = @INTLTOOL_DIRECTORY_RULE@ +INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ +INTLTOOL_KBD_RULE = @INTLTOOL_KBD_RULE@ +INTLTOOL_KEYS_RULE = @INTLTOOL_KEYS_RULE@ +INTLTOOL_MERGE = @INTLTOOL_MERGE@ +INTLTOOL_OAF_RULE = @INTLTOOL_OAF_RULE@ +INTLTOOL_PERL = @INTLTOOL_PERL@ +INTLTOOL_POLICY_RULE = @INTLTOOL_POLICY_RULE@ +INTLTOOL_PONG_RULE = @INTLTOOL_PONG_RULE@ +INTLTOOL_PROP_RULE = @INTLTOOL_PROP_RULE@ +INTLTOOL_SCHEMAS_RULE = @INTLTOOL_SCHEMAS_RULE@ +INTLTOOL_SERVER_RULE = @INTLTOOL_SERVER_RULE@ +INTLTOOL_SERVICE_RULE = @INTLTOOL_SERVICE_RULE@ +INTLTOOL_SHEET_RULE = @INTLTOOL_SHEET_RULE@ +INTLTOOL_SOUNDLIST_RULE = @INTLTOOL_SOUNDLIST_RULE@ +INTLTOOL_THEME_RULE = @INTLTOOL_THEME_RULE@ +INTLTOOL_UI_RULE = @INTLTOOL_UI_RULE@ +INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ +INTLTOOL_XAM_RULE = @INTLTOOL_XAM_RULE@ +INTLTOOL_XML_NOMERGE_RULE = @INTLTOOL_XML_NOMERGE_RULE@ +INTLTOOL_XML_RULE = @INTLTOOL_XML_RULE@ +LDFLAGS = @LDFLAGS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LIBTOOL = @LIBTOOL@ +LIBXFCEGUI4_CFLAGS = @LIBXFCEGUI4_CFLAGS@ +LIBXFCEGUI4_LIBS = @LIBXFCEGUI4_LIBS@ +LIBXFCEGUI4_REQUIRED_VERSION = @LIBXFCEGUI4_REQUIRED_VERSION@ +LIBXFCEGUI4_VERSION = @LIBXFCEGUI4_VERSION@ +LN_S = @LN_S@ +LTLIBOBJS = @LTLIBOBJS@ +MAINT = @MAINT@ +MAKEINFO = @MAKEINFO@ +MKDIR_P = @MKDIR_P@ +MKINSTALLDIRS = @MKINSTALLDIRS@ +MSGFMT = @MSGFMT@ +MSGFMT_OPTS = @MSGFMT_OPTS@ +OBJEXT = @OBJEXT@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PKG_CONFIG = @PKG_CONFIG@ +POFILES = @POFILES@ +POSUB = @POSUB@ +PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ +RANLIB = @RANLIB@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +USE_NLS = @USE_NLS@ +VERSION = @VERSION@ +XFCE_MCS_MANAGER_CFLAGS = @XFCE_MCS_MANAGER_CFLAGS@ +XFCE_MCS_MANAGER_LIBS = @XFCE_MCS_MANAGER_LIBS@ +XFCE_MCS_MANAGER_PLUGINSDIR = @XFCE_MCS_MANAGER_PLUGINSDIR@ +XFCE_MCS_MANAGER_REQUIRED_VERSION = @XFCE_MCS_MANAGER_REQUIRED_VERSION@ +XFCE_MCS_MANAGER_VERSION = @XFCE_MCS_MANAGER_VERSION@ +XGETTEXT = @XGETTEXT@ +XGETTEXT_ARGS = @XGETTEXT_ARGS@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_CXX = @ac_ct_CXX@ +ac_ct_F77 = @ac_ct_F77@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +iconsdir = $(datadir)/icons/hicolor/48x48/apps +icons_DATA = \ + gnetconfig-mcs.png + +EXTRA_DIST = \ + $(icons_DATA) + +all: all-am + +.SUFFIXES: +$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign icons/48x48/Makefile'; \ + cd $(top_srcdir) && \ + $(AUTOMAKE) --foreign icons/48x48/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs +install-iconsDATA: $(icons_DATA) + @$(NORMAL_INSTALL) + test -z "$(iconsdir)" || $(MKDIR_P) "$(DESTDIR)$(iconsdir)" + @list='$(icons_DATA)'; for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ + f=$(am__strip_dir) \ + echo " $(iconsDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(iconsdir)/$$f'"; \ + $(iconsDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(iconsdir)/$$f"; \ + done + +uninstall-iconsDATA: + @$(NORMAL_UNINSTALL) + @list='$(icons_DATA)'; for p in $$list; do \ + f=$(am__strip_dir) \ + echo " rm -f '$(DESTDIR)$(iconsdir)/$$f'"; \ + rm -f "$(DESTDIR)$(iconsdir)/$$f"; \ + done +tags: TAGS +TAGS: + +ctags: CTAGS +CTAGS: + + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ + fi; \ + cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ + else \ + test -f $(distdir)/$$file \ + || cp -p $$d/$$file $(distdir)/$$file \ + || exit 1; \ + fi; \ + done +check-am: all-am +check: check-am +all-am: Makefile $(DATA) +installdirs: + for dir in "$(DESTDIR)$(iconsdir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + `test -z '$(STRIP)' || \ + echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-generic clean-libtool mostlyclean-am + +distclean: distclean-am + -rm -f Makefile +distclean-am: clean-am distclean-generic + +dvi: dvi-am + +dvi-am: + +html: html-am + +info: info-am + +info-am: + +install-data-am: install-iconsDATA + +install-dvi: install-dvi-am + +install-exec-am: + +install-html: install-html-am + +install-info: install-info-am + +install-man: + +install-pdf: install-pdf-am + +install-ps: install-ps-am + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-generic mostlyclean-libtool + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-iconsDATA + +.MAKE: install-am install-strip + +.PHONY: all all-am check check-am clean clean-generic clean-libtool \ + distclean distclean-generic distclean-libtool distdir dvi \ + dvi-am html html-am info info-am install install-am \ + install-data install-data-am install-dvi install-dvi-am \ + install-exec install-exec-am install-html install-html-am \ + install-iconsDATA install-info install-info-am install-man \ + install-pdf install-pdf-am install-ps install-ps-am \ + install-strip installcheck installcheck-am installdirs \ + maintainer-clean maintainer-clean-generic mostlyclean \ + mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ + uninstall uninstall-am uninstall-iconsDATA + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/gnetconfig-mcs-plugin/icons/48x48/gnetconfig-mcs.png b/gnetconfig-mcs-plugin/icons/48x48/gnetconfig-mcs.png new file mode 100644 index 0000000..f4901dd Binary files /dev/null and b/gnetconfig-mcs-plugin/icons/48x48/gnetconfig-mcs.png differ diff --git a/gnetconfig-mcs-plugin/icons/Makefile.am b/gnetconfig-mcs-plugin/icons/Makefile.am new file mode 100644 index 0000000..8b03251 --- /dev/null +++ b/gnetconfig-mcs-plugin/icons/Makefile.am @@ -0,0 +1,16 @@ +SUBDIRS = \ + 48x48 + +gtk_update_icon_cache = gtk-update-icon-cache -f -t $(datadir)/icons/hicolor + +install-data-hook: + @-if test -z "$(DESTDIR)"; then \ + echo "Updating Gtk icon cache."; \ + $(gtk_update_icon_cache); \ + else \ + echo "*** Icon cache not updated. Remember to run:"; \ + echo "***"; \ + echo "*** $(gtk_update_icon_cache)"; \ + echo "***"; \ + fi + diff --git a/gnetconfig-mcs-plugin/icons/Makefile.in b/gnetconfig-mcs-plugin/icons/Makefile.in new file mode 100644 index 0000000..9aad327 --- /dev/null +++ b/gnetconfig-mcs-plugin/icons/Makefile.in @@ -0,0 +1,553 @@ +# Makefile.in generated by automake 1.10 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005, 2006 Free Software Foundation, Inc. +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ +VPATH = @srcdir@ +pkgdatadir = $(datadir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +subdir = icons +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/configure.in +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +SOURCES = +DIST_SOURCES = +RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \ + html-recursive info-recursive install-data-recursive \ + install-dvi-recursive install-exec-recursive \ + install-html-recursive install-info-recursive \ + install-pdf-recursive install-ps-recursive install-recursive \ + installcheck-recursive installdirs-recursive pdf-recursive \ + ps-recursive uninstall-recursive +RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ + distclean-recursive maintainer-clean-recursive +ETAGS = etags +CTAGS = ctags +DIST_SUBDIRS = $(SUBDIRS) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +ALL_LINGUAS = @ALL_LINGUAS@ +AMTAR = @AMTAR@ +AR = @AR@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CATALOGS = @CATALOGS@ +CATOBJEXT = @CATOBJEXT@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CPP = @CPP@ +CPPFLAGS = @CPPFLAGS@ +CXX = @CXX@ +CXXCPP = @CXXCPP@ +CXXDEPMODE = @CXXDEPMODE@ +CXXFLAGS = @CXXFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DATADIRNAME = @DATADIRNAME@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +ECHO = @ECHO@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +EXEEXT = @EXEEXT@ +F77 = @F77@ +FFLAGS = @FFLAGS@ +GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GMOFILES = @GMOFILES@ +GMSGFMT = @GMSGFMT@ +GREP = @GREP@ +GTK_CFLAGS = @GTK_CFLAGS@ +GTK_LIBS = @GTK_LIBS@ +GTK_REQUIRED_VERSION = @GTK_REQUIRED_VERSION@ +GTK_VERSION = @GTK_VERSION@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INSTOBJEXT = @INSTOBJEXT@ +INTLLIBS = @INTLLIBS@ +INTLTOOL_CAVES_RULE = @INTLTOOL_CAVES_RULE@ +INTLTOOL_DESKTOP_RULE = @INTLTOOL_DESKTOP_RULE@ +INTLTOOL_DIRECTORY_RULE = @INTLTOOL_DIRECTORY_RULE@ +INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ +INTLTOOL_KBD_RULE = @INTLTOOL_KBD_RULE@ +INTLTOOL_KEYS_RULE = @INTLTOOL_KEYS_RULE@ +INTLTOOL_MERGE = @INTLTOOL_MERGE@ +INTLTOOL_OAF_RULE = @INTLTOOL_OAF_RULE@ +INTLTOOL_PERL = @INTLTOOL_PERL@ +INTLTOOL_POLICY_RULE = @INTLTOOL_POLICY_RULE@ +INTLTOOL_PONG_RULE = @INTLTOOL_PONG_RULE@ +INTLTOOL_PROP_RULE = @INTLTOOL_PROP_RULE@ +INTLTOOL_SCHEMAS_RULE = @INTLTOOL_SCHEMAS_RULE@ +INTLTOOL_SERVER_RULE = @INTLTOOL_SERVER_RULE@ +INTLTOOL_SERVICE_RULE = @INTLTOOL_SERVICE_RULE@ +INTLTOOL_SHEET_RULE = @INTLTOOL_SHEET_RULE@ +INTLTOOL_SOUNDLIST_RULE = @INTLTOOL_SOUNDLIST_RULE@ +INTLTOOL_THEME_RULE = @INTLTOOL_THEME_RULE@ +INTLTOOL_UI_RULE = @INTLTOOL_UI_RULE@ +INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ +INTLTOOL_XAM_RULE = @INTLTOOL_XAM_RULE@ +INTLTOOL_XML_NOMERGE_RULE = @INTLTOOL_XML_NOMERGE_RULE@ +INTLTOOL_XML_RULE = @INTLTOOL_XML_RULE@ +LDFLAGS = @LDFLAGS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LIBTOOL = @LIBTOOL@ +LIBXFCEGUI4_CFLAGS = @LIBXFCEGUI4_CFLAGS@ +LIBXFCEGUI4_LIBS = @LIBXFCEGUI4_LIBS@ +LIBXFCEGUI4_REQUIRED_VERSION = @LIBXFCEGUI4_REQUIRED_VERSION@ +LIBXFCEGUI4_VERSION = @LIBXFCEGUI4_VERSION@ +LN_S = @LN_S@ +LTLIBOBJS = @LTLIBOBJS@ +MAINT = @MAINT@ +MAKEINFO = @MAKEINFO@ +MKDIR_P = @MKDIR_P@ +MKINSTALLDIRS = @MKINSTALLDIRS@ +MSGFMT = @MSGFMT@ +MSGFMT_OPTS = @MSGFMT_OPTS@ +OBJEXT = @OBJEXT@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PKG_CONFIG = @PKG_CONFIG@ +POFILES = @POFILES@ +POSUB = @POSUB@ +PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ +RANLIB = @RANLIB@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +USE_NLS = @USE_NLS@ +VERSION = @VERSION@ +XFCE_MCS_MANAGER_CFLAGS = @XFCE_MCS_MANAGER_CFLAGS@ +XFCE_MCS_MANAGER_LIBS = @XFCE_MCS_MANAGER_LIBS@ +XFCE_MCS_MANAGER_PLUGINSDIR = @XFCE_MCS_MANAGER_PLUGINSDIR@ +XFCE_MCS_MANAGER_REQUIRED_VERSION = @XFCE_MCS_MANAGER_REQUIRED_VERSION@ +XFCE_MCS_MANAGER_VERSION = @XFCE_MCS_MANAGER_VERSION@ +XGETTEXT = @XGETTEXT@ +XGETTEXT_ARGS = @XGETTEXT_ARGS@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_CXX = @ac_ct_CXX@ +ac_ct_F77 = @ac_ct_F77@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +SUBDIRS = \ + 48x48 + +gtk_update_icon_cache = gtk-update-icon-cache -f -t $(datadir)/icons/hicolor +all: all-recursive + +.SUFFIXES: +$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign icons/Makefile'; \ + cd $(top_srcdir) && \ + $(AUTOMAKE) --foreign icons/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs + +# This directory's subdirectories are mostly independent; you can cd +# into them and run `make' without going through this Makefile. +# To change the values of `make' variables: instead of editing Makefiles, +# (1) if the variable is set in `config.status', edit `config.status' +# (which will cause the Makefiles to be regenerated when you run `make'); +# (2) otherwise, pass the desired values on the `make' command line. +$(RECURSIVE_TARGETS): + @failcom='exit 1'; \ + for f in x $$MAKEFLAGS; do \ + case $$f in \ + *=* | --[!k]*);; \ + *k*) failcom='fail=yes';; \ + esac; \ + done; \ + dot_seen=no; \ + target=`echo $@ | sed s/-recursive//`; \ + list='$(SUBDIRS)'; for subdir in $$list; do \ + echo "Making $$target in $$subdir"; \ + if test "$$subdir" = "."; then \ + dot_seen=yes; \ + local_target="$$target-am"; \ + else \ + local_target="$$target"; \ + fi; \ + (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ + || eval $$failcom; \ + done; \ + if test "$$dot_seen" = "no"; then \ + $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ + fi; test -z "$$fail" + +$(RECURSIVE_CLEAN_TARGETS): + @failcom='exit 1'; \ + for f in x $$MAKEFLAGS; do \ + case $$f in \ + *=* | --[!k]*);; \ + *k*) failcom='fail=yes';; \ + esac; \ + done; \ + dot_seen=no; \ + case "$@" in \ + distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ + *) list='$(SUBDIRS)' ;; \ + esac; \ + rev=''; for subdir in $$list; do \ + if test "$$subdir" = "."; then :; else \ + rev="$$subdir $$rev"; \ + fi; \ + done; \ + rev="$$rev ."; \ + target=`echo $@ | sed s/-recursive//`; \ + for subdir in $$rev; do \ + echo "Making $$target in $$subdir"; \ + if test "$$subdir" = "."; then \ + local_target="$$target-am"; \ + else \ + local_target="$$target"; \ + fi; \ + (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ + || eval $$failcom; \ + done && test -z "$$fail" +tags-recursive: + list='$(SUBDIRS)'; for subdir in $$list; do \ + test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \ + done +ctags-recursive: + list='$(SUBDIRS)'; for subdir in $$list; do \ + test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \ + done + +ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) ' { files[$$0] = 1; } \ + END { for (i in files) print i; }'`; \ + mkid -fID $$unique +tags: TAGS + +TAGS: tags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) + tags=; \ + here=`pwd`; \ + if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ + include_option=--etags-include; \ + empty_fix=.; \ + else \ + include_option=--include; \ + empty_fix=; \ + fi; \ + list='$(SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ + test ! -f $$subdir/TAGS || \ + tags="$$tags $$include_option=$$here/$$subdir/TAGS"; \ + fi; \ + done; \ + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) ' { files[$$0] = 1; } \ + END { for (i in files) print i; }'`; \ + if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$tags $$unique; \ + fi +ctags: CTAGS +CTAGS: ctags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) + tags=; \ + here=`pwd`; \ + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) ' { files[$$0] = 1; } \ + END { for (i in files) print i; }'`; \ + test -z "$(CTAGS_ARGS)$$tags$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$tags $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && cd $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) $$here + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ + fi; \ + cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ + else \ + test -f $(distdir)/$$file \ + || cp -p $$d/$$file $(distdir)/$$file \ + || exit 1; \ + fi; \ + done + list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ + test -d "$(distdir)/$$subdir" \ + || $(MKDIR_P) "$(distdir)/$$subdir" \ + || exit 1; \ + distdir=`$(am__cd) $(distdir) && pwd`; \ + top_distdir=`$(am__cd) $(top_distdir) && pwd`; \ + (cd $$subdir && \ + $(MAKE) $(AM_MAKEFLAGS) \ + top_distdir="$$top_distdir" \ + distdir="$$distdir/$$subdir" \ + am__remove_distdir=: \ + am__skip_length_check=: \ + distdir) \ + || exit 1; \ + fi; \ + done +check-am: all-am +check: check-recursive +all-am: Makefile +installdirs: installdirs-recursive +installdirs-am: +install: install-recursive +install-exec: install-exec-recursive +install-data: install-data-recursive +uninstall: uninstall-recursive + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-recursive +install-strip: + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + `test -z '$(STRIP)' || \ + echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-recursive + +clean-am: clean-generic clean-libtool mostlyclean-am + +distclean: distclean-recursive + -rm -f Makefile +distclean-am: clean-am distclean-generic distclean-tags + +dvi: dvi-recursive + +dvi-am: + +html: html-recursive + +info: info-recursive + +info-am: + +install-data-am: + @$(NORMAL_INSTALL) + $(MAKE) $(AM_MAKEFLAGS) install-data-hook + +install-dvi: install-dvi-recursive + +install-exec-am: + +install-html: install-html-recursive + +install-info: install-info-recursive + +install-man: + +install-pdf: install-pdf-recursive + +install-ps: install-ps-recursive + +installcheck-am: + +maintainer-clean: maintainer-clean-recursive + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-recursive + +mostlyclean-am: mostlyclean-generic mostlyclean-libtool + +pdf: pdf-recursive + +pdf-am: + +ps: ps-recursive + +ps-am: + +uninstall-am: + +.MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) install-am \ + install-data-am install-strip + +.PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \ + all all-am check check-am clean clean-generic clean-libtool \ + ctags ctags-recursive distclean distclean-generic \ + distclean-libtool distclean-tags distdir dvi dvi-am html \ + html-am info info-am install install-am install-data \ + install-data-am install-data-hook install-dvi install-dvi-am \ + install-exec install-exec-am install-html install-html-am \ + install-info install-info-am install-man install-pdf \ + install-pdf-am install-ps install-ps-am install-strip \ + installcheck installcheck-am installdirs installdirs-am \ + maintainer-clean maintainer-clean-generic mostlyclean \ + mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ + tags tags-recursive uninstall uninstall-am + + +install-data-hook: + @-if test -z "$(DESTDIR)"; then \ + echo "Updating Gtk icon cache."; \ + $(gtk_update_icon_cache); \ + else \ + echo "*** Icon cache not updated. Remember to run:"; \ + echo "***"; \ + echo "*** $(gtk_update_icon_cache)"; \ + echo "***"; \ + fi +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/gnetconfig-mcs-plugin/po/ChangeLog b/gnetconfig-mcs-plugin/po/ChangeLog new file mode 100644 index 0000000..e69de29 diff --git a/gnetconfig-mcs-plugin/po/LINGUAS b/gnetconfig-mcs-plugin/po/LINGUAS new file mode 100644 index 0000000..e69de29 diff --git a/gnetconfig-mcs-plugin/po/Makevars b/gnetconfig-mcs-plugin/po/Makevars new file mode 100644 index 0000000..72c5f8f --- /dev/null +++ b/gnetconfig-mcs-plugin/po/Makevars @@ -0,0 +1,43 @@ +# Makefile variables for PO directory in any package using GNU gettext. + +# Usually the message domain is the same as the package name. +DOMAIN = gnetconfig-mcs-plugin + +# These two variables depend on the location of this directory. +subdir = po +top_builddir = ../ + +# These options get passed to xgettext. +XGETTEXT_OPTIONS = \ + --keyword=_ --flag=_:1:pass-c-format \ + --keyword=N_ --flag=N_:1:pass-c-format + +# This is the copyright holder that gets inserted into the header of the +# $(DOMAIN).pot file. Set this to the copyright holder of the surrounding +# package. (Note that the msgstr strings, extracted from the package's +# sources, belong to the copyright holder of the package.) Translators are +# expected to transfer the copyright for their translations to this person +# or entity, or to disclaim their copyright. The empty string stands for +# the public domain; in this case the translators are expected to disclaim +# their copyright. +COPYRIGHT_HOLDER = Yoyodyne, Inc. + +# This is the email address or URL to which the translators shall report +# bugs in the untranslated strings: +# - Strings which are not entire sentences, see the maintainer guidelines +# in the GNU gettext documentation, section 'Preparing Strings'. +# - Strings which use unclear terms or require additional context to be +# understood. +# - Strings which make invalid assumptions about notation of date, time or +# money. +# - Pluralisation problems. +# - Incorrect English spelling. +# - Incorrect formatting. +# It can be your email address, or a mailing list address where translators +# can write to without being subscribed, or the URL of a web page through +# which the translators can contact you. +MSGID_BUGS_ADDRESS = bug-gnu-gettext@gnu.org + +# This is the list of locale categories, beyond LC_MESSAGES, for which the +# message catalogs shall be used. It is usually empty. +EXTRA_LOCALE_CATEGORIES = diff --git a/gnetconfig-mcs-plugin/po/POTFILES.in b/gnetconfig-mcs-plugin/po/POTFILES.in new file mode 100644 index 0000000..d177fc0 --- /dev/null +++ b/gnetconfig-mcs-plugin/po/POTFILES.in @@ -0,0 +1,2 @@ +src/gnetconfig-plugin.c + diff --git a/gnetconfig-mcs-plugin/src/Makefile.am b/gnetconfig-mcs-plugin/src/Makefile.am new file mode 100644 index 0000000..72e784f --- /dev/null +++ b/gnetconfig-mcs-plugin/src/Makefile.am @@ -0,0 +1,27 @@ +# $Id: Makefile.am 2284 2006-12-29 14:39:00Z pollux $ + +INCLUDES = \ + -I$(top_srcdir) \ + -I$(top_builddir) \ + -DLOCALEDIR=\""$(localedir)"\" + +plugindir = $(XFCE_MCS_MANAGER_PLUGINSDIR) +plugin_LTLIBRARIES = \ + gnetconfig_plugin.la + +gnetconfig_plugin_la_SOURCES = \ + gnetconfig-plugin.c + +gnetconfig_plugin_la_CFLAGS = \ + $(LIBXFCEGUI4_CFLAGS) \ + $(XFCE_MCS_MANAGER_CFLAGS) + +gnetconfig_plugin_la_LDFLAGS = \ + -avoid-version \ + -module \ + -no-undefined + +gnetconfig_plugin_la_LIBADD = \ + $(XFCE_MCS_MANAGER_LIBS) + +# vi:set ts=8 sw=8 noet ai nocindent syntax=automake: diff --git a/gnetconfig-mcs-plugin/src/gnetconfig-plugin.c b/gnetconfig-mcs-plugin/src/gnetconfig-plugin.c new file mode 100644 index 0000000..7450da8 --- /dev/null +++ b/gnetconfig-mcs-plugin/src/gnetconfig-plugin.c @@ -0,0 +1,107 @@ +/* + * Copyright (c) 2007 Priyank Gosalia + * Copyright (c) 2007 Bernhard Walle + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; You may only use version 2 of the License, + * you have no option to use any other version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + * + */ + +#ifdef HAVE_CONFIG_H +#include +#endif + +#ifdef HAVE_STDLIB_H +#include +#endif + +#include + +#include + +#include +#include + +#include + +#define GNETCONFIG_ICON "gnetconfig-mcs" +#define GNETCONFIG_BIN "/usr/bin/gnetconfig" + +static gchar *xterm_argv[] = { + "xterm", + "-T", "Gnetconfig starter -- DONT'T CLOSE THAT WINDOW", + "-geometry", "50x1", + "-e", "su -c " GNETCONFIG_BIN, + NULL +}; + +static gchar *gnomesu_argv[] = { + "gksu", + GNETCONFIG_BIN, + NULL +}; + + +/* static prototypes */ +static void run_dialog (McsPlugin *); + +/* + */ +McsPluginInitResult mcs_plugin_init (McsPlugin *plugin) +{ + gchar *where; + GError *error = NULL; + + xfce_textdomain (GETTEXT_PACKAGE, LOCALEDIR, "UTF-8"); + + plugin->plugin_name = g_strdup ("gnetconfig"); + /* the button label in the xfce-mcs-manager dialog */ + plugin->caption = g_strdup (Q_ ("Button Label|Network Configuration")); + plugin->run_dialog = run_dialog; + plugin->icon = xfce_themed_icon_load (GNETCONFIG_ICON, 48); + if (plugin->icon) { + g_object_set_data_full (G_OBJECT (plugin->icon), "mcs-plugin-icon-name", + g_strdup (GNETCONFIG_ICON), g_free); + } + + return MCS_PLUGIN_INIT_OK; +} + +/* + */ +static void run_dialog(McsPlugin * plugin) +{ + GError *error = NULL; + + /* try gnomesu first */ + if (!g_spawn_async + (NULL, gnomesu_argv, NULL, + G_SPAWN_SEARCH_PATH | G_SPAWN_STDOUT_TO_DEV_NULL | + G_SPAWN_STDERR_TO_DEV_NULL, NULL, NULL, NULL, NULL)) { + + /* and fallback to xterm */ + if (!g_spawn_async + (NULL, xterm_argv, NULL, + G_SPAWN_SEARCH_PATH | G_SPAWN_STDOUT_TO_DEV_NULL | + G_SPAWN_STDERR_TO_DEV_NULL, NULL, NULL, NULL, &error)) { + g_error ("Could not start Gnetconfig: %s", error->message); + g_error_free (error); + } + } +} + +/* */ +MCS_PLUGIN_CHECK_INIT + +/* vim: set sw=4 ts=4 et: */ From vmiklos at frugalware.org Thu Sep 6 16:44:22 2007 From: vmiklos at frugalware.org (VMiklos) Date: Thu Sep 6 16:44:25 2007 Subject: [Frugalware-git] frugalware-current: mpfr-2.3.0_02-1-i686 Message-ID: <20070906144422.6FDD013A421B@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=0f8c37f9262150961d792a48dfed834626ac81db commit 0f8c37f9262150961d792a48dfed834626ac81db Author: VMiklos Date: Thu Sep 6 16:44:01 2007 +0200 mpfr-2.3.0_02-1-i686 bump to patchlevel '02' diff --git a/source/lib/mpfr/FrugalBuild b/source/lib/mpfr/FrugalBuild index 94dd415..dbd718b 100644 --- a/source/lib/mpfr/FrugalBuild +++ b/source/lib/mpfr/FrugalBuild @@ -3,7 +3,7 @@ pkgname=mpfr basever=2.3.0 -patchver= +patchver=02 if [ -n "$patchver" ]; then pkgver=${basever}_$patchver else @@ -23,7 +23,9 @@ if [ -n "$patchver" ]; then source=(${source[@]} $url/patch$i) done fi -sha1sums=('b20b9b85cdccddbb0a9c22807de0049e1f9ec528') +sha1sums=('b20b9b85cdccddbb0a9c22807de0049e1f9ec528' \ + 'ad56aef7dfe9dc91b3a52de495abf8cec41b8db9' \ + '35ab59482c2b35c631fca2faaa6f32c01af73c5b') _F_cd_path=$pkgname-$basever Fconfopts="$Fconfopts --enable-shared --enable-static" # optimization OK From vmiklos at frugalware.org Thu Sep 6 16:54:19 2007 From: vmiklos at frugalware.org (VMiklos) Date: Thu Sep 6 16:54:22 2007 Subject: [Frugalware-git] frugalware-current: tools/gitpull: fix for we fetch and not clone Message-ID: <20070906145419.DB61E13A421B@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=5a64c5990958cd91ca0f453acd474ae13283ea14 commit 5a64c5990958cd91ca0f453acd474ae13283ea14 Author: VMiklos Date: Thu Sep 6 16:54:14 2007 +0200 tools/gitpull: fix for we fetch and not clone thanks priyank for noticing this bug diff --git a/tools/gitpull b/tools/gitpull index 396e17a..5fca0dd 100755 --- a/tools/gitpull +++ b/tools/gitpull @@ -8,17 +8,19 @@ for i in `rsync $server|sed 's/.* \([^ ]\)/\1/;1 d'` do if [ -d $i.git ]; then cd $i.git - git fetch -q $server/$i/.git - cd .. + git fetch -q origin + git update-ref HEAD refs/remotes/origin/master else git clone --bare -q $server/$i/.git $i.git + cd $i.git + git remote add origin $server/$i/.git fi + cd .. rm -rf $i.git/refs/remotes rsync $server/$i/.git/owner $i.git/ rsync $server/$i/.git/description $i.git/ - python -c "import os; sock = os.popen('rsync -l $server/$i'); buf = sock.read(); sock.close(); print 'rsync://rsync.frugalware.org' + os.path.abspath('$server/$i/../'[len('rsync://rsync.frugalware.org'):] + buf.split(' -> ')[1].strip()) + '/.git'" > $i.git/cloneurl - echo "http://git.frugalware.org/repos/$i/.git" >> $i.git/cloneurl - python -c "import os; sock = os.popen('rsync -l $server/$i'); buf = sock.read(); sock.close(); print 'nick@git.frugalware.org:/home/ftp' + os.path.abspath('$server/$i/../'[len('rsync://rsync.frugalware.org'):] + buf.split(' -> ')[1].strip()) + ' (for developers only)'" >> $i.git/cloneurl + echo "Anonymous Access: http://git.frugalware.org/repos/$i/.git" > $i.git/cloneurl + python -c "import os; sock = os.popen('rsync -l $server/$i'); buf = sock.read(); sock.close(); print 'Developer Access via SSH: nick@git.frugalware.org:/home/ftp' + os.path.abspath('$server/$i/../'[len('rsync://rsync.frugalware.org'):] + buf.split(' -> ')[1].strip())" >> $i.git/cloneurl if [ -f $i.git/owner ]; then owner=$(python -c "from urllib import urlencode; owner='$(cat $i.git/owner)'; print urlencode({'':owner.strip()})[1:]") else From vmiklos at frugalware.org Thu Sep 6 16:58:07 2007 From: vmiklos at frugalware.org (VMiklos) Date: Thu Sep 6 16:58:09 2007 Subject: [Frugalware-git] frugalware-current: skype4py-0.9.28.2-1-i686 Message-ID: <20070906145807.D4CDE13A421B@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=b177f4d2d1e952038d13e566407c1e6589fe0eb1 commit b177f4d2d1e952038d13e566407c1e6589fe0eb1 Author: VMiklos Date: Thu Sep 6 16:57:57 2007 +0200 skype4py-0.9.28.2-1-i686 version bump diff --git a/source/devel-extra/skype4py/FrugalBuild b/source/devel-extra/skype4py/FrugalBuild index 0c4e201..b9be62b 100644 --- a/source/devel-extra/skype4py/FrugalBuild +++ b/source/devel-extra/skype4py/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: VMiklos pkgname=skype4py -pkgver=0.9.28.1 +pkgver=0.9.28.2 pkgrel=1 pkgdesc="A Python binding to Skype." _F_sourceforge_dirname="skype4py" @@ -12,5 +12,5 @@ Finclude sourceforge depends=('dbus-python' 'pygobject') groups=('devel-extra') archs=('i686') -sha1sums=('a6eb46d3770f9a64c04fd558f97cd12836a36e2b') +sha1sums=('6358807faecd4f928020195aca6f2a69c1d1eb2e') _F_cd_path="Skype4Py-$pkgver" From vmiklos at frugalware.org Thu Sep 6 17:09:07 2007 From: vmiklos at frugalware.org (VMiklos) Date: Thu Sep 6 17:09:08 2007 Subject: [Frugalware-git] bmf: gcjwebplugin: bin Message-ID: <20070906150907.2E09013A421B@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=bmf.git;a=commitdiff;h=adb01608c661eee717afef9d04fa95b26b06430e commit adb01608c661eee717afef9d04fa95b26b06430e Author: VMiklos Date: Thu Sep 6 17:08:40 2007 +0200 gcjwebplugin: bin it's in gcc already diff --git a/source/xlib-extra/gcjwebplugin/FrugalBuild b/source/xlib-extra/gcjwebplugin/FrugalBuild deleted file mode 100644 index a919750..0000000 --- a/source/xlib-extra/gcjwebplugin/FrugalBuild +++ /dev/null @@ -1,24 +0,0 @@ -# Last Modified: Sun, 16 Apr 2006 08:28:06 +0200 -# Compiling Time: 0.01 SBU -# Maintainer: VMiklos - -pkgname=gcjwebplugin -pkgver=0.3.2 -pkgrel=1 -pkgdesc="A plugin for Mozilla and other web browsers for the execution of Java applets" -url="http://www.nongnu.org/gcjwebplugin" -depends=('libgcj') -makedepends=('gcc-gcj') -groups=('xlib-extra') -archs=('i686') -up2date="lynx -dump http://download.savannah.gnu.org/releases/gcjwebplugin/ |Flasttar" -source=(http://download.savannah.gnu.org/releases/gcjwebplugin/gcjwebplugin-$pkgver.tar.gz) -sha1sums=('e1449a676a9c8f8c3db9079cefb9775e40ea3b21') -Fconfopts="$Fconfopts --with-plugin-dir=/usr/lib/mozilla/plugins" - -# at the moment this pkg is quite broken, even a simple applet -# (http://www.ent.ohiou.edu/~pwxmy/applet/example/example1.class) -# i get: -# Caused by: java.lang.ClassNotFoundException: Popupwindow not found in gnu.gcj.runtime.SystemClassLoader{urls=[file:./], parent=gnu.gcj.runtime.ExtensionClassLoader{urls=[], parent=null}} - -# optimization OK From vmiklos at frugalware.org Thu Sep 6 17:12:28 2007 From: vmiklos at frugalware.org (VMiklos) Date: Thu Sep 6 17:12:30 2007 Subject: [Frugalware-git] frugalware-current: sudo-1.6.9p5-1-i686 Message-ID: <20070906151228.5388713A421B@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=df011b32aa3b68de571b3d75014c40e0c6e0ee1f commit df011b32aa3b68de571b3d75014c40e0c6e0ee1f Author: VMiklos Date: Thu Sep 6 17:12:00 2007 +0200 sudo-1.6.9p5-1-i686 version bump closes #2373 diff --git a/source/apps/sudo/FrugalBuild b/source/apps/sudo/FrugalBuild index e7030a2..687178f 100644 --- a/source/apps/sudo/FrugalBuild +++ b/source/apps/sudo/FrugalBuild @@ -2,8 +2,8 @@ # Maintainer: VMiklos pkgname=sudo -pkgver=1.6.8p12 -pkgrel=3 +pkgver=1.6.9p5 +pkgrel=1 pkgdesc="Give limited root privileges to certain users" url="http://www.sudo.ws/" depends=('glibc') @@ -12,14 +12,14 @@ archs=('i686' 'x86_64') backup=('etc/sudoers') up2date="lynx -dump http://www.sudo.ws/|grep 'stable version is'|sed 's/.*sudo \(.*\), .*/\1/'" source=(http://www.sudo.ws/$pkgname/dist/$pkgname-$pkgver.tar.gz sudo.sh) -sha1sums=('a79631e9e1c0d0d3f2aa88ae685628e5fde61982' \ - 'ff0745f1d95c614f55e8fd1f85abee2486cf24ba') +sha1sums=('fe7a0b92c59c067476d8e21c4aaf338c372d18e9' \ + 'ff0745f1d95c614f55e8fd1f85abee2486cf24ba') build() { - Fbuild - Fmv usr/man/cat8 usr/man/man8 - Fmv usr/man/cat5 usr/man/man5 + Fbuild --without-pam + Fmv usr/share/man/cat8 usr/share/man/man8 + Fmv usr/share/man/cat5 usr/share/man/man5 Fexe /etc/profile.d/sudo.sh } From vmiklos at frugalware.org Thu Sep 6 17:32:19 2007 From: vmiklos at frugalware.org (VMiklos) Date: Thu Sep 6 17:32:22 2007 Subject: [Frugalware-git] frugalware-current: id3lib-3.8.3-4-i686 Message-ID: <20070906153219.8108C13A421B@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=fe8a5e94df96aea49b16435fb564929c5e1583a5 commit fe8a5e94df96aea49b16435fb564929c5e1583a5 Author: VMiklos Date: Thu Sep 6 17:32:06 2007 +0200 id3lib-3.8.3-4-i686 added CVE-2007-4460.diff closes #2372 diff --git a/source/multimedia/id3lib/CVE-2007-4460.diff b/source/multimedia/id3lib/CVE-2007-4460.diff new file mode 100644 index 0000000..6734210 --- /dev/null +++ b/source/multimedia/id3lib/CVE-2007-4460.diff @@ -0,0 +1,51 @@ +--- id3lib3.8.3-3.8.3.orig/src/tag_file.cpp ++++ id3lib3.8.3-3.8.3/src/tag_file.cpp +@@ -242,8 +242,8 @@ + strcpy(sTempFile, filename.c_str()); + strcat(sTempFile, sTmpSuffix.c_str()); + +-#if ((defined(__GNUC__) && __GNUC__ >= 3 ) || !defined(HAVE_MKSTEMP)) +- // This section is for Windows folk && gcc 3.x folk ++#if !defined(HAVE_MKSTEMP) ++ // This section is for Windows folk + fstream tmpOut; + createFile(sTempFile, tmpOut); + +@@ -257,7 +257,7 @@ + tmpOut.write((char *)tmpBuffer, nBytes); + } + +-#else //((defined(__GNUC__) && __GNUC__ >= 3 ) || !defined(HAVE_MKSTEMP)) ++#else //!defined(HAVE_MKSTEMP) + + // else we gotta make a temp file, copy the tag into it, copy the + // rest of the old file after the tag, delete the old file, rename +@@ -270,7 +270,7 @@ + //ID3_THROW_DESC(ID3E_NoFile, "couldn't open temp file"); + } + +- ofstream tmpOut(fd); ++ ofstream tmpOut(sTempFile); + if (!tmpOut) + { + tmpOut.close(); +@@ -285,14 +285,14 @@ + uchar tmpBuffer[BUFSIZ]; + while (file) + { +- file.read(tmpBuffer, BUFSIZ); ++ file.read((char *)tmpBuffer, BUFSIZ); + size_t nBytes = file.gcount(); +- tmpOut.write(tmpBuffer, nBytes); ++ tmpOut.write((char *)tmpBuffer, nBytes); + } + + close(fd); //closes the file + +-#endif ////((defined(__GNUC__) && __GNUC__ >= 3 ) || !defined(HAVE_MKSTEMP)) ++#endif ////!defined(HAVE_MKSTEMP) + + tmpOut.close(); + file.close(); +only in patch2: +unchanged: diff --git a/source/multimedia/id3lib/FrugalBuild b/source/multimedia/id3lib/FrugalBuild index 67d1b28..053884d 100644 --- a/source/multimedia/id3lib/FrugalBuild +++ b/source/multimedia/id3lib/FrugalBuild @@ -3,17 +3,19 @@ pkgname=id3lib pkgver=3.8.3 -pkgrel=3 +pkgrel=4 pkgdesc="A library for reading, writing, and manipulating ID3v1 and ID3v2 tags." depends=('libstdc++' 'zlib') groups=('multimedia') archs=('i686' 'x86_64') Finclude sourceforge -source=(${source[@]} id3lib-3.8.3-autoconf259.patch id3lib-3.8.3-zlib.patch) +source=(${source[@]} id3lib-3.8.3-autoconf259.patch id3lib-3.8.3-zlib.patch \ + CVE-2007-4460.diff) up2date="lynx -dump http://id3lib.sourceforge.net/|grep 'Latest Release'|sed 's/.*]\(.*\)/\1/'" sha1sums=('c92c880da41d1ec0b242745a901702ae87970838' \ '6006f32d29461136ec029dda2ae7339fde6df1df' \ - '231721feb310f5ef6d820d1c1397e3605b5689cb') + '231721feb310f5ef6d820d1c1397e3605b5689cb' \ + '05f00def566a151b3e47a2bfed67d28df898918a') build() { From priyank at frugalware.org Thu Sep 6 17:41:58 2007 From: priyank at frugalware.org (Priyank) Date: Thu Sep 6 17:42:01 2007 Subject: [Frugalware-git] gfpm: gfpm-interface: fix a warning Message-ID: <20070906154159.1FD9713A421B@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gfpm.git;a=commitdiff;h=5293795a2b071e415c0649426d6ebe08454abb46 commit 5293795a2b071e415c0649426d6ebe08454abb46 Author: Priyank Date: Thu Sep 6 21:10:25 2007 +0530 gfpm-interface: fix a warning diff --git a/src/gfpm-interface.c b/src/gfpm-interface.c index 3a7f400..9bdd407 100644 --- a/src/gfpm-interface.c +++ b/src/gfpm-interface.c @@ -265,7 +265,7 @@ gfpm_interface_init (void) gtk_widget_hide (gfpm_splash); gchar *title = g_strdup_printf ("%s (%s)", PACKAGE_STRING, GFPM_RELEASE_NAME); - gtk_window_set_title (gfpm_mw, title); + gtk_window_set_title (GTK_WINDOW(gfpm_mw), title); g_free (title); gtk_widget_show_all (gfpm_mw); From vmiklos at frugalware.org Thu Sep 6 17:48:12 2007 From: vmiklos at frugalware.org (VMiklos) Date: Thu Sep 6 17:48:13 2007 Subject: [Frugalware-git] frugalware-current: firefox-wmlbrowser-0.7.16-1-i686 Message-ID: <20070906154812.56D2413A421B@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=0c1b864d2b378696d4ee441662ba3ee0e3432b60 commit 0c1b864d2b378696d4ee441662ba3ee0e3432b60 Author: VMiklos Date: Thu Sep 6 17:48:03 2007 +0200 firefox-wmlbrowser-0.7.16-1-i686 version bump diff --git a/source/xapps-extra/firefox-wmlbrowser/FrugalBuild b/source/xapps-extra/firefox-wmlbrowser/FrugalBuild index 70453b6..aa3e4e0 100644 --- a/source/xapps-extra/firefox-wmlbrowser/FrugalBuild +++ b/source/xapps-extra/firefox-wmlbrowser/FrugalBuild @@ -4,7 +4,7 @@ pkgname=firefox-wmlbrowser _F_firefox_ext=wmlbrowser _F_firefox_id=c4dc572a-3295-40eb-b30f-b54aa4cdc4b7 -pkgver=0.7.15 +pkgver=0.7.16 pkgrel=1 pkgdesc="Display WML (Wireless Markup Language) content." url="http://wmlbrowser.mozdev.org" @@ -15,5 +15,5 @@ up2date="lynx -dump http://wmlbrowser.mozdev.org/installation/wmlbrowser.html|gr source=(http://downloads.mozdev.org/wmlbrowser/wmlbrowser-$pkgver.xpi \ chrome.manifest) Finclude firefox-extension -sha1sums=('e5e8f17cf4e97b139d4961ff2567c98c4064721e'\ +sha1sums=('5fa9014e377dcd3191de8e76614b4e9a7de635f3' \ '3b9841f798f75817a19170347c6593985b2fe5a9') From priyank at frugalware.org Thu Sep 6 18:05:04 2007 From: priyank at frugalware.org (Priyank) Date: Thu Sep 6 18:05:07 2007 Subject: [Frugalware-git] fw-control-center: autogen.sh: fix errors in parsing version info from configure.in Message-ID: <20070906160504.8C3D913A421C@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=fw-control-center.git;a=commitdiff;h=bdd2e412ccb873ea8f482f83cb5ffbe42c536036 commit bdd2e412ccb873ea8f482f83cb5ffbe42c536036 Author: Priyank Date: Thu Sep 6 21:33:31 2007 +0530 autogen.sh: fix errors in parsing version info from configure.in * also fixed generation of foo-ver.tar.gz,asc diff --git a/gnetconfig-mcs-plugin/autogen.sh b/gnetconfig-mcs-plugin/autogen.sh index 07cbb20..b2904ea 100755 --- a/gnetconfig-mcs-plugin/autogen.sh +++ b/gnetconfig-mcs-plugin/autogen.sh @@ -39,16 +39,18 @@ if [ "$1" == "--pot-only" ]; then fi if [ "$1" == "--dist" ]; then - ver=`grep AC_INIT configure.ac|sed 's/.*, \([0-9\.]*\), .*/\1/'` + ver=`grep version_major -m1 configure.in | sed 's/.*, \[\(.*\)].*/\1/'` + ver=$ver.`grep version_minor -m1 configure.in | sed 's/.*, \[\(.*\)].*/\1/'` + ver=$ver.`grep version_micro -m1 configure.in | sed 's/.*, \[\(.*\)].*/\1/'` git-archive --format=tar --prefix=gnetconfig-mcs-plugin-$ver/ HEAD | tar xf - git log --no-merges |git name-rev --tags --stdin > gnetconfig-mcs-plugin-$ver/ChangeLog cd gnetconfig-mcs-plugin-$ver ./autogen.sh --git cd .. tar czf gnetconfig-mcs-plugin-$ver.tar.gz gnetconfig-mcs-plugin-$ver - rm -rf gnetconfig-$ver + rm -rf gnetconfig-mcs-plugin-$ver gpg --comment "See http://ftp.frugalware.org/pub/README.GPG for info" \ - -ba -u 20F55619 gnetconfig-$ver.tar.gz + -ba -u 20F55619 gnetconfig-mcs-plugin-$ver.tar.gz #mv gnetconfig-$ver.tar.gz.asc ../.. exit 0 fi From voroskoi at frugalware.org Thu Sep 6 19:42:00 2007 From: voroskoi at frugalware.org (voroskoi) Date: Thu Sep 6 19:42:04 2007 Subject: [Frugalware-git] homepage-ng: FSA259-thunderbird Message-ID: <20070906174200.A3C8D13A421C@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=homepage-ng.git;a=commitdiff;h=c368298bbc62b450785e25a8f7f9497fe561d1f9 commit c368298bbc62b450785e25a8f7f9497fe561d1f9 Author: voroskoi Date: Thu Sep 6 19:37:08 2007 +0200 FSA259-thunderbird diff --git a/frugalware/xml/security.xml b/frugalware/xml/security.xml index 4db5666..a6d8849 100644 --- a/frugalware/xml/security.xml +++ b/frugalware/xml/security.xml @@ -27,6 +27,24 @@ + 259 + 2007-09-06 + voroskoi + thunderbird + 1.5.0.12-1terminus1 + 1.5.0.13-1terminus1 + http://bugs.frugalware.org/task/2264 + http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2007-3670 + http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2007-3734 + http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2007-3735 + http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2007-3844 + http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2007-3845 + Some vulnerabilities have been reported in Mozilla Thunderbird, which can potentially be exploited to compromise a user's system. + An error when registering a URI handler potentially allows to execute arbitrary code. + Various errors in the Javascript engine can be exploited to cause memory corruption and potentially to execute arbitrary code. + A vulnerability is caused due to an error within the handling of "about:blank" pages loaded by chrome in an addon. This can be exploited to execute script code under chrome privileges by e.g. clicking on a link opened in an "about:blank" window created and populated in a certain ways by an addon. + + 258 2007-09-06 voroskoi From voroskoi at frugalware.org Thu Sep 6 19:44:24 2007 From: voroskoi at frugalware.org (voroskoi) Date: Thu Sep 6 19:44:26 2007 Subject: [Frugalware-git] frugalware-current: tor-0.1.2.17-1-i686 Message-ID: <20070906174425.000DF13A421C@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=69f827dc0ec1063d45e1a5d81d95a87a3e4b62cd commit 69f827dc0ec1063d45e1a5d81d95a87a3e4b62cd Author: voroskoi Date: Thu Sep 6 19:00:46 2007 +0200 tor-0.1.2.17-1-i686 version bump diff --git a/source/network-extra/tor/FrugalBuild b/source/network-extra/tor/FrugalBuild index bfca7cd..bdb0b69 100644 --- a/source/network-extra/tor/FrugalBuild +++ b/source/network-extra/tor/FrugalBuild @@ -3,8 +3,8 @@ # Maintainer: voroskoi pkgname=tor -pkgver=0.1.2.16 -pkgrel=2 +pkgver=0.1.2.17 +pkgrel=1 pkgdesc="An anonymous Internet communication system" url="http://tor.eff.org" license="GPL" From voroskoi at frugalware.org Thu Sep 6 19:44:25 2007 From: voroskoi at frugalware.org (voroskoi) Date: Thu Sep 6 19:44:26 2007 Subject: [Frugalware-git] frugalware-current: fglrx-8.40.4-4-i686 Message-ID: <20070906174425.1F6E413A421D@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=206687f0ab32955245518ae05c0a20f1b42dc32d commit 206687f0ab32955245518ae05c0a20f1b42dc32d Author: voroskoi Date: Thu Sep 6 19:09:57 2007 +0200 fglrx-8.40.4-4-i686 use absolute depmod PATH to close #2386 diff --git a/source/x11-extra/fglrx/fglrx_module.install b/source/x11-extra/fglrx/fglrx_module.install index 47e9670..bd62b30 100644 --- a/source/x11-extra/fglrx/fglrx_module.install +++ b/source/x11-extra/fglrx/fglrx_module.install @@ -2,7 +2,7 @@ post_install() { [ `grep fglrx < /etc/sysconfig/modules|wc -l` == 0 ] && \ echo 'fglrx' >> /etc/sysconfig/modules - depmod -a + /sbin/depmod -a } post_upgrade() From voroskoi at frugalware.org Thu Sep 6 19:54:59 2007 From: voroskoi at frugalware.org (voroskoi) Date: Thu Sep 6 19:55:02 2007 Subject: [Frugalware-git] homepage-ng: FSA260-kdelibs Message-ID: <20070906175459.BCFF113A421C@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=homepage-ng.git;a=commitdiff;h=8342b1da7bb26237af48bc5540de272e82cda4e5 commit 8342b1da7bb26237af48bc5540de272e82cda4e5 Author: voroskoi Date: Thu Sep 6 19:50:39 2007 +0200 FSA260-kdelibs diff --git a/frugalware/xml/security.xml b/frugalware/xml/security.xml index a6d8849..343d310 100644 --- a/frugalware/xml/security.xml +++ b/frugalware/xml/security.xml @@ -27,6 +27,21 @@ + 260 + 2007-09-06 + voroskoi + kdelibs + 3.5.6-3 + 3.5.6-4terminus1 + http://bugs.frugalware.org/task/2265 + http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2007-3820 + http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2007-4224 + http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2007-4225 + Robert Swiecki has discovered a vulnerability in Konqueror, which can be exploited by malicious people to conduct spoofing attacks. + The vulnerability is caused due to an error when processing the "setInterval()" function and can be exploited to display arbitrary content while showing the URL of a trusted web site in the address bar. + The vulnerability is caused due to an error in the handling of the "data:" URI scheme. This can be exploited to display arbitrary content while showing the URL of a trusted web site in the address bar when a user follows a specially crafted link. + + 259 2007-09-06 voroskoi From voroskoi at frugalware.org Thu Sep 6 19:59:25 2007 From: voroskoi at frugalware.org (voroskoi) Date: Thu Sep 6 19:59:28 2007 Subject: [Frugalware-git] homepage-ng: FSA261-kdebase Message-ID: <20070906175925.9B49A13A421C@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=homepage-ng.git;a=commitdiff;h=dec7e2e0e92f7f46d5b74a27ae9e9895cd05b29d commit dec7e2e0e92f7f46d5b74a27ae9e9895cd05b29d Author: voroskoi Date: Thu Sep 6 19:55:15 2007 +0200 FSA261-kdebase diff --git a/frugalware/xml/security.xml b/frugalware/xml/security.xml index 343d310..0edb5c1 100644 --- a/frugalware/xml/security.xml +++ b/frugalware/xml/security.xml @@ -27,6 +27,21 @@ + 261 + 2007-09-06 + voroskoi + kdebase + 3.5.6-2 + 3.5.6-3terminus1 + http://bugs.frugalware.org/task/2265 + http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2007-3820 + http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2007-4224 + http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2007-4225 + Robert Swiecki has discovered a vulnerability in Konqueror, which can be exploited by malicious people to conduct spoofing attacks. + The vulnerability is caused due to an error when processing the "setInterval()" function and can be exploited to display arbitrary content while showing the URL of a trusted web site in the address bar. + The vulnerability is caused due to an error in the handling of the "data:" URI scheme. This can be exploited to display arbitrary content while showing the URL of a trusted web site in the address bar when a user follows a specially crafted link. + + 260 2007-09-06 voroskoi From voroskoi at frugalware.org Thu Sep 6 20:16:37 2007 From: voroskoi at frugalware.org (voroskoi) Date: Thu Sep 6 20:16:41 2007 Subject: [Frugalware-git] homepage-ng: FSA262-asterisk Message-ID: <20070906181637.1D94A13A421C@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=homepage-ng.git;a=commitdiff;h=2594b0082bd5a89fa5610548433ace6f81e91fde commit 2594b0082bd5a89fa5610548433ace6f81e91fde Author: voroskoi Date: Thu Sep 6 20:12:10 2007 +0200 FSA262-asterisk diff --git a/frugalware/xml/security.xml b/frugalware/xml/security.xml index 0edb5c1..448d594 100644 --- a/frugalware/xml/security.xml +++ b/frugalware/xml/security.xml @@ -27,6 +27,22 @@ + 262 + 2007-09-06 + voroskoi + asterisk + 1.4.8-1terminus1 + 1.4.11-1terminus1 + http://bugs.frugalware.org/task/2328 + http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2007-4103 + http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2007-4280 + http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2007-4455 + Three vulnerabilities has been reported in Asterisk, which can be exploited by malicious people to cause a DoS (Denial of Service). + 1) The vulnerability is caused due to the IAX2 Channel Driver improperly processing "NEW" packets. This can be exploited to allocate resources that are never freed by sending multiple "NEW" packets for valid extensions to the server. Successful exploitation results in a DoS, but requires that the IAX2 Channel Driver is configured to allow unauthenticated calls. + 2) The vulnerability is caused due to the Skinny channel driver (chan_skinny) improperly processing packets. This can be exploited to crash the application by sending a "CAPABILITIES_RES_MESSAGE" packet with the capabilities count greater than the total number of items in the "capabilities_res_message" array. + 3) The vulnerability is caused due to the SIP Dialog History of SIP channel driver (chan_sip) recording all history items (88 bytes per item) in memory. This can be exploited to cause a DoS due to memory exhaustion by causing a high amount of logged items. + + 261 2007-09-06 voroskoi From voroskoi at frugalware.org Thu Sep 6 20:21:33 2007 From: voroskoi at frugalware.org (voroskoi) Date: Thu Sep 6 20:21:35 2007 Subject: [Frugalware-git] homepage-ng: FSA263-id3lib Message-ID: <20070906182133.E127913A421C@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=homepage-ng.git;a=commitdiff;h=45d9c63d3fc196262ead7ab92fd070365153f204 commit 45d9c63d3fc196262ead7ab92fd070365153f204 Author: voroskoi Date: Thu Sep 6 20:17:03 2007 +0200 FSA263-id3lib diff --git a/frugalware/xml/security.xml b/frugalware/xml/security.xml index 448d594..46d71a7 100644 --- a/frugalware/xml/security.xml +++ b/frugalware/xml/security.xml @@ -27,6 +27,18 @@ + 263 + 2007-09-06 + voroskoi + id3lib + 3.8.3-3 + 3.8.3-4terminus1 + http://bugs.frugalware.org/task/2372 + http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2007-4460 + Nikolaus Schulz has reported a security issue in id3lib, which can be exploited by malicious, local users to gain escalated privileges. + The security issue is caused due to the "RenderV2ToFile()" function in src/tag_file.cpp handling temporary files in an insecure manner. This can be exploited to execute arbitrary commands with escalated privileges (usually root user). + + 262 2007-09-06 voroskoi From crazy at frugalware.org Thu Sep 6 20:22:31 2007 From: crazy at frugalware.org (crazy) Date: Thu Sep 6 20:22:33 2007 Subject: [Frugalware-git] frugalware-current: emelfm2-0.3.5-1-i686 Message-ID: <20070906182231.44BC913A421C@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=7719b690f66a5c24d972e18c0f81734033963b9b commit 7719b690f66a5c24d972e18c0f81734033963b9b Author: crazy Date: Thu Sep 6 20:18:30 2007 +0200 emelfm2-0.3.5-1-i686 * sha1sums fix diff --git a/source/xapps-extra/emelfm2/FrugalBuild b/source/xapps-extra/emelfm2/FrugalBuild index 0b44a10..32a9f80 100644 --- a/source/xapps-extra/emelfm2/FrugalBuild +++ b/source/xapps-extra/emelfm2/FrugalBuild @@ -31,4 +31,4 @@ build() } sha1sums=('dde4c71458998c7519b8cddcd304798f04970bfb' \ - '7a244fe0831e635d3f0a637c5e9d046cb680dea6') + '2d8dc1aad72e40b66b39942b43afc9a27450af0c') From voroskoi at frugalware.org Thu Sep 6 21:13:44 2007 From: voroskoi at frugalware.org (voroskoi) Date: Thu Sep 6 21:13:46 2007 Subject: [Frugalware-git] frugalware-current: gnuplot-4.2.2-1-i686 Message-ID: <20070906191344.09DAA13A421C@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=c02d4ea359ec6e592336e7ada12fba167d4f7309 commit c02d4ea359ec6e592336e7ada12fba167d4f7309 Author: voroskoi Date: Thu Sep 6 20:57:47 2007 +0200 gnuplot-4.2.2-1-i686 version bump diff --git a/source/xapps-extra/gnuplot/FrugalBuild b/source/xapps-extra/gnuplot/FrugalBuild index 7f3dfd1..60e2410 100644 --- a/source/xapps-extra/gnuplot/FrugalBuild +++ b/source/xapps-extra/gnuplot/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: voroskoi pkgname=gnuplot -pkgver=4.2.1 +pkgver=4.2.2 pkgrel=1 pkgdesc="Gnuplot is a portable command-line driven interactive data and function plotting utility." url="http://www.gnuplot.info/" @@ -13,6 +13,6 @@ groups=('xapps-extra') archs=('i686' 'x86_64') Finclude sourceforge Fconfopts="$Fconfopts --with-x --with-readline=gnu --with-linux-vga --disable-wxwidgets" -sha1sums=('f9002bdb4356b21a6a7c4ecab2654f5320fd45fa') +sha1sums=('991db8024f04e8cad300804bc2661e358fdcf348') # optimization OK From voroskoi at frugalware.org Thu Sep 6 21:22:09 2007 From: voroskoi at frugalware.org (voroskoi) Date: Thu Sep 6 21:22:10 2007 Subject: [Frugalware-git] homepage-ng: FSA264-terminal Message-ID: <20070906192209.BF2F713A421C@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=homepage-ng.git;a=commitdiff;h=892cd34df0865cfe3e2f2bcc473126e1789a2126 commit 892cd34df0865cfe3e2f2bcc473126e1789a2126 Author: voroskoi Date: Thu Sep 6 21:17:44 2007 +0200 FSA264-terminal diff --git a/frugalware/xml/security.xml b/frugalware/xml/security.xml index 46d71a7..b4e28f8 100644 --- a/frugalware/xml/security.xml +++ b/frugalware/xml/security.xml @@ -27,6 +27,18 @@ + 264 + 2007-09-06 + voroskoi + terminal + 0.2.6-1 + 0.2.6-2terminus1 + http://bugs.frugalware.org/task/2256 + http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2007-3770 + Lasse Karkkainen has reported a security issue in Xfce Terminal, which can be exploited by malicious people to inject shell commands. + The "terminal_helper_execute()" function in terminal/terminal.c uses "/bin/sh -c" to spawn the browser process. This can be used to disclose sensitive information or execute shell commands by e.g. tricking a user into opening a malicious link using the "Open Link" functionality. + + 263 2007-09-06 voroskoi From voroskoi at frugalware.org Thu Sep 6 21:40:25 2007 From: voroskoi at frugalware.org (voroskoi) Date: Thu Sep 6 21:40:28 2007 Subject: [Frugalware-git] homepage-ng: FSA265-sudo Message-ID: <20070906194025.C1C6813A421C@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=homepage-ng.git;a=commitdiff;h=dab87a21aa5b0b47f3ccd7be202ed467bea1429f commit dab87a21aa5b0b47f3ccd7be202ed467bea1429f Author: voroskoi Date: Thu Sep 6 21:34:27 2007 +0200 FSA265-sudo diff --git a/frugalware/xml/security.xml b/frugalware/xml/security.xml index b4e28f8..749d57a 100644 --- a/frugalware/xml/security.xml +++ b/frugalware/xml/security.xml @@ -27,6 +27,18 @@ + 265 + 2007-09-06 + voroskoi + sudo + 1.6.8p12-3 + 1.6.8p12-4terminus1 + http://bugs.frugalware.org/task/2373 + http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2007-3149 + A vulnerability has been reported in Sudo, which can be exploited by malicious, local users to bypass certain security restrictions. + The vulnerability is caused due to improper error handling within the Kerberos 5 authentication mechanism. This can be exploited to execute commands allowed by the Sudo configuration without proper authentication. + + 264 2007-09-06 voroskoi From crazy at frugalware.org Thu Sep 6 22:40:09 2007 From: crazy at frugalware.org (crazy) Date: Thu Sep 6 22:40:12 2007 Subject: [Frugalware-git] frugalware-current: taglib-1.4-3-i686 Message-ID: <20070906204009.DC75A13A421C@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=f4e11320858cdf5c66d504a10bbf5aed265fa080 commit f4e11320858cdf5c66d504a10bbf5aed265fa080 Author: crazy Date: Thu Sep 6 22:37:08 2007 +0200 taglib-1.4-3-i686 * rebuild while broken *.la files * new m8r diff --git a/source/lib/taglib/FrugalBuild b/source/lib/taglib/FrugalBuild index 42b5c9b..5133a56 100644 --- a/source/lib/taglib/FrugalBuild +++ b/source/lib/taglib/FrugalBuild @@ -1,10 +1,10 @@ # Compiling Time: 0.38 SBU # Contributor: VMiklos -# Maintainer: Zsolt Szalai +# Maintainer: crazy pkgname=taglib pkgver=1.4 -pkgrel=2 +pkgrel=3 pkgdesc="A library for reading and editing the meta-data of several popular audio formats." url="http://ktown.kde.org/~wheeler/taglib" groups=('lib') From vmiklos at frugalware.org Thu Sep 6 22:43:01 2007 From: vmiklos at frugalware.org (VMiklos) Date: Thu Sep 6 22:43:04 2007 Subject: [Frugalware-git] frugalware-current: glob2-0.9.1-1-i686 Message-ID: <20070906204301.826D513A421C@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=f0ec26a6532ea8878996767729d6d1639bf2eee8 commit f0ec26a6532ea8878996767729d6d1639bf2eee8 Author: VMiklos Date: Thu Sep 6 22:41:14 2007 +0200 glob2-0.9.1-1-i686 version bump added -boostmt.diff to build with our mt boost added missing desktop file diff --git a/source/games-extra/glob2/FrugalBuild b/source/games-extra/glob2/FrugalBuild index c4ffe85..f42b186 100644 --- a/source/games-extra/glob2/FrugalBuild +++ b/source/games-extra/glob2/FrugalBuild @@ -3,22 +3,26 @@ # Contributor: Mcklaren pkgname=glob2 -pkgver=0.8.23 -pkgrel=2 +pkgver=0.9.1 +pkgrel=1 pkgdesc="Innovative Real-Time Strategy (RTS) game which reduces micro-management by automatically assigning tasks to units." url="http://globulation2.org/" depends=('sdl_net' 'sdl_ttf' 'sdlimage' 'libvorbis' 'libgl' 'speex') -makedepends=('boost>=1.34.0') +makedepends=('boost>=1.34.0' 'scons') license="GPL2" groups=('games-extra') archs=('i686' 'x86_64') up2date="lynx -dump http://globulation2.org/wiki/Download_and_Install#Source_Distribution|grep 'Source code'|sed -n 's/.*-\(.*\).t.*/\1/;1 p'" -source=("http://dl.sv.nongnu.org/releases/$pkgname/$pkgver/$pkgname-$pkgver.tar.gz") +source=("http://dl.sv.nongnu.org/releases/$pkgname/$pkgver/$pkgname-$pkgver.tar.gz" glob2-0.9.1-boostmt.diff glob2.desktop) build() { - Fsed "CXXFLAGS=\"-O3 -march=i686\"" "" configure - Fbuild + Fpatchall + cp $Fsrcdir/glob2.desktop data/ || return 1 + scons || return 1 + scons BINDIR="$Fdestdir/usr/bin" INSTALLDIR="$Fdestdir/usr/share" install || return 1 } -sha1sums=('910a6a4af7ff21e768aa525cda61cbd7ae675a7b') +sha1sums=('18136ff058e2b7bd313cefdc45bcbfe25e12a5e0' \ + '14373039ae35116b9bec89604240aab0202d1d99' \ + 'f65660dafea34ca84a53cb8033f856baac65fd84') # optimization OK diff --git a/source/games-extra/glob2/glob2-0.9.1-boostmt.diff b/source/games-extra/glob2/glob2-0.9.1-boostmt.diff new file mode 100644 index 0000000..8476984 --- /dev/null +++ b/source/games-extra/glob2/glob2-0.9.1-boostmt.diff @@ -0,0 +1,22 @@ +--- glob2-0.9.1/SConstruct.orig 2007-09-06 18:01:34.000000000 +0200 ++++ glob2-0.9.1/SConstruct 2007-09-06 18:03:00.000000000 +0200 +@@ -66,8 +66,8 @@ + else: + print "Coulf not find libz or zlib1.dll" + Exit(1) +- if not conf.CheckLib('boost_thread') or not conf.CheckCXXHeader('boost/thread/thread.hpp'): +- print "Could not find libboost_thread or boost/thread/thread.hpp" ++ if not conf.CheckLib('boost_thread-gcc42-mt') or not conf.CheckCXXHeader('boost/thread/thread.hpp'): ++ print "Could not find libboost_thread-gcc42-mt or boost/thread/thread.hpp" + Exit(1) + if not conf.CheckCXXHeader('boost/shared_ptr.hpp'): + print "Could not find boost/shared_ptr.hpp" +@@ -149,7 +149,7 @@ + env.ParseConfig("sdl-config --libs") + if env['osx']: + env.Append(CXXFLAGS="-framework OpenGL") +- env.Append(LIBS=['vorbisfile', 'SDL_ttf', 'SDL_image', 'SDL_net', 'speex', 'boost_thread']) ++ env.Append(LIBS=['vorbisfile', 'SDL_ttf', 'SDL_image', 'SDL_net', 'speex', 'boost_thread-gcc42-mt']) + + env["TARFILE"] = env.Dir("#").abspath + "/glob2-" + env["VERSION"] + ".tar.gz" + env["TARFLAGS"] = "-c -z" diff --git a/source/games-extra/glob2/glob2.desktop b/source/games-extra/glob2/glob2.desktop new file mode 100644 index 0000000..bb87b9c --- /dev/null +++ b/source/games-extra/glob2/glob2.desktop @@ -0,0 +1,11 @@ +[Desktop Entry] +Version=1.0 +Encoding=UTF-8 +Name=Globulation 2 +Comment=An innovative new strategy game +Exec=glob2 +Icon=glob2-icon-48x48 +Terminal=false +X-MultipleArgs=false +Type=Application +Categories=Application;Game;StrategyGame; From vmiklos at frugalware.org Thu Sep 6 23:32:45 2007 From: vmiklos at frugalware.org (VMiklos) Date: Thu Sep 6 23:32:46 2007 Subject: [Frugalware-git] frugalware-current: man-1.6e-2-i686 Message-ID: <20070906213245.4175713A421C@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=bcc6cd122e2aad34fd790f0afc43a790a1145d2f commit bcc6cd122e2aad34fd790f0afc43a790a1145d2f Author: VMiklos Date: Thu Sep 6 23:32:29 2007 +0200 man-1.6e-2-i686 added color support (disabled by default) diff --git a/source/base/man/FrugalBuild b/source/base/man/FrugalBuild index 2a4dade..3dd0fc5 100644 --- a/source/base/man/FrugalBuild +++ b/source/base/man/FrugalBuild @@ -3,17 +3,25 @@ pkgname=man pkgver=1.6e -pkgrel=1 +pkgrel=2 pkgdesc="A utility for reading man pages" url="http://primates.ximian.com/~flucifredi/man/" depends=('groff' 'less' 'gzip' 'gawk' 'coreutils' 'bash') +backup=(etc/profile.d/man-colors.sh) groups=('base') archs=('i686' 'x86_64' 'ppc') up2date="lynx -dump $url |grep tar.gz$|sed 's/.*-\(.*\)\.t.*/\1/;q'" source=($url/$pkgname-$pkgver.tar.gz \ whatis $pkgname-1.6a-groff.diff \ man-1.6c-cut-duplicate-manpaths.patch \ - man.sh) + man.sh man-colors.sh README.Frugalware) +sha1sums=('7264bda7dd7bf08bdb9dac6ec7734e755ec0a8d1' \ + '4119a2bd3b403fc0dd323c2e8b6ae2ff844b2cc5' \ + '1153b05a81fa91d91250aea069457ed8e139faac' \ + '82a9347fc6b9eead15ebba5365040eccf62cc902' \ + '33ed8d61d09f8711176fd18b7ae4e3a2d3354cf6' \ + 'b51fd2d450c7a0982e605e74010256a40a3fa05e' \ + '3a1e22acd8931537d5c2694a536913c02e0d448e') build() { @@ -28,11 +36,8 @@ build() (cd man; make PREFIX=$Fdestdir installsubdirs) Finstall 744 /etc/cron.daily/whatis Fexe /etc/profile.d/man.sh + Ffile /etc/profile.d/man-colors.sh + Fdoc README.Frugalware } # optimization ok -sha1sums=('7264bda7dd7bf08bdb9dac6ec7734e755ec0a8d1' \ - '4119a2bd3b403fc0dd323c2e8b6ae2ff844b2cc5' \ - '1153b05a81fa91d91250aea069457ed8e139faac' \ - '82a9347fc6b9eead15ebba5365040eccf62cc902' \ - '33ed8d61d09f8711176fd18b7ae4e3a2d3354cf6') diff --git a/source/base/man/README.Frugalware b/source/base/man/README.Frugalware new file mode 100644 index 0000000..d4d059a --- /dev/null +++ b/source/base/man/README.Frugalware @@ -0,0 +1,8 @@ +If you like coloured man-pages then you can enable that feature by issuing + +---- +# chmod +x /etc/profile.d/man-colors.sh +---- + +It is handled as a configuration file, so feel free to edit the colors in that +file if you want. diff --git a/source/base/man/man-colors.sh b/source/base/man/man-colors.sh new file mode 100644 index 0000000..6b2635c --- /dev/null +++ b/source/base/man/man-colors.sh @@ -0,0 +1,9 @@ +#!/bin/sh + +# colored manpages in less + +export LESS_TERMCAP_mb=$'\E[01;32m' +export LESS_TERMCAP_md=$'\E[01;32m' +export LESS_TERMCAP_me=$'\E[0m' +export LESS_TERMCAP_ue=$'\E[0m' +export LESS_TERMCAP_us=$'\E[01;34m' From crazy at frugalware.org Thu Sep 6 23:38:28 2007 From: crazy at frugalware.org (crazy) Date: Thu Sep 6 23:38:29 2007 Subject: [Frugalware-git] frugalware-current: pinot-0.76-1-i686 Message-ID: <20070906213828.5BAEE13A421C@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=01fedbba0ec5b44dd4e6a5870977a46a8e513307 commit 01fedbba0ec5b44dd4e6a5870977a46a8e513307 Author: crazy Date: Thu Sep 6 23:34:53 2007 +0200 pinot-0.76-1-i686 * Version bump ( finally ) * added 3 patches to fix some issues I've found * patches and workaround from FB already commited in upstream svn ;) * note there are still problems with dbus in some cases but I work * with upstream to solve these too diff --git a/source/xapps-extra/pinot/FrugalBuild b/source/xapps-extra/pinot/FrugalBuild index 7c85c3b..dd78027 100644 --- a/source/xapps-extra/pinot/FrugalBuild +++ b/source/xapps-extra/pinot/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: crazy pkgname=pinot -pkgver=0.75 +pkgver=0.76 pkgrel=1 pkgdesc="Personal search and metasearch for the Free Desktop" url="http://pinot.berlios.de/" @@ -16,6 +16,24 @@ options=('scriptlet') groups=('xapps-extra') archs=('i686' 'x86_64') Finclude berlios -unset MAKEFLAGS -sha1sums=('7e4c7316af01eb5e514bee013646ce03f6f74617') +source=($source \ + fix_SMP_build.patch \ + dbusxapianindex_reload03.patch \ + desktop.patch) +sha1sums=('e76b717636589bb31dda43dd489de5b851add080' \ + 'a347515f4be9566218c7232e6cb73ae3257999f4' \ + '20261834a958955918e7e3eca9b9d498f6acfaa7' \ + 'a0e47dc21fa7073357b5c5729d3ad22c1f2df43d') + +build() +{ + Fcd + Fpatchall + touch INSTALL ChangeLog || Fdie + mkdir m4 || Fdie + Fautoreconf + Fmake + Fmakeinstall +} + # optimization OK diff --git a/source/xapps-extra/pinot/dbusxapianindex_reload03.patch b/source/xapps-extra/pinot/dbusxapianindex_reload03.patch new file mode 100644 index 0000000..d33097d --- /dev/null +++ b/source/xapps-extra/pinot/dbusxapianindex_reload03.patch @@ -0,0 +1,77 @@ +--- pinot-0.76_bak/Index/DBusXapianIndex.cpp 2007-08-22 21:58:20.000000000 +0800 ++++ pinot-0.76/Index/DBusXapianIndex.cpp 2007-09-01 11:23:26.000000000 +0800 +@@ -17,15 +17,6 @@ + */ + + #include +-extern "C" +-{ +-#if DBUS_VERSION < 1000000 +-#define DBUS_API_SUBJECT_TO_CHANGE +-#endif +-#include +-#include +-#include +-} + + #include "Languages.h" + #include "XapianDatabaseFactory.h" +@@ -302,7 +293,7 @@ + /// Asks the D-Bus service to reload its configuration. + bool DBusXapianIndex::reload(void) + { +- bool reloading = false; ++ gboolean reloading = FALSE; + + DBusGConnection *pBus = getBusConnection(); + if (pBus == NULL) +@@ -333,7 +324,12 @@ + g_object_unref(pBusProxy); + // FIXME: don't we have to call dbus_g_connection_unref(pBus); ? + +- return reloading; ++ if (reloading == TRUE) ++ { ++ return true; ++ } ++ ++ return false; + } + + +--- pinot-0.76_bak/Index/DBusXapianIndex.h 2007-08-22 21:54:40.000000000 +0800 ++++ pinot-0.76/Index/DBusXapianIndex.h 2007-09-01 11:23:37.000000000 +0800 +@@ -21,12 +21,15 @@ + + #include + #include ++#include "config.h" + extern "C" + { + #if DBUS_VERSION < 1000000 + #define DBUS_API_SUBJECT_TO_CHANGE + #endif + #include ++#include ++#include + } + + #include "XapianIndex.h" +--- pinot-0.76_bak/UI/GTK2/src/pinot.cc 2007-08-22 22:01:28.000000000 +0800 ++++ pinot-0.76/UI/GTK2/src/pinot.cc 2007-09-01 10:55:10.000000000 +0800 +@@ -29,6 +29,7 @@ + #include + #include + #include ++#include "config.h" + extern "C" + { + #if DBUS_VERSION < 1000000 +@@ -50,7 +51,6 @@ + #include "ViewHistory.h" + #include "DownloaderInterface.h" + #include "XapianIndex.h" +-#include "config.h" + #include "NLS.h" + #include "PinotSettings.h" + #include "mainWindow.hh" diff --git a/source/xapps-extra/pinot/desktop.patch b/source/xapps-extra/pinot/desktop.patch new file mode 100644 index 0000000..67ee343 --- /dev/null +++ b/source/xapps-extra/pinot/desktop.patch @@ -0,0 +1,22 @@ +--- pinot-0.76/pinot.desktop 2007-03-28 11:52:34.000000000 +0200 ++++ pinot-0.76-p/pinot.desktop 2007-09-06 23:05:06.000000000 +0200 +@@ -16,7 +16,7 @@ + Comment[sv]=SĂśk pĂĽ webben och i dina dokument + Exec=pinot + StartupNotify=true +-Icon=pinot.png ++Icon=pinot + Terminal=false + Type=Application + Categories=GTK;Core;Network;Filesystem; +--- pinot-0.76/pinot-dbus-daemon.desktop 2006-11-12 03:50:07.000000000 +0100 ++++ pinot-0.76-p/pinot-dbus-daemon.desktop 2007-09-06 23:04:55.000000000 +0200 +@@ -2,7 +2,7 @@ + Name=Pinot + Comment=Search the Web and your documents + Exec=pinot-dbus-daemon +-Icon=pinot.png ++Icon=pinot + Terminal=false + Type=Application + Categories= diff --git a/source/xapps-extra/pinot/fix_SMP_build.patch b/source/xapps-extra/pinot/fix_SMP_build.patch new file mode 100644 index 0000000..3a5d28f --- /dev/null +++ b/source/xapps-extra/pinot/fix_SMP_build.patch @@ -0,0 +1,73 @@ +Index: Search/Makefile.am +=================================================================== +--- Search/Makefile.am (Revision 954) ++++ Search/Makefile.am (Arbeitskopie) +@@ -28,7 +28,6 @@ + noinst_LTLIBRARIES = libSearch.la + endif + +-bin_PROGRAMS = pinot-search + + libSearch_la_SOURCES = \ + AbstractGenerator.cpp \ +@@ -55,16 +54,25 @@ + SOAPEnvNS.cpp + endif + +-pinot_search_SOURCES = \ +- pinot-search.cpp ++bin_PROGRAMS = pinot-search + + pinot_search_LDADD = -L../Utils -L../Tokenize -L../Collect -L../Index -LGoogle -Lxesam \ + @SEARCH_LIBS@ -lIndex -lCollect -lTokenize -lUtils -lBasicUtils \ + @GLIBMM_LIBS@ @INDEX_LIBS@ @SOAP_LIBS@ @XML_LIBS@ @GMIME_LIBS@ @HTTP_LIBS@ @MISC_LIBS@ + ++pinot_search_SOURCES = \ ++ pinot-search.cpp ++ ++if HAVE_SOAP ++pinot_search_DEPENDENCIES = libSearch.la libSearchSOAP.la ++else ++pinot_search_DEPENDENCIES = libSearch.la ++endif ++ + SOAPEnvC.cpp : SOAPEnv.h + soapcpp2 -pSOAPEnv SOAPEnv.h + ++ + AM_CXXFLAGS = -I$(srcdir)/../Utils -I$(srcdir)/../Tokenize -I$(srcdir)/../Tokenize/filters \ + -I$(srcdir)/../Collect -I$(srcdir)/../Index -IGoogle -Ixesam \ + @HTTP_CFLAGS@ @XML_CFLAGS@ @INDEX_CFLAGS@ @SOAP_CFLAGS@ @GMIME_CFLAGS@ @GLIBMM_CFLAGS@ +Index: Index/Makefile.am +=================================================================== +--- Index/Makefile.am (Revision 954) ++++ Index/Makefile.am (Arbeitskopie) +@@ -12,8 +12,6 @@ + + noinst_LTLIBRARIES = libIndex.la + +-bin_PROGRAMS = pinot-index +- + libIndex_la_SOURCES = \ + DBusXapianIndex.cpp \ + FilterWrapper.cpp \ +@@ -23,13 +21,17 @@ + XapianDatabaseFactory.cpp \ + XapianIndex.cpp + +-pinot_index_SOURCES = \ +- pinot-index.cpp ++bin_PROGRAMS = pinot-index + + pinot_index_LDADD = -L../Utils -L../Tokenize -L../Collect \ + -lIndex -lCollect -lTokenize -lBasicUtils -lUtils \ + @GLIBMM_LIBS@ @INDEX_LIBS@ @DBUS_LIBS@ @XML_LIBS@ @GMIME_LIBS@ @HTTP_LIBS@ @MISC_LIBS@ + ++pinot_index_SOURCES = \ ++ pinot-index.cpp ++ ++pinot_index_DEPENDENCIES = libIndex.la ++ + AM_CXXFLAGS = -I$(srcdir)/../Utils -I$(srcdir)/../Tokenize -I$(srcdir)/../Tokenize/filters \ + -I$(srcdir)/../Collect @HTTP_CFLAGS@ @GMIME_CFLAGS@ @XML_CFLAGS@ @DBUS_CFLAGS@ @INDEX_CFLAGS@ + From crazy at frugalware.org Fri Sep 7 01:01:32 2007 From: crazy at frugalware.org (crazy) Date: Fri Sep 7 01:01:34 2007 Subject: [Frugalware-git] frugalware-current: obconf-2.0.2-3-i686 Message-ID: <20070906230132.65FAA13A421C@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=d8a35856db1cea7b388397c8811396b77c174599 commit d8a35856db1cea7b388397c8811396b77c174599 Author: crazy Date: Fri Sep 7 00:58:37 2007 +0200 obconf-2.0.2-3-i686 * rebuild * fixes an segfault diff --git a/source/xlib/obconf/FrugalBuild b/source/xlib/obconf/FrugalBuild index 5b58278..ccf07e2 100644 --- a/source/xlib/obconf/FrugalBuild +++ b/source/xlib/obconf/FrugalBuild @@ -1,10 +1,10 @@ # Compiling Time: 0.05 SBU -# Old Maintainer: Adam Zlehovszky +# Contributor: Adam Zlehovszky # Maintainer: detto pkgname=obconf pkgver=2.0.2 -pkgrel=2 +pkgrel=3 pkgdesc="OpenBox's Configuration utility." url="http://icculus.org/openbox" depends=('openbox>=3.4.3' 'gtk+2' 'libglade') From crazy at frugalware.org Fri Sep 7 01:15:55 2007 From: crazy at frugalware.org (crazy) Date: Fri Sep 7 01:15:57 2007 Subject: [Frugalware-git] frugalware-current: conky-1.4.7-1-i686 Message-ID: <20070906231555.25FBF13A421C@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=81a388c3395b961bd3c80335090c4a85990b648e commit 81a388c3395b961bd3c80335090c4a85990b648e Author: crazy Date: Fri Sep 7 01:12:57 2007 +0200 conky-1.4.7-1-i686 * Version bump diff --git a/source/xapps-extra/conky/FrugalBuild b/source/xapps-extra/conky/FrugalBuild index 377e9c9..d0bb55b 100644 --- a/source/xapps-extra/conky/FrugalBuild +++ b/source/xapps-extra/conky/FrugalBuild @@ -3,18 +3,17 @@ # Contributor: Tuxbubling pkgname=conky -pkgver=1.4.6 +pkgver=1.4.7 pkgrel=1 pkgdesc="Light-weight system monitor." _F_sourceforge_ext=".tar.bz2" Finclude sourceforge -url="http://conky.sourceforge.net/" depends=('libxext' 'libxdamage' 'libxrender' 'libxft') makedepends=('xorg-server') groups=('xapps-extra') archs=('i686' 'x86_64') up2date="lynx -dump http://conky.sourceforge.net/ | grep latest | sed -ne '1 p' | sed 's/.*is //;s/.$//'" -sha1sums=('d1d5e0eba97f2abc830c8112587f9abf1d2bde7a') +sha1sums=('531ab8a468c80f5904feb8a26121158cd7af033f') build() { From crazy at frugalware.org Fri Sep 7 01:17:47 2007 From: crazy at frugalware.org (crazy) Date: Fri Sep 7 01:17:50 2007 Subject: [Frugalware-git] frugalware-current: perl-text-iconv-1.5-1-i686 Message-ID: <20070906231747.A598613A421C@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=0777d31928155d98f73e1cd84831f954b586a557 commit 0777d31928155d98f73e1cd84831f954b586a557 Author: crazy Date: Fri Sep 7 01:14:52 2007 +0200 perl-text-iconv-1.5-1-i686 * version bump diff --git a/source/devel-extra/perl-text-iconv/FrugalBuild b/source/devel-extra/perl-text-iconv/FrugalBuild index 17bed11..79225a1 100644 --- a/source/devel-extra/perl-text-iconv/FrugalBuild +++ b/source/devel-extra/perl-text-iconv/FrugalBuild @@ -4,13 +4,13 @@ pkgname=perl-text-iconv _F_perl_name=Text-Iconv _F_perl_author=M/MP/MPIOTR -pkgver=1.4 +pkgver=1.5 pkgrel=1 pkgdesc="Perl interface to iconv() codeset conversion function" depends=('perl') groups=('devel-extra') Finclude perl archs=('i686' 'x86_64') -sha1sums=('da006eff1745f0458a0c72f87eb49c8dc58a46aa') +sha1sums=('c24116b8e0fe4277bc4da425ae06f912772f310a') # optimization OK From crazy at frugalware.org Fri Sep 7 01:19:12 2007 From: crazy at frugalware.org (crazy) Date: Fri Sep 7 01:19:18 2007 Subject: [Frugalware-git] frugalware-current: perl-yaml-syck-0.97-1-i686 Message-ID: <20070906231912.E499813A421C@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=cd2e0b46db5de177e8b3e130cd1c078282938e2e commit cd2e0b46db5de177e8b3e130cd1c078282938e2e Author: crazy Date: Fri Sep 7 01:16:21 2007 +0200 perl-yaml-syck-0.97-1-i686 * Version bump diff --git a/source/devel-extra/perl-yaml-syck/FrugalBuild b/source/devel-extra/perl-yaml-syck/FrugalBuild index 0d97e7f..2b09e14 100644 --- a/source/devel-extra/perl-yaml-syck/FrugalBuild +++ b/source/devel-extra/perl-yaml-syck/FrugalBuild @@ -3,10 +3,10 @@ _F_perl_name=YAML-Syck _F_perl_author=A/AU/AUDREYT -pkgver=0.96 +pkgver=0.97 pkgdesc="Fast, lightweight YAML loader and dumper" Finclude perl archs=('i686' 'x86_64') -sha1sums=('4da41adbf02b34d3d7bd2f186f51c3db2ad6bb0d') +sha1sums=('b8d41d93df5e23197b35ed57ab62f819f8a847d1') # optimization OK From crazy at frugalware.org Fri Sep 7 01:21:24 2007 From: crazy at frugalware.org (crazy) Date: Fri Sep 7 01:21:26 2007 Subject: [Frugalware-git] frugalware-current: perl-compress-zlib-2.006-1-i686 Message-ID: <20070906232124.52BF213A421C@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=62bb712378c6cffd88d68ee0e9c30347f5fa955a commit 62bb712378c6cffd88d68ee0e9c30347f5fa955a Author: crazy Date: Fri Sep 7 01:18:34 2007 +0200 perl-compress-zlib-2.006-1-i686 * Version bump diff --git a/source/devel/perl-compress-zlib/FrugalBuild b/source/devel/perl-compress-zlib/FrugalBuild index e8bbf76..acf2adb 100644 --- a/source/devel/perl-compress-zlib/FrugalBuild +++ b/source/devel/perl-compress-zlib/FrugalBuild @@ -4,7 +4,7 @@ pkgname=perl-compress-zlib _F_perl_name=Compress-Zlib _F_perl_author=P/PM/PMQS -pkgver=2.005 +pkgver=2.006 pkgrel=1 pkgdesc="Interface to zlib compression library" depends=('perl' 'perl-io-compress-zlib>=2.005') @@ -12,5 +12,5 @@ Finclude perl groups=('devel') archs=('i686' 'x86_64') -sha1sums=('ba01e0dcb5848d3eac794930d1b72ec6d480f8e4') +sha1sums=('c7caeb531ca38ad36051c1f3e15ec050dcb0f267') # optimization OK From vmiklos at frugalware.org Fri Sep 7 01:23:10 2007 From: vmiklos at frugalware.org (VMiklos) Date: Fri Sep 7 01:23:15 2007 Subject: [Frugalware-git] setup: don't use busybox's mkswap Message-ID: <20070906232311.07AA613A421C@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=setup.git;a=commitdiff;h=fcd00442b694d73970674a5249d2e488ce642399 commit fcd00442b694d73970674a5249d2e488ce642399 Author: VMiklos Date: Fri Sep 7 01:21:28 2007 +0200 don't use busybox's mkswap closes #2388 diff --git a/Makefile b/Makefile index d8b0e66..f0699bb 100644 --- a/Makefile +++ b/Makefile @@ -213,6 +213,7 @@ busybox: cp -a $(BDIR)/usr/share/busybox busybox mkdir -p busybox/mnt/{source,target} mkdir -p busybox/tmp + rm -f busybox/sbin/mkswap dialog: $(CLEANUP) @@ -347,7 +348,7 @@ util-linux-ng: $(CLEANUP) mkdir -p util-linux-ng/{sbin,usr/bin} $(UNPACK) - cp -a $(BDIR)/sbin/{cfdisk,fdisk} util-linux-ng/sbin/ + cp -a $(BDIR)/sbin/{cfdisk,fdisk,mkswap} util-linux-ng/sbin/ cp -a $(BDIR)/usr/bin/setterm util-linux-ng/usr/bin/ netkit-base: From vmiklos at frugalware.org Fri Sep 7 01:25:19 2007 From: vmiklos at frugalware.org (VMiklos) Date: Fri Sep 7 01:25:21 2007 Subject: [Frugalware-git] setup: fix the install of the setup version of pppoe-start Message-ID: <20070906232519.DAEC313A421C@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=setup.git;a=commitdiff;h=73226ac38b75814ffcff0ff05af8de5efc00fa7c commit 73226ac38b75814ffcff0ff05af8de5efc00fa7c Author: VMiklos Date: Fri Sep 7 01:23:41 2007 +0200 fix the install of the setup version of pppoe-start diff --git a/Makefile b/Makefile index f0699bb..e06c84c 100644 --- a/Makefile +++ b/Makefile @@ -382,7 +382,7 @@ rp-pppoe: $(UNPACK); \ cp -a etc ../rp-pppoe/; \ cp -a usr/sbin ../rp-pppoe/usr/; \ - cp bin/pppoe-start ../rp-pppoe/sbin/ + cp ../bin/pppoe-start ../rp-pppoe/usr/sbin/ glib2: $(CLEANUP) From crazy at frugalware.org Fri Sep 7 01:28:08 2007 From: crazy at frugalware.org (crazy) Date: Fri Sep 7 01:28:10 2007 Subject: [Frugalware-git] frugalware-current: gnome-mplayer-0.5.0-1-i686 Message-ID: <20070906232808.BA2B413A421C@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=8c7fa270dc0c27fc37c3da7cda6db4c7087a8cac commit 8c7fa270dc0c27fc37c3da7cda6db4c7087a8cac Author: crazy Date: Fri Sep 7 01:25:14 2007 +0200 gnome-mplayer-0.5.0-1-i686 * Version bump * added missing scriptlet option diff --git a/source/gnome-extra/gnome-mplayer/FrugalBuild b/source/gnome-extra/gnome-mplayer/FrugalBuild index 240fc10..d5719e9 100644 --- a/source/gnome-extra/gnome-mplayer/FrugalBuild +++ b/source/gnome-extra/gnome-mplayer/FrugalBuild @@ -2,16 +2,17 @@ # Maintainer: detto pkgname=gnome-mplayer -pkgver=0.4.7 +pkgver=0.5.0 pkgrel=1 pkgdesc="A media player for GNOME that uses MPlayer." url="http://dekorte.homeip.net/download/gnome-mplayer" archs=('i686') groups=('gnome-extra') +options=('scriptlet') depends=('libgnomeui' 'mplayer') up2date="lynx -dump $url | grep ".tar.gz" -m1 | cut -d '-' -f4 | sed -n 's|.tar.gz||p'" source=($url/$pkgname-$pkgver.tar.gz) -sha1sums=('bb447baad2ada991bb75f0f4cc6a1d2824dc3c31') +sha1sums=('6a7a219eef033d7f25f7c45353a91539f42f5a78') _F_gnome_schemas=('/etc/gconf/schemas/gnome-mplayer.schemas') Finclude gnome-scriptlet From crazy at frugalware.org Fri Sep 7 01:28:49 2007 From: crazy at frugalware.org (crazy) Date: Fri Sep 7 01:28:50 2007 Subject: [Frugalware-git] frugalware-current: perl-dbi-1.59-1-i686 Message-ID: <20070906232849.ECF5013A421C@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=41571d9d7a50d4fbefefe7cc583be373f0ed80ec commit 41571d9d7a50d4fbefefe7cc583be373f0ed80ec Author: crazy Date: Fri Sep 7 01:25:46 2007 +0200 perl-dbi-1.59-1-i686 * Version bump diff --git a/source/devel/perl-dbi/FrugalBuild b/source/devel/perl-dbi/FrugalBuild index 7f6a043..c832e53 100644 --- a/source/devel/perl-dbi/FrugalBuild +++ b/source/devel/perl-dbi/FrugalBuild @@ -4,7 +4,7 @@ pkgname=perl-dbi _F_perl_name=DBI _F_perl_author=T/TI/TIMB -pkgver=1.58 +pkgver=1.59 pkgrel=1 Finclude perl pkgdesc="Database independent interface for Perl" @@ -12,5 +12,5 @@ url="http://dbi.perl.org/" depends=('perl') groups=('devel') archs=('i686' 'x86_64') -sha1sums=('e91e9bc57940e6953f1ed572d47cefa63479a833') +sha1sums=('4b45d7514698ecbb5422e3d8b67f1d0de1cf76e4') # optimization OK From crazy at frugalware.org Fri Sep 7 01:35:48 2007 From: crazy at frugalware.org (crazy) Date: Fri Sep 7 01:35:52 2007 Subject: [Frugalware-git] frugalware-current: perl-dbd-pg-1.49-4-i686 Message-ID: <20070906233548.9337C13A421C@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=358bcc6ef218fda0803a096dcb42632dd615749c commit 358bcc6ef218fda0803a096dcb42632dd615749c Author: crazy Date: Fri Sep 7 01:32:58 2007 +0200 perl-dbd-pg-1.49-4-i686 * converted to new perl-syntax and rebuild diff --git a/source/devel-extra/perl-dbd-pg/FrugalBuild b/source/devel-extra/perl-dbd-pg/FrugalBuild index b3b47ea..5de61f0 100644 --- a/source/devel-extra/perl-dbd-pg/FrugalBuild +++ b/source/devel-extra/perl-dbd-pg/FrugalBuild @@ -1,31 +1,13 @@ -# Compiling Time: 0.09 SBU -# Maintainer: Zsolt Szalai +# Compiling Time: 0.1 SBU +# Maintainer: Zsolt Szalai -pkgname=perl-dbd-pg +_F_perl_name=DBD-Pg +_F_perl_author=D/DB/DBDPG pkgver=1.49 -pkgrel=3 pkgdesc="PostgreSQL database driver for the DBI module" -url="http://search.cpan.org/search?query=dbd-pg&mode=all" -depends=('perl' 'perl-dbi' 'postgresql>=8.2') -groups=('devel-extra') -archs=('i686' 'x86_64') -up2date="lynx -dump 'http://search.cpan.org/search?query=dbd-pg&mode=all' |grep 'DBD-Pg-.*'|sed -n 's/.*Pg-\(.*\) -.*-.*/\1/; 1 p'" -source=(http://search.cpan.org/CPAN/authors/id/D/DB/DBDPG/DBD-Pg-$pkgver.tar.gz) +depends=('perl-dbi>=1.45' 'postgresql>=8.2') +Finclude perl +pkgrel=4 sha1sums=('37c1c37a02afa00d48f8dd739d5d8502a7c40045') -build() { - Fcd DBD-Pg-$pkgver - perl Makefile.PL - - make || return 1 - - make test || return 1 - - make install DESTDIR=$startdir/pkg - mv $startdir/pkg/usr/lib/perl5/site_perl/?.?.? \ - $startdir/pkg/usr/lib/perl5/site_perl/current - rm -rf $startdir/pkg/usr/lib/perl5/?.?.? - find $startdir/pkg/usr/lib/perl5/site_perl/current/ -name .packlist -exec rm {} \; -} - # optimization OK From crazy at frugalware.org Fri Sep 7 01:49:16 2007 From: crazy at frugalware.org (crazy) Date: Fri Sep 7 01:49:19 2007 Subject: [Frugalware-git] frugalware-current: gtk+2-engines-aurora-1.2-1-i686 Message-ID: <20070906234916.B2DCB13A421C@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=8fef96365300bb5a9a2b70abd82a54760070e7d3 commit 8fef96365300bb5a9a2b70abd82a54760070e7d3 Author: crazy Date: Fri Sep 7 01:46:09 2007 +0200 gtk+2-engines-aurora-1.2-1-i686 * Version bump diff --git a/source/gnome-extra/gtk+2-engines-aurora/FrugalBuild b/source/gnome-extra/gtk+2-engines-aurora/FrugalBuild index 496e1e5..8a74128 100644 --- a/source/gnome-extra/gtk+2-engines-aurora/FrugalBuild +++ b/source/gnome-extra/gtk+2-engines-aurora/FrugalBuild @@ -2,20 +2,21 @@ # Maintainer: detto pkgname=gtk+2-engines-aurora -pkgver=1.1 +pkgver=1.2 pkgrel=1 pkgdesc="Gtk engine providing a consistent and complete look." url="http://gnome-look.org/content/show.php/Aurora+Gtk+Engine?content=56438" archs=('i686') groups=('gnome-extra') +options=('scriptlet') depends=('gtk+2' 'gtk+2-engines' 'gnome-icon-theme') up2date="lynx -dump $url | grep 'Version' | cut -d ' ' -f6" source=(http://gnome-look.org/CONTENT/content-files/56438-Aurora-$pkgver.tar.bz2) -sha1sums=('6d1378b01d486244ea8b1071ba9373653bc1ab47') +sha1sums=('3b83e58c1de3826b0d892ce11a1b240ee71c5471') build () { Fextract aurora-$pkgver.tar.gz - Fextract gtkrc_themes.tar.bz2 + Fextract Gtkrc_themes.tar.bz2 Fcd aurora-$pkgver Fbuild Fmkdir usr/share/themes From crazy at frugalware.org Fri Sep 7 02:31:21 2007 From: crazy at frugalware.org (crazy) Date: Fri Sep 7 02:31:24 2007 Subject: [Frugalware-git] frugalware-current: warsow-0.32-1-i686 Message-ID: <20070907003121.D48F313A421C@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=f0d19afdc598a489c7efcdcc2eaf082342c51f34 commit f0d19afdc598a489c7efcdcc2eaf082342c51f34 Author: crazy Date: Fri Sep 7 02:28:40 2007 +0200 warsow-0.32-1-i686 * Version bump * corrected prefix and X location on make diff --git a/source/games-extra/warsow/FrugalBuild b/source/games-extra/warsow/FrugalBuild index 9b5815d..77080ef 100644 --- a/source/games-extra/warsow/FrugalBuild +++ b/source/games-extra/warsow/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: detto pkgname=warsow -pkgver=0.31 +pkgver=0.32 pkgrel=1 pkgdesc="Free online multiplayer competitive FPS based on the Qfusion engine." url="http://www.warsow.net/" @@ -14,14 +14,14 @@ groups=('games-extra') makedepends=('unzip') depends=('sdl' 'openal' 'curl' 'mesa' 'libxxf86dga' 'libjpeg' 'libvorbis' 'libxinerama') up2date=("lynx -dump $url |grep Latest |sed -e 's/.*ow \(.*\)/\1/'") -source=(http://esport-project.net/downloads/${pkgname}/${pkgname}_${pkgver}_linux.tar.gz \ - http://esport-project.net/downloads/${pkgname}/${pkgname}_${pkgver}_sdk.zip \ - http://mitglied.lycos.de/r3360/warsow/wsw-icon/wsw-icon_48x48.png \ +source=(http://www.67250.com/warsow/${pkgname}_${pkgver}_linux.tar.gz \ + http://www.67250.com/warsow/${pkgname}_${pkgver}_sdk.zip \ + http://mitglied.lycos.de/r3360/warsow/wsw-icon/wsw-icon_48x48.png \ warsow.sh warsow_server.sh) -sha1sums=('0e4cc49255bb33ae5a07a79662d2ca350f8ca18e'\ - '27175a12f8b88f3a2c7ef998a551c10fae54e94d'\ - '54e59b98772d11914ca6881a5c60c45698f550e6'\ - 'c4b18b46e02c7e120c18427e7ace272d51680da4'\ +sha1sums=('05691ca3aea23de5280b88004a05491339a6eee6' \ + '09a9cb1d231dfdf62dc6249f9faba7760cde2e0f' \ + '54e59b98772d11914ca6881a5c60c45698f550e6' \ + 'c4b18b46e02c7e120c18427e7ace272d51680da4' \ 'ef06eae2aded9d4f6afc2ebe85d9bf0106e1d843') build () { @@ -38,8 +38,10 @@ build () { Ffileschmod usr/share/warsow/wsw_server 755 # going to compile source... - Fcd warsow_0.31/source - Fmake + Fcd ${pkgname}_${pkgver}/source + Fmake DEBUG_BUILD=NO \ + LOCALBASE=/usr \ + X11BASE=/usr if [ "$CARCH" = "x86_64" ]; then # copy built binaries to pkg... From crazy at frugalware.org Fri Sep 7 02:35:34 2007 From: crazy at frugalware.org (crazy) Date: Fri Sep 7 02:35:34 2007 Subject: [Frugalware-git] frugalware-current: ctags-5.7-1-i686 Message-ID: <20070907003534.2B96613A421D@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=4c381f4dfe0ec29f5f08c472956230847676ea7f commit 4c381f4dfe0ec29f5f08c472956230847676ea7f Author: crazy Date: Fri Sep 7 02:32:42 2007 +0200 ctags-5.7-1-i686 * Version bump diff --git a/source/devel-extra/ctags/FrugalBuild b/source/devel-extra/ctags/FrugalBuild index 71d90d9..479a2db 100644 --- a/source/devel-extra/ctags/FrugalBuild +++ b/source/devel-extra/ctags/FrugalBuild @@ -2,13 +2,12 @@ # Maintainer: BMH1980 pkgname=ctags -pkgver=5.6 -pkgrel=2 +pkgver=5.7 +pkgrel=1 pkgdesc="A multilanguage implementation of Ctags" -url="http://ctags.sourceforge.net/" license="GPL2" Finclude sourceforge -sha1sums=('930afaa138624717393fe475201f795251bd5e5e') +sha1sums=('f7e435286c25181d6cb28ca1ac2d4ba63507a82d') groups=('devel-extra') archs=('i686' 'x86_64') depends=('glibc') From crazy at frugalware.org Fri Sep 7 02:59:22 2007 From: crazy at frugalware.org (crazy) Date: Fri Sep 7 02:59:24 2007 Subject: [Frugalware-git] frugalware-current: monodevelop-0.15-1-i686 Message-ID: <20070907005922.494DB13A421C@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=0f97ba21c3d0902d1c9deb2ba1643f12a73a00ae commit 0f97ba21c3d0902d1c9deb2ba1643f12a73a00ae Author: crazy Date: Fri Sep 7 02:54:10 2007 +0200 monodevelop-0.15-1-i686 * Version bump diff --git a/source/gnome-extra/monodevelop/FrugalBuild b/source/gnome-extra/monodevelop/FrugalBuild index f762b91..538404e 100644 --- a/source/gnome-extra/monodevelop/FrugalBuild +++ b/source/gnome-extra/monodevelop/FrugalBuild @@ -2,8 +2,8 @@ # Maintainer: AlexExtreme pkgname=monodevelop -pkgver=0.14 -pkgrel=4 +pkgver=0.15 +pkgrel=1 pkgdesc="A project to port SharpDevelop to Gtk#" url="http://www.mono-project.com/" depends=('gecko-sharp' 'gtksourceview-sharp' 'shared-mime-info' 'mono-tools>=1.2.4-2' 'firefox=2.0.0.6' 'ikvm' 'boo' 'gnome-sharp') @@ -19,7 +19,7 @@ options=('scriptlet' 'force') _F_gnome_desktop=y _F_gnome_mime=y Finclude gnome-scriptlet mono -sha1sums=('b29762372464ec30301b485deade397919095ea6' \ +sha1sums=('83c903107590204e140cfb25c8bd7cdf437ec35b' \ '719b456cee8e5e2b4cf3778915464c191f246d98' \ '7e138cb136265162cdaf86520c4781b6ff2b9192' \ 'db0fe450ef76f83853179bd0fd557f408175c3ee') From crazy at frugalware.org Fri Sep 7 03:03:17 2007 From: crazy at frugalware.org (crazy) Date: Fri Sep 7 03:03:19 2007 Subject: [Frugalware-git] frugalware-current: libnjb-2.2.6-1-i686 Message-ID: <20070907010317.3F01013A421C@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=a159f4e5f64dd06fb1b561072c8ba3e10064a101 commit a159f4e5f64dd06fb1b561072c8ba3e10064a101 Author: crazy Date: Fri Sep 7 03:00:19 2007 +0200 libnjb-2.2.6-1-i686 * Version bump diff --git a/source/lib-extra/libnjb/FrugalBuild b/source/lib-extra/libnjb/FrugalBuild index 049ea6b..4f9a189 100644 --- a/source/lib-extra/libnjb/FrugalBuild +++ b/source/lib-extra/libnjb/FrugalBuild @@ -2,15 +2,17 @@ # Maintainer: BMH1980 pkgname=libnjb -pkgver=2.2.5 +pkgver=2.2.6 pkgrel=1 pkgdesc="C library/API for communicating with the Creative Nomad JukeBox and Dell DJ digital audio players." depends=('libusb' 'ncurses' 'zlib') makedepends=('doxygen') Finclude sourceforge -sha1sums=('818b3134116937dc5ef8f81939cf21e6a9b451b0') +sha1sums=('339c24b1c007d914d2d4969315a3e128603a046a') license="BSD" groups=('lib-extra') archs=('i686' 'x86_64') # optimalization OK + +# optimization OK From crazy at frugalware.org Fri Sep 7 03:11:01 2007 From: crazy at frugalware.org (crazy) Date: Fri Sep 7 03:11:04 2007 Subject: [Frugalware-git] frugalware-current: libnjb-2.2.6-1-i686 Message-ID: <20070907011101.B3E4413A421C@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=493381e63880967cf4dab97ad3838308c7391956 commit 493381e63880967cf4dab97ad3838308c7391956 Author: crazy Date: Fri Sep 7 03:07:27 2007 +0200 libnjb-2.2.6-1-i686 * damn forgot to remove optimili... thing diff --git a/source/lib-extra/libnjb/FrugalBuild b/source/lib-extra/libnjb/FrugalBuild index 4f9a189..9759249 100644 --- a/source/lib-extra/libnjb/FrugalBuild +++ b/source/lib-extra/libnjb/FrugalBuild @@ -13,6 +13,4 @@ license="BSD" groups=('lib-extra') archs=('i686' 'x86_64') -# optimalization OK - # optimization OK From crazy at frugalware.org Fri Sep 7 03:42:56 2007 From: crazy at frugalware.org (crazy) Date: Fri Sep 7 03:42:59 2007 Subject: [Frugalware-git] frugalware-current: evolution-sharp-0.13.3-1-i686 Message-ID: <20070907014256.C24B213A421C@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=adca14649798abd47a1941f83644aed0a049b08b commit adca14649798abd47a1941f83644aed0a049b08b Author: crazy Date: Fri Sep 7 03:39:59 2007 +0200 evolution-sharp-0.13.3-1-i686 * Version bump ( to make beagle happy ) * added _F_gnome_devel="y" .. in fact this can stay with that * because the bindings deals with older EVO's too diff --git a/source/gnome-extra/evolution-sharp/FrugalBuild b/source/gnome-extra/evolution-sharp/FrugalBuild index 60332ce..88debbb 100644 --- a/source/gnome-extra/evolution-sharp/FrugalBuild +++ b/source/gnome-extra/evolution-sharp/FrugalBuild @@ -2,16 +2,17 @@ # Maintainer: AlexExtreme pkgname=evolution-sharp -pkgver=0.12.4 +pkgver=0.13.3 pkgrel=1 pkgdesc="Mono bindings for evolution." url="http://www.gnome.org" depends=('gtk2-sharp>=2.10.0' 'atk' 'libsm' 'evolution>=2.10.1' 'gnome-sharp>=2.16.0') makedepends=('pkgconfig') +_F_gnome_devel="y" Finclude gnome mono groups=('gnome-extra') archs=('i686' 'x86_64') -sha1sums=('65e76eaaa88c4c84d92599c9ea2d26e3441c59d7') +sha1sums=('f85d2ac9232167b852d7589645213625db2566de') build() { Fmonoexport From crazy at frugalware.org Fri Sep 7 03:59:02 2007 From: crazy at frugalware.org (crazy) Date: Fri Sep 7 03:59:04 2007 Subject: [Frugalware-git] frugalware-current: beagle-0.2.18-1-i686 Message-ID: <20070907015902.6E38B13A421C@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=1148483eca8dd9ed27087a93c542c00d38f30ea5 commit 1148483eca8dd9ed27087a93c542c00d38f30ea5 Author: crazy Date: Fri Sep 7 03:54:57 2007 +0200 beagle-0.2.18-1-i686 * Version bump diff --git a/source/gnome-extra/beagle/FrugalBuild b/source/gnome-extra/beagle/FrugalBuild index 947f4a0..ff5b26a 100644 --- a/source/gnome-extra/beagle/FrugalBuild +++ b/source/gnome-extra/beagle/FrugalBuild @@ -2,22 +2,22 @@ # Maintainer: AlexExtreme pkgname=beagle -pkgver=0.2.17 +pkgver=0.2.18 pkgrel=1 pkgdesc="Search tool that ransacks your personal information space" url="http://beagle-project.org" depends=('gecko-sharp' 'gmime>=2.2.3-1' 'libexif' 'sqlite3' 'libxscrnsaver' 'perl-xml' \ 'wv' 'gnome-sharp' 'gsf-sharp' 'galago-sharp') -makedepends=('intltool' 'pygtk' 'zip' 'unzip' 'evolution-sharp' 'python>=2.5' 'thunderbird' 'scrnsaverproto') +makedepends=('intltool' 'pygtk' 'zip' 'unzip' 'evolution-sharp>=0.13.3' 'python>=2.5' 'thunderbird' 'scrnsaverproto') backup=('etc/beagle/crawl-applications' 'etc/beagle/crawl-documentation' 'etc/beagle/crawl-windows') groups=('gnome-extra') archs=('i686' 'x86_64') Finclude gnome mono python -sha1sums=('d761bd185bcd1bd9c0652ee3f08ff2a8ec5cb7d8') +sha1sums=('02b37003e3fc223f074b0b27cc1351f9f1964ff4') subpkgs=("$pkgname-evolution" "lib$pkgname" "$pkgname-gui" "$pkgname-thunderbird" "$pkgname-mozilla") subdescs=('Beagle evolution bindings.' 'Beagle client library.' 'Desktop Search Application.' 'Beagle backend for thunderbird' 'Beagle extension for Mozilla') -subdepends=("$pkgname=$pkgver evolution-sharp" 'libxml2 glib2 glibc python>=2.5' "$pkgname=$pkgver" "$pkgname=$pkgver thunderbird" "$pkgname=$pkgver") +subdepends=("$pkgname=$pkgver evolution-sharp>=0.13.3" 'libxml2 glib2 glibc python>=2.5' "$pkgname=$pkgver" "$pkgname=$pkgver thunderbird" "$pkgname=$pkgver") subgroups=('gnome-extra' 'lib-extra' 'gnome-extra' 'gnome-extra' 'gnome-extra') suboptions=('scriptlet' 'scriptlet' 'scriptlet' 'scriptlet' 'scriptlet') subarchs=('i686 x86_64' 'i686 x86_64' 'i686 x86_64' 'i686 x86_64' 'i686 x86_64') From crazy at frugalware.org Fri Sep 7 04:01:39 2007 From: crazy at frugalware.org (crazy) Date: Fri Sep 7 04:01:45 2007 Subject: [Frugalware-git] frugalware-current: dnsmasq-2.40-1-i686 Message-ID: <20070907020139.48F0E13A421C@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=bee6295d86f39a09066ea7517aa65b8ce9e4b94d commit bee6295d86f39a09066ea7517aa65b8ce9e4b94d Author: crazy Date: Fri Sep 7 03:58:36 2007 +0200 dnsmasq-2.40-1-i686 * Version bump diff --git a/source/network-extra/dnsmasq/FrugalBuild b/source/network-extra/dnsmasq/FrugalBuild index 8e43b5e..15faf3c 100644 --- a/source/network-extra/dnsmasq/FrugalBuild +++ b/source/network-extra/dnsmasq/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: DNAku pkgname=dnsmasq -pkgver=2.39 +pkgver=2.40 pkgrel=1 pkgdesc="Dnsmasq is a lightweight, easy to configure DNS forwarder and DHCP server." url="http://thekelleys.org.uk/dnsmasq/doc.html" @@ -13,9 +13,9 @@ groups=('network-extra') up2date="lynx -dump http://www.thekelleys.org.uk/dnsmasq |grep 'LATEST'|sed 's/ //g'|sed 's/.].*//g'|sed 's/.*_//g'|sed -e '/^$/d'" source=(http://thekelleys.org.uk/dnsmasq/$pkgname-$pkgver.tar.gz \ rc.dnsmasq dnsmasq.conf makefile.patch) -sha1sums=('9c6e3b0739e7b3e55aab14acb2bed81c6fb47db9'\ - '6d3cb198ff8aec2b5b7f1b51d4cb3cfd44c9d8fd'\ - 'fd09fa99f453cf81e905e2de4da2137e8c3be3d4'\ +sha1sums=('4af93b18c262b83e5f6bd24004483aa2ec6f3d20' \ + '6d3cb198ff8aec2b5b7f1b51d4cb3cfd44c9d8fd' \ + 'fd09fa99f453cf81e905e2de4da2137e8c3be3d4' \ '08365f004c5361448e5b84a5cac9e12c65f3fa79') build() { From crazy at frugalware.org Fri Sep 7 04:19:11 2007 From: crazy at frugalware.org (crazy) Date: Fri Sep 7 04:19:15 2007 Subject: [Frugalware-git] frugalware-current: gnome-build-0.2.0-1-i686 Message-ID: <20070907021911.9475213A421C@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=eca69a51d64c78ef4ac088ef42663f273b815ede commit eca69a51d64c78ef4ac088ef42663f273b815ede Author: crazy Date: Fri Sep 7 04:16:13 2007 +0200 gnome-build-0.2.0-1-i686 * Version bump diff --git a/source/gnome-extra/gnome-build/FrugalBuild b/source/gnome-extra/gnome-build/FrugalBuild index 640492a..932c5f8 100644 --- a/source/gnome-extra/gnome-build/FrugalBuild +++ b/source/gnome-extra/gnome-build/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: AlexExtreme pkgname=gnome-build -pkgver=0.1.7 +pkgver=0.2.0 pkgrel=1 pkgdesc="Project management components of GNOME Devtools" url="http://www.gnome.org/projects/devtools" @@ -13,6 +13,6 @@ makedepends=('perl-xml' 'intltool') groups=('gnome-extra') archs=('i686' 'x86_64') unset MAKEFLAGS -sha1sums=('9eb57ba076af1c2f31f8316ed049170c10ca6823') +sha1sums=('3c5674151ce9614663cae5073c1ac510e1060886') # optimization OK From voroskoi at frugalware.org Fri Sep 7 09:35:39 2007 From: voroskoi at frugalware.org (voroskoi) Date: Fri Sep 7 09:35:42 2007 Subject: [Frugalware-git] frugalware-current: keychain-2.6.8-1-i686 Message-ID: <20070907073539.84CBF13A422C@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=3fe61813848c91857f1210908c7ad7ca9a0b6481 commit 3fe61813848c91857f1210908c7ad7ca9a0b6481 Author: voroskoi Date: Fri Sep 7 09:30:50 2007 +0200 keychain-2.6.8-1-i686 changed keychain hp and desc diff --git a/source/network/keychain/FrugalBuild b/source/network/keychain/FrugalBuild index 2c84ad3..1d7ce6e 100644 --- a/source/network/keychain/FrugalBuild +++ b/source/network/keychain/FrugalBuild @@ -4,14 +4,13 @@ pkgname=keychain pkgver=2.6.8 pkgrel=1 -pkgdesc="ssh-agent manager" -url="http://www.gentoo.org/proj/en/keychain/" +pkgdesc="Keychain is a script that provides some automation around the task of sharing a long-running ssh-agent between processes." +url="http://n01se.net/agriffis/keychain/" depends=('openssh' 'bash' 'grep') groups=('network') archs=('i686' 'x86_64') -up2date="lynx -dump http://dev.gentoo.org/~agriffis/keychain/|grep keychain/keychain |grep tar |sed -n -e 's/.*n-\(.*\)\.t.*/\1/' -e '1 p'" -source=(http://dev.gentoo.org/~agriffis/keychain/$pkgname-$pkgver.tar.bz2) -#see http://dev.gentoo.org/~agriffis/keychain/ +up2date="lynx -dump $url |grep keychain/keychain |grep tar |sed -ne 's/.*n-\(.*\)\.t.*/\1/;1p'" +source=(http://n01se.net/agriffis/keychain/keychain-$pkgver.tar.bz2) sha1sums=('0c1b645b68b9fe23bfe217963df45a033d84fe9c') build() { From vmiklos at frugalware.org Fri Sep 7 11:22:09 2007 From: vmiklos at frugalware.org (VMiklos) Date: Fri Sep 7 11:22:12 2007 Subject: [Frugalware-git] frugalware-current: scm.sh: do not require _F_scm_module for svn Message-ID: <20070907092209.4B68913A422D@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=cf165ce95dfed2a8e065827ee91f65356f2dbd2b commit cf165ce95dfed2a8e065827ee91f65356f2dbd2b Author: VMiklos Date: Fri Sep 7 11:21:12 2007 +0200 scm.sh: do not require _F_scm_module for svn diff --git a/source/include/scm.sh b/source/include/scm.sh index db15483..a9a7c69 100644 --- a/source/include/scm.sh +++ b/source/include/scm.sh @@ -66,7 +66,7 @@ # * _F_scm_type: can be darcs, cvs, subversion, git, mercurial or bzr - required # * _F_scm_url: url of the repo - required # * _F_scm_password: password of the repo - required for cvs -# * _F_scm_module: name of the module to check out - required for cvs and subversion +# * _F_scm_module: name of the module to check out - required for cvs # * _F_scm_tag: name of the tag/branch to use - implemented for darcs/cvs/git ### @@ -128,8 +128,8 @@ Funpack_scm() fi Fcd $_F_scm_module elif [ "$_F_scm_type" == "subversion" ]; then - svn co $_F_scm_url $_F_scm_module || Fdie - Fcd $_F_scm_module + svn co $_F_scm_url $pkgname || Fdie + Fcd $pkgname elif [ "$_F_scm_type" == "git" ]; then if [ -d $pkgname ]; then cd $pkgname From vmiklos at frugalware.org Fri Sep 7 11:22:09 2007 From: vmiklos at frugalware.org (VMiklos) Date: Fri Sep 7 11:22:13 2007 Subject: [Frugalware-git] frugalware-current: scm.sh: _F_scm_tag for git now supports branches, too Message-ID: <20070907092209.36F4A13A422C@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=de76c6654b46240f3f65f3cc20f09526621d2100 commit de76c6654b46240f3f65f3cc20f09526621d2100 Author: VMiklos Date: Fri Sep 7 11:19:14 2007 +0200 scm.sh: _F_scm_tag for git now supports branches, too diff --git a/source/include/scm.sh b/source/include/scm.sh index 1add83a..db15483 100644 --- a/source/include/scm.sh +++ b/source/include/scm.sh @@ -139,7 +139,13 @@ Funpack_scm() cd $pkgname fi if [ -n "$_F_scm_tag" ]; then - git checkout $_F_scm_tag || Fdie + if [ -d .git/refs/tags/$_F_scm_tag ]; then + # this is a tag + git checkout $_F_scm_tag || Fdie + else + # this is a branch + git checkout origin/$_F_scm_tag || Fdie + fi fi elif [ "$_F_scm_type" == "mercurial" ]; then hg clone $_F_scm_url || Fdie From voroskoi at frugalware.org Fri Sep 7 12:37:37 2007 From: voroskoi at frugalware.org (voroskoi) Date: Fri Sep 7 12:37:49 2007 Subject: [Frugalware-git] frugalware-current: rsync-2.6.9-2-i686 Message-ID: <20070907103737.8404C13A422C@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=70b83c16cd6c5f6ff50d94b22af0c16a7bdd75fa commit 70b83c16cd6c5f6ff50d94b22af0c16a7bdd75fa Author: voroskoi Date: Fri Sep 7 12:32:17 2007 +0200 rsync-2.6.9-2-i686 secfix relbump, closes #2371 in -current sha1->signatures new m8r diff --git a/source/network/rsync/FrugalBuild b/source/network/rsync/FrugalBuild index ba5b644..56a0d9b 100644 --- a/source/network/rsync/FrugalBuild +++ b/source/network/rsync/FrugalBuild @@ -1,10 +1,10 @@ # Compiling Time: 0.09 SBU # Contributor: VMiklos -# Maintainer: Zsolt Szalai +# Maintainer: voroskoi pkgname=rsync pkgver=2.6.9 -pkgrel=1 +pkgrel=2 pkgdesc="An open source utility that provides fast incremental file transfer." url="http://samba.anu.edu.au/rsync/" groups=('network' 'devel-core') @@ -14,7 +14,9 @@ depends=('popt') install=$pkgname.install up2date="lynx -dump $url|grep 'released\.' |grep -v pre|sed -ne 's/.*n \(.*\) h.*/\1/' -e '1 p'" source=(http://rsync.samba.org/ftp/rsync/$pkgname-$pkgver.tar.gz \ + http://www.suse.de/~krahmer/rsync-2.6.9-fname-obo.diff \ rsyncd.conf rc.rsyncd) +signatures=($source.asc '' '' '') build() { @@ -24,6 +26,3 @@ build() } # optimization OK -sha1sums=('341618e230ea2e0e551d0ccf06f840d4f824c843' \ - '23179269b311d00b518e2c54ca4cba8c9d3cb586' \ - '194d1aa56d9a7e974d282665bbf0a2918b5dcbd5') From vmiklos at frugalware.org Fri Sep 7 13:01:23 2007 From: vmiklos at frugalware.org (VMiklos) Date: Fri Sep 7 13:01:26 2007 Subject: [Frugalware-git] frugalware-current: vlc-0.8.6-7-i686 Message-ID: <20070907110123.A113A13A422C@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=ab55d61605047c53387e49d69afb1e18abd6800d commit ab55d61605047c53387e49d69afb1e18abd6800d Author: VMiklos Date: Fri Sep 7 13:00:34 2007 +0200 vlc-0.8.6-7-i686 rebuilt using --with-ffmpeg-faad closes #2393 diff --git a/source/xmultimedia-extra/vlc/FrugalBuild b/source/xmultimedia-extra/vlc/FrugalBuild index 4e271ff..01a994e 100644 --- a/source/xmultimedia-extra/vlc/FrugalBuild +++ b/source/xmultimedia-extra/vlc/FrugalBuild @@ -4,7 +4,7 @@ pkgname=vlc pkgver=0.8.6 pkgextraver=c -pkgrel=6 +pkgrel=7 pkgdesc="The cross-platform media player and streaming server." url="http://www.videolan.org/vlc/" depends=('alsa-lib' 'dbus-glib>=0.71' 'hal>=0.5.7.1-3' 'libxml2' 'libdvdnav' 'libmad' 'libmatroska' \ @@ -56,7 +56,7 @@ build() --with-gnu-ld \ --enable-dvbpsi \ --with-dvbpsi=/usr/include/dvbpsi \ - --with-ffmpeg-{mp3lame,faac,dts,vorbis,theora,ogg} + --with-ffmpeg-{mp3lame,faac,faad,dts,vorbis,theora,ogg} Fsed '%{idldir}' '/usr/share/idl/firefox' mozilla/Makefile make || return 1 Fmakeinstall plugindir=/usr/lib/mozilla/plugins/ \ From voroskoi at frugalware.org Fri Sep 7 13:15:24 2007 From: voroskoi at frugalware.org (voroskoi) Date: Fri Sep 7 13:15:34 2007 Subject: [Frugalware-git] frugalware-current: pure-ftpd-1.0.21-6-i686 Message-ID: <20070907111524.DF6E313A422C@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=0483f473fe44fb5bbe1e1309dfa7a5b84578b347 commit 0483f473fe44fb5bbe1e1309dfa7a5b84578b347 Author: voroskoi Date: Fri Sep 7 13:07:47 2007 +0200 pure-ftpd-1.0.21-6-i686 removed gnutls from depends() ok @ vmiklos diff --git a/source/network-extra/pure-ftpd/FrugalBuild b/source/network-extra/pure-ftpd/FrugalBuild index 5ec1517..bd53bb6 100644 --- a/source/network-extra/pure-ftpd/FrugalBuild +++ b/source/network-extra/pure-ftpd/FrugalBuild @@ -3,10 +3,10 @@ pkgname=pure-ftpd pkgver=1.0.21 -pkgrel=5 +pkgrel=6 pkgdesc="A free, secure, production-quality and standard-conformant FTP server" url="http://www.pureftpd.org/" -depends=('libcap' 'libmysqlclient' 'gnutls>=1.6.3') +depends=('libcap' 'libmysqlclient') makedepends=('mysql') backup=('etc/pure-ftpd.conf') groups=('network-extra') @@ -14,10 +14,10 @@ archs=('i686' 'x86_64') up2date="lynx -dump $url |grep Version|sed 's/.*n \(.*\) h.*/\1/'" source=(ftp://ftp.pureftpd.org/pub/$pkgname/releases/$pkgname-$pkgver.tar.bz2 \ pure-config.pl pure-ftpd.conf rc.$pkgname rc.$pkgname-hu.po) -sha1sums=('4de17a0de481687fba2f46e85c279e4d33611a82'\ - '274bf6399afa4fbb6cb8593181c103e3ff7f1070'\ - '7c6b89a0dcefdd96e2da943ec4b21a9d952d86eb'\ - '2a0b5d5151251deb129c061a78fa5eca5525e99e'\ +sha1sums=('1405ff2b9b9c3616c4e390eb99779884173a3347' \ + '274bf6399afa4fbb6cb8593181c103e3ff7f1070' \ + '7c6b89a0dcefdd96e2da943ec4b21a9d952d86eb' \ + '2a0b5d5151251deb129c061a78fa5eca5525e99e' \ '1a12dbfaa9d2d5914b7a1db040d5d6ced71cd659') build() From crazy at frugalware.org Fri Sep 7 13:21:06 2007 From: crazy at frugalware.org (crazy) Date: Fri Sep 7 13:21:09 2007 Subject: [Frugalware-git] frugalware-current: graphviz-2.14-2-i686 Message-ID: <20070907112106.25F1513A422C@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=102296e97f11cd1e95369684016467b475f49191 commit 102296e97f11cd1e95369684016467b475f49191 Author: crazy Date: Fri Sep 7 13:15:38 2007 +0200 graphviz-2.14-2-i686 * relbump * install missing header file * btw this package need splitting after 0.7 diff --git a/source/xapps-extra/graphviz/FrugalBuild b/source/xapps-extra/graphviz/FrugalBuild index 2440232..dfcd40a 100644 --- a/source/xapps-extra/graphviz/FrugalBuild +++ b/source/xapps-extra/graphviz/FrugalBuild @@ -3,16 +3,16 @@ pkgname=graphviz pkgver=2.14 -pkgrel=1 +pkgrel=2 pkgdesc="Open Source Graph Visualization Software" url="http://www.graphviz.org/" depends=('fontconfig' 'python' 'libjpeg' 'libpng' 'ruby' 'libtool' 'tk' 'guile' 'ocaml' 'libxaw' 'libstdc++' 'pango' 'cairo') makedepends=('tcl' 'tk' 'swig') groups=('xapps-extra') archs=('x86_64' 'i686') +options=('scriptlet') up2date="lynx -dump http://www.graphviz.org/pub/graphviz/ARCHIVE/|grep 'graphviz-[0-9\.]*.tar.gz$'|sed -n 's/.*-\(.*\)\.t.*/\1/;$ p'" source=(http://www.graphviz.org/pub/graphviz/ARCHIVE/$pkgname-$pkgver.tar.gz) -install=$pkgname.install sha1sums=('685cbbc3d2038d3c214ed6c4d66fb9b8354341dc') build() { @@ -23,6 +23,11 @@ build() { --with-dynagraph \ --with-tcl --with-tk \ --with-pangocairo + ## anjuta won't build without , geom.h is broken for real + ## while include that header which is not installed ... + cp lib/common/arith.h \ + $Fdestdir/usr/include/$pkgname + } # optimization OK From voroskoi at frugalware.org Fri Sep 7 13:32:07 2007 From: voroskoi at frugalware.org (voroskoi) Date: Fri Sep 7 13:32:15 2007 Subject: [Frugalware-git] homepage-ng: FSA266-tetex Message-ID: <20070907113207.CF03513A422C@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=homepage-ng.git;a=commitdiff;h=2097fa085e1889f93125f19ef6c2ff9bbe2f0974 commit 2097fa085e1889f93125f19ef6c2ff9bbe2f0974 Author: voroskoi Date: Fri Sep 7 13:27:26 2007 +0200 FSA266-tetex diff --git a/frugalware/xml/security.xml b/frugalware/xml/security.xml index 749d57a..a1ba0da 100644 --- a/frugalware/xml/security.xml +++ b/frugalware/xml/security.xml @@ -27,6 +27,19 @@ + 266 + 2007-09-07 + voroskoi + tetex + 3.0-10 + 3.0-11terminus1 + http://bugs.frugalware.org/task/2310 + http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2005-3193 + http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2007-0650 + http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2007-3387 + A vulnerability has been reported in teTeX, which potentially can be exploited by malicious people to compromise a user's system. The vulnerability is caused due to the use of vulnerable Xpdf code. + + 265 2007-09-06 voroskoi From voroskoi at frugalware.org Fri Sep 7 13:41:36 2007 From: voroskoi at frugalware.org (voroskoi) Date: Fri Sep 7 13:41:38 2007 Subject: [Frugalware-git] homepage-ng: FSA267-gdm Message-ID: <20070907114136.7055E13A422C@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=homepage-ng.git;a=commitdiff;h=994c073650b0fa219f51c4590c861a77e935c937 commit 994c073650b0fa219f51c4590c861a77e935c937 Author: voroskoi Date: Fri Sep 7 13:36:25 2007 +0200 FSA267-gdm diff --git a/frugalware/xml/security.xml b/frugalware/xml/security.xml index a1ba0da..ba48966 100644 --- a/frugalware/xml/security.xml +++ b/frugalware/xml/security.xml @@ -27,6 +27,18 @@ + 267 + 2007-09-07 + voroskoi + gdm + 2.18.0-1 + 2.18.0-2terminus1 + http://bugs.frugalware.org/task/2329 + http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2007-3381 + A vulnerability has been discovered in GNOME Display Manager, which can be exploited by malicious, local users to cause a DoS (Denial of Service). + The vulnerability is caused due to the GDM daemon improperly handling NULL values returned by the "g_strsplit" function. This can be exploited to crash the GNOME Display Manager by sending specially crafted requests to the local GDM socket. + + 266 2007-09-07 voroskoi From voroskoi at frugalware.org Fri Sep 7 13:48:20 2007 From: voroskoi at frugalware.org (voroskoi) Date: Fri Sep 7 13:48:22 2007 Subject: [Frugalware-git] homepage-ng: FSA268-python Message-ID: <20070907114820.2245313A422C@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=homepage-ng.git;a=commitdiff;h=67c9c19c77af8f3fbfaffdc8df5b095c21dbd3ab commit 67c9c19c77af8f3fbfaffdc8df5b095c21dbd3ab Author: voroskoi Date: Fri Sep 7 13:43:57 2007 +0200 FSA268-python diff --git a/frugalware/xml/security.xml b/frugalware/xml/security.xml index ba48966..b138cb0 100644 --- a/frugalware/xml/security.xml +++ b/frugalware/xml/security.xml @@ -27,6 +27,18 @@ + 268 + 2007-09-07 + voroskoi + python + 2.5-3terminus1 + 2.5-3terminus2 + http://bugs.frugalware.org/task/2382 + http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2007-4559 + Some vulnerabilities have been reported in the Python tarfile module, which can be exploited by malicious people to compromise a vulnerable system. + The vulnerabilities are caused due to input validation errors when extracting tar archives. This can be exploited to extract files to arbitrary locations outside the specified directory with the permissions of the application using the tarfile module by using the "../" directory traversal sequence or malicious symlinks in a specially crafted tar archive. + + 267 2007-09-07 voroskoi From crazy at frugalware.org Fri Sep 7 14:17:26 2007 From: crazy at frugalware.org (crazy) Date: Fri Sep 7 14:17:36 2007 Subject: [Frugalware-git] frugalware-current: anjuta-2.2.1-1-i686 Message-ID: <20070907121726.B306313A422C@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=24f642e0200465e0fbc27a8bfc915a7f59348f67 commit 24f642e0200465e0fbc27a8bfc915a7f59348f67 Author: crazy Date: Fri Sep 7 14:12:32 2007 +0200 anjuta-2.2.1-1-i686 * Version bump diff --git a/source/gnome-extra/anjuta/FrugalBuild b/source/gnome-extra/anjuta/FrugalBuild index 2fa40fd..188643d 100644 --- a/source/gnome-extra/anjuta/FrugalBuild +++ b/source/gnome-extra/anjuta/FrugalBuild @@ -2,10 +2,10 @@ # Maintainer: AlexExtreme pkgname=anjuta -pkgver=2.2.0 +pkgver=2.2.1 pkgrel=1 pkgdesc="Anjuta is a versatile IDE for C and C++, written for GTK/GNOME." -depends=('gdl' 'gnome-build' 'guile>=1.8.2' 'autogen' 'glade3' 'devhelp' 'graphviz' 'libgnomeprintui' 'vte' 'subversion' 'gtksourceview') +depends=('gdl' 'gnome-build>=0.2.0' 'guile>=1.8.2' 'autogen' 'glade3' 'devhelp' 'graphviz>=2.14-2' 'libgnomeprintui' 'vte' 'subversion' 'gtksourceview') makedepends=('perl-xml' 'intltool' 'gnome-doc-utils') _F_gnome_desktop="y" _F_gnome_iconcache="y" @@ -16,12 +16,13 @@ Finclude sourceforge gnome-scriptlet options=('scriptlet') groups=('gnome-extra') archs=('i686' 'x86_64') -sha1sums=('0054dd0c28fb1c4fcb4957c56605ad13ed2f58b5') +sha1sums=('6851dc78d4be518bada9d6fa51f95d43789d7ea9') build() { + Fcd Fbuild_slice_scrollkeeper - Fbuild + Fbuild --enable-compile-warnings=no Fmv /usr/share/doc/$pkgname /usr/share/doc/$pkgname-$pkgver Fbuild_gnome_scriptlet } From voroskoi at frugalware.org Fri Sep 7 14:22:15 2007 From: voroskoi at frugalware.org (voroskoi) Date: Fri Sep 7 14:22:29 2007 Subject: [Frugalware-git] frugalware-current: opencdk-0.6.4-1-i686 Message-ID: <20070907122215.AD85213A422C@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=887eb41c1e3bbe0e82c0c8ca45d22b02d189df24 commit 887eb41c1e3bbe0e82c0c8ca45d22b02d189df24 Author: voroskoi Date: Fri Sep 7 07:21:58 2007 +0200 opencdk-0.6.4-1-i686 version bump fixed up2date, source() sha1->signatures new m8r diff --git a/source/lib/opencdk/FrugalBuild b/source/lib/opencdk/FrugalBuild index 33649d6..cee9277 100644 --- a/source/lib/opencdk/FrugalBuild +++ b/source/lib/opencdk/FrugalBuild @@ -1,17 +1,17 @@ # Compiling Time: 0.13 SBU -# Maintainer: crazy +# Maintainer: voroskoi # Contributor: Laszlo Dvornik pkgname=opencdk -pkgver=0.5.9 +pkgver=0.6.4 pkgrel=1 pkgdesc="The Open Crypto Development Kit provides basic parts of the OpenPGP message format" url="http://www.gnu.org/software/gnutls/" groups=('lib') archs=('i686' 'x86_64') -depends=('libgcrypt' 'zlib') -up2date="lynx -dump ftp://ftp.gnutls.org/pub/gnutls/opencdk|grep 'opencdk-\(.*\).tar.gz$'|sort -n -r|head -n 1|sed 's/.*-\(.*\).t.*/\1/'" -source=(ftp://ftp.gnutls.org/pub/gnutls/$pkgname/$pkgname-$pkgver.tar.gz) -sha1sums=('7b4375bf9326d77699687845c10589d409cbd7e3') +depends=('libgcrypt>=1.2.2' 'zlib') +up2date="lynx -dump ftp://ftp.gnutls.org/pub/gnutls/opencdk |Flasttarbz2" +source=(ftp://ftp.gnutls.org/pub/gnutls/$pkgname/$pkgname-$pkgver.tar.bz2) +signatures=($source.sig) # optimization OK From voroskoi at frugalware.org Fri Sep 7 14:22:15 2007 From: voroskoi at frugalware.org (voroskoi) Date: Fri Sep 7 14:22:31 2007 Subject: [Frugalware-git] frugalware-current: weechat-0.2.6-1-i686 Message-ID: <20070907122215.EE28213A422E@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=4b5c87cb7857fd1f5c49c76dcd07d1ebc36f17c0 commit 4b5c87cb7857fd1f5c49c76dcd07d1ebc36f17c0 Author: voroskoi Date: Fri Sep 7 08:44:04 2007 +0200 weechat-0.2.6-1-i686 version bump updated depends() - gnutls2 updated beep_on_hilight.diff diff --git a/source/network-extra/weechat/FrugalBuild b/source/network-extra/weechat/FrugalBuild index f2f4f68..f50ca29 100644 --- a/source/network-extra/weechat/FrugalBuild +++ b/source/network-extra/weechat/FrugalBuild @@ -3,11 +3,11 @@ # Maintainer: voroskoi pkgname=weechat -pkgver=0.2.5 +pkgver=0.2.6 pkgrel=1 pkgdesc="Fast, light & extensible IRC client." url="http://weechat.flashtux.org/" -depends=('aspell' 'gnutls>=1.6.3' 'libgcrypt') +depends=('aspell' 'gnutls>=2.0.0' 'libgcrypt') makedepends=('ruby') groups=('network-extra') archs=('i686' 'x86_64') @@ -29,7 +29,7 @@ build() { --with-gnu-ld Fln /usr/bin/weechat-curses /usr/bin/weechat } -sha1sums=('7885c904f9c4827dedf3cfbc1012ed7f4385e8d6'\ - '96a2bdc3ae9de62fad3397a9408212317cd6b877') +sha1sums=('fc6871765e786df04abf6c29c8b98a0782f805d4' \ + 'a5962940063430a9d62a8a6cdf02b6f611624ee3') # optimization OK diff --git a/source/network-extra/weechat/weechat_beep_on_highlight.diff b/source/network-extra/weechat/weechat_beep_on_highlight.diff index 6dbb128..96daf0b 100644 --- a/source/network-extra/weechat/weechat_beep_on_highlight.diff +++ b/source/network-extra/weechat/weechat_beep_on_highlight.diff @@ -1,14 +1,15 @@ ---- weechat/src/common/weeconfig.c 2006-05-21 17:04:44.000000000 +0200 -+++ src/common/weeconfig.c 2006-05-25 11:29:42.000000000 +0200 -@@ -67,6 +67,7 @@ +diff -aur weechat-0.2.6/src/common/weeconfig.c fw_weechat/src/common/weeconfig.c +--- weechat-0.2.6/src/common/weeconfig.c 2007-08-29 14:47:50.000000000 +0200 ++++ fw_weechat/src/common/weeconfig.c 2007-09-07 08:28:22.000000000 +0200 +@@ -70,6 +70,7 @@ int cfg_look_set_title; int cfg_look_startup_logo; int cfg_look_startup_version; +int cfg_look_highlight_beep; char *cfg_look_weechat_slogan; - char *cfg_look_charset_decode_iso; - char *cfg_look_charset_decode_utf; -@@ -123,6 +124,10 @@ + int cfg_look_one_server_buffer; + int cfg_look_scroll_amount; +@@ -135,6 +136,10 @@ N_("display WeeChat version at startup"), OPTION_TYPE_BOOLEAN, BOOL_FALSE, BOOL_TRUE, BOOL_TRUE, NULL, NULL, &cfg_look_startup_version, NULL, config_change_noop }, @@ -19,29 +20,30 @@ { "look_weechat_slogan", N_("WeeChat slogan"), N_("WeeChat slogan (if empty, slogan is not used)"), OPTION_TYPE_STRING, 0, 0, 0, ---- weechat/src/common/weeconfig.h 2006-04-16 11:46:23.000000000 +0200 -+++ src/common/weeconfig.h 2006-05-25 11:50:50.000000000 +0200 -@@ -90,6 +90,7 @@ +diff -aur weechat-0.2.6/src/common/weeconfig.h fw_weechat/src/common/weeconfig.h +--- weechat-0.2.6/src/common/weeconfig.h 2007-08-27 09:59:09.000000000 +0200 ++++ fw_weechat/src/common/weeconfig.h 2007-09-07 08:28:50.000000000 +0200 +@@ -97,6 +97,7 @@ extern int cfg_look_set_title; extern int cfg_look_startup_logo; extern int cfg_look_startup_version; +extern int cfg_look_highlight_beep; extern char *cfg_look_weechat_slogan; - extern char *cfg_look_charset_decode_iso; - extern char *cfg_look_charset_decode_utf; ---- weechat/src/gui/gui-common.c 2006-05-20 11:45:03.000000000 +0200 -+++ src/gui/gui-common.c 2006-05-25 11:42:31.000000000 +0200 -@@ -159,8 +159,12 @@ + extern int cfg_look_one_server_buffer; + extern int cfg_look_open_near_server; +diff -aur weechat-0.2.6/src/gui/gui-common.c fw_weechat/src/gui/gui-common.c +--- weechat-0.2.6/src/gui/gui-common.c 2007-08-31 15:25:30.000000000 +0200 ++++ fw_weechat/src/gui/gui-common.c 2007-09-07 08:31:43.000000000 +0200 +@@ -163,8 +163,11 @@ buffer->last_line->length += length; - if (type & MSG_TYPE_MSG) + if (type & GUI_MSG_TYPE_MSG) buffer->last_line->line_with_message = 1; -- if (type & MSG_TYPE_HIGHLIGHT) -+ if (type & MSG_TYPE_HIGHLIGHT) { +- if (type & GUI_MSG_TYPE_HIGHLIGHT) ++ if (type & GUI_MSG_TYPE_HIGHLIGHT) { buffer->last_line->line_with_highlight = 1; -+ if (cfg_look_highlight_beep) { ++ if (cfg_look_highlight_beep) + printf("\a"); -+ } + } - if ((type & MSG_TYPE_TIME) || (type & MSG_TYPE_NICK) || (type & MSG_TYPE_PREFIX)) + if ((type & GUI_MSG_TYPE_TIME) || (type & GUI_MSG_TYPE_NICK) || (type & GUI_MSG_TYPE_PREFIX)) buffer->last_line->length_align += length; - if (type & MSG_TYPE_NOLOG) + if (type & GUI_MSG_TYPE_NOLOG) From voroskoi at frugalware.org Fri Sep 7 14:22:16 2007 From: voroskoi at frugalware.org (voroskoi) Date: Fri Sep 7 14:22:31 2007 Subject: [Frugalware-git] frugalware-current: wireshark-0.99.6-4-i686 Message-ID: <20070907122216.1BA9813A422F@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=bce9826221b632e94cfef4a5f3e29e846f2f2739 commit bce9826221b632e94cfef4a5f3e29e846f2f2739 Author: voroskoi Date: Fri Sep 7 10:50:21 2007 +0200 wireshark-0.99.6-4-i686 rebuilt with gnutls2 diff --git a/source/xapps-extra/wireshark/FrugalBuild b/source/xapps-extra/wireshark/FrugalBuild index e3dfa99..12fc64b 100644 --- a/source/xapps-extra/wireshark/FrugalBuild +++ b/source/xapps-extra/wireshark/FrugalBuild @@ -3,10 +3,10 @@ pkgname=wireshark pkgver=0.99.6 -pkgrel=3 +pkgrel=4 pkgdesc="The world's most popular network protocol analyzer" url="http://www.wireshark.org/" -depends=('heimdal>=1.0' 'gtk+2>=2.10.2' 'pcre' 'libpcap' 'gnutls' 'gksu>=1.9.4-2' 'gnutls>=1.6.3') +depends=('heimdal>=1.0' 'gtk+2>=2.10.2' 'pcre' 'libpcap' 'gnutls' 'gksu>=1.9.4-2' 'gnutls>=2.0.0') replaces=('ethereal') groups=('xapps-extra') archs=('i686' 'x86_64') From voroskoi at frugalware.org Fri Sep 7 14:22:15 2007 From: voroskoi at frugalware.org (voroskoi) Date: Fri Sep 7 14:22:32 2007 Subject: [Frugalware-git] frugalware-current: gnutls-2.0.0-1-i686 Message-ID: <20070907122215.C1CBF13A422D@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=da3f8f239e6bb8994417bbc1a2e0a347668ba269 commit da3f8f239e6bb8994417bbc1a2e0a347668ba269 Author: voroskoi Date: Fri Sep 7 08:14:10 2007 +0200 gnutls-2.0.0-1-i686 version bump updated depends() diff --git a/source/lib/gnutls/FrugalBuild b/source/lib/gnutls/FrugalBuild index 61a9519..83c91d2 100644 --- a/source/lib/gnutls/FrugalBuild +++ b/source/lib/gnutls/FrugalBuild @@ -3,13 +3,13 @@ # Contributor: VMiklos pkgname=gnutls -pkgver=1.6.3 +pkgver=2.0.0 pkgrel=1 pkgdesc="A library which provides a secure layer over a reliable transport layer" url="http://www.gnu.org/software/gnutls/" groups=('lib') archs=('i686' 'x86_64') -depends=('libtasn1' 'opencdk' 'readline' 'ncurses' 'libstdc++' 'libgcc' 'lzo') +depends=('libtasn1' 'readline' 'libstdc++' 'opencdk>=0.6.0' 'lzo') makedepends=('gtk-doc') options=('scriptlet') up2date="lynx -dump ftp://ftp.gnutls.org/pub/gnutls/|grep tar.bz2$ | grep -v rc | sed -n 's/.*-\(.*\)\.t.*/\1/;$ p'" From voroskoi at frugalware.org Fri Sep 7 14:22:16 2007 From: voroskoi at frugalware.org (voroskoi) Date: Fri Sep 7 14:22:32 2007 Subject: [Frugalware-git] frugalware-current: libsoup-2.2.100-3-i686 Message-ID: <20070907122216.65BD613A4231@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=b98c5250d3d8e408cf2ea690c0e15937cd3d776c commit b98c5250d3d8e408cf2ea690c0e15937cd3d776c Author: voroskoi Date: Fri Sep 7 11:25:32 2007 +0200 libsoup-2.2.100-3-i686 rebuilt with gnutls2 diff --git a/source/gnome/libsoup/FrugalBuild b/source/gnome/libsoup/FrugalBuild index 6a51377..00e189a 100644 --- a/source/gnome/libsoup/FrugalBuild +++ b/source/gnome/libsoup/FrugalBuild @@ -3,10 +3,10 @@ pkgname=libsoup pkgver=2.2.100 -pkgrel=2 +pkgrel=3 pkgdesc="An HTTP library implementation in C" url="http://www.gnome.org/" -depends=('glib2' 'gnutls>=1.6.3' 'libxml2' 'libgcrypt') +depends=('glib2' 'gnutls>=2.0.0' 'libxml2' 'libgcrypt') groups=('gnome' 'gnome-core') archs=('i686' 'x86_64') Finclude gnome From voroskoi at frugalware.org Fri Sep 7 14:22:16 2007 From: voroskoi at frugalware.org (voroskoi) Date: Fri Sep 7 14:22:34 2007 Subject: [Frugalware-git] frugalware-current: net6-1.3.5-2-i686 Message-ID: <20070907122216.7B3DA13A4232@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=d12b08f601a203b37b0315ee946ba95c6ec24b54 commit d12b08f601a203b37b0315ee946ba95c6ec24b54 Author: voroskoi Date: Fri Sep 7 11:31:22 2007 +0200 net6-1.3.5-2-i686 rebuilt with gnutls2 diff --git a/source/lib-extra/net6/FrugalBuild b/source/lib-extra/net6/FrugalBuild index 22e648f..c328a8a 100644 --- a/source/lib-extra/net6/FrugalBuild +++ b/source/lib-extra/net6/FrugalBuild @@ -3,10 +3,10 @@ pkgname=net6 pkgver=1.3.5 -pkgrel=1 +pkgrel=2 pkgdesc="net6 is a library which eases the development of network-based applications" url="http://releases.0x539.de/net6/" -depends=('libsigc++2' 'gnutls>=1.6.3') +depends=('libsigc++2' 'gnutls>=2.0.0') groups=('lib-extra') archs=('i686' 'x86_64') up2date="lynx -dump $url | sed '/latest/d' | sed '/stable/d' | Flasttar" From voroskoi at frugalware.org Fri Sep 7 14:22:16 2007 From: voroskoi at frugalware.org (voroskoi) Date: Fri Sep 7 14:22:34 2007 Subject: [Frugalware-git] frugalware-current: bitlbee-1.0.4-2-i686 Message-ID: <20070907122216.A2A1A13A4233@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=4fcf9b58a164ac7e019e07681502cc24346e47a0 commit 4fcf9b58a164ac7e019e07681502cc24346e47a0 Author: voroskoi Date: Fri Sep 7 11:37:50 2007 +0200 bitlbee-1.0.4-2-i686 rebuilt with gnutls2 diff --git a/source/network-extra/bitlbee/FrugalBuild b/source/network-extra/bitlbee/FrugalBuild index dea5c86..2542856 100644 --- a/source/network-extra/bitlbee/FrugalBuild +++ b/source/network-extra/bitlbee/FrugalBuild @@ -3,13 +3,13 @@ pkgname=bitlbee pkgver=1.0.4 -pkgrel=1 +pkgrel=2 pkgdesc="An IRC to other chat networks gateway." url="http://www.bitlbee.org/main.php/news.html" # inetd: othervise it can't serve on port 6667 # tcp_wrappers: it's also needed, i don't remember why :) rodepends=('inetd' 'tcp_wrappers') -depends=('glib2' 'gnutls>=1.6.3' 'libgcrypt' 'zlib') +depends=('glib2' 'gnutls>=2.0.0' 'libgcrypt' 'zlib') backup=(etc/biltbee/{bitlbee.conf,motd.txt}) groups=('network-extra') archs=('i686' 'x86_64') From voroskoi at frugalware.org Fri Sep 7 14:22:16 2007 From: voroskoi at frugalware.org (voroskoi) Date: Fri Sep 7 14:22:34 2007 Subject: [Frugalware-git] frugalware-current: vino-2.18.1-2-i686 Message-ID: <20070907122216.5A70F13A4230@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=ea0b65ee90a0426b4d51fe41d9360abb5827c20f commit ea0b65ee90a0426b4d51fe41d9360abb5827c20f Author: voroskoi Date: Fri Sep 7 11:18:43 2007 +0200 vino-2.18.1-2-i686 rebuilt with gnutls2 diff --git a/source/gnome/vino/FrugalBuild b/source/gnome/vino/FrugalBuild index 474a2b6..7f3ee31 100644 --- a/source/gnome/vino/FrugalBuild +++ b/source/gnome/vino/FrugalBuild @@ -3,10 +3,10 @@ pkgname=vino pkgver=2.18.1 -pkgrel=1 +pkgrel=2 pkgdesc="An integrated VNC server for GNOME" url="http://www.gnome.org/" -depends=('libgnomeui>=2.18.1' 'gnutls>=1.5.2' 'avahi' 'libxtst' 'libxdamage' 'libnotify') +depends=('libgnomeui>=2.18.1' 'gnutls>=2.0.0' 'avahi' 'libxtst' 'libxdamage' 'libnotify') makedepends=('intltool' 'perl-xml') groups=('gnome') archs=('i686' 'x86_64') From voroskoi at frugalware.org Fri Sep 7 14:22:17 2007 From: voroskoi at frugalware.org (voroskoi) Date: Fri Sep 7 14:22:35 2007 Subject: [Frugalware-git] frugalware-current: loudmouth-1.2.2-3-i686 Message-ID: <20070907122217.6F40F13A422C@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=b704f2d591b68dbba9e7724cea2b8140c578c9e9 commit b704f2d591b68dbba9e7724cea2b8140c578c9e9 Author: voroskoi Date: Fri Sep 7 11:45:21 2007 +0200 loudmouth-1.2.2-3-i686 rebuilt with gnutls2 diff --git a/source/apps-extra/loudmouth/FrugalBuild b/source/apps-extra/loudmouth/FrugalBuild index b5f7be6..4d42fee 100644 --- a/source/apps-extra/loudmouth/FrugalBuild +++ b/source/apps-extra/loudmouth/FrugalBuild @@ -3,10 +3,10 @@ pkgname=loudmouth pkgver=1.2.2 -pkgrel=2 +pkgrel=3 pkgdesc="A lightweight and easy-to-use C library for programming with the Jabber protocol." url="http://www.loudmouth-project.org/" -depends=('libgcrypt' 'gnutls>=1.6.3' 'libtasn1>=0.3.6' 'glib2' 'zlib' 'check') +depends=('libgcrypt' 'gnutls>=2.0.0' 'libtasn1>=0.3.6' 'glib2' 'zlib' 'check') options=('scriptlet') groups=('apps-extra') archs=('i686' 'x86_64') From voroskoi at frugalware.org Fri Sep 7 14:22:17 2007 From: voroskoi at frugalware.org (voroskoi) Date: Fri Sep 7 14:22:35 2007 Subject: [Frugalware-git] frugalware-current: pidgin-2.1.1-2-i686 Message-ID: <20070907122217.ADCBB13A422D@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=9a80756286845422957336965870eca2e890a7ff commit 9a80756286845422957336965870eca2e890a7ff Author: voroskoi Date: Fri Sep 7 13:10:42 2007 +0200 pidgin-2.1.1-2-i686 rebuilt with gnutls2 diff --git a/source/xapps/pidgin/FrugalBuild b/source/xapps/pidgin/FrugalBuild index ce1cb60..1ae7dfa 100644 --- a/source/xapps/pidgin/FrugalBuild +++ b/source/xapps/pidgin/FrugalBuild @@ -4,11 +4,11 @@ pkgname=pidgin pkgver=2.1.1 -pkgrel=1 +pkgrel=2 pkgdesc="A multi-protocol instant messaging (IM) client" url="http://www.pidgin.im/" depends=('gtk+2' 'libao' 'audiofile' 'gtkspell' 'nss' 'startup-notification' \ - 'avahi-compat' 'gnutls>=1.6.3' 'libxml2' 'libxslt' 'libxscrnsaver' 'dbus-glib' 'dbus-x11' 'gstreamer') + 'avahi-compat' 'gnutls>=2.0.0' 'libxml2' 'libxslt' 'libxscrnsaver' 'dbus-glib' 'dbus-x11' 'gstreamer') makedepends=('evolution-data-server>=1.10.0' 'doxygen' 'tk' 'perl-xml' 'intltool' 'sqlite3') conflicts=('gaim') provides=('gaim') From voroskoi at frugalware.org Fri Sep 7 14:22:17 2007 From: voroskoi at frugalware.org (voroskoi) Date: Fri Sep 7 14:22:36 2007 Subject: [Frugalware-git] frugalware-current: lftp-3.5.14-1-i686 Message-ID: <20070907122217.E8C6D13A422C@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=e7bfed1018b76e5d5f20e7f6a362e42af87ccafa commit e7bfed1018b76e5d5f20e7f6a362e42af87ccafa Author: voroskoi Date: Fri Sep 7 13:46:30 2007 +0200 lftp-3.5.14-1-i686 version bump updated depends() - gnutls2 diff --git a/source/network-extra/lftp/FrugalBuild b/source/network-extra/lftp/FrugalBuild index fd93c0a..6dec0d7 100644 --- a/source/network-extra/lftp/FrugalBuild +++ b/source/network-extra/lftp/FrugalBuild @@ -3,16 +3,16 @@ # Maintainer: voroskoi pkgname=lftp -pkgver=3.5.13 +pkgver=3.5.14 pkgrel=1 pkgdesc="A sophisticated ftp/http client, file transfer program" url="http://lftp.yar.ru/" -depends=('expat' 'gnutls>=1.6.3' 'zlib' 'libgcrypt') +depends=('expat' 'gnutls>=2.0.0' 'zlib' 'libgcrypt') groups=('network-extra') archs=('i686' 'x86_64') backup=('etc/lftp.conf') up2date="lynx -dump $url |grep released|sed -ne 's/.*p-\(.*\) r.*/\1/' -e '1 p'" source=(http://ftp.yars.free.net/pub/source/$pkgname/$pkgname-$pkgver.tar.bz2) -sha1sums=('7b3fd3bcb719673976c214fda61bfaea67d8d7a6') +sha1sums=('0a9fee403b3ec46db69d7189da503e13fcea2728') # optimization OK From voroskoi at frugalware.org Fri Sep 7 14:22:18 2007 From: voroskoi at frugalware.org (voroskoi) Date: Fri Sep 7 14:22:36 2007 Subject: [Frugalware-git] frugalware-current: liferea-1.2.23-1-i686 Message-ID: <20070907122218.4437413A422C@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=0eab8f00ad269725cfec815da44c2709f32653b3 commit 0eab8f00ad269725cfec815da44c2709f32653b3 Author: voroskoi Date: Fri Sep 7 14:02:11 2007 +0200 liferea-1.2.23-1-i686 version bump updated depends() - gnutls2 diff --git a/source/gnome-extra/liferea/FrugalBuild b/source/gnome-extra/liferea/FrugalBuild index a89ce28..17c6aeb 100644 --- a/source/gnome-extra/liferea/FrugalBuild +++ b/source/gnome-extra/liferea/FrugalBuild @@ -2,13 +2,13 @@ # Maintainer: Christian Hamar alias krix pkgname=liferea -pkgver=1.2.22 +pkgver=1.2.23 pkgrel=1 pkgdesc="Liferea is a news aggregator for online news feeds." license="GPL2" groups=('gnome-extra') archs=('i686' 'x86_64') -depends=('dbus-glib>=0.71-2' 'gconf' 'xulrunner>=1.8.0.1' 'libxslt>=1.1.20' 'libnotify' 'gnutls>=1.6.3') +depends=('dbus-glib>=0.71-2' 'gconf' 'xulrunner>=1.8.0.1' 'libxslt>=1.1.20' 'libnotify' 'gnutls>=2.0.0') makedepends=('perl-xml') options=('scriptlet') _F_gnome_schemas=('/etc/gconf/schemas/liferea.schemas') @@ -16,10 +16,10 @@ _F_gnome_desktop="y" _F_gnome_iconcache="y" Finclude sourceforge gnome-scriptlet up2date="lynx -dump http://liferea.sourceforge.net|grep -m1 'Stable'|sed 's/.*]\(.*\) .*/\1/'" -sha1sums=('14c6089029f06d9ceb9e4280511d635a24e6c26d') +sha1sums=('270a20b59925cc083ab17f3028bae4a296255df2') build() { - Fcd $pkgname-1.2.22 + Fcd $pkgname-$pkgver Fsed '' '&\n ' opml/*.opml Fmake Fmakeinstall From krics at linuxforum.hu Fri Sep 7 14:38:15 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Fri Sep 7 14:38:55 2007 Subject: [Frugalware-git] frugalware-current: beecrypt-4.1.2-5-x86_64 Message-ID: <20070907123815.1C98D13A4256@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=df956af450494a086fe739cee19ab649aa61a673 commit df956af450494a086fe739cee19ab649aa61a673 Author: Christian Hamar alias krix Date: Fri Sep 7 14:37:32 2007 +0200 beecrypt-4.1.2-5-x86_64 * Release bump * Bring back shared libs again, because RPM need those .. :S diff --git a/source/lib-extra/beecrypt/FrugalBuild b/source/lib-extra/beecrypt/FrugalBuild index da8437f..e96c3d8 100644 --- a/source/lib-extra/beecrypt/FrugalBuild +++ b/source/lib-extra/beecrypt/FrugalBuild @@ -3,18 +3,22 @@ pkgname=beecrypt pkgver=4.1.2 -pkgrel=4 +pkgrel=5 pkgdesc="An ongoing project to provide a strong and fast cryptography toolkit" Finclude sourceforge groups=('lib-extra') archs=('i686' 'x86_64') depends=('glibc') +makedepends=('m4') sha1sums=('71cebd3329bb2561ffba24a2004dfac50b143f59') build() { - Fbuild --enable-shared=no --enable-static=yes \ + Fcd + Fautoreconf + Fmake --enable-shared=yes --enable-static=yes \ --with-pic + Fmakeinstall if [ "$CARCH" == "x86_64" ]; then Fmv usr/lib64/* usr/lib Frm usr/lib64 From voroskoi at frugalware.org Fri Sep 7 14:42:46 2007 From: voroskoi at frugalware.org (voroskoi) Date: Fri Sep 7 14:42:50 2007 Subject: [Frugalware-git] frugalware-current: openssh-4.7p1-1-i686 Message-ID: <20070907124246.4666B13A426C@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=f680d0fa5d374d2abad9cfeb6ef2523831aa8048 commit f680d0fa5d374d2abad9cfeb6ef2523831aa8048 Author: voroskoi Date: Fri Sep 7 14:35:54 2007 +0200 openssh-4.7p1-1-i686 version bump typo fix in sysconfig/tunnel diff --git a/source/network/openssh/FrugalBuild b/source/network/openssh/FrugalBuild index 3f575b9..f236994 100644 --- a/source/network/openssh/FrugalBuild +++ b/source/network/openssh/FrugalBuild @@ -3,8 +3,8 @@ # Maintainer: voroskoi pkgname=openssh -pkgver=4.6p1 -pkgrel=5 +pkgver=4.7p1 +pkgrel=1 pkgdesc='Secure Shell daemon and clients' url="http://www.openssh.com/" backup=('etc/ssh/ssh_config' 'etc/ssh/sshd_config' 'etc/sysconfig/tunnel') diff --git a/source/network/openssh/tunnel b/source/network/openssh/tunnel index 29abc20..872c064 100644 --- a/source/network/openssh/tunnel +++ b/source/network/openssh/tunnel @@ -6,7 +6,7 @@ # tunnels to start/stop -tunneles=() +tunnels=() # example #1: access server.com:customport # - use compression From krics at linuxforum.hu Fri Sep 7 15:21:20 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Fri Sep 7 15:21:23 2007 Subject: [Frugalware-git] frugalware-current: rpm-4.4.9-1-x86_64 Message-ID: <20070907132120.A868213A4256@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=f33aff77280b0bb4670f9d8fb130a96550372db6 commit f33aff77280b0bb4670f9d8fb130a96550372db6 Author: Christian Hamar alias krix Date: Fri Sep 7 15:19:46 2007 +0200 rpm-4.4.9-1-x86_64 * Version bump * Fixed up2date * Reworked patches to fit new version * Removed x86_64 hacks * Moved to apps-extra diff --git a/source/apps-extra/rpm/FrugalBuild b/source/apps-extra/rpm/FrugalBuild new file mode 100644 index 0000000..05dc8ae --- /dev/null +++ b/source/apps-extra/rpm/FrugalBuild @@ -0,0 +1,39 @@ +# Compiling Time: 3.42 SBU +# Contributor: VMiklos +# Maintainer: Christian Hamar alias krix + +pkgname=rpm +pkgver=4.4.9 +pkgrel=1 +pkgdesc="Red Hat Package Manager" +url="http://www.rpm.org/" +depends=('bzip2' 'libgcc' 'sqlite3' 'popt' 'neon>=0.26.1' 'db>=4.6.18' 'heimdal>=1.0' 'beecrypt>=4.1.2-5') +groups=('apps-extra') +archs=('i686' 'x86_64') +up2date="lynx -dump http://jbj.org/pub/$pkgname-4.4.x/ | Flasttar" +source=(ftp://jbj.org/pub/$pkgname-4.4.x/$pkgname-$pkgver.tar.gz \ + rpm_fix_lib64.patch) + +build() +{ + unset MAKEFLAGS + Fpatchall + touch config.rpath || Fdie + Fconf --without-selinux --without-python + make staticLDFLAGS="" || return 1 + Fmakeinstall + + # conflicts with popt + Frm /usr/include/popt.h /usr/{lib,lib64}/libpopt.* + Frm /usr/share/man/man3/popt.3 + Frm /usr/share/locale/*/LC_MESSAGES/popt.mo + # Fixes symlink bug + Fln /usr/lib/rpm/rpmpopt-$pkgver /usr/lib/rpm/rpmpopt + # fixes bug "can't create transaction lock" + Fmkdir /var/lock/rpm +} + +sha1sums=('9f0d4e5b13edfb1f186485709b6d381c1746ee91' \ + 'ceeb43878dd11c98a76c6772538b05432ed5c20f') + +# optimization OK diff --git a/source/apps-extra/rpm/rpm-4.4.6-beecrypt.diff b/source/apps-extra/rpm/rpm-4.4.6-beecrypt.diff new file mode 100644 index 0000000..71171c2 --- /dev/null +++ b/source/apps-extra/rpm/rpm-4.4.6-beecrypt.diff @@ -0,0 +1,13 @@ +diff -Naur rpm-4.4.9.orig/lib/Makefile.am rpm-4.4.9/lib/Makefile.am +--- rpm-4.4.9.orig/lib/Makefile.am 2007-09-07 13:59:07.000000000 +0200 ++++ rpm-4.4.9/lib/Makefile.am 2007-09-07 14:23:43.000000000 +0200 +@@ -48,7 +48,8 @@ + $(top_builddir)/rpmio/librpmio.la \ + @WITH_POPT_LIB@ \ + @WITH_SELINUX_LIB@ \ +- @LTLIBINTL@ ++ @LTLIBINTL@ \ ++ @WITH_BEECRYPT_LIB@ + + if HAVE_LD_VERSION_SCRIPT + librpm_la_LDFLAGS += -Wl,--version-script=$(srcdir)/librpm.vers diff --git a/source/apps-extra/rpm/rpm.install b/source/apps-extra/rpm/rpm.install new file mode 100644 index 0000000..04bc4d8 --- /dev/null +++ b/source/apps-extra/rpm/rpm.install @@ -0,0 +1,23 @@ +post_install() +{ + echo -n "creating database... " + rpm --initdb + echo "done." +} + +post_upgrade() +{ + if [ -f /var/lib/rpm/Packages ]; then + echo -n "rebuilding database... " + rpm --rebuilddb + echo "done." + else + post_install + fi +} + +op=$1 +shift +$op $* + +# vim: ft=sh diff --git a/source/apps-extra/rpm/rpm_fix_lib64.patch b/source/apps-extra/rpm/rpm_fix_lib64.patch new file mode 100644 index 0000000..485e320 --- /dev/null +++ b/source/apps-extra/rpm/rpm_fix_lib64.patch @@ -0,0 +1,52 @@ +diff -Naur rpm-4.4.9.orig/configure rpm-4.4.9/configure +--- rpm-4.4.9.orig/configure 2007-09-07 13:59:02.000000000 +0200 ++++ rpm-4.4.9/configure 2007-09-07 14:08:17.000000000 +0200 +@@ -36454,11 +36454,11 @@ + fi + + MARK64= +-if ! echo "${libdir}" | grep -q '64$' ; then +- case "${target_cpu}" in +- x86_64*|ppc64*|powerpc64*|sparc64*|s390x*) MARK64=64 ;; +- esac +-fi ++#if ! echo "${libdir}" | grep -q '64$' ; then ++# case "${target_cpu}" in ++# x86_64*|ppc64*|powerpc64*|sparc64*|s390x*) MARK64=64 ;; ++# esac ++#fi + + + # For some systems we know that we have ld_version scripts. +diff -Naur rpm-4.4.9.orig/popt/configure rpm-4.4.9/popt/configure +--- rpm-4.4.9.orig/popt/configure 2007-09-07 13:59:02.000000000 +0200 ++++ rpm-4.4.9/popt/configure 2007-09-07 14:09:14.000000000 +0200 +@@ -20873,11 +20873,11 @@ + + + MARK64= +-if ! echo "${libdir}" | grep -q '64$' ; then +- case "${target_cpu}" in +- x86_64*|powerpc64*|ppc64*|sparc64*|s390x*) MARK64=64 ;; +- esac +-fi ++#if ! echo "${libdir}" | grep -q '64$' ; then ++# case "${target_cpu}" in ++# x86_64*|powerpc64*|ppc64*|sparc64*|s390x*) MARK64=64 ;; ++# esac ++#fi + + + +diff -Naur rpm-4.4.9.orig/scripts/Makefile.in rpm-4.4.9/scripts/Makefile.in +--- rpm-4.4.9.orig/scripts/Makefile.in 2007-09-07 13:59:02.000000000 +0200 ++++ rpm-4.4.9/scripts/Makefile.in 2007-09-07 14:08:50.000000000 +0200 +@@ -347,7 +347,7 @@ + + installprefix = $(DESTDIR) + bin_SCRIPTS = rpm2cpio +-configdir = ${prefix}/lib/rpm ++configdir = ${libdir}/rpm + config_SCRIPTS = \ + brp-compress brp-python-bytecompile brp-java-gcjcompile brp-redhat \ + brp-strip brp-strip-comment-note brp-nobuildrootpath \ diff --git a/source/apps/rpm/CVE-2006-5466.diff b/source/apps/rpm/CVE-2006-5466.diff deleted file mode 100644 index d543958..0000000 --- a/source/apps/rpm/CVE-2006-5466.diff +++ /dev/null @@ -1,95 +0,0 @@ -Index: lib/query.c -=================================================================== -RCS file: /cvs/devel/rpm/lib/query.c,v -retrieving revision 2.173.2.15 -retrieving revision 2.173.2.16 -diff -a -u -r2.173.2.15 -r2.173.2.16 ---- lib/query.c 8 Oct 2006 21:41:45 -0000 2.173.2.15 -+++ lib/query.c 30 Oct 2006 02:50:53 -0000 2.173.2.16 -@@ -124,6 +124,28 @@ - return str; - } - -+/** -+ */ -+static void flushBuffer(char ** tp, char ** tep, int nonewline) -+ /*@ modifies *tp, *tep @*/ -+{ -+ char *t, *te; -+ -+ t = *tp; -+ te = *tep; -+ if (te > t) { -+ if (!nonewline) { -+ *te++ = '\n'; -+ *te = '\0'; -+ } -+ rpmMessage(RPMMESS_NORMAL, "%s", t); -+ te = t; -+ *t = '\0'; -+ } -+ *tp = t; -+ *tep = te; -+} -+ - int showQueryPackage(QVA_t qva, rpmts ts, Header h) - { - int scareMem = 0; -@@ -131,7 +153,6 @@ - char * t, * te; - char * prefix = NULL; - int rc = 0; /* XXX FIXME: need real return code */ -- int nonewline = 0; - int i; - - te = t = xmalloc(BUFSIZ); -@@ -141,7 +162,6 @@ - - if (qva->qva_queryFormat != NULL) { - const char * str = queryHeader(h, qva->qva_queryFormat); -- nonewline = 1; - /*@-branchstate@*/ - if (str) { - size_t tb = (te - t); -@@ -157,6 +177,7 @@ - /*@=usereleased@*/ - /*@=boundswrite@*/ - str = _free(str); -+ flushBuffer(&t, &te, 1); - } - /*@=branchstate@*/ - } -@@ -312,31 +333,13 @@ - _("package has neither file owner or id lists\n")); - } - } --/*@-branchstate@*/ -- if (te > t) { --/*@-boundswrite@*/ -- *te++ = '\n'; -- *te = '\0'; -- rpmMessage(RPMMESS_NORMAL, "%s", t); -- te = t; -- *t = '\0'; --/*@=boundswrite@*/ -- } --/*@=branchstate@*/ -+ flushBuffer(&t, &te, 0); - } - - rc = 0; - - exit: -- if (te > t) { -- if (!nonewline) { --/*@-boundswrite@*/ -- *te++ = '\n'; -- *te = '\0'; --/*@=boundswrite@*/ -- } -- rpmMessage(RPMMESS_NORMAL, "%s", t); -- } -+ flushBuffer(&t, &te, 0); - t = _free(t); - - fi = rpmfiFree(fi); diff --git a/source/apps/rpm/FrugalBuild b/source/apps/rpm/FrugalBuild deleted file mode 100644 index cb84663..0000000 --- a/source/apps/rpm/FrugalBuild +++ /dev/null @@ -1,49 +0,0 @@ -# Compiling Time: 3.42 SBU -# Contributor: VMiklos -# Maintainer: Christian Hamar alias krix - -pkgname=rpm -pkgver=4.4.6 -pkgrel=7 -pkgdesc="Red Hat Package Manager" -url="http://www.rpm.org/" -depends=('bzip2' 'libgcc' 'sqlite3' 'popt' 'neon>=0.26.1' 'db>=4.6.18' 'heimdal>=1.0') -groups=('apps') -archs=('i686' 'x86_64') -makedepends=('beecrypt') -up2date="4.4.6" -source=(ftp://jbj.org/pub/$pkgname-4.4.x/$pkgname-$pkgver.tar.gz \ - rpm-4.4.6-beecrypt.diff CVE-2006-5466.diff) -sha1sums=('33221f95189671d1a083b4f140bcf9a88ecd4374' \ - 'cd0efab5812eb82c0e0261340a194e2301913f75' \ - 'dc41417f4064eb9476de9ef51e616042e55e5f73') -[ "$CARCH" == "x86_64" ] && \ - source=(${source[@]} rpm_fix_lib64.patch) && \ - sha1sums=(${sha1sums[@]} 'ce35b5405edd9b2ea491ba933177f21f2b1bde75') - -build() -{ - unset MAKEFLAGS - Fpatchall - touch config.rpath || Fdie - Fautoreconf - Fconf --without-selinux --without-python - make staticLDFLAGS="" || return 1 - Fmakeinstall - - # conflicts with popt - Frm /usr/include/popt.h /usr/{lib,lib64}/libpopt.* - Frm /usr/share/man/man3/popt.3 - Frm /usr/share/locale/*/LC_MESSAGES/popt.mo - # x86_64 lib64 fixup - if [ "$CARCH" == "x86_64" ] ; then - Fmv usr/lib64/* usr/lib/ - Frm usr/lib64 - fi - # Fixes symlink bug - Fln /usr/lib/rpm/rpmpopt-$pkgver /usr/lib/rpm/rpmpopt - # fixes bug "can't create transaction lock" - Fmkdir /var/lock/rpm -} - -# optimization OK diff --git a/source/apps/rpm/rpm-4.4.6-beecrypt.diff b/source/apps/rpm/rpm-4.4.6-beecrypt.diff deleted file mode 100644 index d2a85d1..0000000 --- a/source/apps/rpm/rpm-4.4.6-beecrypt.diff +++ /dev/null @@ -1,12 +0,0 @@ ---- rpm-4.4.6/lib/Makefile.am.orig 2006-09-23 01:35:45.000000000 +0200 -+++ rpm-4.4.6/lib/Makefile.am 2006-09-23 01:36:00.000000000 +0200 -@@ -47,7 +47,8 @@ - @WITH_POPT_LIB@ \ - @WITH_SELINUX_LIB@ \ - -lresolv \ -- @INTLLIBS@ -+ @INTLLIBS@ \ -+ @WITH_BEECRYPT_LIB@ - - if HAVE_LD_VERSION_SCRIPT - librpm_la_LDFLAGS += -Wl,--version-script=$(srcdir)/librpm.vers diff --git a/source/apps/rpm/rpm.install b/source/apps/rpm/rpm.install deleted file mode 100644 index 04bc4d8..0000000 --- a/source/apps/rpm/rpm.install +++ /dev/null @@ -1,23 +0,0 @@ -post_install() -{ - echo -n "creating database... " - rpm --initdb - echo "done." -} - -post_upgrade() -{ - if [ -f /var/lib/rpm/Packages ]; then - echo -n "rebuilding database... " - rpm --rebuilddb - echo "done." - else - post_install - fi -} - -op=$1 -shift -$op $* - -# vim: ft=sh diff --git a/source/apps/rpm/rpm_fix_lib64.patch b/source/apps/rpm/rpm_fix_lib64.patch deleted file mode 100644 index c825c10..0000000 --- a/source/apps/rpm/rpm_fix_lib64.patch +++ /dev/null @@ -1,44 +0,0 @@ -diff -Naur rpm-4.4.2.orig/configure rpm-4.4.2/configure ---- rpm-4.4.2.orig/configure 2005-06-15 11:13:39.000000000 +0000 -+++ rpm-4.4.2/configure 2005-06-15 11:17:47.000000000 +0000 -@@ -39528,9 +39528,9 @@ - fi - - MARK64= --case "${target_cpu}" in --x86_64*|ppc64*|powerpc64*|sparc64*|s390x*) MARK64=64 ;; --esac -+#case "${target_cpu}" in -+#x86_64*|ppc64*|powerpc64*|sparc64*|s390x*) MARK64=64 ;; -+#esac - - - autorelocate_path='%{nil}' -diff -Naur rpm-4.4.2.orig/popt/configure rpm-4.4.2/popt/configure ---- rpm-4.4.2.orig/popt/configure 2005-06-15 11:13:40.000000000 +0000 -+++ rpm-4.4.2/popt/configure 2005-06-15 11:18:59.000000000 +0000 -@@ -20966,9 +20966,9 @@ - - - MARK64= --case "${target_cpu}" in --x86_64*|powerpc64*|ppc64*|sparc64*|s390x*) MARK64=64 ;; --esac -+#case "${target_cpu}" in -+#x86_64*|powerpc64*|ppc64*|sparc64*|s390x*) MARK64=64 ;; -+#esac - - - -diff -Naur rpm-4.4.2.orig/scripts/Makefile.in rpm-4.4.2/scripts/Makefile.in ---- rpm-4.4.2.orig/scripts/Makefile.in 2005-06-15 11:13:39.000000000 +0000 -+++ rpm-4.4.2/scripts/Makefile.in 2005-06-15 11:19:32.000000000 +0000 -@@ -313,7 +313,7 @@ - macros.php* find-*.php find-php-* - - installprefix = $(DESTDIR) --configdir = ${prefix}/lib/rpm -+configdir = ${libdir}/rpm - config_SCRIPTS = \ - brp-compress brp-python-bytecompile brp-redhat \ - brp-strip brp-strip-comment-note \ From krics at linuxforum.hu Fri Sep 7 15:22:58 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Fri Sep 7 15:23:01 2007 Subject: [Frugalware-git] frugalware-current: rpm-4.4.9-1-x86_64 Message-ID: <20070907132258.ACB6113A425A@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=056f5ccd56a7838f70b76875671f2a3ca24b0555 commit 056f5ccd56a7838f70b76875671f2a3ca24b0555 Author: Christian Hamar alias krix Date: Fri Sep 7 15:22:24 2007 +0200 rpm-4.4.9-1-x86_64 * Removed beecrypt patch (not needed) diff --git a/source/apps-extra/rpm/rpm-4.4.6-beecrypt.diff b/source/apps-extra/rpm/rpm-4.4.6-beecrypt.diff deleted file mode 100644 index 71171c2..0000000 --- a/source/apps-extra/rpm/rpm-4.4.6-beecrypt.diff +++ /dev/null @@ -1,13 +0,0 @@ -diff -Naur rpm-4.4.9.orig/lib/Makefile.am rpm-4.4.9/lib/Makefile.am ---- rpm-4.4.9.orig/lib/Makefile.am 2007-09-07 13:59:07.000000000 +0200 -+++ rpm-4.4.9/lib/Makefile.am 2007-09-07 14:23:43.000000000 +0200 -@@ -48,7 +48,8 @@ - $(top_builddir)/rpmio/librpmio.la \ - @WITH_POPT_LIB@ \ - @WITH_SELINUX_LIB@ \ -- @LTLIBINTL@ -+ @LTLIBINTL@ \ -+ @WITH_BEECRYPT_LIB@ - - if HAVE_LD_VERSION_SCRIPT - librpm_la_LDFLAGS += -Wl,--version-script=$(srcdir)/librpm.vers From krics at linuxforum.hu Fri Sep 7 15:27:19 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Fri Sep 7 15:27:21 2007 Subject: [Frugalware-git] frugalware-current: perl-crypt-openssl-rsa-0.25-1-x86_64 Message-ID: <20070907132719.4CCEA13A425E@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=c4b78851180469607eb81f86692855b105e68a60 commit c4b78851180469607eb81f86692855b105e68a60 Author: Christian Hamar alias krix Date: Fri Sep 7 15:27:03 2007 +0200 perl-crypt-openssl-rsa-0.25-1-x86_64 * Added x86_64 to archs() * Built and cl'ed diff --git a/source/devel-extra/perl-crypt-openssl-rsa/FrugalBuild b/source/devel-extra/perl-crypt-openssl-rsa/FrugalBuild index 4fd4d5a..d2cb267 100644 --- a/source/devel-extra/perl-crypt-openssl-rsa/FrugalBuild +++ b/source/devel-extra/perl-crypt-openssl-rsa/FrugalBuild @@ -6,6 +6,7 @@ _F_perl_author=I/IR/IROBERTS pkgver=0.25 pkgdesc="RSA encoding and decoding, using the openSSL libraries" Finclude perl +archs=('i686' 'x86_64') sha1sums=('41597bfc06aa8f816d9d4e4f0dc28405ebe9c407') # optimization OK diff --git a/source/devel-extra/perl-mail-dkim/FrugalBuild b/source/devel-extra/perl-mail-dkim/FrugalBuild index 5fb6c0c..8d89c8e 100644 --- a/source/devel-extra/perl-mail-dkim/FrugalBuild +++ b/source/devel-extra/perl-mail-dkim/FrugalBuild @@ -7,4 +7,5 @@ pkgver=0.28 pkgdesc="Signs/verifies Internet mail with DKIM/DomainKey signatures" depends=('perl-crypt-openssl-rsa>=0.22' 'perl-digest-sha1' 'perl-digest-sha' 'perl-mailtools' 'perl-net-dns') Finclude perl +archs=('i686' 'x86_64') sha1sums=('2913dd30b5abba949e6d97ec6597d10053fbd68c') From krics at linuxforum.hu Fri Sep 7 15:29:15 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Fri Sep 7 15:29:17 2007 Subject: [Frugalware-git] frugalware-current: perl-digest-sha-5.45-1-x86_64 Message-ID: <20070907132915.8635A13A4262@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=c0e7f984e2109ca6f7a2fdca3e8361daf38c93d3 commit c0e7f984e2109ca6f7a2fdca3e8361daf38c93d3 Author: Christian Hamar alias krix Date: Fri Sep 7 15:28:56 2007 +0200 perl-digest-sha-5.45-1-x86_64 * Added x86_64 to archs() * Built and cl'ed diff --git a/source/devel-extra/perl-digest-sha/FrugalBuild b/source/devel-extra/perl-digest-sha/FrugalBuild index cb95803..cf0e1a7 100644 --- a/source/devel-extra/perl-digest-sha/FrugalBuild +++ b/source/devel-extra/perl-digest-sha/FrugalBuild @@ -6,6 +6,7 @@ _F_perl_author=M/MS/MSHELOR pkgver=5.45 pkgdesc="Perl extension for SHA-1/224/256/384/512" Finclude perl +archs=('i686' 'x86_64') sha1sums=('6d3b5d8353d853da927c5aea92e53feefc4f7b18') # optimization OK From krics at linuxforum.hu Fri Sep 7 15:32:57 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Fri Sep 7 15:32:59 2007 Subject: [Frugalware-git] frugalware-current: perl-encode-detect-1.00-1-x86_64 Message-ID: <20070907133257.2359E13A4265@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=e1cd7d0fbd632cc0608b1f36a51eac55451c9129 commit e1cd7d0fbd632cc0608b1f36a51eac55451c9129 Author: Christian Hamar alias krix Date: Fri Sep 7 15:32:31 2007 +0200 perl-encode-detect-1.00-1-x86_64 * Added x86_64 to archs() * Built and cl'ed diff --git a/source/devel-extra/perl-encode-detect/FrugalBuild b/source/devel-extra/perl-encode-detect/FrugalBuild index 6ba070a..b6a43d1 100644 --- a/source/devel-extra/perl-encode-detect/FrugalBuild +++ b/source/devel-extra/perl-encode-detect/FrugalBuild @@ -7,6 +7,7 @@ pkgver=1.00 pkgdesc="An Encode::Encoding subclass that detects the encoding of data" depends=('perl-module-build') Finclude perl +archs=('i686' 'x86_64') sha1sums=('79b51d623e4a3a3b7d6583dfc5c3ec324fd98077') # optimization OK From krics at linuxforum.hu Fri Sep 7 15:47:51 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Fri Sep 7 15:48:19 2007 Subject: [Frugalware-git] frugalware-current: net-snmp-5.4.1-1-x86_64 Message-ID: <20070907134751.EBE4713A4280@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=181f4f3686d4005f99dc6db1f9b6de2aca1e92e9 commit 181f4f3686d4005f99dc6db1f9b6de2aca1e92e9 Author: Christian Hamar alias krix Date: Fri Sep 7 15:46:34 2007 +0200 net-snmp-5.4.1-1-x86_64 * Added unset MAKEFLAGS because it fails on SMP builds diff --git a/source/network-extra/net-snmp/FrugalBuild b/source/network-extra/net-snmp/FrugalBuild index 04e2067..5728958 100644 --- a/source/network-extra/net-snmp/FrugalBuild +++ b/source/network-extra/net-snmp/FrugalBuild @@ -15,6 +15,7 @@ up2date="lynx -dump http://www.net-snmp.org/download.html |grep Supported -A 2 | source=(${source[@]} rc.snmpd) build() { + unset MAKEFLAGS Fsed "tail -1" "tail -n 1" configure Fbuild --with-default-snmp-version="3" \ --with-sys-contact="root at localhost" --with-sys-location="Unknown" \ From krics at linuxforum.hu Fri Sep 7 15:52:28 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Fri Sep 7 15:52:32 2007 Subject: [Frugalware-git] frugalware-current: libnet-1.1.2.1-3-x86_64 Message-ID: <20070907135228.0DE8F13A42AB@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=38f76a600e1c7742f8615bdff2fce71b5c080623 commit 38f76a600e1c7742f8615bdff2fce71b5c080623 Author: Christian Hamar alias krix Date: Fri Sep 7 15:52:04 2007 +0200 libnet-1.1.2.1-3-x86_64 * Release bump * Use -fPIC for x86_64 in CFLAGS diff --git a/source/lib-extra/libnet/FrugalBuild b/source/lib-extra/libnet/FrugalBuild index f624953..cb8e88a 100644 --- a/source/lib-extra/libnet/FrugalBuild +++ b/source/lib-extra/libnet/FrugalBuild @@ -4,7 +4,7 @@ pkgname=libnet pkgver=1.1.2.1 -pkgrel=2 +pkgrel=3 pkgdesc="A high-level API allowing the application programmer to construct and inject network packets." url="http://www.packetfactory.net/libnet/" depends=() @@ -13,6 +13,9 @@ archs=('i686' 'x86_64') up2date="lynx -dump $url | grep 'Latest Stable' | sed 's/.*\]//'" source=(http://ftp.frugalware.org/pub/frugalware/frugalware-current/source/lib-extra/libnet/$pkgname.tar.gz) sha1sums=('760783a2adbd845b731e2000aafa3cd9c3b028d5') +if [ "$CARCH" == "x86_64" ] ; then + CFLAGS="$CFLAGS -fPIC" +fi _F_cd_path="$pkgname" # optimization OK From krics at linuxforum.hu Fri Sep 7 15:58:32 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Fri Sep 7 15:58:35 2007 Subject: [Frugalware-git] frugalware-current: libnids-1.22-1-x86_64 Message-ID: <20070907135832.DA7B413A42AE@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=9ba50e89b22ccdc4eba3314501e7a3f9a2235d22 commit 9ba50e89b22ccdc4eba3314501e7a3f9a2235d22 Author: Christian Hamar alias krix Date: Fri Sep 7 15:57:55 2007 +0200 libnids-1.22-1-x86_64 * Depend on fixed (fPIC stuff) libnet * Built and cl'ed for x86_64 diff --git a/source/lib-extra/libnids/FrugalBuild b/source/lib-extra/libnids/FrugalBuild index 0d50205..c7e330f 100644 --- a/source/lib-extra/libnids/FrugalBuild +++ b/source/lib-extra/libnids/FrugalBuild @@ -6,7 +6,7 @@ pkgver=1.22 pkgrel=1 pkgdesc="Libnids is an implementation of an E-componenet of Network Intrusion Detection System" Finclude sourceforge -depends=('libpcap' 'glib2' 'libnet') +depends=('libpcap' 'glib2' 'libnet>=1.1.2.1-3') archs=('i686' 'x86_64') groups=('lib-extra') up2date="lynx -dump http://sourceforge.net/project/showfiles.php?group_id=92215 |grep libnids-[0-9] |grep -m1 tar |sed -e 's/.*s-//g' -e 's/.t.*//g'" From priyank at frugalware.org Fri Sep 7 16:47:55 2007 From: priyank at frugalware.org (Priyank) Date: Fri Sep 7 16:48:05 2007 Subject: [Frugalware-git] gfpm: gfpm-interface: Fixed two nasty bugs Message-ID: <20070907144755.ACACD13A4256@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gfpm.git;a=commitdiff;h=699eefb1cbf9f5adf3e3ae444d96f8692d31b0b4 commit 699eefb1cbf9f5adf3e3ae444d96f8692d31b0b4 Author: Priyank Date: Fri Sep 7 20:16:18 2007 +0530 gfpm-interface: Fixed two nasty bugs * Fixed a bug where gfpm crashed if a user tried to perform this operation on a package install -> remove -> again install This was caused due to inconsistencies in the local_db after every operation. Resolved by refreshing the database after every operation. (Thanks crazy for those gdb traces) :) * Fixed another bug wherein the package list went blank after an install / remove operation. diff --git a/src/gfpm-db.c b/src/gfpm-db.c index 394dc0a..47144f5 100644 --- a/src/gfpm-db.c +++ b/src/gfpm-db.c @@ -62,10 +62,23 @@ gfpm_db_register (const char *dbname) } void +gfpm_db_reset_localdb (void) +{ + if (local_db) + { + pacman_db_unregister (local_db); + local_db = pacman_db_register (FW_LOCAL); + } + + return; +} + +void gfpm_db_cleanup (void) { pacman_db_unregister (sync_db); - pacman_db_unregister (local_db); + if (local_db) + pacman_db_unregister (local_db); free (repo); return; diff --git a/src/gfpm-db.h b/src/gfpm-db.h index 0f381d7..430ed36 100644 --- a/src/gfpm-db.h +++ b/src/gfpm-db.h @@ -16,6 +16,7 @@ void gfpm_db_register (const char *); int gfpm_db_init (void); +void gfpm_db_reset_localdb (void); void gfpm_db_cleanup (void); int gfpm_db_populate_repolist (void); GList *gfpm_db_get_repolist (void); diff --git a/src/gfpm-interface.c b/src/gfpm-interface.c index 9bdd407..a3bda14 100644 --- a/src/gfpm-interface.c +++ b/src/gfpm-interface.c @@ -400,12 +400,11 @@ cb_gfpm_apply_btn_clicked (GtkButton *button, gpointer data) gfpm_package_list_free (GFPM_INSTALL_LIST); gfpm_apply_dlg_reset (); } + gfpm_db_reset_localdb (); gfpm_progress_show (FALSE); if (current_group != NULL) - { - gfpm_load_pkgs_tvw (current_group); - } + gfpm_load_pkgs_tvw ((const char*)current_group); return; } @@ -559,9 +558,6 @@ gfpm_load_pkgs_tvw (const char *group_name) } gfpm_update_status (_("Loading package list ...DONE")); - g_free (current_group); - current_group = g_strdup (group_name); - g_object_unref (icon_yes); g_object_unref (icon_no); g_object_unref (icon_up); @@ -1046,7 +1042,9 @@ cb_gfpm_groups_tvw_selected (GtkTreeSelection *selection, gpointer data) if (gtk_tree_selection_get_selected(selection, &model, &iter)) { gtk_tree_model_get (model, &iter, 0, &group, -1); - gfpm_load_pkgs_tvw (group); + g_free (current_group); + current_group = g_strdup (group); + gfpm_load_pkgs_tvw (current_group); g_free (group); } diff --git a/src/gfpm-messages.c b/src/gfpm-messages.c index 9f86fff..f2862a4 100644 --- a/src/gfpm-messages.c +++ b/src/gfpm-messages.c @@ -150,11 +150,12 @@ gfpm_apply_dlg_populate (void) { s = (float)((long)pacman_pkg_getinfo (pkg, PM_PKG_SIZE)/1024)/1024; totalrsize += s; + asprintf (&size, "%0.2f MB", s); + pacman_pkg_free (pkg); } - asprintf (&size, "%0.2f MB", s); + gtk_list_store_append (store, &iter); gtk_list_store_set (store, &iter, 0, (char*)i->data, 1, size, -1); - pacman_pkg_free (pkg); if (size) g_free (size); } From vmiklos at frugalware.org Fri Sep 7 18:45:34 2007 From: vmiklos at frugalware.org (VMiklos) Date: Fri Sep 7 18:45:37 2007 Subject: [Frugalware-git] frugalware-current: streamripper-1.62.3-1-i686 Message-ID: <20070907164534.5972E13A4256@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=34b0971910cd5d609b1db046a47e3a355d096f4c commit 34b0971910cd5d609b1db046a47e3a355d096f4c Author: VMiklos Date: Fri Sep 7 18:45:06 2007 +0200 streamripper-1.62.3-1-i686 version bump diff --git a/source/multimedia-extra/streamripper/FrugalBuild b/source/multimedia-extra/streamripper/FrugalBuild index b0626a8..f93b4b8 100644 --- a/source/multimedia-extra/streamripper/FrugalBuild +++ b/source/multimedia-extra/streamripper/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: VMiklos pkgname=streamripper -pkgver=1.62.2 +pkgver=1.62.3 pkgrel=1 pkgdesc="Lets you record streaming mp3 to your hard drive." depends=('libmad' 'libvorbis') @@ -10,7 +10,7 @@ groups=('multimedia-extra') archs=('i686' 'x86_64') Finclude sourceforge up2date="lynx source -dump 'http://sourceforge.net/project/showfiles.php?group_id=6172&package_id=135478'|grep streamripper-[0-9.]*tar.gz$|sed 's/.*-\(.*\)\.t.*/\1/;q'" -sha1sums=('6daeec5979858a6969dccca23fcc96d781e571ba') +sha1sums=('48c1f28cc545603d320fbc7b7309dc1f262e3451') # TODO: build with system tre From vmiklos at frugalware.org Fri Sep 7 18:48:26 2007 From: vmiklos at frugalware.org (VMiklos) Date: Fri Sep 7 18:48:28 2007 Subject: [Frugalware-git] frugalware-current: diffstat-1.45-1-i686 Message-ID: <20070907164826.5923F13A4256@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=b1f3f821a2287c707b9e47bdfb2443c6205323b4 commit b1f3f821a2287c707b9e47bdfb2443c6205323b4 Author: VMiklos Date: Fri Sep 7 18:48:18 2007 +0200 diffstat-1.45-1-i686 version bump diff --git a/source/devel/diffstat/FrugalBuild b/source/devel/diffstat/FrugalBuild index da57099..0139fe6 100644 --- a/source/devel/diffstat/FrugalBuild +++ b/source/devel/diffstat/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: VMiklos pkgname=diffstat -pkgver=1.44 +pkgver=1.45 pkgrel=1 pkgdesc="Displays a histogram of changes to a file" url="http://dickey.his.com/diffstat/diffstat.html" @@ -11,7 +11,5 @@ groups=('devel') archs=('i686' 'x86_64') up2date="lynx -dump ftp://invisible-island.net/diffstat/|grep tgz$|sed -n 's/.*-\(.*\)\.t.*/\1/;$ p'" source=(ftp://invisible-island.net/$pkgname/$pkgname-$pkgver.tgz) - +sha1sums=('5801ed764eee00f3c81be7f6995670962aad7467') # optimization ok - -sha1sums=('397ad9fc6f0ad83e60f84f2fe021cd2a086ad6f5') From vmiklos at frugalware.org Fri Sep 7 18:56:41 2007 From: vmiklos at frugalware.org (VMiklos) Date: Fri Sep 7 18:56:43 2007 Subject: [Frugalware-git] frugalware-current: setuptools-0.6c7-1-i686 Message-ID: <20070907165641.4769213A4256@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=54791caabd137c77e180f8d57ed64dc83a839a39 commit 54791caabd137c77e180f8d57ed64dc83a839a39 Author: VMiklos Date: Fri Sep 7 18:56:31 2007 +0200 setuptools-0.6c7-1-i686 version bump diff --git a/source/devel-extra/setuptools/FrugalBuild b/source/devel-extra/setuptools/FrugalBuild index ff2c4ff..89da69d 100644 --- a/source/devel-extra/setuptools/FrugalBuild +++ b/source/devel-extra/setuptools/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: VMiklos pkgname=setuptools -pkgver=0.6c6 +pkgver=0.6c7 pkgrel=1 pkgdesc="A collection of enhancements to the Python distutils." url="http://peak.telecommunity.com/DevCenter/setuptools" @@ -11,4 +11,4 @@ groups=('devel-extra') archs=('i686' 'x86_64') up2date="lynx -dump http://cheeseshop.python.org/packages/source/s/setuptools/|Flasttar" source=(http://cheeseshop.python.org/packages/source/s/setuptools/setuptools-$pkgver.tar.gz) -sha1sums=('b6e05360db28b752949d98a7f508f0db51e0fdc1') +sha1sums=('8baa4d11bd7380ccab5c7fbdf6f8dc12a5dacba9') From vmiklos at frugalware.org Fri Sep 7 19:05:07 2007 From: vmiklos at frugalware.org (VMiklos) Date: Fri Sep 7 19:05:22 2007 Subject: [Frugalware-git] frugalware-current: agraph-2.2-1-i686 Message-ID: <20070907170507.9052313A4256@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=e98994aeb45c7b379c54750fb2a505516e520537 commit e98994aeb45c7b379c54750fb2a505516e520537 Author: VMiklos Date: Fri Sep 7 19:04:42 2007 +0200 agraph-2.2-1-i686 version bump diff --git a/source/apps-extra/agraph/FrugalBuild b/source/apps-extra/agraph/FrugalBuild index 42158a0..e60f38d 100644 --- a/source/apps-extra/agraph/FrugalBuild +++ b/source/apps-extra/agraph/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: VMiklos pkgname=agraph -pkgver=2.1 +pkgver=2.2 pkgrel=1 pkgdesc="AllegroGraph Free Java Edition" url="http://www.franz.com/products/allegrograph/index.lhtml" @@ -12,7 +12,7 @@ groups=('apps-extra') archs=('i686') up2date="lynx -dump $url|grep ' V'|sed 's/.* V\(.*\) .*/\1/;q'" source=(http://www.franz.com/products/allegrograph/download/dist-sa/linux86.1/agraph-$pkgver-$pkgrel.i386.rpm) -sha1sums=('8e514467e8519cad1d6e6965192d2bb24ee71676') +sha1sums=('a0fc2b23ed2efa66d21659e52b1246fe78ad37ae') options=('nobuild') build() From vmiklos at frugalware.org Fri Sep 7 19:13:45 2007 From: vmiklos at frugalware.org (VMiklos) Date: Fri Sep 7 19:13:47 2007 Subject: [Frugalware-git] frugalware-current: ejabberd-1.1.4-1-i686 Message-ID: <20070907171345.44A2513A4256@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=dbd987cb6462dd0a259bc27b72167a290a00a362 commit dbd987cb6462dd0a259bc27b72167a290a00a362 Author: VMiklos Date: Fri Sep 7 19:13:37 2007 +0200 ejabberd-1.1.4-1-i686 version bump diff --git a/source/network-extra/ejabberd/FrugalBuild b/source/network-extra/ejabberd/FrugalBuild index 38b5ee2..c775ff9 100644 --- a/source/network-extra/ejabberd/FrugalBuild +++ b/source/network-extra/ejabberd/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: VMiklos pkgname=ejabberd -pkgver=1.1.3 +pkgver=1.1.4 pkgrel=1 pkgdesc="A free and open source instant messaging server written in Erlang." url="http://ejabberd.jabber.ru/" @@ -13,9 +13,9 @@ archs=('i686') up2date="lynx -dump http://www.process-one.net/en/ejabberd/downloads/|Flasttar" source=(http://www.process-one.net/downloads/ejabberd/$pkgver/ejabberd-$pkgver.tar.gz \ rc.ejabberd README.Frugalware) -sha1sums=('66b00ca52fa4f4f4e097b0e897c3b5a2e4526603' \ +sha1sums=('db6f521d45dece200de4eb6fc967c64728e8f6a3' \ 'eb6e5a51a10fda5b1af1c4378e18700b9a575ef3' \ - 'b77475a23cb9ba28e13f84a7db5f6d35424d84a5') + '1b31169bb44dabd8d862c603f8a79a5d4c6fa69d') build() { From crazy at frugalware.org Fri Sep 7 19:15:44 2007 From: crazy at frugalware.org (crazy) Date: Fri Sep 7 19:15:45 2007 Subject: [Frugalware-git] frugalware-current: libgalago-gtk-0.5.0-4-i686 Message-ID: <20070907171544.27A5813A4256@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=781ad7868b7d6286f0a7ab269be56362f7295574 commit 781ad7868b7d6286f0a7ab269be56362f7295574 Author: crazy Date: Fri Sep 7 19:12:15 2007 +0200 libgalago-gtk-0.5.0-4-i686 * rebuild .. while broken * 'libgalago.so.2 => not found' diff --git a/source/gnome/libgalago-gtk/FrugalBuild b/source/gnome/libgalago-gtk/FrugalBuild index 8d0e702..28de91f 100644 --- a/source/gnome/libgalago-gtk/FrugalBuild +++ b/source/gnome/libgalago-gtk/FrugalBuild @@ -3,7 +3,7 @@ pkgname=libgalago-gtk pkgver=0.5.0 -pkgrel=3 +pkgrel=4 pkgdesc="Galago Desktop Presence Framework - GTK Bindings" url="http://www.galago-project.org" depends=('libgalago>=0.5.1-2' 'dbus-glib>=0.71' 'gtk+2') From vmiklos at frugalware.org Fri Sep 7 19:29:51 2007 From: vmiklos at frugalware.org (VMiklos) Date: Fri Sep 7 19:29:54 2007 Subject: [Frugalware-git] frugalware-current: squid-2.6.STABLE16-1-i686 Message-ID: <20070907172951.AE8D913A4256@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=3d96bf1a6dbd692c7fcb2833e8e8b5ecbdd61288 commit 3d96bf1a6dbd692c7fcb2833e8e8b5ecbdd61288 Author: VMiklos Date: Fri Sep 7 19:29:19 2007 +0200 squid-2.6.STABLE16-1-i686 version bump bin 11622.patch, it's in upstream now diff --git a/source/network-extra/squid/FrugalBuild b/source/network-extra/squid/FrugalBuild index 0992ff4..44817b4 100644 --- a/source/network-extra/squid/FrugalBuild +++ b/source/network-extra/squid/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: VMiklos pkgname=squid -pkgver=2.6.STABLE15 +pkgver=2.6.STABLE16 pkgrel=1 pkgdesc="Squid Web Proxy Cache" url="http://www.squid-cache.org/" @@ -13,11 +13,9 @@ archs=('i686' 'x86_64') backup=(etc/squid/{mime,msntauth,squid}.conf) up2date="lynx -dump $url/Versions/v2/2.6/|grep -1 Current|sed -n 's/.*-\([^ ]*\) .*/\1/;$ p'" source=(http://www.squid-cache.org/Versions/v2/2.6/$pkgname-$pkgver.tar.bz2 \ - http://www.squid-cache.org/Versions/v2/2.6/changesets/11622.patch \ $pkgname-2.6.STABLE3-dirs.diff $pkgname-2.6.STABLE3-samba.diff \ $pkgname-2.6.STABLE3-username.diff rc.squid squid) -sha1sums=('4b7f6567198f9db4d95059e1a3580b16c9e619ad' \ - '3a988692e2d1e1803e66bfd9b6544e48290069a4' \ +sha1sums=('3140c0df8bad7cf3350bd4a02f4ac9582e6c4406' \ 'a1482482406661090951fa4c4304ca6604db2d14' \ '8eacf8bd974c461162aaba72b5bc4109cc1104c7' \ '7dbae27eeee7b62e685f6758a06d984b0b62668e' \ From crazy at frugalware.org Fri Sep 7 19:44:56 2007 From: crazy at frugalware.org (crazy) Date: Fri Sep 7 19:44:57 2007 Subject: [Frugalware-git] frugalware-current: libsigc++2-2.0.17-3-i686 Message-ID: <20070907174456.35BF013A4256@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=bf90d0c51b357c37e099682b6859c08fbb497088 commit bf90d0c51b357c37e099682b6859c08fbb497088 Author: crazy Date: Fri Sep 7 19:41:10 2007 +0200 libsigc++2-2.0.17-3-i686 * rebuild * broken *la file diff --git a/source/lib/libsigc++2/FrugalBuild b/source/lib/libsigc++2/FrugalBuild index 59f30a0..282cea9 100644 --- a/source/lib/libsigc++2/FrugalBuild +++ b/source/lib/libsigc++2/FrugalBuild @@ -4,7 +4,7 @@ pkgname=libsigc++2 pkgver=2.0.17 -pkgrel=2 +pkgrel=3 pkgdesc="A typesafe callback framework for C++" url="http://libsigc.sourceforge.net/" depends=('libstdc++') From vmiklos at frugalware.org Fri Sep 7 19:58:49 2007 From: vmiklos at frugalware.org (VMiklos) Date: Fri Sep 7 19:58:51 2007 Subject: [Frugalware-git] frugalware-current: gzip-1.3.12-1-i686 Message-ID: <20070907175849.280B313A4256@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=1bbd1727b1cfd1a6ffc1d0112588839524f82821 commit 1bbd1727b1cfd1a6ffc1d0112588839524f82821 Author: VMiklos Date: Fri Sep 7 19:58:26 2007 +0200 gzip-1.3.12-1-i686 version bump added workaround to compile with glibc-2.6 diff --git a/source/base/gzip/FrugalBuild b/source/base/gzip/FrugalBuild index ba4713b..ab172a6 100644 --- a/source/base/gzip/FrugalBuild +++ b/source/base/gzip/FrugalBuild @@ -3,7 +3,7 @@ # Contributor: Rob Kennedy pkgname=gzip -pkgver=1.3.9 +pkgver=1.3.12 pkgrel=1 pkgdesc="A file compression utility" url="http://www.gzip.org" @@ -12,8 +12,9 @@ replaces=('gzip-devel') groups=('base' 'chroot-core') archs=('i686' 'x86_64' 'ppc') Fup2gnugz -source=(ftp://ftp.gnu.org/pub/gnu/gzip/gzip-$pkgver.tar.gz) -signatures=($source.sig) +source=(ftp://ftp.gnu.org/pub/gnu/gzip/gzip-$pkgver.tar.gz \ + gzip-futimens.patch) +signatures=($source.sig '') build() { diff --git a/source/base/gzip/gzip-futimens.patch b/source/base/gzip/gzip-futimens.patch new file mode 100644 index 0000000..39b467f --- /dev/null +++ b/source/base/gzip/gzip-futimens.patch @@ -0,0 +1,39 @@ +diff -Naur gzip-1.3.12.orig/gzip.c gzip-1.3.12/gzip.c +--- gzip-1.3.12.orig/gzip.c 2007-03-20 06:09:51.000000000 +0100 ++++ gzip-1.3.12/gzip.c 2007-09-07 19:54:29.000000000 +0200 +@@ -1637,7 +1637,7 @@ + } + } + +- if (futimens (ofd, ofname, timespec) != 0) ++ if (gzip_futimens (ofd, ofname, timespec) != 0) + { + int e = errno; + WARN ((stderr, "%s: ", program_name)); +diff -Naur gzip-1.3.12.orig/lib/utimens.c gzip-1.3.12/lib/utimens.c +--- gzip-1.3.12.orig/lib/utimens.c 2007-01-18 09:33:34.000000000 +0100 ++++ gzip-1.3.12/lib/utimens.c 2007-09-07 19:54:15.000000000 +0200 +@@ -75,7 +75,7 @@ + Return 0 on success, -1 (setting errno) on failure. */ + + int +-futimens (int fd ATTRIBUTE_UNUSED, ++gzip_futimens (int fd ATTRIBUTE_UNUSED, + char const *file, struct timespec const timespec[2]) + { + /* Some Linux-based NFS clients are buggy, and mishandle time stamps +@@ -185,5 +185,5 @@ + int + utimens (char const *file, struct timespec const timespec[2]) + { +- return futimens (-1, file, timespec); ++ return gzip_futimens (-1, file, timespec); + } +diff -Naur gzip-1.3.12.orig/lib/utimens.h gzip-1.3.12/lib/utimens.h +--- gzip-1.3.12.orig/lib/utimens.h 2007-02-23 19:25:21.000000000 +0100 ++++ gzip-1.3.12/lib/utimens.h 2007-09-07 19:54:06.000000000 +0200 +@@ -1,3 +1,3 @@ + #include +-int futimens (int, char const *, struct timespec const [2]); ++int gzip_futimens (int, char const *, struct timespec const [2]); + int utimens (char const *, struct timespec const [2]); From krics at linuxforum.hu Fri Sep 7 20:30:18 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Fri Sep 7 20:30:21 2007 Subject: [Frugalware-git] frugalware-current: hunspell-en_US-20060207-2-x86_64 Message-ID: <20070907183018.0589213A4257@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=e42786a6953c5f774e03aaca75d8c258c9325064 commit e42786a6953c5f774e03aaca75d8c258c9325064 Author: Christian Hamar alias krix Date: Fri Sep 7 20:29:29 2007 +0200 hunspell-en_US-20060207-2-x86_64 * Fixed SHA1sum diff --git a/source/locale-extra/hunspell-en_US/FrugalBuild b/source/locale-extra/hunspell-en_US/FrugalBuild index 1f19102..9830a76 100644 --- a/source/locale-extra/hunspell-en_US/FrugalBuild +++ b/source/locale-extra/hunspell-en_US/FrugalBuild @@ -21,4 +21,4 @@ build() { } # optimization OK - noarch -sha1sums=('81a365fbcf729702cdb39caa9803939bdf532a4c') +sha1sums=('721ee60efe2deec600294742b77ea7ee5e1ab783') From krics at linuxforum.hu Fri Sep 7 20:33:34 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Fri Sep 7 20:33:36 2007 Subject: [Frugalware-git] frugalware-current: hunspell-es-20050510-2-x86_64 Message-ID: <20070907183334.C24ED13A4256@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=8fc8bdf6b63a66f441c57f580e2fa0d3e2056813 commit 8fc8bdf6b63a66f441c57f580e2fa0d3e2056813 Author: Christian Hamar alias krix Date: Fri Sep 7 20:33:07 2007 +0200 hunspell-es-20050510-2-x86_64 * Fixed SHA1sum diff --git a/source/locale-extra/hunspell-es/FrugalBuild b/source/locale-extra/hunspell-es/FrugalBuild index f5ba394..38cc0aa 100644 --- a/source/locale-extra/hunspell-es/FrugalBuild +++ b/source/locale-extra/hunspell-es/FrugalBuild @@ -14,7 +14,7 @@ archs=('i686' 'x86_64') up2date="elinks -dump $url | grep 'Spanish (Spain-etal)' | sed 's/.*\([0-9]\{4\}\)-\([0-9]\{2\}\)-\([0-9]\{2\}\).*/\1\2\3/'" source=(http://ftp.services.openoffice.org/pub/OpenOffice.org/contrib/dictionaries/$lang.zip) install=$pkgname.install -sha1sums=('2dfc1d641c6c6cab35252d420efa71e8eb1befdc') +sha1sums=('3801efb6d6252e40a743a913afc4f86bb8d3a3ef') build() { Fmkdir usr/share/myspell From krics at linuxforum.hu Fri Sep 7 20:35:49 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Fri Sep 7 20:35:50 2007 Subject: [Frugalware-git] frugalware-current: hunspell-es_MX-20050505-2-x86_64 Message-ID: <20070907183549.7B6C613A4256@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=cecab58aac34ceffd0cb859c511508aefe1c4a9d commit cecab58aac34ceffd0cb859c511508aefe1c4a9d Author: Christian Hamar alias krix Date: Fri Sep 7 20:35:27 2007 +0200 hunspell-es_MX-20050505-2-x86_64 * Fixed SHA1sum diff --git a/source/locale-extra/hunspell-es_MX/FrugalBuild b/source/locale-extra/hunspell-es_MX/FrugalBuild index 33b6e9b..2c08f8c 100644 --- a/source/locale-extra/hunspell-es_MX/FrugalBuild +++ b/source/locale-extra/hunspell-es_MX/FrugalBuild @@ -14,7 +14,7 @@ archs=('i686' 'x86_64') up2date="elinks -dump $url | grep 'Spanish (Mexico)' | sed 's/.*\([0-9]\{4\}\)-\([0-9]\{2\}\)-\([0-9]\{2\}\).*/\1\2\3/'" source=(http://ftp.services.openoffice.org/pub/OpenOffice.org/contrib/dictionaries/$lang.zip) install=$pkgname.install -sha1sums=('d70dd59ec4623dc5401dd5bb00ddd64340fd71ea') +sha1sums=('4cc6bd6f5985d876f6d1bb565051b8131ddb82e4') build() { Fmkdir usr/share/myspell From vmiklos at frugalware.org Fri Sep 7 21:20:02 2007 From: vmiklos at frugalware.org (VMiklos) Date: Fri Sep 7 21:20:06 2007 Subject: [Frugalware-git] frugalware-current: rpm-4.4.9-1-i686 Message-ID: <20070907192002.CA4FE13A4256@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=bc2eb6b1c07a91d66bcc8ea29fa464e4904b8503 commit bc2eb6b1c07a91d66bcc8ea29fa464e4904b8503 Author: VMiklos Date: Fri Sep 7 21:19:46 2007 +0200 rpm-4.4.9-1-i686 source() fix diff --git a/source/apps-extra/rpm/FrugalBuild b/source/apps-extra/rpm/FrugalBuild index 05dc8ae..0f2a655 100644 --- a/source/apps-extra/rpm/FrugalBuild +++ b/source/apps-extra/rpm/FrugalBuild @@ -11,7 +11,7 @@ depends=('bzip2' 'libgcc' 'sqlite3' 'popt' 'neon>=0.26.1' 'db>=4.6.18' 'heimdal> groups=('apps-extra') archs=('i686' 'x86_64') up2date="lynx -dump http://jbj.org/pub/$pkgname-4.4.x/ | Flasttar" -source=(ftp://jbj.org/pub/$pkgname-4.4.x/$pkgname-$pkgver.tar.gz \ +source=(http://www.ludd.luth.se/~jonas/$pkgname-$pkgver.tar.gz \ rpm_fix_lib64.patch) build() From crazy at frugalware.org Fri Sep 7 21:26:21 2007 From: crazy at frugalware.org (crazy) Date: Fri Sep 7 21:26:22 2007 Subject: [Frugalware-git] frugalware-current: gtk+2-2.10.14-2-i686 Message-ID: <20070907192621.B756A13A4256@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=866de7ca26776254d0438c15a1e810630eb7aaf8 commit 866de7ca26776254d0438c15a1e810630eb7aaf8 Author: crazy Date: Fri Sep 7 21:20:29 2007 +0200 gtk+2-2.10.14-2-i686 * relbump * added an patch to make it compile with new cups * see http://bugzilla.gnome.org/show_bug.cgi?id=467414 * ( the patch from there is needed for 2.11* , I've made a different one for us ) * compiled with -fno-strict-aliasing diff --git a/source/gnome/gtk+2/FrugalBuild b/source/gnome/gtk+2/FrugalBuild index 96c6207..01890ed 100644 --- a/source/gnome/gtk+2/FrugalBuild +++ b/source/gnome/gtk+2/FrugalBuild @@ -4,7 +4,7 @@ pkgname=gtk+2 _F_gnome_name=gtk+ pkgver=2.10.14 -pkgrel=1 +pkgrel=2 pkgdesc="The GTK+ Toolkit (2.x series)" url="http://www.gtk.org/" depends=('libtiff' 'atk>=1.18.0' 'libxi' 'libxinerama' 'fontconfig' 'libjpeg' \ @@ -14,14 +14,17 @@ groups=('gnome' 'gnome-core') makedepends=('gtk-doc' 'cups') archs=('i686' 'x86_64') Finclude gnome +source=($source cups-1.3.X.patch) _F_cd_path="gtk+-$pkgver" Fconfopts="$Fconfopts --with-xinput=yes --enable-gtk-doc" build() { + export CFLAGS="$CFLAGS -fno-strict-aliasing" Fbuild Fmkdir /etc/gtk-2.0 echo 'gtk-fallback-icon-theme = "gnome"' > $Fdestdir/etc/gtk-2.0/gtkrc || Fdie } -sha1sums=('78b819814d52caa66739ab64611e41f35e5b48c3') +sha1sums=('78b819814d52caa66739ab64611e41f35e5b48c3' \ + '30b7b92b0d160dd04575c4a2f918ff2712c22b5f') # optimization OK diff --git a/source/gnome/gtk+2/cups-1.3.X.patch b/source/gnome/gtk+2/cups-1.3.X.patch new file mode 100644 index 0000000..c4290cd --- /dev/null +++ b/source/gnome/gtk+2/cups-1.3.X.patch @@ -0,0 +1,40 @@ +diff -Naur gtk+-2.10.14/modules/printbackends/cups/gtkcupsutils.c gtk+-2.10.14-p/modules/printbackends/cups/gtkcupsutils.c +--- gtk+-2.10.14/modules/printbackends/cups/gtkcupsutils.c 2007-07-16 21:45:18.000000000 +0200 ++++ gtk+-2.10.14-p/modules/printbackends/cups/gtkcupsutils.c 2007-09-07 20:20:19.000000000 +0200 +@@ -30,8 +30,10 @@ + #include + #include + +-#if CUPS_VERSION_MAJOR > 1 || (CUPS_VERSION_MAJOR == 1 && CUPS_VERSION_MINOR > 1) || (CUPS_VERSION_MAJOR == 1 && CUPS_VERSION_MINOR == 1 && CUPS_VERSION_PATCH >= 20) +-#define HAVE_HTTP_AUTHSTRING 1 ++#if (CUPS_VERSION_MAJOR == 1 && CUPS_VERSION_MINOR == 1 && CUPS_VERSION_PATCH >= 20) || (CUPS_VERSION_MAJOR == 1 && CUPS_VERSION_MINOR == 2 && CUPS_VERSION_PATCH >= 0) ++#define OLD_API 1 ++#elif (CUPS_VERSION_MAJOR == 1 && CUPS_VERSION_MINOR == 3 && CUPS_VERSION_PATCH >= 0) ++#define NEW_API 1 + #endif + + typedef void (*GtkCupsRequestStateFunc) (GtkCupsRequest *request); +@@ -627,8 +629,10 @@ + httpClearFields(request->http); + httpSetField(request->http, HTTP_FIELD_CONTENT_LENGTH, length); + httpSetField(request->http, HTTP_FIELD_CONTENT_TYPE, "application/ipp"); +-#ifdef HAVE_HTTP_AUTHSTRING ++#if defined(OLD_API) + httpSetField(request->http, HTTP_FIELD_AUTHORIZATION, request->http->authstring); ++#elif defined(NEW_API) ++ httpSetField (request->http, HTTP_FIELD_AUTHORIZATION, httpGetAuthString (request->http)); + #endif + + if (httpPost(request->http, request->resource)) +@@ -966,8 +970,10 @@ + } + + httpClearFields(request->http); +-#ifdef HAVE_HTTP_AUTHSTRING ++#if defined(OLD_API) + httpSetField(request->http, HTTP_FIELD_AUTHORIZATION, request->http->authstring); ++#elif defined(NEW_API) ++ httpSetField (request->http, HTTP_FIELD_AUTHORIZATION, httpGetAuthString (request->http)); + #endif + + if (httpGet(request->http, request->resource)) From vmiklos at frugalware.org Fri Sep 7 22:42:59 2007 From: vmiklos at frugalware.org (VMiklos) Date: Fri Sep 7 22:43:03 2007 Subject: [Frugalware-git] bmf: mplayer-1.0rc1-9bmf1-i686 Message-ID: <20070907204259.B2B4813A411B@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=bmf.git;a=commitdiff;h=4ed9f818163039eebcf45a289b950823141d01a7 commit 4ed9f818163039eebcf45a289b950823141d01a7 Author: VMiklos Date: Fri Sep 7 22:42:37 2007 +0200 mplayer-1.0rc1-9bmf1-i686 import from currrent new patches: - mplayer-0.7rc1-dvdnav.patch.bz2: dvdnav support - mga_common-correction.patch and rtp_correction.patch: build fixes (yes, totally untested, etc) diff --git a/source/xapps/mplayer/00-mplayer.conf.patch b/source/xapps/mplayer/00-mplayer.conf.patch new file mode 100644 index 0000000..adec5fb --- /dev/null +++ b/source/xapps/mplayer/00-mplayer.conf.patch @@ -0,0 +1,10 @@ +--- MPlayer-1.0pre8/etc/example.conf.orig 2006-06-12 01:55:17.000000000 +0200 ++++ MPlayer-1.0pre8/etc/example.conf 2006-06-12 01:55:57.000000000 +0200 +@@ -118,6 +118,7 @@ + # DVD: Play English audio tracks if available. + #alang = en + ++stop-xscreensaver=1 + + # You can also include other configuration files. + #include = /path/to/the/file/you/want/to/include diff --git a/source/xapps/mplayer/01-mplayer.desktop.patch b/source/xapps/mplayer/01-mplayer.desktop.patch new file mode 100644 index 0000000..c257d5d --- /dev/null +++ b/source/xapps/mplayer/01-mplayer.desktop.patch @@ -0,0 +1,19 @@ +--- MPlayer-1.0pre8/etc/mplayer.desktop.orig 2006-06-12 01:57:45.000000000 +0200 ++++ MPlayer-1.0pre8/etc/mplayer.desktop 2006-06-12 01:58:48.000000000 +0200 +@@ -3,10 +3,16 @@ + Encoding=UTF-8 + Name=MPlayer + GenericName=Multimedia player ++GenericName[de]=Multimedia Player ++GenericName[es]=Reproductor multimedia ++GenericName[fr]=Lecteur multimedia ++GenericName[hu]=MultimĂŠdia-lejĂĄtszĂł ++GenericName[it]=Lettore multimediale + Comment=Multimedia player + Comment[de]=Multimedia-Player + Comment[es]=Reproductor multimedia + Comment[fr]=Lecteur multimedia ++Comment[hu]=MultimĂŠdia-lejĂĄtszĂł + Comment[it]=Lettore multimediale + Icon=mplayer.xpm + TryExec=gmplayer diff --git a/source/xapps/mplayer/CVE-2007-2948.diff b/source/xapps/mplayer/CVE-2007-2948.diff new file mode 100644 index 0000000..2ecdcc5 --- /dev/null +++ b/source/xapps/mplayer/CVE-2007-2948.diff @@ -0,0 +1,29 @@ +--- trunk/stream/stream_cddb.c 2007/05/10 11:43:39 23287 ++++ trunk/stream/stream_cddb.c 2007/06/05 11:13:32 23470 +@@ -377,7 +377,7 @@ + + switch(status) { + case 210: +- ret = sscanf( http_hdr->body, "%d %s %08lx", &status, category, &disc_id); ++ ret = sscanf( http_hdr->body, "%d %99s %08lx", &status, category, &disc_id); + if( ret!=3 ) { + mp_msg(MSGT_DEMUX, MSGL_ERR, MSGTR_ParseError); + return -1; +@@ -438,7 +438,7 @@ + ptr++; + // We have a list of exact/inexact matches, so which one do we use? + // So let's take the first one. +- ret = sscanf(ptr, "%s %08lx %s", cddb_data->category, &(cddb_data->disc_id), album_title); ++ ret = sscanf(ptr, "%99s %08lx %99s", cddb_data->category, &(cddb_data->disc_id), album_title); + if( ret!=3 ) { + mp_msg(MSGT_DEMUX, MSGL_ERR, MSGTR_ParseError); + return -1; +@@ -475,7 +475,7 @@ + switch(status) { + case 200: + // Found exact match +- ret = sscanf(http_hdr->body, "%d %s %08lx %s", &status, cddb_data->category, &(cddb_data->disc_id), album_title); ++ ret = sscanf(http_hdr->body, "%d %99s %08lx %99s", &status, cddb_data->category, &(cddb_data->disc_id), album_title); + if( ret!=4 ) { + mp_msg(MSGT_DEMUX, MSGL_ERR, MSGTR_ParseError); + return -1; diff --git a/source/xapps/mplayer/DMO_VideoDecoder.diff b/source/xapps/mplayer/DMO_VideoDecoder.diff new file mode 100644 index 0000000..7543412 --- /dev/null +++ b/source/xapps/mplayer/DMO_VideoDecoder.diff @@ -0,0 +1,11 @@ +http://svn.mplayerhq.hu/mplayer/trunk/loader/dmo/DMO_VideoDecoder.c?r1=22019&r2=22204&view=patch +--- trunk/loader/dmo/DMO_VideoDecoder.c 2007/01/26 09:21:22 22019 ++++ trunk/loader/dmo/DMO_VideoDecoder.c 2007/02/11 17:55:49 22204 +@@ -119,6 +119,7 @@ + + this->iv.m_bh = malloc(bihs); + memcpy(this->iv.m_bh, format, bihs); ++ this->iv.m_bh->biSize = bihs; + + this->iv.m_State = STOP; + //this->iv.m_pFrame = 0; diff --git a/source/xapps/mplayer/FrugalBuild b/source/xapps/mplayer/FrugalBuild new file mode 100644 index 0000000..bf10e97 --- /dev/null +++ b/source/xapps/mplayer/FrugalBuild @@ -0,0 +1,98 @@ +# Compiling time: 1.5 SBU +# Maintainer: VMiklos + +pkgname=mplayer +pkgver=1.0rc1 +pkgextraver= +pkgrel=9bmf1 +pkgdesc="The Movie Player" +url="http://www.mplayerhq.hu/" +depends=('mesa' 'fontconfig' 'libstdc++' 'libdv' 'termcap' 'libjpeg' 'libmad' \ + 'libungif' 'xvidcore' 'libpng' 'sdl' 'lame' 'libxv' 'lzo' 'libsm' \ + 'libxinerama' 'libtheora' 'cdparanoia' 'libxxf86dga' 'live' 'gtk+2' \ + 'x264>=20070421' 'dejavu-ttf' 'openal' 'vidix') +[ "$CARCH" == "i686" ] && depends=(${depends[@]} 'codecs') +groups=('xapps') +backup=('etc/mplayer/mplayer.conf') +archs=('i686' 'x86_64') +options=('scriptlet') +up2date="lynx -dump http://www.mplayerhq.hu/MPlayer/releases/|grep -v snapshot |Flasttarbz2" +source=(http://www.mplayerhq.hu/MPlayer/releases/MPlayer-$pkgver$pkgextraver.tar.bz2 \ + 00-$pkgname.conf.patch \ + 01-$pkgname.desktop.patch \ + http://www.mplayerhq.hu/MPlayer/skins/Blue-1.7.tar.bz2 \ + http://www.mplayerhq.hu/MPlayer/releases/fonts/font-arial-cp1250.tar.bz2 \ + http://www.mplayerhq.hu/MPlayer/releases/fonts/font-arial-iso-8859-1.tar.bz2 \ + http://www.mplayerhq.hu/MPlayer/releases/fonts/font-arial-iso-8859-2.tar.bz2 \ + http://www.mplayerhq.hu/MPlayer/releases/fonts/font-arial-iso-8859-7.tar.bz2 \ + http://www.3gpp.org/ftp/Specs/archive/26_series/{26.104/26104-510.zip,26.204/26204-510.zip} + $pkgname-1.0pre7-lzo2.patch.bz2 \ + http://www.mplayerhq.hu/MPlayer/patches/asmrules_fix_20061231.diff \ + DMO_VideoDecoder.diff \ + CVE-2007-2948.diff \ + http://ftp.frugalware.org/pub/other/sources/mplayer/mplayer-0.7rc1-dvdnav.patch.bz2 \ + rtp_correction.patch mga_common-correction.patch) +sha1sums=('a450c0b0749c343a8496ba7810363c9d46dfa73c' \ + 'f7492d46afc72678435b70fa4326dbbf32795ba9' \ + '7135e8bf05cee6b123b81fa2a2c6ab18a27af615' \ + '45e5ee7a5541a5f1cfd2678a6c9b5911ca473cb9' \ + 'ccf11dce5d0fb72fd3af97f788b7471cd0cd0b68' \ + '152c40bf20de34aa8802d7f80d34d673b0b67212' \ + '7b99bbe0e9ba89a57eccbea8f93c453c4f268181' \ + '2a3fa8cf54ec3ed4dfa1a0e72f2d207c13507b9d' \ + 'b22dbe895991c23fad446c3c4ff7b6db12673778' \ + '9ca910295c2888fba95a98da83762a22aaf34651' \ + '45c4adbe6ab3063b68938c813966948aebf15ce3' \ + '84412f4bd85d64a92586ca4db7e8585d16cd1acd' \ + 'e629aafe8e07ddae6db93009715295e6a9d8ed45' \ + '977fad7f0e8ec616d4b7a6cd2aa5aebcde99f7e1' \ + 'b36dce95d686e4b7a1a58b211d5856ab253c5cc9' \ + '4192583c9837c0c106d140b885e89fc982d8cb8b' \ + '2dcbd6908029a02655ab1536c2f93c7be82ca406') + +# To add v4l support. +# mknod -m 660 /dev/video0 c 81 0 + +build() +{ + unset CFLAGS + Fcd MPlayer-$pkgver$pkgextraver + Fpatchall + mkdir libavcodec/amr_float + cd libavcodec/amr_float + unzip -q $Fsrcdir/26104-510_ANSI_C_source_code.zip + cd - + mkdir libavcodec/amrwb_float + cd libavcodec/amrwb_float + unzip -q $Fsrcdir/26204-510_ANSI-C_source_code.zip + cd - + Fmake --confdir=/etc/mplayer --enable-gui --language=all \ + --enable-runtime-cpudetection --enable-liblzo \ + --enable-live --with-livelibdir=/usr/lib/live \ + --enable-largefiles --enable-mga --enable-xmga \ + --enable-tdfxfb --disable-vidix-internal --enable-dvdnav + make DESTDIR=$Fdestdir install || Fdie + Fmkdir /usr/share/doc/$pkgname-$pkgver + mv DOCS/* $Fdestdir/usr/share/doc/$pkgname-$pkgver/ + + # Skin. + Fmkdir /usr/share/mplayer/Skin + mv $Fsrcdir/Blue $Fdestdir/usr/share/mplayer/Skin/default + chown -R root.root $Fdestdir/usr/share/mplayer/Skin + + # Fonts. + Frm /usr/share/mplayer/font + for i in cp1250 iso-8859-1 iso-8859-2 iso-8859-7 + do + mv $Fsrcdir/font-arial-$i/font-arial-{14,18,24,28}-$i \ + $Fdestdir/usr/share/mplayer/ + done + + # Install mplayer.conf + Ffilerel etc/example.conf /etc/mplayer/mplayer.conf + ## symlink to solve this "New_Face failed. Maybe the font path is wrong." and this + ## annoying popup about font missing :S + Fln /usr/lib/X11/fonts/TTF/DejaVuSans.ttf /usr/share/mplayer/subfont.ttf +} + +# optimization OK diff --git a/source/xapps/mplayer/asmrules_fix_20061231.diff b/source/xapps/mplayer/asmrules_fix_20061231.diff new file mode 100644 index 0000000..87bab25 --- /dev/null +++ b/source/xapps/mplayer/asmrules_fix_20061231.diff @@ -0,0 +1,51 @@ +Index: stream/realrtsp/asmrp.c +=================================================================== +--- stream/realrtsp/asmrp.c (revision 20381) ++++ stream/realrtsp/asmrp.c (working copy) +@@ -40,6 +40,7 @@ + #include + #include + #include ++#include "asmrp.h" + + /* + #define LOG +@@ -645,8 +646,10 @@ + #ifdef LOG + printf ("rule #%d is true\n", rule_num); + #endif +- matches[num_matches] = rule_num; +- num_matches++; ++ if(num_matches < MAX_RULEMATCHES - 1) ++ matches[num_matches++] = rule_num; ++ else ++ printf("Ignoring matched asm rule %d, too many matched rules.\n", rule_num); + } + + rule_num++; +Index: stream/realrtsp/real.c +=================================================================== +--- stream/realrtsp/real.c (revision 20381) ++++ stream/realrtsp/real.c (working copy) +@@ -271,7 +271,7 @@ + int j=0; + int n; + char b[64]; +- int rulematches[16]; ++ int rulematches[MAX_RULEMATCHES]; + + #ifdef LOG + printf("calling asmrp_match with:\n%s\n%u\n", desc->stream[i]->asm_rule_book, bandwidth); +Index: stream/realrtsp/asmrp.h +=================================================================== +--- stream/realrtsp/asmrp.h (revision 20381) ++++ stream/realrtsp/asmrp.h (working copy) +@@ -40,6 +40,8 @@ + #ifndef HAVE_ASMRP_H + #define HAVE_ASMRP_H + ++#define MAX_RULEMATCHES 16 ++ + int asmrp_match (const char *rules, int bandwidth, int *matches) ; + + #endif diff --git a/source/xapps/mplayer/mga_common-correction.patch b/source/xapps/mplayer/mga_common-correction.patch new file mode 100644 index 0000000..5012d1b --- /dev/null +++ b/source/xapps/mplayer/mga_common-correction.patch @@ -0,0 +1,66 @@ +--- libvo/mga_common.c 2006-10-23 00:32:26.000000000 +0200 ++++ libvo/mga_common.c 2007-09-07 18:35:46.000000000 +0200 +@@ -5,6 +5,7 @@ + #include "libmpcodecs/vf_scale.h" + #include "mp_msg.h" + #include "help_mp.h" ++#include "video_out.h" + + // mga_vid drawing functions + static void set_window( void ); /* forward declaration to kill warnings */ +@@ -27,20 +28,51 @@ + #endif + static uint32_t drwcX,drwcY,dwidth,dheight; + +-static void draw_alpha(int x0,int y0, int w,int h, unsigned char* src, unsigned char *srca, int stride){ ++static void draw_alpha(int x0,int y0, int w,int h, int dp, unsigned char* src, unsigned char *srca, int stride){ ++ uint8_t *dest; + uint32_t bespitch = (mga_vid_config.src_width + 31) & ~31; + x0+=mga_vid_config.src_width*(vo_panscan_x>>1)/(vo_dwidth+vo_panscan_x); + switch(mga_vid_config.format){ + case MGA_VID_FORMAT_YV12: + case MGA_VID_FORMAT_IYUV: + case MGA_VID_FORMAT_I420: +- vo_draw_alpha_yv12(w,h,src,srca,stride,vid_data+bespitch*y0+x0,bespitch); ++ switch (dp) { ++ case DEST_PLANES_Y : ++ vo_draw_alpha_yv12(w,h,dp,src,srca,stride,vid_data+bespitch*y0+x0,bespitch); ++ break; ++ case DEST_PLANES_U : ++ dest = vid_data + bespitch*mga_vid_config.src_height + bespitch/2 * y0/2 + x0/2; ++ if(mga_vid_config.format==MGA_VID_FORMAT_YV12) ++ dest += bespitch/2*mga_vid_config.src_height / 2; ++ vo_draw_alpha_yv12(w,h,dp,src,srca,stride,dest,bespitch/2); ++ break; ++ case DEST_PLANES_V : ++ dest = vid_data + bespitch*mga_vid_config.src_height + bespitch/2 * y0/2 + x0/2; ++ if(mga_vid_config.format!=MGA_VID_FORMAT_YV12) ++ dest += bespitch/2*mga_vid_config.src_height / 2; ++ vo_draw_alpha_yv12(w,h,dp,src,srca,stride,dest,bespitch/2); ++ break; ++ } + break; + case MGA_VID_FORMAT_YUY2: +- vo_draw_alpha_yuy2(w,h,src,srca,stride,vid_data+2*(bespitch*y0+x0),2*bespitch); ++ switch (dp) { ++ case DEST_PLANES_Y : ++ vo_draw_alpha_yuy2(w,h,dp,src,srca,stride,vid_data+2*(bespitch*y0+x0),2*bespitch); ++ break; ++ case DEST_PLANES_YUYV : ++ vo_draw_alpha_yv12(w,h,dp,src,srca,stride,vid_data+2*(bespitch*y0+x0),2*bespitch); ++ break; ++ } + break; + case MGA_VID_FORMAT_UYVY: +- vo_draw_alpha_yuy2(w,h,src,srca,stride,vid_data+2*(bespitch*y0+x0)+1,2*bespitch); ++ switch (dp) { ++ case DEST_PLANES_Y : ++ vo_draw_alpha_yuy2(w,h,dp,src,srca,stride,vid_data+2*(bespitch*y0+x0)+1,2*bespitch); ++ break; ++ case DEST_PLANES_YUYV : ++ vo_draw_alpha_yv12(w,h,dp,src,srca,stride,vid_data+2*(bespitch*y0+x0)+1,2*bespitch); ++ break; ++ } + break; + } + } diff --git a/source/xapps/mplayer/mplayer.install b/source/xapps/mplayer/mplayer.install new file mode 100644 index 0000000..ea9a7e0 --- /dev/null +++ b/source/xapps/mplayer/mplayer.install @@ -0,0 +1,17 @@ +post_install() +{ + cd /usr/share/mplayer + rm -rf font + ln -s font-arial-24-$CHARSET font +} + +post_remove() +{ + cd /usr/share/mplayer + rm -rf font +} + +op=$1 +shift + +$op $* diff --git a/source/xapps/mplayer/rtp_correction.patch b/source/xapps/mplayer/rtp_correction.patch new file mode 100644 index 0000000..9ef3fd3 --- /dev/null +++ b/source/xapps/mplayer/rtp_correction.patch @@ -0,0 +1,11 @@ +--- libmpdemux/demux_rtp.cpp 2006-11-04 14:58:41.000000000 +0100 ++++ libmpdemux/demux_rtp.cpp 2007-09-03 23:18:45.000000000 +0200 +@@ -241,7 +241,7 @@ + if (demux_is_multiplexed_rtp_stream(demuxer)) { + stream_t* s = new_ds_stream(demuxer->video); + demuxer_t* od = demux_open(s, DEMUXER_TYPE_UNKNOWN, +- audio_id, video_id, dvdsub_id, NULL, 0, 0, 0); ++ audio_id, video_id, dvdsub_id, NULL, 0); + demuxer = new_demuxers_demuxer(od, od, od); + } + From vmiklos at frugalware.org Sat Sep 8 00:17:56 2007 From: vmiklos at frugalware.org (VMiklos) Date: Sat Sep 8 00:17:58 2007 Subject: [Frugalware-git] frugalware-current: genpkgdbs: added gnetconfig-mcs-plugin pot generation Message-ID: <20070907221756.3E78213A411B@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=7fa116d477e63a8978bf2f09e196b27fe4d11d9a commit 7fa116d477e63a8978bf2f09e196b27fe4d11d9a Author: VMiklos Date: Sat Sep 8 00:17:24 2007 +0200 genpkgdbs: added gnetconfig-mcs-plugin pot generation diff --git a/tools/genpkgdbs b/tools/genpkgdbs index e1eb0ca..a4e40d6 100755 --- a/tools/genpkgdbs +++ b/tools/genpkgdbs @@ -61,6 +61,7 @@ make -C /home/ftp/pub/other/fwlive/po pot /home/ftp/pub/other/pacman-g2/pacman-g2/autogen.sh --gettext-only --pot-only make -C /home/ftp/pub/other/frugalwareutils/frugalwareutils pot sudo -u priyank /home/ftp/pub/other/fw-control-center/fw-control-center/gnetconfig/autogen.sh --pot-only +sudo -u priyank /home/ftp/pub/other/fw-control-center/fw-control-center/gnetconfig-mcs-plugin/autogen.sh --pot-only sudo -u priyank /home/ftp/pub/other/gfpm/gfpm/autogen.sh --pot-only # transfer them From vmiklos at frugalware.org Sat Sep 8 00:20:31 2007 From: vmiklos at frugalware.org (VMiklos) Date: Sat Sep 8 00:20:33 2007 Subject: [Frugalware-git] pacman-tools: pootle-update: added gnetconfig-mcs-plugin Message-ID: <20070907222031.197EC13A411B@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=pacman-tools.git;a=commitdiff;h=4b0ba465064a70f336903c9af80242b125be1f1e commit 4b0ba465064a70f336903c9af80242b125be1f1e Author: VMiklos Date: Sat Sep 8 00:20:24 2007 +0200 pootle-update: added gnetconfig-mcs-plugin diff --git a/pootle-update b/pootle-update index 3cbbc87..7c06a06 100644 --- a/pootle-update +++ b/pootle-update @@ -24,6 +24,7 @@ rsync rsync://rsync.frugalware.org/pub/other/frugalwareutils/frugalwareutils/tim rsync rsync://rsync.frugalware.org/pub/other/frugalwareutils/frugalwareutils/xconfig/po/xconfig.pot frugalwareutils/templates/xconfig.pot rsync rsync://rsync.frugalware.org/pub/other/frugalwareutils/frugalwareutils/xwmconfig/po/xwmconfig.pot frugalwareutils/templates/xwmconfig.pot rsync rsync://rsync.frugalware.org/pub/other/fw-control-center/fw-control-center/gnetconfig/po/gnetconfig.pot fwcontrolcenter/templates/gnetconfig.pot +rsync rsync://rsync.frugalware.org/pub/other/fw-control-center/fw-control-center/gnetconfig-mcs-plugin/po/gnetconfig-mcs-plugin.pot fwcontrolcenter/templates/gnetconfig-mcs-plugin.pot rsync rsync://rsync.frugalware.org/pub/other/gfpm/gfpm/po/gfpm.pot gfpm/templates/gfpm.pot echo "done." From crazy at frugalware.org Sat Sep 8 00:49:14 2007 From: crazy at frugalware.org (crazy) Date: Sat Sep 8 00:49:15 2007 Subject: [Frugalware-git] frugalware-current: sdparm-1.02-1-i686 Message-ID: <20070907224914.1785113A411B@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=8f3f97ea1ae965c181baec7ba53e18a8dfed6e1d commit 8f3f97ea1ae965c181baec7ba53e18a8dfed6e1d Author: crazy Date: Sat Sep 8 00:46:00 2007 +0200 sdparm-1.02-1-i686 * Version bump diff --git a/source/apps/sdparm/FrugalBuild b/source/apps/sdparm/FrugalBuild index 81baf74..dda52ab 100644 --- a/source/apps/sdparm/FrugalBuild +++ b/source/apps/sdparm/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: crazy pkgname=sdparm -pkgver=1.01 +pkgver=1.02 pkgrel=1 pkgdesc="sdparm list or change SCSI/ATAPI disk parameters." url="http://sg.torque.net/sg/sdparm.html" @@ -10,8 +10,8 @@ depends=('glibc') ##move to base ? groups=('apps') archs=('i686' 'x86_64') -up2date="lynx -dump http://sg.torque.net/sg/p/|grep 'sdparm'|sort -n -r|grep -m1 '.tar.bz2$'|sed 's/.*-\(.*\).t.*/\1/'" -source=(http://sg.torque.net/sg/p/$pkgname-$pkgver.tar.bz2) +up2date="lynx -dump http://sg.torque.net/sg/sdparm.html|grep 'sdparm'|sort -n -r|grep -m1 '.tgz$'|sed 's/.*-\(.*\).t.*/\1/'" +source=(http://sg.torque.net/sg/p/$pkgname-$pkgver.tgz) +sha1sums=('9ba58c52904b4cff45ac06ed52de161af6e32f36') -sha1sums=('48083caeb9eba8d7043dcfc7a77bcaa010c02aca') # optimization OK From crazy at frugalware.org Sat Sep 8 00:52:26 2007 From: crazy at frugalware.org (crazy) Date: Sat Sep 8 00:52:32 2007 Subject: [Frugalware-git] frugalware-current: lsscsi-0.19-1-i686 Message-ID: <20070907225226.4175B13A411B@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=663d5d7a1046cf655a96b1ec01aef16069f7d86e commit 663d5d7a1046cf655a96b1ec01aef16069f7d86e Author: crazy Date: Sat Sep 8 00:49:28 2007 +0200 lsscsi-0.19-1-i686 * up2date fix diff --git a/source/apps/lsscsi/FrugalBuild b/source/apps/lsscsi/FrugalBuild index 0f1fab3..fd9d6ec 100644 --- a/source/apps/lsscsi/FrugalBuild +++ b/source/apps/lsscsi/FrugalBuild @@ -9,7 +9,7 @@ url="http://sg.torque.net/scsi/lsscsi.html" depends=() groups=('apps') archs=('i686' 'x86_64') -up2date="lynx -dump http://sg.torque.net/scsi|grep 'lsscsi-\(.*\).tgz$'|Flasttgz" +up2date="lynx -dump $url|grep 'lsscsi-\(.*\).tgz$'|Flasttgz" source=(http://sg.torque.net/scsi/$pkgname-$pkgver.tgz) sha1sums=('aadc43483707103df55b8e763f0dc67b14440f89') From vmiklos at frugalware.org Sat Sep 8 00:55:29 2007 From: vmiklos at frugalware.org (VMiklos) Date: Sat Sep 8 00:55:30 2007 Subject: [Frugalware-git] pacman-g2: updates for 3.6.2 Message-ID: <20070907225529.7778C13A411B@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=pacman-g2.git;a=commitdiff;h=7b95754de170c3ab7374697949e8565d2bfcd1bb commit 7b95754de170c3ab7374697949e8565d2bfcd1bb Author: VMiklos Date: Sat Sep 8 00:55:24 2007 +0200 updates for 3.6.2 diff --git a/NEWS b/NEWS index 6bb13b9..9db550c 100644 --- a/NEWS +++ b/NEWS @@ -1,5 +1,12 @@ VERSION DESCRIPTION ----------------------------------------------------------------------------- +3.6.2 - makepkg: more check for invalid config variables in + makepkg.conf + - pacman-g2: don't allow values other than <0 or >100 as a + progressbar value + - fix -A and -U output, it was messed up with the + "inter-conflicts" progressbar + - when using -S, two unnecessary newlines are no longer printed 3.6.1 - makepkg: various minor fixes and improvements - new progressbars for download and checking internal conflicts - updatesync: speed improvements diff --git a/configure.ac b/configure.ac index f494214..9acb2fc 100644 --- a/configure.ac +++ b/configure.ac @@ -2,7 +2,7 @@ ENV_CFLAGS=$CFLAGS AC_PREREQ(2.59) dnl Update it right before the release since $pkgver_foo are all _post_ release snapshots -AC_INIT([pacman-g2 package manager], 3.6.1, [frugalware-devel@frugalware.org], pacman-g2) +AC_INIT([pacman-g2 package manager], 3.6.2, [frugalware-devel@frugalware.org], pacman-g2) AC_LANG(C) AM_CONFIG_HEADER(config.h) AC_CANONICAL_SYSTEM @@ -21,7 +21,7 @@ dnl Define here the libpacman version number PM_MAJOR_VERSION=0 PM_MINOR_VERSION=3 PM_MICRO_VERSION=6 -PM_MICRO_VERSION_SUFFIX=.1 +PM_MICRO_VERSION_SUFFIX=.2 PM_VERSION=$PM_MAJOR_VERSION.$PM_MINOR_VERSION.$PM_MICRO_VERSION$PM_MICRO_VERSION_SUFFIX dnl Needed for libtool to create proper shared lib version PM_VERSION_INFO=`expr $PM_MAJOR_VERSION + $PM_MINOR_VERSION`:$PM_MICRO_VERSION:$PM_MINOR_VERSION From vmiklos at frugalware.org Sat Sep 8 01:02:01 2007 From: vmiklos at frugalware.org (VMiklos) Date: Sat Sep 8 01:02:02 2007 Subject: [Frugalware-git] frugalware-current: pacman-g2-3.6.2-1-i686 Message-ID: <20070907230201.BDC5C13A411B@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=3b37f1cd62ace4da333eb06628c8a95d26793212 commit 3b37f1cd62ace4da333eb06628c8a95d26793212 Author: VMiklos Date: Sat Sep 8 01:01:50 2007 +0200 pacman-g2-3.6.2-1-i686 version bump diff --git a/source/base/pacman-g2/FrugalBuild b/source/base/pacman-g2/FrugalBuild index fa01bf5..e1618c9 100644 --- a/source/base/pacman-g2/FrugalBuild +++ b/source/base/pacman-g2/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: VMiklos pkgname=pacman-g2 -pkgver=3.6.1 +pkgver=3.6.2 pkgrel=1 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/" From vmiklos at frugalware.org Sat Sep 8 01:07:51 2007 From: vmiklos at frugalware.org (VMiklos) Date: Sat Sep 8 01:07:53 2007 Subject: [Frugalware-git] pacman-g2: README: update Message-ID: <20070907230751.6035713A411B@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=pacman-g2.git;a=commitdiff;h=88ac02c47bacba8814f759b52d9237b3d71544e6 commit 88ac02c47bacba8814f759b52d9237b3d71544e6 Author: VMiklos Date: Sat Sep 8 01:07:44 2007 +0200 README: update - list a few features we have (compared to pacman) - remove false statement about pacman devs do not take external patches (they do since they converted to git) diff --git a/README b/README index 383d33e..a2cfa5f 100644 --- a/README +++ b/README @@ -23,14 +23,15 @@ Vinet). So it provides a library interface to create realy frontends (not just wrappers) to this great package management tool. -This fork has the following goals: +Some features that pacman-g2 has over pacman: (September 2007) -1) It provides a stable API. -2) It has a stable release in every 2 months (at least). -3) We _are_ interested in contributors' patches. +1) It provides bindings C#, Java, Perl and Python bindings for libpacman. +2) It provides a configuration file parser (for parsing pacman.conf). +3) It provides support for subpackages, ie. creating more than one binary +package using a single buildscript. -This is guaranteed as we already has a patch queue for almost a year with the -same goals, just finally we lost our motivation to submit patches to the cvs. +Pacman-g2 has a stable library API and it has frequent releases (at least one +maintainance release in every 2 months). Pacman has been forked because Aaron Griffin, the current "maintainer" of pacman3: From crazy at frugalware.org Sat Sep 8 01:10:58 2007 From: crazy at frugalware.org (crazy) Date: Sat Sep 8 01:11:00 2007 Subject: [Frugalware-git] frugalware-current: thunderbird-2.0.0.6-1-i686 Message-ID: <20070907231058.D113A13A411B@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=329a36199e3c43ef831e8209a9d78228878dbb72 commit 329a36199e3c43ef831e8209a9d78228878dbb72 Author: crazy Date: Sat Sep 8 01:07:02 2007 +0200 thunderbird-2.0.0.6-1-i686 * up2date fix diff --git a/source/xapps/thunderbird/FrugalBuild b/source/xapps/thunderbird/FrugalBuild index d9759e4..536cfdf 100644 --- a/source/xapps/thunderbird/FrugalBuild +++ b/source/xapps/thunderbird/FrugalBuild @@ -12,7 +12,7 @@ makedepends=('zip') groups=('xapps') archs=('i686' 'x86_64') options=('scriptlet') -up2date="lynx -dump http://www.mozilla.com/thunderbird/|grep -m1 'releases.mozilla.org'|sed -e 's|.*es/||g' -e 's|/||g'" +up2date="lynx -dump http://releases.mozilla.org/pub/mozilla.org/thunderbird/releases/latest/source|grep -m1 'bz2'|sed 's/.*bird-\(.*\)-s.*/\1/'" source=(http://releases.mozilla.org/pub/mozilla.org/$pkgname/releases/$pkgver/source/$pkgname-$pkgver-source.tar.bz2 \ 00-$pkgname-0.8-progname.patch \ 02-$pkgname-locale.patch \ From crazy at frugalware.org Sat Sep 8 01:17:30 2007 From: crazy at frugalware.org (crazy) Date: Sat Sep 8 01:17:32 2007 Subject: [Frugalware-git] frugalware-current: libtheora-1.0alpha7-1-i686 Message-ID: <20070907231730.E265813A411B@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=a2eabb0638cb1337bc731c9202bc703bf785db74 commit a2eabb0638cb1337bc731c9202bc703bf785db74 Author: crazy Date: Sat Sep 8 01:14:37 2007 +0200 libtheora-1.0alpha7-1-i686 * Version bump diff --git a/source/lib/libtheora/FrugalBuild b/source/lib/libtheora/FrugalBuild index 6cc2792..c21899a 100644 --- a/source/lib/libtheora/FrugalBuild +++ b/source/lib/libtheora/FrugalBuild @@ -11,7 +11,7 @@ groups=('lib') archs=('i686' 'x86_64') depends=('libogg') makedepends=('libvorbis' 'doxygen' 'sdl') -up2date="lynx -dump http://www.theora.org/|grep -m1 'libtheora-\(.*\).tar.bz2'|sed 's/.*-\(.*\).t.*/\1/'" +up2date="lynx -dump http://www.theora.org/downloads/|grep -m1 'libtheora-\(.*\).tar.gz'|sed 's/.*-\(.*\).t.*/\1/'" source=(http://downloads.xiph.org/releases/theora/$pkgname-$pkgver.tar.bz2) sha1sums=('ee97d30e0818c27666477113c019d53f15449d3d') From vmiklos at frugalware.org Sat Sep 8 01:23:15 2007 From: vmiklos at frugalware.org (VMiklos) Date: Sat Sep 8 01:23:17 2007 Subject: [Frugalware-git] pacman-g2: README: update Message-ID: <20070907232315.5068413A411B@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=pacman-g2.git;a=commitdiff;h=a25efe37d542c6f1893a7864c04005edd349093f commit a25efe37d542c6f1893a7864c04005edd349093f Author: VMiklos Date: Sat Sep 8 01:23:11 2007 +0200 README: update attemp to replace outdated parts (ie about pacman-g2 can't upgrade itself) diff --git a/README b/README index a2cfa5f..75bbc9c 100644 --- a/README +++ b/README @@ -20,7 +20,7 @@ Pacman-G2 is a fork of the not-yet-released cvs version of the complete rewrite of pacman by Aurelien Foret (the old monolithic pacman is written by Judd Vinet). -So it provides a library interface to create realy frontends (not just +So it provides a library interface to create real front-ends (not just wrappers) to this great package management tool. Some features that pacman-g2 has over pacman: (September 2007) @@ -28,42 +28,34 @@ Some features that pacman-g2 has over pacman: (September 2007) 1) It provides bindings C#, Java, Perl and Python bindings for libpacman. 2) It provides a configuration file parser (for parsing pacman.conf). 3) It provides support for subpackages, ie. creating more than one binary -package using a single buildscript. +package using a single build script. Pacman-g2 has a stable library API and it has frequent releases (at least one -maintainance release in every 2 months). +maintenance release in every 2 months). -Pacman has been forked because Aaron Griffin, the current "maintainer" of -pacman3: +Using patches to provide this features modify enough pacman to change its name. +Additionally the maintainers of pacman asked us to do so and they have reason. -1) requested to do so. -2) always says there will be a pre-release soon, but there isn't any for more than half of the year. -3) likes cosmetics changes even with changing the API so developing frontends are almost impossible. -4) regularly ignores contributors' patches, then after he did his own changes, - then requires ''you'' to port your patch to the changed api, so it really does - not worth submitting patches to him. +Patches to port features or bugfixes from pacman are welcome, but in fact we +differed too much to regularly sync the common codebase between the two +projects. -We plan to pull functional changes from the cvs regularly. Till the current -destructive approach does not change, we do not plan to submit patches to him. -The queue is too long already, he has some stuff already to merge. -(Unfortunately probably he won't.) - -Of course this does not means that we hate the other contributors of pacman, we -have a problem with the current "development" model of pacman-cvs. We are -interested in any co-operation if the current approach changes. +Of course we would like to thank the original pacman developers for all their +effort till we worked together before the fork. The current homepage of the fork can be found at: http://ftp.frugalware.org/pub/other/pacman-g2/ -The project uses the "pacman-g2" name instead of the "pacman" one, so that users won't be confused. +The project uses the "pacman-g2" name instead of the "pacman" one, so that +users won't be confused. -If you are interested in developing pacman-g2, please subscribe to the frugalware-devel@frugalware.org mailing list. +If you are interested in developing pacman-g2, please subscribe to the +frugalware-devel@frugalware.org mailing list. Also please note that the library shipped with pacman-g2 is called libpacman, -not libalpm. This is because libpacman is meant to be a distro-independent -package-management library, while libalpm depends on packages not available in -most distributions (ie. libdownload). +not libalpm. This is because libpacman is no longer meant to be specific +Archlinux, the distribution created by Judd Vinet, the original pacman author. PACMAN library overview & internals ================================= @@ -317,17 +309,3 @@ although the cache directory can be shared by several frontends. Single chained list. A minimalistic chained list implementation to store options from the configuration file, and targets passed to pacman-g2 on the command line. - - -LIMITATIONS/BEHAVIOR CHANGES COMPARED TO PACMAN 2.9 -=================================================== - -Excepted missing features still needing to be implemented, one can -notice the following limitations: - -- If pacman-g2 is out of date, the frontend displays a warning and recommends -to give up the on-going transanction. The frontend does not allow to -upgrade pacman-g2 itself on-the-fly, and thus it should be restarted with -only "pacman-g2" as a target. - -- ... From voroskoi at frugalware.org Sat Sep 8 11:43:56 2007 From: voroskoi at frugalware.org (voroskoi) Date: Sat Sep 8 11:44:00 2007 Subject: [Frugalware-git] frugalware-current: libtorrent-0.11.7-1-i686 Message-ID: <20070908094356.0516E13A42B4@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=f7669a69476bd2ba765b6b410c4a00c829b116d1 commit f7669a69476bd2ba765b6b410c4a00c829b116d1 Author: voroskoi Date: Sat Sep 8 11:38:27 2007 +0200 libtorrent-0.11.7-1-i686 version bump diff --git a/source/lib-extra/libtorrent/FrugalBuild b/source/lib-extra/libtorrent/FrugalBuild index 3bba613..be2176f 100644 --- a/source/lib-extra/libtorrent/FrugalBuild +++ b/source/lib-extra/libtorrent/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: voroskoi pkgname=libtorrent -pkgver=0.11.6 +pkgver=0.11.7 pkgrel=1 pkgdesc="LibTorrent is a BitTorrent library written in C++ for *nix, with a focus on high performance and good code." url="http://libtorrent.rakshasa.no/" @@ -12,6 +12,6 @@ archs=('i686' 'x86_64') up2date="lynx -dump $url |grep libtorrent.*.tar |sed -ne 's/.*t-\(.*\).t.*/\1/;1p'" source=(http://libtorrent.rakshasa.no/downloads/libtorrent-$pkgver.tar.gz) Fconfopts="$Fconfopts --enable-static" -sha1sums=('ffecdf4fa40ca356bd1707f0e7796fbb50972c80') +sha1sums=('3228cd5660e2a387464ec8a8be5ad1193ab166a0') # optimization OK From voroskoi at frugalware.org Sat Sep 8 12:01:06 2007 From: voroskoi at frugalware.org (voroskoi) Date: Sat Sep 8 12:01:07 2007 Subject: [Frugalware-git] frugalware-current: rtorrent-0.7.7-1-i686 Message-ID: <20070908100106.4407713A42B4@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=a53dec87be559083b77430873a8ddf267c25ed99 commit a53dec87be559083b77430873a8ddf267c25ed99 Author: voroskoi Date: Sat Sep 8 11:55:23 2007 +0200 rtorrent-0.7.7-1-i686 version bump diff --git a/source/network-extra/rtorrent/FrugalBuild b/source/network-extra/rtorrent/FrugalBuild index 160da35..8793aac 100644 --- a/source/network-extra/rtorrent/FrugalBuild +++ b/source/network-extra/rtorrent/FrugalBuild @@ -2,17 +2,17 @@ # Maintainer: voroskoi pkgname=rtorrent -pkgver=0.7.6 -pkgrel=2 +pkgver=0.7.7 +pkgrel=1 pkgdesc="The ncurses client for libtorrent." url="http://libtorrent.rakshasa.no/" -depends=('ncurses' 'libtorrent>=0.11.6' 'xmlrpc-c>=1.11.00') +depends=('ncurses' 'libtorrent>=0.11.7' 'xmlrpc-c>=1.11.00') groups=('network-extra') archs=('i686' 'x86_64') Fconfopts="$Fconfopts --with-xmlrpc-c" up2date="lynx -dump $url |grep rtorrent.*.tar |sed -ne 's/.*t-\(.*\).t.*/\1/;1p'" source=(http://libtorrent.rakshasa.no/downloads/rtorrent-$pkgver.tar.gz curl_segfault_dirty_hack.diff) -sha1sums=('d7684e7149c1b203334463f5e21dd7e99418e395' \ +sha1sums=('0994cfc5fd4915ce18520169963e8b4836ac54a8' \ '583dadf10d30956ec796ec9f3c2c4d5dfff64c79') # optimization OK From voroskoi at frugalware.org Sat Sep 8 12:51:20 2007 From: voroskoi at frugalware.org (voroskoi) Date: Sat Sep 8 12:51:22 2007 Subject: [Frugalware-git] frugalware-current: rtl8110-1.07-1-i686 Message-ID: <20070908105120.AD0E613A42B4@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=d34b5f855be4474dfc646cfdb7ce686968991ab3 commit d34b5f855be4474dfc646cfdb7ce686968991ab3 Author: voroskoi Date: Sat Sep 8 12:45:36 2007 +0200 rtl8110-1.07-1-i686 version bump updated compile fix diff --git a/source/network-extra/rtl8110/FrugalBuild b/source/network-extra/rtl8110/FrugalBuild index 2170f43..82dda77 100644 --- a/source/network-extra/rtl8110/FrugalBuild +++ b/source/network-extra/rtl8110/FrugalBuild @@ -2,8 +2,8 @@ # Maintainer: voroskoi pkgname=rtl8110 -pkgver=1.06 -pkgrel=8 +pkgver=1.07 +pkgrel=1 pkgdesc="Realtek driver(r1000) for RTL8169/8110 cards." url="http://www.realtek.com.tw" Finclude kernel-module @@ -19,5 +19,5 @@ build() { make -C $_F_kernelmod_dir/build M=`pwd` || Fdie Ffilerel $_F_kernelmod_dir/net/r1000.ko } -sha1sums=('c98e21a436a7bb17ba94ad60567f31873e02a9a6'\ - 'b9b925c11c785f536126880ea48078448863b16e') +sha1sums=('d904352345d0adb716ba12fb788b8a80ff75afc3' \ + 'df5f8e38705bf77acad8cb828fa20206890d43da') diff --git a/source/network-extra/rtl8110/compile-Makefile.diff b/source/network-extra/rtl8110/compile-Makefile.diff index 19dd042..e6773a3 100644 --- a/source/network-extra/rtl8110/compile-Makefile.diff +++ b/source/network-extra/rtl8110/compile-Makefile.diff @@ -1,18 +1,17 @@ -diff -aur r1000_v1.06/src/Makefile fw-r1000/src/Makefile ---- r1000_v1.06/src/Makefile 2007-04-16 03:01:47.000000000 +0200 -+++ fw-r1000/src/Makefile 2007-05-29 18:47:17.000000000 +0200 -@@ -1,20 +1,3 @@ --# ------------------------------------------------------ # --# Makefile for RealTek Ethernet Linux Driver, 2004/04/16 # --# ------------------------------------------------------ # -+r1000-objs := r1000_ioctl.o r1000_n.o +diff -aur r1000_v1.07/src/Makefile fw_r1000_v1.07/src/Makefile +--- r1000_v1.07/src/Makefile 2007-06-22 03:38:18.000000000 +0200 ++++ fw_r1000_v1.07/src/Makefile 2007-09-08 12:33:21.000000000 +0200 +@@ -21,19 +21,6 @@ + # + ################################################################################ -KVER := $(shell uname -r) -KDIR := /lib/modules/$(KVER)/build -KMISC := /lib/modules/$(KVER)/kernel/drivers/net/ -KEXT := $(shell echo $(KVER) | sed -ne 's/^2\.[567]\..*/k/p')o -KFLAG := 2$(shell echo $(KVER) | sed -ne 's/^2\.[4]\..*/4/p')x -- ++r1000-objs := r1000_ioctl.o r1000_n.o + -modules: - $(MAKE) -f Makefile_linux24x - strip --strip-debug r1000.$(KEXT) @@ -24,10 +23,10 @@ diff -aur r1000_v1.06/src/Makefile fw-r1000/src/Makefile -install: - install -m 644 -c r1000.$(KEXT) $(KMISC) +obj-m += r1000.o -diff -aur r1000_v1.06/src/r1000_n.c fw-r1000/src/r1000_n.c ---- r1000_v1.06/src/r1000_n.c 2007-04-17 16:24:19.000000000 +0200 -+++ fw-r1000/src/r1000_n.c 2007-05-29 18:56:17.000000000 +0200 -@@ -49,9 +49,9 @@ +diff -aur r1000_v1.07/src/r1000_n.c fw_r1000_v1.07/src/r1000_n.c +--- r1000_v1.07/src/r1000_n.c 2007-08-17 19:36:53.000000000 +0200 ++++ fw_r1000_v1.07/src/r1000_n.c 2007-09-08 12:34:27.000000000 +0200 +@@ -72,9 +72,9 @@ MODULE_DEVICE_TABLE (pci, r1000_pci_tbl); MODULE_AUTHOR ("Realtek"); MODULE_DESCRIPTION ("Linux device driver for Realtek Ethernet Controllers"); From priyank at frugalware.org Sat Sep 8 13:17:07 2007 From: priyank at frugalware.org (Priyank) Date: Sat Sep 8 13:17:09 2007 Subject: [Frugalware-git] gfpm: gfpm: Addedtwo buttons to the progress bar - Details and Close Message-ID: <20070908111707.181E213A4155@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gfpm.git;a=commitdiff;h=78521b6caf2981f36e7ce88072ac62417bf4e190 commit 78521b6caf2981f36e7ce88072ac62417bf4e190 Author: Priyank Date: Sat Sep 8 15:59:22 2007 +0530 gfpm: Addedtwo buttons to the progress bar - Details and Close * NOTE: for now, the close button will only hide the progress window, and not actually cancel the progress. diff --git a/data/gfpm.glade b/data/gfpm.glade index 68c75f1..3788094 100644 --- a/data/gfpm.glade +++ b/data/gfpm.glade @@ -506,12 +506,11 @@ - 350 - 125 Gfpm - False + True GTK_WIN_POS_CENTER_ON_PARENT GDK_WINDOW_TYPE_HINT_DIALOG + True True @@ -550,6 +549,7 @@ + 330 True True 0.10000000149 @@ -627,6 +627,66 @@ 2 + + + True + True + GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK + GTK_POLICY_AUTOMATIC + GTK_POLICY_AUTOMATIC + GTK_SHADOW_IN + + + True + True + GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK + False + 1 + False + + + + + False + 3 + 3 + + + + + True + GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK + + + True + True + True + GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK + Details + True + 0 + + + + + True + True + True + GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK + gtk-close + True + 0 + + + 1 + + + + + False + 4 + + From priyank at frugalware.org Sat Sep 8 13:17:07 2007 From: priyank at frugalware.org (Priyank) Date: Sat Sep 8 13:17:10 2007 Subject: [Frugalware-git] gfpm: gfpm-interface: ask the user if he wants to delete /etc/pacman-g2.lck Message-ID: <20070908111707.2FCFD13A42B4@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gfpm.git;a=commitdiff;h=af7fffb85297a22f0d53d4566df25b751dc6d0a5 commit af7fffb85297a22f0d53d4566df25b751dc6d0a5 Author: Priyank Date: Sat Sep 8 16:03:22 2007 +0530 gfpm-interface: ask the user if he wants to delete /etc/pacman-g2.lck * Before performing an install/remove operation, if gfpm detects that a stale lock file exists, it should ask the user if he/she wants to delete the lock file and continue with the operation. * Closes #2387 diff --git a/src/gfpm-interface.c b/src/gfpm-interface.c index a3bda14..068f7f9 100644 --- a/src/gfpm-interface.c +++ b/src/gfpm-interface.c @@ -278,6 +278,9 @@ gfpm_interface_init (void) static void cb_gfpm_apply_btn_clicked (GtkButton *button, gpointer data) { + static gchar *lck_error = ("Gfpm has detected that another instance of a package manager is already running. " + "If you're sure that a package manager is not already running, you can delete /tmp/pacman-g2.lck\n" + "Do you want gfpm to delete it and continue with the operation ?\n"); GString *errorstr = g_string_new (""); if (!gfpm_package_list_is_empty(GFPM_INSTALL_LIST) && !gfpm_package_list_is_empty(GFPM_REMOVE_LIST)) @@ -306,16 +309,22 @@ cb_gfpm_apply_btn_clicked (GtkButton *button, gpointer data) flags |= PM_TRANS_FLAG_NODEPS; /* create transaction */ - if (pacman_trans_init(PM_TRANS_TYPE_REMOVE, flags, gfpm_progress_event, cb_gfpm_trans_conv, gfpm_progress_install) == -1) +try: if (pacman_trans_init(PM_TRANS_TYPE_REMOVE, flags, gfpm_progress_event, cb_gfpm_trans_conv, gfpm_progress_install) == -1) { gchar *str; str = g_strdup_printf (_("Failed to init transaction (%s)\n"), pacman_strerror(pm_errno)); errorstr = g_string_append (errorstr, str); if (pm_errno == PM_ERR_HANDLE_LOCK) - errorstr = g_string_append (errorstr, - _("If you're sure a package manager is not already running, you can delete /tmp/pacman-g2.lck")); - gfpm_error (_("Error"), errorstr->str); - return; + g_string_printf (errorstr, "%s", lck_error); + if (gfpm_question (_("Error"), errorstr->str) == GTK_RESPONSE_YES) + { + g_remove ("/tmp/pacman-g2.lck"); + goto try; + } + else + { + return; + } } gfpm_progress_show (TRUE); @@ -357,16 +366,22 @@ cb_gfpm_apply_btn_clicked (GtkButton *button, gpointer data) if (gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(gfpm_apply_inst_dwocheck))) flags |= PM_TRANS_FLAG_DOWNLOADONLY; /* create transaction */ - if (pacman_trans_init(PM_TRANS_TYPE_SYNC, flags, gfpm_progress_event, cb_gfpm_trans_conv, gfpm_progress_install) == -1) +itry: if (pacman_trans_init(PM_TRANS_TYPE_SYNC, flags, gfpm_progress_event, cb_gfpm_trans_conv, gfpm_progress_install) == -1) { gchar *str; str = g_strdup_printf (_("Failed to init transaction (%s)\n"), pacman_strerror(pm_errno)); errorstr = g_string_append (errorstr, str); if (pm_errno == PM_ERR_HANDLE_LOCK) - errorstr = g_string_append (errorstr, - _("If you're sure a package manager is not already running, you can delete /tmp/pacman-g2.lck")); - gfpm_error (_("Error"), errorstr->str); - return; + g_string_printf (errorstr, "%s", lck_error); + if (gfpm_question (_("Error"), errorstr->str) == GTK_RESPONSE_YES) + { + g_remove ("/tmp/pacman-g2.lck"); + goto itry; + } + else + { + return; + } } gfpm_progress_show (TRUE); From priyank at frugalware.org Sat Sep 8 13:22:23 2007 From: priyank at frugalware.org (Priyank) Date: Sat Sep 8 13:22:23 2007 Subject: [Frugalware-git] gfpm: gfpm: a new re-designed progressbar (no more crashes) Message-ID: <20070908112223.10BAE13A4155@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gfpm.git;a=commitdiff;h=15f844d89d6e028e54da16e08ca91c9564ce8e7a commit 15f844d89d6e028e54da16e08ca91c9564ce8e7a Author: Priyank Date: Sat Sep 8 16:50:42 2007 +0530 gfpm: a new re-designed progressbar (no more crashes) diff --git a/src/gfpm-interface.c b/src/gfpm-interface.c index 068f7f9..4eca401 100644 --- a/src/gfpm-interface.c +++ b/src/gfpm-interface.c @@ -460,9 +460,9 @@ gfpm_load_groups_tvw (const char *repo_name) for (l=pacman_db_getgrpcache(db); l; l=pacman_list_next(l)) { asprintf (&temp, _("Loading groups ... [%s]"), (char*)pacman_list_getdata(l)); + gfpm_update_status (temp); while (gtk_events_pending()) gtk_main_iteration (); - gfpm_update_status (temp); //display temp status gtk_list_store_append (GTK_LIST_STORE(model), &iter); gtk_list_store_set (GTK_LIST_STORE(model), &iter, 0, (char*)pacman_list_getdata(l), -1); @@ -498,8 +498,6 @@ gfpm_load_pkgs_tvw (const char *group_name) } gfpm_update_status (_("Loading package list ...")); - while (gtk_events_pending()) - gtk_main_iteration (); pm_group = pacman_db_readgrp (pm_db, (char*)group_name); l = pacman_grp_getinfo (pm_group, PM_GRP_PKGNAMES); model = gtk_tree_view_get_model (GTK_TREE_VIEW(gfpm_pkgs_tvw)); @@ -568,9 +566,12 @@ gfpm_load_pkgs_tvw (const char *group_name) //5, g_strstrip((char*)pacman_pkg_getinfo (pm_lpkg, PM_PKG_DESC)), -1); } + while (gtk_events_pending()) gtk_main_iteration (); pacman_pkg_free (pm_pkg); pacman_pkg_free (pm_lpkg); } + //while (gtk_events_pending()) + // gtk_main_iteration_do (TRUE); gfpm_update_status (_("Loading package list ...DONE")); g_object_unref (icon_yes); @@ -958,7 +959,7 @@ cb_gfpm_refresh_button_clicked (GtkButton *button, gpointer data) "It is recommended that you allow gfpm to upgrade pacman-g2 first. " "Do you want to continue upgrading pacman-g2 ?"); - gfpm_progress_set_main_text (_("Synchronizing package databases")); + gfpm_progress_set_main_text (_("Synchronizing package databases"), 1); gfpm_progress_show (TRUE); ret = pacman_db_update (0, sync_db); gfpm_progress_show (FALSE); diff --git a/src/gfpm-progress.c b/src/gfpm-progress.c index 53c1399..c46439e 100644 --- a/src/gfpm-progress.c +++ b/src/gfpm-progress.c @@ -40,6 +40,12 @@ static GtkWidget *sub_label = NULL; static GtkWidget *rate_label = NULL; static GtkWidget *rec_label = NULL; static GtkWidget *rate_box = NULL; +static GtkWidget *progress_txtvw = NULL; +static GtkWidget *details_scroll = NULL; +static GtkWidget *button_close = NULL; + +GtkTextIter t_iter; +GtkTextBuffer *buffer = NULL; float rate; int offset; @@ -47,6 +53,9 @@ int xferred1; struct timeval t0, t; char reponame[PM_DLFNM_LEN+1]; +static void cb_gfpm_close_button_clicked (GtkWidget *button, gpointer data); +static void cb_gfpm_details_button_toggled (GtkWidget *button, gpointer data); + void gfpm_progress_init (void) { @@ -63,6 +72,63 @@ gfpm_progress_init (void) rate_label = glade_xml_get_widget (xml, "rate_pr_label"); rate_box = glade_xml_get_widget (xml, "rate_pr_box"); rec_label = glade_xml_get_widget (xml, "rx_pr_label"); + progress_txtvw = glade_xml_get_widget (xml, "progress_txtvw"); + button_close = glade_xml_get_widget (xml, "close_progress"); + details_scroll = glade_xml_get_widget (xml, "details_scrollwindow"); + g_signal_connect (G_OBJECT(glade_xml_get_widget(xml,"show_details")), + "toggled", + G_CALLBACK(cb_gfpm_details_button_toggled), + NULL); + g_signal_connect (G_OBJECT(button_close), + "clicked", + G_CALLBACK(cb_gfpm_close_button_clicked), + NULL); + gtk_window_set_default_size (GTK_WINDOW(progresswindow), 350, 140); + gtk_window_resize (GTK_WINDOW(progresswindow), 350, 140); + + return; +} + +static void +cb_gfpm_close_button_clicked (GtkWidget *button, gpointer data) +{ + gfpm_progress_show (FALSE); + + return; +} + +static void +cb_gfpm_details_button_toggled (GtkWidget *button, gpointer data) +{ + static int width = 0; + static int height = 0; + + if (gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(button))) + { + gtk_widget_show (GTK_WIDGET(details_scroll)); + if (height>0 && width>0) + gtk_window_resize (GTK_WINDOW(progresswindow), width, height); + gtk_window_get_size (GTK_WINDOW(progresswindow), &width, &height); + gtk_window_set_resizable (GTK_WINDOW(progresswindow), TRUE); + } + else + { + gint w; + w = progresswindow->allocation.width; + gtk_widget_hide (GTK_WIDGET(details_scroll)); + gtk_window_get_size (GTK_WINDOW(progresswindow), &width, &height); + gtk_window_resize (GTK_WINDOW(progresswindow), 350, 1); + gtk_window_set_resizable (GTK_WINDOW(progresswindow), FALSE); + } + return; +} + +static void +gfpm_progress_textview_reset (void) +{ + buffer = gtk_text_view_get_buffer (GTK_TEXT_VIEW(progress_txtvw)); + gtk_text_buffer_set_text (buffer, "", 0); + gtk_text_buffer_get_iter_at_offset (buffer, &t_iter, 0); return; } @@ -72,6 +138,11 @@ gfpm_progress_show (gboolean show) { if (show == TRUE) { + /* reset dialog attributes before showing */ + gfpm_progress_textview_reset (); + gtk_label_set_text (GTK_LABEL(sub_label), ""); + gtk_label_set_text (GTK_LABEL(main_label), ""); + gtk_widget_show (progresswindow); } else @@ -93,6 +164,8 @@ gfpm_progress_update (netbuf *ctl, int xferred, void *arg) float tdiff; gchar *rx_str = NULL; + while (gtk_events_pending()) + gtk_main_iteration (); ctl = NULL; size = *(int*)arg; per = ((float)(xferred+offset) / size) * 100; @@ -122,12 +195,13 @@ gfpm_progress_update (netbuf *ctl, int xferred, void *arg) rx_str = g_strdup_printf ("%dK / %dK", (xferred+offset)/1024, size/1024); gtk_label_set_text (GTK_LABEL(rec_label), rx_str); - while (gtk_events_pending ()) - gtk_main_iteration (); gtk_progress_bar_set_text (progressbar, text); gtk_label_set_text (GTK_LABEL(rate_label), rate_text); gtk_progress_bar_set_fraction (progressbar, (float)per/100); gfpm_progress_set_sub_text (reponame); + while (gtk_events_pending()) + gtk_main_iteration (); + return 1; } @@ -135,51 +209,61 @@ gfpm_progress_update (netbuf *ctl, int xferred, void *arg) void gfpm_progress_install (unsigned char event, char *pkgname, int percent, int howmany, int remain) { + static int ph = 0; + static int rh = 0; char *main_text = NULL; char *sub_text = NULL; +// if (ph == howmany) +// return; if (!pkgname) return; if (percent < 0 || percent > 100) return; - - while (gtk_events_pending ()) + while (gtk_events_pending()) gtk_main_iteration (); + switch (event) { case PM_TRANS_PROGRESS_ADD_START: if (howmany > 1) - main_text = g_strdup (_("Installing packages")); + main_text = g_strdup (_("Installing packages...")); else - main_text = g_strdup (_("Installing package")); + main_text = g_strdup (_("Installing package...")); break; case PM_TRANS_PROGRESS_UPGRADE_START: if (howmany > 1) - main_text = g_strdup (_("Upgrading packages")); + main_text = g_strdup (_("Upgrading packages...")); else - main_text = g_strdup (_("Upgrading package")); + main_text = g_strdup (_("Upgrading package...")); break; case PM_TRANS_PROGRESS_REMOVE_START: if (howmany > 1) - main_text = g_strdup (_("Removing packages")); + main_text = g_strdup (_("Removing packages...")); else - main_text = g_strdup (_("Removing package")); + main_text = g_strdup (_("Removing package...")); break; case PM_TRANS_PROGRESS_CONFLICTS_START: if (howmany > 1) - main_text = g_strdup (_("Checking packages for file conflicts")); + main_text = g_strdup (_("Checking packages for file conflicts...")); else - main_text = g_strdup (_("Checking package for file conflicts")); + main_text = g_strdup (_("Checking package for file conflicts...")); break; default: return; } - gfpm_progress_set_main_text (main_text); - sub_text = g_strdup_printf ("(%d/%d) %s", remain, howmany, pkgname); - gfpm_progress_set_sub_text (sub_text); + gfpm_progress_set_main_text (main_text, 0); + if (howmany > 1) + { + sub_text = g_strdup_printf ("(%d/%d) %s", remain, howmany, pkgname); + //ph = howmany; + gfpm_progress_set_sub_text (sub_text); + g_free (sub_text); + } gtk_progress_bar_set_fraction (progressbar, (float)percent/100); g_free (main_text); - g_free (sub_text); + while (gtk_events_pending()) + gtk_main_iteration (); return; } @@ -194,21 +278,22 @@ gfpm_progress_event (unsigned char event, void *data1, void *data2) return; gtk_widget_hide (rate_box); gtk_widget_hide (rec_label); - while (gtk_events_pending ()) - gtk_main_iteration (); switch (event) { case PM_TRANS_EVT_CHECKDEPS_START: substr = g_strdup(_("Checking dependencies")); + m = 1; break; case PM_TRANS_EVT_FILECONFLICTS_START: substr = g_strdup (_("Checking for file conflicts")); + m = 1; break; case PM_TRANS_EVT_RESOLVEDEPS_START: substr = g_strdup (_("Resolving dependencies")); break; case PM_TRANS_EVT_INTERCONFLICTS_START: substr = g_strdup (_("Looking for inter-conflicts")); + m = 1; break; case PM_TRANS_EVT_CHECKDEPS_DONE: case PM_TRANS_EVT_RESOLVEDEPS_DONE: @@ -216,34 +301,45 @@ gfpm_progress_event (unsigned char event, void *data1, void *data2) substr = g_strdup (_("Done")); break; case PM_TRANS_EVT_ADD_START: - substr = g_strdup_printf (_("installing %s"), - (char*)pacman_pkg_getinfo(data1, PM_PKG_NAME)); + substr = g_strdup_printf (_("Installing %s-%s"), + (char*)pacman_pkg_getinfo(data1, PM_PKG_NAME), + (char*)pacman_pkg_getinfo(data1, PM_PKG_VERSION)); + m = 1; break; case PM_TRANS_EVT_ADD_DONE: - substr = g_strdup_printf (_("installed %s"), - (char*)pacman_pkg_getinfo(data1, PM_PKG_NAME)); + gfpm_progress_set_main_text (_("Package installation finished"), 0); + substr = g_strdup_printf (_("Installed %s-%s"), + (char*)pacman_pkg_getinfo(data1, PM_PKG_NAME), + (char*)pacman_pkg_getinfo(data1, PM_PKG_VERSION)); break; case PM_TRANS_EVT_UPGRADE_START: - substr = g_strdup_printf (_("upgrading %s"), + substr = g_strdup_printf (_("Upgrading %s"), (char*)pacman_pkg_getinfo(data1, PM_PKG_NAME)); + m = 1; break; case PM_TRANS_EVT_UPGRADE_DONE: + gfpm_progress_set_main_text (_("Package upgrade finished"), 0); substr = g_strdup_printf (_("upgraded %s from %s to %s"), (char*)pacman_pkg_getinfo(data1, PM_PKG_NAME), (char*)pacman_pkg_getinfo(data2, PM_PKG_VERSION), (char*)pacman_pkg_getinfo(data1, PM_PKG_VERSION)); break; case PM_TRANS_EVT_REMOVE_START: - substr = g_strdup (_("Removing package")); + substr = g_strdup_printf (_("removing %s"), + (char*)pacman_pkg_getinfo(data1, PM_PKG_NAME)); break; case PM_TRANS_EVT_REMOVE_DONE: - substr = g_strdup (_("Done")); + gfpm_progress_set_main_text (_("Package removal finished"), 0); + substr = g_strdup_printf (_("removed %s"), + (char*)pacman_pkg_getinfo(data1, PM_PKG_NAME)); + gtk_widget_set_sensitive (button_close, TRUE); break; case PM_TRANS_EVT_INTEGRITY_START: substr = g_strdup (_("Checking package integrity")); break; case PM_TRANS_EVT_INTEGRITY_DONE: substr = g_strdup (_("Done")); + gtk_widget_set_sensitive (button_close, TRUE); break; case PM_TRANS_EVT_SCRIPTLET_INFO: substr = g_strdup ((char*)data1); @@ -253,6 +349,7 @@ gfpm_progress_event (unsigned char event, void *data1, void *data2) break; case PM_TRANS_EVT_SCRIPTLET_DONE: substr = g_strdup (_("Done")); + gtk_widget_set_sensitive (button_close, TRUE); break; case PM_TRANS_EVT_RETRIEVE_START: substr = g_strdup_printf (_("Retrieving packages from %s"), (char*)data1); @@ -265,37 +362,92 @@ gfpm_progress_event (unsigned char event, void *data1, void *data2) } if (m == 1) { - gfpm_progress_set_main_text (substr); + gfpm_progress_set_main_text (substr, 1); m = 0; } else - { + { gfpm_progress_set_sub_text (substr); } g_free (substr); - +/* + if (gtk_events_pending()) + { + while (gtk_events_pending ()) + gtk_main_iteration (); + } + else + { + g_print ("boogaing\n"); + usleep (5000); + } +*/ return; } + void -gfpm_progress_set_main_text (const char *msg) +gfpm_progress_set_main_text (const char *msg, int txt) { + gchar *str = NULL; + gchar *nstr = NULL; + static char *prev_msg = NULL; + if (msg != NULL) { - gchar *markup = g_markup_printf_escaped ("%s", msg); + str = g_strdup (msg); + g_strstrip (str); + gchar *markup = g_markup_printf_escaped ("%s", str); + nstr = g_strdup_printf ("%s\n", str); + g_free (str); gtk_label_set_markup (GTK_LABEL(main_label), markup); g_free (markup); + + if (txt) + { + if (prev_msg != NULL) + { + if (!strcmp(prev_msg, msg)) + return; + } + gtk_text_buffer_insert (buffer, &t_iter, nstr, strlen(nstr)); + g_free (prev_msg); + prev_msg = g_strdup_printf (msg); + g_free (nstr); + } } return; } + void gfpm_progress_set_sub_text (const char *msg) { + gchar *str = NULL; + gchar *nstr = NULL; + static char *sub_prev_msg = NULL; + if (msg != NULL) - gtk_label_set_text (GTK_LABEL(sub_label), msg); + { + if (sub_prev_msg != NULL) + { + if (!strcmp(sub_prev_msg, msg)) + return; + } + + str = g_strdup (msg); + g_strstrip (str); + gtk_label_set_text (GTK_LABEL(sub_label), str); + nstr = g_strdup_printf ("%s\n", str); + g_free (str); + gtk_text_buffer_insert (buffer, &t_iter, nstr, strlen(nstr)); + g_free (nstr); + g_free (sub_prev_msg); + sub_prev_msg = g_strdup_printf (msg); + } + return; } diff --git a/src/gfpm-progress.h b/src/gfpm-progress.h index d4a4fee..d873682 100644 --- a/src/gfpm-progress.h +++ b/src/gfpm-progress.h @@ -22,7 +22,7 @@ void gfpm_progress_install (unsigned char, char *, int, int, int); void gfpm_progress_show (gboolean); -void gfpm_progress_set_main_text (const char *msg); +void gfpm_progress_set_main_text (const char *msg, int txt); void gfpm_progress_set_sub_text (const char *msg); From priyank at frugalware.org Sat Sep 8 13:26:09 2007 From: priyank at frugalware.org (Priyank) Date: Sat Sep 8 13:26:11 2007 Subject: [Frugalware-git] gfpm: gfpm-interface: made current_group non static Message-ID: <20070908112609.B847813A4155@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gfpm.git;a=commitdiff;h=e0b0bec813b159ff1d5740c813271479d11457de commit e0b0bec813b159ff1d5740c813271479d11457de Author: Priyank Date: Sat Sep 8 16:53:37 2007 +0530 gfpm-interface: made current_group non static diff --git a/src/gfpm-interface.c b/src/gfpm-interface.c index 4eca401..59673be 100644 --- a/src/gfpm-interface.c +++ b/src/gfpm-interface.c @@ -51,7 +51,7 @@ extern char *repo; /* current group the user is browsing */ /* used for refreshing the views after a package update */ -static gchar *current_group = NULL; +gchar *current_group = NULL; /* The GFPM main window */ GtkWidget *gfpm_mw; From priyank at frugalware.org Sat Sep 8 13:26:09 2007 From: priyank at frugalware.org (Priyank) Date: Sat Sep 8 13:26:11 2007 Subject: [Frugalware-git] gfpm: gfpm-interface: do not hide the progressbar automatically at the end of an operation. Message-ID: <20070908112609.E59D813A4155@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gfpm.git;a=commitdiff;h=e5ac428cbaf980b9082296d86645a2b16ac61804 commit e5ac428cbaf980b9082296d86645a2b16ac61804 Author: Priyank Date: Sat Sep 8 16:54:21 2007 +0530 gfpm-interface: do not hide the progressbar automatically at the end of an operation. diff --git a/src/gfpm-interface.c b/src/gfpm-interface.c index 59673be..bfdc9cf 100644 --- a/src/gfpm-interface.c +++ b/src/gfpm-interface.c @@ -416,7 +416,7 @@ itry: if (pacman_trans_init(PM_TRANS_TYPE_SYNC, flags, gfpm_progress_event, cb_g gfpm_apply_dlg_reset (); } gfpm_db_reset_localdb (); - gfpm_progress_show (FALSE); + //gfpm_progress_show (FALSE); if (current_group != NULL) gfpm_load_pkgs_tvw ((const char*)current_group); From priyank at frugalware.org Sat Sep 8 13:38:58 2007 From: priyank at frugalware.org (Priyank) Date: Sat Sep 8 13:38:59 2007 Subject: [Frugalware-git] frugalware-current: icon-naming-utils-0.8.6-1-i686 Message-ID: <20070908113858.9828413A4155@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=e8b8830538a1525616025ba7b1c891a00772fafc commit e8b8830538a1525616025ba7b1c891a00772fafc Author: Priyank Date: Sat Sep 8 17:06:04 2007 +0530 icon-naming-utils-0.8.6-1-i686 * Version bump diff --git a/source/xapps/icon-naming-utils/FrugalBuild b/source/xapps/icon-naming-utils/FrugalBuild index 0040788..6be4a09 100644 --- a/source/xapps/icon-naming-utils/FrugalBuild +++ b/source/xapps/icon-naming-utils/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: Priyank Gosalia pkgname=icon-naming-utils -pkgver=0.8.3 +pkgver=0.8.6 pkgrel=1 pkgdesc="Maps the new names of icons for Tango to the legacy names used by the GNOME and KDE desktops." url="http://tango-project.org" @@ -11,4 +11,4 @@ groups=('xapps') archs=('i686' 'x86_64') up2date="lynx -dump http://tango-project.org/releases/ | grep icon-naming-utils|Flasttar" source=(http://tango-project.org/releases/$pkgname-$pkgver.tar.gz) -sha1sums=('027c0d261dbdc57c7599bdbb363164188751d423') +sha1sums=('b5cbe5e8d468132da8d3a038c43086cdefd24756') From priyank at frugalware.org Sat Sep 8 14:11:50 2007 From: priyank at frugalware.org (Priyank) Date: Sat Sep 8 14:11:52 2007 Subject: [Frugalware-git] frugalware-current: libgeda-1.2.0-1-i686 Message-ID: <20070908121150.96A2D13A4154@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=287a5ec9642df56818a8a019908eabd741bef62e commit 287a5ec9642df56818a8a019908eabd741bef62e Author: Priyank Date: Sat Sep 8 17:38:56 2007 +0530 libgeda-1.2.0-1-i686 * Version bump diff --git a/source/xlib-extra/libgeda/FrugalBuild b/source/xlib-extra/libgeda/FrugalBuild index 156256c..3d6396e 100644 --- a/source/xlib-extra/libgeda/FrugalBuild +++ b/source/xlib-extra/libgeda/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: Priyank Gosalia pkgname=libgeda -pkgver=20070626 +pkgver=1.2.0 pkgrel=1 pkgdesc="libgeda library provides functions needed for the gEDA core suite." url="http://www.geda.seul.org/" @@ -10,8 +10,8 @@ depends=('gtk+' 'gtk+2' 'guile' 'gd' 'libstroke') groups=('xlib-extra' 'geda-suite') archs=('i686') up2date="lynx -dump $url/sources.html | grep $pkgname | grep -m1 tar.gz | Flasttar" -source=(http://www.geda.seul.org/release/v1.0/1.0.1/$pkgname-$pkgver.tar.gz) -sha1sums=('359c3b59ac88d8d37a975f8cbb776424ddd53408') +source=(http://www.geda.seul.org/release/v1.2/$pkgver/$pkgname-$pkgver.tar.gz) +sha1sums=('5a74f1929b58a36fef9fc3d6d3236cd319953ae1') build() { From priyank at frugalware.org Sat Sep 8 14:27:59 2007 From: priyank at frugalware.org (Priyank) Date: Sat Sep 8 14:28:01 2007 Subject: [Frugalware-git] frugalware-current: geda-core-1.2.0-1-i686 Message-ID: <20070908122759.7384113A4154@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=c317d65b84e2d52be63fa4ea52a030dee45bcc73 commit c317d65b84e2d52be63fa4ea52a030dee45bcc73 Author: Priyank Date: Sat Sep 8 17:52:28 2007 +0530 geda-core-1.2.0-1-i686 * Version bump diff --git a/source/xapps-extra/geda-core/FrugalBuild b/source/xapps-extra/geda-core/FrugalBuild index 77f1f71..b18a9e4 100644 --- a/source/xapps-extra/geda-core/FrugalBuild +++ b/source/xapps-extra/geda-core/FrugalBuild @@ -2,11 +2,11 @@ # Maintainer: Priyank Gosalia pkgname=geda-core -pkgver=20070626 +pkgver=1.2.0 pkgrel=1 pkgdesc="Core components for gEDA - A complete electronic design and automation suite." url="http://geda.seul.org/" -dlurl="ftp://ftp.geda.seul.org/pub/geda/release/v1.0/1.0.1/" +dlurl="ftp://ftp.geda.seul.org/pub/geda/release/v1.2/$pkgver/" license="GPL-2" depends=('gtk+2' 'guile' 'libgeda>=$pkgver') groups=('xapps-extra' 'geda-suite') @@ -24,14 +24,14 @@ Fconfopts="${Fconfopts[@]} --disable-dependency-tracking \ --with-doc-dir=$Fprefix/share/doc/$pkgname \ --with-pcbconfdir=$Fprefix/share/pcb \ --with-pcbm4dir=$Fprefix/share/pcb/m4" -sha1sums=('fb84d8b72c3ba2f463873838447877f1ed5d2a4b' \ - '44bbcb10ff582e5728244aa7099f95b0e8ec7e9d' \ - 'f4261529f3d3f287e7dd9da3def9ce81ed64b87e' \ - 'd87f3218b52ec18171a6ffffea5ddd6947f4f589' \ - '3b63f7ae7fd9f84bb790dffe053814d03e42ad11' \ - '9140fd1e9419aea50b20dddec314fe3c08560d5d' \ - 'a616a29545b09eb850172b034dd735c2dda017b8' \ - '0ec4f632424c46a5f0a10135349f34e57f9158c3') +sha1sums=('ee230f61ed4330e1d63062cace4e03612adb2110' \ + '768ddc8673cd7c7a8a2574ef3bea762a21934258' \ + '62b0f2adce0e6fc94da903e9dc9c3197948459d1' \ + '0989d5b4b8bb219c3cdb657d6d4f26a4ce7c7da8' \ + '4f6b67b0f9d7088716fe069fe4c098e37a448089' \ + 'b8e95b020f5ab8e5c206fb52a8afaf92cbde516b' \ + '486272aef5d9b103997600fa18282af7328e9c42' \ + '378488e89a7769356857f9275bea9d6b07615386') build() { From priyank at frugalware.org Sat Sep 8 14:34:37 2007 From: priyank at frugalware.org (Priyank) Date: Sat Sep 8 14:34:39 2007 Subject: [Frugalware-git] gfpm: gfpm-progress: fix a runtime warning Message-ID: <20070908123437.DBBAE13A4154@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gfpm.git;a=commitdiff;h=b340c1040620b2e6fdb02c907de67e12db7c8fa1 commit b340c1040620b2e6fdb02c907de67e12db7c8fa1 Author: Priyank Date: Sat Sep 8 18:02:59 2007 +0530 gfpm-progress: fix a runtime warning diff --git a/src/gfpm-progress.c b/src/gfpm-progress.c index c46439e..ffc3252 100644 --- a/src/gfpm-progress.c +++ b/src/gfpm-progress.c @@ -85,6 +85,7 @@ gfpm_progress_init (void) NULL); gtk_window_set_default_size (GTK_WINDOW(progresswindow), 350, 140); gtk_window_resize (GTK_WINDOW(progresswindow), 350, 140); + buffer = gtk_text_view_get_buffer (GTK_TEXT_VIEW(progress_txtvw)); return; } @@ -126,7 +127,6 @@ cb_gfpm_details_button_toggled (GtkWidget *button, gpointer data) static void gfpm_progress_textview_reset (void) { - buffer = gtk_text_view_get_buffer (GTK_TEXT_VIEW(progress_txtvw)); gtk_text_buffer_set_text (buffer, "", 0); gtk_text_buffer_get_iter_at_offset (buffer, &t_iter, 0); From priyank at frugalware.org Sat Sep 8 14:49:56 2007 From: priyank at frugalware.org (Priyank) Date: Sat Sep 8 14:49:57 2007 Subject: [Frugalware-git] gfpm: gfpm-progress: some fixes Message-ID: <20070908124956.8245113A4154@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gfpm.git;a=commitdiff;h=8179105d2bbb72b3d260e9f213028f896ddf2a54 commit 8179105d2bbb72b3d260e9f213028f896ddf2a54 Author: Priyank Date: Sat Sep 8 18:18:16 2007 +0530 gfpm-progress: some fixes * reset the textview on progress_init * reset the textview also when a dialog is hidden (i.e. at the end of every operation) and not when the dialog is showed. * minor code fixes diff --git a/src/gfpm-progress.c b/src/gfpm-progress.c index ffc3252..85a30a1 100644 --- a/src/gfpm-progress.c +++ b/src/gfpm-progress.c @@ -53,6 +53,9 @@ int xferred1; struct timeval t0, t; char reponame[PM_DLFNM_LEN+1]; +static void gfpm_progress_textview_reset (void); + +/* callbacks */ static void cb_gfpm_close_button_clicked (GtkWidget *button, gpointer data); static void cb_gfpm_details_button_toggled (GtkWidget *button, gpointer data); @@ -85,7 +88,7 @@ gfpm_progress_init (void) NULL); gtk_window_set_default_size (GTK_WINDOW(progresswindow), 350, 140); gtk_window_resize (GTK_WINDOW(progresswindow), 350, 140); - buffer = gtk_text_view_get_buffer (GTK_TEXT_VIEW(progress_txtvw)); + gfpm_progress_textview_reset (); return; } @@ -127,6 +130,7 @@ cb_gfpm_details_button_toggled (GtkWidget *button, gpointer data) static void gfpm_progress_textview_reset (void) { + buffer = gtk_text_view_get_buffer (GTK_TEXT_VIEW(progress_txtvw)); gtk_text_buffer_set_text (buffer, "", 0); gtk_text_buffer_get_iter_at_offset (buffer, &t_iter, 0); @@ -138,16 +142,16 @@ gfpm_progress_show (gboolean show) { if (show == TRUE) { - /* reset dialog attributes before showing */ - gfpm_progress_textview_reset (); - gtk_label_set_text (GTK_LABEL(sub_label), ""); - gtk_label_set_text (GTK_LABEL(main_label), ""); - + gtk_widget_hide (details_scroll); gtk_widget_show (progresswindow); } else { gtk_widget_hide (progresswindow); + /* reset dialog attributes before showing */ + gfpm_progress_textview_reset (); + gtk_label_set_text (GTK_LABEL(sub_label), ""); + gtk_label_set_text (GTK_LABEL(main_label), ""); } return; From vmiklos at frugalware.org Sat Sep 8 17:54:25 2007 From: vmiklos at frugalware.org (VMiklos) Date: Sat Sep 8 17:54:32 2007 Subject: [Frugalware-git] bmf: mplayer-1.0rc1-9bmf2-i686 Message-ID: <20070908155425.1CB8C13A42D0@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=bmf.git;a=commitdiff;h=2e54e4079d32357e041fb32fbc83ff7d5f5a8b41 commit 2e54e4079d32357e041fb32fbc83ff7d5f5a8b41 Author: VMiklos Date: Sat Sep 8 17:53:53 2007 +0200 mplayer-1.0rc1-9bmf2-i686 rebuild using --enable-debug add nostrip to options() diff --git a/source/xapps/mplayer/FrugalBuild b/source/xapps/mplayer/FrugalBuild index bf10e97..0157ce2 100644 --- a/source/xapps/mplayer/FrugalBuild +++ b/source/xapps/mplayer/FrugalBuild @@ -4,7 +4,7 @@ pkgname=mplayer pkgver=1.0rc1 pkgextraver= -pkgrel=9bmf1 +pkgrel=9bmf2 pkgdesc="The Movie Player" url="http://www.mplayerhq.hu/" depends=('mesa' 'fontconfig' 'libstdc++' 'libdv' 'termcap' 'libjpeg' 'libmad' \ @@ -15,7 +15,7 @@ depends=('mesa' 'fontconfig' 'libstdc++' 'libdv' 'termcap' 'libjpeg' 'libmad' \ groups=('xapps') backup=('etc/mplayer/mplayer.conf') archs=('i686' 'x86_64') -options=('scriptlet') +options=('scriptlet' 'nostrip') up2date="lynx -dump http://www.mplayerhq.hu/MPlayer/releases/|grep -v snapshot |Flasttarbz2" source=(http://www.mplayerhq.hu/MPlayer/releases/MPlayer-$pkgver$pkgextraver.tar.bz2 \ 00-$pkgname.conf.patch \ @@ -66,11 +66,14 @@ build() cd libavcodec/amrwb_float unzip -q $Fsrcdir/26204-510_ANSI-C_source_code.zip cd - - Fmake --confdir=/etc/mplayer --enable-gui --language=all \ + Fconf --confdir=/etc/mplayer --enable-gui --language=all \ --enable-runtime-cpudetection --enable-liblzo \ --enable-live --with-livelibdir=/usr/lib/live \ --enable-largefiles --enable-mga --enable-xmga \ - --enable-tdfxfb --disable-vidix-internal --enable-dvdnav + --enable-tdfxfb --disable-vidix-internal --enable-dvdnav \ + --enable-debug + Fsed '^\(OPTFLAGS = .*\)' '\1 -fomit-frame-pointer' config.mak + make || Fdie make DESTDIR=$Fdestdir install || Fdie Fmkdir /usr/share/doc/$pkgname-$pkgver mv DOCS/* $Fdestdir/usr/share/doc/$pkgname-$pkgver/ From vmiklos at frugalware.org Sat Sep 8 18:02:07 2007 From: vmiklos at frugalware.org (VMiklos) Date: Sat Sep 8 18:02:08 2007 Subject: [Frugalware-git] bmf: mplayer-1.0rc1-9bmf2-i686 Message-ID: <20070908160207.6549213A42D0@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=bmf.git;a=commitdiff;h=216b2659fdf151e974f2969351309446eaa90ee5 commit 216b2659fdf151e974f2969351309446eaa90ee5 Author: VMiklos Date: Sat Sep 8 18:01:47 2007 +0200 mplayer-1.0rc1-9bmf2-i686 forgot to add a missing patch diff --git a/source/xapps/mplayer/mplayer-1.0pre7-lzo2.patch.bz2 b/source/xapps/mplayer/mplayer-1.0pre7-lzo2.patch.bz2 new file mode 100644 index 0000000..ce765af Binary files /dev/null and b/source/xapps/mplayer/mplayer-1.0pre7-lzo2.patch.bz2 differ From vmiklos at frugalware.org Sat Sep 8 18:32:05 2007 From: vmiklos at frugalware.org (VMiklos) Date: Sat Sep 8 18:32:07 2007 Subject: [Frugalware-git] frugalware-current: devtodo-0.1.20-1-i686 Message-ID: <20070908163205.A330513A42D0@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=0ed8df7272f038b2ccfac04c533d56c969d040d5 commit 0ed8df7272f038b2ccfac04c533d56c969d040d5 Author: VMiklos Date: Sat Sep 8 18:31:32 2007 +0200 devtodo-0.1.20-1-i686 version bump removed no longer needed -gcc4.diff diff --git a/source/apps-extra/devtodo/FrugalBuild b/source/apps-extra/devtodo/FrugalBuild index c324b28..48928ac 100644 --- a/source/apps-extra/devtodo/FrugalBuild +++ b/source/apps-extra/devtodo/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: VMiklos pkgname=devtodo -pkgver=0.1.19 +pkgver=0.1.20 pkgrel=1 pkgdesc="A nice command line todo list for developers" url="http://swapoff.org/DevTodo" @@ -10,10 +10,8 @@ depends=('libstdc++' 'readline') groups=('apps-extra') archs=('i686' 'x86_64') up2date="lynx -dump http://swapoff.org/DevTodo | grep 'http.*tar\.gz$' | sed -n 's/.*devtodo-\([0-9\.]\+\)\.tar\.gz.*/\1/;1 p'" -source=(http://swapoff.org/files/$pkgname/$pkgname-$pkgver.tar.gz \ - $pkgname-$pkgver-gcc4.diff) -sha1sums=('b96fff2e2efe32699fb3cd57e72d2d133735cf16' \ - 'bd3f56dd1e266f7ee1a8c6f7912547ed8a65557c') +source=(http://swapoff.org/files/$pkgname/$pkgname-$pkgver.tar.gz) +sha1sums=('003067a12139d712dbb3706069e0950a93ecaaf4') build() { @@ -21,4 +19,4 @@ build() Fdocrel QuickStart doc/scripts.sh doc/scripts.tcsh doc/todorc.example } -# optimalization OK +# optimization OK diff --git a/source/apps-extra/devtodo/devtodo-0.1.19-gcc4.diff b/source/apps-extra/devtodo/devtodo-0.1.19-gcc4.diff deleted file mode 100644 index e0a5c9a..0000000 --- a/source/apps-extra/devtodo/devtodo-0.1.19-gcc4.diff +++ /dev/null @@ -1,11 +0,0 @@ ---- devtodo-0.1.19.orig/src/Todo.h 2005-06-06 12:15:58.000000000 -0400 -+++ devtodo-0.1.19/src/Todo.h 2005-06-06 12:13:41.000000000 -0400 -@@ -14,6 +14,8 @@ - 01/02/01 Initial creation - */ - -+class TodoDB; -+ - class Todo { - public : - friend class TodoDB; From krics at linuxforum.hu Sat Sep 8 18:33:58 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sat Sep 8 18:34:00 2007 Subject: [Frugalware-git] frugalware-current: libgsf-1.14.7-1-x86_64 Message-ID: <20070908163358.C1CF113A42D0@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=3624e2766b63043ce6a494c2396044c109236a77 commit 3624e2766b63043ce6a494c2396044c109236a77 Author: Christian Hamar alias krix Date: Sat Sep 8 18:33:13 2007 +0200 libgsf-1.14.7-1-x86_64 * Version bump diff --git a/source/lib/libgsf/FrugalBuild b/source/lib/libgsf/FrugalBuild index 8bb3745..04957e5 100644 --- a/source/lib/libgsf/FrugalBuild +++ b/source/lib/libgsf/FrugalBuild @@ -3,8 +3,8 @@ # Contributor: Miklos Nemeth pkgname=libgsf -pkgver=1.14.5 -pkgrel=2 +pkgver=1.14.7 +pkgrel=1 pkgdesc="A library for reading and writing structured files (eg MS OLE and Zip)" url="http://www.gnome.org/" depends=('libxml2' 'glib2' 'bzip2') @@ -12,7 +12,7 @@ makedepends=('gtk-doc' 'perl-xml' 'pygtk' 'gnome-vfs>=2.16.2' 'libbonobo' 'gconf groups=('lib') archs=('i686' 'x86_64') Finclude gnome python -sha1sums=('92b2f1f5e2d9a5b940b9a387928785f1e93220a4') +sha1sums=('9950e42db36007591af2d5783bdf68dc73f47d1b') subpkgs=('libgsf-gnome') subdescs=('GNOME specific extensions to libgsf') From krics at linuxforum.hu Sat Sep 8 18:47:20 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sat Sep 8 18:47:21 2007 Subject: [Frugalware-git] frugalware-current: sylpheed-2.4.5-1-x86_64 Message-ID: <20070908164720.5504013A42D0@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=a8f3daa79f7b849172320b2710ed62db67ec8b5f commit a8f3daa79f7b849172320b2710ed62db67ec8b5f Author: Christian Hamar alias krix Date: Sat Sep 8 18:44:07 2007 +0200 sylpheed-2.4.5-1-x86_64 * version bump diff --git a/source/xapps-extra/sylpheed/FrugalBuild b/source/xapps-extra/sylpheed/FrugalBuild index 5a5db8f..ea9c09e 100644 --- a/source/xapps-extra/sylpheed/FrugalBuild +++ b/source/xapps-extra/sylpheed/FrugalBuild @@ -3,7 +3,7 @@ # Old Maintainer: Bence Nagy pkgname=sylpheed -pkgver=2.4.4 +pkgver=2.4.5 branch=2.4 pkgrel=1 pkgdesc="A GTK+ based, lightweight, and fast email client" @@ -22,5 +22,5 @@ build() { Ffilerel /usr/share/applications/sylpheed.desktop } -sha1sums=('acc22aa00235f41548f3571dfa1e4b7ddb79bf4f') +sha1sums=('913484925cf6e3982dd8ea50df71e2a30180af50') # optimization OK From vmiklos at frugalware.org Sat Sep 8 18:52:44 2007 From: vmiklos at frugalware.org (VMiklos) Date: Sat Sep 8 18:52:45 2007 Subject: [Frugalware-git] frugalware-current: gzip-1.3.12-2-i686 Message-ID: <20070908165244.7258F13A42D0@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=333dd7e83550e07ff85db9613616174e6a4d7a33 commit 333dd7e83550e07ff85db9613616174e6a4d7a33 Author: VMiklos Date: Sat Sep 8 18:52:11 2007 +0200 gzip-1.3.12-2-i686 gzip no longer recognizes hardlinks. handle this closes #2397 diff --git a/source/base/gzip/FrugalBuild b/source/base/gzip/FrugalBuild index ab172a6..2fbc305 100644 --- a/source/base/gzip/FrugalBuild +++ b/source/base/gzip/FrugalBuild @@ -4,7 +4,7 @@ pkgname=gzip pkgver=1.3.12 -pkgrel=1 +pkgrel=2 pkgdesc="A file compression utility" url="http://www.gzip.org" depends=('bash') @@ -18,14 +18,13 @@ signatures=($source.sig '') build() { - Fmkdir /bin /usr/bin Fbuild - Fmv /usr/bin/gzip /bin/ - Frm /usr/bin/{gunzip,zcat} - Fln gzip /bin/gunzip - Fln gzip /bin/zcat + Fmkdir /bin + for i in gunzip gzip uncompress zcat + do + Fmv /usr/bin/$i /bin + done Fln gzip /bin/compress - Fln gunzip /bin/uncompress } # optimization OK From krics at linuxforum.hu Sat Sep 8 18:55:43 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sat Sep 8 18:55:46 2007 Subject: [Frugalware-git] frugalware-current: claws-mail-3.0.0-1-x86_64 Message-ID: <20070908165543.6DBAB13A42D0@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=962efed7414a2d97c6f5c97b240833b12b764d1b commit 962efed7414a2d97c6f5c97b240833b12b764d1b Author: Christian Hamar alias krix Date: Sat Sep 8 18:53:49 2007 +0200 claws-mail-3.0.0-1-x86_64 * Version bump diff --git a/source/xapps-extra/claws-mail/FrugalBuild b/source/xapps-extra/claws-mail/FrugalBuild index 7d08e5a..11eec14 100644 --- a/source/xapps-extra/claws-mail/FrugalBuild +++ b/source/xapps-extra/claws-mail/FrugalBuild @@ -3,8 +3,8 @@ # Contributor: Bence Nagy pkgname=claws-mail -pkgver=2.10.0 -pkgrel=2 +pkgver=3.0.0 +pkgrel=1 pkgdesc="The extended version of Sylpheed, a GTK+ based, lightweight, and fast e-mail client" groups=('xapps-extra') archs=('i686' 'x86_64') @@ -39,5 +39,5 @@ build() { Ffilerel claws-mail.desktop /usr/share/applications/claws-mail.desktop } -sha1sums=('0ee38ec2dd0c37941b0bcc4af7ab441ec432c63c') +sha1sums=('c585d4380f7ed65088262eb9d880c15273a8cac7') # optimization OK From vmiklos at frugalware.org Sat Sep 8 19:37:08 2007 From: vmiklos at frugalware.org (VMiklos) Date: Sat Sep 8 19:37:10 2007 Subject: [Frugalware-git] xorg73: include/xorg.sh: 7.2 -> 7.3 Message-ID: <20070908173708.F066913A42DF@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=489d756b509f79f0f83c749a507485b1de66e08d commit 489d756b509f79f0f83c749a507485b1de66e08d Author: VMiklos Date: Sat Sep 8 19:36:35 2007 +0200 include/xorg.sh: 7.2 -> 7.3 diff --git a/source/include/xorg.sh b/source/include/xorg.sh index 3df4d48..f8352c9 100644 --- a/source/include/xorg.sh +++ b/source/include/xorg.sh @@ -21,7 +21,6 @@ # archs=('i686' 'x86_64') # depends=('xorg-server') # makedepends=('xproto' 'randrproto' 'renderproto') -# _F_xorg_nr=1 # Finclude xorg # sha1sums=('349572d92ca6cd2c8f370105c4bffc70b7034bf3') # -------------------------------------------------- @@ -30,9 +29,6 @@ # * _F_xorg_name (defaults to $pkgname): if you want to use a custom package # name (for example the upstream name contains uppercase letters) then use this # to declare the real name -# * _F_xorg_nr: X, where the xorg version of the package is 7.X (choose the -# largest possible, sometimes packages are not available in the latest -# directory) ### if [ -z "$_F_xorg_name" ]; then _F_xorg_name=$pkgname @@ -63,26 +59,14 @@ if [[ $pkgname =~ ^xf86-input- ]]; then makedepends=('inputproto' 'randrproto') fi url="http://xorg.freedesktop.org" -if [ -n "$_F_xorg_nr" ]; then - _F_xorg_release_dir="X11R7.2/src" -else - _F_xorg_release_dir="individual" -fi +_F_xorg_release_dir="X11R7.3/src" _F_xorg_dir=`echo ${groups[$((${#groups[@]}-1))]}|sed 's/xorg-\(.*\)/\1/;s/s$//'` _F_xorg_version="X11R7." [ "$_F_xorg_name" = "xorg-server" ] && _F_xorg_dir="xserver" _F_xorg_url="$url/releases/$_F_xorg_release_dir/$_F_xorg_dir/" license="GPL2" -if [ -n "$_F_xorg_nr" ]; then - up2date="lynx -dump $_F_xorg_url | grep '$_F_xorg_name-${_F_xorg_version}$_F_xorg_nr-\(.*\).tar.bz2'|sed -n 's/.*$_F_xorg_name-$_F_xorg_version$_F_xorg_nr-\(.*\)\.t.*/\1/;$ p'" - source=($_F_xorg_url/$_F_xorg_name-$_F_xorg_version$_F_xorg_nr-$pkgver.tar.bz2) - if [ -z "$_F_cd_path" ]; then - _F_cd_path="$_F_xorg_name-$_F_xorg_version$_F_xorg_nr-$pkgver" - fi -else - up2date="lynx -dump $_F_xorg_url | grep '$_F_xorg_name-\(.*\).tar.bz2'|sed -n 's/.*$_F_xorg_name-\(.*\)\.t.*/\1/;$ p'" - source=($_F_xorg_url/$_F_xorg_name-$pkgver.tar.bz2) - if [ -z "$_F_cd_path" ]; then - _F_cd_path="$_F_xorg_name-$pkgver" - fi +up2date="lynx -dump $_F_xorg_url | grep '$_F_xorg_name-\(.*\).tar.bz2'|sed -n 's/.*$_F_xorg_name-\(.*\)\.t.*/\1/;$ p'" +source=($_F_xorg_url/$_F_xorg_name-$pkgver.tar.bz2) +if [ -z "$_F_cd_path" ]; then + _F_cd_path="$_F_xorg_name-$pkgver" fi From krics at linuxforum.hu Sat Sep 8 19:42:38 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sat Sep 8 19:42:40 2007 Subject: [Frugalware-git] xorg73: libxi-1.1.1-1-x86_64 Message-ID: <20070908174238.DBF4813A42DF@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=85d9ed65e09ef3246e65bcce97d7e0d9eda091cc commit 85d9ed65e09ef3246e65bcce97d7e0d9eda091cc Author: Christian Hamar alias krix Date: Sat Sep 8 19:42:26 2007 +0200 libxi-1.1.1-1-x86_64 * Remove manual up2date and source, points to individual diff --git a/source/x11/libxi/FrugalBuild b/source/x11/libxi/FrugalBuild index b3f013e..8389a03 100644 --- a/source/x11/libxi/FrugalBuild +++ b/source/x11/libxi/FrugalBuild @@ -12,9 +12,6 @@ archs=('i686' 'x86_64') depends=('libx11>=1.1.2' 'libxext' 'inputproto') makedepends=('pkgconfig' 'xproto') Finclude xorg -# to be removed on next 'stable not mixed bump' -up2date="lynx -dump http://xorg.freedesktop.org/releases/individual/lib/|grep $_F_xorg_name|Fsort|Flasttarbz2" -source="http://xorg.freedesktop.org/releases/individual/lib/$_F_xorg_name-$pkgver.tar.bz2" _F_cd_path="$_F_xorg_name-$pkgver" sha1sums=('74e546ac1db4382d964edda9d539844085035250') From krics at linuxforum.hu Sat Sep 8 19:43:51 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sat Sep 8 19:43:55 2007 Subject: [Frugalware-git] xorg73: libx11-1.1.2-1-x86_64 Message-ID: <20070908174351.CB1ED13A42DF@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=f953d8a376a996f9985888488fffd968420fd866 commit f953d8a376a996f9985888488fffd968420fd866 Author: Christian Hamar alias krix Date: Sat Sep 8 19:43:39 2007 +0200 libx11-1.1.2-1-x86_64 * Remove manual up2date line (points to individual) diff --git a/source/x11/libx11/FrugalBuild b/source/x11/libx11/FrugalBuild index b6066d7..137816f 100644 --- a/source/x11/libx11/FrugalBuild +++ b/source/x11/libx11/FrugalBuild @@ -12,9 +12,7 @@ archs=('i686' 'x86_64') depends=('xproto' 'libxdmcp' 'xtrans' 'kbproto' 'libxau' 'libxcb') makedepends=('pkgconfig' 'xf86bigfontproto' 'bigreqsproto' \ 'xextproto' 'xcmiscproto' 'inputproto' 'util-macros') -#_F_xorg_nr=2 Finclude xorg -up2date="lynx -dump '${_F_xorg_url}?C=M;O=A' | grep '$_F_xorg_name-\(.*\).tar.bz2' | Flasttarbz2" Fconfopts="$Fconfopts --enable-ipv6 --enable-xlocaledir --enable-xlocale --with-xcb=yes" sha1sums=('7190d36389eb7903831cd9541d919f55ac5098e9') From krics at linuxforum.hu Sat Sep 8 19:45:01 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sat Sep 8 19:45:03 2007 Subject: [Frugalware-git] xorg73: inputproto-1.4-1-x86_64 Message-ID: <20070908174501.D2A9213A42DF@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=15b1692c261056037d9dc8450219e6685e7d7d4f commit 15b1692c261056037d9dc8450219e6685e7d7d4f Author: Christian Hamar alias krix Date: Sat Sep 8 19:44:50 2007 +0200 inputproto-1.4-1-x86_64 * Remove manual up2date and source diff --git a/source/x11/inputproto/FrugalBuild b/source/x11/inputproto/FrugalBuild index d499fce..69ffbcc 100644 --- a/source/x11/inputproto/FrugalBuild +++ b/source/x11/inputproto/FrugalBuild @@ -10,9 +10,6 @@ archs=('i686' 'x86_64') depends=() makedepends=('pkgconfig') Finclude xorg -# to be removed on next 'stable not mixed bump' -up2date="lynx -dump http://xorg.freedesktop.org/releases/individual/proto/|grep $pkgname|Flasttarbz2" -source="http://xorg.freedesktop.org/releases/individual/proto/$pkgname-$pkgver.tar.bz2" _F_cd_path="$pkgname-$pkgver" sha1sums=('020e0bde3719eb28b04add396ca2532b6c5c0082') From krics at linuxforum.hu Sat Sep 8 19:47:38 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sat Sep 8 19:47:39 2007 Subject: [Frugalware-git] xorg73: Removed 5 up2date line for x11 packages Message-ID: <20070908174738.2A4EE13A42DF@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=df553348458d6e25c8800e1ddef2684bd187cdfc commit df553348458d6e25c8800e1ddef2684bd187cdfc Author: Christian Hamar alias krix Date: Sat Sep 8 19:47:26 2007 +0200 Removed 5 up2date line for x11 packages diff --git a/source/x11/mkcomposecache/FrugalBuild b/source/x11/mkcomposecache/FrugalBuild index 6374f72..4affe35 100644 --- a/source/x11/mkcomposecache/FrugalBuild +++ b/source/x11/mkcomposecache/FrugalBuild @@ -9,9 +9,6 @@ groups=('x11' 'xorg-core' 'xorg-apps') archs=('i686' 'x86_64') depends=('libx11') Finclude xorg -# to be removed on next 'stable not mixed bump' -up2date="lynx -dump http://xorg.freedesktop.org/releases/individual/app/|grep $pkgname|Flasttarbz2" -source="http://xorg.freedesktop.org/releases/individual/app/$pkgname-$pkgver.tar.bz2" _F_cd_path="$pkgname-$pkgver" sha1sums=('fcca7f079e42f54f43c9e5a1781acf1ae31c9862') diff --git a/source/x11/rendercheck/FrugalBuild b/source/x11/rendercheck/FrugalBuild index 2273183..305a707 100644 --- a/source/x11/rendercheck/FrugalBuild +++ b/source/x11/rendercheck/FrugalBuild @@ -11,9 +11,6 @@ archs=('i686' 'x86_64') depends=('libxrender') makedepends=('inputproto') Finclude xorg -# to be removed on next 'stable not mixed bump' -up2date="lynx -dump http://xorg.freedesktop.org/releases/individual/app/|grep $pkgname|Flasttarbz2" -source="http://xorg.freedesktop.org/releases/individual/app/$pkgname-$pkgver.tar.bz2" _F_cd_path="$pkgname-$pkgver" sha1sums=('bc01be694a2100df8cb976d4a7fa273387daabea') diff --git a/source/x11/xf86-input-elographics/FrugalBuild b/source/x11/xf86-input-elographics/FrugalBuild index 53f6524..11030fc 100644 --- a/source/x11/xf86-input-elographics/FrugalBuild +++ b/source/x11/xf86-input-elographics/FrugalBuild @@ -4,9 +4,6 @@ pkgname=xf86-input-elographics pkgver=1.1.0 Finclude xorg -# to be removed on next 'stable not mixed bump' -up2date="lynx -dump http://xorg.freedesktop.org/releases/individual/driver/|grep $pkgname|Flasttarbz2" -source="http://xorg.freedesktop.org/releases/individual/driver/$pkgname-$pkgver.tar.bz2" _F_cd_path="$pkgname-$pkgver" # optimization OK diff --git a/source/x11/xf86-input-evdev/FrugalBuild b/source/x11/xf86-input-evdev/FrugalBuild index 187a6cc..c4596d0 100644 --- a/source/x11/xf86-input-evdev/FrugalBuild +++ b/source/x11/xf86-input-evdev/FrugalBuild @@ -5,9 +5,6 @@ pkgname=xf86-input-evdev pkgver=1.1.5 pkgrel=1 Finclude xorg -# to be removed on next 'stable not mixed bump' -up2date="lynx -dump http://xorg.freedesktop.org/releases/individual/driver/|grep $pkgname|Flasttarbz2" -source="http://xorg.freedesktop.org/releases/individual/driver/$pkgname-$pkgver.tar.bz2" _F_cd_path="$pkgname-$pkgver" sha1sums=('70650b58c69afdd0ef22e6c647944fc6b5b12e0f') # optimization OK diff --git a/source/x11/xf86-video-i810/FrugalBuild b/source/x11/xf86-video-i810/FrugalBuild index 4693730..98f727b 100644 --- a/source/x11/xf86-video-i810/FrugalBuild +++ b/source/x11/xf86-video-i810/FrugalBuild @@ -12,9 +12,6 @@ makedepends=('randrproto' 'renderproto' 'videoproto' 'xf86driproto' \ 'xf86dgaproto' 'glproto' 'xineramaproto') conflicts=('xf86-video-intel') Finclude xorg -# to be removed on next 'stable not mixed bump' -up2date="lynx -dump http://xorg.freedesktop.org/releases/individual/driver/|grep $pkgname|Flasttarbz2" -source="http://xorg.freedesktop.org/releases/individual/driver/$pkgname-$pkgver.tar.bz2" _F_cd_path="$pkgname-$pkgver" Fconfopts="$Fconfopts --enable-dri" From vmiklos at frugalware.org Sat Sep 8 19:56:30 2007 From: vmiklos at frugalware.org (VMiklos) Date: Sat Sep 8 19:56:31 2007 Subject: [Frugalware-git] xorg73: xorg.sh: new _F_xorg_ind variable to use the individual dir Message-ID: <20070908175630.7970C13A42DF@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=ef83fe6cc7cae351f595b4483202a9e038f43c26 commit ef83fe6cc7cae351f595b4483202a9e038f43c26 Author: VMiklos Date: Sat Sep 8 19:56:22 2007 +0200 xorg.sh: new _F_xorg_ind variable to use the individual dir as requested by krix diff --git a/source/include/xorg.sh b/source/include/xorg.sh index f8352c9..80145b7 100644 --- a/source/include/xorg.sh +++ b/source/include/xorg.sh @@ -29,6 +29,8 @@ # * _F_xorg_name (defaults to $pkgname): if you want to use a custom package # name (for example the upstream name contains uppercase letters) then use this # to declare the real name +# * _F_xorg_ind (defaults to ""): if set, use the individual folder, not the +# release one ### if [ -z "$_F_xorg_name" ]; then _F_xorg_name=$pkgname @@ -59,7 +61,11 @@ if [[ $pkgname =~ ^xf86-input- ]]; then makedepends=('inputproto' 'randrproto') fi url="http://xorg.freedesktop.org" -_F_xorg_release_dir="X11R7.3/src" +if [ -z "$_F_xorg_ind" ]; then + _F_xorg_release_dir="X11R7.3/src" +else + _F_xorg_release_dir="individual" +fi _F_xorg_dir=`echo ${groups[$((${#groups[@]}-1))]}|sed 's/xorg-\(.*\)/\1/;s/s$//'` _F_xorg_version="X11R7." [ "$_F_xorg_name" = "xorg-server" ] && _F_xorg_dir="xserver" From krics at linuxforum.hu Sat Sep 8 20:04:23 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sat Sep 8 20:04:25 2007 Subject: [Frugalware-git] xorg73: First bunch of packs which need from individual Message-ID: <20070908180423.9BA8D13A42E3@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=cbbf9a86e92678aeeb78a9151d6797ee837d370b commit cbbf9a86e92678aeeb78a9151d6797ee837d370b Author: Christian Hamar alias krix Date: Sat Sep 8 20:04:07 2007 +0200 First bunch of packs which need from individual diff --git a/source/x11/bitmap/FrugalBuild b/source/x11/bitmap/FrugalBuild index 5a76ec9..a58e011 100644 --- a/source/x11/bitmap/FrugalBuild +++ b/source/x11/bitmap/FrugalBuild @@ -10,7 +10,7 @@ groups=('x11' 'xorg-core' 'xorg-apps') archs=('i686' 'x86_64') depends=('libx11' 'libxaw' 'libxmu' 'xbitmaps') makedepends=('inputproto') -_F_xorg_nr=1 +_F_xorg_ind=1 Finclude xorg sha1sums=('3720cec74f8e62371ac083f89a0a76ed90c08278') diff --git a/source/x11/editres/FrugalBuild b/source/x11/editres/FrugalBuild index ca59c0c..9b91967 100644 --- a/source/x11/editres/FrugalBuild +++ b/source/x11/editres/FrugalBuild @@ -10,7 +10,7 @@ groups=('x11' 'xorg-core' 'xorg-apps') archs=('i686' 'x86_64') depends=('libx11' 'libxt' 'libxaw' 'libxmu' 'libxp') makedepends=('inputproto') -_F_xorg_nr=2 +_F_xorg_ind=1 Finclude xorg Fconfopts="$Fconfopts --enable-xprint" makedepends=('inputproto') diff --git a/source/x11/libxdamage/FrugalBuild b/source/x11/libxdamage/FrugalBuild index 87f0c9d..d49a1a5 100644 --- a/source/x11/libxdamage/FrugalBuild +++ b/source/x11/libxdamage/FrugalBuild @@ -11,7 +11,7 @@ groups=('x11' 'xorg-core' 'xorg-libs') archs=('i686' 'x86_64') depends=('libx11>=1.1.1' 'libxfixes>=4.0.3' 'damageproto' 'xproto') makedepends=('pkgconfig' 'inputproto') -_F_xorg_nr=2 +_F_xorg_ind=1 Finclude xorg sha1sums=('7bed679e1ecf74421fdf2feb6d153298348d9629') diff --git a/source/x11/libxext/FrugalBuild b/source/x11/libxext/FrugalBuild index 799f11a..dff4dd8 100644 --- a/source/x11/libxext/FrugalBuild +++ b/source/x11/libxext/FrugalBuild @@ -11,7 +11,7 @@ groups=('x11' 'xorg-core' 'xorg-libs') archs=('i686' 'x86_64') depends=('libx11>=1.0.99.1' 'xextproto') makedepends=('pkgconfig' 'xproto' 'inputproto') -_F_xorg_nr=2 +_F_xorg_ind=1 Finclude xorg sha1sums=('29f07b73ab9688855c6a5f046ca07e021a634095') diff --git a/source/x11/libxt/FrugalBuild b/source/x11/libxt/FrugalBuild index 528f000..44176a7 100644 --- a/source/x11/libxt/FrugalBuild +++ b/source/x11/libxt/FrugalBuild @@ -11,7 +11,7 @@ groups=('x11' 'xorg-core' 'xorg-libs') archs=('i686' 'x86_64') depends=('libx11>=1.1.1' 'libsm>=1.0.2' 'xproto') makedepends=('pkgconfig' 'inputproto') -_F_xorg_nr=2 +_F_xorg_ind=1 Finclude xorg sha1sums=('3a7d7d390214876c925d5226ef3949b6c5bad6ce') diff --git a/source/x11/xdpyinfo/FrugalBuild b/source/x11/xdpyinfo/FrugalBuild index ab79c1e..40fc845 100644 --- a/source/x11/xdpyinfo/FrugalBuild +++ b/source/x11/xdpyinfo/FrugalBuild @@ -9,7 +9,7 @@ url="http://xorg.freedesktop.org" groups=('x11' 'xorg-core' 'xorg-apps') archs=('i686' 'x86_64') depends=('libxext' 'libx11' 'libxtst' 'libxxf86vm' 'libxxf86dga' 'libxxf86misc' 'libxi' 'libxrender' 'libxinerama' 'libdmx' 'libxp') -_F_xorg_nr=0 +_F_xorg_ind=1 Finclude xorg # optimalization OK diff --git a/source/x11/xev/FrugalBuild b/source/x11/xev/FrugalBuild index 8211896..725412e 100644 --- a/source/x11/xev/FrugalBuild +++ b/source/x11/xev/FrugalBuild @@ -10,7 +10,7 @@ groups=('x11' 'xorg-core' 'xorg-apps') archs=('i686' 'x86_64') depends=('libx11') makedepends=('inputproto') -_F_xorg_nr=0 +_F_xorg_ind=1 Finclude xorg options=('force') diff --git a/source/x11/xf86-input-evdev/FrugalBuild b/source/x11/xf86-input-evdev/FrugalBuild index c4596d0..cfd59f1 100644 --- a/source/x11/xf86-input-evdev/FrugalBuild +++ b/source/x11/xf86-input-evdev/FrugalBuild @@ -4,6 +4,7 @@ pkgname=xf86-input-evdev pkgver=1.1.5 pkgrel=1 +_F_xorg_ind=1 Finclude xorg _F_cd_path="$pkgname-$pkgver" sha1sums=('70650b58c69afdd0ef22e6c647944fc6b5b12e0f') diff --git a/source/x11/xfontsel/FrugalBuild b/source/x11/xfontsel/FrugalBuild index d8c6f09..ff575b7 100644 --- a/source/x11/xfontsel/FrugalBuild +++ b/source/x11/xfontsel/FrugalBuild @@ -9,7 +9,7 @@ url="http://xorg.freedesktop.org" groups=('x11' 'xorg-core' 'xorg-apps') archs=('i686' 'x86_64') depends=('libx11' 'libxp' 'libxaw') -_F_xorg_nr=0 +_F_xorg_ind=1 Finclude xorg build() { diff --git a/source/x11/xlsfonts/FrugalBuild b/source/x11/xlsfonts/FrugalBuild index d1f2b7f..9072071 100644 --- a/source/x11/xlsfonts/FrugalBuild +++ b/source/x11/xlsfonts/FrugalBuild @@ -9,7 +9,7 @@ url="http://xorg.freedesktop.org" groups=('x11' 'xorg-core' 'xorg-apps') archs=('i686' 'x86_64') depends=('libx11') -_F_xorg_nr=0 +_F_xorg_ind=1 Finclude xorg # optimalization OK diff --git a/source/x11/xpr/FrugalBuild b/source/x11/xpr/FrugalBuild index 4d02228..a79750c 100644 --- a/source/x11/xpr/FrugalBuild +++ b/source/x11/xpr/FrugalBuild @@ -9,7 +9,7 @@ url="http://xorg.freedesktop.org" groups=('x11' 'xorg-core' 'xorg-apps') archs=('i686' 'x86_64') depends=('libx11' 'libxmu') -_F_xorg_nr=0 +_F_xorg_ind=1 Finclude xorg # optimalization OK diff --git a/source/x11/xproto/FrugalBuild b/source/x11/xproto/FrugalBuild index 80928d3..be682aa 100644 --- a/source/x11/xproto/FrugalBuild +++ b/source/x11/xproto/FrugalBuild @@ -10,6 +10,6 @@ groups=('x11' 'xorg-core' 'xorg-proto') depends=() archs=('i686' 'x86_64') makedepends=('pkgconfig') -_F_xorg_nr=2 +_F_xorg_ind=1 Finclude xorg sha1sums=('231b958de9b96f175f690a2abcefeb8307fa48af') diff --git a/source/x11/xsetpointer/FrugalBuild b/source/x11/xsetpointer/FrugalBuild index 275695e..ae78494 100644 --- a/source/x11/xsetpointer/FrugalBuild +++ b/source/x11/xsetpointer/FrugalBuild @@ -10,7 +10,7 @@ groups=('x11' 'xorg-core' 'xorg-apps') archs=('i686' 'x86_64') depends=('libx11' 'libxi') options=('force') -_F_xorg_nr=0 +_F_xorg_ind=1 Finclude xorg sha1sums=('67ec2bf63a693a9e3445af57d00ffc19306b2d9a') From krics at linuxforum.hu Sat Sep 8 20:11:28 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sat Sep 8 20:11:28 2007 Subject: [Frugalware-git] xorg73: xproto-7.0.11-1-x86_64 Message-ID: <20070908181128.2D42D13A42E6@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=57268053bf2ec5b05107f649475fdf0f5d295310 commit 57268053bf2ec5b05107f649475fdf0f5d295310 Author: Christian Hamar alias krix Date: Sat Sep 8 20:11:08 2007 +0200 xproto-7.0.11-1-x86_64 * Version bump diff --git a/source/x11/xproto/FrugalBuild b/source/x11/xproto/FrugalBuild index be682aa..81bc8c2 100644 --- a/source/x11/xproto/FrugalBuild +++ b/source/x11/xproto/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: Christian Hamar alias krix pkgname=xproto -pkgver=7.0.10 +pkgver=7.0.11 pkgrel=1 pkgdesc="X.Org xproto protocol headers" url="http://xorg.freedesktop.org" @@ -12,4 +12,4 @@ archs=('i686' 'x86_64') makedepends=('pkgconfig') _F_xorg_ind=1 Finclude xorg -sha1sums=('231b958de9b96f175f690a2abcefeb8307fa48af') +sha1sums=('61dd55a4fa98d256ce27c2824c0beec94613cee9') From krics at linuxforum.hu Sat Sep 8 20:13:32 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sat Sep 8 20:13:33 2007 Subject: [Frugalware-git] xorg73: compositeproto-0.4-1-x86_64 Message-ID: <20070908181332.0D4AA13A42E9@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=3a008f2717c8041d8a40f6712a09e30532c7e554 commit 3a008f2717c8041d8a40f6712a09e30532c7e554 Author: Christian Hamar alias krix Date: Sat Sep 8 20:13:11 2007 +0200 compositeproto-0.4-1-x86_64 * Version bump diff --git a/source/x11/compositeproto/FrugalBuild b/source/x11/compositeproto/FrugalBuild index 41e75ab..7e91c71 100644 --- a/source/x11/compositeproto/FrugalBuild +++ b/source/x11/compositeproto/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: Christian Hamar alias krix pkgname=compositeproto -pkgver=0.3.1 +pkgver=0.4 pkgrel=1 pkgdesc="X.Org Composite extension headers" url="http://xorg.freedesktop.org" @@ -10,6 +10,5 @@ groups=('x11' 'xorg-core' 'xorg-proto') archs=('i686' 'x86_64') depends=() makedepends=('pkgconfig') -_F_xorg_nr=1 Finclude xorg -sha1sums=('fc89dfc3f92628e437f2f45286d00e92530768a8') +sha1sums=('e555ee26cffb30d57fe60006b8f12c3807e399f5') From krics at linuxforum.hu Sat Sep 8 20:14:46 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sat Sep 8 20:14:48 2007 Subject: [Frugalware-git] xorg73: inputproto-1.4.2.1-1-x86_64 Message-ID: <20070908181446.DD7C513A42EC@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=e81d6e4a27f6460926823861aab1678a80c5326e commit e81d6e4a27f6460926823861aab1678a80c5326e Author: Christian Hamar alias krix Date: Sat Sep 8 20:14:22 2007 +0200 inputproto-1.4.2.1-1-x86_64 * Version bump diff --git a/source/x11/inputproto/FrugalBuild b/source/x11/inputproto/FrugalBuild index 69ffbcc..1106d12 100644 --- a/source/x11/inputproto/FrugalBuild +++ b/source/x11/inputproto/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: Christian Hamar alias krix pkgname=inputproto -pkgver=1.4 +pkgver=1.4.2.1 pkgrel=1 pkgdesc="X.org input extension headers" groups=('x11' 'xorg-core' 'xorg-proto') @@ -11,6 +11,6 @@ depends=() makedepends=('pkgconfig') Finclude xorg _F_cd_path="$pkgname-$pkgver" -sha1sums=('020e0bde3719eb28b04add396ca2532b6c5c0082') +sha1sums=('b2023ff507fb72b1434d13d913e1f4f0ad3c02ed') # optimalization OK From krics at linuxforum.hu Sat Sep 8 20:16:29 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sat Sep 8 20:16:30 2007 Subject: [Frugalware-git] xorg73: randrproto-1.2.1-1-x86_64 Message-ID: <20070908181629.6A1F313A42F0@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=6eb617d17ea9fed53424635516c85be329ac6103 commit 6eb617d17ea9fed53424635516c85be329ac6103 Author: Christian Hamar alias krix Date: Sat Sep 8 20:16:07 2007 +0200 randrproto-1.2.1-1-x86_64 * VErsion bump diff --git a/source/x11/randrproto/FrugalBuild b/source/x11/randrproto/FrugalBuild index 41dd266..18d9ea6 100644 --- a/source/x11/randrproto/FrugalBuild +++ b/source/x11/randrproto/FrugalBuild @@ -2,17 +2,12 @@ # Maintainer: Christian Hamar alias krix pkgname=randrproto -pkgver=1.1.2 +pkgver=1.2.1 pkgrel=1 pkgdesc="X.Org RANDR protocol headers" groups=('x11' 'xorg-core' 'xorg-proto') archs=('i686' 'x86_64') depends=() makedepends=('pkgconfig') -_F_xorg_nr=0 Finclude xorg -sha1sums=('77a4b0f1947e243fcc25e2645ab0da988fdd653e') - -# optimalization OK - -# vim: ft=sh +sha1sums=('f8698f76f23d856e1821339814a986b9d876d87d') From krics at linuxforum.hu Sat Sep 8 20:17:25 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sat Sep 8 20:17:26 2007 Subject: [Frugalware-git] xorg73: xf86dgaproto-2.0.3-1-x86_64 Message-ID: <20070908181725.4E92B13A42F3@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=a340192208341f4d1c05018cbd5b9c7174cbeb23 commit a340192208341f4d1c05018cbd5b9c7174cbeb23 Author: Christian Hamar alias krix Date: Sat Sep 8 20:17:07 2007 +0200 xf86dgaproto-2.0.3-1-x86_64 * Version bump diff --git a/source/x11/xf86dgaproto/FrugalBuild b/source/x11/xf86dgaproto/FrugalBuild index 73e5c64..b1b0606 100644 --- a/source/x11/xf86dgaproto/FrugalBuild +++ b/source/x11/xf86dgaproto/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: Christian Hamar alias krix pkgname=xf86dgaproto -pkgver=2.0.2 +pkgver=2.0.3 pkgrel=1 pkgdesc="X.Org XF86DGA extension headers" url="http://xorg.freedesktop.org" @@ -10,10 +10,5 @@ groups=('x11' 'xorg-core' 'xorg-proto') archs=('i686' 'x86_64') depends=() makedepends=('pkgconfig') -_F_xorg_nr=0 Finclude xorg -sha1sums=('ccd67b20d8c27552d39b1a711ba0b289e2810757') - -# optimalization OK - -# vim: ft=sh +sha1sums=('29848f51d906b12025dab55d42a53e8c2f96a3ef') From krics at linuxforum.hu Sat Sep 8 20:18:49 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sat Sep 8 20:18:51 2007 Subject: [Frugalware-git] xorg73: renderproto-0.9.3-1-x86_64 Message-ID: <20070908181849.D9D7B13A42F6@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=7aa8b319e38f10156463730a2da144b7a13f5a77 commit 7aa8b319e38f10156463730a2da144b7a13f5a77 Author: Christian Hamar alias krix Date: Sat Sep 8 20:18:27 2007 +0200 renderproto-0.9.3-1-x86_64 * Version bump diff --git a/source/x11/renderproto/FrugalBuild b/source/x11/renderproto/FrugalBuild index cba943f..2041a1d 100644 --- a/source/x11/renderproto/FrugalBuild +++ b/source/x11/renderproto/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: Christian Hamar alias krix pkgname=renderproto -pkgver=0.9.2 +pkgver=0.9.3 pkgrel=1 pkgdesc="X.Org Render extension headers" url="http://xorg.freedesktop.org" @@ -10,10 +10,5 @@ groups=('x11' 'xorg-core' 'xorg-proto') archs=('i686' 'x86_64') depends=() makedepends=('pkgconfig') -_F_xorg_nr=0 Finclude xorg -sha1sums=('5698d99ded00200d15707e5ae1c10e2817abde7b') - -# optimalization OK - -# vim: ft=sh +sha1sums=('c3425e2a5ceecd160b09462c50a69848756e449e') From krics at linuxforum.hu Sat Sep 8 20:20:11 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sat Sep 8 20:20:12 2007 Subject: [Frugalware-git] xorg73: damageproto-1.1.0-1-x86_64 Message-ID: <20070908182011.4059413A42F9@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=5cd9f1cd802241ffdec447c70c184d8757c56029 commit 5cd9f1cd802241ffdec447c70c184d8757c56029 Author: Christian Hamar alias krix Date: Sat Sep 8 20:19:49 2007 +0200 damageproto-1.1.0-1-x86_64 * Version bump diff --git a/source/x11/damageproto/FrugalBuild b/source/x11/damageproto/FrugalBuild index 5d4badc..7718ca4 100644 --- a/source/x11/damageproto/FrugalBuild +++ b/source/x11/damageproto/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: Christian Hamar alias krix pkgname=damageproto -pkgver=1.0.3 +pkgver=1.1.0 pkgrel=1 pkgdesc="X.Org Damage extension headers" url="http://xorg.freedesktop.org" @@ -10,8 +10,7 @@ groups=('x11' 'xorg-core' 'xorg-proto') archs=('i686' 'x86_64') depends=() makedepends=('pkgconfig') -_F_xorg_nr=0 Finclude xorg -sha1sums=('a354e32ba21659bb7aa254570f841b697d459e19') +sha1sums=('5c8b96af09ff053912650343bf150989ec6747e8') # optimalization OK From krics at linuxforum.hu Sat Sep 8 20:24:47 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sat Sep 8 20:24:48 2007 Subject: [Frugalware-git] xorg73: libxau-1.0.3-2-x86_64 Message-ID: <20070908182447.60C4A13A42FC@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=ad09191f3377e88235320b1a44f145928b400b26 commit ad09191f3377e88235320b1a44f145928b400b26 Author: Christian Hamar alias krix Date: Sat Sep 8 20:24:24 2007 +0200 libxau-1.0.3-2-x86_64 * Release bump * SHA1sum does not fit!!! (wtf.. xorg team changes tarball with same name ??) * Depends on latest xproto diff --git a/source/x11/libxau/FrugalBuild b/source/x11/libxau/FrugalBuild index 6dd2c89..68ab4e3 100644 --- a/source/x11/libxau/FrugalBuild +++ b/source/x11/libxau/FrugalBuild @@ -4,16 +4,14 @@ pkgname=libxau _F_xorg_name=libXau pkgver=1.0.3 -pkgrel=1 +pkgrel=2 pkgdesc="X.Org Xau library" url="http://xorg.freedesktop.org" groups=('x11' 'xorg-core' 'xorg-libs') archs=('i686' 'x86_64') -depends=('xproto>=7.0.10') +depends=('xproto>=7.0.11') makedepends=('pkgconfig') -_F_xorg_nr=2 Finclude xorg - -sha1sums=('31766e20d0ac5a858d382d59e04440e6bff9b18f') +sha1sums=('e365d2b9c781ab8d07f79c85bbc48480d1574199') # optimization OK From krics at linuxforum.hu Sat Sep 8 20:27:52 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sat Sep 8 20:27:54 2007 Subject: [Frugalware-git] xorg73: xtrans-1.0.4-1-x86_64 Message-ID: <20070908182752.0680913A42FF@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=5bffc8954aae28e9eff98dce56c4ed5964c58927 commit 5bffc8954aae28e9eff98dce56c4ed5964c58927 Author: Christian Hamar alias krix Date: Sat Sep 8 20:27:29 2007 +0200 xtrans-1.0.4-1-x86_64 * Version bump diff --git a/source/x11/xtrans/FrugalBuild b/source/x11/xtrans/FrugalBuild index 9d63b36..dc9f3a6 100644 --- a/source/x11/xtrans/FrugalBuild +++ b/source/x11/xtrans/FrugalBuild @@ -2,15 +2,14 @@ # Maintainer: Christian Hamar alias krix pkgname=xtrans -pkgver=1.0.3 +pkgver=1.0.4 pkgrel=1 pkgdesc="Abstract Network code for X" groups=('x11' 'xorg-core' 'xorg-libs') archs=('i686' 'x86_64') depends=() makedepends=('pkgconfig') -_F_xorg_nr=2 Finclude xorg -sha1sums=('1848009abb67045b4839a3a18f9c6b8291ba0521') +sha1sums=('9e6dd0970b72253f9558be43abd30bb8a802aa66') # optimization OK From krics at linuxforum.hu Sat Sep 8 20:32:56 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sat Sep 8 20:32:58 2007 Subject: [Frugalware-git] xorg73: util-macros-1.1.5-2-x86_64 Message-ID: <20070908183257.001BF13A4302@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=bbb2cfb8fb03c81043a38be6a20e03cb301efb35 commit bbb2cfb8fb03c81043a38be6a20e03cb301efb35 Author: Christian Hamar alias krix Date: Sat Sep 8 20:32:37 2007 +0200 util-macros-1.1.5-2-x86_64 * Release bump because sha1sum changed ... diff --git a/source/x11/util-macros/FrugalBuild b/source/x11/util-macros/FrugalBuild index ddb7f1a..d1ec7f5 100644 --- a/source/x11/util-macros/FrugalBuild +++ b/source/x11/util-macros/FrugalBuild @@ -3,12 +3,11 @@ pkgname=util-macros pkgver=1.1.5 -pkgrel=1 +pkgrel=2 pkgdesc="X.Org autotools utility macros" groups=('x11' 'xorg-core' 'xorg-util') archs=('i686' 'x86_64') depends=() makedepends=('pkgconfig') -_F_xorg_nr=2 Finclude xorg -sha1sums=('af5b43148bfacbfe59a5c27c719b13e5756e8ce0') +sha1sums=('c4bbfa389df7e5f568599d6313f2460a381f0502') From krics at linuxforum.hu Sat Sep 8 20:35:14 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sat Sep 8 20:35:16 2007 Subject: [Frugalware-git] xorg73: libxdmcp-1.0.2-2-x86_64 Message-ID: <20070908183514.C6DA513A4306@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=62df3e6421443f0fc5d613104aebf05267fc3496 commit 62df3e6421443f0fc5d613104aebf05267fc3496 Author: Christian Hamar alias krix Date: Sat Sep 8 20:34:56 2007 +0200 libxdmcp-1.0.2-2-x86_64 * Release bump (rebuild with new xproto) diff --git a/source/x11/libxdmcp/FrugalBuild b/source/x11/libxdmcp/FrugalBuild index d0b4fc9..f72c720 100644 --- a/source/x11/libxdmcp/FrugalBuild +++ b/source/x11/libxdmcp/FrugalBuild @@ -4,14 +4,13 @@ pkgname=libxdmcp _F_xorg_name=libXdmcp pkgver=1.0.2 -pkgrel=1 +pkgrel=2 pkgdesc="X.Org Xdmcp library" url="http://xorg.freedesktop.org" groups=('x11' 'xorg-core' 'xorg-libs') archs=('i686' 'x86_64') -depends=('xproto') +depends=('xproto>=7.0.11') makedepends=('pkgconfig') -_F_xorg_nr=2 Finclude xorg sha1sums=('0e2fd4a0d8e8b94a4b5af85f08a2fff27bf90238') From krics at linuxforum.hu Sat Sep 8 20:38:14 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sat Sep 8 20:38:15 2007 Subject: [Frugalware-git] xorg73: libxcb-1.0-4-x86_64 Message-ID: <20070908183814.3382313A4309@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=36239414780f7aeaf945cccfc60a01a36b48a157 commit 36239414780f7aeaf945cccfc60a01a36b48a157 Author: Christian Hamar alias krix Date: Sat Sep 8 20:37:38 2007 +0200 libxcb-1.0-4-x86_64 * Release bump (rebuild with new libxdmcp and others) diff --git a/source/x11/libxcb/FrugalBuild b/source/x11/libxcb/FrugalBuild index 57caa6f..88fd18c 100644 --- a/source/x11/libxcb/FrugalBuild +++ b/source/x11/libxcb/FrugalBuild @@ -3,11 +3,11 @@ pkgname=libxcb pkgver=1.0 -pkgrel=3 +pkgrel=4 pkgdesc="X.org X-protocol C Binding" url="http://xcb.freedesktop.org" groups=('x11' 'xorg-core' 'xorg-proto') -depends=('xcb-proto>=1.0' 'libpthread-stubs' 'libxml2' 'libxau' 'libxdmcp' 'libxslt') +depends=('xcb-proto>=1.0' 'libpthread-stubs' 'libxml2' 'libxau>=1.0.3-2' 'libxdmcp>=1.0.2-2' 'libxslt') archs=('i686' 'x86_64') makedepends=('pkgconfig') up2date=("lynx -dump 'http://xcb.freedesktop.org/dist/?C=M;O=A' | grep libxcb | Flasttar") From krics at linuxforum.hu Sat Sep 8 20:44:41 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sat Sep 8 20:44:42 2007 Subject: [Frugalware-git] xorg73: libx11-1.1.3-1-x86_64 Message-ID: <20070908184441.66E7F13A430C@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=51018513252e6b3cd633a4ada84980736fe52a35 commit 51018513252e6b3cd633a4ada84980736fe52a35 Author: Christian Hamar alias krix Date: Sat Sep 8 20:43:35 2007 +0200 libx11-1.1.3-1-x86_64 * Version bump diff --git a/source/x11/libx11/FrugalBuild b/source/x11/libx11/FrugalBuild index 137816f..e2e9320 100644 --- a/source/x11/libx11/FrugalBuild +++ b/source/x11/libx11/FrugalBuild @@ -3,17 +3,17 @@ pkgname=libx11 _F_xorg_name=libX11 -pkgver=1.1.2 +pkgver=1.1.3 pkgrel=1 pkgdesc="X.Org X11 library" url="http://xorg.freedesktop.org" groups=('x11' 'xorg-core' 'xorg-libs') archs=('i686' 'x86_64') -depends=('xproto' 'libxdmcp' 'xtrans' 'kbproto' 'libxau' 'libxcb') +depends=('xproto>=7.0.11' 'libxdmcp>=1.0.2-2' 'xtrans>=1.0.4' 'kbproto' 'libxau>=1.0.3-2' 'libxcb>=1.0-4') makedepends=('pkgconfig' 'xf86bigfontproto' 'bigreqsproto' \ - 'xextproto' 'xcmiscproto' 'inputproto' 'util-macros') + 'xextproto' 'xcmiscproto' 'inputproto>=1.4.2.1' 'util-macros>=1.1.5-2') Finclude xorg Fconfopts="$Fconfopts --enable-ipv6 --enable-xlocaledir --enable-xlocale --with-xcb=yes" -sha1sums=('7190d36389eb7903831cd9541d919f55ac5098e9') +sha1sums=('235f69172b262f874d2a2d7bd17e8197aea5b767') # optimization OK From krics at linuxforum.hu Sat Sep 8 20:46:48 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sat Sep 8 20:46:51 2007 Subject: [Frugalware-git] xorg73: libice-1.0.4-1-x86_64 Message-ID: <20070908184648.9722613A430F@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=fe44f85f7186470937b9f204608d29e3170d92a3 commit fe44f85f7186470937b9f204608d29e3170d92a3 Author: Christian Hamar alias krix Date: Sat Sep 8 20:46:27 2007 +0200 libice-1.0.4-1-x86_64 * Version bump diff --git a/source/x11/libice/FrugalBuild b/source/x11/libice/FrugalBuild index 68a0e56..304f88a 100644 --- a/source/x11/libice/FrugalBuild +++ b/source/x11/libice/FrugalBuild @@ -3,16 +3,15 @@ pkgname=libice _F_xorg_name=libICE -pkgver=1.0.3 +pkgver=1.0.4 pkgrel=1 pkgdesc="X Inter Client Exchange Library" groups=('x11' 'xorg-core' 'xorg-libs') archs=('i686' 'x86_64') -depends=('xproto>=7.0.10' 'xtrans>=1.0.3') +depends=('xproto>=7.0.11' 'xtrans>=1.0.4') makedepends=('pkgconfig') -_F_xorg_nr=2 Finclude xorg Fconfopts="$Fconfopts --enable-IPv6" -sha1sums=('47a21b498ea778caeb51e4fe6a4ce00ec58cc79e') +sha1sums=('67bc7d35a273023a593c10ce05fd307f496892b4') # optimization OK From krics at linuxforum.hu Sat Sep 8 20:49:21 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sat Sep 8 20:49:22 2007 Subject: [Frugalware-git] xorg73: libsm-1.0.3-1-x86_64 Message-ID: <20070908184921.7F9ED13A4312@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=3b6ddb6703133706676b16c159e6e4e4af9eb70a commit 3b6ddb6703133706676b16c159e6e4e4af9eb70a Author: Christian Hamar alias krix Date: Sat Sep 8 20:49:00 2007 +0200 libsm-1.0.3-1-x86_64 * Version bump diff --git a/source/x11/libsm/FrugalBuild b/source/x11/libsm/FrugalBuild index a940d7c..6ad2f77 100644 --- a/source/x11/libsm/FrugalBuild +++ b/source/x11/libsm/FrugalBuild @@ -3,18 +3,16 @@ pkgname=libsm _F_xorg_name=libSM -pkgver=1.0.2 +pkgver=1.0.3 pkgrel=1 pkgdesc="X Session Management Library" url="http://xorg.freedesktop.org" groups=('x11' 'xorg-core' 'xorg-libs') archs=('i686' 'x86_64') -depends=('libice>=1.0.2') +depends=('libice>=1.0.4') makedepends=('pkgconfig') -_F_xorg_nr=2 Finclude xorg - Fconfopts="$Fconfopts --enable-IPv6" -sha1sums=('11b3d081035c0870eb60471658193262e0f9e38a') +sha1sums=('ccf38d4575da92b750640525af55d770b85765e1') # optimization OK From krics at linuxforum.hu Sat Sep 8 20:51:23 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sat Sep 8 20:51:26 2007 Subject: [Frugalware-git] xorg73: libfs-1.0.0-2-x86_64 Message-ID: <20070908185123.0398113A4315@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=c7faeac54996809f891657901e8c2a0805683f86 commit c7faeac54996809f891657901e8c2a0805683f86 Author: Christian Hamar alias krix Date: Sat Sep 8 20:51:04 2007 +0200 libfs-1.0.0-2-x86_64 * Release bump diff --git a/source/x11/libfs/FrugalBuild b/source/x11/libfs/FrugalBuild index 425b97b..dfdf134 100644 --- a/source/x11/libfs/FrugalBuild +++ b/source/x11/libfs/FrugalBuild @@ -4,16 +4,14 @@ pkgname=libfs _F_xorg_name=libFS pkgver=1.0.0 -pkgrel=1 +pkgrel=2 pkgdesc="X.Org FS library" url="http://xorg.freedesktop.org" groups=('x11' 'xorg-core' 'xorg-libs') archs=('i686' 'x86_64') -depends=('fontsproto' 'xproto' 'xtrans') +depends=('fontsproto' 'xproto>=7.0.11' 'xtrans>=1.0.4') makedepends=('pkgconfig') -_F_xorg_nr=0 Finclude xorg - Fconfopts="$Fconfopts --enable-ipv6 --enable-unix-transport" sha1sums=('603ce6e8883b2629ff603f7709427b062be437fe') From krics at linuxforum.hu Sat Sep 8 20:52:54 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sat Sep 8 20:52:55 2007 Subject: [Frugalware-git] xorg73: libfontenc-1.0.4-2-x86_64 Message-ID: <20070908185254.3913B13A4318@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=ace8a0101ae49fde5b298c5d8d6bb317777727a9 commit ace8a0101ae49fde5b298c5d8d6bb317777727a9 Author: Christian Hamar alias krix Date: Sat Sep 8 20:52:34 2007 +0200 libfontenc-1.0.4-2-x86_64 * Release bump (sha1 was wrong at here too ... ) diff --git a/source/x11/libfontenc/FrugalBuild b/source/x11/libfontenc/FrugalBuild index a148629..997b028 100644 --- a/source/x11/libfontenc/FrugalBuild +++ b/source/x11/libfontenc/FrugalBuild @@ -3,14 +3,13 @@ pkgname=libfontenc pkgver=1.0.4 -pkgrel=1 +pkgrel=2 pkgdesc="The fontenc Library" groups=('x11' 'xorg-core' 'xorg-libs') archs=('i686' 'x86_64') -depends=('xproto>=7.0.10' 'zlib') +depends=('xproto>=7.0.11' 'zlib') makedepends=('pkgconfig') -_F_xorg_nr=2 Finclude xorg -sha1sums=('f5b00fa863596010f711dd2cb4913d39c7e8aeac') +sha1sums=('69876a14b18c3c7c829cd79880c69db7b0732d9b') # optimization OK From krics at linuxforum.hu Sat Sep 8 20:54:26 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sat Sep 8 20:54:27 2007 Subject: [Frugalware-git] xorg73: liblbxutil-1.0.1-2-x86_64 Message-ID: <20070908185426.B26BE13A431C@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=257a9adecfd55b7a5baeec545920f876aa40e7a1 commit 257a9adecfd55b7a5baeec545920f876aa40e7a1 Author: Christian Hamar alias krix Date: Sat Sep 8 20:54:06 2007 +0200 liblbxutil-1.0.1-2-x86_64 * Release bump diff --git a/source/x11/liblbxutil/FrugalBuild b/source/x11/liblbxutil/FrugalBuild index 6adbbb6..674b25c 100644 --- a/source/x11/liblbxutil/FrugalBuild +++ b/source/x11/liblbxutil/FrugalBuild @@ -3,14 +3,13 @@ pkgname=liblbxutil pkgver=1.0.1 -pkgrel=1 +pkgrel=2 pkgdesc="X.Org lbxutil library" url="http://xorg.freedesktop.org" groups=('x11' 'xorg-core' 'xorg-libs') archs=('i686' 'x86_64') depends=() -makedepends=('pkgconfig' 'xextproto' 'xproto') -_F_xorg_nr=1 +makedepends=('pkgconfig' 'xextproto' 'xproto>=7.0.11') Finclude xorg sha1sums=('91b21ca5f315f844c2f12aba898c4d2c527f5fb6') From vmiklos at frugalware.org Sat Sep 8 20:54:58 2007 From: vmiklos at frugalware.org (VMiklos) Date: Sat Sep 8 20:54:59 2007 Subject: [Frugalware-git] pacman-g2: _pacman_sync_commit(): set reason to EXPLICIT after an addtarget() if not using sysupgrade() Message-ID: <20070908185458.EB44313A4320@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=pacman-g2.git;a=commitdiff;h=09414be392cfe85b0359877d60c5cf4260a0845f commit 09414be392cfe85b0359877d60c5cf4260a0845f Author: VMiklos Date: Sat Sep 8 20:51:25 2007 +0200 _pacman_sync_commit(): set reason to EXPLICIT after an addtarget() if not using sysupgrade() diff --git a/lib/libpacman/handle.h b/lib/libpacman/handle.h index 19759e1..fa83a19 100644 --- a/lib/libpacman/handle.h +++ b/lib/libpacman/handle.h @@ -62,6 +62,7 @@ typedef struct __pmhandle_t { char *language; int *dlremain; int *dlhowmany; + int sysupgrade; } pmhandle_t; extern pmhandle_t *handle; diff --git a/lib/libpacman/sync.c b/lib/libpacman/sync.c index c4d6120..bbcc3ff 100644 --- a/lib/libpacman/sync.c +++ b/lib/libpacman/sync.c @@ -122,6 +122,9 @@ int _pacman_sync_sysupgrade(pmtrans_t *trans, pmdb_t *db_local, pmlist_t *dbs_sy { pmlist_t *i, *j, *k; + /* this is a sysupgrade, so that install reasons are not touched */ + handle->sysupgrade = 1; + /* check for "recommended" package replacements */ _pacman_log(PM_LOG_FLOW1, _("checking for package replacements")); for(i = dbs_sync; i; i = i->next) { @@ -1012,6 +1015,8 @@ int _pacman_sync_commit(pmtrans_t *trans, pmdb_t *db_local, pmlist_t **data) spkg = _pacman_list_last(tr->packages)->data; if(sync->type == PM_SYNC_TYPE_DEPEND) { spkg->reason = PM_PKG_REASON_DEPEND; + } else if(sync->type == PM_SYNC_TYPE_UPGRADE && !handle->sysupgrade) { + spkg->reason = PM_PKG_REASON_EXPLICIT; } } if(_pacman_trans_prepare(tr, data) == -1) { From vmiklos at frugalware.org Sat Sep 8 20:54:58 2007 From: vmiklos at frugalware.org (VMiklos) Date: Sat Sep 8 20:55:00 2007 Subject: [Frugalware-git] pacman-g2: move the reason copying code Message-ID: <20070908185458.E0DE613A431F@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=pacman-g2.git;a=commitdiff;h=1d0aca77d9d5e112d6eb2a19212654912f6d5c2f commit 1d0aca77d9d5e112d6eb2a19212654912f6d5c2f Author: VMiklos Date: Sat Sep 8 20:50:33 2007 +0200 move the reason copying code _pacman_add_commit(): copying the reason is not a bad idea but not here _pacman_add_loadtarget(): if we do it here, we can alter it before commit() diff --git a/lib/libpacman/add.c b/lib/libpacman/add.c index a1620ca..2890d68 100644 --- a/lib/libpacman/add.c +++ b/lib/libpacman/add.c @@ -184,6 +184,12 @@ int _pacman_add_loadtarget(pmtrans_t *trans, pmdb_t *db, char *name) info->reason = PM_PKG_REASON_DEPEND; } + /* copy over the install reason */ + pmpkg_t *local = _pacman_db_get_pkgfromcache(db, info->name); + if(local) { + info->reason = (int)_pacman_pkg_getinfo(local, PM_PKG_REASON); + } + /* add the package to the transaction */ trans->packages = _pacman_list_add(trans->packages, info); @@ -349,13 +355,6 @@ int _pacman_add_commit(pmtrans_t *trans, pmdb_t *db) strncpy(oldpkg->version, local->version, PKG_VERSION_LEN); } - /* copy over the install reason */ - if(!(local->infolevel & INFRQ_DESC)) { - _pacman_log(PM_LOG_DEBUG, _("loading DESC info for '%s'"), local->name); - _pacman_db_read(db, INFRQ_DESC, local); - } - info->reason = local->reason; - /* pre_upgrade scriptlet */ if(info->scriptlet && !(trans->flags & PM_TRANS_FLAG_NOSCRIPTLET)) { _pacman_runscriptlet(handle->root, info->data, "pre_upgrade", info->version, oldpkg ? oldpkg->version : NULL, From vmiklos at frugalware.org Sat Sep 8 20:54:59 2007 From: vmiklos at frugalware.org (VMiklos) Date: Sat Sep 8 20:55:02 2007 Subject: [Frugalware-git] pacman-g2: sync11{1,2}.py: new tests for #2312 Message-ID: <20070908185459.37CF013A4320@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=pacman-g2.git;a=commitdiff;h=4c7e0306d79d3aa8b482eb73152c5a70f824c4d3 commit 4c7e0306d79d3aa8b482eb73152c5a70f824c4d3 Author: VMiklos Date: Sat Sep 8 20:53:01 2007 +0200 sync11{1,2}.py: new tests for #2312 diff --git a/pactest/tests/sync111.py b/pactest/tests/sync111.py new file mode 100644 index 0000000..93d149e --- /dev/null +++ b/pactest/tests/sync111.py @@ -0,0 +1,15 @@ +self.description = "Explicit install of a pkg should affect the reason" + +sp = pmpkg("pkg", "1.0-2") + +self.addpkg2db("sync", sp) + +lp = pmpkg("pkg") +lp.reason = 1 +self.addpkg2db("local", lp) + +self.args = "-S pkg" + +self.addrule("PACMAN_RETCODE=0") +self.addrule("PKG_VERSION=pkg|1.0-2") +self.addrule("PKG_REASON=pkg|0") diff --git a/pactest/tests/sync112.py b/pactest/tests/sync112.py new file mode 100644 index 0000000..2f8cf1f --- /dev/null +++ b/pactest/tests/sync112.py @@ -0,0 +1,15 @@ +self.description = "Sysupgrade should not affect reason" + +sp = pmpkg("pkg", "1.0-2") + +self.addpkg2db("sync", sp) + +lp = pmpkg("pkg") +lp.reason = 1 +self.addpkg2db("local", lp) + +self.args = "-Su" + +self.addrule("PACMAN_RETCODE=0") +self.addrule("PKG_VERSION=pkg|1.0-2") +self.addrule("PKG_REASON=pkg|1") From krics at linuxforum.hu Sat Sep 8 20:56:13 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sat Sep 8 20:56:14 2007 Subject: [Frugalware-git] xorg73: liboldx-1.0.1-2-x86_64 Message-ID: <20070908185613.04C6313A4328@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=596c66c9c3fd5652738e2b76a27aaecbc4e82f3b commit 596c66c9c3fd5652738e2b76a27aaecbc4e82f3b Author: Christian Hamar alias krix Date: Sat Sep 8 20:55:52 2007 +0200 liboldx-1.0.1-2-x86_64 * Release bump diff --git a/source/x11/liboldx/FrugalBuild b/source/x11/liboldx/FrugalBuild index 637fffd..1ba2a00 100644 --- a/source/x11/liboldx/FrugalBuild +++ b/source/x11/liboldx/FrugalBuild @@ -4,14 +4,13 @@ pkgname=liboldx _F_xorg_name=liboldX pkgver=1.0.1 -pkgrel=1 +pkgrel=2 pkgdesc="X.Org oldX library" url="http://xorg.freedesktop.org" groups=('x11' 'xorg-core' 'xorg-libs') archs=('i686' 'x86_64') -depends=('libx11') -makedepends=('pkgconfig' 'xproto' 'inputproto') -_F_xorg_nr=0 +depends=('libx11>=1.1.3') +makedepends=('pkgconfig' 'xproto>=7.0.11' 'inputproto>=1.4.2.1') Finclude xorg sha1sums=('cc7261b11d8b988e6f3c23335f9e5ebb2f8e768b') From krics at linuxforum.hu Sat Sep 8 20:59:14 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sat Sep 8 20:59:15 2007 Subject: [Frugalware-git] xorg73: libxext-1.0.3-1-x86_64 Message-ID: <20070908185914.9015C13A432B@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=0299a6686ba97e4e9dcf5a716a67abb04ac4b5ce commit 0299a6686ba97e4e9dcf5a716a67abb04ac4b5ce Author: Christian Hamar alias krix Date: Sat Sep 8 20:58:52 2007 +0200 libxext-1.0.3-1-x86_64 * Version bump diff --git a/source/x11/libxext/FrugalBuild b/source/x11/libxext/FrugalBuild index dff4dd8..5ff22a5 100644 --- a/source/x11/libxext/FrugalBuild +++ b/source/x11/libxext/FrugalBuild @@ -3,17 +3,17 @@ pkgname=libxext _F_xorg_name=libXext -pkgver=1.0.2 +pkgver=1.0.3 pkgrel=1 pkgdesc="Misc X Extension Library" url="http://xorg.freedesktop.org" groups=('x11' 'xorg-core' 'xorg-libs') archs=('i686' 'x86_64') -depends=('libx11>=1.0.99.1' 'xextproto') -makedepends=('pkgconfig' 'xproto' 'inputproto') +depends=('libx11>=1.1.3' 'xextproto') +makedepends=('pkgconfig' 'xproto>=7.0.11' 'inputproto>=1.4.2.1') _F_xorg_ind=1 Finclude xorg -sha1sums=('29f07b73ab9688855c6a5f046ca07e021a634095') +sha1sums=('341796c502d0076912b090f0ac6a764501800684') # optimization OK From krics at linuxforum.hu Sat Sep 8 21:01:36 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sat Sep 8 21:01:38 2007 Subject: [Frugalware-git] xorg73: libxfixes-4.0.3-2-x86_64 Message-ID: <20070908190137.0060113A432B@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=86a7d8c566592dce577f2473005108eecb249af5 commit 86a7d8c566592dce577f2473005108eecb249af5 Author: Christian Hamar alias krix Date: Sat Sep 8 21:01:18 2007 +0200 libxfixes-4.0.3-2-x86_64 * Release bump diff --git a/source/x11/libxfixes/FrugalBuild b/source/x11/libxfixes/FrugalBuild index 461144c..e754407 100644 --- a/source/x11/libxfixes/FrugalBuild +++ b/source/x11/libxfixes/FrugalBuild @@ -4,14 +4,13 @@ pkgname=libxfixes _F_xorg_name=libXfixes pkgver=4.0.3 -pkgrel=1 +pkgrel=2 pkgdesc="X.Org Xfixes library" url="http://xorg.freedesktop.org" groups=('x11' 'xorg-core' 'xorg-libs') archs=('i686' 'x86_64') -depends=('libx11>=1.1.1' 'fixesproto>=4.0' 'xproto' 'xextproto') -makedepends=('pkgconfig' 'inputproto') -_F_xorg_nr=2 +depends=('libx11>=1.1.3' 'fixesproto>=4.0' 'xproto>=7.0.11' 'xextproto') +makedepends=('pkgconfig' 'inputproto>=1.4.2.1') Finclude xorg sha1sums=('37297e64239e1cc2a7b4372e27c5f9325f9f29dc') From krics at linuxforum.hu Sat Sep 8 21:05:45 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sat Sep 8 21:05:47 2007 Subject: [Frugalware-git] xorg73: libxfont-1.3.1-1-x86_64 Message-ID: <20070908190545.CEA5613A42DF@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=8a4ae38d222484f3fec9874645539b6e0c8566d9 commit 8a4ae38d222484f3fec9874645539b6e0c8566d9 Author: Christian Hamar alias krix Date: Sat Sep 8 21:05:13 2007 +0200 libxfont-1.3.1-1-x86_64 * Version bump diff --git a/source/x11/libxfont/FrugalBuild b/source/x11/libxfont/FrugalBuild index 583e159..eb9369c 100644 --- a/source/x11/libxfont/FrugalBuild +++ b/source/x11/libxfont/FrugalBuild @@ -3,21 +3,17 @@ pkgname=libxfont _F_xorg_name=libXfont -pkgver=1.2.7 -pkgrel=2 +pkgver=1.3.1 +pkgrel=1 pkgdesc="X font Library" url="http://xorg.freedesktop.org" groups=('x11' 'xorg-core' 'xorg-libs') archs=('i686' 'x86_64') -depends=('xtrans>=1.0.3' 'libfontenc>=1.0.4' 'xproto>=7.0.10' 'fontsproto' 'freetype2>=2.3.1') +depends=('xtrans>=1.0.4' 'libfontenc>=1.0.4-2' 'xproto>=7.0.11' 'fontsproto' 'freetype2') makedepends=('pkgconfig' 'fontcacheproto') -_F_xorg_nr=2 Finclude xorg -source=($source \ - http://xorg.freedesktop.org/archive/X11R7.2/patches/xorg-libXfont-1.2.7-bdf-fontdir.diff) Fconfopts="$Fconfopts --enable-IPv6 --enable-type1 --enable-speedo --enable-freetype \ --enable-pcfformat --enable-bdfformat --enable-snfformat" -sha1sums=('5dc0fcff21ff52e0e299aa28c83493d436d6efc0'\ - '3e57aca6215e1212e53b1a3b1d243916ac7fa703') +sha1sums=('90153414cd3580d92cad6469166c099749cddd29') # optimization OK From krics at linuxforum.hu Sat Sep 8 21:08:10 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sat Sep 8 21:08:11 2007 Subject: [Frugalware-git] xorg73: libxfontcache-1.0.4-2-x86_64 Message-ID: <20070908190810.991B313A42E4@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=e07b65d9a80226825bb9db7cb18d3bd2bb7a3faa commit e07b65d9a80226825bb9db7cb18d3bd2bb7a3faa Author: Christian Hamar alias krix Date: Sat Sep 8 21:07:51 2007 +0200 libxfontcache-1.0.4-2-x86_64 * Release bump (SHA1 wrong at here too..) diff --git a/source/x11/libxfontcache/FrugalBuild b/source/x11/libxfontcache/FrugalBuild index 5da5078..1ff4675 100644 --- a/source/x11/libxfontcache/FrugalBuild +++ b/source/x11/libxfontcache/FrugalBuild @@ -4,15 +4,13 @@ pkgname=libxfontcache _F_xorg_name=libXfontcache pkgver=1.0.4 -pkgrel=1 +pkgrel=2 pkgdesc="The Xfontcache Library" groups=('x11' 'xorg-core' 'xorg-libs') archs=('i686' 'x86_64') -depends=('libx11>=1.0.99.1' 'libxext>=1.0.2' 'fontcacheproto') -makedepends=('pkgconfig' 'inputproto') -_F_xorg_nr=2 +depends=('libx11>=1.1.3' 'libxext>=1.0.3' 'fontcacheproto') +makedepends=('pkgconfig' 'inputproto>=1.4.2.1') Finclude xorg - -sha1sums=('c17779d9f28bdcb0694c9b9b04655f50725b00bb') +sha1sums=('25fbf6df365c0296b58124c46647facaf9072668') # optimization OK From vmiklos at frugalware.org Sat Sep 8 21:17:50 2007 From: vmiklos at frugalware.org (VMiklos) Date: Sat Sep 8 21:17:51 2007 Subject: [Frugalware-git] xorg73: xorg.sh: up2date fix Message-ID: <20070908191750.29B8E13A42E7@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=3fa8061a66dfbf4973a7824c394fc97e13b9a59b commit 3fa8061a66dfbf4973a7824c394fc97e13b9a59b Author: VMiklos Date: Sat Sep 8 21:17:34 2007 +0200 xorg.sh: up2date fix a simple sort will say 1.1 > 1.1.1, so we need to use dates diff --git a/source/include/xorg.sh b/source/include/xorg.sh index 80145b7..0708c7b 100644 --- a/source/include/xorg.sh +++ b/source/include/xorg.sh @@ -71,7 +71,7 @@ _F_xorg_version="X11R7." [ "$_F_xorg_name" = "xorg-server" ] && _F_xorg_dir="xserver" _F_xorg_url="$url/releases/$_F_xorg_release_dir/$_F_xorg_dir/" license="GPL2" -up2date="lynx -dump $_F_xorg_url | grep '$_F_xorg_name-\(.*\).tar.bz2'|sed -n 's/.*$_F_xorg_name-\(.*\)\.t.*/\1/;$ p'" +up2date="lynx -dump '$_F_xorg_url/?C=M;O=A' | grep '$_F_xorg_name-\(.*\).tar.bz2'|sed -n 's/.*$_F_xorg_name-\(.*\)\.t.*/\1/;$ p'" source=($_F_xorg_url/$_F_xorg_name-$pkgver.tar.bz2) if [ -z "$_F_cd_path" ]; then _F_cd_path="$_F_xorg_name-$pkgver" From vmiklos at frugalware.org Sat Sep 8 21:23:28 2007 From: vmiklos at frugalware.org (VMiklos) Date: Sat Sep 8 21:23:30 2007 Subject: [Frugalware-git] frugalware-current: vim-spell.sh: don't use short ifs Message-ID: <20070908192328.9F66313A4303@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=96d1e1caa9ea4c0deba04c7df2c463d1b6836340 commit 96d1e1caa9ea4c0deba04c7df2c463d1b6836340 Author: VMiklos Date: Sat Sep 8 21:23:04 2007 +0200 vim-spell.sh: don't use short ifs fix for failed build vim-spell-hu-20060413-1-x86_64 diff --git a/source/include/vim-spell.sh b/source/include/vim-spell.sh index 2ff188d..2465a64 100644 --- a/source/include/vim-spell.sh +++ b/source/include/vim-spell.sh @@ -65,6 +65,10 @@ build() mkdir $pkgname-$pkgver mv * $pkgname-$pkgver Fcd - ls *.spl &>/dev/null && Ffilerel *.spl /usr/share/vim/spell/ - ls *.sug &>/dev/null && Ffilerel *.sug /usr/share/vim/spell/ + if ls *.spl &>/dev/null; then + Ffilerel *.spl /usr/share/vim/spell/ + fi + if ls *.sug &>/dev/null; then + Ffilerel *.sug /usr/share/vim/spell/ + fi } From vmiklos at frugalware.org Sat Sep 8 21:28:44 2007 From: vmiklos at frugalware.org (VMiklos) Date: Sat Sep 8 21:28:45 2007 Subject: [Frugalware-git] frugalware-current: libnet-1.1.2.1-3-x86_64 Message-ID: <20070908192844.19E7513A4308@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=4ead72a495ddefd03f2df8f2142b71a2d997cb4b commit 4ead72a495ddefd03f2df8f2142b71a2d997cb4b Author: VMiklos Date: Sat Sep 8 21:28:35 2007 +0200 libnet-1.1.2.1-3-x86_64 source() fix (6399242 broke it) diff --git a/source/lib-extra/libnet/FrugalBuild b/source/lib-extra/libnet/FrugalBuild index cb8e88a..8cc5929 100644 --- a/source/lib-extra/libnet/FrugalBuild +++ b/source/lib-extra/libnet/FrugalBuild @@ -11,7 +11,7 @@ depends=() groups=('lib-extra') archs=('i686' 'x86_64') up2date="lynx -dump $url | grep 'Latest Stable' | sed 's/.*\]//'" -source=(http://ftp.frugalware.org/pub/frugalware/frugalware-current/source/lib-extra/libnet/$pkgname.tar.gz) +source=(http://www.packetfactory.net/libnet/dist/libnet.tar.gz) sha1sums=('760783a2adbd845b731e2000aafa3cd9c3b028d5') if [ "$CARCH" == "x86_64" ] ; then CFLAGS="$CFLAGS -fPIC" From krics at linuxforum.hu Sat Sep 8 22:24:04 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sat Sep 8 22:24:08 2007 Subject: [Frugalware-git] xorg73: libxdamage-1.1.1-1-x86_64 Message-ID: <20070908202404.E724B13A42DF@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=756ca8cad713f00aebb1b5a8f4a9d0c0568e4b3b commit 756ca8cad713f00aebb1b5a8f4a9d0c0568e4b3b Author: Christian Hamar alias krix Date: Sat Sep 8 22:23:00 2007 +0200 libxdamage-1.1.1-1-x86_64 * Version bump diff --git a/source/x11/libxdamage/FrugalBuild b/source/x11/libxdamage/FrugalBuild index d49a1a5..780fadd 100644 --- a/source/x11/libxdamage/FrugalBuild +++ b/source/x11/libxdamage/FrugalBuild @@ -3,17 +3,17 @@ pkgname=libxdamage _F_xorg_name=libXdamage -pkgver=1.0.4 +pkgver=1.1.1 pkgrel=1 pkgdesc="X.Org Xdamage library" url="http://xorg.freedesktop.org" groups=('x11' 'xorg-core' 'xorg-libs') archs=('i686' 'x86_64') -depends=('libx11>=1.1.1' 'libxfixes>=4.0.3' 'damageproto' 'xproto') -makedepends=('pkgconfig' 'inputproto') +depends=('libx11>=1.1.3' 'libxfixes>=4.0.3-2' 'damageproto>=1.1.0' 'xproto>=7.0.11') +makedepends=('pkgconfig' 'inputproto>=1.4.2.1') _F_xorg_ind=1 Finclude xorg -sha1sums=('7bed679e1ecf74421fdf2feb6d153298348d9629') +sha1sums=('a88e5a004084400d638ed623e281a6076519a8d0') # optimization OK From krics at linuxforum.hu Sat Sep 8 22:27:47 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sat Sep 8 22:27:48 2007 Subject: [Frugalware-git] xorg73: libxrender-0.9.4-1-x86_64 Message-ID: <20070908202747.3C37413A42DF@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=69a1fb3f9f81f0119a7d6f0fe4860398fa477cc9 commit 69a1fb3f9f81f0119a7d6f0fe4860398fa477cc9 Author: Christian Hamar alias krix Date: Sat Sep 8 22:27:03 2007 +0200 libxrender-0.9.4-1-x86_64 * Version bump diff --git a/source/x11/libxrender/FrugalBuild b/source/x11/libxrender/FrugalBuild index 0dee5fe..5f1e13f 100644 --- a/source/x11/libxrender/FrugalBuild +++ b/source/x11/libxrender/FrugalBuild @@ -3,17 +3,15 @@ pkgname=libxrender _F_xorg_name=libXrender -pkgver=0.9.2 +pkgver=0.9.4 pkgrel=1 pkgdesc="X Render Library" url="http://xorg.freedesktop.org" groups=('x11' 'xorg-core' 'xorg-libs') archs=('i686' 'x86_64') -depends=('libx11>=1.0.99.1' 'renderproto' 'xproto') -makedepends=('pkgconfig' 'inputproto') -_F_xorg_nr=2 +depends=('libx11>=1.1.3' 'renderproto>=0.9.3' 'xproto>=7.0.11') +makedepends=('pkgconfig' 'inputproto>=1.4.2.1') Finclude xorg -sha1sums=('79d6d5dff763d105923ba0bb3c563483cf389d8a') - +sha1sums=('8e0726d495db177e3089be9e1d5c41395277b0db') # optimization OK From krics at linuxforum.hu Sat Sep 8 22:30:47 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sat Sep 8 22:30:48 2007 Subject: [Frugalware-git] xorg73: libxrandr-1.2.2-1-x86_64 Message-ID: <20070908203047.5E62113A42E3@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=70780bc6a837c5425497799d9435a55541dfd773 commit 70780bc6a837c5425497799d9435a55541dfd773 Author: Christian Hamar alias krix Date: Sat Sep 8 22:29:53 2007 +0200 libxrandr-1.2.2-1-x86_64 * Version bump diff --git a/source/x11/libxrandr/FrugalBuild b/source/x11/libxrandr/FrugalBuild index 6290881..5c8796b 100644 --- a/source/x11/libxrandr/FrugalBuild +++ b/source/x11/libxrandr/FrugalBuild @@ -3,17 +3,15 @@ pkgname=libxrandr _F_xorg_name=libXrandr -pkgver=1.1.2 +pkgver=1.2.2 pkgrel=1 pkgdesc="X RandR Library" url="http://xorg.freedesktop.org" groups=('x11' 'xorg-core' 'xorg-libs') archs=('i686' 'x86_64') -depends=('libx11>=1.0.99.1' 'libxext>=1.0.2' 'libxrender>=0.9.2' 'randrproto' 'xproto' 'xextproto') -makedepends=('pkgconfig' 'renderproto' 'inputproto') -_F_xorg_nr=2 +depends=('libx11>=1.1.3' 'libxext>=1.0.3' 'libxrender>=0.9.4' 'randrproto>=1.2.1' 'xproto>=7.0.11' 'xextproto') +makedepends=('pkgconfig' 'renderproto' 'inputproto>=1.4.2.1') Finclude xorg -sha1sums=('8f328c8523f2290144d490a9f7709d14584979ce') - +sha1sums=('11dc75ddbcffc090a517a2028b1204ed631c3891') # optimization OK From krics at linuxforum.hu Sat Sep 8 22:34:41 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sat Sep 8 22:34:43 2007 Subject: [Frugalware-git] xorg73: libxt-1.0.5-1-x86_64 Message-ID: <20070908203441.9413313A42E6@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=5c8b9f6623b8d10538f9a00c5ed1f44d213b382f commit 5c8b9f6623b8d10538f9a00c5ed1f44d213b382f Author: Christian Hamar alias krix Date: Sat Sep 8 22:34:12 2007 +0200 libxt-1.0.5-1-x86_64 * Version bump diff --git a/source/x11/libxt/FrugalBuild b/source/x11/libxt/FrugalBuild index 44176a7..016c318 100644 --- a/source/x11/libxt/FrugalBuild +++ b/source/x11/libxt/FrugalBuild @@ -3,17 +3,17 @@ pkgname=libxt _F_xorg_name=libXt -pkgver=1.0.4 +pkgver=1.0.5 pkgrel=1 pkgdesc="X Toolkit Library" url="http://xorg.freedesktop.org" groups=('x11' 'xorg-core' 'xorg-libs') archs=('i686' 'x86_64') -depends=('libx11>=1.1.1' 'libsm>=1.0.2' 'xproto') -makedepends=('pkgconfig' 'inputproto') +depends=('libx11>=1.1.3' 'libsm>=1.0.3' 'xproto>=7.0.11') +makedepends=('pkgconfig' 'inputproto>=1.4.2.1') _F_xorg_ind=1 Finclude xorg -sha1sums=('3a7d7d390214876c925d5226ef3949b6c5bad6ce') +sha1sums=('5f33921e373ce162a39eabef2ce05d946935eb5b') # optimization OK From krics at linuxforum.hu Sat Sep 8 22:37:34 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sat Sep 8 22:37:36 2007 Subject: [Frugalware-git] xorg73: libxtrap-1.0.0-2-x86_64 Message-ID: <20070908203734.8D74413A42E9@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=78d24bd233ece9865647a689a86fc3febda09db4 commit 78d24bd233ece9865647a689a86fc3febda09db4 Author: Christian Hamar alias krix Date: Sat Sep 8 22:36:28 2007 +0200 libxtrap-1.0.0-2-x86_64 * Release bump (rebuilt with new stuffz) diff --git a/source/x11/libxtrap/FrugalBuild b/source/x11/libxtrap/FrugalBuild index 01cdbe6..9a5f17d 100644 --- a/source/x11/libxtrap/FrugalBuild +++ b/source/x11/libxtrap/FrugalBuild @@ -4,16 +4,14 @@ pkgname=libxtrap _F_xorg_name=libXTrap pkgver=1.0.0 -pkgrel=1 +pkgrel=2 pkgdesc="X.Org Xext library" url="http://xorg.freedesktop.org" groups=('x11' 'xorg-core' 'xorg-libs') archs=('i686' 'x86_64') -depends=('libx11' 'libxt' 'libxext') -makedepends=('pkgconfig' 'trapproto' 'xextproto' 'inputproto') -_F_xorg_nr=0 +depends=('libx11>=1.1.3' 'libxt>=1.0.5' 'libxext>=1.0.3') +makedepends=('pkgconfig' 'trapproto' 'xextproto' 'inputproto>=1.4.2.1') Finclude xorg sha1sums=('3ed2d68e7bfcb065cd6e9d6b1e38044f2fb355c9') - # optimization OK From krics at linuxforum.hu Sat Sep 8 22:39:26 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sat Sep 8 22:39:27 2007 Subject: [Frugalware-git] xorg73: libxtst-1.0.3-1-x86_64 Message-ID: <20070908203926.7835D13A42EC@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=4905cf5d01b1dfe186b746c331f6ac07743a796f commit 4905cf5d01b1dfe186b746c331f6ac07743a796f Author: Christian Hamar alias krix Date: Sat Sep 8 22:39:04 2007 +0200 libxtst-1.0.3-1-x86_64 * Version bump diff --git a/source/x11/libxtst/FrugalBuild b/source/x11/libxtst/FrugalBuild index 87d6ae3..dd668f2 100644 --- a/source/x11/libxtst/FrugalBuild +++ b/source/x11/libxtst/FrugalBuild @@ -3,17 +3,15 @@ pkgname=libxtst _F_xorg_name=libXtst -pkgver=1.0.1 +pkgver=1.0.3 pkgrel=1 pkgdesc="X.Org Xtst library" url="http://xorg.freedesktop.org" groups=('x11' 'xorg-core' 'xorg-libs') archs=('i686' 'x86_64') -depends=('libx11' 'libxext' 'recordproto') -makedepends=('pkgconfig' 'inputproto') -_F_xorg_nr=0 +depends=('libx11>=1.1.3' 'libxext>=1.0.3' 'recordproto') +makedepends=('pkgconfig' 'inputproto>=1.4.2.1') Finclude xorg -sha1sums=('0001bfb58eb28bdef9ab6acfa158a4bf99519ffb') - +sha1sums=('f3a135f84aa9614724fba4f57b29b372273b434e') # optimization OK From krics at linuxforum.hu Sat Sep 8 22:45:55 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sat Sep 8 22:45:55 2007 Subject: [Frugalware-git] xorg73: libxi-1.1.3-1-x86_64 Message-ID: <20070908204555.0F99813A42EF@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=26f4f54d6dfa0f814efebb29cd60e10992e51cb8 commit 26f4f54d6dfa0f814efebb29cd60e10992e51cb8 Author: Christian Hamar alias krix Date: Sat Sep 8 22:45:34 2007 +0200 libxi-1.1.3-1-x86_64 * Version bump diff --git a/source/x11/libxi/FrugalBuild b/source/x11/libxi/FrugalBuild index 8389a03..92f398e 100644 --- a/source/x11/libxi/FrugalBuild +++ b/source/x11/libxi/FrugalBuild @@ -3,16 +3,16 @@ pkgname=libxi _F_xorg_name=libXi -pkgver=1.1.1 +pkgver=1.1.3 pkgrel=1 pkgdesc="X input extension library" url="http://xorg.freedesktop.org" groups=('x11' 'xorg-core' 'xorg-libs') archs=('i686' 'x86_64') -depends=('libx11>=1.1.2' 'libxext' 'inputproto') -makedepends=('pkgconfig' 'xproto') +depends=('libx11>=1.1.3' 'libxext>=1.0.3' 'inputproto>=1.4.2.1') +makedepends=('pkgconfig' 'xproto>=7.0.11') Finclude xorg _F_cd_path="$_F_xorg_name-$pkgver" -sha1sums=('74e546ac1db4382d964edda9d539844085035250') +sha1sums=('60608bcbebadc5fe0b51b5012e9301eb720988fe') # optimization OK From krics at linuxforum.hu Sat Sep 8 22:48:32 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sat Sep 8 22:48:34 2007 Subject: [Frugalware-git] xorg73: libxinerama-1.0.2-1-x86_64 Message-ID: <20070908204832.4485B13A42F2@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=fa6ef7b4fb523c13f17ee2f2a15f97c2f62d28ac commit fa6ef7b4fb523c13f17ee2f2a15f97c2f62d28ac Author: Christian Hamar alias krix Date: Sat Sep 8 22:48:12 2007 +0200 libxinerama-1.0.2-1-x86_64 * Version bump diff --git a/source/x11/libxinerama/FrugalBuild b/source/x11/libxinerama/FrugalBuild index 009a71f..c6ae68b 100644 --- a/source/x11/libxinerama/FrugalBuild +++ b/source/x11/libxinerama/FrugalBuild @@ -3,17 +3,15 @@ pkgname=libxinerama _F_xorg_name=libXinerama -pkgver=1.0.1 +pkgver=1.0.2 pkgrel=1 pkgdesc="X.Org Xinemara library" url="http://xorg.freedesktop.org" groups=('x11' 'xorg-core' 'xorg-libs') archs=('i686' 'x86_64') -depends=('libx11' 'libxext' 'xineramaproto') -makedepends=('pkgconfig' 'inputproto') -_F_xorg_nr=0 +depends=('libx11>=1.1.3' 'libxext>=1.0.3' 'xineramaproto') +makedepends=('pkgconfig' 'inputproto>=1.4.2.1') Finclude xorg -sha1sums=('1c6c96105ac7d28ea3b50d0f71f749569b8d299e') - +sha1sums=('522d60020bd30591462b9f88e6fcf31b68a1f14a') # optimization OK From krics at linuxforum.hu Sat Sep 8 22:55:00 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sat Sep 8 22:55:01 2007 Subject: [Frugalware-git] xorg73: libxkbfile-1.0.4-2-x86_64 Message-ID: <20070908205500.745DC13A42F5@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=e58e739c846fb9216acfba066df3d14d0bb787ad commit e58e739c846fb9216acfba066df3d14d0bb787ad Author: Christian Hamar alias krix Date: Sat Sep 8 22:54:39 2007 +0200 libxkbfile-1.0.4-2-x86_64 * Release bump diff --git a/source/x11/libxkbfile/FrugalBuild b/source/x11/libxkbfile/FrugalBuild index fa9dc5c..e15c811 100644 --- a/source/x11/libxkbfile/FrugalBuild +++ b/source/x11/libxkbfile/FrugalBuild @@ -3,14 +3,13 @@ pkgname=libxkbfile pkgver=1.0.4 -pkgrel=1 +pkgrel=2 pkgdesc="The xkbfile Library" url="http://xorg.freedesktop.org" groups=('x11' 'xorg-core' 'xorg-libs') archs=('i686' 'x86_64') -depends=('libx11>=1.0.99.1' 'kbproto') -makedepends=('pkgconfig' 'inputproto') -_F_xorg_nr=2 +depends=('libx11>=1.1.3' 'kbproto') +makedepends=('pkgconfig' 'inputproto>=1.4.2.1') Finclude xorg sha1sums=('1635903c1f4481eeffbf65f62cf70df7b9de36f7') From krics at linuxforum.hu Sat Sep 8 23:03:20 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sat Sep 8 23:03:22 2007 Subject: [Frugalware-git] xorg73: libxkbui-1.0.2-2-x86_64 Message-ID: <20070908210320.5B3C713A4158@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=cb43b8c7be3a10637f2a069b55e9f7707853dc2d commit cb43b8c7be3a10637f2a069b55e9f7707853dc2d Author: Christian Hamar alias krix Date: Sat Sep 8 23:02:57 2007 +0200 libxkbui-1.0.2-2-x86_64 * Release bump diff --git a/source/x11/libxkbui/FrugalBuild b/source/x11/libxkbui/FrugalBuild index 1e77c7c..52f81de 100644 --- a/source/x11/libxkbui/FrugalBuild +++ b/source/x11/libxkbui/FrugalBuild @@ -3,16 +3,13 @@ pkgname=libxkbui pkgver=1.0.2 -pkgrel=1 +pkgrel=2 pkgdesc="X.Org xkbui library" url="http://xorg.freedesktop.org" groups=('x11' 'xorg-core' 'xorg-libs') archs=('i686' 'x86_64') -depends=('libxt' 'libxkbfile') -makedepends=('pkgconfig' 'inputproto') -_F_xorg_nr=1 +depends=('libxt>=1.0.5' 'libxkbfile>=1.0.4-2') +makedepends=('pkgconfig' 'inputproto>=1.4.2.1') Finclude xorg - -# optimization OK - sha1sums=('bd6f1d6fa390d3fee118f9d5b15e156315576b9f') +# optimization OK From krics at linuxforum.hu Sat Sep 8 23:05:56 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sat Sep 8 23:06:02 2007 Subject: [Frugalware-git] xorg73: libxmu-1.0.3-2-x86_64 Message-ID: <20070908210556.D118C13A42FA@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=1e48b0447638185fb679150a5e8e37ee0e9c05a6 commit 1e48b0447638185fb679150a5e8e37ee0e9c05a6 Author: Christian Hamar alias krix Date: Sat Sep 8 23:05:32 2007 +0200 libxmu-1.0.3-2-x86_64 * Release bump diff --git a/source/x11/libxmu/FrugalBuild b/source/x11/libxmu/FrugalBuild index 8565c46..4042786 100644 --- a/source/x11/libxmu/FrugalBuild +++ b/source/x11/libxmu/FrugalBuild @@ -4,17 +4,14 @@ pkgname=libxmu _F_xorg_name=libXmu pkgver=1.0.3 -pkgrel=1 +pkgrel=2 pkgdesc="X.Org Xmu library" url="http://xorg.freedesktop.org" groups=('x11' 'xorg-core' 'xorg-libs') archs=('i686' 'x86_64') -depends=('libx11>=1.1.1' 'libxt>=1.0.4' 'libxext') -makedepends=('pkgconfig' 'xproto' 'inputproto') -_F_xorg_nr=2 +depends=('libx11>=1.1.3' 'libxt>=1.0.5' 'libxext>=1.0.3') +makedepends=('pkgconfig' 'xproto>=7.0.11' 'inputproto>=1.4.2.1') Finclude xorg sha1sums=('7f2baa63b68ff8bdb524f3d5a2643066a556973b') - Fconfopts="$Fconfopts --enable-IPv6" - # optimization OK From krics at linuxforum.hu Sat Sep 8 23:10:00 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sat Sep 8 23:10:02 2007 Subject: [Frugalware-git] xorg73: libxp-1.0.0-2-x86_64 Message-ID: <20070908211000.1E13F13A42FD@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=ec8a53f334c665c0d94acb2c963ded8561f9ecfb commit ec8a53f334c665c0d94acb2c963ded8561f9ecfb Author: Christian Hamar alias krix Date: Sat Sep 8 23:09:35 2007 +0200 libxp-1.0.0-2-x86_64 * Release bump diff --git a/source/x11/libxp/FrugalBuild b/source/x11/libxp/FrugalBuild index bdb8bbd..63fa938 100644 --- a/source/x11/libxp/FrugalBuild +++ b/source/x11/libxp/FrugalBuild @@ -4,16 +4,13 @@ pkgname=libxp _F_xorg_name=libXp pkgver=1.0.0 -pkgrel=1 +pkgrel=2 pkgdesc="X.Org Xprint library" url="http://xorg.freedesktop.org" groups=('x11' 'xorg-core' 'xorg-libs') archs=('i686' 'x86_64') -depends=('libx11' 'libxext' 'libxau' 'printproto') -makedepends=('pkgconfig' 'inputproto') -_F_xorg_nr=0 +depends=('libx11>=1.1.3' 'libxext>=1.0.3' 'libxau>=1.0.3-2' 'printproto') +makedepends=('pkgconfig' 'inputproto>=1.4.2.1') Finclude xorg - sha1sums=('fac67954e247fc805af6e495ff8695b5724cd1e2') - # optimization OK From vmiklos at frugalware.org Sat Sep 8 23:26:17 2007 From: vmiklos at frugalware.org (VMiklos) Date: Sat Sep 8 23:26:18 2007 Subject: [Frugalware-git] bmf: pacman-g2-3.6.2.5.g4c7e030-1-i686 Message-ID: <20070908212617.4CA7F13A4300@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=bmf.git;a=commitdiff;h=cb1afa71f094d85701309679195ed81c80f6e133 commit cb1afa71f094d85701309679195ed81c80f6e133 Author: VMiklos Date: Sat Sep 8 23:26:06 2007 +0200 pacman-g2-3.6.2.5.g4c7e030-1-i686 import from current + 5 patches to help testing diff --git a/source/base/pacman-g2/FrugalBuild b/source/base/pacman-g2/FrugalBuild new file mode 100644 index 0000000..bc2d508 --- /dev/null +++ b/source/base/pacman-g2/FrugalBuild @@ -0,0 +1,38 @@ +# Compiling Time: 0.39 SBU +# Maintainer: VMiklos + +USE_DEVEL=${USE_DEVEL:-"y"} + +pkgname=pacman-g2 +pkgver=3.6.2 +Fuse $USE_DEVEL && pkgver=3.6.2.5.g4c7e030 +pkgrel=1 +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}.conf etc/pacman.d/{frugalware,frugalware-current}) +depends=('libarchive>=2.0.27' 'glibc>=2.6-2') +makedepends=('doxygen' 'po4a' 'swig' 'java-gcj-compat' 'ecj' 'mono') +Fuse $USE_DEVEL && makedepends=(${makedepends[@]} 'intltool') +Finclude mono +groups=('base' 'chroot-core') +archs=('i686' 'x86_64' 'ppc') +up2date="lynx -dump $url/releases/ |Flasttar" +if ! Fuse $USE_DEVEL; then + source=($url/releases/$pkgname-$pkgver.tar.gz) + signatures=("$source.asc") +else + _F_scm_type="git" + _F_scm_url="http://git.frugalware.org/repos/pacman-g2/.git/" + Finclude scm +fi + +build() +{ + if Fuse $USE_DEVEL; then + Funpack_scm + sh autogen.sh + fi + Fbuild_mono +} + +# optimization OK From vmiklos at frugalware.org Sat Sep 8 23:43:56 2007 From: vmiklos at frugalware.org (VMiklos) Date: Sat Sep 8 23:43:56 2007 Subject: [Frugalware-git] bmf: pacman-g2-3.6.2.5.g4c7e030-1-i686 Message-ID: <20070908214356.0608813A4158@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=bmf.git;a=commitdiff;h=6cc7441bae382855a12490a0580c6ea9d4bdb5a2 commit 6cc7441bae382855a12490a0580c6ea9d4bdb5a2 Author: VMiklos Date: Sat Sep 8 23:43:47 2007 +0200 pacman-g2-3.6.2.5.g4c7e030-1-i686 touch configure.ac to include pkgver in the output of -V diff --git a/source/base/pacman-g2/FrugalBuild b/source/base/pacman-g2/FrugalBuild index bc2d508..238abb9 100644 --- a/source/base/pacman-g2/FrugalBuild +++ b/source/base/pacman-g2/FrugalBuild @@ -30,6 +30,7 @@ build() { if Fuse $USE_DEVEL; then Funpack_scm + Fsed '\(^AC_INIT(.*, \)[0-9\.]\+\(, .*\)' "\1$pkgver\2/" configure.ac sh autogen.sh fi Fbuild_mono From vmiklos at frugalware.org Sat Sep 8 23:48:38 2007 From: vmiklos at frugalware.org (VMiklos) Date: Sat Sep 8 23:48:40 2007 Subject: [Frugalware-git] frugalware-current: scm.sh: fix tag/branch detection if _F_scm_type is git Message-ID: <20070908214838.5813E13A4158@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=aa9b0c62f121e282f14dfaf2a489b1296b3eae0c commit aa9b0c62f121e282f14dfaf2a489b1296b3eae0c Author: VMiklos Date: Sat Sep 8 23:48:10 2007 +0200 scm.sh: fix tag/branch detection if _F_scm_type is git diff --git a/source/include/scm.sh b/source/include/scm.sh index a9a7c69..801c64f 100644 --- a/source/include/scm.sh +++ b/source/include/scm.sh @@ -139,12 +139,12 @@ Funpack_scm() cd $pkgname fi if [ -n "$_F_scm_tag" ]; then - if [ -d .git/refs/tags/$_F_scm_tag ]; then - # this is a tag - git checkout $_F_scm_tag || Fdie - else + if [ -f .git/refs/remotes/origin/$_F_scm_tag ]; then # this is a branch git checkout origin/$_F_scm_tag || Fdie + else + # this is a tag or commit + git checkout $_F_scm_tag || Fdie fi fi elif [ "$_F_scm_type" == "mercurial" ]; then From krics at linuxforum.hu Sun Sep 9 00:12:48 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sun Sep 9 00:12:49 2007 Subject: [Frugalware-git] xorg73: libxres-1.0.3-1-x86_64 Message-ID: <20070908221248.120CF13A42E4@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=e2f603da20f12e5d340acf53903747be42401e38 commit e2f603da20f12e5d340acf53903747be42401e38 Author: Christian Hamar alias krix Date: Sun Sep 9 00:11:41 2007 +0200 libxres-1.0.3-1-x86_64 diff --git a/source/x11/libxres/FrugalBuild b/source/x11/libxres/FrugalBuild index 6309cc9..929136c 100644 --- a/source/x11/libxres/FrugalBuild +++ b/source/x11/libxres/FrugalBuild @@ -9,11 +9,8 @@ pkgdesc="X Resource Information Extension Library" url="http://xorg.freedesktop.org" groups=('x11' 'xorg-core' 'xorg-libs') archs=('i686' 'x86_64') -depends=('libx11>=1.0.99.1' 'libxext>=1.0.2' 'resourceproto' 'libxau>=1.0.3') -makedepends=('pkgconfig' 'xproto' 'inputproto') -_F_xorg_nr=2 +depends=('libx11>=1.1.3' 'libxext>=1.0.3' 'resourceproto' 'libxau>=1.0.3-2') +makedepends=('pkgconfig' 'xproto>=7.0.11' 'inputproto>=1.4.2.1') Finclude xorg - - -sha1sums=('0ec4b8a2f2ce3807ce5ebe903d20e2af54b67162') +sha1sums=('60fdf5e612feac9ba379d0a5c755b8dd3c0bc489') # optimization OK From krics at linuxforum.hu Sun Sep 9 00:12:48 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sun Sep 9 00:12:50 2007 Subject: [Frugalware-git] xorg73: libxres-1.0.3-2-x86_64 Message-ID: <20070908221248.2860813A42E5@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=2dc5940c6ea920dfb0e7410f745c9545894525e4 commit 2dc5940c6ea920dfb0e7410f745c9545894525e4 Author: Christian Hamar alias krix Date: Sun Sep 9 00:12:23 2007 +0200 libxres-1.0.3-2-x86_64 * Release bump diff --git a/source/x11/libxres/FrugalBuild b/source/x11/libxres/FrugalBuild index 929136c..0190087 100644 --- a/source/x11/libxres/FrugalBuild +++ b/source/x11/libxres/FrugalBuild @@ -4,7 +4,7 @@ pkgname=libxres _F_xorg_name=libXres pkgver=1.0.3 -pkgrel=1 +pkgrel=2 pkgdesc="X Resource Information Extension Library" url="http://xorg.freedesktop.org" groups=('x11' 'xorg-core' 'xorg-libs') From krics at linuxforum.hu Sun Sep 9 00:15:25 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sun Sep 9 00:15:26 2007 Subject: [Frugalware-git] xorg73: libxscrnsaver-1.1.2-2-x86_64 Message-ID: <20070908221525.C588413A42EA@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=20aeb84af7a41db52d05af607dad7ef7a3454b3e commit 20aeb84af7a41db52d05af607dad7ef7a3454b3e Author: Christian Hamar alias krix Date: Sun Sep 9 00:14:41 2007 +0200 libxscrnsaver-1.1.2-2-x86_64 * Release bump diff --git a/source/x11/libxscrnsaver/FrugalBuild b/source/x11/libxscrnsaver/FrugalBuild index 3d96063..78d1c10 100644 --- a/source/x11/libxscrnsaver/FrugalBuild +++ b/source/x11/libxscrnsaver/FrugalBuild @@ -4,15 +4,12 @@ pkgname=libxscrnsaver _F_xorg_name=libXScrnSaver pkgver=1.1.2 -pkgrel=1 +pkgrel=2 pkgdesc="The XScrnSaver Library" groups=('x11' 'xorg-core' 'xorg-libs') archs=('i686' 'x86_64') -depends=('libx11>=1.0.99.1' 'libxext>=1.0.2' 'scrnsaverproto') -makedepends=('pkgconfig' 'inputproto') -_F_xorg_nr=2 +depends=('libx11>=1.1.3' 'libxext>=1.0.3' 'scrnsaverproto') +makedepends=('pkgconfig' 'inputproto>=1.4.2.1') Finclude xorg - - -sha1sums=('b133655e73b69dbac80552db9216d436057d7f6a') +sha1sums=('da54583d4194b3a48ec6d6d7adbdbfab41391c12') # optimization OK From krics at linuxforum.hu Sun Sep 9 00:17:35 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sun Sep 9 00:17:40 2007 Subject: [Frugalware-git] xorg73: libxv-1.0.3-2-x86_64 Message-ID: <20070908221735.539C013A42ED@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=5aba26af6a278852fbf9ae5baf91a97a3c446388 commit 5aba26af6a278852fbf9ae5baf91a97a3c446388 Author: Christian Hamar alias krix Date: Sun Sep 9 00:17:08 2007 +0200 libxv-1.0.3-2-x86_64 * Release bump diff --git a/source/x11/libxv/FrugalBuild b/source/x11/libxv/FrugalBuild index db82197..66aa8c2 100644 --- a/source/x11/libxv/FrugalBuild +++ b/source/x11/libxv/FrugalBuild @@ -4,15 +4,12 @@ pkgname=libxv _F_xorg_name=libXv pkgver=1.0.3 -pkgrel=1 +pkgrel=2 pkgdesc="X.Org Xv library" groups=('x11' 'xorg-core' 'xorg-libs') archs=('i686' 'x86_64') -depends=('libx11' 'libxext' 'videoproto' 'libxau>=1.0.3') -makedepends=('pkgconfig' 'xproto>=7.0.10' 'inputproto') -_F_xorg_nr=2 +depends=('libx11>=1.1.3' 'libxext>=1.0.3' 'videoproto' 'libxau>=1.0.3-2') +makedepends=('pkgconfig' 'xproto>=7.0.11' 'inputproto>=1.4.2.1') Finclude xorg - - -sha1sums=('64bfa056e991bae71bd80d169b7c88f3ba15af66') +sha1sums=('6e286df1f8dc3d170d6121f00c96c5bc8a60b71c') # optimization OK From vmiklos at frugalware.org Sun Sep 9 00:57:32 2007 From: vmiklos at frugalware.org (VMiklos) Date: Sun Sep 9 00:57:34 2007 Subject: [Frugalware-git] pacman-g2: HttpGet(): prevent a buffer overrun when locale != C Message-ID: <20070908225732.33C7C13A4158@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=pacman-g2.git;a=commitdiff;h=e65d98eb719d57be6deb86ce99c5c72db7773bba commit e65d98eb719d57be6deb86ce99c5c72db7773bba Author: VMiklos Date: Sun Sep 9 00:55:38 2007 +0200 HttpGet(): prevent a buffer overrun when locale != C diff --git a/lib/libftp/ftplib.c b/lib/libftp/ftplib.c index cbe3d70..e585c05 100644 --- a/lib/libftp/ftplib.c +++ b/lib/libftp/ftplib.c @@ -1524,7 +1524,7 @@ GLOBALREF int HttpGet(const char *host, const char *outputfile, const char *path sprintf(buf, "%sRange: bytes=%d-\r\n", buf, offset); if (mtime1 && mtime1->tm_year) { - char mtime[30]; + char mtime[256]; /* Format: * "If-Modified-Since: Sat, 29 Oct 1994 19:43:31 GMT\r\n" */ strftime(mtime, sizeof(mtime), "%a, %d %b %Y %H:%M:%S GMT", mtime1); From krics at linuxforum.hu Sun Sep 9 01:03:56 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sun Sep 9 01:03:57 2007 Subject: [Frugalware-git] xorg73: libxvmc-1.0.4-2-x86_64 Message-ID: <20070908230356.41E0A13A4158@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=edc4bb3a8dff7836d7127d54462575c70ad81b89 commit edc4bb3a8dff7836d7127d54462575c70ad81b89 Author: Christian Hamar alias krix Date: Sun Sep 9 01:03:36 2007 +0200 libxvmc-1.0.4-2-x86_64 * Release bump diff --git a/source/x11/libxvmc/FrugalBuild b/source/x11/libxvmc/FrugalBuild index 9f3fac9..0c3c337 100644 --- a/source/x11/libxvmc/FrugalBuild +++ b/source/x11/libxvmc/FrugalBuild @@ -4,16 +4,13 @@ pkgname=libxvmc _F_xorg_name=libXvMC pkgver=1.0.4 -pkgrel=1 +pkgrel=2 pkgdesc="X.Org XvMC library" url="http://xorg.freedesktop.org" groups=('x11' 'xorg-core' 'xorg-libs') archs=('i686' 'x86_64') -depends=('libx11' 'libxext' 'libxv>=1.0.3') -makedepends=('pkgconfig' 'xproto>=7.0.10' 'inputproto') -_F_xorg_nr=2 +depends=('libx11>=1.1.3' 'libxext>=1.0.3' 'libxv>=1.0.3-2') +makedepends=('pkgconfig' 'xproto>=7.0.11' 'inputproto>=1.4.2.1') Finclude xorg - - -sha1sums=('dba1c69e84fea52b1dfacfa74627a8507884b4a3') +sha1sums=('e035cabb8ca61bc665746b02bf97549c253b4557') # optimization OK From krics at linuxforum.hu Sun Sep 9 01:05:49 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sun Sep 9 01:05:50 2007 Subject: [Frugalware-git] xorg73: libxxf86dga-1.0.2-1-x86_64 Message-ID: <20070908230549.E42FF13A4158@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=9a849f225aa11d9331e004e7fdefc1ea7b242b64 commit 9a849f225aa11d9331e004e7fdefc1ea7b242b64 Author: Christian Hamar alias krix Date: Sun Sep 9 01:05:27 2007 +0200 libxxf86dga-1.0.2-1-x86_64 * Version bump diff --git a/source/x11/libxxf86dga/FrugalBuild b/source/x11/libxxf86dga/FrugalBuild index 5ca3005..b206886 100644 --- a/source/x11/libxxf86dga/FrugalBuild +++ b/source/x11/libxxf86dga/FrugalBuild @@ -3,17 +3,15 @@ pkgname=libxxf86dga _F_xorg_name=libXxf86dga -pkgver=1.0.1 +pkgver=1.0.2 pkgrel=1 pkgdesc="X.Org Xxf86dga library" url="http://xorg.freedesktop.org" groups=('x11' 'xorg-core' 'xorg-libs') archs=('i686' 'x86_64') -depends=('libx11' 'libxext' 'xf86dgaproto') -makedepends=('pkgconfig' 'xproto' 'inputproto') -_F_xorg_nr=1 +depends=('libx11>=1.1.3' 'libxext>=1.0.3' 'xf86dgaproto') +makedepends=('pkgconfig' 'xproto>=7.0.11' 'inputproto>=1.4.2.1') Finclude xorg -sha1sums=('b293b30a5951179da7fdfba16ebba04fd8f3aa0b') - +sha1sums=('7bf4fff1e981357509e3a962e9040f243001088e') # optimization OK From krics at linuxforum.hu Sun Sep 9 01:07:24 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sun Sep 9 01:07:26 2007 Subject: [Frugalware-git] xorg73: libxxf86misc-1.0.1-2-x86_64 Message-ID: <20070908230724.791E713A4158@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=598e549a6adc9ab578b69fbd718f194cee6843e9 commit 598e549a6adc9ab578b69fbd718f194cee6843e9 Author: Christian Hamar alias krix Date: Sun Sep 9 01:07:06 2007 +0200 libxxf86misc-1.0.1-2-x86_64 * Release bump diff --git a/source/x11/libxxf86misc/FrugalBuild b/source/x11/libxxf86misc/FrugalBuild index 03f9a3b..84cfda4 100644 --- a/source/x11/libxxf86misc/FrugalBuild +++ b/source/x11/libxxf86misc/FrugalBuild @@ -4,16 +4,13 @@ pkgname=libxxf86misc _F_xorg_name=libXxf86misc pkgver=1.0.1 -pkgrel=1 +pkgrel=2 pkgdesc="X.Org Xxf86misc library" url="http://xorg.freedesktop.org" groups=('x11' 'xorg-core' 'xorg-libs') archs=('i686' 'x86_64') -depends=('libx11' 'libxext' 'xf86miscproto') -makedepends=('pkgconfig' 'xproto' 'inputproto') -_F_xorg_nr=1 +depends=('libx11>=1.1.3' 'libxext>=1.0.3' 'xf86miscproto') +makedepends=('pkgconfig' 'xproto>=7.0.11' 'inputproto>=1.4.2.1') Finclude xorg sha1sums=('cbe908951802d6bd4489a2ca078434c16979d8e5') - - # optimization OK From krics at linuxforum.hu Sun Sep 9 01:08:58 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sun Sep 9 01:08:59 2007 Subject: [Frugalware-git] xorg73: libxxf86vm-1.0.1-2-x86_64 Message-ID: <20070908230858.4AB0E13A4158@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=3a2b32819cfebd436379608f0eef4aa79a443d52 commit 3a2b32819cfebd436379608f0eef4aa79a443d52 Author: Christian Hamar alias krix Date: Sun Sep 9 01:08:39 2007 +0200 libxxf86vm-1.0.1-2-x86_64 * Release bump diff --git a/source/x11/libxxf86vm/FrugalBuild b/source/x11/libxxf86vm/FrugalBuild index f66cec0..b41aedc 100644 --- a/source/x11/libxxf86vm/FrugalBuild +++ b/source/x11/libxxf86vm/FrugalBuild @@ -4,16 +4,13 @@ pkgname=libxxf86vm _F_xorg_name=libXxf86vm pkgver=1.0.1 -pkgrel=1 +pkgrel=2 pkgdesc="X.Org Xxf86vm library" url="http://xorg.freedesktop.org" groups=('x11' 'xorg-core' 'xorg-libs') archs=('i686' 'x86_64') -depends=('libx11' 'libxext' 'xf86vidmodeproto') -makedepends=('pkgconfig' 'xproto' 'inputproto') -_F_xorg_nr=1 +depends=('libx11>=1.1.3' 'libxext>=1.0.3' 'xf86vidmodeproto') +makedepends=('pkgconfig' 'xproto>=7.0.11' 'inputproto>=1.4.2.1') Finclude xorg sha1sums=('75469e9ef5bc29dc84fcc5e35251583d10c04859') - - # optimization OK From krics at linuxforum.hu Sun Sep 9 01:10:36 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sun Sep 9 01:10:37 2007 Subject: [Frugalware-git] xorg73: lndir-1.0.1-2-x86_64 Message-ID: <20070908231036.D59F613A4158@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=f4eb1b12ab2b012f5c0f26b4f50def63fb48c838 commit f4eb1b12ab2b012f5c0f26b4f50def63fb48c838 Author: Christian Hamar alias krix Date: Sun Sep 9 01:10:13 2007 +0200 lndir-1.0.1-2-x86_64 * Release bump diff --git a/source/x11/lndir/FrugalBuild b/source/x11/lndir/FrugalBuild index 652cb50..a1efb73 100644 --- a/source/x11/lndir/FrugalBuild +++ b/source/x11/lndir/FrugalBuild @@ -3,17 +3,14 @@ pkgname=lndir pkgver=1.0.1 -pkgrel=1 +pkgrel=2 pkgdesc="X.Org create a shadow directory of symbolic links to another directory tree" url="http://xorg.freedesktop.org" groups=('x11' 'xorg-core' 'xorg-util') archs=('i686' 'x86_64') depends=() -makedepends=('pkgconfig' 'xproto') -_F_xorg_nr=0 +makedepends=('pkgconfig' 'xproto>=7.0.11') Finclude xorg sha1sums=('c7eed31c4cb2b016e4a06b629a57333c8df14421') -# optimalization OK - -# vim: ft=sh +# optimization OK From krics at linuxforum.hu Sun Sep 9 01:14:24 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sun Sep 9 01:14:24 2007 Subject: [Frugalware-git] xorg73: libxpm-3.5.7-1-x86_64 Message-ID: <20070908231424.19D0213A4158@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=1e894bdc8fb3c7a69d192938aeb1a717dfabc21a commit 1e894bdc8fb3c7a69d192938aeb1a717dfabc21a Author: Christian Hamar alias krix Date: Sun Sep 9 01:13:57 2007 +0200 libxpm-3.5.7-1-x86_64 * Version bump diff --git a/source/x11/libxpm/FrugalBuild b/source/x11/libxpm/FrugalBuild index b926ccd..e2b129a 100644 --- a/source/x11/libxpm/FrugalBuild +++ b/source/x11/libxpm/FrugalBuild @@ -3,17 +3,14 @@ pkgname=libxpm _F_xorg_name=libXpm -pkgver=3.5.6 +pkgver=3.5.7 pkgrel=1 pkgdesc="X Pixmap Library" url="http://xorg.freedesktop.org" groups=('x11' 'xorg-core' 'xorg-libs') archs=('i686' 'x86_64') -depends=('libx11>=1.0.99.1' 'libxt>=1.0.3' 'libxext>=1.0.2') -makedepends=('pkgconfig' 'xproto' 'inputproto') -_F_xorg_nr=2 +depends=('libx11>=1.1.3' 'libxt>=1.0.5' 'libxext>=1.0.3') +makedepends=('pkgconfig' 'xproto>=7.0.11' 'inputproto>=1.4.2.1') Finclude xorg - -sha1sums=('870e29be101e9063963a31feab4adb662bd1ead9') - +sha1sums=('215208091051530867efae0a4c1cedb7385d5f0e') # optimization OK From krics at linuxforum.hu Sun Sep 9 01:17:54 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sun Sep 9 01:17:56 2007 Subject: [Frugalware-git] xorg73: libxaw-1.0.4-1-x86_64 Message-ID: <20070908231754.1E31813A42E2@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=852123d846c9515c9112b34f1ba11440b6c40bb5 commit 852123d846c9515c9112b34f1ba11440b6c40bb5 Author: Christian Hamar alias krix Date: Sun Sep 9 01:17:15 2007 +0200 libxaw-1.0.4-1-x86_64 * Version bump diff --git a/source/x11/libxaw/FrugalBuild b/source/x11/libxaw/FrugalBuild index 45e3f72..9e236d7 100644 --- a/source/x11/libxaw/FrugalBuild +++ b/source/x11/libxaw/FrugalBuild @@ -3,18 +3,16 @@ pkgname=libxaw _F_xorg_name=libXaw -pkgver=1.0.2 +pkgver=1.0.4 pkgrel=1 pkgdesc="X.Org Xaw library" url="http://xorg.freedesktop.org" groups=('x11' 'xorg-core' 'xorg-libs') archs=('i686' 'x86_64') -depends=('libx11' 'libxt' 'libxpm' 'libxmu' 'libxp') -makedepends=('pkgconfig' 'xproto' 'ed' 'printproto' 'inputproto') -_F_xorg_nr=1 +depends=('libx11>=1.1.3' 'libxt>=1.0.5' 'libxpm>=3.5.7' 'libxmu>=1.0.3-2' 'libxp>=1.0.0-2') +makedepends=('pkgconfig' 'xproto>=7.0.11' 'ed' 'printproto' 'inputproto>=1.4.2.1') Finclude xorg - Fconfopts="$Fconfopts --enable-xaw8 --enable-xprint" -sha1sums=('d15a520d714a4125fa550cfdb391f8a03cd3e26d') +sha1sums=('9bf93239e6329ec819b6bfd00455cc0efffac103') # optimization OK From krics at linuxforum.hu Sun Sep 9 01:19:51 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sun Sep 9 01:19:52 2007 Subject: [Frugalware-git] xorg73: libxcursor-1.1.9-1-x86_64 Message-ID: <20070908231951.E50E713A42E6@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=0400bed10b252fe97adf3a96298b1148ce07dda7 commit 0400bed10b252fe97adf3a96298b1148ce07dda7 Author: Christian Hamar alias krix Date: Sun Sep 9 01:19:29 2007 +0200 libxcursor-1.1.9-1-x86_64 * Version bump diff --git a/source/x11/libxcursor/FrugalBuild b/source/x11/libxcursor/FrugalBuild index 06fce82..9ce24e0 100644 --- a/source/x11/libxcursor/FrugalBuild +++ b/source/x11/libxcursor/FrugalBuild @@ -3,17 +3,14 @@ pkgname=libxcursor _F_xorg_name=libXcursor -pkgver=1.1.8 +pkgver=1.1.9 pkgrel=1 pkgdesc="X Cursor Library" url="http://xorg.freedesktop.org" groups=('x11' 'xorg-core' 'xorg-libs') archs=('i686' 'x86_64') -depends=('libx11>=1.0.99.1' 'libxfixes' 'libxrender>=0.9.2') -makedepends=('pkgconfig' 'xproto' 'inputproto') -_F_xorg_nr=2 +depends=('libx11>=1.1.3' 'libxfixes>=4.0.3-2' 'libxrender>=0.9.4') +makedepends=('pkgconfig' 'xproto>=7.0.11' 'inputproto>=1.4.2.1') Finclude xorg -sha1sums=('4600627d4d8a0edb7c10de17c67d8c082d12ddd7') - - +sha1sums=('61c5e8f34faee44ee50a3206f385aec720eb968c') # optimization OK From krics at linuxforum.hu Sun Sep 9 01:21:39 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sun Sep 9 01:21:41 2007 Subject: [Frugalware-git] xorg73: libxcomposite-0.4.0-1-x86_64 Message-ID: <20070908232139.E02A413A42E9@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=126060fdacc6437d33f4ffde72729629447ae447 commit 126060fdacc6437d33f4ffde72729629447ae447 Author: Christian Hamar alias krix Date: Sun Sep 9 01:21:17 2007 +0200 libxcomposite-0.4.0-1-x86_64 * Version bump diff --git a/source/x11/libxcomposite/FrugalBuild b/source/x11/libxcomposite/FrugalBuild index 9ac6117..ade1c5d 100644 --- a/source/x11/libxcomposite/FrugalBuild +++ b/source/x11/libxcomposite/FrugalBuild @@ -3,17 +3,14 @@ pkgname=libxcomposite _F_xorg_name=libXcomposite -pkgver=0.3.1 +pkgver=0.4.0 pkgrel=1 pkgdesc="X.Org XComposite library" url="http://xorg.freedesktop.org" groups=('x11' 'xorg-core' 'xorg-libs') archs=('i686' 'x86_64') -depends=('libx11>=1.1.1' 'libxfixes>=4.0.3' 'libxext' 'compositeproto>=0.3.1' 'xproto') -makedepends=('pkgconfig' 'inputproto>=1.3.2') -_F_xorg_nr=2 +depends=('libx11>=1.1.3' 'libxfixes>=4.0.3-2' 'libxext>=1.0.3' 'compositeproto>=0.4' 'xproto>=7.0.11') +makedepends=('pkgconfig' 'inputproto>=1.4.2.1') Finclude xorg - -sha1sums=('d5c7883f1d3a98e0fd055226b2a1d4b6ffe5ca54') - +sha1sums=('410529c07f654f47eb17c56b200cb977567b6b7b') # optimization OK From krics at linuxforum.hu Sun Sep 9 01:28:08 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sun Sep 9 01:28:10 2007 Subject: [Frugalware-git] xorg73: libwindowswm-1.0.0-2-x86_64 Message-ID: <20070908232808.5D56413A42ED@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=ec4f5e042eb1468c05596af518f7231a439a53eb commit ec4f5e042eb1468c05596af518f7231a439a53eb Author: Christian Hamar alias krix Date: Sun Sep 9 01:27:49 2007 +0200 libwindowswm-1.0.0-2-x86_64 * Release bump diff --git a/source/x11/libwindowswm/FrugalBuild b/source/x11/libwindowswm/FrugalBuild index 64501e0..6c8618c 100644 --- a/source/x11/libwindowswm/FrugalBuild +++ b/source/x11/libwindowswm/FrugalBuild @@ -4,16 +4,13 @@ pkgname=libwindowswm _F_xorg_name=libWindowsWM pkgver=1.0.0 -pkgrel=1 +pkgrel=2 pkgdesc="X.Org WindowsWM library" url="http://xorg.freedesktop.org" groups=('x11' 'xorg-core' 'xorg-libs') archs=('i686' 'x86_64') -depends=('libxext') -makedepends=('inputproto' 'xextproto' 'windowswmproto') -_F_xorg_nr=0 +depends=('libxext>=1.0.3') +makedepends=('inputproto>=1.4.2.1' 'xextproto' 'windowswmproto') Finclude xorg - sha1sums=('60d5b5b4676da90e67fae20c71c0688e522abb59') - # optimization OK From krics at linuxforum.hu Sun Sep 9 01:30:35 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sun Sep 9 01:30:36 2007 Subject: [Frugalware-git] xorg73: libxevie-1.0.2-2-x86_64 Message-ID: <20070908233035.D1F6513A42F0@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=4f4f8452ce95da48628ce487a3075518aa9dbffc commit 4f4f8452ce95da48628ce487a3075518aa9dbffc Author: Christian Hamar alias krix Date: Sun Sep 9 01:30:17 2007 +0200 libxevie-1.0.2-2-x86_64 * Release bump diff --git a/source/x11/libxevie/FrugalBuild b/source/x11/libxevie/FrugalBuild index 0b39a7e..345e0f1 100644 --- a/source/x11/libxevie/FrugalBuild +++ b/source/x11/libxevie/FrugalBuild @@ -4,16 +4,13 @@ pkgname=libxevie _F_xorg_name=libXevie pkgver=1.0.2 -pkgrel=1 +pkgrel=2 pkgdesc="X Event Interceptor Library" url="http://xorg.freedesktop.org" groups=('x11' 'xorg-core' 'xorg-libs') archs=('i686' 'x86_64') -depends=('libx11>=1.0.99.1' 'libxext>=1.0.2' 'xproto' 'evieext') -makedepends=('pkgconfig' 'xextproto' 'inputproto') -_F_xorg_nr=2 +depends=('libx11>=1.1.3' 'libxext>=1.0.3' 'xproto>=7.0.11' 'evieext') +makedepends=('pkgconfig' 'xextproto' 'inputproto>=1.4.2.1') Finclude xorg - sha1sums=('d22fd24d8f096fdff54d303d63fea1422f0cfeea') - # optimization OK From krics at linuxforum.hu Sun Sep 9 01:33:52 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sun Sep 9 01:33:53 2007 Subject: [Frugalware-git] xorg73: libxft-2.1.12-2-x86_64 Message-ID: <20070908233352.CAFA913A42F3@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=372b169bc61b14c58886e7950da8e27bace2471a commit 372b169bc61b14c58886e7950da8e27bace2471a Author: Christian Hamar alias krix Date: Sun Sep 9 01:33:33 2007 +0200 libxft-2.1.12-2-x86_64 * Release bump diff --git a/source/x11/libxft/FrugalBuild b/source/x11/libxft/FrugalBuild index 2d80d76..09a3eaf 100644 --- a/source/x11/libxft/FrugalBuild +++ b/source/x11/libxft/FrugalBuild @@ -4,15 +4,12 @@ pkgname=libxft _F_xorg_name=libXft pkgver=2.1.12 -pkgrel=1 +pkgrel=2 pkgdesc="X FreeType library" groups=('x11' 'xorg-core' 'xorg-libs') archs=('i686' 'x86_64') -depends=('libx11>=1.0.99.1' 'libxext>=1.0.2' 'libxrender>=0.9.2' 'freetype2>=2.3.1' 'fontconfig>=2.4.0') -makedepends=('pkgconfig' 'xproto' 'inputproto') -_F_xorg_nr=2 +depends=('libx11>=1.1.3' 'libxext>=1.0.3' 'libxrender>=0.9.4' 'freetype2' 'fontconfig') +makedepends=('pkgconfig' 'xproto>=7.0.11' 'inputproto>=1.4.2.1') Finclude xorg - - -sha1sums=('3a69ac386169f553aa6cd4099746de1310063a77') +sha1sums=('c55fb1b79e6e8459a343e4986f0607a438eff340') # optimization OK From krics at linuxforum.hu Sun Sep 9 01:36:12 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sun Sep 9 01:36:13 2007 Subject: [Frugalware-git] xorg73: libxprintutil-1.0.1-2-x86_64 Message-ID: <20070908233612.1D3A113A42F6@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=7ddc0b5e60cbb6afcddf1fb596c7d7287cc66ffe commit 7ddc0b5e60cbb6afcddf1fb596c7d7287cc66ffe Author: Christian Hamar alias krix Date: Sun Sep 9 01:35:54 2007 +0200 libxprintutil-1.0.1-2-x86_64 * Release bump diff --git a/source/x11/libxprintutil/FrugalBuild b/source/x11/libxprintutil/FrugalBuild index fd10795..3d5b0b8 100644 --- a/source/x11/libxprintutil/FrugalBuild +++ b/source/x11/libxprintutil/FrugalBuild @@ -4,16 +4,13 @@ pkgname=libxprintutil _F_xorg_name=libXprintUtil pkgver=1.0.1 -pkgrel=1 +pkgrel=2 pkgdesc="X.Org XprintUtil library" url="http://xorg.freedesktop.org" groups=('x11' 'xorg-core' 'xorg-libs') archs=('i686' 'x86_64') -depends=('libx11' 'libxp' 'libxt') -makedepends=('pkgconfig' 'inputproto') -_F_xorg_nr=0 +depends=('libx11>=1.1.3' 'libxp>=1.0.0-2' 'libxt>=1.0.5') +makedepends=('pkgconfig' 'inputproto>=1.4.2.1') Finclude xorg - sha1sums=('2e93e8c3d105c7f08b8dfb79ecdc641178e07b82') - # optimization OK From krics at linuxforum.hu Sun Sep 9 01:37:42 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sun Sep 9 01:37:43 2007 Subject: [Frugalware-git] xorg73: libxprintapputil-1.0.1-2-x86_64 Message-ID: <20070908233742.B6B2113A42F9@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=6b2ca7aa843db73d7fe067b9ef33a19006a4eced commit 6b2ca7aa843db73d7fe067b9ef33a19006a4eced Author: Christian Hamar alias krix Date: Sun Sep 9 01:37:24 2007 +0200 libxprintapputil-1.0.1-2-x86_64 * Release bump diff --git a/source/x11/libxprintapputil/FrugalBuild b/source/x11/libxprintapputil/FrugalBuild index c58294d..b57b040 100644 --- a/source/x11/libxprintapputil/FrugalBuild +++ b/source/x11/libxprintapputil/FrugalBuild @@ -4,16 +4,13 @@ pkgname=libxprintapputil _F_xorg_name=libXprintAppUtil pkgver=1.0.1 -pkgrel=1 +pkgrel=2 pkgdesc="X.Org XprintAppUtil library" url="http://xorg.freedesktop.org" groups=('x11' 'xorg-core' 'xorg-libs') archs=('i686' 'x86_64') -depends=('libx11' 'libxp' 'libxprintutil') -makedepends=('pkgconfig' 'inputproto') -_F_xorg_nr=0 +depends=('libx11>=1.1.3' 'libxp>=1.0.0-2' 'libxprintutil>=1.0.1-2') +makedepends=('pkgconfig' 'inputproto>=1.4.2.1') Finclude xorg - sha1sums=('6391b4a018189b49e31eda0fe76b3daf92b447ec') - # optimization OK From krics at linuxforum.hu Sun Sep 9 01:45:04 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sun Sep 9 01:45:06 2007 Subject: [Frugalware-git] xorg73: listres-1.0.1-2-x86_64 Message-ID: <20070908234504.B54D113A42FC@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=5d2016422e54c32c662f7b3e827a9759cf4c5615 commit 5d2016422e54c32c662f7b3e827a9759cf4c5615 Author: Christian Hamar alias krix Date: Sun Sep 9 01:44:48 2007 +0200 listres-1.0.1-2-x86_64 * Release bump diff --git a/source/x11/listres/FrugalBuild b/source/x11/listres/FrugalBuild index 97c67df..be01f64 100644 --- a/source/x11/listres/FrugalBuild +++ b/source/x11/listres/FrugalBuild @@ -3,21 +3,15 @@ pkgname=listres pkgver=1.0.1 -pkgrel=1 +pkgrel=2 pkgdesc="X.Org listres application" url="http://xorg.freedesktop.org" groups=('x11' 'xorg-core' 'xorg-apps') archs=('i686' 'x86_64') -depends=('libx11' 'libxt' 'libxmu' 'libxaw' 'libxp') -_F_xorg_nr=0 +depends=('libx11>=1.1.3' 'libxt>=1.0.5' 'libxmu>=1.0.3-2' 'libxaw>=1.0.4' 'libxp>=1.0.0-2') +makedepends=('inputproto>=1.4.2.1') Finclude xorg - -build() { - Fbuild --enable-xprint -} - -# optimalization OK - -# vim: ft=sh +Fconfopts="$Fconfopts --enable-xprint" sha1sums=('389bd1dfa099746aeb7e31cb46dcfca18ad53c2e') -makedepends=('inputproto') + +# optimization OK From krics at linuxforum.hu Sun Sep 9 01:47:45 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sun Sep 9 01:47:48 2007 Subject: [Frugalware-git] xorg73: luit-1.0.2-2-x86_64 Message-ID: <20070908234745.B748D13A42FF@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=185a9bd1abc2883e0836df447b87807f81b42fed commit 185a9bd1abc2883e0836df447b87807f81b42fed Author: Christian Hamar alias krix Date: Sun Sep 9 01:47:29 2007 +0200 luit-1.0.2-2-x86_64 * Release bump diff --git a/source/x11/luit/FrugalBuild b/source/x11/luit/FrugalBuild index 1eba135..9f915f7 100644 --- a/source/x11/luit/FrugalBuild +++ b/source/x11/luit/FrugalBuild @@ -3,15 +3,13 @@ pkgname=luit pkgver=1.0.2 -pkgrel=1 +pkgrel=2 pkgdesc="X.Org luit application" url="http://xorg.freedesktop.org" groups=('x11' 'xorg-core' 'xorg-apps') archs=('i686' 'x86_64') -depends=('libx11>=1.1.1' 'libfontenc') -makedepends=('inputproto') -_F_xorg_nr=2 +depends=('libx11>=1.1.3' 'libfontenc>=1.0.4-2') +makedepends=('inputproto>=1.4.2.1') Finclude xorg sha1sums=('0b811edc2b1cf11716cb24c468613622e72ebf35') - # optimization OK From krics at linuxforum.hu Sun Sep 9 01:50:46 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sun Sep 9 01:50:47 2007 Subject: [Frugalware-git] xorg73: makedepend-1.0.1-1-x86_64 Message-ID: <20070908235046.6527813A4302@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=ccf5c8dedb04800a9bed7029e07be1b5bcc5cb73 commit ccf5c8dedb04800a9bed7029e07be1b5bcc5cb73 Author: Christian Hamar alias krix Date: Sun Sep 9 01:50:29 2007 +0200 makedepend-1.0.1-1-x86_64 * Version bump diff --git a/source/x11/makedepend/FrugalBuild b/source/x11/makedepend/FrugalBuild index bdda8f2..64fce63 100644 --- a/source/x11/makedepend/FrugalBuild +++ b/source/x11/makedepend/FrugalBuild @@ -2,16 +2,16 @@ # Maintainer: Christian Hamar alias krix pkgname=makedepend -pkgver=1.0.0 +pkgver=1.0.1 pkgrel=1 pkgdesc="X.Org makedepend utility" url="http://xorg.freedesktop.org" groups=('x11' 'xorg-core' 'xorg-util') archs=('i686' 'x86_64') depends=() -makedepends=('pkgconfig' 'xproto') -_F_xorg_nr=0 +makedepends=('pkgconfig' 'xproto>=7.0.11') Finclude xorg -sha1sums=('27c290d5922d535fc450ff1b18d6222f4bb2c94d') - +sha1sums=('c795cdc754d8c9c73e6a310e41eab37c5ab867bf') # optimalization OK + +# optimization OK From krics at linuxforum.hu Sun Sep 9 01:55:26 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sun Sep 9 01:55:27 2007 Subject: [Frugalware-git] xorg73: mkcomposecache-1.2-2-x86_64 Message-ID: <20070908235526.63AA213A4302@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=a48bf263ca047db2661e20c136dbd88c1793aa1d commit a48bf263ca047db2661e20c136dbd88c1793aa1d Author: Christian Hamar alias krix Date: Sun Sep 9 01:54:16 2007 +0200 mkcomposecache-1.2-2-x86_64 * Release bump diff --git a/source/x11/mkcomposecache/FrugalBuild b/source/x11/mkcomposecache/FrugalBuild index 4affe35..5648c4c 100644 --- a/source/x11/mkcomposecache/FrugalBuild +++ b/source/x11/mkcomposecache/FrugalBuild @@ -3,11 +3,12 @@ pkgname=mkcomposecache pkgver=1.2 -pkgrel=1 +pkgrel=2 pkgdesc="X.Org mkcomposecache application" groups=('x11' 'xorg-core' 'xorg-apps') archs=('i686' 'x86_64') -depends=('libx11') +depends=('libx11>=1.1.3') +_F_xorg_ind=1 Finclude xorg _F_cd_path="$pkgname-$pkgver" sha1sums=('fcca7f079e42f54f43c9e5a1781acf1ae31c9862') From vmiklos at frugalware.org Sun Sep 9 01:57:07 2007 From: vmiklos at frugalware.org (VMiklos) Date: Sun Sep 9 01:57:08 2007 Subject: [Frugalware-git] pacman-g2: _pacman_downloadfiles_forreal(): don't use mktime() on fmtime1 directly, it would corrupt it Message-ID: <20070908235707.1862A13A430C@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=pacman-g2.git;a=commitdiff;h=4a2a209922015897f3fed7e6775ff157adbf5324 commit 4a2a209922015897f3fed7e6775ff157adbf5324 Author: VMiklos Date: Sun Sep 9 01:46:39 2007 +0200 _pacman_downloadfiles_forreal(): don't use mktime() on fmtime1 directly, it would corrupt it diff --git a/lib/libpacman/server.c b/lib/libpacman/server.c index 672fccf..627f4c7 100644 --- a/lib/libpacman/server.c +++ b/lib/libpacman/server.c @@ -457,7 +457,8 @@ int _pacman_downloadfiles_forreal(pmlist_t *servers, const char *localpath, tmref.tm_mday = 1; tref = mktime(&tmref); /* then we compute the difference with mtime1 */ - t = mktime(&fmtime1); + memcpy(&tmref, &fmtime1, sizeof(struct tm)); + t = mktime(&tmref); diff = ((t-tref)/3600/24)%7; fmtime1.tm_wday = diff+(diff >= 3 ? -3 : 4); From vmiklos at frugalware.org Sun Sep 9 01:57:07 2007 From: vmiklos at frugalware.org (VMiklos) Date: Sun Sep 9 01:57:09 2007 Subject: [Frugalware-git] pacman-g2: HttpGet(): using strftime()'s localized output is not a good idea Message-ID: <20070908235707.585D013A430D@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=pacman-g2.git;a=commitdiff;h=397259cdf9f73a1f900db2dc843da23b24bcb523 commit 397259cdf9f73a1f900db2dc843da23b24bcb523 Author: VMiklos Date: Sun Sep 9 01:55:00 2007 +0200 HttpGet(): using strftime()'s localized output is not a good idea diff --git a/lib/libftp/ftplib.c b/lib/libftp/ftplib.c index e585c05..d5ffa17 100644 --- a/lib/libftp/ftplib.c +++ b/lib/libftp/ftplib.c @@ -49,6 +49,7 @@ #elif defined(_WIN32) #include #endif +#include #define BUILDING_LIBRARY #include "ftplib.h" @@ -1524,11 +1525,16 @@ GLOBALREF int HttpGet(const char *host, const char *outputfile, const char *path sprintf(buf, "%sRange: bytes=%d-\r\n", buf, offset); if (mtime1 && mtime1->tm_year) { - char mtime[256]; + char mtime[256], lang[256]; /* Format: - * "If-Modified-Since: Sat, 29 Oct 1994 19:43:31 GMT\r\n" */ + * "If-Modified-Since: Sat, 29 Oct 1994 19:43:31 GMT\r\n" + * We don't like strftime()'s localized output. */ + snprintf(lang, 255, setlocale(LC_ALL, NULL)); + setlocale(LC_ALL, "C"); strftime(mtime, sizeof(mtime), "%a, %d %b %Y %H:%M:%S GMT", mtime1); + setlocale(LC_ALL, lang); sprintf(buf, "%sIf-Modified-Since: %s\r\n", buf, mtime); + printf("mtime: '%s'\n", mtime); } if(strlen(buf)+3 > sizeof(buf)) return(0); From vmiklos at frugalware.org Sun Sep 9 01:58:52 2007 From: vmiklos at frugalware.org (VMiklos) Date: Sun Sep 9 01:58:54 2007 Subject: [Frugalware-git] pacman-g2: HttpGet(): oops, forgot to remove a debug message Message-ID: <20070908235853.0095213A432E@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=pacman-g2.git;a=commitdiff;h=093c370a52ec263cfff7281d09dccac0d0eaeb3f commit 093c370a52ec263cfff7281d09dccac0d0eaeb3f Author: VMiklos Date: Sun Sep 9 01:56:15 2007 +0200 HttpGet(): oops, forgot to remove a debug message diff --git a/lib/libftp/ftplib.c b/lib/libftp/ftplib.c index d5ffa17..a80030e 100644 --- a/lib/libftp/ftplib.c +++ b/lib/libftp/ftplib.c @@ -1534,7 +1534,6 @@ GLOBALREF int HttpGet(const char *host, const char *outputfile, const char *path strftime(mtime, sizeof(mtime), "%a, %d %b %Y %H:%M:%S GMT", mtime1); setlocale(LC_ALL, lang); sprintf(buf, "%sIf-Modified-Since: %s\r\n", buf, mtime); - printf("mtime: '%s'\n", mtime); } if(strlen(buf)+3 > sizeof(buf)) return(0); From krics at linuxforum.hu Sun Sep 9 02:02:00 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sun Sep 9 02:02:00 2007 Subject: [Frugalware-git] xorg73: mkfontscale-1.0.3-3-x86_64 Message-ID: <20070909000200.349D613A4331@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=5219313fb5ccba0a757b7444dbb75cd57eae1ff2 commit 5219313fb5ccba0a757b7444dbb75cd57eae1ff2 Author: Christian Hamar alias krix Date: Sun Sep 9 02:01:43 2007 +0200 mkfontscale-1.0.3-3-x86_64 * Release bump diff --git a/source/x11/mkfontscale/FrugalBuild b/source/x11/mkfontscale/FrugalBuild index 1c7d8f2..dfb2a88 100644 --- a/source/x11/mkfontscale/FrugalBuild +++ b/source/x11/mkfontscale/FrugalBuild @@ -3,15 +3,13 @@ pkgname=mkfontscale pkgver=1.0.3 -pkgrel=2 +pkgrel=3 pkgdesc="Create an index of scalable font files for X" url="http://xorg.freedesktop.org" groups=('x11' 'xorg-core' 'xorg-apps') archs=('i686' 'x86_64') -depends=('freetype2>=2.3.1' 'libfontenc>=1.0.4') -makedepends=('inputproto' 'xproto') -_F_xorg_nr=2 +depends=('freetype2' 'libfontenc>=1.0.4-2') +makedepends=('inputproto>=1.4.2.1' 'xproto>=7.0.11') Finclude xorg - -sha1sums=('361c638794da5afc3a6762705b48fbb5245e9ced') +sha1sums=('f635e66e8fc214a52c29c7fcb459fb65ba4ce1e4') # optimization OK From vmiklos at frugalware.org Sun Sep 9 02:07:31 2007 From: vmiklos at frugalware.org (VMiklos) Date: Sun Sep 9 02:07:33 2007 Subject: [Frugalware-git] pacman-tools: dg: run 'git fetch' after push Message-ID: <20070909000731.A82C513A4334@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=pacman-tools.git;a=commitdiff;h=9a0979ed2f29f9df892c6aef3855782819e6210b commit 9a0979ed2f29f9df892c6aef3855782819e6210b Author: VMiklos Date: Sun Sep 9 02:05:30 2007 +0200 dg: run 'git fetch' after push not before the next one, so that dg push will be possible offline diff --git a/darcs-git.py b/darcs-git.py index 6a32213..25f39fb 100755 --- a/darcs-git.py +++ b/darcs-git.py @@ -538,7 +538,6 @@ Options: options.gitopts = " ".join(argv[optind:]) if options.help: usage(0) - os.system("git fetch") sock = os.popen("git log origin/master..master --no-merges 2>&1") lines = sock.readlines() ret = sock.close() @@ -555,6 +554,7 @@ Options: sys.exit(0) print "Invalid response, try again!" ret = os.system("git push %s" % options.gitopts) + os.system("git fetch") if ret: sys.exit(1) From krics at linuxforum.hu Sun Sep 9 02:24:36 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sun Sep 9 02:24:38 2007 Subject: [Frugalware-git] xorg73: mkfontdir-1.0.3-1-x86_64 Message-ID: <20070909002436.91AD013A4158@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=0dd549c1ecbf25a3d554cb9689fc1e3ab14b369d commit 0dd549c1ecbf25a3d554cb9689fc1e3ab14b369d Author: Christian Hamar alias krix Date: Sun Sep 9 02:24:19 2007 +0200 mkfontdir-1.0.3-1-x86_64 * Version bump diff --git a/source/x11/mkfontdir/FrugalBuild b/source/x11/mkfontdir/FrugalBuild index c26b043..c727356 100644 --- a/source/x11/mkfontdir/FrugalBuild +++ b/source/x11/mkfontdir/FrugalBuild @@ -2,16 +2,13 @@ # Maintainer: Christian Hamar alias krix pkgname=mkfontdir -pkgver=1.0.2 +pkgver=1.0.3 pkgrel=1 pkgdesc="X.Org mkfontdir application" url="http://xorg.freedesktop.org" groups=('x11' 'xorg-core' 'xorg-apps') archs=('i686' 'x86_64') -depends=('mkfontscale') -_F_xorg_nr=1 +depends=('mkfontscale>=1.0.3-3') Finclude xorg - +sha1sums=('cb0afde150af5957d67f921673dbaed3402978d1') # optimalization OK - -sha1sums=('f7e243cd26bacb9c5000eaf1595bb6c7b8bafb14') From krics at linuxforum.hu Sun Sep 9 02:27:35 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sun Sep 9 02:27:36 2007 Subject: [Frugalware-git] xorg73: rgb-1.0.1-2-x86_64 Message-ID: <20070909002735.153FB13A4158@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=cd681afa993cd988e5460b11b046da9f67eb2306 commit cd681afa993cd988e5460b11b046da9f67eb2306 Author: Christian Hamar alias krix Date: Sun Sep 9 02:27:18 2007 +0200 rgb-1.0.1-2-x86_64 * Release bump diff --git a/source/x11/rgb/FrugalBuild b/source/x11/rgb/FrugalBuild index 4296f22..e38e786 100644 --- a/source/x11/rgb/FrugalBuild +++ b/source/x11/rgb/FrugalBuild @@ -3,15 +3,13 @@ pkgname=rgb pkgver=1.0.1 -pkgrel=1 +pkgrel=2 pkgdesc="X.Org rgb application" url="http://xorg.freedesktop.org" groups=('x11' 'xorg-core' 'xorg-apps') archs=('i686' 'x86_64') depends=() -makedepends=('inputproto' 'xproto') -_F_xorg_nr=1 +makedepends=('inputproto>=1.4.2.1' 'xproto>=7.0.11') Finclude xorg sha1sums=('004e9d7359f0fd1742710c35bcae3eaf9917839f') - # optimization OK From krics at linuxforum.hu Sun Sep 9 02:30:21 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sun Sep 9 02:30:24 2007 Subject: [Frugalware-git] xorg73: sessreg-1.0.3-1-x86_64 Message-ID: <20070909003021.B210613A4158@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=dfb095376b7c03e004193af1ffee8fa8bc13a3db commit dfb095376b7c03e004193af1ffee8fa8bc13a3db Author: Christian Hamar alias krix Date: Sun Sep 9 02:30:04 2007 +0200 sessreg-1.0.3-1-x86_64 * Version bump diff --git a/source/x11/sessreg/FrugalBuild b/source/x11/sessreg/FrugalBuild index dcb3ca0..2eea973 100644 --- a/source/x11/sessreg/FrugalBuild +++ b/source/x11/sessreg/FrugalBuild @@ -2,16 +2,15 @@ # Maintainer: Christian Hamar alias krix pkgname=sessreg -pkgver=1.0.2 +pkgver=1.0.3 pkgrel=1 pkgdesc="X.Org sessreg application" url="http://xorg.freedesktop.org" groups=('x11' 'xorg-core' 'xorg-apps') archs=('i686' 'x86_64') depends=() -makedepends=('xproto' 'inputproto' 'libx11>=1.1.1' 'util-macros>=1.1.3') -_F_xorg_nr=2 +makedepends=('xproto>=7.0.11' 'inputproto>=1.4.2.1' 'libx11>=1.1.3' 'util-macros>=1.1.5-2') Finclude xorg -sha1sums=('2f2a36967ecffb29461ae28def3b013955e584dd') +sha1sums=('cdebc8cc176b16c05f34b5dd1eaca710bda0e5be') # optimization OK From krics at linuxforum.hu Sun Sep 9 02:34:03 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sun Sep 9 02:34:05 2007 Subject: [Frugalware-git] xorg73: setxkbmap-1.0.4-1-x86_64 Message-ID: <20070909003403.59D9213A4158@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=aef493bc21c259b7083a8ad98c14795fed2725b9 commit aef493bc21c259b7083a8ad98c14795fed2725b9 Author: Christian Hamar alias krix Date: Sun Sep 9 02:33:44 2007 +0200 setxkbmap-1.0.4-1-x86_64 * Version bump diff --git a/source/x11/setxkbmap/FrugalBuild b/source/x11/setxkbmap/FrugalBuild index 1444f1c..8ff429d 100644 --- a/source/x11/setxkbmap/FrugalBuild +++ b/source/x11/setxkbmap/FrugalBuild @@ -2,17 +2,15 @@ # Maintainer: Christian Hamar alias krix pkgname=setxkbmap -pkgver=1.0.3 -pkgrel=2 +pkgver=1.0.4 +pkgrel=1 pkgdesc="X.Org setxkbmap application" url="http://xorg.freedesktop.org" groups=('x11' 'xorg-core' 'xorg-apps') archs=('i686' 'x86_64') -depends=('libx11>=1.1.1' 'libxkbfile') -_F_xorg_nr=2 +depends=('libx11>=1.1.3' 'libxkbfile>=1.0.4-2') Finclude xorg -makedepends=('inputproto') -sha1sums=('0e11546b3cedd8ba53a753685b60be15cf34316a') +makedepends=('inputproto>=1.4.2.1') +sha1sums=('fa5eaae6804d3ee7fe5c1a95902eb0737facfb82') Fconfopts="$Fconfopts --with-xkb-config-root=/usr/lib/X11/xkb" - # optimization OK From vmiklos at frugalware.org Sun Sep 9 02:46:49 2007 From: vmiklos at frugalware.org (VMiklos) Date: Sun Sep 9 02:46:49 2007 Subject: [Frugalware-git] pacman-g2: log_progress(): fix progressbar for small files Message-ID: <20070909004649.403E613A4158@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=pacman-g2.git;a=commitdiff;h=928a3aecb15845c19b664e9f10b75db3be73f6ee commit 928a3aecb15845c19b664e9f10b75db3be73f6ee Author: VMiklos Date: Sun Sep 9 02:44:35 2007 +0200 log_progress(): fix progressbar for small files the problem is the following: for small files libftp never calls the progressbar callback, so we call it once in libpacman when it's completed. for big files this means it's called twice with 100%. now we compare the filenames, too - this way there will be no duplicated newlines but at least one line is printed. till now for small files no line was printed diff --git a/src/pacman-g2/download.c b/src/pacman-g2/download.c index 6a3b6ff..703e579 100644 --- a/src/pacman-g2/download.c +++ b/src/pacman-g2/download.c @@ -67,13 +67,18 @@ int log_progress(PM_NETBUF *ctl, int xfered, void *arg) static unsigned short mouth; static unsigned int lastcur = 0; unsigned int maxpkglen; + static char prev_fnm[DLFNM_PROGRESS_LEN+1]=""; /* we don't need that parameter */ ctl=NULL; - if(config->noprogressbar || (pct == 100 && lastpct == 100)) { + if(strcmp(prev_fnm, sync_fnm) && lastpct == 100) { + lastpct = 0; + } + else if(config->noprogressbar || (!strcmp(prev_fnm, sync_fnm) && pct == 100 && lastpct == 100)) { return(1); } + snprintf(prev_fnm, DLFNM_PROGRESS_LEN, "%s", sync_fnm); pacman_get_option(PM_OPT_CHOMP, (long *)&chomp); From vmiklos at frugalware.org Sun Sep 9 02:55:30 2007 From: vmiklos at frugalware.org (VMiklos) Date: Sun Sep 9 02:55:32 2007 Subject: [Frugalware-git] bmf: pacman-g2-3.6.2.10.g928a3ae-1-i686 Message-ID: <20070909005530.89BC713A4158@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=bmf.git;a=commitdiff;h=9d9f609b869f0c9a3a8f499fe055936789c0d262 commit 9d9f609b869f0c9a3a8f499fe055936789c0d262 Author: VMiklos Date: Sun Sep 9 02:55:25 2007 +0200 pacman-g2-3.6.2.10.g928a3ae-1-i686 bump, 5 new patches diff --git a/source/base/pacman-g2/FrugalBuild b/source/base/pacman-g2/FrugalBuild index 238abb9..86d2ef4 100644 --- a/source/base/pacman-g2/FrugalBuild +++ b/source/base/pacman-g2/FrugalBuild @@ -5,7 +5,7 @@ USE_DEVEL=${USE_DEVEL:-"y"} pkgname=pacman-g2 pkgver=3.6.2 -Fuse $USE_DEVEL && pkgver=3.6.2.5.g4c7e030 +Fuse $USE_DEVEL && pkgver=3.6.2.10.g928a3ae pkgrel=1 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/" From voroskoi at frugalware.org Sun Sep 9 10:13:04 2007 From: voroskoi at frugalware.org (voroskoi) Date: Sun Sep 9 10:13:06 2007 Subject: [Frugalware-git] frugalware-current: chicken-2.705-1-i686 Message-ID: <20070909081304.2465113A42E9@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=20ce4d0e5144b4a5fad3bf8d172fb36bb2e0505d commit 20ce4d0e5144b4a5fad3bf8d172fb36bb2e0505d Author: voroskoi Date: Sun Sep 9 09:58:37 2007 +0200 chicken-2.705-1-i686 version bump updated depends() added build() diff --git a/source/devel-extra/chicken/FrugalBuild b/source/devel-extra/chicken/FrugalBuild index d443a07..b523374 100644 --- a/source/devel-extra/chicken/FrugalBuild +++ b/source/devel-extra/chicken/FrugalBuild @@ -3,15 +3,22 @@ # Maintainer: voroskoi pkgname=chicken -pkgver=2.6 +pkgver=2.705 pkgrel=1 pkgdesc="A compiler for Scheme, which produces portable, efficient C." url="http://www.call-with-current-continuation.org/" -depends=('glibc' 'pcre') +depends=('glibc') groups=('devel-extra') archs=('i686' 'x86_64' 'ppc') -up2date="lynx -dump $url |grep -m1 'chicken-\(.*\).tar.gz'|sed 's/.*-\(.*\).t.*/\1/'" -source=($url/$pkgname-$pkgver.tar.gz) -sha1sums=('4010d21db1b0d2df3b3ab392503be4bb19073bbd') +up2date="lynx -dump http://chicken.wiki.br/dev-snapshots/current/ |Flasttar" +source=(http://chicken.wiki.br/dev-snapshots/current/$pkgname-$pkgver.tar.gz) +sha1sums=('1636d96b1f97020e8e32052efb384d61f8edebc8') + +build() { + Fsed '-Os' "$CFLAGS" Makefile.linux + make PLATFORM=linux PREFIX=$Fprefix || Fdie + make PLATFORM=linux PREFIX=$Fprefix DESTDIR=$Fdestdir/$Fprefix install || Fdie + Frm /usr/share/info +} # optimization OK From voroskoi at frugalware.org Sun Sep 9 10:38:02 2007 From: voroskoi at frugalware.org (voroskoi) Date: Sun Sep 9 10:38:03 2007 Subject: [Frugalware-git] frugalware-current: libpng-1.2.20-1-i686 Message-ID: <20070909083802.D249013A42E9@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=5380a8a58d4ab49e62523d0254238e65a65508b9 commit 5380a8a58d4ab49e62523d0254238e65a65508b9 Author: voroskoi Date: Sun Sep 9 10:31:33 2007 +0200 libpng-1.2.20-1-i686 version bump diff --git a/source/lib/libpng/FrugalBuild b/source/lib/libpng/FrugalBuild index 47bcef5..f8a7b72 100644 --- a/source/lib/libpng/FrugalBuild +++ b/source/lib/libpng/FrugalBuild @@ -3,7 +3,7 @@ # Maintainer: voroskoi pkgname=libpng -pkgver=1.2.19 +pkgver=1.2.20 pkgrel=1 pkgdesc="A collection of routines used to create PNG format graphics files" url="http://www.libpng.org/" @@ -19,7 +19,7 @@ build() { ./autogen.sh || Fdie Fbuild } -sha1sums=('681e94e43d2799715b7888fb495200f9b204849a' \ +sha1sums=('3fc27faf224ea31a43771c214f2f903ea2e98b0d' \ '2bb13a8eb62115998ab628948cab4f905dc5289e') # optimization OK From voroskoi at frugalware.org Sun Sep 9 10:58:20 2007 From: voroskoi at frugalware.org (voroskoi) Date: Sun Sep 9 10:58:23 2007 Subject: [Frugalware-git] frugalware-current: chicken-2.705-1-x86_64 Message-ID: <20070909085820.F32E513A42E9@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=72c6a91bc18628ca661b7d3cec3ce6121ffea482 commit 72c6a91bc18628ca661b7d3cec3ce6121ffea482 Author: voroskoi Date: Sun Sep 9 10:57:27 2007 +0200 chicken-2.705-1-x86_64 fixed build() and sha1sum diff --git a/source/devel-extra/chicken/FrugalBuild b/source/devel-extra/chicken/FrugalBuild index b523374..bddcb02 100644 --- a/source/devel-extra/chicken/FrugalBuild +++ b/source/devel-extra/chicken/FrugalBuild @@ -12,9 +12,10 @@ groups=('devel-extra') archs=('i686' 'x86_64' 'ppc') up2date="lynx -dump http://chicken.wiki.br/dev-snapshots/current/ |Flasttar" source=(http://chicken.wiki.br/dev-snapshots/current/$pkgname-$pkgver.tar.gz) -sha1sums=('1636d96b1f97020e8e32052efb384d61f8edebc8') +sha1sums=('89fa947dbcb49892e49c8497398c49212d8b628e') build() { + unset MAKEFLAGS Fsed '-Os' "$CFLAGS" Makefile.linux make PLATFORM=linux PREFIX=$Fprefix || Fdie make PLATFORM=linux PREFIX=$Fprefix DESTDIR=$Fdestdir/$Fprefix install || Fdie From boobaa at frugalware.org Sun Sep 9 10:59:20 2007 From: boobaa at frugalware.org (CSÉCSY László) Date: Sun Sep 9 10:59:22 2007 Subject: [Frugalware-git] frugalware-current: wordpress-2.2.3-1-i686 Message-ID: <20070909085920.6715B13A42E9@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=d780ff13611201029e1b82161f2d6fc727e28d47 commit d780ff13611201029e1b82161f2d6fc727e28d47 Author: CSÉCSY László Date: Sun Sep 9 10:58:45 2007 +0200 wordpress-2.2.3-1-i686 version bump closes #2398 in -current diff --git a/source/network-extra/wordpress/FrugalBuild b/source/network-extra/wordpress/FrugalBuild index 00d69a0..57adeb6 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.2.2 +pkgver=2.2.3 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 } # optimization OK - noarch -sha1sums=('2ab690dea011f9addcda18ef6579cdc93b7af3fc') +sha1sums=('171ed6bba94301406cb94b725d2f9ecca6cefecc') From boobaa at frugalware.org Sun Sep 9 11:20:54 2007 From: boobaa at frugalware.org (CSÉCSY László) Date: Sun Sep 9 11:20:57 2007 Subject: [Frugalware-git] frugalware-current: postgrey-1.31-1-i686 Message-ID: <20070909092054.49E6413A42E9@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=9b1afbbf63d5d7a9efe19513faf1b83fb70997ec commit 9b1afbbf63d5d7a9efe19513faf1b83fb70997ec Author: CSÉCSY László Date: Sun Sep 9 11:20:44 2007 +0200 postgrey-1.31-1-i686 version bump reworked FB, now we ship upstream's ${pkgname}_whitelist_{cl,recip}ients diff --git a/source/network-extra/postgrey/FrugalBuild b/source/network-extra/postgrey/FrugalBuild index b70358f..3dcb3c2 100644 --- a/source/network-extra/postgrey/FrugalBuild +++ b/source/network-extra/postgrey/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: CSÉCSY László pkgname=postgrey -pkgver=1.30 +pkgver=1.31 pkgrel=1 pkgdesc="a Postfix policy server implementing greylisting" url="http://isg.ee.ethz.ch/tools/postgrey/" @@ -11,8 +11,8 @@ groups=('network-extra') archs=('i686' 'x86_64') up2date="lynx -dump http://isg.ee.ethz.ch/tools/$pkgname/pub/ | grep 'http.*tar\.gz' | sed 's/.*-\(.*\)\.t.*/\1/'" source=(http://isg.ee.ethz.ch/tools/$pkgname/pub/$pkgname-$pkgver.tar.gz \ - rc.$pkgname rc.$pkgname-hu.po README.Frugalware $pkgname \ - ${pkgname}_whitelist_clients ${pkgname}_whitelist_recipients) + rc.$pkgname rc.$pkgname-hu.po README.Frugalware $pkgname) +backup=(/etc/postfix/${pkgname}_whitelist_clients /etc/postfix/${pkgname}_whitelist_recipients) build() { @@ -22,19 +22,18 @@ build() chown 109 $Fdestdir/var/spool/postfix/$pkgname chmod 0700 $Fdestdir/var/spool/postfix/$pkgname Fcd $pkgname-$pkgver - Ffile /etc/postfix/${pkgname}_whitelist_clients - Ffile /etc/postfix/${pkgname}_whitelist_recipients -# Fdoc Changes + Ffile $pkgname-$pkgver/${pkgname}_whitelist_clients /etc/postfix/${pkgname}_whitelist_clients + Ffile $pkgname-$pkgver/${pkgname}_whitelist_recipients /etc/postfix/${pkgname}_whitelist_recipients + Fdoc $pkgname-$pkgver/{Changes,README} Fexerel /usr/sbin/$pkgname +# Fexerel /usr/sbin/policy-test Fexerel contrib/${pkgname}report usr/bin/ Ffile /etc/sysconfig/postgrey Frcd2 $pkgname } # optimization OK - noarch -sha1sums=('83a18df994bdc521b4c67480db8ead77a1590aab'\ +sha1sums=('198ba4ebb84be87f189a336bceaa81c22049c697'\ '74b36884ccc3935dc84e662500e72efbe0748d81'\ 'b078a79443d0807456483f33f64c2ee86bf7367a'\ '3d5691e5021265ac1667b2254558ca0388e61d9d'\ - '86f3c5c775bda976657b7851c1c35e4ac6711da0'\ - '0401b096b483fe2409729db2f603ee7296241912'\ - '6d451aa84d253c1d3f028414f1ea836fffdb4527') + '86f3c5c775bda976657b7851c1c35e4ac6711da0') diff --git a/source/network-extra/postgrey/postgrey_whitelist_clients b/source/network-extra/postgrey/postgrey_whitelist_clients deleted file mode 100644 index 8677f1e..0000000 --- a/source/network-extra/postgrey/postgrey_whitelist_clients +++ /dev/null @@ -1,77 +0,0 @@ -# postgrey whitelist for mail client hostnames -# -------------------------------------------- -# put this file in /etc/postfix or specify its path -# with --whitelist-clients=xxx - -# greylisting.org: Southwest Airlines (unique sender, no retry) -southwest.com -# greylisting.org: Yahoo Groups servers (no retry) -scd.yahoo.com -# greylisting.org: isp.belgacom.be (wierd retry pattern) -isp.belgacom.be -# greylisting.org: Ameritrade (no retry) -ameritradeinfo.com -# greylisting.org: Amazon.com (unique sender with letters) -amazon.com -# 2004-05-20: Linux kernel mailing-list (unique sender with letters) -vger.kernel.org -# 2004-06-02: karger.ch, no retry -karger.ch -# 2004-06-02: lilys.ch, (slow: 4 hours) -server-x001.hostpoint.ch -# 2004-06-09: roche.com (no retry) -gw.bas.roche.com -# 2004-06-09: newsletter (no retry) -mail.hhlaw.com -# 2004-06-09: no retry (reported by Ralph Hildebrandt) -prd051.appliedbiosystems.com -# 2004-06-17: swissre.com (no retry) -swissre.com -# 2004-06-17: dowjones.com newsletter (unique sender with letters) -returns.dowjones.com -# 2004-06-18: switch.ch (works but personnel is confused by the error) -domin.switch.ch -# 2004-06-23: accor-hotels.com (slow: 6 hours) -accor-hotels.com -# 2004-06-29: rr.com (no retry, reported by Duncan Hill) -/^ms-smtp.*\.rr\.com$/ -# 2004-06-29: cox.net (no retry, reported by Duncan Hill) -/^lake.*mta.*\.cox\.net$/ -# 2004-06-29: motorola.com (no retry) -mot.com -# 2004-07-01: nic.fr (address verification, reported by Arnaud Launay) -nic.fr -# 2004-07-01: verizon.net (address verification, reported by Bill Moran and Eric) -/^sc\d+pub\.verizon\.net$/ -# 2004-07-02: cs.columbia.edu (no retry) -cs.columbia.edu -# 2004-07-02: papersinvited.com (no retry) -66.216.126.174 -# 2004-07-02: telekom.de (slow: 6 hours) -/^mail\d+\.telekom\.de$/ -# 2004-07-04: tiscali.dk (slow: 12 hours, reported by Klaus Alexander Seistrup) -/^smtp\d+\.tiscali\.dk$/ -# 2004-07-04: freshmeat.net (address verification) -freshmeat.net -# 2004-07-11: zd-swx.com (unique sender with letters, reported by Bill Landry) -zd-swx.com -# 2004-07-11: lockergnome.wc09.net (unique sender with letters, reported by Bill Landry) -lockergnome.wc09.net -# 2004-07-19: mxlogic.net (no retry, reported by Eric) -p01m168.mxlogic.net -p02m169.mxlogic.net -# 2004-09-08: intel.com (pool on different subnets) -/^fmr\d+\.intel\.com$/ -# 2004-09-17: cox-internet.com (no retry, reported by Rod Roark) -/^fe\d+\.cox-internet\.com$/ -# 2004-10-11: logismata.ch (no retry) -logismata.ch -# 2004-11-25: brief.cw.reum.de (no retry, reported by Manuel Oetiker) -brief.cw.reum.de -# 2004-12-03: ingeno.ch (no retry) -qmail.ingeno.ch -# 2004-12-06: rein.ch (no retry) -mail1.thurweb.ch -# 2005-01-26: tu-ilmenau.de (no retry) -piggy.rz.tu-ilmenau.de - diff --git a/source/network-extra/postgrey/postgrey_whitelist_recipients b/source/network-extra/postgrey/postgrey_whitelist_recipients deleted file mode 100644 index 68e4c80..0000000 --- a/source/network-extra/postgrey/postgrey_whitelist_recipients +++ /dev/null @@ -1,7 +0,0 @@ -# postgrey whitelist for mail recipients -# -------------------------------------- -# put this file in /etc/postfix or specify its path -# with --whitelist-recipients=xxx - -postmaster@ -abuse@ From vmiklos at frugalware.org Sun Sep 9 12:54:39 2007 From: vmiklos at frugalware.org (VMiklos) Date: Sun Sep 9 12:54:41 2007 Subject: [Frugalware-git] frugalware-current: t/xorg: blacklist constype, xbacklight (xorg-7.3) Message-ID: <20070909105439.6E9C913A42EA@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=14f8a77d7a8d822738c19678ceac57d799667809 commit 14f8a77d7a8d822738c19678ceac57d799667809 Author: VMiklos Date: Sun Sep 9 12:54:33 2007 +0200 t/xorg: blacklist constype, xbacklight (xorg-7.3) diff --git a/t/xorg b/t/xorg index 4c9cd5a..7e8d076 100755 --- a/t/xorg +++ b/t/xorg @@ -29,7 +29,7 @@ ls source/x11|sed 's|/$||' >$fw # xf86-video-glide: makedepends on xfree86.. # grandr: requires xrandr >= 1.2. initial FB @ http://yugo.frugalware.org/~vmiklos/grandr/FrugalBuild # xbacklight: xorg-1.3-only -# constype, libpciaccess, pixman, xf86-video-amd, xf86-video-xgi: xorg-1.3 +# constype, libpciaccess, pixman, xf86-video-amd, xf86-video-xgi, constype, xbacklight: xorg-1.3 diff -u $upstream $fw|grep ^-[^-] |grep -v \ -'\(xf86-video-impact\|compiz\|xf86-video-wsfb\|mkcfm\|xkbdata\|xf86-video-vermilion\|xf86-video-intel\|xf86-video-glide\|grandr\|xbacklightconstype\|libpciaccess\|pixman\|xf86-video-amd\|xf86-video-xgi\)'|sed 's/^-//' +'\(xf86-video-impact\|compiz\|xf86-video-wsfb\|mkcfm\|xkbdata\|xf86-video-vermilion\|xf86-video-intel\|xf86-video-glide\|grandr\|xbacklightconstype\|libpciaccess\|pixman\|xf86-video-amd\|xf86-video-xgi\|constype\|xbacklight\)'|sed 's/^-//' rm -f $upstream $fw From krics at linuxforum.hu Sun Sep 9 13:35:14 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sun Sep 9 13:35:16 2007 Subject: [Frugalware-git] xorg73: showfont-1.0.1-2-x86_64 Message-ID: <20070909113514.3A4B213A42EE@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=04d9435f464a3ef434e4429f6fc38adf2d3371eb commit 04d9435f464a3ef434e4429f6fc38adf2d3371eb Author: Christian Hamar alias krix Date: Sun Sep 9 13:34:35 2007 +0200 showfont-1.0.1-2-x86_64 * Release bump diff --git a/source/x11/showfont/FrugalBuild b/source/x11/showfont/FrugalBuild index 27ec5bf..ff0743d 100644 --- a/source/x11/showfont/FrugalBuild +++ b/source/x11/showfont/FrugalBuild @@ -3,16 +3,13 @@ pkgname=showfont pkgver=1.0.1 -pkgrel=1 +pkgrel=2 pkgdesc="X.Org showfont application" url="http://xorg.freedesktop.org" groups=('x11' 'xorg-core' 'xorg-apps') archs=('i686' 'x86_64') -depends=('libfs') -_F_xorg_nr=0 +depends=('libfs>=1.0.0-2') Finclude xorg - -# optimalization OK - -# vim: ft=sh sha1sums=('b3258e53c7d11a09f76fb712414d966330101da5') + +# optimization OK From krics at linuxforum.hu Sun Sep 9 13:36:58 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sun Sep 9 13:37:00 2007 Subject: [Frugalware-git] xorg73: smproxy-1.0.2-2-x86_64 Message-ID: <20070909113658.D220013A42F1@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=46188b5c621a992a9fa7d0a192aa1ba765f4e81a commit 46188b5c621a992a9fa7d0a192aa1ba765f4e81a Author: Christian Hamar alias krix Date: Sun Sep 9 13:36:39 2007 +0200 smproxy-1.0.2-2-x86_64 * Release bump diff --git a/source/x11/smproxy/FrugalBuild b/source/x11/smproxy/FrugalBuild index 9e6abe9..2c3f349 100644 --- a/source/x11/smproxy/FrugalBuild +++ b/source/x11/smproxy/FrugalBuild @@ -3,15 +3,14 @@ pkgname=smproxy pkgver=1.0.2 -pkgrel=1 +pkgrel=2 pkgdesc="X.Org smproxy application" url="http://xorg.freedesktop.org" groups=('x11' 'xorg-core' 'xorg-apps') archs=('i686' 'x86_64') -depends=('libxmu' 'libxt') -_F_xorg_nr=1 +depends=('libxmu>=1.0.3-2' 'libxt>=1.0.5') +makedepends=('inputproto>=1.4.2.1') Finclude xorg -makedepends=('inputproto') sha1sums=('18c49ba13a32dc83d00b2183455e31d5d96aec6f') # optimization OK From krics at linuxforum.hu Sun Sep 9 13:38:35 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sun Sep 9 13:38:36 2007 Subject: [Frugalware-git] xorg73: twm-1.0.3-2-x86_64 Message-ID: <20070909113835.BC60A13A42F4@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=78c2854be4ff552a7dc048f3e2538ca80c3423a7 commit 78c2854be4ff552a7dc048f3e2538ca80c3423a7 Author: Christian Hamar alias krix Date: Sun Sep 9 13:38:12 2007 +0200 twm-1.0.3-2-x86_64 * Release bump diff --git a/source/x11/twm/FrugalBuild b/source/x11/twm/FrugalBuild index ea97bf4..2d1da2f 100644 --- a/source/x11/twm/FrugalBuild +++ b/source/x11/twm/FrugalBuild @@ -3,14 +3,13 @@ pkgname=twm pkgver=1.0.3 -pkgrel=1 +pkgrel=2 pkgdesc="Tab Window Manager for the X Window System" url="http://xorg.freedesktop.org" groups=('x11' 'xorg-core' 'xorg-apps') archs=('i686' 'x86_64') -depends=('libx11>=1.1.1' 'libxt' 'libxmu') -makedepends=('inputproto') -_F_xorg_nr=2 +depends=('libx11>=1.1.3' 'libxt>=1.0.5' 'libxmu>=1.0.3-2') +makedepends=('inputproto>=1.4.2.1') Finclude xorg sha1sums=('8e3724f53f8796359705d8e4ff334608bc887f64') From krics at linuxforum.hu Sun Sep 9 13:40:45 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sun Sep 9 13:40:47 2007 Subject: [Frugalware-git] xorg73: viewres-1.0.1-2-x86_64 Message-ID: <20070909114045.C3A7D13A42F7@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=a62ba043e599171738110a05595924e085910088 commit a62ba043e599171738110a05595924e085910088 Author: Christian Hamar alias krix Date: Sun Sep 9 13:40:25 2007 +0200 viewres-1.0.1-2-x86_64 * Release bump diff --git a/source/x11/viewres/FrugalBuild b/source/x11/viewres/FrugalBuild index caf56d9..c88193e 100644 --- a/source/x11/viewres/FrugalBuild +++ b/source/x11/viewres/FrugalBuild @@ -3,21 +3,15 @@ pkgname=viewres pkgver=1.0.1 -pkgrel=1 +pkgrel=2 pkgdesc="X.Org viewres application" url="http://xorg.freedesktop.org" groups=('x11' 'xorg-core' 'xorg-apps') archs=('i686' 'x86_64') -depends=('libxaw' 'libxp') -_F_xorg_nr=0 +depends=('libxaw>=1.0.4' 'libxp>=1.0.0-2') +makedepends=('inputproto>=1.4.2.1') Finclude xorg - -build() { - Fbuild --enable-xprint -} - -# optimalization OK - -# vim: ft=sh +Fconfopts="$Fconfopts --enable-xprint" sha1sums=('1dff013616ca56c363308a172b2283169f58d8a0') -makedepends=('inputproto') + +# optimization OK From krics at linuxforum.hu Sun Sep 9 13:43:06 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sun Sep 9 13:43:08 2007 Subject: [Frugalware-git] xorg73: x11perf-1.4.1-2-x86_64 Message-ID: <20070909114306.E148D13A42FA@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=10bd744e7709d3ccebaed9f471aa2c170bbd6fd5 commit 10bd744e7709d3ccebaed9f471aa2c170bbd6fd5 Author: Christian Hamar alias krix Date: Sun Sep 9 13:42:46 2007 +0200 x11perf-1.4.1-2-x86_64 * Release bump diff --git a/source/x11/x11perf/FrugalBuild b/source/x11/x11perf/FrugalBuild index 0d90431..9339128 100644 --- a/source/x11/x11perf/FrugalBuild +++ b/source/x11/x11perf/FrugalBuild @@ -3,15 +3,13 @@ pkgname=x11perf pkgver=1.4.1 -pkgrel=1 +pkgrel=2 pkgdesc="X.Org x11perf application" url="http://xorg.freedesktop.org" groups=('x11' 'xorg-core' 'xorg-apps') archs=('i686' 'x86_64') -depends=('libx11' 'libxmu' 'libxft' 'libxrender') -makedepends=('inputproto') -_F_xorg_nr=1 +depends=('libx11>=1.1.3' 'libxmu>=1.0.3-2' 'libxft>=2.1.12-2' 'libxrender>=0.9.4') +makedepends=('inputproto>=1.4.2.1') Finclude xorg - -sha1sums=('6e14982e425dd14dbbc70877d04ba9859f69e1e0') +sha1sums=('675d0f6bf61ccda0010afe24207ed392ae5210cf') # optimization OK From krics at linuxforum.hu Sun Sep 9 13:45:20 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sun Sep 9 13:45:20 2007 Subject: [Frugalware-git] xorg73: xauth-1.0.2-2-x86_64 Message-ID: <20070909114520.0A43313A42FD@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=2252a89c95f237dbe191e39e1b7b6da0f4235b74 commit 2252a89c95f237dbe191e39e1b7b6da0f4235b74 Author: Christian Hamar alias krix Date: Sun Sep 9 13:45:00 2007 +0200 xauth-1.0.2-2-x86_64 * Release bump diff --git a/source/x11/xauth/FrugalBuild b/source/x11/xauth/FrugalBuild index 9a14ab1..3ff5c42 100644 --- a/source/x11/xauth/FrugalBuild +++ b/source/x11/xauth/FrugalBuild @@ -3,14 +3,13 @@ pkgname=xauth pkgver=1.0.2 -pkgrel=1 +pkgrel=2 pkgdesc="X.Org xauth application" groups=('x11' 'xorg-core' 'xorg-apps') archs=('i686' 'x86_64') -depends=('libx11' 'libxmu' 'libxext' 'libxau>=1.0.3') -_F_xorg_nr=2 +depends=('libx11>=1.1.3' 'libxmu>=1.0.3-2' 'libxext>=1.0.3' 'libxau>=1.0.3-2') +makedepends=('inputproto>=1.4.2.1') Finclude xorg -makedepends=('inputproto') -sha1sums=('f333689e9351295b62e00639bc9f9ae5c90f4c70') +sha1sums=('64bf289e3b3776de7f6b5984eb6ed238cfe9e2aa') # optimization OK From krics at linuxforum.hu Sun Sep 9 13:49:57 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sun Sep 9 13:49:58 2007 Subject: [Frugalware-git] xorg73: xkbcomp-1.0.3-2-x86_64 Message-ID: <20070909114957.C32F413A4300@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=34d82e284fa11d0ebce9155ddef6ba35b5c77f34 commit 34d82e284fa11d0ebce9155ddef6ba35b5c77f34 Author: Christian Hamar alias krix Date: Sun Sep 9 13:49:37 2007 +0200 xkbcomp-1.0.3-2-x86_64 * Release bump diff --git a/source/x11/xkbcomp/FrugalBuild b/source/x11/xkbcomp/FrugalBuild index 85de66e..194104e 100644 --- a/source/x11/xkbcomp/FrugalBuild +++ b/source/x11/xkbcomp/FrugalBuild @@ -3,14 +3,13 @@ pkgname=xkbcomp pkgver=1.0.3 -pkgrel=1 +pkgrel=2 pkgdesc="X.Org xkbcomp application" url="http://xorg.freedesktop.org" groups=('x11' 'xorg-core' 'xorg-apps') archs=('i686' 'x86_64') -depends=('libx11>=1.1.1' 'libxkbfile') -makedepends=('inputproto' 'util-macros') -_F_xorg_nr=2 +depends=('libx11>=1.1.3' 'libxkbfile>=1.0.4-2') +makedepends=('inputproto>=1.4.2.1' 'util-macros>=1.1.5-2') Finclude xorg source=(${source[@]} fix-configrootpath.patch) sha1sums=('b0e32f66dd9a18dd5d28cd582f062709b28e901a' \ From krics at linuxforum.hu Sun Sep 9 13:51:39 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sun Sep 9 13:51:40 2007 Subject: [Frugalware-git] xorg73: xkbevd-1.0.2-2-x86_64 Message-ID: <20070909115139.3AA1513A4300@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=60980ec28050cd1224016635e5ac78d863624dec commit 60980ec28050cd1224016635e5ac78d863624dec Author: Christian Hamar alias krix Date: Sun Sep 9 13:51:20 2007 +0200 xkbevd-1.0.2-2-x86_64 * RElease bump diff --git a/source/x11/xkbevd/FrugalBuild b/source/x11/xkbevd/FrugalBuild index b7043db..80caef5 100644 --- a/source/x11/xkbevd/FrugalBuild +++ b/source/x11/xkbevd/FrugalBuild @@ -3,15 +3,14 @@ pkgname=xkbevd pkgver=1.0.2 -pkgrel=1 +pkgrel=2 pkgdesc="X.Org xkbevd application" url="http://xorg.freedesktop.org" groups=('x11' 'xorg-core' 'xorg-apps') archs=('i686' 'x86_64') -depends=('libxkbfile') -_F_xorg_nr=1 +depends=('libxkbfile>=1.0.4-2') +makedepends=('inputproto>=1.4.2.1') Finclude xorg -makedepends=('inputproto') sha1sums=('825ba21524021c61d23e04ce4dd65d63c8cca6d8') # optimization OK From krics at linuxforum.hu Sun Sep 9 13:53:44 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sun Sep 9 13:53:45 2007 Subject: [Frugalware-git] xorg73: xkbprint-1.0.1-2-x86_64 Message-ID: <20070909115344.85F7313A4300@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=b44cd3cb7dcce6fe4ea53757aa65079d2d892894 commit b44cd3cb7dcce6fe4ea53757aa65079d2d892894 Author: Christian Hamar alias krix Date: Sun Sep 9 13:53:24 2007 +0200 xkbprint-1.0.1-2-x86_64 * RElease bump diff --git a/source/x11/xkbprint/FrugalBuild b/source/x11/xkbprint/FrugalBuild index ce80ffb..09dcfc0 100644 --- a/source/x11/xkbprint/FrugalBuild +++ b/source/x11/xkbprint/FrugalBuild @@ -3,17 +3,14 @@ pkgname=xkbprint pkgver=1.0.1 -pkgrel=1 +pkgrel=2 pkgdesc="X.Org xkbprint application" url="http://xorg.freedesktop.org" groups=('x11' 'xorg-core' 'xorg-apps') archs=('i686' 'x86_64') -depends=('libxkbfile') -_F_xorg_nr=0 +depends=('libxkbfile>=1.0.4-2') +makedepends=('inputproto>=1.4.2.1') Finclude xorg - -# optimalization OK - -# vim: ft=sh sha1sums=('20d20db7f95e0edb027d5013fe424cd2f508aa43') -makedepends=('inputproto') + +# optimization OK From krics at linuxforum.hu Sun Sep 9 13:55:30 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sun Sep 9 13:55:31 2007 Subject: [Frugalware-git] xorg73: xkbutils-1.0.1-2-x86_64 Message-ID: <20070909115530.57F5D13A4300@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=4bcff729b67c6e6690cdd8d9e8c37248cbaa1a55 commit 4bcff729b67c6e6690cdd8d9e8c37248cbaa1a55 Author: Christian Hamar alias krix Date: Sun Sep 9 13:55:12 2007 +0200 xkbutils-1.0.1-2-x86_64 * Release bump diff --git a/source/x11/xkbutils/FrugalBuild b/source/x11/xkbutils/FrugalBuild index f99c429..3988c23 100644 --- a/source/x11/xkbutils/FrugalBuild +++ b/source/x11/xkbutils/FrugalBuild @@ -3,21 +3,15 @@ pkgname=xkbutils pkgver=1.0.1 -pkgrel=1 +pkgrel=2 pkgdesc="X.Org xkbutils application" url="http://xorg.freedesktop.org" groups=('x11' 'xorg-core' 'xorg-apps') archs=('i686' 'x86_64') -depends=('libxkbfile' 'libxaw' 'libxp') -makedepends=('inputproto') -_F_xorg_nr=0 +depends=('libxkbfile>=1.0.4-2' 'libxaw>=1.0.4' 'libxp>=1.0.0-2') +makedepends=('inputproto>=1.4.2.1') Finclude xorg - -build() { - Fbuild --enable-xprint -} - -# optimalization OK - -# vim: ft=sh +Fconfopts="$Fconfopts --enable-xprint" sha1sums=('2ee3172f4b17cb9aa97d899c400493bbe83089d9') + +# optimization OK From vmiklos at frugalware.org Sun Sep 9 13:55:59 2007 From: vmiklos at frugalware.org (VMiklos) Date: Sun Sep 9 13:56:01 2007 Subject: [Frugalware-git] frugalware-current: ltp-20070831-1-i686 Message-ID: <20070909115559.42A6513A4300@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=5f7bf7bbf85328290a619e83fc26df256f7fd61d commit 5f7bf7bbf85328290a619e83fc26df256f7fd61d Author: VMiklos Date: Sun Sep 9 13:55:46 2007 +0200 ltp-20070831-1-i686 version bump diff --git a/source/apps-extra/ltp/FrugalBuild b/source/apps-extra/ltp/FrugalBuild index 0355c79..f5c1000 100644 --- a/source/apps-extra/ltp/FrugalBuild +++ b/source/apps-extra/ltp/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: VMiklos pkgname=ltp -pkgver=20070731 +pkgver=20070831 # sometimes != $pkgver realver=$pkgver pkgrel=1 @@ -27,7 +27,7 @@ build() { cp runltp runalltests.sh $Fdestdir/usr/bin/ || Fdie } -sha1sums=('c5f6d590f56cc6648eab36dc220b8966ef485a68' \ +sha1sums=('59c4408a708e6f0c703c6c1cee87e57753d05332' \ 'c7a2132257cf1c430a9692009952084746722c40' \ 'e9ff5dbafdd07ebe796b2f064066d7dbb7c7b6c5' \ '0a6f6665340d6745904936484c42e6e874a0fc2d') From krics at linuxforum.hu Sun Sep 9 13:58:28 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sun Sep 9 13:58:31 2007 Subject: [Frugalware-git] xorg73: xkeyboard-config-1.0-2-x86_64 Message-ID: <20070909115828.E411E13A4300@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=c92852ed6f5378e447804f658f82d2a642392403 commit c92852ed6f5378e447804f658f82d2a642392403 Author: Christian Hamar alias krix Date: Sun Sep 9 13:58:02 2007 +0200 xkeyboard-config-1.0-2-x86_64 * Release bump * Remove old conflicts,replaces,provides=('xkbdata') diff --git a/source/x11/xkeyboard-config/FrugalBuild b/source/x11/xkeyboard-config/FrugalBuild index 96d1cf8..d6a03e7 100644 --- a/source/x11/xkeyboard-config/FrugalBuild +++ b/source/x11/xkeyboard-config/FrugalBuild @@ -3,19 +3,15 @@ pkgname=xkeyboard-config pkgver=1.0 -pkgrel=1 +pkgrel=2 pkgdesc="X.org XML-based XKB configuration registry" url="http://www.freedesktop.org/wiki/Software_2fXKeyboardConfig" groups=('x11' 'xorg-core' 'xorg-proto') -depends=('xkbcomp>=1.0.3') -provides=('xkbdata') -replaces=('xkbdata') -conflicts=('xkbdata') +depends=('xkbcomp>=1.0.3-2') archs=('i686' 'x86_64') -makedepends=('pkgconfig' 'perl-xml' 'util-macros' 'intltool') +makedepends=('pkgconfig' 'perl-xml' 'util-macros>=1.1.5-2' 'intltool') up2date=("lynx -dump 'http://xlibs.freedesktop.org/xkbdesc/?C=M;O=A' | grep $pkgname | Flasttar") source=(http://xlibs.freedesktop.org/xkbdesc/$pkgname-$pkgver.tar.bz2) -#source=(http://ftp.frugalware.org/pub/other/sources/$pkgname/$pkgname-20061207.tar.bz2) sha1sums=('bc99e0d13d4400d8fc7d353e485a7ca88f3582bb') build() { From krics at linuxforum.hu Sun Sep 9 14:10:13 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sun Sep 9 14:10:17 2007 Subject: [Frugalware-git] xorg73: mesa-7.0.1-2-x86_64 Message-ID: <20070909121013.F2C1D13A42E9@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=b0827fa8be8b5112f7d9d0db2e9b7864b17c88e4 commit b0827fa8be8b5112f7d9d0db2e9b7864b17c88e4 Author: Christian Hamar alias krix Date: Sun Sep 9 14:06:13 2007 +0200 mesa-7.0.1-2-x86_64 * Release bump due new stuffs diff --git a/source/x11/mesa/FrugalBuild b/source/x11/mesa/FrugalBuild index 68c0af7..b29afdd 100644 --- a/source/x11/mesa/FrugalBuild +++ b/source/x11/mesa/FrugalBuild @@ -5,15 +5,15 @@ pkgname=mesa origname=Mesa pkgver=7.0.1 -pkgrel=1 +pkgrel=2 pkgdesc="Mesa is a 3D graphics library" _F_sourceforge_dirname="mesa3d" _F_sourceforge_name="MesaLib" Finclude sourceforge url="http://mesa3d.sourceforge.net/" # libgl: provided by libgl, fglrx and nvidia packages -depends=('expat' 'libx11>=1.1.1' 'libxext' 'libxxf86vm' 'libxi>=1.1.0' 'libxmu>=1.0.3' \ - 'libice' 'libdrm>=2.3.0-2' 'libgl' 'libxdamage' 'libxfixes') +depends=('expat' 'libx11>=1.1.3' 'libxext>=1.0.3' 'libxxf86vm>=1.0.1-2' 'libxi>=1.1.3' 'libxmu>=1.0.3-2' \ + 'libice>=1.0.4' 'libdrm>=2.3.0-2' 'libgl' 'libxdamage>=1.1.1' 'libxfixes>=4.0.3-2') makedepends=('makedepend' 'glproto' 'xf86vidmodeproto') archs=('i686' 'x86_64') groups=('x11' 'xorg-core' 'xorg-libs') @@ -25,7 +25,7 @@ source=($source \ subpkgs=('libgl') subdescs=('Mesa OpenGL files.') subconflicts=('fglrx nvidia') -subdepends=('libxxf86vm libdrm>=2.3.0') +subdepends=('libxxf86vm>=1.0.1-2 libdrm>=2.3.0') subgroups=('x11') subarchs=('i686 x86_64') From krics at linuxforum.hu Sun Sep 9 14:39:34 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sun Sep 9 14:39:41 2007 Subject: [Frugalware-git] xorg73: freeglut-2.4.0-2-x86_64 Message-ID: <20070909123934.34D9A13A42E9@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=2de337b9496bfb46d6f1fd8d675e92afee7dcd5e commit 2de337b9496bfb46d6f1fd8d675e92afee7dcd5e Author: Christian Hamar alias krix Date: Sun Sep 9 14:39:10 2007 +0200 freeglut-2.4.0-2-x86_64 * Release bump due new xorg diff --git a/source/xlib/freeglut/FrugalBuild b/source/xlib/freeglut/FrugalBuild index 3f570ae..082a1d0 100644 --- a/source/xlib/freeglut/FrugalBuild +++ b/source/xlib/freeglut/FrugalBuild @@ -3,19 +3,19 @@ pkgname=freeglut pkgver=2.4.0 -pkgrel=1 +pkgrel=2 pkgdesc="The free OpenGL utility toolkit, alternative to the GLUT library" url="http://freeglut.sourceforge.net" groups=('xlib') archs=('i686' 'x86_64') -depends=('mesa' 'libstdc++') -makedepends=('libx11' 'libxext') -replaces=('glut') -conflicts=('glut') -provides=('glut') +depends=('mesa>=7.0.1-2' 'libstdc++') +makedepends=('libx11>=1.1.3' 'libxext>=1.0.3') Finclude sourceforge source=(${source[@]} freeglut_cursor.c.diff) +Fconfopts="$Fconfopts --disable-warnings" sha1sums=('91a528aa72758b7288a0d69a964b1b7e3f322a12' \ '9353d7b811fdfd6f0c5766f0e93924ca63e9d6a9') # optimalization OK + +# optimization OK From krics at linuxforum.hu Sun Sep 9 14:41:40 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sun Sep 9 14:41:43 2007 Subject: [Frugalware-git] xorg73: mesademos-7.0.1-2-x86_64 Message-ID: <20070909124140.DBE0813A42E9@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=f042c33cc26f4fe97c9e6251d638b038e42e14b4 commit f042c33cc26f4fe97c9e6251d638b038e42e14b4 Author: Christian Hamar alias krix Date: Sun Sep 9 14:41:20 2007 +0200 mesademos-7.0.1-2-x86_64 * Release bump diff --git a/source/x11/mesademos/FrugalBuild b/source/x11/mesademos/FrugalBuild index 318e9bd..3ba6c5a 100644 --- a/source/x11/mesademos/FrugalBuild +++ b/source/x11/mesademos/FrugalBuild @@ -4,15 +4,15 @@ pkgname=mesademos pkgver=7.0.1 -pkgrel=1 +pkgrel=2 pkgdesc="OpenGL demonstration and test programs." _F_sourceforge_dirname="mesa3d" _F_sourceforge_name="MesaDemos" _F_sourceforge_ext=".tar.bz2" Finclude sourceforge url="http://mesa3d.sourceforge.net/" -depends=('mesa>=7.0.1' 'libstdc++' 'freeglut' 'libx11>=1.1.1' 'libxmu' - 'libxi>=1.1.0' 'libdrm>=2.3.0' 'libxvmc' 'libxxf86vm') +depends=('mesa>=7.0.1-2' 'libstdc++' 'freeglut>=2.4.0-2' 'libx11>=1.1.3' 'libxmu>=1.0.3-2' + 'libxi>=1.1.3' 'libdrm>=2.3.0' 'libxvmc>=1.0.4-2' 'libxxf86vm>=1.0.1-2') groups=('x11' 'xorg-core' 'xorg-apps') archs=('i686' 'x86_64') up2date="lynx -dump $url/download.html|grep release|sed 's/.*: //;q'" From krics at linuxforum.hu Sun Sep 9 14:44:10 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sun Sep 9 14:44:11 2007 Subject: [Frugalware-git] xorg73: beforelight-1.0.3-1-x86_64 Message-ID: <20070909124410.80E1513A42E9@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=f51b3cdabb50d2448b127cd8113076d2a07b86f0 commit f51b3cdabb50d2448b127cd8113076d2a07b86f0 Author: Christian Hamar alias krix Date: Sun Sep 9 14:43:51 2007 +0200 beforelight-1.0.3-1-x86_64 * Version bump - From individual diff --git a/source/x11/beforelight/FrugalBuild b/source/x11/beforelight/FrugalBuild index 31e5051..1b969e5 100644 --- a/source/x11/beforelight/FrugalBuild +++ b/source/x11/beforelight/FrugalBuild @@ -2,16 +2,14 @@ # Maintainer: Christian Hamar alias krix pkgname=beforelight -pkgver=1.0.2 +pkgver=1.0.3 pkgrel=1 pkgdesc="X.Org beforelight application" groups=('x11' 'xorg-core' 'xorg-apps') archs=('i686' 'x86_64') -depends=('libxscrnsaver>=1.1.2' 'libx11' 'libxt' 'libxaw') -makedepends=('inputproto') -_F_xorg_nr=2 +depends=('libxscrnsaver>=1.1.2-2' 'libx11>=1.1.3' 'libxt>=1.0.5' 'libxaw>=1.0.4') +makedepends=('inputproto>=1.4.2.1') +_F_xorg_ind=1 Finclude xorg - -sha1sums=('4ab67ac62f0b028bf2975ec94fe2df57ba8c692f') - +sha1sums=('9c1f59a270475cb41ff11ec06fee018def7ef8bd') # optimization OK From krics at linuxforum.hu Sun Sep 9 14:45:40 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sun Sep 9 14:45:40 2007 Subject: [Frugalware-git] xorg73: encodings-1.0.2-2-x86_64 Message-ID: <20070909124540.12D4E13A42E9@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=259df2fc0aa05325d00ed9dedb06d3d1ee792f19 commit 259df2fc0aa05325d00ed9dedb06d3d1ee792f19 Author: Christian Hamar alias krix Date: Sun Sep 9 14:45:11 2007 +0200 encodings-1.0.2-2-x86_64 * Release bump diff --git a/source/x11/encodings/FrugalBuild b/source/x11/encodings/FrugalBuild index fda0d3b..4615137 100644 --- a/source/x11/encodings/FrugalBuild +++ b/source/x11/encodings/FrugalBuild @@ -3,12 +3,11 @@ pkgname=encodings pkgver=1.0.2 -pkgrel=1 +pkgrel=2 pkgdesc="X.Org encodings fonts" url="http://xorg.freedesktop.org" groups=('x11' 'xorg-core' 'xorg-fonts') archs=('i686' 'x86_64') -depends=('mkfontscale>=1.0.3') -_F_xorg_nr=2 +depends=('mkfontscale>=1.0.3-3') Finclude xorg sha1sums=('63622374470204f6501ffb5f4df84228d859c9cf') From krics at linuxforum.hu Sun Sep 9 14:47:15 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sun Sep 9 14:47:18 2007 Subject: [Frugalware-git] xorg73: bdftopcf-1.0.1-1-x86_64 Message-ID: <20070909124715.1F14513A42E9@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=fd104aab247820cca32f9d01ab2fe39cef6d7382 commit fd104aab247820cca32f9d01ab2fe39cef6d7382 Author: Christian Hamar alias krix Date: Sun Sep 9 14:46:55 2007 +0200 bdftopcf-1.0.1-1-x86_64 * Version bump diff --git a/source/x11/bdftopcf/FrugalBuild b/source/x11/bdftopcf/FrugalBuild index b22aca7..3154aaa 100644 --- a/source/x11/bdftopcf/FrugalBuild +++ b/source/x11/bdftopcf/FrugalBuild @@ -2,17 +2,14 @@ # Maintainer: Christian Hamar alias krix pkgname=bdftopcf -pkgver=1.0.0 +pkgver=1.0.1 pkgrel=1 pkgdesc="X.Org bdftopcf application" url="http://xorg.freedesktop.org" groups=('x11' 'xorg-core' 'xorg-apps') archs=('i686' 'x86_64') -depends=('libxfont') -_F_xorg_nr=0 +depends=('libxfont>=1.3.1') Finclude xorg +sha1sums=('ab1c77b7e9b011afd29242eef0f3cfdcb11771ee') -# optimalization OK - -# vim: ft=sh -sha1sums=('61fc7400774a892d596329682800e42a63480443') +# optimization OK From krics at linuxforum.hu Sun Sep 9 14:49:49 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sun Sep 9 14:49:51 2007 Subject: [Frugalware-git] xorg73: iceauth-1.0.2-1-x86_64 Message-ID: <20070909124949.5284C13A42E9@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=30a39f7f07c2ddbc23c32ca49e049ce0aee093f1 commit 30a39f7f07c2ddbc23c32ca49e049ce0aee093f1 Author: Christian Hamar alias krix Date: Sun Sep 9 14:49:27 2007 +0200 iceauth-1.0.2-1-x86_64 * Version bump diff --git a/source/x11/iceauth/FrugalBuild b/source/x11/iceauth/FrugalBuild index 66d59a7..2a6997c 100644 --- a/source/x11/iceauth/FrugalBuild +++ b/source/x11/iceauth/FrugalBuild @@ -2,17 +2,14 @@ # Maintainer: Christian Hamar alias krix pkgname=iceauth -pkgver=1.0.1 +pkgver=1.0.2 pkgrel=1 pkgdesc="X.Org iceauth application" url="http://xorg.freedesktop.org" groups=('x11' 'xorg-core' 'xorg-apps') archs=('i686' 'x86_64') -depends=('libx11' 'libice') -_F_xorg_nr=0 +depends=('libx11>=1.1.3' 'libice>=1.0.4') Finclude xorg +sha1sums=('31cb5e07ea928b2a85af25d69535726e0d8c08d9') -# optimalization OK - -# vim: ft=sh -sha1sums=('525a870033da099688826b61c6552e5d1f418618') +# optimization OK From krics at linuxforum.hu Sun Sep 9 14:51:41 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sun Sep 9 14:51:42 2007 Subject: [Frugalware-git] xorg73: ico-1.0.2-1-x86_64 Message-ID: <20070909125141.2835B13A42E9@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=45d27335ce27aafa9322eaee6330e25d9b7d4667 commit 45d27335ce27aafa9322eaee6330e25d9b7d4667 Author: Christian Hamar alias krix Date: Sun Sep 9 14:51:22 2007 +0200 ico-1.0.2-1-x86_64 * Version bump diff --git a/source/x11/ico/FrugalBuild b/source/x11/ico/FrugalBuild index 4106233..67e9ff3 100644 --- a/source/x11/ico/FrugalBuild +++ b/source/x11/ico/FrugalBuild @@ -2,18 +2,15 @@ # Maintainer: Christian Hamar alias krix pkgname=ico -pkgver=1.0.1 +pkgver=1.0.2 pkgrel=1 pkgdesc="X.Org ico application" url="http://xorg.freedesktop.org" groups=('x11' 'xorg-core' 'xorg-apps') archs=('i686' 'x86_64') -depends=('libx11') -_F_xorg_nr=0 +depends=('libx11>=1.1.3') +makedepends=('inputproto>=1.4.2.1') Finclude xorg +sha1sums=('64940e202d8d53b6c036ad17bc5af9f4823f7fb0') -# optimalization OK - -# vim: ft=sh -sha1sums=('f50f113e0f4cbf75ab3a3cfed05fc869386fbe08') -makedepends=('inputproto') +# optimization OK From krics at linuxforum.hu Sun Sep 9 14:55:14 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sun Sep 9 14:55:15 2007 Subject: [Frugalware-git] xorg73: lbxproxy-1.0.1-2-x86_64 Message-ID: <20070909125514.CCEB213A42E9@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=ac77864195f85b4060fcf2468610dd7721321504 commit ac77864195f85b4060fcf2468610dd7721321504 Author: Christian Hamar alias krix Date: Sun Sep 9 14:54:54 2007 +0200 lbxproxy-1.0.1-2-x86_64 * Release bump diff --git a/source/x11/lbxproxy/FrugalBuild b/source/x11/lbxproxy/FrugalBuild index 315d608..0ab25a5 100644 --- a/source/x11/lbxproxy/FrugalBuild +++ b/source/x11/lbxproxy/FrugalBuild @@ -3,21 +3,15 @@ pkgname=lbxproxy pkgver=1.0.1 -pkgrel=1 +pkgrel=2 pkgdesc="X.Org lbxproxy application" url="http://xorg.freedesktop.org" groups=('x11' 'xorg-core' 'xorg-apps') archs=('i686' 'x86_64') -depends=('xtrans' 'libxext' 'liblbxutil' 'libx11' 'libice' 'xproxymanagementprotocol' 'bigreqsproto') -_F_xorg_nr=0 +depends=('xtrans>=1.0.4' 'libxext>=1.0.3' 'liblbxutil>=1.0.1-2' 'libx11>=1.1.3' 'libice>=1.0.4' 'xproxymanagementprotocol' 'bigreqsproto') +makedepends=('inputproto>=1.4.2.1') Finclude xorg - -build() { - Fbuild --enable-IPv6 -} - -# optimalization OK - -# vim: ft=sh +Fconfopts="$Fconfopts --enable-IPv6" sha1sums=('e5190d4bb648b66aae2971d6b43e94852a941557') -makedepends=('inputproto') + +# optimization OK From krics at linuxforum.hu Sun Sep 9 14:57:15 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sun Sep 9 14:57:17 2007 Subject: [Frugalware-git] xorg73: libdmx-1.0.2-2-x86_64 Message-ID: <20070909125715.82FB913A42E9@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=9db840bba36170506a3d9e5534bb6da8784b7496 commit 9db840bba36170506a3d9e5534bb6da8784b7496 Author: Christian Hamar alias krix Date: Sun Sep 9 14:56:56 2007 +0200 libdmx-1.0.2-2-x86_64 * Release bump diff --git a/source/x11/libdmx/FrugalBuild b/source/x11/libdmx/FrugalBuild index b9853d1..0973dd4 100644 --- a/source/x11/libdmx/FrugalBuild +++ b/source/x11/libdmx/FrugalBuild @@ -3,16 +3,13 @@ pkgname=libdmx pkgver=1.0.2 -pkgrel=1 +pkgrel=2 pkgdesc="X.Org dmx library" url="http://xorg.freedesktop.org" groups=('x11' 'xorg-core' 'xorg-libs') archs=('i686' 'x86_64') -depends=('libx11' 'libxext' 'dmxproto') -makedepends=('inputproto') -_F_xorg_nr=1 +depends=('libx11>=1.1.3' 'libxext>=1.0.3' 'dmxproto') +makedepends=('inputproto>=1.4.2.1') Finclude xorg - -# optimization OK - sha1sums=('cafa14a5eb60ff4397dcb03af1197a43036fab54') +# optimization OK From krics at linuxforum.hu Sun Sep 9 14:58:45 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sun Sep 9 14:58:46 2007 Subject: [Frugalware-git] xorg73: libapplewm-1.0.0-2-x86_64 Message-ID: <20070909125845.9EEC813A42E9@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=00d6e0577acd808e902ba770c789c5bbc2f217bc commit 00d6e0577acd808e902ba770c789c5bbc2f217bc Author: Christian Hamar alias krix Date: Sun Sep 9 14:58:27 2007 +0200 libapplewm-1.0.0-2-x86_64 * RElease bump diff --git a/source/x11/libapplewm/FrugalBuild b/source/x11/libapplewm/FrugalBuild index 5426d78..9636748 100644 --- a/source/x11/libapplewm/FrugalBuild +++ b/source/x11/libapplewm/FrugalBuild @@ -4,16 +4,13 @@ pkgname=libapplewm _F_xorg_name=libAppleWM pkgver=1.0.0 -pkgrel=1 +pkgrel=2 pkgdesc="X.Org AppleWM library" url="http://xorg.freedesktop.org" groups=('x11' 'xorg-core' 'xorg-libs') archs=('i686' 'x86_64') -depends=('libxext') -makedepends=('inputproto' 'xextproto' 'applewmproto') -_F_xorg_nr=0 +depends=('libxext>=1.0.3') +makedepends=('inputproto>=1.4.2.1' 'xextproto' 'applewmproto') Finclude xorg - sha1sums=('2164f2904d9108326ec6e0899701e0759fcc7ebd') - # optimization OK From krics at linuxforum.hu Sun Sep 9 15:05:45 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sun Sep 9 15:05:47 2007 Subject: [Frugalware-git] xorg73: font-cursor-misc-1.0.0-2-x86_64 Message-ID: <20070909130545.C4A3613A42E9@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=15a2b4b6e25a208c3d43072208d338111d784115 commit 15a2b4b6e25a208c3d43072208d338111d784115 Author: Christian Hamar alias krix Date: Sun Sep 9 15:05:25 2007 +0200 font-cursor-misc-1.0.0-2-x86_64 * Release bump diff --git a/source/x11/font-cursor-misc/FrugalBuild b/source/x11/font-cursor-misc/FrugalBuild index 639175f..9d0a955 100644 --- a/source/x11/font-cursor-misc/FrugalBuild +++ b/source/x11/font-cursor-misc/FrugalBuild @@ -3,17 +3,15 @@ pkgname=font-cursor-misc pkgver=1.0.0 -pkgrel=1 +pkgrel=2 pkgdesc="X.Org Cursor Misc Fontset" url="http://xorg.freedesktop.org" groups=('x11' 'xorg-core' 'xorg-fonts') archs=('i686' 'x86_64') -depends=('mkfontscale' 'mkfontdir') -makedepends=('pkgconfig' 'bdftopcf') -_F_xorg_nr=0 +depends=('mkfontscale>=1.0.3-3' 'mkfontdir>=1.0.3') +makedepends=('pkgconfig' 'bdftopcf>=1.0.1') Finclude xorg source=(${source[@]} mkfontscale-fix.patch) -install=$pkgname.install build() { Fcd @@ -22,9 +20,5 @@ build() { Fmake Fmakeinstall } - -# optimalization OK - -# vim: ft=sh sha1sums=('3fe0f1015c15444169d2b28cdb138b2d49481f78' \ '84d377ebafea8d3df2d9076119f1f669bdc1b860') From krics at linuxforum.hu Sun Sep 9 15:09:35 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sun Sep 9 15:09:36 2007 Subject: [Frugalware-git] xorg73: font-misc-misc-1.0.0-1-x86_64 Message-ID: <20070909130935.326EF13A42E9@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=6b2c031502b9bd7b9691b17b88ed855e63812bbe commit 6b2c031502b9bd7b9691b17b88ed855e63812bbe Author: Christian Hamar alias krix Date: Sun Sep 9 15:07:24 2007 +0200 font-misc-misc-1.0.0-1-x86_64 diff --git a/source/x11/font-misc-misc/FrugalBuild b/source/x11/font-misc-misc/FrugalBuild index 85b469c..cc7bd4a 100644 --- a/source/x11/font-misc-misc/FrugalBuild +++ b/source/x11/font-misc-misc/FrugalBuild @@ -8,12 +8,10 @@ pkgdesc="X.Org Misc Misc Fontset" url="http://xorg.freedesktop.org" groups=('x11' 'xorg-core' 'xorg-fonts') archs=('i686' 'x86_64') -depends=('mkfontscale' 'mkfontdir') -makedepends=('pkgconfig' 'bdftopcf' 'font-util') -_F_xorg_nr=0 +depends=('mkfontscale>=1.0.3-3' 'mkfontdir>=1.0.3') +makedepends=('pkgconfig' 'bdftopcf>=1.0.1' 'font-util') Finclude xorg source=(${source[@]} mkfontscale-fix.patch) -install=$pkgname.install build() { Fcd @@ -22,9 +20,5 @@ build() { Fmake Fmakeinstall } - -# optimalization OK - -# vim: ft=sh sha1sums=('caa36376a00568e900337efe0d9dd626c64fde63' \ '84d377ebafea8d3df2d9076119f1f669bdc1b860') From krics at linuxforum.hu Sun Sep 9 15:09:35 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sun Sep 9 15:09:36 2007 Subject: [Frugalware-git] xorg73: font-misc-misc-1.0.0-2-x86_64 Message-ID: <20070909130935.4357513A42EA@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=f65f0e86f62b2519a7411ca68885cfb63186788f commit f65f0e86f62b2519a7411ca68885cfb63186788f Author: Christian Hamar alias krix Date: Sun Sep 9 15:08:12 2007 +0200 font-misc-misc-1.0.0-2-x86_64 * Forgot pkgrel++ diff --git a/source/x11/font-misc-misc/FrugalBuild b/source/x11/font-misc-misc/FrugalBuild index cc7bd4a..38c46ce 100644 --- a/source/x11/font-misc-misc/FrugalBuild +++ b/source/x11/font-misc-misc/FrugalBuild @@ -3,7 +3,7 @@ pkgname=font-misc-misc pkgver=1.0.0 -pkgrel=1 +pkgrel=2 pkgdesc="X.Org Misc Misc Fontset" url="http://xorg.freedesktop.org" groups=('x11' 'xorg-core' 'xorg-fonts') From krics at linuxforum.hu Sun Sep 9 15:17:38 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sun Sep 9 15:17:40 2007 Subject: [Frugalware-git] xorg73: xorg-sgml-doctools-1.2-1-x86_64 Message-ID: <20070909131738.7621113A42E9@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=801491e284e37e5efb065b2bd91e873530b8e501 commit 801491e284e37e5efb065b2bd91e873530b8e501 Author: Christian Hamar alias krix Date: Sun Sep 9 15:17:18 2007 +0200 xorg-sgml-doctools-1.2-1-x86_64 * Version bump diff --git a/source/x11/xorg-sgml-doctools/FrugalBuild b/source/x11/xorg-sgml-doctools/FrugalBuild index 9b9c825..367acf5 100644 --- a/source/x11/xorg-sgml-doctools/FrugalBuild +++ b/source/x11/xorg-sgml-doctools/FrugalBuild @@ -2,13 +2,12 @@ # Maintainer: Christian Hamar alias krix pkgname=xorg-sgml-doctools -pkgver=1.1.1 +pkgver=1.2 pkgrel=1 pkgdesc="X.Org SGML Doctools" url="http://xorg.freedesktop.org" groups=('x11' 'xorg-core' 'xorg-doc') archs=('i686' 'x86_64') depends=() -_F_xorg_nr=2 Finclude xorg -sha1sums=('c8199c214be2ebc62407d0f5347f30d1346f6781') +sha1sums=('4cc89daca196762226dc2bb603c93e4c189a212f') From krics at linuxforum.hu Sun Sep 9 15:20:07 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sun Sep 9 15:20:09 2007 Subject: [Frugalware-git] xorg73: xterm-229-2-x86_64 Message-ID: <20070909132007.0827A13A42E9@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=f271f04a7c1a3beb35928c2ff64cb09367990c02 commit f271f04a7c1a3beb35928c2ff64cb09367990c02 Author: Christian Hamar alias krix Date: Sun Sep 9 15:19:42 2007 +0200 xterm-229-2-x86_64 * Release bump diff --git a/source/x11/xterm/FrugalBuild b/source/x11/xterm/FrugalBuild index ed974fa..e675338 100644 --- a/source/x11/xterm/FrugalBuild +++ b/source/x11/xterm/FrugalBuild @@ -3,13 +3,13 @@ pkgname=xterm pkgver=229 -pkgrel=1 +pkgrel=2 pkgdesc="X terminal emulator" url="http://dickey.his.com/xterm/" groups=('x11' 'xorg-core' 'xorg-apps') archs=('i686' 'x86_64') -depends=('libx11>=1.0.99.1' 'libxt>=1.0.3' 'libxrender>=0.9.2' 'libxmu' \ - 'libxkbfile>=1.0.4' 'libxft>=2.1.11' 'libxaw') +depends=('libx11>=1.1.3' 'libxt>=1.0.5' 'libxrender>=0.9.4' 'libxmu>=1.0.3-2' \ + 'libxkbfile>=1.0.4-2' 'libxft>=2.1.12-2' 'libxaw>=1.0.4') rodepends=('desktop-file-utils') makedepends=('groff' 'imake') _F_gnome_desktop="y" From krics at linuxforum.hu Sun Sep 9 15:23:09 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sun Sep 9 15:23:11 2007 Subject: [Frugalware-git] xorg73: xclock-1.0.3-1-x86_64 Message-ID: <20070909132309.D2EB113A42E9@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=3d9579c4db39ec20a4c17821ed081ff07a1548ff commit 3d9579c4db39ec20a4c17821ed081ff07a1548ff Author: Christian Hamar alias krix Date: Sun Sep 9 15:22:49 2007 +0200 xclock-1.0.3-1-x86_64 * Version bump diff --git a/source/x11/xclock/FrugalBuild b/source/x11/xclock/FrugalBuild index eebe926..179af94 100644 --- a/source/x11/xclock/FrugalBuild +++ b/source/x11/xclock/FrugalBuild @@ -2,20 +2,16 @@ # Maintainer: Christian Hamar alias krix pkgname=xclock -pkgver=1.0.2 +pkgver=1.0.3 pkgrel=1 pkgdesc="X.Org xclock application" url="http://xorg.freedesktop.org" groups=('x11' 'xorg-core' 'xorg-apps') archs=('i686' 'x86_64') -depends=('libx11' 'libxrender' 'libxft' 'libxkbfile' 'libxaw' 'libxp') -makedepends=('inputproto') -_F_xorg_nr=1 +depends=('libx11>=1.1.3' 'libxrender>=0.9.4' 'libxft>=2.1.12-2' 'libxkbfile>=1.0.4-2' 'libxaw>=1.0.4' 'libxp>=1.0.0-2') +makedepends=('inputproto>=1.4.2.1') Finclude xorg -sha1sums=('d871dc3a6b723a7bd528a12de7268809fba12105') - -build() { - Fbuild --enable-xprint -} +Fconfopts="$Fconfopts --enable-xprint" +sha1sums=('94bd3f1c57d9d6f5c19f25fcdda3b148b99b6dbe') # optimization OK From krics at linuxforum.hu Sun Sep 9 15:24:24 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sun Sep 9 15:24:24 2007 Subject: [Frugalware-git] xorg73: xinit-1.0.5-1-x86_64 Message-ID: <20070909132424.762C713A42E9@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=ba06af07f29d8123132def396a22fcf4697f2c2e commit ba06af07f29d8123132def396a22fcf4697f2c2e Author: Christian Hamar alias krix Date: Sun Sep 9 15:24:04 2007 +0200 xinit-1.0.5-1-x86_64 * Version bump diff --git a/source/x11/xinit/FrugalBuild b/source/x11/xinit/FrugalBuild index e7ed4e0..ca9dcbb 100644 --- a/source/x11/xinit/FrugalBuild +++ b/source/x11/xinit/FrugalBuild @@ -2,17 +2,16 @@ # Maintainer: Christian Hamar alias krix pkgname=xinit -pkgver=1.0.3 +pkgver=1.0.5 pkgrel=1 pkgdesc="X Window System initializer" url="http://xorg.freedesktop.org" groups=('x11' 'xorg-core' 'xorg-apps') archs=('i686' 'x86_64') -depends=('xterm>=222' 'libx11>=1.0.99.1' 'twm>=1.0.2' 'xclock') -makedepends=('inputproto') -_F_xorg_nr=2 +depends=('xterm>=229-2' 'libx11>=1.1.3' 'twm>=1.0.3-2' 'xclock>=1.0.3') +makedepends=('inputproto>=1.4.2.1') Finclude xorg -sha1sums=('caab4f9b56fc76edd8500d596d46cf1a9794caff') +sha1sums=('c6cc673205eae7cee11cab212d545ef8d6135019') build() { Fbuild From krics at linuxforum.hu Sun Sep 9 15:44:44 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sun Sep 9 15:44:45 2007 Subject: [Frugalware-git] xorg73: pixman-0.9.5-1-x86_64 Message-ID: <20070909134444.AA9EA13A42E9@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=9037f3551efe7e4e853cb2c638a63c8b7aba393b commit 9037f3551efe7e4e853cb2c638a63c8b7aba393b Author: Christian Hamar alias krix Date: Sun Sep 9 15:44:19 2007 +0200 pixman-0.9.5-1-x86_64 * New package (from individual) diff --git a/source/x11/pixman/FrugalBuild b/source/x11/pixman/FrugalBuild new file mode 100644 index 0000000..fc7a84e --- /dev/null +++ b/source/x11/pixman/FrugalBuild @@ -0,0 +1,18 @@ +# Compiling Time: 0.04 SBU +# Maintainer: Christian Hamar alias krix + +pkgname=pixman +_F_xorg_name=pixman +pkgver=0.9.5 +pkgrel=1 +pkgdesc="X.Org pixman library" +url="http://xorg.freedesktop.org" +groups=('x11' 'xorg-core' 'xorg-libs') +archs=('i686' 'x86_64') +depends=('glibc') +makedepends=('pkgconfig' 'xproto>=7.0.11') +_F_xorg_ind=1 +Finclude xorg + +sha1sums=('8aefe6f52eacb7d3283e2312783a4b80b2ba8324') +# optimization OK From krics at linuxforum.hu Sun Sep 9 16:33:12 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sun Sep 9 16:33:15 2007 Subject: [Frugalware-git] xorg73: xorg-server-1.4-1-x86_64 Message-ID: <20070909143312.CE2EB13A42E9@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=6e0c57165d763e858bedc878de0faea20ebdef05 commit 6e0c57165d763e858bedc878de0faea20ebdef05 Author: Christian Hamar alias krix Date: Sun Sep 9 16:30:39 2007 +0200 xorg-server-1.4-1-x86_64 * Version bump * Reviewed patches which not need anymore * Added 4 more configure options - NOTE: we dont use hal/dbus for autoconfig* foo actually diff --git a/source/x11/xorg-server/FrugalBuild b/source/x11/xorg-server/FrugalBuild index d74cf76..cd710af 100644 --- a/source/x11/xorg-server/FrugalBuild +++ b/source/x11/xorg-server/FrugalBuild @@ -2,29 +2,28 @@ # Maintainer: Christian Hamar alias krix pkgname=xorg-server -pkgver=1.2.0 -pkgrel=8 +pkgver=1.4 +pkgrel=1 mesaver=7.0.1 pkgdesc="Modular X.Org X Server" groups=('x11' 'xorg-core') archs=('i686' 'x86_64') -depends=('libxfont' 'libx11>=1.1.2' 'xtrans' 'libxau' \ - 'libxext' 'libxkbfile' 'libxdmcp' 'libxmu' 'libxrender' \ - 'libxi>=1.1.1' 'freetype2' 'mesa>=7.0.1' 'font-cursor-misc' 'font-misc-misc' \ - 'xbitmaps' 'xkeyboard-config' 'iceauth' 'rgb' 'xauth' 'xinit' 'libxaw' \ - 'libxpm' 'libxxf86misc' 'libxxf86vm' 'libxkbui' 'liblbxutil' \ - 'xorg-cf-files' 'libxtst' 'font-alias' 'libxcb') -makedepends=('randrproto' 'renderproto' 'fixesproto' 'damageproto' 'xextproto' 'xproto' \ +depends=('libxfont>=1.3.1' 'libx11>=1.1.3' 'xtrans>=1.0.4' 'libxau>=1.0.3-2' \ + 'libxext>=1.0.3' 'libxkbfile>=1.0.4-2' 'libxdmcp>=1.0.2-2' 'libxmu>=1.0.3-2' 'libxrender>=0.9.4' \ + 'libxi>=1.1.3' 'freetype2' 'mesa>=7.0.1-2' 'font-cursor-misc>=1.0.0-2' 'font-misc-misc>=1.0.0-2' \ + 'xbitmaps' 'xkeyboard-config>=1.0-2' 'iceauth>=1.0.2' 'rgb>=1.0.1-2' 'xauth>=1.0.2-2' 'xinit>=1.0.5' 'libxaw>=1.0.4' \ + 'libxpm>=3.5.7' 'libxxf86misc>=1.0.1-2' 'libxxf86vm>=1.0.1-2' 'libxkbui>=1.0.2-2' 'liblbxutil>=1.0.1-2' \ + 'xorg-cf-files' 'libxtst>=1.0.3' 'font-alias' 'libxcb>=1.0-4' 'pixman') +makedepends=('randrproto' 'renderproto' 'fixesproto' 'damageproto>=1.1.0' 'xextproto' 'xproto' \ 'xf86dgaproto' 'xf86miscproto' 'xf86rushproto' 'xf86vidmodeproto' 'xf86bigfontproto' \ - 'compositeproto' 'recordproto' 'resourceproto' 'videoproto' 'scrnsaverproto' 'evieext' \ - 'trapproto' 'xineramaproto' 'fontsproto' 'kbproto' 'inputproto' 'bigreqsproto' 'xcmiscproto' \ - 'glproto' 'xf86driproto' 'libdrm' 'printproto' 'mkfontdir' 'mkfontscale' \ - 'fontcacheproto' 'xorg-sgml-doctools' 'util-macros') + 'compositeproto>=0.4' 'recordproto' 'resourceproto' 'videoproto' 'scrnsaverproto' 'evieext' \ + 'trapproto' 'xineramaproto' 'fontsproto' 'kbproto' 'inputproto>=1.4.2.1' 'bigreqsproto' 'xcmiscproto' \ + 'glproto' 'xf86driproto' 'libdrm' 'printproto' 'mkfontdir>=1.0.3' 'mkfontscale>=1.0.3-3' \ + 'fontcacheproto' 'xorg-sgml-doctools>=1.2' 'util-macros>=1.1.5-2') rodepends=('xf86-input-mouse' 'xf86-input-keyboard' 'xf86-video-vga' 'xf86-video-vesa' 'libglx') provides=('xorg-compat') replaces=('xorg-compat') backup=('etc/sysconfig/desktop') -_F_xorg_nr=2 Finclude xorg source=(${source[@]} http://dl.sourceforge.net/sourceforge/mesa3d/MesaLib-$mesaver.tar.bz2 \ 01-kernel-headers-fix.patch \ @@ -35,13 +34,8 @@ source=(${source[@]} http://dl.sourceforge.net/sourceforge/mesa3d/MesaLib-$mesav change-default-dri-driver-dir-X7.1.patch \ mesa-build-config.patch \ F-xorg-x11-server-0.99.3-init-origins-fix.patch0 \ - F-xorg-x11-server-1.1.1-graphics-expose.patch \ xprint-rc-files-fix.patch \ - no-aiglx.patch \ - bug-9367.patch \ - mesa-6.5.3.patch \ - remove__GLinterface.patch \ - http://xorg.freedesktop.org/archive/X11R7.2/patches/xorg-xserver-1.2.0-xcmisc.diff) + no-aiglx.patch) subpkgs=('libglx') subdescs=('Glx library for XOrg.') @@ -55,25 +49,21 @@ build() { Fpatch change-default-dri-driver-dir-X7.1.patch Fpatch mesa-build-config.patch - cd $Fsrcdir/$_F_xorg_name-$_F_xorg_version$_F_xorg_nr-$pkgver || Fdie + cd $Fsrcdir/$_F_xorg_name-$pkgver || Fdie Fpatch 01-kernel-headers-fix.patch Fpatch 02-access_c_skip_null_addresses.patch Fpatch 03-black-background.patch # From fedora, misc fixes. Fpatch F-xorg-x11-server-0.99.3-init-origins-fix.patch0 - Fpatch F-xorg-x11-server-1.1.1-graphics-expose.patch # Hack for init scripts and wrong install stuff for xprint Fpatch xprint-rc-files-fix.patch ## this disables AIGLX by default , uncomment it to enable ## Fpatch no-aiglx.patch ## workaround ATI's closes source c*** ## see https://bugs.freedesktop.org/show_bug.cgi?id=9367 - Fpatch bug-9367.patch - ## SEC stuff , see BTS #1910 - Fpatch xorg-xserver-1.2.0-xcmisc.diff - ## as always xorg devels -> <-mesa devels mess .. - Fpatch mesa-6.5.3.patch - Fpatch remove__GLinterface.patch + ############## + # DISABLED AT 1.4 (we will see whats up ## +# Fpatch bug-9367.patch ## GCC 4.2.0 bug do **NOT** remove this hack or it will kill your box!! ## http://gcc.gnu.org/bugzilla/show_bug.cgi?id=30052 echo 'CFLAGS = @CFLAGS@ -O0' >> hw/xfree86/scanpci/Makefile.am @@ -102,7 +92,11 @@ build() { --with-builder-addr="frugalware-devel@frugalware.org" \ --with-xkb-output=/var/lib/xkb \ --with-xkb-path=/usr/lib/X11/xkb \ - --disable-xorgcfg + --disable-xorgcfg \ + --enable-xcalibrate \ + --enable-fontcache \ + --enable-multibuffer \ + --disable-config-hal # DISABLED THIS for 0.7 release Fmakeinstall Ffile /etc/sysconfig/desktop @@ -116,7 +110,7 @@ build() { Fsplit libglx usr/lib/xorg/modules/extensions/libglx.* } -sha1sums=('3c4e8ae90fafdddb4ec6e640b693c2beb295d106' \ +sha1sums=('3aa6327f4def4d33ce2a8d6d7587295db231ab6d' \ 'deb1002cf377ba8bd9407bd3cf573f8c8be31671' \ 'f31702e0029b2d68018598e73ed55c4d6c58367b' \ '859b98a4049400be152032fc09ceff2afe9e6dcf' \ @@ -126,11 +120,6 @@ sha1sums=('3c4e8ae90fafdddb4ec6e640b693c2beb295d106' \ '426b0b08617ec19cba41ab20f3891cab82f205a2' \ 'f7f706ec568a80543c6d6096b3d8a833b80399ed' \ '2937d6a50155cc16f73ae44b1e5b6e26cabbb86a' \ - '31938c89a107ce89b06287b28c6d355ecaa13217' \ '0eb64d46172b6f2f4462c02dad7964c6d7656076' \ - 'f53de93da5e110867db8b1655b5798d2049f43ae' \ - '22025bd7b96deec8cd31f24fe87a170f1c7898d1' \ - 'f257b56953e9756d38aa01c7f7f5d9a13160576c' \ - '6473a13b65db3e44ba8b369a6a9c667887c41a52' \ - '3557cbe23be6912106ed7220d95301311fb93a26') + 'f53de93da5e110867db8b1655b5798d2049f43ae') # optimization OK From krics at linuxforum.hu Sun Sep 9 16:37:54 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sun Sep 9 16:37:57 2007 Subject: [Frugalware-git] xorg73: xorg-docs-1.4-1-x86_64 Message-ID: <20070909143754.C821913A42E9@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=37eb8b551f5d093b07a1192fa499a4f55547d728 commit 37eb8b551f5d093b07a1192fa499a4f55547d728 Author: Christian Hamar alias krix Date: Sun Sep 9 16:35:54 2007 +0200 xorg-docs-1.4-1-x86_64 * Version bump diff --git a/source/x11/xorg-docs/FrugalBuild b/source/x11/xorg-docs/FrugalBuild index c1305de..eb9e1e9 100644 --- a/source/x11/xorg-docs/FrugalBuild +++ b/source/x11/xorg-docs/FrugalBuild @@ -2,15 +2,14 @@ # Maintainer: Christian Hamar alias krix pkgname=xorg-docs -pkgver=1.2 -pkgrel=2 +pkgver=1.4 +pkgrel=1 pkgdesc="X.Org Documentation" url="http://xorg.freedesktop.org" groups=('x11' 'xorg-core' 'xorg-doc') archs=('i686' 'x86_64') depends=() -makedepends=('xorg-sgml-doctools>=1.1.1') +makedepends=('xorg-sgml-doctools>=1.2') options=('force') -_F_xorg_nr=1 Finclude xorg -sha1sums=('fb3c6f619473903aca0b3a5370f5fa17d31f512e') +sha1sums=('1c129bf9a2da57a308c7b57cb994c960ff15880a') From krics at linuxforum.hu Sun Sep 9 16:42:28 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sun Sep 9 16:42:29 2007 Subject: [Frugalware-git] xorg73: xorg.sh: bydefault depend on >=1.4 xorg-server Message-ID: <20070909144228.839A613A42E9@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=0740fdfad7d33a74de4fddc4c66417ee4293feeb commit 0740fdfad7d33a74de4fddc4c66417ee4293feeb Author: Christian Hamar alias krix Date: Sun Sep 9 16:42:15 2007 +0200 xorg.sh: bydefault depend on >=1.4 xorg-server diff --git a/source/include/xorg.sh b/source/include/xorg.sh index 0708c7b..565800a 100644 --- a/source/include/xorg.sh +++ b/source/include/xorg.sh @@ -57,7 +57,7 @@ if [[ $pkgname =~ ^xf86-input- ]]; then pkgdesc="X.Org driver for ${pkgname#xf86-input-} input devices" groups=('x11' 'xorg-core' 'xorg-drivers') archs=('i686' 'x86_64') - depends=('xorg-server') + depends=('xorg-server>=1.4') makedepends=('inputproto' 'randrproto') fi url="http://xorg.freedesktop.org" From krics at linuxforum.hu Sun Sep 9 16:44:36 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sun Sep 9 16:44:38 2007 Subject: [Frugalware-git] xorg73: xf86-input-evdev-1.1.5-2-x86_64 Message-ID: <20070909144436.A2FEF13A42E9@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=e9936125bede8a98f56edb2fc568259ba9923804 commit e9936125bede8a98f56edb2fc568259ba9923804 Author: Christian Hamar alias krix Date: Sun Sep 9 16:44:12 2007 +0200 xf86-input-evdev-1.1.5-2-x86_64 * Release bump diff --git a/source/x11/xf86-input-evdev/FrugalBuild b/source/x11/xf86-input-evdev/FrugalBuild index cfd59f1..7c61ceb 100644 --- a/source/x11/xf86-input-evdev/FrugalBuild +++ b/source/x11/xf86-input-evdev/FrugalBuild @@ -3,7 +3,7 @@ pkgname=xf86-input-evdev pkgver=1.1.5 -pkgrel=1 +pkgrel=2 _F_xorg_ind=1 Finclude xorg _F_cd_path="$pkgname-$pkgver" From krics at linuxforum.hu Sun Sep 9 16:46:55 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sun Sep 9 16:46:56 2007 Subject: [Frugalware-git] xorg73: xf86-input-keyboard-1.2.2-1-x86_64 Message-ID: <20070909144655.4324A13A42E9@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=5e61f31b728072144a5e266c8a03b06aa33acc2e commit 5e61f31b728072144a5e266c8a03b06aa33acc2e Author: Christian Hamar alias krix Date: Sun Sep 9 16:46:34 2007 +0200 xf86-input-keyboard-1.2.2-1-x86_64 * Version bump diff --git a/source/x11/xf86-input-keyboard/FrugalBuild b/source/x11/xf86-input-keyboard/FrugalBuild index 94c4b64..3c9d163 100644 --- a/source/x11/xf86-input-keyboard/FrugalBuild +++ b/source/x11/xf86-input-keyboard/FrugalBuild @@ -2,12 +2,11 @@ # Maintainer: Christian Hamar alias krix pkgname=xf86-input-keyboard -pkgver=1.1.1 -pkgrel=2 -_F_xorg_nr=2 +pkgver=1.2.2 +pkgrel=1 Finclude xorg -depends=('xorg-server>=1.1.99.903') -makedepends=('util-macros>=1.1.3' 'randrproto') -sha1sums=('5711dd3fa95eeded58dabf9a314071ef699acfaf') +depends=('xorg-server>=1.4') +makedepends=('util-macros>=1.1.5-2' 'randrproto') +sha1sums=('4dd6de50ac468d585629ea8c76b1119b2d588796') # optimization OK From krics at linuxforum.hu Sun Sep 9 16:50:21 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sun Sep 9 16:50:23 2007 Subject: [Frugalware-git] xorg73: xf86-input-mouse-1.2.2-1-x86_64 Message-ID: <20070909145021.F134D13A42E9@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=130af6710c239736fe7b7f9ddfe160889454321c commit 130af6710c239736fe7b7f9ddfe160889454321c Author: Christian Hamar alias krix Date: Sun Sep 9 16:50:02 2007 +0200 xf86-input-mouse-1.2.2-1-x86_64 * Version bump diff --git a/source/x11/xf86-input-mouse/FrugalBuild b/source/x11/xf86-input-mouse/FrugalBuild index 20b2686..28f9182 100644 --- a/source/x11/xf86-input-mouse/FrugalBuild +++ b/source/x11/xf86-input-mouse/FrugalBuild @@ -2,12 +2,11 @@ # Maintainer: Christian Hamar alias krix pkgname=xf86-input-mouse -pkgver=1.1.2 -pkgrel=2 +pkgver=1.2.2 +pkgrel=1 pkgdesc="X.org Mouse input driver" -_F_xorg_nr=2 Finclude xorg -depends=('xorg-server>=1.1.99.903') -sha1sums=('a774fd8ee1fb4d7b31371ac6e9bad0017f2ccc91') +depends=('xorg-server>=1.4') +sha1sums=('f546f7b99ccd4b02fc8485b337478ee60062cd2b') # optimization OK From krics at linuxforum.hu Sun Sep 9 16:53:35 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sun Sep 9 16:53:37 2007 Subject: [Frugalware-git] xorg73: xf86-input-acecad-1.2.1-1-x86_64 Message-ID: <20070909145335.BBD9813A42E9@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=3cfb55aa975d732bf68514f707f6a47a66e87380 commit 3cfb55aa975d732bf68514f707f6a47a66e87380 Author: Christian Hamar alias krix Date: Sun Sep 9 16:53:15 2007 +0200 xf86-input-acecad-1.2.1-1-x86_64 * Version bump diff --git a/source/x11/xf86-input-acecad/FrugalBuild b/source/x11/xf86-input-acecad/FrugalBuild index c58e0b6..33fd1f7 100644 --- a/source/x11/xf86-input-acecad/FrugalBuild +++ b/source/x11/xf86-input-acecad/FrugalBuild @@ -2,10 +2,8 @@ # Maintainer: Christian Hamar alias krix pkgname=xf86-input-acecad -pkgver=1.1.0 -_F_xorg_nr=1 +pkgver=1.2.1 +_F_xorg_ind=1 Finclude xorg - +sha1sums=('0a997d6243a7b159b10b5174ccfd5809f21b46ad') # optimization OK - -sha1sums=('a85d9d9fa8086e1629b2fd8699acba1af6878e98') From krics at linuxforum.hu Sun Sep 9 16:56:52 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sun Sep 9 16:56:59 2007 Subject: [Frugalware-git] xorg73: xf86-input-aiptek-1.0.1-2-x86_64 Message-ID: <20070909145652.9A8EA13A42E9@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=84990543270b1302a859021b994dc44b41685c09 commit 84990543270b1302a859021b994dc44b41685c09 Author: Christian Hamar alias krix Date: Sun Sep 9 16:56:25 2007 +0200 xf86-input-aiptek-1.0.1-2-x86_64 * Release bump diff --git a/source/x11/xf86-input-aiptek/FrugalBuild b/source/x11/xf86-input-aiptek/FrugalBuild index b4fa977..0915a3b 100644 --- a/source/x11/xf86-input-aiptek/FrugalBuild +++ b/source/x11/xf86-input-aiptek/FrugalBuild @@ -3,9 +3,7 @@ pkgname=xf86-input-aiptek pkgver=1.0.1 -_F_xorg_nr=1 +pkgrel=2 Finclude xorg - -# optimization OK - sha1sums=('cbe73ae471a11101b348f37ef9c9f5e38abacade') +# optimization OK From krics at linuxforum.hu Sun Sep 9 17:01:02 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sun Sep 9 17:01:04 2007 Subject: [Frugalware-git] xorg73: xf86-input-digitaledge-1.1.0-2-x86_64 Message-ID: <20070909150102.9DBBC13A42E9@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=f5afcef9f308026d817556a057a1c0388dda6937 commit f5afcef9f308026d817556a057a1c0388dda6937 Author: Christian Hamar alias krix Date: Sun Sep 9 17:00:38 2007 +0200 xf86-input-digitaledge-1.1.0-2-x86_64 * Release bump diff --git a/source/x11/xf86-input-digitaledge/FrugalBuild b/source/x11/xf86-input-digitaledge/FrugalBuild index 0ede78e..c13eff7 100644 --- a/source/x11/xf86-input-digitaledge/FrugalBuild +++ b/source/x11/xf86-input-digitaledge/FrugalBuild @@ -3,7 +3,7 @@ pkgname=xf86-input-digitaledge pkgver=1.1.0 -_F_xorg_nr=1 +pkgrel=2 Finclude xorg -# optimization OK sha1sums=('3389b112b1e7fb0423d7547cc6b346045a61b352') +# optimization OK From janny at frugalware.org Sun Sep 9 17:03:26 2007 From: janny at frugalware.org (janny) Date: Sun Sep 9 17:03:27 2007 Subject: [Frugalware-git] frugalware-current: clamtk-3.02-1-i686 Message-ID: <20070909150326.03F9C13A42E9@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=768e6dcd547f13ff04f17f42411c7305b751bdd4 commit 768e6dcd547f13ff04f17f42411c7305b751bdd4 Author: janny Date: Sun Sep 9 17:02:52 2007 +0200 clamtk-3.02-1-i686 version bump diff --git a/source/xapps-extra/clamtk/FrugalBuild b/source/xapps-extra/clamtk/FrugalBuild index ad97f17..a21ba45 100644 --- a/source/xapps-extra/clamtk/FrugalBuild +++ b/source/xapps-extra/clamtk/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: Janny pkgname=clamtk -pkgver=3.00 +pkgver=3.02 pkgrel=1 pkgdesc="ClamTk is a GUI front-end for ClamAV using gtk2-perl" url="http://clamtk.sourceforge.net/" @@ -10,7 +10,7 @@ rodepends=('perl-gtk2' 'clamav' 'perl-date-calc' 'perl-file-find-rule') groups=('xapps-extra') archs=('i686' 'x86_64') Finclude sourceforge -sha1sums=('5cd233a680cf731432f8744eef2b3c4c7e592947') +sha1sums=('09a64080b2677aa82b01e75b6870e1728d8d9583') build() { Fcd From priyank at frugalware.org Sun Sep 9 17:45:57 2007 From: priyank at frugalware.org (Priyank) Date: Sun Sep 9 17:45:59 2007 Subject: [Frugalware-git] gfpm: gfpm-progress: removed unused variables Message-ID: <20070909154557.4453013A42E9@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gfpm.git;a=commitdiff;h=2cca571d278d75eb729a9b617678178aa7ea77f6 commit 2cca571d278d75eb729a9b617678178aa7ea77f6 Author: Priyank Date: Sun Sep 9 21:14:08 2007 +0530 gfpm-progress: removed unused variables diff --git a/src/gfpm-progress.c b/src/gfpm-progress.c index 85a30a1..d7ef09b 100644 --- a/src/gfpm-progress.c +++ b/src/gfpm-progress.c @@ -213,13 +213,9 @@ gfpm_progress_update (netbuf *ctl, int xferred, void *arg) void gfpm_progress_install (unsigned char event, char *pkgname, int percent, int howmany, int remain) { - static int ph = 0; - static int rh = 0; char *main_text = NULL; char *sub_text = NULL; -// if (ph == howmany) -// return; if (!pkgname) return; if (percent < 0 || percent > 100) @@ -260,7 +256,6 @@ gfpm_progress_install (unsigned char event, char *pkgname, int percent, int howm if (howmany > 1) { sub_text = g_strdup_printf ("(%d/%d) %s", remain, howmany, pkgname); - //ph = howmany; gfpm_progress_set_sub_text (sub_text); g_free (sub_text); } From priyank at frugalware.org Sun Sep 9 17:50:29 2007 From: priyank at frugalware.org (Priyank) Date: Sun Sep 9 17:50:31 2007 Subject: [Frugalware-git] pacman-g2: pacman-g2-optimize: s/pacman/pacman-g2 Message-ID: <20070909155029.3780413A42E9@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=pacman-g2.git;a=commitdiff;h=f074f566d5dce701b8ecd4e79ac25d402737795b commit f074f566d5dce701b8ecd4e79ac25d402737795b Author: Priyank Date: Sun Sep 9 21:18:38 2007 +0530 pacman-g2-optimize: s/pacman/pacman-g2 diff --git a/scripts/pacman-g2-optimize b/scripts/pacman-g2-optimize index 6cfa917..4313359 100755 --- a/scripts/pacman-g2-optimize +++ b/scripts/pacman-g2-optimize @@ -63,7 +63,7 @@ fi # make sure pacman-g2 isn't running if [ -f /tmp/pacman-g2.lck ]; then - die "Pacman lockfile was found. Cannot run while pacman-g2 is running." + die "pacman-g2 lockfile was found. Cannot run while pacman-g2 is running." fi if [ ! -d $dbroot ]; then From krics at linuxforum.hu Sun Sep 9 18:17:17 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sun Sep 9 18:17:20 2007 Subject: [Frugalware-git] xorg73: xf86-input-dmc-1.1.1-1-x86_64 Message-ID: <20070909161717.E00A113A42EA@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=7b1c1c1c3c55a8928b1e3e2015456dec3201953c commit 7b1c1c1c3c55a8928b1e3e2015456dec3201953c Author: Christian Hamar alias krix Date: Sun Sep 9 18:16:54 2007 +0200 xf86-input-dmc-1.1.1-1-x86_64 * Version bump diff --git a/source/x11/xf86-input-dmc/FrugalBuild b/source/x11/xf86-input-dmc/FrugalBuild index 52788bb..f5ccb35 100644 --- a/source/x11/xf86-input-dmc/FrugalBuild +++ b/source/x11/xf86-input-dmc/FrugalBuild @@ -2,8 +2,8 @@ # Maintainer: Christian Hamar alias krix pkgname=xf86-input-dmc -pkgver=1.1.0 -_F_xorg_nr=1 +pkgver=1.1.1 +_F_xorg_ind=1 Finclude xorg +sha1sums=('e483905ad017bb088f2d873be9185a25e04c9f6e') # optimization OK -sha1sums=('c7d824eb757032adb3c0301e4cbb27db7076e167') From krics at linuxforum.hu Sun Sep 9 18:21:11 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sun Sep 9 18:21:12 2007 Subject: [Frugalware-git] xorg73: xf86-input-elographics-1.1.0-2-x86_64 Message-ID: <20070909162111.4DB6E13A42EA@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=f2f6e8f02c87fb9b4952ee7b6d9dfe1a920351d2 commit f2f6e8f02c87fb9b4952ee7b6d9dfe1a920351d2 Author: Christian Hamar alias krix Date: Sun Sep 9 18:20:48 2007 +0200 xf86-input-elographics-1.1.0-2-x86_64 * Release bump diff --git a/source/x11/xf86-input-elographics/FrugalBuild b/source/x11/xf86-input-elographics/FrugalBuild index 11030fc..80d654e 100644 --- a/source/x11/xf86-input-elographics/FrugalBuild +++ b/source/x11/xf86-input-elographics/FrugalBuild @@ -3,8 +3,9 @@ pkgname=xf86-input-elographics pkgver=1.1.0 +pkgrel=2 +_F_xorg_ind=1 Finclude xorg _F_cd_path="$pkgname-$pkgver" - -# optimization OK sha1sums=('9bd0d4dcfa7fcbec3b30dd8d9028f9f0a3862b53') +# optimization OK From krics at linuxforum.hu Sun Sep 9 18:23:13 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sun Sep 9 18:23:14 2007 Subject: [Frugalware-git] xorg73: xf86-input-fpit-1.1.0-2-x86_64 Message-ID: <20070909162313.4490B13A42EA@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=2e0d53832e55d32b6ea0cf0397c8f3b3ab7d29aa commit 2e0d53832e55d32b6ea0cf0397c8f3b3ab7d29aa Author: Christian Hamar alias krix Date: Sun Sep 9 18:22:53 2007 +0200 xf86-input-fpit-1.1.0-2-x86_64 * Release bump diff --git a/source/x11/xf86-input-fpit/FrugalBuild b/source/x11/xf86-input-fpit/FrugalBuild index 1db15c2..260fdc7 100644 --- a/source/x11/xf86-input-fpit/FrugalBuild +++ b/source/x11/xf86-input-fpit/FrugalBuild @@ -3,7 +3,7 @@ pkgname=xf86-input-fpit pkgver=1.1.0 -_F_xorg_nr=1 +pkgrel=2 Finclude xorg -# optimization OK sha1sums=('988f689f64dcbf721154267c8f4844d8f3dae6ce') +# optimization OK From krics at linuxforum.hu Sun Sep 9 18:24:45 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sun Sep 9 18:24:46 2007 Subject: [Frugalware-git] xorg73: xf86-input-hyperpen-1.1.0-2-x86_64 Message-ID: <20070909162445.520FF13A42EA@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=82d7a1a8abb790ef0cc4c05fc131ed86c23ba073 commit 82d7a1a8abb790ef0cc4c05fc131ed86c23ba073 Author: Christian Hamar alias krix Date: Sun Sep 9 18:24:25 2007 +0200 xf86-input-hyperpen-1.1.0-2-x86_64 * Release bump diff --git a/source/x11/xf86-input-hyperpen/FrugalBuild b/source/x11/xf86-input-hyperpen/FrugalBuild index cda1497..ae23062 100644 --- a/source/x11/xf86-input-hyperpen/FrugalBuild +++ b/source/x11/xf86-input-hyperpen/FrugalBuild @@ -3,7 +3,7 @@ pkgname=xf86-input-hyperpen pkgver=1.1.0 -_F_xorg_nr=1 +pkgrel=2 Finclude xorg -# optimization OK sha1sums=('de89f5020a1ad2630663d5f3b78402698766b304') +# optimization OK From krics at linuxforum.hu Sun Sep 9 18:26:07 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sun Sep 9 18:26:08 2007 Subject: [Frugalware-git] xorg73: xf86-input-jamstudio-1.1.0-2-x86_64 Message-ID: <20070909162607.6F9AF13A42EA@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=91bc42965b5359adb690ccbf54eedea8e97c5f25 commit 91bc42965b5359adb690ccbf54eedea8e97c5f25 Author: Christian Hamar alias krix Date: Sun Sep 9 18:25:47 2007 +0200 xf86-input-jamstudio-1.1.0-2-x86_64 * Release bump diff --git a/source/x11/xf86-input-jamstudio/FrugalBuild b/source/x11/xf86-input-jamstudio/FrugalBuild index 2ada0a3..065d601 100644 --- a/source/x11/xf86-input-jamstudio/FrugalBuild +++ b/source/x11/xf86-input-jamstudio/FrugalBuild @@ -3,7 +3,7 @@ pkgname=xf86-input-jamstudio pkgver=1.1.0 -_F_xorg_nr=1 +pkgrel=2 Finclude xorg -# optimization OK sha1sums=('db7c48994d25974060047321df3b86eb9cead2f0') +# optimization OK From krics at linuxforum.hu Sun Sep 9 18:27:32 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sun Sep 9 18:27:34 2007 Subject: [Frugalware-git] xorg73: xf86-input-joystick-1.2.3-1-x86_64 Message-ID: <20070909162732.E6F1213A42EA@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=f1540e044a3736fa89b89ddec9732a4d7f4c8335 commit f1540e044a3736fa89b89ddec9732a4d7f4c8335 Author: Christian Hamar alias krix Date: Sun Sep 9 18:27:12 2007 +0200 xf86-input-joystick-1.2.3-1-x86_64 * Version bump diff --git a/source/x11/xf86-input-joystick/FrugalBuild b/source/x11/xf86-input-joystick/FrugalBuild index a3fd228..af9488a 100644 --- a/source/x11/xf86-input-joystick/FrugalBuild +++ b/source/x11/xf86-input-joystick/FrugalBuild @@ -2,9 +2,8 @@ # Maintainer: Christian Hamar alias krix pkgname=xf86-input-joystick -pkgver=1.1.0 -_F_xorg_nr=1 +pkgver=1.2.3 +pkgrel=1 Finclude xorg -sha1sums=('cbf48e117aca2adc01d85c7bc67c218299b0f158') - +sha1sums=('2dcec012f539b2b7351aeb983b0ba6494c3ba5e8') # optimization OK From krics at linuxforum.hu Sun Sep 9 18:33:30 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sun Sep 9 18:33:31 2007 Subject: [Frugalware-git] xorg73: xf86-input-magictouch-1.0.0.5-2-x86_64 Message-ID: <20070909163330.7771913A42EA@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=f39afaa984977903f851190dbe7362e031ca1e24 commit f39afaa984977903f851190dbe7362e031ca1e24 Author: Christian Hamar alias krix Date: Sun Sep 9 18:33:08 2007 +0200 xf86-input-magictouch-1.0.0.5-2-x86_64 * Release bump diff --git a/source/x11/xf86-input-magictouch/FrugalBuild b/source/x11/xf86-input-magictouch/FrugalBuild index b4d80da..b2ad243 100644 --- a/source/x11/xf86-input-magictouch/FrugalBuild +++ b/source/x11/xf86-input-magictouch/FrugalBuild @@ -3,7 +3,7 @@ pkgname=xf86-input-magictouch pkgver=1.0.0.5 -_F_xorg_nr=1 +pkgrel=2 Finclude xorg -# optimization OK sha1sums=('b93cd66d5a9f18a3756231176f4ff54a67c8b406') +# optimization OK From krics at linuxforum.hu Sun Sep 9 18:36:05 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sun Sep 9 18:36:08 2007 Subject: [Frugalware-git] xorg73: xf86-input-mutouch-1.1.0-2-x86_64 Message-ID: <20070909163605.8D4FF13A42EA@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=662e9c5c988e860f19c1e5f81f2b7ca9a40966e4 commit 662e9c5c988e860f19c1e5f81f2b7ca9a40966e4 Author: Christian Hamar alias krix Date: Sun Sep 9 18:35:44 2007 +0200 xf86-input-mutouch-1.1.0-2-x86_64 * Release bump diff --git a/source/x11/xf86-input-mutouch/FrugalBuild b/source/x11/xf86-input-mutouch/FrugalBuild index 32b82e4..883a86e 100644 --- a/source/x11/xf86-input-mutouch/FrugalBuild +++ b/source/x11/xf86-input-mutouch/FrugalBuild @@ -3,7 +3,7 @@ pkgname=xf86-input-mutouch pkgver=1.1.0 -_F_xorg_nr=1 +pkgrel=2 Finclude xorg -# optimization OK sha1sums=('87c2e9aee8c313aacd2927a19a6ed5b855650616') +# optimization OK From krics at linuxforum.hu Sun Sep 9 18:37:33 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sun Sep 9 18:37:35 2007 Subject: [Frugalware-git] xorg73: xf86-input-palmax-1.1.0-2-x86_64 Message-ID: <20070909163733.AF7B713A42EA@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=b6ca9f3134b9cbf690c61eba55f76908c9a0f0e9 commit b6ca9f3134b9cbf690c61eba55f76908c9a0f0e9 Author: Christian Hamar alias krix Date: Sun Sep 9 18:37:14 2007 +0200 xf86-input-palmax-1.1.0-2-x86_64 * Release bump diff --git a/source/x11/xf86-input-palmax/FrugalBuild b/source/x11/xf86-input-palmax/FrugalBuild index e974361..15f8679 100644 --- a/source/x11/xf86-input-palmax/FrugalBuild +++ b/source/x11/xf86-input-palmax/FrugalBuild @@ -3,7 +3,7 @@ pkgname=xf86-input-palmax pkgver=1.1.0 -_F_xorg_nr=1 +pkgrel=2 Finclude xorg -# optimization OK sha1sums=('428da606695aca592c54a76e4d33d2bf0a5b218e') +# optimization OK From krics at linuxforum.hu Sun Sep 9 18:40:52 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sun Sep 9 18:40:53 2007 Subject: [Frugalware-git] xorg73: xf86-input-summa-1.1.0-2-x86_64 Message-ID: <20070909164052.78A1313A42EA@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=77de01699a2c8702d46ba9502e9d076bb77a9fa2 commit 77de01699a2c8702d46ba9502e9d076bb77a9fa2 Author: Christian Hamar alias krix Date: Sun Sep 9 18:40:31 2007 +0200 xf86-input-summa-1.1.0-2-x86_64 * Release bump diff --git a/source/x11/xf86-input-summa/FrugalBuild b/source/x11/xf86-input-summa/FrugalBuild index 8f3a3b4..c9724fc 100644 --- a/source/x11/xf86-input-summa/FrugalBuild +++ b/source/x11/xf86-input-summa/FrugalBuild @@ -3,9 +3,7 @@ pkgname=xf86-input-summa pkgver=1.1.0 -_F_xorg_nr=1 +pkgrel=2 Finclude xorg - -# optimization OK - sha1sums=('187fce3901140dd0a2fa523c7ed8c0326af1b3b1') +# optimization OK From krics at linuxforum.hu Sun Sep 9 18:42:27 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sun Sep 9 18:42:29 2007 Subject: [Frugalware-git] xorg73: xf86-input-tek4957-1.1.0-2-x86_64 Message-ID: <20070909164227.94E0B13A42EA@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=afecfe3157ceafe217b0398aa340a6e255fdbdde commit afecfe3157ceafe217b0398aa340a6e255fdbdde Author: Christian Hamar alias krix Date: Sun Sep 9 18:42:08 2007 +0200 xf86-input-tek4957-1.1.0-2-x86_64 * Release bump diff --git a/source/x11/xf86-input-tek4957/FrugalBuild b/source/x11/xf86-input-tek4957/FrugalBuild index 543c496..65de9cb 100644 --- a/source/x11/xf86-input-tek4957/FrugalBuild +++ b/source/x11/xf86-input-tek4957/FrugalBuild @@ -3,9 +3,7 @@ pkgname=xf86-input-tek4957 pkgver=1.1.0 -_F_xorg_nr=1 +pkgrel=2 Finclude xorg - -# optimization OK - sha1sums=('3a20a1498e5bb84471ddcf497b6fe92edb310c3e') +# optimization OK From krics at linuxforum.hu Sun Sep 9 18:44:15 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sun Sep 9 18:44:16 2007 Subject: [Frugalware-git] xorg73: xf86-input-ur98-1.1.0-2-x86_64 Message-ID: <20070909164415.A9E0513A42EA@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=5e5d368ea2b153ceb184e1dc977ed46c2e5cacf0 commit 5e5d368ea2b153ceb184e1dc977ed46c2e5cacf0 Author: Christian Hamar alias krix Date: Sun Sep 9 18:43:55 2007 +0200 xf86-input-ur98-1.1.0-2-x86_64 * Release bump diff --git a/source/x11/xf86-input-ur98/FrugalBuild b/source/x11/xf86-input-ur98/FrugalBuild index 51aa440..bb358c7 100644 --- a/source/x11/xf86-input-ur98/FrugalBuild +++ b/source/x11/xf86-input-ur98/FrugalBuild @@ -3,9 +3,7 @@ pkgname=xf86-input-ur98 pkgver=1.1.0 -_F_xorg_nr=1 +pkgrel=2 Finclude xorg - -# optimization OK - sha1sums=('8070b10af5d91e941310499b75376603a0655f07') +# optimization OK From hermier at frugalware.org Sun Sep 9 18:45:08 2007 From: hermier at frugalware.org (Michel Hermier) Date: Sun Sep 9 18:45:10 2007 Subject: [Frugalware-git] frugalware-current: source/include/util.sh: Create a new Flastarchive helper to allow to check archive with user suffixes. Message-ID: <20070909164508.CA9CB13A42EA@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=f9dd398bfcf97b561c2124eec3253c7717f0195d commit f9dd398bfcf97b561c2124eec3253c7717f0195d Author: Michel Hermier Date: Sun Sep 9 18:44:14 2007 +0200 source/include/util.sh: Create a new Flastarchive helper to allow to check archive with user suffixes. Make the Flasttar* methods using it. Increase the power of Flasttar so that the other Flasttar* are somehow deprecated. Report me any breakage. diff --git a/source/include/util.sh b/source/include/util.sh index 721d601..a58c6c1 100644 --- a/source/include/util.sh +++ b/source/include/util.sh @@ -787,27 +787,32 @@ Fautoreconf() { } ### +# * Flastarchive: Extracts version from a page's last archive. +# Extension of the archive is given as argument. +### +Flastarchive() { + grep "$1\(\$\|#\)"|sed -n "s/.*-\(.*\)$1/\1/;\$ p" +} + +### # * Flasttar(): Extracts version from a page's last tar.gz link. ### -Flasttar() -{ - grep 'tar.gz\($\|#\)'|sed -n 's/.*-\(.*\)\.t.*/\1/;$ p' +Flasttar() { + Flastarchive '\.tar\(\|\.gz\|\.bz2\)\|\.tgz' } ### # * Flasttgz(): Extracts version from a page's last tgz link. ### -Flasttgz() -{ - grep 'tgz\($\|#\)'|sed -n 's/.*-\(.*\)\.t.*/\1/;$ p' +Flasttgz() { + Flastarchive '\.tgz\(\|\.gz\)' } ### # * Flasttarbz2(): Extracts version from a page's last tar.bz2 link. ### -Flasttarbz2() -{ - grep 'tar.bz2\($\|#\)'|sed -n 's/.*-\(.*\)\.t.*/\1/;$ p' +Flasttarbz2() { + Flastarchive '\.tar\.bz2' } ### From krics at linuxforum.hu Sun Sep 9 18:47:07 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sun Sep 9 18:47:09 2007 Subject: [Frugalware-git] xorg73: xf86-input-void-1.1.1-1-x86_64 Message-ID: <20070909164707.E3CA913A42EA@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=2cac468ee68a6598776037df4cbdfcec3e71f078 commit 2cac468ee68a6598776037df4cbdfcec3e71f078 Author: Christian Hamar alias krix Date: Sun Sep 9 18:46:46 2007 +0200 xf86-input-void-1.1.1-1-x86_64 * VErsion bump diff --git a/source/x11/xf86-input-void/FrugalBuild b/source/x11/xf86-input-void/FrugalBuild index fb4de64..d71bb20 100644 --- a/source/x11/xf86-input-void/FrugalBuild +++ b/source/x11/xf86-input-void/FrugalBuild @@ -2,10 +2,9 @@ # Maintainer: Christian Hamar alias krix pkgname=xf86-input-void -pkgver=1.1.0 -_F_xorg_nr=1 +pkgver=1.1.1 +pkgrel=1 +_F_xorg_ind=1 Finclude xorg - +sha1sums=('7e40331bd3a96f14ab79518b69a418e7beae8b67') # optimization OK - -sha1sums=('69077dd924cfabf083b86335489bc8069f9659e3') From krics at linuxforum.hu Sun Sep 9 18:50:03 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sun Sep 9 18:50:05 2007 Subject: [Frugalware-git] xorg73: xf86-video-apm-1.1.1-2-x86_64 Message-ID: <20070909165003.CCC9C13A42EA@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=fdf387b69701d97cc23334264e0257294ab0beea commit fdf387b69701d97cc23334264e0257294ab0beea Author: Christian Hamar alias krix Date: Sun Sep 9 18:49:42 2007 +0200 xf86-video-apm-1.1.1-2-x86_64 * Release bump diff --git a/source/x11/xf86-video-apm/FrugalBuild b/source/x11/xf86-video-apm/FrugalBuild index b0e7a46..52a5da8 100644 --- a/source/x11/xf86-video-apm/FrugalBuild +++ b/source/x11/xf86-video-apm/FrugalBuild @@ -3,14 +3,13 @@ pkgname=xf86-video-apm pkgver=1.1.1 -pkgrel=1 +pkgrel=2 pkgdesc="X.Org driver for apm cards" url="http://xorg.freedesktop.org" groups=('x11' 'xorg-core' 'xorg-drivers') archs=('i686' 'x86_64') -depends=('xorg-server') -makedepends=('xproto' 'randrproto' 'renderproto' 'videoproto' 'xorg-sgml-doctools') -_F_xorg_nr=1 +depends=('xorg-server>=1.4') +makedepends=('xproto>=7.0.11' 'randrproto' 'renderproto' 'videoproto' 'xorg-sgml-doctools>=1.2') Finclude xorg sha1sums=('5e0e32f74b50f6834f866aac9a03c22283577ec4') From krics at linuxforum.hu Sun Sep 9 18:51:43 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sun Sep 9 18:51:44 2007 Subject: [Frugalware-git] xorg73: xf86-video-ark-0.6.0-2-x86_64 Message-ID: <20070909165143.5518313A42EA@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=b3833bf93fec2f5154b8ec21906464bb64bf43db commit b3833bf93fec2f5154b8ec21906464bb64bf43db Author: Christian Hamar alias krix Date: Sun Sep 9 18:51:22 2007 +0200 xf86-video-ark-0.6.0-2-x86_64 * Release bump diff --git a/source/x11/xf86-video-ark/FrugalBuild b/source/x11/xf86-video-ark/FrugalBuild index 3d162b5..1da5666 100644 --- a/source/x11/xf86-video-ark/FrugalBuild +++ b/source/x11/xf86-video-ark/FrugalBuild @@ -3,14 +3,13 @@ pkgname=xf86-video-ark pkgver=0.6.0 -pkgrel=1 +pkgrel=2 pkgdesc="X.Org driver for ark cards" url="http://xorg.freedesktop.org" groups=('x11' 'xorg-core' 'xorg-drivers') archs=('i686' 'x86_64') -depends=('xorg-server') +depends=('xorg-server>=1.4') makedepends=('xproto' 'randrproto' 'renderproto') -_F_xorg_nr=1 Finclude xorg sha1sums=('349572d92ca6cd2c8f370105c4bffc70b7034bf3') From krics at linuxforum.hu Sun Sep 9 18:53:33 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sun Sep 9 18:53:34 2007 Subject: [Frugalware-git] xorg73: xf86-video-ast-0.81.0-2-x86_64 Message-ID: <20070909165333.30D4E13A42EA@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=55b112fb3d2680b898fee9e90bde3df5b656ad3d commit 55b112fb3d2680b898fee9e90bde3df5b656ad3d Author: Christian Hamar alias krix Date: Sun Sep 9 18:53:11 2007 +0200 xf86-video-ast-0.81.0-2-x86_64 * Release bump diff --git a/source/x11/xf86-video-ast/FrugalBuild b/source/x11/xf86-video-ast/FrugalBuild index 52b6287..6216958 100644 --- a/source/x11/xf86-video-ast/FrugalBuild +++ b/source/x11/xf86-video-ast/FrugalBuild @@ -3,16 +3,13 @@ pkgname=xf86-video-ast pkgver=0.81.0 -pkgrel=1 +pkgrel=2 pkgdesc="X.Org video driver for ast cards" url="http://xorg.freedesktop.org" groups=('x11' 'xorg-core' 'xorg-drivers') archs=('i686' 'x86_64') -depends=('xorg-server>=1.1.0') +depends=('xorg-server>=1.4') makedepends=('randrproto' 'renderproto' 'videoproto') -_F_xorg_nr=1 Finclude xorg - -# optimization OK - sha1sums=('4b7c68677382fcdcfde876f9cd861366d6f85cea') +# optimization OK From krics at linuxforum.hu Sun Sep 9 18:57:34 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sun Sep 9 18:57:36 2007 Subject: [Frugalware-git] xorg73: xf86-video-ati-6.6.3-3-x86_64 Message-ID: <20070909165734.A82AA13A42EA@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=3d10193360b59ec4e6c15a97412f598515367c4a commit 3d10193360b59ec4e6c15a97412f598515367c4a Author: Christian Hamar alias krix Date: Sun Sep 9 18:57:05 2007 +0200 xf86-video-ati-6.6.3-3-x86_64 * Release bump diff --git a/source/x11/xf86-video-ati/FrugalBuild b/source/x11/xf86-video-ati/FrugalBuild index 800e21d..712105a 100644 --- a/source/x11/xf86-video-ati/FrugalBuild +++ b/source/x11/xf86-video-ati/FrugalBuild @@ -3,16 +3,16 @@ pkgname=xf86-video-ati pkgver=6.6.3 -pkgrel=2 +pkgrel=3 pkgdesc="X.Org driver for ATI cards" url="http://xorg.freedesktop.org" groups=('x11' 'xorg-core' 'xorg-drivers') archs=('i686' 'x86_64') -depends=('xorg-server>=1.2.0-3') +depends=('xorg-server>=1.4') makedepends=('xproto' 'randrproto' 'renderproto' 'xf86driproto' 'videoproto' 'xf86miscproto' 'xineramaproto' 'glproto') -_F_xorg_nr=2 +#_F_xorg_ind=1 Finclude xorg -sha1sums=('481c13bc1637f960bc4998777bfc14b435208021') +sha1sums=('b911df1f4b41ad37028c708e2c95e5a729a32ede') Fconfopts="$Fconfopts --enable-dri" # NOTE: TVout interface not available on x86_64 From krics at linuxforum.hu Sun Sep 9 18:59:18 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sun Sep 9 18:59:19 2007 Subject: [Frugalware-git] xorg73: xf86-video-chips-1.1.1-2-x86_64 Message-ID: <20070909165918.01E6213A42EA@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=fe8ec4dc6998db726af4eb3d53ecdc76efc101e0 commit fe8ec4dc6998db726af4eb3d53ecdc76efc101e0 Author: Christian Hamar alias krix Date: Sun Sep 9 18:58:57 2007 +0200 xf86-video-chips-1.1.1-2-x86_64 * Release bump diff --git a/source/x11/xf86-video-chips/FrugalBuild b/source/x11/xf86-video-chips/FrugalBuild index 0fcf06c..ad8b275 100644 --- a/source/x11/xf86-video-chips/FrugalBuild +++ b/source/x11/xf86-video-chips/FrugalBuild @@ -3,14 +3,13 @@ pkgname=xf86-video-chips pkgver=1.1.1 -pkgrel=1 +pkgrel=2 pkgdesc="X.Org driver for chips cards" url="http://xorg.freedesktop.org" groups=('x11' 'xorg-core' 'xorg-drivers') archs=('i686' 'x86_64') -depends=('xorg-server>=1.1.0') +depends=('xorg-server>=1.4') makedepends=('randrproto' 'renderproto' 'videoproto') -_F_xorg_nr=1 Finclude xorg sha1sums=('0df4bd2545b6b9db5670a7e512f24562fb1b7a03') From krics at linuxforum.hu Sun Sep 9 19:00:52 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sun Sep 9 19:00:53 2007 Subject: [Frugalware-git] xorg73: xf86-video-cirrus-1.1.0-2-x86_64 Message-ID: <20070909170052.EDE0A13A42EA@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=0b1674720eb97a8b3658a0d88c56990d067ccfec commit 0b1674720eb97a8b3658a0d88c56990d067ccfec Author: Christian Hamar alias krix Date: Sun Sep 9 19:00:33 2007 +0200 xf86-video-cirrus-1.1.0-2-x86_64 * Release bump diff --git a/source/x11/xf86-video-cirrus/FrugalBuild b/source/x11/xf86-video-cirrus/FrugalBuild index 40452fb..746828f 100644 --- a/source/x11/xf86-video-cirrus/FrugalBuild +++ b/source/x11/xf86-video-cirrus/FrugalBuild @@ -3,14 +3,13 @@ pkgname=xf86-video-cirrus pkgver=1.1.0 -pkgrel=1 +pkgrel=2 pkgdesc="X.Org driver for Cirrus Logic cards" url="http://xorg.freedesktop.org" groups=('x11' 'xorg-core' 'xorg-drivers') archs=('i686' 'x86_64') -depends=('xorg-server>=1.1.0') +depends=('xorg-server>=1.4') makedepends=('randrproto' 'renderproto' 'videoproto') -_F_xorg_nr=1 Finclude xorg sha1sums=('1832fc03ea9d60a96bfd96c156cb439818bfc579') From krics at linuxforum.hu Sun Sep 9 19:02:28 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sun Sep 9 19:02:29 2007 Subject: [Frugalware-git] xorg73: xf86-video-cyrix-1.1.0-2-x86_64 Message-ID: <20070909170228.2858613A42EA@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=a00993269853911ac8ae372db3cb9cd8ad2924bb commit a00993269853911ac8ae372db3cb9cd8ad2924bb Author: Christian Hamar alias krix Date: Sun Sep 9 19:02:08 2007 +0200 xf86-video-cyrix-1.1.0-2-x86_64 * Release bump diff --git a/source/x11/xf86-video-cyrix/FrugalBuild b/source/x11/xf86-video-cyrix/FrugalBuild index f3912fb..4e0b7d2 100644 --- a/source/x11/xf86-video-cyrix/FrugalBuild +++ b/source/x11/xf86-video-cyrix/FrugalBuild @@ -3,14 +3,13 @@ pkgname=xf86-video-cyrix pkgver=1.1.0 -pkgrel=1 +pkgrel=2 pkgdesc="X.Org driver for Cyrix cards" url="http://xorg.freedesktop.org" groups=('x11' 'xorg-core' 'xorg-drivers') archs=('i686' 'x86_64') -depends=('xorg-server>=1.1.0') +depends=('xorg-server>=1.4') makedepends=('randrproto' 'renderproto' 'xf86dgaproto') -_F_xorg_nr=1 Finclude xorg sha1sums=('e82a9384828ce3f43ea7d3623df76ffa17aa4813') From krics at linuxforum.hu Sun Sep 9 19:03:57 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sun Sep 9 19:03:59 2007 Subject: [Frugalware-git] xorg73: xf86-video-dummy-0.2.0-2-x86_64 Message-ID: <20070909170357.EE50513A42EA@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=1bd6b17fd46660f60a0a706c04b100325a45ce4e commit 1bd6b17fd46660f60a0a706c04b100325a45ce4e Author: Christian Hamar alias krix Date: Sun Sep 9 19:03:37 2007 +0200 xf86-video-dummy-0.2.0-2-x86_64 * Release bump diff --git a/source/x11/xf86-video-dummy/FrugalBuild b/source/x11/xf86-video-dummy/FrugalBuild index fd74d98..d6d518d 100644 --- a/source/x11/xf86-video-dummy/FrugalBuild +++ b/source/x11/xf86-video-dummy/FrugalBuild @@ -3,14 +3,13 @@ pkgname=xf86-video-dummy pkgver=0.2.0 -pkgrel=1 +pkgrel=2 pkgdesc="X.Org driver for dummy cards" url="http://xorg.freedesktop.org" groups=('x11' 'xorg-core' 'xorg-drivers') archs=('i686' 'x86_64') -depends=('xorg-server>=1.1.0') +depends=('xorg-server>=1.4') makedepends=('randrproto' 'renderproto' 'xf86dgaproto' 'videoproto') -_F_xorg_nr=1 Finclude xorg sha1sums=('8a176b64ed0eb8bc8ce16eeb3e78cf73a95b165e') From krics at linuxforum.hu Sun Sep 9 19:06:48 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sun Sep 9 19:06:50 2007 Subject: [Frugalware-git] xorg73: xf86-video-fbdev-0.3.1-2-x86_64 Message-ID: <20070909170648.C154B13A42EA@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=b88eb13550a6c96d25ba827976b61ffbb75fca41 commit b88eb13550a6c96d25ba827976b61ffbb75fca41 Author: Christian Hamar alias krix Date: Sun Sep 9 19:06:20 2007 +0200 xf86-video-fbdev-0.3.1-2-x86_64 * Release bump diff --git a/source/x11/xf86-video-fbdev/FrugalBuild b/source/x11/xf86-video-fbdev/FrugalBuild index 4152093..9f1f2cc 100644 --- a/source/x11/xf86-video-fbdev/FrugalBuild +++ b/source/x11/xf86-video-fbdev/FrugalBuild @@ -3,14 +3,12 @@ pkgname=xf86-video-fbdev pkgver=0.3.1 -pkgrel=1 +pkgrel=2 pkgdesc="X.Org driver for fbdev cards" groups=('x11' 'xorg-core' 'xorg-drivers') archs=('i686' 'x86_64') -depends=('xorg-server>=1.2.0') +depends=('xorg-server>=1.4') makedepends=('randrproto' 'renderproto' 'xf86dgaproto' 'videoproto') -_F_xorg_nr=2 Finclude xorg - -sha1sums=('1f36a74aa1933b672ac7549e4b49d878d64fb10d') +sha1sums=('6b1cc6fbe0d1b34daff6cb202db6827007ec1cb5') # optimization OK From krics at linuxforum.hu Sun Sep 9 19:09:03 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sun Sep 9 19:09:04 2007 Subject: [Frugalware-git] xorg73: xf86-video-glint-1.1.1-2-x86_64 Message-ID: <20070909170903.410C513A42EA@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=3c7375cbb02f3de331d2753917b26325216edcc3 commit 3c7375cbb02f3de331d2753917b26325216edcc3 Author: Christian Hamar alias krix Date: Sun Sep 9 19:08:42 2007 +0200 xf86-video-glint-1.1.1-2-x86_64 * Release bump * Simplified FB (or how we write :P ) diff --git a/source/x11/xf86-video-glint/FrugalBuild b/source/x11/xf86-video-glint/FrugalBuild index 1a19468..06430d1 100644 --- a/source/x11/xf86-video-glint/FrugalBuild +++ b/source/x11/xf86-video-glint/FrugalBuild @@ -3,19 +3,15 @@ pkgname=xf86-video-glint pkgver=1.1.1 -pkgrel=1 +pkgrel=2 pkgdesc="X.Org driver for glint cards" url="http://xorg.freedesktop.org" groups=('x11' 'xorg-core' 'xorg-drivers') archs=('i686' 'x86_64') -depends=('xorg-server') +depends=('xorg-server>=1.4') makedepends=('randrproto' 'renderproto' 'xf86dgaproto' 'videoproto' 'xf86driproto' 'glproto') -_F_xorg_nr=1 Finclude xorg +Fconfopts="$Fconfopts --enable-dri" sha1sums=('0e70ae96862483e66e75553dd19ef6ef5bcb8132') -build() { - Fbuild --enable-dri -} - # optimization OK From krics at linuxforum.hu Sun Sep 9 19:11:07 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sun Sep 9 19:11:08 2007 Subject: [Frugalware-git] xorg73: xf86-video-i128-1.2.1-2-x86_64 Message-ID: <20070909171107.5A34913A42EA@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=be726546190b394e837800a12010542869179fbd commit be726546190b394e837800a12010542869179fbd Author: Christian Hamar alias krix Date: Sun Sep 9 19:10:44 2007 +0200 xf86-video-i128-1.2.1-2-x86_64 * Release bump diff --git a/source/x11/xf86-video-i128/FrugalBuild b/source/x11/xf86-video-i128/FrugalBuild index 61213c6..c1cee75 100644 --- a/source/x11/xf86-video-i128/FrugalBuild +++ b/source/x11/xf86-video-i128/FrugalBuild @@ -3,14 +3,13 @@ pkgname=xf86-video-i128 pkgver=1.2.1 -pkgrel=1 +pkgrel=2 pkgdesc="X.Org driver for i128 cards" url="http://xorg.freedesktop.org" groups=('x11' 'xorg-core' 'xorg-drivers') archs=('i686' 'x86_64') -depends=('xorg-server>=1.1.99.903') +depends=('xorg-server>=1.4') makedepends=('randrproto' 'renderproto' 'videoproto') -_F_xorg_nr=2 Finclude xorg sha1sums=('8906c29c25dc4b54958052b3327d4d2150d1155e') From krics at linuxforum.hu Sun Sep 9 19:12:31 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sun Sep 9 19:12:32 2007 Subject: [Frugalware-git] xorg73: xf86-video-i740-1.1.0-2-x86_64 Message-ID: <20070909171231.4B44F13A42EA@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=30ff12349e82855016bd75793f6d69d491624825 commit 30ff12349e82855016bd75793f6d69d491624825 Author: Christian Hamar alias krix Date: Sun Sep 9 19:12:10 2007 +0200 xf86-video-i740-1.1.0-2-x86_64 * Release bump diff --git a/source/x11/xf86-video-i740/FrugalBuild b/source/x11/xf86-video-i740/FrugalBuild index fd9bcd7..8841fc1 100644 --- a/source/x11/xf86-video-i740/FrugalBuild +++ b/source/x11/xf86-video-i740/FrugalBuild @@ -3,14 +3,13 @@ pkgname=xf86-video-i740 pkgver=1.1.0 -pkgrel=1 +pkgrel=2 pkgdesc="X.Org driver for i740 cards" url="http://xorg.freedesktop.org" groups=('x11' 'xorg-core' 'xorg-drivers') archs=('i686' 'x86_64') -depends=('xorg-server') +depends=('xorg-server>=1.4') makedepends=('randrproto' 'renderproto' 'videoproto') -_F_xorg_nr=1 Finclude xorg sha1sums=('99575052e29236d50db23d093a30ba0047d78e43') From krics at linuxforum.hu Sun Sep 9 19:20:01 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sun Sep 9 19:20:03 2007 Subject: [Frugalware-git] xorg73: libpciaccess-0.9.1-1-x86_64 Message-ID: <20070909172001.A879813A42EA@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=92b7ddbde5e8fb6da65712808aad5241049e7c62 commit 92b7ddbde5e8fb6da65712808aad5241049e7c62 Author: Christian Hamar alias krix Date: Sun Sep 9 19:19:37 2007 +0200 libpciaccess-0.9.1-1-x86_64 * New package from individual (for -intel video driver) diff --git a/source/x11-extra/xf86-video-intel/FrugalBuild b/source/x11-extra/xf86-video-intel/FrugalBuild deleted file mode 100644 index d508bcc..0000000 --- a/source/x11-extra/xf86-video-intel/FrugalBuild +++ /dev/null @@ -1,27 +0,0 @@ -# Compiling Time: 0.24 SBU -# Maintainer: Christian Hamar alias krix - -pkgname=xf86-video-intel -pkgver=2.1.0 -pkgrel=1 -pkgdesc="X.Org driver for Intel cards (opensource)" -groups=('x11-extra' 'xorg-core' 'xorg-drivers') -archs=('i686' 'x86_64') -depends=('xorg-server>=1.2.0-3' 'libxvmc') -makedepends=('randrproto' 'renderproto' 'videoproto' 'xf86driproto' \ - 'xf86dgaproto' 'glproto' 'xineramaproto') -Finclude xorg -options=('nobuild') -conflicts=('xf86-video-i810') -up2date="lynx -dump http://xorg.freedesktop.org/releases/individual/driver/|grep $pkgname|Flasttarbz2" -source=(http://xorg.freedesktop.org/releases/individual/driver/$pkgname-$pkgver.tar.bz2 \ - README.Frugalware) -_F_cd_path="$pkgname-$pkgver" -Fconfopts="$Fconfopts --enable-dri" - -# Later we can add pciaccess to depends (if at last released) -# Compiles with xorg 1.2.0 too, just not using the new modelines stuff - -sha1sums=('007412d72428e2dbc067a5d6fa00fbcfcc9c99c4' \ - '2ef0ded43b506bf2366c23ceec97a81f85b8e0c8') -# optimization OK diff --git a/source/x11-extra/xf86-video-intel/README.Frugalware b/source/x11-extra/xf86-video-intel/README.Frugalware deleted file mode 100644 index 58d4c2e..0000000 --- a/source/x11-extra/xf86-video-intel/README.Frugalware +++ /dev/null @@ -1,8 +0,0 @@ -New generation of Intel driver, replaces xf86-video-i810 - -You need to reconf xorg and replace Driver "i810" to Driver "intel" - -Thats all. - -Regards --krix- diff --git a/source/x11/libpciaccess/FrugalBuild b/source/x11/libpciaccess/FrugalBuild new file mode 100644 index 0000000..8c9c220 --- /dev/null +++ b/source/x11/libpciaccess/FrugalBuild @@ -0,0 +1,17 @@ +# Compiling Time: 0.08 SBU +# Maintainer: Christian Hamar alias krix + +pkgname=libpciaccess +pkgver=0.9.1 +pkgrel=1 +pkgdesc="X.Org PCI access library" +url="http://xorg.freedesktop.org" +groups=('x11' 'xorg-core' 'xorg-libs') +archs=('i686' 'x86_64') +depends=('pciutils') +makedepends=('pkgconfig') +_F_xorg_ind=1 +Finclude xorg +Fconfopts="$Fconfopts --with-pciids-path=/usr/share/misc" +sha1sums=('5f347ce5e2932916f693553d4eb4f4dec6eda3e9') +# optimization OK diff --git a/source/x11/xf86-video-i810/FrugalBuild b/source/x11/xf86-video-i810/FrugalBuild deleted file mode 100644 index 98f727b..0000000 --- a/source/x11/xf86-video-i810/FrugalBuild +++ /dev/null @@ -1,19 +0,0 @@ -# Compiling Time: 0.24 SBU -# Maintainer: Christian Hamar alias krix - -pkgname=xf86-video-i810 -pkgver=1.7.4 -pkgrel=3 -pkgdesc="X.Org driver for i810 cards" -groups=('x11' 'xorg-core' 'xorg-drivers') -archs=('i686' 'x86_64') -depends=('xorg-server>=1.2.0-3' 'libxvmc') -makedepends=('randrproto' 'renderproto' 'videoproto' 'xf86driproto' \ - 'xf86dgaproto' 'glproto' 'xineramaproto') -conflicts=('xf86-video-intel') -Finclude xorg -_F_cd_path="$pkgname-$pkgver" -Fconfopts="$Fconfopts --enable-dri" - -sha1sums=('3c2837283ec3e9d1aeec430bb2460178aec94a90') -# optimization OK From krics at linuxforum.hu Sun Sep 9 19:22:40 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sun Sep 9 19:22:42 2007 Subject: [Frugalware-git] xorg73: xf86-video-intel-2.1.1-1-x86_64 Message-ID: <20070909172240.B7A5A13A42DA@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=7fe98efb2a41e106dad29543e5f1b0d0ac278b13 commit 7fe98efb2a41e106dad29543e5f1b0d0ac278b13 Author: Christian Hamar alias krix Date: Sun Sep 9 19:21:59 2007 +0200 xf86-video-intel-2.1.1-1-x86_64 * Version bump diff --git a/source/x11/xf86-video-intel/FrugalBuild b/source/x11/xf86-video-intel/FrugalBuild new file mode 100644 index 0000000..918636e --- /dev/null +++ b/source/x11/xf86-video-intel/FrugalBuild @@ -0,0 +1,22 @@ +# Compiling Time: 0.24 SBU +# Maintainer: Christian Hamar alias krix + +pkgname=xf86-video-intel +pkgver=2.1.1 +pkgrel=1 +pkgdesc="X.Org driver for Intel cards (opensource)" +groups=('x11-extra' 'xorg-core' 'xorg-drivers') +archs=('i686' 'x86_64') +depends=('xorg-server>=1.4' 'libxvmc' 'libpciaccess') +makedepends=('randrproto' 'renderproto' 'videoproto' 'xf86driproto' \ + 'xf86dgaproto' 'glproto' 'xineramaproto') +Finclude xorg +replaces=('xf86-video-i810') +conflicts=('xf86-video-i810') +provides=('xf86-video-i810') +source=(${source[@]} README.Frugalware) +_F_cd_path="$pkgname-$pkgver" +Fconfopts="$Fconfopts --enable-dri" +sha1sums=('5a4e6205818ddd8fc8529e2bd5f6310fdc247f84' \ + '2ef0ded43b506bf2366c23ceec97a81f85b8e0c8') +# optimization OK diff --git a/source/x11/xf86-video-intel/README.Frugalware b/source/x11/xf86-video-intel/README.Frugalware new file mode 100644 index 0000000..58d4c2e --- /dev/null +++ b/source/x11/xf86-video-intel/README.Frugalware @@ -0,0 +1,8 @@ +New generation of Intel driver, replaces xf86-video-i810 + +You need to reconf xorg and replace Driver "i810" to Driver "intel" + +Thats all. + +Regards +-krix- From krics at linuxforum.hu Sun Sep 9 19:24:43 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sun Sep 9 19:24:45 2007 Subject: [Frugalware-git] xorg73: xf86-video-imstt-1.1.0-2-x86_64 Message-ID: <20070909172443.D583C13A42EB@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=d7bea947fde15edec777277a22f8241cc7bcc718 commit d7bea947fde15edec777277a22f8241cc7bcc718 Author: Christian Hamar alias krix Date: Sun Sep 9 19:24:23 2007 +0200 xf86-video-imstt-1.1.0-2-x86_64 * Release bump diff --git a/source/x11/xf86-video-imstt/FrugalBuild b/source/x11/xf86-video-imstt/FrugalBuild index 9a0ea50..07fa4b9 100644 --- a/source/x11/xf86-video-imstt/FrugalBuild +++ b/source/x11/xf86-video-imstt/FrugalBuild @@ -3,19 +3,15 @@ pkgname=xf86-video-imstt pkgver=1.1.0 -pkgrel=1 +pkgrel=2 pkgdesc="X.Org driver for imstt cards" url="http://xorg.freedesktop.org" groups=('x11' 'xorg-core' 'xorg-drivers') archs=('i686' 'x86_64') -depends=('xorg-server') +depends=('xorg-server>=1.4') makedepends=('randrproto' 'renderproto' 'videoproto') -_F_xorg_nr=1 Finclude xorg +Fconfopts="$Fconfopts --enable-dri" sha1sums=('2ae92a244bafef83e4b016cab204e2f5797cdb09') -build() { - Fbuild --enable-dri -} - # optimization OK From krics at linuxforum.hu Sun Sep 9 19:26:20 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sun Sep 9 19:26:22 2007 Subject: [Frugalware-git] xorg73: xf86-video-mga-1.4.6.1-2-x86_64 Message-ID: <20070909172620.99D8A13A42EB@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=ecc58519e78480f0d50adc4c96a08f292ca8c171 commit ecc58519e78480f0d50adc4c96a08f292ca8c171 Author: Christian Hamar alias krix Date: Sun Sep 9 19:25:59 2007 +0200 xf86-video-mga-1.4.6.1-2-x86_64 * Release bump diff --git a/source/x11/xf86-video-mga/FrugalBuild b/source/x11/xf86-video-mga/FrugalBuild index e461a73..8c18ce2 100644 --- a/source/x11/xf86-video-mga/FrugalBuild +++ b/source/x11/xf86-video-mga/FrugalBuild @@ -3,16 +3,14 @@ pkgname=xf86-video-mga pkgver=1.4.6.1 -pkgrel=1 +pkgrel=2 pkgdesc="X.Org driver for Matrox cards" url="http://xorg.freedesktop.org" groups=('x11' 'xorg-core' 'xorg-drivers') archs=('i686' 'x86_64') -depends=('xorg-server>=1.2.0') +depends=('xorg-server>=1.4') makedepends=('randrproto' 'renderproto' 'videoproto' 'xf86driproto' 'xf86dgaproto' 'glproto') -_F_xorg_nr=2 Finclude xorg Fconfopts="$Fconfopts --enable-dri" - -sha1sums=('f3ccbf7581399ce384df53bf646db45bf41f69ef') +sha1sums=('8b9f619fc1baf711fcae38dbf4851d277a5cbc1a') # optimization OK From krics at linuxforum.hu Sun Sep 9 19:27:42 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sun Sep 9 19:27:43 2007 Subject: [Frugalware-git] xorg73: xf86-video-neomagic-1.1.1-2-x86_64 Message-ID: <20070909172742.A088C13A42EB@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=83de3a364aed71fbf1392fbbd61784ee60901f81 commit 83de3a364aed71fbf1392fbbd61784ee60901f81 Author: Christian Hamar alias krix Date: Sun Sep 9 19:27:22 2007 +0200 xf86-video-neomagic-1.1.1-2-x86_64 * Release bump diff --git a/source/x11/xf86-video-neomagic/FrugalBuild b/source/x11/xf86-video-neomagic/FrugalBuild index 70a9207..1579046 100644 --- a/source/x11/xf86-video-neomagic/FrugalBuild +++ b/source/x11/xf86-video-neomagic/FrugalBuild @@ -3,14 +3,13 @@ pkgname=xf86-video-neomagic pkgver=1.1.1 -pkgrel=1 +pkgrel=2 pkgdesc="X.Org driver for NeoMagic cards" url="http://xorg.freedesktop.org" groups=('x11' 'xorg-core' 'xorg-drivers') archs=('i686' 'x86_64') -depends=('xorg-server') +depends=('xorg-server>=1.4') makedepends=('randrproto' 'renderproto' 'videoproto' 'xf86dgaproto') -_F_xorg_nr=1 Finclude xorg sha1sums=('45bbd2921b2fb5996fc3cdadacc87fff54132fa1') From krics at linuxforum.hu Sun Sep 9 19:29:07 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sun Sep 9 19:29:08 2007 Subject: [Frugalware-git] xorg73: xf86-video-newport-0.2.1-2-x86_64 Message-ID: <20070909172907.6557213A42EB@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=7a27596a1a2ac8608a71b83fd463383f65acee0b commit 7a27596a1a2ac8608a71b83fd463383f65acee0b Author: Christian Hamar alias krix Date: Sun Sep 9 19:28:47 2007 +0200 xf86-video-newport-0.2.1-2-x86_64 * Release bump diff --git a/source/x11/xf86-video-newport/FrugalBuild b/source/x11/xf86-video-newport/FrugalBuild index 7271d62..24eefcd 100644 --- a/source/x11/xf86-video-newport/FrugalBuild +++ b/source/x11/xf86-video-newport/FrugalBuild @@ -3,14 +3,13 @@ pkgname=xf86-video-newport pkgver=0.2.1 -pkgrel=1 +pkgrel=2 pkgdesc="X.Org driver for newport cards" url="http://xorg.freedesktop.org" groups=('x11' 'xorg-core' 'xorg-drivers') archs=('i686' 'x86_64') -depends=('xorg-server') +depends=('xorg-server>=1.4') makedepends=('randrproto' 'renderproto' 'videoproto') -_F_xorg_nr=2 Finclude xorg sha1sums=('49a12490dfdc3796b196d19d9f66d3fd19281945') From krics at linuxforum.hu Sun Sep 9 19:30:42 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sun Sep 9 19:30:45 2007 Subject: [Frugalware-git] xorg73: xf86-video-nsc-2.8.3-1-x86_64 Message-ID: <20070909173042.F001413A42EB@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=a323404640cc7a6feabbe32ddb11785dc80dcfa3 commit a323404640cc7a6feabbe32ddb11785dc80dcfa3 Author: Christian Hamar alias krix Date: Sun Sep 9 19:30:21 2007 +0200 xf86-video-nsc-2.8.3-1-x86_64 * Version bump diff --git a/source/x11/xf86-video-nsc/FrugalBuild b/source/x11/xf86-video-nsc/FrugalBuild index 322164b..4fef25e 100644 --- a/source/x11/xf86-video-nsc/FrugalBuild +++ b/source/x11/xf86-video-nsc/FrugalBuild @@ -2,16 +2,15 @@ # Maintainer: Christian Hamar alias krix pkgname=xf86-video-nsc -pkgver=2.8.2 +pkgver=2.8.3 pkgrel=1 pkgdesc="X.Org driver for nsc cards" url="http://xorg.freedesktop.org" groups=('x11' 'xorg-core' 'xorg-drivers') archs=('i686' 'x86_64') -depends=('xorg-server') +depends=('xorg-server>=1.4') makedepends=('randrproto' 'renderproto' 'videoproto' 'xf86dgaproto') -_F_xorg_nr=2 Finclude xorg -sha1sums=('58ea8edbdf18dc8dd194f9d08761f829bfd09a01') +sha1sums=('23d706458d68c9d380c3a22e146e9c58e656244f') # optimization OK From krics at linuxforum.hu Sun Sep 9 19:34:23 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sun Sep 9 19:34:25 2007 Subject: [Frugalware-git] xorg73: xf86-video-nv-2.1.3-1-x86_64 Message-ID: <20070909173423.7E23B13A42EB@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=03a7874ef91ecad5dcebd294bdef69f96a4b09cd commit 03a7874ef91ecad5dcebd294bdef69f96a4b09cd Author: Christian Hamar alias krix Date: Sun Sep 9 19:34:02 2007 +0200 xf86-video-nv-2.1.3-1-x86_64 * Version bump * Drop vesafb-vga patch (in upstream) diff --git a/source/x11/xf86-video-nv/FrugalBuild b/source/x11/xf86-video-nv/FrugalBuild index c4980bb..d1bce0b 100644 --- a/source/x11/xf86-video-nv/FrugalBuild +++ b/source/x11/xf86-video-nv/FrugalBuild @@ -2,18 +2,15 @@ # Maintainer: Christian Hamar alias krix pkgname=xf86-video-nv -pkgver=1.2.2.1 -pkgrel=3 +pkgver=2.1.3 +pkgrel=1 pkgdesc="X.Org driver for NVidia cards" url="http://xorg.freedesktop.org" groups=('x11' 'xorg-core' 'xorg-drivers') archs=('i686' 'x86_64') -depends=('xorg-server>=1.2.0-3') +depends=('xorg-server>=1.4') makedepends=('randrproto' 'renderproto' 'videoproto' 'xf86dgaproto') -_F_xorg_nr=2 Finclude xorg -source=(${source[@]} xf86-video-nv-vesafb-vga.patch) -sha1sums=('f5f9199e25f72dce627a300c097116e4f51aad9a' \ - '7b6972acb55a86537e688aafdebcf26e0d074f83') +sha1sums=('95e4a68702af094ca3e1e596cda6c7d9806f3c96') # optimization OK diff --git a/source/x11/xf86-video-nv/xf86-video-nv-vesafb-vga.patch b/source/x11/xf86-video-nv/xf86-video-nv-vesafb-vga.patch deleted file mode 100644 index 4025ebc..0000000 --- a/source/x11/xf86-video-nv/xf86-video-nv-vesafb-vga.patch +++ /dev/null @@ -1,56 +0,0 @@ -From: Aaron Plattner -Date: Thu, 15 Mar 2007 04:16:04 +0000 (-0700) -Subject: Fix VGA output with vesafb on nv4x and G7x GPUs. -X-Git-Tag: nv-2.0.0 -X-Git-Url: http://gitweb.freedesktop.org/?p=xorg/driver/xf86-video-nv.git;a=commitdiff;h=9d65abab153cdf3ab2b7e3e2843d573b22ea6769 - -Fix VGA output with vesafb on nv4x and G7x GPUs. - -SuSE bug #160812. ---- - ---- a/src/nv_hw.c -+++ b/src/nv_hw.c -@@ -878,6 +878,10 @@ void NVCalcStateExt ( - state->general = bpp == 16 ? 0x00101100 : 0x00100100; - state->repaint1 = hDisplaySize < 1280 ? 0x04 : 0x00; - break; -+ case NV_ARCH_40: -+ if(!pNv->FlatPanel) -+ state->control = pNv->PRAMDAC0[0x0580/4] & 0xeffffeff; -+ /* fallthrough */ - case NV_ARCH_10: - case NV_ARCH_20: - case NV_ARCH_30: -@@ -1475,6 +1479,10 @@ void NVLoadStateExt ( - VGA_WR08(pNv->PCIO, 0x03D5, state->interlace); - - if(!pNv->FlatPanel) { -+ if(pNv->Architecture >= NV_ARCH_40) { -+ pNv->PRAMDAC0[0x0580/4] = state->control; -+ } -+ - pNv->PRAMDAC0[0x050C/4] = state->pllsel; - pNv->PRAMDAC0[0x0508/4] = state->vpll; - if(pNv->twoHeads) -@@ -1541,6 +1549,10 @@ void NVUnloadStateExt - state->scale = pNv->PRAMDAC[0x0848/4]; - state->config = pNv->PFB[0x0200/4]; - -+ if(pNv->Architecture >= NV_ARCH_40 && !pNv->FlatPanel) { -+ state->control = pNv->PRAMDAC0[0x0580/4]; -+ } -+ - if(pNv->Architecture >= NV_ARCH_10) { - if(pNv->twoHeads) { - state->head = pNv->PCRTC0[0x0860/4]; ---- a/src/nv_type.h -+++ b/src/nv_type.h -@@ -56,6 +56,7 @@ typedef struct _riva_hw_state - U032 vpllB; - U032 vpll2B; - U032 pllsel; -+ U032 control; - U032 general; - U032 crtcOwner; - U032 head; From krics at linuxforum.hu Sun Sep 9 19:36:01 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sun Sep 9 19:36:02 2007 Subject: [Frugalware-git] xorg73: xf86-video-rendition-4.1.3-2-x86_64 Message-ID: <20070909173601.7FA5113A42DD@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=8dabab84556ed00b851a2c61b54ffed18de58aa0 commit 8dabab84556ed00b851a2c61b54ffed18de58aa0 Author: Christian Hamar alias krix Date: Sun Sep 9 19:35:37 2007 +0200 xf86-video-rendition-4.1.3-2-x86_64 * Release bump diff --git a/source/x11/xf86-video-rendition/FrugalBuild b/source/x11/xf86-video-rendition/FrugalBuild index 187245f..6e6a6b2 100644 --- a/source/x11/xf86-video-rendition/FrugalBuild +++ b/source/x11/xf86-video-rendition/FrugalBuild @@ -3,16 +3,14 @@ pkgname=xf86-video-rendition pkgver=4.1.3 -pkgrel=1 +pkgrel=2 pkgdesc="X.Org driver for rendition cards" url="http://xorg.freedesktop.org" groups=('x11' 'xorg-core' 'xorg-drivers') archs=('i686' 'x86_64') -depends=('xorg-server>=1.2.0') +depends=('xorg-server>=1.4') makedepends=('randrproto' 'renderproto' 'videoproto' 'xf86dgaproto') -_F_xorg_nr=2 Finclude xorg - -sha1sums=('c5ab7021fe144a5cdbb1d1e8edb5d2f6b6e9bf26') +sha1sums=('9cbd77ad6cba6807823fff3b74923b955580a540') # optimization OK From krics at linuxforum.hu Sun Sep 9 19:37:26 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sun Sep 9 19:37:26 2007 Subject: [Frugalware-git] xorg73: xf86-video-s3-0.5.0-2-x86_64 Message-ID: <20070909173726.2C03313A42DD@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=482357c561f4ea6c6b11ce0b3d974280aa645707 commit 482357c561f4ea6c6b11ce0b3d974280aa645707 Author: Christian Hamar alias krix Date: Sun Sep 9 19:37:04 2007 +0200 xf86-video-s3-0.5.0-2-x86_64 * Release bump diff --git a/source/x11/xf86-video-s3/FrugalBuild b/source/x11/xf86-video-s3/FrugalBuild index d02ffaa..14d0c61 100644 --- a/source/x11/xf86-video-s3/FrugalBuild +++ b/source/x11/xf86-video-s3/FrugalBuild @@ -3,14 +3,13 @@ pkgname=xf86-video-s3 pkgver=0.5.0 -pkgrel=1 +pkgrel=2 pkgdesc="X.Org driver for S3 cards" url="http://xorg.freedesktop.org" groups=('x11' 'xorg-core' 'xorg-drivers') archs=('i686' 'x86_64') -depends=('xorg-server') +depends=('xorg-server>=1.4') makedepends=('randrproto' 'renderproto' 'videoproto' 'xf86dgaproto') -_F_xorg_nr=2 Finclude xorg sha1sums=('1ae624635f71f82ecc73999cad5499a1d5d69be6') From krics at linuxforum.hu Sun Sep 9 19:39:14 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sun Sep 9 19:39:14 2007 Subject: [Frugalware-git] xorg73: xf86-video-s3virge-1.9.1-2-x86_64 Message-ID: <20070909173914.0330B13A42DD@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=ab5f9995880d5c4c3f590a60887164cdcdc6a09c commit ab5f9995880d5c4c3f590a60887164cdcdc6a09c Author: Christian Hamar alias krix Date: Sun Sep 9 19:38:48 2007 +0200 xf86-video-s3virge-1.9.1-2-x86_64 * Release bump - PLD i'll catch you in cia.vc :) Regards -krix- diff --git a/source/x11/xf86-video-s3virge/FrugalBuild b/source/x11/xf86-video-s3virge/FrugalBuild index 71344c5..b7c4ce8 100644 --- a/source/x11/xf86-video-s3virge/FrugalBuild +++ b/source/x11/xf86-video-s3virge/FrugalBuild @@ -3,14 +3,13 @@ pkgname=xf86-video-s3virge pkgver=1.9.1 -pkgrel=1 +pkgrel=2 pkgdesc="X.Org driver for S3 Virge cards" url="http://xorg.freedesktop.org" groups=('x11' 'xorg-core' 'xorg-drivers') archs=('i686' 'x86_64') -depends=('xorg-server') +depends=('xorg-server>=1.4') makedepends=('randrproto' 'renderproto' 'videoproto' 'xf86dgaproto') -_F_xorg_nr=1 Finclude xorg sha1sums=('e9994531b1847cb4e23fffec6851f3554f6a35cc') From krics at linuxforum.hu Sun Sep 9 19:40:42 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sun Sep 9 19:40:44 2007 Subject: [Frugalware-git] xorg73: xf86-video-savage-2.1.3-1-x86_64 Message-ID: <20070909174042.D802213A42DD@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=d536d950e42c44c22bbdee9474eb233e0ce10b35 commit d536d950e42c44c22bbdee9474eb233e0ce10b35 Author: Christian Hamar alias krix Date: Sun Sep 9 19:40:21 2007 +0200 xf86-video-savage-2.1.3-1-x86_64 * Version bump diff --git a/source/x11/xf86-video-savage/FrugalBuild b/source/x11/xf86-video-savage/FrugalBuild index 9b4e7b6..b4f3034 100644 --- a/source/x11/xf86-video-savage/FrugalBuild +++ b/source/x11/xf86-video-savage/FrugalBuild @@ -2,17 +2,16 @@ # Maintainer: Christian Hamar alias krix pkgname=xf86-video-savage -pkgver=2.1.2 +pkgver=2.1.3 pkgrel=1 pkgdesc="X.Org driver for S3 Savage cards" url="http://xorg.freedesktop.org" groups=('x11' 'xorg-core' 'xorg-drivers') archs=('i686' 'x86_64') -depends=('xorg-server') +depends=('xorg-server>=1.4') makedepends=('randrproto' 'renderproto' 'videoproto' 'xf86dgaproto' 'glproto' 'xf86driproto') -_F_xorg_nr=2 Finclude xorg -sha1sums=('e588165abfa92dcb68986120e9c949d7601c95bb') +sha1sums=('bb73843d38a8152c39311acc8b1a18d5d51603af') Fconfopts="$Fconfopts --enable-dri" # optimization OK From krics at linuxforum.hu Sun Sep 9 19:43:05 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sun Sep 9 19:43:05 2007 Subject: [Frugalware-git] xorg73: xf86-video-siliconmotion-1.4.2-2-x86_64 Message-ID: <20070909174305.1826A13A42DD@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=64eef9c62a8251b1da00b30319bffd41250d3005 commit 64eef9c62a8251b1da00b30319bffd41250d3005 Author: Christian Hamar alias krix Date: Sun Sep 9 19:42:44 2007 +0200 xf86-video-siliconmotion-1.4.2-2-x86_64 * Release bump diff --git a/source/x11/xf86-video-siliconmotion/FrugalBuild b/source/x11/xf86-video-siliconmotion/FrugalBuild index 06beb6b..cf2b4fd 100644 --- a/source/x11/xf86-video-siliconmotion/FrugalBuild +++ b/source/x11/xf86-video-siliconmotion/FrugalBuild @@ -3,14 +3,13 @@ pkgname=xf86-video-siliconmotion pkgver=1.4.2 -pkgrel=1 +pkgrel=2 pkgdesc="X.Org driver for siliconmotion cards" url="http://xorg.freedesktop.org" groups=('x11' 'xorg-core' 'xorg-drivers') archs=('i686' 'x86_64') -depends=('xorg-server') +depends=('xorg-server>=1.4') makedepends=('randrproto' 'renderproto' 'videoproto' 'xf86dgaproto') -_F_xorg_nr=2 Finclude xorg sha1sums=('ba0e2f08d97841df8925b609925b1328164ca6ab') From krics at linuxforum.hu Sun Sep 9 19:44:59 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sun Sep 9 19:45:01 2007 Subject: [Frugalware-git] xorg73: xf86-video-sis-0.9.3-2-x86_64 Message-ID: <20070909174459.E634B13A42DD@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=2c8449fb7f3657d114b27102cecfa1703dfde81a commit 2c8449fb7f3657d114b27102cecfa1703dfde81a Author: Christian Hamar alias krix Date: Sun Sep 9 19:44:35 2007 +0200 xf86-video-sis-0.9.3-2-x86_64 * Release bump diff --git a/source/x11/xf86-video-sis/FrugalBuild b/source/x11/xf86-video-sis/FrugalBuild index 1bb6eb7..ccc365f 100644 --- a/source/x11/xf86-video-sis/FrugalBuild +++ b/source/x11/xf86-video-sis/FrugalBuild @@ -3,14 +3,13 @@ pkgname=xf86-video-sis pkgver=0.9.3 -pkgrel=1 +pkgrel=2 pkgdesc="X.Org driver for SiS cards" url="http://xorg.freedesktop.org" groups=('x11' 'xorg-core' 'xorg-drivers') archs=('i686' 'x86_64') -depends=('xorg-server') +depends=('xorg-server>=1.4') makedepends=('randrproto' 'renderproto' 'videoproto' 'xf86dgaproto' 'glproto' 'xf86driproto' 'xf86miscproto' 'xineramaproto') -_F_xorg_nr=2 Finclude xorg sha1sums=('fb386185a91bbc6764445ef251d4a0216ec9b9d0') Fconfopts="$Fconfopts --enable-dri" From krics at linuxforum.hu Sun Sep 9 19:46:30 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sun Sep 9 19:46:31 2007 Subject: [Frugalware-git] xorg73: xf86-video-sisusb-0.8.1-2-x86_64 Message-ID: <20070909174630.9922413A42DD@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=964dc912f4f379759e5a185d62320303e6c63656 commit 964dc912f4f379759e5a185d62320303e6c63656 Author: Christian Hamar alias krix Date: Sun Sep 9 19:46:09 2007 +0200 xf86-video-sisusb-0.8.1-2-x86_64 * Release bump diff --git a/source/x11/xf86-video-sisusb/FrugalBuild b/source/x11/xf86-video-sisusb/FrugalBuild index f8375f4..53e5ae2 100644 --- a/source/x11/xf86-video-sisusb/FrugalBuild +++ b/source/x11/xf86-video-sisusb/FrugalBuild @@ -3,14 +3,13 @@ pkgname=xf86-video-sisusb pkgver=0.8.1 -pkgrel=1 +pkgrel=2 pkgdesc="X.Org driver for sisusb cards" url="http://xorg.freedesktop.org" groups=('x11' 'xorg-core' 'xorg-drivers') archs=('i686' 'x86_64') -depends=('xorg-server') +depends=('xorg-server>=1.4') makedepends=('randrproto' 'renderproto' 'videoproto' 'xf86dgaproto' 'xf86miscproto' 'xineramaproto') -_F_xorg_nr=1 Finclude xorg sha1sums=('d1c925b0e899f543a32842a6bfbff4476b9b66e1') From krics at linuxforum.hu Sun Sep 9 19:47:33 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sun Sep 9 19:47:34 2007 Subject: [Frugalware-git] xorg73: xf86-video-sunbw2-1.1.0-2-x86_64 Message-ID: <20070909174733.933D313A42DD@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=7f7748923a06c3f61182e560e0f859ace0ffb71a commit 7f7748923a06c3f61182e560e0f859ace0ffb71a Author: Christian Hamar alias krix Date: Sun Sep 9 19:47:18 2007 +0200 xf86-video-sunbw2-1.1.0-2-x86_64 * RElease bump diff --git a/source/x11/xf86-video-sunbw2/FrugalBuild b/source/x11/xf86-video-sunbw2/FrugalBuild index 1b53a4d..0837231 100644 --- a/source/x11/xf86-video-sunbw2/FrugalBuild +++ b/source/x11/xf86-video-sunbw2/FrugalBuild @@ -3,17 +3,14 @@ pkgname=xf86-video-sunbw2 pkgver=1.1.0 -pkgrel=1 +pkgrel=2 pkgdesc="X.Org video driver for sunbw2 cards" url="http://xorg.freedesktop.org" groups=('x11' 'xorg-core' 'xorg-drivers') archs=('i686' 'x86_64') -depends=('xorg-server>=1.1.0') +depends=('xorg-server>=1.4') makedepends=('randrproto' 'renderproto') -_F_xorg_nr=1 Finclude xorg options=('nobuild') - -# optimization OK - sha1sums=('239ebf2b5223120096ec6679a8c04c75f38e1a9f') +# optimization OK From krics at linuxforum.hu Sun Sep 9 19:48:01 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sun Sep 9 19:48:02 2007 Subject: [Frugalware-git] xorg73: xf86-video-suncg14-1.1.0-2-x86_64 Message-ID: <20070909174801.D498613A42DD@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=7719aacaa630e9e8d7c6ebd61bc224c9bbc5d319 commit 7719aacaa630e9e8d7c6ebd61bc224c9bbc5d319 Author: Christian Hamar alias krix Date: Sun Sep 9 19:47:47 2007 +0200 xf86-video-suncg14-1.1.0-2-x86_64 * Release bump (was fast because nobuild) diff --git a/source/x11/xf86-video-suncg14/FrugalBuild b/source/x11/xf86-video-suncg14/FrugalBuild index 0527220..d08dd0d 100644 --- a/source/x11/xf86-video-suncg14/FrugalBuild +++ b/source/x11/xf86-video-suncg14/FrugalBuild @@ -3,17 +3,14 @@ pkgname=xf86-video-suncg14 pkgver=1.1.0 -pkgrel=1 +pkgrel=2 pkgdesc="X.Org video driver for suncg14 cards" url="http://xorg.freedesktop.org" groups=('x11' 'xorg-core' 'xorg-drivers') archs=('i686' 'x86_64') -depends=('xorg-server>=1.1.0') +depends=('xorg-server>=1.4') makedepends=('randrproto' 'renderproto') -_F_xorg_nr=1 Finclude xorg options=('nobuild') - -# optimization OK - sha1sums=('00f746ff4ea2c85f0dfba120751e41439cf7a910') +# optimization OK From krics at linuxforum.hu Sun Sep 9 19:48:37 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sun Sep 9 19:48:39 2007 Subject: [Frugalware-git] xorg73: xf86-video-suncg3-1.1.0-2-x86_64 Message-ID: <20070909174837.EF54913A42DD@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=8ed4fdba369b88394fb2cb6e90e380b6c5900961 commit 8ed4fdba369b88394fb2cb6e90e380b6c5900961 Author: Christian Hamar alias krix Date: Sun Sep 9 19:48:23 2007 +0200 xf86-video-suncg3-1.1.0-2-x86_64 * Release bump diff --git a/source/x11/xf86-video-suncg3/FrugalBuild b/source/x11/xf86-video-suncg3/FrugalBuild index 0a6e60d..c98b5c5 100644 --- a/source/x11/xf86-video-suncg3/FrugalBuild +++ b/source/x11/xf86-video-suncg3/FrugalBuild @@ -3,17 +3,14 @@ pkgname=xf86-video-suncg3 pkgver=1.1.0 -pkgrel=1 +pkgrel=2 pkgdesc="X.Org video driver for suncg3 cards" url="http://xorg.freedesktop.org" groups=('x11' 'xorg-core' 'xorg-drivers') archs=('i686' 'x86_64') -depends=('xorg-server>=1.1.0') +depends=('xorg-server>=1.4') makedepends=('randrproto' 'renderproto') -_F_xorg_nr=1 Finclude xorg options=('nobuild') - -# optimization OK - sha1sums=('301f720bdf8523c85e3bd7659d700b0323e67e97') +# optimization OK From krics at linuxforum.hu Sun Sep 9 19:49:12 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sun Sep 9 19:49:13 2007 Subject: [Frugalware-git] xorg73: xf86-video-suncg6-1.1.0-2-x86_64 Message-ID: <20070909174912.D61DF13A42DD@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=942dbe6589de303fea0fdefffd50b17a5c7c017e commit 942dbe6589de303fea0fdefffd50b17a5c7c017e Author: Christian Hamar alias krix Date: Sun Sep 9 19:48:58 2007 +0200 xf86-video-suncg6-1.1.0-2-x86_64 * Release bump diff --git a/source/x11/xf86-video-suncg6/FrugalBuild b/source/x11/xf86-video-suncg6/FrugalBuild index 28053a5..87e9e0f 100644 --- a/source/x11/xf86-video-suncg6/FrugalBuild +++ b/source/x11/xf86-video-suncg6/FrugalBuild @@ -3,17 +3,14 @@ pkgname=xf86-video-suncg6 pkgver=1.1.0 -pkgrel=1 +pkgrel=2 pkgdesc="X.Org video driver for vmware cards" url="http://xorg.freedesktop.org" groups=('x11' 'xorg-core' 'xorg-drivers') archs=('i686' 'x86_64') -depends=('xorg-server>=1.1.0') +depends=('xorg-server>=1.4') makedepends=('randrproto' 'renderproto') -_F_xorg_nr=1 Finclude xorg options=('nobuild') - -# optimization OK - sha1sums=('e4c8104d482687b7e681cf1340175c20128fd341') +# optimization OK From krics at linuxforum.hu Sun Sep 9 19:49:46 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sun Sep 9 19:49:47 2007 Subject: [Frugalware-git] xorg73: xf86-video-sunffb-1.1.0-2-x86_64 Message-ID: <20070909174946.5BFC213A42DD@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=09ee0651c20a87d23b3fb08a98b4f6fe566b4922 commit 09ee0651c20a87d23b3fb08a98b4f6fe566b4922 Author: Christian Hamar alias krix Date: Sun Sep 9 19:49:31 2007 +0200 xf86-video-sunffb-1.1.0-2-x86_64 * Release bump diff --git a/source/x11/xf86-video-sunffb/FrugalBuild b/source/x11/xf86-video-sunffb/FrugalBuild index 6fce40c..1590517 100644 --- a/source/x11/xf86-video-sunffb/FrugalBuild +++ b/source/x11/xf86-video-sunffb/FrugalBuild @@ -3,17 +3,14 @@ pkgname=xf86-video-sunffb pkgver=1.1.0 -pkgrel=1 +pkgrel=2 pkgdesc="X.Org video driver for sunffb cards" url="http://xorg.freedesktop.org" groups=('x11' 'xorg-core' 'xorg-drivers') archs=('i686' 'x86_64') -depends=('xorg-server>=1.1.0') +depends=('xorg-server>=1.4') makedepends=('randrproto' 'renderproto' 'xf86driproto' 'glproto') -_F_xorg_nr=1 Finclude xorg options=('nobuild') - -# optimization OK - sha1sums=('0d84379f0d32626c0f0b44119539b654ee25f651') +# optimization OK From krics at linuxforum.hu Sun Sep 9 19:50:11 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sun Sep 9 19:50:12 2007 Subject: [Frugalware-git] xorg73: xf86-video-sunleo-1.1.0-2-x86_64 Message-ID: <20070909175011.CD07813A42DD@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=036cffc78aa0b0f3e637e9be542d85ad34ec4117 commit 036cffc78aa0b0f3e637e9be542d85ad34ec4117 Author: Christian Hamar alias krix Date: Sun Sep 9 19:49:57 2007 +0200 xf86-video-sunleo-1.1.0-2-x86_64 * Release bump diff --git a/source/x11/xf86-video-sunleo/FrugalBuild b/source/x11/xf86-video-sunleo/FrugalBuild index 5442b37..e7bb9aa 100644 --- a/source/x11/xf86-video-sunleo/FrugalBuild +++ b/source/x11/xf86-video-sunleo/FrugalBuild @@ -3,17 +3,14 @@ pkgname=xf86-video-sunleo pkgver=1.1.0 -pkgrel=1 +pkgrel=2 pkgdesc="X.Org video driver for sunleo cards" url="http://xorg.freedesktop.org" groups=('x11' 'xorg-core' 'xorg-drivers') archs=('i686' 'x86_64') -depends=('xorg-server>=1.1.0') +depends=('xorg-server>=1.4') makedepends=('randrproto' 'renderproto') -_F_xorg_nr=1 Finclude xorg options=('nobuild') - -# optimization OK - sha1sums=('f9a1f33908118d50e85eec2fa2f7d81713a2f3af') +# optimization OK From krics at linuxforum.hu Sun Sep 9 19:50:52 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sun Sep 9 19:50:54 2007 Subject: [Frugalware-git] xorg73: xf86-video-suntcx-1.1.0-2-x86_64 Message-ID: <20070909175052.B20F513A42DD@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=0e6da03063f9c735209e7ca3417a1f606118eaca commit 0e6da03063f9c735209e7ca3417a1f606118eaca Author: Christian Hamar alias krix Date: Sun Sep 9 19:50:37 2007 +0200 xf86-video-suntcx-1.1.0-2-x86_64 * Release bump (wondering why not blacklisted sun* (because all nobuild)) diff --git a/source/x11/xf86-video-suntcx/FrugalBuild b/source/x11/xf86-video-suntcx/FrugalBuild index 47120d4..0d472bf 100644 --- a/source/x11/xf86-video-suntcx/FrugalBuild +++ b/source/x11/xf86-video-suntcx/FrugalBuild @@ -3,17 +3,14 @@ pkgname=xf86-video-suntcx pkgver=1.1.0 -pkgrel=1 +pkgrel=2 pkgdesc="X.Org video driver for vmware cards" url="http://xorg.freedesktop.org" groups=('x11' 'xorg-core' 'xorg-drivers') archs=('i686' 'x86_64') -depends=('xorg-server>=1.1.0') +depends=('xorg-server>=1.4') makedepends=('randrproto' 'renderproto') -_F_xorg_nr=1 Finclude xorg options=('nobuild') - -# optimization OK - sha1sums=('be4e28e4cf2dc725e39f40a2d3f8f61e8a9ca086') +# optimization OK From krics at linuxforum.hu Sun Sep 9 19:54:26 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sun Sep 9 19:54:27 2007 Subject: [Frugalware-git] xorg73: xf86-video-tdfx-1.3.0-2-x86_64 Message-ID: <20070909175426.3393B13A42DD@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=cf84f329f831a8618459039e8ca99a1d4fa437e3 commit cf84f329f831a8618459039e8ca99a1d4fa437e3 Author: Christian Hamar alias krix Date: Sun Sep 9 19:54:04 2007 +0200 xf86-video-tdfx-1.3.0-2-x86_64 * Release bump - PLD, pls put back shadow sources to FTP servers, because many of us need that :) thx. :P regards -krix- - Beated diff --git a/source/x11/xf86-video-tdfx/FrugalBuild b/source/x11/xf86-video-tdfx/FrugalBuild index 2a991e7..152bd73 100644 --- a/source/x11/xf86-video-tdfx/FrugalBuild +++ b/source/x11/xf86-video-tdfx/FrugalBuild @@ -3,14 +3,13 @@ pkgname=xf86-video-tdfx pkgver=1.3.0 -pkgrel=1 +pkgrel=2 pkgdesc="X.Org driver for 3dfx Voodoo cards" url="http://xorg.freedesktop.org" groups=('x11' 'xorg-core' 'xorg-drivers') archs=('i686' 'x86_64') -depends=('xorg-server') +depends=('xorg-server>=1.4') makedepends=('randrproto' 'renderproto' 'videoproto' 'xf86dgaproto' 'glproto' 'xf86driproto' 'xf86miscproto' 'xineramaproto') -_F_xorg_nr=2 Finclude xorg sha1sums=('8089883c87b64c2876b9152b4820901cc6273f57') Fconfopts="$Fconfopts --enable-dri" From krics at linuxforum.hu Sun Sep 9 19:56:27 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sun Sep 9 19:56:28 2007 Subject: [Frugalware-git] xorg73: xf86-video-tga-1.1.0-2-x86_64 Message-ID: <20070909175627.53C3C13A42DD@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=066e56c18aeb09a2f6039f0f2d9feb6ad64b5be0 commit 066e56c18aeb09a2f6039f0f2d9feb6ad64b5be0 Author: Christian Hamar alias krix Date: Sun Sep 9 19:56:07 2007 +0200 xf86-video-tga-1.1.0-2-x86_64 * Release bump diff --git a/source/x11/xf86-video-tga/FrugalBuild b/source/x11/xf86-video-tga/FrugalBuild index a1f5658..40c600c 100644 --- a/source/x11/xf86-video-tga/FrugalBuild +++ b/source/x11/xf86-video-tga/FrugalBuild @@ -3,14 +3,13 @@ pkgname=xf86-video-tga pkgver=1.1.0 -pkgrel=1 +pkgrel=2 pkgdesc="X.Org video driver for tga cards" url="http://xorg.freedesktop.org" groups=('x11' 'xorg-core' 'xorg-drivers') archs=('i686' 'x86_64') -depends=('xorg-server') +depends=('xorg-server>=1.4') makedepends=('randrproto' 'renderproto' 'xf86dgaproto' 'videoproto') -_F_xorg_nr=1 Finclude xorg sha1sums=('448600dd45aedfaf0ba8a46eaf04d03895a712ed') From krics at linuxforum.hu Sun Sep 9 19:58:05 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sun Sep 9 19:58:06 2007 Subject: [Frugalware-git] xorg73: xf86-video-trident-1.2.3-2-x86_64 Message-ID: <20070909175805.80DBE13A42DD@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=0f2026efaa47b7f9778683d36ac41815515d830b commit 0f2026efaa47b7f9778683d36ac41815515d830b Author: Christian Hamar alias krix Date: Sun Sep 9 19:57:44 2007 +0200 xf86-video-trident-1.2.3-2-x86_64 * RElease bump diff --git a/source/x11/xf86-video-trident/FrugalBuild b/source/x11/xf86-video-trident/FrugalBuild index 13bd3ef..5889a93 100644 --- a/source/x11/xf86-video-trident/FrugalBuild +++ b/source/x11/xf86-video-trident/FrugalBuild @@ -3,15 +3,14 @@ pkgname=xf86-video-trident pkgver=1.2.3 -pkgrel=1 +pkgrel=2 pkgdesc="X.Org video driver for trident cards" url="http://xorg.freedesktop.org" groups=('x11' 'xorg-core' 'xorg-drivers') archs=('i686' 'x86_64') -depends=('xorg-server>=1.2.0') +depends=('xorg-server>=1.4') makedepends=('randrproto' 'renderproto' 'xf86dgaproto' 'videoproto') -_F_xorg_nr=2 Finclude xorg -sha1sums=('cfef5a6f981dbaa3c9d38d91fa240dcc0619ecde') +sha1sums=('d75ca064bee6817209266fc85bbcfac671ed0642') # optimization OK From krics at linuxforum.hu Sun Sep 9 19:59:23 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sun Sep 9 19:59:25 2007 Subject: [Frugalware-git] xorg73: xf86-video-tseng-1.1.1-2-x86_64 Message-ID: <20070909175923.9318D13A42DD@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=291e6c5e8d5b0dd2026da5c310ae4406b22f82bd commit 291e6c5e8d5b0dd2026da5c310ae4406b22f82bd Author: Christian Hamar alias krix Date: Sun Sep 9 19:59:03 2007 +0200 xf86-video-tseng-1.1.1-2-x86_64 * Release bump diff --git a/source/x11/xf86-video-tseng/FrugalBuild b/source/x11/xf86-video-tseng/FrugalBuild index 687e63b..546f6d5 100644 --- a/source/x11/xf86-video-tseng/FrugalBuild +++ b/source/x11/xf86-video-tseng/FrugalBuild @@ -3,14 +3,13 @@ pkgname=xf86-video-tseng pkgver=1.1.1 -pkgrel=1 +pkgrel=2 pkgdesc="X.Org video driver for tseng cards" url="http://xorg.freedesktop.org" groups=('x11' 'xorg-core' 'xorg-drivers') archs=('i686' 'x86_64') -depends=('xorg-server') +depends=('xorg-server>=1.4') makedepends=('randrproto' 'renderproto' 'xf86dgaproto' 'videoproto') -_F_xorg_nr=2 Finclude xorg sha1sums=('7eb1cd73983aaa874dbb480efc7982063eab6af8') From krics at linuxforum.hu Sun Sep 9 20:00:49 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sun Sep 9 20:00:50 2007 Subject: [Frugalware-git] xorg73: xf86-video-v4l-0.1.1-2-x86_64 Message-ID: <20070909180049.4063013A42DD@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=15dc5c9b526c6b589657e846ef63087bf08c2a12 commit 15dc5c9b526c6b589657e846ef63087bf08c2a12 Author: Christian Hamar alias krix Date: Sun Sep 9 20:00:29 2007 +0200 xf86-video-v4l-0.1.1-2-x86_64 * RElease bump diff --git a/source/x11/xf86-video-v4l/FrugalBuild b/source/x11/xf86-video-v4l/FrugalBuild index f081cdd..4796e17 100644 --- a/source/x11/xf86-video-v4l/FrugalBuild +++ b/source/x11/xf86-video-v4l/FrugalBuild @@ -3,14 +3,13 @@ pkgname=xf86-video-v4l pkgver=0.1.1 -pkgrel=1 +pkgrel=2 pkgdesc="X.Org video driver for V4L cards" url="http://xorg.freedesktop.org" groups=('x11' 'xorg-core' 'xorg-drivers') archs=('i686' 'x86_64') -depends=('xorg-server') +depends=('xorg-server>=1.4') makedepends=('randrproto' 'renderproto' 'videoproto') -_F_xorg_nr=1 Finclude xorg sha1sums=('57a0e2426964448723321f77237597ef27373697') From krics at linuxforum.hu Sun Sep 9 20:02:17 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sun Sep 9 20:02:19 2007 Subject: [Frugalware-git] xorg73: xf86-video-vesa-1.3.0-3-x86_64 Message-ID: <20070909180217.3BC5013A42DD@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=21976d62b157c4da8130e77ab8de0c0a42e161e2 commit 21976d62b157c4da8130e77ab8de0c0a42e161e2 Author: Christian Hamar alias krix Date: Sun Sep 9 20:01:57 2007 +0200 xf86-video-vesa-1.3.0-3-x86_64 * Release bump diff --git a/source/x11/xf86-video-vesa/FrugalBuild b/source/x11/xf86-video-vesa/FrugalBuild index a9d03d0..51c35bc 100644 --- a/source/x11/xf86-video-vesa/FrugalBuild +++ b/source/x11/xf86-video-vesa/FrugalBuild @@ -3,15 +3,14 @@ pkgname=xf86-video-vesa pkgver=1.3.0 -pkgrel=2 +pkgrel=3 pkgdesc="X.Org video driver for VESA cards" url="http://xorg.freedesktop.org" groups=('x11' 'xorg-core' 'xorg-drivers') archs=('i686' 'x86_64') -depends=('xorg-server>=1.2.0-3') +depends=('xorg-server>=1.4') makedepends=('randrproto' 'renderproto') -_F_xorg_nr=2 Finclude xorg -sha1sums=('52facbc52b50f55bea5237d12e2b7b85819666b9') +sha1sums=('09d74f838c07c58b6eba3600f3afa5fb74420ff4') # optimization OK From krics at linuxforum.hu Sun Sep 9 20:03:37 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sun Sep 9 20:03:39 2007 Subject: [Frugalware-git] xorg73: xf86-video-vga-4.1.0-3-x86_64 Message-ID: <20070909180337.D98C513A42DD@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=28e5d2b450f990767cba827678cbc1afa4762366 commit 28e5d2b450f990767cba827678cbc1afa4762366 Author: Christian Hamar alias krix Date: Sun Sep 9 20:03:18 2007 +0200 xf86-video-vga-4.1.0-3-x86_64 * Release bump diff --git a/source/x11/xf86-video-vga/FrugalBuild b/source/x11/xf86-video-vga/FrugalBuild index 66ec7ab..045ccdf 100644 --- a/source/x11/xf86-video-vga/FrugalBuild +++ b/source/x11/xf86-video-vga/FrugalBuild @@ -3,15 +3,14 @@ pkgname=xf86-video-vga pkgver=4.1.0 -pkgrel=2 +pkgrel=3 pkgdesc="X.Org VGA driver" url="http://xorg.freedesktop.org" groups=('x11' 'xorg-core' 'xorg-drivers') archs=('i686' 'x86_64') -depends=('xorg-server>=1.2.0-3') +depends=('xorg-server>=1.4') makedepends=('xproto' 'fontsproto' 'randrproto' 'renderproto' 'xextproto') -_F_xorg_nr=1 Finclude xorg -sha1sums=('6ef9f7f9b5ef2364430b29f6ac6e2e628d4ec1be') +sha1sums=('a3b5562e5714d956647389cc8c089fac85d7177e') # optimization OK From krics at linuxforum.hu Sun Sep 9 20:05:15 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sun Sep 9 20:05:16 2007 Subject: [Frugalware-git] xorg73: xf86-video-via-0.2.2-3-x86_64 Message-ID: <20070909180515.B975B13A42DD@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=14d7ee7e0b8ebbec5f690ca28ac3884138b8ce97 commit 14d7ee7e0b8ebbec5f690ca28ac3884138b8ce97 Author: Christian Hamar alias krix Date: Sun Sep 9 20:04:54 2007 +0200 xf86-video-via-0.2.2-3-x86_64 * Release bump diff --git a/source/x11/xf86-video-via/FrugalBuild b/source/x11/xf86-video-via/FrugalBuild index 6eb5def..b93fabe 100644 --- a/source/x11/xf86-video-via/FrugalBuild +++ b/source/x11/xf86-video-via/FrugalBuild @@ -3,15 +3,14 @@ pkgname=xf86-video-via pkgver=0.2.2 -pkgrel=2 +pkgrel=3 pkgdesc="X.Org video driver for via cards" url="http://xorg.freedesktop.org" groups=('x11' 'xorg-core' 'xorg-drivers') archs=('i686' 'x86_64') -depends=('xorg-server>=1.2.0-3') +depends=('xorg-server>=1.4') makedepends=('randrproto' 'libxvmc' 'xf86driproto' 'glproto') -_F_xorg_nr=2 Finclude xorg -sha1sums=('65210c0481f58fd7033b1d2d78390e58b338fd8f') +sha1sums=('34297439a05d054b343df407e86b6bd7d1cece97') # optimization OK From krics at linuxforum.hu Sun Sep 9 20:06:40 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sun Sep 9 20:06:45 2007 Subject: [Frugalware-git] xorg73: xf86-video-vmware-10.14.1-2-x86_64 Message-ID: <20070909180640.E2E5313A42DD@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=6d9ee1f6c3a4e513ad7c435c28f7e846987ef717 commit 6d9ee1f6c3a4e513ad7c435c28f7e846987ef717 Author: Christian Hamar alias krix Date: Sun Sep 9 20:06:20 2007 +0200 xf86-video-vmware-10.14.1-2-x86_64 * Release bump diff --git a/source/x11/xf86-video-vmware/FrugalBuild b/source/x11/xf86-video-vmware/FrugalBuild index 282fa62..d4e99f2 100644 --- a/source/x11/xf86-video-vmware/FrugalBuild +++ b/source/x11/xf86-video-vmware/FrugalBuild @@ -3,15 +3,14 @@ pkgname=xf86-video-vmware pkgver=10.14.1 -pkgrel=1 +pkgrel=2 pkgdesc="X.Org video driver for vmware cards" url="http://xorg.freedesktop.org" groups=('x11' 'xorg-core' 'xorg-drivers') archs=('i686' 'x86_64') -depends=('xorg-server>=1.2.0') +depends=('xorg-server>=1.4') makedepends=('randrproto' 'renderproto' 'xineramaproto') -_F_xorg_nr=2 Finclude xorg -sha1sums=('597bb826c257573ebd69dcc02ab35e9bcabd0b97') +sha1sums=('7c03d3b18d4765c5abd800ed301f8b705a889adb') # optimization OK From krics at linuxforum.hu Sun Sep 9 20:08:06 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sun Sep 9 20:08:07 2007 Subject: [Frugalware-git] xorg73: xf86-video-voodoo-1.1.1-2-x86_64 Message-ID: <20070909180806.9AD5813A42DD@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=19916c2ef0e68ce391c2b0efbfd9f067ea31d945 commit 19916c2ef0e68ce391c2b0efbfd9f067ea31d945 Author: Christian Hamar alias krix Date: Sun Sep 9 20:07:45 2007 +0200 xf86-video-voodoo-1.1.1-2-x86_64 * Release bump diff --git a/source/x11/xf86-video-voodoo/FrugalBuild b/source/x11/xf86-video-voodoo/FrugalBuild index 0dcd19d..5261613 100644 --- a/source/x11/xf86-video-voodoo/FrugalBuild +++ b/source/x11/xf86-video-voodoo/FrugalBuild @@ -3,14 +3,13 @@ pkgname=xf86-video-voodoo pkgver=1.1.1 -pkgrel=1 +pkgrel=2 pkgdesc="X.Org video driver for Voodoo 1/2 cards" url="http://xorg.freedesktop.org" groups=('x11' 'xorg-core' 'xorg-drivers') archs=('i686' 'x86_64') -depends=('xorg-server') +depends=('xorg-server>=1.4') makedepends=('randrproto' 'renderproto' 'xf86dgaproto') -_F_xorg_nr=2 Finclude xorg sha1sums=('201dd422cf1e7876d0f377f8e6b1dad1d205e493') From krics at linuxforum.hu Sun Sep 9 20:13:16 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sun Sep 9 20:13:18 2007 Subject: [Frugalware-git] xorg73: xf86-video-amd-2.7.7.0-1-x86_64 Message-ID: <20070909181316.BC29713A42DD@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=4e88be8099639e10441bb6c1c0ca8cddabfacd19 commit 4e88be8099639e10441bb6c1c0ca8cddabfacd19 Author: Christian Hamar alias krix Date: Sun Sep 9 20:13:01 2007 +0200 xf86-video-amd-2.7.7.0-1-x86_64 * New package from individual diff --git a/source/x11/xf86-video-amd/FrugalBuild b/source/x11/xf86-video-amd/FrugalBuild new file mode 100644 index 0000000..3559239 --- /dev/null +++ b/source/x11/xf86-video-amd/FrugalBuild @@ -0,0 +1,18 @@ +# Compiling Time: 0.04 SBU +# Maintainer: Christian Hamar alias krix + +pkgname=xf86-video-amd +pkgver=2.7.7.0 +pkgrel=1 +pkgdesc="X.Org video driver AMD Geode GX and LX" +url="http://xorg.freedesktop.org" +groups=('x11' 'xorg-core' 'xorg-drivers') +# NOT COMPILES ON x86_64 because of assembly stuff. +archs=('i686' '!x86_64') +depends=('xorg-server>=1.4') +makedepends=('randrproto' 'renderproto' 'xf86dgaproto' 'videoproto') +_F_xorg_ind=1 +Finclude xorg +sha1sums=('58a627e746e4f4100e6a0fb5b0724e869ac50ac8') + +# optimization OK From krics at linuxforum.hu Sun Sep 9 20:15:41 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sun Sep 9 20:15:43 2007 Subject: [Frugalware-git] xorg73: xf86-video-vermilion-1.0.1-1-x86_64 Message-ID: <20070909181541.5C51C13A42DD@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=6e2ffb32944d04e32e77cdf2810cb935503e3052 commit 6e2ffb32944d04e32e77cdf2810cb935503e3052 Author: Christian Hamar alias krix Date: Sun Sep 9 20:15:16 2007 +0200 xf86-video-vermilion-1.0.1-1-x86_64 * New package diff --git a/source/x11/xf86-video-vermilion/FrugalBuild b/source/x11/xf86-video-vermilion/FrugalBuild new file mode 100644 index 0000000..0be4b06 --- /dev/null +++ b/source/x11/xf86-video-vermilion/FrugalBuild @@ -0,0 +1,17 @@ +# Compiling Time: 0.04 SBU +# Maintainer: Christian Hamar alias krix + +pkgname=xf86-video-vermilion +pkgver=1.0.1 +pkgrel=1 +pkgdesc="X.Org Generic VERMILION video driver" +url="http://xorg.freedesktop.org" +groups=('x11' 'xorg-core' 'xorg-drivers') +archs=('i686' 'x86_64') +depends=('xorg-server>=1.4') +makedepends=('randrproto' 'renderproto' 'xf86dgaproto' 'videoproto') +_F_xorg_ind=1 +Finclude xorg +sha1sums=('9062b5f847eb74124f3beff6f05ef291ef9217df') + +# optimization OK From krics at linuxforum.hu Sun Sep 9 20:20:02 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sun Sep 9 20:20:03 2007 Subject: [Frugalware-git] xorg73: xf86-video-xgi-1.5.0-1-x86_64 Message-ID: <20070909182002.149EF13A42DD@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=590b49444e424e492d21378f895dff45be36975a commit 590b49444e424e492d21378f895dff45be36975a Author: Christian Hamar alias krix Date: Sun Sep 9 20:19:39 2007 +0200 xf86-video-xgi-1.5.0-1-x86_64 * New package diff --git a/source/x11/xf86-video-xgi/FrugalBuild b/source/x11/xf86-video-xgi/FrugalBuild new file mode 100644 index 0000000..159eda9 --- /dev/null +++ b/source/x11/xf86-video-xgi/FrugalBuild @@ -0,0 +1,17 @@ +# Compiling Time: 0.04 SBU +# Maintainer: Christian Hamar alias krix + +pkgname=xf86-video-xgi +pkgver=1.5.0 +pkgrel=1 +pkgdesc="X.Org video driver for XGI cards" +url="http://xorg.freedesktop.org" +groups=('x11' 'xorg-core' 'xorg-drivers') +archs=('i686' 'x86_64') +depends=('xorg-server>=1.4' 'libpciaccess') +makedepends=('randrproto' 'renderproto' 'xf86dgaproto' 'videoproto' 'xineramaproto' 'glproto' 'xf86driproto') +_F_xorg_ind=1 +Finclude xorg +sha1sums=('77e6ee4aeeffe7d1383ef0ee83fc7f1cf3bcea86') + +# optimization OK From krics at linuxforum.hu Sun Sep 9 20:30:06 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sun Sep 9 20:30:12 2007 Subject: [Frugalware-git] xorg73: grandr-0.1-1-x86_64 Message-ID: <20070909183006.0375613A42F9@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=6d38cac8f2c595308b08bbb14efad12ddcdc40a5 commit 6d38cac8f2c595308b08bbb14efad12ddcdc40a5 Author: Christian Hamar alias krix Date: Sun Sep 9 20:29:39 2007 +0200 grandr-0.1-1-x86_64 * New package diff --git a/source/x11/grandr/FrugalBuild b/source/x11/grandr/FrugalBuild new file mode 100644 index 0000000..347d806 --- /dev/null +++ b/source/x11/grandr/FrugalBuild @@ -0,0 +1,17 @@ +# Compiling Time: 0.02 SBU +# Maintainer: Christian Hamar alias krix + +pkgname=grandr +pkgver=0.1 +pkgrel=1 +pkgdesc="X.Org grandr application" +url="http://xorg.freedesktop.org" +groups=('x11' 'xorg-core' 'xorg-apps') +archs=('i686' 'x86_64') +depends=('gtk+2' 'gconf' 'xf86-video-intel' 'xorg-server>=1.4' 'libxrandr') +makedepends=('randrproto') +_F_xorg_ind=1 +Finclude xorg +sha1sums=('906c45448bfd3c3c0d2f24d3c62ea9c7e0f4ce61') + +# optimization OK From krics at linuxforum.hu Sun Sep 9 20:32:19 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sun Sep 9 20:32:21 2007 Subject: [Frugalware-git] xorg73: xbacklight-1.1-1-x86_64 Message-ID: <20070909183219.F0A1E13A42F9@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=9350efb4ec61a4700fd61d720187c1f8606e80fb commit 9350efb4ec61a4700fd61d720187c1f8606e80fb Author: Christian Hamar alias krix Date: Sun Sep 9 20:32:00 2007 +0200 xbacklight-1.1-1-x86_64 * New package diff --git a/source/x11/xbacklight/FrugalBuild b/source/x11/xbacklight/FrugalBuild new file mode 100644 index 0000000..fb1798b --- /dev/null +++ b/source/x11/xbacklight/FrugalBuild @@ -0,0 +1,17 @@ +# Compiling Time: 0.02 SBU +# Maintainer: Christian Hamar alias krix + +pkgname=xbacklight +pkgver=1.1 +pkgrel=1 +pkgdesc="X.Org adjust backlight brightness using RandR extension" +url="http://xorg.freedesktop.org" +groups=('x11' 'xorg-core' 'xorg-apps') +archs=('i686' 'x86_64') +depends=('libxrandr' 'libxrender') +makedepends=('randrproto') +_F_xorg_ind=1 +Finclude xorg +sha1sums=('963f154ecaeaddcc609c640d683319a20ee3d5e8') + +# optimization OK From krics at linuxforum.hu Sun Sep 9 20:37:03 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sun Sep 9 20:37:05 2007 Subject: [Frugalware-git] xorg73: xfontsel-1.0.2-1-x86_64 Message-ID: <20070909183703.DADF113A42F9@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=69f6d17edfa4804b4136482a9633a5d2e156d6e7 commit 69f6d17edfa4804b4136482a9633a5d2e156d6e7 Author: Christian Hamar alias krix Date: Sun Sep 9 20:36:43 2007 +0200 xfontsel-1.0.2-1-x86_64 * Version bump diff --git a/source/x11/xfontsel/FrugalBuild b/source/x11/xfontsel/FrugalBuild index ff575b7..8830f31 100644 --- a/source/x11/xfontsel/FrugalBuild +++ b/source/x11/xfontsel/FrugalBuild @@ -2,22 +2,17 @@ # Maintainer: Christian Hamar alias krix pkgname=xfontsel -pkgver=1.0.1 +pkgver=1.0.2 pkgrel=1 pkgdesc="X.Org xfontsel application" url="http://xorg.freedesktop.org" groups=('x11' 'xorg-core' 'xorg-apps') archs=('i686' 'x86_64') -depends=('libx11' 'libxp' 'libxaw') +depends=('libx11>=1.1.3' 'libxp>=1.0.0-2' 'libxaw>=1.0.4') +makedepends=('inputproto>=1.4.2.1') _F_xorg_ind=1 +Fconfopts="$Fconfopts --enable-xprint" Finclude xorg +sha1sums=('c492444a3bada3e44bc0319cfd85a89cd7770b84') -build() { - Fbuild --enable-xprint -} - -# optimalization OK - -# vim: ft=sh -sha1sums=('f265eca6dce595902d1123a23310c4063c1628f0') -makedepends=('inputproto') +# optimization OK From krics at linuxforum.hu Sun Sep 9 20:38:45 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sun Sep 9 20:38:46 2007 Subject: [Frugalware-git] xorg73: xrdb-1.0.4-1-x86_64 Message-ID: <20070909183845.29C5713A42F9@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=4053c8af09a88d8f6eef6ae2904c0873ece58d3b commit 4053c8af09a88d8f6eef6ae2904c0873ece58d3b Author: Christian Hamar alias krix Date: Sun Sep 9 20:38:25 2007 +0200 xrdb-1.0.4-1-x86_64 * Version bump diff --git a/source/x11/xrdb/FrugalBuild b/source/x11/xrdb/FrugalBuild index 0ecc6ab..af4a46d 100644 --- a/source/x11/xrdb/FrugalBuild +++ b/source/x11/xrdb/FrugalBuild @@ -2,17 +2,14 @@ # Maintainer: Christian Hamar alias krix pkgname=xrdb -pkgver=1.0.2 +pkgver=1.0.4 pkgrel=1 pkgdesc="X.Org xrdb application" url="http://xorg.freedesktop.org" groups=('x11' 'xorg-core' 'xorg-apps') archs=('i686' 'x86_64') -depends=('libxmu' 'libx11') -makedepends=('inputproto') -_F_xorg_nr=1 +depends=('libxmu>=1.0.3-2' 'libx11>=1.1.3') +makedepends=('inputproto>=1.4.2.1') Finclude xorg - +sha1sums=('82260670ee3d90111935590e27e93b582f05acb3') # optimization OK - -sha1sums=('b6d6e1f8a73321731e7f04f9a15c60276df8dc45') From krics at linuxforum.hu Sun Sep 9 20:41:51 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sun Sep 9 20:41:52 2007 Subject: [Frugalware-git] xorg73: xdm-1.1.6-1-x86_64 Message-ID: <20070909184151.9F21413A42F9@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=38101ca520e1127766af83e7e8a331ec0f61876c commit 38101ca520e1127766af83e7e8a331ec0f61876c Author: Christian Hamar alias krix Date: Sun Sep 9 20:41:25 2007 +0200 xdm-1.1.6-1-x86_64 * Version bump diff --git a/source/x11/xdm/FrugalBuild b/source/x11/xdm/FrugalBuild index 7958598..3757ed6 100644 --- a/source/x11/xdm/FrugalBuild +++ b/source/x11/xdm/FrugalBuild @@ -2,16 +2,15 @@ # Maintainer: Christian Hamar alias krix pkgname=xdm -pkgver=1.1.3 -pkgrel=2 +pkgver=1.1.6 +pkgrel=1 pkgdesc="X.Org xdm application" url="http://xorg.freedesktop.org" groups=('x11' 'xorg-core' 'xorg-apps') archs=('i686' 'x86_64') -depends=('xrdb' 'libxdmcp' 'libxaw' 'xinit' 'libx11>=1.1.1' 'libxft' 'xorg-server>=1.2.0') -makedepends=('xproto') +depends=('xrdb>=1.0.4' 'libxdmcp>=1.0.2-2' 'libxaw>=1.0.4' 'xinit>=1.0.5' 'libx11>=1.1.3' 'libxft>=2.1.12-2' 'xorg-server>=1.4') +makedepends=('xproto>=7.0.11') backup=('etc/X11/xdm/Xsession') -_F_xorg_nr=2 Finclude xorg source=(${source[@]} Xsession) @@ -29,6 +28,6 @@ build() { Fsed '/usr/X11R6/bin/sessreg' '/usr/bin/sessreg' $Fdestdir/usr/lib/X11/xdm/Xreset } -sha1sums=('4c4d5f5cdca2a5d76f8db545431eb0c7e882eea2'\ +sha1sums=('9b5642407f01bbdaa8ad699e2d2417bd26372c53' \ 'e0dc8db0d88be2bcb6f1b746e5079ffbc0416693') # optimization OK From krics at linuxforum.hu Sun Sep 9 20:43:35 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sun Sep 9 20:43:36 2007 Subject: [Frugalware-git] xorg73: xrandr-1.2.2-1-x86_64 Message-ID: <20070909184335.49A9C13A42F9@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=70ecda8fabf77540b50b42783d8b798295f80a22 commit 70ecda8fabf77540b50b42783d8b798295f80a22 Author: Christian Hamar alias krix Date: Sun Sep 9 20:43:15 2007 +0200 xrandr-1.2.2-1-x86_64 * Version bump diff --git a/source/x11/xrandr/FrugalBuild b/source/x11/xrandr/FrugalBuild index 805ab2f..9bbaaa7 100644 --- a/source/x11/xrandr/FrugalBuild +++ b/source/x11/xrandr/FrugalBuild @@ -2,17 +2,14 @@ # Maintainer: Christian Hamar alias krix pkgname=xrandr -pkgver=1.0.2 +pkgver=1.2.2 pkgrel=1 pkgdesc="X.Org xrandr application" url="http://xorg.freedesktop.org" groups=('x11' 'xorg-core' 'xorg-apps') archs=('i686' 'x86_64') -depends=('libx11' 'libxrandr') -makedepends=('inputproto') -_F_xorg_nr=1 +depends=('libx11>=1.1.3' 'libxrandr>=1.2.2') +makedepends=('inputproto>=1.4.2.1') Finclude xorg - +sha1sums=('26d9284f2634d2029a44adb29a335240e75cbe98') # optimization OK - -sha1sums=('7003eb14d62d1470cae292ad37f5fb6fd14657fe') From krics at linuxforum.hu Sun Sep 9 20:44:51 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sun Sep 9 20:44:53 2007 Subject: [Frugalware-git] xorg73: xmodmap-1.0.3-1-x86_64 Message-ID: <20070909184451.DBD8413A42F9@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=8587b588388163e3c4ebd6aebea3bde3bbdb7cab commit 8587b588388163e3c4ebd6aebea3bde3bbdb7cab Author: Christian Hamar alias krix Date: Sun Sep 9 20:44:31 2007 +0200 xmodmap-1.0.3-1-x86_64 * Version bump diff --git a/source/x11/xmodmap/FrugalBuild b/source/x11/xmodmap/FrugalBuild index f6e2614..e3aa337 100644 --- a/source/x11/xmodmap/FrugalBuild +++ b/source/x11/xmodmap/FrugalBuild @@ -2,16 +2,15 @@ # Maintainer: Christian Hamar alias krix pkgname=xmodmap -pkgver=1.0.2 +pkgver=1.0.3 pkgrel=1 pkgdesc="utility for modifying keymaps and pointer button mappings in X" url="http://xorg.freedesktop.org" groups=('x11' 'xorg-core' 'xorg-apps') archs=('i686' 'x86_64') -depends=('libx11>=1.0.99.1') -makedepends=('inputproto') -_F_xorg_nr=2 +depends=('libx11>=1.1.3') +makedepends=('inputproto>=1.4.2.1') Finclude xorg -sha1sums=('915294312359d4b3067ae2a2702eb1f1f41dbd0b') +sha1sums=('5ad0f99735a13d6bb75ce63b2285f4c9c11be51b') # optimization OK From krics at linuxforum.hu Sun Sep 9 20:46:13 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sun Sep 9 20:46:14 2007 Subject: [Frugalware-git] xorg73: xlsfonts-1.0.2-1-x86_64 Message-ID: <20070909184613.830E913A42F9@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=7cbbeea868607939ae132bc8c38329afb93fe0a7 commit 7cbbeea868607939ae132bc8c38329afb93fe0a7 Author: Christian Hamar alias krix Date: Sun Sep 9 20:45:51 2007 +0200 xlsfonts-1.0.2-1-x86_64 * Version bump diff --git a/source/x11/xlsfonts/FrugalBuild b/source/x11/xlsfonts/FrugalBuild index 9072071..f7bd39c 100644 --- a/source/x11/xlsfonts/FrugalBuild +++ b/source/x11/xlsfonts/FrugalBuild @@ -2,18 +2,16 @@ # Maintainer: Christian Hamar alias krix pkgname=xlsfonts -pkgver=1.0.1 +pkgver=1.0.2 pkgrel=1 pkgdesc="X.Org xlsfonts application" url="http://xorg.freedesktop.org" groups=('x11' 'xorg-core' 'xorg-apps') archs=('i686' 'x86_64') -depends=('libx11') +depends=('libx11>=1.1.3') +makedepends=('inputproto>=1.4.2.1') _F_xorg_ind=1 Finclude xorg +sha1sums=('556c8b94002e834cf61e08ea4f5551a039e2d5c9') -# optimalization OK - -# vim: ft=sh -sha1sums=('76dd63376dc20ccb784d97b0ae16acbf0338f72a') -makedepends=('inputproto') +# optimization OK From krics at linuxforum.hu Sun Sep 9 20:46:58 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sun Sep 9 20:46:58 2007 Subject: [Frugalware-git] xorg73: rendercheck-1.2-1-x86_64 Message-ID: <20070909184658.6B30013A42F9@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=ddcddca542b0deb22d1a04f69331033470088955 commit ddcddca542b0deb22d1a04f69331033470088955 Author: Christian Hamar alias krix Date: Sun Sep 9 20:46:44 2007 +0200 rendercheck-1.2-1-x86_64 * Added _F_xorg_ind=1 diff --git a/source/x11/rendercheck/FrugalBuild b/source/x11/rendercheck/FrugalBuild index 305a707..0eecb80 100644 --- a/source/x11/rendercheck/FrugalBuild +++ b/source/x11/rendercheck/FrugalBuild @@ -10,6 +10,7 @@ groups=('x11' 'xorg-core' 'xorg-apps') archs=('i686' 'x86_64') depends=('libxrender') makedepends=('inputproto') +_F_xorg_ind=1 Finclude xorg _F_cd_path="$pkgname-$pkgver" sha1sums=('bc01be694a2100df8cb976d4a7fa273387daabea') From krics at linuxforum.hu Sun Sep 9 20:47:17 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sun Sep 9 20:47:19 2007 Subject: [Frugalware-git] xorg73: t/xorg.sh fixups Message-ID: <20070909184717.F147E13A42F9@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=dbc6a48352ee85d06ef4f65019d4dc1d65a82b0d commit dbc6a48352ee85d06ef4f65019d4dc1d65a82b0d Author: Christian Hamar alias krix Date: Sun Sep 9 20:46:57 2007 +0200 t/xorg.sh fixups diff --git a/t/xorg b/t/xorg index 7e8d076..0b06ce1 100755 --- a/t/xorg +++ b/t/xorg @@ -24,12 +24,8 @@ ls source/x11|sed 's|/$||' >$fw # compiz is uhh? won't work :p # mkcfm is removed by priyank # xkbdata deprecated | not maintained anymore. xkeyboard-config replaced it. -# xf86-video-vermilion: requires xorg-server >= 1.3.99.0 -# xf86-video-intel: requires xorg-server >= 1.2.99.0 -# xf86-video-glide: makedepends on xfree86.. -# grandr: requires xrandr >= 1.2. initial FB @ http://yugo.frugalware.org/~vmiklos/grandr/FrugalBuild -# xbacklight: xorg-1.3-only -# constype, libpciaccess, pixman, xf86-video-amd, xf86-video-xgi, constype, xbacklight: xorg-1.3 +# xf86-video-glide: makedepends on xfree86.. and need libglide* foo .. :S +# constype, : well empty package at x86_64 (maybe at i686 too) diff -u $upstream $fw|grep ^-[^-] |grep -v \ -'\(xf86-video-impact\|compiz\|xf86-video-wsfb\|mkcfm\|xkbdata\|xf86-video-vermilion\|xf86-video-intel\|xf86-video-glide\|grandr\|xbacklightconstype\|libpciaccess\|pixman\|xf86-video-amd\|xf86-video-xgi\|constype\|xbacklight\)'|sed 's/^-//' +'\(xf86-video-impact\|compiz\|xf86-video-glide\|constype\|xf86-video-i810\|xf86-video-wsfb\|mkcfm\|xkbdata\)'|sed 's/^-//' rm -f $upstream $fw From priyank at frugalware.org Sun Sep 9 21:16:05 2007 From: priyank at frugalware.org (Priyank) Date: Sun Sep 9 21:16:08 2007 Subject: [Frugalware-git] gfpm: gfpm: New feature: gfpm can now optimize your pacman-g2 package database. Message-ID: <20070909191605.405FA13A42F9@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gfpm.git;a=commitdiff;h=54542a0a45cd4f6dbb78168d29ab32a05c204b06 commit 54542a0a45cd4f6dbb78168d29ab32a05c204b06 Author: Priyank Date: Mon Sep 10 00:43:39 2007 +0530 gfpm: New feature: gfpm can now optimize your pacman-g2 package database. diff --git a/data/gfpm.glade b/data/gfpm.glade index 3788094..da6f92b 100644 --- a/data/gfpm.glade +++ b/data/gfpm.glade @@ -64,6 +64,14 @@ + + + True + GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK + _Optimize package database + True + + @@ -1150,4 +1158,126 @@ + + 400 + 150 + GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK + 5 + False + GTK_WIN_POS_CENTER_ON_PARENT + 400 + 150 + GDK_WINDOW_TYPE_HINT_DIALOG + False + + + True + GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK + 2 + + + True + GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK + 2 + + + True + GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK + 0 + <span size="larger"><b>Optimize package database</b></span> + True + PANGO_ELLIPSIZE_END + + + False + 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 + <b>Status : </b> + True + + + False + + + + + True + GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK + 0 + + + 1 + + + + + False + 7 + 1 + + + + + True + GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK + + + + False + 3 + 2 + + + + + False + 1 + + + + + True + GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK + GTK_BUTTONBOX_EDGE + + + True + True + True + GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK + Optimize + 0 + + + + + True + True + True + GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK + Close + 0 + + + 1 + + + + + False + GTK_PACK_END + + + + + diff --git a/src/Makefile.am b/src/Makefile.am index 456fd39..be22ffe 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -12,6 +12,7 @@ gfpm_SOURCES= \ gfpm-progress.c \ gfpm-interface.c \ gfpm-messages.c \ + gfpm-optimizedb.c \ gfpm-about.c \ gfpm.c diff --git a/src/gfpm-interface.c b/src/gfpm-interface.c index bfdc9cf..d8d5094 100644 --- a/src/gfpm-interface.c +++ b/src/gfpm-interface.c @@ -38,6 +38,7 @@ #include "gfpm-messages.h" #include "gfpm-packagelist.h" #include "gfpm-progress.h" +#include "gfpm-optimizedb.h" #include "gfpm-util.h" #include "gfpm-about.h" #include "gfpm-db.h" @@ -262,6 +263,7 @@ gfpm_interface_init (void) gfpm_db_init (); gfpm_messages_init (); gfpm_progress_init (); + gfpm_optimize_db_dlg_init (); gtk_widget_hide (gfpm_splash); gchar *title = g_strdup_printf ("%s (%s)", PACKAGE_STRING, GFPM_RELEASE_NAME); diff --git a/src/gfpm-optimizedb.c b/src/gfpm-optimizedb.c new file mode 100644 index 0000000..31f9f35 --- /dev/null +++ b/src/gfpm-optimizedb.c @@ -0,0 +1,209 @@ +/* + * gfpm-optimizedb.c for gfpm + * + * Copyright (C) 2006-2007 by Priyank Gosalia + * Based on pacman-optimize written by Judd Vinet + * Copyright (C) 2002-2006 Judd Vinet + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + */ + +#include "gfpm-optimizedb.h" +#include "gfpm-messages.h" + +#include +#include +#include +#include + +#define DBLOC "/var/lib/pacman" +#define TMPLOC "/var/lib/pacman.new" +#define OLDSUM "/tmp/dbsums.old" +#define NEWSUM "/tmp/dbsums.new" +#define LOCKFILE "/tmp/pacman-g2.lck" + +extern GladeXML *xml; + +static GtkWidget *gfpm_optimize_db_dlg; +static GtkWidget *gfpm_optimize_db_progressbar; +static GtkWidget *gfpm_optimize_db_startbtn; +static GtkWidget *gfpm_optimize_db_closebtn; +static GtkWidget *gfpm_optimize_db_label; +static void gfpm_optimize_db_set_progress_status (const char *text); +static void gfpm_optimize_db_optimize_btn_clicked (GtkWidget *widget, gpointer data); +static void gfpm_optimize_db_dlg_show (void); +static void gfpm_optimize_db_dlg_hide (void); +static void gfpm_optimize_db (void); + +void +gfpm_optimize_db_dlg_init (void) +{ + gfpm_optimize_db_dlg = glade_xml_get_widget (xml, "optimize_db_dlg"); + gfpm_optimize_db_progressbar = glade_xml_get_widget (xml, "optimize_db_progress"); + gfpm_optimize_db_startbtn = glade_xml_get_widget (xml, "optimize_db_start"); + gfpm_optimize_db_closebtn = glade_xml_get_widget (xml, "optimize_db_close"); + gfpm_optimize_db_label = glade_xml_get_widget (xml, "optimize_db_label"); + + g_signal_connect (G_OBJECT(gfpm_optimize_db_startbtn), + "clicked", + G_CALLBACK(gfpm_optimize_db_optimize_btn_clicked), + NULL); + g_signal_connect (G_OBJECT(gfpm_optimize_db_closebtn), + "clicked", + G_CALLBACK(gfpm_optimize_db_dlg_hide), + NULL); + g_signal_connect (G_OBJECT(glade_xml_get_widget(xml,"opt1")), + "activate", + G_CALLBACK(gfpm_optimize_db_dlg_show), + NULL); + + return; +} + +static void +gfpm_optimize_db_set_progress_status (const char *text) +{ + gtk_label_set_text (GTK_LABEL(gfpm_optimize_db_label), text); + + return; +} + +static void +gfpm_optimize_db_optimize_btn_clicked (GtkWidget *widget, gpointer data) +{ + gfpm_optimize_db (); + + return; +} + +static void +gfpm_optimize_db_dlg_show (void) +{ + gfpm_optimize_db_set_progress_status (_("Ready")); + gtk_progress_bar_set_fraction (GTK_PROGRESS_BAR(gfpm_optimize_db_progressbar), 0.0); + gtk_widget_show (gfpm_optimize_db_dlg); + + return; +} + +static void +gfpm_optimize_db_dlg_hide (void) +{ + gtk_widget_hide (gfpm_optimize_db_dlg); + + return; +} + +void +gfpm_optimize_db (void) +{ + char *cmdline = NULL; + char temp[40]; + + /* disable the start button */ + gtk_widget_set_sensitive (gfpm_optimize_db_startbtn, FALSE); + gtk_widget_set_sensitive (gfpm_optimize_db_closebtn, FALSE); + + /* check if another package manager is already running */ + if (g_file_test(LOCKFILE,G_FILE_TEST_EXISTS)) + { + gfpm_error (_("Error"), _("Cannot optimize database. Another instance of pacman-g2 or gfpm is already running.")); + goto cleanup; + } + + /* create a lock file */ + if (g_creat(LOCKFILE,S_IRWXU)==-1) + { + gfpm_error (_("Error"), _("Error creating lockfile. Failed to optimize package database")); + goto cleanup; + } + + /* generate checksums for the old database */ + gfpm_optimize_db_set_progress_status (_("generating checksums for the old database")); + gtk_progress_bar_set_fraction (GTK_PROGRESS_BAR(gfpm_optimize_db_progressbar), 0.1); + while (gtk_events_pending()) gtk_main_iteration (); + sleep (2); + cmdline = g_strdup_printf ("find %s -type f | sort | xargs md5sum > %s", DBLOC, OLDSUM); + system (cmdline); + g_free (cmdline); + + /* copy the old database to a new directory */ + sprintf (temp, _("copying %s"), DBLOC); + gfpm_optimize_db_set_progress_status (temp); + gtk_progress_bar_set_fraction (GTK_PROGRESS_BAR(gfpm_optimize_db_progressbar), 0.25); + while (gtk_events_pending()) gtk_main_iteration (); + sleep (2); + cmdline = g_strdup_printf ("cp -a %s %s", DBLOC, TMPLOC); + system (cmdline); + g_free (cmdline); + + /* generate checksums for the new database */ + gfpm_optimize_db_set_progress_status (_("generating checksums for the new database")); + cmdline = g_strdup_printf ("mv %s %s.bak", DBLOC, DBLOC); + system (cmdline); + g_free (cmdline); + cmdline = g_strdup_printf ("mv %s %s", TMPLOC, DBLOC); + system (cmdline); + g_free (cmdline); + gtk_progress_bar_set_fraction (GTK_PROGRESS_BAR(gfpm_optimize_db_progressbar), 0.4); + while (gtk_events_pending()) gtk_main_iteration (); + cmdline = g_strdup_printf ("find %s -type f | sort | xargs md5sum > %s", DBLOC, NEWSUM); + system (cmdline); + g_free (cmdline); + gtk_progress_bar_set_fraction (GTK_PROGRESS_BAR(gfpm_optimize_db_progressbar), 0.6); + while (gtk_events_pending()) gtk_main_iteration (); + sleep (2); + + /* check integrity */ + gfpm_optimize_db_set_progress_status (_("performing integrity check")); + cmdline = g_strdup_printf ("diff %s %s > /dev/null 2>&1", OLDSUM, NEWSUM); + if (system(cmdline)!=0) + { + gfpm_error (_("Optimization failed"), _("Integrity check failed")); + g_free (cmdline); + cmdline = g_strdup_printf ("rm -rf %s;mv %s.bak %s", DBLOC, DBLOC, DBLOC); + system (cmdline); + g_free (cmdline); + } + g_free (cmdline); + gtk_progress_bar_set_fraction (GTK_PROGRESS_BAR(gfpm_optimize_db_progressbar), 0.85); + while (gtk_events_pending()) gtk_main_iteration (); + + /* remove old database */ + gfpm_optimize_db_set_progress_status (_("removing old database")); + cmdline = g_strdup_printf ("rm -rf %s.bak", DBLOC); + system (cmdline); + gtk_progress_bar_set_fraction (GTK_PROGRESS_BAR(gfpm_optimize_db_progressbar), 0.95); + while (gtk_events_pending()) gtk_main_iteration (); + sleep (2); + + /* remove temp files */ + gfpm_optimize_db_set_progress_status (_("removing temporary files")); + g_remove (OLDSUM); + g_remove (NEWSUM); + g_remove (LOCKFILE); + gtk_progress_bar_set_fraction (GTK_PROGRESS_BAR(gfpm_optimize_db_progressbar), 1.0); + while (gtk_events_pending()) gtk_main_iteration (); + sleep (2); + +cleanup: + gfpm_optimize_db_set_progress_status (_("Database optimized.")); + gtk_widget_set_sensitive (gfpm_optimize_db_startbtn, TRUE); + gtk_widget_set_sensitive (gfpm_optimize_db_closebtn, TRUE); + gfpm_message (_("Database optimized"), _("Your package database is now optimized.")); + + return; +} + diff --git a/src/gfpm-optimizedb.h b/src/gfpm-optimizedb.h new file mode 100644 index 0000000..e99a8ce --- /dev/null +++ b/src/gfpm-optimizedb.h @@ -0,0 +1,15 @@ +#ifndef __GFPM_OPTIMIZEDB_H__ +#define __GFPM_OPTIMIZEDB_H__ + +#include +#include +#include +#include +#include +#include +#include +#include "gfpm.h" + +void gfpm_optimize_db_dlg_init (void); + +#endif From priyank at frugalware.org Sun Sep 9 21:17:55 2007 From: priyank at frugalware.org (Priyank) Date: Sun Sep 9 21:17:55 2007 Subject: [Frugalware-git] gfpm: POTFILES.in: Added gfpm-optimizedb.c Message-ID: <20070909191755.36B9D13A42F9@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gfpm.git;a=commitdiff;h=def45e5e6239afbaed781b3ed22290ad8d00dc19 commit def45e5e6239afbaed781b3ed22290ad8d00dc19 Author: Priyank Date: Mon Sep 10 00:45:37 2007 +0530 POTFILES.in: Added gfpm-optimizedb.c diff --git a/po/POTFILES.in b/po/POTFILES.in index 7413219..269b813 100644 --- a/po/POTFILES.in +++ b/po/POTFILES.in @@ -6,5 +6,6 @@ src/gfpm-systray.c src/gfpm-util.c src/gfpm.c src/gfpm-packagelist.c +src/gfpm-optimizedb.c src/gfpm-messages.c data/gfpm.glade From priyank at frugalware.org Sun Sep 9 21:22:07 2007 From: priyank at frugalware.org (Priyank) Date: Sun Sep 9 21:22:09 2007 Subject: [Frugalware-git] gfpm: gfpm-optimizedb: some minor fixes Message-ID: <20070909192207.8F4B613A42F9@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gfpm.git;a=commitdiff;h=26bc198889a9d578ffee1546bbfcac539f4315dc commit 26bc198889a9d578ffee1546bbfcac539f4315dc Author: Priyank Date: Mon Sep 10 00:48:55 2007 +0530 gfpm-optimizedb: some minor fixes * immediately return if integrity check fails. * do not display success message even if something fails. diff --git a/src/gfpm-optimizedb.c b/src/gfpm-optimizedb.c index 31f9f35..77fea3e 100644 --- a/src/gfpm-optimizedb.c +++ b/src/gfpm-optimizedb.c @@ -172,10 +172,12 @@ gfpm_optimize_db (void) if (system(cmdline)!=0) { gfpm_error (_("Optimization failed"), _("Integrity check failed")); + gfpm_optimize_db_set_progress_status (_("Failed.")); g_free (cmdline); cmdline = g_strdup_printf ("rm -rf %s;mv %s.bak %s", DBLOC, DBLOC, DBLOC); system (cmdline); g_free (cmdline); + goto cleanup; } g_free (cmdline); gtk_progress_bar_set_fraction (GTK_PROGRESS_BAR(gfpm_optimize_db_progressbar), 0.85); @@ -197,12 +199,12 @@ gfpm_optimize_db (void) gtk_progress_bar_set_fraction (GTK_PROGRESS_BAR(gfpm_optimize_db_progressbar), 1.0); while (gtk_events_pending()) gtk_main_iteration (); sleep (2); + gfpm_optimize_db_set_progress_status (_("Database optimized.")); + gfpm_message (_("Database optimized"), _("Your package database is now optimized.")); cleanup: - gfpm_optimize_db_set_progress_status (_("Database optimized.")); gtk_widget_set_sensitive (gfpm_optimize_db_startbtn, TRUE); gtk_widget_set_sensitive (gfpm_optimize_db_closebtn, TRUE); - gfpm_message (_("Database optimized"), _("Your package database is now optimized.")); return; } From priyank at frugalware.org Sun Sep 9 21:32:05 2007 From: priyank at frugalware.org (Priyank) Date: Sun Sep 9 21:32:07 2007 Subject: [Frugalware-git] gfpm: gfpm: added icon for "optimize package database" menu item Message-ID: <20070909193205.66D8F13A42F9@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gfpm.git;a=commitdiff;h=eaac80d242855f0d8ef97354e4967460fbd8d49f commit eaac80d242855f0d8ef97354e4967460fbd8d49f Author: Priyank Date: Mon Sep 10 00:59:46 2007 +0530 gfpm: added icon for "optimize package database" menu item diff --git a/data/gfpm.glade b/data/gfpm.glade index da6f92b..8b19dc2 100644 --- a/data/gfpm.glade +++ b/data/gfpm.glade @@ -54,6 +54,7 @@ True GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK + clear package cache _Clear package cache True @@ -65,11 +66,17 @@ - + True GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK + optimize your package database to improve performance _Optimize package database True + + + gtk-refresh + + From priyank at frugalware.org Sun Sep 9 21:37:02 2007 From: priyank at frugalware.org (Priyank) Date: Sun Sep 9 21:37:04 2007 Subject: [Frugalware-git] gfpm: gfpm-progress: gfpm_progress_update(): download rate should not be negative. (thx crazy for reporting) Message-ID: <20070909193702.3CBFF13A42F9@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gfpm.git;a=commitdiff;h=c96ba410c087611741051bea7aa731d8f81d329a commit c96ba410c087611741051bea7aa731d8f81d329a Author: Priyank Date: Mon Sep 10 01:04:37 2007 +0530 gfpm-progress: gfpm_progress_update(): download rate should not be negative. (thx crazy for reporting) diff --git a/src/gfpm-progress.c b/src/gfpm-progress.c index d7ef09b..52bce7f 100644 --- a/src/gfpm-progress.c +++ b/src/gfpm-progress.c @@ -194,7 +194,7 @@ gfpm_progress_update (netbuf *ctl, int xferred, void *arg) } else { - sprintf (rate_text, "%6.1fK/s", rate); + sprintf (rate_text, "%6.1fK/s", (rate>0)?rate:0); } rx_str = g_strdup_printf ("%dK / %dK", (xferred+offset)/1024, size/1024); gtk_label_set_text (GTK_LABEL(rec_label), rx_str); From vmiklos at frugalware.org Sun Sep 9 22:34:10 2007 From: vmiklos at frugalware.org (VMiklos) Date: Sun Sep 9 22:34:11 2007 Subject: [Frugalware-git] frugalware-current: revert commit 23e456c Message-ID: <20070909203410.868D913A42F9@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=7f53e7b96da7ea6addedabbb566ad800d494cbff commit 7f53e7b96da7ea6addedabbb566ad800d494cbff Author: VMiklos Date: Sun Sep 9 22:33:34 2007 +0200 revert commit 23e456c using Fup2gnugz for this pkg breaks up2date diff --git a/source/base/groff/FrugalBuild b/source/base/groff/FrugalBuild index 3b38439..debe9b0 100644 --- a/source/base/groff/FrugalBuild +++ b/source/base/groff/FrugalBuild @@ -9,7 +9,7 @@ url="http://www.gnu.org/software/groff/groff.html" depends=('perl' 'libstdc++') groups=('base') archs=('i686' 'x86_64' 'ppc') -Fup2gnugz +up2date="lynx -dump http://ftp.gnu.org/gnu/groff/|grep tar.gz$|sed 's/.*-\(.*\)\.t.*/\1/'|Fsort|sed -n '$ p'" source=(ftp://ftp.gnu.org/gnu/groff/groff-$pkgver.tar.gz) sha1sums=('cfad99a5c52933a6a9180e394bd94fbaec0ac956') From vmiklos at frugalware.org Sun Sep 9 23:16:09 2007 From: vmiklos at frugalware.org (VMiklos) Date: Sun Sep 9 23:16:11 2007 Subject: [Frugalware-git] frugalware-current: fop-devel-0.94-1-i686 Message-ID: <20070909211609.E0E4C13A42F9@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=1aa6e3041c7a4636193f0c3ea568665a78b1e832 commit 1aa6e3041c7a4636193f0c3ea568665a78b1e832 Author: VMiklos Date: Sun Sep 9 23:15:57 2007 +0200 fop-devel-0.94-1-i686 version bump diff --git a/source/apps-extra/fop-devel/FrugalBuild b/source/apps-extra/fop-devel/FrugalBuild index d7c1e7e..452afc1 100644 --- a/source/apps-extra/fop-devel/FrugalBuild +++ b/source/apps-extra/fop-devel/FrugalBuild @@ -2,14 +2,14 @@ # Maintainer: VMiklos pkgname=fop-devel -pkgver=0.93 +pkgver=0.94 pkgrel=1 pkgdesc="Formatting Objects Processor is a print formatter driven by XSL" url="http://xmlgraphics.apache.org/fop/" rodepends=('java-gcj-compat') groups=('apps-extra') archs=('i686' 'x86_64') -up2date="lynx -dump $url |grep ']Version' |sed -n 's/.*n \(.*\)/\1/;$ p'" +up2date="lynx -dump http://www.apache.org/dist/xmlgraphics/fop/|grep current|sed 's/.* \(.*\)\.$/\1/;q'" # TODO: build it from source source=(http://www.apache.org/dist/xmlgraphics/fop/fop-$pkgver-bin-jdk1.4.tar.gz) signatures=($source.asc) From hermier at frugalware.org Mon Sep 10 02:15:26 2007 From: hermier at frugalware.org (Michel Hermier) Date: Mon Sep 10 02:15:31 2007 Subject: [Frugalware-git] frugalware-current: source/include/util.sh: Fix some regression exposed during the daily chkworld. Message-ID: <20070910001526.2368A13A42F9@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=c1953068ebc93bc7980013d5b789ead463698501 commit c1953068ebc93bc7980013d5b789ead463698501 Author: Michel Hermier Date: Mon Sep 10 01:55:21 2007 +0200 source/include/util.sh: Fix some regression exposed during the daily chkworld. diff --git a/source/include/util.sh b/source/include/util.sh index a58c6c1..c7754d1 100644 --- a/source/include/util.sh +++ b/source/include/util.sh @@ -791,21 +791,21 @@ Fautoreconf() { # Extension of the archive is given as argument. ### Flastarchive() { - grep "$1\(\$\|#\)"|sed -n "s/.*-\(.*\)$1/\1/;\$ p" + grep "\($1\)\(\$\|\#\)"|sed -n "s/.*-\(.*\)\($1\).*/\1/;$ p" } ### # * Flasttar(): Extracts version from a page's last tar.gz link. ### Flasttar() { - Flastarchive '\.tar\(\|\.gz\|\.bz2\)\|\.tgz' + Flastarchive '\.tar\(\.gz\|\.bz2\)\?\|\.tgz' } ### # * Flasttgz(): Extracts version from a page's last tgz link. ### Flasttgz() { - Flastarchive '\.tgz\(\|\.gz\)' + Flastarchive '\.tgz' } ### From crazy at frugalware.org Mon Sep 10 03:00:22 2007 From: crazy at frugalware.org (crazy) Date: Mon Sep 10 03:00:25 2007 Subject: [Frugalware-git] frugalware-current: gst-plugins-good-0.10.6-2-i686 Message-ID: <20070910010022.D738213A42F9@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=103d3827f5aeb9f2664b5e32a059179b23b2b0ee commit 103d3827f5aeb9f2664b5e32a059179b23b2b0ee Author: crazy Date: Mon Sep 10 02:54:01 2007 +0200 gst-plugins-good-0.10.6-2-i686 * rebuild * for some reason gst-plugins-good-ximage got broken diff --git a/source/xmultimedia/gst-plugins-good/FrugalBuild b/source/xmultimedia/gst-plugins-good/FrugalBuild index 0e403dc..2cd86d6 100644 --- a/source/xmultimedia/gst-plugins-good/FrugalBuild +++ b/source/xmultimedia/gst-plugins-good/FrugalBuild @@ -4,7 +4,7 @@ pkgname=gst-plugins-good pkgver=0.10.6 -pkgrel=1 +pkgrel=2 pkgdesc="Plugins for GStreamer (Good)" url="http://gstreamer.freedesktop.org/" depends=('gst-plugins-base>=0.10.13' 'gstreamer>=0.10.13' 'zlib') From boobaa at frugalware.org Mon Sep 10 09:01:16 2007 From: boobaa at frugalware.org (CSÉCSY László) Date: Mon Sep 10 09:01:17 2007 Subject: [Frugalware-git] frugalware-current: ntp-4.2.4p3-1-i686 Message-ID: <20070910070116.5BB0113A42FB@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=37f9d6e75e4d868fc4bdb220c2be0bebebf89b51 commit 37f9d6e75e4d868fc4bdb220c2be0bebebf89b51 Author: CSÉCSY László Date: Mon Sep 10 09:01:06 2007 +0200 ntp-4.2.4p3-1-i686 version bump new m8r, ok by iron@ added service support added default config corrected up2date various other smallish changes diff --git a/source/network-extra/ntp/FrugalBuild b/source/network-extra/ntp/FrugalBuild index e916f4c..0801837 100644 --- a/source/network-extra/ntp/FrugalBuild +++ b/source/network-extra/ntp/FrugalBuild @@ -1,18 +1,30 @@ -# Compiling Time: 0.24 SBU -# Maintainer: Krisztian VASAS +# Compiling Time: 0.85 SBU +# Maintainer: CSÉCSY László +# Former m8r: Krisztian VASAS pkgname=ntp -pkgver=4.2.4 -pkgextraver=p0 -pkgrel=2 +pkgver=4.2.4p3 +pkgrel=1 pkgdesc="The ntp daemon from ntp.org" url="http://www.ntp.org/" conflicts=('openntpd') groups=('network-extra') archs=('i686' 'x86_64') -up2date="lynx -dump http://ntp.isc.org/bin/view/Main/SoftwareDownloads | awk '/Stable/ {print \$2}' | sed 's/$pkgextraver//'" -source=(http://www.eecis.udel.edu/~ntp/ntp_spool/ntp4/$pkgname-$pkgver$pkgextraver.tar.gz) -sha1sums=('2ea11693bfbf0abf29575b5ab2ebfdd933ebb991') +up2date="lynx -dump http://www.eecis.udel.edu/~ntp/ntp_spool/ntp4/ | grep -m1 'http.*tar.gz$' | sed 's/.*ntp-\(.*\)\.tar.*/\1/'" +source=(http://www.eecis.udel.edu/~ntp/ntp_spool/ntp4/$pkgname-$pkgver.tar.gz rc.ntpd rc.ntpd.pot ntp.org.conf) +backup=(etc/ntp.org.conf) +sha1sums=('8531786a84db138996334d3fd842948dd165a554' \ + '2bf638fba95847568e45afc7b2cfdf6d1767b429' \ + '6f0275b9c1adcdef0c441408d8b5c4e4c82e1de4' \ + '9e116eabff29a0216bfc2c56817ba48d1f3182f6') + # TODO: add some sort init script +build() +{ + Fbuild + Fmkdir etc/rc.d + Ffile ntp.org.conf /etc + Fexe rc.ntpd /etc/rc.d +} # optimization OK diff --git a/source/network-extra/ntp/ntp.org.conf b/source/network-extra/ntp/ntp.org.conf new file mode 100644 index 0000000..bf54bc5 --- /dev/null +++ b/source/network-extra/ntp/ntp.org.conf @@ -0,0 +1,6 @@ +driftfile /var/lib/ntp.drift +pidfile /var/run/ntp.pid +logfile /var/log/ntp.log +server 0.pool.ntp.org +server 1.pool.ntp.org +server 2.pool.ntp.org diff --git a/source/network-extra/ntp/rc.ntpd b/source/network-extra/ntp/rc.ntpd new file mode 100644 index 0000000..ea82a93 --- /dev/null +++ b/source/network-extra/ntp/rc.ntpd @@ -0,0 +1,44 @@ +#!/bin/bash + +# (c) 2005 Marcus Habermehl +# (c) 2004 Peter BARABAS +# (c) 2007 CSÉCSY László +# rc.ntpd for Frugalware +# distributed under GPL License + +# chkconfig: 2345 32 56 +# description: Starts or stops NTP.org daemon + +source /lib/initscripts/functions +TEXTDOMAIN=ntpd +TEXTDOMAINDIR=/lib/initscripts/messages + +actions=(restart status start stop) +daemon=$"NTP.org daemon" + +pidfile=/var/run/ntp.pid + +rc_start() +{ + start_msg + if [ ! -e $pidfile ]; then + /usr/bin/ntpd -g -c /etc/ntp.org.conf + ok $? + else + ok 999 + fi +} + +rc_stop() +{ + stop_msg + if [ -e $pidfile ]; then + kill `cat $pidfile` + rm $pidfile + ok $? + else + ok 999 + fi +} + +rc_exec $1 diff --git a/source/network-extra/ntp/rc.ntpd.pot b/source/network-extra/ntp/rc.ntpd.pot new file mode 100644 index 0000000..7d9da8c --- /dev/null +++ b/source/network-extra/ntp/rc.ntpd.pot @@ -0,0 +1,20 @@ +# rc.ntpd. +# Copyright (C) YEAR THE rc.ntpd'S COPYRIGHT HOLDER +# This file is distributed under the same license as the rc.ntpd package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2005-12-05 20:49+0100\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: 8bit\n" + +msgid "NTP.org daemon" +msgstr "" From vmiklos at frugalware.org Mon Sep 10 13:17:11 2007 From: vmiklos at frugalware.org (VMiklos) Date: Mon Sep 10 13:17:13 2007 Subject: [Frugalware-git] frugalware-current: fop-0.20.5-2-i686 Message-ID: <20070910111711.A7EB213A42FB@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=2c2e56d23a927741dd4989d0adc5d84a797f87e1 commit 2c2e56d23a927741dd4989d0adc5d84a797f87e1 Author: VMiklos Date: Mon Sep 10 13:16:29 2007 +0200 fop-0.20.5-2-i686 up2date fix diff --git a/source/apps-extra/fop/FrugalBuild b/source/apps-extra/fop/FrugalBuild index 0100578..95cf837 100644 --- a/source/apps-extra/fop/FrugalBuild +++ b/source/apps-extra/fop/FrugalBuild @@ -9,7 +9,10 @@ url="http://xmlgraphics.apache.org/fop/" rodepends=('java-gcj-compat' 'xml-commons-external') groups=('apps-extra') archs=('i686' 'x86_64') -up2date="lynx -dump $url |grep Version|sed 's/.*n \(.*\)/\1/;q'" +# it may be weird to use 'previous', but in fact it seem to be still more +# stable then the newer 0.9x releases, which are marked as stable by upstream. +# use fop-devel if you need that branch +up2date="lynx -dump $url/compliance.html|grep '(previous)'|sed 's/.* \(.*\) (previous).*/\1/;q'" # TODO: build it from source source=(http://www.apache.org/dist/xmlgraphics/fop/fop-$pkgver-bin.tar.gz) signatures=($source.asc) From vmiklos at frugalware.org Mon Sep 10 13:18:29 2007 From: vmiklos at frugalware.org (VMiklos) Date: Mon Sep 10 13:18:30 2007 Subject: [Frugalware-git] pacman-tools: push(): don't run git fetch if push failed Message-ID: <20070910111829.5F42E13A42FB@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=pacman-tools.git;a=commitdiff;h=219d5f04453026e47eb10780ea2cc59f10539e42 commit 219d5f04453026e47eb10780ea2cc59f10539e42 Author: VMiklos Date: Mon Sep 10 13:18:09 2007 +0200 push(): don't run git fetch if push failed diff --git a/darcs-git.py b/darcs-git.py index 25f39fb..0a9b60b 100755 --- a/darcs-git.py +++ b/darcs-git.py @@ -554,9 +554,10 @@ Options: sys.exit(0) print "Invalid response, try again!" ret = os.system("git push %s" % options.gitopts) - os.system("git fetch") if ret: sys.exit(1) + else: + os.system("git fetch") def pull(argv): def usage(ret): From vmiklos at frugalware.org Mon Sep 10 13:37:39 2007 From: vmiklos at frugalware.org (VMiklos) Date: Mon Sep 10 13:37:41 2007 Subject: [Frugalware-git] pacman-tools: dg: new tag() function Message-ID: <20070910113739.78A5D13A42FB@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=pacman-tools.git;a=commitdiff;h=22cb4307de7c6299081d2517a78082dd1674b2b0 commit 22cb4307de7c6299081d2517a78082dd1674b2b0 Author: VMiklos Date: Mon Sep 10 13:35:23 2007 +0200 dg: new tag() function dg tag is no longer just a wrapper, but it creates a darcs-like empty commit so that you'll see it in the output of git log use git tag for advanced options (deleting tags, signed tags, etc) diff --git a/darcs-git.py b/darcs-git.py index 0a9b60b..779da32 100755 --- a/darcs-git.py +++ b/darcs-git.py @@ -622,6 +622,22 @@ Options: usage(0) return os.system("git clone %s" % " ".join(argv)) +def tag(argv): + def usage(ret): + print """Usage: darcs-git tag [OPTION]... [TAGNAME] +Tag the contents of the repository with a version name. +Use "darcs-git help tag" for more information. + +Options: + -h --help shows brief description of command and its arguments""" + sys.exit(ret) + if len(argv) and argv[0] in ("-h", "--help"): + usage(0) + ret = 0 + ret += os.system("echo 'TAG %s' |git update-ref HEAD `git commit-tree HEAD^{tree} -p HEAD`" % argv[0]) + ret += os.system("git tag %s" % argv[0]) + return ret + def rollback(argv): def usage(ret): print """Usage: darcs-git rollback [OPTION]... @@ -755,7 +771,7 @@ Copying changes between the working copy and the repository: N amend-record Replace a patch with a better version before it leaves your repository. N resolve Mark any conflicts to the working copy for manual resolution. Direct modification of the repository: - W tag Tag the contents of the repository with a version name. + Y tag Tag the contents of the repository with a version name. N setpref Set a value for a preference (test, predist, ...). A rollback Record an inverse patch without changing the working directory. Querying the repository: @@ -812,6 +828,8 @@ PURPOSE.""" % __version__ pull(argv[1:]) elif sys.argv[1] == "get": get(argv[1:]) + elif sys.argv[1] == "tag": + tag(argv[1:]) elif sys.argv[1][:4] == "roll": rollback(argv[1:]) elif sys.argv[1][:5] == "unrec": From vmiklos at frugalware.org Mon Sep 10 13:44:00 2007 From: vmiklos at frugalware.org (VMiklos) Date: Mon Sep 10 13:44:02 2007 Subject: [Frugalware-git] pacman-tools: use pager for dg chan -t, too Message-ID: <20070910114400.844FF13A42FB@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=pacman-tools.git;a=commitdiff;h=0a82d4997d1ada090d8f3a5fec537bc818810bdc commit 0a82d4997d1ada090d8f3a5fec537bc818810bdc Author: VMiklos Date: Mon Sep 10 13:42:01 2007 +0200 use pager for dg chan -t, too diff --git a/darcs-git.py b/darcs-git.py index 779da32..60277bb 100755 --- a/darcs-git.py +++ b/darcs-git.py @@ -504,7 +504,7 @@ Options: if options.help: usage(0) return os.system(" ".join(['git log -M', - options.last, options.logopts, options.files, options.tags, options.abbrev])) + options.last, options.logopts, options.files, options.tags, options.abbrev, "|less"])) def push(argv): def usage(ret): @@ -812,8 +812,6 @@ PURPOSE.""" % __version__ # this will exit if no root found if sys.argv[1] not in ["init", "get"]: get_root() - if sys.argv[1][:4] != "chan": - os.environ['GIT_PAGER'] = 'cat' if sys.argv[1][:3] == "rec": record(argv[1:]) elif sys.argv[1][:3] == "rev": From vmiklos at frugalware.org Mon Sep 10 13:55:27 2007 From: vmiklos at frugalware.org (VMiklos) Date: Mon Sep 10 13:55:28 2007 Subject: [Frugalware-git] pacman-tools: what(): detect copies, too Message-ID: <20070910115527.6852413A42FB@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=pacman-tools.git;a=commitdiff;h=ab5d8bda93a0101c08f6e25f5455e6d10b00351c commit ab5d8bda93a0101c08f6e25f5455e6d10b00351c Author: VMiklos Date: Mon Sep 10 13:53:15 2007 +0200 what(): detect copies, too diff --git a/darcs-git.py b/darcs-git.py index 60277bb..4c7efae 100755 --- a/darcs-git.py +++ b/darcs-git.py @@ -453,7 +453,7 @@ Options: options.files = " ".join(argv[optind:]) if options.help: usage(0) - ret = os.system("git diff HEAD -M --exit-code %s %s" % (options.summary, options.files)) + ret = os.system("git diff HEAD -M -C --find-copies-harder --exit-code %s %s" % (options.summary, options.files)) if not ret: print "No changes!" From priyank at frugalware.org Mon Sep 10 14:39:43 2007 From: priyank at frugalware.org (Priyank) Date: Mon Sep 10 14:39:46 2007 Subject: [Frugalware-git] gfpm: gfpm-interface: gfpm_trans_prepare(): check whether a transaction is an install/upgrade or remove transaction and depending on that, display the missing dependencies error. You cannot ask a user to *install* some packages to remove some :)) Message-ID: <20070910123943.CD80613A42FB@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gfpm.git;a=commitdiff;h=9debe79791b1d4a474530b74fa96c8c9ab336545 commit 9debe79791b1d4a474530b74fa96c8c9ab336545 Author: Priyank Date: Mon Sep 10 18:07:30 2007 +0530 gfpm-interface: gfpm_trans_prepare(): check whether a transaction is an install/upgrade or remove transaction and depending on that, display the missing dependencies error. You cannot ask a user to *install* some packages to remove some :)) diff --git a/src/gfpm-interface.c b/src/gfpm-interface.c index d8d5094..6b101e1 100644 --- a/src/gfpm-interface.c +++ b/src/gfpm-interface.c @@ -925,7 +925,11 @@ gfpm_trans_prepare (PM_LIST *list) g_string_free (depstring, FALSE); } pacman_list_free (list); - gfpm_plist_message (_("Missing dependencies"), _("Following dependencies were not met. Please install these packages first."), GTK_MESSAGE_WARNING, pkgs); + int t = pacman_trans_getinfo (PM_TRANS_TYPE); + if ((t == PM_TRANS_TYPE_ADD) || (t == PM_TRANS_TYPE_UPGRADE)) + gfpm_plist_message (_("Missing dependencies"), _("Following dependencies were not met. Please install these packages first."), GTK_MESSAGE_WARNING, pkgs); + else + gfpm_plist_message (_("Could not satisfy dependencies"), _("The packages you are trying to remove are required by the following packages:"), GTK_MESSAGE_WARNING, pkgs); break; case PM_ERR_CONFLICTING_DEPS: for (i=pacman_list_first(list);i;i=pacman_list_next(i)) From priyank at frugalware.org Mon Sep 10 15:05:06 2007 From: priyank at frugalware.org (Priyank) Date: Mon Sep 10 15:05:09 2007 Subject: [Frugalware-git] gfpm: gfpm-interface: gfpm_trans_prepare(): gfpm now displays a list of packages that depend on a package that a user is trying to remove. ie. If a user is trying to remove package A, and if package B and C depend on A, then gfpm will display a list of entries like: "A : is required by B" Message-ID: <20070910130506.4491E13A42FB@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gfpm.git;a=commitdiff;h=2ae7f8fe7999b7f83776b623a18a205cee65667e commit 2ae7f8fe7999b7f83776b623a18a205cee65667e Author: Priyank Date: Mon Sep 10 18:33:11 2007 +0530 gfpm-interface: gfpm_trans_prepare(): gfpm now displays a list of packages that depend on a package that a user is trying to remove. ie. If a user is trying to remove package A, and if package B and C depend on A, then gfpm will display a list of entries like: "A : is required by B" diff --git a/src/gfpm-interface.c b/src/gfpm-interface.c index 6b101e1..bfba843 100644 --- a/src/gfpm-interface.c +++ b/src/gfpm-interface.c @@ -896,6 +896,7 @@ gfpm_trans_prepare (PM_LIST *list) str = g_strdup_printf (_("Failed to prepare transaction (%s)\n"), pacman_strerror (pm_errno)); gfpm_error (_("Error"), str); g_free (str); + int t = pacman_trans_getinfo (PM_TRANS_TYPE); switch ((long)pm_errno) { case PM_ERR_UNSATISFIED_DEPS: @@ -903,29 +904,42 @@ gfpm_trans_prepare (PM_LIST *list) { GString *depstring = g_string_new (""); PM_DEPMISS *m = pacman_list_getdata (i); - depstring = g_string_append (depstring, (char*)pacman_dep_getinfo(m,PM_DEP_NAME)); - switch ((long)pacman_dep_getinfo(m, PM_DEP_MOD)) + gchar *val = NULL; + if (t == PM_TRANS_TYPE_REMOVE) { - gchar *val = NULL; - case PM_DEP_MOD_EQ: - val = g_strdup_printf ("=%s", (char*)pacman_dep_getinfo(m,PM_DEP_VERSION)); - depstring = g_string_append (depstring, val); - break; - case PM_DEP_MOD_GE: - val = g_strdup_printf (">=%s", (char*)pacman_dep_getinfo(m,PM_DEP_VERSION)); - depstring = g_string_append (depstring, val); - break; - case PM_DEP_MOD_LE: - val = g_strdup_printf ("<=%s", (char*)pacman_dep_getinfo(m,PM_DEP_VERSION)); - depstring = g_string_append (depstring, val); - break; - default: break; + g_print ("this is being executed\n"); + val = g_strdup_printf ("%s : %s %s", + (char*)pacman_dep_getinfo (m, PM_DEP_TARGET), + _("is required by"), + (char*)pacman_dep_getinfo (m, PM_DEP_NAME)); + depstring = g_string_append (depstring, val); + } + else + { + depstring = g_string_append (depstring, (char*)pacman_dep_getinfo(m,PM_DEP_NAME)); + switch ((long)pacman_dep_getinfo(m, PM_DEP_MOD)) + { + gchar *val = NULL; + case PM_DEP_MOD_EQ: + val = g_strdup_printf ("=%s", (char*)pacman_dep_getinfo(m,PM_DEP_VERSION)); + depstring = g_string_append (depstring, val); + break; + case PM_DEP_MOD_GE: + val = g_strdup_printf (">=%s", (char*)pacman_dep_getinfo(m,PM_DEP_VERSION)); + depstring = g_string_append (depstring, val); + break; + case PM_DEP_MOD_LE: + val = g_strdup_printf ("<=%s", (char*)pacman_dep_getinfo(m,PM_DEP_VERSION)); + depstring = g_string_append (depstring, val); + break; + default: break; + } } pkgs = g_list_append (pkgs, (char*)g_strdup(depstring->str)); + g_free (val); g_string_free (depstring, FALSE); } pacman_list_free (list); - int t = pacman_trans_getinfo (PM_TRANS_TYPE); if ((t == PM_TRANS_TYPE_ADD) || (t == PM_TRANS_TYPE_UPGRADE)) gfpm_plist_message (_("Missing dependencies"), _("Following dependencies were not met. Please install these packages first."), GTK_MESSAGE_WARNING, pkgs); else From priyank at frugalware.org Mon Sep 10 15:33:59 2007 From: priyank at frugalware.org (Priyank) Date: Mon Sep 10 15:34:02 2007 Subject: [Frugalware-git] gfpm: gfpm-interface: cb_gfpm_search_keypress(): do not display local versions newer than the sync ones as updatable. Message-ID: <20070910133359.26CFA13A42FB@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gfpm.git;a=commitdiff;h=d3680408f40dd8106d44287cfe04803ee630596a commit d3680408f40dd8106d44287cfe04803ee630596a Author: Priyank Date: Mon Sep 10 19:01:34 2007 +0530 gfpm-interface: cb_gfpm_search_keypress(): do not display local versions newer than the sync ones as updatable. diff --git a/src/gfpm-interface.c b/src/gfpm-interface.c index bfba843..bd80c5d 100644 --- a/src/gfpm-interface.c +++ b/src/gfpm-interface.c @@ -1218,14 +1218,14 @@ cb_gfpm_search_keypress (GtkWidget *widget, GdkEventKey *event, gpointer data) icon_no = gfpm_get_icon (ICON_NINSTALLED, 16); icon_up = gfpm_get_icon (ICON_NEEDUPDATE, 16); gfpm_update_status (_("Searching for packages ...")); + while (gtk_events_pending()) + gtk_main_iteration (); if (r == 0) { PM_PKG *pm_spkg; PM_PKG *pm_lpkg; gboolean up = FALSE; - while (gtk_events_pending()) - gtk_main_iteration (); for (i=l;i;i=pacman_list_next(i)) { pm_lpkg = pacman_db_readpkg (local_db, pacman_list_getdata(i)); @@ -1258,6 +1258,8 @@ cb_gfpm_search_keypress (GtkWidget *widget, GdkEventKey *event, gpointer data) pacman_pkg_free (pm_lpkg); pacman_pkg_free (pm_spkg); } + while (gtk_events_pending()) + gtk_main_iteration (); } else if (r == 1) @@ -1265,6 +1267,7 @@ cb_gfpm_search_keypress (GtkWidget *widget, GdkEventKey *event, gpointer data) PM_PKG *pm_lpkg; gboolean inst = FALSE; gboolean up = FALSE; + for (i=l;i;i=pacman_list_next(i)) { pm_pkg = pacman_db_readpkg (sync_db, pacman_list_getdata(i)); @@ -1276,9 +1279,17 @@ cb_gfpm_search_keypress (GtkWidget *widget, GdkEventKey *event, gpointer data) char *v2 = (char*)pacman_pkg_getinfo (pm_lpkg, PM_PKG_VERSION); if (v1!=NULL && v2!=NULL) { - if (!strcmp(v1,v2)) + gint ret = pacman_pkg_vercmp (v1, v2); + if (!ret) up = FALSE; - else up = TRUE; + else if (ret == -1) + up = FALSE; + else + up = TRUE; + } + else + { + up = FALSE; } } else From priyank at frugalware.org Mon Sep 10 15:45:09 2007 From: priyank at frugalware.org (Priyank) Date: Mon Sep 10 15:45:10 2007 Subject: [Frugalware-git] gfpm: gfpm-interface: cb_gfpm_refresh_button_clicked(): on sync, ask the user to update his pacman-g2 version only if a newer pacman-g2 is available and not when the local pacman-g2 is newer than the one in sync. Message-ID: <20070910134509.43C1213A42FB@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gfpm.git;a=commitdiff;h=2fd6116cd65745caf54ffbde0ce2aeb30a621bee commit 2fd6116cd65745caf54ffbde0ce2aeb30a621bee Author: Priyank Date: Mon Sep 10 19:12:36 2007 +0530 gfpm-interface: cb_gfpm_refresh_button_clicked(): on sync, ask the user to update his pacman-g2 version only if a newer pacman-g2 is available and not when the local pacman-g2 is newer than the one in sync. diff --git a/src/gfpm-interface.c b/src/gfpm-interface.c index bd80c5d..4375650 100644 --- a/src/gfpm-interface.c +++ b/src/gfpm-interface.c @@ -988,8 +988,9 @@ cb_gfpm_refresh_button_clicked (GtkButton *button, gpointer data) pm_spkg = pacman_db_readpkg (sync_db, "pacman-g2"); if (pm_lpkg && pm_spkg) { - if (strcmp((char*)pacman_pkg_getinfo(pm_lpkg, PM_PKG_VERSION), - (char*)pacman_pkg_getinfo(pm_spkg, PM_PKG_VERSION))) + char *v1 = (char*)pacman_pkg_getinfo (pm_spkg, PM_PKG_VERSION); + char *v2 = (char*)pacman_pkg_getinfo (pm_lpkg, PM_PKG_VERSION); + if (pacman_pkg_vercmp(v1,v2)==1) { if (gfpm_question (_("Update pacman-g2"), updatestr) == GTK_RESPONSE_YES) { From priyank at frugalware.org Mon Sep 10 16:02:36 2007 From: priyank at frugalware.org (Priyank) Date: Mon Sep 10 16:02:38 2007 Subject: [Frugalware-git] gfpm: gfpm: added new icon for indicating packages whose local versions are newer than sync. Message-ID: <20070910140236.1077413A42FB@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gfpm.git;a=commitdiff;h=46a7ed3d5b1fc491c957e67a38cd99c93f7d25f7 commit 46a7ed3d5b1fc491c957e67a38cd99c93f7d25f7 Author: Priyank Date: Mon Sep 10 19:30:17 2007 +0530 gfpm: added new icon for indicating packages whose local versions are newer than sync. diff --git a/data/icons/16x16/Makefile.am b/data/icons/16x16/Makefile.am index af35696..5c2c02f 100644 --- a/data/icons/16x16/Makefile.am +++ b/data/icons/16x16/Makefile.am @@ -3,6 +3,7 @@ icon_DATA = gfpm.png \ gfpm-installed.png \ gfpm-ninstalled.png \ gfpm-nupdate.png \ + gfpm-lnewer.png \ gfpm-search.png \ gfpm-apply.png \ gfpm-instfromfile.png diff --git a/data/icons/16x16/gfpm-lnewer.png b/data/icons/16x16/gfpm-lnewer.png new file mode 100644 index 0000000..de44bd5 Binary files /dev/null and b/data/icons/16x16/gfpm-lnewer.png differ diff --git a/data/icons/24x24/Makefile.am b/data/icons/24x24/Makefile.am index f434cae..9e549a3 100644 --- a/data/icons/24x24/Makefile.am +++ b/data/icons/24x24/Makefile.am @@ -3,6 +3,7 @@ icon_DATA = gfpm.png \ gfpm-installed.png \ gfpm-ninstalled.png \ gfpm-nupdate.png \ + gfpm-lnewer.png \ gfpm-search.png \ gfpm-apply.png \ gfpm-instfromfile.png diff --git a/data/icons/24x24/gfpm-lnewer.png b/data/icons/24x24/gfpm-lnewer.png new file mode 100644 index 0000000..4030c80 Binary files /dev/null and b/data/icons/24x24/gfpm-lnewer.png differ diff --git a/data/icons/32x32/Makefile.am b/data/icons/32x32/Makefile.am index bb4afa0..6d967c8 100644 --- a/data/icons/32x32/Makefile.am +++ b/data/icons/32x32/Makefile.am @@ -3,6 +3,7 @@ icon_DATA = gfpm.png \ gfpm-installed.png \ gfpm-ninstalled.png \ gfpm-nupdate.png \ + gfpm-lnewer.png \ gfpm-search.png \ gfpm-apply.png \ gfpm-instfromfile.png diff --git a/data/icons/32x32/gfpm-lnewer.png b/data/icons/32x32/gfpm-lnewer.png new file mode 100644 index 0000000..3f83cc6 Binary files /dev/null and b/data/icons/32x32/gfpm-lnewer.png differ From priyank at frugalware.org Mon Sep 10 16:04:15 2007 From: priyank at frugalware.org (Priyank) Date: Mon Sep 10 16:04:19 2007 Subject: [Frugalware-git] gfpm: gfpm-interface: display locally newer packages with a different icon Message-ID: <20070910140415.52A4A13A42FB@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gfpm.git;a=commitdiff;h=ef205b6c757108981105428bc55e757daff3071c commit ef205b6c757108981105428bc55e757daff3071c Author: Priyank Date: Mon Sep 10 19:31:50 2007 +0530 gfpm-interface: display locally newer packages with a different icon diff --git a/src/gfpm-interface.c b/src/gfpm-interface.c index 4375650..28928f6 100644 --- a/src/gfpm-interface.c +++ b/src/gfpm-interface.c @@ -32,6 +32,7 @@ #define ICON_INSTALLED "gfpm-installed" #define ICON_NINSTALLED "gfpm-ninstalled" #define ICON_NEEDUPDATE "gfpm-nupdate" +#define ICON_LOCALNEWER "gfpm-lnewer" #include "gfpm.h" #include "gfpm-interface.h" @@ -488,6 +489,7 @@ gfpm_load_pkgs_tvw (const char *group_name) GdkPixbuf *icon_yes = NULL; GdkPixbuf *icon_no = NULL; GdkPixbuf *icon_up = NULL; + GdkPixbuf *icon_ln = NULL; gboolean check = FALSE; gint r = 0; @@ -507,10 +509,12 @@ gfpm_load_pkgs_tvw (const char *group_name) icon_yes = gfpm_get_icon (ICON_INSTALLED, 16); icon_no = gfpm_get_icon (ICON_NINSTALLED, 16); icon_up = gfpm_get_icon (ICON_NEEDUPDATE, 16); + icon_ln = gfpm_get_icon (ICON_LOCALNEWER, 16); // display status for (i=l;i;i=pacman_list_next(i)) { gboolean up = FALSE; + gboolean ln = FALSE; gtk_list_store_append (GTK_LIST_STORE(model), &iter); if (r == 1) { @@ -522,16 +526,28 @@ gfpm_load_pkgs_tvw (const char *group_name) { check = TRUE; /* check if package needs updating */ - if (!strcmp((char*)pacman_pkg_getinfo(pm_pkg,PM_PKG_VERSION), - (char*)pacman_pkg_getinfo(pm_lpkg,PM_PKG_VERSION))) + gint ret; + char *v1 = (char*)pacman_pkg_getinfo (pm_pkg, PM_PKG_VERSION); + char *v2 = (char*)pacman_pkg_getinfo (pm_lpkg, PM_PKG_VERSION); + ret = pacman_pkg_vercmp (v1, v2); + if (!ret) + { + up = FALSE; + } + else if (ret == -1) + { up = FALSE; + ln = TRUE; + } else + { up = TRUE; + } } gtk_list_store_set (GTK_LIST_STORE(model), &iter, 0, check, - 1, (up==TRUE)?icon_up:(check==TRUE)?icon_yes:icon_no, + 1, (up==TRUE)?icon_up:(ln==TRUE)?icon_ln:(check==TRUE)?icon_yes:icon_no, 2, g_strstrip((char*)pacman_list_getdata (i)), 3, (check==TRUE)?(char*)pacman_pkg_getinfo (pm_lpkg, PM_PKG_VERSION) : NULL, 4, (char*)pacman_pkg_getinfo (pm_pkg, PM_PKG_VERSION), @@ -541,6 +557,7 @@ gfpm_load_pkgs_tvw (const char *group_name) else if (r == 0) { gboolean up = FALSE; + gboolean ln = FALSE; pm_pkg = pacman_db_readpkg (sync_db, pacman_list_getdata(i)); pm_lpkg = pacman_db_readpkg (local_db, pacman_list_getdata(i)); char *v1 = (char*)pacman_pkg_getinfo (pm_pkg, PM_PKG_VERSION); @@ -548,12 +565,17 @@ gfpm_load_pkgs_tvw (const char *group_name) if (v1!=NULL && v2!=NULL) { gint ret = pacman_pkg_vercmp (v1, v2); - if (!ret) - up = FALSE; - else if (ret == -1) - up = TRUE; - else - up = FALSE; + if (!ret) + up = FALSE; + else if (ret == -1) + { + up = FALSE; + ln = TRUE; + } + else + { + up = TRUE; + } } else { @@ -579,6 +601,7 @@ gfpm_load_pkgs_tvw (const char *group_name) g_object_unref (icon_yes); g_object_unref (icon_no); g_object_unref (icon_up); + g_object_unref (icon_ln); return; } From priyank at frugalware.org Mon Sep 10 16:09:38 2007 From: priyank at frugalware.org (Priyank) Date: Mon Sep 10 16:09:40 2007 Subject: [Frugalware-git] gfpm: gfpm-interface: removed a debug string Message-ID: <20070910140938.6072013A42FB@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gfpm.git;a=commitdiff;h=2fecc3da48135abe64d39d3409af6ba56b9e2433 commit 2fecc3da48135abe64d39d3409af6ba56b9e2433 Author: Priyank Date: Mon Sep 10 19:37:06 2007 +0530 gfpm-interface: removed a debug string diff --git a/src/gfpm-interface.c b/src/gfpm-interface.c index 28928f6..313451f 100644 --- a/src/gfpm-interface.c +++ b/src/gfpm-interface.c @@ -930,7 +930,6 @@ gfpm_trans_prepare (PM_LIST *list) gchar *val = NULL; if (t == PM_TRANS_TYPE_REMOVE) { - g_print ("this is being executed\n"); val = g_strdup_printf ("%s : %s %s", (char*)pacman_dep_getinfo (m, PM_DEP_TARGET), _("is required by"), From priyank at frugalware.org Mon Sep 10 17:01:13 2007 From: priyank at frugalware.org (Priyank) Date: Mon Sep 10 17:01:17 2007 Subject: [Frugalware-git] gfpm: gfpm-interface: fixes in cb_gfpm_search_keypress() Message-ID: <20070910150113.4A49813A42FB@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gfpm.git;a=commitdiff;h=cb3d81000725952be31319363a0b72526ea737f5 commit cb3d81000725952be31319363a0b72526ea737f5 Author: Priyank Date: Mon Sep 10 19:59:33 2007 +0530 gfpm-interface: fixes in cb_gfpm_search_keypress() * after a search operation, display packages with local version newer with different icon than the others. * other minor fixes that i don't remember.. diff --git a/src/gfpm-interface.c b/src/gfpm-interface.c index 313451f..ed7ced8 100644 --- a/src/gfpm-interface.c +++ b/src/gfpm-interface.c @@ -1021,6 +1021,8 @@ cb_gfpm_refresh_button_clicked (GtkButton *button, gpointer data) goto cleanup; } } + g_free (v1); + g_free (v2); } if (pacman_trans_init(PM_TRANS_TYPE_SYNC, 0, gfpm_progress_event, cb_gfpm_trans_conv, gfpm_progress_install) == -1) { @@ -1203,6 +1205,7 @@ cb_gfpm_search_keypress (GtkWidget *widget, GdkEventKey *event, gpointer data) GdkPixbuf *icon_yes; GdkPixbuf *icon_no; GdkPixbuf *icon_up; + GdkPixbuf *icon_ln; GtkTreeModel *model; GtkTreeIter iter; PM_PKG *pm_pkg; @@ -1240,6 +1243,7 @@ cb_gfpm_search_keypress (GtkWidget *widget, GdkEventKey *event, gpointer data) icon_yes = gfpm_get_icon (ICON_INSTALLED, 16); icon_no = gfpm_get_icon (ICON_NINSTALLED, 16); icon_up = gfpm_get_icon (ICON_NEEDUPDATE, 16); + icon_ln = gfpm_get_icon (ICON_LOCALNEWER, 16); gfpm_update_status (_("Searching for packages ...")); while (gtk_events_pending()) gtk_main_iteration (); @@ -1280,6 +1284,8 @@ cb_gfpm_search_keypress (GtkWidget *widget, GdkEventKey *event, gpointer data) -1); pacman_pkg_free (pm_lpkg); pacman_pkg_free (pm_spkg); + g_free (v1); + g_free (v2); } while (gtk_events_pending()) gtk_main_iteration (); @@ -1290,6 +1296,7 @@ cb_gfpm_search_keypress (GtkWidget *widget, GdkEventKey *event, gpointer data) PM_PKG *pm_lpkg; gboolean inst = FALSE; gboolean up = FALSE; + gboolean ln = FALSE; for (i=l;i;i=pacman_list_next(i)) { @@ -1304,11 +1311,18 @@ cb_gfpm_search_keypress (GtkWidget *widget, GdkEventKey *event, gpointer data) { gint ret = pacman_pkg_vercmp (v1, v2); if (!ret) + { up = FALSE; + } else if (ret == -1) + { up = FALSE; + ln = TRUE; + } else + { up = TRUE; + } } else { @@ -1325,7 +1339,7 @@ cb_gfpm_search_keypress (GtkWidget *widget, GdkEventKey *event, gpointer data) gtk_list_store_set (store, &iter, 0, inst, - 1, (inst==TRUE)?(up==TRUE)?icon_up:icon_yes:icon_no, + 1, (inst==TRUE)?(ln==TRUE)?icon_ln:(up==TRUE)?icon_up:icon_yes:icon_no, 2, (char*)pacman_pkg_getinfo (pm_pkg, PM_PKG_NAME), 4, (char*)pacman_pkg_getinfo (pm_pkg, PM_PKG_VERSION), //5, (char*)pacman_pkg_getinfo (pm_pkg, PM_PKG_DESC), @@ -1340,6 +1354,8 @@ cb_gfpm_search_keypress (GtkWidget *widget, GdkEventKey *event, gpointer data) g_object_unref (icon_yes); g_object_unref (icon_no); g_object_unref (icon_up); + g_object_unref (icon_ln); + return; } From priyank at frugalware.org Mon Sep 10 17:01:13 2007 From: priyank at frugalware.org (Priyank) Date: Mon Sep 10 17:01:18 2007 Subject: [Frugalware-git] pacman-g2: libpacman: spell fixes in function descriptions. Message-ID: <20070910150113.584B613A42FC@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=pacman-g2.git;a=commitdiff;h=7095fc67ed7dfdbe8d7189f53a4b9a22c6f06d58 commit 7095fc67ed7dfdbe8d7189f53a4b9a22c6f06d58 Author: Priyank Date: Mon Sep 10 20:04:12 2007 +0530 libpacman: spell fixes in function descriptions. diff --git a/lib/libpacman/pacman.c b/lib/libpacman/pacman.c index 0590862..79f4370 100644 --- a/lib/libpacman/pacman.c +++ b/lib/libpacman/pacman.c @@ -220,7 +220,7 @@ int pacman_db_unregister(pmdb_t *db) return(0); } -/** Get informations about a database. +/** Get information about a database. * @param db database pointer * @param parm name of the info to get * @return a void* on success (the value), NULL on error @@ -457,7 +457,7 @@ pmlist_t *pacman_db_getgrpcache(pmdb_t *db) * @{ */ -/** Get informations about a package. +/** Get information about a package. * @param pkg package pointer * @param parm name of the info to get * @return a void* on success (the value), NULL on error @@ -628,11 +628,11 @@ int pacman_pkg_vercmp(const char *ver1, const char *ver2) /** @} */ /** @defgroup pacman_groups Group Functions - * @brief Functions to get informations about libpacman groups + * @brief Functions to get information about libpacman groups * @{ */ -/** Get informations about a group. +/** Get information about a group. * @param grp group pointer * @param parm name of the info to get * @return a void* on success (the value), NULL on error @@ -657,11 +657,11 @@ void *pacman_grp_getinfo(pmgrp_t *grp, unsigned char parm) /** @} */ /** @defgroup pacman_sync Sync Functions - * @brief Functions to get informations about libpacman syncs + * @brief Functions to get information about libpacman syncs * @{ */ -/** Get informations about a sync. +/** Get information about a sync. * @param sync pointer * @param parm name of the info to get * @return a void* on success (the value), NULL on error @@ -734,7 +734,7 @@ pmlist_t *pacman_db_search(pmdb_t *db) * @{ */ -/** Get informations about the transaction. +/** Get information about the transaction. * @param parm name of the info to get * @return a void* on success (the value), NULL on error */ @@ -909,11 +909,11 @@ int pacman_trans_release() /** @} */ /** @defgroup pacman_dep Dependency Functions - * @brief Functions to get informations about a libpacman dependency + * @brief Functions to get information about a libpacman dependency * @{ */ -/** Get informations about a dependency. +/** Get information about a dependency. * @param miss dependency pointer * @param parm name of the info to get * @return a void* on success (the value), NULL on error @@ -941,11 +941,11 @@ void *pacman_dep_getinfo(pmdepmissing_t *miss, unsigned char parm) /** @} */ /** @defgroup pacman_conflict File Conflicts Functions - * @brief Functions to get informations about a libpacman file conflict + * @brief Functions to get information about a libpacman file conflict * @{ */ -/** Get informations about a file conflict. +/** Get information about a file conflict. * @param conflict database conflict structure * @param parm name of the info to get * @return a void* on success (the value), NULL on error From crazy at frugalware.org Mon Sep 10 19:14:15 2007 From: crazy at frugalware.org (crazy) Date: Mon Sep 10 19:14:19 2007 Subject: [Frugalware-git] frugalware-current: bmpx-0.40.3-1-i686 Message-ID: <20070910171415.1844C13A42FB@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=59bfe6c73953c09b0ec7d4a86e50367d65797e7f commit 59bfe6c73953c09b0ec7d4a86e50367d65797e7f Author: crazy Date: Mon Sep 10 19:09:04 2007 +0200 bmpx-0.40.3-1-i686 * Version bump * added some patches to fix linking problems and other * broken things ( see comment in FB ) diff --git a/source/xmultimedia-extra/bmpx/00-revert-liking-workarounds.patch b/source/xmultimedia-extra/bmpx/00-revert-liking-workarounds.patch new file mode 100644 index 0000000..ce7242a --- /dev/null +++ b/source/xmultimedia-extra/bmpx/00-revert-liking-workarounds.patch @@ -0,0 +1,39 @@ +diff -Naur bmpx-0.40.3/src/mb-tagger.hh bmpx-0.40.3-p/src/mb-tagger.hh +--- bmpx-0.40.3/src/mb-tagger.hh 2007-09-08 09:38:35.000000000 +0200 ++++ bmpx-0.40.3-p/src/mb-tagger.hh 2007-09-10 11:10:27.000000000 +0200 +@@ -48,7 +48,6 @@ + #include "library.hh" + #include "musicbrainz/mbxml-v2.hh" + #include "bmp/ui-types.hh" +-#include "lastfm-types.hh" + + using namespace Glib; + +diff -Naur bmpx-0.40.3/src/shell.cc bmpx-0.40.3-p/src/shell.cc +--- bmpx-0.40.3/src/shell.cc 2007-09-08 09:38:35.000000000 +0200 ++++ bmpx-0.40.3-p/src/shell.cc 2007-09-10 11:09:47.000000000 +0200 +@@ -152,10 +152,6 @@ + #define PLAYER_SHELL_ACTION_BOOKMARKS "player-shell-action-bookmarks" + #define PLAYER_SHELL_ACTION_CREATE_BOOKMARK "player-shell-action-create-bookmark" + +-namespace +-{ +- const Bmp::DB::Variant dummy = double (2); +-} + + namespace Bmp + { +diff -Naur bmpx-0.40.3/src/ui-part-jamendo.cc bmpx-0.40.3-p/src/ui-part-jamendo.cc +--- bmpx-0.40.3/src/ui-part-jamendo.cc 2007-09-08 09:38:35.000000000 +0200 ++++ bmpx-0.40.3-p/src/ui-part-jamendo.cc 2007-09-10 11:10:49.000000000 +0200 +@@ -48,10 +48,6 @@ + #define JAMENDO_ACTION_UI_PART_JAMENDO "jamendo-action-ui-part-jamendo" + #define JAMENDO_ACTION_UPDATE_DB "jamendo-action-update-db" + +-namespace +-{ +- const Bmp::DB::Variant dummy = double (2); +-} + + namespace Bmp + { diff --git a/source/xmultimedia-extra/bmpx/01-fw_builduser.patch b/source/xmultimedia-extra/bmpx/01-fw_builduser.patch new file mode 100644 index 0000000..c3ae454 --- /dev/null +++ b/source/xmultimedia-extra/bmpx/01-fw_builduser.patch @@ -0,0 +1,45 @@ +Index: build.h.in +=================================================================== +--- build.h.in (Revision 11299) ++++ build.h.in (Arbeitskopie) +@@ -2,7 +2,7 @@ + #define _BUILD_H + + #define BUILD_DATE "@BUILD_DATE@" +-#define BUILD_BUILDUSER "@BUILD_USER@" ++#define BUILD_BUILDUSER "Frugalware Linux" + #define BUILD_ARCH "@BUILD_ARCH@" + + #endif /* _BUILD_H */ +Index: src/preferences.cc +=================================================================== +--- src/preferences.cc (Revision 11299) ++++ src/preferences.cc (Arbeitskopie) +@@ -43,7 +43,6 @@ + #ifdef HAVE_ALSA + # define ALSA_PCM_NEW_HW_PARAMS_API + # define ALSA_PCM_NEW_SW_PARAMS_API +- + # include + # include + # include +@@ -109,7 +108,7 @@ + return (gbyte_f % (size / 1024.)).str(); + else + return (mbyte_f % size).str(); +- */ ++ */ + } + + struct AudioSystem +@@ -604,8 +603,8 @@ + m_state_err = Gdk::Pixbuf::create_from_file( build_filename( BMP_IMAGE_DIR_STOCK, "silk-exclamation.png") ); + + /* version string */ +- static boost::format version_f ("BMPx %s:%s-R%s (%s / %s)"); +- std::string version = (version_f % PACKAGE_VERSION % RV_LAST_CHANGED_DATE % RV_REVISION % BUILD_DATE % BUILD_BUILDUSER).str (); ++ static boost::format version_f ("BMPx %s Rev: %s ( %s )"); ++ std::string version = (version_f % PACKAGE_VERSION % RV_REVISION % BUILD_BUILDUSER).str (); + dynamic_cast (m_ref_xml->get_widget ("l_version"))->set_markup (version); + + m_ref_xml->get_widget ("cbox_audio_system", m_cbox_audio_system); diff --git a/source/xmultimedia-extra/bmpx/02-configure.patch b/source/xmultimedia-extra/bmpx/02-configure.patch new file mode 100644 index 0000000..ee61836 --- /dev/null +++ b/source/xmultimedia-extra/bmpx/02-configure.patch @@ -0,0 +1,12 @@ +Index: configure.ac +=================================================================== +--- configure.ac (Revision 11299) ++++ configure.ac (Arbeitskopie) +@@ -835,6 +835,7 @@ + echo + echo " C compiler flags.............: $CFLAGS" + echo " C++ compiler flags...........: $CXXFLAGS" ++echo " Linker flags.................: $LDFLAGS" + echo + echo " Documentation generation.....: $generate_documentation" + echo diff --git a/source/xmultimedia-extra/bmpx/03-no-ggdb3-when-debug-is-off.patch b/source/xmultimedia-extra/bmpx/03-no-ggdb3-when-debug-is-off.patch new file mode 100644 index 0000000..f3ffed3 --- /dev/null +++ b/source/xmultimedia-extra/bmpx/03-no-ggdb3-when-debug-is-off.patch @@ -0,0 +1,49 @@ +Index: jnetlib/Makefile.am +=================================================================== +--- jnetlib/Makefile.am (Revision 11299) ++++ jnetlib/Makefile.am (Arbeitskopie) +@@ -1,7 +1,9 @@ ++AUTOMAKE_OPTIONS = foreign ++ + noinst_LTLIBRARIES = libjnetlib.la + + libjnetlib_la_LDFLAGS = -pthread $(GLIB_LIBS) $(GLIBMM_LIBS) $(SIGC_LIBS) $(GTK_LIBS) +-libjnetlib_la_CXXFLAGS = -ggdb3 -s -O2 -Wall -DTHREAD_SAFE -D_THREAD_SAFE -D_REENTRANT $(GLIB_CFLAGS) $(SIGC_CFLAGS) $(GLIBMM_CFLAGS) $(GTK_CFLAGS) ++libjnetlib_la_CXXFLAGS = -DTHREAD_SAFE -D_THREAD_SAFE -D_REENTRANT $(GLIB_CFLAGS) $(SIGC_CFLAGS) $(GLIBMM_CFLAGS) $(GTK_CFLAGS) + + libjnetlib_la_SOURCES = \ + asyncdns.cpp \ +Index: src/parser/Makefile.am +=================================================================== +--- src/parser/Makefile.am (Revision 11299) ++++ src/parser/Makefile.am (Arbeitskopie) +@@ -1,3 +1,5 @@ ++AUTOMAKE_OPTIONS = foreign ++ + noinst_LTLIBRARIES = libbmpparser.la + + libbmpparser_la_CXXFLAGS = \ +@@ -3,5 +5,5 @@ + $(BOOST_FILESYSTEM_CFLAGS) $(GLIBMM_CFLAGS) $(XML_CFLAGS) -I$(top_srcdir) -I$(top_srcdir)/include -I$(top_srcdir)/src + +-libbmpparser_la_LDFLAGS = -ggdb3 $(BOOST_FILESYSTEM_LIBS) ++libbmpparser_la_LDFLAGS = $(BOOST_FILESYSTEM_LIBS) + + libbmpparser_la_SOURCES = \ +Index: src/musicbrainz/Makefile.am +=================================================================== +--- src/musicbrainz/Makefile.am (Revision 11299) ++++ src/musicbrainz/Makefile.am (Arbeitskopie) +@@ -1,3 +1,5 @@ ++AUTOMAKE_OPTIONS = foreign ++ + noinst_LTLIBRARIES = libbmpmusicbrainz.la + + libbmpmusicbrainz_la_CXXFLAGS = \ +@@ -3,5 +5,5 @@ + $(SOUP_CFLAGS) $(BOOST_FILESYSTEM_CFLAGS) $(GLIBMM_CFLAGS) $(XML_CFLAGS) -I$(top_srcdir) -I$(top_srcdir)/include -I$(top_srcdir)/src + +-libbmpmusicbrainz_la_LDFLAGS = -ggdb3 $(BOOST_FILESYSTEM_LIBS) $(SOUP_LIBS) ++libbmpmusicbrainz_la_LDFLAGS = $(BOOST_FILESYSTEM_LIBS) $(SOUP_LIBS) + + libbmpmusicbrainz_la_SOURCES = \ diff --git a/source/xmultimedia-extra/bmpx/FrugalBuild b/source/xmultimedia-extra/bmpx/FrugalBuild index c787673..dc2cca9 100644 --- a/source/xmultimedia-extra/bmpx/FrugalBuild +++ b/source/xmultimedia-extra/bmpx/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: crazy pkgname=bmpx -pkgver=0.40.1 +pkgver=0.40.3 basever=0.40 pkgrel=1 pkgdesc="A media player that features support for specifications like XDS DnD, XSPF and DBus." @@ -21,9 +21,16 @@ options=('scriptlet') groups=('xmultimedia-extra') archs=('i686' 'x86_64') up2date="lynx -dump 'http://bmpx.beep-media-player.org/site/Downloads#BMP_Source_Download'|grep -m1 '.tar.bz2'|sed 's/.*-\(.*\).t.*/\1/'" -source=(http://files.beep-media-player.org/releases/$basever/$pkgname-$pkgver.tar.bz2 fw.patch) -sha1sums=('c2d69fd8909d1d7a69ff13eee149084da9b802f0' \ - 'aab55940e8776ece490f3d1bc183dbed860ff246') +source=(http://files.beep-media-player.org/releases/$basever/$pkgname-$pkgver.tar.bz2 \ + 00-revert-liking-workarounds.patch \ + 01-fw_builduser.patch \ + 02-configure.patch \ + 03-no-ggdb3-when-debug-is-off.patch) +sha1sums=('9ae2e9342bbde9c10449fb12306efd7156054139' \ + 'c0ecd2b222ec79e73c1e0981e54cfe0d42a07619' \ + 'a8aabe4db10959e488ffdc38881c88a7cd72855e' \ + '36a4a69332e0488b4c3b225859f062a70c93f980' \ + '1ae574ae83b692518ebbcf2251b96b5d33d966e5') subpkgs=("$pkgname-lastfm-firefox-plugin") subdescs=("Firefox LastFM plugin for $pkgname") @@ -33,7 +40,21 @@ subarchs=('i686 x86_64') build() { - Fbuild \ + Fcd + Fpatchall + Fautoreconf + unset MAKEFLAGS + # do _not_ remove that or it won't build + export CFLAGS="$(echo $CFLAGS|sed 's/-O2/-Os/')" + export CXXFLAGS="$(echo $CXXFLAGS|sed 's/-O2/-Os/')" + # this is because LD >=2.17 changed 'symbols in discarded sections' + # to a 'error' from a 'warning' and now some C++ apps may break , + # this is one of them =) + # TODO: - work it out with nullptr for BMPx ( add some --enable-ld-workaround option to configure ? ) + # - revert that changes in LD and let it be a 'warning' again for FW ? .. looks like the ld folks want to so + # - http://sourceware.org/ml/binutils/2007-09/msg00096.html + export LDFLAGS="$LDFLAGS -Wl,--noinhibit-exec" + Fconf \ --enable-hal \ --enable-sid \ --enable-modplug \ @@ -44,6 +65,8 @@ build() --with-boost-iostreams="boost_iostreams-gcc42-mt" \ --with-tr1 ##--enable-debug# + make || Fdie + Fmakeinstall ## broken symlink Frm /usr/bin/bmp2 Fln /usr/bin/beep-media-player-2 /usr/bin/bmp2 diff --git a/source/xmultimedia-extra/bmpx/fw.patch b/source/xmultimedia-extra/bmpx/fw.patch deleted file mode 100644 index 99d91bd..0000000 --- a/source/xmultimedia-extra/bmpx/fw.patch +++ /dev/null @@ -1,29 +0,0 @@ -diff -Naur bmpx-0.40.1/build.h bmpx-0.40.1-p/build.h ---- bmpx-0.40.1/build.h 2007-08-11 21:02:05.000000000 +0200 -+++ bmpx-0.40.1-p/build.h 2007-08-30 01:27:00.000000000 +0200 -@@ -1,8 +1,8 @@ - #ifndef _BUILD_H - #define _BUILD_H - --#define BUILD_DATE "Sat Aug 11 21:02:05 CEST 2007" --#define BUILD_BUILDUSER "mderezynski@milosz-laptop" --#define BUILD_ARCH "Linux 2.6.20-16-generic i686" -+#define BUILD_DATE "" -+#define BUILD_BUILDUSER "Frugalware Linux" -+#define BUILD_ARCH "" - - #endif /* _BUILD_H */ -diff -Naur bmpx-0.40.1/src/preferences.cc bmpx-0.40.1-p/src/preferences.cc ---- bmpx-0.40.1/src/preferences.cc 2007-08-11 20:41:51.000000000 +0200 -+++ bmpx-0.40.1-p/src/preferences.cc 2007-08-30 01:26:15.000000000 +0200 -@@ -604,8 +604,8 @@ - m_state_err = Gdk::Pixbuf::create_from_file( build_filename( BMP_IMAGE_DIR_STOCK, "silk-exclamation.png") ); - - /* version string */ -- static boost::format version_f ("BMPx %s:%s-R%s (%s / %s)"); -- std::string version = (version_f % PACKAGE_VERSION % RV_LAST_CHANGED_DATE % RV_REVISION % BUILD_DATE % BUILD_BUILDUSER).str (); -+ static boost::format version_f ("BMPx %s:%s-R%s ( %s )"); -+ std::string version = (version_f % PACKAGE_VERSION % RV_LAST_CHANGED_DATE % RV_REVISION % BUILD_BUILDUSER).str (); - dynamic_cast (m_ref_xml->get_widget ("l_version"))->set_markup (version); - - m_ref_xml->get_widget ("cbox_audio_system", m_cbox_audio_system); From crazy at frugalware.org Mon Sep 10 19:25:05 2007 From: crazy at frugalware.org (crazy) Date: Mon Sep 10 19:25:07 2007 Subject: [Frugalware-git] frugalware-current: Revert "perl-compress-zlib-2.006-1-i686" Message-ID: <20070910172505.14A4C13A42FB@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=9d7e484aa582ff3d442fcdc3ca912bfa30cc59f9 commit 9d7e484aa582ff3d442fcdc3ca912bfa30cc59f9 Author: crazy Date: Mon Sep 10 19:21:25 2007 +0200 Revert "perl-compress-zlib-2.006-1-i686" * This reverts commit 62bb712378c6cffd88d68ee0e9c30347f5fa955a. * reverting it for now , need be bumped with the other *compress-* perl foo's diff --git a/source/devel/perl-compress-zlib/FrugalBuild b/source/devel/perl-compress-zlib/FrugalBuild index acf2adb..e8bbf76 100644 --- a/source/devel/perl-compress-zlib/FrugalBuild +++ b/source/devel/perl-compress-zlib/FrugalBuild @@ -4,7 +4,7 @@ pkgname=perl-compress-zlib _F_perl_name=Compress-Zlib _F_perl_author=P/PM/PMQS -pkgver=2.006 +pkgver=2.005 pkgrel=1 pkgdesc="Interface to zlib compression library" depends=('perl' 'perl-io-compress-zlib>=2.005') @@ -12,5 +12,5 @@ Finclude perl groups=('devel') archs=('i686' 'x86_64') -sha1sums=('c7caeb531ca38ad36051c1f3e15ec050dcb0f267') +sha1sums=('ba01e0dcb5848d3eac794930d1b72ec6d480f8e4') # optimization OK From crazy at frugalware.org Mon Sep 10 19:28:26 2007 From: crazy at frugalware.org (crazy) Date: Mon Sep 10 19:28:29 2007 Subject: [Frugalware-git] frugalware-current: perl-compress-zlib-2.005-2-i686 Message-ID: <20070910172826.72BED13A42FB@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=bb8af8f84d44cc2813b916a2db5d2f491a76fc73 commit bb8af8f84d44cc2813b916a2db5d2f491a76fc73 Author: crazy Date: Mon Sep 10 19:24:47 2007 +0200 perl-compress-zlib-2.005-2-i686 * bump rel to 2 so we don't have corrupted packages * changed m8r to krix , he maintains all the other *compress-* perl packages diff --git a/source/devel/perl-compress-zlib/FrugalBuild b/source/devel/perl-compress-zlib/FrugalBuild index e8bbf76..2758643 100644 --- a/source/devel/perl-compress-zlib/FrugalBuild +++ b/source/devel/perl-compress-zlib/FrugalBuild @@ -1,11 +1,11 @@ # Compiling Time: 0.1 SBU -# Maintainer: Zsolt Szalai +# Maintainer: Christian Hamar alias krix pkgname=perl-compress-zlib _F_perl_name=Compress-Zlib _F_perl_author=P/PM/PMQS pkgver=2.005 -pkgrel=1 +pkgrel=2 pkgdesc="Interface to zlib compression library" depends=('perl' 'perl-io-compress-zlib>=2.005') Finclude perl From crazy at frugalware.org Mon Sep 10 19:34:30 2007 From: crazy at frugalware.org (crazy) Date: Mon Sep 10 19:34:34 2007 Subject: [Frugalware-git] frugalware-current: perl-compress-zlib-2.005-2-i686 Message-ID: <20070910173430.E139813A42FB@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=3c1634fd4250e5220ef77ce7b97978855d2ab427 commit 3c1634fd4250e5220ef77ce7b97978855d2ab427 Author: crazy Date: Mon Sep 10 19:30:36 2007 +0200 perl-compress-zlib-2.005-2-i686 * sometimes we should remove pkgrel from perl.sh .. brr diff --git a/source/devel/perl-compress-zlib/FrugalBuild b/source/devel/perl-compress-zlib/FrugalBuild index 2758643..458e02c 100644 --- a/source/devel/perl-compress-zlib/FrugalBuild +++ b/source/devel/perl-compress-zlib/FrugalBuild @@ -5,10 +5,10 @@ pkgname=perl-compress-zlib _F_perl_name=Compress-Zlib _F_perl_author=P/PM/PMQS pkgver=2.005 -pkgrel=2 pkgdesc="Interface to zlib compression library" depends=('perl' 'perl-io-compress-zlib>=2.005') Finclude perl +pkgrel=2 groups=('devel') archs=('i686' 'x86_64') From voroskoi at frugalware.org Mon Sep 10 19:59:48 2007 From: voroskoi at frugalware.org (voroskoi) Date: Mon Sep 10 19:59:50 2007 Subject: [Frugalware-git] frugalware-current: unrar-3.7.8-1-i686 Message-ID: <20070910175948.0D09313A42FB@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=c99c66a5391aa6412ec26b5bf94c78f092da6d62 commit c99c66a5391aa6412ec26b5bf94c78f092da6d62 Author: voroskoi Date: Mon Sep 10 19:54:23 2007 +0200 unrar-3.7.8-1-i686 version bump diff --git a/source/apps-extra/unrar/FrugalBuild b/source/apps-extra/unrar/FrugalBuild index 2fca65c..7a9a7b0 100644 --- a/source/apps-extra/unrar/FrugalBuild +++ b/source/apps-extra/unrar/FrugalBuild @@ -3,7 +3,7 @@ # Maintainer: voroskoi pkgname=unrar -pkgver=3.7.7 +pkgver=3.7.8 pkgrel=1 pkgdesc="Uncompress rar files" url="http://www.rarlab.com/" @@ -20,7 +20,7 @@ build() { make -f makefile.unix || Fdie Fexerel /usr/bin/unrar } -sha1sums=('99a93dc0df554b4354d7af758ab487f17f107ade' \ +sha1sums=('b2146b8021274cd6a0a3b816b2ec6f241c62baea' \ '265050fcbedceafba4ad8aff1cfc4390954e4203') # optimization OK From crazy at frugalware.org Mon Sep 10 20:37:24 2007 From: crazy at frugalware.org (crazy) Date: Mon Sep 10 20:37:26 2007 Subject: [Frugalware-git] frugalware-current: bmpx-0.40.3-1-i686 Message-ID: <20070910183724.43D1613A42FB@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=341247a5c7ab4c2e778ef553c77237c4272364eb commit 341247a5c7ab4c2e778ef553c77237c4272364eb Author: crazy Date: Mon Sep 10 20:31:29 2007 +0200 bmpx-0.40.3-1-i686 * fix patch name diff --git a/source/xmultimedia-extra/bmpx/00-revert-liking-workarounds.patch b/source/xmultimedia-extra/bmpx/00-revert-liking-workarounds.patch deleted file mode 100644 index ce7242a..0000000 --- a/source/xmultimedia-extra/bmpx/00-revert-liking-workarounds.patch +++ /dev/null @@ -1,39 +0,0 @@ -diff -Naur bmpx-0.40.3/src/mb-tagger.hh bmpx-0.40.3-p/src/mb-tagger.hh ---- bmpx-0.40.3/src/mb-tagger.hh 2007-09-08 09:38:35.000000000 +0200 -+++ bmpx-0.40.3-p/src/mb-tagger.hh 2007-09-10 11:10:27.000000000 +0200 -@@ -48,7 +48,6 @@ - #include "library.hh" - #include "musicbrainz/mbxml-v2.hh" - #include "bmp/ui-types.hh" --#include "lastfm-types.hh" - - using namespace Glib; - -diff -Naur bmpx-0.40.3/src/shell.cc bmpx-0.40.3-p/src/shell.cc ---- bmpx-0.40.3/src/shell.cc 2007-09-08 09:38:35.000000000 +0200 -+++ bmpx-0.40.3-p/src/shell.cc 2007-09-10 11:09:47.000000000 +0200 -@@ -152,10 +152,6 @@ - #define PLAYER_SHELL_ACTION_BOOKMARKS "player-shell-action-bookmarks" - #define PLAYER_SHELL_ACTION_CREATE_BOOKMARK "player-shell-action-create-bookmark" - --namespace --{ -- const Bmp::DB::Variant dummy = double (2); --} - - namespace Bmp - { -diff -Naur bmpx-0.40.3/src/ui-part-jamendo.cc bmpx-0.40.3-p/src/ui-part-jamendo.cc ---- bmpx-0.40.3/src/ui-part-jamendo.cc 2007-09-08 09:38:35.000000000 +0200 -+++ bmpx-0.40.3-p/src/ui-part-jamendo.cc 2007-09-10 11:10:49.000000000 +0200 -@@ -48,10 +48,6 @@ - #define JAMENDO_ACTION_UI_PART_JAMENDO "jamendo-action-ui-part-jamendo" - #define JAMENDO_ACTION_UPDATE_DB "jamendo-action-update-db" - --namespace --{ -- const Bmp::DB::Variant dummy = double (2); --} - - namespace Bmp - { diff --git a/source/xmultimedia-extra/bmpx/00-revert-linking-workarounds.patch b/source/xmultimedia-extra/bmpx/00-revert-linking-workarounds.patch new file mode 100644 index 0000000..ce7242a --- /dev/null +++ b/source/xmultimedia-extra/bmpx/00-revert-linking-workarounds.patch @@ -0,0 +1,39 @@ +diff -Naur bmpx-0.40.3/src/mb-tagger.hh bmpx-0.40.3-p/src/mb-tagger.hh +--- bmpx-0.40.3/src/mb-tagger.hh 2007-09-08 09:38:35.000000000 +0200 ++++ bmpx-0.40.3-p/src/mb-tagger.hh 2007-09-10 11:10:27.000000000 +0200 +@@ -48,7 +48,6 @@ + #include "library.hh" + #include "musicbrainz/mbxml-v2.hh" + #include "bmp/ui-types.hh" +-#include "lastfm-types.hh" + + using namespace Glib; + +diff -Naur bmpx-0.40.3/src/shell.cc bmpx-0.40.3-p/src/shell.cc +--- bmpx-0.40.3/src/shell.cc 2007-09-08 09:38:35.000000000 +0200 ++++ bmpx-0.40.3-p/src/shell.cc 2007-09-10 11:09:47.000000000 +0200 +@@ -152,10 +152,6 @@ + #define PLAYER_SHELL_ACTION_BOOKMARKS "player-shell-action-bookmarks" + #define PLAYER_SHELL_ACTION_CREATE_BOOKMARK "player-shell-action-create-bookmark" + +-namespace +-{ +- const Bmp::DB::Variant dummy = double (2); +-} + + namespace Bmp + { +diff -Naur bmpx-0.40.3/src/ui-part-jamendo.cc bmpx-0.40.3-p/src/ui-part-jamendo.cc +--- bmpx-0.40.3/src/ui-part-jamendo.cc 2007-09-08 09:38:35.000000000 +0200 ++++ bmpx-0.40.3-p/src/ui-part-jamendo.cc 2007-09-10 11:10:49.000000000 +0200 +@@ -48,10 +48,6 @@ + #define JAMENDO_ACTION_UI_PART_JAMENDO "jamendo-action-ui-part-jamendo" + #define JAMENDO_ACTION_UPDATE_DB "jamendo-action-update-db" + +-namespace +-{ +- const Bmp::DB::Variant dummy = double (2); +-} + + namespace Bmp + { diff --git a/source/xmultimedia-extra/bmpx/FrugalBuild b/source/xmultimedia-extra/bmpx/FrugalBuild index dc2cca9..1ba221f 100644 --- a/source/xmultimedia-extra/bmpx/FrugalBuild +++ b/source/xmultimedia-extra/bmpx/FrugalBuild @@ -22,7 +22,7 @@ groups=('xmultimedia-extra') archs=('i686' 'x86_64') up2date="lynx -dump 'http://bmpx.beep-media-player.org/site/Downloads#BMP_Source_Download'|grep -m1 '.tar.bz2'|sed 's/.*-\(.*\).t.*/\1/'" source=(http://files.beep-media-player.org/releases/$basever/$pkgname-$pkgver.tar.bz2 \ - 00-revert-liking-workarounds.patch \ + 00-revert-linking-workarounds.patch \ 01-fw_builduser.patch \ 02-configure.patch \ 03-no-ggdb3-when-debug-is-off.patch) From vmiklos at frugalware.org Mon Sep 10 21:08:19 2007 From: vmiklos at frugalware.org (VMiklos) Date: Mon Sep 10 21:08:21 2007 Subject: [Frugalware-git] pacman-tools: revert "use pager for dg chan -t, too" Message-ID: <20070910190819.3BCE413A42FB@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=pacman-tools.git;a=commitdiff;h=cb72223e7cc089f7243ed580516f2c9c89894ee5 commit cb72223e7cc089f7243ed580516f2c9c89894ee5 Author: VMiklos Date: Mon Sep 10 21:06:05 2007 +0200 revert "use pager for dg chan -t, too" this reverts commit 0a82d4997d1ada090d8f3a5fec537bc818810bdc. it breaks unpull() diff --git a/darcs-git.py b/darcs-git.py index 4c7efae..d4587d2 100755 --- a/darcs-git.py +++ b/darcs-git.py @@ -504,7 +504,7 @@ Options: if options.help: usage(0) return os.system(" ".join(['git log -M', - options.last, options.logopts, options.files, options.tags, options.abbrev, "|less"])) + options.last, options.logopts, options.files, options.tags, options.abbrev])) def push(argv): def usage(ret): @@ -812,6 +812,8 @@ PURPOSE.""" % __version__ # this will exit if no root found if sys.argv[1] not in ["init", "get"]: get_root() + if sys.argv[1][:4] != "chan": + os.environ['GIT_PAGER'] = 'cat' if sys.argv[1][:3] == "rec": record(argv[1:]) elif sys.argv[1][:3] == "rev": From vmiklos at frugalware.org Mon Sep 10 22:11:34 2007 From: vmiklos at frugalware.org (VMiklos) Date: Mon Sep 10 22:11:36 2007 Subject: [Frugalware-git] frugalware-current: docs/bugs: correct pacman-g2 repo url Message-ID: <20070910201134.7EEF513A42FC@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=15e3188fbad88dee38de35168deb27de8e858792 commit 15e3188fbad88dee38de35168deb27de8e858792 Author: VMiklos Date: Mon Sep 10 22:10:48 2007 +0200 docs/bugs: correct pacman-g2 repo url diff --git a/docs/bugs.txt b/docs/bugs.txt index 0e49012..3a48587 100644 --- a/docs/bugs.txt +++ b/docs/bugs.txt @@ -80,7 +80,7 @@ Here are the instructions to get a backtrace: - Get the pacman-g2 git repo and compile it with debug symbols enabled: + -------------------------------------------------------------- -$ git clone http://git.frugalware.org/repos/pacman-g2 +$ git clone http://git.frugalware.org/repos/pacman-g2/.git $ cd pacman-g2 $ sh autogen.sh $ ./configure --enable-debug From vmiklos at frugalware.org Mon Sep 10 22:11:34 2007 From: vmiklos at frugalware.org (VMiklos) Date: Mon Sep 10 22:11:37 2007 Subject: [Frugalware-git] frugalware-current: docs/repos: ln -s -> ln -sf Message-ID: <20070910201134.6F7BE13A42FB@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=cfb4207bf11244dc99ae8ff4d81a373861328190 commit cfb4207bf11244dc99ae8ff4d81a373861328190 Author: VMiklos Date: Mon Sep 10 22:10:21 2007 +0200 docs/repos: ln -s -> ln -sf newer git installs a post-receive hook by default and we need to overwrite it diff --git a/docs/repos.txt b/docs/repos.txt index e5d742d..428cf03 100644 --- a/docs/repos.txt +++ b/docs/repos.txt @@ -66,5 +66,5 @@ chmod +x .git/hooks/post-update For the others: ---- -ln -s /home/ftp/pub/other/git-hooks/git-hooks.py .git/hooks/post-receive +ln -sf /home/ftp/pub/other/git-hooks/git-hooks.py .git/hooks/post-receive ---- From priyank at frugalware.org Tue Sep 11 05:30:53 2007 From: priyank at frugalware.org (Priyank) Date: Tue Sep 11 05:31:00 2007 Subject: [Frugalware-git] gfpm: bugfix in cb_gfpm_search_keypress() Message-ID: <20070911033053.411A913A42FA@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gfpm.git;a=commitdiff;h=14dfcea4315fa1ea815524e8b78a025b68cb6831 commit 14dfcea4315fa1ea815524e8b78a025b68cb6831 Author: Priyank Date: Mon Sep 10 22:36:45 2007 +0530 bugfix in cb_gfpm_search_keypress() * Fixed a bug where gfpm displayed all packages as locally newer after one locally newer package was found. diff --git a/src/gfpm-interface.c b/src/gfpm-interface.c index ed7ced8..07a6afd 100644 --- a/src/gfpm-interface.c +++ b/src/gfpm-interface.c @@ -1296,10 +1296,10 @@ cb_gfpm_search_keypress (GtkWidget *widget, GdkEventKey *event, gpointer data) PM_PKG *pm_lpkg; gboolean inst = FALSE; gboolean up = FALSE; - gboolean ln = FALSE; for (i=l;i;i=pacman_list_next(i)) { + gboolean ln = FALSE; pm_pkg = pacman_db_readpkg (sync_db, pacman_list_getdata(i)); pm_lpkg = pacman_db_readpkg (local_db, pacman_list_getdata(i)); if (pacman_pkg_getinfo (pm_lpkg, PM_PKG_VERSION)!=NULL) From priyank at frugalware.org Tue Sep 11 05:30:53 2007 From: priyank at frugalware.org (Priyank) Date: Tue Sep 11 05:31:02 2007 Subject: [Frugalware-git] gfpm: AUTHORS: Added desco to past devels Message-ID: <20070911033053.6059A13A42FB@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gfpm.git;a=commitdiff;h=fdfeecde270206d816f83b5791733c49a0cb4f6d commit fdfeecde270206d816f83b5791733c49a0cb4f6d Author: Priyank Date: Mon Sep 10 22:37:01 2007 +0530 AUTHORS: Added desco to past devels diff --git a/AUTHORS b/AUTHORS index 1bec763..55fd965 100644 --- a/AUTHORS +++ b/AUTHORS @@ -1,7 +1,10 @@ Developers -=========== +========== * Priyank M. Gosalia * Christian Hamar alias krix + +Past Developers +=============== * Miklos Nemeth Translators From boobaa at frugalware.org Tue Sep 11 10:27:53 2007 From: boobaa at frugalware.org (CSÉCSY László) Date: Tue Sep 11 10:27:55 2007 Subject: [Frugalware-git] frugalware-current: ntp-4.2.4p4-1-i686 Message-ID: <20070911082753.0899913A42FD@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=47c353786bb9134776b7805bd53245999affc545 commit 47c353786bb9134776b7805bd53245999affc545 Author: CSÉCSY László Date: Tue Sep 11 10:27:32 2007 +0200 ntp-4.2.4p4-1-i686 version bump diff --git a/source/network-extra/ntp/FrugalBuild b/source/network-extra/ntp/FrugalBuild index 0801837..c4c017d 100644 --- a/source/network-extra/ntp/FrugalBuild +++ b/source/network-extra/ntp/FrugalBuild @@ -3,7 +3,7 @@ # Former m8r: Krisztian VASAS pkgname=ntp -pkgver=4.2.4p3 +pkgver=4.2.4p4 pkgrel=1 pkgdesc="The ntp daemon from ntp.org" url="http://www.ntp.org/" @@ -13,7 +13,7 @@ archs=('i686' 'x86_64') up2date="lynx -dump http://www.eecis.udel.edu/~ntp/ntp_spool/ntp4/ | grep -m1 'http.*tar.gz$' | sed 's/.*ntp-\(.*\)\.tar.*/\1/'" source=(http://www.eecis.udel.edu/~ntp/ntp_spool/ntp4/$pkgname-$pkgver.tar.gz rc.ntpd rc.ntpd.pot ntp.org.conf) backup=(etc/ntp.org.conf) -sha1sums=('8531786a84db138996334d3fd842948dd165a554' \ +sha1sums=('886a7c6819c148cc1f832d43a3446526488b1b5e' \ '2bf638fba95847568e45afc7b2cfdf6d1767b429' \ '6f0275b9c1adcdef0c441408d8b5c4e4c82e1de4' \ '9e116eabff29a0216bfc2c56817ba48d1f3182f6') From boobaa at frugalware.org Tue Sep 11 10:45:14 2007 From: boobaa at frugalware.org (CSÉCSY László) Date: Tue Sep 11 10:45:15 2007 Subject: [Frugalware-git] frugalware-current: perl-gtk2-1.146-1-i686 Message-ID: <20070911084514.3590F13A42FD@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=19dce0eeb8eb81dee12dba3eaf1607f661461315 commit 19dce0eeb8eb81dee12dba3eaf1607f661461315 Author: CSÉCSY LĂĄszlĂł Date: Tue Sep 11 10:43:42 2007 +0200 perl-gtk2-1.146-1-i686 converted to perl.sh, which corrects up2date diff --git a/source/xlib-extra/perl-gtk2/FrugalBuild b/source/xlib-extra/perl-gtk2/FrugalBuild index c971806..e92c529 100644 --- a/source/xlib-extra/perl-gtk2/FrugalBuild +++ b/source/xlib-extra/perl-gtk2/FrugalBuild @@ -3,24 +3,14 @@ # Former m8r: Zsolt Szalai pkgname=perl-gtk2 +_F_perl_name=Gtk2 +_F_perl_author=T/TS/TSCH pkgver=1.146 -pkgrel=1 pkgdesc="Perl interface to the 2.x series of the Gimp Toolkit library" -url="http://search.cpan.org/search?query=gtk2&mode=all" depends=('gtk+2>=2.10.3' 'perl-glib>=1.140' 'perl-cairo') makedepends=('perl-extutils-depends' 'perl-extutils-pkgconfig') +Finclude perl groups=('xlib-extra') archs=('i686' 'x86_64') options=('scriptlet') -up2date="lynx -dump 'http://search.cpan.org/search?query=gtk2&mode=all'|grep \"tk2-\"|sed -n 's/.*tk2-\([^ ]*\) -.*/\1/;1 p'" -source=(http://search.cpan.org/CPAN/authors/id/T/TS/TSCH/Gtk2-$pkgver.tar.gz) - -build() -{ - Fcd Gtk2-$pkgver - Fbuild - Frm /usr/lib/perl5/current -} - -# optimization OK sha1sums=('5983160a8b85257f0c92c0d930e172e44b71be50') From priyank at frugalware.org Tue Sep 11 15:02:44 2007 From: priyank at frugalware.org (Priyank) Date: Tue Sep 11 15:02:49 2007 Subject: [Frugalware-git] gfpm: gfpm-interface: fixed a crash caused by the previous commit. Message-ID: <20070911130244.B8F7113A4007@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gfpm.git;a=commitdiff;h=3c4a2ea463bcdc2d4126e3a9b83340789143b2d8 commit 3c4a2ea463bcdc2d4126e3a9b83340789143b2d8 Author: Priyank Date: Tue Sep 11 18:29:03 2007 +0530 gfpm-interface: fixed a crash caused by the previous commit. diff --git a/src/gfpm-interface.c b/src/gfpm-interface.c index 07a6afd..ac477be 100644 --- a/src/gfpm-interface.c +++ b/src/gfpm-interface.c @@ -1021,8 +1021,6 @@ cb_gfpm_refresh_button_clicked (GtkButton *button, gpointer data) goto cleanup; } } - g_free (v1); - g_free (v2); } if (pacman_trans_init(PM_TRANS_TYPE_SYNC, 0, gfpm_progress_event, cb_gfpm_trans_conv, gfpm_progress_install) == -1) { From priyank at frugalware.org Tue Sep 11 15:40:57 2007 From: priyank at frugalware.org (Priyank) Date: Tue Sep 11 15:41:00 2007 Subject: [Frugalware-git] gfpm: gfpm-progress: added an option to autoclose progress dialog after operation is finished. (requested by crazy) Message-ID: <20070911134057.E0BDB13A4007@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gfpm.git;a=commitdiff;h=2db3823ec36b762ee5e93b44a3e2ece231788298 commit 2db3823ec36b762ee5e93b44a3e2ece231788298 Author: Priyank Date: Tue Sep 11 19:07:25 2007 +0530 gfpm-progress: added an option to autoclose progress dialog after operation is finished. (requested by crazy) diff --git a/data/gfpm.glade b/data/gfpm.glade index 8b19dc2..4367ca9 100644 --- a/data/gfpm.glade +++ b/data/gfpm.glade @@ -668,6 +668,21 @@ + + True + True + GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK + Close this dialog when the operation is finished + 0 + True + + + False + 2 + 4 + + + True GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK @@ -699,7 +714,7 @@ False - 4 + 5 diff --git a/src/gfpm-about.c b/src/gfpm-about.c index 7753d68..e104a3f 100644 --- a/src/gfpm-about.c +++ b/src/gfpm-about.c @@ -75,7 +75,7 @@ gfpm_about (void) "license", license, "authors", authors, "artists", artists, - "translator-credits", translators, + "translator-credits", _(translators), "website", "http://www.frugalware.org/", "website-label", "http://www.frugalware.org/", "logo", about_pixbuf, diff --git a/src/gfpm-interface.c b/src/gfpm-interface.c index ac477be..036088c 100644 --- a/src/gfpm-interface.c +++ b/src/gfpm-interface.c @@ -424,6 +424,9 @@ itry: if (pacman_trans_init(PM_TRANS_TYPE_SYNC, flags, gfpm_progress_event, cb_g if (current_group != NULL) gfpm_load_pkgs_tvw ((const char*)current_group); + if (gfpm_progress_is_autoclose_checkbtn_set()) + gfpm_progress_show (FALSE); + return; } @@ -1514,7 +1517,8 @@ cb_gfpm_install_file_clicked (GtkButton *button, gpointer data) g_string_free (errorstr, FALSE); pacman_trans_release (); gtk_widget_hide (gfpm_inst_from_file_dlg); - gfpm_progress_show (FALSE); + if (gfpm_progress_is_autoclose_checkbtn_set()) + gfpm_progress_show (FALSE); return; } diff --git a/src/gfpm-progress.c b/src/gfpm-progress.c index 52bce7f..f43675b 100644 --- a/src/gfpm-progress.c +++ b/src/gfpm-progress.c @@ -43,6 +43,7 @@ static GtkWidget *rate_box = NULL; static GtkWidget *progress_txtvw = NULL; static GtkWidget *details_scroll = NULL; static GtkWidget *button_close = NULL; +static GtkWidget *autoclose_checkbtn = NULL; GtkTextIter t_iter; GtkTextBuffer *buffer = NULL; @@ -78,6 +79,7 @@ gfpm_progress_init (void) progress_txtvw = glade_xml_get_widget (xml, "progress_txtvw"); button_close = glade_xml_get_widget (xml, "close_progress"); details_scroll = glade_xml_get_widget (xml, "details_scrollwindow"); + autoclose_checkbtn = glade_xml_get_widget (xml, "autoclose_checkbtn"); g_signal_connect (G_OBJECT(glade_xml_get_widget(xml,"show_details")), "toggled", G_CALLBACK(cb_gfpm_details_button_toggled), @@ -137,6 +139,12 @@ gfpm_progress_textview_reset (void) return; } +gboolean +gfpm_progress_is_autoclose_checkbtn_set (void) +{ + return (gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(autoclose_checkbtn))); +} + void gfpm_progress_show (gboolean show) { diff --git a/src/gfpm-progress.h b/src/gfpm-progress.h index d873682..824b656 100644 --- a/src/gfpm-progress.h +++ b/src/gfpm-progress.h @@ -26,5 +26,7 @@ void gfpm_progress_set_main_text (const char *msg, int txt); void gfpm_progress_set_sub_text (const char *msg); +gboolean gfpm_progress_is_autoclose_checkbtn_set (void); + #endif From priyank at frugalware.org Tue Sep 11 16:02:14 2007 From: priyank at frugalware.org (Priyank) Date: Tue Sep 11 16:02:17 2007 Subject: [Frugalware-git] frugalware-current: ristretto-0.0.4-1-i686 Message-ID: <20070911140214.273BA13A4007@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=dbae0c9b188c7dba178b9f217589f1bb71074c2d commit dbae0c9b188c7dba178b9f217589f1bb71074c2d Author: Priyank Date: Tue Sep 11 19:25:32 2007 +0530 ristretto-0.0.4-1-i686 * Version bump diff --git a/source/xfce4/ristretto/FrugalBuild b/source/xfce4/ristretto/FrugalBuild index 6f4dcac..24e785b 100644 --- a/source/xfce4/ristretto/FrugalBuild +++ b/source/xfce4/ristretto/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: Priyank Gosalia pkgname=ristretto -pkgver=0.0.3 +pkgver=0.0.4 pkgrel=1 pkgdesc="A fast and lightweight picture viewer for Xfce." makedepends=('intltool') @@ -13,6 +13,6 @@ _F_gnome_iconcache="y" _F_xfce_goodies_ext=".tar.gz" Finclude xfce4 gnome-scriptlet url="http://goodies.xfce.org/projects/applications/ristretto" -sha1sums=('019a8ce5c0e0d257283fd6834b5720ac958acf90') +sha1sums=('2d084853fb4bb6a5152cd29b5391edb9782acaae') # optimization OK From priyank at frugalware.org Tue Sep 11 16:06:12 2007 From: priyank at frugalware.org (Priyank) Date: Tue Sep 11 16:06:22 2007 Subject: [Frugalware-git] gfpm: AUTHORS: Added credits for dansk translator. Message-ID: <20070911140612.B085913A400D@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gfpm.git;a=commitdiff;h=e6f06b211110d3d25038fc26a825a1e31f6ecb1c commit e6f06b211110d3d25038fc26a825a1e31f6ecb1c Author: Priyank Date: Tue Sep 11 19:32:36 2007 +0530 AUTHORS: Added credits for dansk translator. diff --git a/AUTHORS b/AUTHORS index 55fd965..0e9109c 100644 --- a/AUTHORS +++ b/AUTHORS @@ -11,6 +11,7 @@ Translators =========== * hu - Vajna Miklos * fr - Michel Hermier +* dk - Carl Andersen Artwork ======== From priyank at frugalware.org Tue Sep 11 16:40:02 2007 From: priyank at frugalware.org (Priyank) Date: Tue Sep 11 16:40:06 2007 Subject: [Frugalware-git] gfpm: gfpm: fixed some warnings Message-ID: <20070911144002.2FC9213A4007@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gfpm.git;a=commitdiff;h=a4e1ec787d85a3eb9fc7c829cd9de3ac40cc08dd commit a4e1ec787d85a3eb9fc7c829cd9de3ac40cc08dd Author: Priyank Date: Tue Sep 11 20:06:22 2007 +0530 gfpm: fixed some warnings * removed numerous shadowed declarations * suppressed some compiler warnings diff --git a/src/gfpm-interface.c b/src/gfpm-interface.c index 036088c..c389377 100644 --- a/src/gfpm-interface.c +++ b/src/gfpm-interface.c @@ -92,25 +92,25 @@ static gint gfpm_trans_prepare (PM_LIST *list); static void gfpm_populate_repos_combobox (GtkComboBox *combo) { - GList *rlist = NULL; - GtkListStore *store = NULL; + GList *rlist = NULL; + GtkListStore *store = NULL; GtkTreeIter iter; - gint index = -1; + gint c_index = -1; store = GTK_LIST_STORE (gtk_combo_box_get_model(GTK_COMBO_BOX(combo))); rlist = gfpm_db_get_repolist (); for (;rlist != NULL;rlist=rlist->next) { - char *repo = (char *)pacman_db_getinfo ((PM_DB *)rlist->data, PM_DB_TREENAME); + char *c_repo = (char *)pacman_db_getinfo ((PM_DB *)rlist->data, PM_DB_TREENAME); gtk_list_store_append (store, &iter); - gtk_list_store_set (store, &iter, 0, repo, -1); - if (!strcmp(repo,FW_CURRENT)) - index++; + gtk_list_store_set (store, &iter, 0, c_repo, -1); + if (!strcmp(c_repo,FW_CURRENT)) + c_index++; } gtk_list_store_append (store, &iter); gtk_list_store_set (store, &iter, 0, (char*)_("Installed Packages"), -1); g_signal_connect (G_OBJECT(combo), "changed", G_CALLBACK(cb_gfpm_repos_combo_changed), NULL); - gtk_combo_box_set_active (GTK_COMBO_BOX(combo), index); + gtk_combo_box_set_active (GTK_COMBO_BOX(combo), c_index); return; } @@ -123,6 +123,8 @@ gfpm_interface_init (void) GtkListStore *store; GtkCellRenderer *renderer; GtkTreeSelection *selection; + GtkTreeViewColumn *column; + gchar *title = NULL; gfpm_mw = glade_xml_get_widget (xml, "mainwindow"); gfpm_splash = glade_xml_get_widget (xml, "splash_window"); @@ -162,9 +164,8 @@ gfpm_interface_init (void) G_TYPE_STRING, /* Package name */ G_TYPE_STRING, /* Installed version */ G_TYPE_STRING); /* Latest version */ - //G_TYPE_STRING); /* Package Description */ + /* G_TYPE_STRING); Package Description */ - GtkTreeViewColumn *column; renderer = gtk_cell_renderer_toggle_new (); g_object_set (G_OBJECT(renderer), "activatable", TRUE, NULL); g_signal_connect (renderer, "toggled", G_CALLBACK(cb_gfpm_pkg_selection_toggled), store); @@ -267,7 +268,7 @@ gfpm_interface_init (void) gfpm_optimize_db_dlg_init (); gtk_widget_hide (gfpm_splash); - gchar *title = g_strdup_printf ("%s (%s)", PACKAGE_STRING, GFPM_RELEASE_NAME); + title = g_strdup_printf ("%s (%s)", PACKAGE_STRING, GFPM_RELEASE_NAME); gtk_window_set_title (GTK_WINDOW(gfpm_mw), title); g_free (title); gtk_widget_show_all (gfpm_mw); @@ -332,19 +333,19 @@ try: if (pacman_trans_init(PM_TRANS_TYPE_REMOVE, flags, gfpm_progress_event, cb_ gfpm_progress_show (TRUE); GList *i = NULL; - PM_LIST *data, *pkgs; + PM_LIST *pdata, *pkgs; for (i = (GList*)remove_list; i; i = i->next) { char *target = i->data; pacman_trans_addtarget (target); } - if (gfpm_trans_prepare(data) == -1) + if (gfpm_trans_prepare(pdata) == -1) goto down; pkgs = pacman_trans_getinfo (PM_TRANS_PACKAGES); if (pkgs == NULL) g_print ("pkgs is null.. bad bad bad!\n"); /* commit transaction */ - if (pacman_trans_commit(&data) == -1) + if (pacman_trans_commit(&pdata) == -1) { char *str = g_strdup_printf ("Failed to commit transaction (%s)", pacman_strerror(pm_errno)); errorstr = g_string_append (errorstr, str); @@ -389,19 +390,19 @@ itry: if (pacman_trans_init(PM_TRANS_TYPE_SYNC, flags, gfpm_progress_event, cb_g gfpm_progress_show (TRUE); GList *i = NULL; - PM_LIST *data, *pkgs; + PM_LIST *pdata, *pkgs; for (i = (GList*)install_list; i; i = i->next) { char *target = i->data; pacman_trans_addtarget (target); } - if (gfpm_trans_prepare(data) == -1) + if (gfpm_trans_prepare(pdata) == -1) goto cleanup; pkgs = pacman_trans_getinfo (PM_TRANS_PACKAGES); if (pkgs == NULL) gfpm_error (_("Error"), "Error getting transaction info"); /* commit transaction */ - if (pacman_trans_commit(&data) == -1) + if (pacman_trans_commit(&pdata) == -1) { char *str = g_strdup_printf ("Failed to commit transaction (%s)", pacman_strerror(pm_errno)); errorstr = g_string_append (errorstr, str); @@ -559,8 +560,6 @@ gfpm_load_pkgs_tvw (const char *group_name) } else if (r == 0) { - gboolean up = FALSE; - gboolean ln = FALSE; pm_pkg = pacman_db_readpkg (sync_db, pacman_list_getdata(i)); pm_lpkg = pacman_db_readpkg (local_db, pacman_list_getdata(i)); char *v1 = (char*)pacman_pkg_getinfo (pm_pkg, PM_PKG_VERSION); @@ -944,7 +943,6 @@ gfpm_trans_prepare (PM_LIST *list) depstring = g_string_append (depstring, (char*)pacman_dep_getinfo(m,PM_DEP_NAME)); switch ((long)pacman_dep_getinfo(m, PM_DEP_MOD)) { - gchar *val = NULL; case PM_DEP_MOD_EQ: val = g_strdup_printf ("=%s", (char*)pacman_dep_getinfo(m,PM_DEP_VERSION)); depstring = g_string_append (depstring, val); @@ -1214,6 +1212,8 @@ cb_gfpm_search_keypress (GtkWidget *widget, GdkEventKey *event, gpointer data) PM_LIST *i = NULL; gchar *search_str; gint r = 0; + char *v1 = NULL; + char *v2 = NULL; if (event->keyval != GDK_Return) return; @@ -1258,8 +1258,8 @@ cb_gfpm_search_keypress (GtkWidget *widget, GdkEventKey *event, gpointer data) { pm_lpkg = pacman_db_readpkg (local_db, pacman_list_getdata(i)); pm_spkg = pacman_db_readpkg (sync_db, pacman_list_getdata(i)); - char *v1 = (char*)pacman_pkg_getinfo (pm_spkg, PM_PKG_VERSION); - char *v2 = (char*)pacman_pkg_getinfo (pm_lpkg, PM_PKG_VERSION); + v1 = (char*)pacman_pkg_getinfo (pm_spkg, PM_PKG_VERSION); + v2 = (char*)pacman_pkg_getinfo (pm_lpkg, PM_PKG_VERSION); if (v1!=NULL && v2!=NULL) { gint ret = pacman_pkg_vercmp (v1, v2); @@ -1306,8 +1306,8 @@ cb_gfpm_search_keypress (GtkWidget *widget, GdkEventKey *event, gpointer data) if (pacman_pkg_getinfo (pm_lpkg, PM_PKG_VERSION)!=NULL) { inst = TRUE; - char *v1 = (char*)pacman_pkg_getinfo (pm_pkg, PM_PKG_VERSION); - char *v2 = (char*)pacman_pkg_getinfo (pm_lpkg, PM_PKG_VERSION); + v1 = (char*)pacman_pkg_getinfo (pm_pkg, PM_PKG_VERSION); + v2 = (char*)pacman_pkg_getinfo (pm_lpkg, PM_PKG_VERSION); if (v1!=NULL && v2!=NULL) { gint ret = pacman_pkg_vercmp (v1, v2); From priyank at frugalware.org Tue Sep 11 16:42:52 2007 From: priyank at frugalware.org (Priyank) Date: Tue Sep 11 16:42:53 2007 Subject: [Frugalware-git] gfpm: gfpm-db: fixed a memory leak and compiler warning. Message-ID: <20070911144252.5CF2313A4007@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gfpm.git;a=commitdiff;h=1a1d616274e71e685991fc35b184ca70991c6d44 commit 1a1d616274e71e685991fc35b184ca70991c6d44 Author: Priyank Date: Tue Sep 11 20:09:33 2007 +0530 gfpm-db: fixed a memory leak and compiler warning. diff --git a/src/gfpm-db.c b/src/gfpm-db.c index 47144f5..a0944de 100644 --- a/src/gfpm-db.c +++ b/src/gfpm-db.c @@ -48,7 +48,7 @@ gfpm_db_init (void) void gfpm_db_register (const char *dbname) { - if (sync_db != NULL); + if (sync_db != NULL) { pacman_db_unregister (sync_db); sync_db = NULL; From priyank at frugalware.org Tue Sep 11 16:48:24 2007 From: priyank at frugalware.org (Priyank) Date: Tue Sep 11 16:48:26 2007 Subject: [Frugalware-git] gfpm: gfpm-interface: gfpm_interface_init(); display an error if local db initialization fails. Message-ID: <20070911144824.E1D7213A4007@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gfpm.git;a=commitdiff;h=81ac6a8b7ec6a00f90047fcd401fb3a63a5e32e6 commit 81ac6a8b7ec6a00f90047fcd401fb3a63a5e32e6 Author: Priyank Date: Tue Sep 11 20:14:42 2007 +0530 gfpm-interface: gfpm_interface_init(); display an error if local db initialization fails. diff --git a/src/gfpm-interface.c b/src/gfpm-interface.c index c389377..5d48077 100644 --- a/src/gfpm-interface.c +++ b/src/gfpm-interface.c @@ -262,7 +262,8 @@ gfpm_interface_init (void) /* initialize modules */ - gfpm_db_init (); + if (gfpm_db_init ()) + gfpm_error (_("Error"), _("Failed to initialize local package database.")); gfpm_messages_init (); gfpm_progress_init (); gfpm_optimize_db_dlg_init (); From priyank at frugalware.org Tue Sep 11 16:56:34 2007 From: priyank at frugalware.org (Priyank) Date: Tue Sep 11 16:56:35 2007 Subject: [Frugalware-git] gfpm: gfpm-about: don't use gettext() for translator-credits Message-ID: <20070911145634.2A33413A4007@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gfpm.git;a=commitdiff;h=0e7850ea1219085456d18fe2b926656e31de1b74 commit 0e7850ea1219085456d18fe2b926656e31de1b74 Author: Priyank Date: Tue Sep 11 20:23:09 2007 +0530 gfpm-about: don't use gettext() for translator-credits diff --git a/src/gfpm-about.c b/src/gfpm-about.c index e104a3f..7753d68 100644 --- a/src/gfpm-about.c +++ b/src/gfpm-about.c @@ -75,7 +75,7 @@ gfpm_about (void) "license", license, "authors", authors, "artists", artists, - "translator-credits", _(translators), + "translator-credits", translators, "website", "http://www.frugalware.org/", "website-label", "http://www.frugalware.org/", "logo", about_pixbuf, From priyank at frugalware.org Tue Sep 11 17:00:16 2007 From: priyank at frugalware.org (Priyank) Date: Tue Sep 11 17:00:17 2007 Subject: [Frugalware-git] pacman-g2: libpacman: Fixed qualifiers for arguments of some functions. Message-ID: <20070911150016.8293C13A4007@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=pacman-g2.git;a=commitdiff;h=2fcc0cb0126313d72c99a4189dd30ef544b8a395 commit 2fcc0cb0126313d72c99a4189dd30ef544b8a395 Author: Priyank Date: Tue Sep 11 20:26:36 2007 +0530 libpacman: Fixed qualifiers for arguments of some functions. * pacman_initialize(): argument 'root' should be const char * * pacman_db_readpkg(): argument 'name' should be const char * diff --git a/lib/libpacman/pacman.c b/lib/libpacman/pacman.c index 79f4370..a2ec8ad 100644 --- a/lib/libpacman/pacman.c +++ b/lib/libpacman/pacman.c @@ -75,7 +75,7 @@ enum __pmerrno_t pm_errno; * @param root the full path of the root we'll be installing to (usually /) * @return 0 on success, -1 on error (pm_errno is set accordingly) */ -int pacman_initialize(char *root) +int pacman_initialize(const char *root) { char str[PATH_MAX]; @@ -384,7 +384,7 @@ int pacman_db_update(int force, PM_DB *db) * @param name of the package * @return the package entry on success, NULL on error */ -pmpkg_t *pacman_db_readpkg(pmdb_t *db, char *name) +pmpkg_t *pacman_db_readpkg(pmdb_t *db, const char *name) { /* Sanity checks */ ASSERT(handle != NULL, return(NULL)); diff --git a/lib/libpacman/pacman.h b/lib/libpacman/pacman.h index 4d45fcd..62f917f 100644 --- a/lib/libpacman/pacman.h +++ b/lib/libpacman/pacman.h @@ -59,7 +59,7 @@ typedef struct NetBuf PM_NETBUF; * Library */ -int pacman_initialize(char *root); +int pacman_initialize(const char *root); int pacman_release(void); /* @@ -146,7 +146,7 @@ int pacman_db_setserver(PM_DB *db, char *url); int pacman_db_update(int level, PM_DB *db); -PM_PKG *pacman_db_readpkg(PM_DB *db, char *name); +PM_PKG *pacman_db_readpkg(PM_DB *db, const char *name); PM_LIST *pacman_db_getpkgcache(PM_DB *db); PM_LIST *pacman_db_whatprovides(PM_DB *db, char *name); From priyank at frugalware.org Tue Sep 11 17:04:24 2007 From: priyank at frugalware.org (Priyank) Date: Tue Sep 11 17:04:25 2007 Subject: [Frugalware-git] frugalware-current: deluge-0.5.5-1-i686 Message-ID: <20070911150424.2C40513A4007@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=607e4da24a3d34273a714ecb12b35a10c3a6e1f6 commit 607e4da24a3d34273a714ecb12b35a10c3a6e1f6 Author: Priyank Date: Tue Sep 11 20:27:30 2007 +0530 deluge-0.5.5-1-i686 * Version bump diff --git a/source/gnome-extra/deluge/FrugalBuild b/source/gnome-extra/deluge/FrugalBuild index ff37ab9..f3c9d40 100644 --- a/source/gnome-extra/deluge/FrugalBuild +++ b/source/gnome-extra/deluge/FrugalBuild @@ -3,7 +3,7 @@ # Contributor: Artur Grunau pkgname=deluge -pkgver=0.5.4.1 +pkgver=0.5.5 pkgrel=1 pkgdesc="BitTorrent client written in Python and GTK+." url="http://deluge-torrent.org/" @@ -13,7 +13,7 @@ archs=('i686' 'x86_64') up2date="lynx -dump $url/downloads | grep -m1 tar.gz | Flasttar" source=(http://download.deluge-torrent.org/tarball/$pkgver/$pkgname-$pkgver.tar.gz \ deluge-$pkgver-boostmt.diff) -sha1sums=('96be0039e659c8594978d577d518b51da47804da' \ +sha1sums=('edfa4d6c1da3771bcae1331b8b6d2de4ef4cd5d8' \ '0f6b8a99a9df380fd5a7ff8a5c817ab3357bf071') build() diff --git a/source/gnome-extra/deluge/deluge-0.5.4.1-boostmt.diff b/source/gnome-extra/deluge/deluge-0.5.4.1-boostmt.diff deleted file mode 100644 index 25a1313..0000000 --- a/source/gnome-extra/deluge/deluge-0.5.4.1-boostmt.diff +++ /dev/null @@ -1,15 +0,0 @@ -diff -Naur deluge-0.5.4/setup.py deluge-0.5.4.new/setup.py ---- deluge-0.5.4/setup.py 2007-08-05 17:40:25.000000000 +0530 -+++ deluge-0.5.4.new/setup.py 2007-08-09 00:22:20.000000000 +0530 -@@ -153,8 +153,9 @@ - 'boost_thread', 'z', 'pthread', 'ssl'] - print 'Libraries nomt' - elif boosttype == "mt": -- librariestype = ['boost_filesystem-mt', 'boost_date_time-mt', -- 'boost_thread-mt', 'z', 'pthread', 'ssl'] -+ librariestype = ['boost_filesystem-gcc42-mt', -+ 'boost_date_time-gcc42-mt', -+ 'boost_thread-gcc42-mt', 'z', 'pthread', 'ssl'] - print 'Libraries mt' - - def fetchCpp(): diff --git a/source/gnome-extra/deluge/deluge-0.5.5-boostmt.diff b/source/gnome-extra/deluge/deluge-0.5.5-boostmt.diff new file mode 100644 index 0000000..25a1313 --- /dev/null +++ b/source/gnome-extra/deluge/deluge-0.5.5-boostmt.diff @@ -0,0 +1,15 @@ +diff -Naur deluge-0.5.4/setup.py deluge-0.5.4.new/setup.py +--- deluge-0.5.4/setup.py 2007-08-05 17:40:25.000000000 +0530 ++++ deluge-0.5.4.new/setup.py 2007-08-09 00:22:20.000000000 +0530 +@@ -153,8 +153,9 @@ + 'boost_thread', 'z', 'pthread', 'ssl'] + print 'Libraries nomt' + elif boosttype == "mt": +- librariestype = ['boost_filesystem-mt', 'boost_date_time-mt', +- 'boost_thread-mt', 'z', 'pthread', 'ssl'] ++ librariestype = ['boost_filesystem-gcc42-mt', ++ 'boost_date_time-gcc42-mt', ++ 'boost_thread-gcc42-mt', 'z', 'pthread', 'ssl'] + print 'Libraries mt' + + def fetchCpp(): From priyank at frugalware.org Tue Sep 11 17:09:24 2007 From: priyank at frugalware.org (Priyank) Date: Tue Sep 11 17:09:26 2007 Subject: [Frugalware-git] frugalware-current: sakura-1.2.1-1-i686 Message-ID: <20070911150924.996A713A4007@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=2ac89a6edfb1627205381147b8994946be8d0f6e commit 2ac89a6edfb1627205381147b8994946be8d0f6e Author: Priyank Date: Tue Sep 11 20:33:55 2007 +0530 sakura-1.2.1-1-i686 * Version bump diff --git a/source/xapps-extra/sakura/FrugalBuild b/source/xapps-extra/sakura/FrugalBuild index 5d2bb4f..cb171ea 100644 --- a/source/xapps-extra/sakura/FrugalBuild +++ b/source/xapps-extra/sakura/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: Priyank Gosalia pkgname=sakura -pkgver=1.2.0 +pkgver=1.2.1 pkgrel=1 pkgdesc="Sakura is a terminal emulator based on GTK and VTE." url="http://pleyades.net/david/sakura.php" @@ -14,7 +14,7 @@ source=(http://pleyades.net/david/projects/$pkgname/$pkgname-$pkgver.tar.bz2) _F_desktop_name=Sakura _F_desktop_icon=terminal-tango.png _F_desktop_categories="System;TerminalEmulator;" -sha1sums=('ac650ed6823093e8da367f5fa3bb8a13a2e8e011') +sha1sums=('46bd768631f0ea8f790eb040fbddc3227896aeac') build() { From vmiklos at frugalware.org Tue Sep 11 17:11:26 2007 From: vmiklos at frugalware.org (VMiklos) Date: Tue Sep 11 17:11:28 2007 Subject: [Frugalware-git] frugalware-current: sbcl-1.0.9-1-i686 Message-ID: <20070911151126.886B113A4007@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=af07ecc68d427f339576bba64f0337d0d71fc7e2 commit af07ecc68d427f339576bba64f0337d0d71fc7e2 Author: VMiklos Date: Tue Sep 11 17:10:07 2007 +0200 sbcl-1.0.9-1-i686 version bump diff --git a/source/devel-extra/sbcl/FrugalBuild b/source/devel-extra/sbcl/FrugalBuild index 40da684..434936f 100644 --- a/source/devel-extra/sbcl/FrugalBuild +++ b/source/devel-extra/sbcl/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: VMiklos pkgname=sbcl -pkgver=1.0.8 +pkgver=1.0.9 pkgrel=1 pkgdesc="Steel Bank Common Lisp" url="http://sbcl.sourceforge.net/" @@ -13,7 +13,7 @@ archs=('i686' 'x86_64') _F_sourceforge_ext="-source.tar.bz2" Finclude sourceforge source=($source $pkgname.sh) -sha1sums=('14e03ec07c07734cabb64015f41b9bd5a8a2960c' \ +sha1sums=('30180ab9657c17ccd5f2a9360132cfe4286e2704' \ '9357b6f2d69801cccfa5070706c16ffc9dc821bc') build() From crazy at frugalware.org Tue Sep 11 17:19:53 2007 From: crazy at frugalware.org (crazy) Date: Tue Sep 11 17:19:56 2007 Subject: [Frugalware-git] frugalware-current: virtualbox-1.5.0-1-i686 Message-ID: <20070911151953.0596413A4007@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=aa7645077870e35a88a5e3b22bdbf33e1166213c commit aa7645077870e35a88a5e3b22bdbf33e1166213c Author: crazy Date: Tue Sep 11 17:12:41 2007 +0200 virtualbox-1.5.0-1-i686 * Version bump * fixed get-vbox-additions and added support for * downloading the OSE additions too * reworked patch .. time to send upstream diff --git a/source/xapps-extra/virtualbox/FrugalBuild b/source/xapps-extra/virtualbox/FrugalBuild index 01fcadf..681d610 100644 --- a/source/xapps-extra/virtualbox/FrugalBuild +++ b/source/xapps-extra/virtualbox/FrugalBuild @@ -3,8 +3,8 @@ pkgname=virtualbox realname=VirtualBox -pkgver=1.4.0 -pkgrel=7 +pkgver=1.5.0 +pkgrel=1 pkgdesc="InnoTek VirtualBox is a family of powerful x86 virtualization products for enterprise as well as home use." url="http://www.virtualbox.org" Finclude kernel-module @@ -15,17 +15,18 @@ rodepends=('wget') groups=('xapps-extra') archs=('i686' '!x86_64') up2date="lynx -dump http://www.virtualbox.org/wiki/Downloads | grep 'OSE tarball' | sed 's/.*VirtualBox //' | sed 's/ OSE.*//'" -source=(http://www.virtualbox.org/download/$pkgver/$realname-OSE-$pkgver.tar.bz2 \ - vboxsvc virtualbox rc.virtualbox vbox.png get-vbox-additions README.Frugalware damn_compile.patch) -sha1sums=('352a7e1291cef696dc65149a203b950d8b766f41' \ +source=(http://www.virtualbox.org/download/$pkgver/${realname}-${pkgver}_OSE.tar.bz2 \ + vboxsvc virtualbox rc.virtualbox vbox.png get-vbox-additions README.Frugalware \ + Xcursor.patch) +sha1sums=('b4cb5faac03d613e09357ccdf2f91b852d92b006' \ 'e32ebff11bb235b50f8826b70d85dbcf4a56aee4' \ '3c0c856b9ad5f186405e87cf6eac09f1060b62cd' \ 'f27e692f67846fe3981a9620a364789fc49a9384' \ 'cfdab4db1c1ae3f589e2debd551a46060cc66fd0' \ - '8d4e92a9529c83e9d580c672981844341cf63105' \ + '13bcd7e1603a788e1bc07397d5a75cd8d62acd4c' \ '5549ef89ac8abaa3a070e82cc830df931a9cb97a' \ - '1ca1657ecf4df64183baa68f49f53c6c31ada25e') -_F_cd_path="$realname-OSE-$pkgver" + 'ff3e6b6cc1703d0c1dadfc18b3807a17824c5555') +_F_cd_path="${realname}-${pkgver}_OSE" install=$pkgname.install options=('scriptlet' 'force') @@ -37,7 +38,6 @@ _F_desktop_categories="System;" build() { Fcd - Fpatchall ## yeah fscking realize is 2007 and xfree died long time ago .. WTH! Fsed '/usr/X11R6/bin/xterm' '/usr/bin/xterm' \ diff --git a/source/xapps-extra/virtualbox/Xcursor.patch b/source/xapps-extra/virtualbox/Xcursor.patch new file mode 100644 index 0000000..8e2ec05 --- /dev/null +++ b/source/xapps-extra/virtualbox/Xcursor.patch @@ -0,0 +1,10 @@ +--- Config.kmk.orig 2007-09-11 01:11:29.000000000 +0200 ++++ Config.kmk 2007-09-11 01:12:23.000000000 +0200 +@@ -2048,6 +2048,7 @@ else # the gcc guys: + TEMPLATE_VBOXQTGUIEXE_LIBS += \ + Xext \ + X11 \ ++ Xcursor \ + m \ + $(LIB_PTHREAD) + TEMPLATE_VBOXQTGUIEXE_LIBPATH += \ diff --git a/source/xapps-extra/virtualbox/damn_compile.patch b/source/xapps-extra/virtualbox/damn_compile.patch deleted file mode 100644 index cb099f9..0000000 --- a/source/xapps-extra/virtualbox/damn_compile.patch +++ /dev/null @@ -1,11 +0,0 @@ -diff -Nurp VirtualBox-OSE-1.4.0/Config.kmk VirtualBox-OSE-1.4.0-p/Config.kmk ---- VirtualBox-OSE-1.4.0/Config.kmk 2007-06-06 08:06:07.000000000 +0200 -+++ VirtualBox-OSE-1.4.0-p/Config.kmk 2007-08-14 00:59:29.000000000 +0200 -@@ -1861,6 +1861,7 @@ else # the gcc guys: - TEMPLATE_VBOXQTGUIEXE_LIBS += \ - Xext \ - X11 \ -+ Xcursor \ - m \ - $(LIB_PTHREAD) - TEMPLATE_VBOXQTGUIEXE_LIBPATH += \ diff --git a/source/xapps-extra/virtualbox/get-vbox-additions b/source/xapps-extra/virtualbox/get-vbox-additions index 4deeb8d..9dc0433 100644 --- a/source/xapps-extra/virtualbox/get-vbox-additions +++ b/source/xapps-extra/virtualbox/get-vbox-additions @@ -3,7 +3,7 @@ # get-vbox-additions - gets the VirtualBox additions ISO # Copyright (C) 2007 Alex Smith -version="1.3.8" +version="1.5.0" if [ "`whoami`" != "root" ]; then echo "Must be run as root!" @@ -12,7 +12,17 @@ fi echo ":: Downloading Guest Additions for VirtualBox $version ..." -( cd /usr/lib/VirtualBox/additions && wget http://www.virtualbox.org/download/${version}/VBoxGuestAdditions_${version}.iso && mv VBoxGuestAdditions_${version}.iso VBoxGuestAdditions.iso ) + +if [ "$1" == "--ose" ]; then + ( cd /usr/lib/VirtualBox/additions && \ + wget http://www.virtualbox.org/download/${version}/VBoxGuestAdditions_${version}_OSE.iso && \ + mv VBoxGuestAdditions_${version}_OSE.iso VBoxGuestAdditions.iso ) + +else + ( cd /usr/lib/VirtualBox/additions && \ + wget http://www.virtualbox.org/download/${version}/VBoxGuestAdditions_${version}.iso && \ + mv VBoxGuestAdditions_${version}.iso VBoxGuestAdditions.iso ) +fi echo ":: Done!" From priyank at frugalware.org Tue Sep 11 17:21:04 2007 From: priyank at frugalware.org (Priyank) Date: Tue Sep 11 17:21:11 2007 Subject: [Frugalware-git] gfpm: gfpm-about: removed translator names from source. Message-ID: <20070911152104.AF24413A4007@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gfpm.git;a=commitdiff;h=b745ffa5de872a2f382f60bd9281106fd7efc8c1 commit b745ffa5de872a2f382f60bd9281106fd7efc8c1 Author: Priyank Date: Tue Sep 11 20:47:37 2007 +0530 gfpm-about: removed translator names from source. * instead let the translators add their names themselves by translating the msg-id "translator-name" in their translations. diff --git a/src/gfpm-about.c b/src/gfpm-about.c index 7753d68..a1916c3 100644 --- a/src/gfpm-about.c +++ b/src/gfpm-about.c @@ -51,10 +51,6 @@ static gchar *authors[] = { "Priyank M. Gosalia ", "Miklos Nemeth ", NULL }; -static gchar *translators[] = { "Vajna Miklos (hu)", - "Michel Hermier (fr)", - NULL - }; static gchar *artists[] = { "Viktor Gondor ", "Sekkyumu ", @@ -75,7 +71,7 @@ gfpm_about (void) "license", license, "authors", authors, "artists", artists, - "translator-credits", translators, + "translator-credits", _("translator-name"), "website", "http://www.frugalware.org/", "website-label", "http://www.frugalware.org/", "logo", about_pixbuf, From priyank at frugalware.org Tue Sep 11 17:59:28 2007 From: priyank at frugalware.org (Priyank) Date: Tue Sep 11 17:59:30 2007 Subject: [Frugalware-git] fw-control-center: gnetconfig-interface: Fixed a bug where the last active profile was not highlighted automatically when gnetconfig is started. Message-ID: <20070911155928.DD23713A4007@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=fw-control-center.git;a=commitdiff;h=55abf9539208032577b77444a5d8ccdf73837315 commit 55abf9539208032577b77444a5d8ccdf73837315 Author: Priyank Date: Tue Sep 11 21:25:49 2007 +0530 gnetconfig-interface: Fixed a bug where the last active profile was not highlighted automatically when gnetconfig is started. diff --git a/gnetconfig/src/gnetconfig-interface.c b/gnetconfig/src/gnetconfig-interface.c index af55392..f9626ba 100644 --- a/gnetconfig/src/gnetconfig-interface.c +++ b/gnetconfig/src/gnetconfig-interface.c @@ -368,27 +368,28 @@ gnetconfig_populate_profile_list (void) gn_profile_store = GTK_LIST_STORE (gn_profile_model); gtk_list_store_clear (gn_profile_store); pixbuf = gtk_widget_render_icon (gn_profile_combo, GTK_STOCK_APPLY, GTK_ICON_SIZE_MENU, NULL); + fn = fwnet_lastprofile (); while (file != NULL) { gtk_list_store_append (gn_profile_store, &iter); gtk_list_store_set (gn_profile_store, &iter, 1, file, -1); - if ((fn=fwnet_lastprofile())) + if (fn != NULL) { + index++; if (!strcmp(file,fn)) { - index++; gtk_list_store_set (gn_profile_store, &iter, 0, pixbuf, -1); gchar *msg = g_strdup_printf ("%s %s", _("Active network profile:"), fn); gnetconfig_update_status (msg); + gtk_combo_box_set_active (GTK_COMBO_BOX(gn_profile_combo), index); g_free (msg); } - g_free (fn); } file = g_dir_read_name (dir); } - gtk_combo_box_set_active (GTK_COMBO_BOX(gn_profile_combo), index); g_dir_close (dir); + g_free (fn); return; } From priyank at frugalware.org Tue Sep 11 18:25:05 2007 From: priyank at frugalware.org (Priyank) Date: Tue Sep 11 18:25:07 2007 Subject: [Frugalware-git] fw-control-center: AUTHORS: Added translator credit for dk Message-ID: <20070911162505.6448113A4007@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=fw-control-center.git;a=commitdiff;h=79cb0f3e0736f9349192177fa130d2985c0c020e commit 79cb0f3e0736f9349192177fa130d2985c0c020e Author: Priyank Date: Tue Sep 11 21:30:28 2007 +0530 AUTHORS: Added translator credit for dk diff --git a/gnetconfig/AUTHORS b/gnetconfig/AUTHORS index 02290de..da5f1b2 100644 --- a/gnetconfig/AUTHORS +++ b/gnetconfig/AUTHORS @@ -1,8 +1,11 @@ Developers: +=========== Priyank Gosalia Christian Hamar alias krix Translators: +============ +Carl Andersen (dk) Finn (de) Michel Hermier (fr) Vajna Miklos (hu) From vmiklos at frugalware.org Tue Sep 11 18:38:12 2007 From: vmiklos at frugalware.org (VMiklos) Date: Tue Sep 11 18:38:14 2007 Subject: [Frugalware-git] bmf: libx11-1.1.3-1bmf1-i686 Message-ID: <20070911163812.D913913A4007@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=bmf.git;a=commitdiff;h=0073a7139cad60421359eb0aa3771b9c559ffdc8 commit 0073a7139cad60421359eb0aa3771b9c559ffdc8 Author: VMiklos Date: Tue Sep 11 18:36:54 2007 +0200 libx11-1.1.3-1bmf1-i686 workaround for #2313 diff --git a/source/x11/libx11/FrugalBuild b/source/x11/libx11/FrugalBuild new file mode 100644 index 0000000..faa7ffd --- /dev/null +++ b/source/x11/libx11/FrugalBuild @@ -0,0 +1,19 @@ +# Compiling Time: 1.21 SBU +# Maintainer: Christian Hamar alias krix + +pkgname=libx11 +_F_xorg_name=libX11 +pkgver=1.1.3 +pkgrel=1bmf1 +pkgdesc="X.Org X11 library" +url="http://xorg.freedesktop.org" +groups=('x11' 'xorg-core' 'xorg-libs') +archs=('i686' 'x86_64') +depends=('xproto' 'libxdmcp' 'xtrans' 'kbproto' 'libxau' 'libxcb') +makedepends=('pkgconfig' 'xf86bigfontproto' 'bigreqsproto' \ + 'xextproto' 'xcmiscproto' 'inputproto' 'util-macros') +Finclude xorg +Fconfopts="$Fconfopts --enable-ipv6 --enable-xlocaledir --enable-xlocale --with-xcb=yes" + +sha1sums=('235f69172b262f874d2a2d7bd17e8197aea5b767') +# optimization OK From priyank at frugalware.org Tue Sep 11 19:57:24 2007 From: priyank at frugalware.org (Priyank) Date: Tue Sep 11 19:57:26 2007 Subject: [Frugalware-git] fw-control-center: gnetconfig: updated NEWS for 0.1.2 Message-ID: <20070911175724.6883C13A4007@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=fw-control-center.git;a=commitdiff;h=4ec37eb02339d4e9c7d108e7ab2f2ad4593f12e4 commit 4ec37eb02339d4e9c7d108e7ab2f2ad4593f12e4 Author: Priyank Date: Tue Sep 11 23:23:39 2007 +0530 gnetconfig: updated NEWS for 0.1.2 diff --git a/gnetconfig/NEWS b/gnetconfig/NEWS index 7a87b35..2a2c834 100644 --- a/gnetconfig/NEWS +++ b/gnetconfig/NEWS @@ -1,5 +1,8 @@ VERSION DESCRIPTION --------------------------------------------------------------------------------------------------------- +0.1.2 - New translation : Danish (dk) + - BUGFIX: Fixed a bug where the last active profile was not + automatically highlighted in the profile list. 0.1.1 - Many small bugfixes - New default icons - Added gnetconfig.desktop for GNOME/XFCE From priyank at frugalware.org Tue Sep 11 20:02:39 2007 From: priyank at frugalware.org (Priyank) Date: Tue Sep 11 20:02:40 2007 Subject: [Frugalware-git] frugalware-current: transmission-0.82-1-i686 Message-ID: <20070911180239.905A113A4007@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=2c4e5dd9035018c3ae5495204e4c601f3bbb9864 commit 2c4e5dd9035018c3ae5495204e4c601f3bbb9864 Author: Priyank Date: Tue Sep 11 23:24:02 2007 +0530 transmission-0.82-1-i686 * Version bump diff --git a/source/xapps-extra/transmission/FrugalBuild b/source/xapps-extra/transmission/FrugalBuild index 75eb131..d10017a 100644 --- a/source/xapps-extra/transmission/FrugalBuild +++ b/source/xapps-extra/transmission/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: Priyank Gosalia pkgname=transmission -pkgver=0.81 +pkgver=0.82 pkgrel=1 pkgdesc="A free, lightweight BitTorrent Client." url="http://transmission.m0k.org/" @@ -10,8 +10,8 @@ depends=('gtk+2' 'gettext' 'openssl') groups=('xapps-extra') archs=('i686') up2date="lynx -dump -nolist http://download.m0k.org/transmission/files/ | sort -r | grep -m1 tar.gz | sed 's/.*n-\(.*\).t.*/\1/'" -source=(http://download.m0k.org/transmission/files/Transmission-$pkgver.tar.gz) -sha1sums=('5e033187608184dd165b11e7cee1f4242ea8913c') +source=(http://download.m0k.org/transmission/files/$pkgname-$pkgver.tar.gz) +sha1sums=('05c4c7b0cf7b1dd6ea504f9ea0c6d84746c9b317') build() { From priyank at frugalware.org Tue Sep 11 20:23:35 2007 From: priyank at frugalware.org (Priyank) Date: Tue Sep 11 20:23:37 2007 Subject: [Frugalware-git] gfpm: gfpm-interface: cb_gfpm_install_file_clicked(): hide the progress bar if gfpm fails to prepare the transaction. Message-ID: <20070911182335.F407D13A4007@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gfpm.git;a=commitdiff;h=307d7f7a18744230dbd7153edfc8ebf7a8bfe739 commit 307d7f7a18744230dbd7153edfc8ebf7a8bfe739 Author: Priyank Date: Tue Sep 11 23:50:11 2007 +0530 gfpm-interface: cb_gfpm_install_file_clicked(): hide the progress bar if gfpm fails to prepare the transaction. diff --git a/src/gfpm-interface.c b/src/gfpm-interface.c index 5d48077..bb4fcb5 100644 --- a/src/gfpm-interface.c +++ b/src/gfpm-interface.c @@ -1501,7 +1501,10 @@ cb_gfpm_install_file_clicked (GtkButton *button, gpointer data) /* add the target */ pacman_trans_addtarget ((char*)fpm); if (gfpm_trans_prepare(trans_data) == -1) + { + gfpm_progress_show (FALSE); goto cleanup; + } if (pacman_trans_commit(&trans_data) == -1) { str = g_strdup_printf (_("Failed to commit transaction (%s)\n"), pacman_strerror (pm_errno)); @@ -1520,6 +1523,7 @@ cb_gfpm_install_file_clicked (GtkButton *button, gpointer data) gtk_widget_hide (gfpm_inst_from_file_dlg); if (gfpm_progress_is_autoclose_checkbtn_set()) gfpm_progress_show (FALSE); + return; } From priyank at frugalware.org Tue Sep 11 20:33:34 2007 From: priyank at frugalware.org (Priyank) Date: Tue Sep 11 20:33:36 2007 Subject: [Frugalware-git] fw-control-center: gnetconfig: Added gnetconfig.desktop for KDE Message-ID: <20070911183334.E947913A4007@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=fw-control-center.git;a=commitdiff;h=975232bca48f515b2945fb531f07d818f30fb746 commit 975232bca48f515b2945fb531f07d818f30fb746 Author: Priyank Date: Wed Sep 12 00:00:09 2007 +0530 gnetconfig: Added gnetconfig.desktop for KDE * updated NEWS again. * updated version in README. diff --git a/gnetconfig/Makefile.am b/gnetconfig/Makefile.am index 7a7009c..3a55316 100644 --- a/gnetconfig/Makefile.am +++ b/gnetconfig/Makefile.am @@ -10,6 +10,9 @@ icon_DATA = data/gnetconfig.png data/network-up.png data/network-down.png \ desktopdir = $(datadir)/applications desktop_DATA = data/gnetconfig.desktop +desktopkdir = $(datadir)/applications/kde +desktopk_DATA = data/gnetconfig-kde.desktop + EXTRA_DIST = $(share_DATA) \ $(icon_DATA) diff --git a/gnetconfig/NEWS b/gnetconfig/NEWS index 2a2c834..a827b20 100644 --- a/gnetconfig/NEWS +++ b/gnetconfig/NEWS @@ -3,6 +3,7 @@ VERSION DESCRIPTION 0.1.2 - New translation : Danish (dk) - BUGFIX: Fixed a bug where the last active profile was not automatically highlighted in the profile list. + - Added gnetconfig.desktop for KDE 0.1.1 - Many small bugfixes - New default icons - Added gnetconfig.desktop for GNOME/XFCE diff --git a/gnetconfig/README b/gnetconfig/README index e50b599..6224424 100644 --- a/gnetconfig/README +++ b/gnetconfig/README @@ -1,4 +1,4 @@ -Gnetconfig 0.1.1 +Gnetconfig 0.1.2 Gnetconfig is a graphical network configuration tool for Frugalware Linux. Gnetconfig uses the libfwnetconfig library to perform network From vmiklos at frugalware.org Tue Sep 11 20:34:33 2007 From: vmiklos at frugalware.org (VMiklos) Date: Tue Sep 11 20:34:35 2007 Subject: [Frugalware-git] pacman-tools: dg: initial support for binary files Message-ID: <20070911183433.CE76313A4007@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=pacman-tools.git;a=commitdiff;h=727bc5fe188ff79f75054fc05298ea2003996120 commit 727bc5fe188ff79f75054fc05298ea2003996120 Author: VMiklos Date: Tue Sep 11 20:24:49 2007 +0200 dg: initial support for binary files diff --git a/darcs-git.py b/darcs-git.py index d4587d2..c2a1c71 100755 --- a/darcs-git.py +++ b/darcs-git.py @@ -77,7 +77,7 @@ def get_root(): return root def get_diff(files = ""): - sock = os.popen("git diff HEAD %s" % files) + sock = os.popen("git diff HEAD --binary %s" % files) lines = sock.readlines() sock.close() if len(lines) and lines[0].startswith(""): @@ -109,10 +109,12 @@ def scan_dir(files=""): header = [] hunk = [] file = None + binary = False for i in lines: if i.startswith("#"): continue elif i.startswith("diff"): + binary = False if inhunk: file.hunks.append("".join(hunk)) hunk = [] @@ -128,7 +130,9 @@ def scan_dir(files=""): header.append(i) if i == "--- /dev/null\n": file.new = True - elif i.startswith("@@"): + elif i.startswith("@@") or i.startswith("GIT binary patch"): + if i.startswith("GIT binary patch"): + binary = True if inheader: inheader = False file.header = "".join(header) @@ -138,7 +142,7 @@ def scan_dir(files=""): hunk = [] inhunk = True hunk.append(i) - elif i[0] == "+" or i[0] == "-" or i[0] == " ": + elif i[0] == "+" or i[0] == "-" or i[0] == " " or binary: if inhunk: hunk.append(i) else: From vmiklos at frugalware.org Tue Sep 11 20:34:34 2007 From: vmiklos at frugalware.org (VMiklos) Date: Tue Sep 11 20:34:36 2007 Subject: [Frugalware-git] pacman-tools: dg: binary files - part 2 Message-ID: <20070911183434.1859E13A400D@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=pacman-tools.git;a=commitdiff;h=c29d71586d8a1624e925ef414991c055c2caaba9 commit c29d71586d8a1624e925ef414991c055c2caaba9 Author: VMiklos Date: Tue Sep 11 20:32:31 2007 +0200 dg: binary files - part 2 handle the case when not all of the new files are picked diff --git a/darcs-git.py b/darcs-git.py index c2a1c71..f0939fb 100755 --- a/darcs-git.py +++ b/darcs-git.py @@ -124,7 +124,7 @@ def scan_dir(files=""): file = File() inheader = True header.append(i) - elif i.startswith("+++"): + elif i.startswith("+++") or i.startswith("index "): header.append(i) elif i.startswith("---"): header.append(i) @@ -318,11 +318,21 @@ Options: for i in allstatus.hunks: if not status.ispicked(i): lines = i.text.split("\n") - if "--- /dev/null" in lines: + new = False + for j in lines: + if j.startswith("index 0000000"): + new = True + break + if new: newlist.append(diff2filename(lines[0])) else: lines = i.text.split("\n") - if "--- /dev/null" in lines: + new = False + for j in lines: + if j.startswith("index 0000000"): + new = True + break + if new: # this is a newly added file but maybe it has # been updated since add. add it again os.system("git add %s" % diff2filename(lines[0])) @@ -420,7 +430,12 @@ Options: # we need git reset too if we revert deleted files for i in status.hunks: lines = i.text.split("\n") - if "+++ /dev/null" in lines: + new = False + for j in lines: + if j.startswith("index 0000000"): + new = True + break + if new: os.system("git reset HEAD %s >/dev/null" % diff2filename(lines[0])) revert_stale() print "Finished reverting." From vmiklos at frugalware.org Tue Sep 11 20:34:34 2007 From: vmiklos at frugalware.org (VMiklos) Date: Tue Sep 11 20:34:37 2007 Subject: [Frugalware-git] pacman-tools: dg: small cleanup Message-ID: <20070911183434.47C5813A4007@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=pacman-tools.git;a=commitdiff;h=a0fe2ec760a7483d9b6bb3360788b1c805557bfa commit a0fe2ec760a7483d9b6bb3360788b1c805557bfa Author: VMiklos Date: Tue Sep 11 20:33:19 2007 +0200 dg: small cleanup diff --git a/darcs-git.py b/darcs-git.py index f0939fb..5b13e08 100755 --- a/darcs-git.py +++ b/darcs-git.py @@ -12,7 +12,6 @@ class File: def __init__(self): self.header = None self.hunks = [] - self.new = False class FileHunk: def __init__(self, hunk, picked=False): @@ -124,12 +123,8 @@ def scan_dir(files=""): file = File() inheader = True header.append(i) - elif i.startswith("+++") or i.startswith("index "): + elif i.startswith("+++") or i.startswith("---") or i.startswith("index "): header.append(i) - elif i.startswith("---"): - header.append(i) - if i == "--- /dev/null\n": - file.new = True elif i.startswith("@@") or i.startswith("GIT binary patch"): if i.startswith("GIT binary patch"): binary = True From priyank at frugalware.org Tue Sep 11 20:40:02 2007 From: priyank at frugalware.org (Priyank) Date: Tue Sep 11 20:40:17 2007 Subject: [Frugalware-git] fw-control-center: gnetconfig-kde.desktop: forgot to add :P Message-ID: <20070911184003.9322713A4007@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=fw-control-center.git;a=commitdiff;h=58a4c0fedb64af1247793e1a27e0ab19873cbbdb commit 58a4c0fedb64af1247793e1a27e0ab19873cbbdb Author: Priyank Date: Wed Sep 12 00:06:42 2007 +0530 gnetconfig-kde.desktop: forgot to add :P diff --git a/gnetconfig/data/gnetconfig-kde.desktop b/gnetconfig/data/gnetconfig-kde.desktop new file mode 100644 index 0000000..e79b0af --- /dev/null +++ b/gnetconfig/data/gnetconfig-kde.desktop @@ -0,0 +1,11 @@ +[Desktop Entry] +Encoding=UTF-8 +Name=Gnetconfig +Comment=Graphical network configuration tool for Frugalware Linux. +Exec=kdesu gnetconfig +Terminal=false +Categories=KDE;Application;System; +Type=Application +StartupNotify=false +Icon=gnetconfig.png +OnlyShowIn=KDE From priyank at frugalware.org Tue Sep 11 20:49:38 2007 From: priyank at frugalware.org (Priyank) Date: Tue Sep 11 20:49:40 2007 Subject: [Frugalware-git] frugalware-current: gnetconfig-0.1.2-1-i686 Message-ID: <20070911184938.2F63613A4007@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=0a42ff853a204c018f32b7e05ada3d35cb4d3184 commit 0a42ff853a204c018f32b7e05ada3d35cb4d3184 Author: Priyank Date: Wed Sep 12 00:14:31 2007 +0530 gnetconfig-0.1.2-1-i686 * Version bump diff --git a/source/xapps/gnetconfig/FrugalBuild b/source/xapps/gnetconfig/FrugalBuild index 3924e03..61f9e14 100644 --- a/source/xapps/gnetconfig/FrugalBuild +++ b/source/xapps/gnetconfig/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: Priyank Gosalia pkgname=gnetconfig -pkgver=0.1.1 +pkgver=0.1.2 pkgrel=1 pkgdesc="A graphical network configuration tool for Frugalware Linux." url="http://ftp.frugalware.org/pub/other/fw-control-center" From priyank at frugalware.org Tue Sep 11 20:56:31 2007 From: priyank at frugalware.org (Priyank) Date: Tue Sep 11 20:56:33 2007 Subject: [Frugalware-git] fw-control-center: gnetconfig: post-release version bump Message-ID: <20070911185631.3E79413A4007@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=fw-control-center.git;a=commitdiff;h=670177a07c369c995465a0e52f82f13e1abd4766 commit 670177a07c369c995465a0e52f82f13e1abd4766 Author: Priyank Date: Wed Sep 12 00:23:10 2007 +0530 gnetconfig: post-release version bump diff --git a/gnetconfig/configure.ac b/gnetconfig/configure.ac index 3a70aab..1b8dae6 100644 --- a/gnetconfig/configure.ac +++ b/gnetconfig/configure.ac @@ -1,7 +1,7 @@ ENV_CFLAGS=$CFLAGS AC_PREREQ(2.59) -AC_INIT([gnetconfig], 0.1.2, [priyankmg@gmail.com], gnetconfig) +AC_INIT([gnetconfig], 0.1.3, [priyankmg@gmail.com], gnetconfig) AC_CONFIG_SRCDIR([src/gnetconfig.c]) AC_LANG(C) AM_CONFIG_HEADER(config.h) From vmiklos at frugalware.org Tue Sep 11 22:57:27 2007 From: vmiklos at frugalware.org (VMiklos) Date: Tue Sep 11 22:57:30 2007 Subject: [Frugalware-git] frugalware-current: gnupg-1.4.7-1-i686 Message-ID: <20070911205727.E73F513A4007@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=492131e2a382e1d03f96dc79792c4babfd6de5ed commit 492131e2a382e1d03f96dc79792c4babfd6de5ed Author: VMiklos Date: Tue Sep 11 22:54:31 2007 +0200 gnupg-1.4.7-1-i686 up2date fix diff --git a/source/apps/gnupg/FrugalBuild b/source/apps/gnupg/FrugalBuild index 7e2fdca..d83450a 100644 --- a/source/apps/gnupg/FrugalBuild +++ b/source/apps/gnupg/FrugalBuild @@ -9,10 +9,9 @@ url="http://www.gnupg.org/" depends=('zlib' 'bzip2' 'readline') groups=('apps' 'chroot-core') archs=('i686' 'x86_64') -# quite handy, they switched to .bz2 for 2.x -# so yes, this is intentional, voroskoi will bump this pkg to 2.x when he says -# 2.x is stable enough -up2date="lynx -dump ftp://ftp.gnupg.org/GnuPG/gnupg/|Flasttar" +# yes, this is intentional, voroskoi will bump this pkg to 2.x when he says 2.x +# is stable enough +up2date="lynx -dump http://ftp.gnupg.org/GnuPG/gnupg/ |grep -v 2.0 |Flasttar" source=(ftp://ftp.gnupg.org/GnuPG/gnupg/$pkgname-$pkgver.tar.gz) signatures=($source.sig) Finclude texinfo From vmiklos at frugalware.org Wed Sep 12 00:06:48 2007 From: vmiklos at frugalware.org (VMiklos) Date: Wed Sep 12 00:06:51 2007 Subject: [Frugalware-git] frugalware-current: xscreensaver-5.03-2-i686 Message-ID: <20070911220648.4804B13A4007@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=cc41277fe2821d78cef7c202a8fa393d5fe92a14 commit cc41277fe2821d78cef7c202a8fa393d5fe92a14 Author: VMiklos Date: Wed Sep 12 00:05:51 2007 +0200 xscreensaver-5.03-2-i686 no longer remove pacman.6, it won't conflict diff --git a/source/xlib/xscreensaver/FrugalBuild b/source/xlib/xscreensaver/FrugalBuild index dfff29b..5ca896a 100644 --- a/source/xlib/xscreensaver/FrugalBuild +++ b/source/xlib/xscreensaver/FrugalBuild @@ -1,10 +1,10 @@ # Compiling Time: 1.65 SBU # Maintainer: Christian Hamar alias krix -# Old Maintainer: VMiklos +# Contributor: VMiklos pkgname=xscreensaver pkgver=5.03 -pkgrel=1 +pkgrel=2 pkgdesc="A screen saver and locker for the X Window System." url="http://www.jwz.org/xscreensaver" rodepends=('xscreensaver-data') @@ -26,7 +26,6 @@ build() Fpatchall Fmake --with-shadow --with-jpeg --with-gl --without-pam make install_prefix=$Fdestdir install || Fdie - Frm usr/share/man/man6/pacman.6 Frm usr/share/man/man6/barcode.6 Fmkdir /usr/share/wallpapers From janny at frugalware.org Wed Sep 12 00:12:37 2007 From: janny at frugalware.org (janny) Date: Wed Sep 12 00:12:40 2007 Subject: [Frugalware-git] frugalware-current: vim-7.1-3-i686 Message-ID: <20070911221237.DF6B113A4007@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=b1b5260db2b9d0213e03920138fc9b48ffba359b commit b1b5260db2b9d0213e03920138fc9b48ffba359b Author: janny Date: Wed Sep 12 00:10:53 2007 +0200 vim-7.1-3-i686 added README.Frugalware asciidoc syntax and add other _F_ syntax from util.sh diff --git a/source/apps/vim/frugalware.diff b/source/apps/vim/frugalware.diff index e441099..a0b580a 100644 --- a/source/apps/vim/frugalware.diff +++ b/source/apps/vim/frugalware.diff @@ -1,35 +1,6 @@ -diff -Naur vim64.orig/runtime/filetype.vim vim64/runtime/filetype.vim ---- vim64.orig/runtime/filetype.vim 2005-10-13 12:19:37.000000000 +0200 -+++ vim64/runtime/filetype.vim 2005-11-15 01:02:37.000000000 +0100 -@@ -1745,6 +1745,8 @@ - " Z-Shell script - au BufNewFile,BufRead zsh*,zlog* setf zsh - -+" FrugalBuild file -+au BufNewFile,BufRead FrugalBuild,*.install setf sh - - " Generic configuration file (check this last, it's just guessing!) - au BufNewFile,BufRead,StdinReadPost * -diff -Naur vim64.orig/runtime/syntax/sh.vim vim64/runtime/syntax/sh.vim ---- vim64.orig/runtime/syntax/sh.vim 2005-09-06 19:25:51.000000000 +0200 -+++ vim64/runtime/syntax/sh.vim 2005-11-15 01:21:08.000000000 +0100 -@@ -409,6 +409,10 @@ - endif - endif - -+" Useful FrugalBuild Keywords: {{{1 -+" =================== -+syn keyword shStatement Fmessage Fdie Fcd Fmkdir Frm Fcp Fcpr Fmv Finstallrel Finstall Fdirschmod Ffileschmod Fdirschown Ffileschown Fexe Fexerel Ffile Ffilerel Fdoc Fdocrel Fln Fsed Fdeststrip Fpatch Fpatchall Fconf Fmake Fmakeinstall Fbuild Frcd Frcd2 Facu Fsort Funpack_makeself Fautoconfize Finclude Flasttar Fsplit Fextract -+ - " Synchronization: {{{1 - " ================ - if !exists("sh_minlines") -This patch will make VIM 7 open fpm and fdb files as tar.bz2 archives, so you can open/edit any file within any package without the need of decompressing it first - -By Wael Nasreddine - +diff -Naur vim71.orig/runtime/autoload/tar.vim vim71/runtime/autoload/tar.vim --- vim71.orig/runtime/autoload/tar.vim 2006-10-11 20:03:43.000000000 +0200 -+++ vim71/runtime/autoload/tar.vim 2007-05-16 13:11:00.000000000 +0200 ++++ vim71/runtime/autoload/tar.vim 2007-09-11 23:26:22.000000000 +0200 @@ -110,7 +110,7 @@ if tarfile =~# '\.\(gz\|tgz\)$' " call Decho("exe silent r! gzip -d -c ".g:tar_shq.tarfile.g:tar_shq."| ".g:tar_cmd." -".g:tar_browseoptions." - ") @@ -60,9 +31,9 @@ By Wael Nasreddine let compress= "bzip2 '".tarfile."'" endif -diff -Naur a/runtime/filetype.vim b/runtime/filetype.vim ---- a/runtime/filetype.vim 2006-05-02 20:15:45.000000000 +0200 -+++ b/runtime/filetype.vim 2006-06-04 04:57:38.000000000 +0200 +diff -Naur vim71.orig/runtime/filetype.vim vim71/runtime/filetype.vim +--- vim71.orig/runtime/filetype.vim 2007-05-10 17:14:37.000000000 +0200 ++++ vim71/runtime/filetype.vim 2007-09-11 23:31:04.000000000 +0200 @@ -34,7 +34,7 @@ " Pattern used to match file names which should not be inspected. " Currently finds compressed files. @@ -72,10 +43,22 @@ diff -Naur a/runtime/filetype.vim b/runtime/filetype.vim endif " Function used for patterns that end in a star: don't set the filetype if the -diff -Naur a/runtime/plugin/tarPlugin.vim b/runtime/plugin/tarPlugin.vim ---- a/runtime/plugin/tarPlugin.vim 2005-10-18 21:16:28.000000000 +0200 -+++ b/runtime/plugin/tarPlugin.vim 2006-06-04 04:46:14.000000000 +0200 -@@ -26,6 +26,8 @@ +@@ -1726,6 +1726,11 @@ + setf hog + endfunc + ++" FrugalBuild file ++au BufNewFile,BufRead FrugalBuild,*.install setf sh ++ ++" README.Frugalware file ++au BufNewFile,BufRead README.Frugalware setf asciidoc + + " Spec (Linux RPM) + au BufNewFile,BufRead *.spec setf spec +diff -Naur vim71.orig/runtime/plugin/tarPlugin.vim vim71/runtime/plugin/tarPlugin.vim +--- vim71.orig/runtime/plugin/tarPlugin.vim 2006-09-29 22:04:39.000000000 +0200 ++++ vim71/runtime/plugin/tarPlugin.vim 2007-09-11 23:26:22.000000000 +0200 +@@ -37,6 +37,8 @@ au BufReadCmd *.tar call tar#Browse(expand("")) au BufReadCmd *.tar.gz call tar#Browse(expand("")) au BufReadCmd *.tar.bz2 call tar#Browse(expand("")) @@ -84,3 +67,69 @@ diff -Naur a/runtime/plugin/tarPlugin.vim b/runtime/plugin/tarPlugin.vim au BufReadCmd *.tar.Z call tar#Browse(expand("")) au BufReadCmd *.tgz call tar#Browse(expand("")) augroup END +diff -Naur vim71.orig/runtime/plugin/tarPlugin.vim.orig vim71/runtime/plugin/tarPlugin.vim.orig +--- vim71.orig/runtime/plugin/tarPlugin.vim.orig 1970-01-01 01:00:00.000000000 +0100 ++++ vim71/runtime/plugin/tarPlugin.vim.orig 2006-09-29 22:04:39.000000000 +0200 +@@ -0,0 +1,48 @@ ++" tarPlugin.vim -- a Vim plugin for browsing tarfiles ++" Original was copyright (c) 2002, Michael C. Toren ++" Modified by Charles E. Campbell, Jr. ++" Distributed under the GNU General Public License. ++" ++" Updates are available from . If you ++" find this script useful, or have suggestions for improvements, please ++" let me know. ++" Also look there for further comments and documentation. ++" ++" This part only sets the autocommands. The functions are in autoload/tar.vim. ++" --------------------------------------------------------------------- ++" Load Once: {{{1 ++if &cp || exists("g:loaded_tarPlugin") ++ finish ++endif ++let g:loaded_tarPlugin = 1 ++let s:keepcpo = &cpo ++set cpo&vim ++ ++" --------------------------------------------------------------------- ++" Public Interface: {{{1 ++augroup tar ++ au! ++ au BufReadCmd tarfile:* call tar#Read(expand(""), 1) ++ au FileReadCmd tarfile:* call tar#Read(expand(""), 0) ++ au BufWriteCmd tarfile:* call tar#Write(expand("")) ++ au FileWriteCmd tarfile:* call tar#Write(expand("")) ++ ++ if has("unix") ++ au BufReadCmd tarfile:*/* call tar#Read(expand(""), 1) ++ au FileReadCmd tarfile:*/* call tar#Read(expand(""), 0) ++ au BufWriteCmd tarfile:*/* call tar#Write(expand("")) ++ au FileWriteCmd tarfile:*/* call tar#Write(expand("")) ++ endif ++ ++ au BufReadCmd *.tar call tar#Browse(expand("")) ++ au BufReadCmd *.tar.gz call tar#Browse(expand("")) ++ au BufReadCmd *.tar.bz2 call tar#Browse(expand("")) ++ au BufReadCmd *.tar.Z call tar#Browse(expand("")) ++ au BufReadCmd *.tgz call tar#Browse(expand("")) ++augroup END ++ ++" --------------------------------------------------------------------- ++" Restoration And Modelines: {{{1 ++" vim: fdm=marker ++let &cpo= s:keepcpo ++unlet s:keepcpo +diff -Naur vim71.orig/runtime/syntax/sh.vim vim71/runtime/syntax/sh.vim +--- vim71.orig/runtime/syntax/sh.vim 2007-05-07 22:12:00.000000000 +0200 ++++ vim71/runtime/syntax/sh.vim 2007-09-11 23:46:48.000000000 +0200 +@@ -436,6 +436,10 @@ + endif + endif + ++" Useful FrugalBuild Keywords: {{{1 ++" =================== ++syn keyword shStatement Fmessage Fdie Fcd Fmkdir Frm Fcp Fcpr Fmv Finstallrel Finstall Fdirschmod Ffileschmod Fdirschown Ffileschown Fexe Fexerel Ffile Ffilerel Fdoc Fdocrel Fln Fsed Fdeststrip Fpatch Fpatchall Fconf Fmake Fmakeinstall Fbuild Frcd Frcd2 Facu Fsort Funpack_makeself Fautoconfize Finclude Flasttar Flasttgz Flasttarbz2 Fsplit Fextract Fcprrel Fman Fmanrel Ficon Ficonrel Fnant Fautoreconf Fdesktop Fdesktop2 Fwrapper Fmsgfmt ++ + " Synchronization: {{{1 + " ================ + if !exists("sh_minlines") From janny at frugalware.org Wed Sep 12 00:18:52 2007 From: janny at frugalware.org (janny) Date: Wed Sep 12 00:18:53 2007 Subject: [Frugalware-git] frugalware-current: vim-7.1-3-i686 Message-ID: <20070911221852.616A413A4007@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=f5a0d5f0845483bbb0a2ade32b407ba3b045e8d0 commit f5a0d5f0845483bbb0a2ade32b407ba3b045e8d0 Author: janny Date: Wed Sep 12 00:17:57 2007 +0200 vim-7.1-3-i686 remove unnecessary parts diff --git a/source/apps/vim/frugalware.diff b/source/apps/vim/frugalware.diff index a0b580a..2b5f1e9 100644 --- a/source/apps/vim/frugalware.diff +++ b/source/apps/vim/frugalware.diff @@ -67,58 +67,6 @@ diff -Naur vim71.orig/runtime/plugin/tarPlugin.vim vim71/runtime/plugin/tarPlugi au BufReadCmd *.tar.Z call tar#Browse(expand("")) au BufReadCmd *.tgz call tar#Browse(expand("")) augroup END -diff -Naur vim71.orig/runtime/plugin/tarPlugin.vim.orig vim71/runtime/plugin/tarPlugin.vim.orig ---- vim71.orig/runtime/plugin/tarPlugin.vim.orig 1970-01-01 01:00:00.000000000 +0100 -+++ vim71/runtime/plugin/tarPlugin.vim.orig 2006-09-29 22:04:39.000000000 +0200 -@@ -0,0 +1,48 @@ -+" tarPlugin.vim -- a Vim plugin for browsing tarfiles -+" Original was copyright (c) 2002, Michael C. Toren -+" Modified by Charles E. Campbell, Jr. -+" Distributed under the GNU General Public License. -+" -+" Updates are available from . If you -+" find this script useful, or have suggestions for improvements, please -+" let me know. -+" Also look there for further comments and documentation. -+" -+" This part only sets the autocommands. The functions are in autoload/tar.vim. -+" --------------------------------------------------------------------- -+" Load Once: {{{1 -+if &cp || exists("g:loaded_tarPlugin") -+ finish -+endif -+let g:loaded_tarPlugin = 1 -+let s:keepcpo = &cpo -+set cpo&vim -+ -+" --------------------------------------------------------------------- -+" Public Interface: {{{1 -+augroup tar -+ au! -+ au BufReadCmd tarfile:* call tar#Read(expand(""), 1) -+ au FileReadCmd tarfile:* call tar#Read(expand(""), 0) -+ au BufWriteCmd tarfile:* call tar#Write(expand("")) -+ au FileWriteCmd tarfile:* call tar#Write(expand("")) -+ -+ if has("unix") -+ au BufReadCmd tarfile:*/* call tar#Read(expand(""), 1) -+ au FileReadCmd tarfile:*/* call tar#Read(expand(""), 0) -+ au BufWriteCmd tarfile:*/* call tar#Write(expand("")) -+ au FileWriteCmd tarfile:*/* call tar#Write(expand("")) -+ endif -+ -+ au BufReadCmd *.tar call tar#Browse(expand("")) -+ au BufReadCmd *.tar.gz call tar#Browse(expand("")) -+ au BufReadCmd *.tar.bz2 call tar#Browse(expand("")) -+ au BufReadCmd *.tar.Z call tar#Browse(expand("")) -+ au BufReadCmd *.tgz call tar#Browse(expand("")) -+augroup END -+ -+" --------------------------------------------------------------------- -+" Restoration And Modelines: {{{1 -+" vim: fdm=marker -+let &cpo= s:keepcpo -+unlet s:keepcpo diff -Naur vim71.orig/runtime/syntax/sh.vim vim71/runtime/syntax/sh.vim --- vim71.orig/runtime/syntax/sh.vim 2007-05-07 22:12:00.000000000 +0200 +++ vim71/runtime/syntax/sh.vim 2007-09-11 23:46:48.000000000 +0200 From vmiklos at frugalware.org Wed Sep 12 00:43:04 2007 From: vmiklos at frugalware.org (VMiklos) Date: Wed Sep 12 00:43:06 2007 Subject: [Frugalware-git] pacman-tools: dg: scan_dir() fix a nasty typo Message-ID: <20070911224304.A8EFC13A4007@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=pacman-tools.git;a=commitdiff;h=2a3021e84ae90b84b3bb3595fe642d2eb9f4973a commit 2a3021e84ae90b84b3bb3595fe642d2eb9f4973a Author: VMiklos Date: Wed Sep 12 00:42:15 2007 +0200 dg: scan_dir() fix a nasty typo if a line "---" is removed from the file, dg rec failed. fix this diff --git a/darcs-git.py b/darcs-git.py index 5b13e08..b6f31fb 100755 --- a/darcs-git.py +++ b/darcs-git.py @@ -123,7 +123,7 @@ def scan_dir(files=""): file = File() inheader = True header.append(i) - elif i.startswith("+++") or i.startswith("---") or i.startswith("index "): + elif i.startswith("+++ ") or i.startswith("--- ") or i.startswith("index "): header.append(i) elif i.startswith("@@") or i.startswith("GIT binary patch"): if i.startswith("GIT binary patch"): From hermier at frugalware.org Wed Sep 12 00:49:13 2007 From: hermier at frugalware.org (Michel Hermier) Date: Wed Sep 12 00:49:15 2007 Subject: [Frugalware-git] frugalware-current: source/include/util.sh: Introduce Fpkgversep, a variable representing the separator of pkgname and pkgver in the Message-ID: <20070911224913.1B74213A4007@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=57a470cb69bf57002bac769a5f3f1f87b69ddc6d commit 57a470cb69bf57002bac769a5f3f1f87b69ddc6d Author: Michel Hermier Date: Wed Sep 12 00:48:04 2007 +0200 source/include/util.sh: Introduce Fpkgversep, a variable representing the separator of pkgname and pkgver in the real package file name. (Usefull for archive of the type foo_1.2.3.bar) diff --git a/source/include/util.sh b/source/include/util.sh index c7754d1..782a726 100644 --- a/source/include/util.sh +++ b/source/include/util.sh @@ -23,7 +23,7 @@ # NOTE: You don't need to use Finclude util, it is automatically included. # # == OPTIONS -# * _F_cd_path (defaults to $pkgname-$pkgver$pkgextraver) +# * _F_cd_path (defaults to $pkgname$Fpkversep$pkgver$pkgextraver) # * _F_conf_configure (defaults to ./configure) # * _F_conf_perl_pipefrom: if set, pipe the output of this command in Fconf() # for perl packages @@ -60,6 +60,8 @@ # Since util.sh is included before the FrugalBuild you may modify these # variables, they won't be overwritten by util.sh again. # +# * Fpkgversep (defaults to -): the separator between the package name +# and the package version in the package archive filename. # * Fsrcdir # * Fdestdir # * Fprefix @@ -70,6 +72,7 @@ # * Fconfopts # * LDFLAGS ### +Fpkversep="-" Fsrcdir="$startdir/src" Fdestdir="$startdir/pkg" Fprefix="/usr" @@ -110,7 +113,7 @@ Fcd() { cd "$Fsrcdir/$1" || Fdie elif [ "$#" -eq 0 ]; then if [ -z "$_F_cd_path" ]; then - _F_cd_path="$pkgname-$pkgver$pkgextraver" + _F_cd_path="$pkgname$Fpkversep$pkgver$pkgextraver" fi Fcd "$_F_cd_path" fi @@ -791,7 +794,7 @@ Fautoreconf() { # Extension of the archive is given as argument. ### Flastarchive() { - grep "\($1\)\(\$\|\#\)"|sed -n "s/.*-\(.*\)\($1\).*/\1/;$ p" + grep "\($1\)\(\$\|\#\)"|sed -n "s/.*$Fpkversep\(.*\)\($1\).*/\1/;$ p" } ### @@ -820,7 +823,7 @@ Flasttarbz2() { ## Fup2gnugz() { - up2date="lynx -dump 'http://ftp.gnu.org/gnu/$pkgname/?C=M;O=A'|grep '$pkgname-\(.*\).tar.gz$'|sort -n -r|head -n1|Flasttar" + up2date="lynx -dump 'http://ftp.gnu.org/gnu/$pkgname/?C=M;O=A'|grep '$pkgname$Fpkversep\(.*\).tar.gz$'|sort -n -r|head -n1|Flasttar" } ### @@ -828,7 +831,7 @@ Fup2gnugz() ## Fup2gnubz2() { - up2date="lynx -dump 'http://ftp.gnu.org/gnu/$pkgname/?C=M;O=A'|grep '$pkgname-\(.*\).tar.bz2$'|sort -n -r|head -n1|Flasttarbz2" + up2date="lynx -dump 'http://ftp.gnu.org/gnu/$pkgname/?C=M;O=A'|grep '$pkgname$Fpkversep\(.*\).tar.bz2$'|sort -n -r|head -n1|Flasttarbz2" } ### From vmiklos at frugalware.org Wed Sep 12 00:51:51 2007 From: vmiklos at frugalware.org (VMiklos) Date: Wed Sep 12 00:51:53 2007 Subject: [Frugalware-git] frugalware-current: dosfstools-2.11-2-i686 Message-ID: <20070911225151.395C713A4007@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=3476e353674acda94860e61872a9846307c37ece commit 3476e353674acda94860e61872a9846307c37ece Author: VMiklos Date: Wed Sep 12 00:50:55 2007 +0200 dosfstools-2.11-2-i686 up2date fix diff --git a/source/base/dosfstools/FrugalBuild b/source/base/dosfstools/FrugalBuild index d282243..41e2dcf 100644 --- a/source/base/dosfstools/FrugalBuild +++ b/source/base/dosfstools/FrugalBuild @@ -9,7 +9,7 @@ url="http://sparemint.atariforge.net/sparemint/html/packages/dosfstools.html" depends=('glibc' 'bash') groups=('base') archs=('i686' 'x86_64' 'ppc') -up2date="lynx -dump http://ftp.uni-erlangen.de/pub/Linux/LOCAL/dosfstools/ | grep src.tar | tail -n 1 | sed -ne 's|.*s-\(.*\).s.*|\1|;1 p'" +up2date="lynx -dump ftp://ftp.uni-erlangen.de/pub/Linux/LOCAL/dosfstools|grep src.tar.gz$|sed 's/.*-\(.*\)\.src.*/\1/'|Fsort|tail -n 1" source=(ftp://ftp.uni-erlangen.de/pub/Linux/LOCAL/dosfstools/$pkgname-$pkgver.src.tar.gz) sha1sums=('b0d8714475ca7c7a96a46adf7c4839d69ce2f412') From boobaa at frugalware.org Wed Sep 12 10:11:43 2007 From: boobaa at frugalware.org (CSÉCSY László) Date: Wed Sep 12 10:11:45 2007 Subject: [Frugalware-git] boobaa: perl-compress-raw-zlib-2.006-1-i686 Message-ID: <20070912081143.B6DE213A4007@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=boobaa.git;a=commitdiff;h=6c1252d02e9ce2e5fd24ef0e61a6206d54c5f305 commit 6c1252d02e9ce2e5fd24ef0e61a6206d54c5f305 Author: CSÉCSY László Date: Wed Sep 12 10:10:57 2007 +0200 perl-compress-raw-zlib-2.006-1-i686 version bump new m8r, ok by krix@ diff --git a/source/devel/perl-compress-raw-zlib/FrugalBuild b/source/devel/perl-compress-raw-zlib/FrugalBuild index dfe5e01..42a342c 100644 --- a/source/devel/perl-compress-raw-zlib/FrugalBuild +++ b/source/devel/perl-compress-raw-zlib/FrugalBuild @@ -1,14 +1,15 @@ # Compiling Time: 0.04 SBU -# Maintainer: Christian Hamar alias krix +# Maintainer: CSÉCSY László +# Contributor: Christian Hamar alias krix _F_perl_name=Compress-Raw-Zlib _F_perl_author=P/PM/PMQS -pkgver=2.005 +pkgver=2.006 pkgrel=1 pkgdesc="Interface to zlib compression library" depends=('perl') Finclude perl groups=('devel') archs=('i686' 'x86_64') -sha1sums=('26b658c16fed52d4982e2c82f340238d538e67fd') +sha1sums=('64e481a46c00f6d9260e3919494521b3edc11571') # optimization OK From boobaa at frugalware.org Wed Sep 12 10:18:27 2007 From: boobaa at frugalware.org (CSÉCSY László) Date: Wed Sep 12 10:18:28 2007 Subject: [Frugalware-git] boobaa: perl-io-compress-base-2.006-1-i686 Message-ID: <20070912081827.3865913A4007@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=boobaa.git;a=commitdiff;h=0492ff6e365b6590b043d2d1a766f7ccedbf51a0 commit 0492ff6e365b6590b043d2d1a766f7ccedbf51a0 Author: CSÉCSY László Date: Wed Sep 12 10:17:21 2007 +0200 perl-io-compress-base-2.006-1-i686 version bump new m8r ("ok by" skipped this time ;) ) diff --git a/source/devel/perl-io-compress-base/FrugalBuild b/source/devel/perl-io-compress-base/FrugalBuild index b9101ec..ab5bf28 100644 --- a/source/devel/perl-io-compress-base/FrugalBuild +++ b/source/devel/perl-io-compress-base/FrugalBuild @@ -1,15 +1,15 @@ # Compiling Time: 0.01 SBU -# Maintainer: Christian Hamar alias krix +# Maintainer: CSÉCSY László +# Contributor: Christian Hamar alias krix _F_perl_name=IO-Compress-Base _F_perl_author=P/PM/PMQS -pkgver=2.005 +pkgver=2.006 pkgrel=1 pkgdesc="Base class for all IO::Compress/UnCompress things" depends=('perl') Finclude perl groups=('devel') archs=('i686' 'x86_64') - -sha1sums=('6f7247f91966e223b90f8cd0c4bd186e09d126c0') +sha1sums=('2840b7d4e4f7079cef0cb841eb77df99fff4ffb6') # optimization OK From boobaa at frugalware.org Wed Sep 12 10:22:26 2007 From: boobaa at frugalware.org (CSÉCSY László) Date: Wed Sep 12 10:22:28 2007 Subject: [Frugalware-git] boobaa: perl-io-compress-bzip2-2.006-1-i686 Message-ID: <20070912082226.5F48413A4007@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=boobaa.git;a=commitdiff;h=d43c3ce52b5403f6f2bd420393dd124aa52b2ef7 commit d43c3ce52b5403f6f2bd420393dd124aa52b2ef7 Author: CSÉCSY László Date: Wed Sep 12 10:21:40 2007 +0200 perl-io-compress-bzip2-2.006-1-i686 version bump new m8r add >= to depends diff --git a/source/devel/perl-io-compress-bzip2/FrugalBuild b/source/devel/perl-io-compress-bzip2/FrugalBuild index c36710c..adbba7b 100644 --- a/source/devel/perl-io-compress-bzip2/FrugalBuild +++ b/source/devel/perl-io-compress-bzip2/FrugalBuild @@ -1,14 +1,15 @@ # Compiling Time: 0.1 SBU -# Maintainer: Christian Hamar alias krix +# Maintainer: CSÉCSY László +# Contributor: Christian Hamar alias krix _F_perl_name=IO-Compress-Bzip2 _F_perl_author=P/PM/PMQS -pkgver=2.005 +pkgver=2.006 pkgrel=1 pkgdesc="Interface to bzip2 compression library" -depends=('perl' 'perl-compress-raw-bzip2' 'perl-io-compress-base') +depends=('perl' 'perl-compress-raw-bzip2>=2.006' 'perl-io-compress-base>=2.006') Finclude perl groups=('devel') archs=('i686' 'x86_64') -sha1sums=('4ad364df4d4d5ca20e1a278fd88ac62fcb3a99fd') +sha1sums=('269f102d2e5732bc7e6160b91003a4c8698259e9') # optimization OK From boobaa at frugalware.org Wed Sep 12 10:27:02 2007 From: boobaa at frugalware.org (CSÉCSY László) Date: Wed Sep 12 10:27:05 2007 Subject: [Frugalware-git] boobaa: perl-io-compress-zlib-2.006-1-i686 Message-ID: <20070912082702.E5FE513A4007@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=boobaa.git;a=commitdiff;h=710b0a668b0c81c40609b1ba0d821f78671c9699 commit 710b0a668b0c81c40609b1ba0d821f78671c9699 Author: CSÉCSY László Date: Wed Sep 12 10:23:51 2007 +0200 perl-io-compress-zlib-2.006-1-i686 version bump new m8r added >= to depends diff --git a/source/devel/perl-io-compress-zlib/FrugalBuild b/source/devel/perl-io-compress-zlib/FrugalBuild index 71a2aa7..574a8a6 100644 --- a/source/devel/perl-io-compress-zlib/FrugalBuild +++ b/source/devel/perl-io-compress-zlib/FrugalBuild @@ -1,14 +1,15 @@ # Compiling Time: 0.1 SBU -# Maintainer: Christian Hamar alias krix +# Maintainer: CSÉCSY László +# Contributor: Christian Hamar alias krix _F_perl_name=IO-Compress-Zlib _F_perl_author=P/PM/PMQS -pkgver=2.005 +pkgver=2.006 pkgrel=1 pkgdesc="Interface to zlib compression library" -depends=('perl' 'perl-io-compress-base>=2.005' 'perl-compress-raw-zlib>=2.005' 'perl-io-compress-bzip2') +depends=('perl' 'perl-io-compress-base>=2.006' 'perl-compress-raw-zlib>=2.006' 'perl-io-compress-bzip2>=2.006') Finclude perl groups=('devel') archs=('i686' 'x86_64') -sha1sums=('9b2347576e5e52ec0a82b02bc72ba63f84e04e58') +sha1sums=('d4599e3842bbdf1281db2702779770c76ddfb453') # optimization OK From boobaa at frugalware.org Wed Sep 12 10:28:47 2007 From: boobaa at frugalware.org (CSÉCSY László) Date: Wed Sep 12 10:28:48 2007 Subject: [Frugalware-git] boobaa: perl-compress-zlib-2.006-1-i686 Message-ID: <20070912082847.2F22913A4007@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=boobaa.git;a=commitdiff;h=4f0246e40c9c558b2ec8019e5e5b7433fa2c9607 commit 4f0246e40c9c558b2ec8019e5e5b7433fa2c9607 Author: CSÉCSY László Date: Wed Sep 12 10:27:55 2007 +0200 perl-compress-zlib-2.006-1-i686 version bump new m8r diff --git a/source/devel/perl-compress-zlib/FrugalBuild b/source/devel/perl-compress-zlib/FrugalBuild index 458e02c..4f6ac20 100644 --- a/source/devel/perl-compress-zlib/FrugalBuild +++ b/source/devel/perl-compress-zlib/FrugalBuild @@ -1,16 +1,15 @@ # Compiling Time: 0.1 SBU -# Maintainer: Christian Hamar alias krix +# Maintainer: CSÉCSY László +# Contributor: Christian Hamar alias krix pkgname=perl-compress-zlib _F_perl_name=Compress-Zlib _F_perl_author=P/PM/PMQS -pkgver=2.005 +pkgver=2.006 pkgdesc="Interface to zlib compression library" -depends=('perl' 'perl-io-compress-zlib>=2.005') +depends=('perl' 'perl-io-compress-zlib>=2.006') Finclude perl -pkgrel=2 groups=('devel') archs=('i686' 'x86_64') - -sha1sums=('ba01e0dcb5848d3eac794930d1b72ec6d480f8e4') +sha1sums=('c7caeb531ca38ad36051c1f3e15ec050dcb0f267') # optimization OK From boobaa at frugalware.org Wed Sep 12 11:04:17 2007 From: boobaa at frugalware.org (CSÉCSY László) Date: Wed Sep 12 11:04:25 2007 Subject: [Frugalware-git] frugalware-current: perl-compress-raw-zlib-2.006-1-i686 Message-ID: <20070912090417.5933F13A400D@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=6c1252d02e9ce2e5fd24ef0e61a6206d54c5f305 commit 6c1252d02e9ce2e5fd24ef0e61a6206d54c5f305 Author: CSÉCSY László Date: Wed Sep 12 10:10:57 2007 +0200 perl-compress-raw-zlib-2.006-1-i686 version bump new m8r, ok by krix@ diff --git a/source/devel/perl-compress-raw-zlib/FrugalBuild b/source/devel/perl-compress-raw-zlib/FrugalBuild index dfe5e01..42a342c 100644 --- a/source/devel/perl-compress-raw-zlib/FrugalBuild +++ b/source/devel/perl-compress-raw-zlib/FrugalBuild @@ -1,14 +1,15 @@ # Compiling Time: 0.04 SBU -# Maintainer: Christian Hamar alias krix +# Maintainer: CSÉCSY László +# Contributor: Christian Hamar alias krix _F_perl_name=Compress-Raw-Zlib _F_perl_author=P/PM/PMQS -pkgver=2.005 +pkgver=2.006 pkgrel=1 pkgdesc="Interface to zlib compression library" depends=('perl') Finclude perl groups=('devel') archs=('i686' 'x86_64') -sha1sums=('26b658c16fed52d4982e2c82f340238d538e67fd') +sha1sums=('64e481a46c00f6d9260e3919494521b3edc11571') # optimization OK From boobaa at frugalware.org Wed Sep 12 11:04:17 2007 From: boobaa at frugalware.org (CSÉCSY László) Date: Wed Sep 12 11:04:27 2007 Subject: [Frugalware-git] frugalware-current: perl-io-compress-base-2.006-1-i686 Message-ID: <20070912090417.66E2413A4012@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=0492ff6e365b6590b043d2d1a766f7ccedbf51a0 commit 0492ff6e365b6590b043d2d1a766f7ccedbf51a0 Author: CSÉCSY László Date: Wed Sep 12 10:17:21 2007 +0200 perl-io-compress-base-2.006-1-i686 version bump new m8r ("ok by" skipped this time ;) ) diff --git a/source/devel/perl-io-compress-base/FrugalBuild b/source/devel/perl-io-compress-base/FrugalBuild index b9101ec..ab5bf28 100644 --- a/source/devel/perl-io-compress-base/FrugalBuild +++ b/source/devel/perl-io-compress-base/FrugalBuild @@ -1,15 +1,15 @@ # Compiling Time: 0.01 SBU -# Maintainer: Christian Hamar alias krix +# Maintainer: CSÉCSY László +# Contributor: Christian Hamar alias krix _F_perl_name=IO-Compress-Base _F_perl_author=P/PM/PMQS -pkgver=2.005 +pkgver=2.006 pkgrel=1 pkgdesc="Base class for all IO::Compress/UnCompress things" depends=('perl') Finclude perl groups=('devel') archs=('i686' 'x86_64') - -sha1sums=('6f7247f91966e223b90f8cd0c4bd186e09d126c0') +sha1sums=('2840b7d4e4f7079cef0cb841eb77df99fff4ffb6') # optimization OK From boobaa at frugalware.org Wed Sep 12 11:04:17 2007 From: boobaa at frugalware.org (CSÉCSY László) Date: Wed Sep 12 11:04:28 2007 Subject: [Frugalware-git] frugalware-current: perl-io-compress-zlib-2.006-1-i686 Message-ID: <20070912090417.91EF613A4014@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=710b0a668b0c81c40609b1ba0d821f78671c9699 commit 710b0a668b0c81c40609b1ba0d821f78671c9699 Author: CSÉCSY László Date: Wed Sep 12 10:23:51 2007 +0200 perl-io-compress-zlib-2.006-1-i686 version bump new m8r added >= to depends diff --git a/source/devel/perl-io-compress-zlib/FrugalBuild b/source/devel/perl-io-compress-zlib/FrugalBuild index 71a2aa7..574a8a6 100644 --- a/source/devel/perl-io-compress-zlib/FrugalBuild +++ b/source/devel/perl-io-compress-zlib/FrugalBuild @@ -1,14 +1,15 @@ # Compiling Time: 0.1 SBU -# Maintainer: Christian Hamar alias krix +# Maintainer: CSÉCSY László +# Contributor: Christian Hamar alias krix _F_perl_name=IO-Compress-Zlib _F_perl_author=P/PM/PMQS -pkgver=2.005 +pkgver=2.006 pkgrel=1 pkgdesc="Interface to zlib compression library" -depends=('perl' 'perl-io-compress-base>=2.005' 'perl-compress-raw-zlib>=2.005' 'perl-io-compress-bzip2') +depends=('perl' 'perl-io-compress-base>=2.006' 'perl-compress-raw-zlib>=2.006' 'perl-io-compress-bzip2>=2.006') Finclude perl groups=('devel') archs=('i686' 'x86_64') -sha1sums=('9b2347576e5e52ec0a82b02bc72ba63f84e04e58') +sha1sums=('d4599e3842bbdf1281db2702779770c76ddfb453') # optimization OK From boobaa at frugalware.org Wed Sep 12 11:04:17 2007 From: boobaa at frugalware.org (CSÉCSY László) Date: Wed Sep 12 11:04:29 2007 Subject: [Frugalware-git] frugalware-current: perl-compress-zlib-2.006-1-i686 Message-ID: <20070912090417.B3E1C13A4016@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=4f0246e40c9c558b2ec8019e5e5b7433fa2c9607 commit 4f0246e40c9c558b2ec8019e5e5b7433fa2c9607 Author: CSÉCSY László Date: Wed Sep 12 10:27:55 2007 +0200 perl-compress-zlib-2.006-1-i686 version bump new m8r diff --git a/source/devel/perl-compress-zlib/FrugalBuild b/source/devel/perl-compress-zlib/FrugalBuild index 458e02c..4f6ac20 100644 --- a/source/devel/perl-compress-zlib/FrugalBuild +++ b/source/devel/perl-compress-zlib/FrugalBuild @@ -1,16 +1,15 @@ # Compiling Time: 0.1 SBU -# Maintainer: Christian Hamar alias krix +# Maintainer: CSÉCSY László +# Contributor: Christian Hamar alias krix pkgname=perl-compress-zlib _F_perl_name=Compress-Zlib _F_perl_author=P/PM/PMQS -pkgver=2.005 +pkgver=2.006 pkgdesc="Interface to zlib compression library" -depends=('perl' 'perl-io-compress-zlib>=2.005') +depends=('perl' 'perl-io-compress-zlib>=2.006') Finclude perl -pkgrel=2 groups=('devel') archs=('i686' 'x86_64') - -sha1sums=('ba01e0dcb5848d3eac794930d1b72ec6d480f8e4') +sha1sums=('c7caeb531ca38ad36051c1f3e15ec050dcb0f267') # optimization OK From boobaa at frugalware.org Wed Sep 12 11:04:17 2007 From: boobaa at frugalware.org (CSÉCSY László) Date: Wed Sep 12 11:04:30 2007 Subject: [Frugalware-git] frugalware-current: perl-io-compress-bzip2-2.006-1-i686 Message-ID: <20070912090417.7A51513A4013@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=d43c3ce52b5403f6f2bd420393dd124aa52b2ef7 commit d43c3ce52b5403f6f2bd420393dd124aa52b2ef7 Author: CSÉCSY László Date: Wed Sep 12 10:21:40 2007 +0200 perl-io-compress-bzip2-2.006-1-i686 version bump new m8r add >= to depends diff --git a/source/devel/perl-io-compress-bzip2/FrugalBuild b/source/devel/perl-io-compress-bzip2/FrugalBuild index c36710c..adbba7b 100644 --- a/source/devel/perl-io-compress-bzip2/FrugalBuild +++ b/source/devel/perl-io-compress-bzip2/FrugalBuild @@ -1,14 +1,15 @@ # Compiling Time: 0.1 SBU -# Maintainer: Christian Hamar alias krix +# Maintainer: CSÉCSY László +# Contributor: Christian Hamar alias krix _F_perl_name=IO-Compress-Bzip2 _F_perl_author=P/PM/PMQS -pkgver=2.005 +pkgver=2.006 pkgrel=1 pkgdesc="Interface to bzip2 compression library" -depends=('perl' 'perl-compress-raw-bzip2' 'perl-io-compress-base') +depends=('perl' 'perl-compress-raw-bzip2>=2.006' 'perl-io-compress-base>=2.006') Finclude perl groups=('devel') archs=('i686' 'x86_64') -sha1sums=('4ad364df4d4d5ca20e1a278fd88ac62fcb3a99fd') +sha1sums=('269f102d2e5732bc7e6160b91003a4c8698259e9') # optimization OK From priyank at frugalware.org Wed Sep 12 18:23:57 2007 From: priyank at frugalware.org (Priyank) Date: Wed Sep 12 18:23:59 2007 Subject: [Frugalware-git] fw-control-center: gnetconfig-mcs-plugin: Added translator credits. Message-ID: <20070912162357.7D0F413A4007@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=fw-control-center.git;a=commitdiff;h=46040ddb94a845b99b4925dda6b9b929de6f32f3 commit 46040ddb94a845b99b4925dda6b9b929de6f32f3 Author: Priyank Date: Wed Sep 12 21:47:32 2007 +0530 gnetconfig-mcs-plugin: Added translator credits. diff --git a/gnetconfig-mcs-plugin/AUTHORS b/gnetconfig-mcs-plugin/AUTHORS index 8a60ed7..d14abaf 100644 --- a/gnetconfig-mcs-plugin/AUTHORS +++ b/gnetconfig-mcs-plugin/AUTHORS @@ -5,3 +5,7 @@ Priyank Gosalia Original Author =============== Bernhard Walle + +Translators +=========== +hu - Vajna Miklos From vmiklos at frugalware.org Wed Sep 12 19:27:32 2007 From: vmiklos at frugalware.org (VMiklos) Date: Wed Sep 12 19:27:36 2007 Subject: [Frugalware-git] setup: sv_SV -> sv_SE Message-ID: <20070912172732.EE44913A4007@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=setup.git;a=commitdiff;h=0a1b88b097ebcd3074e2efb1042af3ae9b17ab8d commit 0a1b88b097ebcd3074e2efb1042af3ae9b17ab8d Author: VMiklos Date: Wed Sep 12 19:27:06 2007 +0200 sv_SV -> sv_SE closes #2408 diff --git a/Makefile b/Makefile index e06c84c..985c710 100644 --- a/Makefile +++ b/Makefile @@ -46,7 +46,7 @@ export CCACHE_DIR=/var/cache/ccache/setup export CCACHE_NOLINK=1 export CCACHE_UMASK=002 DIALOG_LANGS = `find po -name *.po |sed 's/.*\/\(.*\).po/\1/' |tr '\n' ' '` -GLIBC_LANGS = en_US da_DK de_DE fr_FR hu_HU id_ID it_IT nl_NL pt_BR ro_RO sk_SK sv_SV +GLIBC_LANGS = en_US da_DK de_DE fr_FR hu_HU id_ID it_IT nl_NL pt_BR ro_RO sk_SK sv_SE CARCH ?= $(shell arch) ifeq ($(CARCH),i686) KARCH ?= i386 diff --git a/src/plugins/asklang.c b/src/plugins/asklang.c index 70e012f..fab8fd7 100644 --- a/src/plugins/asklang.c +++ b/src/plugins/asklang.c @@ -49,7 +49,7 @@ char *langs[] = "pt_BR", "Brazilian Portuguese / Portuguęs do Brasil", "ro_RO", "Romanian / Română", "sk_SK", "Slovak / Slovenčina", - "sv_SV", "Swedish / Svenska" + "sv_SE", "Swedish / Svenska" }; plugin_t plugin = From vmiklos at frugalware.org Wed Sep 12 20:52:39 2007 From: vmiklos at frugalware.org (VMiklos) Date: Wed Sep 12 20:52:42 2007 Subject: [Frugalware-git] frugalware-current: fpc-2.2.0-1-i686 Message-ID: <20070912185239.1779513A4007@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=c5ce97dd14d53479576cfabee8ea4976c81a8562 commit c5ce97dd14d53479576cfabee8ea4976c81a8562 Author: VMiklos Date: Wed Sep 12 20:52:01 2007 +0200 fpc-2.2.0-1-i686 version bump diff --git a/source/devel-extra/fpc/FrugalBuild b/source/devel-extra/fpc/FrugalBuild index 0559125..9f17aa1 100644 --- a/source/devel-extra/fpc/FrugalBuild +++ b/source/devel-extra/fpc/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: Christian Hamar alias krix pkgname=fpc -pkgver=2.0.4 +pkgver=2.2.0 pkgrel=1 pkgdesc="FreePascal Compiler" url="http://www.freepascal.org" @@ -13,17 +13,17 @@ conflicts=('fpc-bin') archs=('i686' 'x86_64') up2date="lynx -dump $url |grep 'latest stable' |sed 's/.*Version \(.*\) is.*/\1/'" source=(ftp://ftp.freepascal.org/pub/fpc/dist/source-$pkgver/${pkgname}build-$pkgver.tar.gz) -sha1sums=('69258600bf07a428549da70f190fbf8ff8af2f51') +sha1sums=('bf7abac8a260cae614c717ebce18ff8ad708dfe3') build() { unset MAKEFLAGS -# define binary name -if [ "$CARCH" == "x86_64" ]; then - ppcname="ppcx64" - else - ppcname="ppc386" -fi - Fcd ${pkgname}build_${pkgver}_exp + # define binary name + if [ "$CARCH" == "x86_64" ]; then + ppcname="ppcx64" + else + ppcname="ppc386" + fi + Fcd ${pkgname}build-${pkgver} NEWPP=`pwd`/fpcsrc/compiler/$ppcname NEWFPDOC=`pwd`/fpcsrc/utils/fpdoc/fpoc make all || Fdie From vmiklos at frugalware.org Wed Sep 12 21:34:17 2007 From: vmiklos at frugalware.org (VMiklos) Date: Wed Sep 12 21:34:19 2007 Subject: [Frugalware-git] frugalware-current: mingw-binutils-2.17.50_20070129_1-1-i686 Message-ID: <20070912193417.8FE4813A4007@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=4ccac74f2e4d865121fecaff6830ae4928b1b986 commit 4ccac74f2e4d865121fecaff6830ae4928b1b986 Author: VMiklos Date: Wed Sep 12 21:31:43 2007 +0200 mingw-binutils-2.17.50_20070129_1-1-i686 up2date fix diff --git a/source/devel-extra/mingw-binutils/FrugalBuild b/source/devel-extra/mingw-binutils/FrugalBuild index a95d62f..1bd3c66 100644 --- a/source/devel-extra/mingw-binutils/FrugalBuild +++ b/source/devel-extra/mingw-binutils/FrugalBuild @@ -12,7 +12,9 @@ url="http://sources.redhat.com/binutils/" depends=('bash') groups=('devel-extra') archs=('i686' 'x86_64') -up2date="lynx -dump http://sourceforge.net/project/showfiles.php?group_id=2435|grep 'binutils-.*-src.tar.gz'|sed -n 's/.*ls-\(.*\)-src.*/\1/;s/-/_/g;$ p'" +# recently they removed the 2.17.50_20070129_1 tarballs, while it works fine +# for us, so why reverting.. +up2date="lynx -dump http://sourceforge.net/project/showfiles.php?group_id=2435|grep 'binutils-.*-src.tar.gz$'|sed 's/.*binutils-\(.*\)-src.*/\1/;s/-/_/g;s/2.17.50_20060824_1/2.17.50_20070129_1/q'" source=(${source/mingw-binutils-$origver/binutils-$origver-src}) sha1sums=('a55f2e1c2f9640f259d9a6de0d5e5c7620f6e94f') From vmiklos at frugalware.org Wed Sep 12 21:34:17 2007 From: vmiklos at frugalware.org (VMiklos) Date: Wed Sep 12 21:34:21 2007 Subject: [Frugalware-git] frugalware-current: autoconf-archive-2007_09_09-1-i686 Message-ID: <20070912193417.A6D1013A400D@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=ac3d7f418597d6acf12f860c6e12b022b1a938df commit ac3d7f418597d6acf12f860c6e12b022b1a938df Author: VMiklos Date: Wed Sep 12 21:33:58 2007 +0200 autoconf-archive-2007_09_09-1-i686 version bump diff --git a/source/devel-extra/autoconf-archive/FrugalBuild b/source/devel-extra/autoconf-archive/FrugalBuild index 566d17a..d29e5c6 100644 --- a/source/devel-extra/autoconf-archive/FrugalBuild +++ b/source/devel-extra/autoconf-archive/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: VMiklos pkgname=autoconf-archive -pkgver=2007_08_22 +pkgver=2007_09_09 pkgrel=1 pkgdesc="Aims to provide a collection of reusable Autoconf macros." url="http://autoconf-archive.cryp.to/" @@ -11,5 +11,5 @@ groups=('devel-extra') archs=('i686' 'x86_64') up2date="lynx -dump $url |grep tar.bz2$|sed 's/.*archive-\(.*\).t.*/\1/;s/-/_/g;q'" source=(http://autoconf-archive.cryp.to/autoconf-archive-${pkgver//_/-}.tar.bz2) -sha1sums=('3bedb0e55a889e8d9c987e4d2179a4267b3ddc99') +sha1sums=('afcd2ec0e5b2b90776b56bcbfb2d142cb0e01717') _F_cd_path="autoconf-archive-${pkgver//_/-}" From crazy at frugalware.org Wed Sep 12 22:34:41 2007 From: crazy at frugalware.org (crazy) Date: Wed Sep 12 22:34:44 2007 Subject: [Frugalware-git] frugalware-current: gnupg2-2.0.7-1-i686 Message-ID: <20070912203441.6E30A13A4007@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=4fc0d37d30324d426beb728bbbbb2cd5040eef73 commit 4fc0d37d30324d426beb728bbbbb2cd5040eef73 Author: crazy Date: Wed Sep 12 22:30:36 2007 +0200 gnupg2-2.0.7-1-i686 * Version bump diff --git a/source/apps/gnupg2/FrugalBuild b/source/apps/gnupg2/FrugalBuild index f14dd51..911d6a9 100644 --- a/source/apps/gnupg2/FrugalBuild +++ b/source/apps/gnupg2/FrugalBuild @@ -3,7 +3,7 @@ pkgname=gnupg2 origname=gnupg -pkgver=2.0.6 +pkgver=2.0.7 pkgrel=1 pkgdesc="GnuPG2 is the new modularized version of GnuPG supporting OpenPGP and S/MIME" url="http://www.gnupg.org/" @@ -24,7 +24,6 @@ subarchs=('i686 x86_64') build() { - unset MAKEFLAGS Fcd $origname-$pkgver Fbuild \ --enable-symcryptrun \ @@ -41,5 +40,5 @@ build() -sha1sums=('4aa9a3ecc954126cfc0a30bef94ec6e1fbbc7009') +sha1sums=('f7d9ae7695bd9b849475b482bb7b027ec6fadbae') # optimization OK From crazy at frugalware.org Wed Sep 12 22:42:55 2007 From: crazy at frugalware.org (crazy) Date: Wed Sep 12 22:42:56 2007 Subject: [Frugalware-git] frugalware-current: kde-theme-qtcurve-0.53-1-i686 Message-ID: <20070912204255.177D313A4007@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=2c207ddc2449988e4f3a46c1a4521456e0ef2ad8 commit 2c207ddc2449988e4f3a46c1a4521456e0ef2ad8 Author: crazy Date: Wed Sep 12 22:39:23 2007 +0200 kde-theme-qtcurve-0.53-1-i686 * Version bump diff --git a/source/kde/kde-theme-qtcurve/FrugalBuild b/source/kde/kde-theme-qtcurve/FrugalBuild index 1ad24fc..fe9cac3 100644 --- a/source/kde/kde-theme-qtcurve/FrugalBuild +++ b/source/kde/kde-theme-qtcurve/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: crazy pkgname=kde-theme-qtcurve -pkgver=0.52.3 +pkgver=0.53 pkgrel=1 pkgdesc="KDE QtCurve Theme" depends=('kdelibs>=3.5.7') @@ -11,7 +11,7 @@ groups=('kde') archs=('i686' 'x86_64') _F_kde_id2="40492" Finclude kde -source=(http://home.freeuk.com/cpdrummond/{QtCurve-KDE3-$pkgver,QtCurve-Gtk2-0.52.2}.tar.gz admin_fix.patch) +source=(http://home.freeuk.com/cpdrummond/{QtCurve-KDE3,QtCurve-Gtk2}-$pkgver.tar.gz admin_fix.patch) up2date="lynx -dump 'http://www.kde-look.org/content/show.php?content=40492'|grep 'Source download'| grep 'KDE 3'|sed 's/.*- \(.*\).*)/\1/'" subpkgs=('qtcurve-gtk2') @@ -24,7 +24,7 @@ subarchs=('i686 x86_64') build() { - Fcd QtCurve-Gtk2-0.52.2 + Fcd QtCurve-Gtk2-$pkgver Fmake --enable-mozilla-userjs Fmakeinstall Fsplit qtcurve-gtk2 /usr @@ -38,7 +38,7 @@ build() Fmakeinstall } -sha1sums=('f7cbd978cc31f8665da0b10af20981899d8b6f88' \ - '0a3271e537f19ac95a9f6901966a2bb57f07ef1e' \ +sha1sums=('38375805b5f47c88eb8e73052feba2ee171e5fae' \ + 'c1a3a61dd46f1b046b61e65ccd2f07098ba0c4ff' \ '5f99980cc75133c5a8c0b9ebc533aad6b257337d') # optimization OK From crazy at frugalware.org Wed Sep 12 22:47:08 2007 From: crazy at frugalware.org (crazy) Date: Wed Sep 12 22:47:10 2007 Subject: [Frugalware-git] frugalware-current: aria2-0.11.3-1-i686 Message-ID: <20070912204708.9609013A4007@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=84bc6a3ded8f2da02d0e9d01837cedd374045dd2 commit 84bc6a3ded8f2da02d0e9d01837cedd374045dd2 Author: crazy Date: Wed Sep 12 22:43:38 2007 +0200 aria2-0.11.3-1-i686 * Version bump diff --git a/source/network-extra/aria2/FrugalBuild b/source/network-extra/aria2/FrugalBuild index e0e25d1..45be945 100644 --- a/source/network-extra/aria2/FrugalBuild +++ b/source/network-extra/aria2/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: crazy pkgname=aria2 -pkgver=0.11.2 +pkgver=0.11.3 pkgrel=1 pkgdesc="aria2 is an utility for downloading files." url="http://aria2.sourceforge.net/" @@ -13,6 +13,6 @@ archs=('i686' 'x86_64') _F_sourceforge_prefix="$pkgname-" _F_sourceforge_ext=".tar.bz2" Finclude sourceforge -sha1sums=('d893c5d4b2e0cd08dd1f0443790097c7238b6301') +sha1sums=('bce3c6e8ca732f41736c2f81d3e69784a74817d5') # optimization OK From crazy at frugalware.org Wed Sep 12 22:47:49 2007 From: crazy at frugalware.org (crazy) Date: Wed Sep 12 22:47:51 2007 Subject: [Frugalware-git] frugalware-current: perl-sys-syslog-0.20-1-i686 Message-ID: <20070912204749.28E9D13A4007@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=0184f6e2a68312b0356b5cb82e4410e2b2ad75f5 commit 0184f6e2a68312b0356b5cb82e4410e2b2ad75f5 Author: crazy Date: Wed Sep 12 22:44:35 2007 +0200 perl-sys-syslog-0.20-1-i686 * Version bump diff --git a/source/devel-extra/perl-sys-syslog/FrugalBuild b/source/devel-extra/perl-sys-syslog/FrugalBuild index 2ec1b01..a23a93d 100644 --- a/source/devel-extra/perl-sys-syslog/FrugalBuild +++ b/source/devel-extra/perl-sys-syslog/FrugalBuild @@ -3,11 +3,11 @@ _F_perl_name=Sys-Syslog _F_perl_author=S/SA/SAPER -pkgver=0.18 +pkgver=0.20 pkgrel=1 pkgdesc="Perl interface to the UNIX syslog(3) calls" Finclude perl archs=('i686' 'x86_64') -sha1sums=('ccc4349a1bd24d24c643adf26d9cf2686261ee47') +sha1sums=('0ac71dd8f8b687de0132a969c20b8d9bbe8c712f') # optimization OK From crazy at frugalware.org Wed Sep 12 22:51:37 2007 From: crazy at frugalware.org (crazy) Date: Wed Sep 12 22:51:39 2007 Subject: [Frugalware-git] frugalware-current: Revert "perl-sys-syslog-0.20-1-i686" Message-ID: <20070912205137.C349313A4007@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=9f2cda776331dfcecb4c13bed6283acf9df64df0 commit 9f2cda776331dfcecb4c13bed6283acf9df64df0 Author: crazy Date: Wed Sep 12 22:48:20 2007 +0200 Revert "perl-sys-syslog-0.20-1-i686" * This reverts commit 0184f6e2a68312b0356b5cb82e4410e2b2ad75f5. * brr something is really wrong with fg sometimes ... diff --git a/source/devel-extra/perl-sys-syslog/FrugalBuild b/source/devel-extra/perl-sys-syslog/FrugalBuild index a23a93d..2ec1b01 100644 --- a/source/devel-extra/perl-sys-syslog/FrugalBuild +++ b/source/devel-extra/perl-sys-syslog/FrugalBuild @@ -3,11 +3,11 @@ _F_perl_name=Sys-Syslog _F_perl_author=S/SA/SAPER -pkgver=0.20 +pkgver=0.18 pkgrel=1 pkgdesc="Perl interface to the UNIX syslog(3) calls" Finclude perl archs=('i686' 'x86_64') -sha1sums=('0ac71dd8f8b687de0132a969c20b8d9bbe8c712f') +sha1sums=('ccc4349a1bd24d24c643adf26d9cf2686261ee47') # optimization OK From crazy at frugalware.org Wed Sep 12 22:52:40 2007 From: crazy at frugalware.org (crazy) Date: Wed Sep 12 22:52:41 2007 Subject: [Frugalware-git] frugalware-current: perl-sys-syslog-0.20-1-i686 Message-ID: <20070912205240.24E6713A4007@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=5c8166cbc9d2a0bda794755ef5ec175b6a95a880 commit 5c8166cbc9d2a0bda794755ef5ec175b6a95a880 Author: crazy Date: Wed Sep 12 22:49:30 2007 +0200 perl-sys-syslog-0.20-1-i686 * Version bump diff --git a/source/devel-extra/perl-sys-syslog/FrugalBuild b/source/devel-extra/perl-sys-syslog/FrugalBuild index 2ec1b01..a23a93d 100644 --- a/source/devel-extra/perl-sys-syslog/FrugalBuild +++ b/source/devel-extra/perl-sys-syslog/FrugalBuild @@ -3,11 +3,11 @@ _F_perl_name=Sys-Syslog _F_perl_author=S/SA/SAPER -pkgver=0.18 +pkgver=0.20 pkgrel=1 pkgdesc="Perl interface to the UNIX syslog(3) calls" Finclude perl archs=('i686' 'x86_64') -sha1sums=('ccc4349a1bd24d24c643adf26d9cf2686261ee47') +sha1sums=('0ac71dd8f8b687de0132a969c20b8d9bbe8c712f') # optimization OK From vmiklos at frugalware.org Wed Sep 12 22:59:37 2007 From: vmiklos at frugalware.org (VMiklos) Date: Wed Sep 12 22:59:45 2007 Subject: [Frugalware-git] frugalware-current: openjdk-1.6.0-6-i686 Message-ID: <20070912205938.07A4A13A4007@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=feb7cab9e4cb9601654070051d4b9da56a07d805 commit feb7cab9e4cb9601654070051d4b9da56a07d805 Author: VMiklos Date: Wed Sep 12 22:41:29 2007 +0200 openjdk-1.6.0-6-i686 up2date fix diff --git a/source/devel-extra/openjdk/FrugalBuild b/source/devel-extra/openjdk/FrugalBuild index 8bf99d4..12ffa49 100644 --- a/source/devel-extra/openjdk/FrugalBuild +++ b/source/devel-extra/openjdk/FrugalBuild @@ -15,7 +15,7 @@ conflicts=('j2sdk') groups=('devel-extra') archs=('i686') # this is a bit hackish but at least we are notified when a new version is out -up2date="elinks -dump https://openjdk.dev.java.net/hotspot/|grep zip$|sed 's|.*/\(.*\)\.zip|\1|;s/$rel_id/$pkgver/'" +up2date="elinks -dump http://download.java.net/openjdk/jdk7/|grep zip$|sed 's|.*/\(.*\)\.zip|\1|;s/$rel_id/$pkgver/;q'" source=(http://www.java.net/download/openjdk/jdk7/promoted/b$build_id/$rel_id.zip \ openj{dk,re}.sh) From vmiklos at frugalware.org Wed Sep 12 22:59:38 2007 From: vmiklos at frugalware.org (VMiklos) Date: Wed Sep 12 22:59:47 2007 Subject: [Frugalware-git] frugalware-current: most-5.0.0-1-i686 Message-ID: <20070912205938.2C5A513A400D@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=02c54f903a2eb177f9cba54de6eb8ba6cb2efa8d commit 02c54f903a2eb177f9cba54de6eb8ba6cb2efa8d Author: VMiklos Date: Wed Sep 12 22:59:12 2007 +0200 most-5.0.0-1-i686 version bump diff --git a/source/apps/most/FrugalBuild b/source/apps/most/FrugalBuild index fa093e9..9083913 100644 --- a/source/apps/most/FrugalBuild +++ b/source/apps/most/FrugalBuild @@ -2,8 +2,8 @@ # Maintainer: VMiklos pkgname=most -pkgver=4.10.2 -pkgrel=2 +pkgver=5.0.0 +pkgrel=1 pkgdesc="Another pager, like 'more' and 'less'" url="ftp://space.mit.edu/pub/davis/most/" depends=('slang') @@ -11,11 +11,10 @@ groups=('apps') archs=('i686' 'x86_64') up2date="lynx -dump $url|grep most-[0-9\.]*\.tar.gz|sort -r|sed -n 's/.*-\(.*\)\.t.*/\1/;1 p'" source=($url/$pkgname-$pkgver.tar.gz) -sha1sums=('b0bcbbbff43aaab7b75b45d35ab8f2d32a3245c2') +sha1sums=('ca53f9edbe0e597ddfc8f4993505f68de03b9393') build() { - Fmkdir /usr/bin /usr/man/man1 Fbuild Fmv /usr/doc/$pkgname /usr/doc/$pkgname-$pkgver From crazy at frugalware.org Wed Sep 12 23:04:50 2007 From: crazy at frugalware.org (crazy) Date: Wed Sep 12 23:04:53 2007 Subject: [Frugalware-git] frugalware-current: lighttpd-1.4.18-1-i686 Message-ID: <20070912210451.0223813A4007@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=ffaa29801980a906ac91805a6bfc17cadea26118 commit ffaa29801980a906ac91805a6bfc17cadea26118 Author: crazy Date: Wed Sep 12 23:01:02 2007 +0200 lighttpd-1.4.18-1-i686 * Version bump diff --git a/source/network-extra/lighttpd/FrugalBuild b/source/network-extra/lighttpd/FrugalBuild index 342b2c3..89f4352 100644 --- a/source/network-extra/lighttpd/FrugalBuild +++ b/source/network-extra/lighttpd/FrugalBuild @@ -3,7 +3,7 @@ # Contributor: BMH1980 pkgname=lighttpd -pkgver=1.4.17 +pkgver=1.4.18 pkgrel=1 pkgdesc="A webserver designed and optimized for high performance environments." url="http://www.lighttpd.net/" @@ -17,7 +17,7 @@ archs=('i686' 'x86_64') depends=('libmysqlclient' 'bzip2' 'lua' 'pcre' 'xfsprogs-attr' 'libldap' 'openssl') makedepends=('mysql') backup=(etc/$pkgname/$pkgname.conf) -sha1sums=('e7684d29b2a42bc0628dc59b05741fc5fb5f699b' \ +sha1sums=('a53a8f8ae8d42d036f0b5129764b822e943cc778' \ '1a1d742bba61f24b42a4aea99623ceabbd345d3e' \ 'f30cb68ad73467a43317afabe0f4a90472df222e' \ 'd6c2577965670f3e116d9358551cdc2f4b10b4b4' \ From crazy at frugalware.org Wed Sep 12 23:23:43 2007 From: crazy at frugalware.org (crazy) Date: Wed Sep 12 23:23:45 2007 Subject: [Frugalware-git] frugalware-current: ginac-1.4.0-1-i686 Message-ID: <20070912212343.B029313A4007@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=f4c37dfa01da2e422e1824cb32c564d044be5d08 commit f4c37dfa01da2e422e1824cb32c564d044be5d08 Author: crazy Date: Wed Sep 12 23:18:38 2007 +0200 ginac-1.4.0-1-i686 * Version bump diff --git a/source/apps-extra/ginac/FrugalBuild b/source/apps-extra/ginac/FrugalBuild index 69c5247..e0f9ddb 100644 --- a/source/apps-extra/ginac/FrugalBuild +++ b/source/apps-extra/ginac/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: crazy pkgname=ginac -pkgver=1.3.8 +pkgver=1.4.0 pkgrel=1 pkgdesc="A free CAS (computer algebra system)" url="http://www.ginac.de/" @@ -11,6 +11,6 @@ groups=('apps-extra') archs=('i686' 'x86_64') up2date="lynx -dump http://www.ginac.de/Download.html|grep 'ginac-\(.*\).tar.bz2'|grep -v version|sed 's/.*-\(.*\).t.*/\1/'" source=($url/$pkgname-$pkgver.tar.bz2) -sha1sums=('5ba4090cbbe746c3a9d8ba759f25fa00a18baf87') +sha1sums=('57a56c000fceac2bd1fb9d52cf7589eb10fa1ff2') # optimization OK From vmiklos at frugalware.org Wed Sep 12 23:42:47 2007 From: vmiklos at frugalware.org (VMiklos) Date: Wed Sep 12 23:42:49 2007 Subject: [Frugalware-git] bmf: openoffice.org-2.3oog680_m5-1-x86_64 Message-ID: <20070912214247.1CE4613A4007@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=bmf.git;a=commitdiff;h=5b13614f161088c08f1de3e9c048fdcc551a1e47 commit 5b13614f161088c08f1de3e9c048fdcc551a1e47 Author: VMiklos Date: Wed Sep 12 23:41:19 2007 +0200 openoffice.org-2.3oog680_m5-1-x86_64 moved from the 'ooodev' repo it's no point having a separate repo for just one pkg diff --git a/source/xapps/openoffice.org/FrugalBuild b/source/xapps/openoffice.org/FrugalBuild new file mode 100644 index 0000000..db72ca3 --- /dev/null +++ b/source/xapps/openoffice.org/FrugalBuild @@ -0,0 +1,202 @@ +# Compiling time: 262.13 SBU +# Maintainer: Janny +# Contributor: Laszlo Dvornik + +pkgname=openoffice.org +USE_DEVEL=${USE_DEVEL:-"y"} +if ! [ $USE_DEVEL ]; then + upstream=2.2.1 + branch=2-2 + tree=oof680 + milestone=18 + pkgver=$upstream + pkgrel=2 + snapshot=20070628 +else + upstream=2.3 + tree=oog680 + milestone=5 + pkgver=$upstream${tree}_m$milestone + pkgrel=1 + snapshot=20070912 +fi +pkgdesc="OpenOffice.org, a full office productivity suite." +url="http://www.openoffice.org/" +depends=('libxml2' 'libart_lgpl' 'libsndfile' 'libgcj-awt>=4.1.1-6' 'nas' 'fontconfig' 'libpng' 'imagemagick' \ + 'flex' 'neon>=0.26.1' 'bison' 'zip' 'unzip' 'expat' 'cups' 'desktop-file-utils' 'perl-archive-zip' \ + 'unixodbc' 'libxaw' 'libxslt' 'startup-notification' 'libwpd') +# this is here as gstreamer is only a makedepend +rodepends=('flac') +makedepends=('curl' 'intltool' 'tcsh' 'pam-headers' 'firefox' 'apache-ant' 'gcc-gcj' 'kdelibs>=3.5.5' \ + 'evolution-data-server-ldap' 'boost' 'icu' 'hunspell' 'imake' 'gccmakedep' 'xalan-j' \ + 'patch>=2.5.9' 'openclipart' 'xorg-server' 'gstreamer' 'gst-plugins-base' 'gnome-vfs' \ + 'libbonobo' 'procps' 'openldap' 'mono' 'gperf' 'xulrunner') +groups=('xapps') +archs=('i686' 'x86_64') +if ! [ $USE_DEVEL ]; then + up2date="lynx -dump $url |grep version:|sed 's/.*: //'" + source=(http://ftp.frugalware.org/pub/other/sources/ooo-build/ooo-build-$branch-$snapshot.tar.bz2 \ + http://hu.openoffice.org/source/browse/*checkout*/hu/src/2.2.0/SDF/hu.sdf.bz2) + signatures=($source.asc '') +else + up2date="lynx -dump http://svn.gnome.org/viewcvs/ooo-build/trunk/configure.in?view=markup |grep ^DEFAULT_TAG|sed 's/DEFAULT_TAG=\(.*\)-\(.*\)/$upstream\1_\2/'" + source=(http://ftp.frugalware.org/pub/other/sources/ooo-build/ooo-build-$snapshot.tar.bz2 \ + http://hu.openoffice.org/source/browse/*checkout*/hu/src/2.2.0/SDF/hu.sdf.bz2) + signatures=($source.asc '') +fi +options=(${options[@]} 'scriptlet') +_F_gnome_desktop="y" +Finclude gnome-scriptlet mono +unset install + +subpkgs=("$pkgname-kde" "$pkgname-gnome") +subdescs=("$pkgname kde integration" "$pkgname gnome integration") +subdepends=("$pkgname=$pkgver kdelibs>=3.5.5" \ + "$pkgname=$pkgver gnome-vfs libbonobo evolution-data-server-ldap") +subarchs=('i686 x86_64' 'i686 x86_64') +subgroups=('kde-extra' 'gnome-extra') +subinstall=("" "$_F_gnome_scriptlet") + +ooosubpkgs=('de' 'es' 'fr' 'hu') +ooosubdescs=('German' 'Spanish' 'French' 'Hungarian') +if ! [ $USE_DEVEL ]; then + ooosubpkgs=(${ooosubpkgs[@]} 'af' 'ar' 'be-BY' 'bg' 'bn' 'bn-BD' 'bn-IN' 'br' 'bs' 'ca' 'cy' 'cs' 'da' 'el' 'en-GB' 'en-ZA' 'eo' 'et' 'eu' 'fi' 'ga' 'gl' 'gu-IN' 'he' 'hi-IN' 'hr' 'it' 'ja' 'km' 'kn-IN' 'ko' 'lo' 'lt' 'lv' 'mk' 'ms' 'nb' 'ne' 'nl' 'nn' 'nr' 'ns' 'pa-IN' 'pl' 'pt' 'pt-BR' 'ru' 'rw' 'sh-YU' 'sk' 'sl' 'sr-CS' 'ss' 'st' 'sv' 'sw' 'sw-TZ' 'sx' 'ta-IN' 'th' 'tn' 'tr' 'ts' 've' 'vi' 'xh' 'zh-CN' 'zh-TW' 'zu' 'fa' 'ku' 'as-IN' 'ml-IN' 'mr-IN' 'or-IN' 'te-IN' 'tg' 'ti-ER' 'uk' 'ur-IN' 'dz') + ooosubdescs=(${ooosubdescs[@]} 'Afrikaans' 'Arabic' 'Belarusian' 'Bulgarian' 'Bengali' 'Bengali (Bangladesh)' 'Bengali (India)' 'Breton' 'Bosnian' 'Catalan' 'Welsh' 'Czech' 'Danish' 'Greek' 'English (GB)' 'English (South Africa)' 'Esperanto' 'Estonian' 'Basque' 'Finnish' 'Irish' 'Galician' 'Gujarati' 'Hebrew' 'Hindi' 'Croatian' 'Italian' 'Japanese' 'Khmer (Cambodia)' 'Kannada' 'Korean' 'Lao' 'Lithuanian' 'Latvian' 'Macedonian' 'Malay' 'Norwegian Bokmal' 'Nepali' 'Dutch' 'Norwegian Nynorsk' 'Ndebele, South' 'NorthernSotho/Sepedi' 'Punjabi' 'Polish' 'Portuguese' 'Brazil (Port.)' 'Russian' 'Kinyarwanda' 'Serbian Latin' 'Slovak' 'Slovenian' 'Serbian Cyrillic' 'Swati' 'Sotho' 'Swedish' 'Swahili' 'Swahili ' 'South Georgian' 'Tamil' 'Thai' 'Tswana' 'Turkish' 'Tsonga' 'Venda' 'Vietnamese' 'Xhosa' 'Chinese (simplified)' 'Chinese (traditional)' 'Zulu' 'Persian' 'Kurdish' 'Assamese' 'Malayalam' 'Marathi' 'Oriya' 'Telugu' 'Tajik' 'Tigrinya' 'Ukrainian' 'Urdu' 'Dzongkha') +fi + +if [ ${#ooosubpkgs[@]} -ne ${#ooosubdescs[@]} ]; then + error '${#ooosubpkgs[@]} != ${#ooosubdescs[@]}' + Fdie +fi + +i=0 +while [ $i -lt ${#ooosubpkgs[@]} ] +do + subpkgs=("${subpkgs[@]}" "openoffice.org-i18n-`echo ${ooosubpkgs[$i]}|tr [A-Z] [a-z]`") + subdescs=("${subdescs[@]}" "${ooosubdescs[$i]} Localization for OpenOffice.org.") + i=$(($i+1)) +done + +i=0 +while [ $i -lt ${#ooosubpkgs[@]} ] +do + subinstall=("${subinstall[@]}" '') + i=$(($i+1)) +done + +i=0 +while [ $i -lt ${#ooosubpkgs[@]} ] +do + subdepends=("${subdepends[@]}" "openoffice.org>=$pkgver") + subgroups=("${subgroups[@]}" "locale-extra") + subarchs=("${subarchs[@]}" "i686 x86_64") + i=$(($i+1)) +done + +# You can find a few random notes about building OOo here: +# http://wiki.frugalware.org/OOo_building + +build() { + Fmonoexport + if ! [ $USE_DEVEL ]; then + Fcd ooo-build-${branch//-/.} + rm -f patches/src680/fix-invisible-text.diff + else + Fcd ooo-build + fi + + # Extra localizations + cp $Fsrcdir/hu.sdf src/GSI_hu.sdf || return 1 + + # Remove our patches so that incremental build will be possible. + Fpatchall + + # SMP build + if [ ! -z "$MAKEFLAGS" ]; then + #Fconfopts="$Fconfopts --with-num-cpus=${MAKEFLAGS/-j}" + unset MAKEFLAGS + fi + + # Other options. + Fconfopts="$Fconfopts \ + --with-distro=Frugalware \ + --with-tag=$tree-m$milestone \ + --with-gcc-speedup=ccache \ + --with-openclipart=/usr/share/openclipart \ + --enable-gtk \ + --enable-hunspell \ + --with-binsuffix=no \ + --disable-dependency-tracking \ + --with-dejavu-fonts=2.15\ + --with-fonts \ + --with-installed-ooo-dirname=openoffice.org" + + # Set our version. + Fsed "AC_PACKAGE_VERSION" "$pkgver-$pkgrel" configure.in + autoconf || return 1 + + # Optimize build. + export ARCH_FLAGS="$CFLAGS" + + if [ $USE_DEVEL ]; then + Fconf --with-lang="en-US de es fr hu" --enable-separate-helpcontent + else + Fconf --with-lang=ALL + fi + + ./download || return 1 + + make || return 1 + + Fmakeinstall + + # Enable the mozilla plugin + Fmkdir /usr/lib/mozilla/plugins + Fln /usr/lib/openoffice.org/program/libnpsoplugin.so /usr/lib/mozilla/plugins/ + + # Remove some dicts, our separate package is more recent + Frm usr/lib/openoffice.org/share/dict/ooo/*hu_HU* + + # Split out the i18n stuff + for i in "${ooosubpkgs[@]}" + do + spkg=`echo $i|tr [A-Z] [a-z]` + for j in usr/lib/$pkgname/share/registry/res/$i/ usr/lib/$pkgname/share/template/$i/ \ + usr/lib/$pkgname/help/$i/ usr/lib/$pkgname/program/resource/*680$i.res \ + usr/lib/openoffice.org/licenses/LICENSE_$i* usr/lib/openoffice.org/presets/config/*_$i.* \ + usr/lib/openoffice.org/readmes/README_$i* usr/lib/openoffice.org/share/autocorr/acor_$i*.dat \ + usr/lib/openoffice.org/share/autotext/$i/ usr/lib/openoffice.org/share/readme/LICENSE_$i* \ + usr/lib/openoffice.org/share/readme/README_$i* sr/lib/openoffice.org/share/samples/$i/ \ + usr/lib/openoffice.org/share/registry/modules/org/openoffice/Setup/Langpack-$i.xcu \ + usr/lib/openoffice.org/share/template/wizard/letter/$i/ usr/lib/openoffice.org/share/wordbook/$i/ + do + if ls $Fdestdir/$j &>/dev/null; then + Fsplit openoffice.org-i18n-$spkg $j + fi + done + done + + ## Split KDE stuff + for kde in fps_kde.uno.so kdebe*.uno.so kdefilepicker kde-open-url libvclplug_kde*.so; do + Fsplit $pkgname-kde usr/lib/openoffice.org/program/$kde + done + ## Split GNOME stuff + for gnome in gnome-open-ur* fps_gnome.uno.so gnome-set-default-* \ + libvclplug_gtk*.so libeggtray* libqstart_gtk* ucpgvfs1.uno.so \ + gconfbe* libevoab*.so + do + Fsplit $pkgname-gnome usr/lib/openoffice.org/program/$gnome + done + + Fbuild_gnome_scriptlet + + # Check for missing language packs. + misslangs="`find $Fdestdir |grep registry/res/.*/org|sed 's|.*registry/res/\(.*\)/org.*|\1|'|grep -v en-US |sort -u`" + if [ -n "$misslangs" ]; then + Fmessage "Unsplitted languages: $misslangs" + return 1 + fi + Fmonocleanup +} + +# optimization OK From crazy at frugalware.org Thu Sep 13 00:09:40 2007 From: crazy at frugalware.org (crazy) Date: Thu Sep 13 00:09:43 2007 Subject: [Frugalware-git] frugalware-current: qscintilla2-qt3-1.73_2.1-2-i686 Message-ID: <20070912220940.86D4313A4007@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=550b1f24c39e6ca36a391a202774858ca63e5e06 commit 550b1f24c39e6ca36a391a202774858ca63e5e06 Author: crazy Date: Thu Sep 13 00:05:21 2007 +0200 qscintilla2-qt3-1.73_2.1-2-i686 * rebuild * part 1 for #2406 diff --git a/source/xlib/qscintilla2-qt3/FrugalBuild b/source/xlib/qscintilla2-qt3/FrugalBuild index 67088a6..b0c4908 100644 --- a/source/xlib/qscintilla2-qt3/FrugalBuild +++ b/source/xlib/qscintilla2-qt3/FrugalBuild @@ -6,7 +6,7 @@ ver1=1.73 ver2=2.1 pkgver=${ver1}_${ver2} origname=QScintilla -pkgrel=1 +pkgrel=2 pkgdesc="QScintilla2 is a port to Qt of Neil Hodgson's Scintilla C++ editor class. (Qt3)" url="http://www.riverbankcomputing.co.uk/qscintilla" license="GPL 2" @@ -18,7 +18,7 @@ archs=('i686' 'x86_64') depends=('qt>=3.3.8-3' 'libstdc++' 'libgl' 'libxmu' 'libxi' 'libxrandr' 'libxcursor' 'libxinerama' 'libxft') makedepends=('qt4>=4.3.0' 'libxi' 'libstdc++' 'libice' 'libxrender') _F_cd_path="$origname-$ver1-gpl-$ver2" -sha1sums=('ca9ac61cc3d537d7b53202ff5d8565365c3f8734'\ +sha1sums=('ca9ac61cc3d537d7b53202ff5d8565365c3f8734' \ '72ad3600a69f61134ad20e763542843d938691ee') subpkgs=('qscintilla2-qt4') From vmiklos at frugalware.org Thu Sep 13 00:09:43 2007 From: vmiklos at frugalware.org (VMiklos) Date: Thu Sep 13 00:09:48 2007 Subject: [Frugalware-git] frugalware-current: mplayertv-0.2.1rc1-1-i686 Message-ID: <20070912220943.663F613A4007@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=6df4c125fff15ff99192b73447cf5937398503b8 commit 6df4c125fff15ff99192b73447cf5937398503b8 Author: VMiklos Date: Thu Sep 13 00:04:47 2007 +0200 mplayertv-0.2.1rc1-1-i686 url fix diff --git a/source/xapps-extra/mplayertv/FrugalBuild b/source/xapps-extra/mplayertv/FrugalBuild index df3e010..d76ba13 100644 --- a/source/xapps-extra/mplayertv/FrugalBuild +++ b/source/xapps-extra/mplayertv/FrugalBuild @@ -5,7 +5,7 @@ pkgname=mplayertv pkgver=0.2.1rc1 pkgrel=1 pkgdesc="You can watch TV with mplayerTV under Linux (v4l, v4l2) (uses MPlayer)" -url="http://mplayertv.zer0.hu/" +url="http://mplayertv.ivanov.eu/" depends=('perl-gtk2') groups=('xapps-extra') archs=('i686') From vmiklos at frugalware.org Thu Sep 13 00:09:44 2007 From: vmiklos at frugalware.org (VMiklos) Date: Thu Sep 13 00:09:49 2007 Subject: [Frugalware-git] frugalware-current: firefox-adblock-0.5.3.043-2-i686 Message-ID: <20070912220944.20A0E13A400D@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=5006023670b1d176f0c08f62919307f842f20dee commit 5006023670b1d176f0c08f62919307f842f20dee Author: VMiklos Date: Thu Sep 13 00:08:41 2007 +0200 firefox-adblock-0.5.3.043-2-i686 url and up2date fix diff --git a/source/xapps-extra/firefox-adblock/FrugalBuild b/source/xapps-extra/firefox-adblock/FrugalBuild index 89c77d5..a23c49e 100644 --- a/source/xapps-extra/firefox-adblock/FrugalBuild +++ b/source/xapps-extra/firefox-adblock/FrugalBuild @@ -7,8 +7,8 @@ _F_firefox_id=34274bf4-1d97-a289-e984-17e546307e4f pkgver=0.5.3.043 pkgrel=2 pkgdesc="Filters ads from web-pages" -url="https://addons.mozilla.org/firefox/10/" -up2date="elinks -dump $url |grep xpi$|sed 's/.*k-\(.*\)-.*/\1/'" +url="https://addons.mozilla.org/en-US/firefox/addon/10" +up2date="elinks -dump $url|grep Version|sed 's/.*Version \([^-]*\) -- .*/\1/;q'" source=(http://releases.mozilla.org/pub/mozilla.org/extensions/$_F_firefox_ext/$_F_firefox_ext-$pkgver-fx+fl+mz+ns.xpi \ # yes the manifest file contains ^Ms, if you don't like them, mail the author ;-) chrome.manifest firefox-adblock-0.5.3.043-maxversion.diff) From crazy at frugalware.org Thu Sep 13 00:19:18 2007 From: crazy at frugalware.org (crazy) Date: Thu Sep 13 00:19:21 2007 Subject: [Frugalware-git] frugalware-current: qscintilla2-python-qt3-1.73_2.1-2-i686 Message-ID: <20070912221918.2D93013A4007@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=1544f561ae08e4b9a1d819b8d0bfdb455478c21a commit 1544f561ae08e4b9a1d819b8d0bfdb455478c21a Author: crazy Date: Thu Sep 13 00:15:39 2007 +0200 qscintilla2-python-qt3-1.73_2.1-2-i686 * rebuild with qscintilla2 * part 2 for #2406 diff --git a/source/xlib-extra/qscintilla2-python-qt3/FrugalBuild b/source/xlib-extra/qscintilla2-python-qt3/FrugalBuild index 5aba439..f954166 100644 --- a/source/xlib-extra/qscintilla2-python-qt3/FrugalBuild +++ b/source/xlib-extra/qscintilla2-python-qt3/FrugalBuild @@ -6,7 +6,7 @@ ver1=1.73 ver2=2.1 pkgver=${ver1}_${ver2} origname=QScintilla -pkgrel=1 +pkgrel=2 pkgdesc="QScintilla2 python bindings for QT3" url="http://www.riverbankcomputing.co.uk/qscintilla" license="GPL 2" @@ -14,16 +14,16 @@ up2date="lynx -dump $url/download.php|grep -v "gpl-1.7"|grep -m1 'gpl-\(.*\).tar source=(http://www.riverbankcomputing.com/Downloads/${origname}2/$origname-$ver1-gpl-$ver2.tar.gz designer.patch) groups=('xlib-extra') archs=('i686' 'x86_64') -depends=("qscintilla2-qt3=$pkgver" 'python' 'libxext' 'libgcc' 'zlib' 'libxrender' \ +depends=("qscintilla2-qt3=$pkgver-2" 'python' 'libxext' 'libgcc' 'zlib' 'libxrender' \ 'fontconfig' 'libxcb' 'libxxf86vm' 'libxdamage' 'libdrm' 'libxt' 'pyqt') -makedepends=("qscintilla2-qt4=$pkgver" 'pyqt4') +makedepends=("qscintilla2-qt4=$pkgver-2" 'pyqt4') _F_cd_path="$origname-$ver1-gpl-$ver2" sha1sums=('ca9ac61cc3d537d7b53202ff5d8565365c3f8734'\ '3fa781182d6a4868f134dc7931d37b346c946245') subpkgs=('qscintilla2-python-qt4' 'qscintilla2-designer-qt3-plugin' 'qscintilla2-designer-qt4-plugin') subdescs=('QScintilla2 python bindings for QT4' 'QScintilla2 designer plugin for QT3' 'QScintilla2 designer plugin for QT4') -subdepends=("qscintilla2-qt4=$pkgver pyqt4" "qscintilla2-qt3=$pkgver" "qscintilla2-qt4=$pkgver") +subdepends=("qscintilla2-qt4=$pkgver-2 pyqt4" "qscintilla2-qt3=$pkgver-2" "qscintilla2-qt4=$pkgver-2") subgroups=('xlib-extra' 'xlib-extra' 'xlib-extra') subarchs=('i686 x86_64' 'i686 x86_64' 'i686 x86_64') From crazy at frugalware.org Thu Sep 13 00:27:06 2007 From: crazy at frugalware.org (crazy) Date: Thu Sep 13 00:27:09 2007 Subject: [Frugalware-git] frugalware-current: eric4-4.0.1-2-i686 Message-ID: <20070912222706.7D5BD13A4007@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=bc939b51b4e2a5b9584d2fae64d339da777fdd21 commit bc939b51b4e2a5b9584d2fae64d339da777fdd21 Author: crazy Date: Thu Sep 13 00:22:16 2007 +0200 eric4-4.0.1-2-i686 * rebuild with qscintilla2* * closes #2406 diff --git a/source/xapps-extra/eric4/FrugalBuild b/source/xapps-extra/eric4/FrugalBuild index 013db52..5b6b023 100644 --- a/source/xapps-extra/eric4/FrugalBuild +++ b/source/xapps-extra/eric4/FrugalBuild @@ -3,7 +3,7 @@ pkgname=eric4 pkgver=4.0.1 -pkgrel=1 +pkgrel=2 pkgdesc="Eric4 is a full featured Python (and Ruby) IDE that is written in PyQt4." _F_sourceforge_dirname="eric-ide" Finclude sourceforge python @@ -18,7 +18,7 @@ source=($source \ groups=('xapps-extra') archs=('i686' 'x86_64') options=('scriptlet') -depends=('pyqt4>=4.3' 'qscintilla2-qt4' 'qscintilla2-python-qt4') +depends=('pyqt4>=4.3' 'qscintilla2-qt4>=1.73_2.1-2' 'qscintilla2-python-qt4>=1.73_2.1-2') rodepends=('shared-mime-info') subpkgs=("$pkgname-i18n-de" "$pkgname-i18n-fr" "$pkgname-i18n-ru" "$pkgname-i18n-cs_cz") From priyank at frugalware.org Thu Sep 13 08:58:12 2007 From: priyank at frugalware.org (Priyank) Date: Thu Sep 13 08:58:14 2007 Subject: [Frugalware-git] frugalware-current: afterstep-2.2.7-1-i686 Message-ID: <20070913065812.4F15313A4020@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=f992c3e144218555bdf4e05ce85fea0612758e9a commit f992c3e144218555bdf4e05ce85fea0612758e9a Author: Priyank Date: Thu Sep 13 12:09:48 2007 +0530 afterstep-2.2.7-1-i686 * Version bump diff --git a/source/x11-extra/afterstep/FrugalBuild b/source/x11-extra/afterstep/FrugalBuild index e5204f9..7a64f0a 100644 --- a/source/x11-extra/afterstep/FrugalBuild +++ b/source/x11-extra/afterstep/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: Priyank Gosalia pkgname=afterstep -pkgver=2.2.6 +pkgver=2.2.7 pkgrel=1 pkgdesc="A Window Manager based on NEXTStep Interface." url=http://www.afterstep.org @@ -12,7 +12,7 @@ archs=('i686' 'x86_64') up2date="lynx -dump http://www.afterstep.org/ | grep -m1 Latest | sed 's/.*Version \(.*\) .*/\1/' | sed 's| .*||g'" source=(ftp://ftp.afterstep.org/stable/AfterStep-$pkgver.tar.bz2) _F_cd_path="AfterStep-$pkgver" -sha1sums=('27df0baadc3ddc65bad527fd17f8f19749c4b7a8') +sha1sums=('918cfd67f6bf4ae82bfbe68ef1dccdfec5f86f51') build() { From vmiklos at frugalware.org Thu Sep 13 13:44:07 2007 From: vmiklos at frugalware.org (VMiklos) Date: Thu Sep 13 13:44:09 2007 Subject: [Frugalware-git] frugalware-current: mingw-binutils-2.17.50_20070129_1-1-i686 Message-ID: <20070913114407.0BC7313A4020@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=1e49a98eea960678ba07d51ebc822a3226a3c77a commit 1e49a98eea960678ba07d51ebc822a3226a3c77a Author: VMiklos Date: Thu Sep 13 13:43:44 2007 +0200 mingw-binutils-2.17.50_20070129_1-1-i686 typo fix in up2date diff --git a/source/devel-extra/mingw-binutils/FrugalBuild b/source/devel-extra/mingw-binutils/FrugalBuild index 1bd3c66..d17be2f 100644 --- a/source/devel-extra/mingw-binutils/FrugalBuild +++ b/source/devel-extra/mingw-binutils/FrugalBuild @@ -14,7 +14,7 @@ groups=('devel-extra') archs=('i686' 'x86_64') # recently they removed the 2.17.50_20070129_1 tarballs, while it works fine # for us, so why reverting.. -up2date="lynx -dump http://sourceforge.net/project/showfiles.php?group_id=2435|grep 'binutils-.*-src.tar.gz$'|sed 's/.*binutils-\(.*\)-src.*/\1/;s/-/_/g;s/2.17.50_20060824_1/2.17.50_20070129_1/q'" +up2date="lynx -dump http://sourceforge.net/project/showfiles.php?group_id=2435|grep 'binutils-.*-src.tar.gz$'|sed 's/.*binutils-\(.*\)-src.*/\1/;s/-/_/g;s/2.17.50_20060824_1/2.17.50_20070129_1/;q'" source=(${source/mingw-binutils-$origver/binutils-$origver-src}) sha1sums=('a55f2e1c2f9640f259d9a6de0d5e5c7620f6e94f') From vmiklos at frugalware.org Thu Sep 13 14:04:58 2007 From: vmiklos at frugalware.org (VMiklos) Date: Thu Sep 13 14:05:12 2007 Subject: [Frugalware-git] frugalware-current: dates-0.4.4-2-i686 Message-ID: <20070913120458.194C613A4020@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=ee436c2a1ec6bc4f6f635096c1af5b7864395e82 commit ee436c2a1ec6bc4f6f635096c1af5b7864395e82 Author: VMiklos Date: Thu Sep 13 14:04:46 2007 +0200 dates-0.4.4-2-i686 rebuild using db>=4.6.18 diff --git a/source/gnome-extra/dates/FrugalBuild b/source/gnome-extra/dates/FrugalBuild index c217199..8a8e1a4 100644 --- a/source/gnome-extra/dates/FrugalBuild +++ b/source/gnome-extra/dates/FrugalBuild @@ -3,10 +3,10 @@ pkgname=dates pkgver=0.4.4 -pkgrel=1 +pkgrel=2 pkgdesc="A small, lightweight calendar, GTK+ version." url="http://www.pimlico-project.org/dates.html" -depends=('gtk+2' 'evolution-data-server' 'libsexy') +depends=('gtk+2' 'evolution-data-server' 'libsexy' 'db>=4.6.18') makedepends=('perl-xml' 'intltool') groups=('gnome-extra') archs=('i686') From vmiklos at frugalware.org Thu Sep 13 14:30:20 2007 From: vmiklos at frugalware.org (VMiklos) Date: Thu Sep 13 14:30:22 2007 Subject: [Frugalware-git] pacman-tools: dg tag: create annotated tags Message-ID: <20070913123020.143CC13A4020@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=pacman-tools.git;a=commitdiff;h=91a77d7b4ce0be15d4934ec6adc0d6b3e794bec3 commit 91a77d7b4ce0be15d4934ec6adc0d6b3e794bec3 Author: VMiklos Date: Thu Sep 13 14:29:50 2007 +0200 dg tag: create annotated tags the git manual recommends using annotated tags for releases and we almost always use "tag" for releases diff --git a/darcs-git.py b/darcs-git.py index 5b13e08..825cf60 100755 --- a/darcs-git.py +++ b/darcs-git.py @@ -649,7 +649,7 @@ Options: usage(0) ret = 0 ret += os.system("echo 'TAG %s' |git update-ref HEAD `git commit-tree HEAD^{tree} -p HEAD`" % argv[0]) - ret += os.system("git tag %s" % argv[0]) + ret += os.system("git tag -a -m 'tagged %s' %s" % (argv[0], argv[0])) return ret def rollback(argv): From vmiklos at frugalware.org Thu Sep 13 15:07:51 2007 From: vmiklos at frugalware.org (VMiklos) Date: Thu Sep 13 15:07:53 2007 Subject: [Frugalware-git] pacman-g2: autogen.sh: added a new --release switch Message-ID: <20070913130751.0C9CE13A4021@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=pacman-g2.git;a=commitdiff;h=487f23c7fcac1f51e285b0a5bdb5aecf20393c75 commit 487f23c7fcac1f51e285b0a5bdb5aecf20393c75 Author: VMiklos Date: Thu Sep 13 15:07:30 2007 +0200 autogen.sh: added a new --release switch so that we can use: * --release to tag+create tarball+sign and * --dist to create a tarball (for local testing, etc) diff --git a/autogen.sh b/autogen.sh index 2cb5275..397a06a 100755 --- a/autogen.sh +++ b/autogen.sh @@ -44,14 +44,8 @@ import_pootle() cd `dirname $0` +ver=`grep AC_INIT configure.ac|sed 's/.*, \([0-9\.]*\), .*/\1/'` if [ "$1" == "--dist" ]; then - if [ -d ../releases ]; then - release="yes" - fi - ver=`grep AC_INIT configure.ac|sed 's/.*, \([0-9\.]*\), .*/\1/'` - if [ ! "$release" ]; then - ver="${ver}_`date +%Y%m%d`" - fi git-archive --format=tar --prefix=pacman-g2-$ver/ HEAD | tar xf - git log --no-merges |git name-rev --tags --stdin > pacman-g2-$ver/ChangeLog cd pacman-g2-$ver @@ -59,22 +53,13 @@ if [ "$1" == "--dist" ]; then cd .. tar czf pacman-g2-$ver.tar.gz pacman-g2-$ver rm -rf pacman-g2-$ver - if [ "$release" ]; then - dest="../releases" - gpg --comment "See http://ftp.frugalware.org/pub/README.GPG for info" \ - -ba -u 20F55619 pacman-g2-$ver.tar.gz - mv pacman-g2-$ver.tar.gz.asc $dest - else - dest="dist" - fi - mv pacman-g2-$ver.tar.gz $dest - if [ ! "$release" ]; then - sed "s/@PACKAGE_VERSION@/$ver/; - s/@SHA1SUM@/`sha1sum $dest/pacman-g2-$ver.tar.gz|sed 's/ .*//'`/" \ - dist/FrugalBuild.in > dist/FrugalBuild - echo "Now type: 'cd dist; makepkg -ci'." - fi exit 0 +elif [ "$1" == "--release" ]; then + dg tag $ver + sh $0 --dist + gpg --comment "See http://ftp.frugalware.org/pub/README.GPG for info" \ + -ba -u 20F55619 pacman-g2-$ver.tar.gz + mv pacman-tools-$ver.tar.gz{,.asc} ../releases elif [ "$1" == "--gettext-only" ]; then sh autoclean.sh for i in lib/libpacman/po src/pacman-g2/po From vmiklos at frugalware.org Thu Sep 13 15:31:46 2007 From: vmiklos at frugalware.org (VMiklos) Date: Thu Sep 13 15:31:52 2007 Subject: [Frugalware-git] frugalware-current: libx11-1.1.2-2-i686 Message-ID: <20070913133146.9378D13A404D@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=4d51f21e7ca98c21d90fc21abc971dbb60a3bd69 commit 4d51f21e7ca98c21d90fc21abc971dbb60a3bd69 Author: VMiklos Date: Thu Sep 13 15:31:33 2007 +0200 libx11-1.1.2-2-i686 add patch to fix bug #2313 thanks crazy for preparing the patch diff --git a/source/x11/libx11/BTS-2313.patch b/source/x11/libx11/BTS-2313.patch new file mode 100644 index 0000000..bd2e4f8 --- /dev/null +++ b/source/x11/libx11/BTS-2313.patch @@ -0,0 +1,27 @@ +diff -Naur libX11-1.1.2/src/GetMoEv.c libX11-1.1.2-p/src/GetMoEv.c +--- libX11-1.1.2/src/GetMoEv.c 2007-06-02 19:46:55.000000000 +0200 ++++ libX11-1.1.2-p/src/GetMoEv.c 2007-09-13 02:31:05.000000000 +0200 +@@ -33,11 +33,11 @@ + + XTimeCoord *XGetMotionEvents( + register Display *dpy, +- Time start, +- Time stop, + Window w, ++ Time start, ++ Time stop, + int *nEvents) /* RETURN */ +-{ ++{ + xGetMotionEventsReply rep; + register xGetMotionEventsReq *req; + XTimeCoord *tc = NULL; +@@ -53,7 +53,7 @@ + SyncHandle(); + return (NULL); + } +- ++ + if (rep.nEvents) { + if (! (tc = (XTimeCoord *) + Xmalloc( (unsigned) diff --git a/source/x11/libx11/FrugalBuild b/source/x11/libx11/FrugalBuild index b6066d7..acbf2e1 100644 --- a/source/x11/libx11/FrugalBuild +++ b/source/x11/libx11/FrugalBuild @@ -4,7 +4,7 @@ pkgname=libx11 _F_xorg_name=libX11 pkgver=1.1.2 -pkgrel=1 +pkgrel=2 pkgdesc="X.Org X11 library" url="http://xorg.freedesktop.org" groups=('x11' 'xorg-core' 'xorg-libs') @@ -14,8 +14,10 @@ makedepends=('pkgconfig' 'xf86bigfontproto' 'bigreqsproto' \ 'xextproto' 'xcmiscproto' 'inputproto' 'util-macros') #_F_xorg_nr=2 Finclude xorg +source=($source BTS-2313.patch) up2date="lynx -dump '${_F_xorg_url}?C=M;O=A' | grep '$_F_xorg_name-\(.*\).tar.bz2' | Flasttarbz2" Fconfopts="$Fconfopts --enable-ipv6 --enable-xlocaledir --enable-xlocale --with-xcb=yes" -sha1sums=('7190d36389eb7903831cd9541d919f55ac5098e9') +sha1sums=('7190d36389eb7903831cd9541d919f55ac5098e9' \ + '52c41a040a539709a1405bf6809eb131a4b06310') # optimization OK From vmiklos at frugalware.org Thu Sep 13 15:36:23 2007 From: vmiklos at frugalware.org (VMiklos) Date: Thu Sep 13 15:36:25 2007 Subject: [Frugalware-git] bmf: libx11-1.1.3-1bmf1-i686 Message-ID: <20070913133623.2F52613A4055@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=bmf.git;a=commitdiff;h=3ca20ef795c6a3c1ed6e3af2d9042076cfc49ec1 commit 3ca20ef795c6a3c1ed6e3af2d9042076cfc49ec1 Author: VMiklos Date: Thu Sep 13 15:35:56 2007 +0200 libx11-1.1.3-1bmf1-i686 bin, the solution is in current diff --git a/source/x11/libx11/FrugalBuild b/source/x11/libx11/FrugalBuild deleted file mode 100644 index faa7ffd..0000000 --- a/source/x11/libx11/FrugalBuild +++ /dev/null @@ -1,19 +0,0 @@ -# Compiling Time: 1.21 SBU -# Maintainer: Christian Hamar alias krix - -pkgname=libx11 -_F_xorg_name=libX11 -pkgver=1.1.3 -pkgrel=1bmf1 -pkgdesc="X.Org X11 library" -url="http://xorg.freedesktop.org" -groups=('x11' 'xorg-core' 'xorg-libs') -archs=('i686' 'x86_64') -depends=('xproto' 'libxdmcp' 'xtrans' 'kbproto' 'libxau' 'libxcb') -makedepends=('pkgconfig' 'xf86bigfontproto' 'bigreqsproto' \ - 'xextproto' 'xcmiscproto' 'inputproto' 'util-macros') -Finclude xorg -Fconfopts="$Fconfopts --enable-ipv6 --enable-xlocaledir --enable-xlocale --with-xcb=yes" - -sha1sums=('235f69172b262f874d2a2d7bd17e8197aea5b767') -# optimization OK From vmiklos at frugalware.org Thu Sep 13 16:47:05 2007 From: vmiklos at frugalware.org (VMiklos) Date: Thu Sep 13 16:47:10 2007 Subject: [Frugalware-git] pacman-tools: repoman: add a hint to the error message in update() Message-ID: <20070913144705.B286613A4021@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=pacman-tools.git;a=commitdiff;h=3fbe490d93146077b5f2d4e132cb05490979daa3 commit 3fbe490d93146077b5f2d4e132cb05490979daa3 Author: VMiklos Date: Thu Sep 13 16:46:43 2007 +0200 repoman: add a hint to the error message in update() closes #2392 diff --git a/repoman b/repoman index 3d949d6..08fe75b 100755 --- a/repoman +++ b/repoman @@ -494,6 +494,7 @@ update() cmd="rsync -azvP $j/_darcs/current/ $i" else echo "This server ($j) does not support git nor darcs." + echo "HINT: if you are upgrading from a previous version of Frugalware, try running 'rm -rf /var/fst/' and 'repoman upd'." continue fi mkdir -p $fst_root From vmiklos at frugalware.org Thu Sep 13 17:44:56 2007 From: vmiklos at frugalware.org (VMiklos) Date: Thu Sep 13 17:45:00 2007 Subject: [Frugalware-git] pacman-g2: add070.py: new test for removes() Message-ID: <20070913154456.7736313A4021@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=pacman-g2.git;a=commitdiff;h=9e751ca8c7b32ec435057374f99792ce0457e7f7 commit 9e751ca8c7b32ec435057374f99792ce0457e7f7 Author: VMiklos Date: Thu Sep 13 17:44:36 2007 +0200 add070.py: new test for removes() thanks BMH for noticing me about we had no tests for removes() in bug #2394 diff --git a/pactest/tests/add070.py b/pactest/tests/add070.py new file mode 100644 index 0000000..57aa8a0 --- /dev/null +++ b/pactest/tests/add070.py @@ -0,0 +1,15 @@ +self.description = "Remove a file because of removes()" + +p1 = pmpkg("p1") +p1.files = ["usr/lib/generated"] +self.addpkg2db("local", p1) + +p2 = pmpkg("p2") +p2.removes = ["usr/lib/generated"] +self.addpkg2db("sync", p2) + +self.args = "-S p2" + +self.addrule("PKG_EXIST=p1") +self.addrule("PKG_EXIST=p2") +self.addrule("!FILE_EXIST=usr/lib/generated") From vmiklos at frugalware.org Thu Sep 13 17:44:56 2007 From: vmiklos at frugalware.org (VMiklos) Date: Thu Sep 13 17:45:02 2007 Subject: [Frugalware-git] pacman-g2: pactest: support for removes() Message-ID: <20070913154456.521BC13A4020@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=pacman-g2.git;a=commitdiff;h=b52a229530860aa8e5e8bf688243805746df640a commit b52a229530860aa8e5e8bf688243805746df640a Author: VMiklos Date: Thu Sep 13 17:43:44 2007 +0200 pactest: support for removes() diff --git a/pactest/pmpkg.py b/pactest/pmpkg.py index 012d3c2..82187b0 100644 --- a/pactest/pmpkg.py +++ b/pactest/pmpkg.py @@ -59,6 +59,7 @@ class pmpkg: # files self.files = [] self.backup = [] + self.removes = [] # install self.install = { "pre_install": "", @@ -159,6 +160,8 @@ class pmpkg: data.append("provides = %s" % i) for i in self.backup: data.append("backup = %s" % i) + for i in self.removes: + data.append("remove = %s" % i) mkfile(".PKGINFO", "\n".join(data)) targets = ".PKGINFO" diff --git a/pactest/util.py b/pactest/util.py index 9cfcd0b..742df73 100644 --- a/pactest/util.py +++ b/pactest/util.py @@ -163,6 +163,8 @@ def mkdescfile(filename, pkg): data.append("provides = %s" % i) for i in pkg.backup: data.append("backup = %s" % i) + for i in pkg.removes: + data.append("remove = %s" % i) if pkg.force: data.append("force = 1") From vmiklos at frugalware.org Thu Sep 13 18:12:18 2007 From: vmiklos at frugalware.org (VMiklos) Date: Thu Sep 13 18:12:22 2007 Subject: [Frugalware-git] frugalware-current: gftp-2.0.18-3-i686 Message-ID: <20070913161218.D377713A4020@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=355c158bf852500229595533fbd64af2f5fd00ec commit 355c158bf852500229595533fbd64af2f5fd00ec Author: VMiklos Date: Thu Sep 13 18:12:01 2007 +0200 gftp-2.0.18-3-i686 added CVE-2007-3961-3962.patch closes #2368 diff --git a/source/xapps/gftp/CVE-2007-3961-3962.patch b/source/xapps/gftp/CVE-2007-3961-3962.patch new file mode 100644 index 0000000..36afc04 --- /dev/null +++ b/source/xapps/gftp/CVE-2007-3961-3962.patch @@ -0,0 +1,59 @@ +--- lib/fsplib/fsplib.h ++++ lib/fsplib/fsplib.h +@@ -1,6 +1,7 @@ + #ifndef _FSPLIB_H + #define _FSPLIB_H 1 + #include ++#include + /* The FSP v2 protocol support library - public interface */ + + /* +@@ -138,6 +139,12 @@ + unsigned int pos; /* position of next packet */ + } FSP_FILE; + ++ ++typedef union dirent_workaround { ++ struct dirent dirent; ++ char fill[offsetof (struct dirent, d_name) + MAXNAMLEN + 1]; ++} dirent_workaround; ++ + /* function prototypes */ + + /* session management */ + +--- lib/fsplib/fsplib.c ++++ lib/fsplib/fsplib.c +@@ -612,7 +612,7 @@ + entry->d_reclen = fentry.reclen; + strncpy(entry->d_name,fentry.name,MAXNAMLEN); + +- if (fentry.namlen > MAXNAMLEN) ++ if (fentry.namlen >= MAXNAMLEN) + { + entry->d_name[MAXNAMLEN + 1 ] = '\0'; + #ifdef HAVE_NAMLEN +@@ -681,7 +681,7 @@ + dir->dirpos += 9; + /* read file name */ + entry->name[255 + 1] = '\0'; +- strncpy(entry->name,(char *)( dir->data + dir->dirpos ),MAXNAMLEN); ++ strncpy(entry->name,(char *)( dir->data + dir->dirpos ),255); + namelen = strlen( (char *) dir->data+dir->dirpos); + /* skip over file name */ + dir->dirpos += namelen +1; +@@ -709,12 +709,12 @@ + + struct dirent * fsp_readdir(FSP_DIR *dirp) + { +- static struct dirent entry; ++ static dirent_workaround entry; + struct dirent *result; + + + if (dirp == NULL) return NULL; +- if ( fsp_readdir_r(dirp,&entry,&result) ) ++ if ( fsp_readdir_r(dirp,&entry.dirent,&result) ) + return NULL; + else + return result; diff --git a/source/xapps/gftp/FrugalBuild b/source/xapps/gftp/FrugalBuild index f220228..fb2fd41 100644 --- a/source/xapps/gftp/FrugalBuild +++ b/source/xapps/gftp/FrugalBuild @@ -4,7 +4,7 @@ pkgname=gftp pkgver=2.0.18 -pkgrel=2 +pkgrel=3 pkgdesc="A multithreaded ftp client for X" url="http://gftp.seul.org/" depends=('gtk+2' 'atk' 'libsm' 'openssl' 'readline' 'freetype2' 'pango' 'cairo') @@ -14,15 +14,15 @@ options=('scriptlet') up2date="lynx -dump http://gftp.seul.org/|grep 'Stable.*bz'|sed 's/.*-\(.*\)\.t.*/\1/'" source=(http://gftp.seul.org/$pkgname-$pkgver.tar.bz2 \ 00-$pkgname-$pkgver-menu-file.patch \ - 01-$pkgname-$pkgver-hu.patch) + 01-$pkgname-$pkgver-hu.patch \ + CVE-2007-3961-3962.patch) sha1sums=('c2468f1ff1fe978a5fab3a198e513558f3b48f5a' \ '0946b8bd33186959652b1d1df3e79c657e33dc69' \ - '667a81f4c0cc8c4092b74b5b1a05a5e682911ee7') + '667a81f4c0cc8c4092b74b5b1a05a5e682911ee7' \ + 'b09a6505107afe4e0f9153a01d33741bbbb53d4e') build() { - Fcd - Fpatch 00-$pkgname-$pkgver-menu-file.patch || return 1 - Fpatch 01-$pkgname-$pkgver-hu.patch || return 1 + Fpatchall # Generate updated gmo from po. cd po msgfmt -o hu.gmo hu.po @@ -31,5 +31,4 @@ build() { Fmakeinstall } - # optimization OK From vmiklos at frugalware.org Thu Sep 13 18:17:04 2007 From: vmiklos at frugalware.org (VMiklos) Date: Thu Sep 13 18:17:10 2007 Subject: [Frugalware-git] homepage-ng: FSA269-kernel Message-ID: <20070913161704.C13D713A4020@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=homepage-ng.git;a=commitdiff;h=e839fd8b534cc293653d25bd790df4e9c895f14b commit e839fd8b534cc293653d25bd790df4e9c895f14b Author: VMiklos Date: Thu Sep 13 18:16:44 2007 +0200 FSA269-kernel diff --git a/frugalware/xml/security.xml b/frugalware/xml/security.xml index b138cb0..e7a1726 100644 --- a/frugalware/xml/security.xml +++ b/frugalware/xml/security.xml @@ -27,6 +27,23 @@ + 269 + 2007-09-13 + vmiklos + kernel + 2.6.20-5terminus8 + 2.6.20-5terminus9 + http://bugs.frugalware.org/task/2366 + http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2007-4308 + http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2007-3843 + http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2007-3851 + Security issues has been reported in the Linux Kernel, which can be exploited by malicious, local users to bypass certain security restrictions. + 1) The security issue is caused due to the AACRAID driver not correctly checking the privileges for IOCTLs. This can be exploited to perform potentially dangerous operations by sending certain IOCTLs to the driver. + 2) The weakness is caused due to the Linux Kernel not correctly enforcing the defined signing options when mounting a CIFS file system. This may weaken the security and can be leveraged to perform further attacks. + 3) The vulnerability is caused due to an error within the driver for i965G chipsets and above, which can be exploited to e.g. gain escalated privileges by modifying physical memory. + + + 268 2007-09-07 voroskoi From priyank at frugalware.org Thu Sep 13 18:27:18 2007 From: priyank at frugalware.org (Priyank) Date: Thu Sep 13 18:27:21 2007 Subject: [Frugalware-git] frugalware-current: apg-2.2.3-1-i686 Message-ID: <20070913162718.CF76A13A4020@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=07085ff9b86e16428f1c562ad0584b86844ea2ad commit 07085ff9b86e16428f1c562ad0584b86844ea2ad Author: Priyank Date: Thu Sep 13 21:50:07 2007 +0530 apg-2.2.3-1-i686 * New package / closes #1863 diff --git a/source/apps-extra/apg/FrugalBuild b/source/apps-extra/apg/FrugalBuild new file mode 100644 index 0000000..5f02886 --- /dev/null +++ b/source/apps-extra/apg/FrugalBuild @@ -0,0 +1,16 @@ +# Compiling Time: 0.01 SBU +# Maintainer: Priyank Gosalia + +pkgname=apg +pkgver=2.2.3 +pkgrel=1 +pkgdesc="Automated Password Generator (APG)" +url="http://www.adel.nursat.kz/apg/" +depends=() +groups=('apps-extra') +archs=('i686') +up2date="lynx -dump $url/download.shtml | grep -m1 tar.gz | sed 's/.*g-\(.*\).t.*/\1/'" +source=($pkgname-$pkgver.tar.gz $pkgname-$pkgver-makefile.diff) +sha1sums=('7bdbc931ef8477717186dc3ab3a2d3c25012b4ca' \ + 'b8a3daa2aec83c0baa888aae7999439a2451ed18') + diff --git a/source/apps-extra/apg/apg-2.2.3-makefile.diff b/source/apps-extra/apg/apg-2.2.3-makefile.diff new file mode 100644 index 0000000..cd7f8ca --- /dev/null +++ b/source/apps-extra/apg/apg-2.2.3-makefile.diff @@ -0,0 +1,43 @@ +diff -Naur apg-2.2.3/Makefile apg-2.2.3.new/Makefile +--- apg-2.2.3/Makefile 2003-08-07 21:10:30.000000000 +0530 ++++ apg-2.2.3.new/Makefile 2007-09-13 21:01:30.000000000 +0530 +@@ -6,7 +6,6 @@ + ################################################################## + # Compilation flags + # You should comment the line below for AIX+native cc +-FLAGS = -Wall + + ################################################################## + # Libraries +@@ -39,11 +38,11 @@ + ################################################################## + # Directories + # Install dirs +-INSTALL_PREFIX = /usr/local ++INSTALL_PREFIX = ${DESTDIR}/usr + APG_BIN_DIR = /bin +-APG_MAN_DIR = /man/man1 ++APG_MAN_DIR = /share/man/man1 + APGD_BIN_DIR = /sbin +-APGD_MAN_DIR = /man/man8 ++APGD_MAN_DIR = /share/man/man8 + + #################################################################### + # If you plan to install APG daemon you should look at lines below # +@@ -96,13 +95,13 @@ + cygwin: standalone + + apg: +- ${CC} ${FLAGS} -D${CRYPTED_PASS} -D${USE_SHA} -o ${PROGNAME} ${SOURCES} ${LIBS} ${LIBM} ++ ${CC} ${CFLAGS} -D${CRYPTED_PASS} -D${USE_SHA} -o ${PROGNAME} ${SOURCES} ${LIBS} ${LIBM} + + apgd: +- ${CC} ${FLAGS} -DCLISERV -D${USE_SHA} -o ${CS_PROGNAME} ${SOURCES} ${CS_LIBS} ${LIBM} ++ ${CC} ${CFLAGS} -DCLISERV -D${USE_SHA} -o ${CS_PROGNAME} ${SOURCES} ${CS_LIBS} ${LIBM} + + apgbfm: +- ${CC} ${FLAGS} -DAPGBFM -o ${BFM_PROGNAME} ${BFM_SOURCES} ${LIBM} ++ ${CC} ${CFLAGS} -DAPGBFM -o ${BFM_PROGNAME} ${BFM_SOURCES} ${LIBM} + + strip: + strip ${PROGNAME} From priyank at frugalware.org Thu Sep 13 18:33:04 2007 From: priyank at frugalware.org (Priyank) Date: Thu Sep 13 18:33:07 2007 Subject: [Frugalware-git] frugalware-current: apg-2.2.3-1-i686 Message-ID: <20070913163304.6A1BE13A4020@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=f290ecbe9c5201b9400ae93c3301b2b26601d329 commit f290ecbe9c5201b9400ae93c3301b2b26601d329 Author: Priyank Date: Thu Sep 13 22:00:09 2007 +0530 apg-2.2.3-1-i686 * Fixed source diff --git a/source/apps-extra/apg/FrugalBuild b/source/apps-extra/apg/FrugalBuild index 5f02886..5f8a58f 100644 --- a/source/apps-extra/apg/FrugalBuild +++ b/source/apps-extra/apg/FrugalBuild @@ -10,7 +10,9 @@ depends=() groups=('apps-extra') archs=('i686') up2date="lynx -dump $url/download.shtml | grep -m1 tar.gz | sed 's/.*g-\(.*\).t.*/\1/'" -source=($pkgname-$pkgver.tar.gz $pkgname-$pkgver-makefile.diff) +source=($url/download/$pkgname-$pkgver.tar.gz $pkgname-$pkgver-makefile.diff) sha1sums=('7bdbc931ef8477717186dc3ab3a2d3c25012b4ca' \ 'b8a3daa2aec83c0baa888aae7999439a2451ed18') + +# optimization OK From vmiklos at frugalware.org Thu Sep 13 18:35:30 2007 From: vmiklos at frugalware.org (VMiklos) Date: Thu Sep 13 18:35:32 2007 Subject: [Frugalware-git] frugalware-current: asterisk-1.4.11-2-i686 Message-ID: <20070913163530.6C59813A4020@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=3bce8cb606235a0f12cbf50b96f800c6aee0d244 commit 3bce8cb606235a0f12cbf50b96f800c6aee0d244 Author: VMiklos Date: Thu Sep 13 18:35:17 2007 +0200 asterisk-1.4.11-2-i686 added CVE-2007-4521.patch closes #2377 diff --git a/source/apps-extra/asterisk/CVE-2007-4521.patch b/source/apps-extra/asterisk/CVE-2007-4521.patch new file mode 100644 index 0000000..5dd4f7e --- /dev/null +++ b/source/apps-extra/asterisk/CVE-2007-4521.patch @@ -0,0 +1,11 @@ +--- 1.4/apps/app_voicemail.c 2007/08/24 15:49:37 80749 ++++ 1.4/apps/app_voicemail.c 2007/08/24 15:51:03 80750 +@@ -4421,7 +4421,7 @@ + mail_fetchstructure (vms->mailstream,vms->msgArray[vms->curmsg],&body); + + /* We have the body, now we extract the file name of the first attachment. */ +- if (body->nested.part->next && body->nested.part->next->body.parameter->value) { ++ if (body->nested.part && body->nested.part->next && body->nested.part->next->body.parameter->value) { + attachedfilefmt = ast_strdupa(body->nested.part->next->body.parameter->value); + } else { + ast_log(LOG_ERROR, "There is no file attached to this IMAP message.\n"); diff --git a/source/apps-extra/asterisk/FrugalBuild b/source/apps-extra/asterisk/FrugalBuild index c090c4f..02f65f5 100644 --- a/source/apps-extra/asterisk/FrugalBuild +++ b/source/apps-extra/asterisk/FrugalBuild @@ -4,7 +4,7 @@ pkgname=asterisk pkgver=1.4.11 -pkgrel=1 +pkgrel=2 pkgdesc="Open Source Private Branch Exchange (PBX)." url="http://asterisk.org/" backup=(etc/asterisk/*) @@ -16,9 +16,11 @@ groups=('apps-extra') archs=('i686' 'x86_64') up2date="lynx -dump http://ftp.digium.com/pub/asterisk/|grep asterisk-[0-9\.]*tar.gz$|Flasttar" source=(http://ftp.digium.com/pub/$pkgname/$pkgname-$pkgver.tar.gz \ - rc.asterisk) + rc.asterisk \ + CVE-2007-4521.patch) sha1sums=('2a27155dd716bf8bd3f92fe9eee7fe82e311170c' \ - '1c18155cdece83d556e2295b54508636ff74f307') + '1c18155cdece83d556e2295b54508636ff74f307' \ + '900ec28ba2121cb996b3d62710e5606e54eadd44') build() { From priyank at frugalware.org Thu Sep 13 19:09:43 2007 From: priyank at frugalware.org (Priyank) Date: Thu Sep 13 19:09:46 2007 Subject: [Frugalware-git] frugalware-current: gfpm-1.0.1-2-i686 Message-ID: <20070913170943.4C3E513A4021@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=89bd49b15176c60a69569ac7e0f9be8634c06a1b commit 89bd49b15176c60a69569ac7e0f9be8634c06a1b Author: Priyank Date: Thu Sep 13 22:35:38 2007 +0530 gfpm-1.0.1-2-i686 * Replaces 'frugalpkg' * Also closed #1071 diff --git a/source/xapps/gfpm/FrugalBuild b/source/xapps/gfpm/FrugalBuild index 64d3c36..3fb97f1 100644 --- a/source/xapps/gfpm/FrugalBuild +++ b/source/xapps/gfpm/FrugalBuild @@ -3,12 +3,13 @@ pkgname=gfpm pkgver=1.0.1 -pkgrel=1 +pkgrel=2 pkgdesc="Graphical Frugalware Package Manager" url="http://ftp.frugalware.org/pub/other/gfpm" depends=('glib2' 'gtk+2' 'libglade' 'pacman-g2') makedepends=('pkgconfig' 'intltool') groups=('xapps') +replaces=('frugalpkg') archs=('i686' 'x86_64') _F_gnome_iconcache="y" Finclude gnome-scriptlet From crazy at frugalware.org Thu Sep 13 22:32:02 2007 From: crazy at frugalware.org (crazy) Date: Thu Sep 13 22:32:12 2007 Subject: [Frugalware-git] frugalware-current: bmpx-0.40.4-1-i686 Message-ID: <20070913203202.DFF0713A4020@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=faaedabcd1133a489577523bd3e9b4343a1cd705 commit faaedabcd1133a489577523bd3e9b4343a1cd705 Author: crazy Date: Thu Sep 13 22:27:18 2007 +0200 bmpx-0.40.4-1-i686 * Version bump * removed almost all workarounds , solved upstream :p diff --git a/source/xmultimedia-extra/bmpx/00-revert-linking-workarounds.patch b/source/xmultimedia-extra/bmpx/00-revert-linking-workarounds.patch deleted file mode 100644 index ce7242a..0000000 --- a/source/xmultimedia-extra/bmpx/00-revert-linking-workarounds.patch +++ /dev/null @@ -1,39 +0,0 @@ -diff -Naur bmpx-0.40.3/src/mb-tagger.hh bmpx-0.40.3-p/src/mb-tagger.hh ---- bmpx-0.40.3/src/mb-tagger.hh 2007-09-08 09:38:35.000000000 +0200 -+++ bmpx-0.40.3-p/src/mb-tagger.hh 2007-09-10 11:10:27.000000000 +0200 -@@ -48,7 +48,6 @@ - #include "library.hh" - #include "musicbrainz/mbxml-v2.hh" - #include "bmp/ui-types.hh" --#include "lastfm-types.hh" - - using namespace Glib; - -diff -Naur bmpx-0.40.3/src/shell.cc bmpx-0.40.3-p/src/shell.cc ---- bmpx-0.40.3/src/shell.cc 2007-09-08 09:38:35.000000000 +0200 -+++ bmpx-0.40.3-p/src/shell.cc 2007-09-10 11:09:47.000000000 +0200 -@@ -152,10 +152,6 @@ - #define PLAYER_SHELL_ACTION_BOOKMARKS "player-shell-action-bookmarks" - #define PLAYER_SHELL_ACTION_CREATE_BOOKMARK "player-shell-action-create-bookmark" - --namespace --{ -- const Bmp::DB::Variant dummy = double (2); --} - - namespace Bmp - { -diff -Naur bmpx-0.40.3/src/ui-part-jamendo.cc bmpx-0.40.3-p/src/ui-part-jamendo.cc ---- bmpx-0.40.3/src/ui-part-jamendo.cc 2007-09-08 09:38:35.000000000 +0200 -+++ bmpx-0.40.3-p/src/ui-part-jamendo.cc 2007-09-10 11:10:49.000000000 +0200 -@@ -48,10 +48,6 @@ - #define JAMENDO_ACTION_UI_PART_JAMENDO "jamendo-action-ui-part-jamendo" - #define JAMENDO_ACTION_UPDATE_DB "jamendo-action-update-db" - --namespace --{ -- const Bmp::DB::Variant dummy = double (2); --} - - namespace Bmp - { diff --git a/source/xmultimedia-extra/bmpx/FrugalBuild b/source/xmultimedia-extra/bmpx/FrugalBuild index 1ba221f..6e1638f 100644 --- a/source/xmultimedia-extra/bmpx/FrugalBuild +++ b/source/xmultimedia-extra/bmpx/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: crazy pkgname=bmpx -pkgver=0.40.3 +pkgver=0.40.4 basever=0.40 pkgrel=1 pkgdesc="A media player that features support for specifications like XDS DnD, XSPF and DBus." @@ -20,14 +20,12 @@ rodepends=('gst-ffmpeg>=0.10.1-4' 'gst-plugins-good-flac>=0.10.4-5' 'gst-plugins options=('scriptlet') groups=('xmultimedia-extra') archs=('i686' 'x86_64') -up2date="lynx -dump 'http://bmpx.beep-media-player.org/site/Downloads#BMP_Source_Download'|grep -m1 '.tar.bz2'|sed 's/.*-\(.*\).t.*/\1/'" +up2date="lynx -dump 'http://bmpx.beep-media-player.org/site/BMPx_Homepage'|grep -m1 '.tar.bz2'|sed 's/.*-\(.*\).t.*/\1/'" source=(http://files.beep-media-player.org/releases/$basever/$pkgname-$pkgver.tar.bz2 \ - 00-revert-linking-workarounds.patch \ 01-fw_builduser.patch \ 02-configure.patch \ 03-no-ggdb3-when-debug-is-off.patch) -sha1sums=('9ae2e9342bbde9c10449fb12306efd7156054139' \ - 'c0ecd2b222ec79e73c1e0981e54cfe0d42a07619' \ +sha1sums=('046baeac32d116c54ae160a233e5066eaf781601' \ 'a8aabe4db10959e488ffdc38881c88a7cd72855e' \ '36a4a69332e0488b4c3b225859f062a70c93f980' \ '1ae574ae83b692518ebbcf2251b96b5d33d966e5') @@ -43,17 +41,13 @@ build() Fcd Fpatchall Fautoreconf - unset MAKEFLAGS - # do _not_ remove that or it won't build - export CFLAGS="$(echo $CFLAGS|sed 's/-O2/-Os/')" - export CXXFLAGS="$(echo $CXXFLAGS|sed 's/-O2/-Os/')" # this is because LD >=2.17 changed 'symbols in discarded sections' # to a 'error' from a 'warning' and now some C++ apps may break , # this is one of them =) # TODO: - work it out with nullptr for BMPx ( add some --enable-ld-workaround option to configure ? ) # - revert that changes in LD and let it be a 'warning' again for FW ? .. looks like the ld folks want to so # - http://sourceware.org/ml/binutils/2007-09/msg00096.html - export LDFLAGS="$LDFLAGS -Wl,--noinhibit-exec" + #export LDFLAGS="$LDFLAGS -Wl,--noinhibit-exec" Fconf \ --enable-hal \ --enable-sid \ @@ -67,9 +61,6 @@ build() ##--enable-debug# make || Fdie Fmakeinstall - ## broken symlink - Frm /usr/bin/bmp2 - Fln /usr/bin/beep-media-player-2 /usr/bin/bmp2 ## ff plugin Fmkdir /usr/lib/firefox/extensions/{bc3572da-daf9-435d-a8a6-33cc20fe4533} cp xpi/{*.xpi,*.manifest} $Fdestdir/usr/lib/firefox/extensions/{bc3572da-daf9-435d-a8a6-33cc20fe4533}/ From vmiklos at frugalware.org Thu Sep 13 22:49:16 2007 From: vmiklos at frugalware.org (VMiklos) Date: Thu Sep 13 22:49:22 2007 Subject: [Frugalware-git] frugalware-current: realplayer-10.0.9.809_20070726-2-i686 Message-ID: <20070913204916.B3BEC13A4020@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=5f847bdda3c2fa46aba01c397d584ead060cc0cc commit 5f847bdda3c2fa46aba01c397d584ead060cc0cc Author: VMiklos Date: Thu Sep 13 22:48:37 2007 +0200 realplayer-10.0.9.809_20070726-2-i686 version bump closes #2220 diff --git a/source/xapps-extra/realplayer/FrugalBuild b/source/xapps-extra/realplayer/FrugalBuild index c270a4d..2fc596a 100644 --- a/source/xapps-extra/realplayer/FrugalBuild +++ b/source/xapps-extra/realplayer/FrugalBuild @@ -4,8 +4,8 @@ pkgname=realplayer origname=RealPlayer -pkgver=10.0.8.805_20060718 -origver=10.0.8.805-20060718 +pkgver=10.0.9.809_20070726 +origver=10.0.9.809-20070726 pkgrel=2 pkgdesc="Real Media Player" url="https://player.helixcommunity.org/" @@ -16,13 +16,13 @@ archs=('i686') up2date="elinks -dump https://helixcommunity.org/project/showfiles.php?group_id=154 |grep RealPlayer.*.i586.rpm |sed -ne 's/.*r-\(.*\).i586.*/\1/;1 p' |sed s/-/_/" # You can get the pkgurl this way: (don't forget the https://) #elinks -dump https://helixcommunity.org/project/showfiles.php?group_id=154 |grep RealPlayer.*.i586.rpm |grep https |sed -ne 's|.*https://\(.*\)|\1|;1 p' -source=(https://helixcommunity.org/projects/player/files/download/2152) +source=(https://helixcommunity.org/projects/player/files/download/2479) license="HBRL" options=('nobuild') build() { - rpm2cpio 2152 \ + rpm2cpio 2479 \ |cpio -idmu --no-preserve-owner --quiet Fcd usr/local/RealPlayer Fmkdir /usr/lib/$pkgname @@ -43,4 +43,4 @@ build() /usr/share/locale/$i/LC_MESSAGES/libgtkhx.mo done } -sha1sums=('5bca48a23c747d19409330e6d6a94d49152cc557') +sha1sums=('5231a724a1d3987400c79d066ff6b5c0ba3f5251') From vmiklos at frugalware.org Thu Sep 13 23:10:55 2007 From: vmiklos at frugalware.org (VMiklos) Date: Thu Sep 13 23:10:58 2007 Subject: [Frugalware-git] frugalware-current: qgit-1.5.7-1-i686 Message-ID: <20070913211055.C47A513A4020@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=ac24b42254e97ca6493bfd66c5db73282116f52c commit ac24b42254e97ca6493bfd66c5db73282116f52c Author: VMiklos Date: Thu Sep 13 23:10:35 2007 +0200 qgit-1.5.7-1-i686 version bump closes #2409 diff --git a/source/xapps-extra/qgit/FrugalBuild b/source/xapps-extra/qgit/FrugalBuild index 00d8e1c..136b6c9 100644 --- a/source/xapps-extra/qgit/FrugalBuild +++ b/source/xapps-extra/qgit/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: crazy pkgname=qgit -pkgver=1.5.6 +pkgver=1.5.7 pkgrel=1 pkgdesc="QGit is a git GUI viewer built on Qt/C++." url="http://digilander.libero.it/mcostalba/" @@ -24,7 +24,7 @@ build() Ffilerel ../$pkgname.png /usr/share/$pkgname/$pkgname.png } -sha1sums=('0b2b3b9c30c071381d8775c9444409c684000493'\ - 'deb194ecaf4d099a23c091d9f32ce80ea67204ca'\ +sha1sums=('4ac4ea72b9377f8719c6195a3f07501ad3cfea3a' \ + 'deb194ecaf4d099a23c091d9f32ce80ea67204ca' \ '09f9373115c0db6bfdda3072ecd54ae588fa003d') # optimization OK From vmiklos at frugalware.org Thu Sep 13 23:55:01 2007 From: vmiklos at frugalware.org (VMiklos) Date: Thu Sep 13 23:55:05 2007 Subject: [Frugalware-git] frugalware-current: docs/release-howto: bookmark the mail from Nadfoka about the artwork list Message-ID: <20070913215501.2AE5613A4020@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=dc084ddc8eef4fcd37d816fcb0eb7004157e5884 commit dc084ddc8eef4fcd37d816fcb0eb7004157e5884 Author: VMiklos Date: Thu Sep 13 23:54:52 2007 +0200 docs/release-howto: bookmark the mail from Nadfoka about the artwork list diff --git a/docs/release-howto.txt b/docs/release-howto.txt index a3b5526..95d210b 100644 --- a/docs/release-howto.txt +++ b/docs/release-howto.txt @@ -18,6 +18,9 @@ $ rsync -avP --delete-after frugalware-current/* frugalware-testing/ == Preparing - send a mail to -devel about "please stop version and release bumps" +- check if the artwork has been updated completely. see + http://frugalware.org/pipermail/frugalware-devel/2007-February/003163.html[this] + mail from Nadfoka on what items should be checked - sync the archs, checkpkgs shouldn't have any red pkg in it's output - run gensync to rebuild the fdbs - generate isos and test if everything is ok From vmiklos at frugalware.org Fri Sep 14 00:00:02 2007 From: vmiklos at frugalware.org (VMiklos) Date: Fri Sep 14 00:00:05 2007 Subject: [Frugalware-git] pacman-tools: release target: git tag -> dg tag Message-ID: <20070913220002.B2C2C13A402C@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=pacman-tools.git;a=commitdiff;h=a6aa2e9c9d423ab664ed87a1bd5049fab8ee9bb8 commit a6aa2e9c9d423ab664ed87a1bd5049fab8ee9bb8 Author: VMiklos Date: Thu Sep 13 23:59:35 2007 +0200 release target: git tag -> dg tag diff --git a/Makefile b/Makefile index 323c795..4771b4d 100644 --- a/Makefile +++ b/Makefile @@ -110,7 +110,7 @@ dist: gzip -f -9 pacman-tools-$(VERSION).tar release: - git tag $(VERSION) + dg tag $(VERSION) $(MAKE) dist gpg --comment "See http://ftp.frugalware.org/pub/README.GPG for info" \ -ba -u 20F55619 pacman-tools-$(VERSION).tar.gz From vmiklos at frugalware.org Fri Sep 14 00:10:50 2007 From: vmiklos at frugalware.org (VMiklos) Date: Fri Sep 14 00:10:55 2007 Subject: [Frugalware-git] pacman-tools: updates for 0.9.9 Message-ID: <20070913221050.85A6713A404D@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=pacman-tools.git;a=commitdiff;h=326d8c41ca55c11efe852eab12a64f7bb9b3352c commit 326d8c41ca55c11efe852eab12a64f7bb9b3352c Author: VMiklos Date: Fri Sep 14 00:10:24 2007 +0200 updates for 0.9.9 diff --git a/Makefile b/Makefile index 4771b4d..d507c3d 100644 --- a/Makefile +++ b/Makefile @@ -16,7 +16,7 @@ # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA # -VERSION = 0.9.8 +VERSION = 0.9.9 LANGS = hu pl diff --git a/NEWS b/NEWS index 6784026..1052caf 100644 --- a/NEWS +++ b/NEWS @@ -1,5 +1,11 @@ VERSION DESCRIPTION ----------------------------------------------------------------------------- +0.9.9 - dg: support for binary files, new tag subcommand + - repoman: the USE_* variables are now documented + - mkisorelease: new script to generate all iso images for a given + release + - syncpkgdctl: new script to control syncpkgd + - revdep-rebuild now has a --sed option 0.9.8 - syncpkgd: rewrite to support multiple clients - syncpkgcd: new client daemon for syncpkgd - revdep-rebuild, bumppkg: new --nobuild switch From vmiklos at frugalware.org Fri Sep 14 00:16:06 2007 From: vmiklos at frugalware.org (VMiklos) Date: Fri Sep 14 00:16:09 2007 Subject: [Frugalware-git] frugalware-current: pacman-tools-0.9.9-1-i686 Message-ID: <20070913221606.C51ED13A4050@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=fea549ee188018c91f885396aee48a9887d206dd commit fea549ee188018c91f885396aee48a9887d206dd Author: VMiklos Date: Fri Sep 14 00:15:55 2007 +0200 pacman-tools-0.9.9-1-i686 version bump diff --git a/source/devel/pacman-tools/FrugalBuild b/source/devel/pacman-tools/FrugalBuild index b599849..b32cb9f 100644 --- a/source/devel/pacman-tools/FrugalBuild +++ b/source/devel/pacman-tools/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: VMiklos pkgname=pacman-tools -pkgver=0.9.8 +pkgver=0.9.9 pkgrel=1 pkgdesc="Tools for developers for managing packages" url="http://ftp.frugalware.org/pub/other/pacman-tools" From vmiklos at frugalware.org Fri Sep 14 00:53:15 2007 From: vmiklos at frugalware.org (VMiklos) Date: Fri Sep 14 00:53:17 2007 Subject: [Frugalware-git] frugalware-current: git2cl-1.2-1-i686 Message-ID: <20070913225315.6F6FD13A4020@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=546c579364252f37ac65be0973be23d430995fe1 commit 546c579364252f37ac65be0973be23d430995fe1 Author: VMiklos Date: Fri Sep 14 00:52:54 2007 +0200 git2cl-1.2-1-i686 new package diff --git a/source/devel-extra/git2cl/FrugalBuild b/source/devel-extra/git2cl/FrugalBuild new file mode 100644 index 0000000..1fe3643 --- /dev/null +++ b/source/devel-extra/git2cl/FrugalBuild @@ -0,0 +1,20 @@ +# Compiling Time: 0 SBU +# Maintainer: VMiklos + +pkgname=git2cl +pkgver=1.2 +pkgrel=1 +pkgdesc="A tool used to generate GNU ChangeLogs based on git repository logs." +url="http://josefsson.org/git2cl/" +rodepends=('git' 'perl-date-perse') +groups=('devel-extra') +archs=('i686' 'x86_64') +up2date="lynx -source -dump http://repo.or.cz/w/git2cl.git|grep tags|sed 's/.*tags\/git2cl-\([^>]*\).>.*/\1/;q'" +source=(http://ftp.frugalware.org/pub/other/sources/git2cl/git2cl-$pkgver.tar.gz) +signatures=($source.asc) + +build() +{ + Fcd + Fexerel /usr/bin/git2cl +} From vmiklos at frugalware.org Fri Sep 14 00:55:19 2007 From: vmiklos at frugalware.org (VMiklos) Date: Fri Sep 14 00:55:21 2007 Subject: [Frugalware-git] bmf: git2cl-1.2-1-i686 Message-ID: <20070913225519.90DF013A4020@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=bmf.git;a=commitdiff;h=cd937f7b4fb917ef27fff9b1996e2864fd5d6122 commit cd937f7b4fb917ef27fff9b1996e2864fd5d6122 Author: VMiklos Date: Fri Sep 14 00:54:17 2007 +0200 git2cl-1.2-1-i686 bin, fixed and moved to -current diff --git a/source/devel-extra/git2cl/FrugalBuild b/source/devel-extra/git2cl/FrugalBuild deleted file mode 100644 index 1101701..0000000 --- a/source/devel-extra/git2cl/FrugalBuild +++ /dev/null @@ -1,20 +0,0 @@ -# Compiling Time: 0 SBU -# Maintainer: VMiklos - -pkgname=git2cl -pkgver=1.2 -pkgrel=1 -pkgdesc="A tool used to generate GNU ChangeLogs based on git repository logs." -url="http://josefsson.org/git2cl/" -rodepends=('git' 'perl-date-perse') -groups=('devel-extra') -archs=('i686' 'x86_64') -up2date="lynx -source -dump http://repo.or.cz/w/git2cl.git|grep tags|sed 's/.*tags\/git2cl-\([^>]*\).>.*/\1/;q'" -source=(http://josefsson.org/git2cl/git2cl http://josefsson.org/git2cl/README) -sha1sums=('ff907f827caf525cb922c768e1561e7add14965c' \ - '18d05026314f814366942c2e67119b0b8c9c3da0') - -build() -{ - Fexe /usr/bin/git2cl -} From crazy at frugalware.org Fri Sep 14 11:52:43 2007 From: crazy at frugalware.org (crazy) Date: Fri Sep 14 11:52:44 2007 Subject: [Frugalware-git] frugalware-current: xulrunner-1.8.1.3-2-i686 Message-ID: <20070914095243.08F57167800F@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=9de182bf00ce41936cc36fbe88b87fc28d4d590b commit 9de182bf00ce41936cc36fbe88b87fc28d4d590b Author: crazy Date: Fri Sep 14 11:13:43 2007 +0200 xulrunner-1.8.1.3-2-i686 * up2date fix diff --git a/source/xlib/xulrunner/FrugalBuild b/source/xlib/xulrunner/FrugalBuild index f22b369..0183e33 100644 --- a/source/xlib/xulrunner/FrugalBuild +++ b/source/xlib/xulrunner/FrugalBuild @@ -10,7 +10,7 @@ depends=('gtk+2>=2.10.12' 'libidl' 'nss>=3.11.5-1') makedepends=('zip' 'pkgconfig') groups=('xlib') archs=('i686' 'x86_64') -up2date="lynx -dump 'http://releases.mozilla.org/pub/mozilla.org/xulrunner/releases/?C=M;O=D' | grep -m2 '\[DIR\]' | sed '/Parent/d' | sed 's/.*\]//' | sed 's/\/.*//'" +up2date="lynx -dump 'http://releases.mozilla.org/pub/mozilla.org/xulrunner/releases/?C=M;O=D'|grep -m1 'releases/[0-9]'|sed 's/.*s\/\(.*\)/\/\1/;s/\///g'" source=(http://frugalware.org/~alex/tarballs/xulrunner/$pkgname-$pkgver-source.tar.bz2 \ xulrunner-1.8.1.3-bug310924.patch xulrunner-1.8.1.3-bug325644.patch mozconfig) signatures=(${source[0]}.asc '' '' '') From crazy at frugalware.org Fri Sep 14 11:52:42 2007 From: crazy at frugalware.org (crazy) Date: Fri Sep 14 11:52:47 2007 Subject: [Frugalware-git] frugalware-current: dhcdbd-2.8-1-i686 Message-ID: <20070914095242.E4CFD167800C@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=1888d4369f0ac99395020779eb189b4049af3a26 commit 1888d4369f0ac99395020779eb189b4049af3a26 Author: crazy Date: Fri Sep 14 11:00:26 2007 +0200 dhcdbd-2.8-1-i686 * up2date fix diff --git a/source/network-extra/dhcdbd/FrugalBuild b/source/network-extra/dhcdbd/FrugalBuild index 1691463..e9d30de 100644 --- a/source/network-extra/dhcdbd/FrugalBuild +++ b/source/network-extra/dhcdbd/FrugalBuild @@ -9,7 +9,7 @@ url="http://people.redhat.com/dcantrel/dhcdbd/" depends=('dbus>=1.0.2' 'dhclient') groups=('network-extra') archs=('i686' 'x86_64') -up2date="lynx -dump $url | grep '$pkgname' | Flasttarbz2" +up2date="lynx -dump http://dcantrel.fedorapeople.org/dhcdbd/| grep '$pkgname' | Flasttarbz2" source=($url/$pkgname-$pkgver.tar.bz2 rc.dhcdbd rc.dhcdbd-hu.po) sha1sums=('d0ab01d5f6f64479b5c22ccefa725fe691cb4e34' \ 'd0812b8bfe81ebc90ed14f0f0e62d0126db6628a' \ From crazy at frugalware.org Fri Sep 14 11:52:43 2007 From: crazy at frugalware.org (crazy) Date: Fri Sep 14 11:52:48 2007 Subject: [Frugalware-git] frugalware-current: kvm-17-1-i686 Message-ID: <20070914095243.78007168800A@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=f55c6b3ea327106c6201289d43889ef894e4da42 commit f55c6b3ea327106c6201289d43889ef894e4da42 Author: crazy Date: Fri Sep 14 11:35:10 2007 +0200 kvm-17-1-i686 * up2date fix diff --git a/source/xapps-extra/kvm/FrugalBuild b/source/xapps-extra/kvm/FrugalBuild index dfa7361..e4b455e 100644 --- a/source/xapps-extra/kvm/FrugalBuild +++ b/source/xapps-extra/kvm/FrugalBuild @@ -11,7 +11,7 @@ archs=('i686') Finclude sourceforge kernel-version depends=("kernel>=$_F_kernelver_ver" 'sdl' 'zlib') makedepends=("kernel-source>=$_F_kernelver_ver" 'gcc-3.3') -up2date="lynx -dump http://kvm.qumranet.com/kvmwiki/Downloads | grep 'Linux $_F_kernelver_ver require' | sed 's/.*kvm-//' | sed 's/\..*//'" +up2date="lynx -dump http://kvm.qumranet.com/kvmwiki/Downloads | grep 'Linux $_F_kernelver_ver'|sed 's/.*kvm-\(.*\)/\1/;s/ .*//g'" sha1sums=('ac80a36b5eacafc4880f8f07c24d164906f5d5ce') Fconfopts="--prefix=$Fprefix" From crazy at frugalware.org Fri Sep 14 11:52:43 2007 From: crazy at frugalware.org (crazy) Date: Fri Sep 14 11:52:49 2007 Subject: [Frugalware-git] frugalware-current: qemu-launcher-1.7.3-1-i686 Message-ID: <20070914095243.22FAB1688009@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=21ca68f2c4efaa382f960f180aa179d072e11e74 commit 21ca68f2c4efaa382f960f180aa179d072e11e74 Author: crazy Date: Fri Sep 14 11:22:29 2007 +0200 qemu-launcher-1.7.3-1-i686 * up2date , url , source fix diff --git a/source/xapps-extra/qemu-launcher/FrugalBuild b/source/xapps-extra/qemu-launcher/FrugalBuild index b5015b6..021122e 100644 --- a/source/xapps-extra/qemu-launcher/FrugalBuild +++ b/source/xapps-extra/qemu-launcher/FrugalBuild @@ -5,7 +5,7 @@ pkgname=qemu-launcher pkgver=1.7.3 pkgrel=1 pkgdesc="Qemu Launcher is a Gtk front-end for the Qemu x86 and x86-64 PC emulator." -url="http://emeitner.f2o.org/projects/qemu-launcher/" +url="http://projects.wanderings.us/qemu_launcher" groups=('xapps-extra') archs=('i686' 'x86_64') depends=('perl-gettext' 'perl-gtk2-gladexml' 'qemu>=0.9.0' 'libxml2') @@ -13,8 +13,8 @@ _F_gnome_desktop="y" _F_gnome_iconcache="y" Finclude gnome-scriptlet options=('scriptlet') -up2date="lynx -dump http://download.gna.org/qemulaunch/stable/ | Flasttar | sed 's/launcher_//'" -source=(http://download.gna.org/qemulaunch/stable/${pkgname}_$pkgver.tar.gz makefile.patch) +up2date="lynx -dump 'http://projects.wanderings.us/qemu_launcher#download'|grep -m1 '* V'|sed 's/.*V\(.*\).*/\1/'" +source=(http://download.gna.org/qemulaunch/1.7.x/${pkgname}_$pkgver.tar.gz makefile.patch) sha1sums=('b689864426746d764091fe8ac44b3a42f69602fd' \ 'cc1db74a52b91ffef9764478ba3155c1d0fd04fd') From crazy at frugalware.org Fri Sep 14 11:59:56 2007 From: crazy at frugalware.org (crazy) Date: Fri Sep 14 11:59:57 2007 Subject: [Frugalware-git] frugalware-current: fltk2-r5940-1-i686 Message-ID: <20070914095956.5340B167800C@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=b3f53cbd06de843b2e3448cbd6d5be69b3ef333f commit b3f53cbd06de843b2e3448cbd6d5be69b3ef333f Author: crazy Date: Fri Sep 14 11:55:34 2007 +0200 fltk2-r5940-1-i686 * up2date fix diff --git a/source/xlib-extra/fltk2/FrugalBuild b/source/xlib-extra/fltk2/FrugalBuild index ab616e4..c93089f 100644 --- a/source/xlib-extra/fltk2/FrugalBuild +++ b/source/xlib-extra/fltk2/FrugalBuild @@ -12,7 +12,7 @@ makedepends=('doxygen') options=('scriptlet') groups=('xlib-extra') archs=('i686' 'x86_64') -up2date="lynx -dump http://www.fltk.org/|grep -m1 'FLTK 2.0.x Weekly Snapshot'|sed 's/.*, \(.*\)/\1/'" +up2date="lynx -dump http://www.fltk.org/|grep -m1 'VERSION=2'|sed 's/.*=2.*.x-\(.*\).*/\1/'" source=(http://ftp.easysw.com/pub/fltk/snapshots/$origname.tar.bz2 \ disable_crappy_test.patch) sha1sums=('b5e074817c2111ee7a2c4f1eba369bf0eeb1ce45' \ From crazy at frugalware.org Fri Sep 14 13:16:03 2007 From: crazy at frugalware.org (crazy) Date: Fri Sep 14 13:16:09 2007 Subject: [Frugalware-git] frugalware-current: polyester-1.0.2-1-i686 Message-ID: <20070914111603.4F5EE167800C@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=093e33ff20b2e3c87b10ddc15951f4806ae3324d commit 093e33ff20b2e3c87b10ddc15951f4806ae3324d Author: crazy Date: Fri Sep 14 12:19:04 2007 +0200 polyester-1.0.2-1-i686 * up2date fix diff --git a/source/kde-extra/polyester/FrugalBuild b/source/kde-extra/polyester/FrugalBuild index d7d5d6e..3a91ec2 100644 --- a/source/kde-extra/polyester/FrugalBuild +++ b/source/kde-extra/polyester/FrugalBuild @@ -10,6 +10,7 @@ groups=('kde-extra') archs=('i686' 'x86_64') _F_kde_id2="27968" Finclude kde +up2date="lynx -dump 'http://www.notmart.org/index.php/Software'| grep -m1 'polyester-\(.*\).tar.bz2'|Flasttarbz2" source=(http://www.notmart.org/files/$pkgname-$pkgver.tar.bz2) sha1sums=('dcc767f787e17fd6e6fb8281b17968974ea1a4bc') From crazy at frugalware.org Fri Sep 14 13:16:03 2007 From: crazy at frugalware.org (crazy) Date: Fri Sep 14 13:16:14 2007 Subject: [Frugalware-git] frugalware-current: kvirc-3.2.5-1-i686 Message-ID: <20070914111603.79B5F167800F@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=1090e6505c64224da6f0f94aaf3f5458c87b80a6 commit 1090e6505c64224da6f0f94aaf3f5458c87b80a6 Author: crazy Date: Fri Sep 14 12:51:27 2007 +0200 kvirc-3.2.5-1-i686 * up2date fix diff --git a/source/kde-extra/kvirc/FrugalBuild b/source/kde-extra/kvirc/FrugalBuild index a423f61..e6960fb 100644 --- a/source/kde-extra/kvirc/FrugalBuild +++ b/source/kde-extra/kvirc/FrugalBuild @@ -10,7 +10,7 @@ groups=('kde-extra') archs=('i686' 'x86_64') Finclude kde url="http://www.kvirc.net" -up2date="lynx -dump http://www.kvirc.net |grep 'Latest stable' | sed 's/.*]\([0-9\.]*\)$/\1/'" +up2date="lynx -dump http://www.kvirc.net|grep -m1 'kvirc-\(.*\).tar.bz2'|Flasttarbz2" source=(ftp://ftp.kvirc.de/pub/$pkgname/snapshots/source/$pkgname-$pkgver.tar.bz2 630.diff) sha1sums=('f1944e301c154bdc4bc33bc22a816ebc37e573ca' \ 'e4854d2ea43b173729df1d20c71cc7e68a1e2c5a') From vmiklos at frugalware.org Fri Sep 14 14:12:21 2007 From: vmiklos at frugalware.org (VMiklos) Date: Fri Sep 14 14:12:23 2007 Subject: [Frugalware-git] frugalware-current: git2cl-1.2-1-i686 Message-ID: <20070914121221.524FC167800C@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=94250241121befd1b48407bf35086483d7ffb316 commit 94250241121befd1b48407bf35086483d7ffb316 Author: VMiklos Date: Fri Sep 14 14:11:52 2007 +0200 git2cl-1.2-1-i686 typo fix in rodepends() diff --git a/source/devel-extra/git2cl/FrugalBuild b/source/devel-extra/git2cl/FrugalBuild index 1fe3643..74e72d8 100644 --- a/source/devel-extra/git2cl/FrugalBuild +++ b/source/devel-extra/git2cl/FrugalBuild @@ -6,7 +6,7 @@ pkgver=1.2 pkgrel=1 pkgdesc="A tool used to generate GNU ChangeLogs based on git repository logs." url="http://josefsson.org/git2cl/" -rodepends=('git' 'perl-date-perse') +rodepends=('git' 'perl-date-parse') groups=('devel-extra') archs=('i686' 'x86_64') up2date="lynx -source -dump http://repo.or.cz/w/git2cl.git|grep tags|sed 's/.*tags\/git2cl-\([^>]*\).>.*/\1/;q'" From crazy at frugalware.org Fri Sep 14 14:29:36 2007 From: crazy at frugalware.org (crazy) Date: Fri Sep 14 14:29:41 2007 Subject: [Frugalware-git] frugalware-current: unicap-0.2.13-1-i686 Message-ID: <20070914122936.B693E167800C@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=d276f36647dba52de00cfa6f743690705c1569fc commit d276f36647dba52de00cfa6f743690705c1569fc Author: crazy Date: Fri Sep 14 14:25:27 2007 +0200 unicap-0.2.13-1-i686 * up2date fix diff --git a/source/xlib-extra/unicap/FrugalBuild b/source/xlib-extra/unicap/FrugalBuild index 9cc9ac3..889b88f 100644 --- a/source/xlib-extra/unicap/FrugalBuild +++ b/source/xlib-extra/unicap/FrugalBuild @@ -5,13 +5,12 @@ pkgname=unicap pkgver=0.2.13 pkgrel=1 pkgdesc="unicap provides a uniform API for all kinds of video capture devices." -url="http://unicap-imaging.org/" depends=('libxv' 'gtk+2' 'freetype2>=2.3.3' 'libraw1394') options=('scriptlet') groups=('xlib-extra') archs=('i686') -up2date="lynx -dump http://unicap-imaging.org/download.htm|grep -m1 '.tar.gz'|sed 's/.*cap-\(.*\).t.* .*/\1/'" -source=($url/downloads/$pkgname-$pkgver.tar.gz) +Finclude sourceforge +url="http://unicap-imaging.org/" sha1sums=('2f15aa36c80501017e11c2fadd63e120207aef91') # optimization OK From priyank at frugalware.org Fri Sep 14 14:31:33 2007 From: priyank at frugalware.org (Priyank) Date: Fri Sep 14 14:31:35 2007 Subject: [Frugalware-git] frugalware-current: ristretto-0.0.5-1-i686 Message-ID: <20070914123133.08A59167800F@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=04321f9da51ea9d89403265e368effb950fd94f5 commit 04321f9da51ea9d89403265e368effb950fd94f5 Author: Priyank Date: Fri Sep 14 17:54:32 2007 +0530 ristretto-0.0.5-1-i686 * Version bump diff --git a/source/xfce4/ristretto/FrugalBuild b/source/xfce4/ristretto/FrugalBuild index 24e785b..e444c1c 100644 --- a/source/xfce4/ristretto/FrugalBuild +++ b/source/xfce4/ristretto/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: Priyank Gosalia pkgname=ristretto -pkgver=0.0.4 +pkgver=0.0.5 pkgrel=1 pkgdesc="A fast and lightweight picture viewer for Xfce." makedepends=('intltool') @@ -13,6 +13,6 @@ _F_gnome_iconcache="y" _F_xfce_goodies_ext=".tar.gz" Finclude xfce4 gnome-scriptlet url="http://goodies.xfce.org/projects/applications/ristretto" -sha1sums=('2d084853fb4bb6a5152cd29b5391edb9782acaae') +sha1sums=('e539d4f91904a49dc5543ab39afad79e2dd2cf28') # optimization OK From vmiklos at frugalware.org Fri Sep 14 14:34:42 2007 From: vmiklos at frugalware.org (VMiklos) Date: Fri Sep 14 14:34:46 2007 Subject: [Frugalware-git] homepage-ng: merge the 'ooodev' repo to 'bmf' Message-ID: <20070914123442.67C34167800C@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=homepage-ng.git;a=commitdiff;h=bd8ce966ef25fed0829f18dbee3997bca90c6045 commit bd8ce966ef25fed0829f18dbee3997bca90c6045 Author: VMiklos Date: Fri Sep 14 14:34:36 2007 +0200 merge the 'ooodev' repo to 'bmf' diff --git a/git/repos/ooodev b/git/repos/ooodev deleted file mode 120000 index a194ed2..0000000 --- a/git/repos/ooodev +++ /dev/null @@ -1 +0,0 @@ -../../../people/vmiklos/ooodev \ No newline at end of file From boobaa at frugalware.org Fri Sep 14 14:37:52 2007 From: boobaa at frugalware.org (CSÉCSY László) Date: Fri Sep 14 14:37:55 2007 Subject: [Frugalware-git] frugalware-current: sox-14.0.0-1-i686 Message-ID: <20070914123752.7BC74167800C@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=5806d0beada94133ac3dade25fce29ef79e5dda6 commit 5806d0beada94133ac3dade25fce29ef79e5dda6 Author: CSÉCSY László Date: Fri Sep 14 14:37:25 2007 +0200 sox-14.0.0-1-i686 version bump SBU fix diff --git a/source/multimedia/sox/FrugalBuild b/source/multimedia/sox/FrugalBuild index 5e6a75f..494c349 100644 --- a/source/multimedia/sox/FrugalBuild +++ b/source/multimedia/sox/FrugalBuild @@ -1,8 +1,8 @@ -# Compiling Time: 0.40 SBU +# Compiling Time: 0.94 SBU # Maintainer: CSÉCSY László pkgname=sox -pkgver=13.0.0 +pkgver=14.0.0 pkgrel=1 pkgdesc="A universal sound converter, player, and recorder" url="http://sox.sourceforge.net/" @@ -17,4 +17,4 @@ build() Fmakeinstall install } # optimization OK -sha1sums=('db0e6a7356b8fcbc72cf0dca1d81782fc3fa48f4') +sha1sums=('f247d48ddc12b3c2bcbc742d437022eaa53bb872') From vmiklos at frugalware.org Fri Sep 14 14:40:15 2007 From: vmiklos at frugalware.org (VMiklos) Date: Fri Sep 14 14:40:19 2007 Subject: [Frugalware-git] bmf: classpath-0.93-1-i686 Message-ID: <20070914124015.D3CAD167800C@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=bmf.git;a=commitdiff;h=b55f94275052fd777258581d17dec6d04945fae1 commit b55f94275052fd777258581d17dec6d04945fae1 Author: VMiklos Date: Fri Sep 14 14:39:26 2007 +0200 classpath-0.93-1-i686 bin, it was a depend of gcjwebplugin which is already in current diff --git a/source/devel-extra/classpath/0.93-nsplugin.patch b/source/devel-extra/classpath/0.93-nsplugin.patch deleted file mode 100644 index 1497a28..0000000 --- a/source/devel-extra/classpath/0.93-nsplugin.patch +++ /dev/null @@ -1,28 +0,0 @@ -Index: configure.ac -=================================================================== -RCS file: /cvsroot/classpath/classpath/configure.ac,v -retrieving revision 1.195 -diff -u -r1.195 configure.ac ---- configure.ac 1 Mar 2007 00:26:08 -0000 1.195 -+++ configure.ac 2 Mar 2007 19:47:02 -0000 -@@ -590,16 +590,16 @@ - if test "x${COMPILE_PLUGIN}" = xyes; then - PKG_CHECK_MODULES(MOZILLA, mozilla-plugin, [MOZILLA_FOUND=yes], [MOZILLA_FOUND=no]) - if test "x${MOZILLA_FOUND}" = xno; then -- PKG_CHECK_MODULES(MOZILLA, firefox-plugin, [MOZILLA_FOUND=yes], [MOZILLA_FOUND=no]) -+ PKG_CHECK_MODULES(MOZILLA, firefox-plugin firefox-xpcom, [MOZILLA_FOUND=yes], [MOZILLA_FOUND=no]) - fi - if test "x${MOZILLA_FOUND}" = xno; then -- PKG_CHECK_MODULES(MOZILLA, xulrunner-plugin, [MOZILLA_FOUND=yes], [MOZILLA_FOUND=no]) -+ PKG_CHECK_MODULES(MOZILLA, xulrunner-plugin xulrunner-xpcom, [MOZILLA_FOUND=yes], [MOZILLA_FOUND=no]) - fi - if test "x${MOZILLA_FOUND}" = xno; then -- PKG_CHECK_MODULES(MOZILLA, mozilla-firefox-plugin, [MOZILLA_FOUND=yes], [MOZILLA_FOUND=no]) -+ PKG_CHECK_MODULES(MOZILLA, mozilla-firefox-plugin mozilla-firefox-xpcom, [MOZILLA_FOUND=yes], [MOZILLA_FOUND=no]) - fi - if test "x${MOZILLA_FOUND}" = xno; then -- PKG_CHECK_MODULES(MOZILLA, seamonkey-plugin, [MOZILLA_FOUND=yes], [MOZILLA_FOUND=no]) -+ PKG_CHECK_MODULES(MOZILLA, seamonkey-plugin seamonkey-xpcom, [MOZILLA_FOUND=yes], [MOZILLA_FOUND=no]) - fi - PKG_CHECK_MODULES(GLIB, glib-2.0) - diff --git a/source/devel-extra/classpath/FrugalBuild b/source/devel-extra/classpath/FrugalBuild deleted file mode 100644 index 9751a09..0000000 --- a/source/devel-extra/classpath/FrugalBuild +++ /dev/null @@ -1,36 +0,0 @@ -# Compiling Time: 2.74 SBU -# Maintainer: VMiklos - -pkgname=classpath -pkgver=0.93 -pkgrel=1 -pkgdesc="Free core class libraries for use with virtual machines and compilers for the Java programming language." -url="http://www.gnu.org/software/classpath" -depends=('firefox' 'libxtst' 'gconf' 'libgcj') -makedepends=('gcc-gcj') -groups=('devel-extra') -archs=('i686') -up2date="lynx -dump http://ftp.gnu.org/gnu/classpath/ |grep classpath- |Flasttar" -source=(ftp://ftp.gnu.org/gnu/classpath/classpath-$pkgver.tar.gz \ - README.Frugalware 0.93-nsplugin.patch) -signatures=($source.sig '' '') - -# TODO: split the firefox plugin: it should depend on jamvm, but classpath is a -# makedepend for jamvm - -build() -{ - Fpatchall - autoconf || return 1 - Fmake --enable-jni - Fmakeinstall - Fmkdir /usr/lib/mozilla/plugins - Fln /usr/lib/classpath/libgcjwebplugin.so /usr/lib/mozilla/plugins - # conflicts with libgcj - Frm /usr/bin/grmiregistry - Frm /usr/lib/{logging.properties,security/classpath.security} - Fdoc README.Frugalware - -} - -# optimization OK diff --git a/source/devel-extra/classpath/README.Frugalware b/source/devel-extra/classpath/README.Frugalware deleted file mode 100644 index 3bfd356..0000000 --- a/source/devel-extra/classpath/README.Frugalware +++ /dev/null @@ -1,26 +0,0 @@ -CURRENTLY GCJWEBPLUGIN RUNS WITH NO SECURITY MANAGER. THIS MEANS THAT -APPLETS CAN DO ANYTHING A JAVA APPLICATION THAT YOU DOWNLOAD AND RUN -COULD DO. BE *VERY* CAREFUL WHICH APPLETS YOU RUN. DO NOT USE -GCJWEBPLUGIN ON YOUR SYSTEM IF YOUR SYSTEM STORES IMPORTANT DATA. -THIS DATA CAN BE DESTROYED OR STOLEN. - -The same warning applies to gappletviewer, which also runs with no -security manager (in fact, gcjwebplugin spawns gappletviewer to do the -applet loading). When run on the command line, gappletviewer issues a -warning on startup and asks you if you want to continue. - -Even considering the risks involved, you may still want to try -gcjwebplugin. GNU Classpath's AWT and Swing implementations are now -sufficiently mature that they're able to run many applets deployed on -the web. - -Type about:plugins in Firefox's URL bar to confirm that the plugin has -been loaded. To see gcjwebplugin debugging output, run: - -firefox -g - -then at the GDB prompt, type - -run - -Please report bugs in the Bug Tracking System: http://bugs.frugalware.org From vmiklos at frugalware.org Fri Sep 14 14:40:16 2007 From: vmiklos at frugalware.org (VMiklos) Date: Fri Sep 14 14:40:23 2007 Subject: [Frugalware-git] bmf: jamvm-1.4.5-1-i686 Message-ID: <20070914124016.85A7A1688009@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=bmf.git;a=commitdiff;h=4ec0a8e398830a70a120134a65c9fb2d209758df commit 4ec0a8e398830a70a120134a65c9fb2d209758df Author: VMiklos Date: Fri Sep 14 14:40:01 2007 +0200 jamvm-1.4.5-1-i686 bin, it was a depend of gcjwebplugin, but the version in current does not require it diff --git a/source/devel-extra/jamvm/FrugalBuild b/source/devel-extra/jamvm/FrugalBuild deleted file mode 100644 index 7d13aba..0000000 --- a/source/devel-extra/jamvm/FrugalBuild +++ /dev/null @@ -1,16 +0,0 @@ -# Compiling Time: 0.18 SBU -# Maintainer: VMiklos - -pkgname=jamvm -pkgver=1.4.5 -pkgrel=1 -pkgdesc="An extremely small and specification-compliant virtual machine." -_F_sourceforge_prefix="JamVM " -Finclude sourceforge -depends=('classpath') -makedepends=('ecj') -groups=('devel-extra') -archs=('i686') -Fconfopts="$Fconfopts --includedir=/usr/include/jamvm --with-classpath-install-dir=/usr" -sha1sums=('ad22e8eedf375230eae2917660c09c9063ffafd8') -# optimization OK From priyank at frugalware.org Fri Sep 14 14:42:10 2007 From: priyank at frugalware.org (Priyank) Date: Fri Sep 14 14:42:12 2007 Subject: [Frugalware-git] frugalware-current: xfce4-places-plugin-0.9.992-1-i686 Message-ID: <20070914124210.314B3167800C@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=ea34f142a415a53f495a19d2b074bca2493fa9ed commit ea34f142a415a53f495a19d2b074bca2493fa9ed Author: Priyank Date: Fri Sep 14 18:03:04 2007 +0530 xfce4-places-plugin-0.9.992-1-i686 * Version bump diff --git a/source/xfce4/xfce4-places-plugin/FrugalBuild b/source/xfce4/xfce4-places-plugin/FrugalBuild index 81bf447..892e0dc 100644 --- a/source/xfce4/xfce4-places-plugin/FrugalBuild +++ b/source/xfce4/xfce4-places-plugin/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: Priyank Gosalia pkgname=xfce4-places-plugin -pkgver=0.9.991 +pkgver=0.9.992 pkgrel=1 pkgdesc="A file browser launcher plugin for the Xfce4 panel." makedepends=('intltool') @@ -11,6 +11,6 @@ groups=('xfce4' 'xfce4-goodies') archs=('i686' 'x86_64') _F_gnome_iconcache="y" Finclude xfce4 gnome-scriptlet -sha1sums=('3fc01b31cd26cab4685d3657c39226e90e4b4203') +sha1sums=('b5d78375ca5b870030a8d549af2c7aba7fb72b69') # optimization OK From priyank at frugalware.org Fri Sep 14 15:20:01 2007 From: priyank at frugalware.org (Priyank) Date: Fri Sep 14 15:20:15 2007 Subject: [Frugalware-git] gfpm: Updated NEWS for 1.0.2 Message-ID: <20070914132001.C753D167800C@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gfpm.git;a=commitdiff;h=029896e049ff47bb4c81bf8e5b8f815771f97091 commit 029896e049ff47bb4c81bf8e5b8f815771f97091 Author: Priyank Date: Fri Sep 14 18:47:56 2007 +0530 Updated NEWS for 1.0.2 diff --git a/NEWS b/NEWS index 7df6c4a..1d324b3 100644 --- a/NEWS +++ b/NEWS @@ -1,5 +1,26 @@ VERSION DESCRIPTION --------------------------------------------------------------------------------------------------------- +1.0.2 - Fix segfault when trying to synchronize a repo + other than frugalware-current + - Fixed a bug where the package list went blank + after an install / remove operation. + - Fixed a bug where gfpm crashed if a user tried + to perform an operation on the same package in this + sequence - Install, Remove, Install + - The progress dialog now shows details of the + package operation in a scrolled window. + - Added the ability to auto-close progress + dialog box when an operation is complete. + - Ask the user if he wants to delete the + pacman-g2 lockfile. (#2387) + - Added the ability to optimize the pacman-g2 + package detabase. + - Miscellaneous fixes related to error messages. + - Added a new icon to indicate locally newer + packages. + - Code cleanup + - Fixed some memory leaks + - Many minor bug fixes 1.0.1 - *.po generation fixes - added gfpm.desktop for KDE and GNOME/XFCE 1.0.0 Triton (2007-09-05) - Initial Release From priyank at frugalware.org Fri Sep 14 15:21:24 2007 From: priyank at frugalware.org (Priyank) Date: Fri Sep 14 15:21:26 2007 Subject: [Frugalware-git] gfpm: Release: 1.0.2 Message-ID: <20070914132124.DC1A3167800C@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gfpm.git;a=commitdiff;h=f67acc7e987c9ceb7ebe657d2962ccbdb10a9ed3 commit f67acc7e987c9ceb7ebe657d2962ccbdb10a9ed3 Author: Priyank Date: Fri Sep 14 18:49:24 2007 +0530 Release: 1.0.2 diff --git a/configure.ac b/configure.ac index ce4a288..5c0f9da 100644 --- a/configure.ac +++ b/configure.ac @@ -1,7 +1,7 @@ ENV_CFLAGS=$CFLAGS AC_PREREQ(2.59) -AC_INIT([Gfpm], 1.0.1, [priyankmg@gmail.com], gfpm) +AC_INIT([Gfpm], 1.0.2, [priyankmg@gmail.com], gfpm) AC_DEFINE_UNQUOTED([GFPM_RELEASE_NAME], ["Triton"], [Release codenames]) AC_CONFIG_SRCDIR([src/gfpm.c]) AC_LANG(C) From priyank at frugalware.org Fri Sep 14 15:21:57 2007 From: priyank at frugalware.org (Priyank) Date: Fri Sep 14 15:22:01 2007 Subject: [Frugalware-git] gfpm: TAG 1.0.2 Message-ID: <20070914132157.1FCA8167800C@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gfpm.git;a=commitdiff;h=68f2e5b4f0200cd232afe0667ed5e1c552d53161 commit 68f2e5b4f0200cd232afe0667ed5e1c552d53161 Author: Priyank Date: Fri Sep 14 18:49:52 2007 +0530 TAG 1.0.2 From priyank at frugalware.org Fri Sep 14 15:29:05 2007 From: priyank at frugalware.org (Priyank) Date: Fri Sep 14 15:29:06 2007 Subject: [Frugalware-git] frugalware-current: gfpm-1.0.2-1-i686 Message-ID: <20070914132905.23F90167800C@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=162eb968324d44976a355ba21030044648c03d86 commit 162eb968324d44976a355ba21030044648c03d86 Author: Priyank Date: Fri Sep 14 18:56:10 2007 +0530 gfpm-1.0.2-1-i686 * Version bump diff --git a/source/xapps/gfpm/FrugalBuild b/source/xapps/gfpm/FrugalBuild index 3fb97f1..9d4017f 100644 --- a/source/xapps/gfpm/FrugalBuild +++ b/source/xapps/gfpm/FrugalBuild @@ -2,8 +2,8 @@ # Maintainer: Priyank Gosalia pkgname=gfpm -pkgver=1.0.1 -pkgrel=2 +pkgver=1.0.2 +pkgrel=1 pkgdesc="Graphical Frugalware Package Manager" url="http://ftp.frugalware.org/pub/other/gfpm" depends=('glib2' 'gtk+2' 'libglade' 'pacman-g2') @@ -14,10 +14,8 @@ archs=('i686' 'x86_64') _F_gnome_iconcache="y" Finclude gnome-scriptlet up2date="lynx -dump $url | Flasttar" -source=($url/$pkgname-$pkgver.tar.gz $pkgname-$pkgver-scriptlet-workaround.diff) -sha1sums=('81d146bd5d01592a3f9cd66227a13303b903d1f2' \ - 'fb2380bb23c2022b2a903a40d3e3c31fcb30b749') -signatures=(${source[0]}.asc '') +source=($url/$pkgname-$pkgver.tar.gz) +signatures=(${source[0]}.asc) build() { diff --git a/source/xapps/gfpm/gfpm-1.0.1-scriptlet-workaround.diff b/source/xapps/gfpm/gfpm-1.0.1-scriptlet-workaround.diff deleted file mode 100644 index dc76626..0000000 --- a/source/xapps/gfpm/gfpm-1.0.1-scriptlet-workaround.diff +++ /dev/null @@ -1,14 +0,0 @@ -diff -Naur gfpm-1.0.1/src/gfpm-progress.c gfpm-1.0.1.new/src/gfpm-progress.c ---- gfpm-1.0.1/src/gfpm-progress.c 2007-09-05 22:01:50.000000000 +0530 -+++ gfpm-1.0.1.new/src/gfpm-progress.c 2007-09-05 22:05:20.000000000 +0530 -@@ -194,8 +194,8 @@ - return; - gtk_widget_hide (rate_box); - gtk_widget_hide (rec_label); -- while (gtk_events_pending ()) -- gtk_main_iteration (); -+ //while (gtk_events_pending ()) -+ // gtk_main_iteration (); - switch (event) - { - case PM_TRANS_EVT_CHECKDEPS_START: From vmiklos at frugalware.org Fri Sep 14 15:32:11 2007 From: vmiklos at frugalware.org (VMiklos) Date: Fri Sep 14 15:32:13 2007 Subject: [Frugalware-git] homepage-ng: pkg_from_id(): fix gitweb links Message-ID: <20070914133211.76F2A167800C@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=homepage-ng.git;a=commitdiff;h=4b3cf83ecb161f44009bf917efc6b31c92a32c79 commit 4b3cf83ecb161f44009bf917efc6b31c92a32c79 Author: VMiklos Date: Fri Sep 14 15:31:09 2007 +0200 pkg_from_id(): fix gitweb links diff --git a/frugalware/packages.php b/frugalware/packages.php index e2dffad..a03b99d 100644 --- a/frugalware/packages.php +++ b/frugalware/packages.php @@ -396,7 +396,7 @@ function pkg_from_id($id) $content .= "" . gettext("Buildlog:") . "".$arr['pkgname']."-".$arr['pkgver']."-".$arr['arch'].".log.bz2\n"; $content .= "" . gettext("Changelog:") . "Changelog\n"; if($arr['fwver'] == "current") - $content .= "Git:View entry\n"; + $content .= "Git:View entry\n"; else $content .= "DarcsView entry\n"; if(count($groups)) From vmiklos at frugalware.org Fri Sep 14 15:33:09 2007 From: vmiklos at frugalware.org (VMiklos) Date: Fri Sep 14 15:33:11 2007 Subject: [Frugalware-git] pacman-tools: dg: push tags, too Message-ID: <20070914133309.03B0B167800C@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=pacman-tools.git;a=commitdiff;h=af6578c2a7dcb8352e67a287f01bb65d376405d3 commit af6578c2a7dcb8352e67a287f01bb65d376405d3 Author: VMiklos Date: Fri Sep 14 15:30:12 2007 +0200 dg: push tags, too diff --git a/darcs-git.py b/darcs-git.py index 8019c38..d641706 100755 --- a/darcs-git.py +++ b/darcs-git.py @@ -567,7 +567,7 @@ Options: if ret in ("n", "q"): sys.exit(0) print "Invalid response, try again!" - ret = os.system("git push %s" % options.gitopts) + ret = os.system("git push --tags %s" % options.gitopts) if ret: sys.exit(1) else: From vmiklos at frugalware.org Fri Sep 14 15:33:09 2007 From: vmiklos at frugalware.org (VMiklos) Date: Fri Sep 14 15:33:12 2007 Subject: [Frugalware-git] pacman-tools: dg: uh, --tags pushes *only* tags, so use git push, then git push --tags Message-ID: <20070914133309.30CB3167800C@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=pacman-tools.git;a=commitdiff;h=3e52626174a384bf94033ae012b55e21d76183b6 commit 3e52626174a384bf94033ae012b55e21d76183b6 Author: VMiklos Date: Fri Sep 14 15:32:59 2007 +0200 dg: uh, --tags pushes *only* tags, so use git push, then git push --tags diff --git a/darcs-git.py b/darcs-git.py index d641706..219b66e 100755 --- a/darcs-git.py +++ b/darcs-git.py @@ -567,10 +567,11 @@ Options: if ret in ("n", "q"): sys.exit(0) print "Invalid response, try again!" - ret = os.system("git push --tags %s" % options.gitopts) + ret = os.system("git push %s" % options.gitopts) if ret: sys.exit(1) else: + os.system("git push --tags") os.system("git fetch") def pull(argv): From vmiklos at frugalware.org Fri Sep 14 15:39:16 2007 From: vmiklos at frugalware.org (VMiklos) Date: Fri Sep 14 15:39:18 2007 Subject: [Frugalware-git] frugalware-current: gnubiff-2.2.8-1-i686 Message-ID: <20070914133916.A9B9A167800C@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=8c9f30614a5d1a94cbdb1d7261978511aee3f8e3 commit 8c9f30614a5d1a94cbdb1d7261978511aee3f8e3 Author: VMiklos Date: Fri Sep 14 15:39:00 2007 +0200 gnubiff-2.2.8-1-i686 new package (original FB by boobaa) diff --git a/source/gnome-extra/gnubiff/FrugalBuild b/source/gnome-extra/gnubiff/FrugalBuild new file mode 100644 index 0000000..e7647ec --- /dev/null +++ b/source/gnome-extra/gnubiff/FrugalBuild @@ -0,0 +1,22 @@ +# Compiling Time: 0.51 SBU +# Maintainer: VMiklos +# Contibutor: CSÉCSY László + +pkgname=gnubiff +pkgver=2.2.8 +pkgrel=1 +pkgdesc="a mail notification program that checks for mail and displays headers when new mail has arrived" +Finclude sourceforge +groups=('gnome-extra') +archs=('i686') +depends=('gnome-panel' 'libgnomeui' 'libstdc++') +makedepends=('perl-xml') +sha1sums=('3f88362c2aaf71a2ef7a5fd71fdb10eb5a568e0a') + +build() +{ + # don't use Fconfopts so that pkg-config won't be invoked by updatesync + Fbuild --prefix=`pkg-config libpanelapplet-2.0 --variable=prefix` +} + +# optimization OK From priyank at frugalware.org Fri Sep 14 15:45:33 2007 From: priyank at frugalware.org (Priyank) Date: Fri Sep 14 15:45:35 2007 Subject: [Frugalware-git] frugalware-current: libgdamm-2.9.8-1-i686 Message-ID: <20070914134533.F20F4167800C@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=06c79c6324901a33ac9ecb4481162800e2b06af6 commit 06c79c6324901a33ac9ecb4481162800e2b06af6 Author: Priyank Date: Fri Sep 14 19:12:13 2007 +0530 libgdamm-2.9.8-1-i686 * Version bump diff --git a/source/gnome-extra/libgdamm/FrugalBuild b/source/gnome-extra/libgdamm/FrugalBuild index d88ed54..67bedd7 100644 --- a/source/gnome-extra/libgdamm/FrugalBuild +++ b/source/gnome-extra/libgdamm/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: Priyank Gosalia pkgname=libgdamm -pkgver=2.9.7 +pkgver=2.9.8 pkgrel=1 pkgdesc="A C++ interface to the GDA architecture." url="http://www.gnome-db.org/" @@ -13,6 +13,6 @@ archs=('i686' 'x86_64') _F_gnome_scrollkeeper=y _F_gnome_devel=y Finclude gnome gnome-scriptlet -sha1sums=('ea63c5335b821159ed3466b4bee7dfe2fc67ff45') +sha1sums=('ba1beb78df1ce679981b5bc5709f10c6c5f483a7') # optimization OK From vmiklos at frugalware.org Fri Sep 14 16:16:40 2007 From: vmiklos at frugalware.org (VMiklos) Date: Fri Sep 14 16:16:42 2007 Subject: [Frugalware-git] bmf: gnubiff-2.1.7-1-i686 Message-ID: <20070914141640.C0BFE167800C@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=bmf.git;a=commitdiff;h=54db8dd443333fb7b224d05bb68131839ee1a8ed commit 54db8dd443333fb7b224d05bb68131839ee1a8ed Author: VMiklos Date: Fri Sep 14 16:16:34 2007 +0200 gnubiff-2.1.7-1-i686 bin, newer version available in current diff --git a/source/gnome/gnubiff/FrugalBuild b/source/gnome/gnubiff/FrugalBuild deleted file mode 100644 index 852cb9a..0000000 --- a/source/gnome/gnubiff/FrugalBuild +++ /dev/null @@ -1,26 +0,0 @@ -# Last Modified: Tue, 01 Nov 2005 00:22:14 +0100 -# Compiling Time: 0.17 SBU -# Maintainer: CSÉCSY László - -pkgname=gnubiff -pkgver=2.1.7 -pkgrel=1 -pkgdesc="a mail notification program that checks for mail and displays headers when new mail has arrived" -url="http://gnubiff.sourceforge.net/" -up2date="lynx -dump http://gnubiff.sourceforge.net/ | grep 'latest release' | sed 's/.* \([0-9\.]\+\)\..*/\1/'" -source=(http://dl.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz) -groups=('gnome-extra') -archs=('i686') -depends=('libgnomeui' 'gnome-panel' 'atk' 'cairo' 'pango') -makedepends=('perl-xml') -sha1sums=('f6751ea8a4380fc027d039a4f162d7329c7dff8a') - -build() { - Fcd - Fmake --prefix=`pkg-config libpanelapplet-2.0 --variable=prefix` - Fmakeinstall -} - -# vim: ft=sh - -# optimalization OK From priyank at frugalware.org Fri Sep 14 16:18:19 2007 From: priyank at frugalware.org (Priyank) Date: Fri Sep 14 16:18:21 2007 Subject: [Frugalware-git] frugalware-current: lots of spelling and grammer fixes. Message-ID: <20070914141819.97819167800C@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=31709baf6983ff7624a8bdd3bbbd89c72c620684 commit 31709baf6983ff7624a8bdd3bbbd89c72c620684 Author: Priyank Date: Fri Sep 14 19:46:17 2007 +0530 lots of spelling and grammer fixes. diff --git a/docs/translations.txt b/docs/translations.txt index 7f6972b..5dfcef5 100644 --- a/docs/translations.txt +++ b/docs/translations.txt @@ -4,16 +4,16 @@ Localization is important for every user who doesn't speak English fluently. If your native language is not English, then you can help us by translating a few -sentences to your native language. If you would like to help, the followings +sentences to your native language. If you would like to help, the following steps are necessary: - Visit the http://pootle.frugalware.org/[web interface] and register. - Select your language (ie. if you would like to contribute French translation, select French). If your language is not listed, then ask for addition on our developer mailing list. -- Select what projects would you like to translate. It's good to start with +- Select what projects you would like to translate. It's good to start with some smaller project like the homepage or the setup. If the given project has - no po file for your language, contact us. + no .po file for your language, contact us. - Now you can begin translating, but your changes won't hit the master repo, you need additional permissions to commit from the sandbox. Ask us for commit access. @@ -30,52 +30,52 @@ A few tips if you're new to pootle: == Goals -When we created the current mechanism of handling translations, we had a the +When we created the current mechanism of handling translations, we had the following goals: - When we modify source code or documentation, the translators should be able to begin the necessary (if any) translations without any manual action. - It would be be nice to overview the localization status of a language. - It should be easy to maintain the translation (ie. doing a manual sync for - big documents are rather problematic). -- Tranlators are not developers, write access to the translations should not - require any other right. + big documents is rather problematic). +- Translators are not developers, write access to the translations should not + require any other access right. - It should be possible for anyone to translate, but only given users should be able to push changes. == Overview -Now let's see how this all is possible. We'll take our `asciidoc` documentation +Now let's see how all this is possible. We'll take our `asciidoc` documentation as an example. First, we need to extract the translatable strings from the sources. This is -an important step since this way a document is split to paragraphs and you can -then later translate only even one paragraph rather then choosing between +an important step since this way a document is split into paragraphs and you can +then later translate even a single paragraph rather then choosing between translating a 10-page-length document entirely or not. We use `po4a` for this -purpose. It creates a template, named `docs.pot`, which is transfered daily to +purpose. It creates a template, named `docs.pot`, which is transferred daily to the translation server. (For source codes we usually use the `intltool-update` utility to extract translatable strings.) -Right after the transfer the po localization files are updated using `msgmerge` -from the `gettext` package: this way the tranlators do not have to re-translate +Right after the transfer, the po localization files are updated using `msgmerge` +from the `gettext` package: this way the translators do not have to re-translate the strings which are already done. On that machine, we use a web interface for the translation. This has several advantages: -- The translators can register and begin the work witout any confirmation from +- The translators can register and begin their work without any confirmation from our developer team. -- Those accounts are - of course - not real unix accounts just virtual ones. +- Those accounts are - of course - not real unix accounts but just virtual ones. - We can give commit access for users by specifying their project and language. So everybody can make translations but only users we know can push the changes. -- Collaboration for people who does not know what a patch or a version control +- Collaboration for people who do not know what a patch or a version control system is now should not be a big problem. This is important since for example the whole documentation is one big file per language. -Once a user with enough privilieges pushes the translation to our `git` +Once a user with enough privileges pushes the translation to our `git` version control system, we can use it. The documentation is built daily and we pull the new translations from the dedicated repo before each build. @@ -96,8 +96,8 @@ tarball so. This has the following benefits: - Once the tarball is ready, users who would like to compile the source code should not fetch the translations manually. -The proof of concept for this while mechanish is our French documentation with -is more than 80 pages lenght and includes zero percent of manual editing by the +The proof of concept for this mechanism is our French documentation +which is more than 80 pages length and includes zero percent of manual editing by the developers (while till now we had to push the submitted - by email and other undocumented channels - translated documents manually, hoping that the newer version is better than the old was). From krics at linuxforum.hu Fri Sep 14 16:46:38 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Fri Sep 14 16:46:40 2007 Subject: [Frugalware-git] xorg73: editres-1.0.3-1-x86_64 Message-ID: <20070914144638.3ABC6167800C@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=63e7da9d18d5bec553328f140426f513a5f014ea commit 63e7da9d18d5bec553328f140426f513a5f014ea Author: Christian Hamar alias krix Date: Fri Sep 14 16:46:03 2007 +0200 editres-1.0.3-1-x86_64 * Version bump diff --git a/source/x11/editres/FrugalBuild b/source/x11/editres/FrugalBuild index 9b91967..9be1200 100644 --- a/source/x11/editres/FrugalBuild +++ b/source/x11/editres/FrugalBuild @@ -2,18 +2,17 @@ # Maintainer: Christian Hamar alias krix pkgname=editres -pkgver=1.0.2 +pkgver=1.0.3 pkgrel=1 pkgdesc="X.Org editres application" url="http://xorg.freedesktop.org" groups=('x11' 'xorg-core' 'xorg-apps') archs=('i686' 'x86_64') -depends=('libx11' 'libxt' 'libxaw' 'libxmu' 'libxp') -makedepends=('inputproto') +depends=('libx11>=1.1.3' 'libxt>=1.0.5' 'libxaw>=1.0.4' 'libxmu>=1.0.3-2' 'libxp>=1.0.0-2') +makedepends=('inputproto>=1.4.2.1') _F_xorg_ind=1 Finclude xorg Fconfopts="$Fconfopts --enable-xprint" -makedepends=('inputproto') -sha1sums=('8c21e30b4c421766b7c9e65240bc3b211ee8466d') +sha1sums=('f87c18325ae169ea349b59f8bad77375f50d65be') # optimization OK From krics at linuxforum.hu Fri Sep 14 16:48:51 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Fri Sep 14 16:48:52 2007 Subject: [Frugalware-git] xorg73: xpr-1.0.2-1-x86_64 Message-ID: <20070914144851.7494F168800A@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=d9f1b5a9b16a48eb5375599e64d42f219e1a5f79 commit d9f1b5a9b16a48eb5375599e64d42f219e1a5f79 Author: Christian Hamar alias krix Date: Fri Sep 14 16:48:37 2007 +0200 xpr-1.0.2-1-x86_64 * Version bump diff --git a/source/x11/xpr/FrugalBuild b/source/x11/xpr/FrugalBuild index a79750c..ba8599b 100644 --- a/source/x11/xpr/FrugalBuild +++ b/source/x11/xpr/FrugalBuild @@ -2,18 +2,16 @@ # Maintainer: Christian Hamar alias krix pkgname=xpr -pkgver=1.0.1 +pkgver=1.0.2 pkgrel=1 pkgdesc="X.Org xpr application" url="http://xorg.freedesktop.org" groups=('x11' 'xorg-core' 'xorg-apps') archs=('i686' 'x86_64') -depends=('libx11' 'libxmu') +depends=('libx11>=1.1.3' 'libxmu') +makedepends=('inputproto>=1.4.2.1') _F_xorg_ind=1 Finclude xorg +sha1sums=('a35077366b0fc3a1ce665662827000e00d0684f2') -# optimalization OK - -# vim: ft=sh -sha1sums=('7f3c017e0330864f6f1b98e99323054a60cbdc99') -makedepends=('inputproto') +# optimization OK From krics at linuxforum.hu Fri Sep 14 16:51:12 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Fri Sep 14 16:51:13 2007 Subject: [Frugalware-git] xorg73: xcalc-1.0.2-1-x86_64 Message-ID: <20070914145112.7434216A800F@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=55bb73f85c94e628597e9be010e69c8c83c797d4 commit 55bb73f85c94e628597e9be010e69c8c83c797d4 Author: Christian Hamar alias krix Date: Fri Sep 14 16:51:02 2007 +0200 xcalc-1.0.2-1-x86_64 * Version bump diff --git a/source/x11/xcalc/FrugalBuild b/source/x11/xcalc/FrugalBuild index 9198e44..020ad70 100644 --- a/source/x11/xcalc/FrugalBuild +++ b/source/x11/xcalc/FrugalBuild @@ -2,22 +2,16 @@ # Maintainer: Christian Hamar alias krix pkgname=xcalc -pkgver=1.0.1 +pkgver=1.0.2 pkgrel=1 pkgdesc="X.Org xcalc application" url="http://xorg.freedesktop.org" groups=('x11' 'xorg-core' 'xorg-apps') archs=('i686' 'x86_64') -depends=('libxaw' 'libxp') -_F_xorg_nr=0 +depends=('libxaw>=1.0.4' 'libxp') +makedepends=('inputproto>=1.4.2.1') Finclude xorg +Fconfopts="$Fconfopts --enable-xprint" +sha1sums=('0bb9691201e403d294779e401a70f32d6d99cdd9') -build() { - Fbuild --enable-xprint -} - -# optimalization OK - -# vim: ft=sh -sha1sums=('7138275c416c6463ae287df1b9e25df6f1771319') -makedepends=('inputproto') +# optimization OK From krics at linuxforum.hu Fri Sep 14 16:53:12 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Fri Sep 14 16:53:13 2007 Subject: [Frugalware-git] xorg73: xprop-1.0.3-1-x86_64 Message-ID: <20070914145312.79CC416A8013@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=d9bd16bf9c3c5add46d81f6315ae48f304dc7288 commit d9bd16bf9c3c5add46d81f6315ae48f304dc7288 Author: Christian Hamar alias krix Date: Fri Sep 14 16:52:52 2007 +0200 xprop-1.0.3-1-x86_64 * Version bump diff --git a/source/x11/xprop/FrugalBuild b/source/x11/xprop/FrugalBuild index 4eaba19..51213a0 100644 --- a/source/x11/xprop/FrugalBuild +++ b/source/x11/xprop/FrugalBuild @@ -2,16 +2,15 @@ # Maintainer: Christian Hamar alias krix pkgname=xprop -pkgver=1.0.2 +pkgver=1.0.3 pkgrel=1 pkgdesc="X.Org xprop application" url="http://xorg.freedesktop.org" groups=('x11' 'xorg-core' 'xorg-apps') archs=('i686' 'x86_64') -depends=('libx11' 'libxmu') -makedepends=('inputproto') -_F_xorg_nr=2 +depends=('libx11>=1.1.3' 'libxmu') +makedepends=('inputproto>=1.4.2.1') Finclude xorg -sha1sums=('90966800673465aafedb1919962de67ace6ccdaa') +sha1sums=('9000f6862ceca66a7ec99c9f050f4cdb55ba52fc') # optimization OK From krics at linuxforum.hu Fri Sep 14 16:55:12 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Fri Sep 14 16:55:13 2007 Subject: [Frugalware-git] xorg73: xev-1.0.2-1-x86_64 Message-ID: <20070914145512.0867116A8018@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=3d50d33bab8486d24eeef30aa9bfe10d83ca6f99 commit 3d50d33bab8486d24eeef30aa9bfe10d83ca6f99 Author: Christian Hamar alias krix Date: Fri Sep 14 16:55:02 2007 +0200 xev-1.0.2-1-x86_64 * Version bump diff --git a/source/x11/xev/FrugalBuild b/source/x11/xev/FrugalBuild index 725412e..8be22ba 100644 --- a/source/x11/xev/FrugalBuild +++ b/source/x11/xev/FrugalBuild @@ -2,17 +2,15 @@ # Maintainer: Christian Hamar alias krix pkgname=xev -pkgver=1.0.1 -pkgrel=3 +pkgver=1.0.2 +pkgrel=1 pkgdesc="X.Org xev application" url="http://xorg.freedesktop.org" groups=('x11' 'xorg-core' 'xorg-apps') archs=('i686' 'x86_64') -depends=('libx11') -makedepends=('inputproto') +depends=('libx11>=1.1.3') +makedepends=('inputproto>=1.4.2.1') _F_xorg_ind=1 Finclude xorg -options=('force') - -sha1sums=('8f453d2354d173db13fe690e90cce27315134b6e') +sha1sums=('21ea760863f512693e0dfac479f5aff58a52dcc8') # optimization OK From krics at linuxforum.hu Fri Sep 14 16:57:51 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Fri Sep 14 16:57:53 2007 Subject: [Frugalware-git] xorg73: xset-1.0.3-1-x86_64 Message-ID: <20070914145751.E5F6E16A801B@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=b3aaa6471833049d036d3886d95048c5cb065f64 commit b3aaa6471833049d036d3886d95048c5cb065f64 Author: Christian Hamar alias krix Date: Fri Sep 14 16:57:34 2007 +0200 xset-1.0.3-1-x86_64 * Version bump diff --git a/source/x11/xset/FrugalBuild b/source/x11/xset/FrugalBuild index b9237b6..ecb4e59 100644 --- a/source/x11/xset/FrugalBuild +++ b/source/x11/xset/FrugalBuild @@ -2,16 +2,15 @@ # Maintainer: Christian Hamar alias krix pkgname=xset -pkgver=1.0.2 -pkgrel=2 +pkgver=1.0.3 +pkgrel=1 pkgdesc="X.Org xset application" url="http://xorg.freedesktop.org" groups=('x11' 'xorg-core' 'xorg-apps') archs=('i686' 'x86_64') -depends=('libxmu' 'libxfontcache') -makedepends=('libxp' 'libxxf86misc' 'inputproto') -sha1sums=('3e11aab1a48fbee0094c2bfea829cca48b05c2b3') -_F_xorg_nr=1 +depends=('libxmu>=1.0.3-2' 'libxfontcache>=1.0.4-2') +makedepends=('libxp>=1.0.0-2' 'libxxf86misc>=1.0.1-2' 'inputproto>=1.4.2.1') +sha1sums=('b229f4701df44a22c07e6e27e867f72c770dc90c') Finclude xorg # optimization OK From priyank at frugalware.org Fri Sep 14 17:00:49 2007 From: priyank at frugalware.org (Priyank) Date: Fri Sep 14 17:00:51 2007 Subject: [Frugalware-git] gfpm: Interface enhancement Message-ID: <20070914150049.6833816A801F@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gfpm.git;a=commitdiff;h=03050826d84e6ef01026d89e4f4c15bc5707b289 commit 03050826d84e6ef01026d89e4f4c15bc5707b289 Author: Priyank Date: Fri Sep 14 20:28:37 2007 +0530 Interface enhancement * Added a quick-task pane right below the details textview from where the user can quickly update/install/remove packages without having to check/uncheck and click apply. * Spelling fix (Thanks TranzeManiac for noticing) diff --git a/data/gfpm.glade b/data/gfpm.glade index 4367ca9..f1d0786 100644 --- a/data/gfpm.glade +++ b/data/gfpm.glade @@ -378,76 +378,138 @@ 0 GTK_SHADOW_IN - + True - 5 - 5 - 5 - 5 + GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - + True + 5 + 2 + 5 + 5 - + True - False - GTK_POLICY_AUTOMATIC - GTK_POLICY_AUTOMATIC - + True - False - True + False + GTK_POLICY_AUTOMATIC + GTK_POLICY_AUTOMATIC + + + True + False + True + + + + False + + + + + True + Details + + + tab + False + False + - - - False - - - - - True - Detials - - - tab - False - False - - - - - True - False - GTK_POLICY_AUTOMATIC - GTK_POLICY_AUTOMATIC - + True - False - False + False + GTK_POLICY_AUTOMATIC + GTK_POLICY_AUTOMATIC + + + True + False + False + + + + 1 + False + + + + + True + Files + + + tab + 1 + False + False + - - 1 - False - + + + + + True + GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK + 5 - + True - Files + GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK + 2 + GTK_BUTTONBOX_END + + + True + True + True + GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK + Install + 0 + + + + + True + True + True + GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK + Remove + 0 + + + 1 + + + + + True + True + True + GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK + Upgrade + 0 + + + 2 + + - - tab - 1 - False - False - + + False + 3 + 1 + From krics at linuxforum.hu Fri Sep 14 17:05:21 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Fri Sep 14 17:05:29 2007 Subject: [Frugalware-git] xorg73: xdriinfo-1.0.2-1-x86_64 Message-ID: <20070914150521.512DE16E8010@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=210de1f3b761e04d88b34543fd2983b2dc8bd990 commit 210de1f3b761e04d88b34543fd2983b2dc8bd990 Author: Christian Hamar alias krix Date: Fri Sep 14 17:05:12 2007 +0200 xdriinfo-1.0.2-1-x86_64 * Version bump diff --git a/source/x11/xdriinfo/FrugalBuild b/source/x11/xdriinfo/FrugalBuild index bf8e5ef..aaadf91 100644 --- a/source/x11/xdriinfo/FrugalBuild +++ b/source/x11/xdriinfo/FrugalBuild @@ -2,17 +2,16 @@ # Maintainer: Christian Hamar alias krix pkgname=xdriinfo -pkgver=1.0.1 +pkgver=1.0.2 pkgrel=1 pkgdesc="X.Org xdriinfo application" url="http://xorg.freedesktop.org" groups=('x11' 'xorg-core' 'xorg-apps') archs=('i686' 'x86_64') -depends=('libx11' 'mesa') +depends=('libx11>=1.1.3' 'mesa>=7.0.1-2') makedepends=('glproto') -_F_xorg_nr=1 Finclude xorg - +sha1sums=('d6c72a59825354049da2885be4d3e1490c965230') # optimalization OK -sha1sums=('c9cea5c1150641490de6db2eb8ed5ad192a8883e') +# optimization OK From vmiklos at frugalware.org Fri Sep 14 17:08:21 2007 From: vmiklos at frugalware.org (VMiklos) Date: Fri Sep 14 17:08:22 2007 Subject: [Frugalware-git] frugalware-current: screem-0.16.1-1-i686 Message-ID: <20070914150821.75CC416E8013@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=e1cd35a78306615b7c8e05e446f60c6d4ec3a69d commit e1cd35a78306615b7c8e05e446f60c6d4ec3a69d Author: VMiklos Date: Fri Sep 14 17:08:08 2007 +0200 screem-0.16.1-1-i686 new package (original FB by boobaa) patched to get it work with current gnome libs diff --git a/source/gnome-extra/screem/FrugalBuild b/source/gnome-extra/screem/FrugalBuild new file mode 100644 index 0000000..6adffb2 --- /dev/null +++ b/source/gnome-extra/screem/FrugalBuild @@ -0,0 +1,24 @@ +# Compiling Time: 0.11 SBU +# Maintainer: VMiklos +# Contributor: CSÉCSY László + +pkgname=screem +pkgver=0.16.1 +pkgrel=1 +pkgdesc="a web development environment to increase productivity when constructing a site" +Finclude sourceforge +url="http://www.screem.org/" +depends=('libgnomeui' 'libgtkhtml' 'gtksourceview' 'gnome-menus' 'libcroco' 'enchant') +makedepends=('perl-xml') +groups=('gnome-extra') +archs=('i686') +up2date="lynx -dump http://www.screem.org/ | grep Stable | sed 's/.* (\([0-9\.]\+\)).*/\1/'" +source=($source switch-to-goption.patch) +sha1sums=('93989787e1a51be3d9023cce5aa7ad9424998cd3' \ + '98badee92a7f30d16914a23a6f365dc193b13eeb') +Fconfopts="$Fconfopts --enable-enchant --disable-update-mime --disable-update-desktop" +_F_gnome_schemas=('/etc/gconf/schemas/screem.schemas') +_F_gnome_desktop=y +_F_gnome_mime=y +Finclude gnome-scriptlet +# optimization OK diff --git a/source/gnome-extra/screem/switch-to-goption.patch b/source/gnome-extra/screem/switch-to-goption.patch new file mode 100644 index 0000000..c1ad425 --- /dev/null +++ b/source/gnome-extra/screem/switch-to-goption.patch @@ -0,0 +1,104 @@ +diff -ru screem-0.16.1/src/screem-main.c screem-0.16.1.new/src/screem-main.c +--- screem-0.16.1/src/screem-main.c 2005-10-10 20:17:58.000000000 +0100 ++++ screem-0.16.1.new/src/screem-main.c 2006-04-24 23:11:08.732661938 +0100 +@@ -54,12 +54,23 @@ + static gchar *session_filename = SESSION_LAST; + + /* passed parameters stuff */ ++#ifndef GNOME_PARAM_GOPTION_CONTEXT + static const struct poptOption options[] = { + { "load-session", 'l', POPT_ARG_STRING, &session_filename, 0, + N_("Load the given session file"), + N_("FILE") }, + { NULL, '\0', 0, NULL, 0, NULL, NULL } + }; ++#else /* USE GOption interface */ ++static const gchar **remaining_args = NULL; ++static GOptionEntry option_entries[] = { ++ { "load-session", 'l', 0, G_OPTION_ARG_STRING, &(session_filename), ++ N_("Load the given session file"), N_("FILE") }, ++ { G_OPTION_REMAINING, 0, 0, G_OPTION_ARG_FILENAME_ARRAY, &remaining_args, ++ "Special option that collects any remaining arguments for us" }, ++ { NULL } ++}; ++#endif + + typedef enum { + MISSING_GLADE, +@@ -68,7 +68,10 @@ + } MissingType; + + static gboolean screem_main_start_app( const gchar **start_files ); +-static const gchar** parse_args( poptContext ctx, int argc, char *argv[] ); ++ ++#ifndef GNOME_PARAM_GOPTION_CONTEXT ++static const gchar** parse_args( poptContext ctxx, int argc, char *argv[] ); ++#endif + + static void screem_main_missing( MissingType type ); + +@@ -75,8 +86,10 @@ + int main( int argc, char *argv[] ) + { + GnomeProgram *program; ++ const gchar** start_files; ++#ifndef GNOME_PARAM_GOPTION_CONTEXT + poptContext ctx; +- const gchar** start_files; ++#endif + const gchar *icon; + + gchar *dotdir; +@@ -88,11 +101,21 @@ + bind_textdomain_codeset( GETTEXT_PACKAGE, "UTF-8" ); + textdomain( GETTEXT_PACKAGE ); + #endif ++ ++#ifdef GNOME_PARAM_GOPTION_CONTEXT ++ GOptionContext *option_context = g_option_context_new("screem"); ++ g_option_context_add_main_entries(option_context, option_entries, NULL); ++#endif ++ + program = gnome_program_init( PACKAGE, VERSION, + LIBGNOMEUI_MODULE, + argc, argv, + GNOME_PROGRAM_STANDARD_PROPERTIES, ++#ifndef GNOME_PARAM_GOPTION_CONTEXT + GNOME_PARAM_POPT_TABLE, options, ++#else ++ GNOME_PARAM_GOPTION_CONTEXT, option_context, ++#endif + GNOME_PARAM_APP_DATADIR, DATADIR, + LIBGNOMEUI_PARAM_DEFAULT_ICON, + DATADIR"/pixmaps/screem.png", +@@ -105,10 +128,14 @@ + icon = DATADIR"/pixmaps/screem.png"; + gtk_window_set_default_icon_from_file( icon, NULL ); + ++#ifndef GNOME_PARAM_GOPTION_CONTEXT + /* parse arguments */ + g_object_get( G_OBJECT( program ), + GNOME_PARAM_POPT_CONTEXT, &ctx, NULL ); + start_files = parse_args( ctx, argc, argv ); ++#else ++ start_files = remaining_args; ++#endif + + gnome_vfs_init(); + gnome_authentication_manager_init(); +@@ -160,6 +187,7 @@ + return FALSE; + } + ++#ifndef GNOME_PARAM_GOPTION_CONTEXT + static const gchar **parse_args( poptContext ctx, int argc, char *argv[] ) + { + const gchar** start_files; +@@ -169,6 +197,7 @@ + + return start_files; + } ++#endif + + static void screem_main_missing( MissingType type ) + { From krics at linuxforum.hu Fri Sep 14 17:08:27 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Fri Sep 14 17:08:30 2007 Subject: [Frugalware-git] xorg73: xdpyinfo-1.0.2-1-x86_64 Message-ID: <20070914150827.8669616E8018@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=89c1104ca9562b99d2b7e909b91bc7deeabc10c4 commit 89c1104ca9562b99d2b7e909b91bc7deeabc10c4 Author: Christian Hamar alias krix Date: Fri Sep 14 17:08:16 2007 +0200 xdpyinfo-1.0.2-1-x86_64 * Version bump diff --git a/source/x11/xdpyinfo/FrugalBuild b/source/x11/xdpyinfo/FrugalBuild index 40fc845..3c03b61 100644 --- a/source/x11/xdpyinfo/FrugalBuild +++ b/source/x11/xdpyinfo/FrugalBuild @@ -2,17 +2,15 @@ # Maintainer: Christian Hamar alias krix pkgname=xdpyinfo -pkgver=1.0.1 +pkgver=1.0.2 pkgrel=1 pkgdesc="X.Org xdpyinfo application" url="http://xorg.freedesktop.org" groups=('x11' 'xorg-core' 'xorg-apps') archs=('i686' 'x86_64') -depends=('libxext' 'libx11' 'libxtst' 'libxxf86vm' 'libxxf86dga' 'libxxf86misc' 'libxi' 'libxrender' 'libxinerama' 'libdmx' 'libxp') +depends=('libxext>=1.0.3' 'libx11>=1.1.3' 'libxtst>=1.0.3' 'libxxf86vm>=1.0.1-2' 'libxxf86dga>=1.0.2' 'libxxf86misc>=1.0.1-2' 'libxi>=1.1.3' 'libxrender>=0.9.4' 'libxinerama>=1.0.2' 'libdmx>=1.0.2-2' 'libxp>=1.0.0-2') _F_xorg_ind=1 Finclude xorg +sha1sums=('79516efc860fd9618a1e29954839eff32a38b717') -# optimalization OK - -# vim: ft=sh -sha1sums=('497b6aca9f6fe3efafc3182ae63d8a0da012a08b') +# optimization OK From krics at linuxforum.hu Fri Sep 14 17:10:09 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Fri Sep 14 17:10:11 2007 Subject: [Frugalware-git] xorg73: xvinfo-1.0.2-1-x86_64 Message-ID: <20070914151009.CD40616E801B@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=5b331d11b153278fad650cd36cbf3c1103549ce9 commit 5b331d11b153278fad650cd36cbf3c1103549ce9 Author: Christian Hamar alias krix Date: Fri Sep 14 17:09:59 2007 +0200 xvinfo-1.0.2-1-x86_64 * Version bump diff --git a/source/x11/xvinfo/FrugalBuild b/source/x11/xvinfo/FrugalBuild index 1152066..60a787b 100644 --- a/source/x11/xvinfo/FrugalBuild +++ b/source/x11/xvinfo/FrugalBuild @@ -2,18 +2,15 @@ # Maintainer: Christian Hamar alias krix pkgname=xvinfo -pkgver=1.0.1 +pkgver=1.0.2 pkgrel=1 pkgdesc="X.Org xvinfo application" url="http://xorg.freedesktop.org" groups=('x11' 'xorg-core' 'xorg-apps') archs=('i686' 'x86_64') -depends=('libxv' 'libx11') -_F_xorg_nr=0 +depends=('libxv>=1.0.3-2' 'libx11>=1.1.3') +makedepends=('inputproto>=1.4.2.1') Finclude xorg +sha1sums=('1b3947fd1e1f4464b39488f539812adbd7ddb30e') -# optimalization OK - -# vim: ft=sh -sha1sums=('92c4a9a31a1238d17c7fffedb4bfffb320f7b73e') -makedepends=('inputproto') +# optimization OK From krics at linuxforum.hu Fri Sep 14 17:12:20 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Fri Sep 14 17:12:21 2007 Subject: [Frugalware-git] xorg73: xmag-1.0.2-1-x86_64 Message-ID: <20070914151220.AAA0116E8020@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=d3d284b8fb33e0cf92407116dbf0355abdfca7e0 commit d3d284b8fb33e0cf92407116dbf0355abdfca7e0 Author: Christian Hamar alias krix Date: Fri Sep 14 17:12:11 2007 +0200 xmag-1.0.2-1-x86_64 * Version bump diff --git a/source/x11/xmag/FrugalBuild b/source/x11/xmag/FrugalBuild index 80170f5..90b2f87 100644 --- a/source/x11/xmag/FrugalBuild +++ b/source/x11/xmag/FrugalBuild @@ -2,22 +2,16 @@ # Maintainer: Christian Hamar alias krix pkgname=xmag -pkgver=1.0.1 +pkgver=1.0.2 pkgrel=1 pkgdesc="X.Org xmag application" url="http://xorg.freedesktop.org" groups=('x11' 'xorg-core' 'xorg-apps') archs=('i686' 'x86_64') -depends=('libxaw' 'libxp') -_F_xorg_nr=0 +depends=('libxaw>=1.0.4' 'libxp') +makedepends=('inputproto>=1.4.2.1') Finclude xorg +Fconfopts="$Fconfopts --enable-xprint" +sha1sums=('081c6c01ad0b132fd5634008464d77a0e929bacb') -build() { - Fbuild --enable-xprint -} - -# optimalization OK - -# vim: ft=sh -sha1sums=('f0e706de7f012491cce750faaa5e8ab10e3afeec') -makedepends=('inputproto') +# optimization OK From krics at linuxforum.hu Fri Sep 14 17:13:47 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Fri Sep 14 17:13:48 2007 Subject: [Frugalware-git] xorg73: xwininfo-1.0.3-1-x86_64 Message-ID: <20070914151347.A0EAC16E8023@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=2386ac711058a6a399f51dac375e2edd5920f46c commit 2386ac711058a6a399f51dac375e2edd5920f46c Author: Christian Hamar alias krix Date: Fri Sep 14 17:13:38 2007 +0200 xwininfo-1.0.3-1-x86_64 * Version bump diff --git a/source/x11/xwininfo/FrugalBuild b/source/x11/xwininfo/FrugalBuild index ec76b72..e3b0ad7 100644 --- a/source/x11/xwininfo/FrugalBuild +++ b/source/x11/xwininfo/FrugalBuild @@ -2,16 +2,15 @@ # Maintainer: Christian Hamar alias krix pkgname=xwininfo -pkgver=1.0.2 +pkgver=1.0.3 pkgrel=1 pkgdesc="X.Org xwininfo application" url="http://xorg.freedesktop.org" groups=('x11' 'xorg-core' 'xorg-apps') archs=('i686' 'x86_64') -depends=('libxmu' 'libx11') -_F_xorg_nr=1 +depends=('libxmu' 'libx11>=1.1.3') +makedepends=('inputproto>=1.4.2.1') Finclude xorg -makedepends=('inputproto') -sha1sums=('a4043bc1d23837fd87444c45f8138a7a69874890') +sha1sums=('e6391c9b704b19bb8d59221dc87f83637dfc5fd8') # optimization OK From krics at linuxforum.hu Fri Sep 14 17:15:03 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Fri Sep 14 17:15:04 2007 Subject: [Frugalware-git] xorg73: xsetroot-1.0.2-1-x86_64 Message-ID: <20070914151503.8172E16E8027@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=fae5177572225eac137909d0a56a124ba18b8f2e commit fae5177572225eac137909d0a56a124ba18b8f2e Author: Christian Hamar alias krix Date: Fri Sep 14 17:14:54 2007 +0200 xsetroot-1.0.2-1-x86_64 * Version bump diff --git a/source/x11/xsetroot/FrugalBuild b/source/x11/xsetroot/FrugalBuild index 95b8d41..72766ea 100644 --- a/source/x11/xsetroot/FrugalBuild +++ b/source/x11/xsetroot/FrugalBuild @@ -2,16 +2,17 @@ # Maintainer: Christian Hamar alias krix pkgname=xsetroot -pkgver=1.0.1 +pkgver=1.0.2 pkgrel=1 pkgdesc="X.Org xsetroot application" url="http://xorg.freedesktop.org" groups=('x11' 'xorg-core' 'xorg-apps') archs=('i686' 'x86_64') -depends=('libxmu') -makedepends=('inputproto' 'xbitmaps') -_F_xorg_nr=0 +depends=('libxmu>=1.0.3-2') +makedepends=('inputproto>=1.4.2.1' 'xbitmaps') Finclude xorg -sha1sums=('1a0353b4ab580314d39d704013e332b9b1bb8642') +sha1sums=('55fbfc74d443ebc5bc1bdb3d4276c0b2d62e7e4a') # optimalization OK + +# optimization OK From vmiklos at frugalware.org Fri Sep 14 17:15:06 2007 From: vmiklos at frugalware.org (VMiklos) Date: Fri Sep 14 17:15:08 2007 Subject: [Frugalware-git] bmf: screem-0.16.1-1-i686 Message-ID: <20070914151506.CF59116E802A@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=bmf.git;a=commitdiff;h=8bfcb9f9084941613e6e05a8f7757b3a98b2c046 commit 8bfcb9f9084941613e6e05a8f7757b3a98b2c046 Author: VMiklos Date: Fri Sep 14 17:15:01 2007 +0200 screem-0.16.1-1-i686 bin, fixed version is in current diff --git a/source/gnome/screem/FrugalBuild b/source/gnome/screem/FrugalBuild deleted file mode 100644 index 4e12222..0000000 --- a/source/gnome/screem/FrugalBuild +++ /dev/null @@ -1,26 +0,0 @@ -# Last Modified: Sat, 26 Nov 2005 21:48:19 +0100 -# Compiling Time: N/A SBU -# Maintainer: CSÉCSY László - -pkgname=screem -pkgver=0.16.1 -pkgrel=1 -pkgdesc="a web development environment to increase productivity when constructing a site" -url="http://www.screem.org/" -depends=('libgnomeui' 'atk' 'libcroco' 'gtksourceview' 'cairo' 'gnome-menus' 'enchant' 'libgtkhtml') -makedepends=('perl-xml') -groups=('gnome-extra') -archs=('i686') -up2date="lynx -dump http://www.screem.org/ | grep Stable | sed 's/.* (\([0-9\.]\+\)).*/\1/'" -source=(http://heanet.dl.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz) -sha1sums=('93989787e1a51be3d9023cce5aa7ad9424998cd3') -install=$pkgname.install - -build() -{ - Fbuild --enable-enchant --disable-update-mime --disable-update-desktop -} - -# optimalization OK - -# vim: ft=sh diff --git a/source/gnome/screem/screem.install b/source/gnome/screem/screem.install deleted file mode 100644 index 081e15a..0000000 --- a/source/gnome/screem/screem.install +++ /dev/null @@ -1,49 +0,0 @@ -post_install() -{ - GCONF_CONFIG_SOURCE=`gconftool-2 --get-default-source` \ - gconftool-2 --makefile-install-rule /etc/gconf/schemas/screem.schemas \ - > /dev/null 2>&1 - kill -HUP `pidof /usr/libexec/gconfd-2` > /dev/null 2>&1 - echo -n "updating desktop database..." - if update-desktop-database /usr/share/applications > /dev/null 2>&1 ; then - echo " done." - else - echo " failed." - fi - echo -n "updating mime database..." - if update-mime-database /usr/share/mime > /dev/null 2>&1 ; then - echo " done." - else - echo " failed." - fi -} - -pre_remove() -{ - GCONF_CONFIG_SOURCE=`gconftool-2 --get-default-source` \ - gconftool-2 --makefile-uninstall-rule \ - /etc/gconf/schemas/screem.schemas > /dev/null 2>&1 -} - -post_remove() -{ - echo -n "updating desktop database..." - if update-desktop-database /usr/share/applications > /dev/null 2>&1 ; then - echo " done." - else - echo " failed." - fi - echo -n "updating mime database..." - if update-mime-database /usr/share/mime > /dev/null 2>&1 ; then - echo " done." - else - echo " failed." - fi -} - -op=$1 -shift - -$op $* - -# vim: ft=sh From krics at linuxforum.hu Fri Sep 14 17:16:23 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Fri Sep 14 17:16:25 2007 Subject: [Frugalware-git] xorg73: bitmap-1.0.3-1-x86_64 Message-ID: <20070914151623.9CEE216E802D@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=efb0b2b069c39769c801056ee11defbd48ca210d commit efb0b2b069c39769c801056ee11defbd48ca210d Author: Christian Hamar alias krix Date: Fri Sep 14 17:16:14 2007 +0200 bitmap-1.0.3-1-x86_64 * Version bump diff --git a/source/x11/bitmap/FrugalBuild b/source/x11/bitmap/FrugalBuild index a58e011..3ddf70e 100644 --- a/source/x11/bitmap/FrugalBuild +++ b/source/x11/bitmap/FrugalBuild @@ -2,16 +2,16 @@ # Maintainer: Christian Hamar alias krix pkgname=bitmap -pkgver=1.0.2 +pkgver=1.0.3 pkgrel=1 pkgdesc="X.Org bitmap application" url="http://xorg.freedesktop.org" groups=('x11' 'xorg-core' 'xorg-apps') archs=('i686' 'x86_64') -depends=('libx11' 'libxaw' 'libxmu' 'xbitmaps') -makedepends=('inputproto') +depends=('libx11>=1.1.3' 'libxaw>=1.0.4' 'libxmu>=1.0.3-2' 'xbitmaps') +makedepends=('inputproto>=1.4.2.1') _F_xorg_ind=1 Finclude xorg -sha1sums=('3720cec74f8e62371ac083f89a0a76ed90c08278') +sha1sums=('ca3b65e25fea6929ee254944b72508f8e39d80ea') # optimization OK From krics at linuxforum.hu Fri Sep 14 17:18:17 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Fri Sep 14 17:18:18 2007 Subject: [Frugalware-git] xorg73: xload-1.0.2-1-x86_64 Message-ID: <20070914151817.706D816E8030@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=af883d070ad478d810a811e3ad6d64260d1cc3dd commit af883d070ad478d810a811e3ad6d64260d1cc3dd Author: Christian Hamar alias krix Date: Fri Sep 14 17:18:08 2007 +0200 xload-1.0.2-1-x86_64 * Version bump diff --git a/source/x11/xload/FrugalBuild b/source/x11/xload/FrugalBuild index efd840d..aac0ab6 100644 --- a/source/x11/xload/FrugalBuild +++ b/source/x11/xload/FrugalBuild @@ -2,24 +2,16 @@ # Maintainer: Christian Hamar alias krix pkgname=xload -pkgver=1.0.1 +pkgver=1.0.2 pkgrel=1 pkgdesc="X.Org xkill application" url="http://xorg.freedesktop.org" groups=('x11' 'xorg-core' 'xorg-apps') archs=('i686' 'x86_64') -depends=('libxaw' 'libxp') -makedepends=('inputproto') -_F_xorg_nr=0 +depends=('libxaw>=1.0.4' 'libxp') +makedepends=('inputproto>=1.4.2.1') Finclude xorg -source=($source http://xorg.freedesktop.org/releases/X11R7.1/patches/xload-1.0.1-setuid.diff) - -build() { - Fsed xload.c xload/xload.c $Fsrcdir/xload-1.0.1-setuid.diff - Fbuild --enable-xprint -} +Fconfopts="$Fconfopts --enable-xprint" +sha1sums=('cbbbf23531e0d781b556f5864cc3b83874f786d2') # optimization OK - -sha1sums=('a65b9bc49f68f39fab19730e291b4f875468f247' \ - 'b14a6f911c2043052aa5006f3146fc5534705c2f') From krics at linuxforum.hu Fri Sep 14 17:19:28 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Fri Sep 14 17:19:29 2007 Subject: [Frugalware-git] xorg73: xhost-1.0.2-1-x86_64 Message-ID: <20070914151928.47C0016E8033@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=41b5ef57930e5f75059bad69d2f1cb4a8245ab08 commit 41b5ef57930e5f75059bad69d2f1cb4a8245ab08 Author: Christian Hamar alias krix Date: Fri Sep 14 17:19:18 2007 +0200 xhost-1.0.2-1-x86_64 * Version bump diff --git a/source/x11/xhost/FrugalBuild b/source/x11/xhost/FrugalBuild index e5be3a7..e20bb4d 100644 --- a/source/x11/xhost/FrugalBuild +++ b/source/x11/xhost/FrugalBuild @@ -2,16 +2,15 @@ # Maintainer: Christian Hamar alias krix pkgname=xhost -pkgver=1.0.1 +pkgver=1.0.2 pkgrel=1 pkgdesc="X.Org xgc application" url="http://xorg.freedesktop.org" groups=('x11' 'xorg-core' 'xorg-apps') archs=('i686' 'x86_64') -depends=('libx11' 'libxmu') -_F_xorg_nr=1 +depends=('libx11>=1.1.3' 'libxmu') +makedepends=('inputproto>=1.4.2.1') Finclude xorg -makedepends=('inputproto') -sha1sums=('37d39febdf0a26f4a5c9e4bd9711c528d1c6ea72') +sha1sums=('307dbce5491c7c22f438d8856cd983004b78b86c') # optimization OK From krics at linuxforum.hu Fri Sep 14 17:20:35 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Fri Sep 14 17:20:36 2007 Subject: [Frugalware-git] xorg73: xsetpointer-1.0.1-1-x86_64 Message-ID: <20070914152035.1743C16E8038@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=4f0dba1871a6eb9541f8df1a69e20177207df42b commit 4f0dba1871a6eb9541f8df1a69e20177207df42b Author: Christian Hamar alias krix Date: Fri Sep 14 17:20:24 2007 +0200 xsetpointer-1.0.1-1-x86_64 * Version bump diff --git a/source/x11/xsetpointer/FrugalBuild b/source/x11/xsetpointer/FrugalBuild index ae78494..c080bc3 100644 --- a/source/x11/xsetpointer/FrugalBuild +++ b/source/x11/xsetpointer/FrugalBuild @@ -2,16 +2,16 @@ # Maintainer: Christian Hamar alias krix pkgname=xsetpointer -pkgver=1.0.0 +pkgver=1.0.1 pkgrel=1 pkgdesc="set an X Input device as the main pointer" url="http://xorg.freedesktop.org" groups=('x11' 'xorg-core' 'xorg-apps') archs=('i686' 'x86_64') -depends=('libx11' 'libxi') +depends=('libx11>=1.1.3' 'libxi>=1.1.3') options=('force') _F_xorg_ind=1 Finclude xorg -sha1sums=('67ec2bf63a693a9e3445af57d00ffc19306b2d9a') +sha1sums=('a8b01c6f27625a6f6943f9be17b1e5511f69d710') # optimization OK From krics at linuxforum.hu Fri Sep 14 17:22:43 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Fri Sep 14 17:22:45 2007 Subject: [Frugalware-git] xorg73: xmessage-1.0.2-1-x86_64 Message-ID: <20070914152243.79F8B16E803B@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=8de649492bd2f9bbb759796bf82c8d2dc8209a5e commit 8de649492bd2f9bbb759796bf82c8d2dc8209a5e Author: Christian Hamar alias krix Date: Fri Sep 14 17:22:30 2007 +0200 xmessage-1.0.2-1-x86_64 * Version bump diff --git a/source/x11/xmessage/FrugalBuild b/source/x11/xmessage/FrugalBuild index 943fb1f..268ba71 100644 --- a/source/x11/xmessage/FrugalBuild +++ b/source/x11/xmessage/FrugalBuild @@ -2,22 +2,16 @@ # Maintainer: Christian Hamar alias krix pkgname=xmessage -pkgver=1.0.1 +pkgver=1.0.2 pkgrel=1 pkgdesc="X.Org xmessage application" url="http://xorg.freedesktop.org" groups=('x11' 'xorg-core' 'xorg-apps') archs=('i686' 'x86_64') -depends=('libxp' 'libxaw') -_F_xorg_nr=0 +depends=('libxp' 'libxaw>=1.0.4') +makedepends=('inputproto>=1.4.2.1') Finclude xorg +Fconfopts="$Fconfopts --enable-xprint" +sha1sums=('866dea3f01e2c9a3657bb1e56396b6ae1af4be3f') -build() { - Fbuild --enable-xprint -} - -# optimalization OK - -# vim: ft=sh -sha1sums=('3afc3c89472afdb5d4336d3c332b481be5e8b7ff') -makedepends=('inputproto') +# optimization OK From krics at linuxforum.hu Fri Sep 14 17:24:46 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Fri Sep 14 17:24:48 2007 Subject: [Frugalware-git] xorg73: xman-1.0.3-1-x86_64 Message-ID: <20070914152446.DE4061768008@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=79dcd81cd8414bc9c7819c08ecf1d2fee0cfd873 commit 79dcd81cd8414bc9c7819c08ecf1d2fee0cfd873 Author: Christian Hamar alias krix Date: Fri Sep 14 17:24:35 2007 +0200 xman-1.0.3-1-x86_64 * Version bump diff --git a/source/x11/xman/FrugalBuild b/source/x11/xman/FrugalBuild index 8e2dbd4..3ed65c6 100644 --- a/source/x11/xman/FrugalBuild +++ b/source/x11/xman/FrugalBuild @@ -2,18 +2,15 @@ # Maintainer: Christian Hamar alias krix pkgname=xman -pkgver=1.0.2 +pkgver=1.0.3 pkgrel=1 pkgdesc="X.Org xman application" url="http://xorg.freedesktop.org" groups=('x11' 'xorg-core' 'xorg-apps') archs=('i686' 'x86_64') -depends=('libxprintutil' 'libxaw') -makedepends=('man' 'inputproto') -_F_xorg_nr=1 +depends=('libxprintutil>=1.0.1-2' 'libxaw>=1.0.4') +makedepends=('man' 'inputproto>=1.4.2.1') Finclude xorg Fconfopts="$Fconfopts --enable-xprint" - -sha1sums=('b3d53eedce31071dfc3bc981b04e960d4f830527') - +sha1sums=('1612166e4ccc93e9e18904c0d297b0135ee5dd62') # optimization OK From krics at linuxforum.hu Fri Sep 14 17:26:11 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Fri Sep 14 17:26:12 2007 Subject: [Frugalware-git] xorg73: xgamma-1.0.2-1-x86_64 Message-ID: <20070914152611.43685176800C@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=222c92baa4b5158d7a50ddfea393623aa42af16d commit 222c92baa4b5158d7a50ddfea393623aa42af16d Author: Christian Hamar alias krix Date: Fri Sep 14 17:26:01 2007 +0200 xgamma-1.0.2-1-x86_64 * Version bump diff --git a/source/x11/xgamma/FrugalBuild b/source/x11/xgamma/FrugalBuild index e3175bd..3e82d2c 100644 --- a/source/x11/xgamma/FrugalBuild +++ b/source/x11/xgamma/FrugalBuild @@ -2,18 +2,15 @@ # Maintainer: Christian Hamar alias krix pkgname=xgamma -pkgver=1.0.1 +pkgver=1.0.2 pkgrel=1 pkgdesc="X.Org xgamma application" url="http://xorg.freedesktop.org" groups=('x11' 'xorg-core' 'xorg-apps') archs=('i686' 'x86_64') -depends=('libxxf86vm') -_F_xorg_nr=0 +depends=('libxxf86vm>=1.0.1-2') +makedepends=('inputproto>=1.4.2.1') Finclude xorg +sha1sums=('10eb2bde48c24966b870092fd6044c7c448bed87') -# optimalization OK - -# vim: ft=sh -sha1sums=('0685b96318a71bc9349364c263473c84edbab356') -makedepends=('inputproto') +# optimization OK From krics at linuxforum.hu Fri Sep 14 17:28:22 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Fri Sep 14 17:28:25 2007 Subject: [Frugalware-git] xorg73: xconsole-1.0.3-1-x86_64 Message-ID: <20070914152822.DCDB31768010@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=be7054f631fd563ebc275627ae4e980caee25c4f commit be7054f631fd563ebc275627ae4e980caee25c4f Author: Christian Hamar alias krix Date: Fri Sep 14 17:28:08 2007 +0200 xconsole-1.0.3-1-x86_64 * Version bump diff --git a/source/x11/xconsole/FrugalBuild b/source/x11/xconsole/FrugalBuild index d964156..715b7cf 100644 --- a/source/x11/xconsole/FrugalBuild +++ b/source/x11/xconsole/FrugalBuild @@ -2,18 +2,15 @@ # Maintainer: Christian Hamar alias krix pkgname=xconsole -pkgver=1.0.2 +pkgver=1.0.3 pkgrel=1 pkgdesc="X.Org xconsole application" url="http://xorg.freedesktop.org" groups=('x11' 'xorg-core' 'xorg-apps') archs=('i686' 'x86_64') -depends=('libxaw' 'libxp') -makedepends=('inputproto') -_F_xorg_nr=1 +depends=('libxaw>=1.0.4' 'libxp') +makedepends=('inputproto>=1.4.2.1') Finclude xorg Fconfopts="$Fconfopts --enable-xprint" - +sha1sums=('31408b28b67fe74f3d21c98cc2cada03ff9cefab') # optimization OK - -sha1sums=('49ad2a07af1f2d996c7e0721b0264538caaee8c4') From krics at linuxforum.hu Fri Sep 14 17:31:46 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Fri Sep 14 17:31:48 2007 Subject: [Frugalware-git] xorg73: xcursorgen-1.0.2-1-x86_64 Message-ID: <20070914153146.D6FF21768014@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=280786b96ce5d9ebf8d182152669196253becfa1 commit 280786b96ce5d9ebf8d182152669196253becfa1 Author: Christian Hamar alias krix Date: Fri Sep 14 17:31:38 2007 +0200 xcursorgen-1.0.2-1-x86_64 * Version bump diff --git a/source/x11/xcursorgen/FrugalBuild b/source/x11/xcursorgen/FrugalBuild index 89fb5c1..f5002b2 100644 --- a/source/x11/xcursorgen/FrugalBuild +++ b/source/x11/xcursorgen/FrugalBuild @@ -2,16 +2,15 @@ # Maintainer: Christian Hamar alias krix pkgname=xcursorgen -pkgver=1.0.1 +pkgver=1.0.2 pkgrel=1 pkgdesc="X.Org xcursorgen application" url="http://xorg.freedesktop.org" groups=('x11' 'xorg-core' 'xorg-apps') archs=('i686' 'x86_64') -depends=('libxcursor' 'libx11' 'libpng') -makedepends=('inputproto') -_F_xorg_nr=1 +depends=('libxcursor>=1.1.9' 'libx11>=1.1.3' 'libpng') +makedepends=('inputproto>=1.4.2.1') Finclude xorg -sha1sums=('7982d93e1c456e4a4d7922dbbee5b170c5852ce1') +sha1sums=('467b440779fe7dd34d35f0610ec977d3e51617bc') # optimization OK From priyank at frugalware.org Fri Sep 14 17:35:22 2007 From: priyank at frugalware.org (Priyank) Date: Fri Sep 14 17:35:24 2007 Subject: [Frugalware-git] gfpm: New feature: Added a quick pane for quick package operations Message-ID: <20070914153522.16EA91768017@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gfpm.git;a=commitdiff;h=1fb42039543dc468ca64e1cf64b4577d258ee806 commit 1fb42039543dc468ca64e1cf64b4577d258ee806 Author: Priyank Date: Fri Sep 14 21:03:20 2007 +0530 New feature: Added a quick pane for quick package operations * This allows the user to quickly update/remove/install a package without having to check/uncheck it and clicking on apply button. diff --git a/data/gfpm.glade b/data/gfpm.glade index f1d0786..26242ea 100644 --- a/data/gfpm.glade +++ b/data/gfpm.glade @@ -4,8 +4,8 @@ GTK_WIN_POS_CENTER - 740 - 575 + 780 + 600 diff --git a/src/Makefile.am b/src/Makefile.am index be22ffe..30a9571 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -13,6 +13,7 @@ gfpm_SOURCES= \ gfpm-interface.c \ gfpm-messages.c \ gfpm-optimizedb.c \ + gfpm-quickpane.c \ gfpm-about.c \ gfpm.c diff --git a/src/gfpm-interface.c b/src/gfpm-interface.c index bb4fcb5..b2b948d 100644 --- a/src/gfpm-interface.c +++ b/src/gfpm-interface.c @@ -40,6 +40,7 @@ #include "gfpm-packagelist.h" #include "gfpm-progress.h" #include "gfpm-optimizedb.h" +#include "gfpm-quickpane.h" #include "gfpm-util.h" #include "gfpm-about.h" #include "gfpm-db.h" @@ -50,6 +51,7 @@ extern PM_DB *local_db; extern GfpmList *install_list; extern GfpmList *remove_list; extern char *repo; +extern gchar *quickpane_pkg; /* current group the user is browsing */ /* used for refreshing the views after a package update */ @@ -57,10 +59,10 @@ gchar *current_group = NULL; /* The GFPM main window */ GtkWidget *gfpm_mw; +GtkWidget *gfpm_pkgs_tvw; static GtkWidget *gfpm_statusbar; static GtkWidget *gfpm_groups_tvw; -static GtkWidget *gfpm_pkgs_tvw; static GtkWidget *gfpm_info_tvw; static GtkWidget *gfpm_files_txtvw; static GtkWidget *gfpm_clrall_opt; @@ -81,7 +83,6 @@ static void cb_gfpm_pkgs_tvw_selected (GtkTreeSelection *selection, gpointer dat static void cb_gfpm_pkgs_tvw_right_click (GtkTreeView *treeview, GdkEventButton *event); static void cb_gfpm_search_keypress (GtkWidget *widget, GdkEventKey *event, gpointer data); static void cb_gfpm_pkg_selection_toggled (GtkCellRendererToggle *toggle, gchar *path_str, gpointer data); -static void cb_gfpm_apply_btn_clicked (GtkButton *button, gpointer data); static void cb_gfpm_install_file_clicked (GtkButton *button, gpointer data); static void cb_gfpm_clear_cache_apply_clicked (GtkButton *button, gpointer data); static void cb_gfpm_refresh_button_clicked (GtkButton *button, gpointer data); @@ -267,12 +268,13 @@ gfpm_interface_init (void) gfpm_messages_init (); gfpm_progress_init (); gfpm_optimize_db_dlg_init (); + gfpm_quickpane_init (); gtk_widget_hide (gfpm_splash); title = g_strdup_printf ("%s (%s)", PACKAGE_STRING, GFPM_RELEASE_NAME); gtk_window_set_title (GTK_WINDOW(gfpm_mw), title); g_free (title); - gtk_widget_show_all (gfpm_mw); + gtk_widget_show (gfpm_mw); /* unref the glade xml object */ g_object_unref (xml); @@ -280,7 +282,7 @@ gfpm_interface_init (void) return; } -static void +void cb_gfpm_apply_btn_clicked (GtkButton *button, gpointer data) { static gchar *lck_error = ("Gfpm has detected that another instance of a package manager is already running. " @@ -874,7 +876,6 @@ gfpm_load_info_tvw (const char *pkg_name) break; } g_free (st); - } return; @@ -1118,13 +1119,45 @@ cb_gfpm_pkgs_tvw_selected (GtkTreeSelection *selection, gpointer data) GtkTreeModel *model; GtkTreeIter iter; gchar *pkgname = NULL; - gboolean inst; + gchar *v1 = NULL; + gchar *v2 = NULL; + gboolean inst = FALSE; + gboolean up = FALSE; + /* free the old quickpane package name */ + if (quickpane_pkg != NULL) + { + g_free (quickpane_pkg); + quickpane_pkg = NULL; + } if (gtk_tree_selection_get_selected(selection, &model, &iter)) { - gtk_tree_model_get (model, &iter, 0, &inst, 2, &pkgname, -1); + gtk_tree_model_get (model, &iter, 2, &pkgname, 3, &v1, 4, &v2, -1); + quickpane_pkg = g_strdup (pkgname); gfpm_load_info_tvw (pkgname); + if (v1 != NULL) + inst = TRUE; gfpm_load_files_txtvw (pkgname, inst); + if (v1!=NULL && v2!=NULL) + { + gint ret = pacman_pkg_vercmp (v1, v2); + if (!ret) + up = FALSE; + else if (ret < 0) + up = TRUE; + else + up = FALSE; + if (!strlen((char*)v1)) + up = FALSE; + } + else + { + up = FALSE; + } + gfpm_quickpane_show (TRUE, inst, up); + } + else + { g_free (pkgname); } diff --git a/src/gfpm-interface.h b/src/gfpm-interface.h index 77c535e..873fc1f 100644 --- a/src/gfpm-interface.h +++ b/src/gfpm-interface.h @@ -16,5 +16,6 @@ void gfpm_load_pkgs_tvw (const char *); void gfpm_load_info_tvw (const char *); void gfpm_load_files_txtvw (const char *, gboolean); void gfpm_interface_init (void); +void cb_gfpm_apply_btn_clicked (GtkButton *, gpointer); #endif diff --git a/src/gfpm-quickpane.c b/src/gfpm-quickpane.c new file mode 100644 index 0000000..25bb03f --- /dev/null +++ b/src/gfpm-quickpane.c @@ -0,0 +1,112 @@ +#include "gfpm-quickpane.h" +#include "gfpm-packagelist.h" +#include + +gchar *quickpane_pkg = NULL; + +extern GladeXML *xml; +extern GfpmList *install_list; +extern GfpmList *remove_list; +extern GtkWidget *gfpm_pkgs_tvw; + +static GtkWidget *quick_pane; +static GtkWidget *quick_pane_install_btn; +static GtkWidget *quick_pane_remove_btn; +static GtkWidget *quick_pane_upgrade_btn; + +static void cb_gfpm_quickpane_install_clicked (GtkWidget *button, gpointer data); +static void cb_gfpm_quickpane_remove_clicked (GtkWidget *button, gpointer data); +static void cb_gfpm_quickpane_upgrade_clicked (GtkWidget *button, gpointer data); + +void +gfpm_quickpane_init (void) +{ + quick_pane_install_btn = glade_xml_get_widget (xml, "quick_install"); + quick_pane_remove_btn = glade_xml_get_widget (xml, "quick_remove"); + quick_pane_upgrade_btn = glade_xml_get_widget (xml, "quick_upgrade"); + quick_pane = glade_xml_get_widget (xml, "quick_pane"); + gfpm_quickpane_show (FALSE, 0, 0); + g_signal_connect (G_OBJECT(quick_pane_install_btn), + "clicked", + G_CALLBACK(cb_gfpm_quickpane_install_clicked), + NULL); + g_signal_connect (G_OBJECT(quick_pane_remove_btn), + "clicked", + G_CALLBACK(cb_gfpm_quickpane_remove_clicked), + NULL); + g_signal_connect (G_OBJECT(quick_pane_upgrade_btn), + "clicked", + G_CALLBACK(cb_gfpm_quickpane_upgrade_clicked), + NULL); + + return; +} + +void +gfpm_quickpane_show (gboolean show, gboolean what, gboolean upgrade) +{ + if (show) + { + gtk_widget_show (quick_pane); + if (what) + { + gtk_widget_show (quick_pane_remove_btn); + gtk_widget_hide (quick_pane_install_btn); + if (upgrade) + gtk_widget_show (quick_pane_upgrade_btn); + else + gtk_widget_hide (quick_pane_upgrade_btn); + } + else + { + gtk_widget_hide (quick_pane_remove_btn); + gtk_widget_show (quick_pane_install_btn); + } + } + else + { + gtk_widget_hide (quick_pane); + } + + return; +} + + +/* CALLBACKS */ + +static void +cb_gfpm_quickpane_install_clicked (GtkWidget *button, gpointer data) +{ + GfpmList *temp = NULL; + + temp = install_list; + install_list = NULL; + gfpm_package_list_add (GFPM_INSTALL_LIST, quickpane_pkg); + cb_gfpm_apply_btn_clicked (NULL, NULL); + install_list = temp; + + return; +} + +static void +cb_gfpm_quickpane_remove_clicked (GtkWidget *button, gpointer data) +{ + GfpmList *temp = NULL; + + temp = remove_list; + remove_list = NULL; + gfpm_package_list_add (GFPM_REMOVE_LIST, quickpane_pkg); + cb_gfpm_apply_btn_clicked (NULL, NULL); + remove_list = temp; + + return; +} + +static void +cb_gfpm_quickpane_upgrade_clicked (GtkWidget *button, gpointer data) +{ + cb_gfpm_quickpane_install_clicked (NULL, NULL); + + return; +} + diff --git a/src/gfpm-quickpane.h b/src/gfpm-quickpane.h new file mode 100644 index 0000000..f487233 --- /dev/null +++ b/src/gfpm-quickpane.h @@ -0,0 +1,14 @@ +#ifndef __GFPM_QUICKPANE_H__ +#define __GFPM_QUICKPANE_H__ + +#include +#include +#include +#include + +void gfpm_quickpane_init (void); + +void gfpm_quickpane_show (gboolean, gboolean, gboolean); + +#endif + From priyank at frugalware.org Fri Sep 14 17:39:12 2007 From: priyank at frugalware.org (Priyank) Date: Fri Sep 14 17:39:13 2007 Subject: [Frugalware-git] gfpm: gfpm-quickpane: small bugfix Message-ID: <20070914153912.ADAC2176801B@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gfpm.git;a=commitdiff;h=b4fea1f395ae880cb87f2b36c1731b64627cdb85 commit b4fea1f395ae880cb87f2b36c1731b64627cdb85 Author: Priyank Date: Fri Sep 14 21:07:12 2007 +0530 gfpm-quickpane: small bugfix * hide the upgrade button if package isn't installed. diff --git a/src/gfpm-quickpane.c b/src/gfpm-quickpane.c index 25bb03f..1968e20 100644 --- a/src/gfpm-quickpane.c +++ b/src/gfpm-quickpane.c @@ -60,6 +60,7 @@ gfpm_quickpane_show (gboolean show, gboolean what, gboolean upgrade) else { gtk_widget_hide (quick_pane_remove_btn); + gtk_widget_hide (quick_pane_upgrade_btn); gtk_widget_show (quick_pane_install_btn); } } From krics at linuxforum.hu Fri Sep 14 20:26:13 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Fri Sep 14 20:26:21 2007 Subject: [Frugalware-git] frugalware-current: * Added X bump order list Message-ID: <20070914182613.B6A991688490@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=a5468a6edc57826a0c3172140adb5e97a03e798a commit a5468a6edc57826a0c3172140adb5e97a03e798a Author: Christian Hamar alias krix Date: Fri Sep 14 20:23:19 2007 +0200 * Added X bump order list diff --git a/docs/xorg-bump-howto.txt b/docs/xorg-bump-howto.txt new file mode 100644 index 0000000..1660e51 --- /dev/null +++ b/docs/xorg-bump-howto.txt @@ -0,0 +1,172 @@ +- All *proto* packs + +- libxau +- xtrans +- util-macros +- libxdmcp +- libxcb +- libx11 +- libice +- libsm +- libfs +- libfontenc +- liblbxutil +- liboldx +- libxext +- libxfixes +- libxfont +- libxfontcache +- libxdamage +- libxrender +- libxrandr +- libxt +- libxtrap +- libxtst +- libxi +- libxinerama +- libxkbfile +- libxkbui +- libxmu +- libxp +- libxres +- libxscrnsaver +- libxv +- libxvmc +- libxxf86dga +- libxxf86misc +- libxxf86vm +- lndir +- libxpm +- libxaw +- libxcursor +- libxcomposite +- libwindowswm +- libxevie +- libxft +- libxprintutil +- libxprintapputil +- listres +- luit +- makedepend +- mkcomposecache +- mkfontscale +- mkfontdir +- rgb +- sessreg +- setxkbmap +- showfont +- smproxy +- twm +- viewres +- x11pref +- xauth +- xkbcomp +- xkbevd +- xkbprint +- xkbutils +- xkeyboard-config +- mesa +- freeglut +- mesademos +- beforelight +- encodings +- bdftopcf +- iceauth +- ico +- lbxproxy +- libdmx +- libapplewm +- font-cursor-misc +- font-misc-misc +- xorg-sgml-doctools +- xterm +- xclock +- xinit +- pixman +- xorg-server (wooohoooooo :P) +- xorg-docs +- xf86-input-evdev +- xf86-input-keyboard +- xf86-input-mouse +- xf86-input-acecad +- xf86-input-aiptek +- xf86-input-calcomp ### BROKEN ### +- xf86-input-citron ### BROKEN ### +- xf86-input-digitaledge +- xf86-input-dmc +- xf86-input-dynapro ### BROKEN ### +- xf86-input-elo2300 ### BROKEN ### +- xf86-input-elographics +- xf86-input-fpit +- xf86-input-hyperpen +- xf86-input-jamstudio +- xf86-input-joystick +- xf86-input-magellan ### BROKEN ### +- xf86-input-magictouch +- xf86-input-microtouch ### BROKEN ### +- xf86-input-mutouch +- xf86-input-palmax +- xf86-input-penmount ### BROKEN ### +- xf86-input-spaceorb ### BROKEN ### +- xf86-input-summa +- xf86-input-tek4957 +- xf86-input-ur98 +- xf86-input-vmmouse ### BROKEN ### +- xf86-input-void +- xf86-video-apm +- xf86-video-ark +- xf86-video-ast +- xf86-video-ati ### INDIVIDUAL GOT HIGHER VERSION ### +- xf86-video-chips +- xf86-video-cirrus +- xf86-video-cyrix +- xf86-video-dummy +- xf86-video-fbdev +- xf86-video-glint +- xf86-video-i128 +- xf86-video-i740 +- libpciaccess +- xf86-video-intel +- xf86-video-imstt +- xf86-video-mga +- xf86-video-neomagic +- xf86-video-newport +- xf86-video-nsc +- xf86-video-nv +- xf86-video-rendition +- xf86-video-s3 +- xf86-video-s3virge +- xf86-video-savage +- xf86-video-siliconmotion +- xf86-video-sis +- xf86-video-sisusb +- xf86-video-sunbw2 +- xf86-video-suncg14 +- xf86-video-suncg3 +- xf86-video-suncg6 +- xf86-video-sunffb +- xf86-video-sunleo +- xf86-video-sunctx +- xf86-video-tdfx +- xf86-video-tga +- xf86-video-trident +- xf86-video-tseng +- xf86-video-v4l +- xf86-video-vesa +- xf86-video-vga +- xf86-video-via +- xf86-video-vmware +- xf86-video-voodoo +- xf86-video-amd +- xf86-video-vermilion +- xf86-video-xgi +- grandr +- xbacklight +- xfontsel +- xrdb +- xdm +- xrandr +- xmodmap +- xlsfonts + +- all others? :) From vmiklos at frugalware.org Fri Sep 14 20:29:11 2007 From: vmiklos at frugalware.org (VMiklos) Date: Fri Sep 14 20:29:18 2007 Subject: [Frugalware-git] pacman-tools: syncpkgcd: support for WIP repos Message-ID: <20070914182911.C749A1688509@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=pacman-tools.git;a=commitdiff;h=abf92631ce5f39c15fea1d54f82a5152bae486f6 commit abf92631ce5f39c15fea1d54f82a5152bae486f6 Author: VMiklos Date: Fri Sep 14 20:28:24 2007 +0200 syncpkgcd: support for WIP repos if the name of the repo is not current or stable, then use makepkg -t foo,current instead of makepkt -t foo diff --git a/syncpkgd/syncpkgcd.py b/syncpkgd/syncpkgcd.py index 3411039..172f06d 100644 --- a/syncpkgd/syncpkgcd.py +++ b/syncpkgd/syncpkgcd.py @@ -129,8 +129,14 @@ class Syncpkgcd: junk.extend(glob.glob("*.log.bz2")) for i in junk: os.unlink(i) - self.system("sudo makepkg -t %s -C" % tree) - if self.system("sudo makepkg -t %s -cu" % tree): + # FIXME: hardcoding this is a bit ugly, but well, this probably + # won't change in the near future + if tree not in ('current', 'stable'): + makepkg_tree = "%s,current" % tree + else: + makepkg_tree = tree + self.system("sudo makepkg -t %s -C" % makepkg_tree) + if self.system("sudo makepkg -t %s -cu" % makepkg_tree): self.log(pkg, "makepkg failed") try: sock = open("%s.log" % pkg.split('/')[3]) From vmiklos at frugalware.org Fri Sep 14 20:40:13 2007 From: vmiklos at frugalware.org (VMiklos) Date: Fri Sep 14 20:40:20 2007 Subject: [Frugalware-git] pacman-tools: syncpkgd: allow repos other than current|stable Message-ID: <20070914184013.9DF591688577@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=pacman-tools.git;a=commitdiff;h=088ef3a9a897c1efbccf5e3fcdda45c3d9cf8ddf commit 088ef3a9a897c1efbccf5e3fcdda45c3d9cf8ddf Author: VMiklos Date: Fri Sep 14 20:40:00 2007 +0200 syncpkgd: allow repos other than current|stable (current|stable) -> [A-Za-z][A-Za-z0-9_]+ diff --git a/syncpkgd/syncpkgd.py b/syncpkgd/syncpkgd.py index b1c1b8b..8892ee4 100644 --- a/syncpkgd/syncpkgd.py +++ b/syncpkgd/syncpkgd.py @@ -41,7 +41,8 @@ class Actions: sock.close() def __request_build(self, pkg): - if not re.search("^(git|darcs)://(current|stable)/.+-[^-]+-[^-]+-[^-]+/.+ <.+>$", pkg): + # this regex is not too nice, but at least works + if not re.search("^(git|darcs)://[A-Za-z][A-Za-z0-9_]+/.+-[^-]+-[^-]+-[^-]+/.+ <.+>$", pkg): raise Exception("invalid uri") if pkg in self.tobuild: return False From krics at linuxforum.hu Fri Sep 14 21:31:22 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Fri Sep 14 21:31:24 2007 Subject: [Frugalware-git] gfpm: Fixed 2 warning messages (werror build) Message-ID: <20070914193122.3E9F3167800C@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gfpm.git;a=commitdiff;h=a5afb88f64594c838d41d4db846c6269f5d6f021 commit a5afb88f64594c838d41d4db846c6269f5d6f021 Author: Christian Hamar alias krix Date: Fri Sep 14 21:31:18 2007 +0200 Fixed 2 warning messages (werror build) * Fix a cast error (only shows at x86_64) * Missing include, added gfpm-interface.h to quickpane.c to fix a missing declaration diff --git a/src/gfpm-interface.c b/src/gfpm-interface.c index b2b948d..ae2fefc 100644 --- a/src/gfpm-interface.c +++ b/src/gfpm-interface.c @@ -923,7 +923,7 @@ gfpm_trans_prepare (PM_LIST *list) str = g_strdup_printf (_("Failed to prepare transaction (%s)\n"), pacman_strerror (pm_errno)); gfpm_error (_("Error"), str); g_free (str); - int t = pacman_trans_getinfo (PM_TRANS_TYPE); + int t = (long)pacman_trans_getinfo (PM_TRANS_TYPE); switch ((long)pm_errno) { case PM_ERR_UNSATISFIED_DEPS: diff --git a/src/gfpm-quickpane.c b/src/gfpm-quickpane.c index 1968e20..0220024 100644 --- a/src/gfpm-quickpane.c +++ b/src/gfpm-quickpane.c @@ -1,5 +1,6 @@ #include "gfpm-quickpane.h" #include "gfpm-packagelist.h" +#include "gfpm-interface.h" #include gchar *quickpane_pkg = NULL; From vmiklos at frugalware.org Fri Sep 14 22:03:35 2007 From: vmiklos at frugalware.org (VMiklos) Date: Fri Sep 14 22:03:38 2007 Subject: [Frugalware-git] pacman-tools: dg: fix for git-1.5.3 in record() Message-ID: <20070914200335.E8919167800C@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=pacman-tools.git;a=commitdiff;h=81805fa8e40d720b7380c7cfbbf34034421d477c commit 81805fa8e40d720b7380c7cfbbf34034421d477c Author: VMiklos Date: Fri Sep 14 22:03:23 2007 +0200 dg: fix for git-1.5.3 in record() support for packed refs. after git gc we won't be able to find master anyway diff --git a/darcs-git.py b/darcs-git.py index 219b66e..4359737 100755 --- a/darcs-git.py +++ b/darcs-git.py @@ -246,7 +246,7 @@ Options: usage(0) root = get_root() first = False - if emptydir(os.path.join(root, "refs", "heads")): + if os.system("git rev-parse --verify HEAD >/dev/null 2>&1"): first = True sock = os.popen("git status") lines = sock.readlines() From priyank at frugalware.org Fri Sep 14 22:33:36 2007 From: priyank at frugalware.org (Priyank) Date: Fri Sep 14 22:33:38 2007 Subject: [Frugalware-git] frugalware-current: pdfedit-0.3.2-1-i686 Message-ID: <20070914203336.0B912167800C@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=ba45d0743e790820ef297b10aa7e3e6bb07598c6 commit ba45d0743e790820ef297b10aa7e3e6bb07598c6 Author: Priyank Date: Sat Sep 15 01:58:01 2007 +0530 pdfedit-0.3.2-1-i686 * Version bump * SBU fix diff --git a/source/xapps-extra/pdfedit/FrugalBuild b/source/xapps-extra/pdfedit/FrugalBuild index bf7879e..ff6b7e5 100644 --- a/source/xapps-extra/pdfedit/FrugalBuild +++ b/source/xapps-extra/pdfedit/FrugalBuild @@ -1,8 +1,8 @@ -# Compiling Time: 1.73 SBU +# Compiling Time: 1.81 SBU # Maintainer: Priyank Gosalia pkgname=pdfedit -pkgver=0.3.1 +pkgver=0.3.2 pkgrel=1 pkgdesc="PDFedit is an editor for manipulating PDF files." depends=('qt' 't1lib' 'boost') @@ -14,7 +14,7 @@ _F_desktop_name="PDFedit" _F_desktop_icon="pdfedit.png" _F_desktop_categories="Qt;GNOME;KDE;Utility" options=('scriptlet') -sha1sums=('3629977b2b7d28d12ae397afbcd6aef677aec0e7') +sha1sums=('d3954c6ede18d2d5b3e25c4b399aa9f36b36b32e') build() { From vmiklos at frugalware.org Sat Sep 15 00:13:27 2007 From: vmiklos at frugalware.org (VMiklos) Date: Sat Sep 15 00:13:30 2007 Subject: [Frugalware-git] bmf: gnash-0.8.1-1-i686 Message-ID: <20070914221327.81C10167800C@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=bmf.git;a=commitdiff;h=fd4b6988068d30400562f04ebe58f30d11399bf1 commit fd4b6988068d30400562f04ebe58f30d11399bf1 Author: VMiklos Date: Sat Sep 15 00:13:05 2007 +0200 gnash-0.8.1-1-i686 version bump diff --git a/source/xlib-extra/gnash/FrugalBuild b/source/xlib-extra/gnash/FrugalBuild index dacccc9..f5361bc 100644 --- a/source/xlib-extra/gnash/FrugalBuild +++ b/source/xlib-extra/gnash/FrugalBuild @@ -1,28 +1,36 @@ -# Last Modified: Sun, 07 May 2006 22:03:37 +0200 # Compiling Time: 2.19 SBU # Maintainer: VMiklos pkgname=gnash -pkgver=0.7.1 +pkgver=0.8.1 pkgrel=1 pkgdesc="A GNU Flash movie player." url="http://www.gnu.org/software/gnash/" -depends=('sdl_mixer' 'cairo' 'libjpeg' 'libxml2' 'libmad') +depends=('libmad' 'curl' 'libtool' 'boost' 'gtk+2' 'agg') +#depends=('sdl_mixer' 'cairo' 'libjpeg' 'libxml2' 'libmad' 'boost' 'agg' 'curl' 'kdelibs' 'xulrunner' 'gtkglext') groups=('xlib-extra') archs=('i686') up2date="lynx -dump http://ftp.gnu.org/pub/gnu/gnash/|grep [0-9]/$|sed -n 's|.*/\(.*\)/$|\1|;$ p'" source=(http://ftp.gnu.org/pub/gnu/gnash/$pkgver/gnash-$pkgver.tar.bz2) -# currently broken # test page: http://www.4kids.org/funstuff/music/ +subpkgs=('gnash-nsplugin' 'gnash-kde') +subdescs=('Totem plugin for Firefox' 'Totem plugin for Konqueror') +subdepends=("firefox libxi libstdc++ $pkgname=$pkgver" "libxi libstdc++ kdelibs libgl libxmu libxdamage $pkgname=$pkgver") +subgroups=('xlib-extra' 'kde-extra') +subarchs=('i686' 'i686') + + build() { - #Fcd $pkgname - #./autogen.sh || return 1 - Fmake --enable-mp3 --enable-plugin --enable-klash --with-plugindir=/usr/lib/mozilla/plugins - Fmakeinstall + Fbuild --enable-mp3 --enable-plugin --enable-klash \ + --with-plugindir=/usr/lib/mozilla/plugins + + Fsplit gnash-nsplugin usr/lib/mozilla + Fsplit gnash-kde usr/bin/kde-gnash usr/lib/kde3 usr/share/apps/klash \ + usr/share/services } # optimization OK -sha1sums=('df52437321c976be132dd85b64d32d6b9a975bdb') +sha1sums=('d83280752d0cdf5c4bbeab1c2e8af3dd0113297f') From krics at linuxforum.hu Sat Sep 15 00:59:52 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sat Sep 15 00:59:55 2007 Subject: [Frugalware-git] frugalware-current: ntfs-3g-1.913-1-x86_64 Message-ID: <20070914225952.40BFB1678011@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=241eb3416d85407907e9b60e7ff74a5f6a119324 commit 241eb3416d85407907e9b60e7ff74a5f6a119324 Author: Christian Hamar alias krix Date: Sat Sep 15 00:59:12 2007 +0200 ntfs-3g-1.913-1-x86_64 * Version bump diff --git a/source/apps-extra/ntfs-3g/FrugalBuild b/source/apps-extra/ntfs-3g/FrugalBuild index 7f5717d..9360eed 100644 --- a/source/apps-extra/ntfs-3g/FrugalBuild +++ b/source/apps-extra/ntfs-3g/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: Christian Hamar alias krix pkgname=ntfs-3g -pkgver=1.826 +pkgver=1.913 pkgrel=1 pkgdesc="Third generation Linux NTFS driver with full read-write access." url="http://www.ntfs-3g.org/" @@ -13,5 +13,5 @@ up2date="lynx -dump $url| grep -m 1 'ntfs-3g-[[:digit:]]\+\.[[:digit:]]\+\.tgz' source=($url/$pkgname-$pkgver.tgz) Fconfopts="$Fconfopts --disable-ldconfig" -sha1sums=('95b6589c05393d6bb1148a4c2318c9944bee8056') +sha1sums=('b5b386cf48c3715c5c979580f2ed4ba97a43864e') # optimization OK From krics at linuxforum.hu Sat Sep 15 01:04:50 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sat Sep 15 01:04:52 2007 Subject: [Frugalware-git] frugalware-current: dpkg-1.14.6-1-x86_64 Message-ID: <20070914230450.5182D1678014@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=d82ed7879b23375a2ab1a1fa177235e82d46069c commit d82ed7879b23375a2ab1a1fa177235e82d46069c Author: Christian Hamar alias krix Date: Sat Sep 15 01:04:10 2007 +0200 dpkg-1.14.6-1-x86_64 * Version bump diff --git a/source/apps-extra/dpkg/FrugalBuild b/source/apps-extra/dpkg/FrugalBuild index be9b177..49c19a2 100644 --- a/source/apps-extra/dpkg/FrugalBuild +++ b/source/apps-extra/dpkg/FrugalBuild @@ -3,7 +3,7 @@ # Old Maintainer: Bence Nagy pkgname=dpkg -pkgver=1.14.5 +pkgver=1.14.6 pkgrel=1 pkgdesc="Package maintenance system for Debian" url="http://www.debian.org" @@ -25,4 +25,4 @@ build() { } # optimization OK -sha1sums=('751b684c971d32db13f0ec6a73b82ab22e5365f9') +sha1sums=('1075961a5e70759646b810d0efde878081f98906') From krics at linuxforum.hu Sat Sep 15 01:22:08 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sat Sep 15 01:22:11 2007 Subject: [Frugalware-git] frugalware-current: pidgin-2.2.0-1-x86_64 Message-ID: <20070914232208.EF2A7167800C@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=d7fd96a5be19758d11e4f3218ce0da0c3643325b commit d7fd96a5be19758d11e4f3218ce0da0c3643325b Author: Christian Hamar alias krix Date: Sat Sep 15 01:18:45 2007 +0200 pidgin-2.2.0-1-x86_64 * Version bump diff --git a/source/xapps/pidgin/FrugalBuild b/source/xapps/pidgin/FrugalBuild index 1ae7dfa..025f94f 100644 --- a/source/xapps/pidgin/FrugalBuild +++ b/source/xapps/pidgin/FrugalBuild @@ -3,8 +3,8 @@ # Contributor: voroskoi pkgname=pidgin -pkgver=2.1.1 -pkgrel=2 +pkgver=2.2.0 +pkgrel=1 pkgdesc="A multi-protocol instant messaging (IM) client" url="http://www.pidgin.im/" depends=('gtk+2' 'libao' 'audiofile' 'gtkspell' 'nss' 'startup-notification' \ @@ -19,7 +19,7 @@ _F_sourceforge_ext=".tar.bz2" _F_sourceforge_broken_up2date=1 Finclude sourceforge source=(${source[@]} perl-fix.patch) -sha1sums=('da6b7dda67b14aa1837ca48895eedcee215f0818' \ +sha1sums=('b6762d5d7865587bfe0d87f95285d60cd8c667a1' \ 'c3facfbc8ec54b6b5a4f83a827cd766658fd9777') build() { From krics at linuxforum.hu Sat Sep 15 01:26:16 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sat Sep 15 01:26:17 2007 Subject: [Frugalware-git] frugalware-current: libarchive-2.2.8-1-x86_64 Message-ID: <20070914232616.3CD2D167800C@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=f242862a0318a535f96236e7b7d650f9ecf5b007 commit f242862a0318a535f96236e7b7d650f9ecf5b007 Author: Christian Hamar alias krix Date: Sat Sep 15 01:25:58 2007 +0200 libarchive-2.2.8-1-x86_64 * Version bump diff --git a/source/base/libarchive/FrugalBuild b/source/base/libarchive/FrugalBuild index 634120e..53ff146 100644 --- a/source/base/libarchive/FrugalBuild +++ b/source/base/libarchive/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: Christian Hamar alias krix pkgname=libarchive -pkgver=2.2.7 +pkgver=2.2.8 pkgrel=1 pkgdesc="Library to create and read several different archive formats" groups=('base' 'chroot-core') @@ -11,5 +11,5 @@ url="http://people.freebsd.org/~kientzle/libarchive/" depends=('bzip2' 'zlib') up2date="lynx -dump $url |Flasttar" source=($url/src/$pkgname-$pkgver.tar.gz) -sha1sums=('d43edd5694177c0611982ff79a28b36774518e1b') +sha1sums=('49decd6a15152a0f666de10c947afee1a52566af') # optimization OK From krics at linuxforum.hu Sat Sep 15 01:29:24 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sat Sep 15 01:29:27 2007 Subject: [Frugalware-git] frugalware-current: xfsprogs-attr-2.4.39_1-1-x86_64 Message-ID: <20070914232924.A393E167800C@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=3c13002b83d144e0756ad7cc5d12b934bd813cb6 commit 3c13002b83d144e0756ad7cc5d12b934bd813cb6 Author: Christian Hamar alias krix Date: Sat Sep 15 01:29:12 2007 +0200 xfsprogs-attr-2.4.39_1-1-x86_64 * Version bump diff --git a/source/base/xfsprogs-attr/FrugalBuild b/source/base/xfsprogs-attr/FrugalBuild index 4dc0e7b..19e2319 100644 --- a/source/base/xfsprogs-attr/FrugalBuild +++ b/source/base/xfsprogs-attr/FrugalBuild @@ -3,7 +3,7 @@ # Old Maintainer: VMiklos pkgname=xfsprogs-attr -pkgver=2.4.38_1 +pkgver=2.4.39_1 pkgrel=1 pkgdesc="Dynamic library for extended attribute support." url="http://oss.sgi.com/projects/xfs/" @@ -12,10 +12,10 @@ groups=('base') archs=('i686' 'x86_64' 'ppc') up2date="lynx -dump ftp://oss.sgi.com/projects/xfs/cmd_tars/|grep -m1 'attr_'|sed 's/.*_\(.*\).t.*/\1/' | sed 's/-/_/'" source=(ftp://oss.sgi.com/projects/xfs/cmd_tars/attr_`echo ${pkgver} | sed -e 's/_/-/'`.tar.gz) -sha1sums=('64bb56dd8b761f8fdeb226ad2a739b45c4c0f0b4') +sha1sums=('d7b04e7a9b280862c2897432091b2da2efe8fa7a') build() { - Fcd attr-2.4.38 + Fcd attr-2.4.39 Fmake --libdir=/lib --libexecdir=/usr/lib make DIST_ROOT=$Fdestdir install-dev install-lib install || Fdie } From krics at linuxforum.hu Sat Sep 15 01:32:21 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sat Sep 15 01:32:22 2007 Subject: [Frugalware-git] frugalware-current: xfsprogs-acl-2.2.45_1-1-x86_64 Message-ID: <20070914233221.70255167800C@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=eccd140736d2ae1d8837ca938c277fb3bb49db11 commit eccd140736d2ae1d8837ca938c277fb3bb49db11 Author: Christian Hamar alias krix Date: Sat Sep 15 01:32:10 2007 +0200 xfsprogs-acl-2.2.45_1-1-x86_64 * Version bump diff --git a/source/base/xfsprogs-acl/FrugalBuild b/source/base/xfsprogs-acl/FrugalBuild index 9273ccb..7438b7e 100644 --- a/source/base/xfsprogs-acl/FrugalBuild +++ b/source/base/xfsprogs-acl/FrugalBuild @@ -3,17 +3,17 @@ # Contributor: VMiklos pkgname=xfsprogs-acl -pkgver=2.2.44_1 +pkgver=2.2.45_1 pkgrel=1 pkgdesc="Dynamic library for access control list support." url="http://oss.sgi.com/projects/xfs/" -depends=('xfsprogs-attr>=2.4.38_1') +depends=('xfsprogs-attr>=2.4.39_1') groups=('base') archs=('i686' 'x86_64' 'ppc') up2date="lynx -dump ftp://oss.sgi.com/projects/xfs/cmd_tars/|grep -m1 'acl_'|sed 's/.*_\(.*\).t.*/\1/' | sed 's/-/_/'" source=(ftp://oss.sgi.com/projects/xfs/cmd_tars/acl_`echo ${pkgver} | sed -e 's/_/-/g'`.tar.gz \ acl-2.2.32-only-symlink-when-needed.patch0) -sha1sums=('a981fb573ac3eea13f25f5d6e485a9e188877433'\ +sha1sums=('264fae8dce2d19a11d50df9d1adbae301a442f1c' \ '79fefd16a84e51797165fc8438382382156a149b') build() @@ -21,7 +21,7 @@ build() ## see doc/INSTALL export OPTIMIZER="$CFLAGS" export DEBUG="-DNDEBUG" - Fcd acl-2.2.44 + Fcd acl-2.2.45 Fpatchall autoconf || return 1 Fconf --enable-lib64=no --libexecdir=/usr/libexec --bindir=/bin || return 1 From krics at linuxforum.hu Sat Sep 15 01:46:44 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sat Sep 15 01:46:45 2007 Subject: [Frugalware-git] frugalware-current: xfsprogs-2.9.4_1-1-x86_64 Message-ID: <20070914234644.E0736167800C@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=5dc18248d27c75228404974b869637d22731b73a commit 5dc18248d27c75228404974b869637d22731b73a Author: Christian Hamar alias krix Date: Sat Sep 15 01:46:08 2007 +0200 xfsprogs-2.9.4_1-1-x86_64 * Version bump diff --git a/source/base/xfsprogs/FrugalBuild b/source/base/xfsprogs/FrugalBuild index 6f1af22..1da84d0 100644 --- a/source/base/xfsprogs/FrugalBuild +++ b/source/base/xfsprogs/FrugalBuild @@ -3,24 +3,24 @@ # Old Maintainer: VMiklos pkgname=xfsprogs -pkgver=2.8.20_1 +pkgver=2.9.4_1 pkgrel=1 pkgdesc="XFS filesystem-specific static libraries and headers." url="http://oss.sgi.com/projects/xfs/" depends=('e2fsprogs') -makedepends=('xfsprogs-attr>=2.4.38_1') +makedepends=('xfsprogs-attr>=2.4.39_1') groups=('base') archs=('i686' 'x86_64' 'ppc') replaces=('xfsprogs-base') up2date="lynx -dump ftp://oss.sgi.com/projects/xfs/cmd_tars/|grep -m1 'xfsprogs_'|sed 's/.*_\(.*\).t.*/\1/' | sed 's/-/_/'" source=(ftp://oss.sgi.com/projects/xfs/cmd_tars/${pkgname}_`echo ${pkgver} | sed -e 's/_/-/g'`.tar.gz \ xfsprogs-sharedlibs.patch.gz) -sha1sums=('1b6a6bfa749127d22e9516b8a88d4264e9a7398e' \ +sha1sums=('ee97510e8167edf1e5212da34028c77d911a7695' \ 'd0db69f8de7a769272ae6584b5438a323628ab67') build() { unset MAKEFLAGS - Fcd $pkgname-2.8.20 + Fcd $pkgname-2.9.4 Fpatchall DEBUG="-DNDEBUG" OPTIMIZER="${CFLAGS}" From krics at linuxforum.hu Sat Sep 15 01:50:55 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sat Sep 15 01:50:57 2007 Subject: [Frugalware-git] frugalware-current: xfsprogs-xfsdump-2.2.46_1-1-x86_64 Message-ID: <20070914235055.514B3167800C@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=dae5ee6e2dbdcfb6bcce6c59c6849611a3e45d8a commit dae5ee6e2dbdcfb6bcce6c59c6849611a3e45d8a Author: Christian Hamar alias krix Date: Sat Sep 15 01:50:18 2007 +0200 xfsprogs-xfsdump-2.2.46_1-1-x86_64 * Version bump diff --git a/source/base/xfsprogs-xfsdump/FrugalBuild b/source/base/xfsprogs-xfsdump/FrugalBuild index 905ef77..6fcebf3 100644 --- a/source/base/xfsprogs-xfsdump/FrugalBuild +++ b/source/base/xfsprogs-xfsdump/FrugalBuild @@ -3,23 +3,23 @@ # Contributor: VMiklos pkgname=xfsprogs-xfsdump -pkgver=2.2.45_1 +pkgver=2.2.46_1 pkgrel=1 pkgdesc="Administrative utilities for the XFS filesystem." url="http://oss.sgi.com/projects/xfs/" -depends=('xfsprogs-dmapi>=2.2.8_1-2' 'xfsprogs-attr>=2.4.38_1' 'ncurses') +depends=('xfsprogs-dmapi>=2.2.8_1-2' 'xfsprogs-attr>=2.4.39_1' 'ncurses') groups=('base') archs=('i686' 'x86_64' 'ppc') up2date="lynx -dump ftp://oss.sgi.com/projects/xfs/cmd_tars/|grep -m1 'xfsdump_'|sed 's/.*_\(.*\).t.*/\1/' | sed 's/-/_/'" source=(ftp://oss.sgi.com/projects/xfs/cmd_tars/xfsdump_`echo ${pkgver} | sed -e 's/_/-/g'`.tar.gz) -sha1sums=('f8a4d039b43174169e14368e5d10d1840541f8ee') +sha1sums=('98feca5b681a66db5dbd561b0eddefd269b70a35') build() { ## see doc/INSTALL export OPTIMIZER="$CFLAGS" export DEBUG="-DNDEBUG" - Fcd xfsdump-2.2.45 + Fcd xfsdump-2.2.46 autoconf || return 1 Fconf --enable-lib64=no --libexecdir=/usr/libexec Fmake From krics at linuxforum.hu Sat Sep 15 01:56:50 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sat Sep 15 01:56:52 2007 Subject: [Frugalware-git] frugalware-current: mldonkey-2.9.1-1-x86_64 Message-ID: <20070914235650.A5587167800C@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=2a9ca4d1232cf614d90d312535bb44f0c0a017a7 commit 2a9ca4d1232cf614d90d312535bb44f0c0a017a7 Author: Christian Hamar alias krix Date: Sat Sep 15 01:56:07 2007 +0200 mldonkey-2.9.1-1-x86_64 * Version bump diff --git a/source/gnome-extra/mldonkey/FrugalBuild b/source/gnome-extra/mldonkey/FrugalBuild index 2863b60..c162eb7 100644 --- a/source/gnome-extra/mldonkey/FrugalBuild +++ b/source/gnome-extra/mldonkey/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: Christian Hamar alias krix pkgname=mldonkey -pkgver=2.9.0 +pkgver=2.9.1 pkgrel=1 pkgdesc="mldonkey is a new client to access the eDonkey network. It is written in Objective-Caml, and comes with its own GTK GUI, an HTTP interface and a telnet interface." _F_sourceforge_ext=".tar.bz2" @@ -27,5 +27,5 @@ build() { Fmakeinstall } -sha1sums=('7cde099f99dc23ea284bc6661a1d83be92ac170b') +sha1sums=('f4e8710b68368410739dc373814da585b293c5ff') # optimization OK From priyank at frugalware.org Sat Sep 15 09:13:16 2007 From: priyank at frugalware.org (Priyank) Date: Sat Sep 15 09:13:18 2007 Subject: [Frugalware-git] frugalware-current: awesfx-0.5.1c-1-i686 Message-ID: <20070915071316.A67891678012@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=a19c32585ba91d8bfcd911124c4b24bd8dbf750a commit a19c32585ba91d8bfcd911124c4b24bd8dbf750a Author: Priyank Date: Sat Sep 15 12:39:56 2007 +0530 awesfx-0.5.1c-1-i686 * Version bump diff --git a/source/apps-extra/awesfx/FrugalBuild b/source/apps-extra/awesfx/FrugalBuild index 8400c6c..a06d5f2 100644 --- a/source/apps-extra/awesfx/FrugalBuild +++ b/source/apps-extra/awesfx/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: Priyank Gosalia pkgname=awesfx -pkgver=0.5.0d +pkgver=0.5.1c pkgrel=1 pkgdesc="AWESFX is the package of various utility programs for controlling AWE32 driver" url="http://ftp.suse.com/pub/people/tiwai/awesfx/" @@ -11,6 +11,6 @@ groups=('apps-extra') archs=('i686' 'x86_64') up2date="lynx -dump http://ftp.suse.com/pub/people/tiwai/awesfx/|Flasttarbz2" source=(http://ftp.suse.com/pub/people/tiwai/$pkgname/$pkgname-$pkgver.tar.bz2) -sha1sums=('869d4d339bffe1fe774d13fc985d1ac65c91fa74') +sha1sums=('6d44ce7b0a7981645de3bc4f7ec44c6eae4e310f') # optimization OK From voroskoi at frugalware.org Sat Sep 15 10:30:25 2007 From: voroskoi at frugalware.org (voroskoi) Date: Sat Sep 15 10:30:33 2007 Subject: [Frugalware-git] frugalware-current: gmp-4.2.2-1-i686 Message-ID: <20070915083025.6E0BF1678012@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=1f691f994e1c8f0973c533912abacc50583a2bf7 commit 1f691f994e1c8f0973c533912abacc50583a2bf7 Author: voroskoi Date: Sat Sep 15 10:22:50 2007 +0200 gmp-4.2.2-1-i686 version bump using Finclude texinfo sha1->signatures diff --git a/source/lib/gmp/FrugalBuild b/source/lib/gmp/FrugalBuild index b101d9d..61081ba 100644 --- a/source/lib/gmp/FrugalBuild +++ b/source/lib/gmp/FrugalBuild @@ -3,7 +3,7 @@ # Contributor: VMiklos pkgname=gmp -pkgver=4.2.1 +pkgver=4.2.2 pkgrel=1 pkgdesc="GNU multiple precision arithmetic library" url="http://swox.com/gmp/" @@ -13,8 +13,8 @@ depends=('libstdc++') Fup2gnubz2 groups=('lib') source=(ftp://ftp.gnu.org/pub/gnu/$pkgname/$pkgname-$pkgver.tar.bz2) -sha1sums=('00a97f0ec1eb1d9429ab5c64be6889e8a497425e') -install=$pkgname.install +Finclude texinfo +signatures=($source.sig) build() { diff --git a/source/lib/gmp/gmp.install b/source/lib/gmp/gmp.install deleted file mode 100644 index bfe624e..0000000 --- a/source/lib/gmp/gmp.install +++ /dev/null @@ -1,18 +0,0 @@ -post_install() { - echo -n "generating the top-level Info node... " - mkinfodir /usr/info > /usr/info/dir 2> /dev/null - echo "done." -} - -post_upgrade() { - post_install -} - -post_remove() { - post_install -} - -op=$1 -shift - -$op $* From voroskoi at frugalware.org Sat Sep 15 10:49:24 2007 From: voroskoi at frugalware.org (voroskoi) Date: Sat Sep 15 10:49:28 2007 Subject: [Frugalware-git] frugalware-current: slang-2.1.2-1-i686 Message-ID: <20070915084925.0B6261678012@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=bbdb368f754fd186abb0b5af25eadeb296e7b879 commit bbdb368f754fd186abb0b5af25eadeb296e7b879 Author: voroskoi Date: Sat Sep 15 10:41:20 2007 +0200 slang-2.1.2-1-i686 version bump diff --git a/source/lib/slang/FrugalBuild b/source/lib/slang/FrugalBuild index dafa991..b5111f0 100644 --- a/source/lib/slang/FrugalBuild +++ b/source/lib/slang/FrugalBuild @@ -3,7 +3,7 @@ # Maintainer: voroskoi pkgname=slang -pkgver=2.1.1 +pkgver=2.1.2 pkgrel=1 pkgdesc="S-Lang is a powerful interpreted language" url="http://www.jedsoft.org/slang/" From voroskoi at frugalware.org Sat Sep 15 11:13:43 2007 From: voroskoi at frugalware.org (voroskoi) Date: Sat Sep 15 11:13:46 2007 Subject: [Frugalware-git] frugalware-current: icu-3.8-1-i686 Message-ID: <20070915091343.5DA031678012@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=f3f3d404635ab1608e8574344395446b34bfb703 commit f3f3d404635ab1608e8574344395446b34bfb703 Author: voroskoi Date: Sat Sep 15 10:59:39 2007 +0200 icu-3.8-1-i686 version bump diff --git a/source/lib/icu/FrugalBuild b/source/lib/icu/FrugalBuild index 72b1b3b..5f4c8f0 100644 --- a/source/lib/icu/FrugalBuild +++ b/source/lib/icu/FrugalBuild @@ -3,7 +3,7 @@ # Maintainer: voroskoi pkgname=icu -pkgver=3.6 +pkgver=3.8 pkgrel=1 pkgdesc="International Components for Unicode library" groups=('lib') @@ -12,7 +12,7 @@ license="ICU License" depends=('libstdc++' 'bash') Finclude sourceforge source=(http://dl.sourceforge.net/sourceforge/icu/icu4c-`echo $pkgver|sed 's/\./_/'`-src.tgz) -sha1sums=('b580c2802e74eb6af7e5e19b05c7d7c5d8c623f9') +sha1sums=('4370becc68eab7a01292db62e1649239b1732a5b') _F_cd_path=$pkgname/source # optimization OK From voroskoi at frugalware.org Sat Sep 15 12:25:11 2007 From: voroskoi at frugalware.org (voroskoi) Date: Sat Sep 15 12:25:13 2007 Subject: [Frugalware-git] frugalware-current: samba-3.0.26-1-i686 Message-ID: <20070915102511.DC7211678012@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=dec99cc69fecd0c75784fd8123e789b21f52748b commit dec99cc69fecd0c75784fd8123e789b21f52748b Author: voroskoi Date: Sat Sep 15 11:48:22 2007 +0200 samba-3.0.26-1-i686 version bump closes #2413 in -current diff --git a/source/network/samba/FrugalBuild b/source/network/samba/FrugalBuild index 083547e..2653a8e 100644 --- a/source/network/samba/FrugalBuild +++ b/source/network/samba/FrugalBuild @@ -3,9 +3,9 @@ # Contributor: VMiklos pkgname=samba -pkgver=3.0.25 -pkgextraver=c -pkgrel=5 +pkgver=3.0.26 +pkgextraver=a +pkgrel=1 pkgdesc="SMB file and print server." url="http://www.samba.org" backup=(etc/logrotate.d/samba) @@ -86,7 +86,7 @@ build() Fsplit samba-swat usr/sbin/swat Fsplit samba-swat usr/share/swat } -sha1sums=('a96eb2633dfa6c6139cfa211dba553c8afc1d505' \ +sha1sums=('1625ac3f1c2a57600a9141a2b4bbe59fe8c4d6d2' \ '13fd371189bfe637f3f13c62d44d9e761268119e' \ '0e407642fe6aa0c032df38aac3815eb08f07e35b') From vmiklos at frugalware.org Sat Sep 15 13:30:15 2007 From: vmiklos at frugalware.org (VMiklos) Date: Sat Sep 15 13:30:17 2007 Subject: [Frugalware-git] xorg73: xf86-video-intel-2.1.1-1-i686 Message-ID: <20070915113015.28BB61678012@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=52dcbec6234be1d0313af96ea172f5867a9b2653 commit 52dcbec6234be1d0313af96ea172f5867a9b2653 Author: VMiklos Date: Sat Sep 15 13:30:09 2007 +0200 xf86-video-intel-2.1.1-1-i686 fix groups() diff --git a/source/x11/xf86-video-intel/FrugalBuild b/source/x11/xf86-video-intel/FrugalBuild index 918636e..25a4fb1 100644 --- a/source/x11/xf86-video-intel/FrugalBuild +++ b/source/x11/xf86-video-intel/FrugalBuild @@ -5,7 +5,7 @@ pkgname=xf86-video-intel pkgver=2.1.1 pkgrel=1 pkgdesc="X.Org driver for Intel cards (opensource)" -groups=('x11-extra' 'xorg-core' 'xorg-drivers') +groups=('x11' 'xorg-core' 'xorg-drivers') archs=('i686' 'x86_64') depends=('xorg-server>=1.4' 'libxvmc' 'libpciaccess') makedepends=('randrproto' 'renderproto' 'videoproto' 'xf86driproto' \ From vmiklos at frugalware.org Sat Sep 15 14:54:44 2007 From: vmiklos at frugalware.org (VMiklos) Date: Sat Sep 15 14:54:47 2007 Subject: [Frugalware-git] xorg73: xf86-input-mouse-1.2.2-2-i686 Message-ID: <20070915125444.E391A1678012@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=8736f1ef39bc2239d9ad6e7283f90a36ef312a34 commit 8736f1ef39bc2239d9ad6e7283f90a36ef312a34 Author: VMiklos Date: Sat Sep 15 14:54:30 2007 +0200 xf86-input-mouse-1.2.2-2-i686 added a scriptlet to fix up xorg.conf diff --git a/source/x11/xf86-input-mouse/FrugalBuild b/source/x11/xf86-input-mouse/FrugalBuild index 28f9182..a3cfffa 100644 --- a/source/x11/xf86-input-mouse/FrugalBuild +++ b/source/x11/xf86-input-mouse/FrugalBuild @@ -3,7 +3,7 @@ pkgname=xf86-input-mouse pkgver=1.2.2 -pkgrel=1 +pkgrel=2 pkgdesc="X.org Mouse input driver" Finclude xorg depends=('xorg-server>=1.4') diff --git a/source/x11/xf86-input-mouse/xf86-input-mouse.install b/source/x11/xf86-input-mouse/xf86-input-mouse.install new file mode 100644 index 0000000..a3c700e --- /dev/null +++ b/source/x11/xf86-input-mouse/xf86-input-mouse.install @@ -0,0 +1,16 @@ +post_upgrade() +{ + if [ -e /etc/X11/xorg.conf ] && grep -q AlwaysCore /etc/X11/xorg.conf; then + echo -n "updating xorg.conf for xorg-7.3..." + cp /etc/X11/xorg.conf /etc/X11/xorg.conf-xorg72 + if sed -i '/Option.*"AlwaysCore"/d' /etc/X11/xorg.conf; then + echo " done." + else + echo " failed." + fi + fi +} + +op=$1 +shift +$op $* From voroskoi at frugalware.org Sat Sep 15 15:03:01 2007 From: voroskoi at frugalware.org (voroskoi) Date: Sat Sep 15 15:03:02 2007 Subject: [Frugalware-git] frugalware-current: cups-1.3.1-1-i686 Message-ID: <20070915130301.2ED63168800C@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=9d87c1b688f2dee5bab15df0d6f769048cdd34d9 commit 9d87c1b688f2dee5bab15df0d6f769048cdd34d9 Author: voroskoi Date: Sat Sep 15 14:47:36 2007 +0200 cups-1.3.1-1-i686 version bump diff --git a/source/apps/cups/FrugalBuild b/source/apps/cups/FrugalBuild index c572145..836acf6 100644 --- a/source/apps/cups/FrugalBuild +++ b/source/apps/cups/FrugalBuild @@ -3,7 +3,7 @@ # Maintainer: voroskoi pkgname=cups -pkgver=1.3.0 +pkgver=1.3.1 pkgrel=1 pkgdesc="The CUPS Printing System" url="http://www.cups.org/" @@ -49,7 +49,7 @@ build() { Fsplit libcups usr/lib/libcups.so* } -sha1sums=('8653040642d81080cb1e40a77198f37fb8f98eeb' \ +sha1sums=('afc3d80f2184a5173839766f36d263677e328f7c' \ 'ad90c43de181d362f6c507f366904472d01ae585' \ 'f19bb889e3535e1284d0b93606da48aa61089c8a' \ '03197abb98eff18d3ede3000a61c7783b8c1ad92') From voroskoi at frugalware.org Sat Sep 15 15:18:21 2007 From: voroskoi at frugalware.org (voroskoi) Date: Sat Sep 15 15:18:24 2007 Subject: [Frugalware-git] frugalware-current: libssh2-0.17-1-i686 Message-ID: <20070915131821.7412E168800F@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=f469d2e2d0b8b6ee0470b8d5152c653918178ee3 commit f469d2e2d0b8b6ee0470b8d5152c653918178ee3 Author: voroskoi Date: Sat Sep 15 15:03:58 2007 +0200 libssh2-0.17-1-i686 new package diff --git a/source/lib/libssh2/FrugalBuild b/source/lib/libssh2/FrugalBuild new file mode 100644 index 0000000..ead9028 --- /dev/null +++ b/source/lib/libssh2/FrugalBuild @@ -0,0 +1,15 @@ +# Compiling Time: 0.01 SBU +# Maintainer: voroskoi + +pkgname=libssh2 +pkgver=0.17 +pkgrel=1 +pkgdesc="libssh2 is a library implementing the SSH2 protocol as defined by Internet Drafts." +url="http://www.libssh2.org/wiki/index.php/Main_Page" +groups=('lib') +archs=('i686' 'x86_64') +depends=('openssl' 'zlib') +Finclude sourceforge +sha1sums=('21ab04c457c9e163b1413d8afeb277f3a9025592') + +# optimization OK From vmiklos at frugalware.org Sat Sep 15 16:02:35 2007 From: vmiklos at frugalware.org (VMiklos) Date: Sat Sep 15 16:02:37 2007 Subject: [Frugalware-git] frugalwareutils: libfwxconfig/print_mouse_options(): remove AlwaysCore, it's incompatible with xorg-7.3 Message-ID: <20070915140235.82BAB168800F@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalwareutils.git;a=commitdiff;h=aa09d4000a2b59282884edeb10f6070649b518f6 commit aa09d4000a2b59282884edeb10f6070649b518f6 Author: VMiklos Date: Sat Sep 15 16:02:15 2007 +0200 libfwxconfig/print_mouse_options(): remove AlwaysCore, it's incompatible with xorg-7.3 diff --git a/libfwxconfig/libfwxconfig.c b/libfwxconfig/libfwxconfig.c index 11de892..93fe550 100644 --- a/libfwxconfig/libfwxconfig.c +++ b/libfwxconfig/libfwxconfig.c @@ -44,7 +44,6 @@ static void print_mouse_options(FILE *fp) { fprintf(fp, "Option \"ZAxisMapping\" \"4 5\"\n" "Option \"Buttons\" \"3\"\n" - "Option \"AlwaysCore\" \"true\"\n"); } static void print_kbd_options(FILE *fp) From priyank at frugalware.org Sat Sep 15 19:22:40 2007 From: priyank at frugalware.org (Priyank) Date: Sat Sep 15 19:22:41 2007 Subject: [Frugalware-git] gfpm: Gfpm now displays the changelog for a package in package details notebook. Message-ID: <20070915172240.29D7113A4052@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gfpm.git;a=commitdiff;h=00273cc34b18a4886334d62a0c6a3164105c3e30 commit 00273cc34b18a4886334d62a0c6a3164105c3e30 Author: Priyank Date: Sat Sep 15 15:24:18 2007 +0530 Gfpm now displays the changelog for a package in package details notebook. diff --git a/data/gfpm.glade b/data/gfpm.glade index 26242ea..28d3835 100644 --- a/data/gfpm.glade +++ b/data/gfpm.glade @@ -451,6 +451,39 @@ False + + + True + True + GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK + GTK_POLICY_AUTOMATIC + GTK_POLICY_AUTOMATIC + + + True + False + False + + + + + 2 + False + + + + + True + GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK + Changelog + + + tab + 2 + False + False + + @@ -502,6 +535,19 @@ 2 + + + True + True + True + GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK + View Changelog + 0 + + + 3 + + diff --git a/src/gfpm-interface.c b/src/gfpm-interface.c index ae2fefc..1ae5b9a 100644 --- a/src/gfpm-interface.c +++ b/src/gfpm-interface.c @@ -65,6 +65,7 @@ static GtkWidget *gfpm_statusbar; static GtkWidget *gfpm_groups_tvw; static GtkWidget *gfpm_info_tvw; static GtkWidget *gfpm_files_txtvw; +static GtkWidget *gfpm_clog_txtvw; static GtkWidget *gfpm_clrall_opt; static GtkWidget *gfpm_clrold_opt; static GtkWidget *gfpm_inst_from_file_dlg; @@ -139,6 +140,7 @@ gfpm_interface_init (void) gfpm_pkgs_tvw = glade_xml_get_widget (xml, "pkgstreeview"); gfpm_info_tvw = glade_xml_get_widget (xml, "infotreeview"); gfpm_files_txtvw= glade_xml_get_widget (xml, "filestextview"); + gfpm_clog_txtvw= glade_xml_get_widget (xml, "changelogtextview"); gfpm_clrold_opt = glade_xml_get_widget (xml, "rem_old_opt"); gfpm_clrall_opt = glade_xml_get_widget (xml, "rem_all_opt"); gfpm_inst_from_file_dlg = glade_xml_get_widget (xml, "inst_from_file_dlg"); @@ -912,6 +914,54 @@ gfpm_load_files_txtvw (const char *pkg_name, gboolean inst) return; } +void +gfpm_load_changelog_txtvw (const char *pkg_name, gboolean inst) +{ + GtkTextBuffer *buffer; + GtkTextIter iter; + + buffer = gtk_text_view_get_buffer (GTK_TEXT_VIEW(gfpm_clog_txtvw)); + gtk_text_buffer_set_text (buffer, "", 0); + gtk_text_buffer_get_iter_at_offset (buffer, &iter, 0); + + if (inst == TRUE) + { + PM_PKG *pkg = NULL; + gchar *dbpath = NULL; + gchar logpath[PATH_MAX]; + FILE *fp = NULL; + gchar line[PATH_MAX+1]; + pkg = pacman_db_readpkg (local_db, (char*)pkg_name); + pacman_get_option (PM_OPT_DBPATH, (long*) &dbpath); + snprintf (logpath, PATH_MAX, "/%s/%s/%s-%s/changelog", + dbpath, + (char*)pacman_db_getinfo (local_db, PM_DB_TREENAME), + (char*)pacman_pkg_getinfo (pkg, PM_PKG_NAME), + (char*)pacman_pkg_getinfo (pkg, PM_PKG_VERSION)); + pacman_pkg_free (pkg); + if ((fp = fopen(logpath, "r")) == NULL) + { + gtk_text_buffer_insert (buffer, &iter, _("No changelog available for this package"), -1); + } + else + { + while (!feof(fp)) + { + fgets (line, PATH_MAX, fp); + gtk_text_buffer_insert (buffer, &iter, line, -1); + line[0] = 0; + } + fclose (fp); + } + } + else + { + gtk_text_buffer_insert (buffer, &iter, _("Package is not installed"), -1); + } + + return; +} + static gint gfpm_trans_prepare (PM_LIST *list) { @@ -1138,6 +1188,7 @@ cb_gfpm_pkgs_tvw_selected (GtkTreeSelection *selection, gpointer data) if (v1 != NULL) inst = TRUE; gfpm_load_files_txtvw (pkgname, inst); + gfpm_load_changelog_txtvw (pkgname, inst); if (v1!=NULL && v2!=NULL) { gint ret = pacman_pkg_vercmp (v1, v2); diff --git a/src/gfpm-interface.h b/src/gfpm-interface.h index 873fc1f..5b9cf02 100644 --- a/src/gfpm-interface.h +++ b/src/gfpm-interface.h @@ -15,6 +15,7 @@ void gfpm_load_groups_tvw (const char *); void gfpm_load_pkgs_tvw (const char *); void gfpm_load_info_tvw (const char *); void gfpm_load_files_txtvw (const char *, gboolean); +void gfpm_load_changelog_txtvw (const char *, gboolean); void gfpm_interface_init (void); void cb_gfpm_apply_btn_clicked (GtkButton *, gpointer); From priyank at frugalware.org Sat Sep 15 19:22:40 2007 From: priyank at frugalware.org (Priyank) Date: Sat Sep 15 19:22:44 2007 Subject: [Frugalware-git] gfpm: gfpm.glade: removed the view changelog button (added by mistake) Message-ID: <20070915172240.8B5D41678013@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gfpm.git;a=commitdiff;h=ca0db24c363337b9d15f3e65ed83b2af88b24153 commit ca0db24c363337b9d15f3e65ed83b2af88b24153 Author: Priyank Date: Sat Sep 15 15:30:55 2007 +0530 gfpm.glade: removed the view changelog button (added by mistake) diff --git a/data/gfpm.glade b/data/gfpm.glade index 28d3835..ea194af 100644 --- a/data/gfpm.glade +++ b/data/gfpm.glade @@ -535,19 +535,6 @@ 2 - - - True - True - True - GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - View Changelog - 0 - - - 3 - - From priyank at frugalware.org Sat Sep 15 20:49:19 2007 From: priyank at frugalware.org (Priyank) Date: Sat Sep 15 20:49:22 2007 Subject: [Frugalware-git] frugalware-current: guichan-0.6.1-1-i686 Message-ID: <20070915184919.897C316A8010@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=10fe45a2186f7cf5284d4b59a9869f7e743e4dff commit 10fe45a2186f7cf5284d4b59a9869f7e743e4dff Author: Priyank Date: Sun Sep 16 00:13:57 2007 +0530 guichan-0.6.1-1-i686 * New package / closes #2355 diff --git a/source/lib-extra/guichan/FrugalBuild b/source/lib-extra/guichan/FrugalBuild new file mode 100644 index 0000000..f39bb54 --- /dev/null +++ b/source/lib-extra/guichan/FrugalBuild @@ -0,0 +1,17 @@ +# Compiling Time: 0.22 SBU +# Maintainer: Priyank Gosalia +# Contributor: devil505 + +pkgname=guichan +pkgver=0.6.1 +pkgrel=1 +pkgdesc="Guichan is a portable C++ GUI library designed for games using Allegro, SDL and/or OpenGL." +depends=('libstdc++') +makedepends=('sdlimage' 'libgl' 'freeglut' 'allegro') +groups=('lib-extra') +archs=('i686') +_F_sourceforge_broken_up2date=1 +Finclude sourceforge +sha1sums=('1ecb3e999dfa41ab2541537f03b61f24ead6406e') + +# optimization OK From crazy at frugalware.org Sat Sep 15 23:15:40 2007 From: crazy at frugalware.org (crazy) Date: Sat Sep 15 23:15:43 2007 Subject: [Frugalware-git] frugalware-current: dillo-0.8.6-1-i686 Message-ID: <20070915211540.6A3C013A4052@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=1cd00e917f218fe69cb58dfa364c368db067566a commit 1cd00e917f218fe69cb58dfa364c368db067566a Author: crazy Date: Sat Sep 15 23:11:11 2007 +0200 dillo-0.8.6-1-i686 * fix for m8r .. find out while debugging chkworld diff --git a/source/xapps-extra/dillo/FrugalBuild b/source/xapps-extra/dillo/FrugalBuild index 5153b66..602fe4d 100644 --- a/source/xapps-extra/dillo/FrugalBuild +++ b/source/xapps-extra/dillo/FrugalBuild @@ -1,5 +1,5 @@ # Compiling Time: 0.05 SBU -# Maintainer: pete (pete [at] teamlupus.hu) +# Maintainer: pete pkgname=dillo pkgver=0.8.6 From crazy at frugalware.org Sat Sep 15 23:20:39 2007 From: crazy at frugalware.org (crazy) Date: Sat Sep 15 23:20:40 2007 Subject: [Frugalware-git] frugalware-current: scew-0.4.0-1-i686 Message-ID: <20070915212039.308EB13A4052@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=6568e08f7fee9a6b8e8179be42cc8474d6b3c48a commit 6568e08f7fee9a6b8e8179be42cc8474d6b3c48a Author: crazy Date: Sat Sep 15 23:17:10 2007 +0200 scew-0.4.0-1-i686 * fix m8r , missing email diff --git a/source/lib-extra/scew/FrugalBuild b/source/lib-extra/scew/FrugalBuild index 5950a62..d7506db 100644 --- a/source/lib-extra/scew/FrugalBuild +++ b/source/lib-extra/scew/FrugalBuild @@ -1,5 +1,5 @@ # Compiling Time: 0.04 SBU -# Maintainer: Christian Hamar alias krix +# Maintainer: Christian Hamar alias krix pkgname=scew pkgver=0.4.0 From crazy at frugalware.org Sat Sep 15 23:23:25 2007 From: crazy at frugalware.org (crazy) Date: Sat Sep 15 23:23:27 2007 Subject: [Frugalware-git] frugalware-current: wmnd-0.4.12-1-i686 Message-ID: <20070915212325.EB5A413A4052@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=7d1c8fcb7ca97618bb3eeb1c14526b247d97a5ed commit 7d1c8fcb7ca97618bb3eeb1c14526b247d97a5ed Author: crazy Date: Sat Sep 15 23:19:57 2007 +0200 wmnd-0.4.12-1-i686 * fix m8r , broken email diff --git a/source/x11-extra/wmnd/FrugalBuild b/source/x11-extra/wmnd/FrugalBuild index f9dc9c7..bbce6e9 100644 --- a/source/x11-extra/wmnd/FrugalBuild +++ b/source/x11-extra/wmnd/FrugalBuild @@ -1,5 +1,5 @@ # Compiling Time: 0.03 SBU -# Maintainer: pete (pete [at] teamlupus.hu) +# Maintainer: pete pkgname=wmnd pkgver=0.4.12 @@ -19,6 +19,4 @@ build () Fbuild } -# optimalization OK - # optimization OK From crazy at frugalware.org Sat Sep 15 23:29:51 2007 From: crazy at frugalware.org (crazy) Date: Sat Sep 15 23:29:52 2007 Subject: [Frugalware-git] frugalware-current: ncmpc-0.11.1-1-i686 Message-ID: <20070915212951.48E7313A4052@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=de5ceac8d77493616ec081864e401572b4c39358 commit de5ceac8d77493616ec081864e401572b4c39358 Author: crazy Date: Sat Sep 15 23:26:23 2007 +0200 ncmpc-0.11.1-1-i686 * fix m8 , missing email ( added a fake one for now ) diff --git a/source/multimedia-extra/ncmpc/FrugalBuild b/source/multimedia-extra/ncmpc/FrugalBuild index 67cd2b2..49c5596 100644 --- a/source/multimedia-extra/ncmpc/FrugalBuild +++ b/source/multimedia-extra/ncmpc/FrugalBuild @@ -1,5 +1,5 @@ # Compiling time: 0.01 SBU -# Maintainer: Sector +# Maintainer: Sector pkgname=ncmpc pkgver=0.11.1 From crazy at frugalware.org Sat Sep 15 23:32:39 2007 From: crazy at frugalware.org (crazy) Date: Sat Sep 15 23:32:40 2007 Subject: [Frugalware-git] frugalware-current: glurp-0.11.6-2-i686 Message-ID: <20070915213239.1325A13A4052@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=58fd9bf75a6d1eb46a6b05da298c613a8ff051d8 commit 58fd9bf75a6d1eb46a6b05da298c613a8ff051d8 Author: crazy Date: Sat Sep 15 23:29:07 2007 +0200 glurp-0.11.6-2-i686 * fix m8r , missing email ( added a fake one for now ) diff --git a/source/xapps-extra/glurp/FrugalBuild b/source/xapps-extra/glurp/FrugalBuild index 50330a8..8fd8529 100644 --- a/source/xapps-extra/glurp/FrugalBuild +++ b/source/xapps-extra/glurp/FrugalBuild @@ -1,5 +1,5 @@ # Compiling Time: 0.05 SBU -# Maintainer: Sector +# Maintainer: Sector pkgname=glurp pkgver=0.11.6 From vmiklos at frugalware.org Sun Sep 16 00:31:40 2007 From: vmiklos at frugalware.org (VMiklos) Date: Sun Sep 16 00:31:41 2007 Subject: [Frugalware-git] bmf: bitlbee-skype-0.1.4-1-i686 Message-ID: <20070915223140.3D77F1678012@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=bmf.git;a=commitdiff;h=bdd5d9f4727c9a64d3bb58699f671b6f93808d52 commit bdd5d9f4727c9a64d3bb58699f671b6f93808d52 Author: VMiklos Date: Sun Sep 16 00:31:26 2007 +0200 bitlbee-skype-0.1.4-1-i686 version bump diff --git a/source/network-extra/bitlbee-skype/FrugalBuild b/source/network-extra/bitlbee-skype/FrugalBuild index 018080c..107ee30 100644 --- a/source/network-extra/bitlbee-skype/FrugalBuild +++ b/source/network-extra/bitlbee-skype/FrugalBuild @@ -2,11 +2,11 @@ # Maintainer: VMiklos pkgname=bitlbee-skype -pkgver=0.1.1 +pkgver=0.1.4 pkgrel=1 pkgdesc="A Skype plugin for BitlBee" url="http://ftp.frugalware.org/pub/other/people/vmiklos/bitlbee-skype/" -depends=('bitlbee>=1.1bzr241-1vmiklos2') +depends=('bitlbee>=1.1bzr245') groups=('network-extra') archs=('i686') up2date="lynx -dump $url|Flasttar" From vmiklos at frugalware.org Sun Sep 16 01:43:37 2007 From: vmiklos at frugalware.org (VMiklos) Date: Sun Sep 16 01:43:39 2007 Subject: [Frugalware-git] bmf: gnash-0.8.1-2bmf1-i686 Message-ID: <20070915234337.C8E491678012@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=bmf.git;a=commitdiff;h=48210e741cfc91792760dc8d2fc7ed003efd3a6f commit 48210e741cfc91792760dc8d2fc7ed003efd3a6f Author: VMiklos Date: Sun Sep 16 01:43:25 2007 +0200 gnash-0.8.1-2bmf1-i686 rebuilt without kde support. just an idea, maybe that breaks youtube diff --git a/source/xlib-extra/gnash/FrugalBuild b/source/xlib-extra/gnash/FrugalBuild index f5361bc..c1feaeb 100644 --- a/source/xlib-extra/gnash/FrugalBuild +++ b/source/xlib-extra/gnash/FrugalBuild @@ -3,34 +3,24 @@ pkgname=gnash pkgver=0.8.1 -pkgrel=1 +pkgrel=2bmf1 pkgdesc="A GNU Flash movie player." url="http://www.gnu.org/software/gnash/" -depends=('libmad' 'curl' 'libtool' 'boost' 'gtk+2' 'agg') -#depends=('sdl_mixer' 'cairo' 'libjpeg' 'libxml2' 'libmad' 'boost' 'agg' 'curl' 'kdelibs' 'xulrunner' 'gtkglext') +depends=('sdl_mixer' 'cairo' 'libjpeg' 'libxml2' 'libmad' 'boost' 'agg' 'curl' \ + 'gtkglext' 'gstreamer') groups=('xlib-extra') archs=('i686') up2date="lynx -dump http://ftp.gnu.org/pub/gnu/gnash/|grep [0-9]/$|sed -n 's|.*/\(.*\)/$|\1|;$ p'" source=(http://ftp.gnu.org/pub/gnu/gnash/$pkgver/gnash-$pkgver.tar.bz2) +sha1sums=('d83280752d0cdf5c4bbeab1c2e8af3dd0113297f') # test page: http://www.4kids.org/funstuff/music/ -subpkgs=('gnash-nsplugin' 'gnash-kde') -subdescs=('Totem plugin for Firefox' 'Totem plugin for Konqueror') -subdepends=("firefox libxi libstdc++ $pkgname=$pkgver" "libxi libstdc++ kdelibs libgl libxmu libxdamage $pkgname=$pkgver") -subgroups=('xlib-extra' 'kde-extra') -subarchs=('i686' 'i686') - - build() { - Fbuild --enable-mp3 --enable-plugin --enable-klash \ - --with-plugindir=/usr/lib/mozilla/plugins - - Fsplit gnash-nsplugin usr/lib/mozilla - Fsplit gnash-kde usr/bin/kde-gnash usr/lib/kde3 usr/share/apps/klash \ - usr/share/services + Fbuild --enable-mp3 --enable-plugin \ + --with-plugindir=/usr/lib/mozilla/plugins --enable-gui=gtk \ + --enable-visibility --enable-gstreamer } # optimization OK -sha1sums=('d83280752d0cdf5c4bbeab1c2e8af3dd0113297f') From priyank at frugalware.org Sun Sep 16 11:27:40 2007 From: priyank at frugalware.org (Priyank) Date: Sun Sep 16 11:27:43 2007 Subject: [Frugalware-git] gfpm: gfpm: Added translator credits for sv_SE Message-ID: <20070916092740.888A91678012@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gfpm.git;a=commitdiff;h=cb09a80382288028a1b25a1b1d92c4eac25dc034 commit cb09a80382288028a1b25a1b1d92c4eac25dc034 Author: Priyank Date: Sun Sep 16 14:55:27 2007 +0530 gfpm: Added translator credits for sv_SE diff --git a/AUTHORS b/AUTHORS index 0e9109c..eb16b9e 100644 --- a/AUTHORS +++ b/AUTHORS @@ -12,6 +12,7 @@ Translators * hu - Vajna Miklos * fr - Michel Hermier * dk - Carl Andersen +* sv_SE - Patric Werme Artwork ======== From janny at frugalware.org Sun Sep 16 11:36:08 2007 From: janny at frugalware.org (janny) Date: Sun Sep 16 11:36:10 2007 Subject: [Frugalware-git] frugalware-current: clamtk-3.02-2-i686 Message-ID: <20070916093608.3A79B1678016@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=79d044578b7af050d18b699bc70d95ba9cc5edc8 commit 79d044578b7af050d18b699bc70d95ba9cc5edc8 Author: janny Date: Sun Sep 16 11:34:56 2007 +0200 clamtk-3.02-2-i686 fixed depend() thx priyank diff --git a/source/xapps-extra/clamtk/FrugalBuild b/source/xapps-extra/clamtk/FrugalBuild index a21ba45..56dd41b 100644 --- a/source/xapps-extra/clamtk/FrugalBuild +++ b/source/xapps-extra/clamtk/FrugalBuild @@ -3,10 +3,10 @@ pkgname=clamtk pkgver=3.02 -pkgrel=1 +pkgrel=2 pkgdesc="ClamTk is a GUI front-end for ClamAV using gtk2-perl" url="http://clamtk.sourceforge.net/" -rodepends=('perl-gtk2' 'clamav' 'perl-date-calc' 'perl-file-find-rule') +rodepends=('perl-gtk2' 'clamav' 'perl-date-calc' 'perl-file-find-rule' 'perl-gettext') groups=('xapps-extra') archs=('i686' 'x86_64') Finclude sourceforge From krics at linuxforum.hu Sun Sep 16 12:54:06 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sun Sep 16 12:54:15 2007 Subject: [Frugalware-git] frugalware-current: dpkg-1.14.6-2-x86_64 Message-ID: <20070916105406.5E0651678012@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=75f5696985f3d134778cc84cba3e6c042e8ffd84 commit 75f5696985f3d134778cc84cba3e6c042e8ffd84 Author: Christian Hamar alias krix Date: Sun Sep 16 12:53:22 2007 +0200 dpkg-1.14.6-2-x86_64 * Release bump * Fixed that -1 build ships perl* files to / and not to /usr/lib/perl...foo* * using sitelib instead of vendorlib at dpkg's configure diff --git a/source/apps-extra/dpkg/FrugalBuild b/source/apps-extra/dpkg/FrugalBuild index 49c19a2..e837ac3 100644 --- a/source/apps-extra/dpkg/FrugalBuild +++ b/source/apps-extra/dpkg/FrugalBuild @@ -4,17 +4,20 @@ pkgname=dpkg pkgver=1.14.6 -pkgrel=1 +pkgrel=2 pkgdesc="Package maintenance system for Debian" url="http://www.debian.org" depends=('bzip2' 'zlib') -makedepends=('po4a') +makedepends=('po4a' 'perl') groups=('apps-extra') archs=('i686' 'x86_64') source=(http://ftp.debian.org/pool/main/d/dpkg/dpkg_${pkgver}.tar.gz) up2date="lynx -dump 'http://packages.debian.org/unstable/admin/dpkg' | grep dpkg_.*.tar.gz | head -n 1 | sed 's/.*dpkg_\(.*\).tar.gz.*/\1/'" build() { + Fcd + # Fixup for perl + Fsed "Config{vendorlib}" "Config{sitelib}" configure Fbuild --without-dselect --without-start-stop-daemon --without-sgml-doc Frm /usr/bin/md5sum Frm /usr/man/man1/md5sum.1 From vmiklos at frugalware.org Sun Sep 16 13:27:04 2007 From: vmiklos at frugalware.org (VMiklos) Date: Sun Sep 16 13:27:06 2007 Subject: [Frugalware-git] frugalware-current: skype4py-0.9.28.3-1-i686 Message-ID: <20070916112704.E3CD41678012@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=9cb48f60a397c489b871f8724cff87ed86f42e10 commit 9cb48f60a397c489b871f8724cff87ed86f42e10 Author: VMiklos Date: Sun Sep 16 13:26:45 2007 +0200 skype4py-0.9.28.3-1-i686 version bump diff --git a/source/devel-extra/skype4py/FrugalBuild b/source/devel-extra/skype4py/FrugalBuild index b9be62b..7520ebc 100644 --- a/source/devel-extra/skype4py/FrugalBuild +++ b/source/devel-extra/skype4py/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: VMiklos pkgname=skype4py -pkgver=0.9.28.2 +pkgver=0.9.28.3 pkgrel=1 pkgdesc="A Python binding to Skype." _F_sourceforge_dirname="skype4py" @@ -12,5 +12,5 @@ Finclude sourceforge depends=('dbus-python' 'pygobject') groups=('devel-extra') archs=('i686') -sha1sums=('6358807faecd4f928020195aca6f2a69c1d1eb2e') +sha1sums=('6989a6da270b81a53a1ce6781f358b0eea7322d5') _F_cd_path="Skype4Py-$pkgver" From krics at linuxforum.hu Sun Sep 16 13:32:49 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sun Sep 16 13:32:52 2007 Subject: [Frugalware-git] frugalware-current: cdrtools-2.01-3-x86_64 Message-ID: <20070916113249.ED4A71678012@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=0bffd350d7b2bf6e3d89a6faba3e86d4e6a8911c commit 0bffd350d7b2bf6e3d89a6faba3e86d4e6a8911c Author: Christian Hamar alias krix Date: Sun Sep 16 13:32:05 2007 +0200 cdrtools-2.01-3-x86_64 * Release bump (oldies cleanup) * Added a patch for a CAN (CAN-2004-0806) * Added COPTX and CPPOPTX diff --git a/source/apps/cdrtools/FrugalBuild b/source/apps/cdrtools/FrugalBuild index 864ce0a..c80a548 100644 --- a/source/apps/cdrtools/FrugalBuild +++ b/source/apps/cdrtools/FrugalBuild @@ -3,21 +3,28 @@ pkgname=cdrtools pkgver=2.01 -pkgrel=2 +pkgrel=3 pkgdesc="Tools for recording CDs" -url="http://www.fokus.gmd.de/research/cc/glone/employees/joerg.schilling/private/cdrecord.html" +url="http://cdrecord.berlios.de/old/private/cdrecord.html" +#url="http://www.fokus.gmd.de/research/cc/glone/employees/joerg.schilling/private/cdrecord.html" depends=('glibc') groups=('apps') archs=('i686' 'x86_64' 'ppc') up2date="wget --passive-ftp -O - -q ftp://ftp.berlios.de/pub/cdrecord/|grep cdrtools-.*.tar.gz|tail -n 1|sed 's/.*-\(.*\)\.tar\.gz$/\1/'" -source=(ftp://ftp.berlios.de/pub/cdrecord/$pkgname-$pkgver.tar.bz2) -sha1sums=('f94cfe51dd512d4e0b9106b986bde12d4f7967ce') +source=(ftp://ftp.berlios.de/pub/cdrecord/$pkgname-$pkgver.tar.bz2 \ + cdrtools-2.01-scsi-remote-CAN-2004-0806.patch) +sha1sums=('f94cfe51dd512d4e0b9106b986bde12d4f7967ce' \ + '0388616bf453e46fa3186c93cc17f881508aa562') build() { Fcd $pkgname-`echo $pkgver|sed 's/a.*$//'` + # Fixup for CAN-2004-0806 bug + Fpatch cdrtools-2.01-scsi-remote-CAN-2004-0806.patch - make INS_BASE=$Fdestdir/usr DEFINSUSR=root DEFINSGRP=root || return 1 + make INS_BASE=$Fdestdir/usr DEFINSUSR=root DEFINSGRP=root \ + COPTX="${CFLAGS}" CPPOPTX="${CFLAGS}" || return 1 - make INS_BASE=$Fdestdir/usr DEFINSUSR=root DEFINSGRP=root install + make INS_BASE=$Fdestdir/usr DEFINSUSR=root DEFINSGRP=root \ + COPTX="${CFLAGS}" CPPOPTX="${CFLAGS}" install || return 1 } diff --git a/source/apps/cdrtools/cdrtools-2.01-scsi-remote-CAN-2004-0806.patch b/source/apps/cdrtools/cdrtools-2.01-scsi-remote-CAN-2004-0806.patch new file mode 100644 index 0000000..556c512 --- /dev/null +++ b/source/apps/cdrtools/cdrtools-2.01-scsi-remote-CAN-2004-0806.patch @@ -0,0 +1,26 @@ +--- cdrecord-2.01/librscg/scsi-remote.c.org 2004-08-30 16:09:33.000000000 -0600 ++++ cdrecord-2.01/librscg/scsi-remote.c 2004-08-30 16:11:06.000000000 -0600 +@@ -1071,9 +1071,9 @@ + /* + * Become 'locuser' to tell the rsh program the local user id. + */ +- if (getuid() != pw->pw_uid && +- setuid(pw->pw_uid) == -1) { +- errmsg("setuid(%lld) failed.\n", ++ if ((pw->pw_uid) != geteuid() && ++ seteuid(pw->pw_uid) == -1) { ++ errmsg("seteuid(%lld) failed.\n", + (Llong)pw->pw_uid); + _exit(EX_BAD); + /* NOTREACHED */ +--- cdrtools-2.01/rscsi/rscsi.dfl.org 2005-05-07 20:19:15.930567520 +0200 ++++ cdrtools-2.01/rscsi/rscsi.dfl 2005-05-07 20:19:21.072785784 +0200 +@@ -11,6 +11,8 @@ + # The file where debug info should go to. + # If you don't like debugging (e.g. for speed) comment out + # the this line. ++# Security note: Set this to a safe place to write output, such as your home ++# directory + # + #DEBUG=/tmp/RSCSI + From krics at linuxforum.hu Sun Sep 16 13:41:34 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sun Sep 16 13:41:36 2007 Subject: [Frugalware-git] frugalware-current: psutils-1.17-2-x86_64 Message-ID: <20070916114134.DE2CC1678012@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=9556b1729b73017a1d1e5196d2ed89a6e88e9d08 commit 9556b1729b73017a1d1e5196d2ed89a6e88e9d08 Author: Christian Hamar alias krix Date: Sun Sep 16 13:41:20 2007 +0200 psutils-1.17-2-x86_64 * Release bump * Oldies cleanup diff --git a/source/apps/psutils/FrugalBuild b/source/apps/psutils/FrugalBuild index f5b2ad8..700e11d 100644 --- a/source/apps/psutils/FrugalBuild +++ b/source/apps/psutils/FrugalBuild @@ -3,7 +3,7 @@ pkgname=psutils pkgver=1.17 -pkgrel=1 +pkgrel=2 pkgdesc='Postscript utilities' url="http://www.dcs.ed.ac.uk/~ajcd/psutils" depends=('glibc') @@ -21,3 +21,5 @@ build () { Fmkdir /usr/bin /usr/share/man Fbuild } + +# optimization OK From krics at linuxforum.hu Sun Sep 16 13:43:45 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sun Sep 16 13:43:48 2007 Subject: [Frugalware-git] frugalware-current: perl-io-socket-ssl-1.09-1-x86_64 Message-ID: <20070916114345.4770A1678012@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=07bc23539cdc4a86c06f146d661b5533689f3f68 commit 07bc23539cdc4a86c06f146d661b5533689f3f68 Author: Christian Hamar alias krix Date: Sun Sep 16 13:43:29 2007 +0200 perl-io-socket-ssl-1.09-1-x86_64 * Version bump diff --git a/source/devel/perl-io-socket-ssl/FrugalBuild b/source/devel/perl-io-socket-ssl/FrugalBuild index 3676eaa..02dec6f 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.08 +pkgver=1.09 pkgrel=1 pkgdesc="Perl extension Nearly transparent SSL encapsulation for IO::Socket::INET" depends=('perl-net-ssleay>=1.30') Finclude perl groups=('devel') archs=('i686' 'x86_64') -sha1sums=('ffddd8e26865a66e193bb4f93212d441790cc910') +sha1sums=('f67d6e8dbf732a6115a0ad83fc0814cf2fccb51b') From crazy at frugalware.org Sun Sep 16 15:21:36 2007 From: crazy at frugalware.org (crazy) Date: Sun Sep 16 15:21:38 2007 Subject: [Frugalware-git] frugalware-current: ncftp-3.2.0-1-i686 Message-ID: <20070916132136.0AE3A1678013@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=76b84dec6f9c24633a0b9cb1614812bdf42ea7eb commit 76b84dec6f9c24633a0b9cb1614812bdf42ea7eb Author: crazy Date: Sun Sep 16 15:17:41 2007 +0200 ncftp-3.2.0-1-i686 * m8r fix diff --git a/source/network/ncftp/FrugalBuild b/source/network/ncftp/FrugalBuild index cb6dd61..0cd94ab 100644 --- a/source/network/ncftp/FrugalBuild +++ b/source/network/ncftp/FrugalBuild @@ -1,5 +1,5 @@ # Compiling Time: 0.01 SBU -# Maintainer: krix +# Maintainer: Christian Hamar alias krix pkgname=ncftp pkgver=3.2.0 From crazy at frugalware.org Sun Sep 16 15:21:35 2007 From: crazy at frugalware.org (crazy) Date: Sun Sep 16 15:21:40 2007 Subject: [Frugalware-git] frugalware-current: sdl_mixer-1.2.7-1-i686 Message-ID: <20070916132135.9F7E81678012@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=0ebf9ec337985b1b5df114d5ddd7b57084dee8e8 commit 0ebf9ec337985b1b5df114d5ddd7b57084dee8e8 Author: crazy Date: Sun Sep 16 15:16:23 2007 +0200 sdl_mixer-1.2.7-1-i686 * fix m8r diff --git a/source/xlib-extra/sdl_mixer/FrugalBuild b/source/xlib-extra/sdl_mixer/FrugalBuild index dd43eaf..6ee0538 100644 --- a/source/xlib-extra/sdl_mixer/FrugalBuild +++ b/source/xlib-extra/sdl_mixer/FrugalBuild @@ -1,5 +1,5 @@ # Compiling time: 0.01 SBU -# Maintainer: krix +# Maintainer: Christian Hamar alias krix pkgname=sdl_mixer realname=SDL_mixer From vmiklos at frugalware.org Sun Sep 16 15:33:12 2007 From: vmiklos at frugalware.org (VMiklos) Date: Sun Sep 16 15:33:16 2007 Subject: [Frugalware-git] frugalware-current: ecj-3.3-1-i686 Message-ID: <20070916133312.E4C78168801D@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=dd7f5c04232b192392b0aa2680223c0182cafc17 commit dd7f5c04232b192392b0aa2680223c0182cafc17 Author: VMiklos Date: Sun Sep 16 15:32:40 2007 +0200 ecj-3.3-1-i686 version bump diff --git a/source/devel-extra/ecj/FrugalBuild b/source/devel-extra/ecj/FrugalBuild index d9fa014..2f6afcc 100644 --- a/source/devel-extra/ecj/FrugalBuild +++ b/source/devel-extra/ecj/FrugalBuild @@ -2,15 +2,16 @@ # Maintainer: VMiklos pkgname=ecj -pkgver=3.2.2 -date=200702121330 -pkgrel=2 +pkgver=3.3 +date=200706251500 +pkgrel=1 pkgdesc="Ecj is the Java bytecode compiler of the Eclipse Project." url="http://www.eclipse.org/" groups=('devel-extra') archs=('i686' 'x86_64') up2date="lynx -dump http://download.eclipse.org/eclipse/downloads/|grep Release|sed -n 's/.*]\([0-9\.]*\) .*/\1/;1 p'" source=(http://download.eclipse.org/eclipse/downloads/drops/R-$pkgver-$date/ecjsrc.zip) +sha1sums=('e08a27fd77e5ac7af8f2c84beed175cd3fdd0c60') Finclude java makedepends=('gcc-gcj') @@ -20,11 +21,11 @@ build() rm -f org/eclipse/jdt/core/JDTCompilerAdapter.java rm -rf org/eclipse/jdt/internal/antadapter - for i in `find org/ -name '*.java'` - do - echo gcj -C $i - gcj -C $i || return 1 - done + rm -fr org/eclipse/jdt/internal/compiler/tool/ \ + org/eclipse/jdt/internal/compiler/apt/ + + echo gcj -encoding ISO-8859-1 -C `find org/ -name '*.java'` + gcj -encoding ISO-8859-1 -C `find org/ -name '*.java'` || return 1 find -name '*.class' -o -name '*.properties' -o -name '*.rsc' | \ xargs jar cf eclipse-ecj.jar @@ -33,6 +34,5 @@ build() $Fdestdir/usr/share/java/eclipse-ecj.jar } -sha1sums=('50f6b20a1542176e46d48fa522b9f24b2399878b') # optimization OK From vmiklos at frugalware.org Sun Sep 16 15:48:15 2007 From: vmiklos at frugalware.org (VMiklos) Date: Sun Sep 16 15:48:17 2007 Subject: [Frugalware-git] frugalware-current: ant-eclipse-ecj-3.3-1-i686 Message-ID: <20070916134815.706851688020@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=527a17e5635ba425c8f1279c88fb32e97e9401eb commit 527a17e5635ba425c8f1279c88fb32e97e9401eb Author: VMiklos Date: Sun Sep 16 15:48:07 2007 +0200 ant-eclipse-ecj-3.3-1-i686 version bump diff --git a/source/devel-extra/ant-eclipse-ecj/FrugalBuild b/source/devel-extra/ant-eclipse-ecj/FrugalBuild index a70362b..3141d56 100644 --- a/source/devel-extra/ant-eclipse-ecj/FrugalBuild +++ b/source/devel-extra/ant-eclipse-ecj/FrugalBuild @@ -2,8 +2,8 @@ # Maintainer: VMiklos pkgname=ant-eclipse-ecj -pkgver=3.2.2 -date=200702121330 +pkgver=3.3 +date=200706251500 pkgrel=1 pkgdesc="Ant Compiler Adapter for Eclipse Java Compiler" url="http://www.eclipse.org/" @@ -12,6 +12,8 @@ archs=('i686' 'x86_64') up2date="lynx -dump http://download.eclipse.org/eclipse/downloads/|grep Release|sed -n 's/.*]\([0-9\.]*\) .*/\1/;1 p'" source=(http://download.eclipse.org/eclipse/downloads/drops/R-$pkgver-$date/ecjsrc.zip \ build.xml) +sha1sums=('e08a27fd77e5ac7af8f2c84beed175cd3fdd0c60' \ + 'bdc8675501b9bd3e604a60e6b3f88cc8eff01eb2') Finclude java depends=('ecj' 'apache-ant') unset makedepends @@ -30,10 +32,7 @@ build() Fant -Djar.gcj=libgcj-`gcc -dumpversion`.jar \ -Djar.ecj=eclipse-ecj.jar find -name '*.class' -o -name '*.properties' | \ - xargs fastjar cf ant-eclipse-ecj.jar || return 1 + xargs jar cf ant-eclipse-ecj.jar || return 1 Ffilerel /usr/share/java/ant-eclipse-ecj.jar } - -sha1sums=('50f6b20a1542176e46d48fa522b9f24b2399878b'\ - 'bdc8675501b9bd3e604a60e6b3f88cc8eff01eb2') From crazy at frugalware.org Sun Sep 16 16:06:26 2007 From: crazy at frugalware.org (crazy) Date: Sun Sep 16 16:06:31 2007 Subject: [Frugalware-git] pacman-tools: chkworld Message-ID: <20070916140626.0DDD916A8016@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=pacman-tools.git;a=commitdiff;h=ced3b5ffe989a216c533c8b91ca2cbbd6864194f commit ced3b5ffe989a216c533c8b91ca2cbbd6864194f Author: crazy Date: Sun Sep 16 15:19:51 2007 +0200 chkworld * don't use spaces here diff --git a/chkworld b/chkworld index ccf23b1..4c7baf0 100644 --- a/chkworld +++ b/chkworld @@ -206,7 +206,7 @@ our $VERSION = "0.9"; #my %opts; #getopts('svcmhet:d:b:', \%opts); -my ($sort, $devel,$html,$time,$error,$verbose,$color,$help,@bl,@dirs); +my ($sort,$devel,$html,$time,$error,$verbose,$color,$help,@bl,@dirs); GetOptions( 's|sort' => \$sort, 'd|devel:s' => \$devel, 'm|html' => \$html, From crazy at frugalware.org Sun Sep 16 16:06:25 2007 From: crazy at frugalware.org (crazy) Date: Sun Sep 16 16:06:34 2007 Subject: [Frugalware-git] pacman-tools: chkworld Message-ID: <20070916140625.DA59916A8013@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=pacman-tools.git;a=commitdiff;h=e6289630099489a72e453af275d228797ec8fdab commit e6289630099489a72e453af275d228797ec8fdab Author: crazy Date: Sun Sep 16 12:56:04 2007 +0200 chkworld * fix typo , this is not chkdep diff --git a/chkworld b/chkworld index bc5ae2b..ccf23b1 100644 --- a/chkworld +++ b/chkworld @@ -6,7 +6,7 @@ chkworld - Compares FrugalBuild's up2date and pkgver informations =head1 SYNOPSIS -chkdep [options] +chkworld [options] =head1 DESCRIPTION From crazy at frugalware.org Sun Sep 16 16:06:26 2007 From: crazy at frugalware.org (crazy) Date: Sun Sep 16 16:06:36 2007 Subject: [Frugalware-git] pacman-tools: chkworld Message-ID: <20070916140626.4313A16A8018@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=pacman-tools.git;a=commitdiff;h=df80bb89d20ea033e0234fabdc9e1bbafefe0305 commit df80bb89d20ea033e0234fabdc9e1bbafefe0305 Author: crazy Date: Sun Sep 16 15:34:01 2007 +0200 chkworld * strip leading and trailing whitespace from m8rs diff --git a/chkworld b/chkworld index b911e77..ab980b2 100644 --- a/chkworld +++ b/chkworld @@ -155,6 +155,8 @@ sub init_chk { #generate the iterator do {next if $File::Find::dir =~ /$blacklist[$_]/} for 0..scalar @blacklist-1; my $buildscript = contents $_; my ($m8r) = $buildscript =~ /^# Maintainer: (.*?) Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=pacman-tools.git;a=commitdiff;h=f83848d0a98fcbadc8ccfe62730827730f279ce8 commit f83848d0a98fcbadc8ccfe62730827730f279ce8 Author: crazy Date: Sun Sep 16 15:42:26 2007 +0200 chkworld * fix sorting for now .. * note is still buggy and -d foo -s does not work fine and anyway it does * not make *any* sense .. why someone would like to sort 'foo' while * searching for 'foo'. * We would need to use map but that does not worth IMO .. diff --git a/chkworld b/chkworld index ab980b2..9212603 100644 --- a/chkworld +++ b/chkworld @@ -164,7 +164,7 @@ sub init_chk { #generate the iterator return sub { $input{preoutput}->(); - for $dev (keys %m8rs){ + for $dev (sort m8r_sort keys(%m8rs)){ find sub{ if (/^FrugalBuild\z/){ do {goto OUT if $File::Find::dir =~ /$blacklist[$_]/} for 0..scalar @blacklist-1; @@ -198,6 +198,9 @@ sub init_chk { #generate the iterator } } +sub m8r_sort { + return lc($a) cmp lc($b); +} package main; From crazy at frugalware.org Sun Sep 16 16:06:26 2007 From: crazy at frugalware.org (crazy) Date: Sun Sep 16 16:06:38 2007 Subject: [Frugalware-git] pacman-tools: chkworld Message-ID: <20070916140626.1E52016A8017@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=pacman-tools.git;a=commitdiff;h=ab886ce2563b1140067dcf1fa070d6ab6aa675a4 commit ab886ce2563b1140067dcf1fa070d6ab6aa675a4 Author: crazy Date: Sun Sep 16 15:23:17 2007 +0200 chkworld * added 'use sort "_quicksort";' * we don't need 'stable' default version * anyway let us see how it works diff --git a/chkworld b/chkworld index 4c7baf0..b911e77 100644 --- a/chkworld +++ b/chkworld @@ -76,6 +76,7 @@ License v2. package Chkworld; require 5.8.8; +use sort "_quicksort"; use warnings; no warnings qw( uninitialized ); use File::Find; From vmiklos at frugalware.org Sun Sep 16 16:17:10 2007 From: vmiklos at frugalware.org (VMiklos) Date: Sun Sep 16 16:17:13 2007 Subject: [Frugalware-git] frugalware-current: openoffice.org-2.3.0-1-x86_64 Message-ID: <20070916141710.6C4E416A8026@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=27efa35b643386a0f2eb7399a52412891fc6de44 commit 27efa35b643386a0f2eb7399a52412891fc6de44 Author: VMiklos Date: Sun Sep 16 16:09:26 2007 +0200 openoffice.org-2.3.0-1-x86_64 - version bump - fix-invisible-text.diff is now in ooo-build - new mozilla plugin - ooxml support - new Georgian language pack - release notes: http://development.openoffice.org/releases/2.3.0.html diff --git a/source/xapps/openoffice.org/FrugalBuild b/source/xapps/openoffice.org/FrugalBuild index faf37a8..64cf453 100644 --- a/source/xapps/openoffice.org/FrugalBuild +++ b/source/xapps/openoffice.org/FrugalBuild @@ -2,24 +2,22 @@ # Maintainer: Janny # Contributor: Laszlo Dvornik -USE_DEVEL=${USE_DEVEL:-"n"} - pkgname=openoffice.org +USE_DEVEL=${USE_DEVEL:-"n"} if ! Fuse $USE_DEVEL; then - upstream=2.2.1 - branch=2-2 - tree=oof680 - milestone=18 + upstream=2.3.0 + tree=oog680 + milestone=5 pkgver=$upstream - pkgrel=2 - snapshot=20070628 + pkgrel=1 + snapshot=20070912 else - upstream=2.2.0 - tree=oof680 - milestone=14 + upstream=2.3 + tree=oog680 + milestone=5 pkgver=$upstream${tree}_m$milestone pkgrel=1 - snapshot=20070329 + snapshot=20070912 fi pkgdesc="OpenOffice.org, a full office productivity suite." url="http://www.openoffice.org/" @@ -31,21 +29,17 @@ rodepends=('flac') makedepends=('curl' 'intltool' 'tcsh' 'pam-headers' 'firefox' 'apache-ant' 'gcc-gcj' 'kdelibs>=3.5.5' \ 'evolution-data-server-ldap' 'boost' 'icu' 'hunspell' 'imake' 'gccmakedep' 'xalan-j' \ 'patch>=2.5.9' 'openclipart' 'xorg-server' 'gstreamer' 'gst-plugins-base' 'gnome-vfs' \ - 'libbonobo' 'procps' 'openldap' 'mono') + 'libbonobo' 'procps' 'openldap' 'mono' 'gperf' 'xulrunner') groups=('xapps') archs=('i686' 'x86_64') if ! Fuse $USE_DEVEL; then up2date="lynx -dump $url |grep version:|sed 's/.*: //'" - source=(http://ftp.frugalware.org/pub/other/sources/ooo-build/ooo-build-$branch-$snapshot.tar.bz2 \ - http://hu.openoffice.org/source/browse/*checkout*/hu/src/2.2.0/SDF/hu.sdf.bz2 \ - fix-invisible-text.diff) - signatures=($source.asc '' '') else - up2date="lynx -dump http://svn.gnome.org/viewcvs/*checkout*/ooo-build/trunk/configure.in|grep ^DEFAULT_TAG|sed 's/DEFAULT_TAG=\(.*\)-\(.*\)/${pkgver%%oo*}\1_\2/'" - source=(http://ftp.frugalware.org/pub/other/sources/ooo-build/ooo-build-$snapshot.tar.bz2 \ - http://hu.openoffice.org/source/browse/*checkout*/hu/src/$upstream/SDF/hu.sdf.bz2) - signatures=($source.asc '') + up2date="lynx -dump http://svn.gnome.org/viewcvs/ooo-build/trunk/configure.in?view=markup |grep ^DEFAULT_TAG|sed 's/DEFAULT_TAG=\(.*\)-\(.*\)/$upstream\1_\2/'" fi +source=(http://ftp.frugalware.org/pub/other/sources/ooo-build/ooo-build-$snapshot.tar.bz2 \ + http://hu.openoffice.org/source/browse/*checkout*/hu/src/2.2.1/SDF/hu.sdf.bz2) +signatures=($source.asc '') options=(${options[@]} 'scriptlet') _F_gnome_desktop="y" Finclude gnome-scriptlet mono @@ -62,8 +56,8 @@ subinstall=("" "$_F_gnome_scriptlet") ooosubpkgs=('de' 'es' 'fr' 'hu') ooosubdescs=('German' 'Spanish' 'French' 'Hungarian') if ! Fuse $USE_DEVEL; then - ooosubpkgs=(${ooosubpkgs[@]} 'af' 'ar' 'be-BY' 'bg' 'bn' 'bn-BD' 'bn-IN' 'br' 'bs' 'ca' 'cy' 'cs' 'da' 'el' 'en-GB' 'en-ZA' 'eo' 'et' 'eu' 'fi' 'ga' 'gl' 'gu-IN' 'he' 'hi-IN' 'hr' 'it' 'ja' 'km' 'kn-IN' 'ko' 'lo' 'lt' 'lv' 'mk' 'ms' 'nb' 'ne' 'nl' 'nn' 'nr' 'ns' 'pa-IN' 'pl' 'pt' 'pt-BR' 'ru' 'rw' 'sh-YU' 'sk' 'sl' 'sr-CS' 'ss' 'st' 'sv' 'sw' 'sw-TZ' 'sx' 'ta-IN' 'th' 'tn' 'tr' 'ts' 've' 'vi' 'xh' 'zh-CN' 'zh-TW' 'zu' 'fa' 'ku' 'as-IN' 'ml-IN' 'mr-IN' 'or-IN' 'te-IN' 'tg' 'ti-ER' 'uk' 'ur-IN' 'dz') - ooosubdescs=(${ooosubdescs[@]} 'Afrikaans' 'Arabic' 'Belarusian' 'Bulgarian' 'Bengali' 'Bengali (Bangladesh)' 'Bengali (India)' 'Breton' 'Bosnian' 'Catalan' 'Welsh' 'Czech' 'Danish' 'Greek' 'English (GB)' 'English (South Africa)' 'Esperanto' 'Estonian' 'Basque' 'Finnish' 'Irish' 'Galician' 'Gujarati' 'Hebrew' 'Hindi' 'Croatian' 'Italian' 'Japanese' 'Khmer (Cambodia)' 'Kannada' 'Korean' 'Lao' 'Lithuanian' 'Latvian' 'Macedonian' 'Malay' 'Norwegian Bokmal' 'Nepali' 'Dutch' 'Norwegian Nynorsk' 'Ndebele, South' 'NorthernSotho/Sepedi' 'Punjabi' 'Polish' 'Portuguese' 'Brazil (Port.)' 'Russian' 'Kinyarwanda' 'Serbian Latin' 'Slovak' 'Slovenian' 'Serbian Cyrillic' 'Swati' 'Sotho' 'Swedish' 'Swahili' 'Swahili ' 'South Georgian' 'Tamil' 'Thai' 'Tswana' 'Turkish' 'Tsonga' 'Venda' 'Vietnamese' 'Xhosa' 'Chinese (simplified)' 'Chinese (traditional)' 'Zulu' 'Persian' 'Kurdish' 'Assamese' 'Malayalam' 'Marathi' 'Oriya' 'Telugu' 'Tajik' 'Tigrinya' 'Ukrainian' 'Urdu' 'Dzongkha') + ooosubpkgs=(${ooosubpkgs[@]} 'af' 'ar' 'be-BY' 'bg' 'bn' 'bn-BD' 'bn-IN' 'br' 'bs' 'ca' 'cy' 'cs' 'da' 'el' 'en-GB' 'en-ZA' 'eo' 'et' 'eu' 'fi' 'ga' 'gl' 'gu-IN' 'he' 'hi-IN' 'hr' 'it' 'ja' 'km' 'kn-IN' 'ko' 'lo' 'lt' 'lv' 'mk' 'ms' 'nb' 'ne' 'nl' 'nn' 'nr' 'ns' 'pa-IN' 'pl' 'pt' 'pt-BR' 'ru' 'rw' 'sh-YU' 'sk' 'sl' 'sr-CS' 'ss' 'st' 'sv' 'sw' 'sw-TZ' 'sx' 'ta-IN' 'th' 'tn' 'tr' 'ts' 've' 'vi' 'xh' 'zh-CN' 'zh-TW' 'zu' 'fa' 'ku' 'as-IN' 'ml-IN' 'mr-IN' 'or-IN' 'te-IN' 'tg' 'ti-ER' 'uk' 'ur-IN' 'dz' 'ka') + ooosubdescs=(${ooosubdescs[@]} 'Afrikaans' 'Arabic' 'Belarusian' 'Bulgarian' 'Bengali' 'Bengali (Bangladesh)' 'Bengali (India)' 'Breton' 'Bosnian' 'Catalan' 'Welsh' 'Czech' 'Danish' 'Greek' 'English (GB)' 'English (South Africa)' 'Esperanto' 'Estonian' 'Basque' 'Finnish' 'Irish' 'Galician' 'Gujarati' 'Hebrew' 'Hindi' 'Croatian' 'Italian' 'Japanese' 'Khmer (Cambodia)' 'Kannada' 'Korean' 'Lao' 'Lithuanian' 'Latvian' 'Macedonian' 'Malay' 'Norwegian Bokmal' 'Nepali' 'Dutch' 'Norwegian Nynorsk' 'Ndebele, South' 'NorthernSotho/Sepedi' 'Punjabi' 'Polish' 'Portuguese' 'Brazil (Port.)' 'Russian' 'Kinyarwanda' 'Serbian Latin' 'Slovak' 'Slovenian' 'Serbian Cyrillic' 'Swati' 'Sotho' 'Swedish' 'Swahili' 'Swahili ' 'South Georgian' 'Tamil' 'Thai' 'Tswana' 'Turkish' 'Tsonga' 'Venda' 'Vietnamese' 'Xhosa' 'Chinese (simplified)' 'Chinese (traditional)' 'Zulu' 'Persian' 'Kurdish' 'Assamese' 'Malayalam' 'Marathi' 'Oriya' 'Telugu' 'Tajik' 'Tigrinya' 'Ukrainian' 'Urdu' 'Dzongkha' 'Georgian') fi if [ ${#ooosubpkgs[@]} -ne ${#ooosubdescs[@]} ]; then @@ -100,26 +94,15 @@ done build() { Fmonoexport - if ! Fuse $USE_DEVEL; then - Fcd ooo-build-${branch//-/.} - else - Fcd ooo-build - fi + Fcd ooo-build # Extra localizations cp $Fsrcdir/hu.sdf src/GSI_hu.sdf || return 1 # Remove our patches so that incremental build will be possible. - rm -f patches/src680/fix-invisible-text.diff + #rm -f patches/src680/fix-invisible-text.diff Fpatchall - # Defined $CARCH config - if [ "$CARCH" == "x86_64" ]; then - Fconfopts="$Fconfopts --with-distro=Frugalware64" - else - Fconfopts="$Fconfopts --with-distro=Frugalware" - fi - # SMP build if [ ! -z "$MAKEFLAGS" ]; then Fconfopts="$Fconfopts --with-num-cpus=${MAKEFLAGS/-j}" @@ -128,6 +111,7 @@ build() { # Other options. Fconfopts="$Fconfopts \ + --with-distro=Frugalware \ --with-tag=$tree-m$milestone \ --with-gcc-speedup=ccache \ --with-openclipart=/usr/share/openclipart \ @@ -147,7 +131,7 @@ build() { export ARCH_FLAGS="$CFLAGS" if Fuse $USE_DEVEL; then - Fconf --with-lang="en-US de es fr hu" + Fconf --with-lang="en-US de es fr hu" --enable-separate-helpcontent else Fconf --with-lang=ALL fi @@ -158,6 +142,10 @@ build() { Fmakeinstall + # Enable the mozilla plugin + Fmkdir /usr/lib/mozilla/plugins + Fln /usr/lib/openoffice.org/program/libnpsoplugin.so /usr/lib/mozilla/plugins/ + # Remove some dicts, our separate package is more recent Frm usr/lib/openoffice.org/share/dict/ooo/*hu_HU* diff --git a/source/xapps/openoffice.org/fix-invisible-text.diff b/source/xapps/openoffice.org/fix-invisible-text.diff deleted file mode 100644 index eb2c0b5..0000000 --- a/source/xapps/openoffice.org/fix-invisible-text.diff +++ /dev/null @@ -1,25 +0,0 @@ -diff -Naur ooo-build-2-2.orig/patches/src680/apply ooo-build-2-2/patches/src680/apply ---- ooo-build-2-2.orig/patches/src680/apply 2007-07-21 22:40:29.000000000 +0200 -+++ ooo-build-2-2/patches/src680/apply 2007-07-21 22:46:46.000000000 +0200 -@@ -781,6 +781,7 @@ - gcc401-stlport45-include.diff, gghibo - # needed by CXXHelpLinker - system-db-4.3-java-library-path.diff -+fix-invisible-text.diff - - - # ( mmp@oo.o deals with defaults apparently ) -diff -Naur ooo-build-2-2.orig/patches/src680/fix-invisible-text.diff ooo-build-2-2/patches/src680/fix-invisible-text.diff ---- ooo-build-2-2.orig/patches/src680/fix-invisible-text.diff 1970-01-01 01:00:00.000000000 +0100 -+++ ooo-build-2-2/patches/src680/fix-invisible-text.diff 2007-07-21 22:46:23.000000000 +0200 -@@ -0,0 +1,10 @@ -+--- sw/source/core/bastyp/swregion.cxx -++++ sw/source/core/bastyp/swregion.cxx -+@@ -79,6 +79,7 @@ -+ { -+ if( rDel ) -+ { -++ pData = (SwRect*) pData; -+ *(pData+nPos) = rRect; -+ rDel = FALSE; -+ } From crazy at frugalware.org Sun Sep 16 16:31:03 2007 From: crazy at frugalware.org (crazy) Date: Sun Sep 16 16:31:19 2007 Subject: [Frugalware-git] frugalware-current: xerces-j-2.9.1-1-i686 Message-ID: <20070916143103.025AC16A8017@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=9962ee169ba470e44a4c0d3c23453c1c3a80ebf8 commit 9962ee169ba470e44a4c0d3c23453c1c3a80ebf8 Author: crazy Date: Sun Sep 16 16:25:30 2007 +0200 xerces-j-2.9.1-1-i686 * Version bump * added CFLAGS hack , without it won't compile diff --git a/source/devel-extra/xerces-j/FrugalBuild b/source/devel-extra/xerces-j/FrugalBuild index 9fbcea0..364592c 100644 --- a/source/devel-extra/xerces-j/FrugalBuild +++ b/source/devel-extra/xerces-j/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: VMiklos pkgname=xerces-j -pkgver=2.9.0 +pkgver=2.9.1 pkgrel=1 pkgdesc="Xerces2 Java XML Parser" url="http://xml.apache.org/xerces2-j" @@ -10,15 +10,19 @@ groups=('devel-extra') archs=('i686' 'x86_64') up2date="lynx -dump http://www.apache.org/dist/xml/xerces-j/ |sed -n '/src.*tar.gz$/s/.*src.\(.*\)\.t.*/\1/p'" source=(http://www.apache.org/dist/xml/xerces-j/Xerces-J-src.$pkgver.tar.gz \ - xerces-j-$pkgver-xml-commons-external.diff) -signatures=($source.sig '') + xerces-j-2.9.0-xml-commons-external.diff) +#signatures=($source.sig '') Finclude java depends=(${depends[@]} 'xml-commons-external' 'xml-commons-resolver' 'xjavac') - +sha1sums=('78786a120c10b3d7079384cecbd2860260e47445' \ + '0ae6dea1303e5815afc4f0c8d85cacfbe39a5201') # NOTE: for some reason on x86_64 the build is much slower, 73.74 SBU build() { + ## HACK! don't remove or it eats your box got killed here while + ## eating 3G mem ... + export CFLAGS="$(echo $CFLAGS|sed 's/-O2/-O0/')" Fcd xerces-${pkgver//./_} Fpatchall Fsed 'classpath="${build.dir}/classes' \ From vmiklos at frugalware.org Sun Sep 16 16:43:48 2007 From: vmiklos at frugalware.org (VMiklos) Date: Sun Sep 16 16:44:05 2007 Subject: [Frugalware-git] frugalware-current: openoffice.org-2.3.0-1-x86_64 Message-ID: <20070916144349.81F6B1678012@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=c2f78b15d39825bde8ddd214c87bfae035d5afdb commit c2f78b15d39825bde8ddd214c87bfae035d5afdb Author: VMiklos Date: Sun Sep 16 16:43:39 2007 +0200 openoffice.org-2.3.0-1-x86_64 source() fix diff --git a/source/xapps/openoffice.org/FrugalBuild b/source/xapps/openoffice.org/FrugalBuild index 64cf453..301e63a 100644 --- a/source/xapps/openoffice.org/FrugalBuild +++ b/source/xapps/openoffice.org/FrugalBuild @@ -38,7 +38,7 @@ else up2date="lynx -dump http://svn.gnome.org/viewcvs/ooo-build/trunk/configure.in?view=markup |grep ^DEFAULT_TAG|sed 's/DEFAULT_TAG=\(.*\)-\(.*\)/$upstream\1_\2/'" fi source=(http://ftp.frugalware.org/pub/other/sources/ooo-build/ooo-build-$snapshot.tar.bz2 \ - http://hu.openoffice.org/source/browse/*checkout*/hu/src/2.2.1/SDF/hu.sdf.bz2) + http://hu.openoffice.org/source/browse/*checkout*/hu/src/2.2.1/SDF/hu.sdf) signatures=($source.asc '') options=(${options[@]} 'scriptlet') _F_gnome_desktop="y" From vmiklos at frugalware.org Sun Sep 16 16:58:06 2007 From: vmiklos at frugalware.org (VMiklos) Date: Sun Sep 16 16:58:08 2007 Subject: [Frugalware-git] frugalware-current: java.sh: use -O0 Message-ID: <20070916145806.7738816A801A@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=7363c7a469caefee949a1a9cfb39ba7cd2345990 commit 7363c7a469caefee949a1a9cfb39ba7cd2345990 Author: VMiklos Date: Sun Sep 16 16:57:55 2007 +0200 java.sh: use -O0 using -O2 eats a lot of memory and finally gcj will be killed by oom. so here is a workaround for the issue diff --git a/source/include/java.sh b/source/include/java.sh index 10865c7..00f5110 100644 --- a/source/include/java.sh +++ b/source/include/java.sh @@ -80,8 +80,8 @@ Fgcj() if [ ! -d "`dirname $output`" ]; then mkdir -p "`dirname $output`" || Fdie fi - echo "gcj $CFLAGS --main=$main -o $output $@" - gcj $CFLAGS --main=$main -o $output $@ || Fdie + echo "gcj ${CFLAGS/O2/O0} --main=$main -o $output $@" + gcj ${CFLAGS/O2/O0} --main=$main -o $output $@ || Fdie } ### @@ -95,8 +95,8 @@ Fgcjshared() if [ ! -d "`dirname $output`" ]; then mkdir -p "`dirname $output`" || Fdie fi - echo "gcj -shared $CFLAGS $_F_java_cflags $_F_java_ldflags -o $output $@" - gcj -shared $CFLAGS $_F_java_cflags $_F_java_ldflags -o $output $@ || Fdie + echo "gcj -shared ${CFLAGS/O2/O0} $_F_java_cflags $_F_java_ldflags -o $output $@" + gcj -shared ${CFLAGS/O2/O0} $_F_java_cflags $_F_java_ldflags -o $output $@ || Fdie } ### From voroskoi at frugalware.org Sun Sep 16 18:36:21 2007 From: voroskoi at frugalware.org (voroskoi) Date: Sun Sep 16 18:36:23 2007 Subject: [Frugalware-git] frugalware-current: cups-1.3.1-2-i686 Message-ID: <20070916163621.925E1168800B@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=af5f20af1819b57f52c5d166c4775dd276ac0746 commit af5f20af1819b57f52c5d166c4775dd276ac0746 Author: voroskoi Date: Sun Sep 16 18:25:01 2007 +0200 cups-1.3.1-2-i686 fix for misplaced locales, sry diff --git a/source/apps/cups/FrugalBuild b/source/apps/cups/FrugalBuild index 836acf6..428fc60 100644 --- a/source/apps/cups/FrugalBuild +++ b/source/apps/cups/FrugalBuild @@ -4,7 +4,7 @@ pkgname=cups pkgver=1.3.1 -pkgrel=1 +pkgrel=2 pkgdesc="The CUPS Printing System" url="http://www.cups.org/" depends=('libtiff' 'libpng' 'libjpeg') @@ -23,6 +23,7 @@ subgroups=('lib') subarchs=('i686 x86_64') build() { + Fsed '@CUPS_LOCALEDIR@' "$Fprefix/share/locale" Makedefs.in Fpatchall # Do NOT remove --libdir option, needed for x86_64 to put libs into /usr/lib Fmake --with-cups-user=lp \ From crazy at frugalware.org Sun Sep 16 19:00:35 2007 From: crazy at frugalware.org (crazy) Date: Sun Sep 16 19:00:38 2007 Subject: [Frugalware-git] frugalware-current: libsigc++2-2.0.18-1-i686 Message-ID: <20070916170035.6EC3F1688010@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=58c0b32c6670217201f3b3e877d1b3c3d3819f50 commit 58c0b32c6670217201f3b3e877d1b3c3d3819f50 Author: crazy Date: Sun Sep 16 18:56:18 2007 +0200 libsigc++2-2.0.18-1-i686 * Version bump diff --git a/source/lib/libsigc++2/FrugalBuild b/source/lib/libsigc++2/FrugalBuild index 282cea9..48687af 100644 --- a/source/lib/libsigc++2/FrugalBuild +++ b/source/lib/libsigc++2/FrugalBuild @@ -3,8 +3,8 @@ # Contributor: Shrift pkgname=libsigc++2 -pkgver=2.0.17 -pkgrel=3 +pkgver=2.0.18 +pkgrel=1 pkgdesc="A typesafe callback framework for C++" url="http://libsigc.sourceforge.net/" depends=('libstdc++') @@ -12,7 +12,7 @@ groups=('lib') archs=('i686' 'x86_64') _F_gnome_name="libsigc++" Finclude gnome -sha1sums=('5948b6830ee3ea5d550097b2879249382b6c729c') +sha1sums=('75df46c977a3418bda4d5ae7e21c9ede28993835') _F_cd_path="${_F_gnome_name}-${pkgver}" # optimization ok From crazy at frugalware.org Sun Sep 16 19:18:55 2007 From: crazy at frugalware.org (crazy) Date: Sun Sep 16 19:18:58 2007 Subject: [Frugalware-git] frugalware-current: postgresql-8.2.5-1-i686 Message-ID: <20070916171855.DD8591688013@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=bf68f73c4b1810228cbdc0235ceac0daba00630d commit bf68f73c4b1810228cbdc0235ceac0daba00630d Author: crazy Date: Sun Sep 16 19:12:15 2007 +0200 postgresql-8.2.5-1-i686 * Version bump diff --git a/source/apps-extra/postgresql/FrugalBuild b/source/apps-extra/postgresql/FrugalBuild index a156919..f9cf687 100644 --- a/source/apps-extra/postgresql/FrugalBuild +++ b/source/apps-extra/postgresql/FrugalBuild @@ -3,7 +3,7 @@ # Contributor: VMiklos pkgname=postgresql -pkgver=8.2.4 +pkgver=8.2.5 pkgrel=1 pkgdesc="An advanced Object-Relational database management system (DBMS)" url="http://www.postgresql.org/" @@ -40,13 +40,13 @@ build() ## I cannot add ldap and krb* support while I make pqsql depends itself ## *-sasl need be split first ## extra things - cd contrib + cd contrib || Fdie Fmake make DESTDIR=$Fdestdir install || Fdie - cd xml2 + cd xml2 || Fdie Fmake make DESTDIR=$Fdestdir install || Fdie - cd ../.. + cd ../.. || Fdie ## contrib extra 'tools, libs etc' package Fsplit $pkgname-extras /usr ## Install main package @@ -66,6 +66,6 @@ build() Fsplit $pkgname-tcl usr/lib/$pkgname/pltcl.so } -sha1sums=('0d54a78b3ef83c2fb29b7109b06f17434e5cf831'\ +sha1sums=('45ddb77b542e8b279013f374edab65a8860a636d' \ 'faa7229726d07a3af32cff8abf8bbb9b46900763') # optimization OK From crazy at frugalware.org Sun Sep 16 19:26:54 2007 From: crazy at frugalware.org (crazy) Date: Sun Sep 16 19:26:56 2007 Subject: [Frugalware-git] frugalware-current: texinfo-4.11-1-i686 Message-ID: <20070916172654.57D931688013@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=01499d51ab4a2eab817b94e80ad51f442d5e9353 commit 01499d51ab4a2eab817b94e80ad51f442d5e9353 Author: crazy Date: Sun Sep 16 19:22:50 2007 +0200 texinfo-4.11-1-i686 * Version bump diff --git a/source/base/texinfo/CVE-2006-4810.patch b/source/base/texinfo/CVE-2006-4810.patch deleted file mode 100644 index f3dcc91..0000000 --- a/source/base/texinfo/CVE-2006-4810.patch +++ /dev/null @@ -1,141 +0,0 @@ ---- texinfo-4.7.orig/util/texindex.c -+++ texinfo-4.7/util/texindex.c -@@ -99,6 +99,9 @@ - /* Directory to use for temporary files. On Unix, it ends with a slash. */ - char *tempdir; - -+/* Start of filename to use for temporary files. */ -+char *tempbase; -+ - /* Number of last temporary file. */ - int tempcount; - -@@ -144,7 +147,7 @@ - void fatal (const char *format, const char *arg); - void error (const char *format, const char *arg); - void *xmalloc (), *xrealloc (); --char *concat (char *s1, char *s2); -+static char *concat3 (const char *, const char *, const char *); - void flush_tempfiles (int to_count); - - #define MAX_IN_CORE_SORT 500000 -@@ -190,6 +193,11 @@ - - decode_command (argc, argv); - -+ /* XXX mkstemp not appropriate, as we need to have somewhat predictable -+ * names. But race condition was fixed, see maketempname. -+ */ -+ tempbase = mktemp (concat3 ("txiXXXXXX", "", "")); -+ - /* Process input files completely, one by one. */ - - for (i = 0; i < num_infiles; i++) -@@ -220,7 +228,7 @@ - - outfile = outfiles[i]; - if (!outfile) -- outfile = concat (infiles[i], "s"); -+ outfile = concat3 (infiles[i], "s", ""); - - need_initials = 0; - first_initial = '\0'; -@@ -318,7 +326,7 @@ - if (tempdir == NULL) - tempdir = DEFAULT_TMPDIR; - else -- tempdir = concat (tempdir, "/"); -+ tempdir = concat3 (tempdir, "/", ""); - - keep_tempfiles = 0; - -@@ -384,26 +392,25 @@ - usage (1); - } - --/* Return a name for temporary file COUNT. */ -+/* Return a name for temporary file COUNT, or NULL if failure. */ - - static char * - maketempname (int count) - { -- static char *tempbase = NULL; - char tempsuffix[10]; -+ char *name; -+ int fd; - -- if (!tempbase) -+ sprintf (tempsuffix, ".%d", count); -+ name = concat3 (tempdir, tempbase, tempsuffix); -+ fd = open (name, O_CREAT|O_EXCL|O_WRONLY, 0600); -+ if (fd == -1) -+ return NULL; -+ else - { -- int fd; -- tempbase = concat (tempdir, "txidxXXXXXX"); -- -- fd = mkstemp (tempbase); -- if (fd == -1) -- pfatal_with_name (tempbase); -+ close(fd); -+ return(name); - } -- -- sprintf (tempsuffix, ".%d", count); -- return concat (tempbase, tempsuffix); - } - - -@@ -837,7 +844,7 @@ - { - buffer = (char *) xrealloc (buffer, linebuffer->size *= 2); - p += buffer - linebuffer->buffer; -- end += buffer - linebuffer->buffer; -+ end = buffer + linebuffer->size; - linebuffer->buffer = buffer; - } - if (c < 0 || c == '\n') -@@ -931,6 +938,8 @@ - for (i = 0; i < ntemps; i++) - { - char *newtemp = maketempname (++tempcount); -+ if (!newtemp) -+ pfatal_with_name("temp file"); - sort_in_core (tempfiles[i], MAX_IN_CORE_SORT, newtemp); - if (!keep_tempfiles) - unlink (tempfiles[i]); -@@ -1401,6 +1410,8 @@ - if (i + 1 == ntemps) - nf = nfiles - i * MAX_DIRECT_MERGE; - tempfiles[i] = maketempname (++tempcount); -+ if (!tempfiles[i]) -+ pfatal_with_name("temp file"); - value |= merge_direct (&infiles[i * MAX_DIRECT_MERGE], nf, tempfiles[i]); - } - -@@ -1612,17 +1623,18 @@ - } - - --/* Return a newly-allocated string concatenating S1 and S2. */ -+/* Return a newly-allocated string concatenating S1, S2, and S3. */ - --char * --concat (char *s1, char *s2) -+static char * -+concat3 (const char *s1, const char *s2, const char *s3) - { -- int len1 = strlen (s1), len2 = strlen (s2); -- char *result = (char *) xmalloc (len1 + len2 + 1); -+ int len1 = strlen (s1), len2 = strlen (s2), len3 = strlen (s3); -+ char *result = (char *) xmalloc (len1 + len2 + len3 + 1); - - strcpy (result, s1); - strcpy (result + len1, s2); -- *(result + len1 + len2) = 0; -+ strcpy (result + len1 + len2, s3); -+ *(result + len1 + len2 + len3) = 0; - - return result; - } diff --git a/source/base/texinfo/FrugalBuild b/source/base/texinfo/FrugalBuild index 7b44a5b..1c9c6b0 100644 --- a/source/base/texinfo/FrugalBuild +++ b/source/base/texinfo/FrugalBuild @@ -3,7 +3,7 @@ # Contributor: Laszlo Dvornik pkgname=texinfo -pkgver=4.9 +pkgver=4.11 pkgrel=1 pkgdesc="The GNU info program and utilities" url="http://www.gnu.org/software/texinfo/" @@ -14,10 +14,9 @@ groups=('base' 'chroot-core') archs=('i686' 'x86_64') options=('force') Fup2gnubz2 -source=(http://ftp.gnu.org/pub/gnu/$pkgname/$pkgname-$pkgver.tar.bz2 mkinfodir CVE-2006-4810.patch) -sha1sums=('19a0cc0b56cbfcfe610925bef31e0bdf749492c9' \ - 'd744345f082e32af0675a0b9d3287c6b8d4600a7' \ - '8ab71e415364ca70dbc3ea1d028b1989860c9d8f') +source=(http://ftp.gnu.org/pub/gnu/$pkgname/$pkgname-$pkgver.tar.bz2 mkinfodir) +sha1sums=('915a42e1278860b0fa64e4ef9d5ad4488d3b23a0' \ + 'd744345f082e32af0675a0b9d3287c6b8d4600a7') build() From crazy at frugalware.org Sun Sep 16 19:29:10 2007 From: crazy at frugalware.org (crazy) Date: Sun Sep 16 19:29:14 2007 Subject: [Frugalware-git] frugalware-current: perl-sys-syslog-0.21-1-i686 Message-ID: <20070916172910.EE6761688013@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=a37284f4328df987c8eac002052553533d8ef191 commit a37284f4328df987c8eac002052553533d8ef191 Author: crazy Date: Sun Sep 16 19:25:27 2007 +0200 perl-sys-syslog-0.21-1-i686 * Version bump diff --git a/source/devel-extra/perl-sys-syslog/FrugalBuild b/source/devel-extra/perl-sys-syslog/FrugalBuild index a23a93d..a811ab5 100644 --- a/source/devel-extra/perl-sys-syslog/FrugalBuild +++ b/source/devel-extra/perl-sys-syslog/FrugalBuild @@ -3,11 +3,11 @@ _F_perl_name=Sys-Syslog _F_perl_author=S/SA/SAPER -pkgver=0.20 +pkgver=0.21 pkgrel=1 pkgdesc="Perl interface to the UNIX syslog(3) calls" Finclude perl archs=('i686' 'x86_64') -sha1sums=('0ac71dd8f8b687de0132a969c20b8d9bbe8c712f') +sha1sums=('1f955ed78a0ce73fae5e1591aee77ad6fc1e03ca') # optimization OK From crazy at frugalware.org Sun Sep 16 19:31:34 2007 From: crazy at frugalware.org (crazy) Date: Sun Sep 16 19:31:40 2007 Subject: [Frugalware-git] frugalware-current: perl-archive-tar-1.36-1-i686 Message-ID: <20070916173134.645CD1678012@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=d4c93cb0042cbedf3d020bc110a9b86e6295af96 commit d4c93cb0042cbedf3d020bc110a9b86e6295af96 Author: crazy Date: Sun Sep 16 19:27:49 2007 +0200 perl-archive-tar-1.36-1-i686 * Version bump diff --git a/source/devel-extra/perl-archive-tar/FrugalBuild b/source/devel-extra/perl-archive-tar/FrugalBuild index d30632e..eff10f4 100644 --- a/source/devel-extra/perl-archive-tar/FrugalBuild +++ b/source/devel-extra/perl-archive-tar/FrugalBuild @@ -3,11 +3,11 @@ _F_perl_name=Archive-Tar _F_perl_author=K/KA/KANE -pkgver=1.34 +pkgver=1.36 pkgrel=1 pkgdesc="module for manipulations of tar archives" depends=('perl-io-zlib') Finclude perl archs=('i686' 'x86_64') -sha1sums=('b9b7c078a75a0fef7aaccb0d350720fcdb6a3c11') +sha1sums=('ad248b1f40e229f5bc1b6291a52364442df81b7d') From crazy at frugalware.org Sun Sep 16 19:41:43 2007 From: crazy at frugalware.org (crazy) Date: Sun Sep 16 19:41:45 2007 Subject: [Frugalware-git] frugalware-current: anthy-9100b-1-i686 Message-ID: <20070916174143.216D51678012@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=69db0b4d486ce2a5beaffafbed75d582be023423 commit 69db0b4d486ce2a5beaffafbed75d582be023423 Author: crazy Date: Sun Sep 16 19:35:48 2007 +0200 anthy-9100b-1-i686 * Version bump diff --git a/source/lib-extra/anthy/FrugalBuild b/source/lib-extra/anthy/FrugalBuild index 21b33b8..2d5562e 100644 --- a/source/lib-extra/anthy/FrugalBuild +++ b/source/lib-extra/anthy/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: crazy pkgname=anthy -pkgver=9100 +pkgver=9100b pkgrel=1 pkgdesc="Free and secure Japanese conversion engine." url="http://anthy.sourceforge.jp/" @@ -12,8 +12,8 @@ groups=('lib-extra') archs=('i686' 'x86_64') ## LOL up2date="lynx -dump $urlweird|grep 'anthy-'|grep '.tar.gz'|sed -e 's|.*-||g' -e 's|.tar.gz.*||g'|sort -n -r|head -n 1" -source=(http://keihanna.dl.sourceforge.jp/$pkgname/26131/$pkgname-$pkgver.tar.gz) -sha1sums=('2e49613de5f85a42e15d8281ee47668d85d8a2a1') +source=(http://osdn.dl.sourceforge.jp/anthy/27175/$pkgname-$pkgver.tar.gz) +sha1sums=('104e3f8fbfc4c6da740570ebe430b8302bd96034') #unset MAKEFLAGS # optimization OK From crazy at frugalware.org Sun Sep 16 19:47:49 2007 From: crazy at frugalware.org (crazy) Date: Sun Sep 16 19:47:50 2007 Subject: [Frugalware-git] frugalware-current: 7zip-4.55-1-i686 Message-ID: <20070916174749.161F11678012@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=2b363f4002b3ae79742d9e96b968fdf7ad780457 commit 2b363f4002b3ae79742d9e96b968fdf7ad780457 Author: crazy Date: Sun Sep 16 19:43:27 2007 +0200 7zip-4.55-1-i686 * Version bump diff --git a/source/apps-extra/7zip/FrugalBuild b/source/apps-extra/7zip/FrugalBuild index 027153d..c8ec621 100644 --- a/source/apps-extra/7zip/FrugalBuild +++ b/source/apps-extra/7zip/FrugalBuild @@ -3,7 +3,7 @@ # Contributor: Tuxbubling pkgname=7zip -pkgver=4.53 +pkgver=4.55 pkgrel=1 pkgdesc="7-Zip is a file archiver with high compression ratio." _F_sourceforge_name="p7zip" @@ -36,5 +36,5 @@ build() } -sha1sums=('5776025e49d14f3148d2a9b5d3d067bb19c6d745') +sha1sums=('7dd6f75c031f15f3d379af3e208e2e4d65f55bb7') # optimization OK From crazy at frugalware.org Sun Sep 16 20:23:56 2007 From: crazy at frugalware.org (crazy) Date: Sun Sep 16 20:23:59 2007 Subject: [Frugalware-git] frugalware-current: wine-0.9.45-1-i686 Message-ID: <20070916182356.4653C1678012@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=8deb99b4e1f711775bca839fd40b6ecaf2adbb71 commit 8deb99b4e1f711775bca839fd40b6ecaf2adbb71 Author: crazy Date: Sun Sep 16 20:11:17 2007 +0200 wine-0.9.45-1-i686 * Version bump diff --git a/source/xapps/wine/FrugalBuild b/source/xapps/wine/FrugalBuild index 57d0228..180e32a 100644 --- a/source/xapps/wine/FrugalBuild +++ b/source/xapps/wine/FrugalBuild @@ -3,7 +3,7 @@ # Contributor: VMiklos pkgname=wine -pkgver=0.9.44 +pkgver=0.9.45 pkgrel=1 pkgdesc="An Open Source implementation of the Windows API on top of X and Unix" _F_sourceforge_ext=".tar.bz2" @@ -30,7 +30,7 @@ build() Frcd2 } -sha1sums=('77f820444198688085b3148ca0054bdf8aebf839' \ +sha1sums=('87a0282bb5020c26a3f35a10d39140c30764c327' \ 'a9c70a49cef90cf60c2e90e63753858387f7117a' \ 'd014c926facb1cf4a2f025d6b92e5a0b25a19f3e' \ '8b0f7b52885c8d78ba3096a16e9caff60ffe624f') From crazy at frugalware.org Sun Sep 16 20:54:44 2007 From: crazy at frugalware.org (crazy) Date: Sun Sep 16 20:54:47 2007 Subject: [Frugalware-git] frugalware-current: dejavu-ttf-2.20-1-i686 Message-ID: <20070916185444.1146D1678012@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=6943ce98e8d54ce5566260e3ed0d722652a93339 commit 6943ce98e8d54ce5566260e3ed0d722652a93339 Author: crazy Date: Sun Sep 16 20:49:28 2007 +0200 dejavu-ttf-2.20-1-i686 * Version bump diff --git a/source/x11/dejavu-ttf/FrugalBuild b/source/x11/dejavu-ttf/FrugalBuild index 22fc29d..c612108 100644 --- a/source/x11/dejavu-ttf/FrugalBuild +++ b/source/x11/dejavu-ttf/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: crazy pkgname=dejavu-ttf -pkgver=2.19 +pkgver=2.20 pkgrel=1 pkgdesc="DejaVu fonts" _F_sourceforge_dirname="dejavu" @@ -30,5 +30,5 @@ build() Ffilerel *.xml /usr/share/fop } -sha1sums=('0f860e0f7bb29c8f6a478c49acbbcde87c505069' \ +sha1sums=('e737c60da900fd844fab2da1c8eb2eb558c30935' \ '3578ab6beff7c455e7575006760e5f73c3d05093') From crazy at frugalware.org Sun Sep 16 20:57:09 2007 From: crazy at frugalware.org (crazy) Date: Sun Sep 16 20:57:11 2007 Subject: [Frugalware-git] frugalware-current: dejavu-lgc-ttf-2.20-1-i686 Message-ID: <20070916185709.7FA9D1678012@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=cc92367a36d5fc5e1e66cc6e786be93b7260aeaa commit cc92367a36d5fc5e1e66cc6e786be93b7260aeaa Author: crazy Date: Sun Sep 16 20:52:17 2007 +0200 dejavu-lgc-ttf-2.20-1-i686 * Version bump diff --git a/source/x11/dejavu-lgc-ttf/FrugalBuild b/source/x11/dejavu-lgc-ttf/FrugalBuild index 615aa67..8d78042 100644 --- a/source/x11/dejavu-lgc-ttf/FrugalBuild +++ b/source/x11/dejavu-lgc-ttf/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: crazy pkgname=dejavu-lgc-ttf -pkgver=2.19 +pkgver=2.20 pkgrel=1 pkgdesc="DejaVu fonts (LGC)" _F_sourceforge_dirname="dejavu" @@ -20,4 +20,4 @@ build() Ffilerel *.ttf /usr/lib/X11/fonts/TTF } -sha1sums=('a420c0b16bb25024d47ac3278550b4596bbc9ab9') +sha1sums=('6b331cc0a54443c4a86b607bf0a93583ae2b58c7') From crazy at frugalware.org Sun Sep 16 20:59:00 2007 From: crazy at frugalware.org (crazy) Date: Sun Sep 16 20:59:01 2007 Subject: [Frugalware-git] frugalware-current: kiwi-1.9.18-1-i686 Message-ID: <20070916185900.567F11678012@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=7124e59cd13ca34ae85f4984fcb0ab36b1d7d87c commit 7124e59cd13ca34ae85f4984fcb0ab36b1d7d87c Author: crazy Date: Sun Sep 16 20:55:10 2007 +0200 kiwi-1.9.18-1-i686 * Version bump diff --git a/source/xlib-extra/kiwi/FrugalBuild b/source/xlib-extra/kiwi/FrugalBuild index b9de3eb..0554ada 100644 --- a/source/xlib-extra/kiwi/FrugalBuild +++ b/source/xlib-extra/kiwi/FrugalBuild @@ -3,7 +3,7 @@ # Contributor: BMH1980 pkgname=kiwi -pkgver=1.9.17 +pkgver=1.9.18 pkgrel=1 pkgdesc="A framework for Python applications with graphical user interfaces" url="http://www.async.com.br/projects/kiwi/" @@ -13,4 +13,4 @@ up2date="lynx -dump http://www.async.com.br/projects/kiwi/getit.html|grep -m1 'k groups=('xlib-extra') archs=('i686' 'x86_64') depends=('pygtk') -sha1sums=('b54f7221cc841e0084317fb6b3eb3d1ed986a059') +sha1sums=('c1b61fc762e671447997173e115d1f7091220dca') From crazy at frugalware.org Sun Sep 16 21:20:35 2007 From: crazy at frugalware.org (crazy) Date: Sun Sep 16 21:20:37 2007 Subject: [Frugalware-git] frugalware-current: reiser4progs-1.0.6-1-i686 Message-ID: <20070916192035.164841678012@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=e524dfb575dee8da2a9c9bc1ebfcbe90b3a9f40e commit e524dfb575dee8da2a9c9bc1ebfcbe90b3a9f40e Author: crazy Date: Sun Sep 16 21:16:39 2007 +0200 reiser4progs-1.0.6-1-i686 * Version bump diff --git a/source/apps/reiser4progs/FrugalBuild b/source/apps/reiser4progs/FrugalBuild index e9af6a7..faed0b1 100644 --- a/source/apps/reiser4progs/FrugalBuild +++ b/source/apps/reiser4progs/FrugalBuild @@ -3,27 +3,33 @@ # Contributor: Laszlo Dvornik pkgname=reiser4progs -pkgver=1.0.5 -origver=1.0.5 -pkgrel=2 +pkgver=1.0.6 +pkgrel=1 pkgdesc="Utilities for Reiser4 filesystems" url="http://www.namesys.com/" depends=('e2fsprogs' 'readline' 'libaal=1.0.5') groups=('apps') archs=('i686' 'x86_64') up2date="lynx -dump 'http://ftp.namesys.com/pub/reiser4progs/?M=D'|grep reiser4progs-[0-9\.\-]*.tar.gz|sed -n 's/.*s-\(.*\).t.*/\1/;s/-/_/;1 p'" -source=(http://ftp.namesys.com/pub/$pkgname/$pkgname-$origver.tar.gz) -sha1sums=('c2a173d34a87776da79a13c85b17cd3a14fb3abc') +source=(http://ftp.namesys.com/pub/$pkgname/$pkgname-$pkgver.tar.gz) +sha1sums=('9acc4f829c5760ee159cb3f507e58478e578990d') build() { - Fcd $pkgname-$origver + Fcd Fsed "-O3" "" configure Fsed "./run-ldconfig" "#./run-ldconfig" Makefile.{in,am} - Fbuild --sbindir=/sbin --libdir=/lib \ - --disable-fnv1-hash --disable-rupasov-hash --disable-tea-hash \ - --disable-deg-hash --disable-short-keys --disable-special \ - --disable-dot_o_fibre --disable-ext_3_fibre \ + Fbuild \ + --sbindir=/sbin \ + --libdir=/lib \ + --disable-fnv1-hash \ + --disable-rupasov-hash \ + --disable-tea-hash \ + --disable-deg-hash \ + --disable-short-keys \ + --disable-special \ + --disable-dot_o_fibre \ + --disable-ext_3_fibre \ --disable-lexic_fibre } From crazy at frugalware.org Sun Sep 16 21:28:51 2007 From: crazy at frugalware.org (crazy) Date: Sun Sep 16 21:28:53 2007 Subject: [Frugalware-git] frugalware-current: gwenview-1.4.2-1-i686 Message-ID: <20070916192851.0CF601678012@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=ff3f377dab793b178356c89144a3a59c9ba28f56 commit ff3f377dab793b178356c89144a3a59c9ba28f56 Author: crazy Date: Sun Sep 16 21:24:44 2007 +0200 gwenview-1.4.2-1-i686 * Version bump diff --git a/source/kde-extra/gwenview/FrugalBuild b/source/kde-extra/gwenview/FrugalBuild index dd7a5ff..3ded440 100644 --- a/source/kde-extra/gwenview/FrugalBuild +++ b/source/kde-extra/gwenview/FrugalBuild @@ -2,8 +2,8 @@ # Maintainer: crazy pkgname=gwenview -pkgver=1.4.1 -pkgrel=5 +pkgver=1.4.2 +pkgrel=1 pkgdesc="Gwenview is an image viewer for KDE." depends=('kdelibs>=3.5.7' 'libkipi' 'exiv2>=0.15') groups=('kde-extra') @@ -13,5 +13,5 @@ _F_kde_defaults=0 Finclude sourceforge kde Fconfopts="$Fconfopts --with-kipi" -sha1sums=('f882be7ccb1931a8218407dde27f118e3201c8c1') +sha1sums=('d2168b48eb7f27b4338681acc49b5b2a51268209') # optimization OK From vmiklos at frugalware.org Sun Sep 16 21:34:57 2007 From: vmiklos at frugalware.org (VMiklos) Date: Sun Sep 16 21:34:59 2007 Subject: [Frugalware-git] frugalware-current: libsigc++2-2.0.18-1-i686 Message-ID: <20070916193457.9E6691678012@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=414f8732d298bbca4329e6eb83331478b2948e83 commit 414f8732d298bbca4329e6eb83331478b2948e83 Author: VMiklos Date: Sun Sep 16 21:34:21 2007 +0200 libsigc++2-2.0.18-1-i686 version bump diff --git a/source/lib/libsigc++2/FrugalBuild b/source/lib/libsigc++2/FrugalBuild index 282cea9..48687af 100644 --- a/source/lib/libsigc++2/FrugalBuild +++ b/source/lib/libsigc++2/FrugalBuild @@ -3,8 +3,8 @@ # Contributor: Shrift pkgname=libsigc++2 -pkgver=2.0.17 -pkgrel=3 +pkgver=2.0.18 +pkgrel=1 pkgdesc="A typesafe callback framework for C++" url="http://libsigc.sourceforge.net/" depends=('libstdc++') @@ -12,7 +12,7 @@ groups=('lib') archs=('i686' 'x86_64') _F_gnome_name="libsigc++" Finclude gnome -sha1sums=('5948b6830ee3ea5d550097b2879249382b6c729c') +sha1sums=('75df46c977a3418bda4d5ae7e21c9ede28993835') _F_cd_path="${_F_gnome_name}-${pkgver}" # optimization ok From crazy at frugalware.org Sun Sep 16 21:48:00 2007 From: crazy at frugalware.org (crazy) Date: Sun Sep 16 21:48:01 2007 Subject: [Frugalware-git] frugalware-current: nemesi-0.6.0-2-i686 Message-ID: <20070916194800.BB96E1678012@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=8588d26f2befbec97d028fef7c3e704a25ab9d11 commit 8588d26f2befbec97d028fef7c3e704a25ab9d11 Author: crazy Date: Sun Sep 16 21:38:49 2007 +0200 nemesi-0.6.0-2-i686 * mute up2date for now .. * it died and replacment exists only in git now diff --git a/source/xmultimedia-extra/nemesi/FrugalBuild b/source/xmultimedia-extra/nemesi/FrugalBuild index 46755e6..90a95f5 100644 --- a/source/xmultimedia-extra/nemesi/FrugalBuild +++ b/source/xmultimedia-extra/nemesi/FrugalBuild @@ -11,7 +11,8 @@ makedepends=('xespgs' 'groff') groups=('xmultimedia-extra') options=('scriptlet') archs=('i686') ## !x86_64 I think :| -up2date="lynx -dump http://streaming.polito.it/downloads/client|grep -m1 '.tar.bz2'|sed 's/.*-\(.*\).t.*/\1/'" +up2date="$pkgver" +#up2date="lynx -dump http://streaming.polito.it/downloads/client|grep -m1 '.tar.bz2'|sed 's/.*-\(.*\).t.*/\1/'" source=(http://streaming.polito.it/files/$pkgname-$pkgver.tar.bz2 kill-hardcoded-cflags.patch) sha1sums=('5f78e2e2feeb61bef312df373fb65dc8fb671f22' \ 'e5b5441f30fb8b4d96282600c8aa527a14183945') From crazy at frugalware.org Sun Sep 16 21:49:57 2007 From: crazy at frugalware.org (crazy) Date: Sun Sep 16 21:49:58 2007 Subject: [Frugalware-git] frugalware-current: libnms-0.6.0-1-i686 Message-ID: <20070916194957.0E7831678012@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=a4a22cd9e33066d769c2742e1873bb128d47c290 commit a4a22cd9e33066d769c2742e1873bb128d47c290 Author: crazy Date: Sun Sep 16 21:46:20 2007 +0200 libnms-0.6.0-1-i686 * mute up2date here as well diff --git a/source/multimedia-extra/libnms/FrugalBuild b/source/multimedia-extra/libnms/FrugalBuild index 81baa33..81584a2 100644 --- a/source/multimedia-extra/libnms/FrugalBuild +++ b/source/multimedia-extra/libnms/FrugalBuild @@ -9,7 +9,8 @@ url="http://streaming.polito.it/client/library" depends=('glibc') groups=('multimedia-extra') archs=('i686' 'x86_64') -up2date="lynx -dump http://streaming.polito.it/downloads/libnms|grep -m1 '.tar.bz2'|sed 's/.*-\(.*\).t.*/\1/'" +up2date="$pkgver" +#up2date="lynx -dump http://streaming.polito.it/downloads/libnms|grep -m1 '.tar.bz2'|sed 's/.*-\(.*\).t.*/\1/'" source=(http://streaming.polito.it/files/$pkgname-$pkgver.tar.bz2) sha1sums=('914676b86c1eb15068a95984b197796693bbfe99') From vmiklos at frugalware.org Sun Sep 16 22:23:53 2007 From: vmiklos at frugalware.org (VMiklos) Date: Sun Sep 16 22:23:57 2007 Subject: [Frugalware-git] frugalware-current: apr-util-1.2.10-1-x86_64 Message-ID: <20070916202353.4218D1678012@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=432538a55835e1d92cf094c88ed25e3b0c084a4e commit 432538a55835e1d92cf094c88ed25e3b0c084a4e Author: VMiklos Date: Sun Sep 16 22:23:30 2007 +0200 apr-util-1.2.10-1-x86_64 version bump ok crzay@ diff --git a/source/network/apr-util/FrugalBuild b/source/network/apr-util/FrugalBuild index 6f7acaa..6f2aab5 100644 --- a/source/network/apr-util/FrugalBuild +++ b/source/network/apr-util/FrugalBuild @@ -2,8 +2,8 @@ # Maintainer: crazy pkgname=apr-util -pkgver=1.2.8 -pkgrel=3 +pkgver=1.2.10 +pkgrel=1 pkgdesc="Apache Portable Runtime" url="http://apr.apache.org/" depends=('apr=1.2.9' 'db>=4.6.18' 'gdbm' 'expat') @@ -17,6 +17,6 @@ Fconfopts="$Fconfopts --with-apr=/usr \ --with-berkeley-db \ --with-threads \ --enable-layout=RedHat" -sha1sums=('cef58fe4c282e7b449cd49d568914c8f4ee7cdc9') +sha1sums=('2ef492de9c7d77b0b2d9b22b532c5e1256ebfd87') # optimization OK From vmiklos at frugalware.org Sun Sep 16 22:36:16 2007 From: vmiklos at frugalware.org (VMiklos) Date: Sun Sep 16 22:36:19 2007 Subject: [Frugalware-git] frugalware-current: apr-1.2.11-1-x86_64 Message-ID: <20070916203616.5F4C81678012@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=0b0f58ddb355bd66d2f462e2060751c71ce8f653 commit 0b0f58ddb355bd66d2f462e2060751c71ce8f653 Author: VMiklos Date: Sun Sep 16 22:35:53 2007 +0200 apr-1.2.11-1-x86_64 version bump ok crazy@ diff --git a/source/network/apr/FrugalBuild b/source/network/apr/FrugalBuild index 231642f..2f90fb9 100644 --- a/source/network/apr/FrugalBuild +++ b/source/network/apr/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: crazy pkgname=apr -pkgver=1.2.9 +pkgver=1.2.11 pkgrel=1 pkgdesc="Apache Portable Runtime" url="http://apr.apache.org/" @@ -12,6 +12,6 @@ archs=('i686' 'x86_64') up2date="lynx -dump $url/download.cgi|grep tar.gz$ |sed 's/.*-\(.*\)\.t.*/\1/;q'" source=(http://apache.mirror.iphh.net/$pkgname/$pkgname-$pkgver.tar.gz) Fconfopts="$Fconfopts --with-gnu-ld --with-threads --enable-layout=RedHat" -sha1sums=('289657da57a6e7392c665dc9b44ada491724b537') +sha1sums=('bde2c8b6e477752bcac4f387ac0de9671cd15d1a') # optimization OK From vmiklos at frugalware.org Sun Sep 16 22:46:01 2007 From: vmiklos at frugalware.org (VMiklos) Date: Sun Sep 16 22:46:04 2007 Subject: [Frugalware-git] frugalware-current: apr-util-1.2.10-2-x86_64 Message-ID: <20070916204601.E9BC81678012@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=dd9cf243a75dc64e93435c151795da6eade45995 commit dd9cf243a75dc64e93435c151795da6eade45995 Author: VMiklos Date: Sun Sep 16 22:45:52 2007 +0200 apr-util-1.2.10-2-x86_64 - built with apr=1.2.11 - i should learn bumping packages in the right order.. diff --git a/source/network/apr-util/FrugalBuild b/source/network/apr-util/FrugalBuild index 6f2aab5..c82adbb 100644 --- a/source/network/apr-util/FrugalBuild +++ b/source/network/apr-util/FrugalBuild @@ -3,10 +3,10 @@ pkgname=apr-util pkgver=1.2.10 -pkgrel=1 +pkgrel=2 pkgdesc="Apache Portable Runtime" url="http://apr.apache.org/" -depends=('apr=1.2.9' 'db>=4.6.18' 'gdbm' 'expat') +depends=('apr=1.2.11' 'db>=4.6.18' 'gdbm' 'expat') groups=('network') archs=('i686' 'x86_64') up2date="lynx -dump http://apache.mirror.iphh.net/apr/|grep 'apr-util-\(.*\).tar.bz2$'|Flasttarbz2" From vmiklos at frugalware.org Sun Sep 16 23:10:48 2007 From: vmiklos at frugalware.org (VMiklos) Date: Sun Sep 16 23:10:50 2007 Subject: [Frugalware-git] frugalware-current: apache-2.2.6-1-x86_64 Message-ID: <20070916211048.2E45C1678012@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=7453f45bc75eb87083d7357301e23efc68dae910 commit 7453f45bc75eb87083d7357301e23efc68dae910 Author: VMiklos Date: Sun Sep 16 23:09:47 2007 +0200 apache-2.2.6-1-x86_64 version bump removed CVE-*.patch diff --git a/source/network/apache/CVE-2006-5752.patch b/source/network/apache/CVE-2006-5752.patch deleted file mode 100644 index da8de63..0000000 --- a/source/network/apache/CVE-2006-5752.patch +++ /dev/null @@ -1,40 +0,0 @@ ---- trunk/modules/generators/mod_status.c 2007/06/20 17:22:08 549158 -+++ trunk/modules/generators/mod_status.c 2007/06/20 17:29:24 549159 -@@ -270,7 +270,7 @@ - if (r->method_number != M_GET) - return DECLINED; - -- ap_set_content_type(r, "text/html"); -+ ap_set_content_type(r, "text/html; charset=ISO-8859-1"); - - /* - * Simple table-driven form data set parser that lets you alter the header -@@ -299,7 +299,7 @@ - no_table_report = 1; - break; - case STAT_OPT_AUTO: -- ap_set_content_type(r, "text/plain"); -+ ap_set_content_type(r, "text/plain; charset=ISO-8859-1"); - short_report = 1; - break; - } -@@ -673,7 +673,8 @@ - ap_escape_html(r->pool, - ws_record->client), - ap_escape_html(r->pool, -- ws_record->request), -+ ap_escape_logitem(r->pool, -+ ws_record->request)), - ap_escape_html(r->pool, - ws_record->vhost)); - } -@@ -763,7 +764,8 @@ - ap_escape_html(r->pool, - ws_record->vhost), - ap_escape_html(r->pool, -- ws_record->request)); -+ ap_escape_logitem(r->pool, -+ ws_record->request))); - } /* no_table_report */ - } /* for (j...) */ - } /* for (i...) */ diff --git a/source/network/apache/CVE-2007-1863.patch b/source/network/apache/CVE-2007-1863.patch deleted file mode 100644 index ac94b36..0000000 --- a/source/network/apache/CVE-2007-1863.patch +++ /dev/null @@ -1,74 +0,0 @@ ---- trunk/modules/cache/cache_util.c 2007/05/06 14:17:08 535616 -+++ trunk/modules/cache/cache_util.c 2007/05/06 14:35:02 535617 -@@ -243,7 +243,8 @@ - age = ap_cache_current_age(info, age_c, r->request_time); - - /* extract s-maxage */ -- if (cc_cresp && ap_cache_liststr(r->pool, cc_cresp, "s-maxage", &val)) { -+ if (cc_cresp && ap_cache_liststr(r->pool, cc_cresp, "s-maxage", &val) -+ && val != NULL) { - smaxage = apr_atoi64(val); - } - else { -@@ -252,7 +253,8 @@ - - /* extract max-age from request */ - if (!conf->ignorecachecontrol -- && cc_req && ap_cache_liststr(r->pool, cc_req, "max-age", &val)) { -+ && cc_req && ap_cache_liststr(r->pool, cc_req, "max-age", &val) -+ && val != NULL) { - maxage_req = apr_atoi64(val); - } - else { -@@ -260,7 +262,8 @@ - } - - /* extract max-age from response */ -- if (cc_cresp && ap_cache_liststr(r->pool, cc_cresp, "max-age", &val)) { -+ if (cc_cresp && ap_cache_liststr(r->pool, cc_cresp, "max-age", &val) -+ && val != NULL) { - maxage_cresp = apr_atoi64(val); - } - else { -@@ -282,7 +285,20 @@ - - /* extract max-stale */ - if (cc_req && ap_cache_liststr(r->pool, cc_req, "max-stale", &val)) { -- maxstale = apr_atoi64(val); -+ if(val != NULL) { -+ maxstale = apr_atoi64(val); -+ } -+ else { -+ /* -+ * If no value is assigned to max-stale, then the client is willing -+ * to accept a stale response of any age (RFC2616 14.9.3). We will -+ * set it to one year in this case as this situation is somewhat -+ * similar to a "never expires" Expires header (RFC2616 14.21) -+ * which is set to a date one year from the time the response is -+ * sent in this case. -+ */ -+ maxstale = APR_INT64_C(86400*365); -+ } - } - else { - maxstale = 0; -@@ -290,7 +306,8 @@ - - /* extract min-fresh */ - if (!conf->ignorecachecontrol -- && cc_req && ap_cache_liststr(r->pool, cc_req, "min-fresh", &val)) { -+ && cc_req && ap_cache_liststr(r->pool, cc_req, "min-fresh", &val) -+ && val != NULL) { - minfresh = apr_atoi64(val); - } - else { -@@ -418,6 +435,9 @@ - *val = apr_pstrmemdup(p, val_start, - next - val_start); - } -+ } -+ else { -+ *val = NULL; - } - } - return 1; diff --git a/source/network/apache/CVE-2007-3304.patch b/source/network/apache/CVE-2007-3304.patch deleted file mode 100644 index 2103e2d..0000000 --- a/source/network/apache/CVE-2007-3304.patch +++ /dev/null @@ -1,222 +0,0 @@ -Index: server/mpm/prefork/prefork.c -=================================================================== ---- server/mpm/prefork/prefork.c (revision 551928) -+++ server/mpm/prefork/prefork.c (working copy) -@@ -1127,7 +1127,7 @@ - for (index = 0; index < ap_daemons_limit; ++index) { - if (ap_scoreboard_image->servers[index][0].status != SERVER_DEAD) { - /* Ask each child to close its listeners. */ -- kill(MPM_CHILD_PID(index), AP_SIG_GRACEFUL); -+ ap_mpm_safe_kill(MPM_CHILD_PID(index), AP_SIG_GRACEFUL); - active_children++; - } - } -@@ -1165,12 +1165,10 @@ - - active_children = 0; - for (index = 0; index < ap_daemons_limit; ++index) { -- if (MPM_CHILD_PID(index) != 0) { -- if (kill(MPM_CHILD_PID(index), 0) == 0) { -- active_children = 1; -- /* Having just one child is enough to stay around */ -- break; -- } -+ if (ap_mpm_safe_kill(MPM_CHILD_PID(index), 0) == APR_SUCCESS) { -+ active_children = 1; -+ /* Having just one child is enough to stay around */ -+ break; - } - } - } while (!shutdown_pending && active_children && -@@ -1222,7 +1220,7 @@ - * piped loggers, etc. They almost certainly won't handle - * it gracefully. - */ -- kill(ap_scoreboard_image->parent[index].pid, AP_SIG_GRACEFUL); -+ ap_mpm_safe_kill(ap_scoreboard_image->parent[index].pid, AP_SIG_GRACEFUL); - } - } - } -Index: server/mpm/worker/worker.c -=================================================================== ---- server/mpm/worker/worker.c (revision 551928) -+++ server/mpm/worker/worker.c (working copy) -@@ -1813,12 +1813,10 @@ - - active_children = 0; - for (index = 0; index < ap_daemons_limit; ++index) { -- if (MPM_CHILD_PID(index) != 0) { -- if (kill(MPM_CHILD_PID(index), 0) == 0) { -- active_children = 1; -- /* Having just one child is enough to stay around */ -- break; -- } -+ if (ap_mpm_safe_kill(MPM_CHILD_PID(index), 0) == APR_SUCCESS) { -+ active_children = 1; -+ /* Having just one child is enough to stay around */ -+ break; - } - } - } while (!shutdown_pending && active_children && -Index: server/mpm/experimental/event/event.c -=================================================================== ---- server/mpm/experimental/event/event.c (revision 551928) -+++ server/mpm/experimental/event/event.c (working copy) -@@ -1998,12 +1998,10 @@ - - active_children = 0; - for (index = 0; index < ap_daemons_limit; ++index) { -- if (MPM_CHILD_PID(index) != 0) { -- if (kill(MPM_CHILD_PID(index), 0) == 0) { -- active_children = 1; -- /* Having just one child is enough to stay around */ -- break; -- } -+ if (ap_mpm_safe_kill(MPM_CHILD_PID(index), 0) == APR_SUCCESS) { -+ active_children = 1; -+ /* Having just one child is enough to stay around */ -+ break; - } - } - } while (!shutdown_pending && active_children && -Index: server/mpm_common.c -=================================================================== ---- server/mpm_common.c (revision 551928) -+++ server/mpm_common.c (working copy) -@@ -126,6 +126,11 @@ - apr_proc_t proc; - apr_status_t waitret; - -+ /* Ensure pid sanity. */ -+ if (pid < 1) { -+ return 1; -+ } -+ - proc.pid = pid; - waitret = apr_proc_wait(&proc, NULL, NULL, APR_NOWAIT); - if (waitret != APR_CHILD_NOTDONE) { -@@ -305,6 +310,66 @@ - cur_extra = next; - } - } -+ -+/* Before sending the signal to the pid this function verifies that -+ * the pid is a member of the current process group; either using -+ * apr_proc_wait(), where waitpid() guarantees to fail for non-child -+ * processes; or by using getpgid() directly, if available. */ -+apr_status_t ap_mpm_safe_kill(pid_t pid, int sig) -+{ -+#ifndef HAVE_GETPGID -+ apr_proc_t proc; -+ apr_status_t rv; -+ apr_exit_why_e why; -+ int status; -+ -+ /* Ensure pid sanity */ -+ if (pid < 1) { -+ return APR_EINVAL; -+ } -+ -+ proc.pid = pid; -+ rv = apr_proc_wait(&proc, &status, &why, APR_NOWAIT); -+ if (rv == APR_CHILD_DONE) { -+#ifdef AP_MPM_WANT_PROCESS_CHILD_STATUS -+ /* The child already died - log the termination status if -+ * necessary: */ -+ ap_process_child_status(&proc, why, status); -+#endif -+ return APR_EINVAL; -+ } -+ else if (rv != APR_CHILD_NOTDONE) { -+ /* The child is already dead and reaped, or was a bogus pid - -+ * log this either way. */ -+ ap_log_error(APLOG_MARK, APLOG_NOTICE, rv, ap_server_conf, -+ "cannot send signal %d to pid %ld (non-child or " -+ "already dead)", sig, (long)pid); -+ return APR_EINVAL; -+ } -+#else -+ pid_t pg; -+ -+ /* Ensure pid sanity. */ -+ if (pid < 1) { -+ return APR_EINVAL; -+ } -+ -+ pg = getpgid(pid); -+ if (pg == -1) { -+ /* Process already dead... */ -+ return errno; -+ } -+ -+ if (pg != getpgrp()) { -+ ap_log_error(APLOG_MARK, APLOG_ALERT, 0, ap_server_conf, -+ "refusing to send signal %d to pid %ld outside " -+ "process group", sig, (long)pid); -+ return APR_EINVAL; -+ } -+#endif -+ -+ return kill(pid, sig) ? errno : APR_SUCCESS; -+} - #endif /* AP_MPM_WANT_RECLAIM_CHILD_PROCESSES */ - - #ifdef AP_MPM_WANT_WAIT_OR_TIMEOUT -Index: include/mpm_common.h -=================================================================== ---- include/mpm_common.h (revision 551928) -+++ include/mpm_common.h (working copy) -@@ -145,6 +145,19 @@ - #endif - - /** -+ * Safely signal an MPM child process, if the process is in the -+ * current process group. Otherwise fail. -+ * @param pid the process id of a child process to signal -+ * @param sig the signal number to send -+ * @return APR_SUCCESS if signal is sent, otherwise an error as per kill(3); -+ * APR_EINVAL is returned if passed either an invalid (< 1) pid, or if -+ * the pid is not in the current process group -+ */ -+#ifdef AP_MPM_WANT_RECLAIM_CHILD_PROCESSES -+apr_status_t ap_mpm_safe_kill(pid_t pid, int sig); -+#endif -+ -+/** - * Determine if any child process has died. If no child process died, then - * this process sleeps for the amount of time specified by the MPM defined - * macro SCOREBOARD_MAINTENANCE_INTERVAL. -Index: include/ap_mmn.h -=================================================================== ---- include/ap_mmn.h (revision 551928) -+++ include/ap_mmn.h (working copy) -@@ -113,6 +113,8 @@ - * 20051115.3 (2.2.3) Added server_scheme member to server_rec (minor) - * 20051115.4 (2.2.4) Added ap_get_server_banner() and - * ap_get_server_description() (minor) -+ * 20051115.5 (2.2.5) Added ap_mpm_safe_kill() (minor) -+ * - */ - - #define MODULE_MAGIC_COOKIE 0x41503232UL /* "AP22" */ -@@ -120,7 +122,7 @@ - #ifndef MODULE_MAGIC_NUMBER_MAJOR - #define MODULE_MAGIC_NUMBER_MAJOR 20051115 - #endif --#define MODULE_MAGIC_NUMBER_MINOR 4 /* 0...n */ -+#define MODULE_MAGIC_NUMBER_MINOR 5 /* 0...n */ - - /** - * Determine if the server's current MODULE_MAGIC_NUMBER is at least a -Index: configure.in -=================================================================== ---- configure.in (revision 551928) -+++ configure.in (working copy) -@@ -392,6 +392,7 @@ - bindprocessor \ - prctl \ - timegm \ -+getpgid - ) - - dnl confirm that a void pointer is large enough to store a long integer diff --git a/source/network/apache/CVE-2007-3847.patch b/source/network/apache/CVE-2007-3847.patch deleted file mode 100644 index e4a8ea2..0000000 --- a/source/network/apache/CVE-2007-3847.patch +++ /dev/null @@ -1,86 +0,0 @@ ---- 2.2.x/modules/proxy/proxy_util.c 2007/07/17 17:12:58 556972 -+++ 2.2.x/modules/proxy/proxy_util.c 2007/08/06 17:27:09 563198 -@@ -280,70 +280,28 @@ - return NULL; - } - --static const char * const lwday[7] = --{"Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"}; -- - /* - * If the date is a valid RFC 850 date or asctime() date, then it -- * is converted to the RFC 1123 format, otherwise it is not modified. -- * This routine is not very fast at doing conversions, as it uses -- * sscanf and sprintf. However, if the date is already correctly -- * formatted, then it exits very quickly. -+ * is converted to the RFC 1123 format. - */ - PROXY_DECLARE(const char *) -- ap_proxy_date_canon(apr_pool_t *p, const char *x1) -+ ap_proxy_date_canon(apr_pool_t *p, const char *date) - { -- char *x = apr_pstrdup(p, x1); -- int wk, mday, year, hour, min, sec, mon; -- char *q, month[4], zone[4], week[4]; -+ apr_status_t rv; -+ char* ndate; - -- q = strchr(x, ','); -- /* check for RFC 850 date */ -- if (q != NULL && q - x > 3 && q[1] == ' ') { -- *q = '\0'; -- for (wk = 0; wk < 7; wk++) -- if (strcmp(x, lwday[wk]) == 0) -- break; -- *q = ','; -- if (wk == 7) -- return x; /* not a valid date */ -- if (q[4] != '-' || q[8] != '-' || q[11] != ' ' || q[14] != ':' || -- q[17] != ':' || strcmp(&q[20], " GMT") != 0) -- return x; -- if (sscanf(q + 2, "%u-%3s-%u %u:%u:%u %3s", &mday, month, &year, -- &hour, &min, &sec, zone) != 7) -- return x; -- if (year < 70) -- year += 2000; -- else -- year += 1900; -- } -- else { --/* check for acstime() date */ -- if (x[3] != ' ' || x[7] != ' ' || x[10] != ' ' || x[13] != ':' || -- x[16] != ':' || x[19] != ' ' || x[24] != '\0') -- return x; -- if (sscanf(x, "%3s %3s %u %u:%u:%u %u", week, month, &mday, &hour, -- &min, &sec, &year) != 7) -- return x; -- for (wk = 0; wk < 7; wk++) -- if (strcmp(week, apr_day_snames[wk]) == 0) -- break; -- if (wk == 7) -- return x; -+ apr_time_t time = apr_date_parse_http(date); -+ if (!time) { -+ return date; - } - --/* check date */ -- for (mon = 0; mon < 12; mon++) -- if (strcmp(month, apr_month_snames[mon]) == 0) -- break; -- if (mon == 12) -- return x; -+ ndate = apr_palloc(p, APR_RFC822_DATE_LEN); -+ rv = apr_rfc822_date(ndate, time); -+ if (rv != APR_SUCCESS) { -+ return date; -+ } - -- q = apr_palloc(p, 30); -- apr_snprintf(q, 30, "%s, %.2d %s %d %.2d:%.2d:%.2d GMT", apr_day_snames[wk], -- mday, apr_month_snames[mon], year, hour, min, sec); -- return q; -+ return ndate; - } - - PROXY_DECLARE(request_rec *)ap_proxy_make_fake_req(conn_rec *c, request_rec *r) diff --git a/source/network/apache/FrugalBuild b/source/network/apache/FrugalBuild index 3bc98fa..1581bb1 100644 --- a/source/network/apache/FrugalBuild +++ b/source/network/apache/FrugalBuild @@ -3,8 +3,8 @@ # Maintainer: Zsolt Szalai pkgname=apache -pkgver=2.2.4 -pkgrel=6 +pkgver=2.2.6 +pkgrel=1 pkgdesc="A high performance Unix-based HTTP server (with SSL)" url="http://httpd.apache.org/" backup=(etc/httpd/conf/{httpd.conf,ssl.conf,ssl.crt/server.crt,ssl.csr/server.csr,ssl.key/server.key} \ @@ -16,10 +16,8 @@ up2date="lynx -dump http://httpd.apache.org/download.cgi |grep 'best available'| source=(http://www.apache.org/dist/httpd/httpd-$pkgver.tar.gz \ http://ftp.frugalware.org/pub/other/sources/apache/mkcert.tar.gz \ rc.httpd rc.httpd-hu.po httpd.conf ssl.conf \ - README.Frugalware index.html http://frugalware.org/images/frugalware.png \ - CVE-2006-5752.patch CVE-2007-1863.patch CVE-2007-3304.patch \ - CVE-2007-3847.patch) -signatures=($source.asc '' '' '' '' '' '' '' '' '' '' '' '') + README.Frugalware index.html http://frugalware.org/images/frugalware.png) +signatures=($source.asc '' '' '' '' '' '' '' '') # svn web interface: # http://svn.apache.org/viewvc/httpd/httpd/branches/2.2.x/ From vmiklos at frugalware.org Sun Sep 16 23:26:59 2007 From: vmiklos at frugalware.org (VMiklos) Date: Sun Sep 16 23:27:01 2007 Subject: [Frugalware-git] pacman-tools: dg tag: use '$projectname $ver' instead of 'tagged $ver' as tag message Message-ID: <20070916212659.1A1AF1678012@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=pacman-tools.git;a=commitdiff;h=23b119ef20f6a9af08e12bc05c352783504d2d16 commit 23b119ef20f6a9af08e12bc05c352783504d2d16 Author: VMiklos Date: Sun Sep 16 23:26:09 2007 +0200 dg tag: use '$projectname $ver' instead of 'tagged $ver' as tag message diff --git a/darcs-git.py b/darcs-git.py index 4359737..c27ae3c 100755 --- a/darcs-git.py +++ b/darcs-git.py @@ -650,7 +650,7 @@ Options: usage(0) ret = 0 ret += os.system("echo 'TAG %s' |git update-ref HEAD `git commit-tree HEAD^{tree} -p HEAD`" % argv[0]) - ret += os.system("git tag -a -m 'tagged %s' %s" % (argv[0], argv[0])) + ret += os.system("git tag -a -m '%s %s' %s" % (os.path.abspath(get_root()).split(os.sep)[-2], argv[0], argv[0])) return ret def rollback(argv): From vmiklos at frugalware.org Mon Sep 17 12:13:07 2007 From: vmiklos at frugalware.org (VMiklos) Date: Mon Sep 17 12:13:14 2007 Subject: [Frugalware-git] frugalware-current: j2sdk-6-4-i686 Message-ID: <20070917101307.3095A1678012@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=a14856a36b2eeff4a3bf2130bc5c0637541627c5 commit a14856a36b2eeff4a3bf2130bc5c0637541627c5 Author: VMiklos Date: Mon Sep 17 12:07:33 2007 +0200 j2sdk-6-4-i686 small cleanup thx hermier for noticing the need of it diff --git a/source/devel-extra/j2sdk/FrugalBuild b/source/devel-extra/j2sdk/FrugalBuild index 2fe6275..f424dc9 100644 --- a/source/devel-extra/j2sdk/FrugalBuild +++ b/source/devel-extra/j2sdk/FrugalBuild @@ -3,7 +3,6 @@ pkgname=j2sdk pkgver=6 -pkgver=6 update=2 realver=${pkgver}u$update pkgrel=4 From vmiklos at frugalware.org Mon Sep 17 12:16:08 2007 From: vmiklos at frugalware.org (VMiklos) Date: Mon Sep 17 12:16:11 2007 Subject: [Frugalware-git] pacman-g2: upgrade060: new test for -Uf Message-ID: <20070917101608.A74B41678012@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=pacman-g2.git;a=commitdiff;h=dff79f174b6c78c0a3de52806495ec57987eed33 commit dff79f174b6c78c0a3de52806495ec57987eed33 Author: VMiklos Date: Mon Sep 17 12:15:31 2007 +0200 upgrade060: new test for -Uf diff --git a/pactest/tests/upgrade060.py b/pactest/tests/upgrade060.py new file mode 100644 index 0000000..eda3b97 --- /dev/null +++ b/pactest/tests/upgrade060.py @@ -0,0 +1,18 @@ +self.description = "Upgrade a package with a filesystem conflict (--force)" + +sp = pmpkg("dummy") +sp.files = ["bin/dummy", "usr/man/man1/dummy.1"] +self.addpkg(sp) + +lp = pmpkg("dummy") +lp.files = ["usr/man/man1/dummy.1"] +self.addpkg2db("local", lp) + +self.filesystem = ["bin/dummy"] + +self.args = "-Uf %s" % sp.filename() + +self.addrule("PACMAN_RETCODE=0") +self.addrule("PKG_EXIST=dummy") +self.addrule("FILE_MODIFIED=bin/dummy") +self.addrule("FILE_EXIST=usr/man/man1/dummy.1") From vmiklos at frugalware.org Mon Sep 17 12:31:47 2007 From: vmiklos at frugalware.org (VMiklos) Date: Mon Sep 17 12:31:53 2007 Subject: [Frugalware-git] frugalware-current: star-1.5a85-1-i686 Message-ID: <20070917103147.2F3331678012@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=d2e5f4ccdb236229ba7320c52b197f99afe597ec commit d2e5f4ccdb236229ba7320c52b197f99afe597ec Author: VMiklos Date: Mon Sep 17 12:31:25 2007 +0200 star-1.5a85-1-i686 version bump diff --git a/source/apps-extra/star/FrugalBuild b/source/apps-extra/star/FrugalBuild index 54178a5..7d1fbbc 100644 --- a/source/apps-extra/star/FrugalBuild +++ b/source/apps-extra/star/FrugalBuild @@ -3,7 +3,7 @@ # Contributor: Michael Surette pkgname=star -pkgver=1.5a84 +pkgver=1.5a85 pkgrel=1 pkgdesc="very fast and Posix 1003.1 compliant tar" url="http://cdrecord.berlios.de/old/private/star.html" @@ -13,7 +13,7 @@ groups=('apps-extra') archs=('i686' 'x86_64') up2date="elinks -dump ftp://ftp.berlios.de/pub/star/alpha |grep [0-9].tar.bz2|tail -n1|sed -e 's/.*star-//' -e 's/.tar.bz2//'" source=("ftp://ftp.berlios.de/pub/$pkgname/alpha/$pkgname-$pkgver.tar.bz2") -sha1sums=('599ad604741db9c19d73ca2fb0478a6dd7c73770') +sha1sums=('c47dc2b6068776dacf2f968dace976ee13b36b1c') build() { From vmiklos at frugalware.org Mon Sep 17 12:45:23 2007 From: vmiklos at frugalware.org (VMiklos) Date: Mon Sep 17 12:45:26 2007 Subject: [Frugalware-git] frugalware-current: busybox-1.7.1-1-i686 Message-ID: <20070917104523.CD9B51678012@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=cb3395c360c6eebcbe664aa32d7d38d888e5f515 commit cb3395c360c6eebcbe664aa32d7d38d888e5f515 Author: VMiklos Date: Mon Sep 17 12:45:14 2007 +0200 busybox-1.7.1-1-i686 version bump updated config for 1.7.x diff --git a/source/apps-extra/busybox/FrugalBuild b/source/apps-extra/busybox/FrugalBuild index aef6ce6..824b998 100644 --- a/source/apps-extra/busybox/FrugalBuild +++ b/source/apps-extra/busybox/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: VMiklos pkgname=busybox -pkgver=1.6.1 +pkgver=1.7.1 pkgrel=1 pkgdesc="Utilities for rescue and embedded systems." url="http://www.busybox.net/" @@ -12,8 +12,8 @@ archs=('i686' 'x86_64') up2date="lynx -dump 'http://busybox.net/'|grep '(stable)'|sed 's/.*BusyBox \(.*\) (.*/\1/;q'" source=(http://www.busybox.net/downloads/busybox-$pkgver.tar.bz2 config) # NOTE: we can't use signatures() here as the author signes only the checksums -sha1sums=('ff79db26fa53c20808de4d6f3514f34044749a77' \ - 'fc8f5aabdb53c823c942244c2046f3f61ec8169d') +sha1sums=('439ebcbe2b48e19e1c9acc5aa886b24795d523b1' \ + '4e281c8f6ee3f89d9c51f0b28f93f2bcf1943303') build() { diff --git a/source/apps-extra/busybox/config b/source/apps-extra/busybox/config index 90ac6ed..12c39f0 100644 --- a/source/apps-extra/busybox/config +++ b/source/apps-extra/busybox/config @@ -1,7 +1,7 @@ # # Automatically generated make config: don't edit -# Busybox version: 1.6.0 -# Sun Jun 3 14:49:29 2007 +# Busybox version: 1.7.1 +# Mon Sep 17 12:36:33 2007 # CONFIG_HAVE_DOT_CONFIG=y @@ -27,13 +27,13 @@ CONFIG_FEATURE_DEVPTS=y # CONFIG_FEATURE_CLEAN_UP is not set # CONFIG_FEATURE_PIDFILE is not set # CONFIG_FEATURE_SUID is not set -CONFIG_FEATURE_SYSLOG=y # CONFIG_FEATURE_SUID_CONFIG is not set # CONFIG_FEATURE_SUID_CONFIG_QUIET is not set -CONFIG_FEATURE_HAVE_RPC=y # CONFIG_SELINUX is not set # CONFIG_FEATURE_PREFER_APPLETS is not set CONFIG_BUSYBOX_EXEC_PATH="/proc/self/exe" +CONFIG_FEATURE_SYSLOG=y +CONFIG_FEATURE_HAVE_RPC=y # # Build Options @@ -69,7 +69,10 @@ CONFIG_PREFIX="./_install" # CONFIG_PASSWORD_MINLEN=6 CONFIG_MD5_SIZE_VS_SPEED=2 +# CONFIG_FEATURE_FAST_TOP is not set +# CONFIG_FEATURE_ETC_NETWORKS is not set CONFIG_FEATURE_EDITING=y +CONFIG_FEATURE_EDITING_MAX_LEN=1024 # CONFIG_FEATURE_EDITING_FANCY_KEYS is not set # CONFIG_FEATURE_EDITING_VI is not set CONFIG_FEATURE_EDITING_HISTORY=15 @@ -77,6 +80,8 @@ CONFIG_FEATURE_EDITING_HISTORY=15 CONFIG_FEATURE_TAB_COMPLETION=y # CONFIG_FEATURE_USERNAME_COMPLETION is not set # CONFIG_FEATURE_EDITING_FANCY_PROMPT is not set +CONFIG_MONOTONIC_SYSCALL=y +CONFIG_IOCTL_HEX2STR_ERROR=y # # Applets @@ -97,6 +102,7 @@ CONFIG_GUNZIP=y CONFIG_GZIP=y # CONFIG_RPM2CPIO is not set # CONFIG_RPM is not set +# CONFIG_FEATURE_RPM_BZ2 is not set CONFIG_TAR=y CONFIG_FEATURE_TAR_CREATE=y CONFIG_FEATURE_TAR_BZIP2=y @@ -105,6 +111,7 @@ CONFIG_FEATURE_TAR_BZIP2=y CONFIG_FEATURE_TAR_GZIP=y # CONFIG_FEATURE_TAR_COMPRESS is not set # CONFIG_FEATURE_TAR_OLDGNU_COMPATIBILITY is not set +# CONFIG_FEATURE_TAR_OLDSUN_COMPATIBILITY is not set CONFIG_FEATURE_TAR_GNU_EXTENSIONS=y # CONFIG_FEATURE_TAR_LONG_OPTIONS is not set # CONFIG_UNCOMPRESS is not set @@ -132,7 +139,6 @@ CONFIG_CHMOD=y CONFIG_CHOWN=y CONFIG_CHROOT=y # CONFIG_CKSUM is not set -CONFIG_CMP=y # CONFIG_COMM is not set CONFIG_CP=y CONFIG_CUT=y @@ -142,10 +148,6 @@ CONFIG_DD=y CONFIG_FEATURE_DD_SIGNAL_HANDLING=y # CONFIG_FEATURE_DD_IBS_OBS is not set CONFIG_DF=y -# CONFIG_DIFF is not set -# CONFIG_FEATURE_DIFF_BINARY is not set -# CONFIG_FEATURE_DIFF_DIR is not set -# CONFIG_FEATURE_DIFF_MINIMAL is not set CONFIG_DIRNAME=y # CONFIG_DOS2UNIX is not set # CONFIG_UNIX2DOS is not set @@ -155,6 +157,8 @@ CONFIG_ECHO=y CONFIG_FEATURE_FANCY_ECHO=y CONFIG_ENV=y # CONFIG_FEATURE_ENV_LONG_OPTIONS is not set +# CONFIG_EXPAND is not set +# CONFIG_FEATURE_EXPAND_LONG_OPTIONS is not set CONFIG_EXPR=y # CONFIG_EXPR_MATH_SUPPORT_64 is not set CONFIG_FALSE=y @@ -190,6 +194,8 @@ CONFIG_MV=y # CONFIG_PRINTENV is not set CONFIG_PRINTF=y CONFIG_PWD=y +CONFIG_READLINK=y +# CONFIG_FEATURE_READLINK_FOLLOW is not set # CONFIG_REALPATH is not set CONFIG_RM=y CONFIG_RMDIR=y @@ -219,11 +225,12 @@ CONFIG_TR=y CONFIG_TRUE=y CONFIG_TTY=y CONFIG_UNAME=y +# CONFIG_UNEXPAND is not set +# CONFIG_FEATURE_UNEXPAND_LONG_OPTIONS is not set CONFIG_UNIQ=y CONFIG_USLEEP=y # CONFIG_UUDECODE is not set # CONFIG_UUENCODE is not set -# CONFIG_WATCH is not set CONFIG_WC=y # CONFIG_FEATURE_WC_LARGE is not set # CONFIG_WHO is not set @@ -273,8 +280,6 @@ CONFIG_RESET=y # CONFIG_MKTEMP=y # CONFIG_PIPE_PROGRESS is not set -CONFIG_READLINK=y -# CONFIG_FEATURE_READLINK_FOLLOW is not set # CONFIG_RUN_PARTS is not set # CONFIG_FEATURE_RUN_PARTS_LONG_OPTIONS is not set # CONFIG_FEATURE_RUN_PARTS_FANCY is not set @@ -288,10 +293,16 @@ CONFIG_WHICH=y # # CONFIG_AWK is not set # CONFIG_FEATURE_AWK_MATH is not set +CONFIG_CMP=y +# CONFIG_DIFF is not set +# CONFIG_FEATURE_DIFF_BINARY is not set +# CONFIG_FEATURE_DIFF_DIR is not set +# CONFIG_FEATURE_DIFF_MINIMAL is not set # CONFIG_ED is not set # CONFIG_PATCH is not set CONFIG_SED=y CONFIG_VI=y +CONFIG_FEATURE_VI_MAX_LEN=1024 CONFIG_FEATURE_VI_COLON=y CONFIG_FEATURE_VI_YANKMARK=y CONFIG_FEATURE_VI_SEARCH=y @@ -314,6 +325,7 @@ CONFIG_FEATURE_FIND_MMIN=y CONFIG_FEATURE_FIND_PERM=y CONFIG_FEATURE_FIND_TYPE=y CONFIG_FEATURE_FIND_XDEV=y +CONFIG_FEATURE_FIND_MAXDEPTH=y # CONFIG_FEATURE_FIND_NEWER is not set # CONFIG_FEATURE_FIND_INUM is not set CONFIG_FEATURE_FIND_EXEC=y @@ -326,6 +338,8 @@ CONFIG_FEATURE_FIND_SIZE=y CONFIG_FEATURE_FIND_PRUNE=y # CONFIG_FEATURE_FIND_DELETE is not set CONFIG_FEATURE_FIND_PATH=y +CONFIG_FEATURE_FIND_REGEX=y +# CONFIG_FEATURE_FIND_CONTEXT is not set CONFIG_GREP=y CONFIG_FEATURE_GREP_EGREP_ALIAS=y CONFIG_FEATURE_GREP_FGREP_ALIAS=y @@ -366,11 +380,14 @@ CONFIG_FEATURE_SHADOWPASSWDS=y # CONFIG_FEATURE_UTMP is not set # CONFIG_FEATURE_WTMP is not set # CONFIG_LOGIN is not set +# CONFIG_PAM is not set # CONFIG_LOGIN_SCRIPTS is not set +# CONFIG_FEATURE_NOLOGIN is not set # CONFIG_FEATURE_SECURETTY is not set # CONFIG_PASSWD is not set # CONFIG_FEATURE_PASSWD_WEAK_CHECK is not set # CONFIG_CRYPTPW is not set +# CONFIG_CHPASSWD is not set # CONFIG_SU is not set # CONFIG_FEATURE_SU_SYSLOG is not set # CONFIG_FEATURE_SU_CHECKS_SHELLS is not set @@ -437,6 +454,7 @@ CONFIG_HEXDUMP=y CONFIG_MDEV=y # CONFIG_FEATURE_MDEV_CONF is not set # CONFIG_FEATURE_MDEV_EXEC is not set +# CONFIG_FEATURE_MDEV_LOAD_FIRMWARE is not set CONFIG_MKSWAP=y # CONFIG_FEATURE_MKSWAP_V0 is not set CONFIG_MORE=y @@ -498,7 +516,6 @@ CONFIG_FEATURE_LESS_MAXLINES= # CONFIG_FEATURE_MAKEDEVS_TABLE is not set # CONFIG_MOUNTPOINT is not set # CONFIG_MT is not set -# CONFIG_NMETER is not set # CONFIG_RAIDAUTORUN is not set # CONFIG_READAHEAD is not set # CONFIG_RUNLEVEL is not set @@ -508,6 +525,7 @@ CONFIG_STRINGS=y # CONFIG_TASKSET is not set # CONFIG_FEATURE_TASKSET_FANCY is not set CONFIG_TIME=y +# CONFIG_TTYSIZE is not set # CONFIG_WATCHDOG is not set # @@ -525,6 +543,7 @@ CONFIG_TIME=y # CONFIG_FEATURE_FTPGETPUT_LONG_OPTIONS is not set CONFIG_HOSTNAME=y # CONFIG_HTTPD is not set +# CONFIG_FEATURE_HTTPD_USE_SENDFILE is not set # CONFIG_FEATURE_HTTPD_RELOAD_CONFIG_SIGHUP is not set # CONFIG_FEATURE_HTTPD_SETUID is not set # CONFIG_FEATURE_HTTPD_BASIC_AUTH is not set @@ -534,6 +553,7 @@ CONFIG_HOSTNAME=y # CONFIG_FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR is not set # CONFIG_FEATURE_HTTPD_SET_REMOTE_PORT_TO_ENV is not set # CONFIG_FEATURE_HTTPD_ENCODE_URL_STR is not set +# CONFIG_FEATURE_HTTPD_ERROR_PAGES is not set CONFIG_IFCONFIG=y CONFIG_FEATURE_IFCONFIG_STATUS=y # CONFIG_FEATURE_IFCONFIG_SLIP is not set @@ -541,6 +561,7 @@ CONFIG_FEATURE_IFCONFIG_STATUS=y # CONFIG_FEATURE_IFCONFIG_HW is not set # CONFIG_FEATURE_IFCONFIG_BROADCAST_PLUS is not set # CONFIG_IFUPDOWN is not set +CONFIG_IFUPDOWN_IFSTATE_PATH="/var/run/ifstate" # CONFIG_FEATURE_IFUPDOWN_IP is not set # CONFIG_FEATURE_IFUPDOWN_IP_BUILTIN is not set # CONFIG_FEATURE_IFUPDOWN_IFCONFIG_BUILTIN is not set @@ -579,8 +600,10 @@ CONFIG_FEATURE_IFCONFIG_STATUS=y # CONFIG_NSLOOKUP is not set CONFIG_PING=y # CONFIG_PING6 is not set +# CONFIG_PSCAN is not set CONFIG_FEATURE_FANCY_PING=y CONFIG_ROUTE=y +# CONFIG_SLATTACH is not set # CONFIG_TELNET is not set # CONFIG_FEATURE_TELNET_TTYPE is not set # CONFIG_FEATURE_TELNET_AUTOLOGIN is not set @@ -598,8 +621,8 @@ CONFIG_ROUTE=y # CONFIG_APP_UDHCPD is not set # CONFIG_APP_DHCPRELAY is not set # CONFIG_APP_DUMPLEASES is not set +# CONFIG_FEATURE_UDHCPD_WRITE_LEASES_EARLY is not set # CONFIG_APP_UDHCPC is not set -# CONFIG_FEATURE_UDHCP_SYSLOG is not set # CONFIG_FEATURE_UDHCP_DEBUG is not set # CONFIG_FEATURE_RFC3397 is not set # CONFIG_VCONFIG is not set @@ -617,6 +640,7 @@ CONFIG_FREE=y CONFIG_KILL=y CONFIG_KILLALL=y # CONFIG_KILLALL5 is not set +# CONFIG_NMETER is not set CONFIG_PIDOF=y # CONFIG_FEATURE_PIDOF_SINGLE is not set # CONFIG_FEATURE_PIDOF_OMIT is not set @@ -626,7 +650,10 @@ CONFIG_PS=y # CONFIG_BB_SYSCTL is not set # CONFIG_TOP is not set # CONFIG_FEATURE_TOP_CPU_USAGE_PERCENTAGE is not set +# CONFIG_FEATURE_TOP_CPU_GLOBAL_PERCENTS is not set +# CONFIG_FEATURE_TOP_DECIMALS is not set CONFIG_UPTIME=y +# CONFIG_WATCH is not set # # Shells @@ -703,10 +730,13 @@ CONFIG_LOGGER=y # CONFIG_GETSEBOOL is not set # CONFIG_LOAD_POLICY is not set # CONFIG_MATCHPATHCON is not set +# CONFIG_RESTORECON is not set # CONFIG_RUNCON is not set # CONFIG_FEATURE_RUNCON_LONG_OPTIONS is not set # CONFIG_SELINUXENABLED is not set # CONFIG_SETENFORCE is not set +# CONFIG_SETFILES is not set +# CONFIG_FEATURE_SETFILES_CHECK_OPTION is not set # # ipsvd utilities From vmiklos at frugalware.org Mon Sep 17 12:59:41 2007 From: vmiklos at frugalware.org (VMiklos) Date: Mon Sep 17 12:59:44 2007 Subject: [Frugalware-git] setup: po: remove *.gmo on distclean Message-ID: <20070917105941.83D2C1678012@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=setup.git;a=commitdiff;h=75e9f1cd3fc0ec1812e78c041df2767574406fd4 commit 75e9f1cd3fc0ec1812e78c041df2767574406fd4 Author: VMiklos Date: Mon Sep 17 12:47:57 2007 +0200 po: remove *.gmo on distclean diff --git a/po/Makefile b/po/Makefile index 1d9116a..e466689 100644 --- a/po/Makefile +++ b/po/Makefile @@ -35,4 +35,4 @@ update-po: pot done distclean: - rm -f intltool-extract *.pot *.po + rm -f intltool-extract *.pot *.po *.gmo From vmiklos at frugalware.org Mon Sep 17 13:14:12 2007 From: vmiklos at frugalware.org (VMiklos) Date: Mon Sep 17 13:14:15 2007 Subject: [Frugalware-git] frugalware-current: flac-1.2.1-1-i686 Message-ID: <20070917111412.6DFAE1678012@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=1b30f0a810edd299499daed8b543ca9722a71ec2 commit 1b30f0a810edd299499daed8b543ca9722a71ec2 Author: VMiklos Date: Mon Sep 17 13:14:01 2007 +0200 flac-1.2.1-1-i686 version bump diff --git a/source/multimedia/flac/FrugalBuild b/source/multimedia/flac/FrugalBuild index d4b0801..fae7cb8 100644 --- a/source/multimedia/flac/FrugalBuild +++ b/source/multimedia/flac/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: VMiklos pkgname=flac -pkgver=1.2.0 +pkgver=1.2.1 pkgrel=1 pkgdesc="Free Lossless Audio Coder" depends=('libogg') @@ -11,7 +11,7 @@ groups=('multimedia') archs=('i686' 'x86_64') Finclude sourceforge up2date="lynx -dump http://sourceforge.net/project/showfiles.php?group_id=13478|grep -m1 'flac-\(.*\)-src'|sed 's/.*flac-\(.*\)-src.*/\1/'" -sha1sums=('019f50a71a755b2d4247cae8f9fb2264de61916d') +sha1sums=('bd54354900181b59db3089347cc84ad81e410b38') if [ "$CARCH" == "x86_64" ]; then Fconfopts="$Fconfopts --enable-sse" fi From crazy at frugalware.org Mon Sep 17 14:57:51 2007 From: crazy at frugalware.org (crazy) Date: Mon Sep 17 14:57:54 2007 Subject: [Frugalware-git] frugalware-current: rebuild.txt Message-ID: <20070917125751.B96BA1678012@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=f46e23f4e01affe5a12cf867217c26d049144ce2 commit f46e23f4e01affe5a12cf867217c26d049144ce2 Author: crazy Date: Mon Sep 17 14:52:00 2007 +0200 rebuild.txt * added icu and bmpx to it ... diff --git a/docs/rebuild.txt b/docs/rebuild.txt index 7425557..b50e9cf 100644 --- a/docs/rebuild.txt +++ b/docs/rebuild.txt @@ -253,3 +253,7 @@ revdep-rebuild 429 --other --sed "s|'parted[^']*'|'parted>=1.8.8'|" - digikam - kipi-plugins - kphotoalbum + +== icu + +- bmpx From crazy at frugalware.org Mon Sep 17 15:45:03 2007 From: crazy at frugalware.org (crazy) Date: Mon Sep 17 15:45:06 2007 Subject: [Frugalware-git] frugalware-current: bmpx-0.40.7-1-i686 Message-ID: <20070917134503.0DF381678012@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=ec6d6b1b400538c1fcabfc9bf4f5edd89b1403de commit ec6d6b1b400538c1fcabfc9bf4f5edd89b1403de Author: crazy Date: Mon Sep 17 15:39:46 2007 +0200 bmpx-0.40.7-1-i686 * Version bump && rebuild with icu diff --git a/source/xmultimedia-extra/bmpx/02-configure.patch b/source/xmultimedia-extra/bmpx/02-configure.patch deleted file mode 100644 index ee61836..0000000 --- a/source/xmultimedia-extra/bmpx/02-configure.patch +++ /dev/null @@ -1,12 +0,0 @@ -Index: configure.ac -=================================================================== ---- configure.ac (Revision 11299) -+++ configure.ac (Arbeitskopie) -@@ -835,6 +835,7 @@ - echo - echo " C compiler flags.............: $CFLAGS" - echo " C++ compiler flags...........: $CXXFLAGS" -+echo " Linker flags.................: $LDFLAGS" - echo - echo " Documentation generation.....: $generate_documentation" - echo diff --git a/source/xmultimedia-extra/bmpx/03-no-ggdb3-when-debug-is-off.patch b/source/xmultimedia-extra/bmpx/03-no-ggdb3-when-debug-is-off.patch deleted file mode 100644 index f3ffed3..0000000 --- a/source/xmultimedia-extra/bmpx/03-no-ggdb3-when-debug-is-off.patch +++ /dev/null @@ -1,49 +0,0 @@ -Index: jnetlib/Makefile.am -=================================================================== ---- jnetlib/Makefile.am (Revision 11299) -+++ jnetlib/Makefile.am (Arbeitskopie) -@@ -1,7 +1,9 @@ -+AUTOMAKE_OPTIONS = foreign -+ - noinst_LTLIBRARIES = libjnetlib.la - - libjnetlib_la_LDFLAGS = -pthread $(GLIB_LIBS) $(GLIBMM_LIBS) $(SIGC_LIBS) $(GTK_LIBS) --libjnetlib_la_CXXFLAGS = -ggdb3 -s -O2 -Wall -DTHREAD_SAFE -D_THREAD_SAFE -D_REENTRANT $(GLIB_CFLAGS) $(SIGC_CFLAGS) $(GLIBMM_CFLAGS) $(GTK_CFLAGS) -+libjnetlib_la_CXXFLAGS = -DTHREAD_SAFE -D_THREAD_SAFE -D_REENTRANT $(GLIB_CFLAGS) $(SIGC_CFLAGS) $(GLIBMM_CFLAGS) $(GTK_CFLAGS) - - libjnetlib_la_SOURCES = \ - asyncdns.cpp \ -Index: src/parser/Makefile.am -=================================================================== ---- src/parser/Makefile.am (Revision 11299) -+++ src/parser/Makefile.am (Arbeitskopie) -@@ -1,3 +1,5 @@ -+AUTOMAKE_OPTIONS = foreign -+ - noinst_LTLIBRARIES = libbmpparser.la - - libbmpparser_la_CXXFLAGS = \ -@@ -3,5 +5,5 @@ - $(BOOST_FILESYSTEM_CFLAGS) $(GLIBMM_CFLAGS) $(XML_CFLAGS) -I$(top_srcdir) -I$(top_srcdir)/include -I$(top_srcdir)/src - --libbmpparser_la_LDFLAGS = -ggdb3 $(BOOST_FILESYSTEM_LIBS) -+libbmpparser_la_LDFLAGS = $(BOOST_FILESYSTEM_LIBS) - - libbmpparser_la_SOURCES = \ -Index: src/musicbrainz/Makefile.am -=================================================================== ---- src/musicbrainz/Makefile.am (Revision 11299) -+++ src/musicbrainz/Makefile.am (Arbeitskopie) -@@ -1,3 +1,5 @@ -+AUTOMAKE_OPTIONS = foreign -+ - noinst_LTLIBRARIES = libbmpmusicbrainz.la - - libbmpmusicbrainz_la_CXXFLAGS = \ -@@ -3,5 +5,5 @@ - $(SOUP_CFLAGS) $(BOOST_FILESYSTEM_CFLAGS) $(GLIBMM_CFLAGS) $(XML_CFLAGS) -I$(top_srcdir) -I$(top_srcdir)/include -I$(top_srcdir)/src - --libbmpmusicbrainz_la_LDFLAGS = -ggdb3 $(BOOST_FILESYSTEM_LIBS) $(SOUP_LIBS) -+libbmpmusicbrainz_la_LDFLAGS = $(BOOST_FILESYSTEM_LIBS) $(SOUP_LIBS) - - libbmpmusicbrainz_la_SOURCES = \ diff --git a/source/xmultimedia-extra/bmpx/FrugalBuild b/source/xmultimedia-extra/bmpx/FrugalBuild index 6e1638f..7dbf90a 100644 --- a/source/xmultimedia-extra/bmpx/FrugalBuild +++ b/source/xmultimedia-extra/bmpx/FrugalBuild @@ -2,13 +2,13 @@ # Maintainer: crazy pkgname=bmpx -pkgver=0.40.4 +pkgver=0.40.7 basever=0.40 pkgrel=1 pkgdesc="A media player that features support for specifications like XDS DnD, XSPF and DBus." url="http://bmpx.beep-media-player.org" depends=('libsidplay' 'gamin' 'alsa-lib' 'dbus>=1.0.0-2' 'dbus-glib' 'libglademm>=2.6.3-2' 'hal>=0.5.8.1' \ - 'libsoup' 'icu' 'db>=4.5.20' 'libmodplug' 'sqlite3' 'taglib' 'freetype2' 'librsvg' 'startup-notification' \ + 'libsoup' 'icu>=3.8' 'db>=4.5.20' 'libmodplug' 'sqlite3' 'taglib' 'freetype2' 'librsvg' 'startup-notification' \ 'gst-plugins-base>=0.10.10-4' 'gst-plugins-base-alsa>=0.10.10-4' 'gst-plugins-base-oil>=0.10.10-4' \ 'gst-plugins-base-cdparanoia>=0.10.10-4' 'boost>=1.34.0-4' 'libofa>=0.9.3-2' 'cdparanoia' \ 'libsexymm' 'libsexy' 'bzip2' 'e2fsprogs') @@ -22,13 +22,9 @@ groups=('xmultimedia-extra') archs=('i686' 'x86_64') up2date="lynx -dump 'http://bmpx.beep-media-player.org/site/BMPx_Homepage'|grep -m1 '.tar.bz2'|sed 's/.*-\(.*\).t.*/\1/'" source=(http://files.beep-media-player.org/releases/$basever/$pkgname-$pkgver.tar.bz2 \ - 01-fw_builduser.patch \ - 02-configure.patch \ - 03-no-ggdb3-when-debug-is-off.patch) -sha1sums=('046baeac32d116c54ae160a233e5066eaf781601' \ - 'a8aabe4db10959e488ffdc38881c88a7cd72855e' \ - '36a4a69332e0488b4c3b225859f062a70c93f980' \ - '1ae574ae83b692518ebbcf2251b96b5d33d966e5') + 01-fw_builduser.patch) +sha1sums=('7d4ce5c05fc15e5df02c796ac6189616c8018a6a' \ + 'a8aabe4db10959e488ffdc38881c88a7cd72855e') subpkgs=("$pkgname-lastfm-firefox-plugin") subdescs=("Firefox LastFM plugin for $pkgname") From crazy at frugalware.org Mon Sep 17 15:53:23 2007 From: crazy at frugalware.org (crazy) Date: Mon Sep 17 15:53:26 2007 Subject: [Frugalware-git] frugalware-current: rebuild.txt Message-ID: <20070917135323.B528B1678012@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=ff88d32027658db30c27fe80fcb938ffb7029e2e commit ff88d32027658db30c27fe80fcb938ffb7029e2e Author: crazy Date: Mon Sep 17 15:49:33 2007 +0200 rebuild.txt * added boost to icu * blah <*piep*> diff --git a/docs/rebuild.txt b/docs/rebuild.txt index b50e9cf..2cc356e 100644 --- a/docs/rebuild.txt +++ b/docs/rebuild.txt @@ -257,3 +257,4 @@ revdep-rebuild 429 --other --sed "s|'parted[^']*'|'parted>=1.8.8'|" == icu - bmpx +- boost From crazy at frugalware.org Mon Sep 17 16:29:41 2007 From: crazy at frugalware.org (crazy) Date: Mon Sep 17 16:29:45 2007 Subject: [Frugalware-git] frugalware-current: boost-1.34.0-5-i686 Message-ID: <20070917142941.2B9391678012@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=5c6aa47f3f529ff0cbe61ae2fee9edbef2b23dbc commit 5c6aa47f3f529ff0cbe61ae2fee9edbef2b23dbc Author: crazy Date: Mon Sep 17 16:19:27 2007 +0200 boost-1.34.0-5-i686 * rebuild with icu diff --git a/source/devel-extra/boost/FrugalBuild b/source/devel-extra/boost/FrugalBuild index a416ea3..12feb26 100644 --- a/source/devel-extra/boost/FrugalBuild +++ b/source/devel-extra/boost/FrugalBuild @@ -3,12 +3,12 @@ pkgname=boost pkgver=1.34.0 -pkgrel=4 +pkgrel=5 pkgdesc="Boost Libraries for C++" _F_sourceforge_ext=".tar.bz2" Finclude sourceforge python url="http://boost.org/" -depends=('libstdc++' 'python' 'icu' 'bzip2' 'zlib') +depends=('libstdc++' 'python' 'icu>=3.8' 'bzip2' 'zlib') makedepends=('boost-jam') groups=('devel-extra') archs=('i686' 'x86_64') @@ -60,3 +60,5 @@ build() Fmkdir usr/share/boost cp -a b* index.html v2/ $Fdestdir/usr/share/boost/ } + +# optimization OK From crazy at frugalware.org Mon Sep 17 16:37:34 2007 From: crazy at frugalware.org (crazy) Date: Mon Sep 17 16:37:37 2007 Subject: [Frugalware-git] frugalware-current: rebuild.txt Message-ID: <20070917143734.ED38B1678012@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=87b105891e75130c49b4533316ebba691e034da5 commit 87b105891e75130c49b4533316ebba691e034da5 Author: crazy Date: Mon Sep 17 16:33:43 2007 +0200 rebuild.txt * icu and libevent stuff diff --git a/docs/rebuild.txt b/docs/rebuild.txt index 2cc356e..85f1d87 100644 --- a/docs/rebuild.txt +++ b/docs/rebuild.txt @@ -245,6 +245,7 @@ revdep-rebuild 429 --other --sed "s|'parted[^']*'|'parted>=1.8.8'|" - tor - nfs-utils +- trickle == exiv2 @@ -258,3 +259,4 @@ revdep-rebuild 429 --other --sed "s|'parted[^']*'|'parted>=1.8.8'|" - bmpx - boost +- rblibtorrent From crazy at frugalware.org Mon Sep 17 16:55:44 2007 From: crazy at frugalware.org (crazy) Date: Mon Sep 17 16:55:46 2007 Subject: [Frugalware-git] frugalware-current: rblibtorrent-0.12-5-i686 Message-ID: <20070917145544.0E0D91678012@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=2f8b9000dfae8d8577e195342898880730597fb9 commit 2f8b9000dfae8d8577e195342898880730597fb9 Author: crazy Date: Mon Sep 17 16:51:17 2007 +0200 rblibtorrent-0.12-5-i686 * rebuild with icu diff --git a/source/lib-extra/rblibtorrent/FrugalBuild b/source/lib-extra/rblibtorrent/FrugalBuild index 629fb97..3ed2d58 100644 --- a/source/lib-extra/rblibtorrent/FrugalBuild +++ b/source/lib-extra/rblibtorrent/FrugalBuild @@ -3,12 +3,12 @@ pkgname=rblibtorrent pkgver=0.12 -pkgrel=4 +pkgrel=5 pkgdesc="LibTorrent is a BitTorrent library written in C++" _F_sourceforge_name="libtorrent" Finclude sourceforge url="http://www.rasterbar.com/products/libtorrent/index.html" -depends=('boost>=1.34.0-3' 'zlib') +depends=('boost>=1.34.0-5' 'zlib' 'icu>=3.8') groups=('lib-extra') archs=('i686' 'x86_64') #source=(http://www.libtorrent.org/libtorrent-${pkgver}rc3.tar.gz) From crazy at frugalware.org Mon Sep 17 17:06:10 2007 From: crazy at frugalware.org (crazy) Date: Mon Sep 17 17:06:14 2007 Subject: [Frugalware-git] frugalware-current: trickle-1.07-2-i686 Message-ID: <20070917150610.8CF55168800B@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=f6f5068864798e61aa7580ef315be6bd7092dae2 commit f6f5068864798e61aa7580ef315be6bd7092dae2 Author: crazy Date: Mon Sep 17 17:02:24 2007 +0200 trickle-1.07-2-i686 * rebuild with libevent diff --git a/source/network-extra/trickle/FrugalBuild b/source/network-extra/trickle/FrugalBuild index e163056..560809b 100644 --- a/source/network-extra/trickle/FrugalBuild +++ b/source/network-extra/trickle/FrugalBuild @@ -3,10 +3,10 @@ pkgname=trickle pkgver=1.07 -pkgrel=1 +pkgrel=2 pkgdesc="a portable lightweight userspace bandwidth shaper" url="http://monkey.org/~marius/pages/?page=trickle" -depends=('libevent>=0.6' 'grep') +depends=('libevent>=1.3-5' 'grep') groups=('network-extra') archs=('i686') #up2date="lynx -dump http://monkey.org/~marius/pages/?page=trickle | grep -m1 'http.*tar.gz' | sed 's/.*trickle-\(.*\)\.tar.*/\1/'" From voroskoi at frugalware.org Mon Sep 17 17:42:11 2007 From: voroskoi at frugalware.org (voroskoi) Date: Mon Sep 17 17:42:14 2007 Subject: [Frugalware-git] frugalware-current: asciidoc-8.2.3-1-i686 Message-ID: <20070917154211.A9DEC1678012@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=a0ba2e997c4c5913db5cb9e10659e315288e43bb commit a0ba2e997c4c5913db5cb9e10659e315288e43bb Author: voroskoi Date: Mon Sep 17 17:31:34 2007 +0200 asciidoc-8.2.3-1-i686 version bump diff --git a/source/apps-extra/asciidoc/FrugalBuild b/source/apps-extra/asciidoc/FrugalBuild index e0b8000..78af5a5 100644 --- a/source/apps-extra/asciidoc/FrugalBuild +++ b/source/apps-extra/asciidoc/FrugalBuild @@ -2,8 +2,8 @@ # Maintainer: voroskoi pkgname=asciidoc -pkgver=8.2.2 -pkgrel=2 +pkgver=8.2.3 +pkgrel=1 pkgdesc="AsciiDoc is a text document format for writing short documents, articles, books and UNIX man pages." url="http://www.methods.co.nz/asciidoc/index.html" depends=() @@ -14,7 +14,7 @@ archs=('i686' 'x86_64') up2date="lynx -dump http://www.methods.co.nz/asciidoc/downloads.html |Flasttar" source=(http://www.methods.co.nz/asciidoc/asciidoc-$pkgver.tar.gz \ http://ftp.frugalware.org/pub/other/sources/asciidoc/asciidoc-fonts-0.1.tar.bz2) -sha1sums=('ffd0de7b45474a88ab3b895f5c440024a954540a' \ +sha1sums=('c5f245e3cc98fc7785037e27b7002c7f6b071b96' \ '717779406f876f439ac37c79878f403ecdef3467') build() { From vmiklos at frugalware.org Mon Sep 17 18:33:55 2007 From: vmiklos at frugalware.org (VMiklos) Date: Mon Sep 17 18:33:57 2007 Subject: [Frugalware-git] xorg73: xorg-server-1.4-2-i686 Message-ID: <20070917163355.27D081678012@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=xorg73.git;a=commitdiff;h=381d48a4c7c745cd23335bfeed49c8edcea786d5 commit 381d48a4c7c745cd23335bfeed49c8edcea786d5 Author: VMiklos Date: Mon Sep 17 18:33:39 2007 +0200 xorg-server-1.4-2-i686 move usr/lib/xorg/modules/libwfb.* to the libglx subpkg hopefully this resolves the conflict with the nvidia pkg diff --git a/source/x11/xorg-server/FrugalBuild b/source/x11/xorg-server/FrugalBuild index cd710af..a9f64e4 100644 --- a/source/x11/xorg-server/FrugalBuild +++ b/source/x11/xorg-server/FrugalBuild @@ -3,7 +3,7 @@ pkgname=xorg-server pkgver=1.4 -pkgrel=1 +pkgrel=2 mesaver=7.0.1 pkgdesc="Modular X.Org X Server" groups=('x11' 'xorg-core') @@ -107,7 +107,7 @@ build() { # Fmkdir /etc/X11/Xsession.d.xprint # Fmv /etc/X11/Xsession.d/92* /etc/X11/Xsession.d.xprint/ - Fsplit libglx usr/lib/xorg/modules/extensions/libglx.* + Fsplit libglx usr/lib/xorg/modules/extensions/libglx.* usr/lib/xorg/modules/libwfb.* } sha1sums=('3aa6327f4def4d33ce2a8d6d7587295db231ab6d' \ From vmiklos at frugalware.org Mon Sep 17 19:10:42 2007 From: vmiklos at frugalware.org (VMiklos) Date: Mon Sep 17 19:10:45 2007 Subject: [Frugalware-git] pacman-tools: dg: updated help message for the recent changes Message-ID: <20070917171042.502371678012@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=pacman-tools.git;a=commitdiff;h=869f6756d8216c905e0abc2441ab2e1564fe7df1 commit 869f6756d8216c905e0abc2441ab2e1564fe7df1 Author: VMiklos Date: Mon Sep 17 19:10:05 2007 +0200 dg: updated help message for the recent changes diff --git a/darcs-git.py b/darcs-git.py index c27ae3c..80b58f2 100755 --- a/darcs-git.py +++ b/darcs-git.py @@ -639,7 +639,7 @@ Options: def tag(argv): def usage(ret): - print """Usage: darcs-git tag [OPTION]... [TAGNAME] + print """Usage: darcs-git tag [PROJECTNAME] Tag the contents of the repository with a version name. Use "darcs-git help tag" for more information. @@ -649,8 +649,12 @@ Options: if len(argv) and argv[0] in ("-h", "--help"): usage(0) ret = 0 - ret += os.system("echo 'TAG %s' |git update-ref HEAD `git commit-tree HEAD^{tree} -p HEAD`" % argv[0]) - ret += os.system("git tag -a -m '%s %s' %s" % (os.path.abspath(get_root()).split(os.sep)[-2], argv[0], argv[0])) + ret += os.system("echo 'TAG %s' |git update-ref HEAD `git commit-tree HEAD^{tree} -p HEAD`" % argv[-1]) + if len(argv) > 1: + msg = " ".join(argv[:2]) + else: + msg = argv[0] + ret += os.system("git tag -a -m '%s' %s" % (msg, argv[-1])) return ret def rollback(argv): From vmiklos at frugalware.org Mon Sep 17 19:30:59 2007 From: vmiklos at frugalware.org (VMiklos) Date: Mon Sep 17 19:31:01 2007 Subject: [Frugalware-git] bmf: asciidoc-8.2.3b1-1bmf1-i686 Message-ID: <20070917173059.887071678012@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=bmf.git;a=commitdiff;h=2320372e58f848559d71f7a0e66b2aba54754298 commit 2320372e58f848559d71f7a0e66b2aba54754298 Author: VMiklos Date: Mon Sep 17 19:30:39 2007 +0200 asciidoc-8.2.3b1-1bmf1-i686 bin, 8.2.3 final is in -current diff --git a/source/apps-extra/asciidoc/FrugalBuild b/source/apps-extra/asciidoc/FrugalBuild deleted file mode 100644 index 39765e4..0000000 --- a/source/apps-extra/asciidoc/FrugalBuild +++ /dev/null @@ -1,36 +0,0 @@ -# Compiling Time: 0.01 SBU -# Maintainer: voroskoi - -pkgname=asciidoc -pkgver=8.2.3b1 -pkgrel=1bmf1 -pkgdesc="AsciiDoc is a text document format for writing short documents, articles, books and UNIX man pages." -url="http://www.methods.co.nz/asciidoc/index.html" -depends=() -rodepends=('python>=2.3' 'libxslt') -makedepends=('imagemagick' 'libpng' 'libjpeg' 'fontconfig') -groups=('apps-extra') -archs=('i686' 'x86_64') -up2date="lynx -dump http://www.methods.co.nz/asciidoc/downloads.html |Flasttar" -source=(http://www.methods.co.nz/asciidoc/asciidoc-8.2.2.tar.gz \ - http://hcoop.net//pipermail/asciidoc-discuss/attachments/20070901/f0c10ef4/attachment.txt) - -build() { - Fcd asciidoc-8.2.2 - Fmkdir $Fprefix/bin $Fprefix/share/vim - Fsed 'BINDIR=/usr/local/bin' "BINDIR=$Fdestdir/$Fprefix/bin" install.sh - Fsed 'MANDIR=/usr/local/man' "MANDIR=$Fdestdir/$Fprefix/man" install.sh - Fsed 'CONFDIR=/etc/asciidoc' "CONFDIR=$Fdestdir/$Fsysconfdir/asciidoc" install.sh - Fsed 'VIM_CONFDIR=/etc/vim' "VIM_CONFDIR=$Fdestdir/$Fprefix/share/vim" install.sh - Fsed 'http://www.oasis-open.org/docbook/xml/' 'file:///usr/share/sgml/docbook/dtd/xml-dtd-' docbook.conf - Fpatch attachment.txt - sh install.sh - # provive the images in jpg format, too. this is necessary as fop can't - # use png images without license problems for pdfs - for i in `find $Fdestdir/etc -name '*.png'` - do - convert $i ${i%%.png}.jpg || return 1 - done -} -sha1sums=('ffd0de7b45474a88ab3b895f5c440024a954540a' \ - 'b02bc879af19d3dbd55c0f9af6f3cb131b34cff2') From vmiklos at frugalware.org Mon Sep 17 19:51:34 2007 From: vmiklos at frugalware.org (VMiklos) Date: Mon Sep 17 19:51:36 2007 Subject: [Frugalware-git] pacman-g2: updates for 3.6.3 Message-ID: <20070917175134.DD5921678012@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=pacman-g2.git;a=commitdiff;h=f0eba600be262f63cea096806cec7b97137cfab5 commit f0eba600be262f63cea096806cec7b97137cfab5 Author: VMiklos Date: Mon Sep 17 19:50:58 2007 +0200 updates for 3.6.3 diff --git a/NEWS b/NEWS index 9db550c..5007adf 100644 --- a/NEWS +++ b/NEWS @@ -1,5 +1,11 @@ VERSION DESCRIPTION ----------------------------------------------------------------------------- +3.6.3 - documentation update (README) + - if a package is installed as a dependency, then -S package will + update its reason to "installed explicitly" + - libftp http donwload: fix the "is the fdb up to date?" check if + LANG != C + - new tests in the testsuite 3.6.2 - makepkg: more check for invalid config variables in makepkg.conf - pacman-g2: don't allow values other than <0 or >100 as a diff --git a/configure.ac b/configure.ac index 9acb2fc..daef86c 100644 --- a/configure.ac +++ b/configure.ac @@ -2,7 +2,7 @@ ENV_CFLAGS=$CFLAGS AC_PREREQ(2.59) dnl Update it right before the release since $pkgver_foo are all _post_ release snapshots -AC_INIT([pacman-g2 package manager], 3.6.2, [frugalware-devel@frugalware.org], pacman-g2) +AC_INIT([pacman-g2 package manager], 3.6.3, [frugalware-devel@frugalware.org], pacman-g2) AC_LANG(C) AM_CONFIG_HEADER(config.h) AC_CANONICAL_SYSTEM @@ -21,7 +21,7 @@ dnl Define here the libpacman version number PM_MAJOR_VERSION=0 PM_MINOR_VERSION=3 PM_MICRO_VERSION=6 -PM_MICRO_VERSION_SUFFIX=.2 +PM_MICRO_VERSION_SUFFIX=.3 PM_VERSION=$PM_MAJOR_VERSION.$PM_MINOR_VERSION.$PM_MICRO_VERSION$PM_MICRO_VERSION_SUFFIX dnl Needed for libtool to create proper shared lib version PM_VERSION_INFO=`expr $PM_MAJOR_VERSION + $PM_MINOR_VERSION`:$PM_MICRO_VERSION:$PM_MINOR_VERSION From vmiklos at frugalware.org Mon Sep 17 20:01:28 2007 From: vmiklos at frugalware.org (VMiklos) Date: Mon Sep 17 20:01:32 2007 Subject: [Frugalware-git] frugalware-current: pacman-g2-3.6.3-1-i686 Message-ID: <20070917180128.46B8E1678013@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=5ca3f68e2b411827bf9ec3f4ef71287a3b1b3415 commit 5ca3f68e2b411827bf9ec3f4ef71287a3b1b3415 Author: VMiklos Date: Mon Sep 17 20:01:08 2007 +0200 pacman-g2-3.6.3-1-i686 version bump added USE_DEVEL support diff --git a/source/base/pacman-g2/FrugalBuild b/source/base/pacman-g2/FrugalBuild index e1618c9..080cbb9 100644 --- a/source/base/pacman-g2/FrugalBuild +++ b/source/base/pacman-g2/FrugalBuild @@ -1,18 +1,39 @@ # Compiling Time: 0.39 SBU # Maintainer: VMiklos +USE_DEVEL=${USE_DEVEL:-"n"} + pkgname=pacman-g2 -pkgver=3.6.2 +pkgver=3.6.3 +Fuse $USE_DEVEL && pkgver=3.6.2.10.g928a3ae pkgrel=1 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}.conf etc/pacman.d/{frugalware,frugalware-current}) depends=('libarchive>=2.0.27' 'glibc>=2.6-2') makedepends=('doxygen' 'po4a' 'swig' 'java-gcj-compat' 'ecj' 'mono') +Fuse $USE_DEVEL && makedepends=(${makedepends[@]} 'intltool') Finclude mono groups=('base' 'chroot-core') archs=('i686' 'x86_64' 'ppc') up2date="lynx -dump $url/releases/ |Flasttar" -source=($url/releases/$pkgname-$pkgver.tar.gz) -signatures=("$source.asc") +if ! Fuse $USE_DEVEL; then + source=($url/releases/$pkgname-$pkgver.tar.gz) + signatures=("$source.asc") +else + _F_scm_type="git" + _F_scm_url="http://git.frugalware.org/repos/pacman-g2/.git/" + Finclude scm +fi + +build() +{ + if Fuse $USE_DEVEL; then + Funpack_scm + Fsed '\(^AC_INIT(.*, \)[0-9\.]\+\(, .*\)' "\1$pkgver\2/" configure.ac + sh autogen.sh + fi + Fbuild_mono +} + # optimization OK From voroskoi at frugalware.org Mon Sep 17 20:15:01 2007 From: voroskoi at frugalware.org (voroskoi) Date: Mon Sep 17 20:15:03 2007 Subject: [Frugalware-git] frugalware-current: curl-7.17.0-1-i686 Message-ID: <20070917181501.265EE1678012@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=33056edabeb5937dd75b14ae404eb4d53a003256 commit 33056edabeb5937dd75b14ae404eb4d53a003256 Author: voroskoi Date: Mon Sep 17 20:06:04 2007 +0200 curl-7.17.0-1-i686 version bump added libssh2 to depends() diff --git a/source/network/curl/FrugalBuild b/source/network/curl/FrugalBuild index f05bf64..558b217 100644 --- a/source/network/curl/FrugalBuild +++ b/source/network/curl/FrugalBuild @@ -3,14 +3,15 @@ # Maintainer: voroskoi pkgname=curl -pkgver=7.16.4 +pkgver=7.17.0 pkgrel=1 pkgdesc="A command line tool for transferring data specified with URL syntax." url="http://curl.haxx.se" -depends=('openssl=0.9.8' 'zlib' 'libidn' 'c-ares') +makedepends=('groff') +depends=('openssl=0.9.8' 'c-ares' 'libidn' 'libssh2') groups=('network') archs=('i686' 'x86_64') -Fconfopts="$Fconfopts --enable-ares" #necessary for rtorrent +Fconfopts="$Fconfopts --enable-ares" #ares necessary for rtorrent up2date="lynx -dump $url/download.html|grep Released|tr -s ' '|sed 's/, / /'|cut -d ' ' -f 3" source=(http://curl.haxx.se/download/$pkgname-$pkgver.tar.bz2) signatures=($source.asc) From voroskoi at frugalware.org Mon Sep 17 20:36:17 2007 From: voroskoi at frugalware.org (voroskoi) Date: Mon Sep 17 20:36:19 2007 Subject: [Frugalware-git] frugalware-current: whois-4.7.23-1-i686 Message-ID: <20070917183617.7A48F1678012@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=92ab80fbc4a4ae95d01cf4cdb6fa80a73ab28f58 commit 92ab80fbc4a4ae95d01cf4cdb6fa80a73ab28f58 Author: voroskoi Date: Mon Sep 17 20:25:34 2007 +0200 whois-4.7.23-1-i686 version bump diff --git a/source/network/whois/FrugalBuild b/source/network/whois/FrugalBuild index 3011104..8776950 100644 --- a/source/network/whois/FrugalBuild +++ b/source/network/whois/FrugalBuild @@ -3,7 +3,7 @@ # Maintainer: voroskoi pkgname=whois -pkgver=4.7.22 +pkgver=4.7.23 pkgrel=1 pkgdesc="The GNU whois client" url="http://www.linux.it/~md/software/" @@ -25,7 +25,7 @@ build() Ffile $pkgname-$pkgver/whois.conf /etc/whois.conf } -sha1sums=('fcf7d35b188fba56fbefba2e1fd5b94dc516f0ae' \ +sha1sums=('60d0428d237a11358c20bfe21d187322ae5739fd' \ '07bc0caaa23521d35d75584fdb5f95f1befdba25' \ '50e73d59b53cadf80e3c5aa8c1c8eb6667fa80e6') From priyank at frugalware.org Mon Sep 17 20:54:51 2007 From: priyank at frugalware.org (Priyank) Date: Mon Sep 17 20:54:53 2007 Subject: [Frugalware-git] frugalware-current: gnomebaker-0.6.2-1-i686 Message-ID: <20070917185451.2FC691678012@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=5c195910ff53424441646ac2449121d92f4c9970 commit 5c195910ff53424441646ac2449121d92f4c9970 Author: Priyank Date: Tue Sep 18 00:19:43 2007 +0530 gnomebaker-0.6.2-1-i686 * Version bump * Fixed up2date diff --git a/source/gnome-extra/gnomebaker/FrugalBuild b/source/gnome-extra/gnomebaker/FrugalBuild index e0ade46..2bd41cc 100644 --- a/source/gnome-extra/gnomebaker/FrugalBuild +++ b/source/gnome-extra/gnomebaker/FrugalBuild @@ -2,20 +2,20 @@ # Maintainer: Priyank Gosalia pkgname=gnomebaker -pkgver=0.6.1 +pkgver=0.6.2 pkgrel=1 pkgdesc="GnomeBaker is a CD/DVD burning application for the Gnome desktop." -_F_gnome_scrollkeeper="y" -_F_gnome_iconcache="y" -Finclude gnome-scriptlet sourceforge url="http://gnomebaker.sourceforge.net/" makedepends=('intltool') depends=('libgnomeui>=2.18.1' 'gtk+2' 'libglade' 'libnotify' 'cdrtools' 'mpg321' \ 'vorbis-tools' 'sox' 'dvd+rw-tools' 'perl-xml' 'gstreamer') groups=('gnome-extra') archs=('i686' 'x86_64') -up2date="lynx -dump 'http://sourceforge.net/project/showfiles.php?group_id=127397' | grep -m1 -A1 Package | tail -n1 | sed 's/.*]\(.*\) O.*/\1/'" +_F_gnome_scrollkeeper="y" +_F_gnome_iconcache="y" +_F_sourceforge_broken_up2date=1 +Finclude gnome-scriptlet sourceforge Fconfopts="${Fconfopts[@]} --enable-libnotify" -sha1sums=('27be843a1d5a33848bb37cd549984ea9b7ecfd52') +sha1sums=('0c4581eb9639172d1221817e621582b22c54a236') # optimization OK From voroskoi at frugalware.org Mon Sep 17 20:56:39 2007 From: voroskoi at frugalware.org (voroskoi) Date: Mon Sep 17 20:56:41 2007 Subject: [Frugalware-git] frugalware-current: gaupol-0.11-1-i686 Message-ID: <20070917185639.CABD21678012@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=b399ff4d6b029ec51aa1f26e7efb7f52bfaef72d commit b399ff4d6b029ec51aa1f26e7efb7f52bfaef72d Author: voroskoi Date: Mon Sep 17 20:47:53 2007 +0200 gaupol-0.11-1-i686 version bump diff --git a/source/gnome-extra/gaupol/FrugalBuild b/source/gnome-extra/gaupol/FrugalBuild index 0e5b73f..eca55d7 100644 --- a/source/gnome-extra/gaupol/FrugalBuild +++ b/source/gnome-extra/gaupol/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: voroskoi pkgname=gaupol -pkgver=0.10 +pkgver=0.11 pkgrel=1 pkgdesc="Gaupol is a subtitle editor for text-based subtitles." url="http://home.gna.org/gaupol/" @@ -13,7 +13,7 @@ groups=('gnome-extra') archs=('i686' 'x86_64') license="GPLv3" up2date="lynx -dump $url/download.html |grep gaupol.*.tar |sed -ne 's/.*l-\(.*\).t.*/\1/;1 p'" -source=(http://download.gna.org/gaupol/0.10/$pkgname-$pkgver.tar.gz) -sha1sums=('39b7dfabc9ef00fc98e0bb947199c2fabe9b49a7') +source=(http://download.gna.org/gaupol/$pkgver/$pkgname-$pkgver.tar.gz) +sha1sums=('f84c40aac974fab45f174994562e9c9b420c88e9') # optimization OK - noarch From voroskoi at frugalware.org Mon Sep 17 21:06:51 2007 From: voroskoi at frugalware.org (voroskoi) Date: Mon Sep 17 21:07:03 2007 Subject: [Frugalware-git] frugalware-current: xfe-1.04-1-i686 Message-ID: <20070917190652.05F9C1678012@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=7a9e6875e4e5850e8e3d507ee2adfeb5aad1c4c4 commit 7a9e6875e4e5850e8e3d507ee2adfeb5aad1c4c4 Author: voroskoi Date: Mon Sep 17 20:50:04 2007 +0200 xfe-1.04-1-i686 version bump diff --git a/source/xapps-extra/xfe/FrugalBuild b/source/xapps-extra/xfe/FrugalBuild index 8f9f42d..69e4dad 100644 --- a/source/xapps-extra/xfe/FrugalBuild +++ b/source/xapps-extra/xfe/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: voroskoi pkgname=xfe -pkgver=1.00 +pkgver=1.04 pkgrel=1 pkgdesc="X File Explorer (Xfe) is an MS-Explorer like file manager for X." url="http://roland65.free.fr/xfe/" @@ -10,7 +10,7 @@ depends=('fox') groups=('xapps-extra') archs=('i686' 'x86_64') Finclude sourceforge -sha1sums=('864dc02f7e8c4bed410d61872f71833636fc33e1') +sha1sums=('0a81c0a98312f48ba7c1fd208edf53516e743511') build() { Fconf From vmiklos at frugalware.org Mon Sep 17 23:24:42 2007 From: vmiklos at frugalware.org (VMiklos) Date: Mon Sep 17 23:24:44 2007 Subject: [Frugalware-git] frugalware-current: COPYRIGHT: fix up some outdated text Message-ID: <20070917212442.57DE91678012@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=1de19f78c2238b4e9e4722221c739f2920764af4 commit 1de19f78c2238b4e9e4722221c739f2920764af4 Author: VMiklos Date: Mon Sep 17 23:23:00 2007 +0200 COPYRIGHT: fix up some outdated text diff --git a/COPYRIGHT b/COPYRIGHT index d40c08a..5c4dcef 100644 --- a/COPYRIGHT +++ b/COPYRIGHT @@ -1,10 +1,10 @@ -Frugalware is originally written by Miklós Vajna and he hopes Frugalware will be -extended and worked on by many more after the initial public release :) -You are free to use it under the terms of the GNU General Public License, +Frugalware was originally written by Miklos Vajna and has been extended and +worked on by many more since then, see the AUTHORS file for an (incomplete) +list. You are free to use it under the terms of the GNU General Public License, as described in the LICENSE file. Frugalware as a whole is copyrighted by the Frugalware Developer Team. -Individual copyright notices can be found in the file headers. Furthermore, +Individual copyright notices can be found in the source tarballs. Furthermore, Frugalware includes code from several external sources. If you think your project is missing, feel free to send a patch. Here is an incomplete list: From vmiklos at frugalware.org Tue Sep 18 00:27:11 2007 From: vmiklos at frugalware.org (VMiklos) Date: Tue Sep 18 00:27:13 2007 Subject: [Frugalware-git] frugalware-current: xorg-server-1.2.0-9-i686 Message-ID: <20070917222711.929631678012@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=538c975ec1f3bdd14b5d3a41f638dbcb704ef802 commit 538c975ec1f3bdd14b5d3a41f638dbcb704ef802 Author: VMiklos Date: Tue Sep 18 00:26:37 2007 +0200 xorg-server-1.2.0-9-i686 added CVE-2007-4730.patch closes #2411 diff --git a/source/x11/xorg-server/CVE-2007-4730.patch b/source/x11/xorg-server/CVE-2007-4730.patch new file mode 100644 index 0000000..2beb3f9 --- /dev/null +++ b/source/x11/xorg-server/CVE-2007-4730.patch @@ -0,0 +1,129 @@ +From: Keith Packard +Date: Sun, 2 Sep 2007 04:14:22 +0000 (-0700) +Subject: [COMPOSITE] Composite used for pixmap population on redirect. (Bug #7447) +X-Git-Tag: xf-3_9_16d / xf-3_9_16e / xf-3_9_16f / xf-3_9_16Z +X-Git-Url: http://gitweb.freedesktop.org/?p=xorg/xserver.git;a=commitdiff;h=b69e6165136ff76ba4649bb9d11906fef27b78bc + +[COMPOSITE] Composite used for pixmap population on redirect. (Bug #7447) + +compNewPixmap copies bits from the parent window to the redirected child +pixmap to populate the pixmap with reasonable data. It cannot always use +CopyArea as that only works across matching depths. Use Composite when +the depths do not match. +(cherry picked from commit f98dfec79dadb70fa7bba84e7335f92b3a73dc02) +--- + +--- a/composite/compalloc.c ++++ b/composite/compalloc.c +@@ -461,7 +461,6 @@ compNewPixmap (WindowPtr pWin, int x, in + ScreenPtr pScreen = pWin->drawable.pScreen; + WindowPtr pParent = pWin->parent; + PixmapPtr pPixmap; +- GCPtr pGC; + + pPixmap = (*pScreen->CreatePixmap) (pScreen, w, h, pWin->drawable.depth); + +@@ -471,25 +470,63 @@ compNewPixmap (WindowPtr pWin, int x, in + pPixmap->screen_x = x; + pPixmap->screen_y = y; + +- pGC = GetScratchGC (pWin->drawable.depth, pScreen); +- +- /* +- * Copy bits from the parent into the new pixmap so that it will +- * have "reasonable" contents in case for background None areas. +- */ +- if (pGC) ++ if (pParent->drawable.depth == pWin->drawable.depth) + { +- XID val = IncludeInferiors; ++ GCPtr pGC = GetScratchGC (pWin->drawable.depth, pScreen); + +- ValidateGC(&pPixmap->drawable, pGC); +- dixChangeGC (serverClient, pGC, GCSubwindowMode, &val, NULL); +- (*pGC->ops->CopyArea) (&pParent->drawable, +- &pPixmap->drawable, +- pGC, +- x - pParent->drawable.x, +- y - pParent->drawable.y, +- w, h, 0, 0); +- FreeScratchGC (pGC); ++ /* ++ * Copy bits from the parent into the new pixmap so that it will ++ * have "reasonable" contents in case for background None areas. ++ */ ++ if (pGC) ++ { ++ XID val = IncludeInferiors; ++ ++ ValidateGC(&pPixmap->drawable, pGC); ++ dixChangeGC (serverClient, pGC, GCSubwindowMode, &val, NULL); ++ (*pGC->ops->CopyArea) (&pParent->drawable, ++ &pPixmap->drawable, ++ pGC, ++ x - pParent->drawable.x, ++ y - pParent->drawable.y, ++ w, h, 0, 0); ++ FreeScratchGC (pGC); ++ } ++ } ++ else ++ { ++ PictFormatPtr pSrcFormat = compWindowFormat (pParent); ++ PictFormatPtr pDstFormat = compWindowFormat (pWin); ++ XID inferiors = IncludeInferiors; ++ int error; ++ ++ PicturePtr pSrcPicture = CreatePicture (None, ++ &pParent->drawable, ++ pSrcFormat, ++ CPSubwindowMode, ++ &inferiors, ++ serverClient, &error); ++ ++ PicturePtr pDstPicture = CreatePicture (None, ++ &pPixmap->drawable, ++ pDstFormat, ++ 0, 0, ++ serverClient, &error); ++ ++ if (pSrcPicture && pDstPicture) ++ { ++ CompositePicture (PictOpSrc, ++ pSrcPicture, ++ NULL, ++ pDstPicture, ++ x - pParent->drawable.x, ++ y - pParent->drawable.y, ++ 0, 0, 0, 0, w, h); ++ } ++ if (pSrcPicture) ++ FreePicture (pSrcPicture, 0); ++ if (pDstPicture) ++ FreePicture (pDstPicture, 0); + } + return pPixmap; + } +--- a/composite/compint.h ++++ b/composite/compint.h +@@ -232,6 +232,9 @@ compCheckTree (ScreenPtr pScreen); + #define compCheckTree(s) + #endif + ++PictFormatPtr ++compWindowFormat (WindowPtr pWin); ++ + void + compSetPixmap (WindowPtr pWin, PixmapPtr pPixmap); + +--- a/composite/compwindow.c ++++ b/composite/compwindow.c +@@ -685,7 +685,7 @@ compGetWindowVisual (WindowPtr pWin) + return 0; + } + +-static PictFormatPtr ++PictFormatPtr + compWindowFormat (WindowPtr pWin) + { + ScreenPtr pScreen = pWin->drawable.pScreen; diff --git a/source/x11/xorg-server/FrugalBuild b/source/x11/xorg-server/FrugalBuild index d74cf76..e257d12 100644 --- a/source/x11/xorg-server/FrugalBuild +++ b/source/x11/xorg-server/FrugalBuild @@ -3,7 +3,7 @@ pkgname=xorg-server pkgver=1.2.0 -pkgrel=8 +pkgrel=9 mesaver=7.0.1 pkgdesc="Modular X.Org X Server" groups=('x11' 'xorg-core') @@ -41,7 +41,8 @@ source=(${source[@]} http://dl.sourceforge.net/sourceforge/mesa3d/MesaLib-$mesav bug-9367.patch \ mesa-6.5.3.patch \ remove__GLinterface.patch \ - http://xorg.freedesktop.org/archive/X11R7.2/patches/xorg-xserver-1.2.0-xcmisc.diff) + http://xorg.freedesktop.org/archive/X11R7.2/patches/xorg-xserver-1.2.0-xcmisc.diff \ + CVE-2007-4730.patch) subpkgs=('libglx') subdescs=('Glx library for XOrg.') @@ -74,6 +75,7 @@ build() { ## as always xorg devels -> <-mesa devels mess .. Fpatch mesa-6.5.3.patch Fpatch remove__GLinterface.patch + Fpatch CVE-2007-4730.patch ## GCC 4.2.0 bug do **NOT** remove this hack or it will kill your box!! ## http://gcc.gnu.org/bugzilla/show_bug.cgi?id=30052 echo 'CFLAGS = @CFLAGS@ -O0' >> hw/xfree86/scanpci/Makefile.am @@ -132,5 +134,6 @@ sha1sums=('3c4e8ae90fafdddb4ec6e640b693c2beb295d106' \ '22025bd7b96deec8cd31f24fe87a170f1c7898d1' \ 'f257b56953e9756d38aa01c7f7f5d9a13160576c' \ '6473a13b65db3e44ba8b369a6a9c667887c41a52' \ - '3557cbe23be6912106ed7220d95301311fb93a26') + '3557cbe23be6912106ed7220d95301311fb93a26' \ + '4b8f2ea8ac293db6d0c2942ef01d894e66a9764f') # optimization OK From vmiklos at frugalware.org Tue Sep 18 00:39:25 2007 From: vmiklos at frugalware.org (VMiklos) Date: Tue Sep 18 00:39:27 2007 Subject: [Frugalware-git] frugalware-current: mediawiki-1.10.2-1-i686 Message-ID: <20070917223925.2F4911678012@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=49408debce9eefa32cf3ce19d3eeafafd1099764 commit 49408debce9eefa32cf3ce19d3eeafafd1099764 Author: VMiklos Date: Tue Sep 18 00:39:02 2007 +0200 mediawiki-1.10.2-1-i686 version bump closes #2412 diff --git a/source/network-extra/mediawiki/FrugalBuild b/source/network-extra/mediawiki/FrugalBuild index 8d08dd4..040041e 100644 --- a/source/network-extra/mediawiki/FrugalBuild +++ b/source/network-extra/mediawiki/FrugalBuild @@ -3,7 +3,7 @@ # Maintainer: voroskoi pkgname=mediawiki -pkgver=1.10.1 +pkgver=1.10.2 pkgrel=1 pkgdesc="The collaborative editing software that runs Wikipedia" _F_sourceforge_dirname="wikipedia" @@ -25,6 +25,6 @@ build() Fexe /usr/bin/mediawikisetup } # php code, no need of optimalization -sha1sums=('16429c3a611dec82c0cfd998180190544982a5ee' \ +sha1sums=('4d936849a23a5f4db58a06fef4d33e2d64e4de76' \ '2c70930c46b8a5d87e830f64dc2761c5506ce967' \ 'b9810ea6531b4f61e41778b76f7601f2c4f9b0e2') From vmiklos at frugalware.org Tue Sep 18 00:52:20 2007 From: vmiklos at frugalware.org (VMiklos) Date: Tue Sep 18 00:52:23 2007 Subject: [Frugalware-git] pacman-tools: dg revert: use git apply -R instead of patch -p1 -R Message-ID: <20070917225220.277F51678012@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=pacman-tools.git;a=commitdiff;h=108d19785328a8039b5d2012e9fc5e183b076991 commit 108d19785328a8039b5d2012e9fc5e183b076991 Author: VMiklos Date: Tue Sep 18 00:51:38 2007 +0200 dg revert: use git apply -R instead of patch -p1 -R diff --git a/darcs-git.py b/darcs-git.py index 80b58f2..fc10721 100755 --- a/darcs-git.py +++ b/darcs-git.py @@ -419,7 +419,7 @@ Options: p = [] if i.picked == True: p.append(i.text) - sock = os.popen("patch -p1 -R >/dev/null", "w") + sock = os.popen("git apply -R >/dev/null", "w") sock.write("".join(p)) sock.close() # we need git reset too if we revert deleted files From vmiklos at frugalware.org Tue Sep 18 01:00:39 2007 From: vmiklos at frugalware.org (VMiklos) Date: Tue Sep 18 01:00:42 2007 Subject: [Frugalware-git] homepage-ng: FSA270-asterisk Message-ID: <20070917230039.DD6AE168800B@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=homepage-ng.git;a=commitdiff;h=6b955b83d6f59acd095d9d3a9e3f00190dd479ed commit 6b955b83d6f59acd095d9d3a9e3f00190dd479ed Author: VMiklos Date: Tue Sep 18 00:59:59 2007 +0200 FSA270-asterisk diff --git a/frugalware/xml/security.xml b/frugalware/xml/security.xml index e7a1726..16d2c5d 100644 --- a/frugalware/xml/security.xml +++ b/frugalware/xml/security.xml @@ -27,6 +27,19 @@ + 270 + 2007-09-18 + vmiklos + asterisk + 1.4.11-1terminus1 + 1.4.11-1terminus2 + http://bugs.frugalware.org/task/2377 + http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2007-4521 + A vulnerability has been reported in Asterisk, which can be exploited by malicious people to cause a DoS (Denial of Service). + The vulnerability is caused due to an error when handling emails with a malformed MIME body. This can be exploited to crash the service by sending a specially crafted email to a user and tricking him into listening to the voicemail. + Successful exploitation requires that the IMAP backend for the voicemail feature is used. Reportedly, other backends are not affected. + + 269 2007-09-13 vmiklos From vmiklos at frugalware.org Tue Sep 18 12:20:37 2007 From: vmiklos at frugalware.org (VMiklos) Date: Tue Sep 18 12:20:43 2007 Subject: [Frugalware-git] frugalware-current: intltool-0.36.2-1-i686 Message-ID: <20070918102037.496DE1678012@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=01f7ed919d9b65b9640af9aaf806c243dc637925 commit 01f7ed919d9b65b9640af9aaf806c243dc637925 Author: VMiklos Date: Tue Sep 18 12:19:57 2007 +0200 intltool-0.36.2-1-i686 version bump diff --git a/source/gnome/intltool/FrugalBuild b/source/gnome/intltool/FrugalBuild index edc24da..2fc3150 100644 --- a/source/gnome/intltool/FrugalBuild +++ b/source/gnome/intltool/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: VMiklos pkgname=intltool -pkgver=0.36.1 +pkgver=0.36.2 pkgrel=1 pkgdesc="Contains scripts and autoconf magic for internationalizing various kinds of data files." url="http://www.gnome.org/" @@ -11,4 +11,4 @@ groups=('gnome') archs=('i686' 'x86_64') _F_gnome_devel=y Finclude gnome -sha1sums=('94debf3e9194f4476329ad15f777bf71f2d0b459') +sha1sums=('c2ccd02b7688eb0b299608cb446dc80cdcd18795') From vmiklos at frugalware.org Tue Sep 18 12:47:55 2007 From: vmiklos at frugalware.org (VMiklos) Date: Tue Sep 18 12:47:58 2007 Subject: [Frugalware-git] frugalware-current: bochs-2.3.5-1-i686 Message-ID: <20070918104755.9D4B61678012@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=c1235842481164d8947809522cf16bc3ac254dce commit c1235842481164d8947809522cf16bc3ac254dce Author: VMiklos Date: Tue Sep 18 12:47:27 2007 +0200 bochs-2.3.5-1-i686 version bump diff --git a/source/xapps-extra/bochs/FrugalBuild b/source/xapps-extra/bochs/FrugalBuild index 7601fa2..8ddaf3b 100644 --- a/source/xapps-extra/bochs/FrugalBuild +++ b/source/xapps-extra/bochs/FrugalBuild @@ -2,8 +2,8 @@ # Maintainer: VMiklos pkgname=bochs -pkgver=2.3 -pkgrel=3 +pkgver=2.3.5 +pkgrel=1 pkgdesc="A highly portable open source IA-32 (x86) PC emulator." depends=('sdl' 'wxgtk' 'libx11' 'libxpm') makedepends=('xproto') @@ -11,7 +11,7 @@ groups=('xapps-extra') archs=('i686' 'x86_64') Finclude sourceforge up2date="lynx -dump http://bochs.sourceforge.net/|grep -1 Current|sed -n 's/.*s \(.*\)/\1/;3 p'" -sha1sums=('2fe0dbdebd7fe9fe07d697bcbe1736bdaeb64aaf') +sha1sums=('854bc37ee621212b6c73f5c5c194a97b6b4369f0') [ "$CARCH" == "x86_64" ] && Fconfopts="$Fconfopts --enable-sse=2 --enable-3dnow --enable-x86-64" From vmiklos at frugalware.org Tue Sep 18 13:19:16 2007 From: vmiklos at frugalware.org (VMiklos) Date: Tue Sep 18 13:19:18 2007 Subject: [Frugalware-git] frugalware-current: apg-2.2.3-1-x86_64 Message-ID: <20070918111916.130D21678012@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=2d72ec5408884df4282f528469f1d6a723710d15 commit 2d72ec5408884df4282f528469f1d6a723710d15 Author: VMiklos Date: Tue Sep 18 13:18:51 2007 +0200 apg-2.2.3-1-x86_64 added x86_64 to archs() diff --git a/source/apps-extra/apg/FrugalBuild b/source/apps-extra/apg/FrugalBuild index 5f8a58f..b04b279 100644 --- a/source/apps-extra/apg/FrugalBuild +++ b/source/apps-extra/apg/FrugalBuild @@ -8,7 +8,7 @@ pkgdesc="Automated Password Generator (APG)" url="http://www.adel.nursat.kz/apg/" depends=() groups=('apps-extra') -archs=('i686') +archs=('i686' 'x86_64') up2date="lynx -dump $url/download.shtml | grep -m1 tar.gz | sed 's/.*g-\(.*\).t.*/\1/'" source=($url/download/$pkgname-$pkgver.tar.gz $pkgname-$pkgver-makefile.diff) sha1sums=('7bdbc931ef8477717186dc3ab3a2d3c25012b4ca' \ From vmiklos at frugalware.org Tue Sep 18 13:20:49 2007 From: vmiklos at frugalware.org (VMiklos) Date: Tue Sep 18 13:20:52 2007 Subject: [Frugalware-git] frugalware-current: perl-dbd-pg-1.49-4-x86_64 Message-ID: <20070918112049.4B23C1678012@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=f14808683cf0f5790a104915601a3f2aacdef2ea commit f14808683cf0f5790a104915601a3f2aacdef2ea Author: VMiklos Date: Tue Sep 18 13:20:23 2007 +0200 perl-dbd-pg-1.49-4-x86_64 added x86_64 to archs() diff --git a/source/devel-extra/perl-dbd-pg/FrugalBuild b/source/devel-extra/perl-dbd-pg/FrugalBuild index 5de61f0..e6e2e01 100644 --- a/source/devel-extra/perl-dbd-pg/FrugalBuild +++ b/source/devel-extra/perl-dbd-pg/FrugalBuild @@ -11,3 +11,4 @@ pkgrel=4 sha1sums=('37c1c37a02afa00d48f8dd739d5d8502a7c40045') # optimization OK +archs=(${archs[@]} 'x86_64') From vmiklos at frugalware.org Tue Sep 18 13:23:16 2007 From: vmiklos at frugalware.org (VMiklos) Date: Tue Sep 18 13:23:17 2007 Subject: [Frugalware-git] frugalware-current: perl-getopt-mixed-1.10-1-x86_64 Message-ID: <20070918112316.152951678012@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=b35d515366ea3b6bbe773614592484f067f2fc0a commit b35d515366ea3b6bbe773614592484f067f2fc0a Author: VMiklos Date: Tue Sep 18 13:22:54 2007 +0200 perl-getopt-mixed-1.10-1-x86_64 added x86_64 to archs() diff --git a/source/devel-extra/perl-getopt-mixed/FrugalBuild b/source/devel-extra/perl-getopt-mixed/FrugalBuild index 819a78d..d0ed808 100644 --- a/source/devel-extra/perl-getopt-mixed/FrugalBuild +++ b/source/devel-extra/perl-getopt-mixed/FrugalBuild @@ -7,3 +7,4 @@ pkgver=1.10 pkgdesc="Getopt processing with both long and short options." Finclude perl sha1sums=('3d5fb052910e4a560ff02c4e4f594a27fe1d22e0') +archs=(${archs[@]} 'x86_64') From vmiklos at frugalware.org Tue Sep 18 13:26:49 2007 From: vmiklos at frugalware.org (VMiklos) Date: Tue Sep 18 13:26:54 2007 Subject: [Frugalware-git] frugalware-current: perl-mail-spf-v2.005-1-x86_64 Message-ID: <20070918112649.75AC51678012@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=4e6bb703ed2cc46fc868d648cf7e28c8656525d8 commit 4e6bb703ed2cc46fc868d648cf7e28c8656525d8 Author: VMiklos Date: Tue Sep 18 13:26:26 2007 +0200 perl-mail-spf-v2.005-1-x86_64 added x86_64 to archs() diff --git a/source/devel-extra/perl-mail-spf/FrugalBuild b/source/devel-extra/perl-mail-spf/FrugalBuild index 8b86a7b..be41ca5 100644 --- a/source/devel-extra/perl-mail-spf/FrugalBuild +++ b/source/devel-extra/perl-mail-spf/FrugalBuild @@ -8,3 +8,4 @@ pkgdesc="An object-oriented implementation of Sender Policy Framework" depends=('perl-module-build') Finclude perl sha1sums=('c15085ab29f70525f62805abdc06fe81cb61cc97') +archs=(${archs[@]} 'x86_64') From vmiklos at frugalware.org Tue Sep 18 13:29:02 2007 From: vmiklos at frugalware.org (VMiklos) Date: Tue Sep 18 13:29:03 2007 Subject: [Frugalware-git] frugalware-current: skype4py-0.9.28.3-1-x86_64 Message-ID: <20070918112902.2588A1678012@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=3a28e119775521bf0e248500e19d1a05f2c0429a commit 3a28e119775521bf0e248500e19d1a05f2c0429a Author: VMiklos Date: Tue Sep 18 13:28:40 2007 +0200 skype4py-0.9.28.3-1-x86_64 added x86_64 to archs() diff --git a/source/devel-extra/skype4py/FrugalBuild b/source/devel-extra/skype4py/FrugalBuild index 7520ebc..8a120cc 100644 --- a/source/devel-extra/skype4py/FrugalBuild +++ b/source/devel-extra/skype4py/FrugalBuild @@ -11,6 +11,6 @@ Finclude sourceforge # don't add skype to here, it's nobuild depends=('dbus-python' 'pygobject') groups=('devel-extra') -archs=('i686') +archs=('i686' 'x86_64') sha1sums=('6989a6da270b81a53a1ce6781f358b0eea7322d5') _F_cd_path="Skype4Py-$pkgver" From vmiklos at frugalware.org Tue Sep 18 13:32:09 2007 From: vmiklos at frugalware.org (VMiklos) Date: Tue Sep 18 13:32:11 2007 Subject: [Frugalware-git] frugalware-current: avant-window-navigator-0.1.1_2-1-x86_64 Message-ID: <20070918113209.345531678012@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=26c240630d35b68d54e4fa3e61be1a57a1a868c1 commit 26c240630d35b68d54e4fa3e61be1a57a1a868c1 Author: VMiklos Date: Tue Sep 18 13:31:44 2007 +0200 avant-window-navigator-0.1.1_2-1-x86_64 added x86_64 to archs() diff --git a/source/gnome-extra/avant-window-navigator/FrugalBuild b/source/gnome-extra/avant-window-navigator/FrugalBuild index 9d379b8..80de8e5 100644 --- a/source/gnome-extra/avant-window-navigator/FrugalBuild +++ b/source/gnome-extra/avant-window-navigator/FrugalBuild @@ -15,7 +15,7 @@ _F_gnome_schemas=('/etc/gconf/schemas/avant-window-navigator.schemas') _F_gnome_iconcache=y _F_gnome_desktop=y Finclude gnome-scriptlet -archs=('i686') +archs=('i686' 'x86_64') up2date="lynx -dump http://code.google.com/p/avant-window-navigator/downloads/list | grep 'tar.gz' | sed '/rpms/d' | sed '/detail/d' | grep -m1 avant | sed 's/.*navigator-//' | sed 's/\.tar.*//' | sed 's/-/_/'" source=(http://$pkgname.googlecode.com/files/$pkgname-$realver.tar.gz) sha1sums=('a17f46d00e7895bc95d2a817efa8ce8bd90aa3e4') From vmiklos at frugalware.org Tue Sep 18 13:38:55 2007 From: vmiklos at frugalware.org (VMiklos) Date: Tue Sep 18 13:38:57 2007 Subject: [Frugalware-git] frugalware-current: buoh-0.8.2-1-x86_64 Message-ID: <20070918113855.881DF16A8016@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=5dac126804c000a0ef312e64dd916165f7297f5a commit 5dac126804c000a0ef312e64dd916165f7297f5a Author: VMiklos Date: Tue Sep 18 13:38:29 2007 +0200 buoh-0.8.2-1-x86_64 added x86_64 to archs() diff --git a/source/gnome-extra/buoh/FrugalBuild b/source/gnome-extra/buoh/FrugalBuild index 564c6d7..ac4975a 100644 --- a/source/gnome-extra/buoh/FrugalBuild +++ b/source/gnome-extra/buoh/FrugalBuild @@ -10,7 +10,7 @@ url="http://buoh.steve-o.org/" depends=('gtk+2' 'libsoup' 'libgnomeui' 'gconf') makedepends=('perl-xml') groups=('gnome-extra') -archs=('i686') +archs=('i686' 'x86_64') up2date="lynx -dump $url/downloads/ | grep '.tar.bz2' | Flasttarbz2" source=($url/downloads/$pkgname-$pkgver.tar.bz2) sha1sums=('29d702b485a901868f65116e753cb515b3e2a2c5') From vmiklos at frugalware.org Tue Sep 18 13:45:09 2007 From: vmiklos at frugalware.org (VMiklos) Date: Tue Sep 18 13:45:11 2007 Subject: [Frugalware-git] frugalware-current: catfish-0.2.4-2-x86_64 Message-ID: <20070918114509.A0F8916A8019@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=ddf449484e9b367af9231405e8861aa787fcc682 commit ddf449484e9b367af9231405e8861aa787fcc682 Author: VMiklos Date: Tue Sep 18 13:44:46 2007 +0200 catfish-0.2.4-2-x86_64 added x86_64 to archs() diff --git a/source/gnome-extra/catfish/FrugalBuild b/source/gnome-extra/catfish/FrugalBuild index ec7dc1e..ce9de68 100644 --- a/source/gnome-extra/catfish/FrugalBuild +++ b/source/gnome-extra/catfish/FrugalBuild @@ -6,7 +6,7 @@ pkgver=0.2.4 pkgrel=2 pkgdesc="A handy file searching tool that can use find, slocate or tracker as backend." url="http://software.twotoasts.de/?page=catfish" -archs=('i686') +archs=('i686' 'x86_64') groups=('gnome-extra') depends=('gtk+2' 'pygtk' 'libglade' 'findutils' 'slocate' 'tracker') up2date="lynx -dump $url | grep "Stable" | cut -d ' ' -f6 | sed -n 's|v||p'" From vmiklos at frugalware.org Tue Sep 18 13:58:01 2007 From: vmiklos at frugalware.org (VMiklos) Date: Tue Sep 18 13:58:03 2007 Subject: [Frugalware-git] frugalware-current: goocanvas-0.9-1-x86_64 Message-ID: <20070918115801.A1C2616E8011@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=69583a79fe8dfe30db394801edeb4b1cdd6b871a commit 69583a79fe8dfe30db394801edeb4b1cdd6b871a Author: VMiklos Date: Tue Sep 18 13:57:57 2007 +0200 goocanvas-0.9-1-x86_64 added x86_64 to archs() diff --git a/source/gnome-extra/goocanvas/FrugalBuild b/source/gnome-extra/goocanvas/FrugalBuild index d041c4e..a58cc8f 100644 --- a/source/gnome-extra/goocanvas/FrugalBuild +++ b/source/gnome-extra/goocanvas/FrugalBuild @@ -8,7 +8,7 @@ pkgdesc="GooCanvas is a cairo-based canvas widget for GTK+." depends=('cairo' 'gtk+2') options=('scriptlet') groups=('gnome-extra') -archs=('i686') +archs=('i686' 'x86_64') Finclude sourceforge sha1sums=('d26cb18350cbd612f60d93fab1374b4ec8f17575') From priyank at frugalware.org Tue Sep 18 16:42:02 2007 From: priyank at frugalware.org (Priyank) Date: Tue Sep 18 16:42:04 2007 Subject: [Frugalware-git] gfpm: changed Name to "Package Manager (Gfpm)" in .desktop files Message-ID: <20070918144202.24B451678012@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gfpm.git;a=commitdiff;h=e3f83306721a93cd790c07e4b45ae2f8ef6771eb commit e3f83306721a93cd790c07e4b45ae2f8ef6771eb Author: Priyank Date: Tue Sep 18 20:09:00 2007 +0530 changed Name to "Package Manager (Gfpm)" in .desktop files diff --git a/data/gfpm-kde.desktop b/data/gfpm-kde.desktop index 69bcb2f..7cbb85d 100644 --- a/data/gfpm-kde.desktop +++ b/data/gfpm-kde.desktop @@ -1,6 +1,6 @@ [Desktop Entry] Encoding=UTF-8 -Name=Gfpm +Name=Package Manager (Gfpm) Comment=Graphical Frugalware Package Manager Exec=kdesu gfpm Icon=gfpm.png diff --git a/data/gfpm.desktop b/data/gfpm.desktop index bdc4bca..c0c4feb 100644 --- a/data/gfpm.desktop +++ b/data/gfpm.desktop @@ -1,6 +1,6 @@ [Desktop Entry] Encoding=UTF-8 -Name=Gfpm +Name=Package Manager (Gfpm) Comment=Graphical Frugalware Package Manager Exec=gksu gfpm Terminal=false From krics at linuxforum.hu Tue Sep 18 17:15:30 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Tue Sep 18 17:15:34 2007 Subject: [Frugalware-git] frugalware-current: libarchive-2.3.1-1-x86_64 Message-ID: <20070918151530.39AC61678012@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=9c74e87ca85956029a03587e94aa732a82d1fc1d commit 9c74e87ca85956029a03587e94aa732a82d1fc1d Author: Christian Hamar alias krix Date: Tue Sep 18 17:14:48 2007 +0200 libarchive-2.3.1-1-x86_64 * Version bump diff --git a/source/base/libarchive/FrugalBuild b/source/base/libarchive/FrugalBuild index 53ff146..eb66145 100644 --- a/source/base/libarchive/FrugalBuild +++ b/source/base/libarchive/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: Christian Hamar alias krix pkgname=libarchive -pkgver=2.2.8 +pkgver=2.3.1 pkgrel=1 pkgdesc="Library to create and read several different archive formats" groups=('base' 'chroot-core') @@ -11,5 +11,5 @@ url="http://people.freebsd.org/~kientzle/libarchive/" depends=('bzip2' 'zlib') up2date="lynx -dump $url |Flasttar" source=($url/src/$pkgname-$pkgver.tar.gz) -sha1sums=('49decd6a15152a0f666de10c947afee1a52566af') +sha1sums=('f2205c3756d5ac30255d07d7bdd8cfbac4d269e4') # optimization OK From krics at linuxforum.hu Tue Sep 18 17:28:17 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Tue Sep 18 17:28:19 2007 Subject: [Frugalware-git] frugalware-current: libarchive-2.2.8-2-x86_64 Message-ID: <20070918152817.C6DE71678012@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=3dd57a6572b087d0517a273874bb49fef6b9b62d commit 3dd57a6572b087d0517a273874bb49fef6b9b62d Author: Christian Hamar alias krix Date: Tue Sep 18 17:27:40 2007 +0200 libarchive-2.2.8-2-x86_64 * Force it back .. 2.3.1 cause corrupted uncompression... * How nice changelog was in it .. nothing about that.. diff --git a/source/base/libarchive/FrugalBuild b/source/base/libarchive/FrugalBuild index eb66145..354b9a9 100644 --- a/source/base/libarchive/FrugalBuild +++ b/source/base/libarchive/FrugalBuild @@ -2,8 +2,8 @@ # Maintainer: Christian Hamar alias krix pkgname=libarchive -pkgver=2.3.1 -pkgrel=1 +pkgver=2.2.8 +pkgrel=2 pkgdesc="Library to create and read several different archive formats" groups=('base' 'chroot-core') archs=('i686' 'x86_64' 'ppc') @@ -11,5 +11,6 @@ url="http://people.freebsd.org/~kientzle/libarchive/" depends=('bzip2' 'zlib') up2date="lynx -dump $url |Flasttar" source=($url/src/$pkgname-$pkgver.tar.gz) -sha1sums=('f2205c3756d5ac30255d07d7bdd8cfbac4d269e4') +sha1sums=('49decd6a15152a0f666de10c947afee1a52566af') +options=('force') # optimization OK From priyank at frugalware.org Tue Sep 18 17:38:19 2007 From: priyank at frugalware.org (Priyank) Date: Tue Sep 18 17:38:22 2007 Subject: [Frugalware-git] frugalware-current: leafpad-0.8.12-1-i686 Message-ID: <20070918153819.508F81678012@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=52d44d156dbf2a47bc7b0e0e039e4095e0f7adbc commit 52d44d156dbf2a47bc7b0e0e039e4095e0f7adbc Author: Priyank Date: Tue Sep 18 21:03:26 2007 +0530 leafpad-0.8.12-1-i686 * Version bump diff --git a/source/xapps-extra/leafpad/FrugalBuild b/source/xapps-extra/leafpad/FrugalBuild index bf08b32..6045a93 100644 --- a/source/xapps-extra/leafpad/FrugalBuild +++ b/source/xapps-extra/leafpad/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: Priyank Gosalia pkgname=leafpad -pkgver=0.8.11 +pkgver=0.8.12 pkgrel=1 pkgdesc="A gtk2 based simple text editor." url="http://tarot.freeshell.org/leafpad" @@ -13,6 +13,6 @@ up2date="lynx -dump $url | grep -m1 tar.gz$ | sed -ne 's/.*d-\(.*\).*.tar.gz/\1/ source=(http://savannah.nongnu.org/download/$pkgname/$pkgname-$pkgver.tar.gz) _F_gnome_iconcache="y" Finclude gnome-scriptlet -sha1sums=('166eba5e18094985c0adfd5efdc0692bcc91f086') +sha1sums=('4d70e98a3bdb0c6c22cebc6341d915505990d7c0') # optimization OK From priyank at frugalware.org Tue Sep 18 17:52:06 2007 From: priyank at frugalware.org (Priyank) Date: Tue Sep 18 17:52:08 2007 Subject: [Frugalware-git] fw-control-center: gnetconfig-mcs-plugin: autogen.sh: remove autom4te.cache before making the tarball Message-ID: <20070918155206.7DE361678012@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=fw-control-center.git;a=commitdiff;h=1524e14cf989e18a276cf963d85741cd52bcefa2 commit 1524e14cf989e18a276cf963d85741cd52bcefa2 Author: Priyank Date: Tue Sep 18 21:19:38 2007 +0530 gnetconfig-mcs-plugin: autogen.sh: remove autom4te.cache before making the tarball diff --git a/gnetconfig-mcs-plugin/autogen.sh b/gnetconfig-mcs-plugin/autogen.sh index b2904ea..fd43b13 100755 --- a/gnetconfig-mcs-plugin/autogen.sh +++ b/gnetconfig-mcs-plugin/autogen.sh @@ -46,6 +46,7 @@ if [ "$1" == "--dist" ]; then git log --no-merges |git name-rev --tags --stdin > gnetconfig-mcs-plugin-$ver/ChangeLog cd gnetconfig-mcs-plugin-$ver ./autogen.sh --git + rm -rf autom4te.cache cd .. tar czf gnetconfig-mcs-plugin-$ver.tar.gz gnetconfig-mcs-plugin-$ver rm -rf gnetconfig-mcs-plugin-$ver From priyank at frugalware.org Tue Sep 18 18:03:56 2007 From: priyank at frugalware.org (Priyank) Date: Tue Sep 18 18:03:59 2007 Subject: [Frugalware-git] fw-control-center: gnetconfig-mcs-plugin: Added translator credits Message-ID: <20070918160356.E2F131678012@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=fw-control-center.git;a=commitdiff;h=6d333c15b46d6c55591767444d324da362c51073 commit 6d333c15b46d6c55591767444d324da362c51073 Author: Priyank Date: Tue Sep 18 21:31:28 2007 +0530 gnetconfig-mcs-plugin: Added translator credits diff --git a/gnetconfig-mcs-plugin/AUTHORS b/gnetconfig-mcs-plugin/AUTHORS index d14abaf..41435af 100644 --- a/gnetconfig-mcs-plugin/AUTHORS +++ b/gnetconfig-mcs-plugin/AUTHORS @@ -8,4 +8,6 @@ Bernhard Walle Translators =========== -hu - Vajna Miklos +da_DK - Carl Andersen +fr_FR - Michel Hermier +hu_HU - Vajna Miklos From priyank at frugalware.org Tue Sep 18 18:08:38 2007 From: priyank at frugalware.org (Priyank) Date: Tue Sep 18 18:08:41 2007 Subject: [Frugalware-git] fw-control-center: gnetconfig-mcs-plugin: don't run configure script when using --dist (thanks vmiklos) Message-ID: <20070918160838.822811678012@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=fw-control-center.git;a=commitdiff;h=3e4a349e15a872cd64977ba92c2524ad653c7bce commit 3e4a349e15a872cd64977ba92c2524ad653c7bce Author: Priyank Date: Tue Sep 18 21:36:10 2007 +0530 gnetconfig-mcs-plugin: don't run configure script when using --dist (thanks vmiklos) diff --git a/gnetconfig-mcs-plugin/autogen.sh b/gnetconfig-mcs-plugin/autogen.sh index fd43b13..70b2e7f 100755 --- a/gnetconfig-mcs-plugin/autogen.sh +++ b/gnetconfig-mcs-plugin/autogen.sh @@ -67,7 +67,7 @@ autoheader -f autoconf -f cp -f $(dirname $(which automake))/../share/automake/mkinstalldirs ./ cp -f $(dirname $(which automake))/../share/gettext/config.rpath ./ -xdt-autogen +NOCONFIGURE=1 xdt-autogen automake -a -c --gnu --foreign if [ "$1" == "--git" ]; then rm -rf autom4te.cache From vmiklos at frugalware.org Tue Sep 18 18:14:03 2007 From: vmiklos at frugalware.org (VMiklos) Date: Tue Sep 18 18:14:06 2007 Subject: [Frugalware-git] frugalware-current: octave-2.9.14-1-i686 Message-ID: <20070918161404.05CC81678012@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=ad0be9fa31e23c447f1a4d69a58283205baa4ea4 commit ad0be9fa31e23c447f1a4d69a58283205baa4ea4 Author: VMiklos Date: Tue Sep 18 18:13:21 2007 +0200 octave-2.9.14-1-i686 version bump diff --git a/source/apps-extra/octave/FrugalBuild b/source/apps-extra/octave/FrugalBuild index 2bb19d0..40a21d8 100644 --- a/source/apps-extra/octave/FrugalBuild +++ b/source/apps-extra/octave/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: VMiklos pkgname=octave -pkgver=2.9.13 +pkgver=2.9.14 pkgrel=1 pkgdesc="Octave is a high-level language, primarily intended for numerical computations." url="http://www.octave.org/" @@ -12,7 +12,7 @@ groups=('apps-extra') archs=('i686' 'x86_64') up2date="lynx -dump $url/download.html|grep Testing|sed 's/.*) \([^ ]*\) (.*/\1/'" source=(ftp://ftp.octave.org/pub/$pkgname/$pkgname-$pkgver.tar.bz2) -sha1sums=('4983584a66c0ec11545cf840af5acc8eca48071b') +sha1sums=('f97ae13c931276a359312ceb5f957df23d723c6a') # optimization OK From priyank at frugalware.org Tue Sep 18 18:18:21 2007 From: priyank at frugalware.org (Priyank) Date: Tue Sep 18 18:18:26 2007 Subject: [Frugalware-git] frugalware-current: gnetconfig-mcs-plugin-0.1.0-1-i686 Message-ID: <20070918161822.1D4041678012@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=1b96bc5d4794fe17128cc6006a574468babef3bf commit 1b96bc5d4794fe17128cc6006a574468babef3bf Author: Priyank Date: Tue Sep 18 21:43:56 2007 +0530 gnetconfig-mcs-plugin-0.1.0-1-i686 * New package / Initial import diff --git a/source/xfce4/gnetconfig-mcs-plugin/FrugalBuild b/source/xfce4/gnetconfig-mcs-plugin/FrugalBuild new file mode 100644 index 0000000..2a57b71 --- /dev/null +++ b/source/xfce4/gnetconfig-mcs-plugin/FrugalBuild @@ -0,0 +1,26 @@ +# Compiling Time: 0.06 SBU +# Maintainer: Priyank Gosalia + +pkgname=gnetconfig-mcs-plugin +pkgver=0.1.0 +pkgrel=1 +pkgdesc="Gnetconfig plugin for Xfce4 settings manager." +url="ftp://ftp.frugalware.org/pub/other/fw-control-center/" +makedepends=('intltool' 'xfce4-dev-tools>=4.4.1') +depends=('libxfcegui4>=4.4.1' 'xfce-mcs-manager>=4.4.1' 'libxml2') +rodepends=('gnetconfig>=0.1.2') +groups=('xfce4' 'xfce-core') +archs=('i686' 'x86_64') +up2date="lynx -dump $url | grep $pkgname | Flasttar" +_F_gnome_iconcache="y" +Finclude gnome-scriptlet +source=($url/$pkgname-$pkgver.tar.gz) +signatures=(${source[0]}.asc) + +build() +{ + Fbuild + Fbuild_gnome_scriptlet +} + +# optimization OK From vmiklos at frugalware.org Tue Sep 18 20:15:32 2007 From: vmiklos at frugalware.org (VMiklos) Date: Tue Sep 18 20:15:35 2007 Subject: [Frugalware-git] frugalware-current: conduit-0.3.0-1-x86_64 Message-ID: <20070918181532.519981678012@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=443c7930587ab34c1f7d89525eb5e3b4333cccbb commit 443c7930587ab34c1f7d89525eb5e3b4333cccbb Author: VMiklos Date: Tue Sep 18 20:15:27 2007 +0200 conduit-0.3.0-1-x86_64 added x86_64 to archs() diff --git a/source/gnome-extra/conduit/FrugalBuild b/source/gnome-extra/conduit/FrugalBuild index a84681f..741fcb3 100644 --- a/source/gnome-extra/conduit/FrugalBuild +++ b/source/gnome-extra/conduit/FrugalBuild @@ -9,7 +9,7 @@ url="http://www.conduit-project.org/" depends=('pygtk' 'dbus-python' 'vobject' 'pygoocanvas') makedepends=('perl-xml' 'intltool') groups=('gnome-extra') -archs=('i686') +archs=('i686' 'x86_64') up2date="lynx -dump http://files.conduit-project.org/releases/ | grep $pkgver | Flasttar" source=(http://files.conduit-project.org/releases/$pkgname-$pkgver.tar.gz) sha1sums=('54d12c17b971fd3d456754a427c845d3f174caa6') From voroskoi at frugalware.org Tue Sep 18 20:47:25 2007 From: voroskoi at frugalware.org (voroskoi) Date: Tue Sep 18 20:47:26 2007 Subject: [Frugalware-git] homepage-ng: FSA271-realplayer Message-ID: <20070918184725.147C31678012@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=homepage-ng.git;a=commitdiff;h=1ab1d624e833e60900636afaf9ebefce880ccbff commit 1ab1d624e833e60900636afaf9ebefce880ccbff Author: voroskoi Date: Tue Sep 18 20:38:59 2007 +0200 FSA271-realplayer diff --git a/frugalware/xml/security.xml b/frugalware/xml/security.xml index 16d2c5d..27c9c19 100644 --- a/frugalware/xml/security.xml +++ b/frugalware/xml/security.xml @@ -27,6 +27,19 @@ + 271 + 2007-09-18 + voroskoi + realplayer + 10.0.8.805_20060718-1 + 10.0.9.809_20070726-1terminus1 + http://bugs.frugalware.org/task/2220 + http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2007-3410 + A vulnerability has been reported in RealPlayer and Helix Player, which can be exploited by malicious people to compromise a user's system. + The vulnerability is caused due to a boundary error in the wallclock functionality in "SmilTimeValue::parseWallClockValue()" when handling time formats. This can be exploited to cause a stack-based buffer overflow via an SMIL file with an overly long, specially-crafted time string. + Successful exploitation allows execution of arbitrary code when a user e.g. visits a malicious website. + + 270 2007-09-18 vmiklos From voroskoi at frugalware.org Tue Sep 18 20:52:01 2007 From: voroskoi at frugalware.org (voroskoi) Date: Tue Sep 18 20:52:03 2007 Subject: [Frugalware-git] homepage-ng: FSA272-wordpress Message-ID: <20070918185201.49B4E1678012@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=homepage-ng.git;a=commitdiff;h=02c541234302657c236e0aa3ef017ae4b6b7afb8 commit 02c541234302657c236e0aa3ef017ae4b6b7afb8 Author: voroskoi Date: Tue Sep 18 20:44:12 2007 +0200 FSA272-wordpress diff --git a/frugalware/xml/security.xml b/frugalware/xml/security.xml index 27c9c19..60add26 100644 --- a/frugalware/xml/security.xml +++ b/frugalware/xml/security.xml @@ -27,6 +27,19 @@ + 272 + 2007-09-18 + voroskoi + wordpress + 2.2.1-1terminus1 + 2.2.2-1terminus1 + http://bugs.frugalware.org/task/2363 + http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2007-4139 + Benjamin Flesch has discovered a vulnerability in WordPress, which can be exploited by malicious people to conduct cross-site scripting attacks. + Input passed to the "style" parameter in wp-admin/upload.php (when "post_id" is set to a negative integer value) is not properly sanitised before being returned to the user. This can be exploited to execute arbitrary HTML and script code in a user's browser session in context of an affected site. + Successful exploitation requires that the target user has valid author or higher credentials. + + 271 2007-09-18 voroskoi From voroskoi at frugalware.org Tue Sep 18 21:01:59 2007 From: voroskoi at frugalware.org (voroskoi) Date: Tue Sep 18 21:02:00 2007 Subject: [Frugalware-git] homepage-ng: FSA273-gftp Message-ID: <20070918190159.0D9D01678012@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=homepage-ng.git;a=commitdiff;h=cb3e1f3ea3eed5a6a5811a2eca2aeb596f424692 commit cb3e1f3ea3eed5a6a5811a2eca2aeb596f424692 Author: voroskoi Date: Tue Sep 18 20:54:03 2007 +0200 FSA273-gftp diff --git a/frugalware/xml/security.xml b/frugalware/xml/security.xml index 60add26..09d6bc3 100644 --- a/frugalware/xml/security.xml +++ b/frugalware/xml/security.xml @@ -27,6 +27,19 @@ + 273 + 2007-09-18 + voroskoi + gftp + 2.0.18-2 + 2.0.18-3terminus1 + http://bugs.frugalware.org/task/2368 + http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2007-3961 + http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2007-3962 + Some vulnerabilities have been reported in gFTP, which potentially can be exploited by malicious people to compromise a user's system. + The vulnerabilities are caused due to the use of vulnerable fsplib code, which may allow the execution of arbitrary code. + + 272 2007-09-18 voroskoi From krics at linuxforum.hu Tue Sep 18 21:03:57 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Tue Sep 18 21:03:58 2007 Subject: [Frugalware-git] frugalware-current: unzip-5.52-2-x86_64 Message-ID: <20070918190357.155811678012@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=c27277b2354b9ed4d6b0fbdb988643ad203f73c8 commit c27277b2354b9ed4d6b0fbdb988643ad203f73c8 Author: Christian Hamar alias krix Date: Tue Sep 18 21:03:41 2007 +0200 unzip-5.52-2-x86_64 * Release bump * Added a patch for fileio.c (from debian) which fix that git make test will not fail :) diff --git a/source/base/unzip/unzip-symlink-fix.patch b/source/base/unzip/unzip-symlink-fix.patch new file mode 100644 index 0000000..2ef9b07 --- /dev/null +++ b/source/base/unzip/unzip-symlink-fix.patch @@ -0,0 +1,15 @@ +diff -Naur unzip-5.52.orig/fileio.c unzip-5.52/fileio.c +--- unzip-5.52.orig/fileio.c 2007-09-18 20:52:10.000000000 +0200 ++++ unzip-5.52/fileio.c 2007-09-18 20:51:46.000000000 +0200 +@@ -413,7 +413,11 @@ + #endif /* NOVELL_BUG_FAILSAFE */ + Trace((stderr, "open_outfile: doing fopen(%s) for writing\n", + FnFilter1(G.filename))); ++#if defined(SYMLINKS) || defined(QLZIP) ++ if ((G.outfile = fopen(G.filename, FOPWR)) == (FILE *)NULL) { ++#else + if ((G.outfile = fopen(G.filename, FOPW)) == (FILE *)NULL) { ++#endif + Info(slide, 0x401, ((char *)slide, LoadFarString(CannotCreateFile), + FnFilter1(G.filename))); + return 1; From voroskoi at frugalware.org Tue Sep 18 21:14:00 2007 From: voroskoi at frugalware.org (voroskoi) Date: Tue Sep 18 21:14:02 2007 Subject: [Frugalware-git] homepage-ng: FSA274-clamav Message-ID: <20070918191400.D7FDE1678013@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=homepage-ng.git;a=commitdiff;h=2cde0f2178b322bd531451f81c28631e94019cd6 commit 2cde0f2178b322bd531451f81c28631e94019cd6 Author: voroskoi Date: Tue Sep 18 21:06:05 2007 +0200 FSA274-clamav diff --git a/frugalware/xml/security.xml b/frugalware/xml/security.xml index 09d6bc3..42a77b1 100644 --- a/frugalware/xml/security.xml +++ b/frugalware/xml/security.xml @@ -27,6 +27,22 @@ + 274 + 2007-09-18 + voroskoi + clamav + 0.91.1-1terminus1 + 0.91.2-1terminus1 + http://bugs.frugalware.org/task/2375 + http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2007-4510 + http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2007-4560 + Some vulnerabilities have been reported in ClamAV, which can potentially be exploited by malicious people to cause a DoS (Denial of Service) or to compromise a vulnerable system. + 1) A NULL-pointer dereference error exists within the "cli_scanrtf()" function in libclamav/rtf.c. This can potentially be exploited to crash ClamAV via a specially crafted RTF file. + 2) A NULL-pointer dereference error exists within the "cli_html_normalise()" function in libclamav/htmlnorm.c. This can potentially be exploited to crash ClamAV via a specially crafted HTML file containing a "data" URL scheme. + 3) The recipient address extracted from email messages is not properly sanitised before being used in a call to "popen()" when executing sendmail. This can be exploited to execute arbitrary code with the privileges of the clamav-milter process by sending an email with a specially crafted recipient address to the affected system. + Successful exploitation requires that clamav-milter is started with the "black hole" mode activated. + + 273 2007-09-18 voroskoi From voroskoi at frugalware.org Tue Sep 18 21:14:15 2007 From: voroskoi at frugalware.org (voroskoi) Date: Tue Sep 18 21:14:17 2007 Subject: [Frugalware-git] frugalware-current: gsl-1.10-1-i686 Message-ID: <20070918191415.6C9B6168800E@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=73f8015f990c96f160cd685605c444ac853e77af commit 73f8015f990c96f160cd685605c444ac853e77af Author: voroskoi Date: Tue Sep 18 20:53:35 2007 +0200 gsl-1.10-1-i686 version bump diff --git a/source/lib-extra/gsl/FrugalBuild b/source/lib-extra/gsl/FrugalBuild index e64b9ff..e90a935 100644 --- a/source/lib-extra/gsl/FrugalBuild +++ b/source/lib-extra/gsl/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: voroskoi pkgname=gsl -pkgver=1.9 +pkgver=1.10 pkgrel=1 pkgdesc="The GNU Scientific Library (GSL) is a numerical library for C and C++ programmers." url="http://www.gnu.org/software/gsl/" @@ -11,7 +11,7 @@ groups=('lib-extra') archs=('i686' 'x86_64') Fconfopts="$Fconfopts --with-gnu-ld --disable-static" up2date="lynx -dump $url |grep current |sed -e 's/.*L-\(.*\). I.*/\1/'" -source=(http://gnu-ftp.basemirror.de/gnu/gsl/$pkgname-$pkgver.tar.gz) +source=(ftp://ftp.gnu.org/gnu/gsl/$pkgname-$pkgver.tar.gz) signatures=($source.sig) # optimization OK From krics at linuxforum.hu Tue Sep 18 21:21:13 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Tue Sep 18 21:21:15 2007 Subject: [Frugalware-git] frugalware-current: unzip-5.52-4-x86_64 Message-ID: <20070918192113.D83881678012@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=14b7ca7422843b7f53e863972599078363529a93 commit 14b7ca7422843b7f53e863972599078363529a93 Author: Christian Hamar alias krix Date: Tue Sep 18 21:20:50 2007 +0200 unzip-5.52-4-x86_64 * Release bump again .. Before i forgot to commit the FB :P diff --git a/source/base/unzip/FrugalBuild b/source/base/unzip/FrugalBuild index 9381e42..00676a5 100644 --- a/source/base/unzip/FrugalBuild +++ b/source/base/unzip/FrugalBuild @@ -3,17 +3,19 @@ pkgname=unzip pkgver=5.52 -pkgrel=2 +pkgrel=4 pkgdesc="Info-ZIP's unzip utility" url="http://www.info-zip.org/UnZip.html" depends=('glibc') groups=('base' 'chroot-core') archs=('i686' 'x86_64' 'ppc') up2date="lynx -dump http://www.info-zip.org/UnZip.html|grep UnZip|sed -n 's/.*p \(.*\) \[.*/\1/;1 p'" -source=(http://ftp.info-zip.org/pub/infozip/src/unzip552.tar.gz CVE-2005-2475.diff CVE-2005-4667.diff) -sha1sums=('1831bd59b9e607a69052f83b263384895e2d4a19'\ - '9b0ea13f9176a428d87c93e7c76465f4dc63d628'\ - '0e6c8b3821c000590edeb42e33082704131dd6ec') +source=(http://ftp.info-zip.org/pub/infozip/src/unzip552.tgz CVE-2005-2475.diff CVE-2005-4667.diff \ + unzip-symlink-fix.patch) +sha1sums=('1831bd59b9e607a69052f83b263384895e2d4a19' \ + '9b0ea13f9176a428d87c93e7c76465f4dc63d628' \ + '0e6c8b3821c000590edeb42e33082704131dd6ec' \ + '40d723181a06b499515768b29700487623ec13ae') build() { From krics at linuxforum.hu Tue Sep 18 21:24:25 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Tue Sep 18 21:24:40 2007 Subject: [Frugalware-git] frugalware-current: unzip-5.52-4-x86_64 Message-ID: <20070918192425.5D28F1678012@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=b52efa996dd262b05d7e4dfe46db67f680d7e039 commit b52efa996dd262b05d7e4dfe46db67f680d7e039 Author: Christian Hamar alias krix Date: Tue Sep 18 21:24:16 2007 +0200 unzip-5.52-4-x86_64 * Fixed source URI (use ftp:// instead of http://) diff --git a/source/base/unzip/FrugalBuild b/source/base/unzip/FrugalBuild index 00676a5..88f1d3c 100644 --- a/source/base/unzip/FrugalBuild +++ b/source/base/unzip/FrugalBuild @@ -10,7 +10,7 @@ depends=('glibc') groups=('base' 'chroot-core') archs=('i686' 'x86_64' 'ppc') up2date="lynx -dump http://www.info-zip.org/UnZip.html|grep UnZip|sed -n 's/.*p \(.*\) \[.*/\1/;1 p'" -source=(http://ftp.info-zip.org/pub/infozip/src/unzip552.tgz CVE-2005-2475.diff CVE-2005-4667.diff \ +source=(ftp://ftp.info-zip.org/pub/infozip/src/unzip552.tgz CVE-2005-2475.diff CVE-2005-4667.diff \ unzip-symlink-fix.patch) sha1sums=('1831bd59b9e607a69052f83b263384895e2d4a19' \ '9b0ea13f9176a428d87c93e7c76465f4dc63d628' \ From voroskoi at frugalware.org Tue Sep 18 21:24:35 2007 From: voroskoi at frugalware.org (voroskoi) Date: Tue Sep 18 21:24:42 2007 Subject: [Frugalware-git] homepage-ng: FSA275-php Message-ID: <20070918192435.4E6D21678012@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=homepage-ng.git;a=commitdiff;h=9a41897a635a3d59251716f0fa61e1edf3979d6b commit 9a41897a635a3d59251716f0fa61e1edf3979d6b Author: voroskoi Date: Tue Sep 18 21:16:40 2007 +0200 FSA275-php diff --git a/frugalware/xml/security.xml b/frugalware/xml/security.xml index 42a77b1..2427563 100644 --- a/frugalware/xml/security.xml +++ b/frugalware/xml/security.xml @@ -27,6 +27,34 @@ + 275 + 2007-09-18 + voroskoi + php + 5.2.3-1terminus3 + 5.2.4-1terminus1 + http://bugs.frugalware.org/task/2383 + http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2007-3996 + http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2007-3378 + http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2007-3997 + http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2007-4652 + http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2007-4658 + http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2007-4659 + http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2007-4670 + http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2007-4657 + http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2007-4662 + http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2007-3998 + Some vulnerabilities have been reported in PHP, where some have unknown impacts and others can be exploited by malicious users to bypass certain security restrictions. + 1) An error with unknown impact exists within the "money_format()" function when processing "%i" and "%n" tokens. + 2) An unspecified error exists within the "zend_alter_ini_entry()" function. This can be exploited to trigger a memory_limit interruption. + 3) Two integer overflow errors exist within the "gdImageCreate()" and "gdImageCreateTrueColor()" functions in ext/gd/libgd/gd.c. These can be exploited to cause a heap-based buffer overflow via overly large integer values passed as parameters to e.g. the "imagecreatetruecolor()" PHP function. + 4) Two integer overflow errors exist within the "gdImageCopyResized()" function in ext/gd/libgd/gd.c. These can be exploited to cause a heap-based buffer overflow via overly large integer values passed as parameters to the "imagecopyresized()" or "imagecopyresampled()" PHP functions. Successful exploitation of vulnerabilities #3 and #4 may allow execution of arbitrary code, which may lead to security restrictions (e.g. the "disable_functions" directive) being bypassed, but requires that PHP is configured to use gd. + 5) An error exists within the handling of SQL queries containing "LOCAL INFILE" inside the MySQL and MySQLi extensions. This can be exploited to bypass the "open_basedir" and "safe_mode" directives. + 6) An error exists when processing "session_save_path()" and "ini_set()" functions called from a ".htaccess" file. This can be exploited to bypass the "open_basedir" and "safe_mode" directives. + 7) An unspecified error exists within the "glob()" function. This can be exploited to bypass the "open_basedir" directive. + 8) An unspecified error exists within the session extension. This can potentially be exploited to bypass the "open_basedir" directive when the session file is a symlink. + + 274 2007-09-18 voroskoi From janny at frugalware.org Wed Sep 19 08:38:53 2007 From: janny at frugalware.org (janny) Date: Wed Sep 19 08:38:58 2007 Subject: [Frugalware-git] frugalware-current: libkdcraw-0.1.2-1-i686 Message-ID: <20070919063853.3FCD21678013@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=21afbb43c793e56ddfcba4fe371eefce92b7ad23 commit 21afbb43c793e56ddfcba4fe371eefce92b7ad23 Author: janny Date: Wed Sep 19 08:26:42 2007 +0200 libkdcraw-0.1.2-1-i686 version bump diff --git a/source/kde-extra/libkdcraw/FrugalBuild b/source/kde-extra/libkdcraw/FrugalBuild index 071af1e..9c0b253 100644 --- a/source/kde-extra/libkdcraw/FrugalBuild +++ b/source/kde-extra/libkdcraw/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: Janny pkgname=libkdcraw -pkgver=0.1.1 +pkgver=0.1.2 pkgrel=1 pkgdesc="kde library for dcraw" archs=('i686' 'x86_64') @@ -13,6 +13,6 @@ _F_sourceforge_ext=".tar.bz2" _F_sourceforge_dirname="kipi" _F_sourceforge_broken_up2date=1 Finclude sourceforge -sha1sums=('6414d29fe865ad04650e25157d059481b421f1b6') +sha1sums=('8cf1b5e47c996e3a42c08eba40ab288fda1c2808') # optimization OK From crazy at frugalware.org Wed Sep 19 09:00:12 2007 From: crazy at frugalware.org (crazy) Date: Wed Sep 19 09:00:15 2007 Subject: [Frugalware-git] frugalware-current: pan-0.131-1-i686 Message-ID: <20070919070012.5714D1678013@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=baa96ae682f081315296450bcb18e237bed8cb5f commit baa96ae682f081315296450bcb18e237bed8cb5f Author: crazy Date: Wed Sep 19 08:56:21 2007 +0200 pan-0.131-1-i686 * just one Contributor not two diff --git a/source/gnome-extra/pan/FrugalBuild b/source/gnome-extra/pan/FrugalBuild index 6ab7cd4..aaeb93f 100644 --- a/source/gnome-extra/pan/FrugalBuild +++ b/source/gnome-extra/pan/FrugalBuild @@ -1,6 +1,5 @@ # Compiling Time: 1.36 SBU # Maintainer: Christian Hamar alias krix -# Contributor: crazy # Contributor: BMH1980 pkgname=pan From priyank at frugalware.org Wed Sep 19 09:07:40 2007 From: priyank at frugalware.org (Priyank) Date: Wed Sep 19 09:07:43 2007 Subject: [Frugalware-git] gfpm: AUTHORS: use xx_XX instead of xx for language code for translators Message-ID: <20070919070740.D73741678013@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gfpm.git;a=commitdiff;h=c768c668749243ed8debebd8a27b75b918f630e3 commit c768c668749243ed8debebd8a27b75b918f630e3 Author: Priyank Date: Wed Sep 19 12:34:59 2007 +0530 AUTHORS: use xx_XX instead of xx for language code for translators diff --git a/AUTHORS b/AUTHORS index eb16b9e..bd74fe8 100644 --- a/AUTHORS +++ b/AUTHORS @@ -9,9 +9,9 @@ Past Developers Translators =========== -* hu - Vajna Miklos -* fr - Michel Hermier -* dk - Carl Andersen +* da_DK - Carl Andersen +* fr_FR - Michel Hermier +* hu_HU - Vajna Miklos * sv_SE - Patric Werme Artwork From priyank at frugalware.org Wed Sep 19 09:15:08 2007 From: priyank at frugalware.org (Priyank) Date: Wed Sep 19 09:15:11 2007 Subject: [Frugalware-git] frugalware-current: gtkwave-3.1.0-1-i686 Message-ID: <20070919071508.BEEAB1678013@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=4d06a1f3636106282b28cf7de27eb401feb816ae commit 4d06a1f3636106282b28cf7de27eb401feb816ae Author: Priyank Date: Wed Sep 19 12:37:06 2007 +0530 gtkwave-3.1.0-1-i686 * Version bump diff --git a/source/xapps-extra/gtkwave/FrugalBuild b/source/xapps-extra/gtkwave/FrugalBuild index f56ec28..e4d72c4 100644 --- a/source/xapps-extra/gtkwave/FrugalBuild +++ b/source/xapps-extra/gtkwave/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: Priyank Gosalia pkgname=gtkwave -pkgver=3.0.30 +pkgver=3.1.0 pkgrel=1 pkgdesc="A wave viewer for LXT, LXT2, VZT, GHW and standard Verilog VCD/EVCD files." url="http://home.nc.rr.com/gtkwave/" @@ -12,6 +12,6 @@ groups=('xapps-extra' 'geda-suite') archs=('i686') up2date="lynx -dump $url | grep $pkgname | grep -m1 tar.gz | Flasttar" source=($url/$pkgname-$pkgver.tar.gz) -sha1sums=('252b9790706da346c54f6f73ed2f9a0a7abd44b2') +sha1sums=('63fe3bf228cdabc903f79e71092c015b5b75a26e') # optimization OK From janny at frugalware.org Wed Sep 19 09:25:00 2007 From: janny at frugalware.org (janny) Date: Wed Sep 19 09:25:03 2007 Subject: [Frugalware-git] frugalware-current: clamtk-3.04-1-i686 Message-ID: <20070919072500.DA8961678013@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=cc5931c8b8392f6fc0ee514e8d102f002998df7a commit cc5931c8b8392f6fc0ee514e8d102f002998df7a Author: janny Date: Wed Sep 19 09:24:29 2007 +0200 clamtk-3.04-1-i686 version bump diff --git a/source/xapps-extra/clamtk/FrugalBuild b/source/xapps-extra/clamtk/FrugalBuild index 56dd41b..16d8c5f 100644 --- a/source/xapps-extra/clamtk/FrugalBuild +++ b/source/xapps-extra/clamtk/FrugalBuild @@ -2,15 +2,15 @@ # Maintainer: Janny pkgname=clamtk -pkgver=3.02 -pkgrel=2 +pkgver=3.04 +pkgrel=1 pkgdesc="ClamTk is a GUI front-end for ClamAV using gtk2-perl" url="http://clamtk.sourceforge.net/" rodepends=('perl-gtk2' 'clamav' 'perl-date-calc' 'perl-file-find-rule' 'perl-gettext') groups=('xapps-extra') archs=('i686' 'x86_64') Finclude sourceforge -sha1sums=('09a64080b2677aa82b01e75b6870e1728d8d9583') +sha1sums=('973a5aa4ed76b0cf17d323a890bddb0ae57db8e9') build() { Fcd From crazy at frugalware.org Wed Sep 19 09:46:08 2007 From: crazy at frugalware.org (crazy) Date: Wed Sep 19 09:46:10 2007 Subject: [Frugalware-git] frugalware-current: libkexiv2-0.1.6-1-i686 Message-ID: <20070919074608.A56A11678013@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=2d4fcbc93cc9853406d7fb15e3eb33a1716f2992 commit 2d4fcbc93cc9853406d7fb15e3eb33a1716f2992 Author: crazy Date: Wed Sep 19 09:41:42 2007 +0200 libkexiv2-0.1.6-1-i686 * Version bump diff --git a/source/kde-extra/libkexiv2/FrugalBuild b/source/kde-extra/libkexiv2/FrugalBuild index fd9d76a..1808ab4 100644 --- a/source/kde-extra/libkexiv2/FrugalBuild +++ b/source/kde-extra/libkexiv2/FrugalBuild @@ -2,8 +2,8 @@ # Maintainer: crazy pkgname=libkexiv2 -pkgver=0.1.5 -pkgrel=2 +pkgver=0.1.6 +pkgrel=1 pkgdesc="KDE wrapper library for Exiv2 library with some extras" depends=('kdelibs>=3.5.7' 'exiv2>=0.15' 'libxinerama' 'libxfixes' 'libart_lgpl' 'libxcb' 'libice' 'libxcursor' 'libxrender' \ 'libxi' 'libidn' 'libxmu' 'libxft' 'libgcc' 'libpng') @@ -16,5 +16,5 @@ _F_kde_defaults=0 Finclude sourceforge kde url="http://www.kipi-plugins.org/" -sha1sums=('775c596f40a72c57b746ee2f116ac54944de47fb') +sha1sums=('725a718df0f87e8af5e8e37cbfff9cf198ef6243') # optimization OK From priyank at frugalware.org Wed Sep 19 09:50:43 2007 From: priyank at frugalware.org (Priyank) Date: Wed Sep 19 09:50:45 2007 Subject: [Frugalware-git] gfpm: gfpm-about: restructured the about dialog a bit Message-ID: <20070919075043.9EBE91678014@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gfpm.git;a=commitdiff;h=5de7cac91cbddb4d16c61b90b25e813370f24d3e commit 5de7cac91cbddb4d16c61b90b25e813370f24d3e Author: Priyank Date: Wed Sep 19 13:18:04 2007 +0530 gfpm-about: restructured the about dialog a bit diff --git a/src/gfpm-about.c b/src/gfpm-about.c index a1916c3..8d53ff3 100644 --- a/src/gfpm-about.c +++ b/src/gfpm-about.c @@ -45,6 +45,7 @@ static gchar *license = extern GtkWidget *gfpm_mw; +static GtkWidget *about_dlg = NULL; static GdkPixbuf *about_pixbuf = NULL; static gchar *authors[] = { "Priyank M. Gosalia ", "Christian Hamar " , @@ -57,27 +58,59 @@ static gchar *artists[] = { "Viktor Gondor ", "Priyank Gosalia ", NULL }; -void -gfpm_about (void) + +static void gfpm_about_dlg_create (void); +static void gfpm_about_dlg_hide (void); + +static void +gfpm_about_dlg_create (void) { - gchar *ver = g_strdup_printf ("%s (%s)", VERSION, GFPM_RELEASE_NAME); + gchar *ver = NULL; + GList *list; + if (!about_pixbuf) about_pixbuf = gfpm_get_icon ("gfpm", 128); - gtk_show_about_dialog (GTK_WINDOW(gfpm_mw), - "name", PACKAGE, - "version", ver, - "copyright", _("(C) 2006-2007 Frugalware Developer Team (GPL)"), - "comments", _("A graphical package manager for Frugalware Linux."), - "license", license, - "authors", authors, - "artists", artists, - "translator-credits", _("translator-name"), - "website", "http://www.frugalware.org/", - "website-label", "http://www.frugalware.org/", - "logo", about_pixbuf, - "wrap-license", TRUE, - NULL); + ver = g_strdup_printf ("%s (%s)", VERSION, GFPM_RELEASE_NAME); + about_dlg = gtk_about_dialog_new (); + gtk_about_dialog_set_name (GTK_ABOUT_DIALOG(about_dlg), PACKAGE); + gtk_about_dialog_set_version (GTK_ABOUT_DIALOG(about_dlg), ver); + gtk_about_dialog_set_copyright (GTK_ABOUT_DIALOG(about_dlg), _("(C) 2006-2007 Frugalware Developer Team (GPL)")); + gtk_about_dialog_set_comments (GTK_ABOUT_DIALOG(about_dlg), _("A graphical package manager for Frugalware Linux")); + gtk_about_dialog_set_license (GTK_ABOUT_DIALOG(about_dlg), license); + gtk_about_dialog_set_website (GTK_ABOUT_DIALOG(about_dlg), "http://www.frugalware.org/"); + gtk_about_dialog_set_website_label (GTK_ABOUT_DIALOG(about_dlg), "http://www.frugalware.org/"); + gtk_about_dialog_set_logo (GTK_ABOUT_DIALOG(about_dlg), about_pixbuf); + gtk_about_dialog_set_wrap_license (GTK_ABOUT_DIALOG(about_dlg), TRUE); + gtk_about_dialog_set_authors (GTK_ABOUT_DIALOG(about_dlg), authors); + gtk_about_dialog_set_artists (GTK_ABOUT_DIALOG(about_dlg), artists); + gtk_about_dialog_set_translator_credits (GTK_ABOUT_DIALOG(about_dlg), _("translator-credits")); + g_signal_connect (G_OBJECT(about_dlg), "destroy", G_CALLBACK(gtk_widget_destroyed), &about_dlg); + + list = gtk_container_get_children (GTK_CONTAINER((GTK_DIALOG(about_dlg))->action_area)); + list = list->next; + list = list->next; + g_signal_connect (G_OBJECT(list->data), "clicked", G_CALLBACK(gfpm_about_dlg_hide), NULL); g_free (ver); + + return; +} + +static void +gfpm_about_dlg_hide (void) +{ + gtk_widget_hide (about_dlg); + + return; +} + +void +gfpm_about (void) +{ + if (about_dlg == NULL) + gfpm_about_dlg_create (); + + gtk_widget_show (about_dlg); + return; } From priyank at frugalware.org Wed Sep 19 09:58:14 2007 From: priyank at frugalware.org (Priyank) Date: Wed Sep 19 09:58:15 2007 Subject: [Frugalware-git] frugalware-current: fortune-mod-1.99.1-1-i686 Message-ID: <20070919075814.550F81678014@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=b7339c2ba9085bd49c03088a1cb9c88f250fa116 commit b7339c2ba9085bd49c03088a1cb9c88f250fa116 Author: Priyank Date: Wed Sep 19 13:24:58 2007 +0530 fortune-mod-1.99.1-1-i686 * Moved to apps-extra diff --git a/source/apps-extra/fortune-mod/FrugalBuild b/source/apps-extra/fortune-mod/FrugalBuild new file mode 100644 index 0000000..0638612 --- /dev/null +++ b/source/apps-extra/fortune-mod/FrugalBuild @@ -0,0 +1,38 @@ +# Compiling Time: 0.02 SBU +# Maintainer: Priyank Gosalia + +pkgname=fortune-mod +pkgver=1.99.1 +pkgrel=1 +pkgdesc="The notorious Fortune Cookie Program from BSD games" +url="http://www.redellipse.net/code/fortune" +depends=('recode') +groups=('apps-extra') +archs=('i686' 'x86_64') +up2date="lynx -dump http://www.redellipse.net/code/downloads/ | grep $pkgname | Flasttar" +source=(http://www.redellipse.net/code/downloads/$pkgname-$pkgver.tar.gz \ + fortune-mod_all-fix.patch0 fortune-mod-1.99.1.patch) +sha1sums=('53aa354025094d7c0e544bb1662714815fa63918' \ + '666864d9053f617b3724b301a2f80c1c3702ea6c' \ + '4733ec91baf87a2d96a285287e6943d0778861ea') + +build() { + Fcd + Fpatchall + make REGEXDEFS='-DHAVE_REGEX_H -DPOSIX_REGEX -DHAVE_STDBOOL' \ + COOKIEDIR=/usr/share/fortune \ + LOCALDIR=/usr/local/share/fortune || return 1 + + make COOKIEDIR=/usr/share/fortune fortune/fortune.man || return 1 + + make FORTDIR=$Fdestdir/usr/bin \ + COOKIEDIR=$Fdestdir/usr/share/fortune \ + BINDIR=$Fdestdir/usr/bin \ + BINMANDIR=$Fdestdir/usr/man/man1 \ + FORTMANDIR=$Fdestdir/usr/man/man6 install + + Frm usr/share/fortune/*.u8 + Frm usr/share/fortune/off/*.u8 +} + +# optimization OK diff --git a/source/apps-extra/fortune-mod/fortune-mod-1.99.1.patch b/source/apps-extra/fortune-mod/fortune-mod-1.99.1.patch new file mode 100644 index 0000000..d9b27fb --- /dev/null +++ b/source/apps-extra/fortune-mod/fortune-mod-1.99.1.patch @@ -0,0 +1,99 @@ +--- fortune-mod-1.99.1/datfiles/Makefile ++++ fortune-mod-1.99.1/datfiles/Makefile +@@ -58,7 +58,7 @@ + if [ $(WEB) = 1 ] ; then cd html && $(MAKE) install ; fi + for i in $(COOKIES) ; do \ + install -m 0644 $$i $$i.dat $(COOKIEDIR) || exit $? ; \ +- cp -d $$i.u8 $(COOKIEDIR) ; \ ++ cp -P $$i.u8 $(COOKIEDIR) ; \ + done + + clean: +--- fortune-mod-1.99.1/datfiles/off/Makefile ++++ fortune-mod-1.99.1/datfiles/off/Makefile +@@ -38,7 +38,7 @@ + install -m 0755 -d $(OCOOKIEDIR) + for i in $(OCOOKIES) ; \ + do install -m 0644 $$i $$i.dat $(OCOOKIEDIR) || exit $$? ; \ +- cp -d $$i.u8 $(OCOOKIEDIR) ; \ ++ cp -P $$i.u8 $(OCOOKIEDIR) ; \ + done + + clean: +--- fortune-mod-1.99.1/Makefile ++++ fortune-mod-1.99.1/Makefile +@@ -65,8 +65,7 @@ + RECODELIBS=-lrecode + + DEFINES=-DFORTDIR="\"$(COOKIEDIR)\"" -DOFFDIR="\"$(OCOOKIEDIR)\"" -DLOCFORTDIR="\"$(LOCALDIR)\"" -DLOCOFFDIR="\"$(LOCALODIR)\"" +-CFLAGS=-O2 $(DEFINES) -Wall -fomit-frame-pointer -pipe -fsigned-char +-LDFLAGS=-s ++CFLAGS += $(DEFINES) -fsigned-char + + # The above flags are used by default; the debug flags are used when make + # is called with a debug target, such as 'make debug' +--- fortune-mod-1.99.1/fortune/fortune.c ++++ fortune-mod-1.99.1/fortune/fortune.c +@@ -97,7 +97,7 @@ + #endif /* killing warnings */ + + #define PROGRAM_NAME "fortune-mod" +-#define PROGRAM_VERSION "9708" ++#define PROGRAM_VERSION "1.99.1" + + #ifdef HAVE_STDBOOL_H + #include +@@ -256,6 +256,7 @@ + + int add_dir(register FILEDESC *); + ++const char *program_name; + char *program_version(void) + { + static char buf[BUFSIZ]; +@@ -1675,14 +1675,17 @@ + char *ctype, *crequest; + getargs(ac, av); + ++ program_name = (char *const) av[0]; + outer = recode_new_outer(true); + request = recode_new_request (outer); + + setlocale(LC_ALL,""); + ctype = nl_langinfo(CODESET); +- if(strcmp(ctype,"ANSI_X3.4-1968") == 0) +- ctype="ISO-8859-1"; +- ++ if (!ctype || !*ctype) ++ ctype="C"; /* revert to C if no valid envvars! */ ++ else ++ if(strcmp(ctype,"ANSI_X3.4-1968") == 0) ++ ctype="ISO-8859-1"; + crequest = malloc(strlen(ctype) + 7 + 1); + sprintf(crequest, "UTF-8..%s", ctype); + recode_scan_request (request, crequest); +--- fortune-mod-1.99.1/util/rot.c ++++ fortune-mod-1.99.1/util/rot.c +@@ -5,10 +5,11 @@ + + #include + #include ++#include + + int main(void) + { +- char a, b; ++ short int a, b; + + while ((a = getchar()) != EOF) + { +--- fortune-mod-1.99.1/util/unstr.c ++++ fortune-mod-1.99.1/util/unstr.c +@@ -96,6 +96,7 @@ + #include + #include + ++#include + #ifndef MAXPATHLEN + #define MAXPATHLEN 1024 + #endif /* MAXPATHLEN */ diff --git a/source/apps-extra/fortune-mod/fortune-mod_all-fix.patch0 b/source/apps-extra/fortune-mod/fortune-mod_all-fix.patch0 new file mode 100644 index 0000000..4c5692e --- /dev/null +++ b/source/apps-extra/fortune-mod/fortune-mod_all-fix.patch0 @@ -0,0 +1,21 @@ +--- fortune/fortune.c 2006-03-11 15:33:14.000000000 +0100 ++++ fortune/fortune.c 2006-03-11 15:43:16.000000000 +0100 +@@ -974,7 +974,7 @@ + if (!ret) + ret=add_file(percent, fullpathname, NULL, &File_list, + &File_tail, NULL); +- if ( (!ret && fullpathname != locpathname) || strcmp(sp, "all") == 0 ) ++ if (!ret && strncmp(fullpathname, locpathname, sizeof(fullpathname))) + ret=add_file(percent, locpathname, NULL, &File_list, + &File_tail, NULL); + +@@ -985,7 +985,8 @@ + } + if (!ret) + return FALSE; +- ++ if (strncmp(fullpathname, locpathname, sizeof(fullpathname)) && strcmp(sp, "all") == 0) ++ add_file(percent, locpathname, NULL, &File_list, &File_tail, NULL); + } + else + if (!add_file(percent, fullpathname, NULL, &File_list, diff --git a/source/apps/fortune-mod/FrugalBuild b/source/apps/fortune-mod/FrugalBuild deleted file mode 100644 index 6d465f9..0000000 --- a/source/apps/fortune-mod/FrugalBuild +++ /dev/null @@ -1,38 +0,0 @@ -# Compiling Time: 0.02 SBU -# Maintainer: Priyank Gosalia - -pkgname=fortune-mod -pkgver=1.99.1 -pkgrel=1 -pkgdesc="The notorious Fortune Cookie Program from BSD games" -url="http://www.redellipse.net/code/fortune" -depends=('recode') -groups=('apps') -archs=('i686' 'x86_64') -up2date="lynx -dump http://www.redellipse.net/code/downloads/ | grep $pkgname | Flasttar" -source=(http://www.redellipse.net/code/downloads/$pkgname-$pkgver.tar.gz \ - fortune-mod_all-fix.patch0 fortune-mod-1.99.1.patch) -sha1sums=('53aa354025094d7c0e544bb1662714815fa63918' \ - '666864d9053f617b3724b301a2f80c1c3702ea6c' \ - '4733ec91baf87a2d96a285287e6943d0778861ea') - -build() { - Fcd - Fpatchall - make REGEXDEFS='-DHAVE_REGEX_H -DPOSIX_REGEX -DHAVE_STDBOOL' \ - COOKIEDIR=/usr/share/fortune \ - LOCALDIR=/usr/local/share/fortune || return 1 - - make COOKIEDIR=/usr/share/fortune fortune/fortune.man || return 1 - - make FORTDIR=$Fdestdir/usr/bin \ - COOKIEDIR=$Fdestdir/usr/share/fortune \ - BINDIR=$Fdestdir/usr/bin \ - BINMANDIR=$Fdestdir/usr/man/man1 \ - FORTMANDIR=$Fdestdir/usr/man/man6 install - - Frm usr/share/fortune/*.u8 - Frm usr/share/fortune/off/*.u8 -} - -# optimization OK diff --git a/source/apps/fortune-mod/fortune-mod-1.99.1.patch b/source/apps/fortune-mod/fortune-mod-1.99.1.patch deleted file mode 100644 index d9b27fb..0000000 --- a/source/apps/fortune-mod/fortune-mod-1.99.1.patch +++ /dev/null @@ -1,99 +0,0 @@ ---- fortune-mod-1.99.1/datfiles/Makefile -+++ fortune-mod-1.99.1/datfiles/Makefile -@@ -58,7 +58,7 @@ - if [ $(WEB) = 1 ] ; then cd html && $(MAKE) install ; fi - for i in $(COOKIES) ; do \ - install -m 0644 $$i $$i.dat $(COOKIEDIR) || exit $? ; \ -- cp -d $$i.u8 $(COOKIEDIR) ; \ -+ cp -P $$i.u8 $(COOKIEDIR) ; \ - done - - clean: ---- fortune-mod-1.99.1/datfiles/off/Makefile -+++ fortune-mod-1.99.1/datfiles/off/Makefile -@@ -38,7 +38,7 @@ - install -m 0755 -d $(OCOOKIEDIR) - for i in $(OCOOKIES) ; \ - do install -m 0644 $$i $$i.dat $(OCOOKIEDIR) || exit $$? ; \ -- cp -d $$i.u8 $(OCOOKIEDIR) ; \ -+ cp -P $$i.u8 $(OCOOKIEDIR) ; \ - done - - clean: ---- fortune-mod-1.99.1/Makefile -+++ fortune-mod-1.99.1/Makefile -@@ -65,8 +65,7 @@ - RECODELIBS=-lrecode - - DEFINES=-DFORTDIR="\"$(COOKIEDIR)\"" -DOFFDIR="\"$(OCOOKIEDIR)\"" -DLOCFORTDIR="\"$(LOCALDIR)\"" -DLOCOFFDIR="\"$(LOCALODIR)\"" --CFLAGS=-O2 $(DEFINES) -Wall -fomit-frame-pointer -pipe -fsigned-char --LDFLAGS=-s -+CFLAGS += $(DEFINES) -fsigned-char - - # The above flags are used by default; the debug flags are used when make - # is called with a debug target, such as 'make debug' ---- fortune-mod-1.99.1/fortune/fortune.c -+++ fortune-mod-1.99.1/fortune/fortune.c -@@ -97,7 +97,7 @@ - #endif /* killing warnings */ - - #define PROGRAM_NAME "fortune-mod" --#define PROGRAM_VERSION "9708" -+#define PROGRAM_VERSION "1.99.1" - - #ifdef HAVE_STDBOOL_H - #include -@@ -256,6 +256,7 @@ - - int add_dir(register FILEDESC *); - -+const char *program_name; - char *program_version(void) - { - static char buf[BUFSIZ]; -@@ -1675,14 +1675,17 @@ - char *ctype, *crequest; - getargs(ac, av); - -+ program_name = (char *const) av[0]; - outer = recode_new_outer(true); - request = recode_new_request (outer); - - setlocale(LC_ALL,""); - ctype = nl_langinfo(CODESET); -- if(strcmp(ctype,"ANSI_X3.4-1968") == 0) -- ctype="ISO-8859-1"; -- -+ if (!ctype || !*ctype) -+ ctype="C"; /* revert to C if no valid envvars! */ -+ else -+ if(strcmp(ctype,"ANSI_X3.4-1968") == 0) -+ ctype="ISO-8859-1"; - crequest = malloc(strlen(ctype) + 7 + 1); - sprintf(crequest, "UTF-8..%s", ctype); - recode_scan_request (request, crequest); ---- fortune-mod-1.99.1/util/rot.c -+++ fortune-mod-1.99.1/util/rot.c -@@ -5,10 +5,11 @@ - - #include - #include -+#include - - int main(void) - { -- char a, b; -+ short int a, b; - - while ((a = getchar()) != EOF) - { ---- fortune-mod-1.99.1/util/unstr.c -+++ fortune-mod-1.99.1/util/unstr.c -@@ -96,6 +96,7 @@ - #include - #include - -+#include - #ifndef MAXPATHLEN - #define MAXPATHLEN 1024 - #endif /* MAXPATHLEN */ diff --git a/source/apps/fortune-mod/fortune-mod_all-fix.patch0 b/source/apps/fortune-mod/fortune-mod_all-fix.patch0 deleted file mode 100644 index 4c5692e..0000000 --- a/source/apps/fortune-mod/fortune-mod_all-fix.patch0 +++ /dev/null @@ -1,21 +0,0 @@ ---- fortune/fortune.c 2006-03-11 15:33:14.000000000 +0100 -+++ fortune/fortune.c 2006-03-11 15:43:16.000000000 +0100 -@@ -974,7 +974,7 @@ - if (!ret) - ret=add_file(percent, fullpathname, NULL, &File_list, - &File_tail, NULL); -- if ( (!ret && fullpathname != locpathname) || strcmp(sp, "all") == 0 ) -+ if (!ret && strncmp(fullpathname, locpathname, sizeof(fullpathname))) - ret=add_file(percent, locpathname, NULL, &File_list, - &File_tail, NULL); - -@@ -985,7 +985,8 @@ - } - if (!ret) - return FALSE; -- -+ if (strncmp(fullpathname, locpathname, sizeof(fullpathname)) && strcmp(sp, "all") == 0) -+ add_file(percent, locpathname, NULL, &File_list, &File_tail, NULL); - } - else - if (!add_file(percent, fullpathname, NULL, &File_list, From crazy at frugalware.org Wed Sep 19 09:59:44 2007 From: crazy at frugalware.org (crazy) Date: Wed Sep 19 09:59:46 2007 Subject: [Frugalware-git] frugalware-current: dosemu-1.3.5-1-i686 Message-ID: <20070919075944.BABF51678013@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=54ca476210079df63fd67a572d35f58a3616b62c commit 54ca476210079df63fd67a572d35f58a3616b62c Author: crazy Date: Wed Sep 19 09:55:28 2007 +0200 dosemu-1.3.5-1-i686 * moved to apps-extra * note to self 'split the plugins' diff --git a/source/apps-extra/dosemu/FrugalBuild b/source/apps-extra/dosemu/FrugalBuild new file mode 100644 index 0000000..cc46b14 --- /dev/null +++ b/source/apps-extra/dosemu/FrugalBuild @@ -0,0 +1,33 @@ +# Compiling Time: 0.01 SBU +# Maintainer: crazy + +pkgname=dosemu +pkgver=1.3.5 +pkgrel=1 +dfd=1.0 +pkgdesc="a program to emulate pure DOS environment" +depends=() +makedepends=('libx11' 'mkfontdir' 'bdftopcf' 'slang' 'sdl' 'xf86vidmodeproto' 'libxxf86vm' 'libsndfile') +rodepends=('mktemp' 'sed' 'grep') +groups=('apps-extra') +archs=('i686' 'x86_64') +_F_sourceforge_ext=".tgz" +Finclude sourceforge +source=($source \ + http://$_F_sourceforge_mirror.dl.sourceforge.net/sourceforge/$pkgname/$pkgname-freedos-$dfd-bin.tgz) +up2date="lynx -dump http://dosemu.sourceforge.net/bleeding/|grep 'most recent'|sed 's/.*\(1.3.[0-9]*\).*/\1/'" +sha1sums=('6bc01f42ac84a145cd367eb414d995ce6adb100d'\ + '55bfa8b289c6ddcd63d93a37c29a2d64a39b3775') + +build() +{ + Fconf \ + --sysconfdir=/etc/dosemu \ + --datadir=/usr/share + mv ../$pkgname-freedos-$dfd-bin.tgz $pkgname-freedos-bin.tgz + make || Fdie + make DESTDIR=$Fdestdir install || Fdie +} + + +# optimization OK diff --git a/source/apps-extra/dosemu/dosemu.install b/source/apps-extra/dosemu/dosemu.install new file mode 100644 index 0000000..339e755 --- /dev/null +++ b/source/apps-extra/dosemu/dosemu.install @@ -0,0 +1,42 @@ + +do_upgrade() { +cp $XorgConfig $XorgConfig.old +echo -n "Adding DOSEMU fonts to X11 FontPath..." +cat $XorgConfig | while read LINE ; +do + if echo $LINE | grep -i Section |grep -i Files 1> /dev/null ; then + START_LOOKING=true + fi + if [ "$START_LOOKING" = "true" ] ; then + if echo $LINE | grep -i EndSection 1> /dev/null ; then + echo "FontPath \"/usr/share/dosemu/Xfonts/\"" >>$tmpfile + START_LOOKING=false + fi + fi + echo $LINE >>$tmpfile +done +mv $tmpfile $XorgConfig +echo " done." +} + +post_install(){ +XorgConfig=/etc/X11/xorg.conf + +if [ -e $XorgConfig ] ; then + +tmpfile=$(mktemp) +grep -i "/usr/share/dosemu/Xfonts" $XorgConfig 1>/dev/null || do_upgrade +else +echo X11 not installed, skipping font installation +fi +} + +post_upgrade(){ + post_install +} + +op=$1 +shift + +$op $* + diff --git a/source/apps/dosemu/FrugalBuild b/source/apps/dosemu/FrugalBuild deleted file mode 100644 index 1728b15..0000000 --- a/source/apps/dosemu/FrugalBuild +++ /dev/null @@ -1,33 +0,0 @@ -# Compiling Time: 0.01 SBU -# Maintainer: crazy - -pkgname=dosemu -pkgver=1.3.5 -pkgrel=1 -dfd=1.0 -pkgdesc="a program to emulate pure DOS environment" -depends=() -makedepends=('libx11' 'mkfontdir' 'bdftopcf' 'slang' 'sdl' 'xf86vidmodeproto' 'libxxf86vm' 'libsndfile') -rodepends=('mktemp' 'sed' 'grep') -groups=('apps') -archs=('i686' 'x86_64') -_F_sourceforge_ext=".tgz" -Finclude sourceforge -source=($source \ - http://$_F_sourceforge_mirror.dl.sourceforge.net/sourceforge/$pkgname/$pkgname-freedos-$dfd-bin.tgz) -up2date="lynx -dump http://dosemu.sourceforge.net/bleeding/|grep 'most recent'|sed 's/.*\(1.3.[0-9]*\).*/\1/'" -sha1sums=('6bc01f42ac84a145cd367eb414d995ce6adb100d'\ - '55bfa8b289c6ddcd63d93a37c29a2d64a39b3775') - -build() -{ - Fconf \ - --sysconfdir=/etc/dosemu \ - --datadir=/usr/share - mv ../$pkgname-freedos-$dfd-bin.tgz $pkgname-freedos-bin.tgz - make || Fdie - make DESTDIR=$Fdestdir install || Fdie -} - - -# optimization OK diff --git a/source/apps/dosemu/dosemu.install b/source/apps/dosemu/dosemu.install deleted file mode 100644 index 339e755..0000000 --- a/source/apps/dosemu/dosemu.install +++ /dev/null @@ -1,42 +0,0 @@ - -do_upgrade() { -cp $XorgConfig $XorgConfig.old -echo -n "Adding DOSEMU fonts to X11 FontPath..." -cat $XorgConfig | while read LINE ; -do - if echo $LINE | grep -i Section |grep -i Files 1> /dev/null ; then - START_LOOKING=true - fi - if [ "$START_LOOKING" = "true" ] ; then - if echo $LINE | grep -i EndSection 1> /dev/null ; then - echo "FontPath \"/usr/share/dosemu/Xfonts/\"" >>$tmpfile - START_LOOKING=false - fi - fi - echo $LINE >>$tmpfile -done -mv $tmpfile $XorgConfig -echo " done." -} - -post_install(){ -XorgConfig=/etc/X11/xorg.conf - -if [ -e $XorgConfig ] ; then - -tmpfile=$(mktemp) -grep -i "/usr/share/dosemu/Xfonts" $XorgConfig 1>/dev/null || do_upgrade -else -echo X11 not installed, skipping font installation -fi -} - -post_upgrade(){ - post_install -} - -op=$1 -shift - -$op $* - From crazy at frugalware.org Wed Sep 19 10:08:05 2007 From: crazy at frugalware.org (crazy) Date: Wed Sep 19 10:08:09 2007 Subject: [Frugalware-git] frugalware-current: coccinella-0.96.2-1-i686 Message-ID: <20070919080805.6E7C1168800B@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=90ceecc5a3d30c44f9983880f95871eddd61fa16 commit 90ceecc5a3d30c44f9983880f95871eddd61fa16 Author: crazy Date: Wed Sep 19 10:01:07 2007 +0200 coccinella-0.96.2-1-i686 * Version bump diff --git a/source/xapps-extra/coccinella/FrugalBuild b/source/xapps-extra/coccinella/FrugalBuild index f6833e5..2de0aa5 100644 --- a/source/xapps-extra/coccinella/FrugalBuild +++ b/source/xapps-extra/coccinella/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: crazy pkgname=coccinella -pkgver=0.96.0 +pkgver=0.96.2 pkgrel=1 pkgdesc="A Jabber instant messaging client." depends=('tk') @@ -25,4 +25,4 @@ build() Fln /usr/lib/$pkgname/Coccinella.tcl /usr/bin/$pkgname Fdesktop "/usr/bin/$pkgname" "/usr/lib/$pkgname/images/$pkgname.ico" "Network;InstantMessaging;" } -sha1sums=('9143ae98180ab9b7db81dd40e5499ad577e9684d') +sha1sums=('c14756f307e7e789bb93bc72ab8df3af00edd782') From crazy at frugalware.org Wed Sep 19 10:27:45 2007 From: crazy at frugalware.org (crazy) Date: Wed Sep 19 10:27:48 2007 Subject: [Frugalware-git] frugalware-current: eaccelerator-0.9.5.1-3-i686 Message-ID: <20070919082745.2B2321678013@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=07a9ba71185bf943c454eff83ccbbec95d942059 commit 07a9ba71185bf943c454eff83ccbbec95d942059 Author: crazy Date: Wed Sep 19 10:08:10 2007 +0200 eaccelerator-0.9.5.1-3-i686 * up2date , url fix diff --git a/source/devel-extra/eaccelerator/FrugalBuild b/source/devel-extra/eaccelerator/FrugalBuild index cdca061..68a2b09 100644 --- a/source/devel-extra/eaccelerator/FrugalBuild +++ b/source/devel-extra/eaccelerator/FrugalBuild @@ -5,11 +5,11 @@ pkgname=eaccelerator pkgver=0.9.5.1 pkgrel=3 pkgdesc="PHP accelerator and encoder" -url="http://eaccelerator.net/" license="GPL2" _F_sourceforge_ext=".tar.bz2" Finclude sourceforge -up2date="lynx -dump http://eaccelerator.net/wiki | grep ']Release' | tail -n 1 | sed 's/.*Release-\(.*\) -.*/\1/'" +url="http://eaccelerator.net/" +up2date="lynx -dump http://eaccelerator.net/wiki | grep -m1 'Release-'|sed 's/.*se-\(.*\).*-.*/\1/'" source=(http://bart.$pkgname.net/source/$pkgver/$pkgname-$pkgver.tar.bz2 README.Frugalware) signatures=(http://bart.$pkgname.net/source/$pkgver/$pkgname-$pkgver.tar.bz2.asc '') groups=('devel-extra') From crazy at frugalware.org Wed Sep 19 10:27:45 2007 From: crazy at frugalware.org (crazy) Date: Wed Sep 19 10:27:51 2007 Subject: [Frugalware-git] frugalware-current: ltrace-0.4-2-i686 Message-ID: <20070919082745.5A7CB1678014@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=c45e7f352f2c03aea4e3cdbca5cf5b501f66f43f commit c45e7f352f2c03aea4e3cdbca5cf5b501f66f43f Author: crazy Date: Wed Sep 19 10:23:54 2007 +0200 ltrace-0.4-2-i686 * up2date fix * addded a note to FB about the debian difff-something on ftp diff --git a/source/devel-extra/ltrace/FrugalBuild b/source/devel-extra/ltrace/FrugalBuild index 3fcc058..d5e3ca8 100644 --- a/source/devel-extra/ltrace/FrugalBuild +++ b/source/devel-extra/ltrace/FrugalBuild @@ -9,7 +9,8 @@ url="http://packages.debian.org/unstable/utils/ltrace.html" depends=('elfutils>=0.128') groups=('devel-extra') archs=('i686' 'x86_64') -up2date="lynx -dump $url | grep 'Package: ltrace' | sed -n -e 's/.* (\([0-9\.]*\)-.*/\1/' -e '1 p'" +# NOTE: Check $pkgver-diff-X.gz on debians server before bumping +up2date="lynx -dump -nolist 'http://ftp.debian.org/debian/pool/main/l/ltrace/?S=D'|grep -om1 'ltrace_\(.*\).orig.tar.gz'|sed 's/.*_\(.*\).o.*/\1/'" source=(ftp://ftp.debian.org/debian/pool/main/l/$pkgname/${pkgname}_$pkgver.orig.tar.gz) sha1sums=('7c39e42a2071bc794364c1e8a5bd0ecf3f430b0f') From crazy at frugalware.org Wed Sep 19 10:39:36 2007 From: crazy at frugalware.org (crazy) Date: Wed Sep 19 10:39:37 2007 Subject: [Frugalware-git] frugalware-current: ksniffer-0.3-1-i686 Message-ID: <20070919083936.16D8F1678013@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=26e084263dcea29d55514c3b53bc1d1e048bf3c1 commit 26e084263dcea29d55514c3b53bc1d1e048bf3c1 Author: crazy Date: Wed Sep 19 10:35:45 2007 +0200 ksniffer-0.3-1-i686 * up2date source url and whatnot fix * BTW 'pkgextraver' is there ( even is bad to use it IMO ) * for such 'b , b , c' etc releases and _NOT_ to hide ALPHAS BETAS * and the like. In this case no one ( not even the m8r heh ) noticed '0.3' * _stable_ released while we use alpha crap diff --git a/source/kde-extra/ksniffer/FrugalBuild b/source/kde-extra/ksniffer/FrugalBuild index 6029605..2234e76 100644 --- a/source/kde-extra/ksniffer/FrugalBuild +++ b/source/kde-extra/ksniffer/FrugalBuild @@ -4,18 +4,18 @@ pkgname=ksniffer pkgver=0.3 pkgrel=1 -pkgextraver="-alpha2" pkgdesc="Network sniffing application for KDE" -url="http://www.ksniffer.org/" license="GPL" depends=('libxi' 'expat' 'libstdc++' 'qt' 'libxmu' 'kdelibs') makedepends=('libpcap') archs=('i686' 'x86_64') groups=('kde-extra') options=('scriptlet') +_F_sourceforge_ext=".tar.bz2" +_F_sourceforge_broken_up2date=1 +Finclude sourceforge +url="http://www.ksniffer.org/" Fconfopts="--disable-debug --enable-final --with-gnu-ld" -up2date="lynx -dump $url|grep -m1 released|sed 's/.*Sniffer \(.*\) rel.*/\1/;s/ //g'" -source=(http://www.kde-apps.org/CONTENT/content-files/26258-$pkgname-$pkgver$pkgextraver.tar.bz2) sha1sums=('3bcfc688f1d47e2a085d339c24242c98f398a628') # optimization OK From crazy at frugalware.org Wed Sep 19 10:46:26 2007 From: crazy at frugalware.org (crazy) Date: Wed Sep 19 10:46:28 2007 Subject: [Frugalware-git] frugalware-current: kcheckgmail-0.5.5-2-i686 Message-ID: <20070919084626.E9D0A1678014@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=5d626400ab56fcec2c6e2bbecd790a296204b8b1 commit 5d626400ab56fcec2c6e2bbecd790a296204b8b1 Author: crazy Date: Wed Sep 19 10:42:29 2007 +0200 kcheckgmail-0.5.5-2-i686 * up2date fix * don't use custom up2dates when _F_sourceforge* does work diff --git a/source/kde-extra/kcheckgmail/FrugalBuild b/source/kde-extra/kcheckgmail/FrugalBuild index fe384d2..9bc315c 100644 --- a/source/kde-extra/kcheckgmail/FrugalBuild +++ b/source/kde-extra/kcheckgmail/FrugalBuild @@ -10,8 +10,8 @@ depends=('libxi' 'libstdc++' 'qt' 'kdelibs>=3.5.7' 'expat>=2.0.1') archs=('i686' 'x86_64') groups=('kde-extra') _F_sourceforge_ext=".tar.bz2" +_F_sourceforge_broken_up2date=1 Finclude kde sourceforge -up2date="lynx -dump 'http://sourceforge.net/project/showfiles.php?group_id=116095' |grep $pkgname-[0-9\.]*\.tar.bz2|sed -ne 's/.*-\(.*\)\.t.*/\1/;1 p'" sha1sums=('8aa42eb996098ec4d7ff662e1e2db053626c1c4f') # optimization ok From boobaa at frugalware.org Wed Sep 19 10:52:17 2007 From: boobaa at frugalware.org (CSÉCSY László) Date: Wed Sep 19 10:52:19 2007 Subject: [Frugalware-git] frugalware-current: man-pages-2.65-1-i686 Message-ID: <20070919085217.EBE7B1678013@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=bd70e34c5045670b813d41c01d13ff55e06a52f8 commit bd70e34c5045670b813d41c01d13ff55e06a52f8 Author: CSÉCSY László Date: Wed Sep 19 10:52:04 2007 +0200 man-pages-2.65-1-i686 version bump diff --git a/source/apps/man-pages/FrugalBuild b/source/apps/man-pages/FrugalBuild index 6664a1b..913c58c 100644 --- a/source/apps/man-pages/FrugalBuild +++ b/source/apps/man-pages/FrugalBuild @@ -3,7 +3,7 @@ # Former m8r: VMiklos pkgname=man-pages -pkgver=2.64 +pkgver=2.65 pkgrel=1 pkgdesc="Man pages are online documentation for Linux" url="http://www.win.tue.nl/~aeb/linux/man" @@ -41,4 +41,4 @@ build() Frm /usr/share/man/man4/mouse.4 } # optimization OK - noarch -sha1sums=('f644f17a5f5ff0eae4066554026de02a8c3d4808') +sha1sums=('c1076301fd3ed0ad95dd091341aede5cb4729890') From crazy at frugalware.org Wed Sep 19 10:58:51 2007 From: crazy at frugalware.org (crazy) Date: Wed Sep 19 10:58:54 2007 Subject: [Frugalware-git] frugalware-current: dillo-0.8.6-1-i686 Message-ID: <20070919085851.0FA50168800B@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=1ddf0f081f54b9bdf60e83abe3a77cc712b84ee7 commit 1ddf0f081f54b9bdf60e83abe3a77cc712b84ee7 Author: crazy Date: Wed Sep 19 10:54:28 2007 +0200 dillo-0.8.6-1-i686 * up2date fix diff --git a/source/xapps-extra/dillo/FrugalBuild b/source/xapps-extra/dillo/FrugalBuild index 602fe4d..57d03af 100644 --- a/source/xapps-extra/dillo/FrugalBuild +++ b/source/xapps-extra/dillo/FrugalBuild @@ -9,7 +9,7 @@ url="http://www.dillo.org" depends=('openssl' 'libjpeg' 'gtk+' 'libpng') groups=('xapps-extra') archs=('i686' 'x86_64') -up2date="lynx -dump http://dillo.org/download.html | grep 'the latest one: '| cut -d ' ' -f 8 | cut -d '-' -f 2" +up2date="lynx -dump http://dillo.org/download.html | grep 'the latest one: '|sed 's/.*-\(.*\)\[\[.*/\1/'|tr -d ' '" source=(http://www.dillo.org/download/$pkgname-$pkgver.tar.bz2) sha1sums=('ee03b11ba6b75d3180ca906d8275bd35e8765995') From crazy at frugalware.org Wed Sep 19 11:08:46 2007 From: crazy at frugalware.org (crazy) Date: Wed Sep 19 11:08:48 2007 Subject: [Frugalware-git] frugalware-current: bye_former_m8rs Message-ID: <20070919090846.C8BFF1678013@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=ef335a8ece24dd61fa766940104fe903a6f44e87 commit ef335a8ece24dd61fa766940104fe903a6f44e87 Author: crazy Date: Wed Sep 19 11:04:56 2007 +0200 bye_former_m8rs * and these as well :p diff --git a/source/apps/man-pages/FrugalBuild b/source/apps/man-pages/FrugalBuild index 913c58c..9cc323b 100644 --- a/source/apps/man-pages/FrugalBuild +++ b/source/apps/man-pages/FrugalBuild @@ -1,6 +1,6 @@ # Compiling Time: 0.01 SBU # Maintainer: CSÉCSY László -# Former m8r: VMiklos +# Contributor: VMiklos pkgname=man-pages pkgver=2.65 diff --git a/source/devel-extra/adodb/FrugalBuild b/source/devel-extra/adodb/FrugalBuild index 5d90cc8..20fb768 100644 --- a/source/devel-extra/adodb/FrugalBuild +++ b/source/devel-extra/adodb/FrugalBuild @@ -1,5 +1,5 @@ # Compiling Time: 0.01 SBU -# Former m8r: VMiklos +# Contributor: VMiklos # Maintainer: CSÉCSY László pkgname=adodb diff --git a/source/devel-extra/perl-locale-maketext-lexicon/FrugalBuild b/source/devel-extra/perl-locale-maketext-lexicon/FrugalBuild index 5512b33..76c708c 100644 --- a/source/devel-extra/perl-locale-maketext-lexicon/FrugalBuild +++ b/source/devel-extra/perl-locale-maketext-lexicon/FrugalBuild @@ -1,5 +1,5 @@ # Compiling Time: 0.1 SBU -# Former m8r: Zsolt Szalai +# Contributor: Zsolt Szalai # Maintainer: CSÉCSY László pkgname=perl-locale-maketext-lexicon diff --git a/source/devel-extra/perl-locale-maketext-simple/FrugalBuild b/source/devel-extra/perl-locale-maketext-simple/FrugalBuild index fa9105f..fd04f32 100644 --- a/source/devel-extra/perl-locale-maketext-simple/FrugalBuild +++ b/source/devel-extra/perl-locale-maketext-simple/FrugalBuild @@ -1,5 +1,5 @@ # Compiling Time: 0.1 SBU -# Former m8r: Zsolt Szalai +# Contributor: Zsolt Szalai # Maintainer: CSÉCSY László pkgname=perl-locale-maketext-simple diff --git a/source/devel-extra/perl-net-ip/FrugalBuild b/source/devel-extra/perl-net-ip/FrugalBuild index 4a9d3ba..0dbbd40 100644 --- a/source/devel-extra/perl-net-ip/FrugalBuild +++ b/source/devel-extra/perl-net-ip/FrugalBuild @@ -1,6 +1,6 @@ # Compiling Time: 0.1 SBU # Maintainer: CSÉCSY László -# Former m8r: Zsolt Szalai +# Contributor: Zsolt Szalai pkgname=perl-net-ip _F_perl_name=Net-IP diff --git a/source/devel/iso-codes/FrugalBuild b/source/devel/iso-codes/FrugalBuild index 714233d..e30defe 100644 --- a/source/devel/iso-codes/FrugalBuild +++ b/source/devel/iso-codes/FrugalBuild @@ -1,5 +1,5 @@ # Compiling time: 0.16 SBU -# Former m8r: Christian Hamar alias krix +# Contributor: Christian Hamar alias krix # Maintainer: CSÉCSY László pkgname=iso-codes diff --git a/source/devel/perl-html-parser/FrugalBuild b/source/devel/perl-html-parser/FrugalBuild index 4eab55f..7cf9793 100644 --- a/source/devel/perl-html-parser/FrugalBuild +++ b/source/devel/perl-html-parser/FrugalBuild @@ -1,6 +1,6 @@ # Compiling Time: 0.2 SBU # Contributor: VMiklos -# Former m8r: Zsolt Szalai +# Contributor: Zsolt Szalai # Maintainer: CSÉCSY László pkgname=perl-html-parser diff --git a/source/lib/libshout/FrugalBuild b/source/lib/libshout/FrugalBuild index 93e9fbc..8db2e40 100644 --- a/source/lib/libshout/FrugalBuild +++ b/source/lib/libshout/FrugalBuild @@ -1,6 +1,6 @@ # Compiling Time: 0.14 SBU # Maintainer: DNAku -# Former Maintainer: Tuxbubling +# Contributor: Tuxbubling pkgname=libshout pkgver=2.2.2 diff --git a/source/network-extra/amavisd-new/FrugalBuild b/source/network-extra/amavisd-new/FrugalBuild index f86b57d..9ae1dd9 100644 --- a/source/network-extra/amavisd-new/FrugalBuild +++ b/source/network-extra/amavisd-new/FrugalBuild @@ -1,6 +1,5 @@ # Compiling Time: 0.01 SBU # Maintainer: CSÉCSY László -# Former m8r: Karoly CZOVEK # Contributor: Zoltan Kiss pkgname=amavisd-new diff --git a/source/network-extra/awstats/FrugalBuild b/source/network-extra/awstats/FrugalBuild index 6b093d8..bb013f7 100644 --- a/source/network-extra/awstats/FrugalBuild +++ b/source/network-extra/awstats/FrugalBuild @@ -1,6 +1,5 @@ # Compiling Time: 0.09 SBU # Maintainer: CSÉCSY László -# Former m8r: DNAku # Contributor: Tuxbubling pkgname=awstats diff --git a/source/network-extra/ntp/FrugalBuild b/source/network-extra/ntp/FrugalBuild index c4c017d..10c37e5 100644 --- a/source/network-extra/ntp/FrugalBuild +++ b/source/network-extra/ntp/FrugalBuild @@ -1,6 +1,6 @@ # Compiling Time: 0.85 SBU # Maintainer: CSÉCSY László -# Former m8r: Krisztian VASAS +# Contributor: Krisztian VASAS pkgname=ntp pkgver=4.2.4p4 diff --git a/source/network-extra/phpmyadmin/FrugalBuild b/source/network-extra/phpmyadmin/FrugalBuild index addbfd1..0b7b464 100644 --- a/source/network-extra/phpmyadmin/FrugalBuild +++ b/source/network-extra/phpmyadmin/FrugalBuild @@ -1,5 +1,5 @@ # Compiling Time: 0.01 SBU -# Former m8r: Kapolnasi Tamas +# Contributor: Kapolnasi Tamas # Maintainer: CSÉCSY László pkgname=phpmyadmin diff --git a/source/network-extra/spamassassin/FrugalBuild b/source/network-extra/spamassassin/FrugalBuild index e52529d..c51c5b9 100644 --- a/source/network-extra/spamassassin/FrugalBuild +++ b/source/network-extra/spamassassin/FrugalBuild @@ -1,6 +1,6 @@ # Compiling time: 0.07 SBU # Maintainer: CSÉCSY László -# Former m8r: Bence Nagy +# Contributor: Bence Nagy pkgname=spamassassin pkgver=3.2.3 diff --git a/source/network/postfix/FrugalBuild b/source/network/postfix/FrugalBuild index 0035cd2..74dd00b 100644 --- a/source/network/postfix/FrugalBuild +++ b/source/network/postfix/FrugalBuild @@ -1,8 +1,6 @@ # Compiling Time: 0.70 SBU # Maintainer: CSÉCSY László -# Former m8r: Karoly CZOVEK # Contributor: VMiklos -# Contributor: Krisztian VASAS pkgname=postfix pkgver=2.4.5 diff --git a/source/x11-extra/mrxvt/FrugalBuild b/source/x11-extra/mrxvt/FrugalBuild index d6de414..7eca0a2 100644 --- a/source/x11-extra/mrxvt/FrugalBuild +++ b/source/x11-extra/mrxvt/FrugalBuild @@ -1,5 +1,5 @@ # Compiling Time: ~0.01 SBU -# Former m8r: VMiklos +# Contributor: VMiklos # Maintainer: CSÉCSY László pkgname=mrxvt diff --git a/source/xlib-extra/perl-gtk2/FrugalBuild b/source/xlib-extra/perl-gtk2/FrugalBuild index e92c529..d617205 100644 --- a/source/xlib-extra/perl-gtk2/FrugalBuild +++ b/source/xlib-extra/perl-gtk2/FrugalBuild @@ -1,6 +1,6 @@ # Compiling Time: 1.14 SBU # Maintainer: CSÉCSY László -# Former m8r: Zsolt Szalai +# Contributor: Zsolt Szalai pkgname=perl-gtk2 _F_perl_name=Gtk2 From crazy at frugalware.org Wed Sep 19 11:22:39 2007 From: crazy at frugalware.org (crazy) Date: Wed Sep 19 11:22:40 2007 Subject: [Frugalware-git] frugalware-current: perl-glib-1.160-1-i686 Message-ID: <20070919092239.2E96B1678013@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=2100c44b4da367e86f14fdae56a2bd8de617c411 commit 2100c44b4da367e86f14fdae56a2bd8de617c411 Author: crazy Date: Wed Sep 19 11:18:32 2007 +0200 perl-glib-1.160-1-i686 * version bump * ( boobaa now you can :p ) diff --git a/source/devel-extra/perl-glib/FrugalBuild b/source/devel-extra/perl-glib/FrugalBuild index 4bbfc80..ca68068 100644 --- a/source/devel-extra/perl-glib/FrugalBuild +++ b/source/devel-extra/perl-glib/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: Zsolt Szalai pkgname=perl-glib -pkgver=1.144 +pkgver=1.160 pkgrel=1 pkgdesc="Perl wrappers for the GLib utility and Object libraries" url="http://search.cpan.org/search?query=Glib&mode=all" @@ -14,5 +14,5 @@ up2date="lynx -dump 'http://search.cpan.org/search?query=Glib&mode=all'|grep \"G source=(http://search.cpan.org/CPAN/authors/id/T/TS/TSCH/Glib-$pkgver.tar.gz) _F_cd_path="Glib-$pkgver" -sha1sums=('38a7870501b49dee6676e055343ce6a13cfe2422') +sha1sums=('ed5def365de50421b1f62d1c972114fcaee9da22') # optimization OK From crazy at frugalware.org Wed Sep 19 11:26:05 2007 From: crazy at frugalware.org (crazy) Date: Wed Sep 19 11:26:08 2007 Subject: [Frugalware-git] frugalware-current: perl-set-intspan-1.12-1-i686 Message-ID: <20070919092605.8D051168800B@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=a94260770f5c862a38ee2bf28f5cfe2159f6db43 commit a94260770f5c862a38ee2bf28f5cfe2159f6db43 Author: crazy Date: Wed Sep 19 11:22:07 2007 +0200 perl-set-intspan-1.12-1-i686 * Version bump diff --git a/source/devel/perl-set-intspan/FrugalBuild b/source/devel/perl-set-intspan/FrugalBuild index 6094639..ac27cb1 100644 --- a/source/devel/perl-set-intspan/FrugalBuild +++ b/source/devel/perl-set-intspan/FrugalBuild @@ -3,10 +3,10 @@ _F_perl_name=Set-IntSpan _F_perl_author=S/SW/SWMCD -pkgver=1.11 +pkgver=1.12 pkgrel=1 pkgdesc="Manages sets of integers" Finclude perl archs=('i686' 'x86_64') groups=('devel') -sha1sums=('ad672189b4cf7c8828ff11b6f20aee3de9c90874') +sha1sums=('334496fe641cb3ebf7e67c40d58a0e66e1d51bf5') From crazy at frugalware.org Wed Sep 19 11:28:25 2007 From: crazy at frugalware.org (crazy) Date: Wed Sep 19 11:28:27 2007 Subject: [Frugalware-git] frugalware-current: perl-xml-libxml-1.64-1-i686 Message-ID: <20070919092825.526821678013@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=42a145b3dcb1f46363277ef64413d491e35a64f5 commit 42a145b3dcb1f46363277ef64413d491e35a64f5 Author: crazy Date: Wed Sep 19 11:24:18 2007 +0200 perl-xml-libxml-1.64-1-i686 * Version bump diff --git a/source/devel/perl-xml-libxml/FrugalBuild b/source/devel/perl-xml-libxml/FrugalBuild index d001385..15da4dd 100644 --- a/source/devel/perl-xml-libxml/FrugalBuild +++ b/source/devel/perl-xml-libxml/FrugalBuild @@ -3,7 +3,7 @@ _F_perl_name=XML-LibXML _F_perl_author=P/PA/PAJAS -pkgver=1.63 +pkgver=1.64 pkgdesc="Perl Binding for libxml2" depends=('perl-xml-namespacesupport>=1.07' 'perl-xml-libxml-common' 'perl-xml-sax') Finclude perl @@ -11,6 +11,6 @@ archs=('i686' 'x86_64') groups=('devel') source=(${source[@]} dont_register_sax.patch) -sha1sums=('e0e0e47c2f2d54d9ecb431cbae692ac808917bfb'\ +sha1sums=('95660739f95300486cd9d6ab698a47f9c9286f60' \ 'f955f6bf79a22637ada7a4f58e9bbd993948459f') # optimization OK From crazy at frugalware.org Wed Sep 19 11:37:50 2007 From: crazy at frugalware.org (crazy) Date: Wed Sep 19 11:37:54 2007 Subject: [Frugalware-git] frugalware-current: elinks-0.11.3-2-i686 Message-ID: <20070919093750.0AA6E168800B@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=2c579ec1e9f1a365c208cf9608e49fe14e584052 commit 2c579ec1e9f1a365c208cf9608e49fe14e584052 Author: crazy Date: Wed Sep 19 11:34:00 2007 +0200 elinks-0.11.3-2-i686 * up2date fix diff --git a/source/network/elinks/FrugalBuild b/source/network/elinks/FrugalBuild index cd5e6d0..cabced3 100644 --- a/source/network/elinks/FrugalBuild +++ b/source/network/elinks/FrugalBuild @@ -11,7 +11,7 @@ depends=('openssl' 'glibc' 'gpm' 'zlib' 'bzip2' 'libidn' 'expat' 'ncurses') #makedepends=('samba') # smb support is disabled by upstream (security reasons) groups=('network' 'chroot-core') archs=('i686' 'x86_64') -up2date="lynx -dump http://elinks.or.cz/download.html|grep 'Current stable'|sed 's/.*: *\([0-9\.]*\).*/\1/'" +up2date="lynx -dump http://elinks.or.cz/download.html|grep 'Current stable'|sed 's/.*-\(.*\) .*.t.*/\1/'" source=(http://elinks.or.cz/download/$pkgname-$pkgver.tar.bz2 CVE-2007-2027.diff) signatures=($source.asc '') From crazy at frugalware.org Wed Sep 19 11:51:58 2007 From: crazy at frugalware.org (crazy) Date: Wed Sep 19 11:52:00 2007 Subject: [Frugalware-git] frugalware-current: iproute2-070710-2-i686 Message-ID: <20070919095158.9A4D81678013@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=e3c39bb8e86452df19134e1611773e8f4996c773 commit e3c39bb8e86452df19134e1611773e8f4996c773 Author: crazy Date: Wed Sep 19 11:47:54 2007 +0200 iproute2-070710-2-i686 * up2date fix diff --git a/source/network/iproute2/FrugalBuild b/source/network/iproute2/FrugalBuild index 74eb004..26cf9dd 100644 --- a/source/network/iproute2/FrugalBuild +++ b/source/network/iproute2/FrugalBuild @@ -12,7 +12,7 @@ groups=('network') archs=('i686' 'x86_64') depends=('glibc' 'db>=4.6.18') makedepends=('bison') -up2date="lynx -dump 'http://developer.osdl.org/dev/iproute2/download/?C=M;O=D'|grep tar.gz|sed -n 's/.*-\(.*\)\.t.*/\1/;1 p'" +up2date="lynx -dump 'http://developer.osdl.org/dev/iproute2/download/?C=M;O=D'|grep '$pkgname-$_F_kernelmod_pkgver-\(.*\).tar.gz'|sed -n 's/.*-\(.*\)\.t.*/\1/;1 p'" source=(http://developer.osdl.org/dev/iproute2/download/$pkgname-$_F_kernelmod_pkgver-$pkgver.tar.gz \ iproute-socket_h-fix.patch) signatures=("$source.sign" '') From crazy at frugalware.org Wed Sep 19 12:00:17 2007 From: crazy at frugalware.org (crazy) Date: Wed Sep 19 12:00:21 2007 Subject: [Frugalware-git] frugalware-current: netpbm-10.39.0-1-i686 Message-ID: <20070919100017.C2F551678014@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=2d6379e383b36d4de16d7952ebefd9751d14aaba commit 2d6379e383b36d4de16d7952ebefd9751d14aaba Author: crazy Date: Wed Sep 19 11:53:39 2007 +0200 netpbm-10.39.0-1-i686 * up2date fix diff --git a/source/xapps/netpbm/FrugalBuild b/source/xapps/netpbm/FrugalBuild index acc6c70..a89d884 100644 --- a/source/xapps/netpbm/FrugalBuild +++ b/source/xapps/netpbm/FrugalBuild @@ -9,7 +9,7 @@ groups=('xapps') archs=('i686' 'x86_64') depends=('perl' 'libjpeg' 'libpng' 'libtiff' 'libx11') Finclude sourceforge -up2date="lynx -dump http://svn.sourceforge.net/viewvc/netpbm/release_number/|grep log$|sed -n 's|.*/\(.*\)/.*|\1|;$ p'" +up2date="lynx -dump http://netpbm.svn.sourceforge.net/viewvc/netpbm/release_number/|grep log$|sed -n 's|.*/\(.*\)/.*|\1|;$ p'" source=(http://ftp.frugalware.org/pub/other/sources/netpbm/netpbm-$pkgver.tar.bz2 config netpbm-10.34-build.patch) signatures=($source.asc '' '') From janny at frugalware.org Wed Sep 19 12:08:03 2007 From: janny at frugalware.org (janny) Date: Wed Sep 19 12:08:06 2007 Subject: [Frugalware-git] frugalware-current: kipi-plugins-0.1.4-3-i686 Message-ID: <20070919100803.CD1D8168800F@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=10e444bc9ef63321d4d57594a56be2540635d57a commit 10e444bc9ef63321d4d57594a56be2540635d57a Author: janny Date: Wed Sep 19 12:05:03 2007 +0200 kipi-plugins-0.1.4-3-i686 * relbump with libkdcraw diff --git a/source/kde-extra/kipi-plugins/FrugalBuild b/source/kde-extra/kipi-plugins/FrugalBuild index 8e783a1..0d1f580 100644 --- a/source/kde-extra/kipi-plugins/FrugalBuild +++ b/source/kde-extra/kipi-plugins/FrugalBuild @@ -3,7 +3,7 @@ pkgname=kipi-plugins pkgver=0.1.4 -pkgrel=2 +pkgrel=3 pkgdesc="kipi-plugins is based in part on the work of the Independent JPEG Group." license="GPL" depends=('libkexif' 'libkipi' 'libgphoto2' 'imlib2' 'exiv2>=0.15' 'libkexiv2>=0.1.5-2' 'libkdcraw') From janny at frugalware.org Wed Sep 19 13:22:29 2007 From: janny at frugalware.org (janny) Date: Wed Sep 19 13:22:32 2007 Subject: [Frugalware-git] frugalware-current: ksniffer-0.3-2-i686 Message-ID: <20070919112229.D9E1B1678013@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=36c7b3d5c1eef85c6055159681eca03ca2f454ea commit 36c7b3d5c1eef85c6055159681eca03ca2f454ea Author: janny Date: Wed Sep 19 13:21:16 2007 +0200 ksniffer-0.3-2-i686 * rel/version bump * thx crazy the corrections in FB diff --git a/source/kde-extra/ksniffer/FrugalBuild b/source/kde-extra/ksniffer/FrugalBuild index 2234e76..b7bbd28 100644 --- a/source/kde-extra/ksniffer/FrugalBuild +++ b/source/kde-extra/ksniffer/FrugalBuild @@ -3,7 +3,7 @@ pkgname=ksniffer pkgver=0.3 -pkgrel=1 +pkgrel=2 pkgdesc="Network sniffing application for KDE" license="GPL" depends=('libxi' 'expat' 'libstdc++' 'qt' 'libxmu' 'kdelibs') @@ -16,6 +16,6 @@ _F_sourceforge_broken_up2date=1 Finclude sourceforge url="http://www.ksniffer.org/" Fconfopts="--disable-debug --enable-final --with-gnu-ld" -sha1sums=('3bcfc688f1d47e2a085d339c24242c98f398a628') +sha1sums=('cd06b37b9c831452dff579eb931373d310f2e16c') # optimization OK From priyank at frugalware.org Wed Sep 19 14:56:50 2007 From: priyank at frugalware.org (Priyank) Date: Wed Sep 19 14:56:51 2007 Subject: [Frugalware-git] frugalware-current: j2me-2.5.1-1-i686 Message-ID: <20070919125650.0FA151688010@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=f2aac60938b495db1ed036a8137d7ae33f09402e commit f2aac60938b495db1ed036a8137d7ae33f09402e Author: Priyank Date: Wed Sep 19 18:23:55 2007 +0530 j2me-2.5.1-1-i686 * Version bump * Fix up2date * Added a .desktop diff --git a/source/apps-extra/j2me/FrugalBuild b/source/apps-extra/j2me/FrugalBuild index 0343daa..3160c7a 100644 --- a/source/apps-extra/j2me/FrugalBuild +++ b/source/apps-extra/j2me/FrugalBuild @@ -2,41 +2,38 @@ # Maintainer: VMiklos pkgname=j2me -pkgver=2.2_1 -basever=${pkgver/_*} -updatever=${pkgver#*_} +pkgver=2.5.1 +basever=`echo ${pkgver} | sed 's/\./_/g'` pkgrel=1 -pkgdesc="Java 2 Micro Edition Wireless Toolkit for developing wireless applications" +pkgdesc="Java 2 Micro Edition Wireless Toolkit for developing wireless applications." url="http://java.sun.com/products/j2mewtoolkit/" rodepends=('j2sdk') groups=('apps-extra') archs=('i686') -# comments to this khm.. ugly up2date :) -# 1) first check for basever, that's basically normal -# 2) when basever is okay, check for the update. on the website there is only a -# date, but the filename is a number, so on every update you must update the -# s/date/number/ command -up2date="echo \$(lynx -dump http://java.sun.com/javame/downloads/index.jsp|grep \ -'Wireless Toolkit'|grep -v CLDC|sed 's/.* \([0-9][^ ]*\)/\1/;q')_\$(lynx -dump \ -http://java.sun.com/products/sjwtoolkit/download-${basever/./_}.html|grep \ -patch|sed 's/.*patch \([0-9]*\) .*/\1/;s/200511/1/;q')" -# download them from http://java.sun.com/products/sjwtoolkit/download-2_2.html -source=(j2me_wireless_toolkit-${basever/./_}-linux-i386.bin \ - j2me_wireless_toolkit-${basever/./_}-update_$updatever-linux.zip) +up2date="lynx -dump http://java.sun.com/javame/downloads/index.jsp|grep \ +'Wireless Toolkit'|grep -m1 CLDC|sed 's/.* \([0-9][^ ]*\) f.*/\1/;q'" +# download the source from http://java.sun.com/products/sjwtoolkit/download-2_5_1.html +source=(sun_java_wireless_toolkit-${basever}-linux.bin \ + wtk.png) +_F_desktop_name="Sun Java Wireless Toolkit" +_F_desktop_exec="/usr/bin/ktoolbar" +_F_desktop_icon="wtk.png" +_F_desktop_categories="GNOME;GTK;Development;" options=('nobuild') +sha1sums=('8d760054543e8fc8139df90b5d6157ebb15dfcba' \ + '801e415fb2f19ce0c5902f9192a4e8838a117d24') build() { - dd bs=2048 if=j2me_wireless_toolkit-${basever/./_}-linux-i386.bin of=j2me.zip skip=10 + dd bs=2048 if=sun_java_wireless_toolkit-${basever}-linux.bin of=j2me.zip skip=10 unzip -qqo j2me.zip - unzip -qqo j2me_wireless_toolkit-${basever/./_}-update_$updatever-linux.zip Fmkdir /usr/{bin,lib/j2me} cp -a appdb bin lib wtklib $Fdestdir/usr/lib/j2me chmod 755 $Fdestdir/usr/lib/j2me/bin/* chmod 644 $Fdestdir/usr/lib/j2me/bin/*.jar Fdocrel *.html docs Fln /usr/lib/j2me/bin/ktoolbar /usr/bin/ktoolbar + Ficon wtk.png + Fdesktop2 } -sha1sums=('fa9888ab2a7486be1b168e395e0aa40ca0103f14' \ - 'd83a9b6a7c253633d37619b2796f4aa271bd57f0') diff --git a/source/apps-extra/j2me/wtk.png b/source/apps-extra/j2me/wtk.png new file mode 100644 index 0000000..e5609a3 Binary files /dev/null and b/source/apps-extra/j2me/wtk.png differ From priyank at frugalware.org Wed Sep 19 16:01:53 2007 From: priyank at frugalware.org (Priyank) Date: Wed Sep 19 16:01:56 2007 Subject: [Frugalware-git] gfpm: gfpm-quickpane: added license Message-ID: <20070919140153.5D0CC1678015@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gfpm.git;a=commitdiff;h=7b650a22d716b6b5097cf1dfc4208cd6378b7f17 commit 7b650a22d716b6b5097cf1dfc4208cd6378b7f17 Author: Priyank Date: Wed Sep 19 19:29:06 2007 +0530 gfpm-quickpane: added license diff --git a/src/gfpm-quickpane.c b/src/gfpm-quickpane.c index 0220024..088b0bd 100644 --- a/src/gfpm-quickpane.c +++ b/src/gfpm-quickpane.c @@ -1,3 +1,23 @@ +/* + * gfpm-quickpane.c for gfpm + * + * Copyright (C) 2006-2007 by Priyank Gosalia + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + */ + #include "gfpm-quickpane.h" #include "gfpm-packagelist.h" #include "gfpm-interface.h" From priyank at frugalware.org Wed Sep 19 16:02:46 2007 From: priyank at frugalware.org (Priyank) Date: Wed Sep 19 16:02:47 2007 Subject: [Frugalware-git] gfpm: gfpm-packagelist: modified license notice Message-ID: <20070919140246.3002B1688012@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gfpm.git;a=commitdiff;h=b5e284d94ac97f46b7a1fa3d50bfed3dff0b16c0 commit b5e284d94ac97f46b7a1fa3d50bfed3dff0b16c0 Author: Priyank Date: Wed Sep 19 19:30:10 2007 +0530 gfpm-packagelist: modified license notice diff --git a/src/gfpm-packagelist.c b/src/gfpm-packagelist.c index d63e062..7a3d3e2 100644 --- a/src/gfpm-packagelist.c +++ b/src/gfpm-packagelist.c @@ -1,10 +1,8 @@ -/*************************************************************************** - * gfpm-packagelist.c - * Author: Priyank Gosalia - * Copyright 2006-2007 Frugalware Developer Team - ****************************************************************************/ - /* + * gfpm-packagelist.c for gfpm + * + * Copyright (C) 2006-2007 by Priyank Gosalia + * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or From vmiklos at frugalware.org Wed Sep 19 16:58:36 2007 From: vmiklos at frugalware.org (VMiklos) Date: Wed Sep 19 16:58:37 2007 Subject: [Frugalware-git] frugalware-current: t/emptydirs: new test Message-ID: <20070919145836.52FAC1678014@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=a34d2f3341c555963a47048155a152ae24826d06 commit a34d2f3341c555963a47048155a152ae24826d06 Author: VMiklos Date: Wed Sep 19 16:58:05 2007 +0200 t/emptydirs: new test such dirs can be easily accidently created when moving packages across categories diff --git a/t/emptydirs b/t/emptydirs new file mode 100755 index 0000000..0ab2981 --- /dev/null +++ b/t/emptydirs @@ -0,0 +1,13 @@ +#!/bin/sh + +if [ "$1" == "--help" ]; then + echo "empty source directories without a FrugalBuild file" + exit 1 +fi + +cd .. + +for i in source/*/*/ +do + [ ! -e $i/FrugalBuild ] && echo "$i: FrugalBuild is missing from directory" +done From priyank at frugalware.org Wed Sep 19 17:20:39 2007 From: priyank at frugalware.org (Priyank) Date: Wed Sep 19 17:20:45 2007 Subject: [Frugalware-git] gfpm: indentation fixes and gettext'ized string Message-ID: <20070919152039.C893C16A8012@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gfpm.git;a=commitdiff;h=e151dcc0337bba88e7812681e2facdc03691b0fa commit e151dcc0337bba88e7812681e2facdc03691b0fa Author: Priyank Date: Wed Sep 19 20:47:44 2007 +0530 indentation fixes and gettext'ized string diff --git a/src/gfpm-interface.c b/src/gfpm-interface.c index 1ae5b9a..f3e2dab 100644 --- a/src/gfpm-interface.c +++ b/src/gfpm-interface.c @@ -139,8 +139,8 @@ gfpm_interface_init (void) gfpm_groups_tvw = glade_xml_get_widget (xml, "grouptreeview"); gfpm_pkgs_tvw = glade_xml_get_widget (xml, "pkgstreeview"); gfpm_info_tvw = glade_xml_get_widget (xml, "infotreeview"); - gfpm_files_txtvw= glade_xml_get_widget (xml, "filestextview"); - gfpm_clog_txtvw= glade_xml_get_widget (xml, "changelogtextview"); + gfpm_files_txtvw = glade_xml_get_widget (xml, "filestextview"); + gfpm_clog_txtvw = glade_xml_get_widget (xml, "changelogtextview"); gfpm_clrold_opt = glade_xml_get_widget (xml, "rem_old_opt"); gfpm_clrall_opt = glade_xml_get_widget (xml, "rem_all_opt"); gfpm_inst_from_file_dlg = glade_xml_get_widget (xml, "inst_from_file_dlg"); @@ -404,7 +404,7 @@ itry: if (pacman_trans_init(PM_TRANS_TYPE_SYNC, flags, gfpm_progress_event, cb_g if (gfpm_trans_prepare(pdata) == -1) goto cleanup; pkgs = pacman_trans_getinfo (PM_TRANS_PACKAGES); - if (pkgs == NULL) gfpm_error (_("Error"), "Error getting transaction info"); + if (pkgs == NULL) gfpm_error (_("Error"), _("Error getting transaction info")); /* commit transaction */ if (pacman_trans_commit(&pdata) == -1) diff --git a/src/gfpm-progress.c b/src/gfpm-progress.c index f43675b..9309db8 100644 --- a/src/gfpm-progress.c +++ b/src/gfpm-progress.c @@ -34,7 +34,7 @@ extern GladeXML *xml; extern GtkWidget *gfpm_mw; GtkProgressBar *progressbar = NULL; -GtkWidget *progresswindow = NULL; +GtkWidget *progresswindow = NULL; static GtkWidget *main_label = NULL; static GtkWidget *sub_label = NULL; static GtkWidget *rate_label = NULL; @@ -48,11 +48,11 @@ static GtkWidget *autoclose_checkbtn = NULL; GtkTextIter t_iter; GtkTextBuffer *buffer = NULL; -float rate; -int offset; -int xferred1; -struct timeval t0, t; -char reponame[PM_DLFNM_LEN+1]; +float rate; +int offset; +int xferred1; +struct timeval t0, t; +char reponame[PM_DLFNM_LEN+1]; static void gfpm_progress_textview_reset (void); @@ -168,13 +168,13 @@ gfpm_progress_show (gboolean show) int gfpm_progress_update (netbuf *ctl, int xferred, void *arg) { - int size; - int per; - char text[6]; - char rate_text[10]; + int size; + int per; + char text[6]; + char rate_text[10]; struct timeval t1; - float tdiff; - gchar *rx_str = NULL; + float tdiff; + gchar *rx_str = NULL; while (gtk_events_pending()) gtk_main_iteration (); From priyank at frugalware.org Wed Sep 19 17:37:25 2007 From: priyank at frugalware.org (Priyank) Date: Wed Sep 19 17:37:29 2007 Subject: [Frugalware-git] gfpm: gettext'ized some strings and removed whitespaces Message-ID: <20070919153725.5650116A8017@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gfpm.git;a=commitdiff;h=62660dc01550c15cc12bb2699ef216caf480a301 commit 62660dc01550c15cc12bb2699ef216caf480a301 Author: Priyank Date: Wed Sep 19 21:04:16 2007 +0530 gettext'ized some strings and removed whitespaces * gfpm should also check whether the system is a stable or current one diff --git a/src/gfpm-db.c b/src/gfpm-db.c index a0944de..77cb404 100644 --- a/src/gfpm-db.c +++ b/src/gfpm-db.c @@ -36,11 +36,8 @@ static void _db_callback (char *section, PM_DB *db); int gfpm_db_init (void) { - //if (NULL == (sync_db=pacman_db_register(FW_CURRENT))) - // return 1; if (NULL == (local_db=pacman_db_register(FW_LOCAL))) return 1; - //asprintf (&repo, "%s", FW_CURRENT); return 0; } diff --git a/src/gfpm-interface.c b/src/gfpm-interface.c index f3e2dab..15666f4 100644 --- a/src/gfpm-interface.c +++ b/src/gfpm-interface.c @@ -106,7 +106,7 @@ gfpm_populate_repos_combobox (GtkComboBox *combo) char *c_repo = (char *)pacman_db_getinfo ((PM_DB *)rlist->data, PM_DB_TREENAME); gtk_list_store_append (store, &iter); gtk_list_store_set (store, &iter, 0, c_repo, -1); - if (!strcmp(c_repo,FW_CURRENT)) + if (!strcmp(c_repo, FW_CURRENT) || !(strcmp(c_repo, FW_STABLE)) c_index++; } gtk_list_store_append (store, &iter); @@ -263,7 +263,6 @@ gfpm_interface_init (void) gtk_widget_set_sensitive (GTK_WIDGET(glade_xml_get_widget(xml, "button_file1")), FALSE); } - /* initialize modules */ if (gfpm_db_init ()) gfpm_error (_("Error"), _("Failed to initialize local package database.")); diff --git a/src/gfpm-messages.c b/src/gfpm-messages.c index f2862a4..675e0b1 100644 --- a/src/gfpm-messages.c +++ b/src/gfpm-messages.c @@ -460,10 +460,10 @@ gfpm_input (const char *title, const char *message, int *res) GTK_WINDOW(gfpm_mw), GTK_DIALOG_DESTROY_WITH_PARENT, GTK_STOCK_OK, - GTK_RESPONSE_ACCEPT, - GTK_STOCK_CANCEL, - GTK_RESPONSE_REJECT, - NULL); + GTK_RESPONSE_ACCEPT, + GTK_STOCK_CANCEL, + GTK_RESPONSE_REJECT, + NULL); gtk_window_set_resizable (GTK_WINDOW(dialog), FALSE); label = gtk_label_new (message); entry = gtk_entry_new (); @@ -489,64 +489,64 @@ cb_gfpm_trans_conv (unsigned char event, void *data1, void *data2, void *data3, char *str = NULL; case PM_TRANS_CONV_REPLACE_PKG: - str = g_strdup_printf ("Do you want to replace %s with %s/%s ?", + str = g_strdup_printf (_("Do you want to replace %s with %s/%s ?"), (char*)pacman_pkg_getinfo (data1, PM_PKG_NAME), (char*)data3, (char*)pacman_pkg_getinfo (data2, PM_PKG_NAME)); - if (gfpm_question(_("Replace package"), _(str)) == GTK_RESPONSE_YES) + if (gfpm_question(_("Replace package"), str) == GTK_RESPONSE_YES) *response = 1; else *response = 0; break; case PM_TRANS_CONV_INSTALL_IGNOREPKG: - str = g_strdup_printf ("%s requires %s, but it is IgnorePkg. Install anyway?", + str = g_strdup_printf (_("%s requires %s, but it is IgnorePkg. Install anyway?"), (char*)pacman_pkg_getinfo (data1, PM_PKG_NAME), (char*)pacman_pkg_getinfo (data2, PM_PKG_NAME)); - if (gfpm_question("Gfpm", _(str)) == GTK_RESPONSE_YES) + if (gfpm_question("Gfpm", str) == GTK_RESPONSE_YES) *response = 1; else *response = 0; break; case PM_TRANS_CONV_REMOVE_HOLDPKG: - str = g_strdup_printf ("%s is designated as HoldPkg. Remove anyway?", + str = g_strdup_printf (_("%s is designated as HoldPkg. Remove anyway?"), (char*)pacman_pkg_getinfo (data1, PM_PKG_NAME)); - if (gfpm_question("Gfpm", _(str)) == GTK_RESPONSE_YES) + if (gfpm_question("Gfpm", str) == GTK_RESPONSE_YES) *response = 1; else *response = 0; break; case PM_TRANS_CONV_CONFLICT_PKG: - str = g_strdup_printf ("%s conflicts with %s. Remove %s?", + str = g_strdup_printf (_("%s conflicts with %s. Remove %s?"), (char*)data1, (char*)data2, (char*)data2); - if (gfpm_question(_("Conflict"), _(str)) == GTK_RESPONSE_YES) + if (gfpm_question(_("Conflict"), str) == GTK_RESPONSE_YES) *response = 1; else *response = 0; break; case PM_TRANS_CONV_LOCAL_NEWER: - str = g_strdup_printf ("%s-%s: local version is newer. Upgrade anyway?", + str = g_strdup_printf (_("%s-%s: local version is newer. Upgrade anyway?"), (char*)pacman_pkg_getinfo (data1, PM_PKG_NAME), (char*)pacman_pkg_getinfo (data1, PM_PKG_VERSION)); - if (gfpm_question(_("Local version newer"), _(str)) == GTK_RESPONSE_YES) + if (gfpm_question(_("Local version newer"), str) == GTK_RESPONSE_YES) *response = 1; else *response = 0; break; case PM_TRANS_CONV_LOCAL_UPTODATE: - str = g_strdup_printf ("%s-%s: local version is up to date. Upgrade anyway?", + str = g_strdup_printf (_("%s-%s: local version is up to date. Upgrade anyway?"), (char*)pacman_pkg_getinfo (data1, PM_PKG_NAME), (char*)pacman_pkg_getinfo (data1, PM_PKG_VERSION)); - if (gfpm_question(_("Local version up to date"), _(str)) == GTK_RESPONSE_YES) + if (gfpm_question(_("Local version up to date"), str) == GTK_RESPONSE_YES) *response = 1; else *response = 0; break; case PM_TRANS_CONV_CORRUPTED_PKG: - str = g_strdup_printf ("Archive %s is corrupted. Do you want to delete it?", + str = g_strdup_printf (_("Archive %s is corrupted. Do you want to delete it?"), (char*)pacman_pkg_getinfo (data1, PM_PKG_NAME)); - if (gfpm_question(_("Package corrupted"), _(str)) == GTK_RESPONSE_YES) + if (gfpm_question(_("Package corrupted"), str) == GTK_RESPONSE_YES) *response = 1; else *response = 0; From priyank at frugalware.org Wed Sep 19 17:49:26 2007 From: priyank at frugalware.org (Priyank) Date: Wed Sep 19 17:49:28 2007 Subject: [Frugalware-git] gfpm: gfpm-interface: misc fixes Message-ID: <20070919154926.A8AB416A801B@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gfpm.git;a=commitdiff;h=71a793b3edf4e6cf800119acd67e1ed8cb5fdd1c commit 71a793b3edf4e6cf800119acd67e1ed8cb5fdd1c Author: Priyank Date: Wed Sep 19 21:16:35 2007 +0530 gfpm-interface: misc fixes * removed an extra '(' * added a missing gtk_events_pending() gtk_main_iteration() when searching in remote repo diff --git a/src/gfpm-interface.c b/src/gfpm-interface.c index 15666f4..b394e0d 100644 --- a/src/gfpm-interface.c +++ b/src/gfpm-interface.c @@ -106,7 +106,7 @@ gfpm_populate_repos_combobox (GtkComboBox *combo) char *c_repo = (char *)pacman_db_getinfo ((PM_DB *)rlist->data, PM_DB_TREENAME); gtk_list_store_append (store, &iter); gtk_list_store_set (store, &iter, 0, c_repo, -1); - if (!strcmp(c_repo, FW_CURRENT) || !(strcmp(c_repo, FW_STABLE)) + if (!strcmp(c_repo, FW_CURRENT) || !strcmp(c_repo, FW_STABLE)) c_index++; } gtk_list_store_append (store, &iter); @@ -1431,6 +1431,8 @@ cb_gfpm_search_keypress (GtkWidget *widget, GdkEventKey *event, gpointer data) -1); pacman_pkg_free (pm_pkg); pacman_pkg_free (pm_lpkg); + while (gtk_events_pending()) + gtk_main_iteration (); } } pacman_set_option (PM_OPT_NEEDLES, (long)NULL); From priyank at frugalware.org Wed Sep 19 17:52:14 2007 From: priyank at frugalware.org (Priyank) Date: Wed Sep 19 17:52:15 2007 Subject: [Frugalware-git] gfpm: gfpm-interface: gfpm_load_pkgs_tvw() : added missing gtk_main_iteration() loop Message-ID: <20070919155214.08FFB16A801E@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gfpm.git;a=commitdiff;h=e61d99d5dbecbf23c83c42a4dd80fabcea8d205d commit e61d99d5dbecbf23c83c42a4dd80fabcea8d205d Author: Priyank Date: Wed Sep 19 21:19:15 2007 +0530 gfpm-interface: gfpm_load_pkgs_tvw() : added missing gtk_main_iteration() loop diff --git a/src/gfpm-interface.c b/src/gfpm-interface.c index b394e0d..bf37280 100644 --- a/src/gfpm-interface.c +++ b/src/gfpm-interface.c @@ -518,6 +518,7 @@ gfpm_load_pkgs_tvw (const char *group_name) icon_no = gfpm_get_icon (ICON_NINSTALLED, 16); icon_up = gfpm_get_icon (ICON_NEEDUPDATE, 16); icon_ln = gfpm_get_icon (ICON_LOCALNEWER, 16); + while (gtk_events_pending()) gtk_main_iteration (); // display status for (i=l;i;i=pacman_list_next(i)) { @@ -596,12 +597,10 @@ gfpm_load_pkgs_tvw (const char *group_name) //5, g_strstrip((char*)pacman_pkg_getinfo (pm_lpkg, PM_PKG_DESC)), -1); } - while (gtk_events_pending()) gtk_main_iteration (); pacman_pkg_free (pm_pkg); pacman_pkg_free (pm_lpkg); + while (gtk_events_pending()) gtk_main_iteration (); } - //while (gtk_events_pending()) - // gtk_main_iteration_do (TRUE); gfpm_update_status (_("Loading package list ...DONE")); g_object_unref (icon_yes); From priyank at frugalware.org Wed Sep 19 17:53:32 2007 From: priyank at frugalware.org (Priyank) Date: Wed Sep 19 17:53:33 2007 Subject: [Frugalware-git] gfpm: gfpm-interface: gfpm_load_groups_tvw(): added missing gtk_main_iteration() loop Message-ID: <20070919155332.4EBAC16E8014@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gfpm.git;a=commitdiff;h=8863621d9827f5737bf0c37713d74df574a0b9c7 commit 8863621d9827f5737bf0c37713d74df574a0b9c7 Author: Priyank Date: Wed Sep 19 21:20:53 2007 +0530 gfpm-interface: gfpm_load_groups_tvw(): added missing gtk_main_iteration() loop diff --git a/src/gfpm-interface.c b/src/gfpm-interface.c index bf37280..7c6688f 100644 --- a/src/gfpm-interface.c +++ b/src/gfpm-interface.c @@ -478,6 +478,7 @@ gfpm_load_groups_tvw (const char *repo_name) gtk_list_store_append (GTK_LIST_STORE(model), &iter); gtk_list_store_set (GTK_LIST_STORE(model), &iter, 0, (char*)pacman_list_getdata(l), -1); g_free (temp); + while (gtk_events_pending()) gtk_main_iteration (); } gfpm_update_status (_("Loading groups ... DONE")); From priyank at frugalware.org Wed Sep 19 18:18:31 2007 From: priyank at frugalware.org (Priyank) Date: Wed Sep 19 18:18:34 2007 Subject: [Frugalware-git] gfpm: gfpm now checks for a newer version of both pacman-g2 and gfpm when the user synchronizes a package database Message-ID: <20070919161831.A0E051678013@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gfpm.git;a=commitdiff;h=3bfb806e2bf3c7b36019d532b8e8cedbf0de8938 commit 3bfb806e2bf3c7b36019d532b8e8cedbf0de8938 Author: Priyank Date: Wed Sep 19 21:45:28 2007 +0530 gfpm now checks for a newer version of both pacman-g2 and gfpm when the user synchronizes a package database diff --git a/src/gfpm-interface.c b/src/gfpm-interface.c index 7c6688f..38fc9f6 100644 --- a/src/gfpm-interface.c +++ b/src/gfpm-interface.c @@ -1046,34 +1046,38 @@ static void cb_gfpm_refresh_button_clicked (GtkButton *button, gpointer data) { gint ret; - PM_PKG *pm_lpkg, *pm_spkg; PM_LIST *packages; - static gchar *updatestr = - ("Gfpm has detected a newer version of the pacman-g2 package. " - "It is recommended that you allow gfpm to upgrade pacman-g2 first. " - "Do you want to continue upgrading pacman-g2 ?"); + gchar *updatestr = NULL; gfpm_progress_set_main_text (_("Synchronizing package databases"), 1); gfpm_progress_show (TRUE); ret = pacman_db_update (0, sync_db); gfpm_progress_show (FALSE); /* check for a pacman-g2 update */ - pm_lpkg = pacman_db_readpkg (local_db, "pacman-g2"); - pm_spkg = pacman_db_readpkg (sync_db, "pacman-g2"); - if (pm_lpkg && pm_spkg) + if (gfpm_check_if_package_updatable ("pacman-g2")) { - char *v1 = (char*)pacman_pkg_getinfo (pm_spkg, PM_PKG_VERSION); - char *v2 = (char*)pacman_pkg_getinfo (pm_lpkg, PM_PKG_VERSION); - if (pacman_pkg_vercmp(v1,v2)==1) + updatestr = g_strdup_printf (_("Gfpm has detected a newer version of the pacman-g2 package. It is recommended that you allow gfpm to update pacman-g2 first. Do you wish to continue upgrading pacman-g2 ?")); + if (gfpm_question (_("Update pacman-g2"), updatestr) == GTK_RESPONSE_YES) { - if (gfpm_question (_("Update pacman-g2"), updatestr) == GTK_RESPONSE_YES) - { gfpm_package_list_add (GFPM_INSTALL_LIST, "pacman-g2"); cb_gfpm_apply_btn_clicked (NULL, NULL); - goto cleanup; - } + pacman_trans_release (); } + g_free (updatestr); } + /* check for a pacman-g2 update */ + if (gfpm_check_if_package_updatable ("gfpm")) + { + updatestr = g_strdup_printf (_("Gfpm has detected a newer version of the gfpm package. It is recommended that you allow gfpm to update itself first. Do you wish to continue upgrading gfpm ?")); + if (gfpm_question (_("Update Gfpm"), updatestr) == GTK_RESPONSE_YES) + { + gfpm_package_list_add (GFPM_INSTALL_LIST, "gfpm"); + cb_gfpm_apply_btn_clicked (NULL, NULL); + pacman_trans_release (); + } + g_free (updatestr); + } + if (pacman_trans_init(PM_TRANS_TYPE_SYNC, 0, gfpm_progress_event, cb_gfpm_trans_conv, gfpm_progress_install) == -1) { gchar *str; @@ -1118,8 +1122,6 @@ cb_gfpm_refresh_button_clicked (GtkButton *button, gpointer data) } cleanup: - pacman_pkg_free (pm_lpkg); - pacman_pkg_free (pm_spkg); pacman_trans_release (); return; diff --git a/src/gfpm-util.c b/src/gfpm-util.c index c0fff0d..45fc91e 100644 --- a/src/gfpm-util.c +++ b/src/gfpm-util.c @@ -59,3 +59,26 @@ gfpm_get_icon (const char *icon, int size) return ret; } +gint +gfpm_check_if_package_updatable (const gchar *package) +{ + PM_PKG *pm_glpkg = NULL; + PM_PKG *pm_gspkg = NULL; + extern PM_DB *local_db; + extern PM_DB *sync_db; + + pm_glpkg = pacman_db_readpkg (local_db, package); + pm_gspkg = pacman_db_readpkg (sync_db, package); + if (pm_glpkg && pm_gspkg) + { + char *v1 = (char*)pacman_pkg_getinfo (pm_gspkg, PM_PKG_VERSION); + char *v2 = (char*)pacman_pkg_getinfo (pm_glpkg, PM_PKG_VERSION); + if (pacman_pkg_vercmp(v1,v2)==1) + { + return 1; + } + } + + return 0; +} + diff --git a/src/gfpm-util.h b/src/gfpm-util.h index af37351..233ff51 100644 --- a/src/gfpm-util.h +++ b/src/gfpm-util.h @@ -18,4 +18,6 @@ GList * gfpm_pmlist_to_glist (PM_LIST *); GdkPixbuf *gfpm_get_icon (const char *, int); +gint gfpm_check_if_package_updatable (const gchar *); + #endif From priyank at frugalware.org Wed Sep 19 18:19:46 2007 From: priyank at frugalware.org (Priyank) Date: Wed Sep 19 18:19:47 2007 Subject: [Frugalware-git] gfpm: gfpm_check_if_package_updatable (): free PM_PKG pointers before returning. Message-ID: <20070919161946.1DF511678016@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gfpm.git;a=commitdiff;h=4cfd5cb3bde0c2c078c0c82cd36192cd61df26ec commit 4cfd5cb3bde0c2c078c0c82cd36192cd61df26ec Author: Priyank Date: Wed Sep 19 21:47:04 2007 +0530 gfpm_check_if_package_updatable (): free PM_PKG pointers before returning. diff --git a/src/gfpm-util.c b/src/gfpm-util.c index 45fc91e..7a5bc12 100644 --- a/src/gfpm-util.c +++ b/src/gfpm-util.c @@ -78,6 +78,8 @@ gfpm_check_if_package_updatable (const gchar *package) return 1; } } + pacman_pkg_free (pm_glpkg); + pacman_pkg_free (pm_gspkg); return 0; } From priyank at frugalware.org Wed Sep 19 18:24:36 2007 From: priyank at frugalware.org (Priyank) Date: Wed Sep 19 18:24:42 2007 Subject: [Frugalware-git] gfpm: the stable repo is "frugalware" and not "frugalware-stable" Message-ID: <20070919162436.5557B1678019@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gfpm.git;a=commitdiff;h=4b5d2b3dff32423632fcbc40b6567142e390c1f2 commit 4b5d2b3dff32423632fcbc40b6567142e390c1f2 Author: Priyank Date: Wed Sep 19 21:51:48 2007 +0530 the stable repo is "frugalware" and not "frugalware-stable" * Also fixed a memleak in gfpm_check_if_package_updatable() diff --git a/src/gfpm-db.h b/src/gfpm-db.h index 430ed36..80bf783 100644 --- a/src/gfpm-db.h +++ b/src/gfpm-db.h @@ -11,7 +11,7 @@ #include #define FW_CURRENT "frugalware-current" -#define FW_STABLE "frugalware-stable" +#define FW_STABLE "frugalware" #define FW_LOCAL "local" void gfpm_db_register (const char *); diff --git a/src/gfpm-util.c b/src/gfpm-util.c index 7a5bc12..97da9be 100644 --- a/src/gfpm-util.c +++ b/src/gfpm-util.c @@ -62,6 +62,7 @@ gfpm_get_icon (const char *icon, int size) gint gfpm_check_if_package_updatable (const gchar *package) { + gint ret = 0; PM_PKG *pm_glpkg = NULL; PM_PKG *pm_gspkg = NULL; extern PM_DB *local_db; @@ -75,12 +76,12 @@ gfpm_check_if_package_updatable (const gchar *package) char *v2 = (char*)pacman_pkg_getinfo (pm_glpkg, PM_PKG_VERSION); if (pacman_pkg_vercmp(v1,v2)==1) { - return 1; + ret = 1; } } pacman_pkg_free (pm_glpkg); pacman_pkg_free (pm_gspkg); - return 0; + return ret; } From vmiklos at frugalware.org Wed Sep 19 18:44:33 2007 From: vmiklos at frugalware.org (VMiklos) Date: Wed Sep 19 18:44:36 2007 Subject: [Frugalware-git] frugalware-current: x11vnc-0.9.2-1-i686 Message-ID: <20070919164433.453821A68014@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=dac48ce1abd5a6a87531f2ef2b4b62367a3da98c commit dac48ce1abd5a6a87531f2ef2b4b62367a3da98c Author: VMiklos Date: Wed Sep 19 18:44:11 2007 +0200 x11vnc-0.9.2-1-i686 added a README.Frugalware diff --git a/source/xapps-extra/x11vnc/FrugalBuild b/source/xapps-extra/x11vnc/FrugalBuild index 597fa7b..cb2c64c 100644 --- a/source/xapps-extra/x11vnc/FrugalBuild +++ b/source/xapps-extra/x11vnc/FrugalBuild @@ -8,12 +8,13 @@ pkgdesc="a VNC server for real X displays" _F_sourceforge_dirname="libvncserver" _F_sourceforge_broken_up2date=1 Finclude sourceforge +source=($source README.Frugalware) url="http://www.karlrunge.com/x11vnc/" license="GPL" depends=('libxtst' 'libjpeg' 'zlib') makedepends=('inputproto') archs=('i686' 'x86_64') groups=('xapps-extra') - -sha1sums=('adc9f61e949c30890bf8617669bef6bfa6a37137') +sha1sums=('adc9f61e949c30890bf8617669bef6bfa6a37137' \ + 'ffb34daee8f3099e65290225bf648950b1e61f92') # optimization OK diff --git a/source/xapps-extra/x11vnc/README.Frugalware b/source/xapps-extra/x11vnc/README.Frugalware new file mode 100644 index 0000000..02848ec --- /dev/null +++ b/source/xapps-extra/x11vnc/README.Frugalware @@ -0,0 +1,15 @@ +Running `x11vnc` without a password is not recommended. To create one, type: + +---- +vncpasswd ~/.vnc/passwd +---- + +Then you can start the VNC server using + +---- +x11vnc -display :0 -rfbauth ~/.vnc/passwd -forever +---- + +if are logged in on `:0`. + +// vim: ft=asciidoc From priyank at frugalware.org Wed Sep 19 18:50:36 2007 From: priyank at frugalware.org (Priyank) Date: Wed Sep 19 18:50:37 2007 Subject: [Frugalware-git] gfpm: removed some comments that are not needed Message-ID: <20070919165036.5E1A51A68017@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gfpm.git;a=commitdiff;h=4ab8a7f9820497716338f2fac6b40c48d5c7dab1 commit 4ab8a7f9820497716338f2fac6b40c48d5c7dab1 Author: Priyank Date: Wed Sep 19 22:17:32 2007 +0530 removed some comments that are not needed diff --git a/src/gfpm-interface.c b/src/gfpm-interface.c index 38fc9f6..6b3a910 100644 --- a/src/gfpm-interface.c +++ b/src/gfpm-interface.c @@ -1065,7 +1065,7 @@ cb_gfpm_refresh_button_clicked (GtkButton *button, gpointer data) } g_free (updatestr); } - /* check for a pacman-g2 update */ + /* check for a gfpm update */ if (gfpm_check_if_package_updatable ("gfpm")) { updatestr = g_strdup_printf (_("Gfpm has detected a newer version of the gfpm package. It is recommended that you allow gfpm to update itself first. Do you wish to continue upgrading gfpm ?")); @@ -1096,8 +1096,6 @@ cb_gfpm_refresh_button_clicked (GtkButton *button, gpointer data) } packages = pacman_trans_getinfo (PM_TRANS_PACKAGES); - /* Drop 'no changes to apply' instead of an empty list, if no need to - upgrade any package */ if (packages == NULL) { gfpm_message ("No new updates available", _("No new package updates are available. The system is up to date.")); @@ -1106,17 +1104,6 @@ cb_gfpm_refresh_button_clicked (GtkButton *button, gpointer data) if (gfpm_plist_question(_("Package upgrade"), _("Following packages will be upgraded. Do you want to continue ?"), gfpm_pmlist_to_glist(packages)) == GTK_RESPONSE_YES) { - /* - PM_LIST *i = NULL; - gfpm_package_list_free (GFPM_INSTALL_LIST); - gfpm_package_list_free (GFPM_REMOVE_LIST); - for (i=pacman_list_first(packages);i;i=pacman_list_next(i)) - { - PM_SYNCPKG *sync = pacman_list_getdata (i); - PM_PKG *pk = pacman_sync_getinfo (sync, PM_SYNC_PKG); - gfpm_package_list_add (GFPM_INSTALL_LIST, pacman_pkg_getinfo(pk, PM_PKG_NAME)); - } - */ pacman_trans_release (); cb_gfpm_apply_btn_clicked (NULL, NULL); } From vmiklos at frugalware.org Wed Sep 19 19:32:40 2007 From: vmiklos at frugalware.org (VMiklos) Date: Wed Sep 19 19:32:43 2007 Subject: [Frugalware-git] frugalware-current: btg-0.9.6-1-i686 Message-ID: <20070919173240.CE13F1678013@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=dc98d635573f545f90c5d99a0f117e989a505bc3 commit dc98d635573f545f90c5d99a0f117e989a505bc3 Author: VMiklos Date: Wed Sep 19 19:32:28 2007 +0200 btg-0.9.6-1-i686 version bump diff --git a/source/network-extra/btg/FrugalBuild b/source/network-extra/btg/FrugalBuild index 53955d4..e696959 100644 --- a/source/network-extra/btg/FrugalBuild +++ b/source/network-extra/btg/FrugalBuild @@ -2,8 +2,8 @@ # Maintainer: VMiklos pkgname=btg -pkgver=0.9.5 -pkgrel=2 +pkgver=0.9.6 +pkgrel=1 pkgdesc="Bittorrent client implemented in C++ and using the Rasterbar Libtorrent library." Finclude berlios depends=('boost>=1.34.0-4' 'rblibtorrent>=0.12-4' 'gnutls' 'dialog') @@ -21,4 +21,4 @@ build() } # optimization OK -sha1sums=('9bc24981155e3114866d94de6c3e6d0f3fa40367') +sha1sums=('48edd53195b11973f1526884fb5c1babe99a7de8') From voroskoi at frugalware.org Wed Sep 19 20:25:27 2007 From: voroskoi at frugalware.org (voroskoi) Date: Wed Sep 19 20:25:30 2007 Subject: [Frugalware-git] frugalware-current: cups-1.3.2-1-i686 Message-ID: <20070919182527.4C784168800B@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=d31c1861d620640ed6e3a834558f90b88a243e54 commit d31c1861d620640ed6e3a834558f90b88a243e54 Author: voroskoi Date: Wed Sep 19 19:47:45 2007 +0200 cups-1.3.2-1-i686 version bump diff --git a/source/apps/cups/FrugalBuild b/source/apps/cups/FrugalBuild index 428fc60..edbb78d 100644 --- a/source/apps/cups/FrugalBuild +++ b/source/apps/cups/FrugalBuild @@ -3,8 +3,8 @@ # Maintainer: voroskoi pkgname=cups -pkgver=1.3.1 -pkgrel=2 +pkgver=1.3.2 +pkgrel=1 pkgdesc="The CUPS Printing System" url="http://www.cups.org/" depends=('libtiff' 'libpng' 'libjpeg') @@ -23,7 +23,6 @@ subgroups=('lib') subarchs=('i686 x86_64') build() { - Fsed '@CUPS_LOCALEDIR@' "$Fprefix/share/locale" Makedefs.in Fpatchall # Do NOT remove --libdir option, needed for x86_64 to put libs into /usr/lib Fmake --with-cups-user=lp \ @@ -50,7 +49,7 @@ build() { Fsplit libcups usr/lib/libcups.so* } -sha1sums=('afc3d80f2184a5173839766f36d263677e328f7c' \ +sha1sums=('6915f4499ac258a59afc5b3541b17f56b3bfb66f' \ 'ad90c43de181d362f6c507f366904472d01ae585' \ 'f19bb889e3535e1284d0b93606da48aa61089c8a' \ '03197abb98eff18d3ede3000a61c7783b8c1ad92') From crazy at frugalware.org Wed Sep 19 20:57:45 2007 From: crazy at frugalware.org (crazy) Date: Wed Sep 19 20:57:50 2007 Subject: [Frugalware-git] frugalware-current: digikam-0.9.2-2-i686 Message-ID: <20070919185745.D75991678013@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=dccc222211483d5cba58797e9802e7e9537f4b7a commit dccc222211483d5cba58797e9802e7e9537f4b7a Author: crazy Date: Wed Sep 19 20:49:27 2007 +0200 digikam-0.9.2-2-i686 * rebuild with libkdcraw and libkexiv2 diff --git a/source/kde-extra/digikam/FrugalBuild b/source/kde-extra/digikam/FrugalBuild index f8131a1..fb7d239 100644 --- a/source/kde-extra/digikam/FrugalBuild +++ b/source/kde-extra/digikam/FrugalBuild @@ -4,11 +4,11 @@ pkgname=digikam pkgver=0.9.2 -pkgrel=1 +pkgrel=2 pkgdesc="Digital photo management application for kde" depends=('libkipi>=0.1.5' 'libgphoto2' 'imlib2' 'sqlite3' 'kdelibs>=3.5.7' \ 'exiv2>=0.15' 'lcms' 'libdrm' 'libxcb' 'libice' 'libxt' \ - 'libkexiv2>=0.1.5-2' 'libkdcraw') + 'libkexiv2>=0.1.6' 'libkdcraw>=0.1.2') makedepends=('doxygen') groups=('kde-extra' 'kde-apps') archs=('i686' 'x86_64') @@ -19,5 +19,7 @@ provides=('digikamimageplugins') _F_sourceforge_ext=".tar.bz2" _F_kde_defaults=0 Finclude sourceforge kde -sha1sums=('8344355c3a9e4b8648d2e1a853cdf54e90918d91') +source=($source lcms.patch) +sha1sums=('8344355c3a9e4b8648d2e1a853cdf54e90918d91' \ + 'c7e9e31a5050dda65c4d2b0bf391800811ed8894') # optimization OK diff --git a/source/kde-extra/digikam/lcms.patch b/source/kde-extra/digikam/lcms.patch new file mode 100644 index 0000000..f086a46 --- /dev/null +++ b/source/kde-extra/digikam/lcms.patch @@ -0,0 +1,14 @@ +--- digikam/libs/lprof/lcmsprf.h 2007/06/02 15:17:33 670778 ++++ digikam/libs/lprof/lcmsprf.h 2007/08/22 07:03:07 703199 +@@ -69,6 +69,10 @@ + + } MATN,FAR* LPMATN; + ++// See B.K.O #148930: compile with lcms v.1.17 ++#if (LCMS_VERSION > 116) ++typedef LCMSBOOL BOOL; ++#endif + + LPMATN cdecl MATNalloc(int Rows, int Cols); + void cdecl MATNfree (LPMATN mat); + From vmiklos at frugalware.org Wed Sep 19 21:25:02 2007 From: vmiklos at frugalware.org (VMiklos) Date: Wed Sep 19 21:25:08 2007 Subject: [Frugalware-git] frugalware-current: gcc-4.2.1-3-i686 Message-ID: <20070919192502.8D48F1678013@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=f6fd0104c307fec3dcce461004f9aeb429696502 commit f6fd0104c307fec3dcce461004f9aeb429696502 Author: VMiklos Date: Wed Sep 19 21:23:55 2007 +0200 gcc-4.2.1-3-i686 move libgcjwebplugin and libgtkpeer to the libgcj-awt subpkg as they depend on x thx crazy for noticing diff --git a/source/devel/gcc/FrugalBuild b/source/devel/gcc/FrugalBuild index 907d5d2..6cc32d6 100644 --- a/source/devel/gcc/FrugalBuild +++ b/source/devel/gcc/FrugalBuild @@ -159,7 +159,7 @@ build() Fsplit gcc-gfortran usr/libexec/gcc/$CHOST/$pkgver/f951 # libgcj-awt Fsplit libgcj-awt usr/lib/gcc/$CHOST/$pkgver/include/jawt*.h - Fsplit libgcj-awt usr/lib/gcj-$pkgver/libjawt.* + Fsplit libgcj-awt usr/lib/gcj-$pkgver/lib{jawt,gcjwebplugin,gtkpeer}.* Fsplit libgcj-awt usr/include/c++/$pkgver/gnu/awt Fsplit libgcj-awt usr/include/c++/$pkgver/gnu/java/awt Fsplit libgcj-awt usr/include/c++/$pkgver/java/awt From vmiklos at frugalware.org Wed Sep 19 21:28:35 2007 From: vmiklos at frugalware.org (VMiklos) Date: Wed Sep 19 21:28:37 2007 Subject: [Frugalware-git] pacman-tools: dg: use git rebase instead of git merge when pulling Message-ID: <20070919192835.F0F81168800B@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=pacman-tools.git;a=commitdiff;h=cf01380556969eee66b792bcac71d2696e8fdb1a commit cf01380556969eee66b792bcac71d2696e8fdb1a Author: VMiklos Date: Wed Sep 19 21:27:31 2007 +0200 dg: use git rebase instead of git merge when pulling less 'merge' commits should make everyone happy diff --git a/darcs-git.py b/darcs-git.py index fc10721..91d91f4 100755 --- a/darcs-git.py +++ b/darcs-git.py @@ -604,6 +604,8 @@ Options: optind += 1 if optind < len(argv): options.gitopts = " ".join(argv[optind:]) + else: + options.gitopts = "origin" if options.help: usage(0) os.system("git fetch") @@ -622,7 +624,7 @@ Options: if ret in ("n", "q"): sys.exit(0) print "Invalid response, try again!" - os.system("git pull %s" % options.gitopts) + os.system("git rebase %s" % options.gitopts) def get(argv): def usage(ret): From vmiklos at frugalware.org Wed Sep 19 21:50:50 2007 From: vmiklos at frugalware.org (VMiklos) Date: Wed Sep 19 21:50:51 2007 Subject: [Frugalware-git] frugalware-current: tasks-0.9-1-x86_64 Message-ID: <20070919195050.59A5D168800B@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=dfa18f09d8592b302efc2bb7c36647cdd3a72749 commit dfa18f09d8592b302efc2bb7c36647cdd3a72749 Author: VMiklos Date: Wed Sep 19 21:50:43 2007 +0200 tasks-0.9-1-x86_64 added x86_64 to archs() diff --git a/source/gnome-extra/tasks/FrugalBuild b/source/gnome-extra/tasks/FrugalBuild index 2a28a00..8e5ab19 100644 --- a/source/gnome-extra/tasks/FrugalBuild +++ b/source/gnome-extra/tasks/FrugalBuild @@ -9,7 +9,7 @@ url="http://www.pimlico-project.org/tasks.html" depends=('gtk+2' 'evolution-data-server' 'libsexy') makedepends=('perl-xml' 'intltool') groups=('gnome-extra') -archs=('i686') +archs=('i686' 'x86_64') _F_gnome_desktop=y _F_gnome_iconcache=y Finclude gnome-scriptlet From vmiklos at frugalware.org Wed Sep 19 21:58:53 2007 From: vmiklos at frugalware.org (VMiklos) Date: Wed Sep 19 21:58:54 2007 Subject: [Frugalware-git] frugalware-current: hardinfo-0.4.2.2-1-x86_64 Message-ID: <20070919195853.5CC521678013@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=343cba18c5703c53c4c9fc7543b53b643dee7ff3 commit 343cba18c5703c53c4c9fc7543b53b643dee7ff3 Author: VMiklos Date: Wed Sep 19 21:58:49 2007 +0200 hardinfo-0.4.2.2-1-x86_64 added x86_64 to archs() diff --git a/source/gnome-extra/hardinfo/FrugalBuild b/source/gnome-extra/hardinfo/FrugalBuild index acbd4d2..a9fe279 100644 --- a/source/gnome-extra/hardinfo/FrugalBuild +++ b/source/gnome-extra/hardinfo/FrugalBuild @@ -12,6 +12,6 @@ source=($source frugalware.patch) options=('scriptlet') depends=('gtk+2' 'libsoup' 'pciutils') groups=('gnome-extra') -archs=('i686') +archs=('i686' 'x86_64') sha1sums=('e3ec42cdb5ee03b002aa071d418f951579998408' \ '18894bbc8fb42655660e700543adb04db5568308') From vmiklos at frugalware.org Wed Sep 19 22:01:55 2007 From: vmiklos at frugalware.org (VMiklos) Date: Wed Sep 19 22:01:56 2007 Subject: [Frugalware-git] frugalware-current: incollector-0.6.1-1-x86_64 Message-ID: <20070919200155.AD7ED1678013@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=83ea291fc60acbb5bef9098895acf70f9d6b5c58 commit 83ea291fc60acbb5bef9098895acf70f9d6b5c58 Author: VMiklos Date: Wed Sep 19 22:01:49 2007 +0200 incollector-0.6.1-1-x86_64 added x86_64 to archs() diff --git a/source/gnome-extra/incollector/FrugalBuild b/source/gnome-extra/incollector/FrugalBuild index 8d203ba..a59ae49 100644 --- a/source/gnome-extra/incollector/FrugalBuild +++ b/source/gnome-extra/incollector/FrugalBuild @@ -8,7 +8,7 @@ pkgdesc="Incollector is an application to collect various kinds of information." url="http://incollector.devnull.pl" depends=('mono' 'gtk2-sharp') groups=('gnome-extra') -archs=('i686') +archs=('i686' 'x86_64') Finclude mono up2date="lynx -dump $url/downloads.php | grep -m1 tar.gz | Flasttar" source=($url/download/sources/$pkgname-$pkgver.tar.gz) From vmiklos at frugalware.org Wed Sep 19 22:09:44 2007 From: vmiklos at frugalware.org (VMiklos) Date: Wed Sep 19 22:09:45 2007 Subject: [Frugalware-git] frugalware-current: labyrinth-0.3-1-x86_64 Message-ID: <20070919200944.26D131678013@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=9b0daacad9fd6f5ef666511c1cc05eebb94310fc commit 9b0daacad9fd6f5ef666511c1cc05eebb94310fc Author: VMiklos Date: Wed Sep 19 22:09:40 2007 +0200 labyrinth-0.3-1-x86_64 added x86_64 to archs() diff --git a/source/gnome-extra/labyrinth/FrugalBuild b/source/gnome-extra/labyrinth/FrugalBuild index f7ffd83..2e81a34 100644 --- a/source/gnome-extra/labyrinth/FrugalBuild +++ b/source/gnome-extra/labyrinth/FrugalBuild @@ -13,5 +13,5 @@ _F_gnome_iconcache="y" _F_gnome_desktop="y" _F_gnome_devel="y" Finclude gnome-scriptlet gnome -archs=('i686') +archs=('i686' 'x86_64') sha1sums=('75ed7d3dd41139336bebdbf01de4536a83d5504f') From boobaa at frugalware.org Thu Sep 20 00:06:06 2007 From: boobaa at frugalware.org (CSÉCSY László) Date: Thu Sep 20 00:06:08 2007 Subject: [Frugalware-git] frugalware-current: amavisd-new-2.5.2-1-i686 Message-ID: <20070919220606.73ED61678017@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=ec6c79457982671c8c0bc6920188fc8b78e6bee5 commit ec6c79457982671c8c0bc6920188fc8b78e6bee5 Author: CSÉCSY László Date: Thu Sep 20 00:05:55 2007 +0200 amavisd-new-2.5.2-1-i686 this char drove me crazy for ~2 hours (ie. add X-Spam* headers to every message, not only for score>=2.0) diff --git a/source/network-extra/amavisd-new/20-userconf b/source/network-extra/amavisd-new/20-userconf index 932c195..6abd344 100644 --- a/source/network-extra/amavisd-new/20-userconf +++ b/source/network-extra/amavisd-new/20-userconf @@ -1507,7 +1507,7 @@ $sa_mail_body_size_limit = 200*1024; # don't waste time on SA if mail is larger # default: undef, no limitations # default values, customarily used in the @spam_*_level_maps as the last entry -$sa_tag_level_deflt = 2.0; # add spam info headers if at, or above that level; +#$sa_tag_level_deflt = 2.0; # add spam info headers if at, or above that level; # undef is interpreted as lower than any spam level $sa_tag2_level_deflt = 6.31;# add 'spam detected' headers at that level to # passed mail (e.g. when $final_spam_destiny=D_PASS From vmiklos at frugalware.org Thu Sep 20 02:10:26 2007 From: vmiklos at frugalware.org (VMiklos) Date: Thu Sep 20 02:10:29 2007 Subject: [Frugalware-git] frugalware-current: git-1.5.3.2-1-i686 Message-ID: <20070920001026.B97881678013@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=d2e6b156c7b14f088e7f3222e5669c24e662f713 commit d2e6b156c7b14f088e7f3222e5669c24e662f713 Author: VMiklos Date: Thu Sep 20 02:09:33 2007 +0200 git-1.5.3.2-1-i686 version bump diff --git a/source/devel-extra/git/FrugalBuild b/source/devel-extra/git/FrugalBuild index 35f2eec..7e99042 100644 --- a/source/devel-extra/git/FrugalBuild +++ b/source/devel-extra/git/FrugalBuild @@ -4,7 +4,7 @@ USE_DEVEL=${USE_DEVEL:-"n"} pkgname=git -pkgver=1.5.3.1 +pkgver=1.5.3.2 Fuse $USE_DEVEL && pkgver=1.5.3.rc7.30.g947ad2 pkgrel=1 pkgdesc="A fast, scalable, distributed revision control system." From crazy at frugalware.org Thu Sep 20 10:29:30 2007 From: crazy at frugalware.org (crazy) Date: Thu Sep 20 10:29:34 2007 Subject: [Frugalware-git] frugalware-current: inotify-tools-3.11-1-i686 Message-ID: <20070920082930.EA70D168800F@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=77e92ec5f01ad13c83940330d8208ef1554cd752 commit 77e92ec5f01ad13c83940330d8208ef1554cd752 Author: crazy Date: Thu Sep 20 10:25:16 2007 +0200 inotify-tools-3.11-1-i686 * Version bump * closes #2425 in -current diff --git a/source/apps-extra/inotify-tools/FrugalBuild b/source/apps-extra/inotify-tools/FrugalBuild index f985188..c6da29f 100644 --- a/source/apps-extra/inotify-tools/FrugalBuild +++ b/source/apps-extra/inotify-tools/FrugalBuild @@ -2,14 +2,14 @@ # Maintainer: crazy pkgname=inotify-tools -pkgver=3.10 +pkgver=3.11 pkgrel=1 pkgdesc="inotify-tools is a set of command-line programs for Linux providing a simple interface to inotify" -depends=('glibc') +depends=() groups=('apps-extra') archs=('i686' 'x86_64') _F_sourceforge_broken_up2date=1 Finclude sourceforge -sha1sums=('ebba4373a7eedd11c91aa289b54c6bfb6c7aa864') +sha1sums=('59c99d479ad0733cc4a01a5028522f3e9bf09000') # optimization OK From crazy at frugalware.org Thu Sep 20 12:10:10 2007 From: crazy at frugalware.org (crazy) Date: Thu Sep 20 12:10:13 2007 Subject: [Frugalware-git] frugalware-current: qt4-4.3.1-2-i686 Message-ID: <20070920101010.E005E168800B@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=7ce22186a16eba73402c61d90de980a19742bbc4 commit 7ce22186a16eba73402c61d90de980a19742bbc4 Author: crazy Date: Thu Sep 20 11:52:06 2007 +0200 qt4-4.3.1-2-i686 * [SEC] relbump * closes #2422 in -current * added missing Fdie's diff --git a/source/kde-extra/qt4/CVE-2007-4137.patch b/source/kde-extra/qt4/CVE-2007-4137.patch new file mode 100644 index 0000000..e2bbdd0 --- /dev/null +++ b/source/kde-extra/qt4/CVE-2007-4137.patch @@ -0,0 +1,11 @@ +--- src/corelib/codecs/qutfcodec.cpp ++++ src/corelib/codecs/qutfcodec.cpp +@@ -140,7 +140,7 @@ void QUtf8Codec::convertToUnicode(QString *target, const char *chars, int len, C + + int originalLength = target->length(); + QString &result = *target; +- result.resize(originalLength + len); // worst case ++ result.resize(originalLength + len + 1); // worst case + QChar *qch = result.data() + originalLength; + uchar ch; + int invalid = 0; diff --git a/source/kde-extra/qt4/FrugalBuild b/source/kde-extra/qt4/FrugalBuild index d48c0e8..e656bc1 100644 --- a/source/kde-extra/qt4/FrugalBuild +++ b/source/kde-extra/qt4/FrugalBuild @@ -4,7 +4,7 @@ pkgname=qt4 origname=qt pkgver=4.3.1 -pkgrel=1 +pkgrel=2 pkgmore=x11-opensource-src pkgdesc="The QT4 GUI toolkit." url="http://www.trolltech.com/products/qt" @@ -18,6 +18,7 @@ options=('nodocs' 'scriptlet') up2date="lynx -dump ftp://ftp.trolltech.com/qt/source/|grep 'qt-x11-opensource-src'|grep -v rc[1-9]|grep -v beta|sort -n -r|head -n 1|sed 's/.*-\(.*\).t.*/\1/'" source=(ftp://ftp.trolltech.com/qt/source/$origname-$pkgmore-$pkgver.tar.gz \ http://ftp.frugalware.org/pub/other/sources/kde/qt4/patches-qt4-copy.tar.bz2 \ + CVE-2007-4137.patch \ assistant4.desktop designer4.desktop linguist4.desktop qt4config.desktop \ dummy.patch qt4.sh.off Trolltech.conf apply_patches) @@ -118,13 +119,14 @@ build() Fexe /etc/profile.d/qt4.sh.off Fexe /etc/$pkgname/Trolltech.conf ## some more fixes - cd $Fdestdir/usr/share/$pkgname/mkspecs - rm -rf default ## blah symlink to build dir - ln -sf linux-g++ default + cd $Fdestdir/usr/share/$pkgname/mkspecs || Fdie + rm -rf default || Fdie ## blah symlink to build dir + ln -sf linux-g++ default || Fdie } sha1sums=('ca59cfdcfc390cf16c6e6b503546e8bb2cc8e1e2' \ '67783ee03af5c615cb6b66df2a7499c22225f841' \ + 'bc00ca6a74edde2a8536988b47e75cc68cb0cb25' \ '991ed0d2f047e0ead54efc050c652595b7bed00b' \ '19281b54674d4071a3814200fd8a64e097ece2e8' \ '410b18b9a496cf551f7ff6cb282c719c874bc883' \ From vmiklos at frugalware.org Thu Sep 20 13:09:25 2007 From: vmiklos at frugalware.org (VMiklos) Date: Thu Sep 20 13:09:30 2007 Subject: [Frugalware-git] frugalware-current: firefox-2.0.0.7-1-i686 Message-ID: <20070920110926.7C751168800B@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=3dd0ae425b1952613e26c69253ab4eb4b67870a1 commit 3dd0ae425b1952613e26c69253ab4eb4b67870a1 Author: VMiklos Date: Thu Sep 20 13:08:29 2007 +0200 firefox-2.0.0.7-1-i686 version bump closes #2423 diff --git a/source/xapps/firefox/FrugalBuild b/source/xapps/firefox/FrugalBuild index a9d4ac1..71ea7bb 100644 --- a/source/xapps/firefox/FrugalBuild +++ b/source/xapps/firefox/FrugalBuild @@ -1,10 +1,9 @@ # Compiling time: 19.80 SBU # Maintainer: AlexExtreme -# Contributor: Laszlo Dvornik # Contributor: VMiklos pkgname=firefox -pkgver=2.0.0.6 +pkgver=2.0.0.7 pkgrel=1 pkgdesc="Mozilla Firefox web browser" url="http://www.mozilla.org/products/firefox/" From crazy at frugalware.org Thu Sep 20 13:17:57 2007 From: crazy at frugalware.org (crazy) Date: Thu Sep 20 13:17:59 2007 Subject: [Frugalware-git] frugalware-current: qt-3.3.8-5-i686 Message-ID: <20070920111757.9A1DF1678013@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=656cc8e0e5658cbd97ffd0d1bc5efd758a3d3903 commit 656cc8e0e5658cbd97ffd0d1bc5efd758a3d3903 Author: crazy Date: Thu Sep 20 13:13:18 2007 +0200 qt-3.3.8-5-i686 * [SEC] relbump * closes #2414 in current diff --git a/source/kde/qt/CVE-2007-4137.patch b/source/kde/qt/CVE-2007-4137.patch new file mode 100644 index 0000000..9fda267 --- /dev/null +++ b/source/kde/qt/CVE-2007-4137.patch @@ -0,0 +1,11 @@ +--- src/codecs/qutfcodec.cpp ++++ src/codecs/qutfcodec.cpp +@@ -165,7 +165,7 @@ public: + QString toUnicode(const char* chars, int len) + { + QString result; +- result.setLength( len ); // worst case ++ result.setLength( len + 1 ); // worst case + QChar *qch = (QChar *)result.unicode(); + uchar ch; + int error = -1; diff --git a/source/kde/qt/FrugalBuild b/source/kde/qt/FrugalBuild index 28a8e21..5789cbf 100644 --- a/source/kde/qt/FrugalBuild +++ b/source/kde/qt/FrugalBuild @@ -4,7 +4,7 @@ pkgname=qt pkgver=3.3.8 -pkgrel=4 +pkgrel=5 pkgmore=x11-free pkgdesc="The QT GUI toolkit." url="http://www.trolltech.com/products/qt" @@ -23,7 +23,8 @@ source=(ftp://ftp.trolltech.com/qt/source/$pkgname-$pkgmore-$pkgver.tar.bz2 \ 03-qt-uic.patch \ 04-qt-visibility.patch \ Qt-3.3.8-UTF-8-fix.diff \ - CVE-2007-3388.patch) + CVE-2007-3388.patch \ + CVE-2007-4137.patch) export QTDIR=$startdir/src/$pkgname-$pkgmore-$pkgver export PATH=${QTDIR}/bin:${PATH} @@ -94,5 +95,6 @@ sha1sums=('91b192cb8e80679607d24ae35d6e20ed68d149d7' \ 'dba54b91b2b00c1d052ac512d824b29d31aefb89' \ '0e88e4f3a184b0f0544bd0cbd8302e55aaf14871' \ '418b09fee387959f45f75fb20fb1e54c0f14b1cb' \ - 'f7634fb0419bda723053adb885facd270ccb10ec') + 'f7634fb0419bda723053adb885facd270ccb10ec' \ + '12c6e2c9091c710ebd031c5e82ff33f02fe7e210') # optimization OK From vmiklos at frugalware.org Thu Sep 20 14:09:37 2007 From: vmiklos at frugalware.org (VMiklos) Date: Thu Sep 20 14:09:39 2007 Subject: [Frugalware-git] frugalware-current: git-1.5.3.2-1-x86_64 Message-ID: <20070920120937.8B9661678013@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=2a2cb2141d8d27f0fa3c7c965796ff5887b2aec9 commit 2a2cb2141d8d27f0fa3c7c965796ff5887b2aec9 Author: VMiklos Date: Thu Sep 20 14:07:23 2007 +0200 git-1.5.3.2-1-x86_64 - move docdir/html to docdir as the html dir also contains a mix of html and plain text documents - remove a broken symlink - typo fix in README.Frugalware diff --git a/source/devel-extra/git/FrugalBuild b/source/devel-extra/git/FrugalBuild index 8b1e6b1..e238c59 100644 --- a/source/devel-extra/git/FrugalBuild +++ b/source/devel-extra/git/FrugalBuild @@ -55,7 +55,9 @@ build() make V=1 CLFAGS="$CFLAGS" ASCIIDOC8=YesPlease ETC_GITCONFIG=/etc/gitconfig all doc test || return 1 Fmakeinstall install-doc ETC_GITCONFIG=/etc/gitconfig mandir=/usr/share/man Ffilerel perl/private-Error.pm /usr/lib/perl5/site_perl/current/Error.pm - make -C Documentation WEBDOC_DEST=$Fdestdir/usr/share/doc/$pkgname-$pkgver/html install-webdoc || return 1 + make -C Documentation WEBDOC_DEST=$Fdestdir/usr/share/doc/$pkgname-$pkgver install-webdoc || return 1 + # broken symlink + Frm /usr/share/doc/git-$pkgver/index.html Fdocrel Documentation/SubmittingPatches Fdocrel Documentation/technical diff --git a/source/devel-extra/git/README.Frugalware b/source/devel-extra/git/README.Frugalware index 1cc505f..54f8e10 100644 --- a/source/devel-extra/git/README.Frugalware +++ b/source/devel-extra/git/README.Frugalware @@ -3,6 +3,6 @@ If you want to set up a web interface for your git repositories, then: * install the `gitweb` package -* edit edit `/etc/gitweb.conf` so that `$projectroot` will point to the +* edit `/etc/gitweb.conf` so that `$projectroot` will point to the repository directory * restart `apache` so that the `gitweb` configuration will be included. From priyank at frugalware.org Thu Sep 20 15:26:36 2007 From: priyank at frugalware.org (Priyank) Date: Thu Sep 20 15:26:38 2007 Subject: [Frugalware-git] frugalware-current: glest-2.0.0-3-i686 Message-ID: <20070920132636.EF1DF1678013@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=d5a091c7808ee549f1618a1e4d3bcf8884d5d81a commit d5a091c7808ee549f1618a1e4d3bcf8884d5d81a Author: Priyank Date: Thu Sep 20 18:52:08 2007 +0530 glest-2.0.0-3-i686 * Fixed up2date diff --git a/source/games-extra/glest/FrugalBuild b/source/games-extra/glest/FrugalBuild index a9af720..be79192 100644 --- a/source/games-extra/glest/FrugalBuild +++ b/source/games-extra/glest/FrugalBuild @@ -14,7 +14,7 @@ depends=('sdl' 'libogg' 'libvorbis' 'openal' 'xerces-c' 'libxt' 'libx11' 'mesa' groups=('games-extra') archs=('i686' 'x86_64') options=('scriptlet') -up2date="lynx -dump http://sourceforge.net/project/showfiles.php?group_id=127297 | grep -m1 source | sed 's/.*ce.*]\(.*\) Ap.*/\1/'" +up2date="lynx -dump $url/en/downloads.html | grep -m1 glest | sed 's/.*t_\(.*\).ex.*/\1/'" source=(${source/glest-/glest_source_} $pkgname-$pkgver-gcc41.patch $pkgname $pkgname.png) Fprefix="/usr/share" From priyank at frugalware.org Thu Sep 20 15:32:49 2007 From: priyank at frugalware.org (Priyank) Date: Thu Sep 20 15:32:51 2007 Subject: [Frugalware-git] frugalware-current: glest-data-2.0.0-1-i686 Message-ID: <20070920133249.8E4C21678013@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=393d5da2428c8dbfc0cc4e46a9bd5c678931e84b commit 393d5da2428c8dbfc0cc4e46a9bd5c678931e84b Author: Priyank Date: Thu Sep 20 19:00:00 2007 +0530 glest-data-2.0.0-1-i686 * Fix up2date` diff --git a/source/games-extra/glest-data/FrugalBuild b/source/games-extra/glest-data/FrugalBuild index 5383a4d..136687d 100644 --- a/source/games-extra/glest-data/FrugalBuild +++ b/source/games-extra/glest-data/FrugalBuild @@ -8,10 +8,11 @@ pkgdesc="glest is a 3D realtime strategy game (data package)" _F_sourceforge_ext=".zip" _F_sourceforge_name="glest" Finclude sourceforge +url="http://www.glest.org/" makedepends=('unzip') groups=('games-extra') archs=('i686' 'x86_64') -up2date="lynx -dump http://sourceforge.net/project/showfiles.php?group_id=127297 | grep -m1 source | sed 's/.*ce.*]\(.*\) Ap.*/\1/'" +up2date="lynx -dump $url/en/downloads.html | grep -m1 glest | sed 's/.*t_\(.*\).ex.*/\1/'" source=(${source/glest-/glest_data_}) sha1sums=('92cea5cc0e70bcd58ac4afd8a164bde1a9925bba') From priyank at frugalware.org Thu Sep 20 16:16:59 2007 From: priyank at frugalware.org (Priyank) Date: Thu Sep 20 16:17:02 2007 Subject: [Frugalware-git] gfpm: set the default textdomain codeset to UTF-8. Message-ID: <20070920141659.AD6581678013@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gfpm.git;a=commitdiff;h=66817739ad8cb63e359803623e5746b4732a1d68 commit 66817739ad8cb63e359803623e5746b4732a1d68 Author: Priyank Date: Thu Sep 20 19:43:54 2007 +0530 set the default textdomain codeset to UTF-8. * This solves the problem of accents not being displayed correctly in some languages. diff --git a/src/gfpm.c b/src/gfpm.c index 2b3c11b..90158a6 100644 --- a/src/gfpm.c +++ b/src/gfpm.c @@ -43,6 +43,7 @@ main (int argc, char *argv[]) setlocale (LC_ALL, ""); bindtextdomain (GETTEXT_PACKAGE, LOCALEDIR); + bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8"); textdomain (GETTEXT_PACKAGE); gtk_init (&argc, &argv); From priyank at frugalware.org Thu Sep 20 16:24:00 2007 From: priyank at frugalware.org (Priyank) Date: Thu Sep 20 16:24:01 2007 Subject: [Frugalware-git] fw-control-center: set the textdomain codeset to UTF-8 Message-ID: <20070920142400.8620A1688010@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=fw-control-center.git;a=commitdiff;h=f277f152f8d252938eaa5b8e167f10de8c440d5f commit f277f152f8d252938eaa5b8e167f10de8c440d5f Author: Priyank Date: Thu Sep 20 19:50:58 2007 +0530 set the textdomain codeset to UTF-8 * This probably fixes the problem of accents being displayed as '?' in some languages. diff --git a/gnetconfig/src/gnetconfig.c b/gnetconfig/src/gnetconfig.c index dfbc035..c80c0f4 100644 --- a/gnetconfig/src/gnetconfig.c +++ b/gnetconfig/src/gnetconfig.c @@ -41,6 +41,7 @@ main (int argc, char *argv[]) setlocale (LC_ALL, ""); bindtextdomain (GETTEXT_PACKAGE, LOCALEDIR); + bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8"); textdomain (GETTEXT_PACKAGE); gtk_init (&argc, &argv); From krics at linuxforum.hu Thu Sep 20 16:38:15 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Thu Sep 20 16:38:17 2007 Subject: [Frugalware-git] frugalware-current: libxslt-1.1.22-1-x86_64 Message-ID: <20070920143815.538771688013@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=451233a96aceec712d5a89680fc6e79c4d7ad7cf commit 451233a96aceec712d5a89680fc6e79c4d7ad7cf Author: Christian Hamar alias krix Date: Thu Sep 20 16:37:29 2007 +0200 libxslt-1.1.22-1-x86_64 * Version bump - First part of gnome 2.20 bump diff --git a/source/lib/libxslt/FrugalBuild b/source/lib/libxslt/FrugalBuild index ba0aa61..dfc1375 100644 --- a/source/lib/libxslt/FrugalBuild +++ b/source/lib/libxslt/FrugalBuild @@ -3,7 +3,7 @@ # Maintainer: Zsolt Szalai pkgname=libxslt -pkgver=1.1.20 +pkgver=1.1.22 pkgrel=1 pkgdesc="XML stylesheet transformation library" url="http://xmlsoft.org/XSLT/" @@ -14,7 +14,7 @@ makedepends=('python') _F_gnome_devel=y Finclude gnome source=(http://ftp.gnome.org/pub/GNOME/sources/libxslt/1.1/$pkgname-$pkgver.tar.gz) -sha1sums=('1ca621c042b4f3d9a7e730c53961b89bcce2c645') +sha1sums=('55ce4dc659681d9a5ba2322c45cbdfe75b46639c') build() { Fbuild --without-debug --with-plugins --with-debugger From krics at linuxforum.hu Thu Sep 20 16:43:26 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Thu Sep 20 16:43:29 2007 Subject: [Frugalware-git] frugalware-current: gnome-common-2.20.0-1-x86_64 Message-ID: <20070920144326.7348016E8011@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=b623deea33f8f601634f5b5cef60b76583616fcf commit b623deea33f8f601634f5b5cef60b76583616fcf Author: Christian Hamar alias krix Date: Thu Sep 20 16:42:52 2007 +0200 gnome-common-2.20.0-1-x86_64 * Version bump * Dropped scrollkeeper from depends() (not needed) diff --git a/source/gnome/gnome-common/FrugalBuild b/source/gnome/gnome-common/FrugalBuild index 5bf465b..870f16c 100644 --- a/source/gnome/gnome-common/FrugalBuild +++ b/source/gnome/gnome-common/FrugalBuild @@ -2,11 +2,11 @@ # Maintainer: AlexExtreme pkgname=gnome-common -pkgver=2.18.0 +pkgver=2.20.0 pkgrel=1 pkgdesc="Common macros for GNOME" url="http://www.gnome.org/" -depends=('scrollkeeper') +depends=('glibc') groups=('gnome' 'gnome-core') archs=('i686' 'x86_64') Finclude gnome @@ -17,5 +17,5 @@ build() { Fexe /etc/profile.d/gnome.sh } -sha1sums=('263b7c3ca2fdd07052d1820f3469750628a18726'\ +sha1sums=('8fc9eeacdf6b77d8e6d1735979bbc3d678f49d95' \ 'fb0a0d87d507a20c32ec2af9d0f2bda57f28ffaa') From vmiklos at frugalware.org Thu Sep 20 17:06:40 2007 From: vmiklos at frugalware.org (VMiklos) Date: Thu Sep 20 17:06:43 2007 Subject: [Frugalware-git] frugalware-current: t-prot-2.5-1-i686 Message-ID: <20070920150640.59A961E68016@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=69da71fc8c242907694f301e07e8f8799780f7af commit 69da71fc8c242907694f301e07e8f8799780f7af Author: VMiklos Date: Thu Sep 20 17:06:05 2007 +0200 t-prot-2.5-1-i686 version bump diff --git a/source/network-extra/t-prot/FrugalBuild b/source/network-extra/t-prot/FrugalBuild index 515908e..9e2607f 100644 --- a/source/network-extra/t-prot/FrugalBuild +++ b/source/network-extra/t-prot/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: VMiklos pkgname=t-prot -pkgver=2.4 +pkgver=2.5 pkgrel=1 pkgdesc="A TOFU protection script." url="http://www.escape.de/~tolot/mutt/t-prot" From vmiklos at frugalware.org Thu Sep 20 17:16:28 2007 From: vmiklos at frugalware.org (VMiklos) Date: Thu Sep 20 17:16:31 2007 Subject: [Frugalware-git] bmf: git-1.5.3.2.80.g077d6f-1-i686 Message-ID: <20070920151628.DC8251A68012@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=bmf.git;a=commitdiff;h=4b622b321fa2778a679ab1dd2353d6da22c65bca commit 4b622b321fa2778a679ab1dd2353d6da22c65bca Author: VMiklos Date: Thu Sep 20 17:16:09 2007 +0200 git-1.5.3.2.80.g077d6f-1-i686 - sync with current - update to newer snapshot diff --git a/source/devel-extra/git/FrugalBuild b/source/devel-extra/git/FrugalBuild index 0c71e49..5aa306a 100644 --- a/source/devel-extra/git/FrugalBuild +++ b/source/devel-extra/git/FrugalBuild @@ -1,16 +1,16 @@ -# Compiling Time: 0.36 SBU +# Compiling Time: 2.59 SBU # Maintainer: VMiklos USE_DEVEL=${USE_DEVEL:-"y"} pkgname=git -pkgver=1.5.3.1 -Fuse $USE_DEVEL && pkgver=1.5.3.1.1.g1e61 +pkgver=1.5.3.2 +Fuse $USE_DEVEL && pkgver=1.5.3.2.80.g077d6f pkgrel=1 pkgdesc="A fast, scalable, distributed revision control system." url="http://www.kernel.org/pub/software/scm/git/" depends=('curl>=7.16.0' 'openssl') -makedepends=('asciidoc' 'docbook-xsl>=1.73.0-2' 'docbook-xml' 'sgml-common' 'xmlto') +makedepends=('asciidoc' 'docbook-xsl>=1.73.0-2' 'docbook-xml' 'sgml-common' 'xmlto' 'cpio') groups=('devel-extra') archs=('i686' 'x86_64') up2date="lynx -dump '$url/?C=M;O=D'|grep 'git-[0-9.]*.tar.bz2$'|sed -n 's/.*-\(.*\)\.t.*/\1/;1 p'" @@ -45,11 +45,19 @@ build() Fsed 'doc/' '' templates/hooks--post-receive Fsed ' (on debian)' '' templates/hooks--post-receive + # don't install the source of the manpages + Fsed ' \*.txt' '' Documentation/install-webdoc.sh + + # we don't need the html version of manpages + Fsed '^DOC_HTML=.*' 'DOC_HTML=' Documentation/Makefile + Fconf - make V=1 CLFAGS="$CFLAGS" ASCIIDOC8=YesPlease ETC_GITCONFIG=/etc/gitconfig all doc || return 1 + make V=1 CLFAGS="$CFLAGS" ASCIIDOC8=YesPlease ETC_GITCONFIG=/etc/gitconfig all doc test || return 1 Fmakeinstall install-doc ETC_GITCONFIG=/etc/gitconfig mandir=/usr/share/man Ffilerel perl/private-Error.pm /usr/lib/perl5/site_perl/current/Error.pm - make -C Documentation WEBDOC_DEST=$Fdestdir/usr/share/doc/$pkgname-$pkgver/html install-webdoc || return 1 + make -C Documentation WEBDOC_DEST=$Fdestdir/usr/share/doc/$pkgname-$pkgver install-webdoc || return 1 + # broken symlink + Frm /usr/share/doc/git-$pkgver/index.html Fdocrel Documentation/SubmittingPatches Fdocrel Documentation/technical @@ -73,12 +81,10 @@ build() Fsplit git-gui usr/bin/git-{gui,citool} Fsplit git-gui usr/share/git-gui Fsplit git-gui usr/share/man/man1/git-{gui,citool}.1 - Fsplit git-gui usr/share/doc/git-$pkgver/html/git-{gui,citool}.{html,txt} # gitk Fsplit gitk usr/bin/gitk Fsplit gitk usr/share/man/man1/gitk.1 - Fsplit git-gui usr/share/doc/git-$pkgver/html/gitk.{html,txt} } # optimization OK diff --git a/source/devel-extra/git/README.Frugalware b/source/devel-extra/git/README.Frugalware index 1cc505f..54f8e10 100644 --- a/source/devel-extra/git/README.Frugalware +++ b/source/devel-extra/git/README.Frugalware @@ -3,6 +3,6 @@ If you want to set up a web interface for your git repositories, then: * install the `gitweb` package -* edit edit `/etc/gitweb.conf` so that `$projectroot` will point to the +* edit `/etc/gitweb.conf` so that `$projectroot` will point to the repository directory * restart `apache` so that the `gitweb` configuration will be included. From priyank at frugalware.org Thu Sep 20 17:27:33 2007 From: priyank at frugalware.org (Priyank) Date: Thu Sep 20 17:27:35 2007 Subject: [Frugalware-git] frugalware-current: fortune-mod-1.99.1-1-i686 Message-ID: <20070920152733.6B4E71868009@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=05f7107f514d8f8d52ddfed25f02efd936a55463 commit 05f7107f514d8f8d52ddfed25f02efd936a55463 Author: Priyank Date: Thu Sep 20 20:51:22 2007 +0530 fortune-mod-1.99.1-1-i686 * moved back to apps as xfce4-session requires it for Tips&Tricks diff --git a/source/apps-extra/fortune-mod/FrugalBuild b/source/apps-extra/fortune-mod/FrugalBuild deleted file mode 100644 index 0638612..0000000 --- a/source/apps-extra/fortune-mod/FrugalBuild +++ /dev/null @@ -1,38 +0,0 @@ -# Compiling Time: 0.02 SBU -# Maintainer: Priyank Gosalia - -pkgname=fortune-mod -pkgver=1.99.1 -pkgrel=1 -pkgdesc="The notorious Fortune Cookie Program from BSD games" -url="http://www.redellipse.net/code/fortune" -depends=('recode') -groups=('apps-extra') -archs=('i686' 'x86_64') -up2date="lynx -dump http://www.redellipse.net/code/downloads/ | grep $pkgname | Flasttar" -source=(http://www.redellipse.net/code/downloads/$pkgname-$pkgver.tar.gz \ - fortune-mod_all-fix.patch0 fortune-mod-1.99.1.patch) -sha1sums=('53aa354025094d7c0e544bb1662714815fa63918' \ - '666864d9053f617b3724b301a2f80c1c3702ea6c' \ - '4733ec91baf87a2d96a285287e6943d0778861ea') - -build() { - Fcd - Fpatchall - make REGEXDEFS='-DHAVE_REGEX_H -DPOSIX_REGEX -DHAVE_STDBOOL' \ - COOKIEDIR=/usr/share/fortune \ - LOCALDIR=/usr/local/share/fortune || return 1 - - make COOKIEDIR=/usr/share/fortune fortune/fortune.man || return 1 - - make FORTDIR=$Fdestdir/usr/bin \ - COOKIEDIR=$Fdestdir/usr/share/fortune \ - BINDIR=$Fdestdir/usr/bin \ - BINMANDIR=$Fdestdir/usr/man/man1 \ - FORTMANDIR=$Fdestdir/usr/man/man6 install - - Frm usr/share/fortune/*.u8 - Frm usr/share/fortune/off/*.u8 -} - -# optimization OK diff --git a/source/apps-extra/fortune-mod/fortune-mod-1.99.1.patch b/source/apps-extra/fortune-mod/fortune-mod-1.99.1.patch deleted file mode 100644 index d9b27fb..0000000 --- a/source/apps-extra/fortune-mod/fortune-mod-1.99.1.patch +++ /dev/null @@ -1,99 +0,0 @@ ---- fortune-mod-1.99.1/datfiles/Makefile -+++ fortune-mod-1.99.1/datfiles/Makefile -@@ -58,7 +58,7 @@ - if [ $(WEB) = 1 ] ; then cd html && $(MAKE) install ; fi - for i in $(COOKIES) ; do \ - install -m 0644 $$i $$i.dat $(COOKIEDIR) || exit $? ; \ -- cp -d $$i.u8 $(COOKIEDIR) ; \ -+ cp -P $$i.u8 $(COOKIEDIR) ; \ - done - - clean: ---- fortune-mod-1.99.1/datfiles/off/Makefile -+++ fortune-mod-1.99.1/datfiles/off/Makefile -@@ -38,7 +38,7 @@ - install -m 0755 -d $(OCOOKIEDIR) - for i in $(OCOOKIES) ; \ - do install -m 0644 $$i $$i.dat $(OCOOKIEDIR) || exit $$? ; \ -- cp -d $$i.u8 $(OCOOKIEDIR) ; \ -+ cp -P $$i.u8 $(OCOOKIEDIR) ; \ - done - - clean: ---- fortune-mod-1.99.1/Makefile -+++ fortune-mod-1.99.1/Makefile -@@ -65,8 +65,7 @@ - RECODELIBS=-lrecode - - DEFINES=-DFORTDIR="\"$(COOKIEDIR)\"" -DOFFDIR="\"$(OCOOKIEDIR)\"" -DLOCFORTDIR="\"$(LOCALDIR)\"" -DLOCOFFDIR="\"$(LOCALODIR)\"" --CFLAGS=-O2 $(DEFINES) -Wall -fomit-frame-pointer -pipe -fsigned-char --LDFLAGS=-s -+CFLAGS += $(DEFINES) -fsigned-char - - # The above flags are used by default; the debug flags are used when make - # is called with a debug target, such as 'make debug' ---- fortune-mod-1.99.1/fortune/fortune.c -+++ fortune-mod-1.99.1/fortune/fortune.c -@@ -97,7 +97,7 @@ - #endif /* killing warnings */ - - #define PROGRAM_NAME "fortune-mod" --#define PROGRAM_VERSION "9708" -+#define PROGRAM_VERSION "1.99.1" - - #ifdef HAVE_STDBOOL_H - #include -@@ -256,6 +256,7 @@ - - int add_dir(register FILEDESC *); - -+const char *program_name; - char *program_version(void) - { - static char buf[BUFSIZ]; -@@ -1675,14 +1675,17 @@ - char *ctype, *crequest; - getargs(ac, av); - -+ program_name = (char *const) av[0]; - outer = recode_new_outer(true); - request = recode_new_request (outer); - - setlocale(LC_ALL,""); - ctype = nl_langinfo(CODESET); -- if(strcmp(ctype,"ANSI_X3.4-1968") == 0) -- ctype="ISO-8859-1"; -- -+ if (!ctype || !*ctype) -+ ctype="C"; /* revert to C if no valid envvars! */ -+ else -+ if(strcmp(ctype,"ANSI_X3.4-1968") == 0) -+ ctype="ISO-8859-1"; - crequest = malloc(strlen(ctype) + 7 + 1); - sprintf(crequest, "UTF-8..%s", ctype); - recode_scan_request (request, crequest); ---- fortune-mod-1.99.1/util/rot.c -+++ fortune-mod-1.99.1/util/rot.c -@@ -5,10 +5,11 @@ - - #include - #include -+#include - - int main(void) - { -- char a, b; -+ short int a, b; - - while ((a = getchar()) != EOF) - { ---- fortune-mod-1.99.1/util/unstr.c -+++ fortune-mod-1.99.1/util/unstr.c -@@ -96,6 +96,7 @@ - #include - #include - -+#include - #ifndef MAXPATHLEN - #define MAXPATHLEN 1024 - #endif /* MAXPATHLEN */ diff --git a/source/apps-extra/fortune-mod/fortune-mod_all-fix.patch0 b/source/apps-extra/fortune-mod/fortune-mod_all-fix.patch0 deleted file mode 100644 index 4c5692e..0000000 --- a/source/apps-extra/fortune-mod/fortune-mod_all-fix.patch0 +++ /dev/null @@ -1,21 +0,0 @@ ---- fortune/fortune.c 2006-03-11 15:33:14.000000000 +0100 -+++ fortune/fortune.c 2006-03-11 15:43:16.000000000 +0100 -@@ -974,7 +974,7 @@ - if (!ret) - ret=add_file(percent, fullpathname, NULL, &File_list, - &File_tail, NULL); -- if ( (!ret && fullpathname != locpathname) || strcmp(sp, "all") == 0 ) -+ if (!ret && strncmp(fullpathname, locpathname, sizeof(fullpathname))) - ret=add_file(percent, locpathname, NULL, &File_list, - &File_tail, NULL); - -@@ -985,7 +985,8 @@ - } - if (!ret) - return FALSE; -- -+ if (strncmp(fullpathname, locpathname, sizeof(fullpathname)) && strcmp(sp, "all") == 0) -+ add_file(percent, locpathname, NULL, &File_list, &File_tail, NULL); - } - else - if (!add_file(percent, fullpathname, NULL, &File_list, diff --git a/source/apps/fortune-mod/FrugalBuild b/source/apps/fortune-mod/FrugalBuild new file mode 100644 index 0000000..6d465f9 --- /dev/null +++ b/source/apps/fortune-mod/FrugalBuild @@ -0,0 +1,38 @@ +# Compiling Time: 0.02 SBU +# Maintainer: Priyank Gosalia + +pkgname=fortune-mod +pkgver=1.99.1 +pkgrel=1 +pkgdesc="The notorious Fortune Cookie Program from BSD games" +url="http://www.redellipse.net/code/fortune" +depends=('recode') +groups=('apps') +archs=('i686' 'x86_64') +up2date="lynx -dump http://www.redellipse.net/code/downloads/ | grep $pkgname | Flasttar" +source=(http://www.redellipse.net/code/downloads/$pkgname-$pkgver.tar.gz \ + fortune-mod_all-fix.patch0 fortune-mod-1.99.1.patch) +sha1sums=('53aa354025094d7c0e544bb1662714815fa63918' \ + '666864d9053f617b3724b301a2f80c1c3702ea6c' \ + '4733ec91baf87a2d96a285287e6943d0778861ea') + +build() { + Fcd + Fpatchall + make REGEXDEFS='-DHAVE_REGEX_H -DPOSIX_REGEX -DHAVE_STDBOOL' \ + COOKIEDIR=/usr/share/fortune \ + LOCALDIR=/usr/local/share/fortune || return 1 + + make COOKIEDIR=/usr/share/fortune fortune/fortune.man || return 1 + + make FORTDIR=$Fdestdir/usr/bin \ + COOKIEDIR=$Fdestdir/usr/share/fortune \ + BINDIR=$Fdestdir/usr/bin \ + BINMANDIR=$Fdestdir/usr/man/man1 \ + FORTMANDIR=$Fdestdir/usr/man/man6 install + + Frm usr/share/fortune/*.u8 + Frm usr/share/fortune/off/*.u8 +} + +# optimization OK diff --git a/source/apps/fortune-mod/fortune-mod-1.99.1.patch b/source/apps/fortune-mod/fortune-mod-1.99.1.patch new file mode 100644 index 0000000..d9b27fb --- /dev/null +++ b/source/apps/fortune-mod/fortune-mod-1.99.1.patch @@ -0,0 +1,99 @@ +--- fortune-mod-1.99.1/datfiles/Makefile ++++ fortune-mod-1.99.1/datfiles/Makefile +@@ -58,7 +58,7 @@ + if [ $(WEB) = 1 ] ; then cd html && $(MAKE) install ; fi + for i in $(COOKIES) ; do \ + install -m 0644 $$i $$i.dat $(COOKIEDIR) || exit $? ; \ +- cp -d $$i.u8 $(COOKIEDIR) ; \ ++ cp -P $$i.u8 $(COOKIEDIR) ; \ + done + + clean: +--- fortune-mod-1.99.1/datfiles/off/Makefile ++++ fortune-mod-1.99.1/datfiles/off/Makefile +@@ -38,7 +38,7 @@ + install -m 0755 -d $(OCOOKIEDIR) + for i in $(OCOOKIES) ; \ + do install -m 0644 $$i $$i.dat $(OCOOKIEDIR) || exit $$? ; \ +- cp -d $$i.u8 $(OCOOKIEDIR) ; \ ++ cp -P $$i.u8 $(OCOOKIEDIR) ; \ + done + + clean: +--- fortune-mod-1.99.1/Makefile ++++ fortune-mod-1.99.1/Makefile +@@ -65,8 +65,7 @@ + RECODELIBS=-lrecode + + DEFINES=-DFORTDIR="\"$(COOKIEDIR)\"" -DOFFDIR="\"$(OCOOKIEDIR)\"" -DLOCFORTDIR="\"$(LOCALDIR)\"" -DLOCOFFDIR="\"$(LOCALODIR)\"" +-CFLAGS=-O2 $(DEFINES) -Wall -fomit-frame-pointer -pipe -fsigned-char +-LDFLAGS=-s ++CFLAGS += $(DEFINES) -fsigned-char + + # The above flags are used by default; the debug flags are used when make + # is called with a debug target, such as 'make debug' +--- fortune-mod-1.99.1/fortune/fortune.c ++++ fortune-mod-1.99.1/fortune/fortune.c +@@ -97,7 +97,7 @@ + #endif /* killing warnings */ + + #define PROGRAM_NAME "fortune-mod" +-#define PROGRAM_VERSION "9708" ++#define PROGRAM_VERSION "1.99.1" + + #ifdef HAVE_STDBOOL_H + #include +@@ -256,6 +256,7 @@ + + int add_dir(register FILEDESC *); + ++const char *program_name; + char *program_version(void) + { + static char buf[BUFSIZ]; +@@ -1675,14 +1675,17 @@ + char *ctype, *crequest; + getargs(ac, av); + ++ program_name = (char *const) av[0]; + outer = recode_new_outer(true); + request = recode_new_request (outer); + + setlocale(LC_ALL,""); + ctype = nl_langinfo(CODESET); +- if(strcmp(ctype,"ANSI_X3.4-1968") == 0) +- ctype="ISO-8859-1"; +- ++ if (!ctype || !*ctype) ++ ctype="C"; /* revert to C if no valid envvars! */ ++ else ++ if(strcmp(ctype,"ANSI_X3.4-1968") == 0) ++ ctype="ISO-8859-1"; + crequest = malloc(strlen(ctype) + 7 + 1); + sprintf(crequest, "UTF-8..%s", ctype); + recode_scan_request (request, crequest); +--- fortune-mod-1.99.1/util/rot.c ++++ fortune-mod-1.99.1/util/rot.c +@@ -5,10 +5,11 @@ + + #include + #include ++#include + + int main(void) + { +- char a, b; ++ short int a, b; + + while ((a = getchar()) != EOF) + { +--- fortune-mod-1.99.1/util/unstr.c ++++ fortune-mod-1.99.1/util/unstr.c +@@ -96,6 +96,7 @@ + #include + #include + ++#include + #ifndef MAXPATHLEN + #define MAXPATHLEN 1024 + #endif /* MAXPATHLEN */ diff --git a/source/apps/fortune-mod/fortune-mod_all-fix.patch0 b/source/apps/fortune-mod/fortune-mod_all-fix.patch0 new file mode 100644 index 0000000..4c5692e --- /dev/null +++ b/source/apps/fortune-mod/fortune-mod_all-fix.patch0 @@ -0,0 +1,21 @@ +--- fortune/fortune.c 2006-03-11 15:33:14.000000000 +0100 ++++ fortune/fortune.c 2006-03-11 15:43:16.000000000 +0100 +@@ -974,7 +974,7 @@ + if (!ret) + ret=add_file(percent, fullpathname, NULL, &File_list, + &File_tail, NULL); +- if ( (!ret && fullpathname != locpathname) || strcmp(sp, "all") == 0 ) ++ if (!ret && strncmp(fullpathname, locpathname, sizeof(fullpathname))) + ret=add_file(percent, locpathname, NULL, &File_list, + &File_tail, NULL); + +@@ -985,7 +985,8 @@ + } + if (!ret) + return FALSE; +- ++ if (strncmp(fullpathname, locpathname, sizeof(fullpathname)) && strcmp(sp, "all") == 0) ++ add_file(percent, locpathname, NULL, &File_list, &File_tail, NULL); + } + else + if (!add_file(percent, fullpathname, NULL, &File_list, From priyank at frugalware.org Thu Sep 20 21:47:16 2007 From: priyank at frugalware.org (Priyank) Date: Thu Sep 20 21:47:19 2007 Subject: [Frugalware-git] fw-control-center: gnetconfig-interface: don't write a gateway line if the gateway entry is blank Message-ID: <20070920194716.81CBA1678013@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=fw-control-center.git;a=commitdiff;h=f192face76f860eeb689bd850f755782ce21282c commit f192face76f860eeb689bd850f755782ce21282c Author: Priyank Date: Fri Sep 21 01:14:06 2007 +0530 gnetconfig-interface: don't write a gateway line if the gateway entry is blank diff --git a/gnetconfig/src/gnetconfig-interface.c b/gnetconfig/src/gnetconfig-interface.c index f9626ba..2c654ed 100644 --- a/gnetconfig/src/gnetconfig-interface.c +++ b/gnetconfig/src/gnetconfig-interface.c @@ -1353,7 +1353,10 @@ cb_gn_save_interface_clicked (GtkButton *button, gpointer data) interface->options->data = g_strdup_printf ("%s netmask %s", ipaddr, netmask); - sprintf (interface->gateway, "default gw %s", gateway); + if (strlen(gateway)) + sprintf (interface->gateway, "default gw %s", gateway); + else + *interface->gateway = 0; type = GN_STATIC; break; From priyank at frugalware.org Thu Sep 20 22:20:46 2007 From: priyank at frugalware.org (Priyank) Date: Thu Sep 20 22:20:48 2007 Subject: [Frugalware-git] fw-control-center: gnetconfig-mcs-plugin: don't use gnetconfig's .po files. it should use gnetconfig-mcs-plugin.po while generating tarball Message-ID: <20070920202046.052471678014@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=fw-control-center.git;a=commitdiff;h=af48b9684ae3bc8625abd8f9002b323bfe33433b commit af48b9684ae3bc8625abd8f9002b323bfe33433b Author: Priyank Date: Fri Sep 21 01:47:27 2007 +0530 gnetconfig-mcs-plugin: don't use gnetconfig's .po files. it should use gnetconfig-mcs-plugin.po while generating tarball diff --git a/gnetconfig-mcs-plugin/autogen.sh b/gnetconfig-mcs-plugin/autogen.sh index 70b2e7f..0d68a6b 100755 --- a/gnetconfig-mcs-plugin/autogen.sh +++ b/gnetconfig-mcs-plugin/autogen.sh @@ -18,8 +18,8 @@ import_pootle() : > po/LINGUAS for i in $(/bin/ls $po_dir/fwcontrolcenter) do - [ -e $po_dir/fwcontrolcenter/$i/gnetconfig.po ] || continue - cp $po_dir/fwcontrolcenter/$i/gnetconfig.po po/$i.po + [ -e $po_dir/fwcontrolcenter/$i/gnetconfig-mcs-plugin.po ] || continue + cp $po_dir/fwcontrolcenter/$i/gnetconfig-mcs-plugin.po po/$i.po if msgfmt -c --statistics -o po/$i.gmo po/$i.po; then echo $i >> po/LINGUAS else From priyank at frugalware.org Thu Sep 20 22:22:19 2007 From: priyank at frugalware.org (Priyank) Date: Thu Sep 20 22:22:21 2007 Subject: [Frugalware-git] frugalware-current: maxima-5.13.0-1-i686 Message-ID: <20070920202219.D3A6D1678017@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=e232bb05274fa233cadc5c32f16fb536405be0d8 commit e232bb05274fa233cadc5c32f16fb536405be0d8 Author: Priyank Date: Fri Sep 21 01:37:02 2007 +0530 maxima-5.13.0-1-i686 * Version bump diff --git a/source/xapps-extra/maxima/FrugalBuild b/source/xapps-extra/maxima/FrugalBuild index 9f5e400..187068c 100644 --- a/source/xapps-extra/maxima/FrugalBuild +++ b/source/xapps-extra/maxima/FrugalBuild @@ -1,9 +1,9 @@ -# Compiling Time: 0.54 SBU +# Compiling Time: 0.26 SBU # Maintainer: Priyank Gosalia # Contributor: Rohan Dhruva pkgname=maxima -pkgver=5.12.0 +pkgver=5.13.0 pkgrel=1 pkgdesc="A sophisticated computer algebra system." Finclude sourceforge @@ -14,9 +14,9 @@ groups=('xapps-extra') archs=('i686' '!x86_64') up2date="lynx -dump http://sourceforge.net/project/showfiles.php?group_id=4933 | grep -m1 tar.gz | sed 's/.*a-\(.*\).t.*/\1/'" source=($source maxima.desktop maxima.png README.Frugalware) -sha1sums=('0b96c36fe603bb429504b99b2670eeb0b2fc7c71'\ - '07b089e468510e7061f64d1a0ac29faea3a58f76'\ - 'c1ec0d97d8479c7ad0f4d13c640f5fef402eff35'\ +sha1sums=('caac53226fa251a22b577c2f76dc171913e71323' \ + '07b089e468510e7061f64d1a0ac29faea3a58f76' \ + 'c1ec0d97d8479c7ad0f4d13c640f5fef402eff35' \ '7170d07e7b81b7895a0e6d593f974fe5849acf8b') build() From crazy at frugalware.org Thu Sep 20 23:01:17 2007 From: crazy at frugalware.org (crazy) Date: Thu Sep 20 23:01:24 2007 Subject: [Frugalware-git] frugalware-current: twolame-0.3.10-1-i686 Message-ID: <20070920210117.014801678013@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=3cf5c14121072913f62df569b7dfe8f474c73a82 commit 3cf5c14121072913f62df569b7dfe8f474c73a82 Author: crazy Date: Thu Sep 20 22:56:35 2007 +0200 twolame-0.3.10-1-i686 * moved to main for mpeg4ip diff --git a/source/multimedia-extra/twolame/FrugalBuild b/source/multimedia-extra/twolame/FrugalBuild deleted file mode 100644 index fe9c853..0000000 --- a/source/multimedia-extra/twolame/FrugalBuild +++ /dev/null @@ -1,15 +0,0 @@ -# Compiling Time: 0.20 SBU -# Maintainer: crazy - -pkgname=twolame -pkgver=0.3.10 -pkgrel=1 -pkgdesc="An optimised MPEG Audio Layer 2 (MP2) encoder based on tooLAME and LAME." -Finclude sourceforge -url="http://www.twolame.org/" -depends=('flac>=1.1.3' 'libsndfile') -groups=('multimedia-extra') -archs=('i686' 'x86_64') - -sha1sums=('f2175e7cac04bf7bfea0714e8e2eadbc947db129') -# optimization OK diff --git a/source/multimedia/twolame/FrugalBuild b/source/multimedia/twolame/FrugalBuild new file mode 100644 index 0000000..9daef0e --- /dev/null +++ b/source/multimedia/twolame/FrugalBuild @@ -0,0 +1,15 @@ +# Compiling Time: 0.20 SBU +# Maintainer: crazy + +pkgname=twolame +pkgver=0.3.10 +pkgrel=1 +pkgdesc="An optimised MPEG Audio Layer 2 (MP2) encoder based on tooLAME and LAME." +Finclude sourceforge +url="http://www.twolame.org/" +depends=('flac>=1.1.3' 'libsndfile') +groups=('multimedia') +archs=('i686' 'x86_64') + +sha1sums=('f2175e7cac04bf7bfea0714e8e2eadbc947db129') +# optimization OK From crazy at frugalware.org Thu Sep 20 23:10:12 2007 From: crazy at frugalware.org (crazy) Date: Thu Sep 20 23:10:14 2007 Subject: [Frugalware-git] frugalware-current: libmp4v2-1.6-1-i686 Message-ID: <20070920211012.2ED931678013@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=4cec6a457f8aeb95d7c90975d53319c918eb41bc commit 4cec6a457f8aeb95d7c90975d53319c918eb41bc Author: crazy Date: Thu Sep 20 23:05:30 2007 +0200 libmp4v2-1.6-1-i686 * Version bump * removed old patch , added 2 new patches * added some hacks in FB to allow running autoreconf diff --git a/source/multimedia/libmp4v2/FrugalBuild b/source/multimedia/libmp4v2/FrugalBuild index eea2588..bc14e70 100644 --- a/source/multimedia/libmp4v2/FrugalBuild +++ b/source/multimedia/libmp4v2/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: crazy pkgname=libmp4v2 -pkgver=1.5.0.1 +pkgver=1.6 pkgrel=1 pkgdesc="A library for working with files using the mp4 container format. (extracted from mpeg4ip)." _F_sourceforge_dirname="mpeg4ip" @@ -10,19 +10,25 @@ _F_sourceforge_name="mpeg4ip" Finclude sourceforge depends=('libstdc++') url="http://mpeg4ip.sourceforge.net/" -source=($source $pkgname.patch) +source=($source compile.patch autoreconf.patch) groups=('multimedia') archs=('i686' 'x86_64') -sha1sums=('1271de695ed65284d9c39aa91bf26c5494603fd3' \ - 'f24357ce9a3055b9f5d5431be1f187fa88cc58d4') +sha1sums=('2d0d42a00c161f5152f8f2fd33ef192209ffb8c4' \ + '4325daa5f3ffa38c61f74d438a0221e2a1909ac7' \ + '40b3370027cace5e3cfecfbf15798bf0ade5f036') build() { Fcd mpeg4ip-$pkgver - ## brrr + ## hack to allow autoreconf touch bootstrapped || Fdie - Fpatchall + touch lib/SDLAudio/{NEWS,AUTHORS,ChangeLog} || Fdie + touch common/video/iso-mpeg4/{NEWS,AUTHORS,ChangeLog} || Fdie + Fsed 'AM_PATH_GTK_2_0' '' configure.in + Fsed 'AM_PATH_ALSA' '' configure.in libtoolize --copy --force || Fdie + Fpatchall + Fautoreconf export CXXFLAGS="${CXXFLAGS} -fno-strict-aliasing" Fconf \ --disable-srtp \ @@ -39,7 +45,7 @@ build() --disable-mp3lame \ --disable-faac \ --disable-ffmpeg - cd lib/mp4v2 + cd lib/mp4v2 || Fdie make || Fdie Fmakeinstall diff --git a/source/multimedia/libmp4v2/autoreconf.patch b/source/multimedia/libmp4v2/autoreconf.patch new file mode 100644 index 0000000..9c3e8d4 --- /dev/null +++ b/source/multimedia/libmp4v2/autoreconf.patch @@ -0,0 +1,11 @@ +diff -Nuapr mpeg4ip-1.6/lib/SDLAudio/configure.in mpeg4ip-1.6-p/lib/SDLAudio/configure.in +--- mpeg4ip-1.6/lib/SDLAudio/configure.in 2005-01-13 19:21:29.000000000 +0100 ++++ mpeg4ip-1.6-p/lib/SDLAudio/configure.in 2007-09-20 14:57:51.000000000 +0200 +@@ -47,6 +47,7 @@ dnl Check for tools + + AC_LIBTOOL_WIN32_DLL + AM_PROG_LIBTOOL ++AM_PROG_AS + AC_PROG_MAKE_SET + AC_PROG_CC + AC_C_INLINE diff --git a/source/multimedia/libmp4v2/compile.patch b/source/multimedia/libmp4v2/compile.patch new file mode 100644 index 0000000..772dd2b --- /dev/null +++ b/source/multimedia/libmp4v2/compile.patch @@ -0,0 +1,22 @@ +diff -Nuapr mpeg4ip-1.6/lib/mp4v2/Makefile.am mpeg4ip-1.6-p/lib/mp4v2/Makefile.am +--- mpeg4ip-1.6/lib/mp4v2/Makefile.am 2007-07-24 22:32:28.000000000 +0200 ++++ mpeg4ip-1.6-p/lib/mp4v2/Makefile.am 2007-09-20 15:07:34.000000000 +0200 +@@ -1,4 +1,4 @@ +-SUBDIRS = . test util ++SUBDIRS = . + + INCLUDES = -I$(top_srcdir)/include + +@@ -6,7 +6,10 @@ AM_CXXFLAGS = @BILLS_CPPWARNINGS@ + + lib_LTLIBRARIES = libmp4v2.la + +-include_HEADERS = mp4.h ++include_HEADERS = mp4.h \ ++ $(top_srcdir)/include/mpeg4ip.h \ ++ $(top_srcdir)/include/mpeg4ip_version.h \ ++ $(top_srcdir)/mpeg4ip_config.h + + libmp4v2_la_SOURCES = \ + 3gp.cpp \ + diff --git a/source/multimedia/libmp4v2/libmp4v2.patch b/source/multimedia/libmp4v2/libmp4v2.patch deleted file mode 100644 index 1d9c70c..0000000 --- a/source/multimedia/libmp4v2/libmp4v2.patch +++ /dev/null @@ -1,35 +0,0 @@ -diff -Naurp mpeg4ip-1.5.0.1/lib/mp4v2/Makefile.am mpeg4ip-1.5.0.1-p/lib/mp4v2/Makefile.am ---- mpeg4ip-1.5.0.1/lib/mp4v2/Makefile.am 2006-05-11 20:11:52.000000000 +0200 -+++ mpeg4ip-1.5.0.1-p/lib/mp4v2/Makefile.am 2006-11-19 12:35:11.000000000 +0100 -@@ -1,4 +1,4 @@ --SUBDIRS = . test util -+SUBDIRS = . - - INCLUDES = -I$(top_srcdir)/include - -@@ -6,7 +6,7 @@ AM_CXXFLAGS = @BILLS_CPPWARNINGS@ - - lib_LTLIBRARIES = libmp4v2.la - --include_HEADERS = mp4.h -+include_HEADERS = mp4.h $(top_srcdir)/include/mpeg4ip.h $(top_srcdir)/include/mpeg4ip_version.h $(top_srcdir)/mpeg4ip_config.h - - libmp4v2_la_SOURCES = \ - 3gp.cpp \ -diff -Naurp mpeg4ip-1.5.0.1/lib/mp4v2/Makefile.in mpeg4ip-1.5.0.1-p/lib/mp4v2/Makefile.in ---- mpeg4ip-1.5.0.1/lib/mp4v2/Makefile.in 2006-06-08 21:17:29.000000000 +0200 -+++ mpeg4ip-1.5.0.1-p/lib/mp4v2/Makefile.in 2006-11-19 12:37:33.000000000 +0100 -@@ -284,11 +284,11 @@ target_alias = @target_alias@ - target_cpu = @target_cpu@ - target_os = @target_os@ - target_vendor = @target_vendor@ --SUBDIRS = . test util -+SUBDIRS = . - INCLUDES = -I$(top_srcdir)/include - AM_CXXFLAGS = @BILLS_CPPWARNINGS@ - lib_LTLIBRARIES = libmp4v2.la --include_HEADERS = mp4.h -+include_HEADERS = mp4.h $(top_srcdir)/include/mpeg4ip.h $(top_srcdir)/include/mpeg4ip_version.h $(top_srcdir)/mpeg4ip_config.h - libmp4v2_la_SOURCES = \ - 3gp.cpp \ - atom_amr.cpp \ From crazy at frugalware.org Thu Sep 20 23:37:08 2007 From: crazy at frugalware.org (crazy) Date: Thu Sep 20 23:37:10 2007 Subject: [Frugalware-git] frugalware-current: mpeg4ip-1.6-1-i686 Message-ID: <20070920213708.CBFE21678013@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=45b4db0c903558bbfdee8cf4a2a2dd9b871647fe commit 45b4db0c903558bbfdee8cf4a2a2dd9b871647fe Author: crazy Date: Thu Sep 20 23:31:23 2007 +0200 mpeg4ip-1.6-1-i686 * Version bump * reworked the whole FB * added 4 new patches * utils have now an own subpackage * added x86_64 to subarch as well , I hope does compile diff --git a/source/multimedia/mpeg4ip/FrugalBuild b/source/multimedia/mpeg4ip/FrugalBuild index 807be2f..2845961 100644 --- a/source/multimedia/mpeg4ip/FrugalBuild +++ b/source/multimedia/mpeg4ip/FrugalBuild @@ -2,42 +2,58 @@ # Maintainer: crazy pkgname=mpeg4ip -pkgver=1.5.0.1 -pkgrel=2 +pkgver=1.6 +pkgrel=1 pkgdesc="mpeg4ip provides an end-to-end system to explore streaming multimedia" Finclude sourceforge depends=("libmp4v2=$pkgver") makedepends=('id3lib' 'sdl' 'gtk+2' 'faad2' 'mpeg2dec' 'x264>=20070421' \ - 'freetype2' 'libice' 'ffmpeg>=20070422' 'nas' 'alsa-lib' 'srtp') + 'freetype2' 'libice' 'ffmpeg>=20070422' 'nas' \ + 'alsa-lib' 'srtp' 'twolame') groups=('multimedia') options=('scriptlet') archs=('i686' 'x86_64') -source=($source mpeg4ip-fixes.patch ffmpeg.patch) -sha1sums=('1271de695ed65284d9c39aa91bf26c5494603fd3'\ - '2dbb820a6c8032861484686060861be05fc5f201'\ - 'de3a2ef12a3b2d57c08a8ad25c3a21310c6ed2d5') +source=($source autoreconf.patch \ + type_basic.cpp_compile.patch alsa.patch \ + build-with-werror-is-a-configure-option.patch) +sha1sums=('2d0d42a00c161f5152f8f2fd33ef192209ffb8c4' \ + '40b3370027cace5e3cfecfbf15798bf0ade5f036' \ + '9657405dfe23cd8baeb4ea419cd5f036b03fa8c8' \ + 'ec4cf44483d9e92afb97e7eb0866da5813577464' \ + 'a2f18f62986a7f19acce4c788e8ce30d3c3e0691') -subpkgs=("$pkgname-player" "$pkgname-server") -subdescs=('mpeg4ip player' 'mpeg4ip server') -## kind I need rework this -subdepends=("$pkgname=$pkgver gtk+2 sdl ffmpeg>=20070422 mpeg2dec id3lib alsa-lib faad2 libmad" "$pkgname=$pkgver $pkgname-player=$pkgver") -subgroups=('xmultimedia' 'xmultimedia') -subarchs=('i686' 'i686') +subpkgs=("$pkgname-player" "$pkgname-server" "$pkgname-utils") +subdescs=('mpeg4ip player' 'mpeg4ip server' 'mpeg4ip utils') +subdepends=("$pkgname=$pkgver gtk+2 sdl ffmpeg>=20070422 mpeg2dec id3lib alsa-lib faad2 libmad" \ + "$pkgname=$pkgver $pkgname-player=$pkgver twolame" "$pkgname=$pkgver sdl") +subgroups=('xmultimedia' 'xmultimedia' 'xmultimedia') +subarchs=('i686 x86_64' 'i686 x86_64' 'i686 x86_64') build() { Fcd + ## hack to allow autoreconf + touch bootstrapped || Fdie + touch lib/SDLAudio/{NEWS,AUTHORS,ChangeLog} || Fdie + touch common/video/iso-mpeg4/{NEWS,AUTHORS,ChangeLog} || Fdie + libtoolize --copy --force || Fdie Fpatchall - autoconf || Fdie + Fautoreconf export CXXFLAGS="${CXXFLAGS} -fno-strict-aliasing" - [ "$CARCH" == "x86_64" ] && CXXFLAGS="$CXXFLAGS -fPIC" - ./bootstrap \ - $Fconfopts \ + export CFLAGS="${CFLAGS} -fno-strict-aliasing" + if [ "$CARCH" == "x86_64" ]; then + CXXFLAGS="$CXXFLAGS -fPIC" + CFLAGS="$CFLAGS -fPIC" + fi + + Fconf \ --enable-ipv6 \ --disable-dependency-tracking \ - --enable-warns-as-err=no \ + --disable-warns-as-err \ --enable-mp4live=yes \ - --enable-mp4live-alsa=no \ + --enable-alsa=yes \ + --enable-shared-alsa=yes \ + --enable-mp4live-alsa \ --enable-server=yes \ --enable-player=yes \ --enable-srtp \ @@ -51,37 +67,26 @@ build() --enable-mad=yes \ --enable-mpeg2dec=yes \ --with-x - ## :FIXME: --enable-mp4live-alsa is broken :| - ## kill Werror shit and fix the Makefile's - Fsed '-Werror' '' common/video/iso-mpeg4/src/Makefile + make || Fdie Fmakeinstall + ## this is already in libmp4v2 package Frm usr/lib/libmp4v2.* Frm usr/include/{mp4.h,mpeg4ip.h,mpeg4ip_config.h,mpeg4ip_version.h} - ## player - for incsplit in codec_plugin.h h264_sdp.h mpeg4_audio_config.h mpeg4_sdp.h rtp_plugin.h text_plugin.h - do - Fsplit $pkgname-player usr/include/$incsplit - done - for binsplit in gmp4player mp4player sdl_pcm_play yuvdump - do - Fsplit $pkgname-player usr/bin/$binsplit - done - Fsplit $pkgname-player usr/lib/libh264util.* - Fsplit $pkgname-player usr/lib/libhttp.* - Fsplit $pkgname-player usr/lib/libmp4util.* - Fsplit $pkgname-player usr/lib/libmpeg4ipSDL* - Fsplit $pkgname-player usr/lib/libmpeg4ip_celp.* - Fsplit $pkgname-player usr/lib/libmpeg4ip_celpbs.* - Fsplit $pkgname-player usr/lib/libmpeg4ip_faad.* - Fsplit $pkgname-player usr/lib/libmpeg4ip_mpeg4_iso.* + + ## Player Fsplit $pkgname-player usr/lib/mp4player_plugin - ## server - for i in avi2raw avidump lboxcrop mp4creator mp4live rgb2yuv - do - Fsplit $pkgname-server usr/bin/$i - done + Fsplit $pkgname-player usr/lib/libmpeg4ip_{celp,celpbs,faad}.* + Fsplit $pkgname-player usr/lib/{libmp4util,libhttp}.* + Fsplit $pkgname-player usr/include/{h264_sdp,mpeg4_audio_config,codec_plugin,mpeg4_sdp,rtp_plugin,text_plugin}.h + Fsplit $pkgname-player usr/bin/{mp4player,gmp4player} + + ## Server + Fsplit $pkgname-server usr/bin/{avi2raw,avidump,lboxcrop,mp4creator,mp4live,rgb2yuv} + + ## Utils + Fsplit $pkgname-utils usr/bin/{h264_parse,mpeg2video_parse,mpeg4vol,sdl_pcm_play,yuvdump,mpeg2t_dump} } # optimization OK diff --git a/source/multimedia/mpeg4ip/alsa.patch b/source/multimedia/mpeg4ip/alsa.patch new file mode 100644 index 0000000..8cb7e2b --- /dev/null +++ b/source/multimedia/mpeg4ip/alsa.patch @@ -0,0 +1,26 @@ +diff -Naurp mpeg4ip-1.6/configure.in mpeg4ip-1.6-p/configure.in +--- mpeg4ip-1.6/configure.in 2007-09-18 22:43:13.000000000 +0200 ++++ mpeg4ip-1.6-p/configure.in 2007-09-20 18:25:59.000000000 +0200 +@@ -415,8 +415,8 @@ if test x$enable_mp4live = xyes; then + AM_PATH_ALSA(0.9.0, [have_alsa=yes], [have_alsa=no]) + if test x$have_alsa = xyes; then + AC_CHECK_FUNCS(snd_pcm_hw_params_set_rate_resample) +- dnl - not needed AC_SUBST(ALSA_CFLAGS) - gotten by SDL_CFLAGS +- dnl - not needed AC_SUBST(ALSA_LIBS) - gotten by SDL_LIBS ++ AC_SUBST(ALSA_CFLAGS) ++ AC_SUBST(ALSA_LIBS) + AC_DEFINE(HAVE_ALSA, [1], [have alsa enabled for mp4live]) + fi + CFLAGS="$alsa_save_CFLAGS" +diff -Naurp mpeg4ip-1.6/server/mp4live/Makefile.am mpeg4ip-1.6-p/server/mp4live/Makefile.am +--- mpeg4ip-1.6/server/mp4live/Makefile.am 2007-01-26 20:50:00.000000000 +0100 ++++ mpeg4ip-1.6-p/server/mp4live/Makefile.am 2007-09-20 18:27:05.000000000 +0200 +@@ -176,7 +176,7 @@ mp4live_LDADD = \ + $(top_builddir)/lib/ffmpeg/libmpeg4ip_ffmpeg.la \ + @SRTPLIB@ \ + -lpthread \ +- @SDL_LIBS@ $(GUILIBS) @FFMPEG_LIB@ @LIBVORBIS_LIB@ $(XVID_LIB) \ ++ @SDL_LIBS@ @ALSA_LIBS@ $(GUILIBS) @FFMPEG_LIB@ @LIBVORBIS_LIB@ $(XVID_LIB) \ + @X264_LIB@ + + EXTRA_DIST = $(ed2) video_v4l_source.cpp diff --git a/source/multimedia/mpeg4ip/autoreconf.patch b/source/multimedia/mpeg4ip/autoreconf.patch new file mode 100644 index 0000000..9c3e8d4 --- /dev/null +++ b/source/multimedia/mpeg4ip/autoreconf.patch @@ -0,0 +1,11 @@ +diff -Nuapr mpeg4ip-1.6/lib/SDLAudio/configure.in mpeg4ip-1.6-p/lib/SDLAudio/configure.in +--- mpeg4ip-1.6/lib/SDLAudio/configure.in 2005-01-13 19:21:29.000000000 +0100 ++++ mpeg4ip-1.6-p/lib/SDLAudio/configure.in 2007-09-20 14:57:51.000000000 +0200 +@@ -47,6 +47,7 @@ dnl Check for tools + + AC_LIBTOOL_WIN32_DLL + AM_PROG_LIBTOOL ++AM_PROG_AS + AC_PROG_MAKE_SET + AC_PROG_CC + AC_C_INLINE diff --git a/source/multimedia/mpeg4ip/build-with-werror-is-a-configure-option.patch b/source/multimedia/mpeg4ip/build-with-werror-is-a-configure-option.patch new file mode 100644 index 0000000..3cf131d --- /dev/null +++ b/source/multimedia/mpeg4ip/build-with-werror-is-a-configure-option.patch @@ -0,0 +1,10 @@ +diff -Naur mpeg4ip-1.6/common/video/iso-mpeg4/src/Makefile.am mpeg4ip-1.6-p/common/video/iso-mpeg4/src/Makefile.am +--- mpeg4ip-1.6/common/video/iso-mpeg4/src/Makefile.am 2006-01-03 23:24:07.000000000 +0100 ++++ mpeg4ip-1.6-p/common/video/iso-mpeg4/src/Makefile.am 2007-09-20 21:01:47.000000000 +0200 +@@ -1,5 +1,5 @@ + +-AM_CXXFLAGS = -D__TRACE_AND_STATS_ -D__DOUBLE_PRECISION_ -D_REENTRANT -DNOCONTROLS -fexceptions -Wall -Werror -D_OBSS_ @BILLS_CPPWARNINGS@ ++AM_CXXFLAGS = -D__TRACE_AND_STATS_ -D__DOUBLE_PRECISION_ -D_REENTRANT -DNOCONTROLS -fexceptions -Wall -D_OBSS_ @BILLS_CPPWARNINGS@ + + INCLUDES = -I$(srcdir)/../include + diff --git a/source/multimedia/mpeg4ip/ffmpeg.patch b/source/multimedia/mpeg4ip/ffmpeg.patch deleted file mode 100644 index 97678d3..0000000 --- a/source/multimedia/mpeg4ip/ffmpeg.patch +++ /dev/null @@ -1,22 +0,0 @@ ---- player/plugin/audio/ffmpeg/ffmpeg.cpp.orig 2006-11-18 12:34:36.000000000 -0500 -+++ player/plugin/audio/ffmpeg/ffmpeg.cpp 2006-11-18 12:34:50.000000000 -0500 -@@ -166,7 +166,7 @@ - break; - } - if (userdata) { -- ffmpeg->m_c->extradata = (void *)userdata; -+ ffmpeg->m_c->extradata = const_cast(userdata); - ffmpeg->m_c->extradata_size = ud_size; - } - if (avcodec_open(ffmpeg->m_c, ffmpeg->m_codec) < 0) { ---- player/plugin/video/ffmpeg/ffmpeg.cpp.orig 2006-11-18 14:48:11.000000000 -0500 -+++ player/plugin/video/ffmpeg/ffmpeg.cpp 2006-11-18 14:49:22.000000000 -0500 -@@ -255,7 +255,7 @@ - } - break; - case CODEC_ID_SVQ3: -- ffmpeg->m_c->extradata = (void *)userdata; -+ ffmpeg->m_c->extradata = const_cast(userdata); - ffmpeg->m_c->extradata_size = ud_size; - if (vinfo != NULL) { - ffmpeg->m_c->width = vinfo->width; diff --git a/source/multimedia/mpeg4ip/mpeg4ip-fixes.patch b/source/multimedia/mpeg4ip/mpeg4ip-fixes.patch deleted file mode 100644 index 9985065..0000000 --- a/source/multimedia/mpeg4ip/mpeg4ip-fixes.patch +++ /dev/null @@ -1,102 +0,0 @@ -diff -Nurp mpeg4ip-1.5.0.1/configure.in mpeg4ip-1.5.0.1-p/configure.in ---- mpeg4ip-1.5.0.1/configure.in 2006-06-08 21:15:16.000000000 +0200 -+++ mpeg4ip-1.5.0.1-p/configure.in 2006-11-20 14:22:44.000000000 +0100 -@@ -718,7 +718,7 @@ fi - AM_CONDITIONAL(USE_MMX, test x$test_use_mmx = xtrue) - - dnl Get SDL cflags and SDL libraries to include --SDL_LIBS="`sdl-config --libs`" -+SDL_LIBS="`sdl-config --libs` -lX11" - AC_SUBST(SDL_LIBS) - SDL_LIB_LIBS="`sdl-config --libs | sed /-lSDLmain/s///`" - AC_SUBST(SDL_LIB_LIBS) -@@ -733,7 +733,7 @@ AC_ARG_ENABLE(warns-as-err, - [if test x$enableval = xno; then - AC_MSG_NOTICE([compiler warnings will not be errors]) - else -- BASE_ERR="$BASE_ERR -Werror" -+ BASE_ERR="$BASE_ERR" - AC_MSG_NOTICE([enabling compiler warnings as errors]) - fi - ], -diff -Nurp mpeg4ip-1.5.0.1/player/src/Makefile.am mpeg4ip-1.5.0.1-p/player/src/Makefile.am ---- mpeg4ip-1.5.0.1/player/src/Makefile.am 2006-03-10 19:49:44.000000000 +0100 -+++ mpeg4ip-1.5.0.1-p/player/src/Makefile.am 2006-11-20 14:11:18.000000000 +0100 -@@ -206,7 +206,7 @@ mp4player_LDADD = \ - $(top_builddir)/lib/audio/libaudio.la \ - $(top_builddir)/lib/ismacryp/libismacryp.la \ - $(top_builddir)/lib/srtp/libsrtpif.la \ -- @SDL_LIBS@ @SRTPLIB@ -+ @SDL_LIBS@ @SRTPLIB@ - - gmp4player_LDFLAGS= $(SDL_AUDIO_FLAGS) - gmp4player_LDADD = $(mp4player_LDADD) \ -diff -Nurp mpeg4ip-1.5.0.1/server/mp4live/video_x264.cpp mpeg4ip-1.5.0.1-p/server/mp4live/video_x264.cpp ---- mpeg4ip-1.5.0.1/server/mp4live/video_x264.cpp 2006-05-11 22:23:19.000000000 +0200 -+++ mpeg4ip-1.5.0.1-p/server/mp4live/video_x264.cpp 2006-11-20 14:04:26.000000000 +0100 -@@ -32,7 +32,9 @@ - - static config_index_t CFG_X264_FORCE_BASELINE; - static config_index_t CFG_X264_USE_CABAC; -+#ifndef HAVE_X264_PARAM_T_RC_I_RC_METHOD - static config_index_t CFG_X264_USE_CBR; -+#endif - static config_index_t CFG_X264_BIT_RATE_TOLERANCE; - static config_index_t CFG_X264_USE_VBV; - static config_index_t CFG_X264_VBV_BITRATE_MULT; -@@ -44,7 +46,9 @@ static config_index_t CFG_X264_SAR_HEIGH - static SConfigVariable X264EncoderVariables[] = { - CONFIG_BOOL(CFG_X264_FORCE_BASELINE, "x264ForceBaseline", false), - CONFIG_BOOL(CFG_X264_USE_CABAC, "x264UseCabac", true), -+#ifndef HAVE_X264_PARAM_T_RC_I_RC_METHOD - CONFIG_BOOL(CFG_X264_USE_CBR, "x264UseCbr", true), -+#endif - CONFIG_FLOAT(CFG_X264_BIT_RATE_TOLERANCE, "x264BitRateTolerance", 1.0), - CONFIG_BOOL(CFG_X264_USE_VBV, "x264UseVbv", false), - CONFIG_FLOAT(CFG_X264_VBV_BITRATE_MULT, "x264VbvBitRateMult", 1.0), -@@ -56,7 +60,9 @@ static SConfigVariable X264EncoderVariab - - GUI_BOOL(gui_baseline, CFG_X264_FORCE_BASELINE, "Force Baseline (overrides below)"); - GUI_BOOL(gui_cabac, CFG_X264_USE_CABAC, "Use Cabac"); -+#ifndef HAVE_X264_PARAM_T_RC_I_RC_METHOD - GUI_BOOL(gui_cbr, CFG_X264_USE_CBR, "Use CBR"); -+#endif - GUI_BOOL(gui_bframe, CFG_VIDEO_USE_B_FRAMES, "Use B Frames"); - GUI_INT_RANGE(gui_bframenum, CFG_VIDEO_NUM_OF_B_FRAMES, "Number of B frames", 1, 4); - -@@ -75,7 +81,9 @@ GUI_INT_RANGE(gui_sar_h, CFG_X264_SAR_HE - DECLARE_TABLE(x264_gui_options) = { - TABLE_GUI(gui_baseline), - TABLE_GUI(gui_cabac), -+#ifndef HAVE_X264_PARAM_T_RC_I_RC_METHOD - TABLE_GUI(gui_cbr), -+#endif - TABLE_GUI(gui_bframe), - TABLE_GUI(gui_bframenum), - TABLE_GUI(gui_brate), -@@ -168,7 +176,11 @@ bool CX264VideoEncoder::Init (void) - m_param.i_bframe = 0; - //debug_message("h264 b frames %d", m_param.i_bframe); - m_param.rc.i_bitrate = Profile()->GetIntegerValue(CFG_VIDEO_BIT_RATE); -+#ifndef HAVE_X264_PARAM_T_RC_I_RC_METHOD - m_param.rc.b_cbr = Profile()->GetBoolValue(CFG_X264_USE_CBR) ? 1 : 0; -+#else -+ m_param.rc.i_rc_method = X264_RC_ABR; -+#endif - m_param.rc.f_rate_tolerance = Profile()->GetFloatValue(CFG_X264_BIT_RATE_TOLERANCE); - if (Profile()->GetBoolValue(CFG_X264_USE_VBV)) { - if (Profile()->GetBoolValue(CFG_X264_FORCE_BASELINE)) { -diff -Nurp mpeg4ip-1.5.0.1/server/mp4live/video_x264.h mpeg4ip-1.5.0.1-p/server/mp4live/video_x264.h ---- mpeg4ip-1.5.0.1/server/mp4live/video_x264.h 2005-12-19 18:47:26.000000000 +0100 -+++ mpeg4ip-1.5.0.1-p/server/mp4live/video_x264.h 2006-11-20 14:04:26.000000000 +0100 -@@ -33,6 +33,10 @@ extern "C" { - } - #endif - -+#if X264_BUILD > 47 -+#define HAVE_X264_PARAM_T_RC_I_RC_METHOD -+#endif -+ - class CX264VideoEncoder : public CVideoEncoder { - public: - CX264VideoEncoder(CVideoProfile *vp, diff --git a/source/multimedia/mpeg4ip/type_basic.cpp_compile.patch b/source/multimedia/mpeg4ip/type_basic.cpp_compile.patch new file mode 100644 index 0000000..8f15e0d --- /dev/null +++ b/source/multimedia/mpeg4ip/type_basic.cpp_compile.patch @@ -0,0 +1,12 @@ +diff -Naurp mpeg4ip-1.6/common/video/iso-mpeg4/src/type_basic.cpp mpeg4ip-1.6-p/common/video/iso-mpeg4/src/type_basic.cpp +--- mpeg4ip-1.6/common/video/iso-mpeg4/src/type_basic.cpp 2006-08-03 20:30:21.000000000 +0200 ++++ mpeg4ip-1.6-p/common/video/iso-mpeg4/src/type_basic.cpp 2007-09-20 16:22:06.000000000 +0200 +@@ -317,7 +317,7 @@ Void CMotionVector::computeMV () + iHalfY = m_vctTrueHalfPel.y - iMVY * 2; + } + +-Void CMotionVector::setToZero (Void) ++Void CMotionVector::setToZero () + { + memset (this, 0, sizeof (*this)); + } From boobaa at frugalware.org Fri Sep 21 01:28:11 2007 From: boobaa at frugalware.org (CSÉCSY László) Date: Fri Sep 21 01:28:15 2007 Subject: [Frugalware-git] frugalware-current: perl-gtk2-1.160-1-i686 Message-ID: <20070920232811.829D71678013@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=063327f83ecbb0407aa1509bd88c9952df52a9ef commit 063327f83ecbb0407aa1509bd88c9952df52a9ef Author: CSÉCSY László Date: Fri Sep 21 01:27:29 2007 +0200 perl-gtk2-1.160-1-i686 version bump cookie goes to crazy ;) diff --git a/source/xlib-extra/perl-gtk2/FrugalBuild b/source/xlib-extra/perl-gtk2/FrugalBuild index d617205..ed6747a 100644 --- a/source/xlib-extra/perl-gtk2/FrugalBuild +++ b/source/xlib-extra/perl-gtk2/FrugalBuild @@ -5,12 +5,14 @@ pkgname=perl-gtk2 _F_perl_name=Gtk2 _F_perl_author=T/TS/TSCH -pkgver=1.146 +pkgver=1.160 pkgdesc="Perl interface to the 2.x series of the Gimp Toolkit library" -depends=('gtk+2>=2.10.3' 'perl-glib>=1.140' 'perl-cairo') +depends=('gtk+2>=2.10.3' 'perl-glib>=1.160' 'perl-cairo') makedepends=('perl-extutils-depends' 'perl-extutils-pkgconfig') Finclude perl groups=('xlib-extra') archs=('i686' 'x86_64') options=('scriptlet') -sha1sums=('5983160a8b85257f0c92c0d930e172e44b71be50') +sha1sums=('19358363b3ca598f40110041d8e25b4786fe7949') + +# optimization OK From voroskoi at frugalware.org Fri Sep 21 07:28:29 2007 From: voroskoi at frugalware.org (voroskoi) Date: Fri Sep 21 07:28:32 2007 Subject: [Frugalware-git] frugalware-current: ndiswrapper-1.48-1-i686 Message-ID: <20070921052829.B6D891678013@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=88889ddc602851bd65730261c7a413a2787fb3e7 commit 88889ddc602851bd65730261c7a413a2787fb3e7 Author: voroskoi Date: Fri Sep 21 07:18:30 2007 +0200 ndiswrapper-1.48-1-i686 version bump diff --git a/source/network-extra/ndiswrapper/FrugalBuild b/source/network-extra/ndiswrapper/FrugalBuild index 5c862f6..73f6ad5 100644 --- a/source/network-extra/ndiswrapper/FrugalBuild +++ b/source/network-extra/ndiswrapper/FrugalBuild @@ -3,8 +3,8 @@ # Maintainer: voroskoi pkgname=ndiswrapper -pkgver=1.47 -pkgrel=7 +pkgver=1.48 +pkgrel=1 pkgdesc="Wrapper for using Windows drivers for some wireless cards" Finclude kernel-module sourceforge unset install @@ -12,7 +12,7 @@ depends=(${depends[@]} 'pciutils' 'wireless_tools') groups=('network-extra') archs=('i686' 'x86_64') source=(${source[@]} README.Frugalware no-depmod-thx.patch) -sha1sums=('2431c8f74cab37d3f4c39c6d1b625e0b8312282e'\ +sha1sums=('570f1feece989088ebb086180f0a6533fa92b0d5'\ 'c3f24143cb9814326a2c0c3cbc8d58d953bac268'\ '1274975ac5c636c0fc26c312010eadd056fec010') [ "$CARCH" == "x86_64" ] && \ From voroskoi at frugalware.org Fri Sep 21 07:44:08 2007 From: voroskoi at frugalware.org (voroskoi) Date: Fri Sep 21 07:44:11 2007 Subject: [Frugalware-git] frugalware-current: gnutls-2.0.1-1-i686 Message-ID: <20070921054408.CF4021678013@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=67d09a7a4cf65806c1545ce4743d9ebe60e0bd8b commit 67d09a7a4cf65806c1545ce4743d9ebe60e0bd8b Author: voroskoi Date: Fri Sep 21 07:32:57 2007 +0200 gnutls-2.0.1-1-i686 version bump diff --git a/source/lib/gnutls/FrugalBuild b/source/lib/gnutls/FrugalBuild index 83c91d2..ed8e819 100644 --- a/source/lib/gnutls/FrugalBuild +++ b/source/lib/gnutls/FrugalBuild @@ -3,7 +3,7 @@ # Contributor: VMiklos pkgname=gnutls -pkgver=2.0.0 +pkgver=2.0.1 pkgrel=1 pkgdesc="A library which provides a secure layer over a reliable transport layer" url="http://www.gnu.org/software/gnutls/" From voroskoi at frugalware.org Fri Sep 21 07:45:46 2007 From: voroskoi at frugalware.org (voroskoi) Date: Fri Sep 21 07:45:52 2007 Subject: [Frugalware-git] frugalware-current: pyenchant-1.3.1-1-i686 Message-ID: <20070921054546.90CD11678016@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=86769d4599248c1b1f1646851c5a852e5bb37ead commit 86769d4599248c1b1f1646851c5a852e5bb37ead Author: voroskoi Date: Fri Sep 21 07:37:00 2007 +0200 pyenchant-1.3.1-1-i686 version bump diff --git a/source/lib-extra/pyenchant/FrugalBuild b/source/lib-extra/pyenchant/FrugalBuild index bc6f9db..a0dc4c9 100644 --- a/source/lib-extra/pyenchant/FrugalBuild +++ b/source/lib-extra/pyenchant/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: voroskoi pkgname=pyenchant -pkgver=1.3.0 +pkgver=1.3.1 pkgrel=1 pkgdesc="PyEnchant is a spellchecking library for Python." url="http://pyenchant.sourceforge.net/" @@ -14,6 +14,6 @@ _F_sourceforge_broken_up2date=1 Finclude sourceforge Fconfopts="$Fconfopts --single-version-externally-managed" up2date="lynx -dump http://pyenchant.sourceforge.net/ |grep stable |sed 's/.*t-\(.*\)./\1/'" -sha1sums=('459c09bdfd9c0406caad7bf8cc90f3d6bbda8d41') +sha1sums=('63056b2ffdbc5cbdc8b5440747631f176cccc23f') # optimization OK From vmiklos at frugalware.org Fri Sep 21 08:45:58 2007 From: vmiklos at frugalware.org (VMiklos) Date: Fri Sep 21 08:46:03 2007 Subject: [Frugalware-git] frugalware-current: monodevelop-0.15-2-i686 Message-ID: <20070921064558.7E839186800E@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=9342e5b61f9b627cedf1bbb61cd17dae23bc7405 commit 9342e5b61f9b627cedf1bbb61cd17dae23bc7405 Author: VMiklos Date: Fri Sep 21 08:45:21 2007 +0200 monodevelop-0.15-2-i686 rebuilt with firefox-2.0.0.7 diff --git a/source/gnome-extra/monodevelop/FrugalBuild b/source/gnome-extra/monodevelop/FrugalBuild index 538404e..7df08ef 100644 --- a/source/gnome-extra/monodevelop/FrugalBuild +++ b/source/gnome-extra/monodevelop/FrugalBuild @@ -3,10 +3,10 @@ pkgname=monodevelop pkgver=0.15 -pkgrel=1 +pkgrel=2 pkgdesc="A project to port SharpDevelop to Gtk#" url="http://www.mono-project.com/" -depends=('gecko-sharp' 'gtksourceview-sharp' 'shared-mime-info' 'mono-tools>=1.2.4-2' 'firefox=2.0.0.6' 'ikvm' 'boo' 'gnome-sharp') +depends=('gecko-sharp' 'gtksourceview-sharp' 'shared-mime-info' 'mono-tools>=1.2.4-2' 'firefox=2.0.0.7' 'ikvm' 'boo' 'gnome-sharp') makedepends=('intltool') groups=('gnome-extra') archs=('i686' 'x86_64') From vmiklos at frugalware.org Fri Sep 21 09:00:37 2007 From: vmiklos at frugalware.org (VMiklos) Date: Fri Sep 21 09:00:39 2007 Subject: [Frugalware-git] frugalware-current: irssistats-0.74-1-i686 Message-ID: <20070921070037.C6BEA1A68012@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=4506d744796f8f5c22efd144a19aa7986b664854 commit 4506d744796f8f5c22efd144a19aa7986b664854 Author: VMiklos Date: Fri Sep 21 09:00:26 2007 +0200 irssistats-0.74-1-i686 version bump patches are in upstream :) diff --git a/source/network-extra/irssistats/FrugalBuild b/source/network-extra/irssistats/FrugalBuild index bcd1c16..f7dbf42 100644 --- a/source/network-extra/irssistats/FrugalBuild +++ b/source/network-extra/irssistats/FrugalBuild @@ -2,22 +2,20 @@ # Maintainer: VMiklos pkgname=irssistats -pkgver=0.73 -pkgrel=2 +pkgver=0.74 +pkgrel=1 pkgdesc="Generates HTML IRC stats based on irssi logs." url="http://royale.zerezo.com/irssistats/" depends=('glibc') groups=('network-extra') archs=('i686' 'x86_64') up2date="lynx -dump $url |grep tar.gz$|sed -n 's/.*-\(.*\)\.t.*/\1/;1 p'" -source=($url/$pkgname-$pkgver.tar.gz $pkgname-0.72-cflags.diff $pkgname-0.72-extra_modes.diff) -sha1sums=('503f280e3d7b8d768d6033a9388addc3711f3a3a' \ - '1339a01328a61436d780773319aa2c594375f9ef' \ - '96f81ad3907d2fc4fb31eb16daaad94b05101917') +source=($url/$pkgname-$pkgver.tar.gz) +sha1sums=('4fbdc4ad4480ac5239c6d662a70fba71d4d3f440') build() { - Fpatchall + Fcd make $pkgname || return 1 make PRE=$Fdestdir/usr DOC=$Fdestdir/usr/share/doc/$pkgname-$pkgver \ install diff --git a/source/network-extra/irssistats/irssistats-0.72-cflags.diff b/source/network-extra/irssistats/irssistats-0.72-cflags.diff deleted file mode 100644 index 4cb4e2a..0000000 --- a/source/network-extra/irssistats/irssistats-0.72-cflags.diff +++ /dev/null @@ -1,15 +0,0 @@ -diff -Naur irssistats-0.72.orig/Makefile irssistats-0.72/Makefile ---- irssistats-0.72.orig/Makefile 2005-02-07 14:57:05.000000000 +0100 -+++ irssistats-0.72/Makefile 2006-03-31 00:12:14.000000000 +0200 -@@ -3,9 +3,10 @@ - DAT = $(PRE)/share/irssistats/data - DOC = $(PRE)/share/doc/irssistats - MAN = $(PRE)/share/man/man1 -+CFLAGS ?= -O2 - - irssistats:irssistats.c -- gcc -O2 -o irssistats irssistats.c -+ gcc $(CFLAGS) -o irssistats irssistats.c - - clean: - rm -f irssistats diff --git a/source/network-extra/irssistats/irssistats-0.72-extra_modes.diff b/source/network-extra/irssistats/irssistats-0.72-extra_modes.diff deleted file mode 100644 index d7965e9..0000000 --- a/source/network-extra/irssistats/irssistats-0.72-extra_modes.diff +++ /dev/null @@ -1,11 +0,0 @@ ---- irssistats-0.73/irssistats.c.orig 2007-07-23 11:11:14.000000000 +0200 -+++ irssistats-0.73/irssistats.c 2007-07-23 11:12:32.000000000 +0200 -@@ -1097,6 +1097,8 @@ - case '@': - case '%': - case '+': -+ case '&': -+ case '~': - case ' ': - nickstart = timelen+2; - break; From boobaa at frugalware.org Fri Sep 21 09:53:09 2007 From: boobaa at frugalware.org (CSÉCSY László) Date: Fri Sep 21 09:53:11 2007 Subject: [Frugalware-git] frugalware-current: perl-test-manifest-1.21-1-i686 Message-ID: <20070921075309.B99B11A6801B@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=71b520a53f5de14b2bc03268e8b7590b1fc19df5 commit 71b520a53f5de14b2bc03268e8b7590b1fc19df5 Author: CSÉCSY László Date: Fri Sep 21 09:52:10 2007 +0200 perl-test-manifest-1.21-1-i686 version bump diff --git a/source/devel-extra/perl-test-manifest/FrugalBuild b/source/devel-extra/perl-test-manifest/FrugalBuild index 86e2f98..dee9d8c 100644 --- a/source/devel-extra/perl-test-manifest/FrugalBuild +++ b/source/devel-extra/perl-test-manifest/FrugalBuild @@ -4,7 +4,7 @@ _F_perl_name=Test-Manifest _F_perl_author=B/BD/BDFOY pkgname=perl-test-manifest -pkgver=1.17 +pkgver=1.21 pkgrel=1 pkgdesc="A perl module to interact with a t/test_manifest file" url="http://search.cpan.org/dist/Test-Manifest/" @@ -13,4 +13,4 @@ makedepends=('perl-libwww') groups=('devel-extra') Finclude perl archs=('i686' 'x86_64') -sha1sums=('da0ab03edcdf1dbf213301aa11da42d4681bf4e2') +sha1sums=('9db1b8b0e39daea0ed6851271b28b0ed859574b3') From boobaa at frugalware.org Fri Sep 21 09:59:00 2007 From: boobaa at frugalware.org (CSÉCSY László) Date: Fri Sep 21 09:59:02 2007 Subject: [Frugalware-git] frugalware-current: eaccelerator-0.9.5.2-1-i686 Message-ID: <20070921075900.38FB51A6801B@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=1880555f1ce30518c400b2cfc9cc83ab6f785ade commit 1880555f1ce30518c400b2cfc9cc83ab6f785ade Author: CSÉCSY László Date: Fri Sep 21 09:58:51 2007 +0200 eaccelerator-0.9.5.2-1-i686 version bump diff --git a/source/devel-extra/eaccelerator/FrugalBuild b/source/devel-extra/eaccelerator/FrugalBuild index 68a2b09..2e392e4 100644 --- a/source/devel-extra/eaccelerator/FrugalBuild +++ b/source/devel-extra/eaccelerator/FrugalBuild @@ -2,14 +2,14 @@ # Maintainer: CSÉCSY László pkgname=eaccelerator -pkgver=0.9.5.1 -pkgrel=3 +pkgver=0.9.5.2 +pkgrel=1 pkgdesc="PHP accelerator and encoder" license="GPL2" _F_sourceforge_ext=".tar.bz2" Finclude sourceforge url="http://eaccelerator.net/" -up2date="lynx -dump http://eaccelerator.net/wiki | grep -m1 'Release-'|sed 's/.*se-\(.*\).*-.*/\1/'" +up2date="lynx -dump http://eaccelerator.net/wiki | grep -m1 'Release-'|sed 's/.*se-\(.*\)[^0-9].*-.*/\1/'" source=(http://bart.$pkgname.net/source/$pkgver/$pkgname-$pkgver.tar.bz2 README.Frugalware) signatures=(http://bart.$pkgname.net/source/$pkgver/$pkgname-$pkgver.tar.bz2.asc '') groups=('devel-extra') From boobaa at frugalware.org Fri Sep 21 10:04:02 2007 From: boobaa at frugalware.org (CSÉCSY László) Date: Fri Sep 21 10:04:04 2007 Subject: [Frugalware-git] frugalware-current: phpmyadmin-2.11.1-1-i686 Message-ID: <20070921080402.5CDD31A68012@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=1dcbc2cdccb3bda065936a62cd808a722af92213 commit 1dcbc2cdccb3bda065936a62cd808a722af92213 Author: CSÉCSY László Date: Fri Sep 21 10:03:01 2007 +0200 phpmyadmin-2.11.1-1-i686 version bump diff --git a/source/network-extra/phpmyadmin/FrugalBuild b/source/network-extra/phpmyadmin/FrugalBuild index 0b7b464..859488f 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=2.11.0 +pkgver=2.11.1 pkgrel=1 pkgdesc="Set of PHP-scripts to administrate MySQL over the WWW." _F_sourceforge_ext="-all-languages.tar.bz2" @@ -15,7 +15,6 @@ groups=('network-extra') archs=('i686' 'x86_64') up2date="lynx -dump $url |grep -1 stable|sed -n 's/.*n \(.*\) U.*/\1/;$ p'" source=(${source/phpmyadmin-/phpMyAdmin-}) -options=('force') build() { @@ -30,4 +29,4 @@ build() Frm /var/www/html/phpMyAdmin-${pkgver//_/-}-all-languages.tar.bz2 } -sha1sums=('14d92a894ee8fb12f4270439a1e309b6ffcfdc0c') +sha1sums=('a2126442726b7bf7ad7805aa24d7696dcc0a0839') From priyank at frugalware.org Fri Sep 21 11:29:13 2007 From: priyank at frugalware.org (Priyank) Date: Fri Sep 21 11:29:15 2007 Subject: [Frugalware-git] gfpm: gfpm-about: re-added translator credits. should be displayed fine in the about dialog box now. Message-ID: <20070921092913.631DA1A68026@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gfpm.git;a=commitdiff;h=c3db75c9430d5bb1fb0f88509b28a11a2c506138 commit c3db75c9430d5bb1fb0f88509b28a11a2c506138 Author: Priyank Date: Thu Sep 20 20:08:24 2007 +0530 gfpm-about: re-added translator credits. should be displayed fine in the about dialog box now. diff --git a/src/gfpm-about.c b/src/gfpm-about.c index 8d53ff3..e7ad3d3 100644 --- a/src/gfpm-about.c +++ b/src/gfpm-about.c @@ -47,18 +47,26 @@ static gchar *license = extern GtkWidget *gfpm_mw; static GtkWidget *about_dlg = NULL; static GdkPixbuf *about_pixbuf = NULL; -static gchar *authors[] = { "Priyank M. Gosalia ", +static const gchar *authors[] = { \ + "Priyank M. Gosalia ", "Christian Hamar " , "Miklos Nemeth ", NULL }; -static gchar *artists[] = { "Viktor Gondor ", +static const gchar *artists[] = { \ + "Viktor Gondor ", "Sekkyumu ", "Priyank Gosalia ", NULL }; +static const gchar translators[] = \ + "Carl Andersen (da_DK)\n" + "Michel Hermier (fr_FR)\n" + "Vajna Miklos (hu_HU)\n" + "Patric Werme (sv_SE)\n"; + static void gfpm_about_dlg_create (void); static void gfpm_about_dlg_hide (void); @@ -83,7 +91,7 @@ gfpm_about_dlg_create (void) gtk_about_dialog_set_wrap_license (GTK_ABOUT_DIALOG(about_dlg), TRUE); gtk_about_dialog_set_authors (GTK_ABOUT_DIALOG(about_dlg), authors); gtk_about_dialog_set_artists (GTK_ABOUT_DIALOG(about_dlg), artists); - gtk_about_dialog_set_translator_credits (GTK_ABOUT_DIALOG(about_dlg), _("translator-credits")); + gtk_about_dialog_set_translator_credits (GTK_ABOUT_DIALOG(about_dlg), translators); g_signal_connect (G_OBJECT(about_dlg), "destroy", G_CALLBACK(gtk_widget_destroyed), &about_dlg); list = gtk_container_get_children (GTK_CONTAINER((GTK_DIALOG(about_dlg))->action_area)); From priyank at frugalware.org Fri Sep 21 11:29:13 2007 From: priyank at frugalware.org (Priyank) Date: Fri Sep 21 11:29:17 2007 Subject: [Frugalware-git] gfpm: forgot to replace the old icon with the new one in 48x48 dir Message-ID: <20070921092913.904E61A68027@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gfpm.git;a=commitdiff;h=528b3b1151e2006a80eb7d32fdc9d07fdbbb2ac2 commit 528b3b1151e2006a80eb7d32fdc9d07fdbbb2ac2 Author: Priyank Date: Fri Sep 21 14:56:09 2007 +0530 forgot to replace the old icon with the new one in 48x48 dir diff --git a/data/icons/48x48/gfpm.png b/data/icons/48x48/gfpm.png index 0648259..ca48431 100644 Binary files a/data/icons/48x48/gfpm.png and b/data/icons/48x48/gfpm.png differ From priyank at frugalware.org Fri Sep 21 11:35:39 2007 From: priyank at frugalware.org (Priyank) Date: Fri Sep 21 11:35:42 2007 Subject: [Frugalware-git] fw-control-center: gfpm-mcs-plugin: a gfpm plugin for Xfce4 settings manager (Initial import) Message-ID: <20070921093539.8A1CE1A6802C@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=fw-control-center.git;a=commitdiff;h=8b657ab1e9adf012582e8b7078a2881b9285d441 commit 8b657ab1e9adf012582e8b7078a2881b9285d441 Author: Priyank Date: Fri Sep 21 15:02:28 2007 +0530 gfpm-mcs-plugin: a gfpm plugin for Xfce4 settings manager (Initial import) diff --git a/gfpm-mcs-plugin/AUTHORS b/gfpm-mcs-plugin/AUTHORS new file mode 100644 index 0000000..842c89e --- /dev/null +++ b/gfpm-mcs-plugin/AUTHORS @@ -0,0 +1,10 @@ +Author +======= +Priyank Gosalia + +Original Author +=============== +Bernhard Walle + +Translators +=========== diff --git a/gfpm-mcs-plugin/COPYING b/gfpm-mcs-plugin/COPYING new file mode 100644 index 0000000..623b625 --- /dev/null +++ b/gfpm-mcs-plugin/COPYING @@ -0,0 +1,340 @@ + GNU GENERAL PUBLIC LICENSE + Version 2, June 1991 + + Copyright (C) 1989, 1991 Free Software Foundation, Inc. + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The licenses for most software are designed to take away your +freedom to share and change it. By contrast, the GNU General Public +License is intended to guarantee your freedom to share and change free +software--to make sure the software is free for all its users. This +General Public License applies to most of the Free Software +Foundation's software and to any other program whose authors commit to +using it. (Some other Free Software Foundation software is covered by +the GNU Library General Public License instead.) You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +this service if you wish), that you receive source code or can get it +if you want it, that you can change the software or use pieces of it +in new free programs; and that you know you can do these things. + + To protect your rights, we need to make restrictions that forbid +anyone to deny you these rights or to ask you to surrender the rights. +These restrictions translate to certain responsibilities for you if you +distribute copies of the software, or if you modify it. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must give the recipients all the rights that +you have. You must make sure that they, too, receive or can get the +source code. And you must show them these terms so they know their +rights. + + We protect your rights with two steps: (1) copyright the software, and +(2) offer you this license which gives you legal permission to copy, +distribute and/or modify the software. + + Also, for each author's protection and ours, we want to make certain +that everyone understands that there is no warranty for this free +software. If the software is modified by someone else and passed on, we +want its recipients to know that what they have is not the original, so +that any problems introduced by others will not reflect on the original +authors' reputations. + + Finally, any free program is threatened constantly by software +patents. We wish to avoid the danger that redistributors of a free +program will individually obtain patent licenses, in effect making the +program proprietary. To prevent this, we have made it clear that any +patent must be licensed for everyone's free use or not licensed at all. + + The precise terms and conditions for copying, distribution and +modification follow. + + GNU GENERAL PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License applies to any program or other work which contains +a notice placed by the copyright holder saying it may be distributed +under the terms of this General Public License. The "Program", below, +refers to any such program or work, and a "work based on the Program" +means either the Program or any derivative work under copyright law: +that is to say, a work containing the Program or a portion of it, +either verbatim or with modifications and/or translated into another +language. (Hereinafter, translation is included without limitation in +the term "modification".) Each licensee is addressed as "you". + +Activities other than copying, distribution and modification are not +covered by this License; they are outside its scope. The act of +running the Program is not restricted, and the output from the Program +is covered only if its contents constitute a work based on the +Program (independent of having been made by running the Program). +Whether that is true depends on what the Program does. + + 1. You may copy and distribute verbatim copies of the Program's +source code as you receive it, in any medium, provided that you +conspicuously and appropriately publish on each copy an appropriate +copyright notice and disclaimer of warranty; keep intact all the +notices that refer to this License and to the absence of any warranty; +and give any other recipients of the Program a copy of this License +along with the Program. + +You may charge a fee for the physical act of transferring a copy, and +you may at your option offer warranty protection in exchange for a fee. + + 2. You may modify your copy or copies of the Program or any portion +of it, thus forming a work based on the Program, and copy and +distribute such modifications or work under the terms of Section 1 +above, provided that you also meet all of these conditions: + + a) You must cause the modified files to carry prominent notices + stating that you changed the files and the date of any change. + + b) You must cause any work that you distribute or publish, that in + whole or in part contains or is derived from the Program or any + part thereof, to be licensed as a whole at no charge to all third + parties under the terms of this License. + + c) If the modified program normally reads commands interactively + when run, you must cause it, when started running for such + interactive use in the most ordinary way, to print or display an + announcement including an appropriate copyright notice and a + notice that there is no warranty (or else, saying that you provide + a warranty) and that users may redistribute the program under + these conditions, and telling the user how to view a copy of this + License. (Exception: if the Program itself is interactive but + does not normally print such an announcement, your work based on + the Program is not required to print an announcement.) + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the Program, +and can be reasonably considered independent and separate works in +themselves, then this License, and its terms, do not apply to those +sections when you distribute them as separate works. But when you +distribute the same sections as part of a whole which is a work based +on the Program, the distribution of the whole must be on the terms of +this License, whose permissions for other licensees extend to the +entire whole, and thus to each and every part regardless of who wrote it. + +Thus, it is not the intent of this section to claim rights or contest +your rights to work written entirely by you; rather, the intent is to +exercise the right to control the distribution of derivative or +collective works based on the Program. + +In addition, mere aggregation of another work not based on the Program +with the Program (or with a work based on the Program) on a volume of +a storage or distribution medium does not bring the other work under +the scope of this License. + + 3. You may copy and distribute the Program (or a work based on it, +under Section 2) in object code or executable form under the terms of +Sections 1 and 2 above provided that you also do one of the following: + + a) Accompany it with the complete corresponding machine-readable + source code, which must be distributed under the terms of Sections + 1 and 2 above on a medium customarily used for software interchange; or, + + b) Accompany it with a written offer, valid for at least three + years, to give any third party, for a charge no more than your + cost of physically performing source distribution, a complete + machine-readable copy of the corresponding source code, to be + distributed under the terms of Sections 1 and 2 above on a medium + customarily used for software interchange; or, + + c) Accompany it with the information you received as to the offer + to distribute corresponding source code. (This alternative is + allowed only for noncommercial distribution and only if you + received the program in object code or executable form with such + an offer, in accord with Subsection b above.) + +The source code for a work means the preferred form of the work for +making modifications to it. For an executable work, complete source +code means all the source code for all modules it contains, plus any +associated interface definition files, plus the scripts used to +control compilation and installation of the executable. However, as a +special exception, the source code distributed need not include +anything that is normally distributed (in either source or binary +form) with the major components (compiler, kernel, and so on) of the +operating system on which the executable runs, unless that component +itself accompanies the executable. + +If distribution of executable or object code is made by offering +access to copy from a designated place, then offering equivalent +access to copy the source code from the same place counts as +distribution of the source code, even though third parties are not +compelled to copy the source along with the object code. + + 4. You may not copy, modify, sublicense, or distribute the Program +except as expressly provided under this License. Any attempt +otherwise to copy, modify, sublicense or distribute the Program is +void, and will automatically terminate your rights under this License. +However, parties who have received copies, or rights, from you under +this License will not have their licenses terminated so long as such +parties remain in full compliance. + + 5. You are not required to accept this License, since you have not +signed it. However, nothing else grants you permission to modify or +distribute the Program or its derivative works. These actions are +prohibited by law if you do not accept this License. Therefore, by +modifying or distributing the Program (or any work based on the +Program), you indicate your acceptance of this License to do so, and +all its terms and conditions for copying, distributing or modifying +the Program or works based on it. + + 6. Each time you redistribute the Program (or any work based on the +Program), the recipient automatically receives a license from the +original licensor to copy, distribute or modify the Program subject to +these terms and conditions. You may not impose any further +restrictions on the recipients' exercise of the rights granted herein. +You are not responsible for enforcing compliance by third parties to +this License. + + 7. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), +conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot +distribute so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you +may not distribute the Program at all. For example, if a patent +license would not permit royalty-free redistribution of the Program by +all those who receive copies directly or indirectly through you, then +the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Program. + +If any portion of this section is held invalid or unenforceable under +any particular circumstance, the balance of the section is intended to +apply and the section as a whole is intended to apply in other +circumstances. + +It is not the purpose of this section to induce you to infringe any +patents or other property right claims or to contest validity of any +such claims; this section has the sole purpose of protecting the +integrity of the free software distribution system, which is +implemented by public license practices. Many people have made +generous contributions to the wide range of software distributed +through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing +to distribute software through any other system and a licensee cannot +impose that choice. + +This section is intended to make thoroughly clear what is believed to +be a consequence of the rest of this License. + + 8. If the distribution and/or use of the Program is restricted in +certain countries either by patents or by copyrighted interfaces, the +original copyright holder who places the Program under this License +may add an explicit geographical distribution limitation excluding +those countries, so that distribution is permitted only in or among +countries not thus excluded. In such case, this License incorporates +the limitation as if written in the body of this License. + + 9. The Free Software Foundation may publish revised and/or new versions +of the General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + +Each version is given a distinguishing version number. If the Program +specifies a version number of this License which applies to it and "any +later version", you have the option of following the terms and conditions +either of that version or of any later version published by the Free +Software Foundation. If the Program does not specify a version number of +this License, you may choose any version ever published by the Free Software +Foundation. + + 10. If you wish to incorporate parts of the Program into other free +programs whose distribution conditions are different, write to the author +to ask for permission. For software which is copyrighted by the Free +Software Foundation, write to the Free Software Foundation; we sometimes +make exceptions for this. Our decision will be guided by the two goals +of preserving the free status of all derivatives of our free software and +of promoting the sharing and reuse of software generally. + + NO WARRANTY + + 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY +FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN +OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES +PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED +OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS +TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE +PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, +REPAIR OR CORRECTION. + + 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR +REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, +INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING +OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED +TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY +YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER +PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE +POSSIBILITY OF SUCH DAMAGES. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +convey the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + + +Also add information on how to contact you by electronic and paper mail. + +If the program is interactive, make it output a short notice like this +when it starts in an interactive mode: + + Gnomovision version 69, Copyright (C) year name of author + Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, the commands you use may +be called something other than `show w' and `show c'; they could even be +mouse-clicks or menu items--whatever suits your program. + +You should also get your employer (if you work as a programmer) or your +school, if any, to sign a "copyright disclaimer" for the program, if +necessary. Here is a sample; alter the names: + + Yoyodyne, Inc., hereby disclaims all copyright interest in the program + `Gnomovision' (which makes passes at compilers) written by James Hacker. + + , 1 April 1989 + Ty Coon, President of Vice + +This General Public License does not permit incorporating your program into +proprietary programs. If your program is a subroutine library, you may +consider it more useful to permit linking proprietary applications with the +library. If this is what you want to do, use the GNU Library General +Public License instead of this License. diff --git a/gfpm-mcs-plugin/ChangeLog b/gfpm-mcs-plugin/ChangeLog new file mode 100644 index 0000000..e69de29 diff --git a/gfpm-mcs-plugin/INSTALL b/gfpm-mcs-plugin/INSTALL new file mode 100644 index 0000000..5458714 --- /dev/null +++ b/gfpm-mcs-plugin/INSTALL @@ -0,0 +1,234 @@ +Installation Instructions +************************* + +Copyright (C) 1994, 1995, 1996, 1999, 2000, 2001, 2002, 2004, 2005, +2006 Free Software Foundation, Inc. + +This file is free documentation; the Free Software Foundation gives +unlimited permission to copy, distribute and modify it. + +Basic Installation +================== + +Briefly, the shell commands `./configure; make; make install' should +configure, build, and install this package. The following +more-detailed instructions are generic; see the `README' file for +instructions specific to this package. + + The `configure' shell script attempts to guess correct values for +various system-dependent variables used during compilation. It uses +those values to create a `Makefile' in each directory of the package. +It may also create one or more `.h' files containing system-dependent +definitions. Finally, it creates a shell script `config.status' that +you can run in the future to recreate the current configuration, and a +file `config.log' containing compiler output (useful mainly for +debugging `configure'). + + It can also use an optional file (typically called `config.cache' +and enabled with `--cache-file=config.cache' or simply `-C') that saves +the results of its tests to speed up reconfiguring. Caching is +disabled by default to prevent problems with accidental use of stale +cache files. + + If you need to do unusual things to compile the package, please try +to figure out how `configure' could check whether to do them, and mail +diffs or instructions to the address given in the `README' so they can +be considered for the next release. If you are using the cache, and at +some point `config.cache' contains results you don't want to keep, you +may remove or edit it. + + The file `configure.ac' (or `configure.in') is used to create +`configure' by a program called `autoconf'. You need `configure.ac' if +you want to change it or regenerate `configure' using a newer version +of `autoconf'. + +The simplest way to compile this package is: + + 1. `cd' to the directory containing the package's source code and type + `./configure' to configure the package for your system. + + Running `configure' might take a while. While running, it prints + some messages telling which features it is checking for. + + 2. Type `make' to compile the package. + + 3. Optionally, type `make check' to run any self-tests that come with + the package. + + 4. Type `make install' to install the programs and any data files and + documentation. + + 5. You can remove the program binaries and object files from the + source code directory by typing `make clean'. To also remove the + files that `configure' created (so you can compile the package for + a different kind of computer), type `make distclean'. There is + also a `make maintainer-clean' target, but that is intended mainly + for the package's developers. If you use it, you may have to get + all sorts of other programs in order to regenerate files that came + with the distribution. + +Compilers and Options +===================== + +Some systems require unusual options for compilation or linking that the +`configure' script does not know about. Run `./configure --help' for +details on some of the pertinent environment variables. + + You can give `configure' initial values for configuration parameters +by setting variables in the command line or in the environment. Here +is an example: + + ./configure CC=c99 CFLAGS=-g LIBS=-lposix + + *Note Defining Variables::, for more details. + +Compiling For Multiple Architectures +==================================== + +You can compile the package for more than one kind of computer at the +same time, by placing the object files for each architecture in their +own directory. To do this, you can use GNU `make'. `cd' to the +directory where you want the object files and executables to go and run +the `configure' script. `configure' automatically checks for the +source code in the directory that `configure' is in and in `..'. + + With a non-GNU `make', it is safer to compile the package for one +architecture at a time in the source code directory. After you have +installed the package for one architecture, use `make distclean' before +reconfiguring for another architecture. + +Installation Names +================== + +By default, `make install' installs the package's commands under +`/usr/local/bin', include files under `/usr/local/include', etc. You +can specify an installation prefix other than `/usr/local' by giving +`configure' the option `--prefix=PREFIX'. + + You can specify separate installation prefixes for +architecture-specific files and architecture-independent files. If you +pass the option `--exec-prefix=PREFIX' to `configure', the package uses +PREFIX as the prefix for installing programs and libraries. +Documentation and other data files still use the regular prefix. + + In addition, if you use an unusual directory layout you can give +options like `--bindir=DIR' to specify different values for particular +kinds of files. Run `configure --help' for a list of the directories +you can set and what kinds of files go in them. + + If the package supports it, you can cause programs to be installed +with an extra prefix or suffix on their names by giving `configure' the +option `--program-prefix=PREFIX' or `--program-suffix=SUFFIX'. + +Optional Features +================= + +Some packages pay attention to `--enable-FEATURE' options to +`configure', where FEATURE indicates an optional part of the package. +They may also pay attention to `--with-PACKAGE' options, where PACKAGE +is something like `gnu-as' or `x' (for the X Window System). The +`README' should mention any `--enable-' and `--with-' options that the +package recognizes. + + For packages that use the X Window System, `configure' can usually +find the X include and library files automatically, but if it doesn't, +you can use the `configure' options `--x-includes=DIR' and +`--x-libraries=DIR' to specify their locations. + +Specifying the System Type +========================== + +There may be some features `configure' cannot figure out automatically, +but needs to determine by the type of machine the package will run on. +Usually, assuming the package is built to be run on the _same_ +architectures, `configure' can figure that out, but if it prints a +message saying it cannot guess the machine type, give it the +`--build=TYPE' option. TYPE can either be a short name for the system +type, such as `sun4', or a canonical name which has the form: + + CPU-COMPANY-SYSTEM + +where SYSTEM can have one of these forms: + + OS KERNEL-OS + + See the file `config.sub' for the possible values of each field. If +`config.sub' isn't included in this package, then this package doesn't +need to know the machine type. + + If you are _building_ compiler tools for cross-compiling, you should +use the option `--target=TYPE' to select the type of system they will +produce code for. + + If you want to _use_ a cross compiler, that generates code for a +platform different from the build platform, you should specify the +"host" platform (i.e., that on which the generated programs will +eventually be run) with `--host=TYPE'. + +Sharing Defaults +================ + +If you want to set default values for `configure' scripts to share, you +can create a site shell script called `config.site' that gives default +values for variables like `CC', `cache_file', and `prefix'. +`configure' looks for `PREFIX/share/config.site' if it exists, then +`PREFIX/etc/config.site' if it exists. Or, you can set the +`CONFIG_SITE' environment variable to the location of the site script. +A warning: not all `configure' scripts look for a site script. + +Defining Variables +================== + +Variables not defined in a site shell script can be set in the +environment passed to `configure'. However, some packages may run +configure again during the build, and the customized values of these +variables may be lost. In order to avoid this problem, you should set +them in the `configure' command line, using `VAR=value'. For example: + + ./configure CC=/usr/local2/bin/gcc + +causes the specified `gcc' to be used as the C compiler (unless it is +overridden in the site shell script). + +Unfortunately, this technique does not work for `CONFIG_SHELL' due to +an Autoconf bug. Until the bug is fixed you can use this workaround: + + CONFIG_SHELL=/bin/bash /bin/bash ./configure CONFIG_SHELL=/bin/bash + +`configure' Invocation +====================== + +`configure' recognizes the following options to control how it operates. + +`--help' +`-h' + Print a summary of the options to `configure', and exit. + +`--version' +`-V' + Print the version of Autoconf used to generate the `configure' + script, and exit. + +`--cache-file=FILE' + Enable the cache: use and save the results of the tests in FILE, + traditionally `config.cache'. FILE defaults to `/dev/null' to + disable caching. + +`--config-cache' +`-C' + Alias for `--cache-file=config.cache'. + +`--quiet' +`--silent' +`-q' + Do not print messages saying which checks are being made. To + suppress all normal output, redirect it to `/dev/null' (any error + messages will still be shown). + +`--srcdir=DIR' + Look for the package's source code in directory DIR. Usually + `configure' can determine that directory automatically. + +`configure' also accepts some other, not widely useful, options. Run +`configure --help' for more details. + diff --git a/gfpm-mcs-plugin/Makefile.am b/gfpm-mcs-plugin/Makefile.am new file mode 100644 index 0000000..c3961c8 --- /dev/null +++ b/gfpm-mcs-plugin/Makefile.am @@ -0,0 +1,25 @@ +# $Id: Makefile.am 2284 2006-12-29 14:39:00Z pollux $ + +SUBDIRS = \ + icons \ + po \ + src + +AUTOMAKE_OPTIONS = \ + 1.8 \ + dist-bzip2 + +distclean-local: + rm -rf *.cache *~ + +EXTRA_DIST = \ + intltool-extract.in \ + intltool-merge.in \ + intltool-update.in + +DISTCLEANFILES = \ + intltool-extract \ + intltool-merge \ + intltool-update + +# vi:set ts=8 sw=8 noet ai nocindent syntax=automake: diff --git a/gfpm-mcs-plugin/NEWS b/gfpm-mcs-plugin/NEWS new file mode 100644 index 0000000..a20e9c0 --- /dev/null +++ b/gfpm-mcs-plugin/NEWS @@ -0,0 +1,3 @@ +VERSION DESCRIPTION +------------------------------------------------------------------------------------------ +0.1.0 (2007-09-21) - Initial Release diff --git a/gfpm-mcs-plugin/README b/gfpm-mcs-plugin/README new file mode 100644 index 0000000..c5e83b2 --- /dev/null +++ b/gfpm-mcs-plugin/README @@ -0,0 +1,16 @@ +gfpm mcs plugin +---------------------- + +This plugin adds a Gfpm (Package Manager) icon to the XFCE settings manager. +This will allow you to launch the gfpm package manager directly from Xfce +settings manager. +It requires gksu to get superuser permissions. If gksu is not installed, +it uses xterm as a prompt for the root password. + +Author +------- +Priyank M. Gosalia + +Original Author +---------------- +Bernhard Walle diff --git a/gfpm-mcs-plugin/autoclean.sh b/gfpm-mcs-plugin/autoclean.sh new file mode 100755 index 0000000..a545666 --- /dev/null +++ b/gfpm-mcs-plugin/autoclean.sh @@ -0,0 +1,29 @@ +#!/bin/sh -xu + +[ -f Makefile ] && make distclean +rm -rf autom4te.cache +rm -rf Makefile +rm -rf Makefile.in +rm -rf configure +rm -rf config.* +rm -rf stamp* +rm -rf depcomp +rm -rf install-sh +rm -rf missing +rm -rf src/Makefile +rm -rf src/Makefile.in +rm -rf aclocal.m4 +rm -rf ltmain.sh +rm -rf compile +rm -rf libtool +rm -rf mkinstalldirs +rm -rf config.rpath +rm -rf intltool-extract +rm -rf intltool-merge +rm -rf intltool-update +rm -rf po/stamp-it +rm -rf intltool*.in +rm -rf po/Makefile.in.in +rm -rf po/Makefile.in +rm -rf po/Makefile +rm -rf po/POTFILES diff --git a/gfpm-mcs-plugin/autogen.sh b/gfpm-mcs-plugin/autogen.sh new file mode 100755 index 0000000..3c69537 --- /dev/null +++ b/gfpm-mcs-plugin/autogen.sh @@ -0,0 +1,75 @@ +#!/bin/sh -e + +gen_pot() +{ + cd po/ + mv Makevars Makevars.tmp + cp /usr/bin/intltool-extract ./ + intltool-update --pot --gettext-package=gfpm-mcs-plugin + rm intltool-extract + mv Makevars.tmp Makevars + cd - >/dev/null +} + +import_pootle() +{ + po_dir=~/git/translations/po + if [ -d $po_dir ]; then + : > po/LINGUAS + for i in $(/bin/ls $po_dir/fwcontrolcenter) + do + [ -e $po_dir/fwcontrolcenter/$i/gfpm-mcs-plugin.po ] || continue + cp $po_dir/fwcontrolcenter/$i/gfpm-mcs-plugin.po po/$i.po + if msgfmt -c --statistics -o po/$i.gmo po/$i.po; then + echo $i >> po/LINGUAS + else + echo "WARNING: po/$i.po will break your build!" + fi + done + else + echo "WARNING: no po files will be used" + fi +} + +cd `dirname $0` + +if [ "$1" == "--pot-only" ]; then + gen_pot + exit 0 +fi + +if [ "$1" == "--dist" ]; then + ver=`grep version_major -m1 configure.in | sed 's/.*, \[\(.*\)].*/\1/'` + ver=$ver.`grep version_minor -m1 configure.in | sed 's/.*, \[\(.*\)].*/\1/'` + ver=$ver.`grep version_micro -m1 configure.in | sed 's/.*, \[\(.*\)].*/\1/'` + git-archive --format=tar --prefix=gfpm-mcs-plugin-$ver/ HEAD | tar xf - + git log --no-merges |git name-rev --tags --stdin > gfpm-mcs-plugin-$ver/ChangeLog + cd gfpm-mcs-plugin-$ver + ./autogen.sh --git + rm -rf autom4te.cache + cd .. + tar czf gfpm-mcs-plugin-$ver.tar.gz gfpm-mcs-plugin-$ver + rm -rf gfpm-mcs-plugin-$ver + gpg --comment "See http://ftp.frugalware.org/pub/README.GPG for info" \ + -ba -u 20F55619 gfpm-mcs-plugin-$ver.tar.gz + #mv gnetconfig-$ver.tar.gz.asc ../.. + exit 0 +fi + +cat /usr/share/aclocal/libtool.m4 >> aclocal.m4 + +intltoolize -c -f --automake +import_pootle +gen_pot +libtoolize -f -c +aclocal --force +autoheader -f +autoconf -f +cp -f $(dirname $(which automake))/../share/automake/mkinstalldirs ./ +cp -f $(dirname $(which automake))/../share/gettext/config.rpath ./ +NOCONFIGURE=1 xdt-autogen +automake -a -c --gnu --foreign +if [ "$1" == "--git" ]; then + rm -rf autom4te.cache +fi + diff --git a/gfpm-mcs-plugin/configure.in b/gfpm-mcs-plugin/configure.in new file mode 100644 index 0000000..9055e9a --- /dev/null +++ b/gfpm-mcs-plugin/configure.in @@ -0,0 +1,77 @@ +dnl Copyright (c) 2006 Jean-François Wauthy +dnl + +dnl *************************** +dnl *** Version information *** +dnl *************************** +m4_define([gfpm_mcs_plugin_version_major], [0]) +m4_define([gfpm_mcs_plugin_version_minor], [1]) +m4_define([gfpm_mcs_plugin_version_micro], [0]) +m4_define([gfpm_mcs_plugin_version_nano], []) +m4_define([gfpm_mcs_plugin_version_tag], []) +m4_define([gfpm_mcs_plugin_version], [gfpm_mcs_plugin_version_major().gfpm_mcs_plugin_version_minor().gfpm_mcs_plugin_version_micro()ifelse(gfpm_mcs_plugin_version_nano(), [], [], [.gfpm_mcs_plugin_version_nano()])ifelse(gfpm_mcs_plugin_version_tag(), [svn], [gfpm_mcs_plugin_version_tag()-gfpm_mcs_plugin_version_build()], [gfpm_mcs_plugin_version_tag()])]) + + +dnl # DO NOT MODIFY ANYTHING BELOW THIS LINE, UNLESS YOU KNOW WHAT +dnl # YOU ARE DOING. + + +dnl ******************************************* +dnl *** Debugging support for SVN snapshots *** +dnl ******************************************* +m4_define([gfpm_mcs_plugin_debug_default], [ifelse(gfpm_mcs_plugin_version_tag(), [svn], [yes], [minimum])]) + +dnl *************************** +dnl *** Initialize autoconf *** +dnl *************************** +AC_COPYRIGHT([Copyright (c) 2007 Priyank Gosalia ]) +AC_INIT([gfpm-mcs-plugin], [gfpm_mcs_plugin_version], [priyankmg@gmail.com]) +AC_PREREQ([2.50]) +AC_REVISION([$Id: configure.in.in 2292 2007-01-01 16:46:03Z pollux $]) +AC_PROG_MAKE_SET() + +dnl *************************** +dnl *** Initialize automake *** +dnl *************************** +AM_INIT_AUTOMAKE([AC_PACKAGE_TARNAME()], [AC_PACKAGE_VERSION()]) +AM_CONFIG_HEADER([config.h]) +AM_MAINTAINER_MODE() + +dnl ******************************** +dnl *** Check for basic programs *** +dnl ******************************** +AC_PROG_CC() +AC_PROG_INSTALL() +AC_PROG_INTLTOOL([0.31], [no-xml]) +AC_PROG_LIBTOOL() + +dnl *************************************** +dnl *** Check for standard header files *** +dnl *************************************** +AC_HEADER_STDC() + +dnl ****************************** +dnl *** Check for i18n support *** +dnl ****************************** +XDT_I18N() + +dnl *********************************** +dnl *** Check for required packages *** +dnl *********************************** +XDT_CHECK_PACKAGE([GTK], [gtk+-2.0], [2.6.0]) +XDT_CHECK_PACKAGE([LIBXFCEGUI4], [libxfcegui4-1.0], [4.4.1]) + +dnl ********************************** +dnl *** Check for xfce-mcs-manager *** +dnl ********************************** +XDT_XFCE_MCS_PLUGIN([XFCE_MCS_MANAGER], [4.4.1]) + +XDT_FEATURE_DEBUG + +AC_OUTPUT([ +Makefile +icons/Makefile +icons/48x48/Makefile +src/Makefile +po/Makefile.in +]) diff --git a/gfpm-mcs-plugin/icons/48x48/Makefile.am b/gfpm-mcs-plugin/icons/48x48/Makefile.am new file mode 100644 index 0000000..08e1d26 --- /dev/null +++ b/gfpm-mcs-plugin/icons/48x48/Makefile.am @@ -0,0 +1,7 @@ +iconsdir = $(datadir)/icons/hicolor/48x48/apps +icons_DATA = \ + gfpm-mcs.png + +EXTRA_DIST = \ + $(icons_DATA) + diff --git a/gfpm-mcs-plugin/icons/48x48/Makefile.in b/gfpm-mcs-plugin/icons/48x48/Makefile.in new file mode 100644 index 0000000..0b22c2c --- /dev/null +++ b/gfpm-mcs-plugin/icons/48x48/Makefile.in @@ -0,0 +1,415 @@ +# Makefile.in generated by automake 1.10 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005, 2006 Free Software Foundation, Inc. +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + +VPATH = @srcdir@ +pkgdatadir = $(datadir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +subdir = icons/48x48 +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/configure.in +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +SOURCES = +DIST_SOURCES = +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = `echo $$p | sed -e 's|^.*/||'`; +am__installdirs = "$(DESTDIR)$(iconsdir)" +iconsDATA_INSTALL = $(INSTALL_DATA) +DATA = $(icons_DATA) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +ALL_LINGUAS = @ALL_LINGUAS@ +AMTAR = @AMTAR@ +AR = @AR@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CATALOGS = @CATALOGS@ +CATOBJEXT = @CATOBJEXT@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CPP = @CPP@ +CPPFLAGS = @CPPFLAGS@ +CXX = @CXX@ +CXXCPP = @CXXCPP@ +CXXDEPMODE = @CXXDEPMODE@ +CXXFLAGS = @CXXFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DATADIRNAME = @DATADIRNAME@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +ECHO = @ECHO@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +EXEEXT = @EXEEXT@ +F77 = @F77@ +FFLAGS = @FFLAGS@ +GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GMOFILES = @GMOFILES@ +GMSGFMT = @GMSGFMT@ +GREP = @GREP@ +GTK_CFLAGS = @GTK_CFLAGS@ +GTK_LIBS = @GTK_LIBS@ +GTK_REQUIRED_VERSION = @GTK_REQUIRED_VERSION@ +GTK_VERSION = @GTK_VERSION@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INSTOBJEXT = @INSTOBJEXT@ +INTLLIBS = @INTLLIBS@ +INTLTOOL_CAVES_RULE = @INTLTOOL_CAVES_RULE@ +INTLTOOL_DESKTOP_RULE = @INTLTOOL_DESKTOP_RULE@ +INTLTOOL_DIRECTORY_RULE = @INTLTOOL_DIRECTORY_RULE@ +INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ +INTLTOOL_KBD_RULE = @INTLTOOL_KBD_RULE@ +INTLTOOL_KEYS_RULE = @INTLTOOL_KEYS_RULE@ +INTLTOOL_MERGE = @INTLTOOL_MERGE@ +INTLTOOL_OAF_RULE = @INTLTOOL_OAF_RULE@ +INTLTOOL_PERL = @INTLTOOL_PERL@ +INTLTOOL_POLICY_RULE = @INTLTOOL_POLICY_RULE@ +INTLTOOL_PONG_RULE = @INTLTOOL_PONG_RULE@ +INTLTOOL_PROP_RULE = @INTLTOOL_PROP_RULE@ +INTLTOOL_SCHEMAS_RULE = @INTLTOOL_SCHEMAS_RULE@ +INTLTOOL_SERVER_RULE = @INTLTOOL_SERVER_RULE@ +INTLTOOL_SERVICE_RULE = @INTLTOOL_SERVICE_RULE@ +INTLTOOL_SHEET_RULE = @INTLTOOL_SHEET_RULE@ +INTLTOOL_SOUNDLIST_RULE = @INTLTOOL_SOUNDLIST_RULE@ +INTLTOOL_THEME_RULE = @INTLTOOL_THEME_RULE@ +INTLTOOL_UI_RULE = @INTLTOOL_UI_RULE@ +INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ +INTLTOOL_XAM_RULE = @INTLTOOL_XAM_RULE@ +INTLTOOL_XML_NOMERGE_RULE = @INTLTOOL_XML_NOMERGE_RULE@ +INTLTOOL_XML_RULE = @INTLTOOL_XML_RULE@ +LDFLAGS = @LDFLAGS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LIBTOOL = @LIBTOOL@ +LIBXFCEGUI4_CFLAGS = @LIBXFCEGUI4_CFLAGS@ +LIBXFCEGUI4_LIBS = @LIBXFCEGUI4_LIBS@ +LIBXFCEGUI4_REQUIRED_VERSION = @LIBXFCEGUI4_REQUIRED_VERSION@ +LIBXFCEGUI4_VERSION = @LIBXFCEGUI4_VERSION@ +LN_S = @LN_S@ +LTLIBOBJS = @LTLIBOBJS@ +MAINT = @MAINT@ +MAKEINFO = @MAKEINFO@ +MKDIR_P = @MKDIR_P@ +MKINSTALLDIRS = @MKINSTALLDIRS@ +MSGFMT = @MSGFMT@ +MSGFMT_OPTS = @MSGFMT_OPTS@ +OBJEXT = @OBJEXT@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PKG_CONFIG = @PKG_CONFIG@ +POFILES = @POFILES@ +POSUB = @POSUB@ +PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ +RANLIB = @RANLIB@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +USE_NLS = @USE_NLS@ +VERSION = @VERSION@ +XFCE_MCS_MANAGER_CFLAGS = @XFCE_MCS_MANAGER_CFLAGS@ +XFCE_MCS_MANAGER_LIBS = @XFCE_MCS_MANAGER_LIBS@ +XFCE_MCS_MANAGER_PLUGINSDIR = @XFCE_MCS_MANAGER_PLUGINSDIR@ +XFCE_MCS_MANAGER_REQUIRED_VERSION = @XFCE_MCS_MANAGER_REQUIRED_VERSION@ +XFCE_MCS_MANAGER_VERSION = @XFCE_MCS_MANAGER_VERSION@ +XGETTEXT = @XGETTEXT@ +XGETTEXT_ARGS = @XGETTEXT_ARGS@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_CXX = @ac_ct_CXX@ +ac_ct_F77 = @ac_ct_F77@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +iconsdir = $(datadir)/icons/hicolor/48x48/apps +icons_DATA = \ + gfpm-mcs.png + +EXTRA_DIST = \ + $(icons_DATA) + +all: all-am + +.SUFFIXES: +$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign icons/48x48/Makefile'; \ + cd $(top_srcdir) && \ + $(AUTOMAKE) --foreign icons/48x48/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs +install-iconsDATA: $(icons_DATA) + @$(NORMAL_INSTALL) + test -z "$(iconsdir)" || $(MKDIR_P) "$(DESTDIR)$(iconsdir)" + @list='$(icons_DATA)'; for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ + f=$(am__strip_dir) \ + echo " $(iconsDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(iconsdir)/$$f'"; \ + $(iconsDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(iconsdir)/$$f"; \ + done + +uninstall-iconsDATA: + @$(NORMAL_UNINSTALL) + @list='$(icons_DATA)'; for p in $$list; do \ + f=$(am__strip_dir) \ + echo " rm -f '$(DESTDIR)$(iconsdir)/$$f'"; \ + rm -f "$(DESTDIR)$(iconsdir)/$$f"; \ + done +tags: TAGS +TAGS: + +ctags: CTAGS +CTAGS: + + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ + fi; \ + cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ + else \ + test -f $(distdir)/$$file \ + || cp -p $$d/$$file $(distdir)/$$file \ + || exit 1; \ + fi; \ + done +check-am: all-am +check: check-am +all-am: Makefile $(DATA) +installdirs: + for dir in "$(DESTDIR)$(iconsdir)"; do \ + test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + `test -z '$(STRIP)' || \ + echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-generic clean-libtool mostlyclean-am + +distclean: distclean-am + -rm -f Makefile +distclean-am: clean-am distclean-generic + +dvi: dvi-am + +dvi-am: + +html: html-am + +info: info-am + +info-am: + +install-data-am: install-iconsDATA + +install-dvi: install-dvi-am + +install-exec-am: + +install-html: install-html-am + +install-info: install-info-am + +install-man: + +install-pdf: install-pdf-am + +install-ps: install-ps-am + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-generic mostlyclean-libtool + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-iconsDATA + +.MAKE: install-am install-strip + +.PHONY: all all-am check check-am clean clean-generic clean-libtool \ + distclean distclean-generic distclean-libtool distdir dvi \ + dvi-am html html-am info info-am install install-am \ + install-data install-data-am install-dvi install-dvi-am \ + install-exec install-exec-am install-html install-html-am \ + install-iconsDATA install-info install-info-am install-man \ + install-pdf install-pdf-am install-ps install-ps-am \ + install-strip installcheck installcheck-am installdirs \ + maintainer-clean maintainer-clean-generic mostlyclean \ + mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ + uninstall uninstall-am uninstall-iconsDATA + +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/gfpm-mcs-plugin/icons/48x48/gfpm-mcs.png b/gfpm-mcs-plugin/icons/48x48/gfpm-mcs.png new file mode 100644 index 0000000..ca48431 Binary files /dev/null and b/gfpm-mcs-plugin/icons/48x48/gfpm-mcs.png differ diff --git a/gfpm-mcs-plugin/icons/Makefile.am b/gfpm-mcs-plugin/icons/Makefile.am new file mode 100644 index 0000000..8b03251 --- /dev/null +++ b/gfpm-mcs-plugin/icons/Makefile.am @@ -0,0 +1,16 @@ +SUBDIRS = \ + 48x48 + +gtk_update_icon_cache = gtk-update-icon-cache -f -t $(datadir)/icons/hicolor + +install-data-hook: + @-if test -z "$(DESTDIR)"; then \ + echo "Updating Gtk icon cache."; \ + $(gtk_update_icon_cache); \ + else \ + echo "*** Icon cache not updated. Remember to run:"; \ + echo "***"; \ + echo "*** $(gtk_update_icon_cache)"; \ + echo "***"; \ + fi + diff --git a/gfpm-mcs-plugin/icons/Makefile.in b/gfpm-mcs-plugin/icons/Makefile.in new file mode 100644 index 0000000..9aad327 --- /dev/null +++ b/gfpm-mcs-plugin/icons/Makefile.in @@ -0,0 +1,553 @@ +# Makefile.in generated by automake 1.10 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005, 2006 Free Software Foundation, Inc. +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ +VPATH = @srcdir@ +pkgdatadir = $(datadir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +subdir = icons +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/configure.in +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +SOURCES = +DIST_SOURCES = +RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \ + html-recursive info-recursive install-data-recursive \ + install-dvi-recursive install-exec-recursive \ + install-html-recursive install-info-recursive \ + install-pdf-recursive install-ps-recursive install-recursive \ + installcheck-recursive installdirs-recursive pdf-recursive \ + ps-recursive uninstall-recursive +RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ + distclean-recursive maintainer-clean-recursive +ETAGS = etags +CTAGS = ctags +DIST_SUBDIRS = $(SUBDIRS) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +ALL_LINGUAS = @ALL_LINGUAS@ +AMTAR = @AMTAR@ +AR = @AR@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CATALOGS = @CATALOGS@ +CATOBJEXT = @CATOBJEXT@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CPP = @CPP@ +CPPFLAGS = @CPPFLAGS@ +CXX = @CXX@ +CXXCPP = @CXXCPP@ +CXXDEPMODE = @CXXDEPMODE@ +CXXFLAGS = @CXXFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DATADIRNAME = @DATADIRNAME@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +ECHO = @ECHO@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +EXEEXT = @EXEEXT@ +F77 = @F77@ +FFLAGS = @FFLAGS@ +GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GMOFILES = @GMOFILES@ +GMSGFMT = @GMSGFMT@ +GREP = @GREP@ +GTK_CFLAGS = @GTK_CFLAGS@ +GTK_LIBS = @GTK_LIBS@ +GTK_REQUIRED_VERSION = @GTK_REQUIRED_VERSION@ +GTK_VERSION = @GTK_VERSION@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INSTOBJEXT = @INSTOBJEXT@ +INTLLIBS = @INTLLIBS@ +INTLTOOL_CAVES_RULE = @INTLTOOL_CAVES_RULE@ +INTLTOOL_DESKTOP_RULE = @INTLTOOL_DESKTOP_RULE@ +INTLTOOL_DIRECTORY_RULE = @INTLTOOL_DIRECTORY_RULE@ +INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ +INTLTOOL_KBD_RULE = @INTLTOOL_KBD_RULE@ +INTLTOOL_KEYS_RULE = @INTLTOOL_KEYS_RULE@ +INTLTOOL_MERGE = @INTLTOOL_MERGE@ +INTLTOOL_OAF_RULE = @INTLTOOL_OAF_RULE@ +INTLTOOL_PERL = @INTLTOOL_PERL@ +INTLTOOL_POLICY_RULE = @INTLTOOL_POLICY_RULE@ +INTLTOOL_PONG_RULE = @INTLTOOL_PONG_RULE@ +INTLTOOL_PROP_RULE = @INTLTOOL_PROP_RULE@ +INTLTOOL_SCHEMAS_RULE = @INTLTOOL_SCHEMAS_RULE@ +INTLTOOL_SERVER_RULE = @INTLTOOL_SERVER_RULE@ +INTLTOOL_SERVICE_RULE = @INTLTOOL_SERVICE_RULE@ +INTLTOOL_SHEET_RULE = @INTLTOOL_SHEET_RULE@ +INTLTOOL_SOUNDLIST_RULE = @INTLTOOL_SOUNDLIST_RULE@ +INTLTOOL_THEME_RULE = @INTLTOOL_THEME_RULE@ +INTLTOOL_UI_RULE = @INTLTOOL_UI_RULE@ +INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ +INTLTOOL_XAM_RULE = @INTLTOOL_XAM_RULE@ +INTLTOOL_XML_NOMERGE_RULE = @INTLTOOL_XML_NOMERGE_RULE@ +INTLTOOL_XML_RULE = @INTLTOOL_XML_RULE@ +LDFLAGS = @LDFLAGS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LIBTOOL = @LIBTOOL@ +LIBXFCEGUI4_CFLAGS = @LIBXFCEGUI4_CFLAGS@ +LIBXFCEGUI4_LIBS = @LIBXFCEGUI4_LIBS@ +LIBXFCEGUI4_REQUIRED_VERSION = @LIBXFCEGUI4_REQUIRED_VERSION@ +LIBXFCEGUI4_VERSION = @LIBXFCEGUI4_VERSION@ +LN_S = @LN_S@ +LTLIBOBJS = @LTLIBOBJS@ +MAINT = @MAINT@ +MAKEINFO = @MAKEINFO@ +MKDIR_P = @MKDIR_P@ +MKINSTALLDIRS = @MKINSTALLDIRS@ +MSGFMT = @MSGFMT@ +MSGFMT_OPTS = @MSGFMT_OPTS@ +OBJEXT = @OBJEXT@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PKG_CONFIG = @PKG_CONFIG@ +POFILES = @POFILES@ +POSUB = @POSUB@ +PO_IN_DATADIR_FALSE = @PO_IN_DATADIR_FALSE@ +PO_IN_DATADIR_TRUE = @PO_IN_DATADIR_TRUE@ +RANLIB = @RANLIB@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +USE_NLS = @USE_NLS@ +VERSION = @VERSION@ +XFCE_MCS_MANAGER_CFLAGS = @XFCE_MCS_MANAGER_CFLAGS@ +XFCE_MCS_MANAGER_LIBS = @XFCE_MCS_MANAGER_LIBS@ +XFCE_MCS_MANAGER_PLUGINSDIR = @XFCE_MCS_MANAGER_PLUGINSDIR@ +XFCE_MCS_MANAGER_REQUIRED_VERSION = @XFCE_MCS_MANAGER_REQUIRED_VERSION@ +XFCE_MCS_MANAGER_VERSION = @XFCE_MCS_MANAGER_VERSION@ +XGETTEXT = @XGETTEXT@ +XGETTEXT_ARGS = @XGETTEXT_ARGS@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_CXX = @ac_ct_CXX@ +ac_ct_F77 = @ac_ct_F77@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +SUBDIRS = \ + 48x48 + +gtk_update_icon_cache = gtk-update-icon-cache -f -t $(datadir)/icons/hicolor +all: all-recursive + +.SUFFIXES: +$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign icons/Makefile'; \ + cd $(top_srcdir) && \ + $(AUTOMAKE) --foreign icons/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs + +# This directory's subdirectories are mostly independent; you can cd +# into them and run `make' without going through this Makefile. +# To change the values of `make' variables: instead of editing Makefiles, +# (1) if the variable is set in `config.status', edit `config.status' +# (which will cause the Makefiles to be regenerated when you run `make'); +# (2) otherwise, pass the desired values on the `make' command line. +$(RECURSIVE_TARGETS): + @failcom='exit 1'; \ + for f in x $$MAKEFLAGS; do \ + case $$f in \ + *=* | --[!k]*);; \ + *k*) failcom='fail=yes';; \ + esac; \ + done; \ + dot_seen=no; \ + target=`echo $@ | sed s/-recursive//`; \ + list='$(SUBDIRS)'; for subdir in $$list; do \ + echo "Making $$target in $$subdir"; \ + if test "$$subdir" = "."; then \ + dot_seen=yes; \ + local_target="$$target-am"; \ + else \ + local_target="$$target"; \ + fi; \ + (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ + || eval $$failcom; \ + done; \ + if test "$$dot_seen" = "no"; then \ + $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ + fi; test -z "$$fail" + +$(RECURSIVE_CLEAN_TARGETS): + @failcom='exit 1'; \ + for f in x $$MAKEFLAGS; do \ + case $$f in \ + *=* | --[!k]*);; \ + *k*) failcom='fail=yes';; \ + esac; \ + done; \ + dot_seen=no; \ + case "$@" in \ + distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ + *) list='$(SUBDIRS)' ;; \ + esac; \ + rev=''; for subdir in $$list; do \ + if test "$$subdir" = "."; then :; else \ + rev="$$subdir $$rev"; \ + fi; \ + done; \ + rev="$$rev ."; \ + target=`echo $@ | sed s/-recursive//`; \ + for subdir in $$rev; do \ + echo "Making $$target in $$subdir"; \ + if test "$$subdir" = "."; then \ + local_target="$$target-am"; \ + else \ + local_target="$$target"; \ + fi; \ + (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ + || eval $$failcom; \ + done && test -z "$$fail" +tags-recursive: + list='$(SUBDIRS)'; for subdir in $$list; do \ + test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \ + done +ctags-recursive: + list='$(SUBDIRS)'; for subdir in $$list; do \ + test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \ + done + +ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) ' { files[$$0] = 1; } \ + END { for (i in files) print i; }'`; \ + mkid -fID $$unique +tags: TAGS + +TAGS: tags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) + tags=; \ + here=`pwd`; \ + if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ + include_option=--etags-include; \ + empty_fix=.; \ + else \ + include_option=--include; \ + empty_fix=; \ + fi; \ + list='$(SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ + test ! -f $$subdir/TAGS || \ + tags="$$tags $$include_option=$$here/$$subdir/TAGS"; \ + fi; \ + done; \ + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) ' { files[$$0] = 1; } \ + END { for (i in files) print i; }'`; \ + if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$tags $$unique; \ + fi +ctags: CTAGS +CTAGS: ctags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) + tags=; \ + here=`pwd`; \ + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) ' { files[$$0] = 1; } \ + END { for (i in files) print i; }'`; \ + test -z "$(CTAGS_ARGS)$$tags$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$tags $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && cd $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) $$here + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ + list='$(DISTFILES)'; \ + dist_files=`for file in $$list; do echo $$file; done | \ + sed -e "s|^$$srcdirstrip/||;t" \ + -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ + case $$dist_files in \ + */*) $(MKDIR_P) `echo "$$dist_files" | \ + sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ + sort -u` ;; \ + esac; \ + for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ + fi; \ + cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ + else \ + test -f $(distdir)/$$file \ + || cp -p $$d/$$file $(distdir)/$$file \ + || exit 1; \ + fi; \ + done + list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ + test -d "$(distdir)/$$subdir" \ + || $(MKDIR_P) "$(distdir)/$$subdir" \ + || exit 1; \ + distdir=`$(am__cd) $(distdir) && pwd`; \ + top_distdir=`$(am__cd) $(top_distdir) && pwd`; \ + (cd $$subdir && \ + $(MAKE) $(AM_MAKEFLAGS) \ + top_distdir="$$top_distdir" \ + distdir="$$distdir/$$subdir" \ + am__remove_distdir=: \ + am__skip_length_check=: \ + distdir) \ + || exit 1; \ + fi; \ + done +check-am: all-am +check: check-recursive +all-am: Makefile +installdirs: installdirs-recursive +installdirs-am: +install: install-recursive +install-exec: install-exec-recursive +install-data: install-data-recursive +uninstall: uninstall-recursive + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-recursive +install-strip: + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + `test -z '$(STRIP)' || \ + echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-recursive + +clean-am: clean-generic clean-libtool mostlyclean-am + +distclean: distclean-recursive + -rm -f Makefile +distclean-am: clean-am distclean-generic distclean-tags + +dvi: dvi-recursive + +dvi-am: + +html: html-recursive + +info: info-recursive + +info-am: + +install-data-am: + @$(NORMAL_INSTALL) + $(MAKE) $(AM_MAKEFLAGS) install-data-hook + +install-dvi: install-dvi-recursive + +install-exec-am: + +install-html: install-html-recursive + +install-info: install-info-recursive + +install-man: + +install-pdf: install-pdf-recursive + +install-ps: install-ps-recursive + +installcheck-am: + +maintainer-clean: maintainer-clean-recursive + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-recursive + +mostlyclean-am: mostlyclean-generic mostlyclean-libtool + +pdf: pdf-recursive + +pdf-am: + +ps: ps-recursive + +ps-am: + +uninstall-am: + +.MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) install-am \ + install-data-am install-strip + +.PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \ + all all-am check check-am clean clean-generic clean-libtool \ + ctags ctags-recursive distclean distclean-generic \ + distclean-libtool distclean-tags distdir dvi dvi-am html \ + html-am info info-am install install-am install-data \ + install-data-am install-data-hook install-dvi install-dvi-am \ + install-exec install-exec-am install-html install-html-am \ + install-info install-info-am install-man install-pdf \ + install-pdf-am install-ps install-ps-am install-strip \ + installcheck installcheck-am installdirs installdirs-am \ + maintainer-clean maintainer-clean-generic mostlyclean \ + mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ + tags tags-recursive uninstall uninstall-am + + +install-data-hook: + @-if test -z "$(DESTDIR)"; then \ + echo "Updating Gtk icon cache."; \ + $(gtk_update_icon_cache); \ + else \ + echo "*** Icon cache not updated. Remember to run:"; \ + echo "***"; \ + echo "*** $(gtk_update_icon_cache)"; \ + echo "***"; \ + fi +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/gfpm-mcs-plugin/po/ChangeLog b/gfpm-mcs-plugin/po/ChangeLog new file mode 100644 index 0000000..e69de29 diff --git a/gfpm-mcs-plugin/po/LINGUAS b/gfpm-mcs-plugin/po/LINGUAS new file mode 100644 index 0000000..e69de29 diff --git a/gfpm-mcs-plugin/po/Makevars b/gfpm-mcs-plugin/po/Makevars new file mode 100644 index 0000000..495f29e --- /dev/null +++ b/gfpm-mcs-plugin/po/Makevars @@ -0,0 +1,43 @@ +# Makefile variables for PO directory in any package using GNU gettext. + +# Usually the message domain is the same as the package name. +DOMAIN = gfpm-mcs-plugin + +# These two variables depend on the location of this directory. +subdir = po +top_builddir = ../ + +# These options get passed to xgettext. +XGETTEXT_OPTIONS = \ + --keyword=_ --flag=_:1:pass-c-format \ + --keyword=N_ --flag=N_:1:pass-c-format + +# This is the copyright holder that gets inserted into the header of the +# $(DOMAIN).pot file. Set this to the copyright holder of the surrounding +# package. (Note that the msgstr strings, extracted from the package's +# sources, belong to the copyright holder of the package.) Translators are +# expected to transfer the copyright for their translations to this person +# or entity, or to disclaim their copyright. The empty string stands for +# the public domain; in this case the translators are expected to disclaim +# their copyright. +COPYRIGHT_HOLDER = Yoyodyne, Inc. + +# This is the email address or URL to which the translators shall report +# bugs in the untranslated strings: +# - Strings which are not entire sentences, see the maintainer guidelines +# in the GNU gettext documentation, section 'Preparing Strings'. +# - Strings which use unclear terms or require additional context to be +# understood. +# - Strings which make invalid assumptions about notation of date, time or +# money. +# - Pluralisation problems. +# - Incorrect English spelling. +# - Incorrect formatting. +# It can be your email address, or a mailing list address where translators +# can write to without being subscribed, or the URL of a web page through +# which the translators can contact you. +MSGID_BUGS_ADDRESS = bug-gnu-gettext@gnu.org + +# This is the list of locale categories, beyond LC_MESSAGES, for which the +# message catalogs shall be used. It is usually empty. +EXTRA_LOCALE_CATEGORIES = diff --git a/gfpm-mcs-plugin/po/POTFILES.in b/gfpm-mcs-plugin/po/POTFILES.in new file mode 100644 index 0000000..d8f0e58 --- /dev/null +++ b/gfpm-mcs-plugin/po/POTFILES.in @@ -0,0 +1,2 @@ +src/gfpm-plugin.c + diff --git a/gfpm-mcs-plugin/src/Makefile.am b/gfpm-mcs-plugin/src/Makefile.am new file mode 100644 index 0000000..4fd3475 --- /dev/null +++ b/gfpm-mcs-plugin/src/Makefile.am @@ -0,0 +1,27 @@ +# $Id: Makefile.am 2284 2006-12-29 14:39:00Z pollux $ + +INCLUDES = \ + -I$(top_srcdir) \ + -I$(top_builddir) \ + -DLOCALEDIR=\""$(localedir)"\" + +plugindir = $(XFCE_MCS_MANAGER_PLUGINSDIR) +plugin_LTLIBRARIES = \ + gfpm_plugin.la + +gfpm_plugin_la_SOURCES = \ + gfpm-plugin.c + +gfpm_plugin_la_CFLAGS = \ + $(LIBXFCEGUI4_CFLAGS) \ + $(XFCE_MCS_MANAGER_CFLAGS) + +gfpm_plugin_la_LDFLAGS = \ + -avoid-version \ + -module \ + -no-undefined + +gfpm_plugin_la_LIBADD = \ + $(XFCE_MCS_MANAGER_LIBS) + +# vi:set ts=8 sw=8 noet ai nocindent syntax=automake: diff --git a/gfpm-mcs-plugin/src/gfpm-plugin.c b/gfpm-mcs-plugin/src/gfpm-plugin.c new file mode 100644 index 0000000..26eb4f5 --- /dev/null +++ b/gfpm-mcs-plugin/src/gfpm-plugin.c @@ -0,0 +1,107 @@ +/* + * Copyright (c) 2007 Priyank Gosalia + * Copyright (c) 2007 Bernhard Walle + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; You may only use version 2 of the License, + * you have no option to use any other version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + * + */ + +#ifdef HAVE_CONFIG_H +#include +#endif + +#ifdef HAVE_STDLIB_H +#include +#endif + +#include + +#include + +#include +#include + +#include + +#define GFPM_ICON "gfpm-mcs" +#define GFPM_BIN "/usr/bin/gfpm" + +static gchar *xterm_argv[] = { + "xterm", + "-T", "GFpm starter -- DONT'T CLOSE THAT WINDOW", + "-geometry", "50x1", + "+tb -e", "su -c " GFPM_BIN, + NULL +}; + +static gchar *gnomesu_argv[] = { + "gksu", + GFPM_BIN, + NULL +}; + + +/* static prototypes */ +static void run_dialog (McsPlugin *); + +/* + */ +McsPluginInitResult mcs_plugin_init (McsPlugin *plugin) +{ + gchar *where; + GError *error = NULL; + + xfce_textdomain (GETTEXT_PACKAGE, LOCALEDIR, "UTF-8"); + + plugin->plugin_name = g_strdup ("gfpm"); + /* the button label in the xfce-mcs-manager dialog */ + plugin->caption = g_strdup (Q_ ("Button Label|Package Manager")); + plugin->run_dialog = run_dialog; + plugin->icon = xfce_themed_icon_load (GFPM_ICON, 48); + if (plugin->icon) { + g_object_set_data_full (G_OBJECT (plugin->icon), "mcs-plugin-icon-name", + g_strdup (GFPM_ICON), g_free); + } + + return MCS_PLUGIN_INIT_OK; +} + +/* + */ +static void run_dialog(McsPlugin * plugin) +{ + GError *error = NULL; + + /* try gnomesu first */ + if (!g_spawn_async + (NULL, gnomesu_argv, NULL, + G_SPAWN_SEARCH_PATH | G_SPAWN_STDOUT_TO_DEV_NULL | + G_SPAWN_STDERR_TO_DEV_NULL, NULL, NULL, NULL, NULL)) { + + /* and fallback to xterm */ + if (!g_spawn_async + (NULL, xterm_argv, NULL, + G_SPAWN_SEARCH_PATH | G_SPAWN_STDOUT_TO_DEV_NULL | + G_SPAWN_STDERR_TO_DEV_NULL, NULL, NULL, NULL, &error)) { + g_error ("Could not start GFpm: %s", error->message); + g_error_free (error); + } + } +} + +/* */ +MCS_PLUGIN_CHECK_INIT + +/* vim: set sw=4 ts=4 et: */ From priyank at frugalware.org Fri Sep 21 11:37:06 2007 From: priyank at frugalware.org (Priyank) Date: Fri Sep 21 11:37:07 2007 Subject: [Frugalware-git] fw-control-center: gnetconfig-mcs-plugin: spell fix Message-ID: <20070921093706.7642E1E68016@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=fw-control-center.git;a=commitdiff;h=644218a4c02b49239f900039c9b1f8a8baafefa7 commit 644218a4c02b49239f900039c9b1f8a8baafefa7 Author: Priyank Date: Fri Sep 21 15:04:13 2007 +0530 gnetconfig-mcs-plugin: spell fix diff --git a/gnetconfig-mcs-plugin/src/gnetconfig-plugin.c b/gnetconfig-mcs-plugin/src/gnetconfig-plugin.c index 7450da8..404770e 100644 --- a/gnetconfig-mcs-plugin/src/gnetconfig-plugin.c +++ b/gnetconfig-mcs-plugin/src/gnetconfig-plugin.c @@ -40,7 +40,7 @@ static gchar *xterm_argv[] = { "xterm", - "-T", "Gnetconfig starter -- DONT'T CLOSE THAT WINDOW", + "-T", "Gnetconfig starter -- DON'T CLOSE THAT WINDOW", "-geometry", "50x1", "-e", "su -c " GNETCONFIG_BIN, NULL From priyank at frugalware.org Fri Sep 21 11:39:29 2007 From: priyank at frugalware.org (Priyank) Date: Fri Sep 21 11:39:31 2007 Subject: [Frugalware-git] fw-control-center: gnetconfig-mcs-plugin: 0.1.1 released (updated NEWS) Message-ID: <20070921093929.CC1B01E68019@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=fw-control-center.git;a=commitdiff;h=31e1a4e7ad2f1e7185089f641e835ff9a0dd3d00 commit 31e1a4e7ad2f1e7185089f641e835ff9a0dd3d00 Author: Priyank Date: Fri Sep 21 15:06:41 2007 +0530 gnetconfig-mcs-plugin: 0.1.1 released (updated NEWS) diff --git a/gnetconfig-mcs-plugin/NEWS b/gnetconfig-mcs-plugin/NEWS index c6a967f..d911020 100644 --- a/gnetconfig-mcs-plugin/NEWS +++ b/gnetconfig-mcs-plugin/NEWS @@ -1,3 +1,6 @@ VERSION DESCRIPTION ------------------------------------------------------------------------------------------ +0.1.1 - Spelling fix in setting xterm title + - Use gnetconfig-mcs-plugin's .po files and not + the ones of gnetconfig. 0.1.0 (2007-09-06) - Initial Release diff --git a/gnetconfig-mcs-plugin/configure.in b/gnetconfig-mcs-plugin/configure.in index f0887b8..8ef2edb 100644 --- a/gnetconfig-mcs-plugin/configure.in +++ b/gnetconfig-mcs-plugin/configure.in @@ -6,7 +6,7 @@ dnl *** Version information *** dnl *************************** m4_define([gnetconfig_mcs_plugin_version_major], [0]) m4_define([gnetconfig_mcs_plugin_version_minor], [1]) -m4_define([gnetconfig_mcs_plugin_version_micro], [0]) +m4_define([gnetconfig_mcs_plugin_version_micro], [1]) m4_define([gnetconfig_mcs_plugin_version_nano], []) m4_define([gnetconfig_mcs_plugin_version_tag], []) m4_define([gnetconfig_mcs_plugin_version], [gnetconfig_mcs_plugin_version_major().gnetconfig_mcs_plugin_version_minor().gnetconfig_mcs_plugin_version_micro()ifelse(gnetconfig_mcs_plugin_version_nano(), [], [], [.gnetconfig_mcs_plugin_version_nano()])ifelse(gnetconfig_mcs_plugin_version_tag(), [svn], [gnetconfig_mcs_plugin_version_tag()-gnetconfig_mcs_plugin_version_build()], [gnetconfig_mcs_plugin_version_tag()])]) From priyank at frugalware.org Fri Sep 21 11:42:52 2007 From: priyank at frugalware.org (Priyank) Date: Fri Sep 21 11:42:54 2007 Subject: [Frugalware-git] fw-control-center: gnetconfig-mcs-plugin: NEWS: forgot to add a note about new translations Message-ID: <20070921094252.DF9671E6801C@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=fw-control-center.git;a=commitdiff;h=fcb7870b5b0ae1bab2d70b00753fdd62c2845de5 commit fcb7870b5b0ae1bab2d70b00753fdd62c2845de5 Author: Priyank Date: Fri Sep 21 15:10:04 2007 +0530 gnetconfig-mcs-plugin: NEWS: forgot to add a note about new translations diff --git a/gnetconfig-mcs-plugin/NEWS b/gnetconfig-mcs-plugin/NEWS index d911020..4a00198 100644 --- a/gnetconfig-mcs-plugin/NEWS +++ b/gnetconfig-mcs-plugin/NEWS @@ -1,6 +1,7 @@ VERSION DESCRIPTION ------------------------------------------------------------------------------------------ -0.1.1 - Spelling fix in setting xterm title - - Use gnetconfig-mcs-plugin's .po files and not - the ones of gnetconfig. +0.1.1 - Spelling fix in setting xterm title + - Use gnetconfig-mcs-plugin's .po files and not + the ones of gnetconfig. + - New translations - da_DK, hu_HU, fr_FR 0.1.0 (2007-09-06) - Initial Release From priyank at frugalware.org Fri Sep 21 12:04:03 2007 From: priyank at frugalware.org (Priyank) Date: Fri Sep 21 12:04:06 2007 Subject: [Frugalware-git] frugalware-current: gfpm-mcs-plugin-0.1.0-1-i686 Message-ID: <20070921100403.B1F2B1E68020@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=283971f366827415b89f042f8905d12f24959260 commit 283971f366827415b89f042f8905d12f24959260 Author: Priyank Date: Fri Sep 21 15:29:55 2007 +0530 gfpm-mcs-plugin-0.1.0-1-i686 * New package / Initial import diff --git a/source/xfce4/gfpm-mcs-plugin/FrugalBuild b/source/xfce4/gfpm-mcs-plugin/FrugalBuild new file mode 100644 index 0000000..92c727d --- /dev/null +++ b/source/xfce4/gfpm-mcs-plugin/FrugalBuild @@ -0,0 +1,26 @@ +# Compiling Time: 0.06 SBU +# Maintainer: Priyank Gosalia + +pkgname=gfpm-mcs-plugin +pkgver=0.1.0 +pkgrel=1 +pkgdesc="GFpm plugin for Xfce4 settings manager." +url="ftp://ftp.frugalware.org/pub/other/fw-control-center/" +makedepends=('intltool' 'xfce4-dev-tools>=4.4.1') +depends=('libxfcegui4>=4.4.1' 'xfce-mcs-manager>=4.4.1' 'libxml2') +rodepends=('gfpm>=1.0.2') +groups=('xfce4' 'xfce-core') +archs=('i686' 'x86_64') +up2date="lynx -dump $url | grep $pkgname | Flasttar" +_F_gnome_iconcache="y" +Finclude gnome-scriptlet +source=($url/$pkgname-$pkgver.tar.gz) +signatures=(${source[0]}.asc) + +build() +{ + Fbuild + Fbuild_gnome_scriptlet +} + +# optimization OK From priyank at frugalware.org Fri Sep 21 12:10:09 2007 From: priyank at frugalware.org (Priyank) Date: Fri Sep 21 12:10:14 2007 Subject: [Frugalware-git] gfpm: gfpm-interface: use gtk_window_present() after the main window is displayed. Message-ID: <20070921101009.899611E68024@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gfpm.git;a=commitdiff;h=61cda5f446b22bef6f9ecf1c993a813d98ac59e9 commit 61cda5f446b22bef6f9ecf1c993a813d98ac59e9 Author: Priyank Date: Fri Sep 21 15:37:19 2007 +0530 gfpm-interface: use gtk_window_present() after the main window is displayed. diff --git a/src/gfpm-interface.c b/src/gfpm-interface.c index 6b3a910..e833d5f 100644 --- a/src/gfpm-interface.c +++ b/src/gfpm-interface.c @@ -276,6 +276,7 @@ gfpm_interface_init (void) gtk_window_set_title (GTK_WINDOW(gfpm_mw), title); g_free (title); gtk_widget_show (gfpm_mw); + gtk_window_present (gfpm_mw); /* unref the glade xml object */ g_object_unref (xml); From vmiklos at frugalware.org Fri Sep 21 12:36:10 2007 From: vmiklos at frugalware.org (VMiklos) Date: Fri Sep 21 12:36:14 2007 Subject: [Frugalware-git] pacman-g2: warning fixes (char* -> const char*) Message-ID: <20070921103610.C5174186800F@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=pacman-g2.git;a=commitdiff;h=f02d47085db7a597450994e8be8c9bf335fc11ab commit f02d47085db7a597450994e8be8c9bf335fc11ab Author: VMiklos Date: Fri Sep 21 12:35:06 2007 +0200 warning fixes (char* -> const char*) diff --git a/lib/libpacman/cache.c b/lib/libpacman/cache.c index 3d5ca6c..20286f7 100644 --- a/lib/libpacman/cache.c +++ b/lib/libpacman/cache.c @@ -139,7 +139,7 @@ int _pacman_db_remove_pkgfromcache(pmdb_t *db, pmpkg_t *pkg) return(0); } -pmpkg_t *_pacman_db_get_pkgfromcache(pmdb_t *db, char *target) +pmpkg_t *_pacman_db_get_pkgfromcache(pmdb_t *db, const char *target) { if(db == NULL) { return(NULL); @@ -228,7 +228,7 @@ pmlist_t *_pacman_db_get_grpcache(pmdb_t *db) return(db->grpcache); } -pmgrp_t *_pacman_db_get_grpfromcache(pmdb_t *db, char *target) +pmgrp_t *_pacman_db_get_grpfromcache(pmdb_t *db, const char *target) { pmlist_t *i; diff --git a/lib/libpacman/cache.h b/lib/libpacman/cache.h index 4b14389..0800ab4 100644 --- a/lib/libpacman/cache.h +++ b/lib/libpacman/cache.h @@ -32,12 +32,12 @@ void _pacman_db_free_pkgcache(pmdb_t *db); int _pacman_db_add_pkgincache(pmdb_t *db, pmpkg_t *pkg); int _pacman_db_remove_pkgfromcache(pmdb_t *db, pmpkg_t *pkg); pmlist_t *_pacman_db_get_pkgcache(pmdb_t *db); -pmpkg_t *_pacman_db_get_pkgfromcache(pmdb_t *db, char *target); +pmpkg_t *_pacman_db_get_pkgfromcache(pmdb_t *db, const char *target); /* groups */ int _pacman_db_load_grpcache(pmdb_t *db); void _pacman_db_free_grpcache(pmdb_t *db); pmlist_t *_pacman_db_get_grpcache(pmdb_t *db); -pmgrp_t *_pacman_db_get_grpfromcache(pmdb_t *db, char *target); +pmgrp_t *_pacman_db_get_grpfromcache(pmdb_t *db, const char *target); int _pacman_sync_cleancache(int level); #endif /* _PACMAN_CACHE_H */ diff --git a/lib/libpacman/package.c b/lib/libpacman/package.c index 8210160..8b5e604 100644 --- a/lib/libpacman/package.c +++ b/lib/libpacman/package.c @@ -438,7 +438,7 @@ error: /* Test for existence of a package in a pmlist_t* * of pmpkg_t* */ -pmpkg_t *_pacman_pkg_isin(char *needle, pmlist_t *haystack) +pmpkg_t *_pacman_pkg_isin(const char *needle, pmlist_t *haystack) { pmlist_t *lp; diff --git a/lib/libpacman/package.h b/lib/libpacman/package.h index c529a7c..9b454f8 100644 --- a/lib/libpacman/package.h +++ b/lib/libpacman/package.h @@ -98,7 +98,7 @@ pmpkg_t *_pacman_pkg_dup(pmpkg_t *pkg); void _pacman_pkg_free(void *data); int _pacman_pkg_cmp(const void *p1, const void *p2); pmpkg_t *_pacman_pkg_load(char *pkgfile); -pmpkg_t *_pacman_pkg_isin(char *needle, pmlist_t *haystack); +pmpkg_t *_pacman_pkg_isin(const char *needle, pmlist_t *haystack); int _pacman_pkg_splitname(char *target, char *name, char *version, int witharch); void *_pacman_pkg_getinfo(pmpkg_t *pkg, unsigned char parm); pmlist_t *_pacman_pkg_getowners(char *filename); From priyank at frugalware.org Fri Sep 21 12:37:45 2007 From: priyank at frugalware.org (Priyank) Date: Fri Sep 21 12:37:47 2007 Subject: [Frugalware-git] frugalware-current: gnetconfig-mcs-plugin-0.1.1-1-i686 Message-ID: <20070921103745.3E5181A68022@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=6bd827abef8671d8f8919934dcf50eb49bcc19c0 commit 6bd827abef8671d8f8919934dcf50eb49bcc19c0 Author: Priyank Date: Fri Sep 21 16:03:50 2007 +0530 gnetconfig-mcs-plugin-0.1.1-1-i686 * Version bump diff --git a/source/xfce4/gnetconfig-mcs-plugin/FrugalBuild b/source/xfce4/gnetconfig-mcs-plugin/FrugalBuild index 2a57b71..c1dc329 100644 --- a/source/xfce4/gnetconfig-mcs-plugin/FrugalBuild +++ b/source/xfce4/gnetconfig-mcs-plugin/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: Priyank Gosalia pkgname=gnetconfig-mcs-plugin -pkgver=0.1.0 +pkgver=0.1.1 pkgrel=1 pkgdesc="Gnetconfig plugin for Xfce4 settings manager." url="ftp://ftp.frugalware.org/pub/other/fw-control-center/" From vmiklos at frugalware.org Fri Sep 21 12:45:50 2007 From: vmiklos at frugalware.org (VMiklos) Date: Fri Sep 21 12:45:53 2007 Subject: [Frugalware-git] pacman-g2: new test for wrong arch Message-ID: <20070921104550.CB3F41A68033@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=pacman-g2.git;a=commitdiff;h=059fd2d1491fadbda79f2c272c83fbed6a9853d5 commit 059fd2d1491fadbda79f2c272c83fbed6a9853d5 Author: VMiklos Date: Fri Sep 21 12:44:48 2007 +0200 new test for wrong arch (ie when one would like to install an i686 pkg on x86_64) diff --git a/pactest/tests/upgrade070.py b/pactest/tests/upgrade070.py new file mode 100644 index 0000000..0a5a516 --- /dev/null +++ b/pactest/tests/upgrade070.py @@ -0,0 +1,10 @@ +self.description = "Upgrade with wrong architecture" + +sp = pmpkg("dummy") +sp.arch = "i586" +self.addpkg2db("sync", sp) + +self.args = "-S dummy" + +self.addrule("PACMAN_RETCODE=1") +self.addrule("!PKG_EXIST=dummy") From priyank at frugalware.org Fri Sep 21 12:53:11 2007 From: priyank at frugalware.org (Priyank) Date: Fri Sep 21 12:53:13 2007 Subject: [Frugalware-git] pacman-g2: develconf: added --prefix=/usr switch Message-ID: <20070921105311.A7C201E68025@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=pacman-g2.git;a=commitdiff;h=9bef2ca8e3d33b363d25e5eb7329f7e07acc9b49 commit 9bef2ca8e3d33b363d25e5eb7329f7e07acc9b49 Author: Priyank Date: Fri Sep 21 16:19:43 2007 +0530 develconf: added --prefix=/usr switch diff --git a/develconf b/develconf index 03cff5b..3e86c08 100644 --- a/develconf +++ b/develconf @@ -1,4 +1,5 @@ #!/bin/sh ./configure --enable-werror --enable-debug --disable-doxygen --disable-fakeroot \ - --disable-po4a --disable-python --disable-perl --disable-java --disable-csharp + --disable-po4a --disable-python --disable-perl --disable-java --disable-csharp \ + --prefix=/usr From vmiklos at frugalware.org Fri Sep 21 13:20:51 2007 From: vmiklos at frugalware.org (VMiklos) Date: Fri Sep 21 13:20:59 2007 Subject: [Frugalware-git] pacman-g2: _pacman_pkg_load(): indentation fix Message-ID: <20070921112051.DDC771E6803A@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=pacman-g2.git;a=commitdiff;h=7c697c36b60a437fb692439341894edf9931d595 commit 7c697c36b60a437fb692439341894edf9931d595 Author: VMiklos Date: Fri Sep 21 13:06:06 2007 +0200 _pacman_pkg_load(): indentation fix diff --git a/lib/libpacman/package.c b/lib/libpacman/package.c index e65727f..9fac8e3 100644 --- a/lib/libpacman/package.c +++ b/lib/libpacman/package.c @@ -340,24 +340,24 @@ pmpkg_t *_pacman_pkg_load(char *pkgfile) goto error; } if(!(handle->trans->flags & PM_TRANS_FLAG_NOARCH)) { - if(!strlen(info->arch)) { - _pacman_log(PM_LOG_ERROR, _("missing package architecture in %s"), pkgfile); - pm_errno = PM_ERR_PKG_INVALID; - unlink(descfile); - FREE(descfile); - close(fd); - goto error; - } - struct utsname name; - uname (&name); - if(strcmp(name.machine, info->arch)) { - _pacman_log(PM_LOG_ERROR, _("wrong package architecture in %s"), pkgfile); - pm_errno = PM_ERR_WRONG_ARCH; - unlink(descfile); - FREE(descfile); - close(fd); - goto error; - } + if(!strlen(info->arch)) { + _pacman_log(PM_LOG_ERROR, _("missing package architecture in %s"), pkgfile); + pm_errno = PM_ERR_PKG_INVALID; + unlink(descfile); + FREE(descfile); + close(fd); + goto error; + } + struct utsname name; + uname (&name); + if(strcmp(name.machine, info->arch)) { + _pacman_log(PM_LOG_ERROR, _("wrong package architecture in %s"), pkgfile); + pm_errno = PM_ERR_WRONG_ARCH; + unlink(descfile); + FREE(descfile); + close(fd); + goto error; + } } config = 1; unlink(descfile); From vmiklos at frugalware.org Fri Sep 21 13:20:51 2007 From: vmiklos at frugalware.org (VMiklos) Date: Fri Sep 21 13:21:01 2007 Subject: [Frugalware-git] pacman-g2: new NOARCH trans flag for _pacman_pkg_load() Message-ID: <20070921112051.D109D1E68039@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=pacman-g2.git;a=commitdiff;h=e0c3202fd95754ae1fe3e6151b3fc0c5c60a2ac1 commit e0c3202fd95754ae1fe3e6151b3fc0c5c60a2ac1 Author: VMiklos Date: Fri Sep 21 13:05:43 2007 +0200 new NOARCH trans flag for _pacman_pkg_load() diff --git a/lib/libpacman/package.c b/lib/libpacman/package.c index 8b5e604..e65727f 100644 --- a/lib/libpacman/package.c +++ b/lib/libpacman/package.c @@ -339,6 +339,7 @@ pmpkg_t *_pacman_pkg_load(char *pkgfile) close(fd); goto error; } + if(!(handle->trans->flags & PM_TRANS_FLAG_NOARCH)) { if(!strlen(info->arch)) { _pacman_log(PM_LOG_ERROR, _("missing package architecture in %s"), pkgfile); pm_errno = PM_ERR_PKG_INVALID; @@ -357,6 +358,7 @@ pmpkg_t *_pacman_pkg_load(char *pkgfile) close(fd); goto error; } + } config = 1; unlink(descfile); FREE(descfile); diff --git a/lib/libpacman/pacman.h b/lib/libpacman/pacman.h index 62f917f..f952ca2 100644 --- a/lib/libpacman/pacman.h +++ b/lib/libpacman/pacman.h @@ -273,6 +273,7 @@ enum { #define PM_TRANS_FLAG_NOCONFLICTS 0x800 #define PM_TRANS_FLAG_PRINTURIS 0x1000 #define PM_TRANS_FLAG_NOINTEGRITY 0x2000 +#define PM_TRANS_FLAG_NOARCH 0x4000 /* Transaction Events */ enum { From vmiklos at frugalware.org Fri Sep 21 13:20:52 2007 From: vmiklos at frugalware.org (VMiklos) Date: Fri Sep 21 13:21:03 2007 Subject: [Frugalware-git] pacman-g2: parseargs(): new --noarch option Message-ID: <20070921112052.22DF81E6803B@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=pacman-g2.git;a=commitdiff;h=10e0f062139bb989311a8cd30cb19d7da9f91321 commit 10e0f062139bb989311a8cd30cb19d7da9f91321 Author: VMiklos Date: Fri Sep 21 13:07:47 2007 +0200 parseargs(): new --noarch option diff --git a/src/pacman-g2/pacman-g2.c b/src/pacman-g2/pacman-g2.c index 768481a..ca1ccd1 100644 --- a/src/pacman-g2/pacman-g2.c +++ b/src/pacman-g2/pacman-g2.c @@ -107,6 +107,7 @@ static void usage(int op, char *myname) printf(_("options:\n")); printf(_(" -d, --nodeps skip dependency checks\n")); printf(_(" -f, --force force install, overwrite conflicting files\n")); + printf(_(" --noarch install the package, even if it is for an other arch\n")); } else if(op == PM_OP_REMOVE) { printf(_("usage: %s {-R --remove} [options] \n"), myname); printf(_("options:\n")); @@ -277,6 +278,7 @@ static int parseargs(int argc, char *argv[]) {"noscriptlet", no_argument, 0, 1005}, {"ask", required_argument, 0, 1006}, {"nointegrity", no_argument, 0, 1007}, + {"noarch", no_argument, 0, 1008}, {0, 0, 0, 0} }; char root[PATH_MAX]; @@ -304,6 +306,7 @@ static int parseargs(int argc, char *argv[]) case 1005: config->flags |= PM_TRANS_FLAG_NOSCRIPTLET; break; case 1006: config->noask = 1; config->ask = atoi(optarg); break; case 1007: config->flags |= PM_TRANS_FLAG_NOINTEGRITY; break; + case 1008: config->flags |= PM_TRANS_FLAG_NOARCH; break; case 'A': config->op = (config->op != PM_OP_MAIN ? 0 : PM_OP_ADD); break; case 'D': config->op = (config->op != PM_OP_MAIN ? 0 : PM_OP_DEPTEST); From vmiklos at frugalware.org Fri Sep 21 13:20:52 2007 From: vmiklos at frugalware.org (VMiklos) Date: Fri Sep 21 13:21:04 2007 Subject: [Frugalware-git] pacman-g2: tests/upgrade071.py: new test for --noarch Message-ID: <20070921112052.38A351E6803C@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=pacman-g2.git;a=commitdiff;h=2bcd4615984807f257a139cefc812489d72e9365 commit 2bcd4615984807f257a139cefc812489d72e9365 Author: VMiklos Date: Fri Sep 21 13:08:12 2007 +0200 tests/upgrade071.py: new test for --noarch diff --git a/pactest/tests/upgrade071.py b/pactest/tests/upgrade071.py new file mode 100644 index 0000000..aba5e78 --- /dev/null +++ b/pactest/tests/upgrade071.py @@ -0,0 +1,10 @@ +self.description = "Upgrade with wrong architecture and --noarch" + +sp = pmpkg("dummy") +sp.arch = "i586" +self.addpkg2db("sync", sp) + +self.args = "-S --noarch dummy" + +self.addrule("PACMAN_RETCODE=0") +self.addrule("PKG_EXIST=dummy") From vmiklos at frugalware.org Fri Sep 21 13:26:45 2007 From: vmiklos at frugalware.org (VMiklos) Date: Fri Sep 21 13:26:48 2007 Subject: [Frugalware-git] bmf: pacman-g2-3.6.3.9.g2bcd461-1-i686 Message-ID: <20070921112645.52D4B1678012@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=bmf.git;a=commitdiff;h=b133fbb7d4cac25b35964e015880007970d19d4e commit b133fbb7d4cac25b35964e015880007970d19d4e Author: VMiklos Date: Fri Sep 21 13:26:33 2007 +0200 pacman-g2-3.6.3.9.g2bcd461-1-i686 new devel build to test --noarch diff --git a/source/base/pacman-g2/FrugalBuild b/source/base/pacman-g2/FrugalBuild index 86d2ef4..1f3b966 100644 --- a/source/base/pacman-g2/FrugalBuild +++ b/source/base/pacman-g2/FrugalBuild @@ -4,8 +4,8 @@ USE_DEVEL=${USE_DEVEL:-"y"} pkgname=pacman-g2 -pkgver=3.6.2 -Fuse $USE_DEVEL && pkgver=3.6.2.10.g928a3ae +pkgver=3.6.3 +Fuse $USE_DEVEL && pkgver=3.6.3.9.g2bcd461 pkgrel=1 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/" From iron at frugalware.org Fri Sep 21 13:32:43 2007 From: iron at frugalware.org (Krisztian VASAS) Date: Fri Sep 21 13:32:44 2007 Subject: [Frugalware-git] homepage-ng: fwng: added danish flag to the homepage Message-ID: <20070921113243.18DBE1E6802C@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=homepage-ng.git;a=commitdiff;h=658d02ebb9abe8ad2e6e3277bb7e93be73680e7c commit 658d02ebb9abe8ad2e6e3277bb7e93be73680e7c Author: Krisztian VASAS Date: Fri Sep 21 13:31:17 2007 +0200 fwng: added danish flag to the homepage diff --git a/frugalware/config.inc.php b/frugalware/config.inc.php index b7fd8b8..7b41b89 100644 --- a/frugalware/config.inc.php +++ b/frugalware/config.inc.php @@ -97,7 +97,9 @@ $langcontent = '
    | ' . gettext( 'Change language' ) . ' | - ' . gettext( 'Change language' ) . ' + ' . gettext( 'Change language' ) . ' + | + ' . gettext( 'Change language' ) . '
    '; /* | ' . gettext('Change language') . ' | ' . gettext('Change language') . ''; diff --git a/frugalware/images/danish.gif b/frugalware/images/danish.gif new file mode 100644 index 0000000..81a2515 Binary files /dev/null and b/frugalware/images/danish.gif differ From priyank at frugalware.org Fri Sep 21 19:40:53 2007 From: priyank at frugalware.org (Priyank) Date: Fri Sep 21 19:40:55 2007 Subject: [Frugalware-git] gfpm: gfpm-interface: bugfix while loading local repos when gfpm is run in a locale other than English Message-ID: <20070921174053.D6EF21678013@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gfpm.git;a=commitdiff;h=8697f72bd31496a4eda4750495d2cef2e0bfd47d commit 8697f72bd31496a4eda4750495d2cef2e0bfd47d Author: Priyank Date: Fri Sep 21 23:07:28 2007 +0530 gfpm-interface: bugfix while loading local repos when gfpm is run in a locale other than English * Thanks IroNiQ for noticing diff --git a/src/gfpm-interface.c b/src/gfpm-interface.c index e833d5f..884b8fb 100644 --- a/src/gfpm-interface.c +++ b/src/gfpm-interface.c @@ -1121,7 +1121,7 @@ cb_gfpm_repos_combo_changed (GtkComboBox *combo, gpointer data) gchar *text = NULL; text = gtk_combo_box_get_active_text (combo); - if (!strcmp(text, "Installed Packages")) + if (!strcmp(text, _("Installed Packages"))) { g_free (text); text = g_strdup ("local"); From krics at linuxforum.hu Fri Sep 21 20:28:19 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Fri Sep 21 20:28:21 2007 Subject: [Frugalware-git] frugalware-current: rarian-0.6.0-1-x86_64 Message-ID: <20070921182819.AD0B6168800C@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=61dfd42a079a632bb8f720c13f5693bd699d4d39 commit 61dfd42a079a632bb8f720c13f5693bd699d4d39 Author: Christian Hamar alias krix Date: Fri Sep 21 20:27:58 2007 +0200 rarian-0.6.0-1-x86_64 * New package (replacement for scrollkeeper) diff --git a/source/gnome/rarian/FrugalBuild b/source/gnome/rarian/FrugalBuild new file mode 100644 index 0000000..8e47a78 --- /dev/null +++ b/source/gnome/rarian/FrugalBuild @@ -0,0 +1,20 @@ +# Compiling Time: 0.01 SBU +# Maintainer: Christian Hamar alias krix + +pkgname=rarian +pkgver=0.6.0 +pkgrel=1 +pkgdesc="Documentation metadata access library" +url="http://www.gnome.org/" +depends=('docbook-xml' 'libxslt') +makedepends=('intltool') +groups=('gnome' 'gnome-core') +archs=('i686' 'x86_64') +provides=('scrollkeeper') +replaces=('scrollkeeper') +conflicts=('scrollkeeper') +Finclude gnome +sha1sums=('7bf1fce5cc2bfd4584fb776d20d3a379e888b81a') +Fconfopts="$Fconfopts --disable-skdb-update" + +# optimization OK From priyank at frugalware.org Fri Sep 21 20:31:34 2007 From: priyank at frugalware.org (Priyank) Date: Fri Sep 21 20:31:36 2007 Subject: [Frugalware-git] frugalware-current: gnetconfig-mcs-plugin-0.1.1-1-i686 Message-ID: <20070921183134.27385168800C@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=5de8e902e6d63d15d0d6777ad697ef374ba74c52 commit 5de8e902e6d63d15d0d6777ad697ef374ba74c52 Author: Priyank Date: Fri Sep 21 23:57:29 2007 +0530 gnetconfig-mcs-plugin-0.1.1-1-i686 * Fixed groups diff --git a/source/xfce4/gnetconfig-mcs-plugin/FrugalBuild b/source/xfce4/gnetconfig-mcs-plugin/FrugalBuild index c1dc329..9598af2 100644 --- a/source/xfce4/gnetconfig-mcs-plugin/FrugalBuild +++ b/source/xfce4/gnetconfig-mcs-plugin/FrugalBuild @@ -9,7 +9,7 @@ url="ftp://ftp.frugalware.org/pub/other/fw-control-center/" makedepends=('intltool' 'xfce4-dev-tools>=4.4.1') depends=('libxfcegui4>=4.4.1' 'xfce-mcs-manager>=4.4.1' 'libxml2') rodepends=('gnetconfig>=0.1.2') -groups=('xfce4' 'xfce-core') +groups=('xfce4' 'xfce4-core') archs=('i686' 'x86_64') up2date="lynx -dump $url | grep $pkgname | Flasttar" _F_gnome_iconcache="y" From krics at linuxforum.hu Fri Sep 21 20:32:35 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Fri Sep 21 20:32:37 2007 Subject: [Frugalware-git] frugalware-current: Switch scrollkeeper -> rarian in gnome-* Message-ID: <20070921183235.06B39168800E@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=d535c07b2884e675fa749385d86d40cec6292087 commit d535c07b2884e675fa749385d86d40cec6292087 Author: Christian Hamar alias krix Date: Fri Sep 21 20:32:01 2007 +0200 Switch scrollkeeper -> rarian in gnome-* * Switch gnome-scriptlet from scrollkeeper -> rarian diff --git a/source/include/gnome-scriptlet.install b/source/include/gnome-scriptlet.install index b0cc5ff..d033007 100644 --- a/source/include/gnome-scriptlet.install +++ b/source/include/gnome-scriptlet.install @@ -33,8 +33,8 @@ post_install() fi fi if [ -n "$_F_gnome_scrollkeeper" ]; then - echo -n "updating scrollkeeper catalogue..." - if scrollkeeper-update -p /var/lib/scrollkeeper > /dev/null 2>&1 ; then + echo -n "updating rarian database..." + if rarian-sk-update -q > /dev/null 2>&1 ; then echo " done." else echo " failed." @@ -98,8 +98,8 @@ post_remove() fi fi if [ -n "$_F_gnome_scrollkeeper" ]; then - echo -n "updating scrollkeeper catalogue..." - if scrollkeeper-update -p /var/lib/scrollkeeper > /dev/null 2>&1 ; then + echo -n "updating rarian database..." + if rarian-sk-update -q > /dev/null 2>&1 ; then echo " done." else echo " failed." diff --git a/source/include/gnome-scriptlet.sh b/source/include/gnome-scriptlet.sh index 322027b..4c7801a 100644 --- a/source/include/gnome-scriptlet.sh +++ b/source/include/gnome-scriptlet.sh @@ -30,7 +30,7 @@ # Finclude gnome-scriptlet # sha1sums=('e43940d202e6af08ac69ec8129fa52be2a99300d') # -------------------------------------------------- -# NOTE: Please don't forget to include the necessary packgages (scrollkeeper, +# NOTE: Please don't forget to include the necessary packgages (rarian, # desktop-file-utils etc.) in the depends(). At the moment gnome-scriptlet.sh # won't do this for you. # @@ -38,7 +38,7 @@ # * _F_gnome_schemas() - if declared, gconf will be called to register them # * _F_gnome_entries() - same as above except for gconf .entries files # * _F_gnome_desktop - set to "y" if your package provides a .desktop file -# * _F_gnome_scrollkeeper - set to "y" if you want to run scrollkeeper +# * _F_gnome_scrollkeeper - set to "y" if you want to run rarian # * _F_gnome_mime - set to "y" if your package provides a mime type # * _F_gnome_iconcache - set to "y" if your package provides an icon in # /usr/share/icons/hicolor From priyank at frugalware.org Fri Sep 21 20:33:19 2007 From: priyank at frugalware.org (Priyank) Date: Fri Sep 21 20:33:20 2007 Subject: [Frugalware-git] frugalware-current: gfpm-mcs-plugin-0.1.0-1-i686 Message-ID: <20070921183319.6BA42168800C@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=ea71b79fc944dce1e62cb4b7257418ea539c363e commit ea71b79fc944dce1e62cb4b7257418ea539c363e Author: Priyank Date: Fri Sep 21 23:59:46 2007 +0530 gfpm-mcs-plugin-0.1.0-1-i686 * Fixed groups diff --git a/source/xfce4/gfpm-mcs-plugin/FrugalBuild b/source/xfce4/gfpm-mcs-plugin/FrugalBuild index 92c727d..afa48e4 100644 --- a/source/xfce4/gfpm-mcs-plugin/FrugalBuild +++ b/source/xfce4/gfpm-mcs-plugin/FrugalBuild @@ -9,7 +9,7 @@ url="ftp://ftp.frugalware.org/pub/other/fw-control-center/" makedepends=('intltool' 'xfce4-dev-tools>=4.4.1') depends=('libxfcegui4>=4.4.1' 'xfce-mcs-manager>=4.4.1' 'libxml2') rodepends=('gfpm>=1.0.2') -groups=('xfce4' 'xfce-core') +groups=('xfce4' 'xfce4-core') archs=('i686' 'x86_64') up2date="lynx -dump $url | grep $pkgname | Flasttar" _F_gnome_iconcache="y" From krics at linuxforum.hu Fri Sep 21 20:34:21 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Fri Sep 21 20:34:23 2007 Subject: [Frugalware-git] frugalware-current: gtk-doc-1.8-2-x86_64 Message-ID: <20070921183421.EC3B5168800E@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=f76ddad1584ea9fe0f90a61e91f0127f1da4df92 commit f76ddad1584ea9fe0f90a61e91f0127f1da4df92 Author: Christian Hamar alias krix Date: Fri Sep 21 20:33:51 2007 +0200 gtk-doc-1.8-2-x86_64 * Release bump due scrollkeeper -> rarian change diff --git a/source/gnome/gtk-doc/FrugalBuild b/source/gnome/gtk-doc/FrugalBuild index 8eb848f..9859553 100644 --- a/source/gnome/gtk-doc/FrugalBuild +++ b/source/gnome/gtk-doc/FrugalBuild @@ -4,13 +4,12 @@ pkgname=gtk-doc pkgver=1.8 -pkgrel=1 +pkgrel=2 pkgdesc="Used to document the public API of libraries" url="http://www.gnome.org/" -depends=('openjade' 'pkgconfig' 'perl' 'libxslt' 'libxml2' 'docbook-xsl' 'docbook-xml' 'scrollkeeper') +depends=('openjade' 'pkgconfig' 'perl' 'libxslt' 'libxml2' 'docbook-xsl' 'docbook-xml' 'rarian') groups=('gnome') archs=('i686' 'x86_64') _F_gnome_scrollkeeper="y" Finclude gnome gnome-scriptlet -options=('scriptlet') sha1sums=('cb47355347fd92025f348ae63b7f688225aaaabe') From priyank at frugalware.org Fri Sep 21 20:43:46 2007 From: priyank at frugalware.org (Priyank) Date: Fri Sep 21 20:43:48 2007 Subject: [Frugalware-git] gfpm: gfpm-interface: package info now also displayes 'Replaces' Message-ID: <20070921184346.CD8D51678012@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=gfpm.git;a=commitdiff;h=cc363d5eb4d12f26c72bd9e2a7a5b409568f40ad commit cc363d5eb4d12f26c72bd9e2a7a5b409568f40ad Author: Priyank Date: Sat Sep 22 00:10:53 2007 +0530 gfpm-interface: package info now also displayes 'Replaces' diff --git a/src/gfpm-interface.c b/src/gfpm-interface.c index 884b8fb..dd720e6 100644 --- a/src/gfpm-interface.c +++ b/src/gfpm-interface.c @@ -770,6 +770,26 @@ gfpm_load_info_tvw (const char *pkg_name) } g_string_free (str, TRUE); + /* populate replaces */ + temp = pacman_pkg_getinfo (pm_pkg, PM_PKG_REPLACES); + str = g_string_new (""); + for (i=temp;i;i=pacman_list_next(i)) + { + str = g_string_append (str, (char*)pacman_list_getdata(i)); + str = g_string_append (str, " "); + } + if (str->len) + { + gtk_list_store_append (GTK_LIST_STORE(model), &iter); + st = (char*)gfpm_bold (_("Replaces:")); + gtk_list_store_set (GTK_LIST_STORE(model), &iter, + 0, st, + 1, (char*)str->str, + -1); + g_free (st); + } + g_string_free (str, TRUE); + if (inst == TRUE) { gtk_list_store_append (GTK_LIST_STORE(model), &iter); From krics at linuxforum.hu Fri Sep 21 20:56:26 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Fri Sep 21 20:56:29 2007 Subject: [Frugalware-git] frugalware-current: glib2-2.14.1-1-x86_64 Message-ID: <20070921185626.D14CE1678012@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=89e4bc9a2a53285a47361c87fb851a5dd92ae5bf commit 89e4bc9a2a53285a47361c87fb851a5dd92ae5bf Author: Christian Hamar alias krix Date: Fri Sep 21 20:55:31 2007 +0200 glib2-2.14.1-1-x86_64 * Version bump diff --git a/source/base/glib2/FrugalBuild b/source/base/glib2/FrugalBuild index bc2eec8..34724ab 100644 --- a/source/base/glib2/FrugalBuild +++ b/source/base/glib2/FrugalBuild @@ -2,12 +2,12 @@ # Maintainer: Christian Hamar alias krix pkgname=glib2 -pkgver=2.12.13 +pkgver=2.14.1 pkgrel=1 pkgdesc="Common C routines used by GTK+2 and other libraries" url="http://www.gtk.org/" depends=('glibc') -makedepends=('gtk-doc') +makedepends=('gtk-doc>=1.8-2') groups=('base' 'chroot-core') archs=('i686' 'x86_64') options=('scriptlet') @@ -15,7 +15,7 @@ _F_gnome_name="glib" _F_gnome_devel="n" Finclude gnome _F_cd_path="glib-$pkgver" -Fconfopts="$Fconfopts --enable-gtk-doc --enable-static" -sha1sums=('81ce0e53f5583be970623d12523c785a392647bf') +Fconfopts="$Fconfopts --enable-gtk-doc --enable-static --enable-debug=minimum" +sha1sums=('ef9ff562aa7766b0081d37e3ce685843e796c0f8') # optimization OK From krics at linuxforum.hu Fri Sep 21 20:59:32 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Fri Sep 21 20:59:34 2007 Subject: [Frugalware-git] frugalware-current: libidl-0.8.9-1-x86_64 Message-ID: <20070921185932.A51781678012@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=7e0268e7e20dc305fa6d662db4df348707ed9c9b commit 7e0268e7e20dc305fa6d662db4df348707ed9c9b Author: Christian Hamar alias krix Date: Fri Sep 21 20:59:09 2007 +0200 libidl-0.8.9-1-x86_64 * Version bump diff --git a/source/gnome/libidl/FrugalBuild b/source/gnome/libidl/FrugalBuild index b25e42c..a1c7bf6 100644 --- a/source/gnome/libidl/FrugalBuild +++ b/source/gnome/libidl/FrugalBuild @@ -3,15 +3,15 @@ pkgname=libidl _F_gnome_name=libIDL -pkgver=0.8.8 +pkgver=0.8.9 pkgrel=1 pkgdesc="A library for creating trees of CORBA IDL files" url="http://www.gnome.org/" -depends=('glib2') +depends=('glib2>=2.14.1') groups=('gnome' 'gnome-core') archs=('i686' 'x86_64') Finclude gnome _F_cd_path="libIDL-$pkgver" -sha1sums=('4d891df913dafec531fbf72995b47e7e2cd7d3b5') +sha1sums=('5b8478c8d467c9f96010a2e584d0532c5c9256de') # optimization OK From krics at linuxforum.hu Fri Sep 21 21:04:43 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Fri Sep 21 21:04:44 2007 Subject: [Frugalware-git] frugalware-current: orbit2-2.14.9-1-x86_64 Message-ID: <20070921190443.BDE8C1678012@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=690a85d03ad9f0eb75166162bf51d47edcae1bf0 commit 690a85d03ad9f0eb75166162bf51d47edcae1bf0 Author: Christian Hamar alias krix Date: Fri Sep 21 21:04:15 2007 +0200 orbit2-2.14.9-1-x86_64 * Version bump diff --git a/source/gnome/orbit2/FrugalBuild b/source/gnome/orbit2/FrugalBuild index 0af9442..62dc53c 100644 --- a/source/gnome/orbit2/FrugalBuild +++ b/source/gnome/orbit2/FrugalBuild @@ -3,12 +3,12 @@ pkgname=orbit2 _F_gnome_name=ORBit2 -pkgver=2.14.8 +pkgver=2.14.9 pkgrel=1 pkgdesc="A high-performance CORBA Object Request Broker" url="http://www.gnome.org/" -depends=('libidl>=0.8.8' 'glib2' 'popt' 'openssl' 'gnome-common') -makedepends=('gtk-doc') +depends=('libidl>=0.8.9' 'glib2>=2.14.1' 'popt' 'openssl' 'gnome-common>=2.12.0') +makedepends=('gtk-doc>=1.8-2') groups=('gnome' 'gnome-core') archs=('i686' 'x86_64') Finclude gnome @@ -16,6 +16,6 @@ options=('scriptlet') _F_cd_path="ORBit2-$pkgver" Fconfopts="$Fconfopts --enable-gtk-doc" unset MAKEFLAGS -sha1sums=('9f9c99a356045debcdb2286a65d25790de184415') +sha1sums=('92a95fcdb43bc22f9f2ad85e1ba24cde2c8b855a') # optimization OK From krics at linuxforum.hu Fri Sep 21 21:12:36 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Fri Sep 21 21:12:39 2007 Subject: [Frugalware-git] frugalware-current: pango-1.18.2-1-x86_64 Message-ID: <20070921191236.7C46416A8013@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=12301eea330cf958524dad5df81bb5f302b8b8ae commit 12301eea330cf958524dad5df81bb5f302b8b8ae Author: Christian Hamar alias krix Date: Fri Sep 21 21:12:08 2007 +0200 pango-1.18.2-1-x86_64 * Version bump diff --git a/source/gnome/pango/FrugalBuild b/source/gnome/pango/FrugalBuild index 900a79f..6b7de61 100644 --- a/source/gnome/pango/FrugalBuild +++ b/source/gnome/pango/FrugalBuild @@ -2,16 +2,16 @@ # Maintainer: Christian Hamar alias krix pkgname=pango -pkgver=1.16.5 +pkgver=1.18.2 pkgrel=1 pkgdesc="A library for layout and rendering of text" url="http://www.gtk.org/" -depends=('cairo>=1.4.0' 'glib2>=2.12.11' 'libxft') +depends=('cairo>=1.4.0' 'glib2>=2.14.1' 'libxft') groups=('gnome' 'gnome-core') makedepends=('gtk-doc' 'perl') archs=('i686' 'x86_64') Finclude gnome Fconfopts="$Fconfopts --enable-gtk-doc --enable-debug=minimum" -sha1sums=('a23899b16a95294dfa739825c81f3858787127e8') +sha1sums=('f7ba4ff89e05c5659c17dc4225c1a67772a788da') # optimization OK From krics at linuxforum.hu Fri Sep 21 21:16:10 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Fri Sep 21 21:16:12 2007 Subject: [Frugalware-git] frugalware-current: gnome-doc-utils-0.12.0-1-x86_64 Message-ID: <20070921191610.E48151678012@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=23e4af6a693d3e461f30735098a8c2dfb9ad56e7 commit 23e4af6a693d3e461f30735098a8c2dfb9ad56e7 Author: Christian Hamar alias krix Date: Fri Sep 21 21:15:48 2007 +0200 gnome-doc-utils-0.12.0-1-x86_64 * Version bump * scrollkeeper -> rarian diff --git a/source/gnome/gnome-doc-utils/FrugalBuild b/source/gnome/gnome-doc-utils/FrugalBuild index d8a2f6a..4bee358 100644 --- a/source/gnome/gnome-doc-utils/FrugalBuild +++ b/source/gnome/gnome-doc-utils/FrugalBuild @@ -2,16 +2,16 @@ # Maintainer: Christian Hamar alias krix pkgname=gnome-doc-utils -pkgver=0.10.3 +pkgver=0.12.0 pkgrel=1 pkgdesc="A collection of documentation utilities for GNOME" url="http://www.gnome.org/" -depends=('libxslt>=1.1.20' 'scrollkeeper') +depends=('libxslt>=1.1.22' 'rarian') makedepends=('intltool' 'perl-xml') groups=('gnome') archs=('i686' 'x86_64') _F_gnome_scrollkeeper="y" Finclude gnome gnome-scriptlet -sha1sums=('0136b049a7e36bb245e11da13f48c4246029d148') +sha1sums=('e20c74ad415b9ddfdf6c8d663e22bf27c0b939c4') # optimization OK From krics at linuxforum.hu Fri Sep 21 21:19:40 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Fri Sep 21 21:19:41 2007 Subject: [Frugalware-git] frugalware-current: atk-1.20.0-1-x86_64 Message-ID: <20070921191940.185E3168800C@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=a177c08db3909bf68591b5f1632a2e55c118c378 commit a177c08db3909bf68591b5f1632a2e55c118c378 Author: Christian Hamar alias krix Date: Fri Sep 21 21:19:18 2007 +0200 atk-1.20.0-1-x86_64 * Version bump diff --git a/source/gnome/atk/FrugalBuild b/source/gnome/atk/FrugalBuild index 3ba4610..12d78b6 100644 --- a/source/gnome/atk/FrugalBuild +++ b/source/gnome/atk/FrugalBuild @@ -2,16 +2,16 @@ # Maintainer: Christian Hamar alias krix pkgname=atk -pkgver=1.18.0 +pkgver=1.20.0 pkgrel=1 pkgdesc="A library of accessibility functions used by GNOME" url='http://www.gtk.org/' -depends=('glib2>=2.12.11') +depends=('glib2>=2.14.1') groups=('gnome' 'gnome-core') -makedepends=('gtk-doc') +makedepends=('gtk-doc>=1.8-2') archs=('i686' 'x86_64') Finclude gnome -sha1sums=('d58dfc3dbdad49d8c446e0bd4a0b6260d315ceb0') +sha1sums=('e309fed4154819194ddbf9be4ca3252cc31434cf') Fconfopts="$Fconfopts --enable-gtk-doc" # optimization OK From krics at linuxforum.hu Fri Sep 21 21:22:51 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Fri Sep 21 21:22:54 2007 Subject: [Frugalware-git] frugalware-current: shared-mime-info-0.19-2-x86_64 Message-ID: <20070921192251.C4230168800F@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=a359de8819cc2ed63aeb17b8d8dc8e1e743b6a51 commit a359de8819cc2ed63aeb17b8d8dc8e1e743b6a51 Author: Christian Hamar alias krix Date: Fri Sep 21 21:22:31 2007 +0200 shared-mime-info-0.19-2-x86_64 * Release bump due glib2 * Added --disable-update-mimedb to Fconfopts diff --git a/source/xlib/shared-mime-info/FrugalBuild b/source/xlib/shared-mime-info/FrugalBuild index 2cd78e4..284a61d 100644 --- a/source/xlib/shared-mime-info/FrugalBuild +++ b/source/xlib/shared-mime-info/FrugalBuild @@ -4,15 +4,16 @@ pkgname=shared-mime-info pkgver=0.19 -pkgrel=1 +pkgrel=2 pkgdesc="Freedesktop.org Shared MIME Info" url="http://freedesktop.org/Software/shared-mime-info" -depends=('libxml2' 'glib2') +depends=('libxml2' 'glib2>=2.14.1') makedepends=('perl-xml') groups=('xlib') archs=('i686' 'x86_64') up2date="lynx -dump $url | grep -m 1 \"$pkgname-[0-9\.]\+.tar.gz\" | grep -o '[0-9\.]\+.tar.gz' | sed 's|.tar.gz||'" source=(http://freedesktop.org/~hadess/$pkgname-$pkgver.tar.gz) sha1sums=('c589906365c591d67b4d7280b0a52297b4bb7dcc') +Fconfopts="$Fconfopts --disable-update-mimedb" # optimization OK From vmiklos at frugalware.org Fri Sep 21 21:47:42 2007 From: vmiklos at frugalware.org (VMiklos) Date: Fri Sep 21 21:47:46 2007 Subject: [Frugalware-git] frugalware-current: pgp4pine-1.76-5-i686 Message-ID: <20070921194742.8410F1688012@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=42aa432862fa622bb2aa3333b0a493de2c1b9b14 commit 42aa432862fa622bb2aa3333b0a493de2c1b9b14 Author: VMiklos Date: Fri Sep 21 21:47:03 2007 +0200 pgp4pine-1.76-5-i686 rebuilt fix mandir, url, source, up2date, etc diff --git a/source/network-extra/pgp4pine/FrugalBuild b/source/network-extra/pgp4pine/FrugalBuild index 73169f8..01f8a82 100644 --- a/source/network-extra/pgp4pine/FrugalBuild +++ b/source/network-extra/pgp4pine/FrugalBuild @@ -1,23 +1,22 @@ -# Compiling Time: ~0.1 SBU -# Contributor: VMiklos -# Maintainer: Zsolt Szalai +# Compiling Time: 0.02 SBU +# Maintainer: VMiklos pkgname=pgp4pine pkgver=1.76 -pkgrel=4 +pkgrel=5 pkgdesc="A PGP/GnuPG wrapper for Pine and general use" -url=" " # dead project +url="http://ftp.frugalware.org/pub/other/sources/$pkgname" # dead project groups=('network-extra') archs=('i686' 'x86_64') -depends=('glibc' 'gnupg' 'pine') -up2date=$pkgver -source=(ftp://frugalware.org/pub/frugalware/frugalware-current/extra/source/network/pgp4pine/$pkgname-$pkgver.tar.gz) +depends=('gnupg' 'pine') +up2date="lynx -dump $url |Flasttar" +source=(http://ftp.frugalware.org/pub/other/sources/$pkgname/$pkgname-$pkgver.tar.gz) sha1sums=('5c34b17738112584764601828ab5a6cd17a32426') -build() { - cd $startdir/src/$pkgname-$pkgver - ./configure --prefix=/usr +build() +{ + Fconf touch stamp-h.in make || return 1 - make prefix=$startdir/pkg/usr docdir=$startdir/pkg/usr/share/doc install + Fmakeinstall docdir=$Fdestdir/usr/share/doc mandir=$Fdestdir/usr/share/man } From krics at linuxforum.hu Fri Sep 21 21:51:54 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Fri Sep 21 21:51:56 2007 Subject: [Frugalware-git] frugalware-current: gtk+2-2.12.0-1-x86_64 Message-ID: <20070921195154.79D0C168801C@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=a51667590d6fed709a8d82916143761aeef45a02 commit a51667590d6fed709a8d82916143761aeef45a02 Author: Christian Hamar alias krix Date: Fri Sep 21 21:49:25 2007 +0200 gtk+2-2.12.0-1-x86_64 * Version bump * Added libcups as depends diff --git a/source/gnome/gtk+2/FrugalBuild b/source/gnome/gtk+2/FrugalBuild index 01890ed..79f0e6d 100644 --- a/source/gnome/gtk+2/FrugalBuild +++ b/source/gnome/gtk+2/FrugalBuild @@ -3,18 +3,18 @@ pkgname=gtk+2 _F_gnome_name=gtk+ -pkgver=2.10.14 -pkgrel=2 +pkgver=2.12.0 +pkgrel=1 pkgdesc="The GTK+ Toolkit (2.x series)" url="http://www.gtk.org/" -depends=('libtiff' 'atk>=1.18.0' 'libxi' 'libxinerama' 'fontconfig' 'libjpeg' \ - 'pango>=1.16.1' 'cairo>=1.4.0' 'libxcursor' 'libxrandr' 'libsm' 'glib2>=2.12.13') +depends=('libtiff' 'atk>=1.20.0' 'libxi' 'libxinerama' 'fontconfig' 'libjpeg' \ + 'pango>=1.18.2' 'cairo>=1.4.0' 'libxcursor' 'libxrandr' 'libsm' 'glib2>=2.14.1' \ + 'libcups') rodepends=('gnome-icon-theme') groups=('gnome' 'gnome-core') makedepends=('gtk-doc' 'cups') archs=('i686' 'x86_64') Finclude gnome -source=($source cups-1.3.X.patch) _F_cd_path="gtk+-$pkgver" Fconfopts="$Fconfopts --with-xinput=yes --enable-gtk-doc" @@ -25,6 +25,5 @@ build() { echo 'gtk-fallback-icon-theme = "gnome"' > $Fdestdir/etc/gtk-2.0/gtkrc || Fdie } -sha1sums=('78b819814d52caa66739ab64611e41f35e5b48c3' \ - '30b7b92b0d160dd04575c4a2f918ff2712c22b5f') +sha1sums=('f5ecbf73a789a8880a6b2e15279267bb113980e2') # optimization OK From krics at linuxforum.hu Fri Sep 21 21:57:30 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Fri Sep 21 21:57:32 2007 Subject: [Frugalware-git] frugalware-current: gconf-2.20.0-1-x86_64 Message-ID: <20070921195730.7A4F3168801F@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=0319af1204c500d74099a027a3352f8002f88f66 commit 0319af1204c500d74099a027a3352f8002f88f66 Author: Christian Hamar alias krix Date: Fri Sep 21 21:56:50 2007 +0200 gconf-2.20.0-1-x86_64 * Version bump diff --git a/source/gnome/gconf/FrugalBuild b/source/gnome/gconf/FrugalBuild index 2e1f6a9..091de95 100644 --- a/source/gnome/gconf/FrugalBuild +++ b/source/gnome/gconf/FrugalBuild @@ -3,18 +3,18 @@ pkgname=gconf _F_gnome_name=GConf -pkgver=2.18.0.1 +pkgver=2.20.0 pkgrel=1 pkgdesc="A configuration database system for GNOME" url="http://www.gnome.org/" -depends=('orbit2' 'gtk+2>=2.10.9' 'libxml2') -makedepends=('indent' 'gtk-doc' 'openldap' 'perl-xml') +depends=('orbit2>=2.14.9' 'gtk+2>=2.12.0' 'libxml2') +makedepends=('indent' 'gtk-doc>=1.8-2' 'openldap' 'perl-xml') groups=('gnome' 'gnome-core') archs=('i686' 'x86_64') Finclude gnome source=(${source[@]} gconf-2.16.0-reload.patch) -sha1sums=('6bbceafc636457ec14ec2d7b4358235ff6cf08d3' \ - 'c51bd437b495af6b25aff143a45c0b93a4afc236') +sha1sums=('4f0b8e308470ffd95742e0221c1867d62d7bcef6' \ + 'c51bd437b495af6b25aff143a45c0b93a4afc236') subpkgs=('gconf-ldap') subdescs=('Gconf LDAP support modules') From krics at linuxforum.hu Fri Sep 21 22:02:11 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Fri Sep 21 22:02:12 2007 Subject: [Frugalware-git] frugalware-current: libbonobo-2.20.0-1-x86_64 Message-ID: <20070921200211.25C231688022@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=4ba614e3733aacece869766f3df952864a9cd3a1 commit 4ba614e3733aacece869766f3df952864a9cd3a1 Author: Christian Hamar alias krix Date: Fri Sep 21 22:01:34 2007 +0200 libbonobo-2.20.0-1-x86_64 * Version bump diff --git a/source/gnome/libbonobo/FrugalBuild b/source/gnome/libbonobo/FrugalBuild index 49d66a3..a68fa01 100644 --- a/source/gnome/libbonobo/FrugalBuild +++ b/source/gnome/libbonobo/FrugalBuild @@ -2,18 +2,18 @@ # Maintainer: Christian Hamar alias krix pkgname=libbonobo -pkgver=2.18.0 +pkgver=2.20.0 pkgrel=1 pkgdesc="GNOME CORBA framework" url="http://www.gnome.org/" -depends=('orbit2' 'libxml2' 'perl') -makedepends=('intltool' 'gtk-doc' 'popt' 'sgml-common') +depends=('orbit2>=2.14.9' 'libxml2' 'perl') +makedepends=('intltool' 'gtk-doc>=1.8-2' 'popt' 'sgml-common') groups=('gnome' 'gnome-core') archs=('i686' 'x86_64') install=$pkgname.install Finclude gnome source=(${source[@]} libbonobo-search-path-fix.patch) -sha1sums=('eb397ca58f9fd3f751422b461803a0d14e3835ff' \ +sha1sums=('a39faafb68428a12e651a51edf726060f96b664c' \ 'f716a5b855c71edba7e1d77096ee8cc45b85c108') Fconfopts="$Fconfopts --enable-gtk-doc" From krics at linuxforum.hu Fri Sep 21 22:08:53 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Fri Sep 21 22:08:55 2007 Subject: [Frugalware-git] frugalware-current: gnome-mime-data-2.18.0-2-x86_64 Message-ID: <20070921200853.2A5D716A8013@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=3e090646c3c2090c5a91863a899e65b223290910 commit 3e090646c3c2090c5a91863a899e65b223290910 Author: Christian Hamar alias krix Date: Fri Sep 21 22:08:29 2007 +0200 gnome-mime-data-2.18.0-2-x86_64 * Release bump diff --git a/source/gnome/gnome-mime-data/FrugalBuild b/source/gnome/gnome-mime-data/FrugalBuild index 158d297..5a0d5a2 100644 --- a/source/gnome/gnome-mime-data/FrugalBuild +++ b/source/gnome/gnome-mime-data/FrugalBuild @@ -3,10 +3,10 @@ pkgname=gnome-mime-data pkgver=2.18.0 -pkgrel=1 +pkgrel=2 pkgdesc="The base MIME and Application database for GNOME" url="http://www.gnome.org/" -depends=('shared-mime-info') +depends=('shared-mime-info>=0.19-2') makedepends=('intltool') groups=('gnome' 'gnome-core') archs=('i686' 'x86_64') From krics at linuxforum.hu Fri Sep 21 22:10:29 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Fri Sep 21 22:10:29 2007 Subject: [Frugalware-git] frugalware-current: desktop-file-utils-0.14-2-x86_64 Message-ID: <20070921201029.147B716A8018@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=a4696b1d278be493e88978c9cefed0f039e1ecec commit a4696b1d278be493e88978c9cefed0f039e1ecec Author: Christian Hamar alias krix Date: Fri Sep 21 22:10:13 2007 +0200 desktop-file-utils-0.14-2-x86_64 * Release bump due glib2 diff --git a/source/gnome/desktop-file-utils/FrugalBuild b/source/gnome/desktop-file-utils/FrugalBuild index 33af402..ec1fa1d 100644 --- a/source/gnome/desktop-file-utils/FrugalBuild +++ b/source/gnome/desktop-file-utils/FrugalBuild @@ -3,10 +3,10 @@ pkgname=desktop-file-utils pkgver=0.14 -pkgrel=1 +pkgrel=2 pkgdesc="Utilities for manipulating desktop files" url="http://freedesktop.org/wiki/Software/desktop-file-utils" -depends=('glib2' 'popt') +depends=('glib2>=2.14.1' 'popt') groups=('gnome') archs=('i686' 'x86_64') up2date="lynx -dump 'http://freedesktop.org/software/desktop-file-utils/releases/?C=M;O=D'|grep tar.gz$|sed -n 's/.*-\(.*\).t.*/\1/;1 p'" From krics at linuxforum.hu Fri Sep 21 22:14:43 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Fri Sep 21 22:14:45 2007 Subject: [Frugalware-git] frugalware-current: pygobject-2.14.0-1-x86_64 Message-ID: <20070921201443.AD20D16A801B@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=66032a32f0711834f5c27fd7fd2e9df81615f118 commit 66032a32f0711834f5c27fd7fd2e9df81615f118 Author: Christian Hamar alias krix Date: Fri Sep 21 22:14:06 2007 +0200 pygobject-2.14.0-1-x86_64 * Version bump diff --git a/source/gnome/pygobject/FrugalBuild b/source/gnome/pygobject/FrugalBuild index a0c5cf3..c71f4a5 100644 --- a/source/gnome/pygobject/FrugalBuild +++ b/source/gnome/pygobject/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: Christian Hamar alias krix pkgname=pygobject -pkgver=2.12.3 +pkgver=2.14.0 pkgrel=1 pkgdesc="Python bindings for GObject" url="http://www.gnome.org/" @@ -10,6 +10,6 @@ depends=('python') groups=('gnome' 'gnome-core') archs=('i686' 'x86_64') Finclude gnome -sha1sums=('8679463abeee085b2dd2db5b6f2a1cf78ca71ad6') +sha1sums=('f6867330c2a2d70ddb81807823e7515f55ddda23') # optimization OK From krics at linuxforum.hu Fri Sep 21 22:18:36 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Fri Sep 21 22:18:37 2007 Subject: [Frugalware-git] frugalware-current: libglade-2.6.2-2-x86_64 Message-ID: <20070921201836.5F23F1678012@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=404a795538b7c9dba21facb642f30611ecfd61c6 commit 404a795538b7c9dba21facb642f30611ecfd61c6 Author: Christian Hamar alias krix Date: Fri Sep 21 22:17:34 2007 +0200 libglade-2.6.2-2-x86_64 * Release bump due gtk+2 diff --git a/source/gnome/libglade/FrugalBuild b/source/gnome/libglade/FrugalBuild index dba1be7..9ea9ce5 100644 --- a/source/gnome/libglade/FrugalBuild +++ b/source/gnome/libglade/FrugalBuild @@ -3,11 +3,11 @@ pkgname=libglade pkgver=2.6.2 -pkgrel=1 +pkgrel=2 pkgdesc="Allows you to load glade interface files in a program at runtime" url="http://www.gnome.org/" -depends=('gtk+2>=2.10.3' 'libxml2' 'python') -makedepends=('gtk-doc') +depends=('gtk+2>=2.12.0' 'libxml2' 'python') +makedepends=('gtk-doc>=1.8-2') groups=('gnome' 'gnome-core') archs=('i686' 'x86_64') Finclude gnome From krics at linuxforum.hu Fri Sep 21 22:29:11 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Fri Sep 21 22:29:13 2007 Subject: [Frugalware-git] frugalware-current: pygtk-2.12.0-1-x86_64 Message-ID: <20070921202911.60DD51678012@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=25887742f276773ace112bd4a93789faeefdde62 commit 25887742f276773ace112bd4a93789faeefdde62 Author: Christian Hamar alias krix Date: Fri Sep 21 22:26:29 2007 +0200 pygtk-2.12.0-1-x86_64 * Version bump diff --git a/source/gnome/pygtk/FrugalBuild b/source/gnome/pygtk/FrugalBuild index 3378d79..c02e6e0 100644 --- a/source/gnome/pygtk/FrugalBuild +++ b/source/gnome/pygtk/FrugalBuild @@ -2,14 +2,14 @@ # Maintainer: Christian Hamar alias krix pkgname=pygtk -pkgver=2.10.6 +pkgver=2.12.0 pkgrel=1 pkgdesc="Python bindings for GTK+2" url="http://www.daa.com.au/~james/pygtk/" -depends=('libglade' 'pycairo' 'pygobject>=2.12.2' 'python-numeric>=24.2-3') +depends=('libglade>=2.6.2-2' 'pycairo' 'pygobject>=2.14.0' 'python-numeric>=24.2-3') groups=('gnome' 'gnome-core') archs=('i686' 'x86_64') Finclude gnome -sha1sums=('aaa22fce4cf4f1d22f0586975dced4cc6bc4881a') +sha1sums=('8248a620ef4147af07a708643926523024789d4e') # optimization OK From vmiklos at frugalware.org Fri Sep 21 22:49:24 2007 From: vmiklos at frugalware.org (VMiklos) Date: Fri Sep 21 22:49:26 2007 Subject: [Frugalware-git] frugalware-current: perl-date-parse-1.16-2-i686 Message-ID: <20070921204924.056651678012@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=edd44e6364f7c74ff10c374c80defdb523c09a37 commit edd44e6364f7c74ff10c374c80defdb523c09a37 Author: VMiklos Date: Fri Sep 21 22:48:36 2007 +0200 perl-date-parse-1.16-2-i686 rebuild use Fcd and Fbuild diff --git a/source/devel-extra/perl-date-parse/FrugalBuild b/source/devel-extra/perl-date-parse/FrugalBuild index c26b4a5..60b95a3 100644 --- a/source/devel-extra/perl-date-parse/FrugalBuild +++ b/source/devel-extra/perl-date-parse/FrugalBuild @@ -3,7 +3,7 @@ pkgname=perl-date-parse pkgver=1.16 -pkgrel=1 +pkgrel=2 pkgdesc="Parse date strings into time values" url="http://cpan.org/" makedepends=('perl') @@ -15,15 +15,6 @@ source=(http://search.cpan.org/CPAN/authors/id/G/GB/GBARR/TimeDate-$pkgver.tar.g sha1sums=('36875a6cb20585d0589e2fccade04fae6e0db372') build() { - cd $startdir/src/TimeDate-$pkgver - perl Makefile.PL - - make test - make || return 1 - - make install DESTDIR=$startdir/pkg - mv $startdir/pkg/usr/lib/perl5/site_perl/?.?.? \ - $startdir/pkg/usr/lib/perl5/site_perl/current - rm -rf $startdir/pkg/usr/lib/perl5/?.?.? - find $startdir/pkg/usr/lib/perl5/site_perl/current/ -name .packlist -exec rm {} \; + Fcd TimeDate-$pkgver + Fbuild } From krics at linuxforum.hu Fri Sep 21 22:51:49 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Fri Sep 21 22:51:58 2007 Subject: [Frugalware-git] frugalware-current: gamin-0.1.9-2-x86_64 Message-ID: <20070921205149.4931D1678012@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=b365f977cb994b688ca786e30cb5658b91515782 commit b365f977cb994b688ca786e30cb5658b91515782 Author: Christian Hamar alias krix Date: Fri Sep 21 22:50:10 2007 +0200 gamin-0.1.9-2-x86_64 diff --git a/source/apps/gamin/FrugalBuild b/source/apps/gamin/FrugalBuild index b045364..6bb7651 100644 --- a/source/apps/gamin/FrugalBuild +++ b/source/apps/gamin/FrugalBuild @@ -4,10 +4,10 @@ pkgname=gamin pkgver=0.1.9 -pkgrel=1 +pkgrel=2 pkgdesc="Library providing the FAM File Alteration Monitor API" url="http://www.gnome.org/~veillard/gamin/" -depends=('glib2') +depends=('glib2>=2.14.1') makedepends=('python' 'doxygen') conflicts=('fam') replaces=('fam') From krics at linuxforum.hu Fri Sep 21 23:16:39 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Fri Sep 21 23:16:42 2007 Subject: [Frugalware-git] frugalware-current: gnome-vfs-2.20.0-1-x86_64 Message-ID: <20070921211639.A9A241678012@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=e647eb7237297479fc6ed77deb2c7f42d32a80fd commit e647eb7237297479fc6ed77deb2c7f42d32a80fd Author: Christian Hamar alias krix Date: Fri Sep 21 23:15:20 2007 +0200 gnome-vfs-2.20.0-1-x86_64 * Version bump * Added intltoolize -c -f after Fautoreconf to fix errors diff --git a/source/gnome/gnome-vfs/FrugalBuild b/source/gnome/gnome-vfs/FrugalBuild index 44910f7..372e311 100644 --- a/source/gnome/gnome-vfs/FrugalBuild +++ b/source/gnome/gnome-vfs/FrugalBuild @@ -3,13 +3,13 @@ # Contributor: AlexExtreme pkgname=gnome-vfs -pkgver=2.18.1 -pkgrel=5 +pkgver=2.20.0 +pkgrel=1 pkgdesc="GNOME Virtual File System" url="http://www.gnome.org/" -depends=('gconf>=2.18.0.1' 'bzip2' 'hal>=0.5.8.1' 'dbus-glib>=0.71' 'gnome-mime-data' 'gamin' \ +depends=('gconf>=2.20.0' 'bzip2' 'hal>=0.5.8.1' 'dbus-glib>=0.71' 'gnome-mime-data' 'gamin>=0.1.9-2' \ 'avahi-glib>=0.6.17' 'xfsprogs-acl' 'heimdal>=1.0' 'db>=4.6.18') -makedepends=('intltool' 'gtk-doc' 'samba') +makedepends=('intltool' 'gtk-doc>=1.8-2' 'samba') rodepends=('gnome-mount>=0.6') groups=('gnome' 'gnome-core') archs=('i686' 'x86_64') @@ -25,18 +25,19 @@ source=(${source[@]} 00-default-browser.patch \ resolve_fstab_symlinks.patch \ gnome-vfs-2.8.2-schema_about_for_upstream.patch \ gnome-vfs-2.9.90-modules-conf.patch) -sha1sums=('e939fe4fe2e75516ae6c4d476f8fb44f59ec8bdc'\ - 'c83d61988a083c3906b0ce806bb41beb7b628af2'\ - '6570dfb9cb50c8f4ca03a7bcf6c4cf8b0e523214'\ - 'e94438c68532a1c36a7b5f0c305ab065695d626a'\ - '0e28ca35f7f2bc156b7f25d0cfcd331847a6b8d3'\ - '432a5cfa68e440fd6de0bfccf838270abdd2fbdf'\ +sha1sums=('3ce1959b820f420f67e18e6f9da7bc9a87dd4349' \ + 'c83d61988a083c3906b0ce806bb41beb7b628af2' \ + '6570dfb9cb50c8f4ca03a7bcf6c4cf8b0e523214' \ + 'e94438c68532a1c36a7b5f0c305ab065695d626a' \ + '0e28ca35f7f2bc156b7f25d0cfcd331847a6b8d3' \ + '432a5cfa68e440fd6de0bfccf838270abdd2fbdf' \ 'b7ab40b31d384d4d602a9dfa2808c810dccdbdbb') build() { # The pmount options are still there because gnome-vfs can fallback to pmount if gnome-mount is unavailable Fpatchall - Fautoconfize + Fautoreconf + intltoolize -c -f || Fdie Fmake --disable-schemas-install --enable-gtk-doc --disable-cdda \ --with-hal-mount=/usr/bin/pmount-hal \ --with-hal-umount=/usr/bin/pumount \ From krics at linuxforum.hu Fri Sep 21 23:24:31 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Fri Sep 21 23:24:33 2007 Subject: [Frugalware-git] frugalware-current: gtk+2-engines-2.12.1-1-x86_64 Message-ID: <20070921212431.3693F1678012@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=f825aa2acaedef1177393e32f69dc98e3e985d6b commit f825aa2acaedef1177393e32f69dc98e3e985d6b Author: Christian Hamar alias krix Date: Fri Sep 21 23:23:44 2007 +0200 gtk+2-engines-2.12.1-1-x86_64 * Version bump * Strip out _F_gnome_devel="y" (switched back to STABLE tree) diff --git a/source/gnome/gtk+2-engines/FrugalBuild b/source/gnome/gtk+2-engines/FrugalBuild index ca62737..509687e 100644 --- a/source/gnome/gtk+2-engines/FrugalBuild +++ b/source/gnome/gtk+2-engines/FrugalBuild @@ -3,20 +3,19 @@ pkgname=gtk+2-engines _F_gnome_name=gtk-engines -pkgver=2.11.7 +pkgver=2.12.1 pkgrel=1 pkgdesc="Theme engines for GTK+2" url="http://www.gnome.org/" -depends=('gtk+2>=2.10.12') -makedepends=('perl-xml' 'gnome-common' 'intltool') +depends=('gtk+2>=2.12.0') +makedepends=('perl-xml' 'gnome-common>=2.20.0' 'intltool') groups=('gnome' 'gnome-core') archs=('i686' 'x86_64') replaces=('gtk+2-engines-clearlooks' 'gtk+2-engines-industrial') provides=('gtk+2-engines-clearlooks' 'gtk+2-engines-industrial') -_F_gnome_devel=y Finclude gnome _F_cd_path="gtk-engines-$pkgver" Fconfopts="$Fconfopts --enable-animation" -sha1sums=('bab4de0b2519ba173a22598024096b831f5d9a4f') +sha1sums=('a5d0f73c5431f2ad7f4d7bb4cca8a22c916489d0') # optimization OK From krics at linuxforum.hu Fri Sep 21 23:38:59 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Fri Sep 21 23:39:01 2007 Subject: [Frugalware-git] frugalware-current: libgnome-2.20.0-1-x86_64 Message-ID: <20070921213859.712291678012@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=b8506f4095d4eec352933c8a7f225687a4ccbe0a commit b8506f4095d4eec352933c8a7f225687a4ccbe0a Author: Christian Hamar alias krix Date: Fri Sep 21 23:38:17 2007 +0200 libgnome-2.20.0-1-x86_64 * Version bump * Modified patch for new upstream diff --git a/source/gnome/libgnome/FrugalBuild b/source/gnome/libgnome/FrugalBuild index 75c1b12..ffa4b2f 100644 --- a/source/gnome/libgnome/FrugalBuild +++ b/source/gnome/libgnome/FrugalBuild @@ -2,11 +2,11 @@ # Maintainer: Christian Hamar alias krix pkgname=libgnome -pkgver=2.18.0 -pkgrel=2 +pkgver=2.20.0 +pkgrel=1 pkgdesc="Common libraries for GNOME" url="http://www.gnome.org/" -depends=('esd' 'gnome-vfs>=2.18.0' 'gtk+2-engines>=2.10.1-2' 'libbonobo>=2.18.0' 'gnome-frugalware>=0.7.0' 'dbus-x11') +depends=('esd' 'gnome-vfs>=2.20.0' 'gtk+2-engines>=2.12.1' 'libbonobo>=2.20.0' 'gnome-frugalware>=0.7.0' 'dbus-x11') makedepends=('intltool' 'gtk-doc') groups=('gnome' 'gnome-core') archs=('i686' 'x86_64') @@ -29,8 +29,8 @@ _F_gnome_schemas=('/etc/gconf/schemas/desktop_gnome_accessibility_keyboard.schem '/etc/gconf/schemas/desktop_gnome_typing_break.schemas') Finclude gnome gnome-scriptlet source=(${source[@]} libgnome-2.18.0-frugalware_defaults.patch) -sha1sums=('cd5e5fa18ee848aebbf9b323b4663c0d62979c98' \ - 'fb679db28b37e3dd828a9dfd55473f1c9f5d9a8b') +sha1sums=('cce82899c1c8dd4d602948e64196b00346db67a0' \ + 'b5d9985f9554970bd4fd513d2568759393b4b53a') Fconfopts="$Fconfopts --enable-gtk-doc" # optimization OK diff --git a/source/gnome/libgnome/libgnome-2.18.0-frugalware_defaults.patch b/source/gnome/libgnome/libgnome-2.18.0-frugalware_defaults.patch index 18407f8..c29332c 100644 --- a/source/gnome/libgnome/libgnome-2.18.0-frugalware_defaults.patch +++ b/source/gnome/libgnome/libgnome-2.18.0-frugalware_defaults.patch @@ -1,6 +1,6 @@ -diff -urN libgnome-2.18.0.orig/schemas/desktop_gnome_applications_browser.schemas libgnome-2.18.0/schemas/desktop_gnome_applications_browser.schemas ---- libgnome-2.18.0.orig/schemas/desktop_gnome_applications_browser.schemas 2007-05-06 19:08:18.000000000 +0100 -+++ libgnome-2.18.0/schemas/desktop_gnome_applications_browser.schemas 2007-05-06 19:08:24.000000000 +0100 +diff -Naur libgnome-2.20.0.orig/schemas/desktop_gnome_applications_browser.schemas libgnome-2.20.0/schemas/desktop_gnome_applications_browser.schemas +--- libgnome-2.20.0.orig/schemas/desktop_gnome_applications_browser.schemas 2007-09-21 23:28:33.000000000 +0200 ++++ libgnome-2.20.0/schemas/desktop_gnome_applications_browser.schemas 2007-09-21 23:29:04.000000000 +0200 @@ -6,7 +6,7 @@ /desktop/gnome/applications/browser/exec gnome @@ -10,9 +10,9 @@ diff -urN libgnome-2.18.0.orig/schemas/desktop_gnome_applications_browser.schema Default browser Default browser for all URLs -diff -urN libgnome-2.18.0.orig/schemas/desktop_gnome_applications_browser.schemas.in libgnome-2.18.0/schemas/desktop_gnome_applications_browser.schemas.in ---- libgnome-2.18.0.orig/schemas/desktop_gnome_applications_browser.schemas.in 2007-05-06 19:08:18.000000000 +0100 -+++ libgnome-2.18.0/schemas/desktop_gnome_applications_browser.schemas.in 2007-05-06 19:08:24.000000000 +0100 +diff -Naur libgnome-2.20.0.orig/schemas/desktop_gnome_applications_browser.schemas.in libgnome-2.20.0/schemas/desktop_gnome_applications_browser.schemas.in +--- libgnome-2.20.0.orig/schemas/desktop_gnome_applications_browser.schemas.in 2007-09-21 23:28:33.000000000 +0200 ++++ libgnome-2.20.0/schemas/desktop_gnome_applications_browser.schemas.in 2007-09-21 23:29:40.000000000 +0200 @@ -6,7 +6,7 @@ /desktop/gnome/applications/browser/exec gnome @@ -22,35 +22,35 @@ diff -urN libgnome-2.18.0.orig/schemas/desktop_gnome_applications_browser.schema Default browser Default browser for all URLs -diff -urN libgnome-2.18.0.orig/schemas/desktop_gnome_background.schemas libgnome-2.18.0/schemas/desktop_gnome_background.schemas ---- libgnome-2.18.0.orig/schemas/desktop_gnome_background.schemas 2007-05-06 19:08:18.000000000 +0100 -+++ libgnome-2.18.0/schemas/desktop_gnome_background.schemas 2007-05-06 19:08:56.000000000 +0100 -@@ -371,7 +371,7 @@ +diff -Naur libgnome-2.20.0.orig/schemas/desktop_gnome_background.schemas libgnome-2.20.0/schemas/desktop_gnome_background.schemas +--- libgnome-2.20.0.orig/schemas/desktop_gnome_background.schemas 2007-09-21 23:28:33.000000000 +0200 ++++ libgnome-2.20.0/schemas/desktop_gnome_background.schemas 2007-09-21 23:30:50.000000000 +0200 +@@ -381,7 +381,7 @@ /desktop/gnome/background/picture_options gnome string -- wallpaper +- zoom + stretched Picture Options Determines how the image set by wallpaper_filename is -@@ -754,7 +754,7 @@ +@@ -780,7 +780,7 @@ /desktop/gnome/background/picture_filename gnome string -- +- /usr/share/pixmaps/backgrounds/gnome/background-default.jpg + /usr/share/pixmaps/backgrounds/gnome/frugalware/frugalware.jpg Picture Filename File to use for the background image -diff -urN libgnome-2.18.0.orig/schemas/desktop_gnome_background.schemas.in libgnome-2.18.0/schemas/desktop_gnome_background.schemas.in ---- libgnome-2.18.0.orig/schemas/desktop_gnome_background.schemas.in 2007-05-06 19:08:18.000000000 +0100 -+++ libgnome-2.18.0/schemas/desktop_gnome_background.schemas.in 2007-05-06 19:08:24.000000000 +0100 +diff -Naur libgnome-2.20.0.orig/schemas/desktop_gnome_background.schemas.in libgnome-2.20.0/schemas/desktop_gnome_background.schemas.in +--- libgnome-2.20.0.orig/schemas/desktop_gnome_background.schemas.in 2007-09-21 23:28:33.000000000 +0200 ++++ libgnome-2.20.0/schemas/desktop_gnome_background.schemas.in 2007-09-21 23:31:19.000000000 +0200 @@ -16,7 +16,7 @@ /desktop/gnome/background/picture_options gnome string -- wallpaper +- zoom + stretched Picture Options @@ -59,15 +59,15 @@ diff -urN libgnome-2.18.0.orig/schemas/desktop_gnome_background.schemas.in libgn /desktop/gnome/background/picture_filename gnome string -- +- /usr/share/pixmaps/backgrounds/gnome/background-default.jpg + /usr/share/pixmaps/backgrounds/gnome/frugalware/frugalware.jpg Picture Filename File to use for the background image -diff -urN libgnome-2.18.0.orig/schemas/desktop_gnome_interface.schemas libgnome-2.18.0/schemas/desktop_gnome_interface.schemas ---- libgnome-2.18.0.orig/schemas/desktop_gnome_interface.schemas 2007-05-06 19:08:18.000000000 +0100 -+++ libgnome-2.18.0/schemas/desktop_gnome_interface.schemas 2007-05-06 19:08:24.000000000 +0100 -@@ -3989,7 +3989,7 @@ +diff -Naur libgnome-2.20.0.orig/schemas/desktop_gnome_interface.schemas libgnome-2.20.0/schemas/desktop_gnome_interface.schemas +--- libgnome-2.20.0.orig/schemas/desktop_gnome_interface.schemas 2007-09-21 23:28:33.000000000 +0200 ++++ libgnome-2.20.0/schemas/desktop_gnome_interface.schemas 2007-09-21 23:32:34.000000000 +0200 +@@ -4134,7 +4134,7 @@ /desktop/gnome/interface/icon_theme gnome string @@ -76,7 +76,7 @@ diff -urN libgnome-2.18.0.orig/schemas/desktop_gnome_interface.schemas libgnome- Icon Theme Icon theme to use for the panel, nautilus etc. -@@ -5117,7 +5117,7 @@ +@@ -5307,7 +5307,7 @@ /desktop/gnome/interface/font_name gnome string @@ -85,7 +85,7 @@ diff -urN libgnome-2.18.0.orig/schemas/desktop_gnome_interface.schemas libgnome- Default font Name of the default font used by gtk+. -@@ -6205,7 +6205,7 @@ +@@ -6430,7 +6430,7 @@ /schemas/desktop/gnome/interface/document_font_name gnome string @@ -94,18 +94,18 @@ diff -urN libgnome-2.18.0.orig/schemas/desktop_gnome_interface.schemas libgnome- Document font Name of the default font used for reading documents -@@ -6521,7 +6521,7 @@ +@@ -6761,7 +6761,7 @@ /schemas/desktop/gnome/interface/monospace_font_name gnome string - Monospace 10 -+ DejaVu Sans Mono 13 ++ DejaVu Mono 13 Monospace font Name of a monospaced (fixed-width) font for use -diff -urN libgnome-2.18.0.orig/schemas/desktop_gnome_interface.schemas.in libgnome-2.18.0/schemas/desktop_gnome_interface.schemas.in ---- libgnome-2.18.0.orig/schemas/desktop_gnome_interface.schemas.in 2007-05-06 19:08:18.000000000 +0100 -+++ libgnome-2.18.0/schemas/desktop_gnome_interface.schemas.in 2007-05-06 19:10:07.000000000 +0100 +diff -Naur libgnome-2.20.0.orig/schemas/desktop_gnome_interface.schemas.in libgnome-2.20.0/schemas/desktop_gnome_interface.schemas.in +--- libgnome-2.20.0.orig/schemas/desktop_gnome_interface.schemas.in 2007-09-21 23:28:33.000000000 +0200 ++++ libgnome-2.20.0/schemas/desktop_gnome_interface.schemas.in 2007-09-21 23:33:21.000000000 +0200 @@ -130,7 +130,7 @@ /desktop/gnome/interface/icon_theme gnome @@ -115,15 +115,6 @@ diff -urN libgnome-2.18.0.orig/schemas/desktop_gnome_interface.schemas.in libgno Icon Theme Icon theme to use for the panel, nautilus etc. -@@ -141,7 +141,7 @@ - /desktop/gnome/interface/gtk_theme - gnome - string -- Clearlooks -+ Frugalware - - Gtk+ Theme - Basename of the default theme used by gtk+. @@ -163,7 +163,7 @@ /desktop/gnome/interface/font_name gnome @@ -147,13 +138,13 @@ diff -urN libgnome-2.18.0.orig/schemas/desktop_gnome_interface.schemas.in libgno gnome string - Monospace 10 -+ DejaVu Sans Mono 13 ++ DejaVu Mono 13 Monospace font Name of a monospaced (fixed-width) font for use -diff -urN libgnome-2.18.0.orig/schemas/desktop_gnome_interface.schemas.in.in libgnome-2.18.0/schemas/desktop_gnome_interface.schemas.in.in ---- libgnome-2.18.0.orig/schemas/desktop_gnome_interface.schemas.in.in 2007-05-06 19:08:18.000000000 +0100 -+++ libgnome-2.18.0/schemas/desktop_gnome_interface.schemas.in.in 2007-05-06 19:09:58.000000000 +0100 +diff -Naur libgnome-2.20.0.orig/schemas/desktop_gnome_interface.schemas.in.in libgnome-2.20.0/schemas/desktop_gnome_interface.schemas.in.in +--- libgnome-2.20.0.orig/schemas/desktop_gnome_interface.schemas.in.in 2007-09-21 23:28:33.000000000 +0200 ++++ libgnome-2.20.0/schemas/desktop_gnome_interface.schemas.in.in 2007-09-21 23:34:49.000000000 +0200 @@ -6,7 +6,7 @@ /desktop/gnome/interface/accessibility gnome @@ -204,14 +195,14 @@ diff -urN libgnome-2.18.0.orig/schemas/desktop_gnome_interface.schemas.in.in lib gnome string - Monospace 10 -+ DejaVu Sans Mono 13 ++ DejaVu Mono 13 Monospace font Name of a monospaced (fixed-width) font for use -diff -urN libgnome-2.18.0.orig/schemas/desktop_gnome_sound.schemas libgnome-2.18.0/schemas/desktop_gnome_sound.schemas ---- libgnome-2.18.0.orig/schemas/desktop_gnome_sound.schemas 2007-05-06 19:08:18.000000000 +0100 -+++ libgnome-2.18.0/schemas/desktop_gnome_sound.schemas 2007-05-06 19:08:24.000000000 +0100 -@@ -389,7 +389,7 @@ +diff -Naur libgnome-2.20.0.orig/schemas/desktop_gnome_sound.schemas libgnome-2.20.0/schemas/desktop_gnome_sound.schemas +--- libgnome-2.20.0.orig/schemas/desktop_gnome_sound.schemas 2007-09-21 23:28:33.000000000 +0200 ++++ libgnome-2.20.0/schemas/desktop_gnome_sound.schemas 2007-09-21 23:35:08.000000000 +0200 +@@ -504,7 +504,7 @@ /desktop/gnome/sound/enable_esd gnome bool @@ -220,9 +211,9 @@ diff -urN libgnome-2.18.0.orig/schemas/desktop_gnome_sound.schemas libgnome-2.18 Enable ESD Enable sound server startup. -diff -urN libgnome-2.18.0.orig/schemas/desktop_gnome_sound.schemas.in libgnome-2.18.0/schemas/desktop_gnome_sound.schemas.in ---- libgnome-2.18.0.orig/schemas/desktop_gnome_sound.schemas.in 2007-05-06 19:08:18.000000000 +0100 -+++ libgnome-2.18.0/schemas/desktop_gnome_sound.schemas.in 2007-05-06 19:08:24.000000000 +0100 +diff -Naur libgnome-2.20.0.orig/schemas/desktop_gnome_sound.schemas.in libgnome-2.20.0/schemas/desktop_gnome_sound.schemas.in +--- libgnome-2.20.0.orig/schemas/desktop_gnome_sound.schemas.in 2007-09-21 23:28:33.000000000 +0200 ++++ libgnome-2.20.0/schemas/desktop_gnome_sound.schemas.in 2007-09-21 23:35:15.000000000 +0200 @@ -29,7 +29,7 @@ /desktop/gnome/sound/enable_esd gnome From krics at linuxforum.hu Fri Sep 21 23:45:55 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Fri Sep 21 23:45:57 2007 Subject: [Frugalware-git] frugalware-current: gail-1.20.0-1-x86_64 Message-ID: <20070921214555.747841678012@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=eca7147f68af08a7a3bbfc7df65c9526938f6aa8 commit eca7147f68af08a7a3bbfc7df65c9526938f6aa8 Author: Christian Hamar alias krix Date: Fri Sep 21 23:45:19 2007 +0200 gail-1.20.0-1-x86_64 * Version bump * Removed libgnomecanvas from depends, added gtk+2 (this upstream does not need libgnomecanvas anymore) diff --git a/source/gnome/gail/FrugalBuild b/source/gnome/gail/FrugalBuild index 3873fff..ef1fd94 100644 --- a/source/gnome/gail/FrugalBuild +++ b/source/gnome/gail/FrugalBuild @@ -2,16 +2,16 @@ # Maintainer: Christian Hamar alias krix pkgname=gail -pkgver=1.18.0 +pkgver=1.20.0 pkgrel=1 pkgdesc="Accessibility support for GTK+2 and libgnomecanvas" url="http://developer.gnome.org/projects/gap" -depends=('libgnomecanvas') +depends=('gtk+2>=2.12.0') makedepends=('gtk-doc') groups=('gnome' 'gnome-core') archs=('i686' 'x86_64') Finclude gnome Fconfopts="$Fconfopts --enable-gtk-doc" -sha1sums=('122c0feae6789fdd850b77223aff32957cbf33de') +sha1sums=('57d6304a0927c747490dda365b56de9339234a5f') # optimization OK From krics at linuxforum.hu Fri Sep 21 23:51:34 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Fri Sep 21 23:51:37 2007 Subject: [Frugalware-git] frugalware-current: at-spi-1.20.0-1-x86_64 Message-ID: <20070921215134.B14AD1678012@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=1f208567c3df55c84b8d052187da5e6179c621f7 commit 1f208567c3df55c84b8d052187da5e6179c621f7 Author: Christian Hamar alias krix Date: Fri Sep 21 23:50:37 2007 +0200 at-spi-1.20.0-1-x86_64 * Version bump * Moved perl-xml to makedepends frm depends diff --git a/source/gnome/at-spi/FrugalBuild b/source/gnome/at-spi/FrugalBuild index 60a0ed4..f0d6497 100644 --- a/source/gnome/at-spi/FrugalBuild +++ b/source/gnome/at-spi/FrugalBuild @@ -2,17 +2,17 @@ # Maintainer: Christian Hamar alias krix pkgname=at-spi -pkgver=1.18.1 +pkgver=1.20.0 pkgrel=1 pkgdesc="The Gnome Accessibility Toolkit" url="http://developer.gnome.org/projects/gap/" -depends=('gtk+2>=2.10.10' 'gail>=1.18.0' 'libbonobo>=2.18.0' 'perl-xml' 'libxtst' \ +depends=('gtk+2>=2.12.0' 'gail>=1.20.0' 'libbonobo>=2.20.0' 'libxtst' \ 'libxevie') -makedepends=('gtk-doc') +makedepends=('gtk-doc' 'perl-xml') groups=('gnome') archs=('i686' 'x86_64') Finclude gnome Fconfopts="$Fconfopts --enable-gtk-doc" -sha1sums=('d8b96202c754636fb47499cd6b80c2ca23960e3b') +sha1sums=('a4a305d0a7a7b5d693ef555935cfde2a3d05ffef') # optimization OK From krics at linuxforum.hu Fri Sep 21 23:54:36 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Fri Sep 21 23:54:38 2007 Subject: [Frugalware-git] frugalware-current: libgnomecanvas-2.20.0-1-x86_64 Message-ID: <20070921215436.A97551678012@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=70b42641427da56b4ef910c34c459865160198eb commit 70b42641427da56b4ef910c34c459865160198eb Author: Christian Hamar alias krix Date: Fri Sep 21 23:54:14 2007 +0200 libgnomecanvas-2.20.0-1-x86_64 * Version bump * Added gail to depends diff --git a/source/gnome/libgnomecanvas/FrugalBuild b/source/gnome/libgnomecanvas/FrugalBuild index 5a0caae..70e385c 100644 --- a/source/gnome/libgnomecanvas/FrugalBuild +++ b/source/gnome/libgnomecanvas/FrugalBuild @@ -2,16 +2,16 @@ # Maintainer: Christian Hamar alias krix pkgname=libgnomecanvas -pkgver=2.14.0 -pkgrel=3 +pkgver=2.20.0 +pkgrel=1 pkgdesc="GNOME canvas" url="http://www.gnome.org/" -depends=('libglade>=2.6.0-3' 'libart_lgpl') -makedepends=('gtk-doc') +depends=('libglade>=2.6.2-2' 'gail>=1.20.0' 'libart_lgpl') +makedepends=('gtk-doc>=1.8-2' 'perl-xml') groups=('gnome' 'gnome-core') archs=('i686' 'x86_64') Finclude gnome -sha1sums=('9a3fe0cfaa6361f67b3b5ba86324bf8edb8724a0') +sha1sums=('1afd7ef7636373f60d6ac7c7eec9cd6fd8ec0326') Fconfopts="$Fconfopts --enable-gtk-doc" # optimization OK From krics at linuxforum.hu Sat Sep 22 00:01:42 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sat Sep 22 00:01:46 2007 Subject: [Frugalware-git] frugalware-current: libbonoboui-2.20.0-1-x86_64 Message-ID: <20070921220142.B4C86168800B@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=5b6223be0842fd88be302649fbe0790512a1b5e6 commit 5b6223be0842fd88be302649fbe0790512a1b5e6 Author: Christian Hamar alias krix Date: Sat Sep 22 00:01:12 2007 +0200 libbonoboui-2.20.0-1-x86_64 * VErsion bump diff --git a/source/gnome/libbonoboui/FrugalBuild b/source/gnome/libbonoboui/FrugalBuild index c729a9c..2dfbe5a 100644 --- a/source/gnome/libbonoboui/FrugalBuild +++ b/source/gnome/libbonoboui/FrugalBuild @@ -2,17 +2,16 @@ # Maintainer: Christian Hamar alias krix pkgname=libbonoboui -pkgver=2.18.0 +pkgver=2.20.0 pkgrel=1 pkgdesc="User Interface part of libbonobo" url="http://www.gnome.org/" -depends=('libgnomecanvas>=2.14.0-3' 'libgnome>=2.18.0') +depends=('libgnomecanvas>=2.20.0' 'libgnome>=2.20.0') makedepends=('intltool' 'gtk-doc') groups=('gnome' 'gnome-core') archs=('i686' 'x86_64') Finclude gnome -options=('scriptlet') Fconfopts="$Fconfopts --enable-gtk-doc" -sha1sums=('5daf7f7160c2010c4bb1d6ac63339eb13ce6e28b') +sha1sums=('0f28da17b5d65c6b0cf912005a3f0b7af29c18b2') # optimization OK From krics at linuxforum.hu Sat Sep 22 00:06:12 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sat Sep 22 00:06:17 2007 Subject: [Frugalware-git] frugalware-current: gnome-icon-theme-2.20.0-1-x86_64 Message-ID: <20070921220612.DAB511678012@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=0482b4ec0ede306611291e43d55197e5121b0cfb commit 0482b4ec0ede306611291e43d55197e5121b0cfb Author: Christian Hamar alias krix Date: Sat Sep 22 00:05:00 2007 +0200 gnome-icon-theme-2.20.0-1-x86_64 * Version bump diff --git a/source/gnome/gnome-icon-theme/FrugalBuild b/source/gnome/gnome-icon-theme/FrugalBuild index 533c8a4..baab636 100644 --- a/source/gnome/gnome-icon-theme/FrugalBuild +++ b/source/gnome/gnome-icon-theme/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: Christian Hamar alias krix pkgname=gnome-icon-theme -pkgver=2.18.0 +pkgver=2.20.0 pkgrel=1 pkgdesc="Default icon theme for GNOME" url="http://www.gnome.org/" @@ -11,4 +11,4 @@ makedepends=('perl-xml' 'icon-naming-utils>=0.8.2') groups=('gnome' 'gnome-core') archs=('i686' 'x86_64') Finclude gnome -sha1sums=('63d730695796f323aab53b4a2bf4695185e03c75') +sha1sums=('72202cc724cf080964f6e2ff7c3a99340606769f') From krics at linuxforum.hu Sat Sep 22 00:11:38 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sat Sep 22 00:11:41 2007 Subject: [Frugalware-git] frugalware-current: gnome-keyring-2.20.0-1-x86_64 Message-ID: <20070921221138.90B0F1678012@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=caa835af80bb69f60ad65b97b2180fd438fd76d0 commit caa835af80bb69f60ad65b97b2180fd438fd76d0 Author: Christian Hamar alias krix Date: Sat Sep 22 00:11:08 2007 +0200 gnome-keyring-2.20.0-1-x86_64 * Version bump * Added hal to depends() diff --git a/source/gnome/gnome-keyring/FrugalBuild b/source/gnome/gnome-keyring/FrugalBuild index 992e994..f68dcee 100644 --- a/source/gnome/gnome-keyring/FrugalBuild +++ b/source/gnome/gnome-keyring/FrugalBuild @@ -2,16 +2,16 @@ # Maintainer: Christian Hamar alias krix pkgname=gnome-keyring -pkgver=0.8.1 +pkgver=2.20.0 pkgrel=1 pkgdesc="Password and keyring managing daemon for GNOME" url="http://www.gnome.org/" -depends=('gtk+2>=2.10.10' 'dbus-glib>=0.73') -makedepends=('intltool' 'gtk-doc') +depends=('gtk+2>=2.12.0' 'dbus-glib>=0.73' 'hal') +makedepends=('intltool' 'gtk-doc>=1.8-2') groups=('gnome' 'gnome-core') archs=('i686' 'x86_64') Finclude gnome Fconfopts="$Fconfopts --enable-gtk-doc" -sha1sums=('6473106b3621c5e6b7cbc16f5955ec704a1a39c2') +sha1sums=('2d0089848d21d78303c19dd32fb5a1505275c5a5') # optimization OK From krics at linuxforum.hu Sat Sep 22 00:25:11 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sat Sep 22 00:25:12 2007 Subject: [Frugalware-git] frugalware-current: libgnomeui-2.20.0-1-x86_64 Message-ID: <20070921222511.2A5581678015@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=2755ab8a714ca9a44021133442bf700e70cecf96 commit 2755ab8a714ca9a44021133442bf700e70cecf96 Author: Christian Hamar alias krix Date: Sat Sep 22 00:24:05 2007 +0200 libgnomeui-2.20.0-1-x86_64 * Version bump diff --git a/source/gnome/libgnomeui/FrugalBuild b/source/gnome/libgnomeui/FrugalBuild index 02e77e3..9e10ddd 100644 --- a/source/gnome/libgnomeui/FrugalBuild +++ b/source/gnome/libgnomeui/FrugalBuild @@ -2,16 +2,16 @@ # Maintainer: Christian Hamar alias krix pkgname=libgnomeui -pkgver=2.18.1 +pkgver=2.20.0 pkgrel=1 pkgdesc="User Interface library for GNOME" url="http://www.gnome.org/" -depends=('libbonoboui>=2.18.0' 'gnome-keyring>=0.8' 'gtk+2>=2.10.10' 'libbonobo>=2.18.0') -makedepends=('gtk-doc' 'perl-xml') +depends=('libbonoboui>=2.20.0' 'gnome-keyring>=2.20.0' 'gtk+2>=2.12.0' 'libbonobo>=2.20.0') +makedepends=('gtk-doc>=1.8-2' 'perl-xml') groups=('gnome' 'gnome-core') archs=('i686' 'x86_64') Finclude gnome Fconfopts="$Fconfopts --enable-gtk-doc" -sha1sums=('20f57e5a73f3d5570d331182dba45ff8943ef659') +sha1sums=('acbeb273845b6d528d060c6fc09f591b87399870') # optimization OK From krics at linuxforum.hu Sat Sep 22 00:39:51 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sat Sep 22 00:39:52 2007 Subject: [Frugalware-git] frugalware-current: gnome-menus-2.20.0-1-x86_64 Message-ID: <20070921223951.1E10C1678012@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=aab0ae1282133df1028bd552c19ae5a0c1228890 commit aab0ae1282133df1028bd552c19ae5a0c1228890 Author: Christian Hamar alias krix Date: Sat Sep 22 00:39:05 2007 +0200 gnome-menus-2.20.0-1-x86_64 * Version bump * Updated patch to fix upstream diff --git a/source/gnome/gnome-menus/FrugalBuild b/source/gnome/gnome-menus/FrugalBuild index 1c6bc6c..69ed1e2 100644 --- a/source/gnome/gnome-menus/FrugalBuild +++ b/source/gnome/gnome-menus/FrugalBuild @@ -2,11 +2,11 @@ # Maintainer: Christian Hamar alias krix pkgname=gnome-menus -pkgver=2.18.3 +pkgver=2.20.0 pkgrel=1 pkgdesc="GNOME menus and menu editor" url="http://www.gnome.org/" -depends=('gamin' 'pygtk>=2.10.4') +depends=('gamin' 'pygtk>=2.12.0') makedepends=('intltool') groups=('gnome' 'gnome-core') archs=('i686' 'x86_64') @@ -14,7 +14,7 @@ Finclude gnome Fsysconfdir="/etc/gnome" Fconfopts="$Fconfopts --enable-python --enable-debug=no --enable-inotify" source=(${source[@]} $pkgname-2.18.0-categorize-prefs-menu.patch) -sha1sums=('c50f2503f59b61269a6056d09118f5e04a57ca72' \ - 'be81f5bb400d34b69417184097efa403864bcdfc') +sha1sums=('ba78e3cc9dd5ae13bc89858362cd5c831339235d' \ + '16d2d01801f13b0aa827371cf89a2e9fb7030c08') # optimization OK diff --git a/source/gnome/gnome-menus/gnome-menus-2.18.0-categorize-prefs-menu.patch b/source/gnome/gnome-menus/gnome-menus-2.18.0-categorize-prefs-menu.patch index 0eb9d2d..237f68c 100644 --- a/source/gnome/gnome-menus/gnome-menus-2.18.0-categorize-prefs-menu.patch +++ b/source/gnome/gnome-menus/gnome-menus-2.18.0-categorize-prefs-menu.patch @@ -1,6 +1,6 @@ -diff -urN gnome-menus-2.18.0.orig/desktop-directories/Hardware.directory.in gnome-menus-2.18.0/desktop-directories/Hardware.directory.in ---- gnome-menus-2.18.0.orig/desktop-directories/Hardware.directory.in 2007-04-13 09:23:59.000000000 +0100 -+++ gnome-menus-2.18.0/desktop-directories/Hardware.directory.in 2007-04-13 09:26:08.000000000 +0100 +diff -Naur gnome-menus-2.20.0.orig/desktop-directories/Hardware.directory.in gnome-menus-2.20.0/desktop-directories/Hardware.directory.in +--- gnome-menus-2.20.0.orig/desktop-directories/Hardware.directory.in 2007-09-22 00:28:45.000000000 +0200 ++++ gnome-menus-2.20.0/desktop-directories/Hardware.directory.in 2007-09-22 00:30:05.000000000 +0200 @@ -1,6 +1,6 @@ [Desktop Entry] _Name=Hardware @@ -9,9 +9,9 @@ diff -urN gnome-menus-2.18.0.orig/desktop-directories/Hardware.directory.in gnom +Icon=system Type=Directory Encoding=UTF-8 -diff -urN gnome-menus-2.18.0.orig/layout/preferences.menu gnome-menus-2.18.0/layout/preferences.menu ---- gnome-menus-2.18.0.orig/layout/preferences.menu 2007-04-13 09:23:59.000000000 +0100 -+++ gnome-menus-2.18.0/layout/preferences.menu 2007-04-13 09:24:08.000000000 +0100 +diff -Naur gnome-menus-2.20.0.orig/layout/preferences.menu gnome-menus-2.20.0/layout/preferences.menu +--- gnome-menus-2.20.0.orig/layout/preferences.menu 2007-09-22 00:28:45.000000000 +0200 ++++ gnome-menus-2.20.0/layout/preferences.menu 2007-09-22 00:37:01.000000000 +0200 @@ -12,14 +12,28 @@ @@ -25,7 +25,7 @@ diff -urN gnome-menus-2.18.0.orig/layout/preferences.menu gnome-menus-2.18.0/lay + System + + -+ ++ @@ -42,37 +42,37 @@ diff -urN gnome-menus-2.18.0.orig/layout/preferences.menu gnome-menus-2.18.0/lay -@@ -30,16 +44,77 @@ +@@ -30,16 +44,78 @@ gnomecc.desktop - -+ - -- Accessibility -- Settings-Accessibility.directory ++ ++ + Personal + Personal.directory ++ ++ ++ Settings ++ X-GNOME-PersonalSettings ++ ++ ++ ++ ++ + +- Universal Access +- Settings-Accessibility.directory ++ Look and Feel ++ LookAndFeel.directory Settings - Accessibility -+ X-GNOME-PersonalSettings ++ DesktopSettings - -+ -+ -+ -+ -+ Look and Feel -+ LookAndFeel.directory -+ -+ -+ Settings -+ DesktopSettings -+ -+ + + + @@ -123,5 +123,6 @@ diff -urN gnome-menus-2.18.0.orig/layout/preferences.menu gnome-menus-2.18.0/lay + + + ++ From krics at linuxforum.hu Sat Sep 22 00:44:29 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sat Sep 22 00:44:31 2007 Subject: [Frugalware-git] frugalware-current: libtasn1-1.1-1-x86_64 Message-ID: <20070921224429.3F73C16A8012@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=5b6b3a354876fd366227faee354093cbd30e3752 commit 5b6b3a354876fd366227faee354093cbd30e3752 Author: Christian Hamar alias krix Date: Sat Sep 22 00:43:48 2007 +0200 libtasn1-1.1-1-x86_64 * Version bump diff --git a/source/lib/libtasn1/FrugalBuild b/source/lib/libtasn1/FrugalBuild index 07d830c..9c771b9 100644 --- a/source/lib/libtasn1/FrugalBuild +++ b/source/lib/libtasn1/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: Christian Hamar alias krix pkgname=libtasn1 -pkgver=0.3.9 +pkgver=1.1 pkgrel=1 pkgdesc="The ASN.1 library used in GNUTLS" url="http://josefsson.org/libtasn1/" @@ -13,5 +13,5 @@ makedepends=('gtk-doc') up2date="lynx -dump http://josefsson.org/gnutls/releases/libtasn1/|Flasttar" source=(http://josefsson.org/gnutls/releases/libtasn1/$pkgname-$pkgver.tar.gz) -sha1sums=('952173c518c09438d6a0c975d173977cc651911e') +sha1sums=('acfee90d4b3b4eafe8626283040930d7770ccf9f') # optimization OK From krics at linuxforum.hu Sat Sep 22 00:51:08 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sat Sep 22 00:51:10 2007 Subject: [Frugalware-git] frugalware-current: gnutls-2.0.1-2-x86_64 Message-ID: <20070921225108.8A5BD16A8017@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=9620249fd5c45841cd6499519dfed8e0bedf35a1 commit 9620249fd5c45841cd6499519dfed8e0bedf35a1 Author: Christian Hamar alias krix Date: Sat Sep 22 00:50:02 2007 +0200 gnutls-2.0.1-2-x86_64 * Release bump due libtasn1 diff --git a/source/lib/gnutls/FrugalBuild b/source/lib/gnutls/FrugalBuild index ed8e819..5adf516 100644 --- a/source/lib/gnutls/FrugalBuild +++ b/source/lib/gnutls/FrugalBuild @@ -4,7 +4,7 @@ pkgname=gnutls pkgver=2.0.1 -pkgrel=1 +pkgrel=2 pkgdesc="A library which provides a secure layer over a reliable transport layer" url="http://www.gnu.org/software/gnutls/" groups=('lib') From krics at linuxforum.hu Sat Sep 22 00:55:41 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sat Sep 22 00:55:43 2007 Subject: [Frugalware-git] frugalware-current: libsoup-2.2.100-4-x86_64 Message-ID: <20070921225541.008F716E8013@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=c0474e9e46de60a491598002dde1f9219939a07d commit c0474e9e46de60a491598002dde1f9219939a07d Author: Christian Hamar alias krix Date: Sat Sep 22 00:55:00 2007 +0200 libsoup-2.2.100-4-x86_64 * Release bump due gnutls & libtasn1 diff --git a/source/gnome/libsoup/FrugalBuild b/source/gnome/libsoup/FrugalBuild index 00e189a..eff745c 100644 --- a/source/gnome/libsoup/FrugalBuild +++ b/source/gnome/libsoup/FrugalBuild @@ -3,10 +3,10 @@ pkgname=libsoup pkgver=2.2.100 -pkgrel=3 +pkgrel=4 pkgdesc="An HTTP library implementation in C" url="http://www.gnome.org/" -depends=('glib2' 'gnutls>=2.0.0' 'libxml2' 'libgcrypt') +depends=('glib2>=2.14.1' 'gnutls>=2.0.1-2' 'libxml2' 'libgcrypt') groups=('gnome' 'gnome-core') archs=('i686' 'x86_64') Finclude gnome From boobaa at frugalware.org Sat Sep 22 01:01:06 2007 From: boobaa at frugalware.org (CSÉCSY László) Date: Sat Sep 22 01:01:09 2007 Subject: [Frugalware-git] frugalware-current: lilypond-2.10.33-1-i686 Message-ID: <20070921230106.6967016E8018@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=79f602103ebfa9d97e6dfbec232da74b738ab464 commit 79f602103ebfa9d97e6dfbec232da74b738ab464 Author: CSÉCSY László Date: Sat Sep 22 00:59:00 2007 +0200 lilypond-2.10.33-1-i686 version bump diff --git a/source/xapps-extra/lilypond/FrugalBuild b/source/xapps-extra/lilypond/FrugalBuild index 666ffd5..9c8467c 100644 --- a/source/xapps-extra/lilypond/FrugalBuild +++ b/source/xapps-extra/lilypond/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: CSÉCSY László pkgname=lilypond -pkgver=2.10.29 +pkgver=2.10.33 pkgrel=1 pkgdesc="music notation for everyone" url="http://lilypond.org/web/" @@ -33,5 +33,5 @@ build() } # optimization OK -sha1sums=('df141c423a0b8f498c356b7531083e51e53cd500'\ +sha1sums=('22717aa67723067f43208e7e771d6909f8db045f'\ 'da35df783510eb8ee06cff9da77f3faad6a2b101') From krics at linuxforum.hu Sat Sep 22 01:15:04 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sat Sep 22 01:15:06 2007 Subject: [Frugalware-git] frugalware-current: evolution-data-server-1.12.0-1-x86_64 Message-ID: <20070921231504.8D23316E801B@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=b25282de3b51a88ea7aeb7b43affc320363b5a25 commit b25282de3b51a88ea7aeb7b43affc320363b5a25 Author: Christian Hamar alias krix Date: Sat Sep 22 01:13:23 2007 +0200 evolution-data-server-1.12.0-1-x86_64 * Version bump diff --git a/source/gnome/evolution-data-server/FrugalBuild b/source/gnome/evolution-data-server/FrugalBuild index 8d810ac..1737ece 100644 --- a/source/gnome/evolution-data-server/FrugalBuild +++ b/source/gnome/evolution-data-server/FrugalBuild @@ -2,17 +2,17 @@ # Maintainer: Christian Hamar alias krix pkgname=evolution-data-server -pkgver=1.10.3.1 -pkgrel=3 +pkgver=1.12.0 +pkgrel=1 pkgdesc="Evolution Data Server provides a central location for addressbook and calendar in the GNOME Desktop" url="http://www.gnome.org/" -depends=('nss>=3.11.5' 'libsoup>=2.2.100-2' 'libgnomeui>=2.18.0' 'heimdal>=1.0' 'gnome-keyring>=0.8' \ +depends=('nss>=3.11.5' 'libsoup>=2.2.100-4' 'libgnomeui>=2.20.0' 'heimdal>=1.0' 'gnome-keyring>=2.20.0' \ 'db>=4.6.18') makedepends=('intltool' 'gtk-doc' 'openldap>=2.3.24') groups=('gnome' 'gnome-core') archs=('i686' 'x86_64') Finclude gnome -sha1sums=('d6406d617a8d72b20a1c26083f0d2c090092d6e0') +sha1sums=('afc33c0612697bc46bc8b882e1079a480e991570') subpkgs=('evolution-data-server-ldap') subdescs=('Evolution Data Server LDAP extensions.') From krics at linuxforum.hu Sat Sep 22 01:19:10 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sat Sep 22 01:19:13 2007 Subject: [Frugalware-git] frugalware-current: libgtop-2.20.0-1-x86_64 Message-ID: <20070921231910.57B6516E8020@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=303a40602cd9e406ac38c9d1a4bce2d2610b82d0 commit 303a40602cd9e406ac38c9d1a4bce2d2610b82d0 Author: Christian Hamar alias krix Date: Sat Sep 22 01:18:27 2007 +0200 libgtop-2.20.0-1-x86_64 * Version bump diff --git a/source/gnome/libgtop/FrugalBuild b/source/gnome/libgtop/FrugalBuild index dab6a64..ecb9810 100644 --- a/source/gnome/libgtop/FrugalBuild +++ b/source/gnome/libgtop/FrugalBuild @@ -2,16 +2,16 @@ # Maintainer: Christian Hamar alias krix pkgname=libgtop -pkgver=2.14.9 +pkgver=2.20.0 pkgrel=1 pkgdesc="A library that read information about processes and the running system" url="http://www.gnome.org/" -depends=('glib2' 'popt' 'texinfo' 'libxau') +depends=('glib2>=2.14.1' 'popt' 'texinfo' 'libxau') makedepends=('libxt' 'perl-xml' 'gtk-doc') groups=('gnome' 'gnome-core') archs=('i686' 'x86_64') Finclude gnome Fconfopts="$Fconfopts --enable-debug=no --enable-fatal-warnings=no" -sha1sums=('f4ce30dfbb6c4d27ac70435afd88f39eab84c0cb') +sha1sums=('0b7b7ad57c5b9e8d2fcd3e3f70bf61ba85fbb962') # optimization OK From krics at linuxforum.hu Sat Sep 22 01:24:24 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sat Sep 22 01:24:26 2007 Subject: [Frugalware-git] frugalware-current: gnome-themes-2.20.0-1-x86_64 Message-ID: <20070921232424.57967186800C@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=6a0fe1d9ba2b4e7252b1940af1d82d4ec948d8d4 commit 6a0fe1d9ba2b4e7252b1940af1d82d4ec948d8d4 Author: Christian Hamar alias krix Date: Sat Sep 22 01:23:11 2007 +0200 gnome-themes-2.20.0-1-x86_64 * Version bump * Dropped replaces/provides for metacity-themes-clearlooks diff --git a/source/gnome/gnome-themes/FrugalBuild b/source/gnome/gnome-themes/FrugalBuild index 584392d..72d62a3 100644 --- a/source/gnome/gnome-themes/FrugalBuild +++ b/source/gnome/gnome-themes/FrugalBuild @@ -2,15 +2,13 @@ # Maintainer: Christian Hamar alias krix pkgname=gnome-themes -pkgver=2.18.1 +pkgver=2.20.0 pkgrel=1 pkgdesc="Default themes for GNOME" url="http://www.gnome.org/" -depends=('gtk+2-engines>=2.10.0') +depends=('gtk+2-engines>=2.12.1') makedepends=('perl-xml' 'icon-naming-utils') -replaces=('metacity-themes-clearlooks') -provides=('metacity-themes-clearlooks') groups=('gnome' 'gnome-core') archs=('i686' 'x86_64') Finclude gnome -sha1sums=('a0ca6d36f605ebdfbb4793ff4f5211a94c2c7023') +sha1sums=('e4545ec0006592cb186e1601610365b99f40413d') From krics at linuxforum.hu Sat Sep 22 01:31:07 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sat Sep 22 01:31:19 2007 Subject: [Frugalware-git] frugalware-current: gnome-desktop-2.20.0-1-x86_64 Message-ID: <20070921233107.F1AA41A68014@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=0153fde98d89842a3c10429978233ad20e1afccb commit 0153fde98d89842a3c10429978233ad20e1afccb Author: Christian Hamar alias krix Date: Sat Sep 22 01:30:18 2007 +0200 gnome-desktop-2.20.0-1-x86_64 * Version bump diff --git a/source/gnome/gnome-desktop/FrugalBuild b/source/gnome/gnome-desktop/FrugalBuild index 5b33e40..c761c42 100644 --- a/source/gnome/gnome-desktop/FrugalBuild +++ b/source/gnome/gnome-desktop/FrugalBuild @@ -2,17 +2,17 @@ # Maintainer: Christian Hamar alias krix pkgname=gnome-desktop -pkgver=2.18.3 +pkgver=2.20.0 pkgrel=1 pkgdesc="The GNOME Desktop" url="http://www.gnome.org/" -depends=('libgnomeui>=2.18.0' 'startup-notification' 'scrollkeeper' 'libbonobo>=2.18.0') -makedepends=('intltool' 'gnome-doc-utils') +depends=('libgnomeui>=2.20.0' 'startup-notification' 'rarian' 'libbonobo>=2.20.0') +makedepends=('intltool' 'gnome-doc-utils>=0.12.0') groups=('gnome' 'gnome-core') archs=('i686' 'x86_64') _F_gnome_scrollkeeper="y" Finclude gnome gnome-scriptlet Fconfopts="$Fconfopts --with-gnome-distributor=Frugalware" -sha1sums=('e466fb1619423d185772d0052562a2e66dc2e01e') +sha1sums=('6bfb7a44d324f0d2a10d5185770e43bbc2378fc8') # optimization OK From krics at linuxforum.hu Sat Sep 22 01:39:56 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sat Sep 22 01:39:57 2007 Subject: [Frugalware-git] frugalware-current: bug-buddy-2.20.0-1-x86_64 Message-ID: <20070921233956.4B18B1678012@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=48ce0f5de2a973ed5ba5b6522c4e1bb2ae35bc4f commit 48ce0f5de2a973ed5ba5b6522c4e1bb2ae35bc4f Author: Christian Hamar alias krix Date: Sat Sep 22 01:39:14 2007 +0200 bug-buddy-2.20.0-1-x86_64 * Version bump * Added elfutils to depends() * Removed support-frugalware-releasename.patch (now in upstream!!) (ty bug-buddy team! :) ) diff --git a/source/gnome/bug-buddy/FrugalBuild b/source/gnome/bug-buddy/FrugalBuild index edd4630..28199b0 100644 --- a/source/gnome/bug-buddy/FrugalBuild +++ b/source/gnome/bug-buddy/FrugalBuild @@ -2,21 +2,19 @@ # Maintainer: Christian Hamar alias krix pkgname=bug-buddy -pkgver=2.18.1 -pkgrel=2 +pkgver=2.20.0 +pkgrel=1 pkgdesc="A bug reporting tool for GNOME" url="http://www.gnome.org/" -depends=('gnome-desktop>=2.18.0' 'gnome-menus>=2.18.0' 'scrollkeeper' 'desktop-file-utils' \ - 'libsoup>=2.2.100-2' 'libgtop>=2.14.8' 'evolution-data-server>=1.10.1') -makedepends=('intltool' 'gnome-doc-utils') +depends=('gnome-desktop>=2.20.0' 'gnome-menus>=2.20.0' 'rarian' 'desktop-file-utils' \ + 'libsoup>=2.2.100-4' 'libgtop>=2.20.0' 'evolution-data-server>=1.12.0' 'elfutils') +makedepends=('intltool' 'gnome-doc-utils>=0.12.0') groups=('gnome' 'gnome-core') archs=('i686' 'x86_64') _F_gnome_schemas=('/etc/gconf/schemas/bug-buddy.schemas') _F_gnome_scrollkeeper="y" _F_gnome_desktop="y" Finclude gnome gnome-scriptlet -source=(${source[@]} support-frugalware-releasename.patch) -sha1sums=('b5b8e7c157cb7d462bd2a1ae81ee9b4f498f76fa'\ - 'd2a6546084a91c2e9ad41e17c6674816d3d46fae') +sha1sums=('c4d0d2345e13e4f85051f4ca1488d1a08d38fe4b') # optimization OK diff --git a/source/gnome/bug-buddy/support-frugalware-releasename.patch b/source/gnome/bug-buddy/support-frugalware-releasename.patch deleted file mode 100644 index dae38c0..0000000 --- a/source/gnome/bug-buddy/support-frugalware-releasename.patch +++ /dev/null @@ -1,11 +0,0 @@ -diff -urN bug-buddy-2.17.4/src/distribution.c bug-buddy-2.17.4.new/src/distribution.c ---- bug-buddy-2.17.4/src/distribution.c 2007-01-11 20:13:00.000000000 +0000 -+++ bug-buddy-2.17.4.new/src/distribution.c 2007-03-04 17:57:49.000000000 +0000 -@@ -82,6 +82,7 @@ - { "TurboLinux", "/etc/turbolinux-release", &turbolinux_phy }, - { "SuSE", "/etc/SuSE-release", &redhat_phy }, - { "Red Hat", "/etc/redhat-release", &redhat_phy }, -+ { "Frugalware", "/etc/frugalware-release", &redhat_phy }, - { "Fedora", "/etc/fedora-release", &redhat_phy }, - { "Gentoo", "/etc/gentoo-release", &redhat_phy }, - { "Solaris", "/etc/release", &redhat_phy }, From krics at linuxforum.hu Sat Sep 22 01:47:30 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sat Sep 22 01:47:32 2007 Subject: [Frugalware-git] frugalware-current: metacity-2.20.0-1-x86_64 Message-ID: <20070921234730.33A531678012@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=672e5bf2eeb3e9fa213847fc0697af4fbd4f6d58 commit 672e5bf2eeb3e9fa213847fc0697af4fbd4f6d58 Author: Christian Hamar alias krix Date: Sat Sep 22 01:46:23 2007 +0200 metacity-2.20.0-1-x86_64 * Version bump * Updated patch to fit upstream diff --git a/source/gnome/metacity/FrugalBuild b/source/gnome/metacity/FrugalBuild index dba8416..4639c23 100644 --- a/source/gnome/metacity/FrugalBuild +++ b/source/gnome/metacity/FrugalBuild @@ -1,23 +1,20 @@ -# Compiling time: 0.49 SBU +# Compiling time: 0.66 SBU # Maintainer: Christian Hamar alias krix pkgname=metacity -pkgver=2.18.5 +pkgver=2.20.0 pkgrel=1 pkgdesc="A window manager for GNOME" url="http://www.gnome.org/" -depends=('startup-notification' 'gconf' 'gnome-themes>=2.18.1' 'libcm' 'gnome-frugalware>=0.7.0') +depends=('startup-notification' 'gconf>=2.20.0' 'gnome-themes>=2.20.0' 'libcm' 'gnome-frugalware>=0.7.0') makedepends=('intltool') -replaces=('metacity-theme-simplebox-custom') -provides=('metacity-theme-simplebox-custom') groups=('gnome' 'gnome-core') archs=('i686' 'x86_64') _F_gnome_schemas=('/etc/gconf/schemas/metacity.schemas') -_F_gnome_devel="n" Finclude gnome gnome-scriptlet source=(${source[@]} $pkgname-2.18.2-frugalware_defaults.patch) Fconfopts="$Fconfopts --enable-compositor" -sha1sums=('77ab171c6b84a4235ee6819049e2f0c26a15a19f'\ - '3d0a190195ab57dcc2ec21c072791ac63e080db5') +sha1sums=('1d515a38678f5d26568e0479d5a363c5709357e4' \ + '337ea2fd5e5d6e5b71886d61bc725d2bb7851f96') # optimization OK diff --git a/source/gnome/metacity/metacity-2.18.2-frugalware_defaults.patch b/source/gnome/metacity/metacity-2.18.2-frugalware_defaults.patch index ca02860..250dba4 100644 --- a/source/gnome/metacity/metacity-2.18.2-frugalware_defaults.patch +++ b/source/gnome/metacity/metacity-2.18.2-frugalware_defaults.patch @@ -1,7 +1,7 @@ -diff -urN metacity-2.18.2.orig/src/metacity.schemas metacity-2.18.2/src/metacity.schemas ---- metacity-2.18.2.orig/src/metacity.schemas 2007-05-06 20:17:54.000000000 +0100 -+++ metacity-2.18.2/src/metacity.schemas 2007-05-06 20:24:31.000000000 +0100 -@@ -2678,7 +2678,7 @@ +diff -Naur metacity-2.20.0.orig/src/metacity.schemas metacity-2.20.0/src/metacity.schemas +--- metacity-2.20.0.orig/src/metacity.schemas 2007-09-22 01:41:19.000000000 +0200 ++++ metacity-2.20.0/src/metacity.schemas 2007-09-22 01:43:14.000000000 +0200 +@@ -212,7 +212,7 @@ /apps/metacity/general/theme metacity string @@ -10,7 +10,7 @@ diff -urN metacity-2.18.2.orig/src/metacity.schemas metacity-2.18.2/src/metacity Current theme -@@ -3409,7 +3409,7 @@ +@@ -243,7 +243,7 @@ /apps/metacity/general/titlebar_font metacity string @@ -19,10 +19,10 @@ diff -urN metacity-2.18.2.orig/src/metacity.schemas metacity-2.18.2/src/metacity Window title font -diff -urN metacity-2.18.2.orig/src/metacity.schemas.in metacity-2.18.2/src/metacity.schemas.in ---- metacity-2.18.2.orig/src/metacity.schemas.in 2007-05-06 20:17:54.000000000 +0100 -+++ metacity-2.18.2/src/metacity.schemas.in 2007-05-06 20:24:22.000000000 +0100 -@@ -161,7 +161,7 @@ +diff -Naur metacity-2.20.0.orig/src/metacity.schemas.in metacity-2.20.0/src/metacity.schemas.in +--- metacity-2.20.0.orig/src/metacity.schemas.in 2007-09-22 01:41:19.000000000 +0200 ++++ metacity-2.20.0/src/metacity.schemas.in 2007-09-22 01:42:50.000000000 +0200 +@@ -212,7 +212,7 @@ /apps/metacity/general/theme metacity string @@ -31,7 +31,7 @@ diff -urN metacity-2.18.2.orig/src/metacity.schemas.in metacity-2.18.2/src/metac Current theme -@@ -192,7 +192,7 @@ +@@ -243,7 +243,7 @@ /apps/metacity/general/titlebar_font metacity string @@ -40,10 +40,10 @@ diff -urN metacity-2.18.2.orig/src/metacity.schemas.in metacity-2.18.2/src/metac Window title font -diff -urN metacity-2.18.2.orig/src/prefs.c metacity-2.18.2/src/prefs.c ---- metacity-2.18.2.orig/src/prefs.c 2007-05-06 20:17:54.000000000 +0100 -+++ metacity-2.18.2/src/prefs.c 2007-05-06 20:18:33.000000000 +0100 -@@ -514,8 +514,8 @@ +diff -Naur metacity-2.20.0.orig/src/prefs.c metacity-2.20.0/src/prefs.c +--- metacity-2.20.0.orig/src/prefs.c 2007-09-22 01:41:19.000000000 +0200 ++++ metacity-2.20.0/src/prefs.c 2007-09-22 01:42:20.000000000 +0200 +@@ -519,8 +519,8 @@ * elsewhere that will do everything possible to fallback to an existing theme * if the one here does not exist. */ @@ -51,10 +51,10 @@ diff -urN metacity-2.18.2.orig/src/prefs.c metacity-2.18.2/src/prefs.c - current_theme = g_strdup ("Atlanta"); + titlebar_font = pango_font_description_from_string ("DejaVu Sans Bold 13"); + current_theme = g_strdup ("Frugalware"); - #endif /* HAVE_GCONF */ - /* Load keybindings prefs */ -@@ -1165,7 +1165,7 @@ + init_button_layout(); + #endif /* HAVE_GCONF */ +@@ -1191,7 +1191,7 @@ if (current_theme == NULL) { /* Fallback crackrock */ From krics at linuxforum.hu Sat Sep 22 01:54:10 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sat Sep 22 01:54:12 2007 Subject: [Frugalware-git] frugalware-current: libgsf-1.14.7-2-x86_64 Message-ID: <20070921235410.E758A1678012@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=c77f68ba3f0fb3858adac5bbb64611fb8f18b4d4 commit c77f68ba3f0fb3858adac5bbb64611fb8f18b4d4 Author: Christian Hamar alias krix Date: Sat Sep 22 01:53:17 2007 +0200 libgsf-1.14.7-2-x86_64 * Release bump due 2.20 gnome diff --git a/source/lib/libgsf/FrugalBuild b/source/lib/libgsf/FrugalBuild index 04957e5..feb6e29 100644 --- a/source/lib/libgsf/FrugalBuild +++ b/source/lib/libgsf/FrugalBuild @@ -4,11 +4,11 @@ pkgname=libgsf pkgver=1.14.7 -pkgrel=1 +pkgrel=2 pkgdesc="A library for reading and writing structured files (eg MS OLE and Zip)" url="http://www.gnome.org/" depends=('libxml2' 'glib2' 'bzip2') -makedepends=('gtk-doc' 'perl-xml' 'pygtk' 'gnome-vfs>=2.16.2' 'libbonobo' 'gconf') +makedepends=('gtk-doc' 'perl-xml' 'pygtk>=2.12.0' 'gnome-vfs>=2.20.0' 'libbonobo>=2.20.0' 'gconf>=2.20.0') groups=('lib') archs=('i686' 'x86_64') Finclude gnome python @@ -16,7 +16,7 @@ sha1sums=('9950e42db36007591af2d5783bdf68dc73f47d1b') subpkgs=('libgsf-gnome') subdescs=('GNOME specific extensions to libgsf') -subdepends=("gconf gnome-vfs>=2.16.2 libbonobo $pkgname=$pkgver-$pkgrel") +subdepends=("gconf>=2.20.0 gnome-vfs>=2.20.0 libbonobo>=2.20.0 $pkgname=$pkgver-$pkgrel") subgroups=('gnome') subarchs=('i686 x86_64') From krics at linuxforum.hu Sat Sep 22 01:56:45 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sat Sep 22 01:56:47 2007 Subject: [Frugalware-git] frugalware-current: libcroco-0.6.1-3-x86_64 Message-ID: <20070921235645.8BAC61678012@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=12330416f7acc54a0b04aeb5c2c7d76253763435 commit 12330416f7acc54a0b04aeb5c2c7d76253763435 Author: Christian Hamar alias krix Date: Sat Sep 22 01:56:25 2007 +0200 libcroco-0.6.1-3-x86_64 * Release bump due glib2 diff --git a/source/gnome/libcroco/FrugalBuild b/source/gnome/libcroco/FrugalBuild index b2bf1ad..b68561f 100644 --- a/source/gnome/libcroco/FrugalBuild +++ b/source/gnome/libcroco/FrugalBuild @@ -3,10 +3,10 @@ pkgname=libcroco pkgver=0.6.1 -pkgrel=2 +pkgrel=3 pkgdesc="A standalone CSS2 parsing and manipulation library" url="http://www.freespiders.org/projects/libcroco/" -depends=('glib2' 'libxml2') +depends=('glib2>=2.14.1' 'libxml2') groups=('gnome' 'gnome-core') archs=('i686' 'x86_64') Finclude gnome From krics at linuxforum.hu Sat Sep 22 01:58:59 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sat Sep 22 01:59:01 2007 Subject: [Frugalware-git] frugalware-current: libgnomecups-0.2.2-3-x86_64 Message-ID: <20070921235859.CCE281678012@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=24686fcfdb92e6ce95d7a472f5e80e6a741f42f5 commit 24686fcfdb92e6ce95d7a472f5e80e6a741f42f5 Author: Christian Hamar alias krix Date: Sat Sep 22 01:58:43 2007 +0200 libgnomecups-0.2.2-3-x86_64 * Release bump due glib2 diff --git a/source/gnome/libgnomecups/FrugalBuild b/source/gnome/libgnomecups/FrugalBuild index a845b03..e081b25 100644 --- a/source/gnome/libgnomecups/FrugalBuild +++ b/source/gnome/libgnomecups/FrugalBuild @@ -3,10 +3,10 @@ pkgname=libgnomecups pkgver=0.2.2 -pkgrel=2 +pkgrel=3 pkgdesc="GNOME CUPS library" url="http://www.gnome.org/" -depends=('glib2>=2.12.0' 'cups') +depends=('glib2>=2.14.1' 'cups') makedepends=('intltool') groups=('gnome' 'gnome-core') archs=('i686' 'x86_64') From krics at linuxforum.hu Sat Sep 22 02:02:54 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sat Sep 22 02:02:56 2007 Subject: [Frugalware-git] frugalware-current: libgnomeprint-2.18.2-1-x86_64 Message-ID: <20070922000254.278D616A8012@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=be671a90e4712d8c5dd1d94aed6a7e81331ca77e commit be671a90e4712d8c5dd1d94aed6a7e81331ca77e Author: Christian Hamar alias krix Date: Sat Sep 22 02:02:23 2007 +0200 libgnomeprint-2.18.2-1-x86_64 * Version bump diff --git a/source/gnome/libgnomeprint/FrugalBuild b/source/gnome/libgnomeprint/FrugalBuild index edca5b9..2892b0c 100644 --- a/source/gnome/libgnomeprint/FrugalBuild +++ b/source/gnome/libgnomeprint/FrugalBuild @@ -2,18 +2,18 @@ # Maintainer: Christian Hamar alias krix pkgname=libgnomeprint -pkgver=2.18.1 +pkgver=2.18.2 pkgrel=1 pkgdesc="GNOME printing library" url="http://www.gnome.org/" -depends=('pango' 'libxml2' 'libgnomecups>=0.2.2-2' 'fontconfig' 'popt' 'libart_lgpl') +depends=('pango>=1.18.2' 'libxml2' 'libgnomecups>=0.2.2-3' 'fontconfig' 'popt' 'libart_lgpl') makedepends=('intltool' 'gtk-doc') groups=('gnome' 'gnome-core') archs=('i686' 'x86_64') Finclude gnome source=(${source[@]} cups-transport.patch) Fconfopts="$Fconfopts --enable-gtk-doc --with-cups" -sha1sums=('cb8973ffdf4029541d781b77cc5db1cc586c864f' \ +sha1sums=('25c468b78fedfc708b26e95941d51dddbbf25562' \ '6e76a279547af2631d3003e9dece6cf4f7fd81dd') # optimization OK From krics at linuxforum.hu Sat Sep 22 02:05:54 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sat Sep 22 02:05:57 2007 Subject: [Frugalware-git] frugalware-current: libgnomeprintui-2.18.1-1-x86_64 Message-ID: <20070922000554.3CAB51678013@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=ee532f5e617e1abb80386cdd8175f17963b14b7e commit ee532f5e617e1abb80386cdd8175f17963b14b7e Author: Christian Hamar alias krix Date: Sat Sep 22 02:05:29 2007 +0200 libgnomeprintui-2.18.1-1-x86_64 * Version bump diff --git a/source/gnome/libgnomeprintui/FrugalBuild b/source/gnome/libgnomeprintui/FrugalBuild index 83102d5..17297a5 100644 --- a/source/gnome/libgnomeprintui/FrugalBuild +++ b/source/gnome/libgnomeprintui/FrugalBuild @@ -2,16 +2,16 @@ # Maintainer: Christian Hamar alias krix pkgname=libgnomeprintui -pkgver=2.18.0 +pkgver=2.18.1 pkgrel=1 pkgdesc="User Interface library for printing with GNOME" url="http://www.gnome.org/" -depends=('libgnomeprint>=2.18.0' 'libgnomecanvas' 'gnome-icon-theme') +depends=('libgnomeprint>=2.18.2' 'libgnomecanvas>=2.20.0' 'gnome-icon-theme>=2.20.0') makedepends=('gtk-doc' 'perl-xml') groups=('gnome' 'gnome-core') archs=('i686' 'x86_64') Finclude gnome Fconfopts="$Fconfopts --enable-gtk-doc" -sha1sums=('fca178ad489ed94fa4f911e78f89a5825bb38c32') +sha1sums=('52ac5cd12272c3e2f8a5e699041b8acdf7e79a7f') # optimization OK From krics at linuxforum.hu Sat Sep 22 02:09:57 2007 From: krics at linuxforum.hu (Christian Hamar alias krix) Date: Sat Sep 22 02:09:59 2007 Subject: [Frugalware-git] frugalware-current: librsvg-2.18.2-2-x86_64 Message-ID: <20070922000957.E04AA1678013@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=71c3898171859e4a1ed40cfaef482da912005f74 commit 71c3898171859e4a1ed40cfaef482da912005f74 Author: Christian Hamar alias krix Date: Sat Sep 22 02:09:38 2007 +0200 librsvg-2.18.2-2-x86_64 * Release bump * Moved xulrunner frm depends -> makedepends diff --git a/source/gnome/librsvg/FrugalBuild b/source/gnome/librsvg/FrugalBuild index 4cda38a..0335260 100644 --- a/source/gnome/librsvg/FrugalBuild +++ b/source/gnome/librsvg/FrugalBuild @@ -4,11 +4,11 @@ pkgname=librsvg pkgver=2.18.2 -pkgrel=1 +pkgrel=2 pkgdesc="A high performance SVG rendering library for GNOME" url="http://www.gnome.org/" -depends=('gtk+2>=2.10.0' 'libxml2' 'popt' 'libart_lgpl' 'libcroco>=0.6.1-2' 'xulrunner=1.8.1.3') -makedepends=('gtk-doc') +depends=('gtk+2>=2.12.0' 'libxml2' 'popt' 'libart_lgpl' 'libcroco>=0.6.1-3') +makedepends=('gtk-doc' 'xulrunner=1.8.1.3') groups=('gnome' 'gnome-core') archs=('i686' 'x86_64') Finclude gnome From voroskoi at frugalware.org Sat Sep 22 18:14:51 2007 From: voroskoi at frugalware.org (voroskoi) Date: Sat Sep 22 18:14:56 2007 Subject: [Frugalware-git] frugalware-current: yasm-0.6.2-1-i686 Message-ID: <20070922161451.D66D813A4007@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=55c0dd62c1fe54b800b9d208256cc76ecfcab23a commit 55c0dd62c1fe54b800b9d208256cc76ecfcab23a Author: voroskoi Date: Sat Sep 22 18:00:20 2007 +0200 yasm-0.6.2-1-i686 version bump diff --git a/source/devel-extra/yasm/FrugalBuild b/source/devel-extra/yasm/FrugalBuild index f9bcfa0..10469a2 100644 --- a/source/devel-extra/yasm/FrugalBuild +++ b/source/devel-extra/yasm/FrugalBuild @@ -2,7 +2,7 @@ # Maintainer: voroskoi pkgname=yasm -pkgver=0.6.1 +pkgver=0.6.2 pkgrel=1 pkgdesc="Yasm is a complete rewrite of the NASM assembler under BSD License with x64 support." url="http://www.tortall.net/projects/yasm/wiki" @@ -11,6 +11,6 @@ groups=('devel-extra') archs=('i686' 'x86_64') up2date="lynx -dump $url/Download |grep http.*tar.gz |sed -ne 's/.*m-\(.*\).t.*/\1/;1 p'" source=(http://www.tortall.net/projects/yasm/releases/$pkgname-$pkgver.tar.gz) -sha1sums=('a3f5d9686a3281f91de88dafc1584b11532c3755') +sha1sums=('cf3e09fa7847e17427f0b1f03f63cfbdba33a014') # optimization OK From vmiklos at frugalware.org Sat Sep 22 19:10:36 2007 From: vmiklos at frugalware.org (VMiklos) Date: Sat Sep 22 19:10:49 2007 Subject: [Frugalware-git] bmf: kernel-grsec-2.1.11-1bmf1-i686 Message-ID: <20070922171036.5A1F8167000A@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=bmf.git;a=commitdiff;h=66b46051d80feb4ee72c904ff6e8f647bc3060fa commit 66b46051d80feb4ee72c904ff6e8f647bc3060fa Author: VMiklos Date: Sat Sep 22 19:08:41 2007 +0200 kernel-grsec-2.1.11-1bmf1-i686 bump to test patch and 2.6.22 diff --git a/source/base-extra/kernel-grsec/FrugalBuild b/source/base-extra/kernel-grsec/FrugalBuild index 360ad7a..56955a4 100644 --- a/source/base-extra/kernel-grsec/FrugalBuild +++ b/source/base-extra/kernel-grsec/FrugalBuild @@ -2,20 +2,17 @@ # Maintainer: crazy # Contributor: Zoltan Kiss -pkgver=2.1.9 -upkver=2.6.19.1 -fwkver=2.6.19.1 -grtime=200612121859 +pkgver=2.1.11 +upkver=2.6.22.6 +fwkver=2.6.22.6 +grtime=200709071800 cver=0.1.0 -pkgrel=5 -_F_kernel_dontsedarch=1 +pkgrel=1bmf1 _F_kernel_manualamd64=1 _F_kernel_name="-grsec" _F_kernel_ver=${fwkver%.*} _F_kernel_stable=${fwkver##*.} -_F_kernel_patches=(http://www.grsecurity.net/grsecurity-$pkgver-$upkver-$grtime.patch.gz config.patch \ - http://ftp.frugalware.org/pub/frugalware/frugalware-current/source/base/kernel/fuse-2.6.1.patch.bz2 \ - http://ftp.frugalware.org/pub/frugalware/frugalware-current/source/base/kernel/linux-2.6.9-CVE-2006-6106-capi-size-check.patch) +_F_kernel_patches=(http://www.grsecurity.net/test/grsecurity-$pkgver-$upkver-$grtime.patch config.patch) [ "$CARCH" == "x86_64" ] && _F_kernel_patches=(${_F_kernel_patches[@]} config-x86_64.patch) Finclude kernel pkgdesc="The Linux Kernel and modules (Grsecurity version)" diff --git a/source/base-extra/kernel-grsec/config b/source/base-extra/kernel-grsec/config index f7d12f0..1a2216d 100644 --- a/source/base-extra/kernel-grsec/config +++ b/source/base-extra/kernel-grsec/config @@ -1,17 +1,23 @@ # # Automatically generated make config: don't edit -# Linux kernel version: 2.6.19 -# Thu Nov 30 14:53:54 2006 +# Linux kernel version: 2.6.22 +# Mon Jul 9 02:28:26 2007 # CONFIG_X86_32=y CONFIG_GENERIC_TIME=y +CONFIG_CLOCKSOURCE_WATCHDOG=y +CONFIG_GENERIC_CLOCKEVENTS=y +CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y CONFIG_LOCKDEP_SUPPORT=y CONFIG_STACKTRACE_SUPPORT=y CONFIG_SEMAPHORE_SLEEPERS=y CONFIG_X86=y CONFIG_MMU=y +CONFIG_ZONE_DMA=y +CONFIG_QUICKLIST=y CONFIG_GENERIC_ISA_DMA=y CONFIG_GENERIC_IOMAP=y +CONFIG_GENERIC_BUG=y CONFIG_GENERIC_HWEIGHT=y CONFIG_ARCH_MAY_HAVE_PC_FDC=y CONFIG_DMI=y @@ -32,6 +38,7 @@ CONFIG_LOCALVERSION_AUTO=y CONFIG_SWAP=y CONFIG_SYSVIPC=y # CONFIG_IPC_NS is not set +CONFIG_SYSVIPC_SYSCTL=y CONFIG_POSIX_MQUEUE=y CONFIG_BSD_PROCESS_ACCT=y # CONFIG_BSD_PROCESS_ACCT_V3 is not set @@ -41,8 +48,11 @@ CONFIG_AUDIT=y CONFIG_AUDITSYSCALL=y CONFIG_IKCONFIG=y CONFIG_IKCONFIG_PROC=y +CONFIG_LOG_BUF_SHIFT=17 CONFIG_CPUSETS=y -# CONFIG_RELAY is not set +# CONFIG_SYSFS_DEPRECATED is not set +CONFIG_RELAY=y +CONFIG_BLK_DEV_INITRD=y CONFIG_INITRAMFS_SOURCE="" CONFIG_CC_OPTIMIZE_FOR_SIZE=y CONFIG_SYSCTL=y @@ -57,14 +67,20 @@ CONFIG_BUG=y CONFIG_ELF_CORE=y CONFIG_BASE_FULL=y CONFIG_FUTEX=y +CONFIG_ANON_INODES=y CONFIG_EPOLL=y +CONFIG_SIGNALFD=y +CONFIG_TIMERFD=y +CONFIG_EVENTFD=y CONFIG_SHMEM=y -CONFIG_SLAB=y CONFIG_VM_EVENT_COUNTERS=y +CONFIG_SLUB_DEBUG=y +# CONFIG_SLAB is not set +CONFIG_SLUB=y +# CONFIG_SLOB is not set CONFIG_RT_MUTEXES=y # CONFIG_TINY_SHMEM is not set CONFIG_BASE_SMALL=0 -# CONFIG_SLOB is not set # # Loadable module support @@ -82,7 +98,7 @@ CONFIG_STOP_MACHINE=y # CONFIG_BLOCK=y CONFIG_LBD=y -# CONFIG_BLK_DEV_IO_TRACE is not set +CONFIG_BLK_DEV_IO_TRACE=y CONFIG_LSF=y # @@ -92,15 +108,18 @@ CONFIG_IOSCHED_NOOP=y CONFIG_IOSCHED_AS=y CONFIG_IOSCHED_DEADLINE=y CONFIG_IOSCHED_CFQ=y -CONFIG_DEFAULT_AS=y +# CONFIG_DEFAULT_AS is not set # CONFIG_DEFAULT_DEADLINE is not set -# CONFIG_DEFAULT_CFQ is not set +CONFIG_DEFAULT_CFQ=y # CONFIG_DEFAULT_NOOP is not set -CONFIG_DEFAULT_IOSCHED="anticipatory" +CONFIG_DEFAULT_IOSCHED="cfq" # # Processor type and features # +CONFIG_TICK_ONESHOT=y +CONFIG_NO_HZ=y +CONFIG_HIGH_RES_TIMERS=y CONFIG_SMP=y CONFIG_X86_PC=y # CONFIG_X86_ELAN is not set @@ -111,15 +130,17 @@ CONFIG_X86_PC=y # CONFIG_X86_VISWS is not set # CONFIG_X86_GENERICARCH is not set # CONFIG_X86_ES7000 is not set +# CONFIG_PARAVIRT is not set # CONFIG_M386 is not set -CONFIG_M486=y +# CONFIG_M486 is not set # CONFIG_M586 is not set # CONFIG_M586TSC is not set # CONFIG_M586MMX is not set -# CONFIG_M686 is not set +CONFIG_M686=y # CONFIG_MPENTIUMII is not set # CONFIG_MPENTIUMIII is not set # CONFIG_MPENTIUMM is not set +# CONFIG_MCORE2 is not set # CONFIG_MPENTIUM4 is not set # CONFIG_MK6 is not set # CONFIG_MK7 is not set @@ -133,25 +154,31 @@ CONFIG_M486=y # CONFIG_MGEODE_LX is not set # CONFIG_MCYRIXIII is not set # CONFIG_MVIAC3_2 is not set +# CONFIG_MVIAC7 is not set CONFIG_X86_GENERIC=y CONFIG_X86_CMPXCHG=y -CONFIG_X86_XADD=y CONFIG_X86_L1_CACHE_SHIFT=7 +CONFIG_X86_XADD=y CONFIG_RWSEM_XCHGADD_ALGORITHM=y +# CONFIG_ARCH_HAS_ILOG2_U32 is not set +# CONFIG_ARCH_HAS_ILOG2_U64 is not set CONFIG_GENERIC_CALIBRATE_DELAY=y CONFIG_X86_PPRO_FENCE=y -CONFIG_X86_F00F_BUG=y CONFIG_X86_WP_WORKS_OK=y CONFIG_X86_INVLPG=y CONFIG_X86_BSWAP=y CONFIG_X86_POPAD_OK=y -CONFIG_X86_ALIGNMENT_16=y +CONFIG_X86_GOOD_APIC=y CONFIG_X86_INTEL_USERCOPY=y +CONFIG_X86_USE_PPRO_CHECKSUM=y +CONFIG_X86_TSC=y +CONFIG_X86_CMOV=y +CONFIG_X86_MINIMUM_CPU_MODEL=4 CONFIG_HPET_TIMER=y CONFIG_HPET_EMULATE_RTC=y CONFIG_NR_CPUS=8 CONFIG_SCHED_SMT=y -# CONFIG_SCHED_MC is not set +CONFIG_SCHED_MC=y # CONFIG_PREEMPT_NONE is not set # CONFIG_PREEMPT_VOLUNTARY is not set CONFIG_PREEMPT=y @@ -194,20 +221,24 @@ CONFIG_FLAT_NODE_MEM_MAP=y CONFIG_SPARSEMEM_STATIC=y CONFIG_SPLIT_PTLOCK_CPUS=4 # CONFIG_RESOURCES_64BIT is not set +CONFIG_ZONE_DMA_FLAG=1 +CONFIG_NR_QUICK=1 # CONFIG_HIGHPTE is not set # CONFIG_MATH_EMULATION is not set CONFIG_MTRR=y # CONFIG_EFI is not set CONFIG_IRQBALANCE=y -# CONFIG_REGPARM is not set CONFIG_SECCOMP=y # CONFIG_HZ_100 is not set -CONFIG_HZ_250=y -# CONFIG_HZ_1000 is not set +# CONFIG_HZ_250 is not set +# CONFIG_HZ_300 is not set +CONFIG_HZ_1000=y CONFIG_HZ=1000 CONFIG_KEXEC=y # CONFIG_CRASH_DUMP is not set CONFIG_PHYSICAL_START=0x100000 +# CONFIG_RELOCATABLE is not set +CONFIG_PHYSICAL_ALIGN=0x100000 CONFIG_HOTPLUG_CPU=y # CONFIG_COMPAT_VDSO is not set CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y @@ -229,19 +260,19 @@ CONFIG_SUSPEND_SMP=y CONFIG_ACPI=y CONFIG_ACPI_SLEEP=y CONFIG_ACPI_SLEEP_PROC_FS=y -# CONFIG_ACPI_SLEEP_PROC_SLEEP is not set +CONFIG_ACPI_SLEEP_PROC_SLEEP=y +CONFIG_ACPI_PROCFS=y CONFIG_ACPI_AC=m CONFIG_ACPI_BATTERY=m CONFIG_ACPI_BUTTON=m CONFIG_ACPI_VIDEO=m -# CONFIG_ACPI_HOTKEY is not set CONFIG_ACPI_FAN=m CONFIG_ACPI_DOCK=m +CONFIG_ACPI_BAY=m CONFIG_ACPI_PROCESSOR=m CONFIG_ACPI_HOTPLUG_CPU=y CONFIG_ACPI_THERMAL=m CONFIG_ACPI_ASUS=m -CONFIG_ACPI_IBM=m CONFIG_ACPI_TOSHIBA=m CONFIG_ACPI_BLACKLIST_YEAR=0 # CONFIG_ACPI_DEBUG is not set @@ -250,17 +281,12 @@ CONFIG_ACPI_POWER=y CONFIG_ACPI_SYSTEM=y CONFIG_X86_PM_TIMER=y CONFIG_ACPI_CONTAINER=m -# CONFIG_ACPI_SBS is not set - -# -# APM (Advanced Power Management) BIOS Support -# -CONFIG_APM=y +CONFIG_ACPI_SBS=m +CONFIG_APM=m # CONFIG_APM_IGNORE_USER_SUSPEND is not set # CONFIG_APM_DO_ENABLE is not set # CONFIG_APM_CPU_IDLE is not set # CONFIG_APM_DISPLAY_BLANK is not set -# CONFIG_APM_RTC_IS_GMT is not set # CONFIG_APM_ALLOW_INTS is not set CONFIG_APM_REAL_MODE_POWER_OFF=y @@ -299,6 +325,7 @@ CONFIG_X86_P4_CLOCKMOD=m CONFIG_X86_CPUFREQ_NFORCE2=m CONFIG_X86_LONGRUN=m CONFIG_X86_LONGHAUL=m +CONFIG_X86_E_POWERSAVER=m # # shared options @@ -313,15 +340,14 @@ CONFIG_X86_SPEEDSTEP_LIB=m CONFIG_PCI=y # CONFIG_PCI_GOBIOS is not set # CONFIG_PCI_GOMMCONFIG is not set -# CONFIG_PCI_GODIRECT is not set -CONFIG_PCI_GOANY=y -CONFIG_PCI_BIOS=y +CONFIG_PCI_GODIRECT=y +# CONFIG_PCI_GOANY is not set CONFIG_PCI_DIRECT=y -CONFIG_PCI_MMCONFIG=y CONFIG_PCIEPORTBUS=y CONFIG_HOTPLUG_PCI_PCIE=m # CONFIG_HOTPLUG_PCI_PCIE_POLL_EVENT_MODE is not set CONFIG_PCIEAER=y +CONFIG_ARCH_SUPPORTS_MSI=y CONFIG_PCI_MSI=y CONFIG_HT_IRQ=y CONFIG_ISA_DMA_API=y @@ -334,8 +360,7 @@ CONFIG_EISA_NAMES=y CONFIG_MCA=y CONFIG_MCA_LEGACY=y CONFIG_MCA_PROC_FS=y -CONFIG_SCx200=m -CONFIG_SCx200HR_TIMER=m +# CONFIG_SCx200 is not set CONFIG_K8_NB=y # @@ -363,20 +388,12 @@ CONFIG_I82365=m CONFIG_TCIC=m CONFIG_PCMCIA_PROBE=y CONFIG_PCCARD_NONSTATIC=m - -# -# PCI Hotplug Support -# CONFIG_HOTPLUG_PCI=y CONFIG_HOTPLUG_PCI_FAKE=m -CONFIG_HOTPLUG_PCI_COMPAQ=m -# CONFIG_HOTPLUG_PCI_COMPAQ_NVRAM is not set -CONFIG_HOTPLUG_PCI_IBM=m CONFIG_HOTPLUG_PCI_ACPI=m CONFIG_HOTPLUG_PCI_ACPI_IBM=m # CONFIG_HOTPLUG_PCI_CPCI is not set CONFIG_HOTPLUG_PCI_SHPC=m -# CONFIG_HOTPLUG_PCI_SHPC_POLL_EVENT_MODE is not set # # Executable file formats @@ -393,14 +410,15 @@ CONFIG_NET=y # # Networking options # -# CONFIG_NETDEBUG is not set CONFIG_PACKET=y 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_NET_KEY=m +# CONFIG_NET_KEY_MIGRATE is not set CONFIG_INET=y CONFIG_IP_MULTICAST=y CONFIG_IP_ADVANCED_ROUTER=y @@ -408,11 +426,13 @@ CONFIG_ASK_IP_FIB_HASH=y # CONFIG_IP_FIB_TRIE is not set CONFIG_IP_FIB_HASH=y CONFIG_IP_MULTIPLE_TABLES=y -CONFIG_IP_ROUTE_FWMARK=y CONFIG_IP_ROUTE_MULTIPATH=y # CONFIG_IP_ROUTE_MULTIPATH_CACHED is not set CONFIG_IP_ROUTE_VERBOSE=y -# CONFIG_IP_PNP is not set +CONFIG_IP_PNP=y +CONFIG_IP_PNP_DHCP=y +CONFIG_IP_PNP_BOOTP=y +CONFIG_IP_PNP_RARP=y CONFIG_NET_IPIP=m CONFIG_NET_IPGRE=m CONFIG_NET_IPGRE_BROADCAST=y @@ -426,9 +446,9 @@ CONFIG_INET_ESP=m CONFIG_INET_IPCOMP=m CONFIG_INET_XFRM_TUNNEL=m CONFIG_INET_TUNNEL=m -CONFIG_INET_XFRM_MODE_TRANSPORT=y -CONFIG_INET_XFRM_MODE_TUNNEL=y -CONFIG_INET_XFRM_MODE_BEET=y +CONFIG_INET_XFRM_MODE_TRANSPORT=m +CONFIG_INET_XFRM_MODE_TUNNEL=m +CONFIG_INET_XFRM_MODE_BEET=m CONFIG_INET_DIAG=y CONFIG_INET_TCP_DIAG=y CONFIG_TCP_CONG_ADVANCED=y @@ -442,6 +462,8 @@ CONFIG_TCP_CONG_VEGAS=m CONFIG_TCP_CONG_SCALABLE=m # CONFIG_TCP_CONG_LP is not set # CONFIG_TCP_CONG_VENO is not set +CONFIG_TCP_CONG_YEAH=m +CONFIG_TCP_CONG_ILLINOIS=m CONFIG_DEFAULT_BIC=y # CONFIG_DEFAULT_CUBIC is not set # CONFIG_DEFAULT_HTCP is not set @@ -449,44 +471,13 @@ CONFIG_DEFAULT_BIC=y # CONFIG_DEFAULT_WESTWOOD is not set # CONFIG_DEFAULT_RENO is not set CONFIG_DEFAULT_TCP_CONG="bic" - -# -# IP: Virtual Server Configuration -# -CONFIG_IP_VS=m -# CONFIG_IP_VS_DEBUG is not set -CONFIG_IP_VS_TAB_BITS=12 - -# -# IPVS transport protocol load balancing support -# -CONFIG_IP_VS_PROTO_TCP=y -CONFIG_IP_VS_PROTO_UDP=y -CONFIG_IP_VS_PROTO_ESP=y -CONFIG_IP_VS_PROTO_AH=y - -# -# IPVS scheduler -# -CONFIG_IP_VS_RR=m -CONFIG_IP_VS_WRR=m -CONFIG_IP_VS_LC=m -CONFIG_IP_VS_WLC=m -CONFIG_IP_VS_LBLC=m -CONFIG_IP_VS_LBLCR=m -CONFIG_IP_VS_DH=m -CONFIG_IP_VS_SH=m -CONFIG_IP_VS_SED=m -CONFIG_IP_VS_NQ=m - -# -# IPVS application helper -# -CONFIG_IP_VS_FTP=m +# CONFIG_TCP_MD5SIG is not set +# CONFIG_IP_VS is not set CONFIG_IPV6=m CONFIG_IPV6_PRIVACY=y CONFIG_IPV6_ROUTER_PREF=y # CONFIG_IPV6_ROUTE_INFO is not set +# CONFIG_IPV6_OPTIMISTIC_DAD is not set CONFIG_INET6_AH=m CONFIG_INET6_ESP=m CONFIG_INET6_IPCOMP=m @@ -496,12 +487,13 @@ CONFIG_INET6_TUNNEL=m CONFIG_INET6_XFRM_MODE_TRANSPORT=m CONFIG_INET6_XFRM_MODE_TUNNEL=m CONFIG_INET6_XFRM_MODE_BEET=m -# CONFIG_INET6_XFRM_MODE_ROUTEOPTIMIZATION is not set +CONFIG_INET6_XFRM_MODE_ROUTEOPTIMIZATION=m CONFIG_IPV6_SIT=m CONFIG_IPV6_TUNNEL=m -# CONFIG_IPV6_MULTIPLE_TABLES is not set -# CONFIG_NETLABEL is not set -# CONFIG_NETWORK_SECMARK is not set +CONFIG_IPV6_MULTIPLE_TABLES=y +# CONFIG_IPV6_SUBTREES is not set +CONFIG_NETLABEL=y +CONFIG_NETWORK_SECMARK=y CONFIG_NETFILTER=y # CONFIG_NETFILTER_DEBUG is not set CONFIG_BRIDGE_NETFILTER=y @@ -512,82 +504,93 @@ CONFIG_BRIDGE_NETFILTER=y CONFIG_NETFILTER_NETLINK=m CONFIG_NETFILTER_NETLINK_QUEUE=m CONFIG_NETFILTER_NETLINK_LOG=m +CONFIG_NF_CONNTRACK_ENABLED=m +CONFIG_NF_CONNTRACK=m +CONFIG_NF_CT_ACCT=y +CONFIG_NF_CONNTRACK_MARK=y +# CONFIG_NF_CONNTRACK_SECMARK is not set +# CONFIG_NF_CONNTRACK_EVENTS is not set +CONFIG_NF_CT_PROTO_GRE=m +CONFIG_NF_CT_PROTO_SCTP=m +CONFIG_NF_CONNTRACK_AMANDA=m +CONFIG_NF_CONNTRACK_FTP=m +CONFIG_NF_CONNTRACK_H323=m +CONFIG_NF_CONNTRACK_IRC=m +CONFIG_NF_CONNTRACK_NETBIOS_NS=m +CONFIG_NF_CONNTRACK_PPTP=m +CONFIG_NF_CONNTRACK_SANE=m +CONFIG_NF_CONNTRACK_SIP=m +CONFIG_NF_CONNTRACK_TFTP=m +CONFIG_NF_CT_NETLINK=m CONFIG_NETFILTER_XTABLES=m CONFIG_NETFILTER_XT_TARGET_CLASSIFY=m CONFIG_NETFILTER_XT_TARGET_CONNMARK=m CONFIG_NETFILTER_XT_TARGET_DSCP=m CONFIG_NETFILTER_XT_TARGET_MARK=m CONFIG_NETFILTER_XT_TARGET_NFQUEUE=m +CONFIG_NETFILTER_XT_TARGET_NFLOG=m CONFIG_NETFILTER_XT_TARGET_NOTRACK=m +CONFIG_NETFILTER_XT_TARGET_SECMARK=m +CONFIG_NETFILTER_XT_TARGET_TCPMSS=m CONFIG_NETFILTER_XT_MATCH_COMMENT=m CONFIG_NETFILTER_XT_MATCH_CONNBYTES=m CONFIG_NETFILTER_XT_MATCH_CONNMARK=m CONFIG_NETFILTER_XT_MATCH_CONNTRACK=m CONFIG_NETFILTER_XT_MATCH_DCCP=m CONFIG_NETFILTER_XT_MATCH_DSCP=m -# CONFIG_NETFILTER_XT_MATCH_ESP is not set +CONFIG_NETFILTER_XT_MATCH_ESP=m CONFIG_NETFILTER_XT_MATCH_HELPER=m CONFIG_NETFILTER_XT_MATCH_LENGTH=m CONFIG_NETFILTER_XT_MATCH_LIMIT=m CONFIG_NETFILTER_XT_MATCH_MAC=m CONFIG_NETFILTER_XT_MATCH_MARK=m -# CONFIG_NETFILTER_XT_MATCH_POLICY is not set -# CONFIG_NETFILTER_XT_MATCH_MULTIPORT is not set +CONFIG_NETFILTER_XT_MATCH_POLICY=m +CONFIG_NETFILTER_XT_MATCH_MULTIPORT=m CONFIG_NETFILTER_XT_MATCH_PHYSDEV=m CONFIG_NETFILTER_XT_MATCH_PKTTYPE=m -# CONFIG_NETFILTER_XT_MATCH_QUOTA is not set +CONFIG_NETFILTER_XT_MATCH_QUOTA=m CONFIG_NETFILTER_XT_MATCH_REALM=m CONFIG_NETFILTER_XT_MATCH_SCTP=m CONFIG_NETFILTER_XT_MATCH_STATE=m -# CONFIG_NETFILTER_XT_MATCH_STATISTIC is not set +CONFIG_NETFILTER_XT_MATCH_STATISTIC=m CONFIG_NETFILTER_XT_MATCH_STRING=m CONFIG_NETFILTER_XT_MATCH_TCPMSS=m +CONFIG_NETFILTER_XT_MATCH_HASHLIMIT=m # # IP: Netfilter Configuration # -CONFIG_IP_NF_CONNTRACK=m -CONFIG_IP_NF_CT_ACCT=y -CONFIG_IP_NF_CONNTRACK_MARK=y -CONFIG_IP_NF_CONNTRACK_EVENTS=y -CONFIG_IP_NF_CONNTRACK_NETLINK=m -CONFIG_IP_NF_CT_PROTO_SCTP=m -CONFIG_IP_NF_FTP=m -CONFIG_IP_NF_IRC=m -CONFIG_IP_NF_NETBIOS_NS=m -CONFIG_IP_NF_TFTP=m -CONFIG_IP_NF_AMANDA=m -CONFIG_IP_NF_PPTP=m -# CONFIG_IP_NF_H323 is not set -# CONFIG_IP_NF_SIP is not set +CONFIG_NF_CONNTRACK_IPV4=m +CONFIG_NF_CONNTRACK_PROC_COMPAT=y CONFIG_IP_NF_QUEUE=m CONFIG_IP_NF_IPTABLES=m CONFIG_IP_NF_MATCH_IPRANGE=m CONFIG_IP_NF_MATCH_TOS=m CONFIG_IP_NF_MATCH_RECENT=m CONFIG_IP_NF_MATCH_ECN=m -# CONFIG_IP_NF_MATCH_AH is not set +CONFIG_IP_NF_MATCH_AH=m CONFIG_IP_NF_MATCH_TTL=m CONFIG_IP_NF_MATCH_OWNER=m CONFIG_IP_NF_MATCH_ADDRTYPE=m -CONFIG_IP_NF_MATCH_HASHLIMIT=m CONFIG_IP_NF_FILTER=m CONFIG_IP_NF_TARGET_REJECT=m CONFIG_IP_NF_TARGET_LOG=m CONFIG_IP_NF_TARGET_ULOG=m -CONFIG_IP_NF_TARGET_TCPMSS=m -CONFIG_IP_NF_NAT=m -CONFIG_IP_NF_NAT_NEEDED=y +CONFIG_NF_NAT=m +CONFIG_NF_NAT_NEEDED=y CONFIG_IP_NF_TARGET_MASQUERADE=m CONFIG_IP_NF_TARGET_REDIRECT=m CONFIG_IP_NF_TARGET_NETMAP=m CONFIG_IP_NF_TARGET_SAME=m -CONFIG_IP_NF_NAT_SNMP_BASIC=m -CONFIG_IP_NF_NAT_IRC=m -CONFIG_IP_NF_NAT_FTP=m -CONFIG_IP_NF_NAT_TFTP=m -CONFIG_IP_NF_NAT_AMANDA=m -CONFIG_IP_NF_NAT_PPTP=m +CONFIG_NF_NAT_SNMP_BASIC=m +CONFIG_NF_NAT_PROTO_GRE=m +CONFIG_NF_NAT_FTP=m +CONFIG_NF_NAT_IRC=m +CONFIG_NF_NAT_TFTP=m +CONFIG_NF_NAT_AMANDA=m +CONFIG_NF_NAT_PPTP=m +CONFIG_NF_NAT_H323=m +CONFIG_NF_NAT_SIP=m CONFIG_IP_NF_MANGLE=m CONFIG_IP_NF_TARGET_TOS=m CONFIG_IP_NF_TARGET_ECN=m @@ -601,6 +604,7 @@ CONFIG_IP_NF_ARP_MANGLE=m # # IPv6: Netfilter Configuration (EXPERIMENTAL) # +CONFIG_NF_CONNTRACK_IPV6=m CONFIG_IP6_NF_QUEUE=m CONFIG_IP6_NF_IPTABLES=m CONFIG_IP6_NF_MATCH_RT=m @@ -609,7 +613,8 @@ CONFIG_IP6_NF_MATCH_FRAG=m CONFIG_IP6_NF_MATCH_HL=m CONFIG_IP6_NF_MATCH_OWNER=m CONFIG_IP6_NF_MATCH_IPV6HEADER=m -# CONFIG_IP6_NF_MATCH_AH is not set +CONFIG_IP6_NF_MATCH_AH=m +CONFIG_IP6_NF_MATCH_MH=m CONFIG_IP6_NF_MATCH_EUI64=m CONFIG_IP6_NF_FILTER=m CONFIG_IP6_NF_TARGET_LOG=m @@ -621,7 +626,7 @@ CONFIG_IP6_NF_RAW=m # # DECnet: Netfilter Configuration # -# CONFIG_DECNET_NF_GRABULATOR is not set +CONFIG_DECNET_NF_GRABULATOR=m # # Bridge: Netfilter Configuration @@ -646,25 +651,13 @@ CONFIG_BRIDGE_EBT_REDIRECT=m CONFIG_BRIDGE_EBT_SNAT=m CONFIG_BRIDGE_EBT_LOG=m # CONFIG_BRIDGE_EBT_ULOG is not set - -# -# DCCP Configuration (EXPERIMENTAL) -# # CONFIG_IP_DCCP is not set - -# -# SCTP Configuration (EXPERIMENTAL) -# CONFIG_IP_SCTP=m # CONFIG_SCTP_DBG_MSG is not set # CONFIG_SCTP_DBG_OBJCNT is not set # CONFIG_SCTP_HMAC_NONE is not set # CONFIG_SCTP_HMAC_SHA1 is not set CONFIG_SCTP_HMAC_MD5=y - -# -# TIPC Configuration (EXPERIMENTAL) -# # CONFIG_TIPC is not set CONFIG_ATM=m CONFIG_ATM_CLIP=m @@ -690,18 +683,18 @@ CONFIG_COPS_TANGENT=y CONFIG_IPDDP=m CONFIG_IPDDP_ENCAP=y CONFIG_IPDDP_DECAP=y -# CONFIG_X25 is not set -# CONFIG_LAPB is not set -# CONFIG_ECONET is not set +CONFIG_X25=m +CONFIG_LAPB=m +CONFIG_ECONET=m +CONFIG_ECONET_AUNUDP=y +CONFIG_ECONET_NATIVE=y CONFIG_WAN_ROUTER=m # # QoS and/or fair queueing # CONFIG_NET_SCHED=y -CONFIG_NET_SCH_CLK_JIFFIES=y -# CONFIG_NET_SCH_CLK_GETTIMEOFDAY is not set -# CONFIG_NET_SCH_CLK_CPU is not set +CONFIG_NET_SCH_FIFO=y # # Queueing/Scheduling @@ -731,7 +724,7 @@ CONFIG_NET_CLS_ROUTE=y CONFIG_NET_CLS_FW=m CONFIG_NET_CLS_U32=m # CONFIG_CLS_U32_PERF is not set -# CONFIG_CLS_U32_MARK is not set +CONFIG_CLS_U32_MARK=y CONFIG_NET_CLS_RSVP=m CONFIG_NET_CLS_RSVP6=m CONFIG_NET_EMATCH=y @@ -769,8 +762,8 @@ CONFIG_ROSE=m # # AX.25 network device drivers # -# CONFIG_MKISS is not set -# CONFIG_6PACK is not set +CONFIG_MKISS=m +CONFIG_6PACK=m CONFIG_BPQETHER=m CONFIG_SCC=m CONFIG_SCC_DELAY=y @@ -820,6 +813,7 @@ CONFIG_GIRBIL_DONGLE=m CONFIG_MCP2120_DONGLE=m CONFIG_OLD_BELKIN_DONGLE=m CONFIG_ACT200L_DONGLE=m +CONFIG_KINGSUN_DONGLE=m # # Old SIR device drivers @@ -841,7 +835,7 @@ CONFIG_SMC_IRCC_FIR=m CONFIG_ALI_FIR=m CONFIG_VLSI_FIR=m CONFIG_VIA_FIR=m -# CONFIG_MCS_FIR is not set +CONFIG_MCS_FIR=m CONFIG_BT=m CONFIG_BT_L2CAP=m CONFIG_BT_SCO=m @@ -869,6 +863,20 @@ CONFIG_BT_HCIBT3C=m CONFIG_BT_HCIBLUECARD=m CONFIG_BT_HCIBTUART=m CONFIG_BT_HCIVHCI=m +CONFIG_AF_RXRPC=m +# CONFIG_AF_RXRPC_DEBUG is not set +CONFIG_RXKAD=m +CONFIG_FIB_RULES=y + +# +# Wireless +# +CONFIG_CFG80211=m +CONFIG_WIRELESS_EXT=y +CONFIG_MAC80211=m +# CONFIG_MAC80211_LEDS is not set +# CONFIG_MAC80211_DEBUGFS is not set +# CONFIG_MAC80211_DEBUG is not set CONFIG_IEEE80211=m # CONFIG_IEEE80211_DEBUG is not set CONFIG_IEEE80211_CRYPT_WEP=m @@ -876,8 +884,8 @@ CONFIG_IEEE80211_CRYPT_CCMP=m CONFIG_IEEE80211_CRYPT_TKIP=m CONFIG_IEEE80211_SOFTMAC=m # CONFIG_IEEE80211_SOFTMAC_DEBUG is not set -CONFIG_WIRELESS_EXT=y -CONFIG_FIB_RULES=y +CONFIG_RFKILL=m +CONFIG_RFKILL_INPUT=m # # Device Drivers @@ -895,10 +903,6 @@ CONFIG_FW_LOADER=y # Connector - unified userspace <-> kernelspace linker # CONFIG_CONNECTOR=m - -# -# Memory Technology Devices (MTD) -# CONFIG_MTD=m # CONFIG_MTD_DEBUG is not set CONFIG_MTD_CONCAT=m @@ -912,6 +916,7 @@ CONFIG_MTD_REDBOOT_DIRECTORY_BLOCK=-1 # User Modules And Translation Layers # CONFIG_MTD_CHAR=m +CONFIG_MTD_BLKDEVS=m CONFIG_MTD_BLOCK=m CONFIG_MTD_BLOCK_RO=m CONFIG_FTL=m @@ -928,9 +933,6 @@ CONFIG_MTD_CFI=m CONFIG_MTD_JEDECPROBE=m CONFIG_MTD_GEN_PROBE=m # CONFIG_MTD_CFI_ADV_OPTIONS is not set -# CONFIG_MTD_CFI_NOSWAP is not set -# CONFIG_MTD_CFI_BE_BYTE_SWAP is not set -# CONFIG_MTD_CFI_LE_BYTE_SWAP is not set CONFIG_MTD_MAP_BANK_WIDTH_1=y CONFIG_MTD_MAP_BANK_WIDTH_2=y CONFIG_MTD_MAP_BANK_WIDTH_4=y @@ -948,7 +950,6 @@ CONFIG_MTD_CFI_UTIL=m CONFIG_MTD_RAM=m CONFIG_MTD_ROM=m CONFIG_MTD_ABSENT=m -# CONFIG_MTD_OBSOLETE_CHIPS is not set # # Mapping drivers for chip access @@ -963,9 +964,10 @@ CONFIG_MTD_SC520CDP=m CONFIG_MTD_NETSC520=m CONFIG_MTD_TS5500=m CONFIG_MTD_SBC_GXX=m -CONFIG_MTD_SCx200_DOCFLASH=m CONFIG_MTD_AMD76XROM=m CONFIG_MTD_ICHXROM=m +CONFIG_MTD_ESB2ROM=m +CONFIG_MTD_CK804XROM=m CONFIG_MTD_SCB2_FLASH=m CONFIG_MTD_NETtel=m CONFIG_MTD_DILNETPC=m @@ -999,26 +1001,34 @@ CONFIG_MTD_DOCPROBE=m CONFIG_MTD_DOCECC=m # CONFIG_MTD_DOCPROBE_ADVANCED is not set CONFIG_MTD_DOCPROBE_ADDRESS=0 - -# -# NAND Flash Device Drivers -# CONFIG_MTD_NAND=m CONFIG_MTD_NAND_VERIFY_WRITE=y # CONFIG_MTD_NAND_ECC_SMC is not set +# CONFIG_MTD_NAND_MUSEUM_IDS is not set CONFIG_MTD_NAND_IDS=m # CONFIG_MTD_NAND_DISKONCHIP is not set +CONFIG_MTD_NAND_CAFE=m CONFIG_MTD_NAND_CS553X=m CONFIG_MTD_NAND_NANDSIM=m - -# -# OneNAND Flash Device Drivers -# +CONFIG_MTD_NAND_PLATFORM=m CONFIG_MTD_ONENAND=m CONFIG_MTD_ONENAND_VERIFY_WRITE=y CONFIG_MTD_ONENAND_OTP=y # +# UBI - Unsorted block images +# +CONFIG_MTD_UBI=m +CONFIG_MTD_UBI_WL_THRESHOLD=4096 +CONFIG_MTD_UBI_BEB_RESERVE=1 +# CONFIG_MTD_UBI_GLUEBI is not set + +# +# UBI debugging options +# +# CONFIG_MTD_UBI_DEBUG is not set + +# # Parallel port support # CONFIG_PARPORT=m @@ -1027,10 +1037,10 @@ CONFIG_PARPORT_SERIAL=m # CONFIG_PARPORT_PC_FIFO is not set # CONFIG_PARPORT_PC_SUPERIO is not set CONFIG_PARPORT_PC_PCMCIA=m -CONFIG_PARPORT_NOT_PC=y # CONFIG_PARPORT_GSC is not set CONFIG_PARPORT_AX88796=m CONFIG_PARPORT_1284=y +CONFIG_PARPORT_NOT_PC=y # # Plug and Play support @@ -1042,7 +1052,8 @@ CONFIG_PNP=y # Protocols # CONFIG_ISAPNP=y -# CONFIG_PNPBIOS is not set +CONFIG_PNPBIOS=y +CONFIG_PNPBIOS_PROC_FS=y CONFIG_PNPACPI=y # @@ -1051,7 +1062,6 @@ CONFIG_PNPACPI=y CONFIG_BLK_DEV_FD=y CONFIG_BLK_DEV_XD=m CONFIG_PARIDE=m -CONFIG_PARIDE_PARPORT=m # # Parallel IDE high-level drivers @@ -1081,8 +1091,8 @@ CONFIG_PARIDE_KBIC=m CONFIG_PARIDE_KTTI=m CONFIG_PARIDE_ON20=m CONFIG_PARIDE_ON26=m -CONFIG_BLK_CPQ_DA=m -CONFIG_BLK_CPQ_CISS_DA=m +CONFIG_BLK_CPQ_DA=y +CONFIG_BLK_CPQ_CISS_DA=y CONFIG_CISS_SCSI_TAPE=y CONFIG_BLK_DEV_DAC960=y CONFIG_BLK_DEV_UMEM=m @@ -1096,7 +1106,6 @@ CONFIG_BLK_DEV_RAM=y CONFIG_BLK_DEV_RAM_COUNT=16 CONFIG_BLK_DEV_RAM_SIZE=16384 CONFIG_BLK_DEV_RAM_BLOCKSIZE=1024 -CONFIG_BLK_DEV_INITRD=y CONFIG_CDROM_PKTCDVD=m CONFIG_CDROM_PKTCDVD_BUFFERS=8 CONFIG_CDROM_PKTCDVD_WCACHE=y @@ -1106,14 +1115,17 @@ CONFIG_ATA_OVER_ETH=m # Misc devices # CONFIG_IBM_ASM=m +CONFIG_PHANTOM=m CONFIG_SGI_IOC4=m CONFIG_TIFM_CORE=m CONFIG_TIFM_7XX1=m +CONFIG_ASUS_LAPTOP=m CONFIG_MSI_LAPTOP=m - -# -# ATA/ATAPI/MFM/RLL support -# +CONFIG_SONY_LAPTOP=m +CONFIG_SONYPI_COMPAT=y +CONFIG_THINKPAD_ACPI=m +# CONFIG_THINKPAD_ACPI_DEBUG is not set +CONFIG_THINKPAD_ACPI_BAY=y CONFIG_IDE=y CONFIG_BLK_DEV_IDE=y @@ -1125,11 +1137,14 @@ CONFIG_BLK_DEV_IDE=y CONFIG_BLK_DEV_IDEDISK=y CONFIG_IDEDISK_MULTI_MODE=y CONFIG_BLK_DEV_IDECS=m +CONFIG_BLK_DEV_DELKIN=m CONFIG_BLK_DEV_IDECD=y CONFIG_BLK_DEV_IDETAPE=m CONFIG_BLK_DEV_IDEFLOPPY=m # CONFIG_BLK_DEV_IDESCSI is not set +# CONFIG_BLK_DEV_IDEACPI is not set # CONFIG_IDE_TASK_IOCTL is not set +CONFIG_IDE_PROC_FS=y # # IDE chipset support/bugfixes @@ -1140,13 +1155,13 @@ CONFIG_BLK_DEV_CMD640_ENHANCED=y CONFIG_BLK_DEV_IDEPNP=y CONFIG_BLK_DEV_IDEPCI=y CONFIG_IDEPCI_SHARE_IRQ=y +CONFIG_IDEPCI_PCIBUS_ORDER=y # CONFIG_BLK_DEV_OFFBOARD is not set CONFIG_BLK_DEV_GENERIC=y CONFIG_BLK_DEV_OPTI621=y CONFIG_BLK_DEV_RZ1000=y CONFIG_BLK_DEV_IDEDMA_PCI=y # CONFIG_BLK_DEV_IDEDMA_FORCED is not set -CONFIG_IDEDMA_PCI_AUTO=y # CONFIG_IDEDMA_ONLYDISK is not set CONFIG_BLK_DEV_AEC62XX=y CONFIG_BLK_DEV_ALI15X3=y @@ -1165,7 +1180,8 @@ CONFIG_BLK_DEV_HPT366=y CONFIG_BLK_DEV_JMICRON=y CONFIG_BLK_DEV_SC1200=y CONFIG_BLK_DEV_PIIX=y -CONFIG_BLK_DEV_IT821X=m +CONFIG_BLK_DEV_IT8213=y +CONFIG_BLK_DEV_IT821X=y CONFIG_BLK_DEV_NS87415=m CONFIG_BLK_DEV_PDC202XX_OLD=y CONFIG_PDC202XX_BURST=y @@ -1176,6 +1192,7 @@ CONFIG_BLK_DEV_SIS5513=y CONFIG_BLK_DEV_SLC90E66=y CONFIG_BLK_DEV_TRM290=y CONFIG_BLK_DEV_VIA82CXXX=y +CONFIG_BLK_DEV_TC86C001=y # CONFIG_IDE_ARM is not set CONFIG_IDE_CHIPSETS=y @@ -1190,7 +1207,6 @@ CONFIG_BLK_DEV_QD65XX=m CONFIG_BLK_DEV_UMC8672=m CONFIG_BLK_DEV_IDEDMA=y # CONFIG_IDEDMA_IVB is not set -CONFIG_IDEDMA_AUTO=y # CONFIG_BLK_DEV_HD is not set # @@ -1198,6 +1214,7 @@ CONFIG_IDEDMA_AUTO=y # CONFIG_RAID_ATTRS=m CONFIG_SCSI=y +CONFIG_SCSI_TGT=m CONFIG_SCSI_NETLINK=y CONFIG_SCSI_PROC_FS=y @@ -1216,8 +1233,10 @@ CONFIG_CHR_DEV_SCH=m # Some SCSI devices (e.g. CD jukebox) support multiple LUNs # CONFIG_SCSI_MULTI_LUN=y -CONFIG_SCSI_CONSTANTS=y -CONFIG_SCSI_LOGGING=y +# CONFIG_SCSI_CONSTANTS is not set +# CONFIG_SCSI_LOGGING is not set +CONFIG_SCSI_SCAN_ASYNC=y +CONFIG_SCSI_WAIT_SCAN=m # # SCSI Transports @@ -1244,7 +1263,6 @@ CONFIG_SCSI_AACRAID=m CONFIG_SCSI_AIC7XXX=y CONFIG_AIC7XXX_CMDS_PER_DEVICE=4 CONFIG_AIC7XXX_RESET_DELAY_MS=15000 -# CONFIG_AIC7XXX_PROBE_EISA_VL is not set # CONFIG_AIC7XXX_DEBUG_ENABLE is not set CONFIG_AIC7XXX_DEBUG_MASK=0 # CONFIG_AIC7XXX_REG_PRETTY_PRINT is not set @@ -1252,7 +1270,6 @@ CONFIG_SCSI_AIC7XXX_OLD=m CONFIG_SCSI_AIC79XX=m CONFIG_AIC79XX_CMDS_PER_DEVICE=4 CONFIG_AIC79XX_RESET_DELAY_MS=15000 -# CONFIG_AIC79XX_ENABLE_RD_STRM is not set # CONFIG_AIC79XX_DEBUG_ENABLE is not set CONFIG_AIC79XX_DEBUG_MASK=0 # CONFIG_AIC79XX_REG_PRETTY_PRINT is not set @@ -1262,7 +1279,9 @@ CONFIG_SCSI_DPT_I2O=m CONFIG_SCSI_ADVANSYS=m CONFIG_SCSI_IN2000=m CONFIG_SCSI_ARCMSR=m -# CONFIG_MEGARAID_NEWGEN is not set +CONFIG_MEGARAID_NEWGEN=y +CONFIG_MEGARAID_MM=m +CONFIG_MEGARAID_MAILBOX=m CONFIG_MEGARAID_LEGACY=m CONFIG_MEGARAID_SAS=m CONFIG_SCSI_HPTIOP=m @@ -1292,7 +1311,7 @@ CONFIG_SCSI_IMM=m # CONFIG_SCSI_IZIP_SLOW_CTR is not set CONFIG_SCSI_NCR53C406A=m CONFIG_SCSI_NCR_D700=m -# CONFIG_SCSI_STEX is not set +CONFIG_SCSI_STEX=y CONFIG_SCSI_SYM53C8XX_2=m CONFIG_SCSI_SYM53C8XX_DMA_ADDRESSING_MODE=1 CONFIG_SCSI_SYM53C8XX_DEFAULT_TAGS=16 @@ -1305,16 +1324,15 @@ CONFIG_SCSI_NCR_Q720=m CONFIG_SCSI_NCR53C8XX_DEFAULT_TAGS=8 CONFIG_SCSI_NCR53C8XX_MAX_TAGS=32 CONFIG_SCSI_NCR53C8XX_SYNC=20 -# CONFIG_SCSI_NCR53C8XX_PROFILE is not set CONFIG_SCSI_PAS16=m CONFIG_SCSI_PSI240I=m CONFIG_SCSI_QLOGIC_FAS=m CONFIG_SCSI_QLOGIC_1280=m CONFIG_SCSI_QLA_FC=m -# CONFIG_SCSI_QLA_ISCSI is not set +CONFIG_SCSI_QLA_ISCSI=m CONFIG_SCSI_LPFC=m +CONFIG_SCSI_SEAGATE=m CONFIG_SCSI_SIM710=m -CONFIG_53C700_IO_MAPPED=y CONFIG_SCSI_SYM53C416=m CONFIG_SCSI_DC395x=m CONFIG_SCSI_DC390T=m @@ -1326,6 +1344,7 @@ CONFIG_SCSI_U14_34F_MAX_TAGS=8 CONFIG_SCSI_ULTRASTOR=m CONFIG_SCSI_NSP32=m CONFIG_SCSI_DEBUG=m +CONFIG_SCSI_SRP=m # # PCMCIA SCSI adapter support @@ -1335,15 +1354,13 @@ CONFIG_PCMCIA_FDOMAIN=m CONFIG_PCMCIA_NINJA_SCSI=m CONFIG_PCMCIA_QLOGIC=m CONFIG_PCMCIA_SYM53C500=m - -# -# Serial ATA (prod) and Parallel ATA (experimental) drivers -# CONFIG_ATA=y +# CONFIG_ATA_NONSTANDARD is not set +CONFIG_ATA_ACPI=y CONFIG_SATA_AHCI=y CONFIG_SATA_SVW=m CONFIG_ATA_PIIX=y -# CONFIG_SATA_MV is not set +CONFIG_SATA_MV=m CONFIG_SATA_NV=y CONFIG_PDC_ADMA=m CONFIG_SATA_QSTOR=m @@ -1355,45 +1372,49 @@ CONFIG_SATA_SIS=y CONFIG_SATA_ULI=y CONFIG_SATA_VIA=y CONFIG_SATA_VITESSE=y -CONFIG_SATA_INTEL_COMBINED=y +CONFIG_SATA_INIC162X=m CONFIG_PATA_ALI=m CONFIG_PATA_AMD=m CONFIG_PATA_ARTOP=m CONFIG_PATA_ATIIXP=m +CONFIG_PATA_CMD640_PCI=m CONFIG_PATA_CMD64X=m CONFIG_PATA_CS5520=m CONFIG_PATA_CS5530=m CONFIG_PATA_CS5535=m -# CONFIG_PATA_CYPRESS is not set +CONFIG_PATA_CYPRESS=m CONFIG_PATA_EFAR=m CONFIG_ATA_GENERIC=m CONFIG_PATA_HPT366=m -# CONFIG_PATA_HPT37X is not set +CONFIG_PATA_HPT37X=m CONFIG_PATA_HPT3X2N=m CONFIG_PATA_HPT3X3=m CONFIG_PATA_ISAPNP=m CONFIG_PATA_IT821X=m -CONFIG_PATA_JMICRON=m +CONFIG_PATA_IT8213=m +CONFIG_PATA_JMICRON=y CONFIG_PATA_LEGACY=m CONFIG_PATA_TRIFLEX=m +CONFIG_PATA_MARVELL=m CONFIG_PATA_MPIIX=m CONFIG_PATA_OLDPIIX=m CONFIG_PATA_NETCELL=m CONFIG_PATA_NS87410=m -# CONFIG_PATA_OPTI is not set -# CONFIG_PATA_OPTIDMA is not set +CONFIG_PATA_OPTI=m +CONFIG_PATA_OPTIDMA=m CONFIG_PATA_PCMCIA=m -# CONFIG_PATA_PDC_OLD is not set +CONFIG_PATA_PDC_OLD=m CONFIG_PATA_QDI=m -# CONFIG_PATA_RADISYS is not set +CONFIG_PATA_RADISYS=m CONFIG_PATA_RZ1000=m CONFIG_PATA_SC1200=m CONFIG_PATA_SERVERWORKS=m CONFIG_PATA_PDC2027X=m CONFIG_PATA_SIL680=m -CONFIG_PATA_SIS=m +CONFIG_PATA_SIS=y CONFIG_PATA_VIA=m CONFIG_PATA_WINBOND=m +CONFIG_PATA_WINBOND_VLB=m # # Old CD-ROM drivers (not SCSI, not IDE) @@ -1427,6 +1448,7 @@ CONFIG_DM_CRYPT=m # CONFIG_DM_MIRROR is not set # CONFIG_DM_ZERO is not set # CONFIG_DM_MULTIPATH is not set +# CONFIG_DM_DELAY is not set # # Fusion MPT device support @@ -1442,29 +1464,29 @@ CONFIG_FUSION_LAN=m # # IEEE 1394 (FireWire) support # +CONFIG_FIREWIRE=m +CONFIG_FIREWIRE_OHCI=m +CONFIG_FIREWIRE_SBP2=m CONFIG_IEEE1394=y # # Subsystem Options # # CONFIG_IEEE1394_VERBOSEDEBUG is not set -# CONFIG_IEEE1394_OUI_DB is not set -CONFIG_IEEE1394_EXTRA_CONFIG_ROMS=y -CONFIG_IEEE1394_CONFIG_ROM_IP1394=y -# CONFIG_IEEE1394_EXPORT_FULL_API is not set # -# Device Drivers +# Controllers # CONFIG_IEEE1394_PCILYNX=m CONFIG_IEEE1394_OHCI1394=m # -# Protocol Drivers +# Protocols # CONFIG_IEEE1394_VIDEO1394=m CONFIG_IEEE1394_SBP2=m # CONFIG_IEEE1394_SBP2_PHYS_DMA is not set +CONFIG_IEEE1394_ETH1394_ROM_ENTRY=y CONFIG_IEEE1394_ETH1394=m CONFIG_IEEE1394_DV1394=m CONFIG_IEEE1394_RAWIO=m @@ -1481,6 +1503,7 @@ CONFIG_I2O_BUS=m CONFIG_I2O_BLOCK=m CONFIG_I2O_SCSI=m CONFIG_I2O_PROC=m +# CONFIG_MACINTOSH_DRIVERS is not set # # Network device support @@ -1492,10 +1515,6 @@ CONFIG_BONDING=m CONFIG_EQUALIZER=m CONFIG_TUN=m CONFIG_NET_SB1000=m - -# -# ARCnet devices -# CONFIG_ARCNET=m CONFIG_ARCNET_1201=m CONFIG_ARCNET_1051=m @@ -1507,10 +1526,6 @@ CONFIG_ARCNET_RIM_I=m CONFIG_ARCNET_COM20020=m CONFIG_ARCNET_COM20020_ISA=m CONFIG_ARCNET_COM20020_PCI=m - -# -# PHY device support -# CONFIG_PHYLIB=m # @@ -1523,6 +1538,7 @@ CONFIG_LXT_PHY=m CONFIG_CICADA_PHY=m CONFIG_VITESSE_PHY=m CONFIG_SMSC_PHY=m +CONFIG_BROADCOM_PHY=m CONFIG_FIXED_PHY=m CONFIG_FIXED_MII_10_FDX=y CONFIG_FIXED_MII_100_FDX=y @@ -1581,7 +1597,7 @@ CONFIG_EEXPRESS=m CONFIG_EEXPRESS_PRO=m CONFIG_HPLAN_PLUS=m CONFIG_HPLAN=m -CONFIG_LP486E=m +# CONFIG_LP486E is not set CONFIG_ETH16I=m CONFIG_NE2000=m CONFIG_ZNET=m @@ -1624,14 +1640,12 @@ CONFIG_TLAN=m CONFIG_VIA_RHINE=m CONFIG_VIA_RHINE_MMIO=y # CONFIG_VIA_RHINE_NAPI is not set +CONFIG_SC92031=m CONFIG_NET_POCKET=y CONFIG_ATP=m CONFIG_DE600=m CONFIG_DE620=m - -# -# Ethernet (1000 Mbit) -# +CONFIG_NETDEV_1000=y CONFIG_ACENIC=m # CONFIG_ACENIC_OMIT_TIGON_I is not set CONFIG_DL2K=m @@ -1652,20 +1666,20 @@ CONFIG_VIA_VELOCITY=m CONFIG_TIGON3=m CONFIG_BNX2=m CONFIG_QLA3XXX=m - -# -# Ethernet (10000 Mbit) -# +CONFIG_ATL1=m +CONFIG_NETDEV_10000=y CONFIG_CHELSIO_T1=m +CONFIG_CHELSIO_T1_1G=y +CONFIG_CHELSIO_T1_NAPI=y +CONFIG_CHELSIO_T3=m CONFIG_IXGB=m CONFIG_IXGB_NAPI=y CONFIG_S2IO=m CONFIG_S2IO_NAPI=y CONFIG_MYRI10GE=m - -# -# Token Ring devices -# +CONFIG_NETXEN_NIC=m +CONFIG_MLX4_CORE=m +CONFIG_MLX4_DEBUG=y CONFIG_TR=y CONFIG_IBMTR=m CONFIG_IBMOL=m @@ -1680,28 +1694,16 @@ CONFIG_MADGEMC=m CONFIG_SMCTR=m # -# Wireless LAN (non-hamradio) -# -CONFIG_NET_RADIO=y -CONFIG_NET_WIRELESS_RTNETLINK=y - -# -# Obsolete Wireless cards support (pre-802.11) +# Wireless LAN # +CONFIG_WLAN_PRE80211=y CONFIG_STRIP=m CONFIG_ARLAN=m CONFIG_WAVELAN=m CONFIG_PCMCIA_WAVELAN=m CONFIG_PCMCIA_NETWAVE=m - -# -# Wireless 802.11 Frequency Hopping cards support -# +CONFIG_WLAN_80211=y CONFIG_PCMCIA_RAYCS=m - -# -# Wireless 802.11b ISA/PCI cards support -# CONFIG_IPW2100=m CONFIG_IPW2100_MONITOR=y # CONFIG_IPW2100_DEBUG is not set @@ -1709,8 +1711,11 @@ CONFIG_IPW2200=m CONFIG_IPW2200_MONITOR=y # CONFIG_IPW2200_RADIOTAP is not set # CONFIG_IPW2200_PROMISCUOUS is not set -# CONFIG_IPW2200_QOS is not set +CONFIG_IPW2200_QOS=y # CONFIG_IPW2200_DEBUG is not set +CONFIG_LIBERTAS=m +CONFIG_LIBERTAS_USB=m +# CONFIG_LIBERTAS_DEBUG is not set CONFIG_AIRO=m CONFIG_HERMES=m CONFIG_PLX_HERMES=m @@ -1719,29 +1724,20 @@ CONFIG_NORTEL_HERMES=m CONFIG_PCI_HERMES=m CONFIG_ATMEL=m CONFIG_PCI_ATMEL=m - -# -# Wireless 802.11b Pcmcia/Cardbus cards support -# CONFIG_PCMCIA_HERMES=m CONFIG_PCMCIA_SPECTRUM=m CONFIG_AIRO_CS=m CONFIG_PCMCIA_ATMEL=m CONFIG_PCMCIA_WL3501=m - -# -# Prism GT/Duette 802.11(a/b/g) PCI/Cardbus support -# CONFIG_PRISM54=m CONFIG_USB_ZD1201=m CONFIG_HOSTAP=m -CONFIG_HOSTAP_FIRMWARE=y -CONFIG_HOSTAP_FIRMWARE_NVRAM=y +# CONFIG_HOSTAP_FIRMWARE is not set CONFIG_HOSTAP_PLX=m CONFIG_HOSTAP_PCI=m CONFIG_HOSTAP_CS=m CONFIG_BCM43XX=m -# CONFIG_BCM43XX_DEBUG is not set +CONFIG_BCM43XX_DEBUG=y CONFIG_BCM43XX_DMA=y CONFIG_BCM43XX_PIO=y CONFIG_BCM43XX_DMA_AND_PIO_MODE=y @@ -1749,11 +1745,32 @@ CONFIG_BCM43XX_DMA_AND_PIO_MODE=y # CONFIG_BCM43XX_PIO_MODE is not set CONFIG_ZD1211RW=m # CONFIG_ZD1211RW_DEBUG is not set -CONFIG_NET_WIRELESS=y # -# PCMCIA network device support +# USB Network Adapters # +CONFIG_USB_CATC=m +CONFIG_USB_KAWETH=m +CONFIG_USB_PEGASUS=m +CONFIG_USB_RTL8150=m +CONFIG_USB_USBNET_MII=m +CONFIG_USB_USBNET=m +CONFIG_USB_NET_AX8817X=m +CONFIG_USB_NET_CDCETHER=m +CONFIG_USB_NET_DM9601=m +CONFIG_USB_NET_GL620A=m +CONFIG_USB_NET_NET1080=m +CONFIG_USB_NET_PLUSB=m +CONFIG_USB_NET_MCS7830=m +CONFIG_USB_NET_RNDIS_HOST=m +CONFIG_USB_NET_CDC_SUBSET=m +CONFIG_USB_ALI_M5632=y +CONFIG_USB_AN2720=y +CONFIG_USB_BELKIN=y +CONFIG_USB_ARMLINUX=y +# CONFIG_USB_EPSON2888 is not set +CONFIG_USB_KC2190=y +CONFIG_USB_NET_ZAURUS=m CONFIG_NET_PCMCIA=y CONFIG_PCMCIA_3C589=m CONFIG_PCMCIA_3C574=m @@ -1765,16 +1782,9 @@ CONFIG_PCMCIA_XIRC2PS=m CONFIG_PCMCIA_AXNET=m CONFIG_ARCNET_COM20020_CS=m CONFIG_PCMCIA_IBMTR=m - -# -# Wan interfaces -# CONFIG_WAN=y CONFIG_HOSTESS_SV11=m CONFIG_COSA=m -CONFIG_DSCC4=m -# CONFIG_DSCC4_PCISYNC is not set -# CONFIG_DSCC4_PCI_RST is not set CONFIG_LANMEDIA=m CONFIG_SEALEVEL_4021=m CONFIG_HDLC=m @@ -1783,10 +1793,7 @@ CONFIG_HDLC_RAW_ETH=m CONFIG_HDLC_CISCO=m CONFIG_HDLC_FR=m CONFIG_HDLC_PPP=m - -# -# X.25/LAPB support is disabled -# +CONFIG_HDLC_X25=m CONFIG_PCI200SYN=m CONFIG_WANXL=m CONFIG_PC300=m @@ -1799,22 +1806,24 @@ CONFIG_PC300_MLPPP=y # # Refer to the file README.mlppp, provided by PC300 package. # +CONFIG_PC300TOO=m CONFIG_N2=m CONFIG_C101=m CONFIG_FARSYNC=m +CONFIG_DSCC4=m +# CONFIG_DSCC4_PCISYNC is not set +# CONFIG_DSCC4_PCI_RST is not set CONFIG_DLCI=m -CONFIG_DLCI_COUNT=24 CONFIG_DLCI_MAX=8 CONFIG_SDLA=m -CONFIG_WAN_ROUTER_DRIVERS=y +CONFIG_WAN_ROUTER_DRIVERS=m CONFIG_CYCLADES_SYNC=m CONFIG_CYCLOMX_X25=y +CONFIG_LAPBETHER=m +CONFIG_X25_ASY=m CONFIG_SBNI=m # CONFIG_SBNI_MULTILINE is not set - -# -# ATM drivers -# +CONFIG_ATM_DRIVERS=y # CONFIG_ATM_DUMMY is not set CONFIG_ATM_TCP=m CONFIG_ATM_LANAI=m @@ -1843,6 +1852,7 @@ CONFIG_ATM_HE=m # CONFIG_ATM_HE_USE_SUNI is not set CONFIG_FDDI=y CONFIG_DEFXX=m +# CONFIG_DEFXX_MMIO is not set CONFIG_SKFP=m CONFIG_HIPPI=y CONFIG_ROADRUNNER=m @@ -1867,7 +1877,6 @@ CONFIG_NET_FC=y CONFIG_SHAPER=m CONFIG_NETCONSOLE=m CONFIG_NETPOLL=y -CONFIG_NETPOLL_RX=y CONFIG_NETPOLL_TRAP=y CONFIG_NET_POLL_CONTROLLER=y @@ -1886,6 +1895,7 @@ CONFIG_ISDN=m # CONFIG_ISDN_CAPI=m CONFIG_ISDN_DRV_AVMB1_VERBOSE_REASON=y +# CONFIG_CAPI_TRACE is not set CONFIG_ISDN_CAPI_MIDDLEWARE=y CONFIG_ISDN_CAPI_CAPI20=m CONFIG_ISDN_CAPI_CAPIFS_BOOL=y @@ -1931,6 +1941,7 @@ CONFIG_PHONE_IXJ_PCMCIA=m # CONFIG_INPUT=y CONFIG_INPUT_FF_MEMLESS=y +CONFIG_INPUT_POLLDEV=m # # Userland interfaces @@ -1951,14 +1962,21 @@ CONFIG_INPUT_EVDEV=m # CONFIG_INPUT_KEYBOARD=y CONFIG_KEYBOARD_ATKBD=y -# CONFIG_KEYBOARD_SUNKBD is not set -# CONFIG_KEYBOARD_LKKBD is not set -# CONFIG_KEYBOARD_XTKBD is not set -# CONFIG_KEYBOARD_NEWTON is not set -# CONFIG_KEYBOARD_STOWAWAY is not set +CONFIG_KEYBOARD_SUNKBD=m +CONFIG_KEYBOARD_LKKBD=m +CONFIG_KEYBOARD_XTKBD=m +CONFIG_KEYBOARD_NEWTON=m +CONFIG_KEYBOARD_STOWAWAY=m CONFIG_INPUT_MOUSE=y CONFIG_MOUSE_PS2=y +CONFIG_MOUSE_PS2_ALPS=y +CONFIG_MOUSE_PS2_LOGIPS2PP=y +CONFIG_MOUSE_PS2_SYNAPTICS=y +CONFIG_MOUSE_PS2_LIFEBOOK=y +CONFIG_MOUSE_PS2_TRACKPOINT=y +# CONFIG_MOUSE_PS2_TOUCHKIT is not set CONFIG_MOUSE_SERIAL=m +CONFIG_MOUSE_APPLETOUCH=m CONFIG_MOUSE_INPORT=m CONFIG_MOUSE_ATIXL=y CONFIG_MOUSE_LOGIBM=m @@ -1989,18 +2007,40 @@ CONFIG_JOYSTICK_DB9=m CONFIG_JOYSTICK_GAMECON=m CONFIG_JOYSTICK_TURBOGRAFX=m # CONFIG_JOYSTICK_JOYDUMP is not set +CONFIG_JOYSTICK_XPAD=m +CONFIG_INPUT_TABLET=y +CONFIG_TABLET_USB_ACECAD=m +CONFIG_TABLET_USB_AIPTEK=m +CONFIG_TABLET_USB_GTCO=m +CONFIG_TABLET_USB_KBTAB=m +CONFIG_TABLET_USB_WACOM=m CONFIG_INPUT_TOUCHSCREEN=y -# CONFIG_TOUCHSCREEN_ADS7846 is not set +CONFIG_TOUCHSCREEN_ADS7846=m CONFIG_TOUCHSCREEN_GUNZE=m CONFIG_TOUCHSCREEN_ELO=m CONFIG_TOUCHSCREEN_MTOUCH=m CONFIG_TOUCHSCREEN_MK712=m -# CONFIG_TOUCHSCREEN_PENMOUNT is not set -# CONFIG_TOUCHSCREEN_TOUCHRIGHT is not set -# CONFIG_TOUCHSCREEN_TOUCHWIN is not set +CONFIG_TOUCHSCREEN_PENMOUNT=m +CONFIG_TOUCHSCREEN_TOUCHRIGHT=m +CONFIG_TOUCHSCREEN_TOUCHWIN=m +CONFIG_TOUCHSCREEN_UCB1400=m +CONFIG_TOUCHSCREEN_USB_COMPOSITE=m +CONFIG_TOUCHSCREEN_USB_EGALAX=y +CONFIG_TOUCHSCREEN_USB_PANJIT=y +CONFIG_TOUCHSCREEN_USB_3M=y +CONFIG_TOUCHSCREEN_USB_ITM=y +CONFIG_TOUCHSCREEN_USB_ETURBO=y +CONFIG_TOUCHSCREEN_USB_GUNZE=y +CONFIG_TOUCHSCREEN_USB_DMC_TSC10=y CONFIG_INPUT_MISC=y CONFIG_INPUT_PCSPKR=m -# CONFIG_INPUT_WISTRON_BTNS is not set +CONFIG_INPUT_WISTRON_BTNS=m +CONFIG_INPUT_ATLAS_BTNS=m +CONFIG_INPUT_ATI_REMOTE=m +CONFIG_INPUT_ATI_REMOTE2=m +CONFIG_INPUT_KEYSPAN_REMOTE=m +CONFIG_INPUT_POWERMATE=m +CONFIG_INPUT_YEALINK=m CONFIG_INPUT_UINPUT=m # @@ -2036,7 +2076,8 @@ CONFIG_DIGIEPCA=m CONFIG_ESPSERIAL=m CONFIG_MOXA_INTELLIO=m CONFIG_MOXA_SMARTIO=m -# CONFIG_ISI is not set +CONFIG_MOXA_SMARTIO_NEW=m +CONFIG_ISI=m CONFIG_SYNCLINK=m CONFIG_SYNCLINKMP=m CONFIG_SYNCLINK_GT=m @@ -2060,13 +2101,14 @@ CONFIG_SERIAL_8250_NR_UARTS=4 CONFIG_SERIAL_8250_RUNTIME_UARTS=4 CONFIG_SERIAL_8250_EXTENDED=y CONFIG_SERIAL_8250_MANY_PORTS=y -CONFIG_SERIAL_8250_SHARE_IRQ=y -CONFIG_SERIAL_8250_DETECT_IRQ=y -CONFIG_SERIAL_8250_RSA=y CONFIG_SERIAL_8250_FOURPORT=m CONFIG_SERIAL_8250_ACCENT=m CONFIG_SERIAL_8250_BOCA=m +CONFIG_SERIAL_8250_EXAR_ST16C554=m CONFIG_SERIAL_8250_HUB6=m +CONFIG_SERIAL_8250_SHARE_IRQ=y +CONFIG_SERIAL_8250_DETECT_IRQ=y +CONFIG_SERIAL_8250_RSA=y CONFIG_SERIAL_8250_MCA=m # @@ -2092,10 +2134,6 @@ CONFIG_IPMI_DEVICE_INTERFACE=m CONFIG_IPMI_SI=m CONFIG_IPMI_WATCHDOG=m CONFIG_IPMI_POWEROFF=m - -# -# Watchdog Cards -# CONFIG_WATCHDOG=y # CONFIG_WATCHDOG_NOWAYOUT is not set @@ -2113,10 +2151,10 @@ CONFIG_IB700_WDT=m CONFIG_IBMASR=m CONFIG_WAFER_WDT=m CONFIG_I6300ESB_WDT=m -CONFIG_I8XX_TCO=m CONFIG_ITCO_WDT=m +CONFIG_ITCO_VENDOR_SUPPORT=y CONFIG_SC1200_WDT=m -CONFIG_SCx200_WDT=m +CONFIG_PC87413_WDT=m CONFIG_60XX_WDT=m CONFIG_SBC8360_WDT=m CONFIG_CPU5_WDT=m @@ -2158,10 +2196,6 @@ CONFIG_DTLK=m CONFIG_R3964=m CONFIG_APPLICOM=m CONFIG_SONYPI=m - -# -# Ftape, the floppy tape device driver -# CONFIG_AGP=m CONFIG_AGP_ALI=m CONFIG_AGP_ATI=m @@ -2192,7 +2226,6 @@ CONFIG_SYNCLINK_CS=m CONFIG_CARDMAN_4000=m CONFIG_CARDMAN_4040=m CONFIG_MWAVE=m -CONFIG_SCx200_GPIO=m CONFIG_PC8736x_GPIO=m CONFIG_NSC_GPIO=m CONFIG_CS5535_GPIO=m @@ -2211,11 +2244,9 @@ CONFIG_TCG_NSC=m CONFIG_TCG_ATMEL=m CONFIG_TCG_INFINEON=m CONFIG_TELCLOCK=m - -# -# I2C support -# +CONFIG_DEVPORT=y CONFIG_I2C=m +CONFIG_I2C_BOARDINFO=y CONFIG_I2C_CHARDEV=m # @@ -2244,14 +2275,13 @@ CONFIG_I2C_PARPORT=m CONFIG_I2C_PARPORT_LIGHT=m CONFIG_I2C_PROSAVAGE=m CONFIG_I2C_SAVAGE4=m -CONFIG_SCx200_I2C=m -CONFIG_SCx200_I2C_SCL=12 -CONFIG_SCx200_I2C_SDA=13 +CONFIG_I2C_SIMTEC=m CONFIG_SCx200_ACB=m CONFIG_I2C_SIS5595=m CONFIG_I2C_SIS630=m CONFIG_I2C_SIS96X=m # CONFIG_I2C_STUB is not set +CONFIG_I2C_TINY_USB=m CONFIG_I2C_VIA=m CONFIG_I2C_VIAPRO=m CONFIG_I2C_VOODOO3=m @@ -2287,6 +2317,8 @@ CONFIG_SPI_BITBANG=m # # SPI Protocol Masters # +CONFIG_SPI_AT25=m +CONFIG_SPI_SPIDEV=m # # Dallas's 1-wire bus @@ -2308,16 +2340,14 @@ CONFIG_W1_SLAVE_THERM=m CONFIG_W1_SLAVE_SMEM=m CONFIG_W1_SLAVE_DS2433=m # CONFIG_W1_SLAVE_DS2433_CRC is not set - -# -# Hardware Monitoring support -# CONFIG_HWMON=y CONFIG_HWMON_VID=m -# CONFIG_SENSORS_ABITUGURU is not set +CONFIG_SENSORS_ABITUGURU=m +CONFIG_SENSORS_AD7418=m CONFIG_SENSORS_ADM1021=m CONFIG_SENSORS_ADM1025=m CONFIG_SENSORS_ADM1026=m +CONFIG_SENSORS_ADM1029=m CONFIG_SENSORS_ADM1031=m CONFIG_SENSORS_ADM9240=m CONFIG_SENSORS_K8TEMP=m @@ -2329,6 +2359,7 @@ CONFIG_SENSORS_FSCHER=m CONFIG_SENSORS_FSCPOS=m CONFIG_SENSORS_GL518SM=m CONFIG_SENSORS_GL520SM=m +CONFIG_SENSORS_CORETEMP=m CONFIG_SENSORS_IT87=m CONFIG_SENSORS_LM63=m CONFIG_SENSORS_LM70=m @@ -2342,7 +2373,9 @@ CONFIG_SENSORS_LM87=m CONFIG_SENSORS_LM90=m CONFIG_SENSORS_LM92=m CONFIG_SENSORS_MAX1619=m +CONFIG_SENSORS_MAX6650=m CONFIG_SENSORS_PC87360=m +CONFIG_SENSORS_PC87427=m CONFIG_SENSORS_SIS5595=m CONFIG_SENSORS_SMSC47M1=m CONFIG_SENSORS_SMSC47M192=m @@ -2353,27 +2386,27 @@ CONFIG_SENSORS_VT8231=m CONFIG_SENSORS_W83781D=m CONFIG_SENSORS_W83791D=m CONFIG_SENSORS_W83792D=m +CONFIG_SENSORS_W83793=m CONFIG_SENSORS_W83L785TS=m CONFIG_SENSORS_W83627HF=m CONFIG_SENSORS_W83627EHF=m CONFIG_SENSORS_HDAPS=m +CONFIG_SENSORS_APPLESMC=m # CONFIG_HWMON_DEBUG_CHIP is not set # +# Multifunction device drivers +# +CONFIG_MFD_SM501=m + +# # Multimedia devices # CONFIG_VIDEO_DEV=m CONFIG_VIDEO_V4L1=y CONFIG_VIDEO_V4L1_COMPAT=y CONFIG_VIDEO_V4L2=y - -# -# Video Capture Adapters -# - -# -# Video Capture Adapters -# +CONFIG_VIDEO_CAPTURE_DRIVERS=y # CONFIG_VIDEO_ADV_DEBUG is not set CONFIG_VIDEO_HELPER_CHIPS_AUTO=y CONFIG_VIDEO_TVAUDIO=m @@ -2383,19 +2416,27 @@ CONFIG_VIDEO_TDA9875=m CONFIG_VIDEO_TEA6415C=m CONFIG_VIDEO_TEA6420=m CONFIG_VIDEO_MSP3400=m +CONFIG_VIDEO_CS53L32A=m +CONFIG_VIDEO_WM8775=m +CONFIG_VIDEO_WM8739=m CONFIG_VIDEO_BT819=m CONFIG_VIDEO_BT856=m CONFIG_VIDEO_KS0127=m +CONFIG_VIDEO_OV7670=m CONFIG_VIDEO_SAA7110=m CONFIG_VIDEO_SAA7111=m CONFIG_VIDEO_SAA7114=m CONFIG_VIDEO_SAA711X=m CONFIG_VIDEO_TVP5150=m CONFIG_VIDEO_VPX3220=m +CONFIG_VIDEO_CX25840=m CONFIG_VIDEO_CX2341X=m +CONFIG_VIDEO_SAA7127=m CONFIG_VIDEO_SAA7185=m CONFIG_VIDEO_ADV7170=m CONFIG_VIDEO_ADV7175=m +CONFIG_VIDEO_UPD64031A=m +CONFIG_VIDEO_UPD64083=m CONFIG_VIDEO_VIVI=m CONFIG_VIDEO_BT848=m CONFIG_VIDEO_BT848_DVB=y @@ -2433,15 +2474,15 @@ CONFIG_VIDEO_CX88_ALSA=m CONFIG_VIDEO_CX88_BLACKBIRD=m CONFIG_VIDEO_CX88_DVB=m CONFIG_VIDEO_CX88_VP3054=m - -# -# V4L USB devices -# +CONFIG_VIDEO_IVTV=m +CONFIG_VIDEO_CAFE_CCIC=m +CONFIG_V4L_USB_DRIVERS=y CONFIG_VIDEO_PVRUSB2=m -# CONFIG_VIDEO_PVRUSB2_29XXX is not set -# CONFIG_VIDEO_PVRUSB2_24XXX is not set +CONFIG_VIDEO_PVRUSB2_29XXX=y +CONFIG_VIDEO_PVRUSB2_24XXX=y # CONFIG_VIDEO_PVRUSB2_SYSFS is not set CONFIG_VIDEO_EM28XX=m +CONFIG_VIDEO_USBVISION=m CONFIG_VIDEO_USBVIDEO=m CONFIG_USB_VICAM=m CONFIG_USB_IBMCAM=m @@ -2457,10 +2498,8 @@ CONFIG_USB_STV680=m CONFIG_USB_ZC0301=m CONFIG_USB_PWC=m # CONFIG_USB_PWC_DEBUG is not set - -# -# Radio Adapters -# +CONFIG_USB_ZR364XX=m +CONFIG_RADIO_ADAPTERS=y CONFIG_RADIO_CADET=m CONFIG_RADIO_RTRACK=m CONFIG_RADIO_RTRACK2=m @@ -2477,13 +2516,9 @@ CONFIG_RADIO_TYPHOON=m CONFIG_RADIO_TYPHOON_PROC_FS=y CONFIG_RADIO_ZOLTRIX=m CONFIG_USB_DSBR=m - -# -# Digital Video Broadcasting Devices -# -CONFIG_DVB=y CONFIG_DVB_CORE=m -# CONFIG_DVB_CORE_ATTACH is not set +CONFIG_DVB_CORE_ATTACH=y +CONFIG_DVB_CAPTURE_DRIVERS=y # # Supported SAA7146 based PCI Adapters @@ -2504,15 +2539,20 @@ CONFIG_DVB_USB_A800=m CONFIG_DVB_USB_DIBUSB_MB=m # CONFIG_DVB_USB_DIBUSB_MB_FAULTY is not set CONFIG_DVB_USB_DIBUSB_MC=m -# CONFIG_DVB_USB_DIB0700 is not set +CONFIG_DVB_USB_DIB0700=m CONFIG_DVB_USB_UMT_010=m CONFIG_DVB_USB_CXUSB=m +CONFIG_DVB_USB_M920X=m +CONFIG_DVB_USB_GL861=m +CONFIG_DVB_USB_AU6610=m CONFIG_DVB_USB_DIGITV=m CONFIG_DVB_USB_VP7045=m CONFIG_DVB_USB_VP702X=m CONFIG_DVB_USB_GP8PSK=m CONFIG_DVB_USB_NOVA_T_USB2=m +CONFIG_DVB_USB_TTUSB2=m CONFIG_DVB_USB_DTT200U=m +CONFIG_DVB_USB_OPERA1=m CONFIG_DVB_TTUSB_BUDGET=m CONFIG_DVB_TTUSB_DEC=m CONFIG_DVB_CINERGYT2=m @@ -2571,12 +2611,15 @@ CONFIG_DVB_MT352=m CONFIG_DVB_ZL10353=m CONFIG_DVB_DIB3000MB=m CONFIG_DVB_DIB3000MC=m +CONFIG_DVB_DIB7000M=m +CONFIG_DVB_DIB7000P=m # # DVB-C (cable) frontends # CONFIG_DVB_VES1820=m CONFIG_DVB_TDA10021=m +CONFIG_DVB_TDA10023=m CONFIG_DVB_STV0297=m # @@ -2593,6 +2636,8 @@ CONFIG_DVB_LGDT330X=m # CONFIG_DVB_PLL=m CONFIG_DVB_TDA826X=m +CONFIG_DVB_TDA827X=m +CONFIG_DVB_TUNER_QT1010=m CONFIG_DVB_TUNER_MT2060=m # @@ -2603,28 +2648,53 @@ CONFIG_DVB_ISL6421=m CONFIG_DVB_TUA6100=m CONFIG_VIDEO_SAA7146=m CONFIG_VIDEO_SAA7146_VV=m -CONFIG_VIDEO_VIDEOBUF=m CONFIG_VIDEO_TUNER=m CONFIG_VIDEO_BUF=m CONFIG_VIDEO_BUF_DVB=m CONFIG_VIDEO_BTCX=m CONFIG_VIDEO_IR=m CONFIG_VIDEO_TVEEPROM=m +CONFIG_DAB=y CONFIG_USB_DABUSB=m # # Graphics support # -# CONFIG_FIRMWARE_EDID is not set +CONFIG_BACKLIGHT_LCD_SUPPORT=y +CONFIG_BACKLIGHT_CLASS_DEVICE=y +CONFIG_LCD_CLASS_DEVICE=m +CONFIG_BACKLIGHT_PROGEAR=m +CONFIG_BACKLIGHT_CARILLO_RANCH=m + +# +# Display device support +# +CONFIG_DISPLAY_SUPPORT=m + +# +# Display hardware drivers +# +CONFIG_VGASTATE=m CONFIG_FB=y +# CONFIG_FIRMWARE_EDID is not set CONFIG_FB_DDC=m CONFIG_FB_CFB_FILLRECT=y CONFIG_FB_CFB_COPYAREA=y CONFIG_FB_CFB_IMAGEBLIT=y +CONFIG_FB_SYS_FILLRECT=m +CONFIG_FB_SYS_COPYAREA=m +CONFIG_FB_SYS_IMAGEBLIT=m +CONFIG_FB_SYS_FOPS=m +CONFIG_FB_DEFERRED_IO=y +CONFIG_FB_SVGALIB=m # CONFIG_FB_MACMODES is not set -# CONFIG_FB_BACKLIGHT is not set +CONFIG_FB_BACKLIGHT=y CONFIG_FB_MODE_HELPERS=y CONFIG_FB_TILEBLITTING=y + +# +# Frame buffer hardware drivers +# # CONFIG_FB_CIRRUS is not set # CONFIG_FB_PM2 is not set # CONFIG_FB_CYBER2000 is not set @@ -2633,6 +2703,7 @@ CONFIG_FB_TILEBLITTING=y # CONFIG_FB_IMSTT is not set CONFIG_FB_VGA16=m CONFIG_FB_VESA=y +# CONFIG_FB_HECUBA is not set # CONFIG_FB_HGA is not set # CONFIG_FB_S1D13XXX is not set # CONFIG_FB_NVIDIA is not set @@ -2640,6 +2711,8 @@ CONFIG_FB_VESA=y CONFIG_FB_I810=m CONFIG_FB_I810_GTF=y # CONFIG_FB_I810_I2C is not set +CONFIG_FB_LE80578=m +CONFIG_FB_CARILLO_RANCH=m CONFIG_FB_INTEL=m # CONFIG_FB_INTEL_DEBUG is not set CONFIG_FB_INTEL_I2C=y @@ -2652,11 +2725,15 @@ CONFIG_FB_MATROX_MAVEN=m CONFIG_FB_MATROX_MULTIHEAD=y CONFIG_FB_RADEON=m CONFIG_FB_RADEON_I2C=y +CONFIG_FB_RADEON_BACKLIGHT=y # CONFIG_FB_RADEON_DEBUG is not set CONFIG_FB_ATY128=m +CONFIG_FB_ATY128_BACKLIGHT=y CONFIG_FB_ATY=m # CONFIG_FB_ATY_CT is not set # CONFIG_FB_ATY_GX is not set +CONFIG_FB_ATY_BACKLIGHT=y +CONFIG_FB_S3=m # CONFIG_FB_SAVAGE is not set CONFIG_FB_SIS=m CONFIG_FB_SIS_300=y @@ -2665,9 +2742,13 @@ CONFIG_FB_SIS_315=y # CONFIG_FB_KYRO is not set # CONFIG_FB_3DFX is not set # CONFIG_FB_VOODOO1 is not set +# CONFIG_FB_VT8623 is not set # CONFIG_FB_CYBLA is not set # CONFIG_FB_TRIDENT is not set +# CONFIG_FB_ARK is not set +# CONFIG_FB_PM3 is not set # CONFIG_FB_GEODE is not set +CONFIG_FB_SM501=m # CONFIG_FB_VIRTUAL is not set # @@ -2691,16 +2772,7 @@ CONFIG_FONT_8x16=y # CONFIG_FONT_SUN8x16 is not set # CONFIG_FONT_SUN12x22 is not set # CONFIG_FONT_10x18 is not set - -# -# Logo configuration -# # CONFIG_LOGO is not set -CONFIG_BACKLIGHT_LCD_SUPPORT=y -CONFIG_BACKLIGHT_CLASS_DEVICE=m -CONFIG_BACKLIGHT_DEVICE=y -CONFIG_LCD_CLASS_DEVICE=m -CONFIG_LCD_DEVICE=y # # Sound @@ -2738,13 +2810,13 @@ CONFIG_SND_OPL3_LIB=m CONFIG_SND_OPL4_LIB=m CONFIG_SND_VX_LIB=m CONFIG_SND_AC97_CODEC=m -CONFIG_SND_AC97_BUS=m CONFIG_SND_DUMMY=m CONFIG_SND_VIRMIDI=m CONFIG_SND_MTPAV=m CONFIG_SND_MTS64=m CONFIG_SND_SERIAL_U16550=m CONFIG_SND_MPU401=m +CONFIG_SND_PORTMAN2X4=m # # ISA devices @@ -2779,9 +2851,11 @@ CONFIG_SND_SB8=m CONFIG_SND_SB16=m CONFIG_SND_SBAWE=m CONFIG_SND_SB16_CSP=y +# CONFIG_SND_SB16_CSP_FIRMWARE_IN_KERNEL is not set CONFIG_SND_SGALAXY=m CONFIG_SND_SSCAPE=m CONFIG_SND_WAVEFRONT=m +# CONFIG_SND_WAVEFRONT_FIRMWARE_IN_KERNEL is not set # # PCI devices @@ -2833,7 +2907,9 @@ CONFIG_SND_ICE1724=m CONFIG_SND_INTEL8X0=m CONFIG_SND_INTEL8X0M=m CONFIG_SND_KORG1212=m +# CONFIG_SND_KORG1212_FIRMWARE_IN_KERNEL is not set CONFIG_SND_MAESTRO3=m +# CONFIG_SND_MAESTRO3_FIRMWARE_IN_KERNEL is not set CONFIG_SND_MIXART=m CONFIG_SND_NM256=m CONFIG_SND_PCXHR=m @@ -2847,13 +2923,16 @@ CONFIG_SND_VIA82XX=m CONFIG_SND_VIA82XX_MODEM=m CONFIG_SND_VX222=m CONFIG_SND_YMFPCI=m -# CONFIG_SND_AC97_POWER_SAVE is not set +# CONFIG_SND_YMFPCI_FIRMWARE_IN_KERNEL is not set +CONFIG_SND_AC97_POWER_SAVE=y # # USB devices # CONFIG_SND_USB_AUDIO=m CONFIG_SND_USB_USX2Y=m +CONFIG_SND_USB_CAIAQ=m +# CONFIG_SND_USB_CAIAQ_INPUT is not set # # PCMCIA devices @@ -2862,9 +2941,34 @@ CONFIG_SND_VXPOCKET=m CONFIG_SND_PDAUDIOCF=m # +# System on Chip audio support +# +# CONFIG_SND_SOC is not set + +# # Open Sound System # # CONFIG_SOUND_PRIME is not set +CONFIG_AC97_BUS=m + +# +# HID Devices +# +CONFIG_HID=y +# CONFIG_HID_DEBUG is not set + +# +# USB Input Devices +# +CONFIG_USB_HID=y +# CONFIG_USB_HIDINPUT_POWERBOOK is not set +CONFIG_HID_FF=y +CONFIG_HID_PID=y +CONFIG_LOGITECH_FF=y +CONFIG_PANTHERLORD_FF=y +# CONFIG_THRUSTMASTER_FF is not set +CONFIG_ZEROPLUS_FF=y +CONFIG_USB_HIDDEV=y # # USB support @@ -2879,7 +2983,7 @@ CONFIG_USB=y # Miscellaneous USB options # CONFIG_USB_DEVICEFS=y -# CONFIG_USB_BANDWIDTH is not set +# CONFIG_USB_DEVICE_CLASS is not set # CONFIG_USB_DYNAMIC_MINORS is not set # CONFIG_USB_SUSPEND is not set # CONFIG_USB_OTG is not set @@ -2891,11 +2995,14 @@ CONFIG_USB_EHCI_HCD=m CONFIG_USB_EHCI_SPLIT_ISO=y CONFIG_USB_EHCI_ROOT_HUB_TT=y # CONFIG_USB_EHCI_TT_NEWSCHED is not set +# CONFIG_USB_EHCI_BIG_ENDIAN_MMIO is not set CONFIG_USB_ISP116X_HCD=m CONFIG_USB_OHCI_HCD=m -# CONFIG_USB_OHCI_BIG_ENDIAN is not set +# CONFIG_USB_OHCI_BIG_ENDIAN_DESC is not set +# CONFIG_USB_OHCI_BIG_ENDIAN_MMIO is not set CONFIG_USB_OHCI_LITTLE_ENDIAN=y CONFIG_USB_UHCI_HCD=m +CONFIG_USB_U132_HCD=m CONFIG_USB_SL811_HCD=m CONFIG_USB_SL811_CS=m @@ -2923,69 +3030,14 @@ CONFIG_USB_STORAGE_SDDR09=y CONFIG_USB_STORAGE_SDDR55=y CONFIG_USB_STORAGE_JUMPSHOT=y CONFIG_USB_STORAGE_ALAUDA=y -# CONFIG_USB_STORAGE_KARMA is not set +CONFIG_USB_STORAGE_KARMA=y # CONFIG_USB_LIBUSUAL is not set # -# USB Input Devices -# -CONFIG_USB_HID=y -CONFIG_USB_HIDINPUT=y -# CONFIG_USB_HIDINPUT_POWERBOOK is not set -CONFIG_HID_FF=y -CONFIG_HID_PID=y -CONFIG_LOGITECH_FF=y -CONFIG_THRUSTMASTER_FF=y -# CONFIG_ZEROPLUS_FF is not set -CONFIG_USB_HIDDEV=y -CONFIG_USB_AIPTEK=m -CONFIG_USB_WACOM=m -CONFIG_USB_ACECAD=m -CONFIG_USB_KBTAB=m -CONFIG_USB_POWERMATE=m -CONFIG_USB_TOUCHSCREEN=m -CONFIG_USB_TOUCHSCREEN_EGALAX=y -CONFIG_USB_TOUCHSCREEN_PANJIT=y -CONFIG_USB_TOUCHSCREEN_3M=y -CONFIG_USB_TOUCHSCREEN_ITM=y -CONFIG_USB_TOUCHSCREEN_ETURBO=y -CONFIG_USB_TOUCHSCREEN_GUNZE=y -CONFIG_USB_YEALINK=m -CONFIG_USB_XPAD=m -CONFIG_USB_ATI_REMOTE=m -CONFIG_USB_ATI_REMOTE2=m -# CONFIG_USB_KEYSPAN_REMOTE is not set -CONFIG_USB_APPLETOUCH=m - -# # USB Imaging devices # CONFIG_USB_MDC800=m CONFIG_USB_MICROTEK=m - -# -# USB Network Adapters -# -CONFIG_USB_CATC=m -CONFIG_USB_KAWETH=m -CONFIG_USB_PEGASUS=m -CONFIG_USB_RTL8150=m -CONFIG_USB_USBNET_MII=m -CONFIG_USB_USBNET=m -CONFIG_USB_NET_AX8817X=m -CONFIG_USB_NET_CDCETHER=m -CONFIG_USB_NET_GL620A=m -CONFIG_USB_NET_NET1080=m -CONFIG_USB_NET_PLUSB=m -CONFIG_USB_NET_MCS7830=m -CONFIG_USB_NET_RNDIS_HOST=m -CONFIG_USB_NET_CDC_SUBSET=m -CONFIG_USB_ALI_M5632=y -CONFIG_USB_AN2720=y -CONFIG_USB_BELKIN=y -CONFIG_USB_ARMLINUX=y -# CONFIG_USB_EPSON2888 is not set -CONFIG_USB_NET_ZAURUS=m # CONFIG_USB_MON is not set # @@ -3046,6 +3098,7 @@ CONFIG_USB_SERIAL_CYBERJACK=m CONFIG_USB_SERIAL_XIRCOM=m CONFIG_USB_SERIAL_OPTION=m CONFIG_USB_SERIAL_OMNINET=m +# CONFIG_USB_SERIAL_DEBUG is not set CONFIG_USB_EZUSB=y # @@ -3053,11 +3106,12 @@ CONFIG_USB_EZUSB=y # CONFIG_USB_EMI62=m CONFIG_USB_EMI26=m -# CONFIG_USB_ADUTUX is not set +CONFIG_USB_ADUTUX=m CONFIG_USB_AUERSWALD=m CONFIG_USB_RIO500=m CONFIG_USB_LEGOTOWER=m CONFIG_USB_LCD=m +CONFIG_USB_BERRY_CHARGE=m CONFIG_USB_LED=m CONFIG_USB_CYPRESS_CY7C63=m CONFIG_USB_CYTHERM=m @@ -3066,12 +3120,13 @@ CONFIG_USB_PHIDGETKIT=m CONFIG_USB_PHIDGETMOTORCONTROL=m CONFIG_USB_PHIDGETSERVO=m CONFIG_USB_IDMOUSE=m -# CONFIG_USB_FTDI_ELAN is not set +CONFIG_USB_FTDI_ELAN=m CONFIG_USB_APPLEDISPLAY=m CONFIG_USB_SISUSBVGA=m # CONFIG_USB_SISUSBVGA_CON is not set CONFIG_USB_LD=m CONFIG_USB_TRANCEVIBRATOR=m +CONFIG_USB_IOWARRIOR=m CONFIG_USB_TEST=m # @@ -3089,6 +3144,7 @@ CONFIG_USB_XUSBATM=m CONFIG_USB_GADGET=m # CONFIG_USB_GADGET_DEBUG_FILES is not set CONFIG_USB_GADGET_SELECTED=y +# CONFIG_USB_GADGET_FSL_USB2 is not set CONFIG_USB_GADGET_NET2280=y CONFIG_USB_NET2280=m # CONFIG_USB_GADGET_PXA2XX is not set @@ -3106,13 +3162,18 @@ CONFIG_USB_FILE_STORAGE=m # CONFIG_USB_FILE_STORAGE_TEST is not set CONFIG_USB_G_SERIAL=m # CONFIG_USB_MIDI_GADGET is not set +CONFIG_MMC=m +# CONFIG_MMC_DEBUG is not set +# CONFIG_MMC_UNSAFE_RESUME is not set # -# MMC/SD Card support +# MMC/SD Card Drivers # -CONFIG_MMC=m -# CONFIG_MMC_DEBUG is not set CONFIG_MMC_BLOCK=m + +# +# MMC/SD Host Controller Drivers +# CONFIG_MMC_SDHCI=m CONFIG_MMC_WBSD=m CONFIG_MMC_TIFM_SD=m @@ -3126,7 +3187,6 @@ CONFIG_LEDS_CLASS=m # # LED drivers # -CONFIG_LEDS_NET48XX=m # # LED Triggers @@ -3142,12 +3202,17 @@ CONFIG_LEDS_TRIGGER_HEARTBEAT=m CONFIG_INFINIBAND=m CONFIG_INFINIBAND_USER_MAD=m CONFIG_INFINIBAND_USER_ACCESS=m +CONFIG_INFINIBAND_USER_MEM=y CONFIG_INFINIBAND_ADDR_TRANS=y CONFIG_INFINIBAND_MTHCA=m CONFIG_INFINIBAND_MTHCA_DEBUG=y CONFIG_INFINIBAND_AMSO1100=m # CONFIG_INFINIBAND_AMSO1100_DEBUG is not set +CONFIG_INFINIBAND_CXGB3=m +# CONFIG_INFINIBAND_CXGB3_DEBUG is not set +CONFIG_MLX4_INFINIBAND=m CONFIG_INFINIBAND_IPOIB=m +CONFIG_INFINIBAND_IPOIB_CM=y CONFIG_INFINIBAND_IPOIB_DEBUG=y # CONFIG_INFINIBAND_IPOIB_DEBUG_DATA is not set CONFIG_INFINIBAND_SRP=m @@ -3180,30 +3245,44 @@ CONFIG_RTC_CLASS=m # # RTC interfaces # -CONFIG_RTC_INTF_SYSFS=m -CONFIG_RTC_INTF_PROC=m -CONFIG_RTC_INTF_DEV=m -# CONFIG_RTC_INTF_DEV_UIE_EMUL is not set +CONFIG_RTC_INTF_SYSFS=y +CONFIG_RTC_INTF_PROC=y +CONFIG_RTC_INTF_DEV=y +CONFIG_RTC_INTF_DEV_UIE_EMUL=y +CONFIG_RTC_DRV_TEST=m # -# RTC drivers +# I2C RTC drivers # -CONFIG_RTC_DRV_X1205=m CONFIG_RTC_DRV_DS1307=m -CONFIG_RTC_DRV_DS1553=m -CONFIG_RTC_DRV_ISL1208=m CONFIG_RTC_DRV_DS1672=m -CONFIG_RTC_DRV_DS1742=m +CONFIG_RTC_DRV_MAX6900=m +CONFIG_RTC_DRV_RS5C372=m +CONFIG_RTC_DRV_ISL1208=m +CONFIG_RTC_DRV_X1205=m CONFIG_RTC_DRV_PCF8563=m CONFIG_RTC_DRV_PCF8583=m + +# +# SPI RTC drivers +# CONFIG_RTC_DRV_RS5C348=m -CONFIG_RTC_DRV_RS5C372=m -CONFIG_RTC_DRV_M48T86=m -CONFIG_RTC_DRV_TEST=m CONFIG_RTC_DRV_MAX6902=m + +# +# Platform RTC drivers +# +CONFIG_RTC_DRV_CMOS=m +CONFIG_RTC_DRV_DS1553=m +CONFIG_RTC_DRV_DS1742=m +CONFIG_RTC_DRV_M48T86=m CONFIG_RTC_DRV_V3020=m # +# on-CPU RTC drivers +# + +# # DMA Engine support # CONFIG_DMA_ENGINE=y @@ -3219,6 +3298,22 @@ CONFIG_NET_DMA=y CONFIG_INTEL_IOATDMA=m # +# Auxiliary Display support +# +CONFIG_KS0108=m +CONFIG_KS0108_PORT=0x378 +CONFIG_KS0108_DELAY=2 +CONFIG_CFAG12864B=m +CONFIG_CFAG12864B_RATE=20 + +# +# Virtualization +# +CONFIG_KVM=m +CONFIG_KVM_INTEL=m +CONFIG_KVM_AMD=m + +# # File systems # CONFIG_EXT2_FS=y @@ -3280,7 +3375,6 @@ CONFIG_FUSE_FS=m CONFIG_ISO9660_FS=m CONFIG_JOLIET=y CONFIG_ZISOFS=y -CONFIG_ZISOFS_FS=m CONFIG_UDF_FS=m CONFIG_UDF_NLS=y @@ -3323,9 +3417,6 @@ CONFIG_BEFS_FS=m # CONFIG_BEFS_DEBUG is not set CONFIG_BFS_FS=m CONFIG_EFS_FS=m -CONFIG_JFFS_FS=m -CONFIG_JFFS_FS_VERBOSE=0 -# CONFIG_JFFS_PROC_FS is not set CONFIG_JFFS2_FS=m CONFIG_JFFS2_FS_DEBUG=0 CONFIG_JFFS2_FS_WRITEBUFFER=y @@ -3366,6 +3457,7 @@ CONFIG_EXPORTFS=m CONFIG_NFS_COMMON=y CONFIG_SUNRPC=m CONFIG_SUNRPC_GSS=m +# CONFIG_SUNRPC_BIND34 is not set CONFIG_RPCSEC_GSS_KRB5=m # CONFIG_RPCSEC_GSS_SPKM3 is not set CONFIG_SMB_FS=m @@ -3388,7 +3480,7 @@ CONFIG_NCPFS_EXTRAS=y CONFIG_CODA_FS=m # CONFIG_CODA_FS_OLD_API is not set CONFIG_AFS_FS=m -CONFIG_RXRPC=m +# CONFIG_AFS_DEBUG is not set # CONFIG_9P_FS is not set # @@ -3412,6 +3504,7 @@ CONFIG_LDM_PARTITION=y # CONFIG_SUN_PARTITION is not set # CONFIG_KARMA_PARTITION is not set # CONFIG_EFI_PARTITION is not set +# CONFIG_SYSV68_PARTITION is not set # # Native Language Support @@ -3477,12 +3570,10 @@ CONFIG_TRACE_IRQFLAGS_SUPPORT=y CONFIG_ENABLE_MUST_CHECK=y # CONFIG_MAGIC_SYSRQ is not set CONFIG_UNUSED_SYMBOLS=y +CONFIG_DEBUG_FS=y +# CONFIG_HEADERS_CHECK is not set # CONFIG_DEBUG_KERNEL is not set -CONFIG_LOG_BUF_SHIFT=15 CONFIG_DEBUG_BUGVERBOSE=y -# CONFIG_DEBUG_FS is not set -# CONFIG_UNWIND_INFO is not set -# CONFIG_HEADERS_CHECK is not set CONFIG_EARLY_PRINTK=y CONFIG_X86_FIND_SMP_CONFIG=y CONFIG_X86_MPPARSE=y @@ -3505,10 +3596,12 @@ CONFIG_SECURITY_ROOTPLUG=m # CONFIG_CRYPTO=y CONFIG_CRYPTO_ALGAPI=y +CONFIG_CRYPTO_ABLKCIPHER=m CONFIG_CRYPTO_BLKCIPHER=m CONFIG_CRYPTO_HASH=y CONFIG_CRYPTO_MANAGER=y CONFIG_CRYPTO_HMAC=y +CONFIG_CRYPTO_XCBC=m CONFIG_CRYPTO_NULL=m CONFIG_CRYPTO_MD4=m CONFIG_CRYPTO_MD5=y @@ -3517,9 +3610,14 @@ CONFIG_CRYPTO_SHA256=m CONFIG_CRYPTO_SHA512=m CONFIG_CRYPTO_WP512=m CONFIG_CRYPTO_TGR192=m +CONFIG_CRYPTO_GF128MUL=m CONFIG_CRYPTO_ECB=m CONFIG_CRYPTO_CBC=m +CONFIG_CRYPTO_PCBC=m +CONFIG_CRYPTO_LRW=m +CONFIG_CRYPTO_CRYPTD=m CONFIG_CRYPTO_DES=m +CONFIG_CRYPTO_FCRYPT=m CONFIG_CRYPTO_BLOWFISH=m CONFIG_CRYPTO_TWOFISH=m CONFIG_CRYPTO_TWOFISH_COMMON=m @@ -3536,6 +3634,7 @@ CONFIG_CRYPTO_ANUBIS=m CONFIG_CRYPTO_DEFLATE=m CONFIG_CRYPTO_MICHAEL_MIC=m CONFIG_CRYPTO_CRC32C=m +CONFIG_CRYPTO_CAMELLIA=m CONFIG_CRYPTO_TEST=m # @@ -3544,22 +3643,31 @@ CONFIG_CRYPTO_TEST=m CONFIG_CRYPTO_DEV_PADLOCK=m CONFIG_CRYPTO_DEV_PADLOCK_AES=m CONFIG_CRYPTO_DEV_PADLOCK_SHA=m +CONFIG_CRYPTO_DEV_GEODE=m # # Library routines # +CONFIG_BITREVERSE=y CONFIG_CRC_CCITT=m CONFIG_CRC16=m +CONFIG_CRC_ITU_T=m CONFIG_CRC32=y CONFIG_LIBCRC32C=m CONFIG_AUDIT_GENERIC=y CONFIG_ZLIB_INFLATE=m CONFIG_ZLIB_DEFLATE=m +CONFIG_GENERIC_ALLOCATOR=y +CONFIG_REED_SOLOMON=m +CONFIG_REED_SOLOMON_DEC16=y CONFIG_TEXTSEARCH=y CONFIG_TEXTSEARCH_KMP=m CONFIG_TEXTSEARCH_BM=m CONFIG_TEXTSEARCH_FSM=m CONFIG_PLIST=y +CONFIG_HAS_IOMEM=y +CONFIG_HAS_IOPORT=y +CONFIG_HAS_DMA=y CONFIG_GENERIC_HARDIRQS=y CONFIG_GENERIC_IRQ_PROBE=y CONFIG_GENERIC_PENDING_IRQ=y diff --git a/source/base-extra/kernel-grsec/config.patch b/source/base-extra/kernel-grsec/config.patch index d49a720..e4c80fa 100644 --- a/source/base-extra/kernel-grsec/config.patch +++ b/source/base-extra/kernel-grsec/config.patch @@ -1,110 +1,5 @@ --- .config 2007-01-06 18:53:58.000000000 +0100 +++ .config.grsec 2007-01-06 18:53:46.000000000 +0100 -@@ -1,7 +1,7 @@ - # - # Automatically generated make config: don't edit --# Linux kernel version: 2.6.19 --# Thu Nov 30 14:53:54 2006 -+# Linux kernel version: 2.6.19.1 -+# Sat Jan 6 18:53:25 2007 - # - CONFIG_X86_32=y - CONFIG_GENERIC_TIME=y -@@ -112,11 +112,11 @@ - # CONFIG_X86_GENERICARCH is not set - # CONFIG_X86_ES7000 is not set - # CONFIG_M386 is not set --CONFIG_M486=y -+# CONFIG_M486 is not set - # CONFIG_M586 is not set - # CONFIG_M586TSC is not set - # CONFIG_M586MMX is not set --# CONFIG_M686 is not set -+CONFIG_M686=y - # CONFIG_MPENTIUMII is not set - # CONFIG_MPENTIUMIII is not set - # CONFIG_MPENTIUMM is not set -@@ -140,21 +140,24 @@ - CONFIG_RWSEM_XCHGADD_ALGORITHM=y - CONFIG_GENERIC_CALIBRATE_DELAY=y - CONFIG_X86_PPRO_FENCE=y --CONFIG_X86_F00F_BUG=y - CONFIG_X86_WP_WORKS_OK=y - CONFIG_X86_INVLPG=y - CONFIG_X86_BSWAP=y - CONFIG_X86_POPAD_OK=y -+CONFIG_X86_CMPXCHG64=y - CONFIG_X86_ALIGNMENT_16=y -+CONFIG_X86_GOOD_APIC=y - CONFIG_X86_INTEL_USERCOPY=y -+CONFIG_X86_USE_PPRO_CHECKSUM=y -+CONFIG_X86_TSC=y - CONFIG_HPET_TIMER=y - CONFIG_HPET_EMULATE_RTC=y - CONFIG_NR_CPUS=8 - CONFIG_SCHED_SMT=y - # CONFIG_SCHED_MC is not set --# CONFIG_PREEMPT_NONE is not set -+CONFIG_PREEMPT_NONE=y - # CONFIG_PREEMPT_VOLUNTARY is not set --CONFIG_PREEMPT=y -+# CONFIG_PREEMPT is not set - CONFIG_PREEMPT_BKL=y - CONFIG_X86_LOCAL_APIC=y - CONFIG_X86_IO_APIC=y -@@ -204,7 +207,7 @@ - # CONFIG_HZ_100 is not set - CONFIG_HZ_250=y - # CONFIG_HZ_1000 is not set --CONFIG_HZ=1000 -+CONFIG_HZ=250 - CONFIG_KEXEC=y - # CONFIG_CRASH_DUMP is not set - CONFIG_PHYSICAL_START=0x100000 -@@ -315,7 +318,6 @@ - # CONFIG_PCI_GOMMCONFIG is not set - # CONFIG_PCI_GODIRECT is not set - CONFIG_PCI_GOANY=y --CONFIG_PCI_BIOS=y - CONFIG_PCI_DIRECT=y - CONFIG_PCI_MMCONFIG=y - CONFIG_PCIEPORTBUS=y -@@ -369,9 +371,6 @@ - # - CONFIG_HOTPLUG_PCI=y - CONFIG_HOTPLUG_PCI_FAKE=m --CONFIG_HOTPLUG_PCI_COMPAQ=m --# CONFIG_HOTPLUG_PCI_COMPAQ_NVRAM is not set --CONFIG_HOTPLUG_PCI_IBM=m - CONFIG_HOTPLUG_PCI_ACPI=m - CONFIG_HOTPLUG_PCI_ACPI_IBM=m - # CONFIG_HOTPLUG_PCI_CPCI is not set -@@ -571,6 +570,7 @@ - CONFIG_IP_NF_MATCH_OWNER=m - CONFIG_IP_NF_MATCH_ADDRTYPE=m - CONFIG_IP_NF_MATCH_HASHLIMIT=m -+CONFIG_IP_NF_MATCH_STEALTH=m - CONFIG_IP_NF_FILTER=m - CONFIG_IP_NF_TARGET_REJECT=m - CONFIG_IP_NF_TARGET_LOG=m -@@ -928,9 +928,6 @@ - CONFIG_MTD_JEDECPROBE=m - CONFIG_MTD_GEN_PROBE=m - # CONFIG_MTD_CFI_ADV_OPTIONS is not set --# CONFIG_MTD_CFI_NOSWAP is not set --# CONFIG_MTD_CFI_BE_BYTE_SWAP is not set --# CONFIG_MTD_CFI_LE_BYTE_SWAP is not set - CONFIG_MTD_MAP_BANK_WIDTH_1=y - CONFIG_MTD_MAP_BANK_WIDTH_2=y - CONFIG_MTD_MAP_BANK_WIDTH_4=y -@@ -3300,7 +3297,6 @@ - # Pseudo filesystems - # - CONFIG_PROC_FS=y --CONFIG_PROC_KCORE=y - CONFIG_PROC_SYSCTL=y - CONFIG_SYSFS=y - CONFIG_TMPFS=y @@ -3491,6 +3487,148 @@ # # Security options From vmiklos at frugalware.org Sat Sep 22 19:10:35 2007 From: vmiklos at frugalware.org (VMiklos) Date: Sat Sep 22 19:10:54 2007 Subject: [Frugalware-git] bmf: kernel-grsec-2.1.9-5-i686 Message-ID: <20070922171035.C26E813A4012@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=bmf.git;a=commitdiff;h=e9628837f90277efd48c542c16fd51da9bd00c3d commit e9628837f90277efd48c542c16fd51da9bd00c3d Author: VMiklos Date: Sat Sep 22 13:42:14 2007 +0200 kernel-grsec-2.1.9-5-i686 import from current diff --git a/source/base-extra/kernel-grsec/FrugalBuild b/source/base-extra/kernel-grsec/FrugalBuild new file mode 100644 index 0000000..360ad7a --- /dev/null +++ b/source/base-extra/kernel-grsec/FrugalBuild @@ -0,0 +1,58 @@ +# Compiling Time: 7.26 SBU +# Maintainer: crazy +# Contributor: Zoltan Kiss + +pkgver=2.1.9 +upkver=2.6.19.1 +fwkver=2.6.19.1 +grtime=200612121859 +cver=0.1.0 +pkgrel=5 +_F_kernel_dontsedarch=1 +_F_kernel_manualamd64=1 +_F_kernel_name="-grsec" +_F_kernel_ver=${fwkver%.*} +_F_kernel_stable=${fwkver##*.} +_F_kernel_patches=(http://www.grsecurity.net/grsecurity-$pkgver-$upkver-$grtime.patch.gz config.patch \ + http://ftp.frugalware.org/pub/frugalware/frugalware-current/source/base/kernel/fuse-2.6.1.patch.bz2 \ + http://ftp.frugalware.org/pub/frugalware/frugalware-current/source/base/kernel/linux-2.6.9-CVE-2006-6106-capi-size-check.patch) +[ "$CARCH" == "x86_64" ] && _F_kernel_patches=(${_F_kernel_patches[@]} config-x86_64.patch) +Finclude kernel +pkgdesc="The Linux Kernel and modules (Grsecurity version)" +url="http://www.grsecurity.net" +depends=('module-init-tools') +groups=('base-extra') +archs=('i686' 'x86_64') +backup=('etc/sysconfig/grsec') +provides=('kernel') +up2date="lynx -dump http://www.grsecurity.net/download.php|grep -1 Latest|sed -n 's/ //g;3 p'" +source=(${source[@]} http://ftp.frugalware.org/pub/other/grsecconf/grsecconf-$cver.tar.gz \ + grsec README.frugalware rc.grsec rc.grsec-{de,hu}.po \ + ftp://ftp.frugalware.org/pub/frugalware/frugalware-current/source/base/kernel/config) +signatures=("${signatures[@]}" '' '' '' '' '' '' '') +install=kernel-grsec.install + +## TODO: - README need some sort mini howto +## - x86_64 config need an update + +build() +{ + #build the mconf util + Fcd grsecconf-$cver + make || Fdie + + #install mconf + Fmkdir usr/share/kernel-grsec var/lib/frugalware/system usr/sbin + Fexerel /usr/sbin/grsecconf + Ffilerel options /usr/share/kernel-grsec/mconf.opts + Fexerel /var/lib/frugalware/system/mconf + cd .. + + #build kernel + Fbuildkernel + Fdoc README.frugalware + Fmkdir /etc/sysconfig + Ffile /etc/sysconfig/grsec + Fmkdir /etc/rc.d/rc.messages + Frcd2 grsec +} diff --git a/source/base-extra/kernel-grsec/README.frugalware b/source/base-extra/kernel-grsec/README.frugalware new file mode 100644 index 0000000..0f1a795 --- /dev/null +++ b/source/base-extra/kernel-grsec/README.frugalware @@ -0,0 +1,29 @@ +Readme for Frugalware's Grsecurity enabled kernel package +rev1 + +Contents +-------- + 1. Sysctl variables + 2. The 'magic' grsec_lock variable + 3. Reserved groups + 4. Recompiling tips + +1. Sysctl variables +------------------- + This doc is under development :) So see /usr/share/kernel-grsec/mconf.opts +for sysctl variables and descriptions. + +2. grsec lock variable +---------------------- + If this variable is set, then the Grsecurity sysctl settings +are locked, and read-only until the next reboot. + You must enable this if your configuration is upset, because +the grsecurity settings must write protected on production environment. + +3. Reserved groups +------------------ + Under development :) + +4. Recompiling tips +------------------- + Use the FW package, so no tips at yet. diff --git a/source/base-extra/kernel-grsec/config b/source/base-extra/kernel-grsec/config new file mode 100644 index 0000000..f7d12f0 --- /dev/null +++ b/source/base-extra/kernel-grsec/config @@ -0,0 +1,3570 @@ +# +# Automatically generated make config: don't edit +# Linux kernel version: 2.6.19 +# Thu Nov 30 14:53:54 2006 +# +CONFIG_X86_32=y +CONFIG_GENERIC_TIME=y +CONFIG_LOCKDEP_SUPPORT=y +CONFIG_STACKTRACE_SUPPORT=y +CONFIG_SEMAPHORE_SLEEPERS=y +CONFIG_X86=y +CONFIG_MMU=y +CONFIG_GENERIC_ISA_DMA=y +CONFIG_GENERIC_IOMAP=y +CONFIG_GENERIC_HWEIGHT=y +CONFIG_ARCH_MAY_HAVE_PC_FDC=y +CONFIG_DMI=y +CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" + +# +# Code maturity level options +# +CONFIG_EXPERIMENTAL=y +CONFIG_LOCK_KERNEL=y +CONFIG_INIT_ENV_ARG_LIMIT=32 + +# +# General setup +# +CONFIG_LOCALVERSION="" +CONFIG_LOCALVERSION_AUTO=y +CONFIG_SWAP=y +CONFIG_SYSVIPC=y +# CONFIG_IPC_NS is not set +CONFIG_POSIX_MQUEUE=y +CONFIG_BSD_PROCESS_ACCT=y +# CONFIG_BSD_PROCESS_ACCT_V3 is not set +# CONFIG_TASKSTATS is not set +# CONFIG_UTS_NS is not set +CONFIG_AUDIT=y +CONFIG_AUDITSYSCALL=y +CONFIG_IKCONFIG=y +CONFIG_IKCONFIG_PROC=y +CONFIG_CPUSETS=y +# CONFIG_RELAY is not set +CONFIG_INITRAMFS_SOURCE="" +CONFIG_CC_OPTIMIZE_FOR_SIZE=y +CONFIG_SYSCTL=y +# CONFIG_EMBEDDED is not set +CONFIG_UID16=y +CONFIG_SYSCTL_SYSCALL=y +CONFIG_KALLSYMS=y +# CONFIG_KALLSYMS_EXTRA_PASS is not set +CONFIG_HOTPLUG=y +CONFIG_PRINTK=y +CONFIG_BUG=y +CONFIG_ELF_CORE=y +CONFIG_BASE_FULL=y +CONFIG_FUTEX=y +CONFIG_EPOLL=y +CONFIG_SHMEM=y +CONFIG_SLAB=y +CONFIG_VM_EVENT_COUNTERS=y +CONFIG_RT_MUTEXES=y +# CONFIG_TINY_SHMEM is not set +CONFIG_BASE_SMALL=0 +# CONFIG_SLOB is not set + +# +# Loadable module support +# +CONFIG_MODULES=y +CONFIG_MODULE_UNLOAD=y +# CONFIG_MODULE_FORCE_UNLOAD is not set +CONFIG_MODVERSIONS=y +# CONFIG_MODULE_SRCVERSION_ALL is not set +CONFIG_KMOD=y +CONFIG_STOP_MACHINE=y + +# +# Block layer +# +CONFIG_BLOCK=y +CONFIG_LBD=y +# CONFIG_BLK_DEV_IO_TRACE is not set +CONFIG_LSF=y + +# +# IO Schedulers +# +CONFIG_IOSCHED_NOOP=y +CONFIG_IOSCHED_AS=y +CONFIG_IOSCHED_DEADLINE=y +CONFIG_IOSCHED_CFQ=y +CONFIG_DEFAULT_AS=y +# CONFIG_DEFAULT_DEADLINE is not set +# CONFIG_DEFAULT_CFQ is not set +# CONFIG_DEFAULT_NOOP is not set +CONFIG_DEFAULT_IOSCHED="anticipatory" + +# +# Processor type and features +# +CONFIG_SMP=y +CONFIG_X86_PC=y +# CONFIG_X86_ELAN is not set +# CONFIG_X86_VOYAGER is not set +# CONFIG_X86_NUMAQ is not set +# CONFIG_X86_SUMMIT is not set +# CONFIG_X86_BIGSMP is not set +# CONFIG_X86_VISWS is not set +# CONFIG_X86_GENERICARCH is not set +# CONFIG_X86_ES7000 is not set +# CONFIG_M386 is not set +CONFIG_M486=y +# CONFIG_M586 is not set +# CONFIG_M586TSC is not set +# CONFIG_M586MMX is not set +# CONFIG_M686 is not set +# CONFIG_MPENTIUMII is not set +# CONFIG_MPENTIUMIII is not set +# CONFIG_MPENTIUMM is not set +# CONFIG_MPENTIUM4 is not set +# CONFIG_MK6 is not set +# CONFIG_MK7 is not set +# CONFIG_MK8 is not set +# CONFIG_MCRUSOE is not set +# CONFIG_MEFFICEON is not set +# CONFIG_MWINCHIPC6 is not set +# CONFIG_MWINCHIP2 is not set +# CONFIG_MWINCHIP3D is not set +# CONFIG_MGEODEGX1 is not set +# CONFIG_MGEODE_LX is not set +# CONFIG_MCYRIXIII is not set +# CONFIG_MVIAC3_2 is not set +CONFIG_X86_GENERIC=y +CONFIG_X86_CMPXCHG=y +CONFIG_X86_XADD=y +CONFIG_X86_L1_CACHE_SHIFT=7 +CONFIG_RWSEM_XCHGADD_ALGORITHM=y +CONFIG_GENERIC_CALIBRATE_DELAY=y +CONFIG_X86_PPRO_FENCE=y +CONFIG_X86_F00F_BUG=y +CONFIG_X86_WP_WORKS_OK=y +CONFIG_X86_INVLPG=y +CONFIG_X86_BSWAP=y +CONFIG_X86_POPAD_OK=y +CONFIG_X86_ALIGNMENT_16=y +CONFIG_X86_INTEL_USERCOPY=y +CONFIG_HPET_TIMER=y +CONFIG_HPET_EMULATE_RTC=y +CONFIG_NR_CPUS=8 +CONFIG_SCHED_SMT=y +# CONFIG_SCHED_MC is not set +# CONFIG_PREEMPT_NONE is not set +# CONFIG_PREEMPT_VOLUNTARY is not set +CONFIG_PREEMPT=y +CONFIG_PREEMPT_BKL=y +CONFIG_X86_LOCAL_APIC=y +CONFIG_X86_IO_APIC=y +CONFIG_X86_MCE=y +CONFIG_X86_MCE_NONFATAL=m +CONFIG_X86_MCE_P4THERMAL=y +CONFIG_VM86=y +CONFIG_TOSHIBA=m +CONFIG_I8K=m +CONFIG_X86_REBOOTFIXUPS=y +CONFIG_MICROCODE=m +CONFIG_MICROCODE_OLD_INTERFACE=y +CONFIG_X86_MSR=m +CONFIG_X86_CPUID=m + +# +# Firmware Drivers +# +CONFIG_EDD=m +CONFIG_DELL_RBU=m +CONFIG_DCDBAS=m +# CONFIG_NOHIGHMEM is not set +CONFIG_HIGHMEM4G=y +# CONFIG_HIGHMEM64G is not set +CONFIG_PAGE_OFFSET=0xC0000000 +CONFIG_HIGHMEM=y +CONFIG_ARCH_FLATMEM_ENABLE=y +CONFIG_ARCH_SPARSEMEM_ENABLE=y +CONFIG_ARCH_SELECT_MEMORY_MODEL=y +CONFIG_ARCH_POPULATES_NODE_MAP=y +CONFIG_SELECT_MEMORY_MODEL=y +CONFIG_FLATMEM_MANUAL=y +# CONFIG_DISCONTIGMEM_MANUAL is not set +# CONFIG_SPARSEMEM_MANUAL is not set +CONFIG_FLATMEM=y +CONFIG_FLAT_NODE_MEM_MAP=y +CONFIG_SPARSEMEM_STATIC=y +CONFIG_SPLIT_PTLOCK_CPUS=4 +# CONFIG_RESOURCES_64BIT is not set +# CONFIG_HIGHPTE is not set +# CONFIG_MATH_EMULATION is not set +CONFIG_MTRR=y +# CONFIG_EFI is not set +CONFIG_IRQBALANCE=y +# CONFIG_REGPARM is not set +CONFIG_SECCOMP=y +# CONFIG_HZ_100 is not set +CONFIG_HZ_250=y +# CONFIG_HZ_1000 is not set +CONFIG_HZ=1000 +CONFIG_KEXEC=y +# CONFIG_CRASH_DUMP is not set +CONFIG_PHYSICAL_START=0x100000 +CONFIG_HOTPLUG_CPU=y +# CONFIG_COMPAT_VDSO is not set +CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y + +# +# Power management options (ACPI, APM) +# +CONFIG_PM=y +CONFIG_PM_LEGACY=y +# CONFIG_PM_DEBUG is not set +# CONFIG_PM_SYSFS_DEPRECATED is not set +CONFIG_SOFTWARE_SUSPEND=y +CONFIG_PM_STD_PARTITION="" +CONFIG_SUSPEND_SMP=y + +# +# ACPI (Advanced Configuration and Power Interface) Support +# +CONFIG_ACPI=y +CONFIG_ACPI_SLEEP=y +CONFIG_ACPI_SLEEP_PROC_FS=y +# CONFIG_ACPI_SLEEP_PROC_SLEEP is not set +CONFIG_ACPI_AC=m +CONFIG_ACPI_BATTERY=m +CONFIG_ACPI_BUTTON=m +CONFIG_ACPI_VIDEO=m +# CONFIG_ACPI_HOTKEY is not set +CONFIG_ACPI_FAN=m +CONFIG_ACPI_DOCK=m +CONFIG_ACPI_PROCESSOR=m +CONFIG_ACPI_HOTPLUG_CPU=y +CONFIG_ACPI_THERMAL=m +CONFIG_ACPI_ASUS=m +CONFIG_ACPI_IBM=m +CONFIG_ACPI_TOSHIBA=m +CONFIG_ACPI_BLACKLIST_YEAR=0 +# CONFIG_ACPI_DEBUG is not set +CONFIG_ACPI_EC=y +CONFIG_ACPI_POWER=y +CONFIG_ACPI_SYSTEM=y +CONFIG_X86_PM_TIMER=y +CONFIG_ACPI_CONTAINER=m +# CONFIG_ACPI_SBS is not set + +# +# APM (Advanced Power Management) BIOS Support +# +CONFIG_APM=y +# CONFIG_APM_IGNORE_USER_SUSPEND is not set +# CONFIG_APM_DO_ENABLE is not set +# CONFIG_APM_CPU_IDLE is not set +# CONFIG_APM_DISPLAY_BLANK is not set +# CONFIG_APM_RTC_IS_GMT is not set +# CONFIG_APM_ALLOW_INTS is not set +CONFIG_APM_REAL_MODE_POWER_OFF=y + +# +# CPU Frequency scaling +# +CONFIG_CPU_FREQ=y +CONFIG_CPU_FREQ_TABLE=m +# CONFIG_CPU_FREQ_DEBUG is not set +CONFIG_CPU_FREQ_STAT=m +# CONFIG_CPU_FREQ_STAT_DETAILS is not set +# CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE is not set +CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE=y +CONFIG_CPU_FREQ_GOV_PERFORMANCE=m +CONFIG_CPU_FREQ_GOV_POWERSAVE=m +CONFIG_CPU_FREQ_GOV_USERSPACE=y +CONFIG_CPU_FREQ_GOV_ONDEMAND=m +CONFIG_CPU_FREQ_GOV_CONSERVATIVE=m + +# +# CPUFreq processor drivers +# +CONFIG_X86_ACPI_CPUFREQ=m +CONFIG_X86_POWERNOW_K6=m +CONFIG_X86_POWERNOW_K7=m +CONFIG_X86_POWERNOW_K7_ACPI=y +CONFIG_X86_POWERNOW_K8=m +CONFIG_X86_POWERNOW_K8_ACPI=y +CONFIG_X86_GX_SUSPMOD=m +CONFIG_X86_SPEEDSTEP_CENTRINO=m +CONFIG_X86_SPEEDSTEP_CENTRINO_ACPI=y +CONFIG_X86_SPEEDSTEP_CENTRINO_TABLE=y +CONFIG_X86_SPEEDSTEP_ICH=m +CONFIG_X86_SPEEDSTEP_SMI=m +CONFIG_X86_P4_CLOCKMOD=m +CONFIG_X86_CPUFREQ_NFORCE2=m +CONFIG_X86_LONGRUN=m +CONFIG_X86_LONGHAUL=m + +# +# shared options +# +# CONFIG_X86_ACPI_CPUFREQ_PROC_INTF is not set +CONFIG_X86_SPEEDSTEP_LIB=m +# CONFIG_X86_SPEEDSTEP_RELAXED_CAP_CHECK is not set + +# +# Bus options (PCI, PCMCIA, EISA, MCA, ISA) +# +CONFIG_PCI=y +# CONFIG_PCI_GOBIOS is not set +# CONFIG_PCI_GOMMCONFIG is not set +# CONFIG_PCI_GODIRECT is not set +CONFIG_PCI_GOANY=y +CONFIG_PCI_BIOS=y +CONFIG_PCI_DIRECT=y +CONFIG_PCI_MMCONFIG=y +CONFIG_PCIEPORTBUS=y +CONFIG_HOTPLUG_PCI_PCIE=m +# CONFIG_HOTPLUG_PCI_PCIE_POLL_EVENT_MODE is not set +CONFIG_PCIEAER=y +CONFIG_PCI_MSI=y +CONFIG_HT_IRQ=y +CONFIG_ISA_DMA_API=y +CONFIG_ISA=y +CONFIG_EISA=y +# CONFIG_EISA_VLB_PRIMING is not set +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=m +CONFIG_SCx200HR_TIMER=m +CONFIG_K8_NB=y + +# +# PCCARD (PCMCIA/CardBus) support +# +CONFIG_PCCARD=y +# CONFIG_PCMCIA_DEBUG is not set +CONFIG_PCMCIA=y +CONFIG_PCMCIA_LOAD_CIS=y +# CONFIG_PCMCIA_IOCTL is not set +CONFIG_CARDBUS=y + +# +# PC-card bridges +# +CONFIG_YENTA=m +CONFIG_YENTA_O2=y +CONFIG_YENTA_RICOH=y +CONFIG_YENTA_TI=y +CONFIG_YENTA_ENE_TUNE=y +CONFIG_YENTA_TOSHIBA=y +CONFIG_PD6729=m +CONFIG_I82092=m +CONFIG_I82365=m +CONFIG_TCIC=m +CONFIG_PCMCIA_PROBE=y +CONFIG_PCCARD_NONSTATIC=m + +# +# PCI Hotplug Support +# +CONFIG_HOTPLUG_PCI=y +CONFIG_HOTPLUG_PCI_FAKE=m +CONFIG_HOTPLUG_PCI_COMPAQ=m +# CONFIG_HOTPLUG_PCI_COMPAQ_NVRAM is not set +CONFIG_HOTPLUG_PCI_IBM=m +CONFIG_HOTPLUG_PCI_ACPI=m +CONFIG_HOTPLUG_PCI_ACPI_IBM=m +# CONFIG_HOTPLUG_PCI_CPCI is not set +CONFIG_HOTPLUG_PCI_SHPC=m +# CONFIG_HOTPLUG_PCI_SHPC_POLL_EVENT_MODE is not set + +# +# Executable file formats +# +CONFIG_BINFMT_ELF=y +CONFIG_BINFMT_AOUT=m +CONFIG_BINFMT_MISC=m + +# +# Networking +# +CONFIG_NET=y + +# +# Networking options +# +# CONFIG_NETDEBUG is not set +CONFIG_PACKET=y +CONFIG_PACKET_MMAP=y +CONFIG_UNIX=y +CONFIG_XFRM=y +CONFIG_XFRM_USER=y +# CONFIG_XFRM_SUB_POLICY is not set +CONFIG_NET_KEY=m +CONFIG_INET=y +CONFIG_IP_MULTICAST=y +CONFIG_IP_ADVANCED_ROUTER=y +CONFIG_ASK_IP_FIB_HASH=y +# CONFIG_IP_FIB_TRIE is not set +CONFIG_IP_FIB_HASH=y +CONFIG_IP_MULTIPLE_TABLES=y +CONFIG_IP_ROUTE_FWMARK=y +CONFIG_IP_ROUTE_MULTIPATH=y +# CONFIG_IP_ROUTE_MULTIPATH_CACHED is not set +CONFIG_IP_ROUTE_VERBOSE=y +# CONFIG_IP_PNP is not set +CONFIG_NET_IPIP=m +CONFIG_NET_IPGRE=m +CONFIG_NET_IPGRE_BROADCAST=y +CONFIG_IP_MROUTE=y +CONFIG_IP_PIMSM_V1=y +CONFIG_IP_PIMSM_V2=y +# CONFIG_ARPD is not set +CONFIG_SYN_COOKIES=y +CONFIG_INET_AH=m +CONFIG_INET_ESP=m +CONFIG_INET_IPCOMP=m +CONFIG_INET_XFRM_TUNNEL=m +CONFIG_INET_TUNNEL=m +CONFIG_INET_XFRM_MODE_TRANSPORT=y +CONFIG_INET_XFRM_MODE_TUNNEL=y +CONFIG_INET_XFRM_MODE_BEET=y +CONFIG_INET_DIAG=y +CONFIG_INET_TCP_DIAG=y +CONFIG_TCP_CONG_ADVANCED=y +CONFIG_TCP_CONG_BIC=y +CONFIG_TCP_CONG_CUBIC=m +CONFIG_TCP_CONG_WESTWOOD=m +CONFIG_TCP_CONG_HTCP=m +CONFIG_TCP_CONG_HSTCP=m +CONFIG_TCP_CONG_HYBLA=m +CONFIG_TCP_CONG_VEGAS=m +CONFIG_TCP_CONG_SCALABLE=m +# CONFIG_TCP_CONG_LP is not set +# CONFIG_TCP_CONG_VENO is not set +CONFIG_DEFAULT_BIC=y +# CONFIG_DEFAULT_CUBIC is not set +# CONFIG_DEFAULT_HTCP is not set +# CONFIG_DEFAULT_VEGAS is not set +# CONFIG_DEFAULT_WESTWOOD is not set +# CONFIG_DEFAULT_RENO is not set +CONFIG_DEFAULT_TCP_CONG="bic" + +# +# IP: Virtual Server Configuration +# +CONFIG_IP_VS=m +# CONFIG_IP_VS_DEBUG is not set +CONFIG_IP_VS_TAB_BITS=12 + +# +# IPVS transport protocol load balancing support +# +CONFIG_IP_VS_PROTO_TCP=y +CONFIG_IP_VS_PROTO_UDP=y +CONFIG_IP_VS_PROTO_ESP=y +CONFIG_IP_VS_PROTO_AH=y + +# +# IPVS scheduler +# +CONFIG_IP_VS_RR=m +CONFIG_IP_VS_WRR=m +CONFIG_IP_VS_LC=m +CONFIG_IP_VS_WLC=m +CONFIG_IP_VS_LBLC=m +CONFIG_IP_VS_LBLCR=m +CONFIG_IP_VS_DH=m +CONFIG_IP_VS_SH=m +CONFIG_IP_VS_SED=m +CONFIG_IP_VS_NQ=m + +# +# IPVS application helper +# +CONFIG_IP_VS_FTP=m +CONFIG_IPV6=m +CONFIG_IPV6_PRIVACY=y +CONFIG_IPV6_ROUTER_PREF=y +# CONFIG_IPV6_ROUTE_INFO is not set +CONFIG_INET6_AH=m +CONFIG_INET6_ESP=m +CONFIG_INET6_IPCOMP=m +# CONFIG_IPV6_MIP6 is not set +CONFIG_INET6_XFRM_TUNNEL=m +CONFIG_INET6_TUNNEL=m +CONFIG_INET6_XFRM_MODE_TRANSPORT=m +CONFIG_INET6_XFRM_MODE_TUNNEL=m +CONFIG_INET6_XFRM_MODE_BEET=m +# CONFIG_INET6_XFRM_MODE_ROUTEOPTIMIZATION is not set +CONFIG_IPV6_SIT=m +CONFIG_IPV6_TUNNEL=m +# CONFIG_IPV6_MULTIPLE_TABLES is not set +# CONFIG_NETLABEL is not set +# CONFIG_NETWORK_SECMARK is not set +CONFIG_NETFILTER=y +# CONFIG_NETFILTER_DEBUG is not set +CONFIG_BRIDGE_NETFILTER=y + +# +# Core Netfilter Configuration +# +CONFIG_NETFILTER_NETLINK=m +CONFIG_NETFILTER_NETLINK_QUEUE=m +CONFIG_NETFILTER_NETLINK_LOG=m +CONFIG_NETFILTER_XTABLES=m +CONFIG_NETFILTER_XT_TARGET_CLASSIFY=m +CONFIG_NETFILTER_XT_TARGET_CONNMARK=m +CONFIG_NETFILTER_XT_TARGET_DSCP=m +CONFIG_NETFILTER_XT_TARGET_MARK=m +CONFIG_NETFILTER_XT_TARGET_NFQUEUE=m +CONFIG_NETFILTER_XT_TARGET_NOTRACK=m +CONFIG_NETFILTER_XT_MATCH_COMMENT=m +CONFIG_NETFILTER_XT_MATCH_CONNBYTES=m +CONFIG_NETFILTER_XT_MATCH_CONNMARK=m +CONFIG_NETFILTER_XT_MATCH_CONNTRACK=m +CONFIG_NETFILTER_XT_MATCH_DCCP=m +CONFIG_NETFILTER_XT_MATCH_DSCP=m +# CONFIG_NETFILTER_XT_MATCH_ESP is not set +CONFIG_NETFILTER_XT_MATCH_HELPER=m +CONFIG_NETFILTER_XT_MATCH_LENGTH=m +CONFIG_NETFILTER_XT_MATCH_LIMIT=m +CONFIG_NETFILTER_XT_MATCH_MAC=m +CONFIG_NETFILTER_XT_MATCH_MARK=m +# CONFIG_NETFILTER_XT_MATCH_POLICY is not set +# CONFIG_NETFILTER_XT_MATCH_MULTIPORT is not set +CONFIG_NETFILTER_XT_MATCH_PHYSDEV=m +CONFIG_NETFILTER_XT_MATCH_PKTTYPE=m +# CONFIG_NETFILTER_XT_MATCH_QUOTA is not set +CONFIG_NETFILTER_XT_MATCH_REALM=m +CONFIG_NETFILTER_XT_MATCH_SCTP=m +CONFIG_NETFILTER_XT_MATCH_STATE=m +# CONFIG_NETFILTER_XT_MATCH_STATISTIC is not set +CONFIG_NETFILTER_XT_MATCH_STRING=m +CONFIG_NETFILTER_XT_MATCH_TCPMSS=m + +# +# IP: Netfilter Configuration +# +CONFIG_IP_NF_CONNTRACK=m +CONFIG_IP_NF_CT_ACCT=y +CONFIG_IP_NF_CONNTRACK_MARK=y +CONFIG_IP_NF_CONNTRACK_EVENTS=y +CONFIG_IP_NF_CONNTRACK_NETLINK=m +CONFIG_IP_NF_CT_PROTO_SCTP=m +CONFIG_IP_NF_FTP=m +CONFIG_IP_NF_IRC=m +CONFIG_IP_NF_NETBIOS_NS=m +CONFIG_IP_NF_TFTP=m +CONFIG_IP_NF_AMANDA=m +CONFIG_IP_NF_PPTP=m +# CONFIG_IP_NF_H323 is not set +# CONFIG_IP_NF_SIP is not set +CONFIG_IP_NF_QUEUE=m +CONFIG_IP_NF_IPTABLES=m +CONFIG_IP_NF_MATCH_IPRANGE=m +CONFIG_IP_NF_MATCH_TOS=m +CONFIG_IP_NF_MATCH_RECENT=m +CONFIG_IP_NF_MATCH_ECN=m +# CONFIG_IP_NF_MATCH_AH is not set +CONFIG_IP_NF_MATCH_TTL=m +CONFIG_IP_NF_MATCH_OWNER=m +CONFIG_IP_NF_MATCH_ADDRTYPE=m +CONFIG_IP_NF_MATCH_HASHLIMIT=m +CONFIG_IP_NF_FILTER=m +CONFIG_IP_NF_TARGET_REJECT=m +CONFIG_IP_NF_TARGET_LOG=m +CONFIG_IP_NF_TARGET_ULOG=m +CONFIG_IP_NF_TARGET_TCPMSS=m +CONFIG_IP_NF_NAT=m +CONFIG_IP_NF_NAT_NEEDED=y +CONFIG_IP_NF_TARGET_MASQUERADE=m +CONFIG_IP_NF_TARGET_REDIRECT=m +CONFIG_IP_NF_TARGET_NETMAP=m +CONFIG_IP_NF_TARGET_SAME=m +CONFIG_IP_NF_NAT_SNMP_BASIC=m +CONFIG_IP_NF_NAT_IRC=m +CONFIG_IP_NF_NAT_FTP=m +CONFIG_IP_NF_NAT_TFTP=m +CONFIG_IP_NF_NAT_AMANDA=m +CONFIG_IP_NF_NAT_PPTP=m +CONFIG_IP_NF_MANGLE=m +CONFIG_IP_NF_TARGET_TOS=m +CONFIG_IP_NF_TARGET_ECN=m +CONFIG_IP_NF_TARGET_TTL=m +CONFIG_IP_NF_TARGET_CLUSTERIP=m +CONFIG_IP_NF_RAW=m +CONFIG_IP_NF_ARPTABLES=m +CONFIG_IP_NF_ARPFILTER=m +CONFIG_IP_NF_ARP_MANGLE=m + +# +# IPv6: Netfilter Configuration (EXPERIMENTAL) +# +CONFIG_IP6_NF_QUEUE=m +CONFIG_IP6_NF_IPTABLES=m +CONFIG_IP6_NF_MATCH_RT=m +CONFIG_IP6_NF_MATCH_OPTS=m +CONFIG_IP6_NF_MATCH_FRAG=m +CONFIG_IP6_NF_MATCH_HL=m +CONFIG_IP6_NF_MATCH_OWNER=m +CONFIG_IP6_NF_MATCH_IPV6HEADER=m +# CONFIG_IP6_NF_MATCH_AH is not set +CONFIG_IP6_NF_MATCH_EUI64=m +CONFIG_IP6_NF_FILTER=m +CONFIG_IP6_NF_TARGET_LOG=m +CONFIG_IP6_NF_TARGET_REJECT=m +CONFIG_IP6_NF_MANGLE=m +CONFIG_IP6_NF_TARGET_HL=m +CONFIG_IP6_NF_RAW=m + +# +# DECnet: Netfilter Configuration +# +# CONFIG_DECNET_NF_GRABULATOR is not set + +# +# Bridge: Netfilter Configuration +# +CONFIG_BRIDGE_NF_EBTABLES=m +CONFIG_BRIDGE_EBT_BROUTE=m +CONFIG_BRIDGE_EBT_T_FILTER=m +CONFIG_BRIDGE_EBT_T_NAT=m +CONFIG_BRIDGE_EBT_802_3=m +CONFIG_BRIDGE_EBT_AMONG=m +CONFIG_BRIDGE_EBT_ARP=m +CONFIG_BRIDGE_EBT_IP=m +CONFIG_BRIDGE_EBT_LIMIT=m +CONFIG_BRIDGE_EBT_MARK=m +CONFIG_BRIDGE_EBT_PKTTYPE=m +CONFIG_BRIDGE_EBT_STP=m +CONFIG_BRIDGE_EBT_VLAN=m +CONFIG_BRIDGE_EBT_ARPREPLY=m +CONFIG_BRIDGE_EBT_DNAT=m +CONFIG_BRIDGE_EBT_MARK_T=m +CONFIG_BRIDGE_EBT_REDIRECT=m +CONFIG_BRIDGE_EBT_SNAT=m +CONFIG_BRIDGE_EBT_LOG=m +# CONFIG_BRIDGE_EBT_ULOG is not set + +# +# DCCP Configuration (EXPERIMENTAL) +# +# CONFIG_IP_DCCP is not set + +# +# SCTP Configuration (EXPERIMENTAL) +# +CONFIG_IP_SCTP=m +# CONFIG_SCTP_DBG_MSG is not set +# CONFIG_SCTP_DBG_OBJCNT is not set +# CONFIG_SCTP_HMAC_NONE is not set +# CONFIG_SCTP_HMAC_SHA1 is not set +CONFIG_SCTP_HMAC_MD5=y + +# +# TIPC Configuration (EXPERIMENTAL) +# +# CONFIG_TIPC is not set +CONFIG_ATM=m +CONFIG_ATM_CLIP=m +# CONFIG_ATM_CLIP_NO_ICMP is not set +CONFIG_ATM_LANE=m +CONFIG_ATM_MPOA=m +CONFIG_ATM_BR2684=m +# CONFIG_ATM_BR2684_IPFILTER is not set +CONFIG_BRIDGE=m +CONFIG_VLAN_8021Q=m +CONFIG_DECNET=m +# CONFIG_DECNET_ROUTER is not set +CONFIG_LLC=y +CONFIG_LLC2=m +CONFIG_IPX=m +# CONFIG_IPX_INTERN is not set +CONFIG_ATALK=m +CONFIG_DEV_APPLETALK=m +CONFIG_LTPC=m +CONFIG_COPS=m +CONFIG_COPS_DAYNA=y +CONFIG_COPS_TANGENT=y +CONFIG_IPDDP=m +CONFIG_IPDDP_ENCAP=y +CONFIG_IPDDP_DECAP=y +# CONFIG_X25 is not set +# CONFIG_LAPB is not set +# CONFIG_ECONET is not set +CONFIG_WAN_ROUTER=m + +# +# QoS and/or fair queueing +# +CONFIG_NET_SCHED=y +CONFIG_NET_SCH_CLK_JIFFIES=y +# CONFIG_NET_SCH_CLK_GETTIMEOFDAY is not set +# CONFIG_NET_SCH_CLK_CPU is not set + +# +# Queueing/Scheduling +# +CONFIG_NET_SCH_CBQ=m +CONFIG_NET_SCH_HTB=m +CONFIG_NET_SCH_HFSC=m +CONFIG_NET_SCH_ATM=m +CONFIG_NET_SCH_PRIO=m +CONFIG_NET_SCH_RED=m +CONFIG_NET_SCH_SFQ=m +CONFIG_NET_SCH_TEQL=m +CONFIG_NET_SCH_TBF=m +CONFIG_NET_SCH_GRED=m +CONFIG_NET_SCH_DSMARK=m +CONFIG_NET_SCH_NETEM=m +CONFIG_NET_SCH_INGRESS=m + +# +# Classification +# +CONFIG_NET_CLS=y +CONFIG_NET_CLS_BASIC=m +CONFIG_NET_CLS_TCINDEX=m +CONFIG_NET_CLS_ROUTE4=m +CONFIG_NET_CLS_ROUTE=y +CONFIG_NET_CLS_FW=m +CONFIG_NET_CLS_U32=m +# CONFIG_CLS_U32_PERF is not set +# CONFIG_CLS_U32_MARK is not set +CONFIG_NET_CLS_RSVP=m +CONFIG_NET_CLS_RSVP6=m +CONFIG_NET_EMATCH=y +CONFIG_NET_EMATCH_STACK=32 +CONFIG_NET_EMATCH_CMP=m +CONFIG_NET_EMATCH_NBYTE=m +CONFIG_NET_EMATCH_U32=m +CONFIG_NET_EMATCH_META=m +CONFIG_NET_EMATCH_TEXT=m +CONFIG_NET_CLS_ACT=y +CONFIG_NET_ACT_POLICE=m +CONFIG_NET_ACT_GACT=m +CONFIG_GACT_PROB=y +CONFIG_NET_ACT_MIRRED=m +CONFIG_NET_ACT_IPT=m +CONFIG_NET_ACT_PEDIT=m +# CONFIG_NET_ACT_SIMP is not set +CONFIG_NET_CLS_IND=y +CONFIG_NET_ESTIMATOR=y + +# +# Network testing +# +# CONFIG_NET_PKTGEN is not set +CONFIG_HAMRADIO=y + +# +# Packet Radio protocols +# +CONFIG_AX25=m +# CONFIG_AX25_DAMA_SLAVE is not set +CONFIG_NETROM=m +CONFIG_ROSE=m + +# +# AX.25 network device drivers +# +# CONFIG_MKISS is not set +# CONFIG_6PACK is not set +CONFIG_BPQETHER=m +CONFIG_SCC=m +CONFIG_SCC_DELAY=y +CONFIG_SCC_TRXECHO=y +CONFIG_BAYCOM_SER_FDX=m +CONFIG_BAYCOM_SER_HDX=m +CONFIG_BAYCOM_PAR=m +CONFIG_BAYCOM_EPP=m +CONFIG_YAM=m +CONFIG_IRDA=m + +# +# IrDA protocols +# +CONFIG_IRLAN=m +CONFIG_IRNET=m +CONFIG_IRCOMM=m +# CONFIG_IRDA_ULTRA is not set + +# +# IrDA options +# +CONFIG_IRDA_CACHE_LAST_LSAP=y +CONFIG_IRDA_FAST_RR=y +# CONFIG_IRDA_DEBUG is not set + +# +# Infrared-port device drivers +# + +# +# SIR device drivers +# +CONFIG_IRTTY_SIR=m + +# +# Dongle support +# +CONFIG_DONGLE=y +CONFIG_ESI_DONGLE=m +CONFIG_ACTISYS_DONGLE=m +CONFIG_TEKRAM_DONGLE=m +CONFIG_TOIM3232_DONGLE=m +CONFIG_LITELINK_DONGLE=m +CONFIG_MA600_DONGLE=m +CONFIG_GIRBIL_DONGLE=m +CONFIG_MCP2120_DONGLE=m +CONFIG_OLD_BELKIN_DONGLE=m +CONFIG_ACT200L_DONGLE=m + +# +# Old SIR device drivers +# + +# +# Old Serial dongle support +# + +# +# FIR device drivers +# +CONFIG_USB_IRDA=m +CONFIG_SIGMATEL_FIR=m +CONFIG_NSC_FIR=m +CONFIG_WINBOND_FIR=m +CONFIG_TOSHIBA_FIR=m +CONFIG_SMC_IRCC_FIR=m +CONFIG_ALI_FIR=m +CONFIG_VLSI_FIR=m +CONFIG_VIA_FIR=m +# CONFIG_MCS_FIR is not set +CONFIG_BT=m +CONFIG_BT_L2CAP=m +CONFIG_BT_SCO=m +CONFIG_BT_RFCOMM=m +CONFIG_BT_RFCOMM_TTY=y +CONFIG_BT_BNEP=m +CONFIG_BT_BNEP_MC_FILTER=y +CONFIG_BT_BNEP_PROTO_FILTER=y +CONFIG_BT_CMTP=m +CONFIG_BT_HIDP=m + +# +# Bluetooth device drivers +# +CONFIG_BT_HCIUSB=m +CONFIG_BT_HCIUSB_SCO=y +CONFIG_BT_HCIUART=m +CONFIG_BT_HCIUART_H4=y +CONFIG_BT_HCIUART_BCSP=y +CONFIG_BT_HCIBCM203X=m +CONFIG_BT_HCIBPA10X=m +CONFIG_BT_HCIBFUSB=m +CONFIG_BT_HCIDTL1=m +CONFIG_BT_HCIBT3C=m +CONFIG_BT_HCIBLUECARD=m +CONFIG_BT_HCIBTUART=m +CONFIG_BT_HCIVHCI=m +CONFIG_IEEE80211=m +# CONFIG_IEEE80211_DEBUG is not set +CONFIG_IEEE80211_CRYPT_WEP=m +CONFIG_IEEE80211_CRYPT_CCMP=m +CONFIG_IEEE80211_CRYPT_TKIP=m +CONFIG_IEEE80211_SOFTMAC=m +# CONFIG_IEEE80211_SOFTMAC_DEBUG is not set +CONFIG_WIRELESS_EXT=y +CONFIG_FIB_RULES=y + +# +# Device Drivers +# + +# +# Generic Driver Options +# +CONFIG_STANDALONE=y +CONFIG_PREVENT_FIRMWARE_BUILD=y +CONFIG_FW_LOADER=y +# CONFIG_SYS_HYPERVISOR is not set + +# +# Connector - unified userspace <-> kernelspace linker +# +CONFIG_CONNECTOR=m + +# +# Memory Technology Devices (MTD) +# +CONFIG_MTD=m +# CONFIG_MTD_DEBUG is not set +CONFIG_MTD_CONCAT=m +CONFIG_MTD_PARTITIONS=y +CONFIG_MTD_REDBOOT_PARTS=m +CONFIG_MTD_REDBOOT_DIRECTORY_BLOCK=-1 +# CONFIG_MTD_REDBOOT_PARTS_UNALLOCATED is not set +# CONFIG_MTD_REDBOOT_PARTS_READONLY is not set + +# +# User Modules And Translation Layers +# +CONFIG_MTD_CHAR=m +CONFIG_MTD_BLOCK=m +CONFIG_MTD_BLOCK_RO=m +CONFIG_FTL=m +CONFIG_NFTL=m +CONFIG_NFTL_RW=y +CONFIG_INFTL=m +CONFIG_RFD_FTL=m +CONFIG_SSFDC=m + +# +# RAM/ROM/Flash chip drivers +# +CONFIG_MTD_CFI=m +CONFIG_MTD_JEDECPROBE=m +CONFIG_MTD_GEN_PROBE=m +# CONFIG_MTD_CFI_ADV_OPTIONS is not set +# CONFIG_MTD_CFI_NOSWAP is not set +# CONFIG_MTD_CFI_BE_BYTE_SWAP is not set +# CONFIG_MTD_CFI_LE_BYTE_SWAP is not set +CONFIG_MTD_MAP_BANK_WIDTH_1=y +CONFIG_MTD_MAP_BANK_WIDTH_2=y +CONFIG_MTD_MAP_BANK_WIDTH_4=y +# CONFIG_MTD_MAP_BANK_WIDTH_8 is not set +# CONFIG_MTD_MAP_BANK_WIDTH_16 is not set +# CONFIG_MTD_MAP_BANK_WIDTH_32 is not set +CONFIG_MTD_CFI_I1=y +CONFIG_MTD_CFI_I2=y +# CONFIG_MTD_CFI_I4 is not set +# CONFIG_MTD_CFI_I8 is not set +CONFIG_MTD_CFI_INTELEXT=m +CONFIG_MTD_CFI_AMDSTD=m +CONFIG_MTD_CFI_STAA=m +CONFIG_MTD_CFI_UTIL=m +CONFIG_MTD_RAM=m +CONFIG_MTD_ROM=m +CONFIG_MTD_ABSENT=m +# CONFIG_MTD_OBSOLETE_CHIPS is not set + +# +# Mapping drivers for chip access +# +CONFIG_MTD_COMPLEX_MAPPINGS=y +CONFIG_MTD_PHYSMAP=m +CONFIG_MTD_PHYSMAP_START=0x8000000 +CONFIG_MTD_PHYSMAP_LEN=0x4000000 +CONFIG_MTD_PHYSMAP_BANKWIDTH=2 +CONFIG_MTD_PNC2000=m +CONFIG_MTD_SC520CDP=m +CONFIG_MTD_NETSC520=m +CONFIG_MTD_TS5500=m +CONFIG_MTD_SBC_GXX=m +CONFIG_MTD_SCx200_DOCFLASH=m +CONFIG_MTD_AMD76XROM=m +CONFIG_MTD_ICHXROM=m +CONFIG_MTD_SCB2_FLASH=m +CONFIG_MTD_NETtel=m +CONFIG_MTD_DILNETPC=m +CONFIG_MTD_DILNETPC_BOOTSIZE=0x80000 +CONFIG_MTD_L440GX=m +CONFIG_MTD_PCI=m +CONFIG_MTD_PLATRAM=m + +# +# Self-contained MTD device drivers +# +CONFIG_MTD_PMC551=m +CONFIG_MTD_PMC551_BUGFIX=y +# CONFIG_MTD_PMC551_DEBUG is not set +CONFIG_MTD_DATAFLASH=m +CONFIG_MTD_M25P80=m +CONFIG_MTD_SLRAM=m +CONFIG_MTD_PHRAM=m +CONFIG_MTD_MTDRAM=m +CONFIG_MTDRAM_TOTAL_SIZE=4096 +CONFIG_MTDRAM_ERASE_SIZE=128 +CONFIG_MTD_BLOCK2MTD=m + +# +# Disk-On-Chip Device Drivers +# +# CONFIG_MTD_DOC2000 is not set +# CONFIG_MTD_DOC2001 is not set +CONFIG_MTD_DOC2001PLUS=m +CONFIG_MTD_DOCPROBE=m +CONFIG_MTD_DOCECC=m +# CONFIG_MTD_DOCPROBE_ADVANCED is not set +CONFIG_MTD_DOCPROBE_ADDRESS=0 + +# +# NAND Flash Device Drivers +# +CONFIG_MTD_NAND=m +CONFIG_MTD_NAND_VERIFY_WRITE=y +# CONFIG_MTD_NAND_ECC_SMC is not set +CONFIG_MTD_NAND_IDS=m +# CONFIG_MTD_NAND_DISKONCHIP is not set +CONFIG_MTD_NAND_CS553X=m +CONFIG_MTD_NAND_NANDSIM=m + +# +# OneNAND Flash Device Drivers +# +CONFIG_MTD_ONENAND=m +CONFIG_MTD_ONENAND_VERIFY_WRITE=y +CONFIG_MTD_ONENAND_OTP=y + +# +# Parallel port support +# +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_PCMCIA=m +CONFIG_PARPORT_NOT_PC=y +# CONFIG_PARPORT_GSC is not set +CONFIG_PARPORT_AX88796=m +CONFIG_PARPORT_1284=y + +# +# Plug and Play support +# +CONFIG_PNP=y +# CONFIG_PNP_DEBUG is not set + +# +# Protocols +# +CONFIG_ISAPNP=y +# CONFIG_PNPBIOS is not set +CONFIG_PNPACPI=y + +# +# Block devices +# +CONFIG_BLK_DEV_FD=y +CONFIG_BLK_DEV_XD=m +CONFIG_PARIDE=m +CONFIG_PARIDE_PARPORT=m + +# +# Parallel IDE high-level drivers +# +CONFIG_PARIDE_PD=m +CONFIG_PARIDE_PCD=m +CONFIG_PARIDE_PF=m +CONFIG_PARIDE_PT=m +CONFIG_PARIDE_PG=m + +# +# Parallel IDE protocol modules +# +CONFIG_PARIDE_ATEN=m +CONFIG_PARIDE_BPCK=m +CONFIG_PARIDE_BPCK6=m +CONFIG_PARIDE_COMM=m +CONFIG_PARIDE_DSTR=m +CONFIG_PARIDE_FIT2=m +CONFIG_PARIDE_FIT3=m +CONFIG_PARIDE_EPAT=m +CONFIG_PARIDE_EPATC8=y +CONFIG_PARIDE_EPIA=m +CONFIG_PARIDE_FRIQ=m +CONFIG_PARIDE_FRPW=m +CONFIG_PARIDE_KBIC=m +CONFIG_PARIDE_KTTI=m +CONFIG_PARIDE_ON20=m +CONFIG_PARIDE_ON26=m +CONFIG_BLK_CPQ_DA=m +CONFIG_BLK_CPQ_CISS_DA=m +CONFIG_CISS_SCSI_TAPE=y +CONFIG_BLK_DEV_DAC960=y +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_NBD=m +CONFIG_BLK_DEV_SX8=m +# CONFIG_BLK_DEV_UB is not set +CONFIG_BLK_DEV_RAM=y +CONFIG_BLK_DEV_RAM_COUNT=16 +CONFIG_BLK_DEV_RAM_SIZE=16384 +CONFIG_BLK_DEV_RAM_BLOCKSIZE=1024 +CONFIG_BLK_DEV_INITRD=y +CONFIG_CDROM_PKTCDVD=m +CONFIG_CDROM_PKTCDVD_BUFFERS=8 +CONFIG_CDROM_PKTCDVD_WCACHE=y +CONFIG_ATA_OVER_ETH=m + +# +# Misc devices +# +CONFIG_IBM_ASM=m +CONFIG_SGI_IOC4=m +CONFIG_TIFM_CORE=m +CONFIG_TIFM_7XX1=m +CONFIG_MSI_LAPTOP=m + +# +# ATA/ATAPI/MFM/RLL support +# +CONFIG_IDE=y +CONFIG_BLK_DEV_IDE=y + +# +# Please see Documentation/ide.txt for help/info on IDE drives +# +# CONFIG_BLK_DEV_IDE_SATA is not set +# CONFIG_BLK_DEV_HD_IDE is not set +CONFIG_BLK_DEV_IDEDISK=y +CONFIG_IDEDISK_MULTI_MODE=y +CONFIG_BLK_DEV_IDECS=m +CONFIG_BLK_DEV_IDECD=y +CONFIG_BLK_DEV_IDETAPE=m +CONFIG_BLK_DEV_IDEFLOPPY=m +# CONFIG_BLK_DEV_IDESCSI is not set +# CONFIG_IDE_TASK_IOCTL is not set + +# +# IDE chipset support/bugfixes +# +CONFIG_IDE_GENERIC=y +CONFIG_BLK_DEV_CMD640=y +CONFIG_BLK_DEV_CMD640_ENHANCED=y +CONFIG_BLK_DEV_IDEPNP=y +CONFIG_BLK_DEV_IDEPCI=y +CONFIG_IDEPCI_SHARE_IRQ=y +# CONFIG_BLK_DEV_OFFBOARD is not set +CONFIG_BLK_DEV_GENERIC=y +CONFIG_BLK_DEV_OPTI621=y +CONFIG_BLK_DEV_RZ1000=y +CONFIG_BLK_DEV_IDEDMA_PCI=y +# CONFIG_BLK_DEV_IDEDMA_FORCED is not set +CONFIG_IDEDMA_PCI_AUTO=y +# CONFIG_IDEDMA_ONLYDISK is not set +CONFIG_BLK_DEV_AEC62XX=y +CONFIG_BLK_DEV_ALI15X3=y +# CONFIG_WDC_ALI15X3 is not set +CONFIG_BLK_DEV_AMD74XX=y +CONFIG_BLK_DEV_ATIIXP=y +CONFIG_BLK_DEV_CMD64X=y +CONFIG_BLK_DEV_TRIFLEX=y +CONFIG_BLK_DEV_CY82C693=y +CONFIG_BLK_DEV_CS5520=y +CONFIG_BLK_DEV_CS5530=y +CONFIG_BLK_DEV_CS5535=m +CONFIG_BLK_DEV_HPT34X=y +# CONFIG_HPT34X_AUTODMA is not set +CONFIG_BLK_DEV_HPT366=y +CONFIG_BLK_DEV_JMICRON=y +CONFIG_BLK_DEV_SC1200=y +CONFIG_BLK_DEV_PIIX=y +CONFIG_BLK_DEV_IT821X=m +CONFIG_BLK_DEV_NS87415=m +CONFIG_BLK_DEV_PDC202XX_OLD=y +CONFIG_PDC202XX_BURST=y +CONFIG_BLK_DEV_PDC202XX_NEW=y +CONFIG_BLK_DEV_SVWKS=y +CONFIG_BLK_DEV_SIIMAGE=y +CONFIG_BLK_DEV_SIS5513=y +CONFIG_BLK_DEV_SLC90E66=y +CONFIG_BLK_DEV_TRM290=y +CONFIG_BLK_DEV_VIA82CXXX=y +# CONFIG_IDE_ARM is not set +CONFIG_IDE_CHIPSETS=y + +# +# Note: most of these also require special kernel boot parameters +# +CONFIG_BLK_DEV_4DRIVES=y +CONFIG_BLK_DEV_ALI14XX=m +CONFIG_BLK_DEV_DTC2278=m +CONFIG_BLK_DEV_HT6560B=m +CONFIG_BLK_DEV_QD65XX=m +CONFIG_BLK_DEV_UMC8672=m +CONFIG_BLK_DEV_IDEDMA=y +# CONFIG_IDEDMA_IVB is not set +CONFIG_IDEDMA_AUTO=y +# CONFIG_BLK_DEV_HD is not set + +# +# SCSI device support +# +CONFIG_RAID_ATTRS=m +CONFIG_SCSI=y +CONFIG_SCSI_NETLINK=y +CONFIG_SCSI_PROC_FS=y + +# +# SCSI support type (disk, tape, CD-ROM) +# +CONFIG_BLK_DEV_SD=y +CONFIG_CHR_DEV_ST=m +CONFIG_CHR_DEV_OSST=m +CONFIG_BLK_DEV_SR=y +CONFIG_BLK_DEV_SR_VENDOR=y +CONFIG_CHR_DEV_SG=m +CONFIG_CHR_DEV_SCH=m + +# +# Some SCSI devices (e.g. CD jukebox) support multiple LUNs +# +CONFIG_SCSI_MULTI_LUN=y +CONFIG_SCSI_CONSTANTS=y +CONFIG_SCSI_LOGGING=y + +# +# SCSI Transports +# +CONFIG_SCSI_SPI_ATTRS=y +CONFIG_SCSI_FC_ATTRS=m +CONFIG_SCSI_ISCSI_ATTRS=m +CONFIG_SCSI_SAS_ATTRS=m +CONFIG_SCSI_SAS_LIBSAS=m +CONFIG_SCSI_SAS_LIBSAS_DEBUG=y + +# +# SCSI low-level drivers +# +CONFIG_ISCSI_TCP=m +CONFIG_BLK_DEV_3W_XXXX_RAID=m +CONFIG_SCSI_3W_9XXX=m +CONFIG_SCSI_7000FASST=m +CONFIG_SCSI_ACARD=m +CONFIG_SCSI_AHA152X=m +CONFIG_SCSI_AHA1542=m +CONFIG_SCSI_AHA1740=m +CONFIG_SCSI_AACRAID=m +CONFIG_SCSI_AIC7XXX=y +CONFIG_AIC7XXX_CMDS_PER_DEVICE=4 +CONFIG_AIC7XXX_RESET_DELAY_MS=15000 +# CONFIG_AIC7XXX_PROBE_EISA_VL is not set +# CONFIG_AIC7XXX_DEBUG_ENABLE is not set +CONFIG_AIC7XXX_DEBUG_MASK=0 +# CONFIG_AIC7XXX_REG_PRETTY_PRINT is not set +CONFIG_SCSI_AIC7XXX_OLD=m +CONFIG_SCSI_AIC79XX=m +CONFIG_AIC79XX_CMDS_PER_DEVICE=4 +CONFIG_AIC79XX_RESET_DELAY_MS=15000 +# CONFIG_AIC79XX_ENABLE_RD_STRM is not set +# CONFIG_AIC79XX_DEBUG_ENABLE is not set +CONFIG_AIC79XX_DEBUG_MASK=0 +# CONFIG_AIC79XX_REG_PRETTY_PRINT is not set +CONFIG_SCSI_AIC94XX=m +# CONFIG_AIC94XX_DEBUG is not set +CONFIG_SCSI_DPT_I2O=m +CONFIG_SCSI_ADVANSYS=m +CONFIG_SCSI_IN2000=m +CONFIG_SCSI_ARCMSR=m +# CONFIG_MEGARAID_NEWGEN is not set +CONFIG_MEGARAID_LEGACY=m +CONFIG_MEGARAID_SAS=m +CONFIG_SCSI_HPTIOP=m +CONFIG_SCSI_BUSLOGIC=y +# CONFIG_SCSI_OMIT_FLASHPOINT is not set +CONFIG_SCSI_DMX3191D=m +CONFIG_SCSI_DTC3280=m +CONFIG_SCSI_EATA=m +# CONFIG_SCSI_EATA_TAGGED_QUEUE is not set +# CONFIG_SCSI_EATA_LINKED_COMMANDS is not set +CONFIG_SCSI_EATA_MAX_TAGS=16 +CONFIG_SCSI_FUTURE_DOMAIN=m +CONFIG_SCSI_FD_MCS=m +CONFIG_SCSI_GDTH=m +CONFIG_SCSI_GENERIC_NCR5380=m +CONFIG_SCSI_GENERIC_NCR5380_MMIO=m +CONFIG_SCSI_GENERIC_NCR53C400=y +CONFIG_SCSI_IBMMCA=m +CONFIG_IBMMCA_SCSI_ORDER_STANDARD=y +CONFIG_IBMMCA_SCSI_DEV_RESET=y +CONFIG_SCSI_IPS=y +CONFIG_SCSI_INITIO=m +CONFIG_SCSI_INIA100=m +CONFIG_SCSI_PPA=m +CONFIG_SCSI_IMM=m +# CONFIG_SCSI_IZIP_EPP16 is not set +# CONFIG_SCSI_IZIP_SLOW_CTR is not set +CONFIG_SCSI_NCR53C406A=m +CONFIG_SCSI_NCR_D700=m +# CONFIG_SCSI_STEX is not set +CONFIG_SCSI_SYM53C8XX_2=m +CONFIG_SCSI_SYM53C8XX_DMA_ADDRESSING_MODE=1 +CONFIG_SCSI_SYM53C8XX_DEFAULT_TAGS=16 +CONFIG_SCSI_SYM53C8XX_MAX_TAGS=64 +CONFIG_SCSI_SYM53C8XX_MMIO=y +CONFIG_SCSI_IPR=m +# CONFIG_SCSI_IPR_TRACE is not set +# CONFIG_SCSI_IPR_DUMP is not set +CONFIG_SCSI_NCR_Q720=m +CONFIG_SCSI_NCR53C8XX_DEFAULT_TAGS=8 +CONFIG_SCSI_NCR53C8XX_MAX_TAGS=32 +CONFIG_SCSI_NCR53C8XX_SYNC=20 +# CONFIG_SCSI_NCR53C8XX_PROFILE is not set +CONFIG_SCSI_PAS16=m +CONFIG_SCSI_PSI240I=m +CONFIG_SCSI_QLOGIC_FAS=m +CONFIG_SCSI_QLOGIC_1280=m +CONFIG_SCSI_QLA_FC=m +# CONFIG_SCSI_QLA_ISCSI is not set +CONFIG_SCSI_LPFC=m +CONFIG_SCSI_SIM710=m +CONFIG_53C700_IO_MAPPED=y +CONFIG_SCSI_SYM53C416=m +CONFIG_SCSI_DC395x=m +CONFIG_SCSI_DC390T=m +CONFIG_SCSI_T128=m +CONFIG_SCSI_U14_34F=m +# CONFIG_SCSI_U14_34F_TAGGED_QUEUE is not set +# CONFIG_SCSI_U14_34F_LINKED_COMMANDS is not set +CONFIG_SCSI_U14_34F_MAX_TAGS=8 +CONFIG_SCSI_ULTRASTOR=m +CONFIG_SCSI_NSP32=m +CONFIG_SCSI_DEBUG=m + +# +# PCMCIA SCSI adapter support +# +CONFIG_PCMCIA_AHA152X=m +CONFIG_PCMCIA_FDOMAIN=m +CONFIG_PCMCIA_NINJA_SCSI=m +CONFIG_PCMCIA_QLOGIC=m +CONFIG_PCMCIA_SYM53C500=m + +# +# Serial ATA (prod) and Parallel ATA (experimental) drivers +# +CONFIG_ATA=y +CONFIG_SATA_AHCI=y +CONFIG_SATA_SVW=m +CONFIG_ATA_PIIX=y +# CONFIG_SATA_MV is not set +CONFIG_SATA_NV=y +CONFIG_PDC_ADMA=m +CONFIG_SATA_QSTOR=m +CONFIG_SATA_PROMISE=y +CONFIG_SATA_SX4=y +CONFIG_SATA_SIL=y +CONFIG_SATA_SIL24=y +CONFIG_SATA_SIS=y +CONFIG_SATA_ULI=y +CONFIG_SATA_VIA=y +CONFIG_SATA_VITESSE=y +CONFIG_SATA_INTEL_COMBINED=y +CONFIG_PATA_ALI=m +CONFIG_PATA_AMD=m +CONFIG_PATA_ARTOP=m +CONFIG_PATA_ATIIXP=m +CONFIG_PATA_CMD64X=m +CONFIG_PATA_CS5520=m +CONFIG_PATA_CS5530=m +CONFIG_PATA_CS5535=m +# CONFIG_PATA_CYPRESS is not set +CONFIG_PATA_EFAR=m +CONFIG_ATA_GENERIC=m +CONFIG_PATA_HPT366=m +# CONFIG_PATA_HPT37X is not set +CONFIG_PATA_HPT3X2N=m +CONFIG_PATA_HPT3X3=m +CONFIG_PATA_ISAPNP=m +CONFIG_PATA_IT821X=m +CONFIG_PATA_JMICRON=m +CONFIG_PATA_LEGACY=m +CONFIG_PATA_TRIFLEX=m +CONFIG_PATA_MPIIX=m +CONFIG_PATA_OLDPIIX=m +CONFIG_PATA_NETCELL=m +CONFIG_PATA_NS87410=m +# CONFIG_PATA_OPTI is not set +# CONFIG_PATA_OPTIDMA is not set +CONFIG_PATA_PCMCIA=m +# CONFIG_PATA_PDC_OLD is not set +CONFIG_PATA_QDI=m +# CONFIG_PATA_RADISYS is not set +CONFIG_PATA_RZ1000=m +CONFIG_PATA_SC1200=m +CONFIG_PATA_SERVERWORKS=m +CONFIG_PATA_PDC2027X=m +CONFIG_PATA_SIL680=m +CONFIG_PATA_SIS=m +CONFIG_PATA_VIA=m +CONFIG_PATA_WINBOND=m + +# +# Old CD-ROM drivers (not SCSI, not IDE) +# +CONFIG_CD_NO_IDESCSI=y +CONFIG_AZTCD=m +CONFIG_GSCD=m +CONFIG_MCDX=m +CONFIG_OPTCD=m +CONFIG_SJCD=m +CONFIG_ISP16_CDI=m +CONFIG_CDU535=m + +# +# Multi-device support (RAID and LVM) +# +CONFIG_MD=y +CONFIG_BLK_DEV_MD=y +CONFIG_MD_LINEAR=m +CONFIG_MD_RAID0=y +CONFIG_MD_RAID1=y +# CONFIG_MD_RAID10 is not set +CONFIG_MD_RAID456=m +CONFIG_MD_RAID5_RESHAPE=y +CONFIG_MD_MULTIPATH=m +CONFIG_MD_FAULTY=m +CONFIG_BLK_DEV_DM=m +# CONFIG_DM_DEBUG is not set +CONFIG_DM_CRYPT=m +# CONFIG_DM_SNAPSHOT is not set +# CONFIG_DM_MIRROR is not set +# CONFIG_DM_ZERO is not set +# CONFIG_DM_MULTIPATH is not set + +# +# Fusion MPT device support +# +CONFIG_FUSION=y +CONFIG_FUSION_SPI=m +CONFIG_FUSION_FC=m +CONFIG_FUSION_SAS=m +CONFIG_FUSION_MAX_SGE=128 +CONFIG_FUSION_CTL=m +CONFIG_FUSION_LAN=m + +# +# IEEE 1394 (FireWire) support +# +CONFIG_IEEE1394=y + +# +# Subsystem Options +# +# CONFIG_IEEE1394_VERBOSEDEBUG is not set +# CONFIG_IEEE1394_OUI_DB is not set +CONFIG_IEEE1394_EXTRA_CONFIG_ROMS=y +CONFIG_IEEE1394_CONFIG_ROM_IP1394=y +# CONFIG_IEEE1394_EXPORT_FULL_API is not set + +# +# Device Drivers +# +CONFIG_IEEE1394_PCILYNX=m +CONFIG_IEEE1394_OHCI1394=m + +# +# Protocol Drivers +# +CONFIG_IEEE1394_VIDEO1394=m +CONFIG_IEEE1394_SBP2=m +# CONFIG_IEEE1394_SBP2_PHYS_DMA is not set +CONFIG_IEEE1394_ETH1394=m +CONFIG_IEEE1394_DV1394=m +CONFIG_IEEE1394_RAWIO=m + +# +# I2O device support +# +CONFIG_I2O=m +CONFIG_I2O_LCT_NOTIFY_ON_CHANGES=y +CONFIG_I2O_EXT_ADAPTEC=y +CONFIG_I2O_CONFIG=m +CONFIG_I2O_CONFIG_OLD_IOCTL=y +CONFIG_I2O_BUS=m +CONFIG_I2O_BLOCK=m +CONFIG_I2O_SCSI=m +CONFIG_I2O_PROC=m + +# +# Network device support +# +CONFIG_NETDEVICES=y +CONFIG_IFB=m +CONFIG_DUMMY=m +CONFIG_BONDING=m +CONFIG_EQUALIZER=m +CONFIG_TUN=m +CONFIG_NET_SB1000=m + +# +# ARCnet devices +# +CONFIG_ARCNET=m +CONFIG_ARCNET_1201=m +CONFIG_ARCNET_1051=m +CONFIG_ARCNET_RAW=m +CONFIG_ARCNET_CAP=m +CONFIG_ARCNET_COM90xx=m +CONFIG_ARCNET_COM90xxIO=m +CONFIG_ARCNET_RIM_I=m +CONFIG_ARCNET_COM20020=m +CONFIG_ARCNET_COM20020_ISA=m +CONFIG_ARCNET_COM20020_PCI=m + +# +# PHY device support +# +CONFIG_PHYLIB=m + +# +# MII PHY device drivers +# +CONFIG_MARVELL_PHY=m +CONFIG_DAVICOM_PHY=m +CONFIG_QSEMI_PHY=m +CONFIG_LXT_PHY=m +CONFIG_CICADA_PHY=m +CONFIG_VITESSE_PHY=m +CONFIG_SMSC_PHY=m +CONFIG_FIXED_PHY=m +CONFIG_FIXED_MII_10_FDX=y +CONFIG_FIXED_MII_100_FDX=y + +# +# Ethernet (10 or 100Mbit) +# +CONFIG_NET_ETHERNET=y +CONFIG_MII=m +CONFIG_HAPPYMEAL=m +CONFIG_SUNGEM=m +CONFIG_CASSINI=m +CONFIG_NET_VENDOR_3COM=y +CONFIG_EL1=m +CONFIG_EL2=m +CONFIG_ELPLUS=m +CONFIG_EL16=m +CONFIG_EL3=m +CONFIG_3C515=m +CONFIG_ELMC=m +CONFIG_ELMC_II=m +CONFIG_VORTEX=m +CONFIG_TYPHOON=m +CONFIG_LANCE=m +CONFIG_NET_VENDOR_SMC=y +CONFIG_WD80x3=m +CONFIG_ULTRAMCA=m +CONFIG_ULTRA=m +CONFIG_ULTRA32=m +CONFIG_SMC9194=m +CONFIG_NET_VENDOR_RACAL=y +CONFIG_NI52=m +CONFIG_NI65=m + +# +# Tulip family network device support +# +CONFIG_NET_TULIP=y +CONFIG_DE2104X=m +CONFIG_TULIP=m +# CONFIG_TULIP_MWI is not set +CONFIG_TULIP_MMIO=y +# CONFIG_TULIP_NAPI is not set +CONFIG_DE4X5=m +CONFIG_WINBOND_840=m +CONFIG_DM9102=m +CONFIG_ULI526X=m +CONFIG_PCMCIA_XIRCOM=m +CONFIG_AT1700=m +CONFIG_DEPCA=m +CONFIG_HP100=m +CONFIG_NET_ISA=y +CONFIG_E2100=m +CONFIG_EWRK3=m +CONFIG_EEXPRESS=m +CONFIG_EEXPRESS_PRO=m +CONFIG_HPLAN_PLUS=m +CONFIG_HPLAN=m +CONFIG_LP486E=m +CONFIG_ETH16I=m +CONFIG_NE2000=m +CONFIG_ZNET=m +CONFIG_SEEQ8005=m +CONFIG_NE2_MCA=m +CONFIG_IBMLANA=m +CONFIG_NET_PCI=y +CONFIG_PCNET32=m +# CONFIG_PCNET32_NAPI is not set +CONFIG_AMD8111_ETH=m +# CONFIG_AMD8111E_NAPI is not set +CONFIG_ADAPTEC_STARFIRE=m +CONFIG_ADAPTEC_STARFIRE_NAPI=y +CONFIG_AC3200=m +CONFIG_APRICOT=m +CONFIG_B44=m +CONFIG_FORCEDETH=m +# CONFIG_FORCEDETH_NAPI is not set +CONFIG_CS89x0=m +CONFIG_DGRS=m +CONFIG_EEPRO100=m +CONFIG_E100=m +CONFIG_LNE390=m +CONFIG_FEALNX=m +CONFIG_NATSEMI=m +CONFIG_NE2K_PCI=m +CONFIG_NE3210=m +CONFIG_ES3210=m +CONFIG_8139CP=m +CONFIG_8139TOO=m +CONFIG_8139TOO_PIO=y +# CONFIG_8139TOO_TUNE_TWISTER is not set +CONFIG_8139TOO_8129=y +# CONFIG_8139_OLD_RX_RESET is not set +CONFIG_SIS900=m +CONFIG_EPIC100=m +CONFIG_SUNDANCE=m +# CONFIG_SUNDANCE_MMIO is not set +CONFIG_TLAN=m +CONFIG_VIA_RHINE=m +CONFIG_VIA_RHINE_MMIO=y +# CONFIG_VIA_RHINE_NAPI is not set +CONFIG_NET_POCKET=y +CONFIG_ATP=m +CONFIG_DE600=m +CONFIG_DE620=m + +# +# Ethernet (1000 Mbit) +# +CONFIG_ACENIC=m +# CONFIG_ACENIC_OMIT_TIGON_I is not set +CONFIG_DL2K=m +CONFIG_E1000=m +CONFIG_E1000_NAPI=y +# CONFIG_E1000_DISABLE_PACKET_SPLIT is not set +CONFIG_NS83820=m +CONFIG_HAMACHI=m +CONFIG_YELLOWFIN=m +CONFIG_R8169=m +# CONFIG_R8169_NAPI is not set +# CONFIG_R8169_VLAN is not set +CONFIG_SIS190=m +CONFIG_SKGE=m +CONFIG_SKY2=m +CONFIG_SK98LIN=m +CONFIG_VIA_VELOCITY=m +CONFIG_TIGON3=m +CONFIG_BNX2=m +CONFIG_QLA3XXX=m + +# +# Ethernet (10000 Mbit) +# +CONFIG_CHELSIO_T1=m +CONFIG_IXGB=m +CONFIG_IXGB_NAPI=y +CONFIG_S2IO=m +CONFIG_S2IO_NAPI=y +CONFIG_MYRI10GE=m + +# +# Token Ring devices +# +CONFIG_TR=y +CONFIG_IBMTR=m +CONFIG_IBMOL=m +CONFIG_IBMLS=m +CONFIG_3C359=m +CONFIG_TMS380TR=m +CONFIG_TMSPCI=m +CONFIG_SKISA=m +CONFIG_PROTEON=m +CONFIG_ABYSS=m +CONFIG_MADGEMC=m +CONFIG_SMCTR=m + +# +# Wireless LAN (non-hamradio) +# +CONFIG_NET_RADIO=y +CONFIG_NET_WIRELESS_RTNETLINK=y + +# +# Obsolete Wireless cards support (pre-802.11) +# +CONFIG_STRIP=m +CONFIG_ARLAN=m +CONFIG_WAVELAN=m +CONFIG_PCMCIA_WAVELAN=m +CONFIG_PCMCIA_NETWAVE=m + +# +# Wireless 802.11 Frequency Hopping cards support +# +CONFIG_PCMCIA_RAYCS=m + +# +# Wireless 802.11b ISA/PCI cards support +# +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 is not set +# CONFIG_IPW2200_DEBUG is not set +CONFIG_AIRO=m +CONFIG_HERMES=m +CONFIG_PLX_HERMES=m +CONFIG_TMD_HERMES=m +CONFIG_NORTEL_HERMES=m +CONFIG_PCI_HERMES=m +CONFIG_ATMEL=m +CONFIG_PCI_ATMEL=m + +# +# Wireless 802.11b Pcmcia/Cardbus cards support +# +CONFIG_PCMCIA_HERMES=m +CONFIG_PCMCIA_SPECTRUM=m +CONFIG_AIRO_CS=m +CONFIG_PCMCIA_ATMEL=m +CONFIG_PCMCIA_WL3501=m + +# +# Prism GT/Duette 802.11(a/b/g) PCI/Cardbus support +# +CONFIG_PRISM54=m +CONFIG_USB_ZD1201=m +CONFIG_HOSTAP=m +CONFIG_HOSTAP_FIRMWARE=y +CONFIG_HOSTAP_FIRMWARE_NVRAM=y +CONFIG_HOSTAP_PLX=m +CONFIG_HOSTAP_PCI=m +CONFIG_HOSTAP_CS=m +CONFIG_BCM43XX=m +# CONFIG_BCM43XX_DEBUG is not set +CONFIG_BCM43XX_DMA=y +CONFIG_BCM43XX_PIO=y +CONFIG_BCM43XX_DMA_AND_PIO_MODE=y +# CONFIG_BCM43XX_DMA_MODE is not set +# CONFIG_BCM43XX_PIO_MODE is not set +CONFIG_ZD1211RW=m +# CONFIG_ZD1211RW_DEBUG is not set +CONFIG_NET_WIRELESS=y + +# +# PCMCIA network device support +# +CONFIG_NET_PCMCIA=y +CONFIG_PCMCIA_3C589=m +CONFIG_PCMCIA_3C574=m +CONFIG_PCMCIA_FMVJ18X=m +CONFIG_PCMCIA_PCNET=m +CONFIG_PCMCIA_NMCLAN=m +CONFIG_PCMCIA_SMC91C92=m +CONFIG_PCMCIA_XIRC2PS=m +CONFIG_PCMCIA_AXNET=m +CONFIG_ARCNET_COM20020_CS=m +CONFIG_PCMCIA_IBMTR=m + +# +# Wan interfaces +# +CONFIG_WAN=y +CONFIG_HOSTESS_SV11=m +CONFIG_COSA=m +CONFIG_DSCC4=m +# CONFIG_DSCC4_PCISYNC is not set +# CONFIG_DSCC4_PCI_RST is not set +CONFIG_LANMEDIA=m +CONFIG_SEALEVEL_4021=m +CONFIG_HDLC=m +CONFIG_HDLC_RAW=m +CONFIG_HDLC_RAW_ETH=m +CONFIG_HDLC_CISCO=m +CONFIG_HDLC_FR=m +CONFIG_HDLC_PPP=m + +# +# X.25/LAPB support is disabled +# +CONFIG_PCI200SYN=m +CONFIG_WANXL=m +CONFIG_PC300=m +CONFIG_PC300_MLPPP=y + +# +# Cyclades-PC300 MLPPP support is disabled. +# + +# +# Refer to the file README.mlppp, provided by PC300 package. +# +CONFIG_N2=m +CONFIG_C101=m +CONFIG_FARSYNC=m +CONFIG_DLCI=m +CONFIG_DLCI_COUNT=24 +CONFIG_DLCI_MAX=8 +CONFIG_SDLA=m +CONFIG_WAN_ROUTER_DRIVERS=y +CONFIG_CYCLADES_SYNC=m +CONFIG_CYCLOMX_X25=y +CONFIG_SBNI=m +# CONFIG_SBNI_MULTILINE is not set + +# +# ATM drivers +# +# CONFIG_ATM_DUMMY is not set +CONFIG_ATM_TCP=m +CONFIG_ATM_LANAI=m +CONFIG_ATM_ENI=m +# CONFIG_ATM_ENI_DEBUG is not set +# CONFIG_ATM_ENI_TUNE_BURST is not set +CONFIG_ATM_FIRESTREAM=m +CONFIG_ATM_ZATM=m +# CONFIG_ATM_ZATM_DEBUG is not set +CONFIG_ATM_NICSTAR=m +# CONFIG_ATM_NICSTAR_USE_SUNI is not set +# CONFIG_ATM_NICSTAR_USE_IDT77105 is not set +CONFIG_ATM_IDT77252=m +# CONFIG_ATM_IDT77252_DEBUG is not set +# CONFIG_ATM_IDT77252_RCV_ALL is not set +CONFIG_ATM_IDT77252_USE_SUNI=y +CONFIG_ATM_AMBASSADOR=m +# CONFIG_ATM_AMBASSADOR_DEBUG is not set +CONFIG_ATM_HORIZON=m +# CONFIG_ATM_HORIZON_DEBUG is not set +CONFIG_ATM_IA=m +# CONFIG_ATM_IA_DEBUG is not set +CONFIG_ATM_FORE200E_MAYBE=m +# CONFIG_ATM_FORE200E_PCA is not set +CONFIG_ATM_HE=m +# CONFIG_ATM_HE_USE_SUNI is not set +CONFIG_FDDI=y +CONFIG_DEFXX=m +CONFIG_SKFP=m +CONFIG_HIPPI=y +CONFIG_ROADRUNNER=m +# CONFIG_ROADRUNNER_LARGE_RINGS is not set +CONFIG_PLIP=m +CONFIG_PPP=m +CONFIG_PPP_MULTILINK=y +CONFIG_PPP_FILTER=y +CONFIG_PPP_ASYNC=m +CONFIG_PPP_SYNC_TTY=m +CONFIG_PPP_DEFLATE=m +CONFIG_PPP_BSDCOMP=m +CONFIG_PPP_MPPE=m +CONFIG_PPPOE=m +CONFIG_PPPOATM=m +CONFIG_SLIP=m +CONFIG_SLIP_COMPRESSED=y +CONFIG_SLHC=m +CONFIG_SLIP_SMART=y +# CONFIG_SLIP_MODE_SLIP6 is not set +CONFIG_NET_FC=y +CONFIG_SHAPER=m +CONFIG_NETCONSOLE=m +CONFIG_NETPOLL=y +CONFIG_NETPOLL_RX=y +CONFIG_NETPOLL_TRAP=y +CONFIG_NET_POLL_CONTROLLER=y + +# +# ISDN subsystem +# +CONFIG_ISDN=m + +# +# Old ISDN4Linux +# +# CONFIG_ISDN_I4L is not set + +# +# CAPI subsystem +# +CONFIG_ISDN_CAPI=m +CONFIG_ISDN_DRV_AVMB1_VERBOSE_REASON=y +CONFIG_ISDN_CAPI_MIDDLEWARE=y +CONFIG_ISDN_CAPI_CAPI20=m +CONFIG_ISDN_CAPI_CAPIFS_BOOL=y +CONFIG_ISDN_CAPI_CAPIFS=m + +# +# CAPI hardware drivers +# + +# +# Active AVM cards +# +CONFIG_CAPI_AVM=y +CONFIG_ISDN_DRV_AVMB1_B1ISA=m +CONFIG_ISDN_DRV_AVMB1_B1PCI=m +CONFIG_ISDN_DRV_AVMB1_B1PCIV4=y +CONFIG_ISDN_DRV_AVMB1_T1ISA=m +CONFIG_ISDN_DRV_AVMB1_B1PCMCIA=m +CONFIG_ISDN_DRV_AVMB1_AVM_CS=m +CONFIG_ISDN_DRV_AVMB1_T1PCI=m +CONFIG_ISDN_DRV_AVMB1_C4=m + +# +# Active Eicon DIVA Server cards +# +CONFIG_CAPI_EICON=y +CONFIG_ISDN_DIVAS=m +CONFIG_ISDN_DIVAS_BRIPCI=y +CONFIG_ISDN_DIVAS_PRIPCI=y +CONFIG_ISDN_DIVAS_DIVACAPI=m +CONFIG_ISDN_DIVAS_USERIDI=m +CONFIG_ISDN_DIVAS_MAINT=m + +# +# Telephony Support +# +CONFIG_PHONE=m +CONFIG_PHONE_IXJ=m +CONFIG_PHONE_IXJ_PCMCIA=m + +# +# Input device support +# +CONFIG_INPUT=y +CONFIG_INPUT_FF_MEMLESS=y + +# +# Userland interfaces +# +CONFIG_INPUT_MOUSEDEV=y +CONFIG_INPUT_MOUSEDEV_PSAUX=y +CONFIG_INPUT_MOUSEDEV_SCREEN_X=1024 +CONFIG_INPUT_MOUSEDEV_SCREEN_Y=768 +CONFIG_INPUT_JOYDEV=m +CONFIG_INPUT_TSDEV=m +CONFIG_INPUT_TSDEV_SCREEN_X=240 +CONFIG_INPUT_TSDEV_SCREEN_Y=320 +CONFIG_INPUT_EVDEV=m +# CONFIG_INPUT_EVBUG is not set + +# +# Input Device Drivers +# +CONFIG_INPUT_KEYBOARD=y +CONFIG_KEYBOARD_ATKBD=y +# CONFIG_KEYBOARD_SUNKBD is not set +# CONFIG_KEYBOARD_LKKBD is not set +# CONFIG_KEYBOARD_XTKBD is not set +# CONFIG_KEYBOARD_NEWTON is not set +# CONFIG_KEYBOARD_STOWAWAY is not set +CONFIG_INPUT_MOUSE=y +CONFIG_MOUSE_PS2=y +CONFIG_MOUSE_SERIAL=m +CONFIG_MOUSE_INPORT=m +CONFIG_MOUSE_ATIXL=y +CONFIG_MOUSE_LOGIBM=m +CONFIG_MOUSE_PC110PAD=m +CONFIG_MOUSE_VSXXXAA=m +CONFIG_INPUT_JOYSTICK=y +CONFIG_JOYSTICK_ANALOG=m +CONFIG_JOYSTICK_A3D=m +CONFIG_JOYSTICK_ADI=m +CONFIG_JOYSTICK_COBRA=m +CONFIG_JOYSTICK_GF2K=m +CONFIG_JOYSTICK_GRIP=m +CONFIG_JOYSTICK_GRIP_MP=m +CONFIG_JOYSTICK_GUILLEMOT=m +CONFIG_JOYSTICK_INTERACT=m +CONFIG_JOYSTICK_SIDEWINDER=m +CONFIG_JOYSTICK_TMDC=m +CONFIG_JOYSTICK_IFORCE=m +CONFIG_JOYSTICK_IFORCE_USB=y +CONFIG_JOYSTICK_IFORCE_232=y +CONFIG_JOYSTICK_WARRIOR=m +CONFIG_JOYSTICK_MAGELLAN=m +CONFIG_JOYSTICK_SPACEORB=m +CONFIG_JOYSTICK_SPACEBALL=m +CONFIG_JOYSTICK_STINGER=m +CONFIG_JOYSTICK_TWIDJOY=m +CONFIG_JOYSTICK_DB9=m +CONFIG_JOYSTICK_GAMECON=m +CONFIG_JOYSTICK_TURBOGRAFX=m +# CONFIG_JOYSTICK_JOYDUMP is not set +CONFIG_INPUT_TOUCHSCREEN=y +# CONFIG_TOUCHSCREEN_ADS7846 is not set +CONFIG_TOUCHSCREEN_GUNZE=m +CONFIG_TOUCHSCREEN_ELO=m +CONFIG_TOUCHSCREEN_MTOUCH=m +CONFIG_TOUCHSCREEN_MK712=m +# CONFIG_TOUCHSCREEN_PENMOUNT is not set +# CONFIG_TOUCHSCREEN_TOUCHRIGHT is not set +# CONFIG_TOUCHSCREEN_TOUCHWIN is not set +CONFIG_INPUT_MISC=y +CONFIG_INPUT_PCSPKR=m +# CONFIG_INPUT_WISTRON_BTNS is not set +CONFIG_INPUT_UINPUT=m + +# +# Hardware I/O ports +# +CONFIG_SERIO=y +CONFIG_SERIO_I8042=y +CONFIG_SERIO_SERPORT=m +CONFIG_SERIO_CT82C710=m +CONFIG_SERIO_PARKBD=m +CONFIG_SERIO_PCIPS2=m +CONFIG_SERIO_LIBPS2=y +# CONFIG_SERIO_RAW is not set +CONFIG_GAMEPORT=m +CONFIG_GAMEPORT_NS558=m +CONFIG_GAMEPORT_L4=m +CONFIG_GAMEPORT_EMU10K1=m +CONFIG_GAMEPORT_FM801=m + +# +# Character devices +# +CONFIG_VT=y +CONFIG_VT_CONSOLE=y +CONFIG_HW_CONSOLE=y +# CONFIG_VT_HW_CONSOLE_BINDING is not set +CONFIG_SERIAL_NONSTANDARD=y +CONFIG_COMPUTONE=m +CONFIG_ROCKETPORT=m +CONFIG_CYCLADES=m +# CONFIG_CYZ_INTR is not set +CONFIG_DIGIEPCA=m +CONFIG_ESPSERIAL=m +CONFIG_MOXA_INTELLIO=m +CONFIG_MOXA_SMARTIO=m +# CONFIG_ISI is not set +CONFIG_SYNCLINK=m +CONFIG_SYNCLINKMP=m +CONFIG_SYNCLINK_GT=m +CONFIG_N_HDLC=m +CONFIG_SPECIALIX=m +CONFIG_SPECIALIX_RTSCTS=y +CONFIG_SX=m +CONFIG_RIO=m +# CONFIG_RIO_OLDPCI is not set +CONFIG_STALDRV=y + +# +# Serial drivers +# +CONFIG_SERIAL_8250=y +CONFIG_SERIAL_8250_CONSOLE=y +CONFIG_SERIAL_8250_PCI=y +CONFIG_SERIAL_8250_PNP=y +CONFIG_SERIAL_8250_CS=m +CONFIG_SERIAL_8250_NR_UARTS=4 +CONFIG_SERIAL_8250_RUNTIME_UARTS=4 +CONFIG_SERIAL_8250_EXTENDED=y +CONFIG_SERIAL_8250_MANY_PORTS=y +CONFIG_SERIAL_8250_SHARE_IRQ=y +CONFIG_SERIAL_8250_DETECT_IRQ=y +CONFIG_SERIAL_8250_RSA=y +CONFIG_SERIAL_8250_FOURPORT=m +CONFIG_SERIAL_8250_ACCENT=m +CONFIG_SERIAL_8250_BOCA=m +CONFIG_SERIAL_8250_HUB6=m +CONFIG_SERIAL_8250_MCA=m + +# +# Non-8250 serial port support +# +CONFIG_SERIAL_CORE=y +CONFIG_SERIAL_CORE_CONSOLE=y +CONFIG_SERIAL_JSM=m +CONFIG_UNIX98_PTYS=y +CONFIG_LEGACY_PTYS=y +CONFIG_LEGACY_PTY_COUNT=256 +CONFIG_PRINTER=m +CONFIG_LP_CONSOLE=y +CONFIG_PPDEV=m +CONFIG_TIPAR=m + +# +# IPMI +# +CONFIG_IPMI_HANDLER=m +# CONFIG_IPMI_PANIC_EVENT is not set +CONFIG_IPMI_DEVICE_INTERFACE=m +CONFIG_IPMI_SI=m +CONFIG_IPMI_WATCHDOG=m +CONFIG_IPMI_POWEROFF=m + +# +# Watchdog Cards +# +CONFIG_WATCHDOG=y +# CONFIG_WATCHDOG_NOWAYOUT is not set + +# +# Watchdog Device Drivers +# +CONFIG_SOFT_WATCHDOG=m +CONFIG_ACQUIRE_WDT=m +CONFIG_ADVANTECH_WDT=m +CONFIG_ALIM1535_WDT=m +CONFIG_ALIM7101_WDT=m +CONFIG_SC520_WDT=m +CONFIG_EUROTECH_WDT=m +CONFIG_IB700_WDT=m +CONFIG_IBMASR=m +CONFIG_WAFER_WDT=m +CONFIG_I6300ESB_WDT=m +CONFIG_I8XX_TCO=m +CONFIG_ITCO_WDT=m +CONFIG_SC1200_WDT=m +CONFIG_SCx200_WDT=m +CONFIG_60XX_WDT=m +CONFIG_SBC8360_WDT=m +CONFIG_CPU5_WDT=m +CONFIG_SMSC37B787_WDT=m +CONFIG_W83627HF_WDT=m +CONFIG_W83697HF_WDT=m +CONFIG_W83877F_WDT=m +CONFIG_W83977F_WDT=m +CONFIG_MACHZ_WDT=m +CONFIG_SBC_EPX_C3_WATCHDOG=m + +# +# ISA-based Watchdog Cards +# +CONFIG_PCWATCHDOG=m +CONFIG_MIXCOMWD=m +CONFIG_WDT=m +CONFIG_WDT_501=y + +# +# PCI-based Watchdog Cards +# +CONFIG_PCIPCWATCHDOG=m +CONFIG_WDTPCI=m +CONFIG_WDT_501_PCI=y + +# +# USB-based Watchdog Cards +# +CONFIG_USBPCWATCHDOG=m +CONFIG_HW_RANDOM=y +CONFIG_HW_RANDOM_INTEL=y +CONFIG_HW_RANDOM_AMD=y +CONFIG_HW_RANDOM_GEODE=y +CONFIG_HW_RANDOM_VIA=y +CONFIG_NVRAM=m +CONFIG_RTC=y +CONFIG_DTLK=m +CONFIG_R3964=m +CONFIG_APPLICOM=m +CONFIG_SONYPI=m + +# +# Ftape, the floppy tape device driver +# +CONFIG_AGP=m +CONFIG_AGP_ALI=m +CONFIG_AGP_ATI=m +CONFIG_AGP_AMD=m +CONFIG_AGP_AMD64=m +CONFIG_AGP_INTEL=m +CONFIG_AGP_NVIDIA=m +CONFIG_AGP_SIS=m +CONFIG_AGP_SWORKS=m +CONFIG_AGP_VIA=m +CONFIG_AGP_EFFICEON=m +CONFIG_DRM=m +CONFIG_DRM_TDFX=m +CONFIG_DRM_R128=m +CONFIG_DRM_RADEON=m +CONFIG_DRM_I810=m +CONFIG_DRM_I830=m +CONFIG_DRM_I915=m +CONFIG_DRM_MGA=m +CONFIG_DRM_SIS=m +CONFIG_DRM_VIA=m +CONFIG_DRM_SAVAGE=m + +# +# PCMCIA character devices +# +CONFIG_SYNCLINK_CS=m +CONFIG_CARDMAN_4000=m +CONFIG_CARDMAN_4040=m +CONFIG_MWAVE=m +CONFIG_SCx200_GPIO=m +CONFIG_PC8736x_GPIO=m +CONFIG_NSC_GPIO=m +CONFIG_CS5535_GPIO=m +# CONFIG_RAW_DRIVER is not set +CONFIG_HPET=y +# CONFIG_HPET_RTC_IRQ is not set +CONFIG_HPET_MMAP=y +CONFIG_HANGCHECK_TIMER=m + +# +# TPM devices +# +CONFIG_TCG_TPM=m +CONFIG_TCG_TIS=m +CONFIG_TCG_NSC=m +CONFIG_TCG_ATMEL=m +CONFIG_TCG_INFINEON=m +CONFIG_TELCLOCK=m + +# +# I2C support +# +CONFIG_I2C=m +CONFIG_I2C_CHARDEV=m + +# +# I2C Algorithms +# +CONFIG_I2C_ALGOBIT=m +CONFIG_I2C_ALGOPCF=m +CONFIG_I2C_ALGOPCA=m + +# +# I2C Hardware Bus support +# +CONFIG_I2C_ALI1535=m +CONFIG_I2C_ALI1563=m +CONFIG_I2C_ALI15X3=m +CONFIG_I2C_AMD756=m +CONFIG_I2C_AMD756_S4882=m +CONFIG_I2C_AMD8111=m +CONFIG_I2C_I801=m +CONFIG_I2C_I810=m +CONFIG_I2C_PIIX4=m +CONFIG_I2C_ISA=m +CONFIG_I2C_NFORCE2=m +CONFIG_I2C_OCORES=m +CONFIG_I2C_PARPORT=m +CONFIG_I2C_PARPORT_LIGHT=m +CONFIG_I2C_PROSAVAGE=m +CONFIG_I2C_SAVAGE4=m +CONFIG_SCx200_I2C=m +CONFIG_SCx200_I2C_SCL=12 +CONFIG_SCx200_I2C_SDA=13 +CONFIG_SCx200_ACB=m +CONFIG_I2C_SIS5595=m +CONFIG_I2C_SIS630=m +CONFIG_I2C_SIS96X=m +# CONFIG_I2C_STUB is not set +CONFIG_I2C_VIA=m +CONFIG_I2C_VIAPRO=m +CONFIG_I2C_VOODOO3=m +CONFIG_I2C_PCA_ISA=m + +# +# Miscellaneous I2C Chip support +# +CONFIG_SENSORS_DS1337=m +CONFIG_SENSORS_DS1374=m +CONFIG_SENSORS_EEPROM=m +CONFIG_SENSORS_PCF8574=m +CONFIG_SENSORS_PCA9539=m +CONFIG_SENSORS_PCF8591=m +CONFIG_SENSORS_MAX6875=m +# CONFIG_I2C_DEBUG_CORE is not set +# CONFIG_I2C_DEBUG_ALGO is not set +# CONFIG_I2C_DEBUG_BUS is not set +# CONFIG_I2C_DEBUG_CHIP is not set + +# +# SPI support +# +CONFIG_SPI=y +CONFIG_SPI_MASTER=y + +# +# SPI Master Controller Drivers +# +CONFIG_SPI_BITBANG=m +# CONFIG_SPI_BUTTERFLY is not set + +# +# SPI Protocol Masters +# + +# +# Dallas's 1-wire bus +# +CONFIG_W1=m +CONFIG_W1_CON=y + +# +# 1-wire Bus Masters +# +CONFIG_W1_MASTER_MATROX=m +CONFIG_W1_MASTER_DS2490=m +CONFIG_W1_MASTER_DS2482=m + +# +# 1-wire Slaves +# +CONFIG_W1_SLAVE_THERM=m +CONFIG_W1_SLAVE_SMEM=m +CONFIG_W1_SLAVE_DS2433=m +# CONFIG_W1_SLAVE_DS2433_CRC is not set + +# +# Hardware Monitoring support +# +CONFIG_HWMON=y +CONFIG_HWMON_VID=m +# CONFIG_SENSORS_ABITUGURU is not set +CONFIG_SENSORS_ADM1021=m +CONFIG_SENSORS_ADM1025=m +CONFIG_SENSORS_ADM1026=m +CONFIG_SENSORS_ADM1031=m +CONFIG_SENSORS_ADM9240=m +CONFIG_SENSORS_K8TEMP=m +CONFIG_SENSORS_ASB100=m +CONFIG_SENSORS_ATXP1=m +CONFIG_SENSORS_DS1621=m +CONFIG_SENSORS_F71805F=m +CONFIG_SENSORS_FSCHER=m +CONFIG_SENSORS_FSCPOS=m +CONFIG_SENSORS_GL518SM=m +CONFIG_SENSORS_GL520SM=m +CONFIG_SENSORS_IT87=m +CONFIG_SENSORS_LM63=m +CONFIG_SENSORS_LM70=m +CONFIG_SENSORS_LM75=m +CONFIG_SENSORS_LM77=m +CONFIG_SENSORS_LM78=m +CONFIG_SENSORS_LM80=m +CONFIG_SENSORS_LM83=m +CONFIG_SENSORS_LM85=m +CONFIG_SENSORS_LM87=m +CONFIG_SENSORS_LM90=m +CONFIG_SENSORS_LM92=m +CONFIG_SENSORS_MAX1619=m +CONFIG_SENSORS_PC87360=m +CONFIG_SENSORS_SIS5595=m +CONFIG_SENSORS_SMSC47M1=m +CONFIG_SENSORS_SMSC47M192=m +CONFIG_SENSORS_SMSC47B397=m +CONFIG_SENSORS_VIA686A=m +CONFIG_SENSORS_VT1211=m +CONFIG_SENSORS_VT8231=m +CONFIG_SENSORS_W83781D=m +CONFIG_SENSORS_W83791D=m +CONFIG_SENSORS_W83792D=m +CONFIG_SENSORS_W83L785TS=m +CONFIG_SENSORS_W83627HF=m +CONFIG_SENSORS_W83627EHF=m +CONFIG_SENSORS_HDAPS=m +# CONFIG_HWMON_DEBUG_CHIP is not set + +# +# Multimedia devices +# +CONFIG_VIDEO_DEV=m +CONFIG_VIDEO_V4L1=y +CONFIG_VIDEO_V4L1_COMPAT=y +CONFIG_VIDEO_V4L2=y + +# +# Video Capture Adapters +# + +# +# Video Capture Adapters +# +# CONFIG_VIDEO_ADV_DEBUG is not set +CONFIG_VIDEO_HELPER_CHIPS_AUTO=y +CONFIG_VIDEO_TVAUDIO=m +CONFIG_VIDEO_TDA7432=m +CONFIG_VIDEO_TDA9840=m +CONFIG_VIDEO_TDA9875=m +CONFIG_VIDEO_TEA6415C=m +CONFIG_VIDEO_TEA6420=m +CONFIG_VIDEO_MSP3400=m +CONFIG_VIDEO_BT819=m +CONFIG_VIDEO_BT856=m +CONFIG_VIDEO_KS0127=m +CONFIG_VIDEO_SAA7110=m +CONFIG_VIDEO_SAA7111=m +CONFIG_VIDEO_SAA7114=m +CONFIG_VIDEO_SAA711X=m +CONFIG_VIDEO_TVP5150=m +CONFIG_VIDEO_VPX3220=m +CONFIG_VIDEO_CX2341X=m +CONFIG_VIDEO_SAA7185=m +CONFIG_VIDEO_ADV7170=m +CONFIG_VIDEO_ADV7175=m +CONFIG_VIDEO_VIVI=m +CONFIG_VIDEO_BT848=m +CONFIG_VIDEO_BT848_DVB=y +CONFIG_VIDEO_SAA6588=m +CONFIG_VIDEO_PMS=m +CONFIG_VIDEO_BWQCAM=m +CONFIG_VIDEO_CQCAM=m +CONFIG_VIDEO_W9966=m +CONFIG_VIDEO_CPIA=m +CONFIG_VIDEO_CPIA_PP=m +CONFIG_VIDEO_CPIA_USB=m +CONFIG_VIDEO_CPIA2=m +CONFIG_VIDEO_SAA5246A=m +CONFIG_VIDEO_SAA5249=m +CONFIG_TUNER_3036=m +CONFIG_VIDEO_STRADIS=m +CONFIG_VIDEO_ZORAN_ZR36060=m +CONFIG_VIDEO_ZORAN=m +CONFIG_VIDEO_ZORAN_BUZ=m +CONFIG_VIDEO_ZORAN_DC10=m +CONFIG_VIDEO_ZORAN_DC30=m +CONFIG_VIDEO_ZORAN_LML33=m +CONFIG_VIDEO_ZORAN_LML33R10=m +CONFIG_VIDEO_ZORAN_AVS6EYES=m +CONFIG_VIDEO_MEYE=m +CONFIG_VIDEO_SAA7134=m +CONFIG_VIDEO_SAA7134_ALSA=m +CONFIG_VIDEO_SAA7134_DVB=m +CONFIG_VIDEO_MXB=m +CONFIG_VIDEO_DPC=m +CONFIG_VIDEO_HEXIUM_ORION=m +CONFIG_VIDEO_HEXIUM_GEMINI=m +CONFIG_VIDEO_CX88=m +CONFIG_VIDEO_CX88_ALSA=m +CONFIG_VIDEO_CX88_BLACKBIRD=m +CONFIG_VIDEO_CX88_DVB=m +CONFIG_VIDEO_CX88_VP3054=m + +# +# V4L USB devices +# +CONFIG_VIDEO_PVRUSB2=m +# CONFIG_VIDEO_PVRUSB2_29XXX is not set +# CONFIG_VIDEO_PVRUSB2_24XXX is not set +# CONFIG_VIDEO_PVRUSB2_SYSFS is not set +CONFIG_VIDEO_EM28XX=m +CONFIG_VIDEO_USBVIDEO=m +CONFIG_USB_VICAM=m +CONFIG_USB_IBMCAM=m +CONFIG_USB_KONICAWC=m +CONFIG_USB_QUICKCAM_MESSENGER=m +CONFIG_USB_ET61X251=m +CONFIG_VIDEO_OVCAMCHIP=m +CONFIG_USB_W9968CF=m +CONFIG_USB_OV511=m +CONFIG_USB_SE401=m +CONFIG_USB_SN9C102=m +CONFIG_USB_STV680=m +CONFIG_USB_ZC0301=m +CONFIG_USB_PWC=m +# CONFIG_USB_PWC_DEBUG is not set + +# +# Radio Adapters +# +CONFIG_RADIO_CADET=m +CONFIG_RADIO_RTRACK=m +CONFIG_RADIO_RTRACK2=m +CONFIG_RADIO_AZTECH=m +CONFIG_RADIO_GEMTEK=m +CONFIG_RADIO_GEMTEK_PCI=m +CONFIG_RADIO_MAXIRADIO=m +CONFIG_RADIO_MAESTRO=m +CONFIG_RADIO_SF16FMI=m +CONFIG_RADIO_SF16FMR2=m +CONFIG_RADIO_TERRATEC=m +CONFIG_RADIO_TRUST=m +CONFIG_RADIO_TYPHOON=m +CONFIG_RADIO_TYPHOON_PROC_FS=y +CONFIG_RADIO_ZOLTRIX=m +CONFIG_USB_DSBR=m + +# +# Digital Video Broadcasting Devices +# +CONFIG_DVB=y +CONFIG_DVB_CORE=m +# CONFIG_DVB_CORE_ATTACH is not set + +# +# Supported SAA7146 based PCI Adapters +# +CONFIG_DVB_AV7110=m +CONFIG_DVB_AV7110_OSD=y +CONFIG_DVB_BUDGET=m +CONFIG_DVB_BUDGET_CI=m +CONFIG_DVB_BUDGET_AV=m +CONFIG_DVB_BUDGET_PATCH=m + +# +# Supported USB Adapters +# +CONFIG_DVB_USB=m +# CONFIG_DVB_USB_DEBUG is not set +CONFIG_DVB_USB_A800=m +CONFIG_DVB_USB_DIBUSB_MB=m +# CONFIG_DVB_USB_DIBUSB_MB_FAULTY is not set +CONFIG_DVB_USB_DIBUSB_MC=m +# CONFIG_DVB_USB_DIB0700 is not set +CONFIG_DVB_USB_UMT_010=m +CONFIG_DVB_USB_CXUSB=m +CONFIG_DVB_USB_DIGITV=m +CONFIG_DVB_USB_VP7045=m +CONFIG_DVB_USB_VP702X=m +CONFIG_DVB_USB_GP8PSK=m +CONFIG_DVB_USB_NOVA_T_USB2=m +CONFIG_DVB_USB_DTT200U=m +CONFIG_DVB_TTUSB_BUDGET=m +CONFIG_DVB_TTUSB_DEC=m +CONFIG_DVB_CINERGYT2=m +# CONFIG_DVB_CINERGYT2_TUNING is not set + +# +# Supported FlexCopII (B2C2) Adapters +# +CONFIG_DVB_B2C2_FLEXCOP=m +CONFIG_DVB_B2C2_FLEXCOP_PCI=m +CONFIG_DVB_B2C2_FLEXCOP_USB=m +# CONFIG_DVB_B2C2_FLEXCOP_DEBUG is not set + +# +# Supported BT878 Adapters +# +CONFIG_DVB_BT8XX=m + +# +# Supported Pluto2 Adapters +# +CONFIG_DVB_PLUTO2=m + +# +# Supported DVB Frontends +# + +# +# Customise DVB Frontends +# +# CONFIG_DVB_FE_CUSTOMISE is not set + +# +# DVB-S (satellite) frontends +# +CONFIG_DVB_STV0299=m +CONFIG_DVB_CX24110=m +CONFIG_DVB_CX24123=m +CONFIG_DVB_TDA8083=m +CONFIG_DVB_MT312=m +CONFIG_DVB_VES1X93=m +CONFIG_DVB_S5H1420=m +CONFIG_DVB_TDA10086=m + +# +# DVB-T (terrestrial) frontends +# +CONFIG_DVB_SP8870=m +CONFIG_DVB_SP887X=m +CONFIG_DVB_CX22700=m +CONFIG_DVB_CX22702=m +CONFIG_DVB_L64781=m +CONFIG_DVB_TDA1004X=m +CONFIG_DVB_NXT6000=m +CONFIG_DVB_MT352=m +CONFIG_DVB_ZL10353=m +CONFIG_DVB_DIB3000MB=m +CONFIG_DVB_DIB3000MC=m + +# +# DVB-C (cable) frontends +# +CONFIG_DVB_VES1820=m +CONFIG_DVB_TDA10021=m +CONFIG_DVB_STV0297=m + +# +# ATSC (North American/Korean Terrestrial/Cable DTV) frontends +# +CONFIG_DVB_NXT200X=m +CONFIG_DVB_OR51211=m +CONFIG_DVB_OR51132=m +CONFIG_DVB_BCM3510=m +CONFIG_DVB_LGDT330X=m + +# +# Tuners/PLL support +# +CONFIG_DVB_PLL=m +CONFIG_DVB_TDA826X=m +CONFIG_DVB_TUNER_MT2060=m + +# +# Miscellaneous devices +# +CONFIG_DVB_LNBP21=m +CONFIG_DVB_ISL6421=m +CONFIG_DVB_TUA6100=m +CONFIG_VIDEO_SAA7146=m +CONFIG_VIDEO_SAA7146_VV=m +CONFIG_VIDEO_VIDEOBUF=m +CONFIG_VIDEO_TUNER=m +CONFIG_VIDEO_BUF=m +CONFIG_VIDEO_BUF_DVB=m +CONFIG_VIDEO_BTCX=m +CONFIG_VIDEO_IR=m +CONFIG_VIDEO_TVEEPROM=m +CONFIG_USB_DABUSB=m + +# +# Graphics support +# +# CONFIG_FIRMWARE_EDID is not set +CONFIG_FB=y +CONFIG_FB_DDC=m +CONFIG_FB_CFB_FILLRECT=y +CONFIG_FB_CFB_COPYAREA=y +CONFIG_FB_CFB_IMAGEBLIT=y +# CONFIG_FB_MACMODES is not set +# CONFIG_FB_BACKLIGHT is not set +CONFIG_FB_MODE_HELPERS=y +CONFIG_FB_TILEBLITTING=y +# CONFIG_FB_CIRRUS is not set +# CONFIG_FB_PM2 is not set +# CONFIG_FB_CYBER2000 is not set +# CONFIG_FB_ARC is not set +# CONFIG_FB_ASILIANT is not set +# CONFIG_FB_IMSTT is not set +CONFIG_FB_VGA16=m +CONFIG_FB_VESA=y +# CONFIG_FB_HGA is not set +# CONFIG_FB_S1D13XXX is not set +# CONFIG_FB_NVIDIA is not set +# CONFIG_FB_RIVA is not set +CONFIG_FB_I810=m +CONFIG_FB_I810_GTF=y +# CONFIG_FB_I810_I2C is not set +CONFIG_FB_INTEL=m +# CONFIG_FB_INTEL_DEBUG is not set +CONFIG_FB_INTEL_I2C=y +CONFIG_FB_MATROX=m +# CONFIG_FB_MATROX_MILLENIUM is not set +# CONFIG_FB_MATROX_MYSTIQUE is not set +CONFIG_FB_MATROX_G=y +CONFIG_FB_MATROX_I2C=m +CONFIG_FB_MATROX_MAVEN=m +CONFIG_FB_MATROX_MULTIHEAD=y +CONFIG_FB_RADEON=m +CONFIG_FB_RADEON_I2C=y +# CONFIG_FB_RADEON_DEBUG is not set +CONFIG_FB_ATY128=m +CONFIG_FB_ATY=m +# CONFIG_FB_ATY_CT is not set +# CONFIG_FB_ATY_GX is not set +# CONFIG_FB_SAVAGE is not set +CONFIG_FB_SIS=m +CONFIG_FB_SIS_300=y +CONFIG_FB_SIS_315=y +# CONFIG_FB_NEOMAGIC is not set +# CONFIG_FB_KYRO is not set +# CONFIG_FB_3DFX is not set +# CONFIG_FB_VOODOO1 is not set +# CONFIG_FB_CYBLA is not set +# CONFIG_FB_TRIDENT is not set +# CONFIG_FB_GEODE is not set +# CONFIG_FB_VIRTUAL is not set + +# +# Console display driver support +# +CONFIG_VGA_CONSOLE=y +# CONFIG_VGACON_SOFT_SCROLLBACK is not set +CONFIG_VIDEO_SELECT=y +CONFIG_MDA_CONSOLE=m +CONFIG_DUMMY_CONSOLE=y +CONFIG_FRAMEBUFFER_CONSOLE=y +# CONFIG_FRAMEBUFFER_CONSOLE_ROTATION is not set +CONFIG_FONTS=y +CONFIG_FONT_8x8=y +CONFIG_FONT_8x16=y +# CONFIG_FONT_6x11 is not set +# CONFIG_FONT_7x14 is not set +# CONFIG_FONT_PEARL_8x8 is not set +# CONFIG_FONT_ACORN_8x8 is not set +# CONFIG_FONT_MINI_4x6 is not set +# CONFIG_FONT_SUN8x16 is not set +# CONFIG_FONT_SUN12x22 is not set +# CONFIG_FONT_10x18 is not set + +# +# Logo configuration +# +# CONFIG_LOGO is not set +CONFIG_BACKLIGHT_LCD_SUPPORT=y +CONFIG_BACKLIGHT_CLASS_DEVICE=m +CONFIG_BACKLIGHT_DEVICE=y +CONFIG_LCD_CLASS_DEVICE=m +CONFIG_LCD_DEVICE=y + +# +# Sound +# +CONFIG_SOUND=y + +# +# Advanced Linux Sound Architecture +# +CONFIG_SND=y +CONFIG_SND_TIMER=y +CONFIG_SND_PCM=y +CONFIG_SND_HWDEP=m +CONFIG_SND_RAWMIDI=m +CONFIG_SND_SEQUENCER=m +CONFIG_SND_SEQ_DUMMY=m +CONFIG_SND_OSSEMUL=y +CONFIG_SND_MIXER_OSS=y +CONFIG_SND_PCM_OSS=y +CONFIG_SND_PCM_OSS_PLUGINS=y +CONFIG_SND_SEQUENCER_OSS=y +CONFIG_SND_RTCTIMER=m +CONFIG_SND_SEQ_RTCTIMER_DEFAULT=y +# CONFIG_SND_DYNAMIC_MINORS is not set +CONFIG_SND_SUPPORT_OLD_API=y +CONFIG_SND_VERBOSE_PROCFS=y +# CONFIG_SND_VERBOSE_PRINTK is not set +# CONFIG_SND_DEBUG is not set + +# +# Generic devices +# +CONFIG_SND_MPU401_UART=m +CONFIG_SND_OPL3_LIB=m +CONFIG_SND_OPL4_LIB=m +CONFIG_SND_VX_LIB=m +CONFIG_SND_AC97_CODEC=m +CONFIG_SND_AC97_BUS=m +CONFIG_SND_DUMMY=m +CONFIG_SND_VIRMIDI=m +CONFIG_SND_MTPAV=m +CONFIG_SND_MTS64=m +CONFIG_SND_SERIAL_U16550=m +CONFIG_SND_MPU401=m + +# +# ISA devices +# +CONFIG_SND_AD1848_LIB=m +CONFIG_SND_CS4231_LIB=m +CONFIG_SND_ADLIB=m +CONFIG_SND_AD1816A=m +CONFIG_SND_AD1848=m +CONFIG_SND_ALS100=m +CONFIG_SND_AZT2320=m +CONFIG_SND_CMI8330=m +CONFIG_SND_CS4231=m +CONFIG_SND_CS4232=m +CONFIG_SND_CS4236=m +CONFIG_SND_DT019X=m +CONFIG_SND_ES968=m +CONFIG_SND_ES1688=m +CONFIG_SND_ES18XX=m +CONFIG_SND_GUS_SYNTH=m +CONFIG_SND_GUSCLASSIC=m +CONFIG_SND_GUSEXTREME=m +CONFIG_SND_GUSMAX=m +CONFIG_SND_INTERWAVE=m +CONFIG_SND_INTERWAVE_STB=m +CONFIG_SND_OPL3SA2=m +CONFIG_SND_OPTI92X_AD1848=m +CONFIG_SND_OPTI92X_CS4231=m +CONFIG_SND_OPTI93X=m +CONFIG_SND_MIRO=m +CONFIG_SND_SB8=m +CONFIG_SND_SB16=m +CONFIG_SND_SBAWE=m +CONFIG_SND_SB16_CSP=y +CONFIG_SND_SGALAXY=m +CONFIG_SND_SSCAPE=m +CONFIG_SND_WAVEFRONT=m + +# +# PCI devices +# +CONFIG_SND_AD1889=m +CONFIG_SND_ALS300=m +CONFIG_SND_ALS4000=m +CONFIG_SND_ALI5451=m +CONFIG_SND_ATIIXP=m +CONFIG_SND_ATIIXP_MODEM=m +CONFIG_SND_AU8810=m +CONFIG_SND_AU8820=m +CONFIG_SND_AU8830=m +CONFIG_SND_AZT3328=m +CONFIG_SND_BT87X=m +# CONFIG_SND_BT87X_OVERCLOCK is not set +CONFIG_SND_CA0106=m +CONFIG_SND_CMIPCI=m +CONFIG_SND_CS4281=m +CONFIG_SND_CS46XX=m +CONFIG_SND_CS46XX_NEW_DSP=y +CONFIG_SND_CS5535AUDIO=m +CONFIG_SND_DARLA20=m +CONFIG_SND_GINA20=m +CONFIG_SND_LAYLA20=m +CONFIG_SND_DARLA24=m +CONFIG_SND_GINA24=m +CONFIG_SND_LAYLA24=m +CONFIG_SND_MONA=m +CONFIG_SND_MIA=m +CONFIG_SND_ECHO3G=m +CONFIG_SND_INDIGO=m +CONFIG_SND_INDIGOIO=m +CONFIG_SND_INDIGODJ=m +CONFIG_SND_EMU10K1=m +CONFIG_SND_EMU10K1X=m +CONFIG_SND_ENS1370=m +CONFIG_SND_ENS1371=m +CONFIG_SND_ES1938=m +CONFIG_SND_ES1968=m +CONFIG_SND_FM801=m +CONFIG_SND_FM801_TEA575X_BOOL=y +CONFIG_SND_FM801_TEA575X=m +CONFIG_SND_HDA_INTEL=m +CONFIG_SND_HDSP=m +CONFIG_SND_HDSPM=m +CONFIG_SND_ICE1712=m +CONFIG_SND_ICE1724=m +CONFIG_SND_INTEL8X0=m +CONFIG_SND_INTEL8X0M=m +CONFIG_SND_KORG1212=m +CONFIG_SND_MAESTRO3=m +CONFIG_SND_MIXART=m +CONFIG_SND_NM256=m +CONFIG_SND_PCXHR=m +CONFIG_SND_RIPTIDE=m +CONFIG_SND_RME32=m +CONFIG_SND_RME96=m +CONFIG_SND_RME9652=m +CONFIG_SND_SONICVIBES=m +CONFIG_SND_TRIDENT=m +CONFIG_SND_VIA82XX=m +CONFIG_SND_VIA82XX_MODEM=m +CONFIG_SND_VX222=m +CONFIG_SND_YMFPCI=m +# CONFIG_SND_AC97_POWER_SAVE is not set + +# +# USB devices +# +CONFIG_SND_USB_AUDIO=m +CONFIG_SND_USB_USX2Y=m + +# +# PCMCIA devices +# +CONFIG_SND_VXPOCKET=m +CONFIG_SND_PDAUDIOCF=m + +# +# Open Sound System +# +# CONFIG_SOUND_PRIME is not set + +# +# USB support +# +CONFIG_USB_ARCH_HAS_HCD=y +CONFIG_USB_ARCH_HAS_OHCI=y +CONFIG_USB_ARCH_HAS_EHCI=y +CONFIG_USB=y +# CONFIG_USB_DEBUG is not set + +# +# Miscellaneous USB options +# +CONFIG_USB_DEVICEFS=y +# CONFIG_USB_BANDWIDTH is not set +# CONFIG_USB_DYNAMIC_MINORS is not set +# CONFIG_USB_SUSPEND is not set +# CONFIG_USB_OTG is not set + +# +# USB Host Controller Drivers +# +CONFIG_USB_EHCI_HCD=m +CONFIG_USB_EHCI_SPLIT_ISO=y +CONFIG_USB_EHCI_ROOT_HUB_TT=y +# CONFIG_USB_EHCI_TT_NEWSCHED is not set +CONFIG_USB_ISP116X_HCD=m +CONFIG_USB_OHCI_HCD=m +# CONFIG_USB_OHCI_BIG_ENDIAN is not set +CONFIG_USB_OHCI_LITTLE_ENDIAN=y +CONFIG_USB_UHCI_HCD=m +CONFIG_USB_SL811_HCD=m +CONFIG_USB_SL811_CS=m + +# +# USB Device Class drivers +# +CONFIG_USB_ACM=m +CONFIG_USB_PRINTER=m + +# +# NOTE: USB_STORAGE enables SCSI, and 'SCSI disk support' +# + +# +# may also be needed; see USB_STORAGE Help for more information +# +CONFIG_USB_STORAGE=m +# CONFIG_USB_STORAGE_DEBUG is not set +CONFIG_USB_STORAGE_DATAFAB=y +CONFIG_USB_STORAGE_FREECOM=y +CONFIG_USB_STORAGE_ISD200=y +CONFIG_USB_STORAGE_DPCM=y +CONFIG_USB_STORAGE_USBAT=y +CONFIG_USB_STORAGE_SDDR09=y +CONFIG_USB_STORAGE_SDDR55=y +CONFIG_USB_STORAGE_JUMPSHOT=y +CONFIG_USB_STORAGE_ALAUDA=y +# CONFIG_USB_STORAGE_KARMA is not set +# CONFIG_USB_LIBUSUAL is not set + +# +# USB Input Devices +# +CONFIG_USB_HID=y +CONFIG_USB_HIDINPUT=y +# CONFIG_USB_HIDINPUT_POWERBOOK is not set +CONFIG_HID_FF=y +CONFIG_HID_PID=y +CONFIG_LOGITECH_FF=y +CONFIG_THRUSTMASTER_FF=y +# CONFIG_ZEROPLUS_FF is not set +CONFIG_USB_HIDDEV=y +CONFIG_USB_AIPTEK=m +CONFIG_USB_WACOM=m +CONFIG_USB_ACECAD=m +CONFIG_USB_KBTAB=m +CONFIG_USB_POWERMATE=m +CONFIG_USB_TOUCHSCREEN=m +CONFIG_USB_TOUCHSCREEN_EGALAX=y +CONFIG_USB_TOUCHSCREEN_PANJIT=y +CONFIG_USB_TOUCHSCREEN_3M=y +CONFIG_USB_TOUCHSCREEN_ITM=y +CONFIG_USB_TOUCHSCREEN_ETURBO=y +CONFIG_USB_TOUCHSCREEN_GUNZE=y +CONFIG_USB_YEALINK=m +CONFIG_USB_XPAD=m +CONFIG_USB_ATI_REMOTE=m +CONFIG_USB_ATI_REMOTE2=m +# CONFIG_USB_KEYSPAN_REMOTE is not set +CONFIG_USB_APPLETOUCH=m + +# +# USB Imaging devices +# +CONFIG_USB_MDC800=m +CONFIG_USB_MICROTEK=m + +# +# USB Network Adapters +# +CONFIG_USB_CATC=m +CONFIG_USB_KAWETH=m +CONFIG_USB_PEGASUS=m +CONFIG_USB_RTL8150=m +CONFIG_USB_USBNET_MII=m +CONFIG_USB_USBNET=m +CONFIG_USB_NET_AX8817X=m +CONFIG_USB_NET_CDCETHER=m +CONFIG_USB_NET_GL620A=m +CONFIG_USB_NET_NET1080=m +CONFIG_USB_NET_PLUSB=m +CONFIG_USB_NET_MCS7830=m +CONFIG_USB_NET_RNDIS_HOST=m +CONFIG_USB_NET_CDC_SUBSET=m +CONFIG_USB_ALI_M5632=y +CONFIG_USB_AN2720=y +CONFIG_USB_BELKIN=y +CONFIG_USB_ARMLINUX=y +# CONFIG_USB_EPSON2888 is not set +CONFIG_USB_NET_ZAURUS=m +# CONFIG_USB_MON is not set + +# +# USB port drivers +# +CONFIG_USB_USS720=m + +# +# USB Serial Converter support +# +CONFIG_USB_SERIAL=m +CONFIG_USB_SERIAL_GENERIC=y +CONFIG_USB_SERIAL_AIRCABLE=m +CONFIG_USB_SERIAL_AIRPRIME=m +CONFIG_USB_SERIAL_ARK3116=m +CONFIG_USB_SERIAL_BELKIN=m +CONFIG_USB_SERIAL_WHITEHEAT=m +CONFIG_USB_SERIAL_DIGI_ACCELEPORT=m +CONFIG_USB_SERIAL_CP2101=m +CONFIG_USB_SERIAL_CYPRESS_M8=m +CONFIG_USB_SERIAL_EMPEG=m +CONFIG_USB_SERIAL_FTDI_SIO=m +CONFIG_USB_SERIAL_FUNSOFT=m +CONFIG_USB_SERIAL_VISOR=m +CONFIG_USB_SERIAL_IPAQ=m +CONFIG_USB_SERIAL_IR=m +CONFIG_USB_SERIAL_EDGEPORT=m +CONFIG_USB_SERIAL_EDGEPORT_TI=m +CONFIG_USB_SERIAL_GARMIN=m +CONFIG_USB_SERIAL_IPW=m +CONFIG_USB_SERIAL_KEYSPAN_PDA=m +CONFIG_USB_SERIAL_KEYSPAN=m +CONFIG_USB_SERIAL_KEYSPAN_MPR=y +CONFIG_USB_SERIAL_KEYSPAN_USA28=y +CONFIG_USB_SERIAL_KEYSPAN_USA28X=y +CONFIG_USB_SERIAL_KEYSPAN_USA28XA=y +CONFIG_USB_SERIAL_KEYSPAN_USA28XB=y +CONFIG_USB_SERIAL_KEYSPAN_USA19=y +CONFIG_USB_SERIAL_KEYSPAN_USA18X=y +CONFIG_USB_SERIAL_KEYSPAN_USA19W=y +CONFIG_USB_SERIAL_KEYSPAN_USA19QW=y +CONFIG_USB_SERIAL_KEYSPAN_USA19QI=y +CONFIG_USB_SERIAL_KEYSPAN_USA49W=y +CONFIG_USB_SERIAL_KEYSPAN_USA49WLC=y +CONFIG_USB_SERIAL_KLSI=m +CONFIG_USB_SERIAL_KOBIL_SCT=m +CONFIG_USB_SERIAL_MCT_U232=m +CONFIG_USB_SERIAL_MOS7720=m +CONFIG_USB_SERIAL_MOS7840=m +CONFIG_USB_SERIAL_NAVMAN=m +CONFIG_USB_SERIAL_PL2303=m +CONFIG_USB_SERIAL_HP4X=m +CONFIG_USB_SERIAL_SAFE=m +CONFIG_USB_SERIAL_SAFE_PADDED=y +CONFIG_USB_SERIAL_SIERRAWIRELESS=m +CONFIG_USB_SERIAL_TI=m +CONFIG_USB_SERIAL_CYBERJACK=m +CONFIG_USB_SERIAL_XIRCOM=m +CONFIG_USB_SERIAL_OPTION=m +CONFIG_USB_SERIAL_OMNINET=m +CONFIG_USB_EZUSB=y + +# +# USB Miscellaneous drivers +# +CONFIG_USB_EMI62=m +CONFIG_USB_EMI26=m +# CONFIG_USB_ADUTUX is not set +CONFIG_USB_AUERSWALD=m +CONFIG_USB_RIO500=m +CONFIG_USB_LEGOTOWER=m +CONFIG_USB_LCD=m +CONFIG_USB_LED=m +CONFIG_USB_CYPRESS_CY7C63=m +CONFIG_USB_CYTHERM=m +CONFIG_USB_PHIDGET=m +CONFIG_USB_PHIDGETKIT=m +CONFIG_USB_PHIDGETMOTORCONTROL=m +CONFIG_USB_PHIDGETSERVO=m +CONFIG_USB_IDMOUSE=m +# CONFIG_USB_FTDI_ELAN is not set +CONFIG_USB_APPLEDISPLAY=m +CONFIG_USB_SISUSBVGA=m +# CONFIG_USB_SISUSBVGA_CON is not set +CONFIG_USB_LD=m +CONFIG_USB_TRANCEVIBRATOR=m +CONFIG_USB_TEST=m + +# +# USB DSL modem support +# +CONFIG_USB_ATM=m +CONFIG_USB_SPEEDTOUCH=m +CONFIG_USB_CXACRU=m +CONFIG_USB_UEAGLEATM=m +CONFIG_USB_XUSBATM=m + +# +# USB Gadget Support +# +CONFIG_USB_GADGET=m +# CONFIG_USB_GADGET_DEBUG_FILES is not set +CONFIG_USB_GADGET_SELECTED=y +CONFIG_USB_GADGET_NET2280=y +CONFIG_USB_NET2280=m +# CONFIG_USB_GADGET_PXA2XX is not set +# CONFIG_USB_GADGET_GOKU is not set +# CONFIG_USB_GADGET_LH7A40X is not set +# CONFIG_USB_GADGET_OMAP is not set +# CONFIG_USB_GADGET_AT91 is not set +# CONFIG_USB_GADGET_DUMMY_HCD is not set +CONFIG_USB_GADGET_DUALSPEED=y +# CONFIG_USB_ZERO is not set +CONFIG_USB_ETH=m +# CONFIG_USB_ETH_RNDIS is not set +# CONFIG_USB_GADGETFS is not set +CONFIG_USB_FILE_STORAGE=m +# CONFIG_USB_FILE_STORAGE_TEST is not set +CONFIG_USB_G_SERIAL=m +# CONFIG_USB_MIDI_GADGET is not set + +# +# MMC/SD Card support +# +CONFIG_MMC=m +# CONFIG_MMC_DEBUG is not set +CONFIG_MMC_BLOCK=m +CONFIG_MMC_SDHCI=m +CONFIG_MMC_WBSD=m +CONFIG_MMC_TIFM_SD=m + +# +# LED devices +# +CONFIG_NEW_LEDS=y +CONFIG_LEDS_CLASS=m + +# +# LED drivers +# +CONFIG_LEDS_NET48XX=m + +# +# LED Triggers +# +CONFIG_LEDS_TRIGGERS=y +CONFIG_LEDS_TRIGGER_TIMER=m +CONFIG_LEDS_TRIGGER_IDE_DISK=y +CONFIG_LEDS_TRIGGER_HEARTBEAT=m + +# +# InfiniBand support +# +CONFIG_INFINIBAND=m +CONFIG_INFINIBAND_USER_MAD=m +CONFIG_INFINIBAND_USER_ACCESS=m +CONFIG_INFINIBAND_ADDR_TRANS=y +CONFIG_INFINIBAND_MTHCA=m +CONFIG_INFINIBAND_MTHCA_DEBUG=y +CONFIG_INFINIBAND_AMSO1100=m +# CONFIG_INFINIBAND_AMSO1100_DEBUG is not set +CONFIG_INFINIBAND_IPOIB=m +CONFIG_INFINIBAND_IPOIB_DEBUG=y +# CONFIG_INFINIBAND_IPOIB_DEBUG_DATA is not set +CONFIG_INFINIBAND_SRP=m +CONFIG_INFINIBAND_ISER=m + +# +# EDAC - error detection and reporting (RAS) (EXPERIMENTAL) +# +CONFIG_EDAC=m + +# +# Reporting subsystems +# +# CONFIG_EDAC_DEBUG is not set +CONFIG_EDAC_MM_EDAC=m +CONFIG_EDAC_AMD76X=m +CONFIG_EDAC_E7XXX=m +CONFIG_EDAC_E752X=m +CONFIG_EDAC_I82875P=m +CONFIG_EDAC_I82860=m +CONFIG_EDAC_R82600=m +CONFIG_EDAC_POLL=y + +# +# Real Time Clock +# +CONFIG_RTC_LIB=m +CONFIG_RTC_CLASS=m + +# +# RTC interfaces +# +CONFIG_RTC_INTF_SYSFS=m +CONFIG_RTC_INTF_PROC=m +CONFIG_RTC_INTF_DEV=m +# CONFIG_RTC_INTF_DEV_UIE_EMUL is not set + +# +# RTC drivers +# +CONFIG_RTC_DRV_X1205=m +CONFIG_RTC_DRV_DS1307=m +CONFIG_RTC_DRV_DS1553=m +CONFIG_RTC_DRV_ISL1208=m +CONFIG_RTC_DRV_DS1672=m +CONFIG_RTC_DRV_DS1742=m +CONFIG_RTC_DRV_PCF8563=m +CONFIG_RTC_DRV_PCF8583=m +CONFIG_RTC_DRV_RS5C348=m +CONFIG_RTC_DRV_RS5C372=m +CONFIG_RTC_DRV_M48T86=m +CONFIG_RTC_DRV_TEST=m +CONFIG_RTC_DRV_MAX6902=m +CONFIG_RTC_DRV_V3020=m + +# +# DMA Engine support +# +CONFIG_DMA_ENGINE=y + +# +# DMA Clients +# +CONFIG_NET_DMA=y + +# +# DMA Devices +# +CONFIG_INTEL_IOATDMA=m + +# +# File systems +# +CONFIG_EXT2_FS=y +CONFIG_EXT2_FS_XATTR=y +CONFIG_EXT2_FS_POSIX_ACL=y +CONFIG_EXT2_FS_SECURITY=y +# CONFIG_EXT2_FS_XIP is not set +CONFIG_EXT3_FS=y +CONFIG_EXT3_FS_XATTR=y +CONFIG_EXT3_FS_POSIX_ACL=y +CONFIG_EXT3_FS_SECURITY=y +CONFIG_EXT4DEV_FS=m +CONFIG_EXT4DEV_FS_XATTR=y +CONFIG_EXT4DEV_FS_POSIX_ACL=y +CONFIG_EXT4DEV_FS_SECURITY=y +CONFIG_JBD=y +# CONFIG_JBD_DEBUG is not set +CONFIG_JBD2=m +# CONFIG_JBD2_DEBUG is not set +CONFIG_FS_MBCACHE=y +CONFIG_REISERFS_FS=y +# CONFIG_REISERFS_CHECK is not set +# CONFIG_REISERFS_PROC_INFO is not set +CONFIG_REISERFS_FS_XATTR=y +CONFIG_REISERFS_FS_POSIX_ACL=y +CONFIG_REISERFS_FS_SECURITY=y +CONFIG_JFS_FS=m +CONFIG_JFS_POSIX_ACL=y +CONFIG_JFS_SECURITY=y +# CONFIG_JFS_DEBUG is not set +CONFIG_JFS_STATISTICS=y +CONFIG_FS_POSIX_ACL=y +CONFIG_XFS_FS=y +CONFIG_XFS_QUOTA=y +CONFIG_XFS_SECURITY=y +CONFIG_XFS_POSIX_ACL=y +# CONFIG_XFS_RT is not set +CONFIG_GFS2_FS=m +CONFIG_GFS2_FS_LOCKING_NOLOCK=m +CONFIG_GFS2_FS_LOCKING_DLM=m +CONFIG_OCFS2_FS=m +CONFIG_OCFS2_DEBUG_MASKLOG=y +# CONFIG_MINIX_FS is not set +CONFIG_ROMFS_FS=m +CONFIG_INOTIFY=y +CONFIG_INOTIFY_USER=y +CONFIG_QUOTA=y +CONFIG_QFMT_V1=m +CONFIG_QFMT_V2=m +CONFIG_QUOTACTL=y +CONFIG_DNOTIFY=y +CONFIG_AUTOFS_FS=m +CONFIG_AUTOFS4_FS=m +CONFIG_FUSE_FS=m + +# +# CD-ROM/DVD Filesystems +# +CONFIG_ISO9660_FS=m +CONFIG_JOLIET=y +CONFIG_ZISOFS=y +CONFIG_ZISOFS_FS=m +CONFIG_UDF_FS=m +CONFIG_UDF_NLS=y + +# +# DOS/FAT/NT Filesystems +# +CONFIG_FAT_FS=m +# CONFIG_MSDOS_FS is not set +CONFIG_VFAT_FS=m +CONFIG_FAT_DEFAULT_CODEPAGE=437 +CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1" +CONFIG_NTFS_FS=m +# CONFIG_NTFS_DEBUG is not set +CONFIG_NTFS_RW=y + +# +# Pseudo filesystems +# +CONFIG_PROC_FS=y +CONFIG_PROC_KCORE=y +CONFIG_PROC_SYSCTL=y +CONFIG_SYSFS=y +CONFIG_TMPFS=y +# CONFIG_TMPFS_POSIX_ACL is not set +# CONFIG_HUGETLBFS is not set +# CONFIG_HUGETLB_PAGE is not set +CONFIG_RAMFS=y +CONFIG_CONFIGFS_FS=m + +# +# Miscellaneous filesystems +# +CONFIG_ADFS_FS=m +# CONFIG_ADFS_FS_RW is not set +CONFIG_AFFS_FS=m +CONFIG_ECRYPT_FS=m +CONFIG_HFS_FS=m +CONFIG_HFSPLUS_FS=m +CONFIG_BEFS_FS=m +# CONFIG_BEFS_DEBUG is not set +CONFIG_BFS_FS=m +CONFIG_EFS_FS=m +CONFIG_JFFS_FS=m +CONFIG_JFFS_FS_VERBOSE=0 +# CONFIG_JFFS_PROC_FS is not set +CONFIG_JFFS2_FS=m +CONFIG_JFFS2_FS_DEBUG=0 +CONFIG_JFFS2_FS_WRITEBUFFER=y +# CONFIG_JFFS2_SUMMARY is not set +# CONFIG_JFFS2_FS_XATTR is not set +CONFIG_JFFS2_COMPRESSION_OPTIONS=y +CONFIG_JFFS2_ZLIB=y +CONFIG_JFFS2_RTIME=y +CONFIG_JFFS2_RUBIN=y +# CONFIG_JFFS2_CMODE_NONE is not set +CONFIG_JFFS2_CMODE_PRIORITY=y +# CONFIG_JFFS2_CMODE_SIZE is not set +CONFIG_CRAMFS=m +CONFIG_VXFS_FS=m +CONFIG_HPFS_FS=m +CONFIG_QNX4FS_FS=m +CONFIG_SYSV_FS=m +CONFIG_UFS_FS=m +# CONFIG_UFS_FS_WRITE is not set +# CONFIG_UFS_DEBUG is not set + +# +# Network File Systems +# +CONFIG_NFS_FS=m +CONFIG_NFS_V3=y +# CONFIG_NFS_V3_ACL is not set +CONFIG_NFS_V4=y +CONFIG_NFS_DIRECTIO=y +CONFIG_NFSD=m +CONFIG_NFSD_V3=y +# CONFIG_NFSD_V3_ACL is not set +CONFIG_NFSD_V4=y +CONFIG_NFSD_TCP=y +CONFIG_LOCKD=m +CONFIG_LOCKD_V4=y +CONFIG_EXPORTFS=m +CONFIG_NFS_COMMON=y +CONFIG_SUNRPC=m +CONFIG_SUNRPC_GSS=m +CONFIG_RPCSEC_GSS_KRB5=m +# CONFIG_RPCSEC_GSS_SPKM3 is not set +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_XATTR is not set +# CONFIG_CIFS_DEBUG2 is not set +# CONFIG_CIFS_EXPERIMENTAL is not set +CONFIG_NCP_FS=m +CONFIG_NCPFS_PACKET_SIGNING=y +CONFIG_NCPFS_IOCTL_LOCKING=y +CONFIG_NCPFS_STRONG=y +CONFIG_NCPFS_NFS_NS=y +CONFIG_NCPFS_OS2_NS=y +CONFIG_NCPFS_SMALLDOS=y +CONFIG_NCPFS_NLS=y +CONFIG_NCPFS_EXTRAS=y +CONFIG_CODA_FS=m +# CONFIG_CODA_FS_OLD_API is not set +CONFIG_AFS_FS=m +CONFIG_RXRPC=m +# CONFIG_9P_FS is not set + +# +# Partition Types +# +CONFIG_PARTITION_ADVANCED=y +# CONFIG_ACORN_PARTITION is not set +# CONFIG_OSF_PARTITION is not set +# CONFIG_AMIGA_PARTITION is not set +# CONFIG_ATARI_PARTITION is not set +CONFIG_MAC_PARTITION=y +CONFIG_MSDOS_PARTITION=y +CONFIG_BSD_DISKLABEL=y +# CONFIG_MINIX_SUBPARTITION is not set +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 + +# +# Native Language Support +# +CONFIG_NLS=y +CONFIG_NLS_DEFAULT="iso8859-1" +CONFIG_NLS_CODEPAGE_437=m +CONFIG_NLS_CODEPAGE_737=m +CONFIG_NLS_CODEPAGE_775=m +CONFIG_NLS_CODEPAGE_850=m +CONFIG_NLS_CODEPAGE_852=m +CONFIG_NLS_CODEPAGE_855=m +CONFIG_NLS_CODEPAGE_857=m +CONFIG_NLS_CODEPAGE_860=m +CONFIG_NLS_CODEPAGE_861=m +CONFIG_NLS_CODEPAGE_862=m +CONFIG_NLS_CODEPAGE_863=m +CONFIG_NLS_CODEPAGE_864=m +CONFIG_NLS_CODEPAGE_865=m +CONFIG_NLS_CODEPAGE_866=m +CONFIG_NLS_CODEPAGE_869=m +CONFIG_NLS_CODEPAGE_936=m +CONFIG_NLS_CODEPAGE_950=m +CONFIG_NLS_CODEPAGE_932=m +CONFIG_NLS_CODEPAGE_949=m +CONFIG_NLS_CODEPAGE_874=m +CONFIG_NLS_ISO8859_8=m +CONFIG_NLS_CODEPAGE_1250=m +CONFIG_NLS_CODEPAGE_1251=m +CONFIG_NLS_ASCII=m +CONFIG_NLS_ISO8859_1=m +CONFIG_NLS_ISO8859_2=m +CONFIG_NLS_ISO8859_3=m +CONFIG_NLS_ISO8859_4=m +CONFIG_NLS_ISO8859_5=m +CONFIG_NLS_ISO8859_6=m +CONFIG_NLS_ISO8859_7=m +CONFIG_NLS_ISO8859_9=m +CONFIG_NLS_ISO8859_13=m +CONFIG_NLS_ISO8859_14=m +CONFIG_NLS_ISO8859_15=m +CONFIG_NLS_KOI8_R=m +CONFIG_NLS_KOI8_U=m +CONFIG_NLS_UTF8=m + +# +# Distributed Lock Manager +# +CONFIG_DLM=m +# CONFIG_DLM_DEBUG is not set + +# +# Instrumentation Support +# +# CONFIG_PROFILING is not set +# CONFIG_KPROBES is not set + +# +# Kernel hacking +# +CONFIG_TRACE_IRQFLAGS_SUPPORT=y +# CONFIG_PRINTK_TIME is not set +CONFIG_ENABLE_MUST_CHECK=y +# CONFIG_MAGIC_SYSRQ is not set +CONFIG_UNUSED_SYMBOLS=y +# CONFIG_DEBUG_KERNEL is not set +CONFIG_LOG_BUF_SHIFT=15 +CONFIG_DEBUG_BUGVERBOSE=y +# CONFIG_DEBUG_FS is not set +# CONFIG_UNWIND_INFO is not set +# CONFIG_HEADERS_CHECK is not set +CONFIG_EARLY_PRINTK=y +CONFIG_X86_FIND_SMP_CONFIG=y +CONFIG_X86_MPPARSE=y +CONFIG_DOUBLEFAULT=y + +# +# Security options +# +CONFIG_KEYS=y +CONFIG_KEYS_DEBUG_PROC_KEYS=y +CONFIG_SECURITY=y +CONFIG_SECURITY_NETWORK=y +# CONFIG_SECURITY_NETWORK_XFRM is not set +CONFIG_SECURITY_CAPABILITIES=m +CONFIG_SECURITY_ROOTPLUG=m +# CONFIG_SECURITY_SELINUX is not set + +# +# Cryptographic options +# +CONFIG_CRYPTO=y +CONFIG_CRYPTO_ALGAPI=y +CONFIG_CRYPTO_BLKCIPHER=m +CONFIG_CRYPTO_HASH=y +CONFIG_CRYPTO_MANAGER=y +CONFIG_CRYPTO_HMAC=y +CONFIG_CRYPTO_NULL=m +CONFIG_CRYPTO_MD4=m +CONFIG_CRYPTO_MD5=y +CONFIG_CRYPTO_SHA1=m +CONFIG_CRYPTO_SHA256=m +CONFIG_CRYPTO_SHA512=m +CONFIG_CRYPTO_WP512=m +CONFIG_CRYPTO_TGR192=m +CONFIG_CRYPTO_ECB=m +CONFIG_CRYPTO_CBC=m +CONFIG_CRYPTO_DES=m +CONFIG_CRYPTO_BLOWFISH=m +CONFIG_CRYPTO_TWOFISH=m +CONFIG_CRYPTO_TWOFISH_COMMON=m +CONFIG_CRYPTO_TWOFISH_586=m +CONFIG_CRYPTO_SERPENT=m +CONFIG_CRYPTO_AES=m +CONFIG_CRYPTO_AES_586=m +CONFIG_CRYPTO_CAST5=m +CONFIG_CRYPTO_CAST6=m +CONFIG_CRYPTO_TEA=m +CONFIG_CRYPTO_ARC4=m +CONFIG_CRYPTO_KHAZAD=m +CONFIG_CRYPTO_ANUBIS=m +CONFIG_CRYPTO_DEFLATE=m +CONFIG_CRYPTO_MICHAEL_MIC=m +CONFIG_CRYPTO_CRC32C=m +CONFIG_CRYPTO_TEST=m + +# +# Hardware crypto devices +# +CONFIG_CRYPTO_DEV_PADLOCK=m +CONFIG_CRYPTO_DEV_PADLOCK_AES=m +CONFIG_CRYPTO_DEV_PADLOCK_SHA=m + +# +# Library routines +# +CONFIG_CRC_CCITT=m +CONFIG_CRC16=m +CONFIG_CRC32=y +CONFIG_LIBCRC32C=m +CONFIG_AUDIT_GENERIC=y +CONFIG_ZLIB_INFLATE=m +CONFIG_ZLIB_DEFLATE=m +CONFIG_TEXTSEARCH=y +CONFIG_TEXTSEARCH_KMP=m +CONFIG_TEXTSEARCH_BM=m +CONFIG_TEXTSEARCH_FSM=m +CONFIG_PLIST=y +CONFIG_GENERIC_HARDIRQS=y +CONFIG_GENERIC_IRQ_PROBE=y +CONFIG_GENERIC_PENDING_IRQ=y +CONFIG_X86_SMP=y +CONFIG_X86_HT=y +CONFIG_X86_BIOS_REBOOT=y +CONFIG_X86_TRAMPOLINE=y +CONFIG_KTIME_SCALAR=y diff --git a/source/base-extra/kernel-grsec/config-x86_64.patch b/source/base-extra/kernel-grsec/config-x86_64.patch new file mode 100644 index 0000000..bfaaef5 --- /dev/null +++ b/source/base-extra/kernel-grsec/config-x86_64.patch @@ -0,0 +1,1110 @@ +--- a/.config 2007-03-16 00:19:49.000000000 +0100 ++++ b/.config 2007-03-16 00:18:04.000000000 +0100 +@@ -1,20 +1,27 @@ + # + # Automatically generated make config: don't edit + # Linux kernel version: 2.6.19.1 +-# Sat Jan 6 18:53:25 2007 ++# Fri Mar 16 00:17:21 2007 + # +-CONFIG_X86_32=y +-CONFIG_GENERIC_TIME=y ++CONFIG_X86_64=y ++CONFIG_64BIT=y ++CONFIG_X86=y ++CONFIG_ZONE_DMA32=y + CONFIG_LOCKDEP_SUPPORT=y + CONFIG_STACKTRACE_SUPPORT=y + CONFIG_SEMAPHORE_SLEEPERS=y +-CONFIG_X86=y + CONFIG_MMU=y ++CONFIG_RWSEM_GENERIC_SPINLOCK=y ++CONFIG_GENERIC_HWEIGHT=y ++CONFIG_GENERIC_CALIBRATE_DELAY=y ++CONFIG_X86_CMPXCHG=y ++CONFIG_EARLY_PRINTK=y + CONFIG_GENERIC_ISA_DMA=y + CONFIG_GENERIC_IOMAP=y +-CONFIG_GENERIC_HWEIGHT=y + CONFIG_ARCH_MAY_HAVE_PC_FDC=y ++CONFIG_ARCH_POPULATES_NODE_MAP=y + CONFIG_DMI=y ++CONFIG_AUDIT_ARCH=y + CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" + + # +@@ -101,122 +108,71 @@ + # + # Processor type and features + # +-CONFIG_SMP=y + CONFIG_X86_PC=y +-# CONFIG_X86_ELAN is not set +-# CONFIG_X86_VOYAGER is not set +-# CONFIG_X86_NUMAQ is not set +-# CONFIG_X86_SUMMIT is not set +-# CONFIG_X86_BIGSMP is not set +-# CONFIG_X86_VISWS is not set +-# CONFIG_X86_GENERICARCH is not set +-# CONFIG_X86_ES7000 is not set +-# CONFIG_M386 is not set +-# CONFIG_M486 is not set +-# CONFIG_M586 is not set +-# CONFIG_M586TSC is not set +-# CONFIG_M586MMX is not set +-CONFIG_M686=y +-# CONFIG_MPENTIUMII is not set +-# CONFIG_MPENTIUMIII is not set +-# CONFIG_MPENTIUMM is not set +-# CONFIG_MPENTIUM4 is not set +-# CONFIG_MK6 is not set +-# CONFIG_MK7 is not set +-# CONFIG_MK8 is not set +-# CONFIG_MCRUSOE is not set +-# CONFIG_MEFFICEON is not set +-# CONFIG_MWINCHIPC6 is not set +-# CONFIG_MWINCHIP2 is not set +-# CONFIG_MWINCHIP3D is not set +-# CONFIG_MGEODEGX1 is not set +-# CONFIG_MGEODE_LX is not set +-# CONFIG_MCYRIXIII is not set +-# CONFIG_MVIAC3_2 is not set +-CONFIG_X86_GENERIC=y +-CONFIG_X86_CMPXCHG=y +-CONFIG_X86_XADD=y +-CONFIG_X86_L1_CACHE_SHIFT=7 +-CONFIG_RWSEM_XCHGADD_ALGORITHM=y +-CONFIG_GENERIC_CALIBRATE_DELAY=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_CMPXCHG64=y +-CONFIG_X86_ALIGNMENT_16=y +-CONFIG_X86_GOOD_APIC=y +-CONFIG_X86_INTEL_USERCOPY=y +-CONFIG_X86_USE_PPRO_CHECKSUM=y ++# CONFIG_X86_VSMP is not set ++CONFIG_MK8=y ++# CONFIG_MPSC is not set ++# CONFIG_GENERIC_CPU is not set ++CONFIG_X86_L1_CACHE_BYTES=64 ++CONFIG_X86_L1_CACHE_SHIFT=6 ++CONFIG_X86_INTERNODE_CACHE_BYTES=64 + CONFIG_X86_TSC=y +-CONFIG_HPET_TIMER=y +-CONFIG_HPET_EMULATE_RTC=y +-CONFIG_NR_CPUS=8 ++CONFIG_X86_GOOD_APIC=y ++CONFIG_MICROCODE=m ++CONFIG_MICROCODE_OLD_INTERFACE=y ++CONFIG_X86_MSR=m ++CONFIG_X86_CPUID=m ++CONFIG_X86_IO_APIC=y ++CONFIG_X86_LOCAL_APIC=y ++CONFIG_MTRR=y ++CONFIG_SMP=y + CONFIG_SCHED_SMT=y + # CONFIG_SCHED_MC is not set + CONFIG_PREEMPT_NONE=y + # CONFIG_PREEMPT_VOLUNTARY is not set + # CONFIG_PREEMPT is not set + CONFIG_PREEMPT_BKL=y +-CONFIG_X86_LOCAL_APIC=y +-CONFIG_X86_IO_APIC=y +-CONFIG_X86_MCE=y +-CONFIG_X86_MCE_NONFATAL=m +-CONFIG_X86_MCE_P4THERMAL=y +-CONFIG_VM86=y +-CONFIG_TOSHIBA=m +-CONFIG_I8K=m +-CONFIG_X86_REBOOTFIXUPS=y +-CONFIG_MICROCODE=m +-CONFIG_MICROCODE_OLD_INTERFACE=y +-CONFIG_X86_MSR=m +-CONFIG_X86_CPUID=m +- +-# +-# Firmware Drivers +-# +-CONFIG_EDD=m +-CONFIG_DELL_RBU=m +-CONFIG_DCDBAS=m +-# CONFIG_NOHIGHMEM is not set +-CONFIG_HIGHMEM4G=y +-# CONFIG_HIGHMEM64G is not set +-CONFIG_PAGE_OFFSET=0xC0000000 +-CONFIG_HIGHMEM=y +-CONFIG_ARCH_FLATMEM_ENABLE=y ++# CONFIG_NUMA is not set + CONFIG_ARCH_SPARSEMEM_ENABLE=y +-CONFIG_ARCH_SELECT_MEMORY_MODEL=y +-CONFIG_ARCH_POPULATES_NODE_MAP=y ++CONFIG_ARCH_FLATMEM_ENABLE=y + CONFIG_SELECT_MEMORY_MODEL=y + CONFIG_FLATMEM_MANUAL=y + # CONFIG_DISCONTIGMEM_MANUAL is not set + # CONFIG_SPARSEMEM_MANUAL is not set + CONFIG_FLATMEM=y + CONFIG_FLAT_NODE_MEM_MAP=y +-CONFIG_SPARSEMEM_STATIC=y ++# CONFIG_SPARSEMEM_STATIC is not set + CONFIG_SPLIT_PTLOCK_CPUS=4 +-# CONFIG_RESOURCES_64BIT is not set +-# CONFIG_HIGHPTE is not set +-# CONFIG_MATH_EMULATION is not set +-CONFIG_MTRR=y +-# CONFIG_EFI is not set +-CONFIG_IRQBALANCE=y +-# CONFIG_REGPARM is not set ++CONFIG_RESOURCES_64BIT=y ++CONFIG_NR_CPUS=8 ++CONFIG_HOTPLUG_CPU=y ++CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y ++CONFIG_HPET_TIMER=y ++CONFIG_HPET_EMULATE_RTC=y ++CONFIG_IOMMU=y ++# CONFIG_CALGARY_IOMMU is not set ++CONFIG_SWIOTLB=y ++CONFIG_X86_MCE=y ++CONFIG_X86_MCE_INTEL=y ++CONFIG_X86_MCE_AMD=y ++CONFIG_KEXEC=y ++# CONFIG_CRASH_DUMP is not set ++CONFIG_PHYSICAL_START=0x200000 + CONFIG_SECCOMP=y ++# CONFIG_CC_STACKPROTECTOR is not set + # CONFIG_HZ_100 is not set + CONFIG_HZ_250=y + # CONFIG_HZ_1000 is not set + CONFIG_HZ=250 +-CONFIG_KEXEC=y +-# CONFIG_CRASH_DUMP is not set +-CONFIG_PHYSICAL_START=0x100000 +-CONFIG_HOTPLUG_CPU=y +-# CONFIG_COMPAT_VDSO is not set +-CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y ++# CONFIG_REORDER is not set ++CONFIG_K8_NB=y ++CONFIG_GENERIC_HARDIRQS=y ++CONFIG_GENERIC_IRQ_PROBE=y ++CONFIG_ISA_DMA_API=y ++CONFIG_GENERIC_PENDING_IRQ=y + + # +-# Power management options (ACPI, APM) ++# Power management options + # + CONFIG_PM=y + CONFIG_PM_LEGACY=y +@@ -256,18 +212,6 @@ + # CONFIG_ACPI_SBS is not set + + # +-# APM (Advanced Power Management) BIOS Support +-# +-CONFIG_APM=y +-# CONFIG_APM_IGNORE_USER_SUSPEND is not set +-# CONFIG_APM_DO_ENABLE is not set +-# CONFIG_APM_CPU_IDLE is not set +-# CONFIG_APM_DISPLAY_BLANK is not set +-# CONFIG_APM_RTC_IS_GMT is not set +-# CONFIG_APM_ALLOW_INTS is not set +-CONFIG_APM_REAL_MODE_POWER_OFF=y +- +-# + # CPU Frequency scaling + # + CONFIG_CPU_FREQ=y +@@ -286,38 +230,22 @@ + # + # CPUFreq processor drivers + # +-CONFIG_X86_ACPI_CPUFREQ=m +-CONFIG_X86_POWERNOW_K6=m +-CONFIG_X86_POWERNOW_K7=m +-CONFIG_X86_POWERNOW_K7_ACPI=y + CONFIG_X86_POWERNOW_K8=m + CONFIG_X86_POWERNOW_K8_ACPI=y +-CONFIG_X86_GX_SUSPMOD=m + CONFIG_X86_SPEEDSTEP_CENTRINO=m + CONFIG_X86_SPEEDSTEP_CENTRINO_ACPI=y +-CONFIG_X86_SPEEDSTEP_CENTRINO_TABLE=y +-CONFIG_X86_SPEEDSTEP_ICH=m +-CONFIG_X86_SPEEDSTEP_SMI=m +-CONFIG_X86_P4_CLOCKMOD=m +-CONFIG_X86_CPUFREQ_NFORCE2=m +-CONFIG_X86_LONGRUN=m +-CONFIG_X86_LONGHAUL=m ++CONFIG_X86_ACPI_CPUFREQ=m + + # + # shared options + # + # CONFIG_X86_ACPI_CPUFREQ_PROC_INTF is not set +-CONFIG_X86_SPEEDSTEP_LIB=m +-# CONFIG_X86_SPEEDSTEP_RELAXED_CAP_CHECK is not set ++# CONFIG_X86_SPEEDSTEP_LIB is not set + + # +-# Bus options (PCI, PCMCIA, EISA, MCA, ISA) ++# Bus options (PCI etc.) + # + CONFIG_PCI=y +-# CONFIG_PCI_GOBIOS is not set +-# CONFIG_PCI_GOMMCONFIG is not set +-# CONFIG_PCI_GODIRECT is not set +-CONFIG_PCI_GOANY=y + CONFIG_PCI_DIRECT=y + CONFIG_PCI_MMCONFIG=y + CONFIG_PCIEPORTBUS=y +@@ -326,19 +254,6 @@ + CONFIG_PCIEAER=y + CONFIG_PCI_MSI=y + CONFIG_HT_IRQ=y +-CONFIG_ISA_DMA_API=y +-CONFIG_ISA=y +-CONFIG_EISA=y +-# CONFIG_EISA_VLB_PRIMING is not set +-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=m +-CONFIG_SCx200HR_TIMER=m +-CONFIG_K8_NB=y + + # + # PCCARD (PCMCIA/CardBus) support +@@ -361,9 +276,6 @@ + CONFIG_YENTA_TOSHIBA=y + CONFIG_PD6729=m + CONFIG_I82092=m +-CONFIG_I82365=m +-CONFIG_TCIC=m +-CONFIG_PCMCIA_PROBE=y + CONFIG_PCCARD_NONSTATIC=m + + # +@@ -378,11 +290,14 @@ + # CONFIG_HOTPLUG_PCI_SHPC_POLL_EVENT_MODE is not set + + # +-# Executable file formats ++# Executable file formats / Emulations + # + CONFIG_BINFMT_ELF=y +-CONFIG_BINFMT_AOUT=m + CONFIG_BINFMT_MISC=m ++CONFIG_IA32_EMULATION=y ++CONFIG_IA32_AOUT=m ++CONFIG_COMPAT=y ++CONFIG_SYSVIPC_COMPAT=y + + # + # Networking +@@ -683,10 +598,6 @@ + # CONFIG_IPX_INTERN is not set + CONFIG_ATALK=m + CONFIG_DEV_APPLETALK=m +-CONFIG_LTPC=m +-CONFIG_COPS=m +-CONFIG_COPS_DAYNA=y +-CONFIG_COPS_TANGENT=y + CONFIG_IPDDP=m + CONFIG_IPDDP_ENCAP=y + CONFIG_IPDDP_DECAP=y +@@ -772,13 +683,9 @@ + # CONFIG_MKISS is not set + # CONFIG_6PACK is not set + CONFIG_BPQETHER=m +-CONFIG_SCC=m +-CONFIG_SCC_DELAY=y +-CONFIG_SCC_TRXECHO=y + CONFIG_BAYCOM_SER_FDX=m + CONFIG_BAYCOM_SER_HDX=m + CONFIG_BAYCOM_PAR=m +-CONFIG_BAYCOM_EPP=m + CONFIG_YAM=m + CONFIG_IRDA=m + +@@ -836,7 +743,6 @@ + CONFIG_SIGMATEL_FIR=m + CONFIG_NSC_FIR=m + CONFIG_WINBOND_FIR=m +-CONFIG_TOSHIBA_FIR=m + CONFIG_SMC_IRCC_FIR=m + CONFIG_ALI_FIR=m + CONFIG_VLSI_FIR=m +@@ -960,7 +866,6 @@ + CONFIG_MTD_NETSC520=m + CONFIG_MTD_TS5500=m + CONFIG_MTD_SBC_GXX=m +-CONFIG_MTD_SCx200_DOCFLASH=m + CONFIG_MTD_AMD76XROM=m + CONFIG_MTD_ICHXROM=m + CONFIG_MTD_SCB2_FLASH=m +@@ -1005,7 +910,6 @@ + # CONFIG_MTD_NAND_ECC_SMC is not set + CONFIG_MTD_NAND_IDS=m + # CONFIG_MTD_NAND_DISKONCHIP is not set +-CONFIG_MTD_NAND_CS553X=m + CONFIG_MTD_NAND_NANDSIM=m + + # +@@ -1038,15 +942,12 @@ + # + # Protocols + # +-CONFIG_ISAPNP=y +-# CONFIG_PNPBIOS is not set + CONFIG_PNPACPI=y + + # + # Block devices + # + CONFIG_BLK_DEV_FD=y +-CONFIG_BLK_DEV_XD=m + CONFIG_PARIDE=m + CONFIG_PARIDE_PARPORT=m + +@@ -1064,7 +965,6 @@ + # + CONFIG_PARIDE_ATEN=m + CONFIG_PARIDE_BPCK=m +-CONFIG_PARIDE_BPCK6=m + CONFIG_PARIDE_COMM=m + CONFIG_PARIDE_DSTR=m + CONFIG_PARIDE_FIT2=m +@@ -1155,7 +1055,6 @@ + CONFIG_BLK_DEV_CY82C693=y + CONFIG_BLK_DEV_CS5520=y + CONFIG_BLK_DEV_CS5530=y +-CONFIG_BLK_DEV_CS5535=m + CONFIG_BLK_DEV_HPT34X=y + # CONFIG_HPT34X_AUTODMA is not set + CONFIG_BLK_DEV_HPT366=y +@@ -1174,17 +1073,6 @@ + CONFIG_BLK_DEV_TRM290=y + CONFIG_BLK_DEV_VIA82CXXX=y + # CONFIG_IDE_ARM is not set +-CONFIG_IDE_CHIPSETS=y +- +-# +-# Note: most of these also require special kernel boot parameters +-# +-CONFIG_BLK_DEV_4DRIVES=y +-CONFIG_BLK_DEV_ALI14XX=m +-CONFIG_BLK_DEV_DTC2278=m +-CONFIG_BLK_DEV_HT6560B=m +-CONFIG_BLK_DEV_QD65XX=m +-CONFIG_BLK_DEV_UMC8672=m + CONFIG_BLK_DEV_IDEDMA=y + # CONFIG_IDEDMA_IVB is not set + CONFIG_IDEDMA_AUTO=y +@@ -1232,16 +1120,11 @@ + CONFIG_ISCSI_TCP=m + CONFIG_BLK_DEV_3W_XXXX_RAID=m + CONFIG_SCSI_3W_9XXX=m +-CONFIG_SCSI_7000FASST=m + CONFIG_SCSI_ACARD=m +-CONFIG_SCSI_AHA152X=m +-CONFIG_SCSI_AHA1542=m +-CONFIG_SCSI_AHA1740=m + CONFIG_SCSI_AACRAID=m + CONFIG_SCSI_AIC7XXX=y + CONFIG_AIC7XXX_CMDS_PER_DEVICE=4 + CONFIG_AIC7XXX_RESET_DELAY_MS=15000 +-# CONFIG_AIC7XXX_PROBE_EISA_VL is not set + # CONFIG_AIC7XXX_DEBUG_ENABLE is not set + CONFIG_AIC7XXX_DEBUG_MASK=0 + # CONFIG_AIC7XXX_REG_PRETTY_PRINT is not set +@@ -1255,9 +1138,6 @@ + # CONFIG_AIC79XX_REG_PRETTY_PRINT is not set + CONFIG_SCSI_AIC94XX=m + # CONFIG_AIC94XX_DEBUG is not set +-CONFIG_SCSI_DPT_I2O=m +-CONFIG_SCSI_ADVANSYS=m +-CONFIG_SCSI_IN2000=m + CONFIG_SCSI_ARCMSR=m + # CONFIG_MEGARAID_NEWGEN is not set + CONFIG_MEGARAID_LEGACY=m +@@ -1266,20 +1146,12 @@ + CONFIG_SCSI_BUSLOGIC=y + # CONFIG_SCSI_OMIT_FLASHPOINT is not set + CONFIG_SCSI_DMX3191D=m +-CONFIG_SCSI_DTC3280=m + CONFIG_SCSI_EATA=m + # CONFIG_SCSI_EATA_TAGGED_QUEUE is not set + # CONFIG_SCSI_EATA_LINKED_COMMANDS is not set + CONFIG_SCSI_EATA_MAX_TAGS=16 + CONFIG_SCSI_FUTURE_DOMAIN=m +-CONFIG_SCSI_FD_MCS=m + CONFIG_SCSI_GDTH=m +-CONFIG_SCSI_GENERIC_NCR5380=m +-CONFIG_SCSI_GENERIC_NCR5380_MMIO=m +-CONFIG_SCSI_GENERIC_NCR53C400=y +-CONFIG_SCSI_IBMMCA=m +-CONFIG_IBMMCA_SCSI_ORDER_STANDARD=y +-CONFIG_IBMMCA_SCSI_DEV_RESET=y + CONFIG_SCSI_IPS=y + CONFIG_SCSI_INITIO=m + CONFIG_SCSI_INIA100=m +@@ -1287,8 +1159,6 @@ + CONFIG_SCSI_IMM=m + # CONFIG_SCSI_IZIP_EPP16 is not set + # CONFIG_SCSI_IZIP_SLOW_CTR is not set +-CONFIG_SCSI_NCR53C406A=m +-CONFIG_SCSI_NCR_D700=m + # CONFIG_SCSI_STEX is not set + CONFIG_SCSI_SYM53C8XX_2=m + CONFIG_SCSI_SYM53C8XX_DMA_ADDRESSING_MODE=1 +@@ -1298,38 +1168,18 @@ + CONFIG_SCSI_IPR=m + # CONFIG_SCSI_IPR_TRACE is not set + # CONFIG_SCSI_IPR_DUMP is not set +-CONFIG_SCSI_NCR_Q720=m +-CONFIG_SCSI_NCR53C8XX_DEFAULT_TAGS=8 +-CONFIG_SCSI_NCR53C8XX_MAX_TAGS=32 +-CONFIG_SCSI_NCR53C8XX_SYNC=20 +-# CONFIG_SCSI_NCR53C8XX_PROFILE is not set +-CONFIG_SCSI_PAS16=m +-CONFIG_SCSI_PSI240I=m +-CONFIG_SCSI_QLOGIC_FAS=m + CONFIG_SCSI_QLOGIC_1280=m + CONFIG_SCSI_QLA_FC=m + # CONFIG_SCSI_QLA_ISCSI is not set + CONFIG_SCSI_LPFC=m +-CONFIG_SCSI_SIM710=m +-CONFIG_53C700_IO_MAPPED=y +-CONFIG_SCSI_SYM53C416=m + CONFIG_SCSI_DC395x=m + CONFIG_SCSI_DC390T=m +-CONFIG_SCSI_T128=m +-CONFIG_SCSI_U14_34F=m +-# CONFIG_SCSI_U14_34F_TAGGED_QUEUE is not set +-# CONFIG_SCSI_U14_34F_LINKED_COMMANDS is not set +-CONFIG_SCSI_U14_34F_MAX_TAGS=8 +-CONFIG_SCSI_ULTRASTOR=m +-CONFIG_SCSI_NSP32=m + CONFIG_SCSI_DEBUG=m + + # + # PCMCIA SCSI adapter support + # +-CONFIG_PCMCIA_AHA152X=m + CONFIG_PCMCIA_FDOMAIN=m +-CONFIG_PCMCIA_NINJA_SCSI=m + CONFIG_PCMCIA_QLOGIC=m + CONFIG_PCMCIA_SYM53C500=m + +@@ -1360,7 +1210,6 @@ + CONFIG_PATA_CMD64X=m + CONFIG_PATA_CS5520=m + CONFIG_PATA_CS5530=m +-CONFIG_PATA_CS5535=m + # CONFIG_PATA_CYPRESS is not set + CONFIG_PATA_EFAR=m + CONFIG_ATA_GENERIC=m +@@ -1368,10 +1217,8 @@ + # CONFIG_PATA_HPT37X is not set + CONFIG_PATA_HPT3X2N=m + CONFIG_PATA_HPT3X3=m +-CONFIG_PATA_ISAPNP=m + CONFIG_PATA_IT821X=m + CONFIG_PATA_JMICRON=m +-CONFIG_PATA_LEGACY=m + CONFIG_PATA_TRIFLEX=m + CONFIG_PATA_MPIIX=m + CONFIG_PATA_OLDPIIX=m +@@ -1381,7 +1228,6 @@ + # CONFIG_PATA_OPTIDMA is not set + CONFIG_PATA_PCMCIA=m + # CONFIG_PATA_PDC_OLD is not set +-CONFIG_PATA_QDI=m + # CONFIG_PATA_RADISYS is not set + CONFIG_PATA_RZ1000=m + CONFIG_PATA_SC1200=m +@@ -1393,18 +1239,6 @@ + CONFIG_PATA_WINBOND=m + + # +-# Old CD-ROM drivers (not SCSI, not IDE) +-# +-CONFIG_CD_NO_IDESCSI=y +-CONFIG_AZTCD=m +-CONFIG_GSCD=m +-CONFIG_MCDX=m +-CONFIG_OPTCD=m +-CONFIG_SJCD=m +-CONFIG_ISP16_CDI=m +-CONFIG_CDU535=m +- +-# + # Multi-device support (RAID and LVM) + # + CONFIG_MD=y +@@ -1461,7 +1295,6 @@ + # + CONFIG_IEEE1394_VIDEO1394=m + CONFIG_IEEE1394_SBP2=m +-# CONFIG_IEEE1394_SBP2_PHYS_DMA is not set + CONFIG_IEEE1394_ETH1394=m + CONFIG_IEEE1394_DV1394=m + CONFIG_IEEE1394_RAWIO=m +@@ -1472,6 +1305,7 @@ + CONFIG_I2O=m + CONFIG_I2O_LCT_NOTIFY_ON_CHANGES=y + CONFIG_I2O_EXT_ADAPTEC=y ++CONFIG_I2O_EXT_ADAPTEC_DMA64=y + CONFIG_I2O_CONFIG=m + CONFIG_I2O_CONFIG_OLD_IOCTL=y + CONFIG_I2O_BUS=m +@@ -1502,7 +1336,6 @@ + CONFIG_ARCNET_COM90xxIO=m + CONFIG_ARCNET_RIM_I=m + CONFIG_ARCNET_COM20020=m +-CONFIG_ARCNET_COM20020_ISA=m + CONFIG_ARCNET_COM20020_PCI=m + + # +@@ -1533,26 +1366,8 @@ + CONFIG_SUNGEM=m + CONFIG_CASSINI=m + CONFIG_NET_VENDOR_3COM=y +-CONFIG_EL1=m +-CONFIG_EL2=m +-CONFIG_ELPLUS=m +-CONFIG_EL16=m +-CONFIG_EL3=m +-CONFIG_3C515=m +-CONFIG_ELMC=m +-CONFIG_ELMC_II=m + CONFIG_VORTEX=m + CONFIG_TYPHOON=m +-CONFIG_LANCE=m +-CONFIG_NET_VENDOR_SMC=y +-CONFIG_WD80x3=m +-CONFIG_ULTRAMCA=m +-CONFIG_ULTRA=m +-CONFIG_ULTRA32=m +-CONFIG_SMC9194=m +-CONFIG_NET_VENDOR_RACAL=y +-CONFIG_NI52=m +-CONFIG_NI65=m + + # + # Tulip family network device support +@@ -1568,23 +1383,7 @@ + CONFIG_DM9102=m + CONFIG_ULI526X=m + CONFIG_PCMCIA_XIRCOM=m +-CONFIG_AT1700=m +-CONFIG_DEPCA=m + CONFIG_HP100=m +-CONFIG_NET_ISA=y +-CONFIG_E2100=m +-CONFIG_EWRK3=m +-CONFIG_EEXPRESS=m +-CONFIG_EEXPRESS_PRO=m +-CONFIG_HPLAN_PLUS=m +-CONFIG_HPLAN=m +-CONFIG_LP486E=m +-CONFIG_ETH16I=m +-CONFIG_NE2000=m +-CONFIG_ZNET=m +-CONFIG_SEEQ8005=m +-CONFIG_NE2_MCA=m +-CONFIG_IBMLANA=m + CONFIG_NET_PCI=y + CONFIG_PCNET32=m + # CONFIG_PCNET32_NAPI is not set +@@ -1592,21 +1391,15 @@ + # CONFIG_AMD8111E_NAPI is not set + CONFIG_ADAPTEC_STARFIRE=m + CONFIG_ADAPTEC_STARFIRE_NAPI=y +-CONFIG_AC3200=m +-CONFIG_APRICOT=m + CONFIG_B44=m + CONFIG_FORCEDETH=m + # CONFIG_FORCEDETH_NAPI is not set +-CONFIG_CS89x0=m + CONFIG_DGRS=m + CONFIG_EEPRO100=m + CONFIG_E100=m +-CONFIG_LNE390=m + CONFIG_FEALNX=m + CONFIG_NATSEMI=m + CONFIG_NE2K_PCI=m +-CONFIG_NE3210=m +-CONFIG_ES3210=m + CONFIG_8139CP=m + CONFIG_8139TOO=m + CONFIG_8139TOO_PIO=y +@@ -1617,7 +1410,6 @@ + CONFIG_EPIC100=m + CONFIG_SUNDANCE=m + # CONFIG_SUNDANCE_MMIO is not set +-CONFIG_TLAN=m + CONFIG_VIA_RHINE=m + CONFIG_VIA_RHINE_MMIO=y + # CONFIG_VIA_RHINE_NAPI is not set +@@ -1664,17 +1456,11 @@ + # Token Ring devices + # + CONFIG_TR=y +-CONFIG_IBMTR=m + CONFIG_IBMOL=m +-CONFIG_IBMLS=m + CONFIG_3C359=m + CONFIG_TMS380TR=m + CONFIG_TMSPCI=m +-CONFIG_SKISA=m +-CONFIG_PROTEON=m + CONFIG_ABYSS=m +-CONFIG_MADGEMC=m +-CONFIG_SMCTR=m + + # + # Wireless LAN (non-hamradio) +@@ -1686,8 +1472,6 @@ + # Obsolete Wireless cards support (pre-802.11) + # + CONFIG_STRIP=m +-CONFIG_ARLAN=m +-CONFIG_WAVELAN=m + CONFIG_PCMCIA_WAVELAN=m + CONFIG_PCMCIA_NETWAVE=m + +@@ -1761,19 +1545,15 @@ + CONFIG_PCMCIA_XIRC2PS=m + CONFIG_PCMCIA_AXNET=m + CONFIG_ARCNET_COM20020_CS=m +-CONFIG_PCMCIA_IBMTR=m + + # + # Wan interfaces + # + CONFIG_WAN=y +-CONFIG_HOSTESS_SV11=m +-CONFIG_COSA=m + CONFIG_DSCC4=m + # CONFIG_DSCC4_PCISYNC is not set + # CONFIG_DSCC4_PCI_RST is not set + CONFIG_LANMEDIA=m +-CONFIG_SEALEVEL_4021=m + CONFIG_HDLC=m + CONFIG_HDLC_RAW=m + CONFIG_HDLC_RAW_ETH=m +@@ -1796,13 +1576,10 @@ + # + # Refer to the file README.mlppp, provided by PC300 package. + # +-CONFIG_N2=m +-CONFIG_C101=m + CONFIG_FARSYNC=m + CONFIG_DLCI=m + CONFIG_DLCI_COUNT=24 + CONFIG_DLCI_MAX=8 +-CONFIG_SDLA=m + CONFIG_WAN_ROUTER_DRIVERS=y + CONFIG_CYCLADES_SYNC=m + CONFIG_CYCLOMX_X25=y +@@ -1821,9 +1598,6 @@ + CONFIG_ATM_FIRESTREAM=m + CONFIG_ATM_ZATM=m + # CONFIG_ATM_ZATM_DEBUG is not set +-CONFIG_ATM_NICSTAR=m +-# CONFIG_ATM_NICSTAR_USE_SUNI is not set +-# CONFIG_ATM_NICSTAR_USE_IDT77105 is not set + CONFIG_ATM_IDT77252=m + # CONFIG_ATM_IDT77252_DEBUG is not set + # CONFIG_ATM_IDT77252_RCV_ALL is not set +@@ -1832,8 +1606,6 @@ + # CONFIG_ATM_AMBASSADOR_DEBUG is not set + CONFIG_ATM_HORIZON=m + # CONFIG_ATM_HORIZON_DEBUG is not set +-CONFIG_ATM_IA=m +-# CONFIG_ATM_IA_DEBUG is not set + CONFIG_ATM_FORE200E_MAYBE=m + # CONFIG_ATM_FORE200E_PCA is not set + CONFIG_ATM_HE=m +@@ -1896,10 +1668,8 @@ + # Active AVM cards + # + CONFIG_CAPI_AVM=y +-CONFIG_ISDN_DRV_AVMB1_B1ISA=m + CONFIG_ISDN_DRV_AVMB1_B1PCI=m + CONFIG_ISDN_DRV_AVMB1_B1PCIV4=y +-CONFIG_ISDN_DRV_AVMB1_T1ISA=m + CONFIG_ISDN_DRV_AVMB1_B1PCMCIA=m + CONFIG_ISDN_DRV_AVMB1_AVM_CS=m + CONFIG_ISDN_DRV_AVMB1_T1PCI=m +@@ -1956,10 +1726,6 @@ + CONFIG_INPUT_MOUSE=y + CONFIG_MOUSE_PS2=y + CONFIG_MOUSE_SERIAL=m +-CONFIG_MOUSE_INPORT=m +-CONFIG_MOUSE_ATIXL=y +-CONFIG_MOUSE_LOGIBM=m +-CONFIG_MOUSE_PC110PAD=m + CONFIG_MOUSE_VSXXXAA=m + CONFIG_INPUT_JOYSTICK=y + CONFIG_JOYSTICK_ANALOG=m +@@ -1997,7 +1763,6 @@ + # CONFIG_TOUCHSCREEN_TOUCHWIN is not set + CONFIG_INPUT_MISC=y + CONFIG_INPUT_PCSPKR=m +-# CONFIG_INPUT_WISTRON_BTNS is not set + CONFIG_INPUT_UINPUT=m + + # +@@ -2030,7 +1795,6 @@ + CONFIG_CYCLADES=m + # CONFIG_CYZ_INTR is not set + CONFIG_DIGIEPCA=m +-CONFIG_ESPSERIAL=m + CONFIG_MOXA_INTELLIO=m + CONFIG_MOXA_SMARTIO=m + # CONFIG_ISI is not set +@@ -2060,11 +1824,6 @@ + CONFIG_SERIAL_8250_SHARE_IRQ=y + CONFIG_SERIAL_8250_DETECT_IRQ=y + CONFIG_SERIAL_8250_RSA=y +-CONFIG_SERIAL_8250_FOURPORT=m +-CONFIG_SERIAL_8250_ACCENT=m +-CONFIG_SERIAL_8250_BOCA=m +-CONFIG_SERIAL_8250_HUB6=m +-CONFIG_SERIAL_8250_MCA=m + + # + # Non-8250 serial port support +@@ -2113,7 +1872,6 @@ + CONFIG_I8XX_TCO=m + CONFIG_ITCO_WDT=m + CONFIG_SC1200_WDT=m +-CONFIG_SCx200_WDT=m + CONFIG_60XX_WDT=m + CONFIG_SBC8360_WDT=m + CONFIG_CPU5_WDT=m +@@ -2126,14 +1884,6 @@ + CONFIG_SBC_EPX_C3_WATCHDOG=m + + # +-# ISA-based Watchdog Cards +-# +-CONFIG_PCWATCHDOG=m +-CONFIG_MIXCOMWD=m +-CONFIG_WDT=m +-CONFIG_WDT_501=y +- +-# + # PCI-based Watchdog Cards + # + CONFIG_PCIPCWATCHDOG=m +@@ -2148,28 +1898,20 @@ + CONFIG_HW_RANDOM_INTEL=y + CONFIG_HW_RANDOM_AMD=y + CONFIG_HW_RANDOM_GEODE=y +-CONFIG_HW_RANDOM_VIA=y + CONFIG_NVRAM=m + CONFIG_RTC=y + CONFIG_DTLK=m + CONFIG_R3964=m + CONFIG_APPLICOM=m +-CONFIG_SONYPI=m + + # + # Ftape, the floppy tape device driver + # +-CONFIG_AGP=m +-CONFIG_AGP_ALI=m +-CONFIG_AGP_ATI=m +-CONFIG_AGP_AMD=m +-CONFIG_AGP_AMD64=m ++CONFIG_AGP=y ++CONFIG_AGP_AMD64=y + CONFIG_AGP_INTEL=m +-CONFIG_AGP_NVIDIA=m + CONFIG_AGP_SIS=m +-CONFIG_AGP_SWORKS=m + CONFIG_AGP_VIA=m +-CONFIG_AGP_EFFICEON=m + CONFIG_DRM=m + CONFIG_DRM_TDFX=m + CONFIG_DRM_R128=m +@@ -2189,10 +1931,8 @@ + CONFIG_CARDMAN_4000=m + CONFIG_CARDMAN_4040=m + CONFIG_MWAVE=m +-CONFIG_SCx200_GPIO=m + CONFIG_PC8736x_GPIO=m + CONFIG_NSC_GPIO=m +-CONFIG_CS5535_GPIO=m + # CONFIG_RAW_DRIVER is not set + CONFIG_HPET=y + # CONFIG_HPET_RTC_IRQ is not set +@@ -2241,10 +1981,6 @@ + CONFIG_I2C_PARPORT_LIGHT=m + CONFIG_I2C_PROSAVAGE=m + CONFIG_I2C_SAVAGE4=m +-CONFIG_SCx200_I2C=m +-CONFIG_SCx200_I2C_SCL=12 +-CONFIG_SCx200_I2C_SDA=13 +-CONFIG_SCx200_ACB=m + CONFIG_I2C_SIS5595=m + CONFIG_I2C_SIS630=m + CONFIG_I2C_SIS96X=m +@@ -2397,7 +2133,6 @@ + CONFIG_VIDEO_BT848=m + CONFIG_VIDEO_BT848_DVB=y + CONFIG_VIDEO_SAA6588=m +-CONFIG_VIDEO_PMS=m + CONFIG_VIDEO_BWQCAM=m + CONFIG_VIDEO_CQCAM=m + CONFIG_VIDEO_W9966=m +@@ -2417,7 +2152,6 @@ + CONFIG_VIDEO_ZORAN_LML33=m + CONFIG_VIDEO_ZORAN_LML33R10=m + CONFIG_VIDEO_ZORAN_AVS6EYES=m +-CONFIG_VIDEO_MEYE=m + CONFIG_VIDEO_SAA7134=m + CONFIG_VIDEO_SAA7134_ALSA=m + CONFIG_VIDEO_SAA7134_DVB=m +@@ -2458,21 +2192,9 @@ + # + # Radio Adapters + # +-CONFIG_RADIO_CADET=m +-CONFIG_RADIO_RTRACK=m +-CONFIG_RADIO_RTRACK2=m +-CONFIG_RADIO_AZTECH=m +-CONFIG_RADIO_GEMTEK=m + CONFIG_RADIO_GEMTEK_PCI=m + CONFIG_RADIO_MAXIRADIO=m + CONFIG_RADIO_MAESTRO=m +-CONFIG_RADIO_SF16FMI=m +-CONFIG_RADIO_SF16FMR2=m +-CONFIG_RADIO_TERRATEC=m +-CONFIG_RADIO_TRUST=m +-CONFIG_RADIO_TYPHOON=m +-CONFIG_RADIO_TYPHOON_PROC_FS=y +-CONFIG_RADIO_ZOLTRIX=m + CONFIG_USB_DSBR=m + + # +@@ -2634,9 +2356,6 @@ + # CONFIG_FB_S1D13XXX is not set + # CONFIG_FB_NVIDIA is not set + # CONFIG_FB_RIVA is not set +-CONFIG_FB_I810=m +-CONFIG_FB_I810_GTF=y +-# CONFIG_FB_I810_I2C is not set + CONFIG_FB_INTEL=m + # CONFIG_FB_INTEL_DEBUG is not set + CONFIG_FB_INTEL_I2C=y +@@ -2662,7 +2381,6 @@ + # CONFIG_FB_KYRO is not set + # CONFIG_FB_3DFX is not set + # CONFIG_FB_VOODOO1 is not set +-# CONFIG_FB_CYBLA is not set + # CONFIG_FB_TRIDENT is not set + # CONFIG_FB_GEODE is not set + # CONFIG_FB_VIRTUAL is not set +@@ -2673,7 +2391,6 @@ + CONFIG_VGA_CONSOLE=y + # CONFIG_VGACON_SOFT_SCROLLBACK is not set + CONFIG_VIDEO_SELECT=y +-CONFIG_MDA_CONSOLE=m + CONFIG_DUMMY_CONSOLE=y + CONFIG_FRAMEBUFFER_CONSOLE=y + # CONFIG_FRAMEBUFFER_CONSOLE_ROTATION is not set +@@ -2732,7 +2449,6 @@ + # + CONFIG_SND_MPU401_UART=m + CONFIG_SND_OPL3_LIB=m +-CONFIG_SND_OPL4_LIB=m + CONFIG_SND_VX_LIB=m + CONFIG_SND_AC97_CODEC=m + CONFIG_SND_AC97_BUS=m +@@ -2744,43 +2460,6 @@ + CONFIG_SND_MPU401=m + + # +-# ISA devices +-# +-CONFIG_SND_AD1848_LIB=m +-CONFIG_SND_CS4231_LIB=m +-CONFIG_SND_ADLIB=m +-CONFIG_SND_AD1816A=m +-CONFIG_SND_AD1848=m +-CONFIG_SND_ALS100=m +-CONFIG_SND_AZT2320=m +-CONFIG_SND_CMI8330=m +-CONFIG_SND_CS4231=m +-CONFIG_SND_CS4232=m +-CONFIG_SND_CS4236=m +-CONFIG_SND_DT019X=m +-CONFIG_SND_ES968=m +-CONFIG_SND_ES1688=m +-CONFIG_SND_ES18XX=m +-CONFIG_SND_GUS_SYNTH=m +-CONFIG_SND_GUSCLASSIC=m +-CONFIG_SND_GUSEXTREME=m +-CONFIG_SND_GUSMAX=m +-CONFIG_SND_INTERWAVE=m +-CONFIG_SND_INTERWAVE_STB=m +-CONFIG_SND_OPL3SA2=m +-CONFIG_SND_OPTI92X_AD1848=m +-CONFIG_SND_OPTI92X_CS4231=m +-CONFIG_SND_OPTI93X=m +-CONFIG_SND_MIRO=m +-CONFIG_SND_SB8=m +-CONFIG_SND_SB16=m +-CONFIG_SND_SBAWE=m +-CONFIG_SND_SB16_CSP=y +-CONFIG_SND_SGALAXY=m +-CONFIG_SND_SSCAPE=m +-CONFIG_SND_WAVEFRONT=m +- +-# + # PCI devices + # + CONFIG_SND_AD1889=m +@@ -2800,7 +2479,6 @@ + CONFIG_SND_CS4281=m + CONFIG_SND_CS46XX=m + CONFIG_SND_CS46XX_NEW_DSP=y +-CONFIG_SND_CS5535AUDIO=m + CONFIG_SND_DARLA20=m + CONFIG_SND_GINA20=m + CONFIG_SND_LAYLA20=m +@@ -3123,7 +2801,6 @@ + # + # LED drivers + # +-CONFIG_LEDS_NET48XX=m + + # + # LED Triggers +@@ -3142,6 +2819,7 @@ + CONFIG_INFINIBAND_ADDR_TRANS=y + CONFIG_INFINIBAND_MTHCA=m + CONFIG_INFINIBAND_MTHCA_DEBUG=y ++CONFIG_INFINIBAND_IPATH=m + CONFIG_INFINIBAND_AMSO1100=m + # CONFIG_INFINIBAND_AMSO1100_DEBUG is not set + CONFIG_INFINIBAND_IPOIB=m +@@ -3160,12 +2838,7 @@ + # + # CONFIG_EDAC_DEBUG is not set + CONFIG_EDAC_MM_EDAC=m +-CONFIG_EDAC_AMD76X=m +-CONFIG_EDAC_E7XXX=m + CONFIG_EDAC_E752X=m +-CONFIG_EDAC_I82875P=m +-CONFIG_EDAC_I82860=m +-CONFIG_EDAC_R82600=m + CONFIG_EDAC_POLL=y + + # +@@ -3216,6 +2889,13 @@ + CONFIG_INTEL_IOATDMA=m + + # ++# Firmware Drivers ++# ++CONFIG_EDD=m ++CONFIG_DELL_RBU=m ++CONFIG_DCDBAS=m ++ ++# + # File systems + # + CONFIG_EXT2_FS=y +@@ -3475,14 +3155,9 @@ + CONFIG_UNUSED_SYMBOLS=y + # CONFIG_DEBUG_KERNEL is not set + CONFIG_LOG_BUF_SHIFT=15 +-CONFIG_DEBUG_BUGVERBOSE=y + # CONFIG_DEBUG_FS is not set + # CONFIG_UNWIND_INFO is not set + # CONFIG_HEADERS_CHECK is not set +-CONFIG_EARLY_PRINTK=y +-CONFIG_X86_FIND_SMP_CONFIG=y +-CONFIG_X86_MPPARSE=y +-CONFIG_DOUBLEFAULT=y + + # + # Security options +@@ -3508,16 +3183,11 @@ + # + CONFIG_PAX_NOEXEC=y + # CONFIG_PAX_PAGEEXEC is not set +-CONFIG_PAX_SEGMEXEC=y +-# CONFIG_PAX_EMUTRAMP is not set +-# CONFIG_PAX_MPROTECT is not set +-CONFIG_PAX_KERNEXEC=y + + # + # Address Space Layout Randomization + # + CONFIG_PAX_ASLR=y +-# CONFIG_PAX_RANDKSTACK is not set + CONFIG_PAX_RANDUSTACK=y + CONFIG_PAX_RANDMMAP=y + +@@ -3525,7 +3195,6 @@ + # Miscellaneous hardening features + # + CONFIG_PAX_MEMORY_SANITIZE=y +-CONFIG_PAX_MEMORY_UDEREF=y + + # + # Grsecurity +@@ -3661,10 +3330,10 @@ + CONFIG_CRYPTO_BLOWFISH=m + CONFIG_CRYPTO_TWOFISH=m + CONFIG_CRYPTO_TWOFISH_COMMON=m +-CONFIG_CRYPTO_TWOFISH_586=m ++CONFIG_CRYPTO_TWOFISH_X86_64=m + CONFIG_CRYPTO_SERPENT=m + CONFIG_CRYPTO_AES=m +-CONFIG_CRYPTO_AES_586=m ++CONFIG_CRYPTO_AES_X86_64=m + CONFIG_CRYPTO_CAST5=m + CONFIG_CRYPTO_CAST6=m + CONFIG_CRYPTO_TEA=m +@@ -3679,9 +3348,6 @@ + # + # Hardware crypto devices + # +-CONFIG_CRYPTO_DEV_PADLOCK=m +-CONFIG_CRYPTO_DEV_PADLOCK_AES=m +-CONFIG_CRYPTO_DEV_PADLOCK_SHA=m + + # + # Library routines +@@ -3690,7 +3356,6 @@ + CONFIG_CRC16=m + CONFIG_CRC32=y + CONFIG_LIBCRC32C=m +-CONFIG_AUDIT_GENERIC=y + CONFIG_ZLIB_INFLATE=m + CONFIG_ZLIB_DEFLATE=m + CONFIG_TEXTSEARCH=y +@@ -3698,11 +3363,3 @@ + CONFIG_TEXTSEARCH_BM=m + CONFIG_TEXTSEARCH_FSM=m + CONFIG_PLIST=y +-CONFIG_GENERIC_HARDIRQS=y +-CONFIG_GENERIC_IRQ_PROBE=y +-CONFIG_GENERIC_PENDING_IRQ=y +-CONFIG_X86_SMP=y +-CONFIG_X86_HT=y +-CONFIG_X86_BIOS_REBOOT=y +-CONFIG_X86_TRAMPOLINE=y +-CONFIG_KTIME_SCALAR=y diff --git a/source/base-extra/kernel-grsec/config.patch b/source/base-extra/kernel-grsec/config.patch new file mode 100644 index 0000000..d49a720 --- /dev/null +++ b/source/base-extra/kernel-grsec/config.patch @@ -0,0 +1,265 @@ +--- .config 2007-01-06 18:53:58.000000000 +0100 ++++ .config.grsec 2007-01-06 18:53:46.000000000 +0100 +@@ -1,7 +1,7 @@ + # + # Automatically generated make config: don't edit +-# Linux kernel version: 2.6.19 +-# Thu Nov 30 14:53:54 2006 ++# Linux kernel version: 2.6.19.1 ++# Sat Jan 6 18:53:25 2007 + # + CONFIG_X86_32=y + CONFIG_GENERIC_TIME=y +@@ -112,11 +112,11 @@ + # CONFIG_X86_GENERICARCH is not set + # CONFIG_X86_ES7000 is not set + # CONFIG_M386 is not set +-CONFIG_M486=y ++# CONFIG_M486 is not set + # CONFIG_M586 is not set + # CONFIG_M586TSC is not set + # CONFIG_M586MMX is not set +-# CONFIG_M686 is not set ++CONFIG_M686=y + # CONFIG_MPENTIUMII is not set + # CONFIG_MPENTIUMIII is not set + # CONFIG_MPENTIUMM is not set +@@ -140,21 +140,24 @@ + CONFIG_RWSEM_XCHGADD_ALGORITHM=y + CONFIG_GENERIC_CALIBRATE_DELAY=y + CONFIG_X86_PPRO_FENCE=y +-CONFIG_X86_F00F_BUG=y + CONFIG_X86_WP_WORKS_OK=y + CONFIG_X86_INVLPG=y + CONFIG_X86_BSWAP=y + CONFIG_X86_POPAD_OK=y ++CONFIG_X86_CMPXCHG64=y + CONFIG_X86_ALIGNMENT_16=y ++CONFIG_X86_GOOD_APIC=y + CONFIG_X86_INTEL_USERCOPY=y ++CONFIG_X86_USE_PPRO_CHECKSUM=y ++CONFIG_X86_TSC=y + CONFIG_HPET_TIMER=y + CONFIG_HPET_EMULATE_RTC=y + CONFIG_NR_CPUS=8 + CONFIG_SCHED_SMT=y + # CONFIG_SCHED_MC is not set +-# CONFIG_PREEMPT_NONE is not set ++CONFIG_PREEMPT_NONE=y + # CONFIG_PREEMPT_VOLUNTARY is not set +-CONFIG_PREEMPT=y ++# CONFIG_PREEMPT is not set + CONFIG_PREEMPT_BKL=y + CONFIG_X86_LOCAL_APIC=y + CONFIG_X86_IO_APIC=y +@@ -204,7 +207,7 @@ + # CONFIG_HZ_100 is not set + CONFIG_HZ_250=y + # CONFIG_HZ_1000 is not set +-CONFIG_HZ=1000 ++CONFIG_HZ=250 + CONFIG_KEXEC=y + # CONFIG_CRASH_DUMP is not set + CONFIG_PHYSICAL_START=0x100000 +@@ -315,7 +318,6 @@ + # CONFIG_PCI_GOMMCONFIG is not set + # CONFIG_PCI_GODIRECT is not set + CONFIG_PCI_GOANY=y +-CONFIG_PCI_BIOS=y + CONFIG_PCI_DIRECT=y + CONFIG_PCI_MMCONFIG=y + CONFIG_PCIEPORTBUS=y +@@ -369,9 +371,6 @@ + # + CONFIG_HOTPLUG_PCI=y + CONFIG_HOTPLUG_PCI_FAKE=m +-CONFIG_HOTPLUG_PCI_COMPAQ=m +-# CONFIG_HOTPLUG_PCI_COMPAQ_NVRAM is not set +-CONFIG_HOTPLUG_PCI_IBM=m + CONFIG_HOTPLUG_PCI_ACPI=m + CONFIG_HOTPLUG_PCI_ACPI_IBM=m + # CONFIG_HOTPLUG_PCI_CPCI is not set +@@ -571,6 +570,7 @@ + CONFIG_IP_NF_MATCH_OWNER=m + CONFIG_IP_NF_MATCH_ADDRTYPE=m + CONFIG_IP_NF_MATCH_HASHLIMIT=m ++CONFIG_IP_NF_MATCH_STEALTH=m + CONFIG_IP_NF_FILTER=m + CONFIG_IP_NF_TARGET_REJECT=m + CONFIG_IP_NF_TARGET_LOG=m +@@ -928,9 +928,6 @@ + CONFIG_MTD_JEDECPROBE=m + CONFIG_MTD_GEN_PROBE=m + # CONFIG_MTD_CFI_ADV_OPTIONS is not set +-# CONFIG_MTD_CFI_NOSWAP is not set +-# CONFIG_MTD_CFI_BE_BYTE_SWAP is not set +-# CONFIG_MTD_CFI_LE_BYTE_SWAP is not set + CONFIG_MTD_MAP_BANK_WIDTH_1=y + CONFIG_MTD_MAP_BANK_WIDTH_2=y + CONFIG_MTD_MAP_BANK_WIDTH_4=y +@@ -3300,7 +3297,6 @@ + # Pseudo filesystems + # + CONFIG_PROC_FS=y +-CONFIG_PROC_KCORE=y + CONFIG_PROC_SYSCTL=y + CONFIG_SYSFS=y + CONFIG_TMPFS=y +@@ -3491,6 +3487,148 @@ + # + # Security options + # ++ ++# ++# PaX ++# ++CONFIG_PAX=y ++ ++# ++# PaX Control ++# ++CONFIG_PAX_SOFTMODE=y ++CONFIG_PAX_EI_PAX=y ++CONFIG_PAX_PT_PAX_FLAGS=y ++# CONFIG_PAX_NO_ACL_FLAGS is not set ++CONFIG_PAX_HAVE_ACL_FLAGS=y ++# CONFIG_PAX_HOOK_ACL_FLAGS is not set ++ ++# ++# Non-executable pages ++# ++CONFIG_PAX_NOEXEC=y ++# CONFIG_PAX_PAGEEXEC is not set ++CONFIG_PAX_SEGMEXEC=y ++# CONFIG_PAX_EMUTRAMP is not set ++# CONFIG_PAX_MPROTECT is not set ++CONFIG_PAX_KERNEXEC=y ++ ++# ++# Address Space Layout Randomization ++# ++CONFIG_PAX_ASLR=y ++# CONFIG_PAX_RANDKSTACK is not set ++CONFIG_PAX_RANDUSTACK=y ++CONFIG_PAX_RANDMMAP=y ++ ++# ++# Miscellaneous hardening features ++# ++CONFIG_PAX_MEMORY_SANITIZE=y ++CONFIG_PAX_MEMORY_UDEREF=y ++ ++# ++# Grsecurity ++# ++CONFIG_GRKERNSEC=y ++# CONFIG_GRKERNSEC_LOW is not set ++CONFIG_GRKERNSEC_MEDIUM=y ++# CONFIG_GRKERNSEC_HIGH is not set ++# CONFIG_GRKERNSEC_CUSTOM is not set ++ ++# ++# Address Space Protection ++# ++# CONFIG_GRKERNSEC_KMEM is not set ++# CONFIG_GRKERNSEC_IO is not set ++CONFIG_GRKERNSEC_PROC_MEMMAP=y ++CONFIG_GRKERNSEC_BRUTE=y ++CONFIG_GRKERNSEC_MODSTOP=y ++# CONFIG_GRKERNSEC_HIDESYM is not set ++ ++# ++# Role Based Access Control Options ++# ++CONFIG_GRKERNSEC_ACL_HIDEKERN=y ++CONFIG_GRKERNSEC_ACL_MAXTRIES=3 ++CONFIG_GRKERNSEC_ACL_TIMEOUT=30 ++ ++# ++# Filesystem Protections ++# ++CONFIG_GRKERNSEC_PROC=y ++CONFIG_GRKERNSEC_PROC_USER=y ++CONFIG_GRKERNSEC_PROC_USERGROUP=y ++CONFIG_GRKERNSEC_PROC_GID=60 ++CONFIG_GRKERNSEC_PROC_ADD=y ++CONFIG_GRKERNSEC_LINK=y ++CONFIG_GRKERNSEC_FIFO=y ++CONFIG_GRKERNSEC_CHROOT=y ++CONFIG_GRKERNSEC_CHROOT_MOUNT=y ++CONFIG_GRKERNSEC_CHROOT_DOUBLE=y ++CONFIG_GRKERNSEC_CHROOT_PIVOT=y ++CONFIG_GRKERNSEC_CHROOT_CHDIR=y ++CONFIG_GRKERNSEC_CHROOT_CHMOD=y ++CONFIG_GRKERNSEC_CHROOT_FCHDIR=y ++CONFIG_GRKERNSEC_CHROOT_MKNOD=y ++CONFIG_GRKERNSEC_CHROOT_SHMAT=y ++CONFIG_GRKERNSEC_CHROOT_UNIX=y ++CONFIG_GRKERNSEC_CHROOT_FINDTASK=y ++CONFIG_GRKERNSEC_CHROOT_NICE=y ++CONFIG_GRKERNSEC_CHROOT_SYSCTL=y ++CONFIG_GRKERNSEC_CHROOT_CAPS=y ++ ++# ++# Kernel Auditing ++# ++CONFIG_GRKERNSEC_AUDIT_GROUP=y ++CONFIG_GRKERNSEC_AUDIT_GID=61 ++CONFIG_GRKERNSEC_EXECLOG=y ++# CONFIG_GRKERNSEC_RESLOG is not set ++CONFIG_GRKERNSEC_CHROOT_EXECLOG=y ++CONFIG_GRKERNSEC_AUDIT_CHDIR=y ++CONFIG_GRKERNSEC_AUDIT_MOUNT=y ++CONFIG_GRKERNSEC_AUDIT_IPC=y ++CONFIG_GRKERNSEC_SIGNAL=y ++CONFIG_GRKERNSEC_FORKFAIL=y ++CONFIG_GRKERNSEC_TIME=y ++CONFIG_GRKERNSEC_PROC_IPADDR=y ++ ++# ++# Executable Protections ++# ++CONFIG_GRKERNSEC_EXECVE=y ++CONFIG_GRKERNSEC_SHM=y ++CONFIG_GRKERNSEC_DMESG=y ++CONFIG_GRKERNSEC_RANDPID=y ++CONFIG_GRKERNSEC_TPE=y ++CONFIG_GRKERNSEC_TPE_ALL=y ++# CONFIG_GRKERNSEC_TPE_INVERT is not set ++CONFIG_GRKERNSEC_TPE_GID=62 ++ ++# ++# Network Protections ++# ++CONFIG_GRKERNSEC_RANDNET=y ++CONFIG_GRKERNSEC_SOCKET=y ++CONFIG_GRKERNSEC_SOCKET_ALL=y ++CONFIG_GRKERNSEC_SOCKET_ALL_GID=63 ++CONFIG_GRKERNSEC_SOCKET_CLIENT=y ++CONFIG_GRKERNSEC_SOCKET_CLIENT_GID=64 ++CONFIG_GRKERNSEC_SOCKET_SERVER=y ++CONFIG_GRKERNSEC_SOCKET_SERVER_GID=65 ++ ++# ++# Sysctl support ++# ++CONFIG_GRKERNSEC_SYSCTL=y ++# CONFIG_GRKERNSEC_SYSCTL_ON is not set ++ ++# ++# Logging Options ++# ++CONFIG_GRKERNSEC_FLOODTIME=10 ++CONFIG_GRKERNSEC_FLOODBURST=4 + CONFIG_KEYS=y + CONFIG_KEYS_DEBUG_PROC_KEYS=y + CONFIG_SECURITY=y +@@ -3513,7 +3651,7 @@ + CONFIG_CRYPTO_MD4=m + CONFIG_CRYPTO_MD5=y + CONFIG_CRYPTO_SHA1=m +-CONFIG_CRYPTO_SHA256=m ++CONFIG_CRYPTO_SHA256=y + CONFIG_CRYPTO_SHA512=m + CONFIG_CRYPTO_WP512=m + CONFIG_CRYPTO_TGR192=m diff --git a/source/base-extra/kernel-grsec/grsec b/source/base-extra/kernel-grsec/grsec new file mode 100644 index 0000000..8f0ad3e --- /dev/null +++ b/source/base-extra/kernel-grsec/grsec @@ -0,0 +1,50 @@ +# grsecurity sysctl configuration file +# remember, if you change anything you must restart your computer +# see more in /usr/share/doc/kernel-grsec-$pkgver/readme.frugalware + +kernel.grsecurity.audit_chdir=0 +kernel.grsecurity.audit_gid=61 +kernel.grsecurity.audit_group=0 +kernel.grsecurity.audit_ipc=0 +kernel.grsecurity.audit_mount=0 +kernel.grsecurity.chroot_caps=0 +kernel.grsecurity.chroot_deny_chmod=0 +kernel.grsecurity.chroot_deny_chroot=0 +kernel.grsecurity.chroot_deny_fchdir=0 +kernel.grsecurity.chroot_deny_mknod=0 +kernel.grsecurity.chroot_deny_mount=0 +kernel.grsecurity.chroot_deny_pivot=0 +kernel.grsecurity.chroot_deny_shmat=0 +kernel.grsecurity.chroot_deny_sysctl=0 +kernel.grsecurity.chroot_deny_unix=0 +kernel.grsecurity.chroot_enforce_chdir=0 +kernel.grsecurity.chroot_execlog=0 +kernel.grsecurity.chroot_findtask=0 +kernel.grsecurity.chroot_restrict_nice=0 +kernel.grsecurity.destroy_unused_shm=0 +kernel.grsecurity.dmesg=1 +kernel.grsecurity.exec_logging=0 +kernel.grsecurity.execve_limiting=0 +kernel.grsecurity.fifo_restrictions=0 +kernel.grsecurity.forkfail_logging=0 +kernel.grsecurity.linking_restrictions=0 +kernel.grsecurity.rand_pids=1 +#kernel.grsecurity.rand_tcp_src_ports=1 +kernel.grsecurity.signal_logging=1 +kernel.grsecurity.socket_all=0 +kernel.grsecurity.socket_all_gid=63 +kernel.grsecurity.socket_client=0 +kernel.grsecurity.socket_client_gid=64 +kernel.grsecurity.socket_server=0 +kernel.grsecurity.socket_server_gid=65 +kernel.grsecurity.timechange_logging=1 +kernel.grsecurity.tpe=0 +kernel.grsecurity.tpe_gid=62 +kernel.grsecurity.tpe_restrict_all=0 + +# !warning! +# if you set this value to 1, then the grsecurity \ +# variables are locked until next reboot. +# so think about it ;) + +kernel.grsecurity.grsec_lock=0 \ No newline at end of file diff --git a/source/base-extra/kernel-grsec/kernel-grsec.install b/source/base-extra/kernel-grsec/kernel-grsec.install new file mode 100644 index 0000000..7a986f2 --- /dev/null +++ b/source/base-extra/kernel-grsec/kernel-grsec.install @@ -0,0 +1,116 @@ +grub_convert() +{ + disk=`echo $1|sed 's/[0-9]*$//'` + partnum=`echo $1|sed 's|/dev/[a-z]*||'` + grubdisk=`grep $disk /boot/grub/device.map |sed 's/(\(.*\))\t.*/\1/'` + echo "($grubdisk,$(($partnum-1)))" +} + +bootdev=`df /boot|grep ^/dev|tr -s ' '|cut -d ' ' -f 1` +grubbootdev=`grub_convert $bootdev` +rootdev=`df /|grep ^/dev|tr -s ' '|cut -d ' ' -f 1` + +# hack for /boot +if [ "`df /boot|grep ^/dev|tr -s ' '|cut -d ' ' -f 1`" = \ + "`df /|grep ^/dev|tr -s ' '|cut -d ' ' -f 1`" ]; then + bootstring=/boot +fi + +#remove $1 kernel patchset +rmgr() + { + MENU="/boot/grub/menu.lst" + if [ -e $MENU ]; then + echo "removing $1 entries from grub menu..." + # grep 2 menu.lst ! $1 + grep -v $1 $MENU >> /tmp/.menu.lst + ## backup the menu.lst, who knows :p + mv -f $MENU $MENU.old + ## mv the tmpMENU without our $patchset to menu.lst + mv -f /tmp/.menu.lst $MENU + else + echo "Can't remove the kernel entry from your menu.lst :(. Please remove the entry manually." + fi +} + +# arg 1: the new package version +post_install() +{ + kernelver=`ls /boot/vmlinuz-*-grsec-fw*|sed 's|/boot/vmlinuz-||'` + + if ! [ -e /boot/vmlinuz-grsec ]; then + cd /boot + ln -sf vmlinuz-$kernelver vmlinuz-grsec + ln -sf config-$kernelver config-grsec + ln -sf System.map-$kernelver System.map-grsec + fi + if [ -e /boot/grub/menu.lst ]; then + if ! grep -q "Frugalware.*Grsecurity" /boot/grub/menu.lst; then + echo >>/boot/grub/menu.lst + echo "title `cat /etc/frugalware-release` Grsecurity - $kernelver" >>/boot/grub/menu.lst + echo " kernel $grubbootdev$bootstring/vmlinuz-grsec ro quiet root=$rootdev vga=788 pax_softmode=0" >>/boot/grub/menu.lst + fi + fi + + if ! grep -q '^grsec_procview:' /etc/group ; then + groupadd -g 60 grsec_procview + fi + if ! grep -q '^grsec_audit:' /etc/group ; then + groupadd -g 61 grsec_audit + fi + if ! grep -q '^grsec_tpe:' /etc/group ; then + groupadd -g 62 grsec_tpe + fi + if ! grep -q '^grsec_s_all:' /etc/group ; then + groupadd -g 63 grsec_s_all + fi + if ! grep -q '^grsec_s_client:' /etc/group ; then + groupadd -g 64 grsec_s_client + fi + if ! grep -q '^grsec_s_server:' /etc/group ; then + groupadd -g 65 grsec_s_server + fi + + chkconfig --add rc.grsec + +} + +# arg 1: the new package version +# arg 2: the old package version +post_upgrade() +{ + fwver=`cat /etc/frugalware-release|sed 's/Frugalware \(.*\) (.*)/\1/'` + post_install $1 + [ -e /boot/grub/menu.lst ] && sed -i "s/^\(title Frugalware $fwver (.*) Grsecurity -\) [^ ]*$/\1 $kernelver/" /boot/grub/menu.lst +} + +pre_remove() +{ + chkconfig --del rc.grsec +} + +post_remove() +{ + if [ -L /boot/vmlinuz-grsec ]; then + cd /boot + rm vmlinuz-grsec + rm config-grsec + rm System.map-grsec + fi + + groupdel grsec_procview >/dev/null 2>&1 + groupdel grsec_audit >/dev/null 2>&1 + groupdel grsec_tpe >/dev/null 2>&1 + groupdel grsec_s_all >/dev/null 2>&1 + groupdel grsec_s_client >/dev/null 2>&1 + groupdel grsec_s_server >/dev/null 2>&1 + + rmgr "grsec" +} + +op=$1 +shift + +$op $* + +# vim: ft=sh diff --git a/source/base-extra/kernel-grsec/rc.grsec b/source/base-extra/kernel-grsec/rc.grsec new file mode 100644 index 0000000..4886198 --- /dev/null +++ b/source/base-extra/kernel-grsec/rc.grsec @@ -0,0 +1,40 @@ +#!/bin/bash + +# (c) 2005 Zoltan Kiss +# rc.grsec for Frugalware +# distributed under GPL License + +# chkconfig: 345 01 87 +# description: This script sets up Grsecurity sysctl variables + +source /lib/initscripts/functions +TEXTDOMAIN=grsec +TEXTDOMAINDIR=/lib/initscripts/messages + +actions=(start stop) + +rc_start() +{ + msg $"Setting up Grsecurity sysctl values" + if uname -r | grep -q grsec-fw ; then + if (( $(cat /proc/sys/kernel/grsecurity/grsec_lock) == 0 )) ; then + /sbin/sysctl -q -p /etc/sysconfig/grsec + ok $? + else + ok 999 + hint $"Grsecurity settings are locked" + fi + else + ok 999 + hint $"You doesn't run the grsec-fw kernel" + fi +} + +rc_stop() +{ + /bin/true +} + +rc_exec $1 + +# vim: ft=sh diff --git a/source/base-extra/kernel-grsec/rc.grsec-de.po b/source/base-extra/kernel-grsec/rc.grsec-de.po new file mode 100644 index 0000000..a9c39e1 --- /dev/null +++ b/source/base-extra/kernel-grsec/rc.grsec-de.po @@ -0,0 +1,29 @@ +# rc.grsec. +# Copyright (C) 2005 THE rc.grsec'S COPYRIGHT HOLDER +# This file is distributed under the same license as the rc.grsec package. +# Marcus Habermehl , 2005. +# +msgid "" +msgstr "" +"Project-Id-Version: rc.grsec\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2005-11-20 00:35+0100\n" +"PO-Revision-Date: 2005-11-20 00:38+0100\n" +"Last-Translator: Marcus Habermehl \n" +"Language-Team: German \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ISO-8859-1\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: rc.grsec:17 +msgid "Setting up Grsecurity sysctl values" +msgstr "Setze Grsecurity sysctl Einstellungen" + +#: rc.grsec:24 +msgid "Grsecurity settings are locked" +msgstr "Grsecurity Einstellungen sind gesperrt" + +#: rc.grsec:28 +msgid "You doesn't run the grsec-fw kernel" +msgstr "Sie benutzen nicht den grsec-fw Kernel" diff --git a/source/base-extra/kernel-grsec/rc.grsec-hu.po b/source/base-extra/kernel-grsec/rc.grsec-hu.po new file mode 100644 index 0000000..20fe256 --- /dev/null +++ b/source/base-extra/kernel-grsec/rc.grsec-hu.po @@ -0,0 +1,29 @@ +# rc.grsec. +# Copyright (C) 2005 THE rc.grsec'S COPYRIGHT HOLDER +# This file is distributed under the same license as the rc.grsec package. +# Marcus Habermehl , 2005. +# +msgid "" +msgstr "" +"Project-Id-Version: rc.grsec\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2005-11-20 00:35+0100\n" +"PO-Revision-Date: 2005-11-20 00:37+0100\n" +"Last-Translator: Marcus Habermehl \n" +"Language-Team: Hungarian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ISO-8859-2\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: rc.grsec:17 +msgid "Setting up Grsecurity sysctl values" +msgstr "Grsecurity sysctl beállítások alkalmazása" + +#: rc.grsec:24 +msgid "Grsecurity settings are locked" +msgstr "A Grsecurity beállításai zárolva vannak" + +#: rc.grsec:28 +msgid "You doesn't run the grsec-fw kernel" +msgstr "" diff --git a/source/base-extra/kernel-grsec/rc.grsec.pot b/source/base-extra/kernel-grsec/rc.grsec.pot new file mode 100644 index 0000000..5c6e512 --- /dev/null +++ b/source/base-extra/kernel-grsec/rc.grsec.pot @@ -0,0 +1,29 @@ +# rc.grsec. +# Copyright (C) YEAR THE rc.grsec'S COPYRIGHT HOLDER +# This file is distributed under the same license as the rc.grsec package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: rc.grsec\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2005-11-20 00:35+0100\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: 8bit\n" + +#: rc.grsec:17 +msgid "Setting up Grsecurity sysctl values" +msgstr "" + +#: rc.grsec:24 +msgid "Grsecurity settings are locked" +msgstr "" + +#: rc.grsec:28 +msgid "You doesn't run the grsec-fw kernel" +msgstr "" From vmiklos at frugalware.org Sat Sep 22 19:48:04 2007 From: vmiklos at frugalware.org (VMiklos) Date: Sat Sep 22 19:48:07 2007 Subject: [Frugalware-git] bmf: gradm-2.1.11-1bmf1-i686 Message-ID: <20070922174804.05A791768005@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=bmf.git;a=commitdiff;h=c1e81b802aff7b104958a4823cc25c27b7553eaf commit c1e81b802aff7b104958a4823cc25c27b7553eaf Author: VMiklos Date: Sat Sep 22 19:46:18 2007 +0200 gradm-2.1.11-1bmf1-i686 import from current and upgrade to be in sync with kernel-grsec diff --git a/source/base-extra/gradm/FrugalBuild b/source/base-extra/gradm/FrugalBuild new file mode 100644 index 0000000..a115e28 --- /dev/null +++ b/source/base-extra/gradm/FrugalBuild @@ -0,0 +1,26 @@ +# Compiling Time: 0.06 SBU +# Maintainer: crazy +# Contributor: Zoltan Kiss + +pkgname=gradm +pkgver=2.1.11 +# lynx --dump http://www.grsecurity.net/~spender|grep gradm|sed -n 's/.*-\(.*\)\.t.*/\1/;1 p' +grtime=200708011700 +pkgrel=1bmf1 +pkgdesc="Grsecurity administration tools" +url="http://www.grsecurity.net" +depends=('glibc') +rodepends=('kernel-grsec') +groups=('base-extra') +archs=('i686' 'x86_64') +up2date="lynx -dump http://www.grsecurity.net/download.php|grep -1 Latest|sed -n 's/ //g;3 p'" +source=(http://www.grsecurity.net/test/gradm-$pkgver-$grtime.tar.gz) +sha1sums=('395a847de929d2f1dcdf71a02417e6f0bad1fd50') + +build() +{ + Fcd gradm2 + make nopam + make install DESTDIR=$Fdestdir + Frm dev/ +} From vmiklos at frugalware.org Sat Sep 22 21:25:46 2007 From: vmiklos at frugalware.org (VMiklos) Date: Sat Sep 22 21:25:57 2007 Subject: [Frugalware-git] frugalware-current: fakeroot-1.8-1-i686 Message-ID: <20070922192547.057C113A4021@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=2978eda46455e1702533247bbc1b93783444794b commit 2978eda46455e1702533247bbc1b93783444794b Author: VMiklos Date: Sat Sep 22 20:03:38 2007 +0200 fakeroot-1.8-1-i686 version bump diff --git a/source/devel/fakeroot/FrugalBuild b/source/devel/fakeroot/FrugalBuild index 4def5e3..23055bf 100644 --- a/source/devel/fakeroot/FrugalBuild +++ b/source/devel/fakeroot/FrugalBuild @@ -3,7 +3,7 @@ # Maintainer: VMiklos pkgname=fakeroot -pkgver=1.7.1 +pkgver=1.8 pkgrel=1 pkgdesc="Gives a fake root environment" url="http://packages.debian.org/unstable/utils/fakeroot" @@ -13,5 +13,5 @@ groups=('devel' 'devel-core') archs=('i686' 'x86_64') up2date="lynx -dump http://ftp.debian.org/debian/pool/main/f/fakeroot/?M=A|grep gz$|sed -n 's/.*_\(.*\)\.t.*/\1/;$ p'" source=(http://ftp.debian.org/debian/pool/main/f/fakeroot/${pkgname}_$pkgver.tar.gz) -sha1sums=('eaa63920cc0c609635a4bff8ceeb3e81a6831480') +sha1sums=('6306cfea5958869e7b8ff5e8813c6fdf58237c02') # optimization OK From vmiklos at frugalware.org Sat Sep 22 23:17:44 2007 From: vmiklos at frugalware.org (VMiklos) Date: Sat Sep 22 23:17:46 2007 Subject: [Frugalware-git] frugalware-current: ifplugd-0.28-2-i686 Message-ID: <20070922211744.57F6E13A4007@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=8fde90ee03991128f8d95678a7987a14a05fa4d0 commit 8fde90ee03991128f8d95678a7987a14a05fa4d0 Author: VMiklos Date: Sat Sep 22 23:16:12 2007 +0200 ifplugd-0.28-2-i686 extend backup() change m8r to me some cleanup diff --git a/source/network-extra/ifplugd/FrugalBuild b/source/network-extra/ifplugd/FrugalBuild index 312ab6c..b789dc5 100644 --- a/source/network-extra/ifplugd/FrugalBuild +++ b/source/network-extra/ifplugd/FrugalBuild @@ -1,14 +1,15 @@ # Compiling Time: 0.02 SBU -# Maintainer: AlexExtreme +# Maintainer: VMiklos +# Contributor: AlexExtreme pkgname=ifplugd pkgver=0.28 -pkgrel=1 -pkgdesc="ifplugd is a Linux daemon which will automatically configure your ethernet device when a cable is plugged in" +pkgrel=2 +pkgdesc="A daemon which automatically configures your ethernet device when a cable is plugged in." url="http://0pointer.de/lennart/projects/ifplugd/" depends=('libdaemon' 'bash') groups=('network-extra') -backup=(etc/ifplugd/ifplugd.conf) +backup=(etc/ifplugd/ifplugd.{action,conf}) archs=('i686' 'x86_64') up2date="lynx -dump http://0pointer.de/lennart/projects/ifplugd/ | grep -i 'current release' | sed 's/.*[0-9]\]//'" source=($url/$pkgname-$pkgver.tar.gz iface-fix.patch rc.ifplugd ifplugd.action) @@ -16,11 +17,9 @@ sha1sums=('0f00e6b544c0b7ed6c66fc58cb74f038d3fba77a' \ 'e1160bd73993b9f3056b6ae7a63842dcfa0db871' \ '0eb6bc0a8f8aae549b2728cb77139ed87a5e5ddb' \ '6ffa71577d8f89eb5edc7af2405f622155af322e') -Fconfopts="$Fconfopts --with-initdir=/etc/rc.d" build() { - Fcd - Fbuild + Fbuild --with-initdir=/etc/rc.d Frm /etc/rc.d/ifplugd Fexe /etc/ifplugd/ifplugd.action Fsed "-fwI -u0 -d10" "-fwI -u2 -d2" $Fdestdir/etc/ifplugd/ifplugd.conf From crazy at frugalware.org Sat Sep 22 23:37:20 2007 From: crazy at frugalware.org (crazy) Date: Sat Sep 22 23:37:22 2007 Subject: [Frugalware-git] frugalware-current: wxgtk-2.6.4-2-i686 Message-ID: <20070922213720.762BD13A4007@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=dfb4c7e860533cb5bf1f6f03d803a8d93a8a3cfa commit dfb4c7e860533cb5bf1f6f03d803a8d93a8a3cfa Author: crazy Date: Sat Sep 22 23:27:47 2007 +0200 wxgtk-2.6.4-2-i686 * rebuild with gtk+2 diff --git a/source/xlib-extra/wxgtk/FrugalBuild b/source/xlib-extra/wxgtk/FrugalBuild index 2fa2d71..3284d53 100644 --- a/source/xlib-extra/wxgtk/FrugalBuild +++ b/source/xlib-extra/wxgtk/FrugalBuild @@ -4,14 +4,14 @@ pkgname=wxgtk pkgver=2.6.4 -pkgrel=1 +pkgrel=2 pkgdesc="GTK+ implementation of wxWidgets API for GUI'" _F_sourceforge_dirname="wxwindows" _F_sourceforge_name="wxGTK" _F_sourceforge_ext=".tar.bz2" Finclude sourceforge url="http://www.wxwidgets.org/" -depends=('gtk+2' 'sdl' 'cppunit') +depends=('gtk+2>=2.12.0' 'sdl' 'cppunit') groups=('xlib-extra') archs=('i686' 'x86_64') options=('scriptlet') From vmiklos at frugalware.org Sat Sep 22 23:55:23 2007 From: vmiklos at frugalware.org (VMiklos) Date: Sat Sep 22 23:55:25 2007 Subject: [Frugalware-git] frugalware-current: vmware-5.5.5_56455-1-i686 Message-ID: <20070922215523.54EB813A4007@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=aae8f61dd92528b3d16fb5fe420088693ebafcbc commit aae8f61dd92528b3d16fb5fe420088693ebafcbc Author: VMiklos Date: Sat Sep 22 23:53:54 2007 +0200 vmware-5.5.5_56455-1-i686 version bump closes #2429 diff --git a/source/xapps-extra/vmware/FrugalBuild b/source/xapps-extra/vmware/FrugalBuild index 8f2eb85..fd0ef40 100644 --- a/source/xapps-extra/vmware/FrugalBuild +++ b/source/xapps-extra/vmware/FrugalBuild @@ -3,8 +3,8 @@ # Maintainer: Karoly CZOVEK pkgname=vmware -pkgver=5.5.4_44386 -anyver=109 +pkgver=5.5.5_56455 +anyver=113 pkgrel=1 license="vmware" pkgdesc="Emulate a complete PC on your PC without the usual performance overhead of most emulators" @@ -15,7 +15,7 @@ archs=('i686') up2date="lynx -dump $url |grep Latest|sed -ne 's/.*: \([^|]*\) |.*Build: \(.*\) | .*/\1_\2/; 1 p'" #source=(http://download2.vmware.com/software/wkst/VMware-workstation-`echo $pkgver|sed 's/_/-/'`.tar.gz \ source=(http://gd4.tuwien.ac.at/opsys/linux/gentoo/distfiles/VMware-workstation-`echo $pkgver|sed 's/_/-/'`.tar.gz \ - http://ftp.cvut.cz/vmware/vmware-any-any-update$anyver.tar.gz \ + http://platan.vc.cvut.cz/ftp/pub/vmware/vmware-any-any-update$anyver.tar.gz \ locations) options=('nobuild') @@ -65,6 +65,6 @@ build() done } -sha1sums=('93326b056734f849c46e6ccc7e0e207eaf42fb14'\ - '504380f59620ce47197975d5b326129fae6d7019'\ +sha1sums=('1a60e707076ce7f4e66c40c19331b3ebc1b907f6' \ + '695e01d1d09f2d33db8ad8e6e2274b8b4a74b96d' \ '70f87c3752207aacb5b74c34f6e835d2cd5a5f87') From crazy at frugalware.org Sat Sep 22 23:59:52 2007 From: crazy at frugalware.org (crazy) Date: Sat Sep 22 23:59:57 2007 Subject: [Frugalware-git] frugalware-current: wxgtk-u8-2.6.4-2-i686 Message-ID: <20070922215952.82C4C13A4007@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=aa48642d08763deb11a238aac2788b1577bbb818 commit aa48642d08763deb11a238aac2788b1577bbb818 Author: crazy Date: Sat Sep 22 23:52:17 2007 +0200 wxgtk-u8-2.6.4-2-i686 * rebuild with gtk+2 and friends diff --git a/source/xlib-extra/wxgtk-u8/FrugalBuild b/source/xlib-extra/wxgtk-u8/FrugalBuild index e4bd883..ca1adc9 100644 --- a/source/xlib-extra/wxgtk-u8/FrugalBuild +++ b/source/xlib-extra/wxgtk-u8/FrugalBuild @@ -4,14 +4,14 @@ pkgname=wxgtk-u8 pkgver=2.6.4 -pkgrel=1 +pkgrel=2 pkgdesc="GTK+ implementation of wxWidgets API for GUI unicode'" _F_sourceforge_dirname="wxwindows" _F_sourceforge_name="wxGTK" _F_sourceforge_ext=".tar.bz2" Finclude sourceforge url="http://www.wxwidgets.org/" -depends=('gtk+2' 'wxgtk>=2.6.4') +depends=('gtk+2>=2.12.0' 'wxgtk>=2.6.4-2') groups=('xlib-extra') archs=('i686' 'x86_64') options=('scriptlet') From boobaa at frugalware.org Sun Sep 23 00:06:17 2007 From: boobaa at frugalware.org (CSÉCSY László) Date: Sun Sep 23 00:06:19 2007 Subject: [Frugalware-git] frugalware-current: php-pear-db-1.7.13-1-i686 Message-ID: <20070922220617.2E27013A4007@genesis.frugalware.org> Git-Url: http://git.frugalware.org/gitweb/gitweb.cgi?p=frugalware-current.git;a=commitdiff;h=fbb4f95c154c817025f504e6f60260732fd085bf commit fbb4f95c154c817025f504e6f60260732fd085bf Author: CSÉCSY László Date: Sun Sep 23 00:04:53 2007 +0200 php-pear-db-1.7.13-1-i686 version bump diff --git a/source/devel-extra/php-pear-db/FrugalBuild b/source/devel-extra/php-pear-db/FrugalBuild index 4b2f1d4..613a2d5 100644 --- a/source/devel-extra/php-pear-db/FrugalBuild +++ b/source/devel-extra/php-pear-db/FrugalBuild @@ -2,8 +2,8 @@ # Maintainer: CSÉCSY László _F_pear_name="DB" -pkgver=1.7.12 +pkgver=1.7.13 pkgdesc="PEAR: database abstraction layer" depends=('php') Finclude pear -sha1sums=('7e14a2581e901eb094fdd1e021eb8bfb82375f88') +sha1sums=('86f2735e97e113d315c1912e76120c1825b8c63f') From vmiklos at frugalware.org Sun Sep 23 00:09:18 2007 From: vmiklos at frugalware.org (VMiklos) Date: Sun Sep 23 00:09:22 2007 Subject: [Frugalware-git] pacman-tools: rep