[arch-commits] Commit in glee/repos (8 files)
Date: Tuesday, March 19, 2013 @ 05:49:29 Author: speps Revision: 86549 archrelease: copy trunk to community-i686, community-x86_64 Added: glee/repos/community-i686/Makefile (from rev 86548, glee/trunk/Makefile) glee/repos/community-i686/PKGBUILD (from rev 86548, glee/trunk/PKGBUILD) glee/repos/community-i686/glee.pc (from rev 86548, glee/trunk/glee.pc) glee/repos/community-x86_64/Makefile (from rev 86548, glee/trunk/Makefile) glee/repos/community-x86_64/PKGBUILD (from rev 86548, glee/trunk/PKGBUILD) glee/repos/community-x86_64/glee.pc (from rev 86548, glee/trunk/glee.pc) Deleted: glee/repos/community-i686/PKGBUILD glee/repos/community-x86_64/PKGBUILD ---+ /PKGBUILD | 62 community-i686/Makefile | 55 +++ community-i686/PKGBUILD | 38 -- community-i686/glee.pc| 12 community-x86_64/Makefile | 55 +++ community-x86_64/PKGBUILD | 38 -- community-x86_64/glee.pc | 12 7 files changed, 196 insertions(+), 76 deletions(-) Copied: glee/repos/community-i686/Makefile (from rev 86548, glee/trunk/Makefile) === --- community-i686/Makefile (rev 0) +++ community-i686/Makefile 2013-03-19 04:49:29 UTC (rev 86549) @@ -0,0 +1,55 @@ +all: libGLee.so + +MAJOR=5 +MINOR=4 + +SOURCES = $(shell find . -name "*.c") + +SHARED_OBJS = $(SOURCES:.c=.shared.o) +STATIC_OBJS = $(SOURCES:.c=.static.o) + +EXTRA_CFLAGS= $(CFLAGS) +SHARED_CFLAGS= -Wall $(EXTRA_CFLAGS) -fPIC + +LDFLAGS= -Wl,-z,defs -Wl,--as-needed -Wl,--no-undefined +EXTRA_LDFLAGS= +LIBS=-lGL +EXTRA_LIBS= + +libGLee.so.$(MAJOR).$(MINOR): $(SHARED_OBJS) + g++ $(LDFLAGS) $(EXTRA_LDFLAGS) -shared \ + -Wl,-soname,libGLee.so.$(MAJOR) \ + -o libGLee.so.$(MAJOR).$(MINOR) \ + $+ -o $@ $(EXTRA_LIBS) $(LIBS) + +libGLee.so: libGLee.so.$(MAJOR).$(MINOR) + rm -f $@.$(MAJOR) + ln -s $@.$(MAJOR).$(MINOR) $@.$(MAJOR) + rm -f $@ + ln -s $@.$(MAJOR) $@ + +%.shared.o: %.cpp + g++ -o $@ -c $+ $(SHARED_CFLAGS) + +%.shared.o: %.c + gcc -o $@ -c $+ $(SHARED_CFLAGS) + +%.so : %.o + g++ $(LDFLAGS) $(EXTRA_LDFLAGS) -shared $^ -o $@ + +clean: + rm -f $(SHARED_OBJS) + rm -f $(FIXED_OBJS) + rm -f *.so *.so* *~ + +DESTDIR= + +install: libGLee.so + install -d "$(DESTDIR)/usr/lib/" + cp -a *.so* "$(DESTDIR)/usr/lib/" + install -d "$(DESTDIR)/usr/include/" + install -Dm644 *.h "$(DESTDIR)/usr/include/" + install -d "$(DESTDIR)/usr/lib/pkgconfig/" + install -Dm644 glee.pc "$(DESTDIR)/usr/lib/pkgconfig/" + install -d "$(DESTDIR)/usr/share/licenses/glee" + sed '9,32!d' readme.txt > "$(DESTDIR)/usr/share/licenses/glee/LICENSE" Deleted: community-i686/PKGBUILD === --- community-i686/PKGBUILD 2013-03-19 04:49:07 UTC (rev 86548) +++ community-i686/PKGBUILD 2013-03-19 04:49:29 UTC (rev 86549) @@ -1,38 +0,0 @@ -# $Id$ -# Maintainer : SpepS -# Contributor: Philipp Brüschweiler - -pkgname=glee -pkgver=5.4 -pkgrel=4 -pkgdesc="Free cross-platform extension loading library for OpenGL." -arch=('i686' 'x86_64') -url="http://elf-stone.com/glee.php"; -license=('BSD') -depends=('gcc-libs' 'libgl') -makedepends=('mesa') -source=("http://elf-stone.com/downloads/GLee/GLee-5.4.0-src.tar.gz";) -md5sums=('0bd03db136dbc075488b6c6e83f326ae') - -build() { - cd "$srcdir" - - [ "$CARCH" = 'x86_64' ] && export CXXFLAGS="$CXXFLAGS -fPIC" - - ./configure --prefix=/usr - make -} - -package() { - cd "$srcdir" - - # lib and headers - install -Dm755 libGLee.so "$pkgdir/usr/lib/libGLee.so" - install -Dm644 GLee.h "$pkgdir/usr/include/GLee.h" - - # license - install -Dm644 readme.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE" - sed -i '9,32!d' "$pkgdir/usr/share/licenses/$pkgname/LICENSE" -} - -# vim:set ts=2 sw=2 et: Copied: glee/repos/community-i686/PKGBUILD (from rev 86548, glee/trunk/PKGBUILD) === --- community-i686/PKGBUILD (rev 0) +++ community-i686/PKGBUILD 2013-03-19 04:49:29 UTC (rev 86549) @@ -0,0 +1,31 @@ +# $Id$ +# Maintainer : speps + +pkgname=glee +pkgver=5.4.0 +pkgrel=1 +pkgdesc="Free cross-platform extension loading library for OpenGL" +arch=('i686' 'x86_64') +url="http://elf-stone.com/glee.php"; +license=('custom:BSD') +depends=('gcc-libs' 'libgl') +makedepends=('mesa') +#source=("http://elf-stone.com/downloads/GLee/GLee-$pkgver-src.tar.gz";) +md5sums=('0bd03db136dbc075488b6c6e83f326ae' + '937a48856486291070943488fa2824d0' + 'b59e8d11402fb2ee6c4a92bf6916b3aa') +_spkg=GLee-$pkgver-src.tar.gz +
[arch-commits] Commit in glee/trunk (Makefile PKGBUILD glee.pc)
Date: Tuesday, March 19, 2013 @ 05:49:07 Author: speps Revision: 86548 upgpkg: glee 5.4.0-1 Added: glee/trunk/Makefile glee/trunk/glee.pc Modified: glee/trunk/PKGBUILD --+ Makefile | 55 +++ PKGBUILD | 35 ++- glee.pc | 12 3 files changed, 81 insertions(+), 21 deletions(-) Added: Makefile === --- Makefile(rev 0) +++ Makefile2013-03-19 04:49:07 UTC (rev 86548) @@ -0,0 +1,55 @@ +all: libGLee.so + +MAJOR=5 +MINOR=4 + +SOURCES = $(shell find . -name "*.c") + +SHARED_OBJS = $(SOURCES:.c=.shared.o) +STATIC_OBJS = $(SOURCES:.c=.static.o) + +EXTRA_CFLAGS= $(CFLAGS) +SHARED_CFLAGS= -Wall $(EXTRA_CFLAGS) -fPIC + +LDFLAGS= -Wl,-z,defs -Wl,--as-needed -Wl,--no-undefined +EXTRA_LDFLAGS= +LIBS=-lGL +EXTRA_LIBS= + +libGLee.so.$(MAJOR).$(MINOR): $(SHARED_OBJS) + g++ $(LDFLAGS) $(EXTRA_LDFLAGS) -shared \ + -Wl,-soname,libGLee.so.$(MAJOR) \ + -o libGLee.so.$(MAJOR).$(MINOR) \ + $+ -o $@ $(EXTRA_LIBS) $(LIBS) + +libGLee.so: libGLee.so.$(MAJOR).$(MINOR) + rm -f $@.$(MAJOR) + ln -s $@.$(MAJOR).$(MINOR) $@.$(MAJOR) + rm -f $@ + ln -s $@.$(MAJOR) $@ + +%.shared.o: %.cpp + g++ -o $@ -c $+ $(SHARED_CFLAGS) + +%.shared.o: %.c + gcc -o $@ -c $+ $(SHARED_CFLAGS) + +%.so : %.o + g++ $(LDFLAGS) $(EXTRA_LDFLAGS) -shared $^ -o $@ + +clean: + rm -f $(SHARED_OBJS) + rm -f $(FIXED_OBJS) + rm -f *.so *.so* *~ + +DESTDIR= + +install: libGLee.so + install -d "$(DESTDIR)/usr/lib/" + cp -a *.so* "$(DESTDIR)/usr/lib/" + install -d "$(DESTDIR)/usr/include/" + install -Dm644 *.h "$(DESTDIR)/usr/include/" + install -d "$(DESTDIR)/usr/lib/pkgconfig/" + install -Dm644 glee.pc "$(DESTDIR)/usr/lib/pkgconfig/" + install -d "$(DESTDIR)/usr/share/licenses/glee" + sed '9,32!d' readme.txt > "$(DESTDIR)/usr/share/licenses/glee/LICENSE" Modified: PKGBUILD === --- PKGBUILD2013-03-19 01:59:05 UTC (rev 86547) +++ PKGBUILD2013-03-19 04:49:07 UTC (rev 86548) @@ -1,38 +1,31 @@ # $Id$ -# Maintainer : SpepS -# Contributor: Philipp Brüschweiler +# Maintainer : speps pkgname=glee -pkgver=5.4 -pkgrel=4 -pkgdesc="Free cross-platform extension loading library for OpenGL." +pkgver=5.4.0 +pkgrel=1 +pkgdesc="Free cross-platform extension loading library for OpenGL" arch=('i686' 'x86_64') url="http://elf-stone.com/glee.php"; -license=('BSD') +license=('custom:BSD') depends=('gcc-libs' 'libgl') makedepends=('mesa') -source=("http://elf-stone.com/downloads/GLee/GLee-5.4.0-src.tar.gz";) -md5sums=('0bd03db136dbc075488b6c6e83f326ae') +#source=("http://elf-stone.com/downloads/GLee/GLee-$pkgver-src.tar.gz";) +md5sums=('0bd03db136dbc075488b6c6e83f326ae' + '937a48856486291070943488fa2824d0' + 'b59e8d11402fb2ee6c4a92bf6916b3aa') +_spkg=GLee-$pkgver-src.tar.gz +source=("http://pkgs.fedoraproject.org/repo/pkgs/GLee/$_spkg/$md5sums/$_spkg"; +glee.pc Makefile) # implement FS#32670 + fix TEXTREL for i686 build() { cd "$srcdir" - - [ "$CARCH" = 'x86_64' ] && export CXXFLAGS="$CXXFLAGS -fPIC" - - ./configure --prefix=/usr make } package() { cd "$srcdir" - - # lib and headers - install -Dm755 libGLee.so "$pkgdir/usr/lib/libGLee.so" - install -Dm644 GLee.h "$pkgdir/usr/include/GLee.h" - - # license - install -Dm644 readme.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE" - sed -i '9,32!d' "$pkgdir/usr/share/licenses/$pkgname/LICENSE" + make DESTDIR="$pkgdir/" install } -# vim:set ts=2 sw=2 et: +# vim:set ts=2 sw=2 et: \ No newline at end of file Added: glee.pc === --- glee.pc (rev 0) +++ glee.pc 2013-03-19 04:49:07 UTC (rev 86548) @@ -0,0 +1,12 @@ +prefix=/usr +exec_prefix=${prefix} +libdir=${exec_prefix}/lib +includedir=${prefix}/include + +Name: GLee +Description: GL Easy Extension library +Version: 5.4.0 +Requires: +Conflicts: +Libs: -L${libdir} -lglee +Cflags: -I${includedir}
[arch-commits] Commit in goagent/repos/community-any (6 files)
Date: Tuesday, March 19, 2013 @ 02:59:05 Author: fyan Revision: 86547 archrelease: copy trunk to community-any Added: goagent/repos/community-any/PKGBUILD (from rev 86546, goagent/trunk/PKGBUILD) goagent/repos/community-any/goagent.install (from rev 86546, goagent/trunk/goagent.install) goagent/repos/community-any/goagent.service (from rev 86546, goagent/trunk/goagent.service) Deleted: goagent/repos/community-any/PKGBUILD goagent/repos/community-any/goagent.install goagent/repos/community-any/goagent.service -+ PKGBUILD| 112 ++ goagent.install | 36 - goagent.service | 24 +-- 3 files changed, 84 insertions(+), 88 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2013-03-19 01:57:30 UTC (rev 86546) +++ PKGBUILD2013-03-19 01:59:05 UTC (rev 86547) @@ -1,58 +0,0 @@ -# $Id$ -# Maintainer: Felix Yan -# Contributor: cuihao -# Contributor: Guten - -pkgname=goagent -pkgver=2.1.13 -pkgrel=2 -pkgdesc="A gae proxy forked from gappproxy/wallproxy" -arch=("any") -url="http://goagent.googlecode.com"; -license=("GPL2") -depends=('python2' 'python2-pyopenssl') -optdepends=('python2-gevent-beta: Optional Gevent Support') -conflicts=('python2-gevent<=0.99') -source=( - "$pkgname.service" - "https://github.com/goagent/goagent/archive/v$pkgver.tar.gz"; -) -backup=('etc/goagent') -install=goagent.install - -package() { - cd "$srcdir/$pkgname-$pkgver" - - # python2 fix - sed -i -re "1s/python2?/python2/" local/*.py - chmod +x local/proxy.py - - mkdir -p "$pkgdir/opt/goagent" - cp -r local server "$pkgdir/opt/goagent" - - # remove windows-only files - rm -f "$pkgdir/opt/goagent/"*/*.{vbs,dll,exe,manifest,bat} - rm -f "$pkgdir/opt/goagent/local/python27.zip" - - # remove mac-only files - rm -f "$pkgdir/opt/goagent/local/addto-startup.py" - - # remove goagent-gtk - rm -f "$pkgdir/opt/goagent/local/goagent-gtk.py" - rm -f "$pkgdir/opt/goagent/local/logo.png" - - # remove CA.crt CA.key for security issues - rm -f "$pkgdir/opt/goagent/local/CA.crt" "$pkgdir/opt/goagent/local/CA.key" - rm -rf "$pkgdir/opt/goagent/local/certs" - - # config file - install -Dm644 "${pkgdir}/opt/goagent/local/proxy.ini" "${pkgdir}/etc/goagent" - ln -sf "/etc/goagent" "${pkgdir}/opt/goagent/local/proxy.ini" - - # systemd service - install -Dm644 "${srcdir}/goagent.service" "${pkgdir}/usr/lib/systemd/system/goagent.service" -} - -# vim:set ts=2 sw=2 et: -md5sums=('e49aca604fcbf7b64d07460d33669640' - '2d9a13fde523a6da4bcbab4f45569260') Copied: goagent/repos/community-any/PKGBUILD (from rev 86546, goagent/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2013-03-19 01:59:05 UTC (rev 86547) @@ -0,0 +1,54 @@ +# $Id$ +# Maintainer: Felix Yan +# Contributor: cuihao +# Contributor: Guten + +pkgname=goagent +pkgver=2.1.14 +pkgrel=1 +pkgdesc="A gae proxy forked from gappproxy/wallproxy" +arch=("any") +url="http://goagent.googlecode.com"; +license=("GPL2") +depends=('python2' 'python2-pyopenssl' 'python2-gevent-beta') +source=(https://github.com/goagent/goagent/archive/v$pkgver.tar.gz +$pkgname.service) +backup=('etc/goagent') +install=goagent.install + +package() { + cd "$srcdir/$pkgname-$pkgver" + + # python2 fix + sed -i -re "1s/python2?/python2/" local/*.py + chmod +x local/proxy.py + + mkdir -p "$pkgdir/opt/goagent" + cp -r local server "$pkgdir/opt/goagent" + + # remove windows-only files + rm -f "$pkgdir/opt/goagent/"*/*.{vbs,dll,exe,manifest,bat} + rm -f "$pkgdir/opt/goagent/local/python27.zip" + + # remove mac-only files + rm -f "$pkgdir/opt/goagent/local/addto-startup.py" + + # remove goagent-gtk + rm -f "$pkgdir/opt/goagent/local/goagent-gtk.py" + rm -f "$pkgdir/opt/goagent/local/logo.png" + + # remove CA.crt CA.key for security issues + rm -f "$pkgdir/opt/goagent/local/CA.crt" "$pkgdir/opt/goagent/local/CA.key" + rm -rf "$pkgdir/opt/goagent/local/certs" + + # config file + install -Dm644 "${pkgdir}/opt/goagent/local/proxy.ini" "${pkgdir}/etc/goagent" + ln -sf "/etc/goagent" "${pkgdir}/opt/goagent/local/proxy.ini" + + # systemd service + install -Dm644 "${srcdir}/goagent.service" "${pkgdir}/usr/lib/systemd/system/goagent.service" +} + +# vim:set ts=2 sw=2 et: +md5sums=('66007be30b411c0fefd570e07ae25cc3' + 'e49aca604fcbf7b64d07460d33669640') Deleted: goagent.install === --- goagent.install 2013-03-19 01:57:30 UTC (rev 86546) +++ goagent.install 2013-03-19 01:59:05 UTC (rev 86547) @@ -1,18 +0,0 @@ -post_install() { -echo "Please use systemd units to start/stop goagent:" -echo "sudo systemctl start/stop goagent" - -chown -R nobody:daemon /opt/goagent/local -} - -post_upgrade() { -pos
[arch-commits] Commit in goagent/trunk (PKGBUILD)
Date: Tuesday, March 19, 2013 @ 02:57:30 Author: fyan Revision: 86546 upgpkg: goagent 2.1.14-1 Modified: goagent/trunk/PKGBUILD --+ PKGBUILD | 18 +++--- 1 file changed, 7 insertions(+), 11 deletions(-) Modified: PKGBUILD === --- PKGBUILD2013-03-19 01:12:07 UTC (rev 86545) +++ PKGBUILD2013-03-19 01:57:30 UTC (rev 86546) @@ -4,19 +4,15 @@ # Contributor: Guten pkgname=goagent -pkgver=2.1.13 -pkgrel=2 +pkgver=2.1.14 +pkgrel=1 pkgdesc="A gae proxy forked from gappproxy/wallproxy" arch=("any") url="http://goagent.googlecode.com"; license=("GPL2") -depends=('python2' 'python2-pyopenssl') -optdepends=('python2-gevent-beta: Optional Gevent Support') -conflicts=('python2-gevent<=0.99') -source=( - "$pkgname.service" - "https://github.com/goagent/goagent/archive/v$pkgver.tar.gz"; -) +depends=('python2' 'python2-pyopenssl' 'python2-gevent-beta') +source=(https://github.com/goagent/goagent/archive/v$pkgver.tar.gz +$pkgname.service) backup=('etc/goagent') install=goagent.install @@ -54,5 +50,5 @@ } # vim:set ts=2 sw=2 et: -md5sums=('e49aca604fcbf7b64d07460d33669640' - '2d9a13fde523a6da4bcbab4f45569260') +md5sums=('66007be30b411c0fefd570e07ae25cc3' + 'e49aca604fcbf7b64d07460d33669640')
[arch-commits] Commit in morituri/repos/community-any (PKGBUILD PKGBUILD)
Date: Tuesday, March 19, 2013 @ 02:12:07 Author: fyan Revision: 86545 archrelease: copy trunk to community-any Added: morituri/repos/community-any/PKGBUILD (from rev 86544, morituri/trunk/PKGBUILD) Deleted: morituri/repos/community-any/PKGBUILD --+ PKGBUILD | 96 ++--- 1 file changed, 48 insertions(+), 48 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2013-03-19 01:10:42 UTC (rev 86544) +++ PKGBUILD2013-03-19 01:12:07 UTC (rev 86545) @@ -1,48 +0,0 @@ -# $Id$ -# Maintainer: Felix Yan -# Contributor: Karol "Kenji Takahashi" Woźniak -# Contributor: Mantas Mikulėnas - -pkgname=morituri -pkgver=0.2.0 -pkgrel=3 -pkgdesc="a CD ripper aiming for accuracy over speed, modelled after Exact Audio Copy" -arch=('any') -url="https://github.com/thomasvs/morituri"; -license=("GPL3") -depends=( -"cdparanoia" -"cdrdao" -"gstreamer0.10-base" -"gstreamer0.10-python" -"python2-musicbrainz2" -"cddb-py" -"python2-distribute" -) -optdepends=( -"python2-pycdio: for 'rip drive list'" -"gstreamer0.10-base-plugins" -"gstreamer0.10-good-plugins" -"gstreamer0.10-bad-plugins" -"gstreamer0.10-ugly-plugins" -) -source=("http://thomas.apestaart.org/download/morituri/$pkgname-$pkgver.tar.bz2";) -sha1sums=('63f5923611ba9e0883a7cef668a43260c7196dda') - -build() { -cd "$srcdir/$pkgname-$pkgver" -export PYTHON="python2" -sed -i '27s/\/&2/' doc/Makefile.am -sed -i '1s/\/&2/' bin/rip.in etc/bash_completion.d/bash-compgen -autoreconf -i -f -./configure --prefix=/usr --sysconfdir=/etc -make -} - -package() { -cd "$srcdir/$pkgname-$pkgver" -make DESTDIR="$pkgdir" install -install -Dm 0644 "README" "$pkgdir/usr/share/doc/morituri/README" -} - -# vim: ft=sh:ts=4:sw=4:et Copied: morituri/repos/community-any/PKGBUILD (from rev 86544, morituri/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2013-03-19 01:12:07 UTC (rev 86545) @@ -0,0 +1,48 @@ +# $Id$ +# Maintainer: Felix Yan +# Contributor: Karol "Kenji Takahashi" Woźniak +# Contributor: Mantas Mikulėnas + +pkgname=morituri +pkgver=0.2.0 +pkgrel=4 +pkgdesc="a CD ripper aiming for accuracy over speed, modelled after Exact Audio Copy" +arch=('any') +url="https://github.com/thomasvs/morituri"; +license=("GPL3") +depends=( +"cdparanoia" +"cdrdao" +"gstreamer0.10-base" +"gstreamer0.10-base-plugins" +"gstreamer0.10-python" +"python2-musicbrainz2" +"cddb-py" +"python2-distribute" +) +optdepends=( +"python2-pycdio: for 'rip drive list'" +"gstreamer0.10-good-plugins" +"gstreamer0.10-bad-plugins" +"gstreamer0.10-ugly-plugins" +) +source=("http://thomas.apestaart.org/download/morituri/$pkgname-$pkgver.tar.bz2";) +sha1sums=('63f5923611ba9e0883a7cef668a43260c7196dda') + +build() { +cd "$srcdir/$pkgname-$pkgver" +export PYTHON="python2" +sed -i '27s/\/&2/' doc/Makefile.am +sed -i '1s/\/&2/' bin/rip.in etc/bash_completion.d/bash-compgen +autoreconf -i -f +./configure --prefix=/usr --sysconfdir=/etc +make +} + +package() { +cd "$srcdir/$pkgname-$pkgver" +make DESTDIR="$pkgdir" install +install -Dm 0644 "README" "$pkgdir/usr/share/doc/morituri/README" +} + +# vim: ft=sh:ts=4:sw=4:et
[arch-commits] Commit in morituri/trunk (PKGBUILD)
Date: Tuesday, March 19, 2013 @ 02:10:42 Author: fyan Revision: 86544 upgpkg: morituri 0.2.0-4 fix FS#34354 Modified: morituri/trunk/PKGBUILD --+ PKGBUILD |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) Modified: PKGBUILD === --- PKGBUILD2013-03-18 23:46:32 UTC (rev 86543) +++ PKGBUILD2013-03-19 01:10:42 UTC (rev 86544) @@ -5,7 +5,7 @@ pkgname=morituri pkgver=0.2.0 -pkgrel=3 +pkgrel=4 pkgdesc="a CD ripper aiming for accuracy over speed, modelled after Exact Audio Copy" arch=('any') url="https://github.com/thomasvs/morituri"; @@ -14,6 +14,7 @@ "cdparanoia" "cdrdao" "gstreamer0.10-base" +"gstreamer0.10-base-plugins" "gstreamer0.10-python" "python2-musicbrainz2" "cddb-py" @@ -21,7 +22,6 @@ ) optdepends=( "python2-pycdio: for 'rip drive list'" -"gstreamer0.10-base-plugins" "gstreamer0.10-good-plugins" "gstreamer0.10-bad-plugins" "gstreamer0.10-ugly-plugins"
[arch-commits] Commit in geoclue/repos (8 files)
Date: Tuesday, March 19, 2013 @ 01:26:52 Author: heftig Revision: 180261 archrelease: copy trunk to extra-i686, extra-x86_64 Added: geoclue/repos/extra-i686/PKGBUILD (from rev 180260, geoclue/trunk/PKGBUILD) geoclue/repos/extra-i686/geoclue.install (from rev 180260, geoclue/trunk/geoclue.install) geoclue/repos/extra-x86_64/PKGBUILD (from rev 180260, geoclue/trunk/PKGBUILD) geoclue/repos/extra-x86_64/geoclue.install (from rev 180260, geoclue/trunk/geoclue.install) Deleted: geoclue/repos/extra-i686/PKGBUILD geoclue/repos/extra-i686/geoclue-gcc46.patch geoclue/repos/extra-x86_64/PKGBUILD geoclue/repos/extra-x86_64/geoclue-gcc46.patch --+ extra-i686/PKGBUILD | 70 - extra-i686/geoclue-gcc46.patch | 23 extra-i686/geoclue.install | 11 + extra-x86_64/PKGBUILD| 70 - extra-x86_64/geoclue-gcc46.patch | 23 extra-x86_64/geoclue.install | 11 + 6 files changed, 84 insertions(+), 124 deletions(-) Deleted: extra-i686/PKGBUILD === --- extra-i686/PKGBUILD 2013-03-19 00:26:08 UTC (rev 180260) +++ extra-i686/PKGBUILD 2013-03-19 00:26:52 UTC (rev 180261) @@ -1,39 +0,0 @@ -# $Id$ -# Maintainer: Jan Alexander Steffens (heftig) -# Contributor: György Balló - -pkgname=geoclue -pkgver=0.12.0 -pkgrel=5 -pkgdesc="Modular geoinformation service built on the D-Bus messaging system." -arch=('i686' 'x86_64') -url="http://geoclue.freedesktop.org/"; -license=('LGPL') -depends=('dbus-glib' 'libxml2') -optdepends=('networkmanager: geolocation' -'gconf: geolocation' -'libsoup-gnome: Skyhook location provider') -makedepends=('gconf' 'networkmanager' 'libsoup-gnome' 'gtk-doc') -options=('!libtool') -source=(https://launchpad.net/geoclue/trunk/${pkgver%.*}/+download/$pkgname-$pkgver.tar.gz -geoclue-gcc46.patch) -md5sums=('33af8307f332e0065af056ecba65fec2' - '0cf8ecc350be702f623ed9a9715818c5') - -build() { - cd $pkgname-$pkgver - patch -Np1 -i ../geoclue-gcc46.patch - - sed -i 's/libnm_glib/libnm-glib/g' configure.ac - sed -i '/libsoup-gnome/s/$/ gthread-2.0/' configure.ac - autoreconf -f -i - - ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var --libexecdir=/usr/lib/$pkgname \ - --disable-static - make -} - -package() { - cd $pkgname-$pkgver - make DESTDIR="$pkgdir" install -} Copied: geoclue/repos/extra-i686/PKGBUILD (from rev 180260, geoclue/trunk/PKGBUILD) === --- extra-i686/PKGBUILD (rev 0) +++ extra-i686/PKGBUILD 2013-03-19 00:26:52 UTC (rev 180261) @@ -0,0 +1,31 @@ +# $Id$ +# Maintainer: Jan Alexander Steffens (heftig) +# Contributor: György Balló + +pkgname=geoclue +pkgver=0.12.99 +pkgrel=1 +pkgdesc="Modular geoinformation service built on the D-Bus messaging system." +arch=(i686 x86_64) +url="http://geoclue.freedesktop.org/"; +license=(LGPL) +depends=(dbus-glib libxml2 dconf) +makedepends=(networkmanager libsoup-gnome gtk-doc) +optdepends=('networkmanager: geolocation' +'libsoup-gnome: Skyhook location provider') +options=('!libtool') +install=geoclue.install +source=(http://freedesktop.org/~hadess/$pkgname-$pkgver.tar.gz) +md5sums=('779245045bfeeec4853da8baaa3a18e6') + +build() { + cd $pkgname-$pkgver + ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \ +--libexecdir=/usr/lib/$pkgname --disable-static + make +} + +package() { + cd $pkgname-$pkgver + make DESTDIR="$pkgdir" install +} Deleted: extra-i686/geoclue-gcc46.patch === --- extra-i686/geoclue-gcc46.patch 2013-03-19 00:26:08 UTC (rev 180260) +++ extra-i686/geoclue-gcc46.patch 2013-03-19 00:26:52 UTC (rev 180261) @@ -1,23 +0,0 @@ -From 90669619d1d621080ef00dcb8db1c3d206ee0bfe Mon Sep 17 00:00:00 2001 -From: Dan Williams -Date: Mon, 07 Mar 2011 23:46:15 + -Subject: master: Fix warning with GCC 4.6 - -diff --git a/src/master-provider.c b/src/master-provider.c -index 790c043..e4ea053 100644 a/src/master-provider.c -+++ b/src/master-provider.c -@@ -846,10 +846,6 @@ gc_master_provider_initialize_interfaces (GcMasterProvider *provider) - static gboolean - gc_master_provider_initialize (GcMasterProvider *provider) - { -- GcMasterProviderPrivate *priv; -- -- priv = GET_PRIVATE (provider); -- - if (!gc_master_provider_initialize_interfaces (provider)) { - return FALSE; - } --- -cgit v0.8.3-6-g21f6 Copied: geoclue/repos/extra-i686/geoclue.install (from rev 180260, geoclue/trunk/geoclue.install) === --- extra-i686/geoclue.install (rev 0) +++ extra-i686/geoclue.install
[arch-commits] Commit in geoclue/trunk (PKGBUILD geoclue-gcc46.patch geoclue.install)
Date: Tuesday, March 19, 2013 @ 01:26:08 Author: heftig Revision: 180260 0.12.99 (which is apparently stable) Added: geoclue/trunk/geoclue.install Modified: geoclue/trunk/PKGBUILD Deleted: geoclue/trunk/geoclue-gcc46.patch -+ PKGBUILD| 30 +++--- geoclue-gcc46.patch | 23 --- geoclue.install | 11 +++ 3 files changed, 22 insertions(+), 42 deletions(-) Modified: PKGBUILD === --- PKGBUILD2013-03-18 23:57:36 UTC (rev 180259) +++ PKGBUILD2013-03-19 00:26:08 UTC (rev 180260) @@ -3,33 +3,25 @@ # Contributor: György Balló pkgname=geoclue -pkgver=0.12.0 -pkgrel=5 +pkgver=0.12.99 +pkgrel=1 pkgdesc="Modular geoinformation service built on the D-Bus messaging system." -arch=('i686' 'x86_64') +arch=(i686 x86_64) url="http://geoclue.freedesktop.org/"; -license=('LGPL') -depends=('dbus-glib' 'libxml2') +license=(LGPL) +depends=(dbus-glib libxml2 dconf) +makedepends=(networkmanager libsoup-gnome gtk-doc) optdepends=('networkmanager: geolocation' -'gconf: geolocation' 'libsoup-gnome: Skyhook location provider') -makedepends=('gconf' 'networkmanager' 'libsoup-gnome' 'gtk-doc') options=('!libtool') -source=(https://launchpad.net/geoclue/trunk/${pkgver%.*}/+download/$pkgname-$pkgver.tar.gz -geoclue-gcc46.patch) -md5sums=('33af8307f332e0065af056ecba65fec2' - '0cf8ecc350be702f623ed9a9715818c5') +install=geoclue.install +source=(http://freedesktop.org/~hadess/$pkgname-$pkgver.tar.gz) +md5sums=('779245045bfeeec4853da8baaa3a18e6') build() { cd $pkgname-$pkgver - patch -Np1 -i ../geoclue-gcc46.patch - - sed -i 's/libnm_glib/libnm-glib/g' configure.ac - sed -i '/libsoup-gnome/s/$/ gthread-2.0/' configure.ac - autoreconf -f -i - - ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var --libexecdir=/usr/lib/$pkgname \ - --disable-static + ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \ +--libexecdir=/usr/lib/$pkgname --disable-static make } Deleted: geoclue-gcc46.patch === --- geoclue-gcc46.patch 2013-03-18 23:57:36 UTC (rev 180259) +++ geoclue-gcc46.patch 2013-03-19 00:26:08 UTC (rev 180260) @@ -1,23 +0,0 @@ -From 90669619d1d621080ef00dcb8db1c3d206ee0bfe Mon Sep 17 00:00:00 2001 -From: Dan Williams -Date: Mon, 07 Mar 2011 23:46:15 + -Subject: master: Fix warning with GCC 4.6 - -diff --git a/src/master-provider.c b/src/master-provider.c -index 790c043..e4ea053 100644 a/src/master-provider.c -+++ b/src/master-provider.c -@@ -846,10 +846,6 @@ gc_master_provider_initialize_interfaces (GcMasterProvider *provider) - static gboolean - gc_master_provider_initialize (GcMasterProvider *provider) - { -- GcMasterProviderPrivate *priv; -- -- priv = GET_PRIVATE (provider); -- - if (!gc_master_provider_initialize_interfaces (provider)) { - return FALSE; - } --- -cgit v0.8.3-6-g21f6 Added: geoclue.install === --- geoclue.install (rev 0) +++ geoclue.install 2013-03-19 00:26:08 UTC (rev 180260) @@ -0,0 +1,11 @@ +post_install() { +glib-compile-schemas /usr/share/glib-2.0/schemas +} + +post_upgrade() { +post_install +} + +post_remove() { +post_install +}
[arch-commits] Commit in gdk-pixbuf2/repos (8 files)
Date: Tuesday, March 19, 2013 @ 00:57:36 Author: jgc Revision: 180259 archrelease: copy trunk to extra-i686, extra-x86_64 Added: gdk-pixbuf2/repos/extra-i686/PKGBUILD (from rev 180258, gdk-pixbuf2/trunk/PKGBUILD) gdk-pixbuf2/repos/extra-i686/gdk-pixbuf2.install (from rev 180258, gdk-pixbuf2/trunk/gdk-pixbuf2.install) gdk-pixbuf2/repos/extra-x86_64/PKGBUILD (from rev 180258, gdk-pixbuf2/trunk/PKGBUILD) gdk-pixbuf2/repos/extra-x86_64/gdk-pixbuf2.install (from rev 180258, gdk-pixbuf2/trunk/gdk-pixbuf2.install) Deleted: gdk-pixbuf2/repos/extra-i686/PKGBUILD gdk-pixbuf2/repos/extra-i686/gdk-pixbuf2.install gdk-pixbuf2/repos/extra-x86_64/PKGBUILD gdk-pixbuf2/repos/extra-x86_64/gdk-pixbuf2.install --+ extra-i686/PKGBUILD | 68 ++--- extra-i686/gdk-pixbuf2.install | 22 +-- extra-x86_64/PKGBUILD| 68 ++--- extra-x86_64/gdk-pixbuf2.install | 22 +-- 4 files changed, 90 insertions(+), 90 deletions(-) Deleted: extra-i686/PKGBUILD === --- extra-i686/PKGBUILD 2013-03-18 23:57:28 UTC (rev 180258) +++ extra-i686/PKGBUILD 2013-03-18 23:57:36 UTC (rev 180259) @@ -1,34 +0,0 @@ -# $Id$ -# Maintainer: Ionut Biru - -pkgname=gdk-pixbuf2 -pkgver=2.26.5 -pkgrel=1 -pkgdesc="An image loading library" -arch=('i686' 'x86_64') -url="http://www.gtk.org/"; -license=('LGPL2.1') -depends=('glib2' 'libpng' 'libtiff' 'libjpeg' 'libx11') -makedepends=('gtk-doc' 'gobject-introspection') -options=('!libtool') -install=gdk-pixbuf2.install -source=(http://download.gnome.org/sources/gdk-pixbuf/${pkgver%.*}/gdk-pixbuf-$pkgver.tar.xz) -sha256sums=('77696fd163bca95a130a1883dbd78d0ae4d782de2fc85a9a38556d13681f5c84') - -build() { - cd gdk-pixbuf-$pkgver - - ./configure --prefix=/usr \ ---without-libjasper \ ---with-x11 \ ---with-included-loaders=png - make -} - -package() { - cd gdk-pixbuf-$pkgver - - make DESTDIR="$pkgdir" install -} - -# vim:set ts=2 sw=2 et: Copied: gdk-pixbuf2/repos/extra-i686/PKGBUILD (from rev 180258, gdk-pixbuf2/trunk/PKGBUILD) === --- extra-i686/PKGBUILD (rev 0) +++ extra-i686/PKGBUILD 2013-03-18 23:57:36 UTC (rev 180259) @@ -0,0 +1,34 @@ +# $Id$ +# Maintainer: Ionut Biru + +pkgname=gdk-pixbuf2 +pkgver=2.26.5 +pkgrel=2 +pkgdesc="An image loading library" +arch=('i686' 'x86_64') +url="http://www.gtk.org/"; +license=('LGPL2.1') +depends=('glib2' 'libpng' 'libtiff' 'libjpeg' 'libx11' 'jasper') +makedepends=('gtk-doc' 'gobject-introspection') +options=('!libtool') +install=gdk-pixbuf2.install +source=(http://download.gnome.org/sources/gdk-pixbuf/${pkgver%.*}/gdk-pixbuf-$pkgver.tar.xz) +sha256sums=('77696fd163bca95a130a1883dbd78d0ae4d782de2fc85a9a38556d13681f5c84') + +build() { + cd gdk-pixbuf-$pkgver + + ./configure --prefix=/usr \ +--with-x11 \ +--with-libjasper \ +--with-included-loaders=png + make +} + +package() { + cd gdk-pixbuf-$pkgver + + make DESTDIR="$pkgdir" install +} + +# vim:set ts=2 sw=2 et: Deleted: extra-i686/gdk-pixbuf2.install === --- extra-i686/gdk-pixbuf2.install 2013-03-18 23:57:28 UTC (rev 180258) +++ extra-i686/gdk-pixbuf2.install 2013-03-18 23:57:36 UTC (rev 180259) @@ -1,11 +0,0 @@ -post_install() { - gdk-pixbuf-query-loaders --update-cache -} - -post_upgrade() { -post_install -} - -pre_remove() { -rm -f /usr/lib/gdk-pixbuf-2.0/2.10.0/loaders/loaders.cache -} Copied: gdk-pixbuf2/repos/extra-i686/gdk-pixbuf2.install (from rev 180258, gdk-pixbuf2/trunk/gdk-pixbuf2.install) === --- extra-i686/gdk-pixbuf2.install (rev 0) +++ extra-i686/gdk-pixbuf2.install 2013-03-18 23:57:36 UTC (rev 180259) @@ -0,0 +1,11 @@ +post_install() { + gdk-pixbuf-query-loaders --update-cache +} + +post_upgrade() { +post_install +} + +pre_remove() { +rm -f /usr/lib/gdk-pixbuf-2.0/2.10.0/loaders/loaders.cache +} Deleted: extra-x86_64/PKGBUILD === --- extra-x86_64/PKGBUILD 2013-03-18 23:57:28 UTC (rev 180258) +++ extra-x86_64/PKGBUILD 2013-03-18 23:57:36 UTC (rev 180259) @@ -1,34 +0,0 @@ -# $Id$ -# Maintainer: Ionut Biru - -pkgname=gdk-pixbuf2 -pkgver=2.26.5 -pkgrel=1 -pkgdesc="An image loading library" -arch=('i686' 'x86_64') -url="http://www.gtk.org/"; -license=('LGPL2.1') -depends=('glib2' 'libpng' 'libtiff' 'libjpeg' 'libx11') -makedepends=('gtk-doc' 'gobject-introspection') -options=('!libtool') -install=gdk-pixbuf2.install -source=(http://download.gnome.org/sources/gdk-pixbuf/${pkgver%.*}/gdk-pixbuf-$pkgver.tar.xz) -sha256sums=('77696fd163bca95a130a1883dbd78d0ae4d782de2fc85a9a38556d13681f5c8
[arch-commits] Commit in gdk-pixbuf2/trunk (PKGBUILD)
Date: Tuesday, March 19, 2013 @ 00:57:28 Author: jgc Revision: 180258 upgpkg: gdk-pixbuf2 2.26.5-2 Enable jpeg2000 plugin (FS#29993) Modified: gdk-pixbuf2/trunk/PKGBUILD --+ PKGBUILD |6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) Modified: PKGBUILD === --- PKGBUILD2013-03-18 23:41:34 UTC (rev 180257) +++ PKGBUILD2013-03-18 23:57:28 UTC (rev 180258) @@ -3,12 +3,12 @@ pkgname=gdk-pixbuf2 pkgver=2.26.5 -pkgrel=1 +pkgrel=2 pkgdesc="An image loading library" arch=('i686' 'x86_64') url="http://www.gtk.org/"; license=('LGPL2.1') -depends=('glib2' 'libpng' 'libtiff' 'libjpeg' 'libx11') +depends=('glib2' 'libpng' 'libtiff' 'libjpeg' 'libx11' 'jasper') makedepends=('gtk-doc' 'gobject-introspection') options=('!libtool') install=gdk-pixbuf2.install @@ -19,8 +19,8 @@ cd gdk-pixbuf-$pkgver ./configure --prefix=/usr \ ---without-libjasper \ --with-x11 \ +--with-libjasper \ --with-included-loaders=png make }
[arch-commits] Commit in screenfetch/repos (community-any community-any/PKGBUILD)
Date: Tuesday, March 19, 2013 @ 00:46:32 Author: cinelli Revision: 86543 archrelease: copy trunk to community-any Added: screenfetch/repos/community-any/ screenfetch/repos/community-any/PKGBUILD (from rev 86542, screenfetch/trunk/PKGBUILD) --+ PKGBUILD | 22 ++ 1 file changed, 22 insertions(+) Copied: screenfetch/repos/community-any/PKGBUILD (from rev 86542, screenfetch/trunk/PKGBUILD) === --- community-any/PKGBUILD (rev 0) +++ community-any/PKGBUILD 2013-03-18 23:46:32 UTC (rev 86543) @@ -0,0 +1,22 @@ +# $Id$ +# Maintainer: Federico Cinelli + +pkgname=screenfetch +pkgver=2.7.7 +pkgrel=1 +pkgdesc="a CLI Bash script to show system/theme info in screenshots" +arch=('any') +url="http://git.silverirc.com/cgit.cgi/screenfetch.git/"; +license=('GPL') +conflicts=('screenfetch-git') +depends=('bash') +optdepends=('scrot: Screenshot support' + 'xorg-xdpyinfo: Display information for X') +source=("http://git.silverirc.com/cgit.cgi/screenfetch.git/snapshot/$pkgname-$pkgver.tar.bz2";) +md5sums=('df5d25ab8abf42044412f6cfc37cf676') + +package() { + cd "$srcdir/$pkgname-$pkgver" + install -d "$pkgdir/usr/bin" + install -Dm755 "screenfetch-dev" "$pkgdir/usr/bin/screenfetch" +}
[arch-commits] Commit in (4 files)
Date: Tuesday, March 19, 2013 @ 00:44:29 Author: cinelli Revision: 86542 Added screenfetch to [community] Added: screenfetch/ screenfetch/repos/ screenfetch/trunk/ screenfetch/trunk/PKGBUILD --+ PKGBUILD | 22 ++ 1 file changed, 22 insertions(+) Added: screenfetch/trunk/PKGBUILD === --- screenfetch/trunk/PKGBUILD (rev 0) +++ screenfetch/trunk/PKGBUILD 2013-03-18 23:44:29 UTC (rev 86542) @@ -0,0 +1,22 @@ +# $Id$ +# Maintainer: Federico Cinelli + +pkgname=screenfetch +pkgver=2.7.7 +pkgrel=1 +pkgdesc="a CLI Bash script to show system/theme info in screenshots" +arch=('any') +url="http://git.silverirc.com/cgit.cgi/screenfetch.git/"; +license=('GPL') +conflicts=('screenfetch-git') +depends=('bash') +optdepends=('scrot: Screenshot support' + 'xorg-xdpyinfo: Display information for X') +source=("http://git.silverirc.com/cgit.cgi/screenfetch.git/snapshot/$pkgname-$pkgver.tar.bz2";) +md5sums=('df5d25ab8abf42044412f6cfc37cf676') + +package() { + cd "$srcdir/$pkgname-$pkgver" + install -d "$pkgdir/usr/bin" + install -Dm755 "screenfetch-dev" "$pkgdir/usr/bin/screenfetch" +} Property changes on: screenfetch/trunk/PKGBUILD ___ Added: svn:keywords ## -0,0 +1 ## +Id \ No newline at end of property
[arch-commits] Commit in xf86-video-openchrome/repos (10 files)
Date: Tuesday, March 19, 2013 @ 00:41:34 Author: jgc Revision: 180257 archrelease: copy trunk to extra-i686, extra-x86_64 Added: xf86-video-openchrome/repos/extra-i686/PKGBUILD (from rev 180256, xf86-video-openchrome/trunk/PKGBUILD) xf86-video-openchrome/repos/extra-i686/fix_system_lock.diff (from rev 180256, xf86-video-openchrome/trunk/fix_system_lock.diff) xf86-video-openchrome/repos/extra-i686/no-mibstore.patch (from rev 180256, xf86-video-openchrome/trunk/no-mibstore.patch) xf86-video-openchrome/repos/extra-x86_64/PKGBUILD (from rev 180256, xf86-video-openchrome/trunk/PKGBUILD) xf86-video-openchrome/repos/extra-x86_64/fix_system_lock.diff (from rev 180256, xf86-video-openchrome/trunk/fix_system_lock.diff) xf86-video-openchrome/repos/extra-x86_64/no-mibstore.patch (from rev 180256, xf86-video-openchrome/trunk/no-mibstore.patch) Deleted: xf86-video-openchrome/repos/extra-i686/PKGBUILD xf86-video-openchrome/repos/extra-i686/fix_system_lock.diff xf86-video-openchrome/repos/extra-x86_64/PKGBUILD xf86-video-openchrome/repos/extra-x86_64/fix_system_lock.diff ---+ extra-i686/PKGBUILD | 76 --- extra-i686/fix_system_lock.diff | 118 ++-- extra-i686/no-mibstore.patch | 11 +++ extra-x86_64/PKGBUILD | 76 --- extra-x86_64/fix_system_lock.diff | 118 ++-- extra-x86_64/no-mibstore.patch| 11 +++ 6 files changed, 220 insertions(+), 190 deletions(-) Deleted: extra-i686/PKGBUILD === --- extra-i686/PKGBUILD 2013-03-18 23:41:24 UTC (rev 180256) +++ extra-i686/PKGBUILD 2013-03-18 23:41:34 UTC (rev 180257) @@ -1,36 +0,0 @@ -# $Id$ -# Contributor: Paul Mattal -# Maintainer: Juergen Hoetzel - -pkgname=xf86-video-openchrome -pkgver=0.3.1 -pkgrel=4 -pkgdesc="X.Org Openchrome drivers" -arch=(i686 x86_64) -license=('custom') -url="http://www.openchrome.org"; -depends=('libdrm' 'libxvmc') -makedepends=('xorg-server-devel' 'X-ABI-VIDEODRV_VERSION=14' 'resourceproto' 'scrnsaverproto') -conflicts=('xorg-server<1.14.0' 'X-ABI-VIDEODRV_VERSION<14' 'X-ABI-VIDEODRV_VERSION>=15' 'xf86-video-via' 'xf86-video-unichrome' 'openchrome' 'unichrome-dri') -replaces=('openchrome' 'xf86-video-via') -groups=('xorg-drivers' 'xorg') -options=('!libtool' '!emptydirs' '!makeflags') -source=(http://xorg.freedesktop.org/archive/individual/driver/${pkgname}-${pkgver}.tar.bz2 -fix_system_lock.diff) -sha1sums=('89e56dcfe851345f72c61a95b4fa5ab6ad7e0d83' - '539ba65df1755af97799f49410e4091b8d222eca') - -build() { - cd "${srcdir}/${pkgname}-${pkgver}" - # https://bugs.freedesktop.org/show_bug.cgi?id=53307 - patch -Np1 -i ${srcdir}/fix_system_lock.diff - ./configure --prefix=/usr - make -} - -package() { - cd "${srcdir}/${pkgname}-${pkgver}" - make DESTDIR="${pkgdir}" install - install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}" - install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/" -} Copied: xf86-video-openchrome/repos/extra-i686/PKGBUILD (from rev 180256, xf86-video-openchrome/trunk/PKGBUILD) === --- extra-i686/PKGBUILD (rev 0) +++ extra-i686/PKGBUILD 2013-03-18 23:41:34 UTC (rev 180257) @@ -0,0 +1,40 @@ +# $Id$ +# Contributor: Paul Mattal +# Maintainer: Juergen Hoetzel + +pkgname=xf86-video-openchrome +pkgver=0.3.1 +pkgrel=5 +pkgdesc="X.Org Openchrome drivers" +arch=(i686 x86_64) +license=('custom') +url="http://www.openchrome.org"; +depends=('libdrm' 'libxvmc') +makedepends=('xorg-server-devel' 'X-ABI-VIDEODRV_VERSION=14' 'resourceproto' 'scrnsaverproto') +conflicts=('xorg-server<1.14.0' 'X-ABI-VIDEODRV_VERSION<14' 'X-ABI-VIDEODRV_VERSION>=15' 'xf86-video-via' 'xf86-video-unichrome' 'openchrome' 'unichrome-dri') +replaces=('openchrome' 'xf86-video-via') +groups=('xorg-drivers' 'xorg') +options=('!libtool' '!emptydirs' '!makeflags') +source=(http://xorg.freedesktop.org/archive/individual/driver/${pkgname}-${pkgver}.tar.bz2 +fix_system_lock.diff +no-mibstore.patch) +sha1sums=('89e56dcfe851345f72c61a95b4fa5ab6ad7e0d83' + '539ba65df1755af97799f49410e4091b8d222eca' + 'af0d7cace699b105e4405e48abc2f433032a7483') + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + # https://bugs.freedesktop.org/show_bug.cgi?id=53307 + patch -Np1 -i ${srcdir}/fix_system_lock.diff + # https://bugs.freedesktop.org/show_bug.cgi?id=62112 + patch -Np1 -i ../no-mibstore.patch + ./configure --prefix=/usr + make +} + +package() { + cd "${srcdir}/${pkgname}-${pkgver}" + make DESTDIR="${pkgdir}" install + install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}" + install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/" +} Deleted: extra-i686/fix_system_lock.diff ===
[arch-commits] Commit in xf86-video-openchrome/trunk (PKGBUILD no-mibstore.patch)
Date: Tuesday, March 19, 2013 @ 00:41:24 Author: jgc Revision: 180256 Remove mibstore init, fixes FS#34364 upgpkg: xf86-video-openchrome 0.3.1-5 Added: xf86-video-openchrome/trunk/no-mibstore.patch Modified: xf86-video-openchrome/trunk/PKGBUILD ---+ PKGBUILD | 10 +++--- no-mibstore.patch | 11 +++ 2 files changed, 18 insertions(+), 3 deletions(-) Modified: PKGBUILD === --- PKGBUILD2013-03-18 23:33:22 UTC (rev 180255) +++ PKGBUILD2013-03-18 23:41:24 UTC (rev 180256) @@ -4,7 +4,7 @@ pkgname=xf86-video-openchrome pkgver=0.3.1 -pkgrel=4 +pkgrel=5 pkgdesc="X.Org Openchrome drivers" arch=(i686 x86_64) license=('custom') @@ -16,14 +16,18 @@ groups=('xorg-drivers' 'xorg') options=('!libtool' '!emptydirs' '!makeflags') source=(http://xorg.freedesktop.org/archive/individual/driver/${pkgname}-${pkgver}.tar.bz2 -fix_system_lock.diff) +fix_system_lock.diff +no-mibstore.patch) sha1sums=('89e56dcfe851345f72c61a95b4fa5ab6ad7e0d83' - '539ba65df1755af97799f49410e4091b8d222eca') + '539ba65df1755af97799f49410e4091b8d222eca' + 'af0d7cace699b105e4405e48abc2f433032a7483') build() { cd "${srcdir}/${pkgname}-${pkgver}" # https://bugs.freedesktop.org/show_bug.cgi?id=53307 patch -Np1 -i ${srcdir}/fix_system_lock.diff + # https://bugs.freedesktop.org/show_bug.cgi?id=62112 + patch -Np1 -i ../no-mibstore.patch ./configure --prefix=/usr make } Added: no-mibstore.patch === --- no-mibstore.patch (rev 0) +++ no-mibstore.patch 2013-03-18 23:41:24 UTC (rev 180256) @@ -0,0 +1,11 @@ +diff -rup a/src/via_driver.c b/src/via_driver.c +--- a/src/via_driver.c 2013-03-10 16:11:57.614059200 +0100 b/src/via_driver.c 2013-03-10 16:12:46.374062244 +0100 +@@ -1873,7 +1873,6 @@ VIAScreenInit(SCREEN_INIT_ARGS_DECL) + if (!pVia->NoAccel && !viaInitExa(pScreen)) + return FALSE; + +-miInitializeBackingStore(pScreen); + xf86SetBackingStore(pScreen); + #if 0 + xf86SetSilkenMouse(pScreen); \ No newline at end of file
[arch-commits] Commit in gummiboot/repos (10 files)
Date: Tuesday, March 19, 2013 @ 00:33:22 Author: tomegun Revision: 180255 archrelease: copy trunk to testing-x86_64, testing-i686 Added: gummiboot/repos/testing-i686/ gummiboot/repos/testing-i686/PKGBUILD (from rev 180254, gummiboot/trunk/PKGBUILD) gummiboot/repos/testing-i686/arch.conf (from rev 180254, gummiboot/trunk/arch.conf) gummiboot/repos/testing-i686/gummiboot.install (from rev 180254, gummiboot/trunk/gummiboot.install) gummiboot/repos/testing-i686/loader.conf (from rev 180254, gummiboot/trunk/loader.conf) gummiboot/repos/testing-x86_64/ gummiboot/repos/testing-x86_64/PKGBUILD (from rev 180254, gummiboot/trunk/PKGBUILD) gummiboot/repos/testing-x86_64/arch.conf (from rev 180254, gummiboot/trunk/arch.conf) gummiboot/repos/testing-x86_64/gummiboot.install (from rev 180254, gummiboot/trunk/gummiboot.install) gummiboot/repos/testing-x86_64/loader.conf (from rev 180254, gummiboot/trunk/loader.conf) --+ testing-i686/PKGBUILD| 44 + testing-i686/arch.conf |7 + testing-i686/gummiboot.install | 11 + testing-i686/loader.conf |2 + testing-x86_64/PKGBUILD | 44 + testing-x86_64/arch.conf |7 + testing-x86_64/gummiboot.install | 11 + testing-x86_64/loader.conf |2 + 8 files changed, 128 insertions(+) Copied: gummiboot/repos/testing-i686/PKGBUILD (from rev 180254, gummiboot/trunk/PKGBUILD) === --- testing-i686/PKGBUILD (rev 0) +++ testing-i686/PKGBUILD 2013-03-18 23:33:22 UTC (rev 180255) @@ -0,0 +1,44 @@ +# $Id$ +# Maintainer: Tom Gundersen +# Contributor: Tobias Powalowski +# Contributor: Keshav P R <(the.ridikulus.rat) (aatt) (gemmaeiil) (ddoott) (ccoomm)> +# Contributor: Mantas Mikulėnas + +pkgname="gummiboot" +pkgver="28" +pkgrel="1" +pkgdesc="Simple text-mode UEFI Boot Manager" +url="http://freedesktop.org/wiki/Software/gummiboot"; +arch=('x86_64' 'i686') +license=('LGPL2.1') +makedepends=('gnu-efi-libs' 'docbook-xsl') +depends=('util-linux') +conflicts=('gummiboot-efi') +provides=('gummiboot-efi') +replaces=('gummiboot-efi') +options=('!strip') +source=("ftp://ftp.archlinux.org/other/packages/${pkgname}/${pkgname}-${pkgver}.tar.xz"; +'loader.conf' +'arch.conf') +install="gummiboot.install" + +build() { + cd "${srcdir}/${pkgname}-${pkgver}/" + + ./autogen.sh + ./configure --sysconfdir=/etc --libexecdir=/usr/lib --libdir=/usr/lib + + make +} + +package() { + ## Install gummiboot example configuration files (can go away with systemd's kernel-install) + install -D -m0644 "${srcdir}/loader.conf" "${pkgdir}/usr/lib/gummiboot/loader/loader.conf" + install -D -m0644 "${srcdir}/arch.conf" "${pkgdir}/usr/lib/gummiboot/loader/entries/arch.conf" + + cd "${srcdir}/${pkgname}-${pkgver}/" + make DESTDIR="${pkgdir}" install +} +md5sums=('3a3a4f2e68ea72cf76a18b2f34d3b002' + '6ea803e5179d623716e3be0b636de658' + '82bda9612e3a361a74cf8de2a0134b15') Copied: gummiboot/repos/testing-i686/arch.conf (from rev 180254, gummiboot/trunk/arch.conf) === --- testing-i686/arch.conf (rev 0) +++ testing-i686/arch.conf 2013-03-18 23:33:22 UTC (rev 180255) @@ -0,0 +1,7 @@ +## This is just an exmaple config file. +## Please edit the paths and kernel parameters according to your system. + +title Arch Linux +linux /vmlinuz-linux +initrd /initramfs-linux.img +options root=PARTUUID= rootfstype= add_efi_memmap Copied: gummiboot/repos/testing-i686/gummiboot.install (from rev 180254, gummiboot/trunk/gummiboot.install) === --- testing-i686/gummiboot.install (rev 0) +++ testing-i686/gummiboot.install 2013-03-18 23:33:22 UTC (rev 180255) @@ -0,0 +1,11 @@ +post_install() { + echo ":: Run '/usr/bin/gummiboot install' to enable gummiboot" +} + +post_upgrade() { + /usr/bin/gummiboot update +} + +pre_remove() { + /usr/bin/gummiboot remove +} Copied: gummiboot/repos/testing-i686/loader.conf (from rev 180254, gummiboot/trunk/loader.conf) === --- testing-i686/loader.conf(rev 0) +++ testing-i686/loader.conf2013-03-18 23:33:22 UTC (rev 180255) @@ -0,0 +1,2 @@ +timeout 10 +default arch Copied: gummiboot/repos/testing-x86_64/PKGBUILD (from rev 180254, gummiboot/trunk/PKGBUILD) === --- testing-x86_64/PKGBUILD (rev 0) +++ testing-x86_64/PKGBUILD 2013-03-18 23:33:22 UTC (rev 180255
[arch-commits] Commit in brasero/repos (10 files)
Date: Tuesday, March 19, 2013 @ 00:32:28 Author: jgc Revision: 180254 archrelease: copy trunk to extra-i686, extra-x86_64 Added: brasero/repos/extra-i686/PKGBUILD (from rev 180253, brasero/trunk/PKGBUILD) brasero/repos/extra-i686/brasero.install (from rev 180253, brasero/trunk/brasero.install) brasero/repos/extra-i686/use-mpegaudioparse.patch (from rev 180253, brasero/trunk/use-mpegaudioparse.patch) brasero/repos/extra-x86_64/PKGBUILD (from rev 180253, brasero/trunk/PKGBUILD) brasero/repos/extra-x86_64/brasero.install (from rev 180253, brasero/trunk/brasero.install) brasero/repos/extra-x86_64/use-mpegaudioparse.patch (from rev 180253, brasero/trunk/use-mpegaudioparse.patch) Deleted: brasero/repos/extra-i686/PKGBUILD brasero/repos/extra-i686/brasero.install brasero/repos/extra-x86_64/PKGBUILD brasero/repos/extra-x86_64/brasero.install ---+ extra-i686/PKGBUILD | 78 extra-i686/brasero.install| 28 +-- extra-i686/use-mpegaudioparse.patch | 53 + extra-x86_64/PKGBUILD | 78 extra-x86_64/brasero.install | 28 +-- extra-x86_64/use-mpegaudioparse.patch | 53 + 6 files changed, 214 insertions(+), 104 deletions(-) Deleted: extra-i686/PKGBUILD === --- extra-i686/PKGBUILD 2013-03-18 23:32:19 UTC (rev 180253) +++ extra-i686/PKGBUILD 2013-03-18 23:32:28 UTC (rev 180254) @@ -1,38 +0,0 @@ -# $Id$ -# Maintainer: Allan McRae -# Maintainer: Jan de Groot -# Contributor: William Rea - -pkgname=brasero -pkgver=3.6.1 -pkgrel=1 -pkgdesc="A disc burning application for Gnome" -arch=('i686' 'x86_64') -url="http://www.gnome.org/projects/brasero"; -license=('GPL') -options=('!libtool' '!emptydirs') -depends=('gtk3' 'gst-plugins-base' 'totem-plparser' 'cdrkit' 'cdrdao' 'desktop-file-utils' 'hicolor-icon-theme' 'shared-mime-info' 'libcanberra' 'dvd+rw-tools' 'dconf' 'libsm' 'libtracker-sparql') -makedepends=('gtk-doc' 'intltool' 'libburn' 'libisofs' 'nautilus' 'gobject-introspection' 'gconf' 'itstool' 'docbook-xsl') -optdepends=('libburn: alternative back-end' -'libisofs: libburn back-end' -'dvdauthor: video project' -'gstreamer0.10-bad-plugins: video project' -'vcdimager: video project') -replaces=('nautilus-cd-burner') -install=brasero.install -source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz) -sha256sums=('d293eb28dc45af3535f09cf91aa6ccc523f3f3d8b7ad3339b5e79b4acc19b932') - -build() { - cd "$pkgname-$pkgver" - ./configure --prefix=/usr --sysconfdir=/etc \ - --localstatedir=/var --disable-caches \ - --disable-schemas-compile - make -} - -package() { - cd "$pkgname-$pkgver" - make DESTDIR=$pkgdir install -} - Copied: brasero/repos/extra-i686/PKGBUILD (from rev 180253, brasero/trunk/PKGBUILD) === --- extra-i686/PKGBUILD (rev 0) +++ extra-i686/PKGBUILD 2013-03-18 23:32:28 UTC (rev 180254) @@ -0,0 +1,40 @@ +# $Id$ +# Maintainer: Allan McRae +# Maintainer: Jan de Groot +# Contributor: William Rea + +pkgname=brasero +pkgver=3.6.1 +pkgrel=2 +pkgdesc="A disc burning application for Gnome" +arch=('i686' 'x86_64') +url="http://www.gnome.org/projects/brasero"; +license=('GPL') +options=('!libtool' '!emptydirs') +depends=('gtk3' 'gst-plugins-good' 'totem-plparser' 'cdrkit' 'cdrdao' 'desktop-file-utils' 'hicolor-icon-theme' 'shared-mime-info' 'libcanberra' 'dvd+rw-tools' 'dconf' 'libsm' 'libtracker-sparql') +makedepends=('gtk-doc' 'intltool' 'libburn' 'libisofs' 'nautilus' 'gobject-introspection' 'gconf' 'itstool' 'docbook-xsl') +optdepends=('libburn: alternative back-end' +'libisofs: libburn back-end' +'dvdauthor: video project' +'vcdimager: video project') +replaces=('nautilus-cd-burner') +install=brasero.install +source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz +use-mpegaudioparse.patch) +sha256sums=('d293eb28dc45af3535f09cf91aa6ccc523f3f3d8b7ad3339b5e79b4acc19b932' +'c75331d130c248edeaa68211cf96f386d86905510d09b104e4e0cd0ff4c92218') + +build() { + cd "$pkgname-$pkgver" + patch -Np1 -i ../use-mpegaudioparse.patch + ./configure --prefix=/usr --sysconfdir=/etc \ + --localstatedir=/var --disable-caches \ + --disable-schemas-compile + make +} + +package() { + cd "$pkgname-$pkgver" + make DESTDIR=$pkgdir install +} + Deleted: extra-i686/brasero.install === --- extra-i686/brasero.install 2013-03-18 23:32:19 UTC (rev 180253) +++ extra-i686/brasero.install 2013-03-18 23:32:28 UTC (rev 180254) @@ -1,14 +0,0 @@ -post_install()
[arch-commits] Commit in brasero/trunk (PKGBUILD use-mpegaudioparse.patch)
Date: Tuesday, March 19, 2013 @ 00:32:19 Author: jgc Revision: 180253 Add post-release patch to choose correct GStreamer plugin Fix optdepends upgpkg: brasero 3.6.1-2 Added: brasero/trunk/use-mpegaudioparse.patch Modified: brasero/trunk/PKGBUILD --+ PKGBUILD | 12 +- use-mpegaudioparse.patch | 53 + 2 files changed, 60 insertions(+), 5 deletions(-) Modified: PKGBUILD === --- PKGBUILD2013-03-18 22:06:34 UTC (rev 180252) +++ PKGBUILD2013-03-18 23:32:19 UTC (rev 180253) @@ -5,26 +5,28 @@ pkgname=brasero pkgver=3.6.1 -pkgrel=1 +pkgrel=2 pkgdesc="A disc burning application for Gnome" arch=('i686' 'x86_64') url="http://www.gnome.org/projects/brasero"; license=('GPL') options=('!libtool' '!emptydirs') -depends=('gtk3' 'gst-plugins-base' 'totem-plparser' 'cdrkit' 'cdrdao' 'desktop-file-utils' 'hicolor-icon-theme' 'shared-mime-info' 'libcanberra' 'dvd+rw-tools' 'dconf' 'libsm' 'libtracker-sparql') +depends=('gtk3' 'gst-plugins-good' 'totem-plparser' 'cdrkit' 'cdrdao' 'desktop-file-utils' 'hicolor-icon-theme' 'shared-mime-info' 'libcanberra' 'dvd+rw-tools' 'dconf' 'libsm' 'libtracker-sparql') makedepends=('gtk-doc' 'intltool' 'libburn' 'libisofs' 'nautilus' 'gobject-introspection' 'gconf' 'itstool' 'docbook-xsl') optdepends=('libburn: alternative back-end' 'libisofs: libburn back-end' 'dvdauthor: video project' -'gstreamer0.10-bad-plugins: video project' 'vcdimager: video project') replaces=('nautilus-cd-burner') install=brasero.install -source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz) -sha256sums=('d293eb28dc45af3535f09cf91aa6ccc523f3f3d8b7ad3339b5e79b4acc19b932') +source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz +use-mpegaudioparse.patch) +sha256sums=('d293eb28dc45af3535f09cf91aa6ccc523f3f3d8b7ad3339b5e79b4acc19b932' +'c75331d130c248edeaa68211cf96f386d86905510d09b104e4e0cd0ff4c92218') build() { cd "$pkgname-$pkgver" + patch -Np1 -i ../use-mpegaudioparse.patch ./configure --prefix=/usr --sysconfdir=/etc \ --localstatedir=/var --disable-caches \ --disable-schemas-compile Added: use-mpegaudioparse.patch === --- use-mpegaudioparse.patch(rev 0) +++ use-mpegaudioparse.patch2013-03-18 23:32:19 UTC (rev 180253) @@ -0,0 +1,53 @@ +From 895777890485428a23f2e0da0e8ccd2edf624f6e Mon Sep 17 00:00:00 2001 +From: Jeremy Bicha +Date: Fri, 25 Jan 2013 03:26:10 + +Subject: use mpegaudioparse gstreamer plugin instead of mp3parse + +Fix "not suitable for audio or video media" error when +attempting to create a mp3 audio project +The plugin was basically renamed for gstreamer 1.0. +Thanks tuxor for identifying the problem! + +https://bugzilla.gnome.org/show_bug.cgi?id=687886 +--- +diff --git a/libbrasero-utils/brasero-metadata.c b/libbrasero-utils/brasero-metadata.c +index 1088121..7f10088 100644 +--- a/libbrasero-utils/brasero-metadata.c b/libbrasero-utils/brasero-metadata.c +@@ -1200,12 +1200,12 @@ brasero_metadata_create_mp3_pipeline (BraseroMetadata *self) + } + gst_bin_add (GST_BIN (priv->pipeline_mp3), source); + +- parse = gst_element_factory_make ("mp3parse", NULL); ++ parse = gst_element_factory_make ("mpegaudioparse", NULL); + if (!parse) { + priv->error = g_error_new (BRASERO_UTILS_ERROR, + BRASERO_UTILS_ERROR_GENERAL, + _("%s element could not be created"), +- "\"mp3parse\""); ++ "\"mpegaudioparse\""); + + g_object_unref (priv->pipeline_mp3); + priv->pipeline_mp3 = NULL; +diff --git a/plugins/transcode/burn-transcode.c b/plugins/transcode/burn-transcode.c +index a6a0f40..6861168 100644 +--- a/plugins/transcode/burn-transcode.c b/plugins/transcode/burn-transcode.c +@@ -284,13 +284,13 @@ brasero_transcode_create_pipeline_size_mp3 (BraseroTranscode *transcode, + + BRASERO_JOB_LOG (transcode, "Creating specific pipeline for MP3s"); + +- parse = gst_element_factory_make ("mp3parse", NULL); ++ parse = gst_element_factory_make ("mpegaudioparse", NULL); + if (!parse) { + g_set_error (error, +BRASERO_BURN_ERROR, +BRASERO_BURN_ERROR_GENERAL, +_("%s element could not be created"), +- "\"Mp3parse\""); ++ "\"mpegaudioparse\""); + g_object_unref (pipeline); + return FALSE; + } +-- +cgit v0.9.1
[arch-commits] Commit in colord/repos (8 files)
Date: Monday, March 18, 2013 @ 23:06:34 Author: heftig Revision: 180252 archrelease: copy trunk to extra-i686, extra-x86_64 Added: colord/repos/extra-i686/PKGBUILD (from rev 180251, colord/trunk/PKGBUILD) colord/repos/extra-i686/colord.install (from rev 180251, colord/trunk/colord.install) colord/repos/extra-x86_64/PKGBUILD (from rev 180251, colord/trunk/PKGBUILD) colord/repos/extra-x86_64/colord.install (from rev 180251, colord/trunk/colord.install) Deleted: colord/repos/extra-i686/PKGBUILD colord/repos/extra-i686/colord.install colord/repos/extra-x86_64/PKGBUILD colord/repos/extra-x86_64/colord.install -+ extra-i686/PKGBUILD | 95 ++ extra-i686/colord.install | 22 - extra-x86_64/PKGBUILD | 95 ++ extra-x86_64/colord.install | 22 - 4 files changed, 104 insertions(+), 130 deletions(-) Deleted: extra-i686/PKGBUILD === --- extra-i686/PKGBUILD 2013-03-18 22:05:22 UTC (rev 180251) +++ extra-i686/PKGBUILD 2013-03-18 22:06:34 UTC (rev 180252) @@ -1,54 +0,0 @@ -# $Id$ -# Maintainer: Jan Alexander Steffens (heftig) -# Contributor: Ionut Biru - -pkgbase=colord -pkgname=(colord colord-sane) -pkgver=0.1.30 -pkgrel=1 -pkgdesc="System daemon for managing color devices" -arch=(i686 x86_64) -url="http://www.freedesktop.org/software/colord"; -license=(GPL2) -depends=(lcms2 libgusb polkit shared-color-profiles sqlite udev dconf dbus) -makedepends=(intltool gobject-introspection vala docbook2x sane) -options=('!libtool') -source=($url/releases/$pkgname-$pkgver.tar.xz) -sha1sums=('54442a4736192aab65a7fa306142ae1cc30cda15') - -build() { - cd $pkgname-$pkgver - - # put udev files in /usr/lib - sed -i "/slashlibdir=/s#/lib#/usr/lib#" configure - - ./configure --prefix=/usr \ ---sysconfdir=/etc --libexecdir=/usr/lib/colord \ ---localstatedir=/var --disable-static \ ---with-systemdsystemunitdir=/usr/lib/systemd/system \ ---enable-vala --enable-sane - make -} - -package_colord() { - install=colord.install - - cd $pkgname-$pkgver - make DESTDIR="$pkgdir" install \ -bashcompletiondir=/usr/share/bash-completion/completions - -# Split colord-sane - cd .. - mkdir -p sane/usr/lib/colord{,-plugins} - mv {"$pkgdir","$srcdir/sane"}/usr/lib/colord/colord-sane - mv {"$pkgdir","$srcdir/sane"}/usr/lib/colord-plugins/libcd_plugin_sane.so -} - -package_colord-sane() { - pkgdesc=("SANE plugin for colord") - depends=(colord sane) - - mv sane/* "$pkgdir" -} - -# vim:set ts=2 sw=2 et: Copied: colord/repos/extra-i686/PKGBUILD (from rev 180251, colord/trunk/PKGBUILD) === --- extra-i686/PKGBUILD (rev 0) +++ extra-i686/PKGBUILD 2013-03-18 22:06:34 UTC (rev 180252) @@ -0,0 +1,41 @@ +# $Id$ +# Maintainer: Jan Alexander Steffens (heftig) +# Contributor: Ionut Biru + +pkgname=colord +pkgver=0.1.30 +pkgrel=2 +pkgdesc="System daemon for managing color devices" +arch=(i686 x86_64) +url="http://www.freedesktop.org/software/colord"; +license=(GPL2) +depends=(lcms2 libgusb polkit shared-color-profiles sqlite udev dconf dbus) +makedepends=(intltool gobject-introspection vala docbook2x sane) +optdepends=('sane: UseSANE support [/etc/colord.conf]') +options=('!libtool') +install=colord.install +backup=(etc/colord.conf) +source=($url/releases/$pkgname-$pkgver.tar.xz) +sha1sums=('54442a4736192aab65a7fa306142ae1cc30cda15') + +build() { + cd $pkgname-$pkgver + + # put udev files in /usr/lib + sed -i "/slashlibdir=/s#/lib#/usr/lib#" configure + + ./configure --prefix=/usr \ +--sysconfdir=/etc --libexecdir=/usr/lib/colord \ +--localstatedir=/var --disable-static \ +--with-systemdsystemunitdir=/usr/lib/systemd/system \ +--enable-vala --enable-sane --disable-volume-search + make +} + +package() { + cd $pkgname-$pkgver + make DESTDIR="$pkgdir" install \ +bashcompletiondir=/usr/share/bash-completion/completions +} + +# vim:set ts=2 sw=2 et: Deleted: extra-i686/colord.install === --- extra-i686/colord.install 2013-03-18 22:05:22 UTC (rev 180251) +++ extra-i686/colord.install 2013-03-18 22:06:34 UTC (rev 180252) @@ -1,11 +0,0 @@ -post_install() { -glib-compile-schemas /usr/share/glib-2.0/schemas -} - -post_upgrade() { -post_install -} - -post_remove() { -post_install -} Copied: colord/repos/extra-i686/colord.install (from rev 180251, colord/trunk/colord.install) === --- extra-i686/colord.install (rev 0) +++ extra-i686/colord.install 2013-03-18 22:06:34 UTC (rev 180252) @@ -0,0 +1,11 @@ +post_install() { +glib-compile-schemas /usr/share/glib-2.0/schemas +} + +post_upgrade() { +post_inst
[arch-commits] Commit in colord/trunk (PKGBUILD)
Date: Monday, March 18, 2013 @ 23:05:22 Author: heftig Revision: 180251 FS#34348 backup /etc/colord.conf; FS#34349 disable volume search by default; Unsplit sane as it needs UseSANE to be set anyway Modified: colord/trunk/PKGBUILD --+ PKGBUILD | 27 +++ 1 file changed, 7 insertions(+), 20 deletions(-) Modified: PKGBUILD === --- PKGBUILD2013-03-18 21:44:06 UTC (rev 180250) +++ PKGBUILD2013-03-18 22:05:22 UTC (rev 180251) @@ -2,17 +2,19 @@ # Maintainer: Jan Alexander Steffens (heftig) # Contributor: Ionut Biru -pkgbase=colord -pkgname=(colord colord-sane) +pkgname=colord pkgver=0.1.30 -pkgrel=1 +pkgrel=2 pkgdesc="System daemon for managing color devices" arch=(i686 x86_64) url="http://www.freedesktop.org/software/colord"; license=(GPL2) depends=(lcms2 libgusb polkit shared-color-profiles sqlite udev dconf dbus) makedepends=(intltool gobject-introspection vala docbook2x sane) +optdepends=('sane: UseSANE support [/etc/colord.conf]') options=('!libtool') +install=colord.install +backup=(etc/colord.conf) source=($url/releases/$pkgname-$pkgver.tar.xz) sha1sums=('54442a4736192aab65a7fa306142ae1cc30cda15') @@ -26,29 +28,14 @@ --sysconfdir=/etc --libexecdir=/usr/lib/colord \ --localstatedir=/var --disable-static \ --with-systemdsystemunitdir=/usr/lib/systemd/system \ ---enable-vala --enable-sane +--enable-vala --enable-sane --disable-volume-search make } -package_colord() { - install=colord.install - +package() { cd $pkgname-$pkgver make DESTDIR="$pkgdir" install \ bashcompletiondir=/usr/share/bash-completion/completions - -# Split colord-sane - cd .. - mkdir -p sane/usr/lib/colord{,-plugins} - mv {"$pkgdir","$srcdir/sane"}/usr/lib/colord/colord-sane - mv {"$pkgdir","$srcdir/sane"}/usr/lib/colord-plugins/libcd_plugin_sane.so } -package_colord-sane() { - pkgdesc=("SANE plugin for colord") - depends=(colord sane) - - mv sane/* "$pkgdir" -} - # vim:set ts=2 sw=2 et:
[arch-commits] Commit in lib32-ncurses/repos (2 files)
Date: Monday, March 18, 2013 @ 21:35:20 Author: bluewind Revision: 86537 archrelease: copy trunk to multilib-testing-x86_64 Added: lib32-ncurses/repos/multilib-testing-x86_64/ lib32-ncurses/repos/multilib-testing-x86_64/PKGBUILD (from rev 86536, lib32-ncurses/trunk/PKGBUILD) --+ PKGBUILD | 72 + 1 file changed, 72 insertions(+) Copied: lib32-ncurses/repos/multilib-testing-x86_64/PKGBUILD (from rev 86536, lib32-ncurses/trunk/PKGBUILD) === --- multilib-testing-x86_64/PKGBUILD(rev 0) +++ multilib-testing-x86_64/PKGBUILD2013-03-18 20:35:20 UTC (rev 86537) @@ -0,0 +1,72 @@ +# $Id$ +# Maintainer: Allan McRae +# Contributor: judd + +_pkgbasename=ncurses +pkgname=lib32-${_pkgbasename} +pkgver=5.9 +pkgrel=2 +pkgdesc="System V Release 4.0 curses emulation library (32-bit)" +arch=('x86_64') +url="http://www.gnu.org/software/ncurses/"; +license=('MIT') +depends=('lib32-glibc' ${_pkgbasename}) +makedepends=("gcc-multilib") +source=(ftp://ftp.gnu.org/pub/gnu/${_pkgbasename}/${_pkgbasename}-${pkgver}.tar.gz) +md5sums=('8cb9c412e5f2d96bc6f459aa8c6282a1') + +build() { + export CC="gcc -m32" + export CXX="g++ -m32" + export PKG_CONFIG_PATH="/usr/lib32/pkgconfig" + + cd ${srcdir}/ + mkdir ncurses{,w}-build + + cd ${srcdir}/ncursesw-build + ../${_pkgbasename}-${pkgver}/configure --prefix=/usr --mandir=/usr/share/man \ + --with-shared --with-normal --without-debug --without-ada \ + --with-install-prefix=${pkgdir} --enable-widec --libdir=/usr/lib32 + make + + # libraries for external binary support + cd ${srcdir}/ncurses-build +# [ $CARCH = "x86_64" ] && CONFIGFLAG="--with-chtype=long" + ../${_pkgbasename}-${pkgver}/configure --prefix=/usr \ +--with-shared --with-normal --without-debug --without-ada \ +--with-install-prefix=${pkgdir} $CONFIGFLAG --libdir=/usr/lib32 + make +} + +package() { + cd ${srcdir}/ncursesw-build + make install + + install -dm755 ${pkgdir}/usr/lib32 + + # fool packages looking to link to non-wide-character ncurses libraries + for lib in curses ncurses form panel menu; do +rm -f ${pkgdir}/usr/lib32/lib${lib}.so +echo "INPUT(-l${lib}w)" >${pkgdir}/usr/lib32/lib${lib}.so +ln -sf lib${lib}w.a ${pkgdir}/usr/lib32/lib${lib}.a + done + ln -sf libncurses++w.a ${pkgdir}/usr/lib32/libncurses++.a + + # some packages look for -lcurses during build + rm -f ${pkgdir}/usr/lib32/libcursesw.so + echo "INPUT(-lncursesw)" >${pkgdir}/usr/lib32/libcursesw.so + ln -sf libncurses.so ${pkgdir}/usr/lib32/libcurses.so + ln -sf libncursesw.a ${pkgdir}/usr/lib32/libcursesw.a + ln -sf libncurses.a ${pkgdir}/usr/lib32/libcurses.a + + # non-widec compatibility libraries + cd ${srcdir}/ncurses-build + for lib in ncurses form panel menu; do +install -Dm755 lib/lib${lib}.so.${pkgver} ${pkgdir}/usr/lib32/lib${lib}.so.${pkgver} +ln -s lib${lib}.so.${pkgver} ${pkgdir}/usr/lib32/lib${lib}.so.5 + done + + rm -rf "${pkgdir}"/usr/{include,share,bin} +} + +# vim: set et ts=2 sw=2:
[arch-commits] Commit in lib32-ncurses/trunk (PKGBUILD)
Date: Monday, March 18, 2013 @ 21:35:15 Author: bluewind Revision: 86536 upgpkg: lib32-ncurses 5.9-2 fix FS#34101 Modified: lib32-ncurses/trunk/PKGBUILD --+ PKGBUILD | 20 1 file changed, 12 insertions(+), 8 deletions(-) Modified: PKGBUILD === --- PKGBUILD2013-03-18 18:13:26 UTC (rev 86535) +++ PKGBUILD2013-03-18 20:35:15 UTC (rev 86536) @@ -5,7 +5,7 @@ _pkgbasename=ncurses pkgname=lib32-${_pkgbasename} pkgver=5.9 -pkgrel=1 +pkgrel=2 pkgdesc="System V Release 4.0 curses emulation library (32-bit)" arch=('x86_64') url="http://www.gnu.org/software/ncurses/"; @@ -29,7 +29,7 @@ --with-install-prefix=${pkgdir} --enable-widec --libdir=/usr/lib32 make - # libncurses.so.5 for external binary support + # libraries for external binary support cd ${srcdir}/ncurses-build # [ $CARCH = "x86_64" ] && CONFIGFLAG="--with-chtype=long" ../${_pkgbasename}-${pkgver}/configure --prefix=/usr \ @@ -44,7 +44,7 @@ install -dm755 ${pkgdir}/usr/lib32 - # Fool packages looking to link to non-wide-character ncurses libraries + # fool packages looking to link to non-wide-character ncurses libraries for lib in curses ncurses form panel menu; do rm -f ${pkgdir}/usr/lib32/lib${lib}.so echo "INPUT(-l${lib}w)" >${pkgdir}/usr/lib32/lib${lib}.so @@ -52,17 +52,21 @@ done ln -sf libncurses++w.a ${pkgdir}/usr/lib32/libncurses++.a - # Some packages look for -lcurses during build + # some packages look for -lcurses during build rm -f ${pkgdir}/usr/lib32/libcursesw.so echo "INPUT(-lncursesw)" >${pkgdir}/usr/lib32/libcursesw.so ln -sf libncurses.so ${pkgdir}/usr/lib32/libcurses.so ln -sf libncursesw.a ${pkgdir}/usr/lib32/libcursesw.a ln -sf libncurses.a ${pkgdir}/usr/lib32/libcurses.a - # non-widec compatibility library - cd ${srcdir}/ncurses-build - install -Dm755 lib/libncurses.so.${pkgver} ${pkgdir}/usr/lib32/libncurses.so.${pkgver} - ln -sf libncurses.so.${pkgver} ${pkgdir}/usr/lib32/libncurses.so.5 + # non-widec compatibility libraries + cd ${srcdir}/ncurses-build + for lib in ncurses form panel menu; do +install -Dm755 lib/lib${lib}.so.${pkgver} ${pkgdir}/usr/lib32/lib${lib}.so.${pkgver} +ln -s lib${lib}.so.${pkgver} ${pkgdir}/usr/lib32/lib${lib}.so.5 + done rm -rf "${pkgdir}"/usr/{include,share,bin} } + +# vim: set et ts=2 sw=2:
[arch-commits] Commit in emacs/repos (6 files)
Date: Monday, March 18, 2013 @ 21:27:57 Author: eric Revision: 180241 archrelease: copy trunk to staging-i686, staging-x86_64 Added: emacs/repos/staging-i686/ emacs/repos/staging-i686/PKGBUILD (from rev 180240, emacs/trunk/PKGBUILD) emacs/repos/staging-i686/emacs.install (from rev 180240, emacs/trunk/emacs.install) emacs/repos/staging-x86_64/ emacs/repos/staging-x86_64/PKGBUILD (from rev 180240, emacs/trunk/PKGBUILD) emacs/repos/staging-x86_64/emacs.install (from rev 180240, emacs/trunk/emacs.install) --+ staging-i686/PKGBUILD| 41 + staging-i686/emacs.install | 32 staging-x86_64/PKGBUILD | 41 + staging-x86_64/emacs.install | 32 4 files changed, 146 insertions(+) Copied: emacs/repos/staging-i686/PKGBUILD (from rev 180240, emacs/trunk/PKGBUILD) === --- staging-i686/PKGBUILD (rev 0) +++ staging-i686/PKGBUILD 2013-03-18 20:27:57 UTC (rev 180241) @@ -0,0 +1,41 @@ +# $Id$ +# Maintainer: Juergen Hoetzel +# Contributor: Renchi Raju + +pkgname=emacs +pkgver=24.3 +pkgrel=1 +pkgdesc="The extensible, customizable, self-documenting real-time display editor" +arch=('i686' 'x86_64') +url="http://www.gnu.org/software/emacs/emacs.html"; +license=('GPL3') +depends=('librsvg' 'gpm' 'giflib' 'libxpm' 'libotf' 'm17n-lib' 'gtk3' 'hicolor-icon-theme' 'gconf' 'desktop-file-utils' 'alsa-lib' 'imagemagick') +install=emacs.install +source=(ftp://ftp.gnu.org/gnu/emacs/$pkgname-$pkgver.tar.xz{,.sig}) +md5sums=('ea9ed000ca165280265aabb55b9afbd7' + '3f6990fabfbe1d5f3cd58bace4eb20f1') + +build() { + cd "$srcdir"/$pkgname-$pkgver + ./configure --prefix=/usr --sysconfdir=/etc --libexecdir=/usr/lib \ +--localstatedir=/var --with-x-toolkit=gtk3 --with-xft + make +} + +package() { + cd "$srcdir"/$pkgname-$pkgver + make DESTDIR="$pkgdir" install + + # remove conflict with ctags package + mv "$pkgdir"/usr/bin/{ctags,ctags.emacs} + mv "$pkgdir"/usr/share/man/man1/{ctags.1.gz,ctags.emacs.1} + # remove conflict with texinfo + rm "$pkgdir"/usr/share/info/info.info.gz + # fix user/root permissions on usr/share files + find "$pkgdir"/usr/share/emacs/$pkgver -exec chown root:root {} \; + # fix perms on /var/games + chmod 775 "$pkgdir"/var/games + chmod 775 "$pkgdir"/var/games/emacs + chmod 664 "$pkgdir"/var/games/emacs/* + chown -R root:games "$pkgdir"/var/games +} Copied: emacs/repos/staging-i686/emacs.install (from rev 180240, emacs/trunk/emacs.install) === --- staging-i686/emacs.install (rev 0) +++ staging-i686/emacs.install 2013-03-18 20:27:57 UTC (rev 180241) @@ -0,0 +1,32 @@ +ICON_PATH=usr/share/icons/hicolor +INFO_DIR=usr/share/info + +INFO_FILES=(ada-mode auth autotype bovine calc ccmode cl dbus dired-x ebrowse +ede ediff edt efaq eieio eintr elisp emacs emacs-gnutls emacs-mime epa erc ert eshell eudc flymake +forms gnus htmlfontify idlwave mairix-el message mh-e newsticker nxml-mode +org pcl-cvs pgg rcirc reftex remember sasl sc semantic ses sieve smtpmail +speedbar srecode tramp url vip viper widget wisent woman) + +post_install() { + gtk-update-icon-cache -q -t -f ${ICON_PATH} + update-desktop-database -q + + [[ -x usr/bin/install-info ]] || return 0 + for f in ${INFO_FILES[@]}; do +install-info ${INFO_DIR}/$f.info.gz ${INFO_DIR}/dir 2> /dev/null + done +} + +post_upgrade() { + post_install $1 +} + +pre_remove() { + gtk-update-icon-cache -q -t -f ${ICON_PATH} + update-desktop-database -q + + [[ -x usr/bin/install-info ]] || return 0 + for f in ${INFO_FILES[@]}; do +install-info --delete ${INFO_DIR}/$f.info.gz ${INFO_DIR}/dir 2> /dev/null + done +} Copied: emacs/repos/staging-x86_64/PKGBUILD (from rev 180240, emacs/trunk/PKGBUILD) === --- staging-x86_64/PKGBUILD (rev 0) +++ staging-x86_64/PKGBUILD 2013-03-18 20:27:57 UTC (rev 180241) @@ -0,0 +1,41 @@ +# $Id$ +# Maintainer: Juergen Hoetzel +# Contributor: Renchi Raju + +pkgname=emacs +pkgver=24.3 +pkgrel=1 +pkgdesc="The extensible, customizable, self-documenting real-time display editor" +arch=('i686' 'x86_64') +url="http://www.gnu.org/software/emacs/emacs.html"; +license=('GPL3') +depends=('librsvg' 'gpm' 'giflib' 'libxpm' 'libotf' 'm17n-lib' 'gtk3' 'hicolor-icon-theme' 'gconf' 'desktop-file-utils' 'alsa-lib' 'imagemagick') +install=emacs.install +source=(ftp://ftp.gnu.org/gnu/emacs/$pkgname-$pkgver.tar.xz{,.sig}) +md5sums=('ea9ed000ca165280265aabb55b9afbd7' + '3f6990fabfbe1d5f3cd58bace4eb20f1') + +build() { + cd "$srcdir"/$pkgname-$pkgver + ./configure --prefix=/usr --sysconfdir=/etc --libexecdir=/usr/li
[arch-commits] Commit in emacs/trunk (PKGBUILD emacs.install)
Date: Monday, March 18, 2013 @ 21:22:11 Author: eric Revision: 180240 upgpkg: emacs 24.3-1 Rebuild against imagemagick-6.8.3.9, Upstream update, Update info pages handling in install scriptlet Modified: emacs/trunk/PKGBUILD emacs/trunk/emacs.install ---+ PKGBUILD | 12 +++- emacs.install | 10 +- 2 files changed, 12 insertions(+), 10 deletions(-) Modified: PKGBUILD === --- PKGBUILD2013-03-18 19:28:47 UTC (rev 180239) +++ PKGBUILD2013-03-18 20:22:11 UTC (rev 180240) @@ -3,18 +3,18 @@ # Contributor: Renchi Raju pkgname=emacs -pkgver=24.2 -pkgrel=4 +pkgver=24.3 +pkgrel=1 pkgdesc="The extensible, customizable, self-documenting real-time display editor" arch=('i686' 'x86_64') url="http://www.gnu.org/software/emacs/emacs.html"; license=('GPL3') depends=('librsvg' 'gpm' 'giflib' 'libxpm' 'libotf' 'm17n-lib' 'gtk3' 'hicolor-icon-theme' 'gconf' 'desktop-file-utils' 'alsa-lib' 'imagemagick') install=emacs.install -source=(ftp://ftp.gnu.org/gnu/emacs/$pkgname-$pkgver.tar.bz2{,.sig}) -md5sums=('1676803a50e8adc817fdaaebb9234f14' 'ca1766337f419ef827dd96d1ff78f158') +source=(ftp://ftp.gnu.org/gnu/emacs/$pkgname-$pkgver.tar.xz{,.sig}) +md5sums=('ea9ed000ca165280265aabb55b9afbd7' + '3f6990fabfbe1d5f3cd58bace4eb20f1') - build() { cd "$srcdir"/$pkgname-$pkgver ./configure --prefix=/usr --sysconfdir=/etc --libexecdir=/usr/lib \ @@ -29,6 +29,8 @@ # remove conflict with ctags package mv "$pkgdir"/usr/bin/{ctags,ctags.emacs} mv "$pkgdir"/usr/share/man/man1/{ctags.1.gz,ctags.emacs.1} + # remove conflict with texinfo + rm "$pkgdir"/usr/share/info/info.info.gz # fix user/root permissions on usr/share files find "$pkgdir"/usr/share/emacs/$pkgver -exec chown root:root {} \; # fix perms on /var/games Modified: emacs.install === --- emacs.install 2013-03-18 19:28:47 UTC (rev 180239) +++ emacs.install 2013-03-18 20:22:11 UTC (rev 180240) @@ -1,11 +1,11 @@ ICON_PATH=usr/share/icons/hicolor INFO_DIR=usr/share/info -INFO_FILES=(ada-mode auth autotype calc ccmode cl dbus dired-x ebrowse +INFO_FILES=(ada-mode auth autotype bovine calc ccmode cl dbus dired-x ebrowse ede ediff edt efaq eieio eintr elisp emacs emacs-gnutls emacs-mime epa erc ert eshell eudc flymake -forms gnus idlwave info mairix-el message mh-e newsticker nxml-mode +forms gnus htmlfontify idlwave mairix-el message mh-e newsticker nxml-mode org pcl-cvs pgg rcirc reftex remember sasl sc semantic ses sieve smtpmail -speedbar tramp url vip viper widget woman) +speedbar srecode tramp url vip viper widget wisent woman) post_install() { gtk-update-icon-cache -q -t -f ${ICON_PATH} @@ -13,7 +13,7 @@ [[ -x usr/bin/install-info ]] || return 0 for f in ${INFO_FILES[@]}; do -install-info ${INFO_DIR}/$f.gz ${INFO_DIR}/dir 2> /dev/null +install-info ${INFO_DIR}/$f.info.gz ${INFO_DIR}/dir 2> /dev/null done } @@ -27,6 +27,6 @@ [[ -x usr/bin/install-info ]] || return 0 for f in ${INFO_FILES[@]}; do -install-info --delete ${INFO_DIR}/$f.gz ${INFO_DIR}/dir 2> /dev/null +install-info --delete ${INFO_DIR}/$f.info.gz ${INFO_DIR}/dir 2> /dev/null done }
[arch-commits] Commit in upower/repos (6 files)
Date: Monday, March 18, 2013 @ 20:28:47 Author: jgc Revision: 180239 archrelease: copy trunk to extra-i686, extra-x86_64 Added: upower/repos/extra-i686/PKGBUILD (from rev 180238, upower/trunk/PKGBUILD) upower/repos/extra-x86_64/PKGBUILD (from rev 180238, upower/trunk/PKGBUILD) Deleted: upower/repos/extra-i686/PKGBUILD upower/repos/extra-i686/lg-unifying-fix-K750-features-name-use-1-second-interval.patch upower/repos/extra-x86_64/PKGBUILD upower/repos/extra-x86_64/lg-unifying-fix-K750-features-name-use-1-second-interval.patch -+ extra-i686/PKGBUILD | 71 +++ extra-i686/lg-unifying-fix-K750-features-name-use-1-second-interval.patch | 98 -- extra-x86_64/PKGBUILD | 71 +++ extra-x86_64/lg-unifying-fix-K750-features-name-use-1-second-interval.patch | 98 -- 4 files changed, 68 insertions(+), 270 deletions(-) Deleted: extra-i686/PKGBUILD === --- extra-i686/PKGBUILD 2013-03-18 19:28:40 UTC (rev 180238) +++ extra-i686/PKGBUILD 2013-03-18 19:28:47 UTC (rev 180239) @@ -1,37 +0,0 @@ -# $Id$ -# Maintainer: Jan de Groot - -pkgname=upower -pkgver=0.9.19 -pkgrel=1 -pkgdesc="Abstraction for enumerating power devices, listening to device events and querying history and statistics" -arch=('i686' 'x86_64') -url="http://upower.freedesktop.org"; -license=('GPL') -depends=('systemd-tools' 'libsystemd' 'libusb' 'polkit' 'pm-utils' 'dbus-glib' 'libimobiledevice') -makedepends=('intltool' 'docbook-xsl' 'gobject-introspection' 'systemd') -options=('!libtool') -source=($url/releases/$pkgname-$pkgver.tar.xz -lg-unifying-fix-K750-features-name-use-1-second-interval.patch) -md5sums=('f96955ff1a2e4f006937d6b5ea95afb8' - '04b2a6141e80e422a9fe2820b5b3a613') - -build() { - cd "$pkgname-$pkgver" - - # put udev files in /usr/lib - sed -i "/slashlibdir=/s#/lib#/usr/lib#" configure - - patch -Np1 -i ../lg-unifying-fix-K750-features-name-use-1-second-interval.patch - - ./configure --prefix=/usr --sysconfdir=/etc \ ---localstatedir=/var \ ---libexecdir=/usr/lib/$pkgname \ ---disable-static - make -} - -package() { - cd "$pkgname-$pkgver" - make DESTDIR="$pkgdir" install -} Copied: upower/repos/extra-i686/PKGBUILD (from rev 180238, upower/trunk/PKGBUILD) === --- extra-i686/PKGBUILD (rev 0) +++ extra-i686/PKGBUILD 2013-03-18 19:28:47 UTC (rev 180239) @@ -0,0 +1,34 @@ +# $Id$ +# Maintainer: Jan de Groot + +pkgname=upower +pkgver=0.9.20 +pkgrel=1 +pkgdesc="Abstraction for enumerating power devices, listening to device events and querying history and statistics" +arch=('i686' 'x86_64') +url="http://upower.freedesktop.org"; +license=('GPL') +depends=('systemd-tools' 'libsystemd' 'libusb' 'polkit' 'pm-utils' 'dbus-glib' 'libimobiledevice') +makedepends=('intltool' 'docbook-xsl' 'gobject-introspection' 'systemd') +options=('!libtool') +source=($url/releases/$pkgname-$pkgver.tar.xz) +md5sums=('f175984d142dc8d2353a7da609836b69') + +build() { + cd "$pkgname-$pkgver" + + # put udev files in /usr/lib + sed -i "/slashlibdir=/s#/lib#/usr/lib#" configure + + ./configure --prefix=/usr --sysconfdir=/etc \ +--localstatedir=/var \ +--libexecdir=/usr/lib/$pkgname \ +--disable-static \ +--enable-deprecated + make +} + +package() { + cd "$pkgname-$pkgver" + make DESTDIR="$pkgdir" install +} Deleted: extra-i686/lg-unifying-fix-K750-features-name-use-1-second-interval.patch === --- extra-i686/lg-unifying-fix-K750-features-name-use-1-second-interval.patch 2013-03-18 19:28:40 UTC (rev 180238) +++ extra-i686/lg-unifying-fix-K750-features-name-use-1-second-interval.patch 2013-03-18 19:28:47 UTC (rev 180239) @@ -1,98 +0,0 @@ -From 35b0d25b49d04cf7d33699c34f42a196c8e92a2e Mon Sep 17 00:00:00 2001 -From: Julien Danjou -Date: Sat, 01 Dec 2012 12:30:03 + -Subject: lg-unifying: fix K750 features name, use 1 second interval - -I've recently got access to some spec on this, so I'm now able to document -his a bit better. Also, change the 0x78 value for the function sending -BattLightMeasureBroadcastEvent to 0x1 since this is the number of event we -want, and one is enough. - -Signed-off-by: Julien Danjou -Signed-off-by: Richard Hughes -diff --git a/src/linux/up-device-lg-unifying.c b/src/linux/up-device-lg-unifying.c -index e8997c0..eddd1ec 100644 a/src/linux/up-device-lg-unifying.c -+++ b/src/linux/up-device-lg-unifying.c -@@ -84,10 +84,9 @@ - #define HIDPP_FEATURE_GETDEVICENAMETYPE_FUNCTION_GETCOUNT (0x00 << 4) - #define HIDPP_FEATURE_GETDEVICENAMETYPE_FUNCTION_GETDEVICENAME (0x01 << 4) - --/* I wish i has the spec fo
[arch-commits] Commit in upower/trunk (2 files)
Date: Monday, March 18, 2013 @ 20:28:40 Author: jgc Revision: 180238 Enable deprecated interfaces. KDE still needs this, so we keep this enabled for a while. Drop patch already included in the release Note: pm-utils is still a dependency and will not go away when removing deprecated interfaces. upgpkg: upower 0.9.20-1 Modified: upower/trunk/PKGBUILD Deleted: upower/trunk/lg-unifying-fix-K750-features-name-use-1-second-interval.patch + PKGBUILD | 13 - lg-unifying-fix-K750-features-name-use-1-second-interval.patch | 98 -- 2 files changed, 5 insertions(+), 106 deletions(-) Modified: PKGBUILD === --- PKGBUILD2013-03-18 18:26:40 UTC (rev 180237) +++ PKGBUILD2013-03-18 19:28:40 UTC (rev 180238) @@ -2,7 +2,7 @@ # Maintainer: Jan de Groot pkgname=upower -pkgver=0.9.19 +pkgver=0.9.20 pkgrel=1 pkgdesc="Abstraction for enumerating power devices, listening to device events and querying history and statistics" arch=('i686' 'x86_64') @@ -11,10 +11,8 @@ depends=('systemd-tools' 'libsystemd' 'libusb' 'polkit' 'pm-utils' 'dbus-glib' 'libimobiledevice') makedepends=('intltool' 'docbook-xsl' 'gobject-introspection' 'systemd') options=('!libtool') -source=($url/releases/$pkgname-$pkgver.tar.xz -lg-unifying-fix-K750-features-name-use-1-second-interval.patch) -md5sums=('f96955ff1a2e4f006937d6b5ea95afb8' - '04b2a6141e80e422a9fe2820b5b3a613') +source=($url/releases/$pkgname-$pkgver.tar.xz) +md5sums=('f175984d142dc8d2353a7da609836b69') build() { cd "$pkgname-$pkgver" @@ -22,12 +20,11 @@ # put udev files in /usr/lib sed -i "/slashlibdir=/s#/lib#/usr/lib#" configure - patch -Np1 -i ../lg-unifying-fix-K750-features-name-use-1-second-interval.patch - ./configure --prefix=/usr --sysconfdir=/etc \ --localstatedir=/var \ --libexecdir=/usr/lib/$pkgname \ ---disable-static +--disable-static \ +--enable-deprecated make } Deleted: lg-unifying-fix-K750-features-name-use-1-second-interval.patch === --- lg-unifying-fix-K750-features-name-use-1-second-interval.patch 2013-03-18 18:26:40 UTC (rev 180237) +++ lg-unifying-fix-K750-features-name-use-1-second-interval.patch 2013-03-18 19:28:40 UTC (rev 180238) @@ -1,98 +0,0 @@ -From 35b0d25b49d04cf7d33699c34f42a196c8e92a2e Mon Sep 17 00:00:00 2001 -From: Julien Danjou -Date: Sat, 01 Dec 2012 12:30:03 + -Subject: lg-unifying: fix K750 features name, use 1 second interval - -I've recently got access to some spec on this, so I'm now able to document -his a bit better. Also, change the 0x78 value for the function sending -BattLightMeasureBroadcastEvent to 0x1 since this is the number of event we -want, and one is enough. - -Signed-off-by: Julien Danjou -Signed-off-by: Richard Hughes -diff --git a/src/linux/up-device-lg-unifying.c b/src/linux/up-device-lg-unifying.c -index e8997c0..eddd1ec 100644 a/src/linux/up-device-lg-unifying.c -+++ b/src/linux/up-device-lg-unifying.c -@@ -84,10 +84,9 @@ - #define HIDPP_FEATURE_GETDEVICENAMETYPE_FUNCTION_GETCOUNT (0x00 << 4) - #define HIDPP_FEATURE_GETDEVICENAMETYPE_FUNCTION_GETDEVICENAME (0x01 << 4) - --/* I wish i has the spec for this, but I don't so I invented the name */ --#define HIDPP_FEATURE_K750_BATTERY 0x4301 --#define HIDPP_FEATURE_K750_BATTERY_FUNCTION_STARTLUXANDBATTERY (0x00 << 4) --#define HIDPP_FEATURE_K750_BATTERY_FUNCTION_LUXANDBATTERYEVENT (0x01 << 4) -+#define HIDPP_FEATURE_SOLAR_DASHBOARD 0x4301 -+#define HIDPP_FEATURE_SOLAR_DASHBOARD_FUNCTION_SetLightMeasure (0x00 << 4) -+#define HIDPP_FEATURE_SOLAR_DASHBOARD_BattLightMeasureBroadcastEvent (0x01 << 4) - - #define HIDPP_FEATURE_FUNCTION_AS_ARG(feature)\ - feature >> 8, feature, 0x00 -@@ -105,7 +104,7 @@ struct UpDeviceUnifyingPrivate - int fd; - /* Device index on the Unifying "bus" */ - gint device_index; -- gint feature_k750_battery_index; -+ gint feature_solar_dashboard_index; - GIOChannel *channel; - guintchannel_source_id; - }; -@@ -130,8 +129,8 @@ up_device_unifying_event_io (GIOChannel *channel, GIOCondition condition, gpoint - while (read (unifying->priv->fd, buf, sizeof(buf)) > 0) - if (buf[0] == HIDPP_HEADER_RESPONSE && - buf[1] == unifying->priv->device_index && -- buf[2] == unifying->priv->feature_k750_battery_index && -- buf[3] == HIDPP_FEATURE_K750_BATTERY_FUNCTION_LUXANDBATTERYEVENT) { -+ buf[2] == unifying->priv->feature_solar_dashboard_index && -+
[arch-commits] Commit in glamor-egl/repos (40 files)
Date: Monday, March 18, 2013 @ 19:26:40 Author: andyrtr Revision: 180237 archrelease: copy trunk to extra-i686, extra-x86_64 Added: glamor-egl/repos/extra-i686/PKGBUILD (from rev 180236, glamor-egl/trunk/PKGBUILD) glamor-egl/repos/extra-i686/compat-api.h (from rev 180236, glamor-egl/trunk/compat-api.h) glamor-egl/repos/extra-i686/compiler.h (from rev 180236, glamor-egl/trunk/compiler.h) glamor-egl/repos/extra-i686/git-fixes.patch (from rev 180236, glamor-egl/trunk/git-fixes.patch) glamor-egl/repos/extra-i686/glamor_debug.h (from rev 180236, glamor-egl/trunk/glamor_debug.h) glamor-egl/repos/extra-i686/glamor_gl_dispatch.h (from rev 180236, glamor-egl/trunk/glamor_gl_dispatch.h) glamor-egl/repos/extra-i686/glamor_glext.h (from rev 180236, glamor-egl/trunk/glamor_glext.h) glamor-egl/repos/extra-i686/glamor_priv.h (from rev 180236, glamor-egl/trunk/glamor_priv.h) glamor-egl/repos/extra-i686/glamor_utils.h (from rev 180236, glamor-egl/trunk/glamor_utils.h) glamor-egl/repos/extra-i686/glapi.h (from rev 180236, glamor-egl/trunk/glapi.h) glamor-egl/repos/extra-x86_64/PKGBUILD (from rev 180236, glamor-egl/trunk/PKGBUILD) glamor-egl/repos/extra-x86_64/compat-api.h (from rev 180236, glamor-egl/trunk/compat-api.h) glamor-egl/repos/extra-x86_64/compiler.h (from rev 180236, glamor-egl/trunk/compiler.h) glamor-egl/repos/extra-x86_64/git-fixes.patch (from rev 180236, glamor-egl/trunk/git-fixes.patch) glamor-egl/repos/extra-x86_64/glamor_debug.h (from rev 180236, glamor-egl/trunk/glamor_debug.h) glamor-egl/repos/extra-x86_64/glamor_gl_dispatch.h (from rev 180236, glamor-egl/trunk/glamor_gl_dispatch.h) glamor-egl/repos/extra-x86_64/glamor_glext.h (from rev 180236, glamor-egl/trunk/glamor_glext.h) glamor-egl/repos/extra-x86_64/glamor_priv.h (from rev 180236, glamor-egl/trunk/glamor_priv.h) glamor-egl/repos/extra-x86_64/glamor_utils.h (from rev 180236, glamor-egl/trunk/glamor_utils.h) glamor-egl/repos/extra-x86_64/glapi.h (from rev 180236, glamor-egl/trunk/glapi.h) Deleted: glamor-egl/repos/extra-i686/PKGBUILD glamor-egl/repos/extra-i686/compat-api.h glamor-egl/repos/extra-i686/compiler.h glamor-egl/repos/extra-i686/git-fixes.patch glamor-egl/repos/extra-i686/glamor_debug.h glamor-egl/repos/extra-i686/glamor_gl_dispatch.h glamor-egl/repos/extra-i686/glamor_glext.h glamor-egl/repos/extra-i686/glamor_priv.h glamor-egl/repos/extra-i686/glamor_utils.h glamor-egl/repos/extra-i686/glapi.h glamor-egl/repos/extra-x86_64/PKGBUILD glamor-egl/repos/extra-x86_64/compat-api.h glamor-egl/repos/extra-x86_64/compiler.h glamor-egl/repos/extra-x86_64/git-fixes.patch glamor-egl/repos/extra-x86_64/glamor_debug.h glamor-egl/repos/extra-x86_64/glamor_gl_dispatch.h glamor-egl/repos/extra-x86_64/glamor_glext.h glamor-egl/repos/extra-x86_64/glamor_priv.h glamor-egl/repos/extra-x86_64/glamor_utils.h glamor-egl/repos/extra-x86_64/glapi.h ---+ extra-i686/PKGBUILD | 126 - extra-i686/compat-api.h | 214 +- extra-i686/compiler.h | 118 - extra-i686/git-fixes.patch| 605 - extra-i686/glamor_debug.h | 232 +- extra-i686/glamor_gl_dispatch.h | 274 +- extra-i686/glamor_glext.h | 128 - extra-i686/glamor_priv.h | 2032 +-- extra-i686/glamor_utils.h | 3672 ++-- extra-i686/glapi.h| 242 +- extra-x86_64/PKGBUILD | 126 - extra-x86_64/compat-api.h | 214 +- extra-x86_64/compiler.h | 118 - extra-x86_64/git-fixes.patch | 605 - extra-x86_64/glamor_debug.h | 232 +- extra-x86_64/glamor_gl_dispatch.h | 274 +- extra-x86_64/glamor_glext.h | 128 - extra-x86_64/glamor_priv.h| 2032 +-- extra-x86_64/glamor_utils.h | 3672 ++-- extra-x86_64/glapi.h | 242 +- 20 files changed, 7894 insertions(+), 7392 deletions(-) The diff is longer than the limit of 200KB. Use svn diff -r 180236:180237 to see the changes.
[arch-commits] Commit in glamor-egl/trunk (PKGBUILD git-fixes.patch)
Date: Monday, March 18, 2013 @ 19:25:51 Author: andyrtr Revision: 180236 upgpkg: glamor-egl 0.5.0-4 update to latest git commits Modified: glamor-egl/trunk/PKGBUILD glamor-egl/trunk/git-fixes.patch -+ PKGBUILD| 10 +- git-fixes.patch | 251 ++ 2 files changed, 256 insertions(+), 5 deletions(-) Modified: PKGBUILD === --- PKGBUILD2013-03-18 18:19:32 UTC (rev 180235) +++ PKGBUILD2013-03-18 18:25:51 UTC (rev 180236) @@ -4,7 +4,7 @@ pkgname=glamor-egl pkgver=0.5.0 -pkgrel=3 +pkgrel=4 pkgdesc='OpenGL based 2D rendering acceleration library' arch=('i686' 'x86_64') url="http://xorg.freedesktop.org/"; @@ -26,7 +26,7 @@ 'fc3d937f2cb996586d3a9cc7427050d04d2d19d3f745055cc9d3556428a7cf93' 'a7fac65474af636995d0181dbf7f8f091d8657260162eb172ae816b75ad98b54' 'dcf38a7ac303c1636a3b1b7810dcb6ee65ba7e81b6e590840e164ce0e28010dc' -'5c0d1dd79a8b50f6720ba2d4dbe288dca11cc19131bb502c6ad2920298ccf843') +'c56e677456fb8555b009b1d3b95e939b5a38f37c2a345fff48f2b723e44045e9') build() { cd ${srcdir}/${pkgname}-${pkgver} @@ -41,8 +41,8 @@ ./configure --prefix=/usr \ --disable-static \ --enable-glx-tls \ +#--with-xorg-conf-dir=/etc/X11/xorg.conf.d - #--help #--enable-glamor-gles2 \ https://bugs.archlinux.org/task/34284 make @@ -58,6 +58,6 @@ # http://lists.x.org/archives/xorg-devel/2013-March/035719.html # add glamor library path to ld.so.conf.d - install -d ${pkgdir}/etc/ld.so.conf.d - echo "/usr/lib/xorg/modules" > ${pkgdir}/etc/ld.so.conf.d/${pkgname}.conf +# install -d ${pkgdir}/etc/ld.so.conf.d +# echo "/usr/lib/xorg/modules" > ${pkgdir}/etc/ld.so.conf.d/${pkgname}.conf } Modified: git-fixes.patch === --- git-fixes.patch 2013-03-18 18:19:32 UTC (rev 180235) +++ git-fixes.patch 2013-03-18 18:25:51 UTC (rev 180236) @@ -175,3 +175,254 @@ } else {\ -- cgit v0.9.0.2-2-gbebe +From 61879504f86c5cb326cc06a5873283234cfbbcd2 Mon Sep 17 00:00:00 2001 +From: Michel Dänzer +Date: Wed, 13 Mar 2013 16:15:33 + +Subject: glamoregl: Use xf86ScreenToScrn() + +Fixes crashes when glamor is used for a GPU screen with xserver 1.13 or +newer. + +Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=57200#c17 + +Signed-off-by: Michel Dänzer +Reviewed-by: Chris Wilson +--- +diff --git a/src/glamor_egl.c b/src/glamor_egl.c +index a248aa2..cd0bdc0 100644 +--- a/src/glamor_egl.c b/src/glamor_egl.c +@@ -116,7 +116,7 @@ glamor_egl_get_screen_private(ScrnInfoPtr scrn) + _X_EXPORT void + glamor_egl_make_current(ScreenPtr screen) + { +- ScrnInfoPtr scrn = xf86Screens[screen->myNum]; ++ ScrnInfoPtr scrn = xf86ScreenToScrn(screen); + struct glamor_egl_screen_private *glamor_egl = + glamor_egl_get_screen_private(scrn); + +@@ -139,7 +139,7 @@ glamor_egl_make_current(ScreenPtr screen) + _X_EXPORT void + glamor_egl_restore_context(ScreenPtr screen) + { +- ScrnInfoPtr scrn = xf86Screens[screen->myNum]; ++ ScrnInfoPtr scrn = xf86ScreenToScrn(screen); + struct glamor_egl_screen_private *glamor_egl = + glamor_egl_get_screen_private(scrn); + +@@ -221,7 +221,7 @@ glamor_create_texture_from_image(struct glamor_egl_screen_private + Bool + glamor_egl_create_textured_screen(ScreenPtr screen, int handle, int stride) + { +- ScrnInfoPtr scrn = xf86Screens[screen->myNum]; ++ ScrnInfoPtr scrn = xf86ScreenToScrn(screen); + struct glamor_egl_screen_private *glamor_egl; + PixmapPtr screen_pixmap; + +@@ -245,7 +245,7 @@ glamor_egl_create_textured_screen_ext(ScreenPtr screen, + int stride, + PixmapPtr *back_pixmap) + { +- ScrnInfoPtr scrn = xf86Screens[screen->myNum]; ++ ScrnInfoPtr scrn = xf86ScreenToScrn(screen); + struct glamor_egl_screen_private *glamor_egl; + + glamor_egl = glamor_egl_get_screen_private(scrn); +@@ -272,7 +272,7 @@ Bool + glamor_egl_create_textured_pixmap(PixmapPtr pixmap, int handle, int stride) + { + ScreenPtr screen = pixmap->drawable.pScreen; +- ScrnInfoPtr scrn = xf86Screens[screen->myNum]; ++ ScrnInfoPtr scrn = xf86ScreenToScrn(screen); + struct glamor_egl_screen_private *glamor_egl; + EGLImageKHR image; + GLuint texture; +@@ -318,7 +318,7 @@ done: + static void + _glamor_egl_destroy_pixmap_image(PixmapPtr pixmap) + { +- ScrnInfoPtr scrn = xf86Screens[pixmap->drawable.pScreen->myNum]; ++ ScrnInfoPtr scrn = xf86ScreenToScrn(pixmap->drawable.pScreen); + EGLImageKHR image; + struct glamor_egl_screen_private *glamor_egl = + glamor_egl_get_screen_private(scrn); +@@ -338,7 +338,7 @@ _glamor_egl_destroy
[arch-commits] Commit in polkit/repos (14 files)
Date: Monday, March 18, 2013 @ 19:19:32 Author: jgc Revision: 180235 archrelease: copy trunk to extra-i686, extra-x86_64 Added: polkit/repos/extra-i686/PKGBUILD (from rev 180234, polkit/trunk/PKGBUILD) polkit/repos/extra-i686/polkit.install (from rev 180234, polkit/trunk/polkit.install) polkit/repos/extra-i686/polkit.pam (from rev 180234, polkit/trunk/polkit.pam) polkit/repos/extra-x86_64/PKGBUILD (from rev 180234, polkit/trunk/PKGBUILD) polkit/repos/extra-x86_64/polkit.install (from rev 180234, polkit/trunk/polkit.install) polkit/repos/extra-x86_64/polkit.pam (from rev 180234, polkit/trunk/polkit.pam) Deleted: polkit/repos/extra-i686/PKGBUILD polkit/repos/extra-i686/fix-xauthority.patch polkit/repos/extra-i686/polkit.install polkit/repos/extra-i686/polkit.pam polkit/repos/extra-x86_64/PKGBUILD polkit/repos/extra-x86_64/fix-xauthority.patch polkit/repos/extra-x86_64/polkit.install polkit/repos/extra-x86_64/polkit.pam ---+ extra-i686/PKGBUILD | 82 +--- extra-i686/fix-xauthority.patch | 58 - extra-i686/polkit.install | 36 +++ extra-i686/polkit.pam | 14 +++--- extra-x86_64/PKGBUILD | 82 +--- extra-x86_64/fix-xauthority.patch | 58 - extra-x86_64/polkit.install | 36 +++ extra-x86_64/polkit.pam | 14 +++--- 8 files changed, 128 insertions(+), 252 deletions(-) Deleted: extra-i686/PKGBUILD === --- extra-i686/PKGBUILD 2013-03-18 18:19:23 UTC (rev 180234) +++ extra-i686/PKGBUILD 2013-03-18 18:19:32 UTC (rev 180235) @@ -1,43 +0,0 @@ -# $Id$ -# Maintainer: Jan de Groot - -pkgname=polkit -pkgver=0.109 -pkgrel=1 -pkgdesc="Application development toolkit for controlling system-wide privileges" -arch=(i686 x86_64) -license=('LGPL') -url="http://www.freedesktop.org/wiki/Software/polkit"; -depends=('glib2' 'pam' 'expat' 'libsystemd' 'js') -makedepends=('intltool' 'gtk-doc' 'gobject-introspection') -replaces=('policykit') -options=('!libtool') -install=polkit.install -source=(http://www.freedesktop.org/software/polkit/releases/$pkgname-$pkgver.tar.gz -polkit.pam -fix-xauthority.patch) -md5sums=('8c3f08287dd3e1e546e3c2ae00090908' - '6564f95878297b954f0572bc1610dd15' - '78db344a30d7aa089b4705009ec95b58') - -build() { - cd $pkgname-$pkgver - - patch -Np1 -i ../fix-xauthority.patch - - ./configure --prefix=/usr --sysconfdir=/etc \ - --localstatedir=/var --libexecdir=/usr/lib/polkit-1 \ - --with-systemdsystemunitdir=/usr/lib/systemd/system \ - --disable-static --enable-gtk-doc - make -} - -package() { - cd $pkgname-$pkgver - make DESTDIR="$pkgdir" install - - chown 102 "$pkgdir/etc/polkit-1/rules.d" - chown 102 "$pkgdir/usr/share/polkit-1/rules.d" - - install -m644 "$srcdir/polkit.pam" "$pkgdir/etc/pam.d/polkit-1" -} Copied: polkit/repos/extra-i686/PKGBUILD (from rev 180234, polkit/trunk/PKGBUILD) === --- extra-i686/PKGBUILD (rev 0) +++ extra-i686/PKGBUILD 2013-03-18 18:19:32 UTC (rev 180235) @@ -0,0 +1,39 @@ +# $Id$ +# Maintainer: Jan de Groot + +pkgname=polkit +pkgver=0.110 +pkgrel=1 +pkgdesc="Application development toolkit for controlling system-wide privileges" +arch=(i686 x86_64) +license=('LGPL') +url="http://www.freedesktop.org/wiki/Software/polkit"; +depends=('glib2' 'pam' 'expat' 'libsystemd' 'js') +makedepends=('intltool' 'gtk-doc' 'gobject-introspection') +replaces=('policykit') +options=('!libtool') +install=polkit.install +source=(http://www.freedesktop.org/software/polkit/releases/$pkgname-$pkgver.tar.gz +polkit.pam) +md5sums=('06e0d3b72e566ac277fc35c8206d2a28' + '6564f95878297b954f0572bc1610dd15') + +build() { + cd $pkgname-$pkgver + + ./configure --prefix=/usr --sysconfdir=/etc \ + --localstatedir=/var --libexecdir=/usr/lib/polkit-1 \ + --with-systemdsystemunitdir=/usr/lib/systemd/system \ + --disable-static --enable-gtk-doc + make +} + +package() { + cd $pkgname-$pkgver + make DESTDIR="$pkgdir" install + + chown 102 "$pkgdir/etc/polkit-1/rules.d" + chown 102 "$pkgdir/usr/share/polkit-1/rules.d" + + install -m644 "$srcdir/polkit.pam" "$pkgdir/etc/pam.d/polkit-1" +} Deleted: extra-i686/fix-xauthority.patch === --- extra-i686/fix-xauthority.patch 2013-03-18 18:19:23 UTC (rev 180234) +++ extra-i686/fix-xauthority.patch 2013-03-18 18:19:32 UTC (rev 180235) @@ -1,58 +0,0 @@ -From d6acecdd0ebb42e28ff28e04e0207cb01fa20910 Mon Sep 17 00:00:00 2001 -From: David Zeuthen -Date: Wed, 19 Dec 2012 19:28:29 + -Subject: Set XAUTHORITY environment variable if is unset - -The way it works is th
[arch-commits] Commit in polkit/trunk (PKGBUILD fix-xauthority.patch)
Date: Monday, March 18, 2013 @ 19:19:23 Author: jgc Revision: 180234 Remove obsolete patch upgpkg: polkit 0.110-1 Modified: polkit/trunk/PKGBUILD Deleted: polkit/trunk/fix-xauthority.patch --+ PKGBUILD | 12 +++--- fix-xauthority.patch | 58 - 2 files changed, 4 insertions(+), 66 deletions(-) Modified: PKGBUILD === --- PKGBUILD2013-03-18 17:44:06 UTC (rev 180233) +++ PKGBUILD2013-03-18 18:19:23 UTC (rev 180234) @@ -2,7 +2,7 @@ # Maintainer: Jan de Groot pkgname=polkit -pkgver=0.109 +pkgver=0.110 pkgrel=1 pkgdesc="Application development toolkit for controlling system-wide privileges" arch=(i686 x86_64) @@ -14,17 +14,13 @@ options=('!libtool') install=polkit.install source=(http://www.freedesktop.org/software/polkit/releases/$pkgname-$pkgver.tar.gz -polkit.pam -fix-xauthority.patch) -md5sums=('8c3f08287dd3e1e546e3c2ae00090908' - '6564f95878297b954f0572bc1610dd15' - '78db344a30d7aa089b4705009ec95b58') +polkit.pam) +md5sums=('06e0d3b72e566ac277fc35c8206d2a28' + '6564f95878297b954f0572bc1610dd15') build() { cd $pkgname-$pkgver - patch -Np1 -i ../fix-xauthority.patch - ./configure --prefix=/usr --sysconfdir=/etc \ --localstatedir=/var --libexecdir=/usr/lib/polkit-1 \ --with-systemdsystemunitdir=/usr/lib/systemd/system \ Deleted: fix-xauthority.patch === --- fix-xauthority.patch2013-03-18 17:44:06 UTC (rev 180233) +++ fix-xauthority.patch2013-03-18 18:19:23 UTC (rev 180234) @@ -1,58 +0,0 @@ -From d6acecdd0ebb42e28ff28e04e0207cb01fa20910 Mon Sep 17 00:00:00 2001 -From: David Zeuthen -Date: Wed, 19 Dec 2012 19:28:29 + -Subject: Set XAUTHORITY environment variable if is unset - -The way it works is that if XAUTHORITY is unset, then its default -value is $HOME/.Xauthority. But since we're changing user identity -this will not work since $HOME will now change. Therefore, if -XAUTHORITY is unset, just set its default value before changing -identity. This bug only affected login managers using X Window -Authorization but not explicitly setting the XAUTHORITY variable. - -You can argue that XAUTHORITY is broken since it forces uid-changing -apps like pkexec(1) to do more work - and get involved in intimate -details of how X works and so on - but that doesn't change how things -work. - -Based on a patch from Peter Wu . - -https://bugs.freedesktop.org/show_bug.cgi?id=51623 - -Signed-off-by: David Zeuthen -diff --git a/src/programs/pkexec.c b/src/programs/pkexec.c -index 840eb3c..da9784a 100644 a/src/programs/pkexec.c -+++ b/src/programs/pkexec.c -@@ -608,6 +608,28 @@ main (int argc, char *argv[]) - g_ptr_array_add (saved_env, g_strdup (value)); - } - -+ /* $XAUTHORITY is "special" - if unset, we need to set it to ~/.Xauthority. Yes, -+ * this is broken but it's unfortunately how things work (see fdo #51623 for -+ * details) -+ */ -+ if (g_getenv ("XAUTHORITY") == NULL) -+{ -+ const gchar *home; -+ -+ /* pre-2.36 GLib does not examine $HOME (it always looks in /etc/passwd) and -+ * this is not what we want -+ */ -+ home = g_getenv ("HOME"); -+ if (home == NULL) -+home = g_get_home_dir (); -+ -+ if (home != NULL) -+{ -+ g_ptr_array_add (saved_env, g_strdup ("XAUTHORITY")); -+ g_ptr_array_add (saved_env, g_build_filename (home, ".Xauthority", NULL)); -+} -+} -+ - /* Nuke the environment to get a well-known and sanitized environment to avoid attacks -* via e.g. the DBUS_SYSTEM_BUS_ADDRESS environment variable and similar. -*/ --- -cgit v0.9.0.2-2-gbebe
[arch-commits] Commit in converseen/repos (6 files)
Date: Monday, March 18, 2013 @ 19:13:26 Author: eric Revision: 86535 archrelease: copy trunk to community-staging-i686, community-staging-x86_64 Added: converseen/repos/community-staging-i686/ converseen/repos/community-staging-i686/PKGBUILD (from rev 86534, converseen/trunk/PKGBUILD) converseen/repos/community-staging-i686/converseen.install (from rev 86534, converseen/trunk/converseen.install) converseen/repos/community-staging-x86_64/ converseen/repos/community-staging-x86_64/PKGBUILD (from rev 86534, converseen/trunk/PKGBUILD) converseen/repos/community-staging-x86_64/converseen.install (from rev 86534, converseen/trunk/converseen.install) -+ community-staging-i686/PKGBUILD | 38 ++ community-staging-i686/converseen.install | 11 +++ community-staging-x86_64/PKGBUILD | 38 ++ community-staging-x86_64/converseen.install | 11 +++ 4 files changed, 98 insertions(+) Copied: converseen/repos/community-staging-i686/PKGBUILD (from rev 86534, converseen/trunk/PKGBUILD) === --- community-staging-i686/PKGBUILD (rev 0) +++ community-staging-i686/PKGBUILD 2013-03-18 18:13:26 UTC (rev 86535) @@ -0,0 +1,38 @@ +# $Id$ +# Maintainer: Giovanni Scafora +# Contributor: archtux + +pkgname=converseen +pkgver=0.5.3 +pkgrel=3 +pkgdesc="The batch image converter and resizer" +arch=('i686' 'x86_64') +url="http://converseen.sourceforge.net/"; +license=('GPL3') +depends=('imagemagick' 'qt4' 'libwmf' 'openexr') +makedepends=('cmake') +install=converseen.install +source=("http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.bz2";) +md5sums=('8064020c56a531bb190967369c907cec') + +build() { + cd "${srcdir}" + mkdir build + cd build + cmake ../${pkgname}-${pkgver} \ + -DCMAKE_BUILD_TYPE=Release \ + -DCMAKE_INSTALL_PREFIX=/usr \ + -DImageMagick_Magick++_INCLUDE_DIR:PATH=/usr/include/ImageMagick-6 \ + -DImageMagick_Magick++_LIBRARY:FILEPATH=/usr/lib/libMagick++-6.Q16.so \ + -DImageMagick_MagickWand_INCLUDE_DIR:PATH=/usr/include/ImageMagick-6 \ + -DImageMagick_MagickWand_LIBRARY:FILEPATH=/usr/lib/libMagickWand-6.Q16.so \ + -DImageMagick_MagickCore_INCLUDE_DIR:PATH=/usr/include/ImageMagick-6 \ + -DImageMagick_MagickCore_LIBRARY:FILEPATH=/usr/lib/libMagickCore-6.Q16.so + make +} + +package() { + cd "${srcdir}/build" + + make DESTDIR="${pkgdir}" install +} Copied: converseen/repos/community-staging-i686/converseen.install (from rev 86534, converseen/trunk/converseen.install) === --- community-staging-i686/converseen.install (rev 0) +++ community-staging-i686/converseen.install 2013-03-18 18:13:26 UTC (rev 86535) @@ -0,0 +1,11 @@ +post_install() { + xdg-icon-resource forceupdate --theme hicolor &> /dev/null +} + +post_upgrade() { + post_install +} + +post_remove() { + post_install +} Copied: converseen/repos/community-staging-x86_64/PKGBUILD (from rev 86534, converseen/trunk/PKGBUILD) === --- community-staging-x86_64/PKGBUILD (rev 0) +++ community-staging-x86_64/PKGBUILD 2013-03-18 18:13:26 UTC (rev 86535) @@ -0,0 +1,38 @@ +# $Id$ +# Maintainer: Giovanni Scafora +# Contributor: archtux + +pkgname=converseen +pkgver=0.5.3 +pkgrel=3 +pkgdesc="The batch image converter and resizer" +arch=('i686' 'x86_64') +url="http://converseen.sourceforge.net/"; +license=('GPL3') +depends=('imagemagick' 'qt4' 'libwmf' 'openexr') +makedepends=('cmake') +install=converseen.install +source=("http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.bz2";) +md5sums=('8064020c56a531bb190967369c907cec') + +build() { + cd "${srcdir}" + mkdir build + cd build + cmake ../${pkgname}-${pkgver} \ + -DCMAKE_BUILD_TYPE=Release \ + -DCMAKE_INSTALL_PREFIX=/usr \ + -DImageMagick_Magick++_INCLUDE_DIR:PATH=/usr/include/ImageMagick-6 \ + -DImageMagick_Magick++_LIBRARY:FILEPATH=/usr/lib/libMagick++-6.Q16.so \ + -DImageMagick_MagickWand_INCLUDE_DIR:PATH=/usr/include/ImageMagick-6 \ + -DImageMagick_MagickWand_LIBRARY:FILEPATH=/usr/lib/libMagickWand-6.Q16.so \ + -DImageMagick_MagickCore_INCLUDE_DIR:PATH=/usr/include/ImageMagick-6 \ + -DImageMagick_MagickCore_LIBRARY:FILEPATH=/usr/lib/libMagickCore-6.Q16.so + make +} + +package() { + cd "${srcdir}/build" + + make DESTDIR="${pkgdir}" install +} Copied: converseen/repos/community-staging-x86_64/converseen.install (from rev 86534, converseen/trunk/converseen.install) === --- community-staging-x86_64/conv
[arch-commits] Commit in converseen/trunk (PKGBUILD)
Date: Monday, March 18, 2013 @ 19:13:02 Author: eric Revision: 86534 upgpkg: converseen 0.5.3-3 Rebuild against imagemagick-6.8.3.9 Modified: converseen/trunk/PKGBUILD --+ PKGBUILD | 11 +++ 1 file changed, 7 insertions(+), 4 deletions(-) Modified: PKGBUILD === --- PKGBUILD2013-03-18 17:58:18 UTC (rev 86533) +++ PKGBUILD2013-03-18 18:13:02 UTC (rev 86534) @@ -4,7 +4,7 @@ pkgname=converseen pkgver=0.5.3 -pkgrel=2 +pkgrel=3 pkgdesc="The batch image converter and resizer" arch=('i686' 'x86_64') url="http://converseen.sourceforge.net/"; @@ -22,9 +22,12 @@ cmake ../${pkgname}-${pkgver} \ -DCMAKE_BUILD_TYPE=Release \ -DCMAKE_INSTALL_PREFIX=/usr \ - -DImageMagick_Magick++_LIBRARY:FILEPATH=/usr/lib/libMagick++-Q16.so \ - -DImageMagick_MagickWand_LIBRARY:FILEPATH=/usr/lib/libMagickWand-Q16.so \ - -DImageMagick_MagickCore_LIBRARY:FILEPATH=/usr/lib/libMagickCore-Q16.so + -DImageMagick_Magick++_INCLUDE_DIR:PATH=/usr/include/ImageMagick-6 \ + -DImageMagick_Magick++_LIBRARY:FILEPATH=/usr/lib/libMagick++-6.Q16.so \ + -DImageMagick_MagickWand_INCLUDE_DIR:PATH=/usr/include/ImageMagick-6 \ + -DImageMagick_MagickWand_LIBRARY:FILEPATH=/usr/lib/libMagickWand-6.Q16.so \ + -DImageMagick_MagickCore_INCLUDE_DIR:PATH=/usr/include/ImageMagick-6 \ + -DImageMagick_MagickCore_LIBRARY:FILEPATH=/usr/lib/libMagickCore-6.Q16.so make }
[arch-commits] Commit in spacefm/repos (8 files)
Date: Monday, March 18, 2013 @ 18:58:18 Author: bpiotrowski Revision: 86533 archrelease: copy trunk to community-i686, community-x86_64 Added: spacefm/repos/community-i686/PKGBUILD (from rev 86532, spacefm/trunk/PKGBUILD) spacefm/repos/community-i686/spacefm.install (from rev 86532, spacefm/trunk/spacefm.install) spacefm/repos/community-x86_64/PKGBUILD (from rev 86532, spacefm/trunk/PKGBUILD) spacefm/repos/community-x86_64/spacefm.install (from rev 86532, spacefm/trunk/spacefm.install) Deleted: spacefm/repos/community-i686/PKGBUILD spacefm/repos/community-i686/spacefm.install spacefm/repos/community-x86_64/PKGBUILD spacefm/repos/community-x86_64/spacefm.install --+ community-i686/PKGBUILD | 74 ++--- community-i686/spacefm.install | 28 +++--- community-x86_64/PKGBUILD| 74 ++--- community-x86_64/spacefm.install | 28 +++--- 4 files changed, 102 insertions(+), 102 deletions(-) Deleted: community-i686/PKGBUILD === --- community-i686/PKGBUILD 2013-03-18 17:57:48 UTC (rev 86532) +++ community-i686/PKGBUILD 2013-03-18 17:58:18 UTC (rev 86533) @@ -1,37 +0,0 @@ -# $Id$ -# Maintainer: Bartłomiej Piotrowski -# Contributor: IgnorantGuru http://igurublog.wordpress.com/contact-ignorantguru/ -# Contributor: ridikulus_rat - -pkgname=spacefm -pkgver=0.8.6 -pkgrel=1 -pkgdesc='Multi-panel tabbed file manager' -arch=('i686' 'x86_64') -url='http://ignorantguru.github.com/spacefm/' -license=('GPL3') -install=$pkgname.install -depends=('gtk3' 'shared-mime-info' 'desktop-file-utils' 'startup-notification' 'udev') -makedepends=('intltool' 'gettext') -optdepends=('lsof: device processes' - 'eject: eject media' -'wget: plugin download' -'gksu: perform as root functionality' -'udevil: mount as non-root user and mount networks' -'udisks: mount as non-root user' -'udisks2: mount as non-root user') -source=(https://raw.github.com/IgnorantGuru/$pkgname/master/packages/$pkgver/$pkgname-$pkgver.tar.xz) -sha256sums=('27f898d180c8a679568f0b40a05b470d728d38c892f4032654c4f696bab476e5') - -build() { - cd $srcdir/$pkgname-$pkgver - ./configure --prefix=/usr \ - --disable-pixmaps \ - --with-gtk3 - make -} - -package() { - cd $srcdir/$pkgname-$pkgver - make DESTDIR=$pkgdir install -} Copied: spacefm/repos/community-i686/PKGBUILD (from rev 86532, spacefm/trunk/PKGBUILD) === --- community-i686/PKGBUILD (rev 0) +++ community-i686/PKGBUILD 2013-03-18 17:58:18 UTC (rev 86533) @@ -0,0 +1,37 @@ +# $Id$ +# Maintainer: Bartłomiej Piotrowski +# Contributor: IgnorantGuru http://igurublog.wordpress.com/contact-ignorantguru/ +# Contributor: ridikulus_rat + +pkgname=spacefm +pkgver=0.8.7 +pkgrel=1 +pkgdesc='Multi-panel tabbed file manager' +arch=('i686' 'x86_64') +url='http://ignorantguru.github.com/spacefm/' +license=('GPL3') +install=$pkgname.install +depends=('gtk3' 'shared-mime-info' 'desktop-file-utils' 'startup-notification' 'udev') +makedepends=('intltool' 'gettext') +optdepends=('lsof: device processes' + 'eject: eject media' +'wget: plugin download' +'gksu: perform as root functionality' +'udevil: mount as non-root user and mount networks' +'udisks: mount as non-root user' +'udisks2: mount as non-root user') +source=(https://raw.github.com/IgnorantGuru/$pkgname/master/packages/$pkgver/$pkgname-$pkgver.tar.xz) +sha256sums=('3e48f276df4505b69d24fbeb4b5a869cf316503e2395bef467a29a5207b23947') + +build() { + cd $srcdir/$pkgname-$pkgver + ./configure --prefix=/usr \ + --disable-pixmaps \ + --with-gtk3 + make +} + +package() { + cd $srcdir/$pkgname-$pkgver + make DESTDIR=$pkgdir install +} Deleted: community-i686/spacefm.install === --- community-i686/spacefm.install 2013-03-18 17:57:48 UTC (rev 86532) +++ community-i686/spacefm.install 2013-03-18 17:58:18 UTC (rev 86533) @@ -1,14 +0,0 @@ -post_install() { - update-mime-database usr/share/mime > /dev/null - update-desktop-database -q - gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor - [ -d /usr/share/icons/Faenza ] && gtk-update-icon-cache -q -t -f /usr/share/icons/Faenza -} - -post_upgrade() { - post_install -} - -post_remove() { - post_install -} Copied: spacefm/repos/community-i686/spacefm.install (from rev 86532, spacefm/trunk/spacefm.install) === --- commu
[arch-commits] Commit in spacefm/trunk (PKGBUILD)
Date: Monday, March 18, 2013 @ 18:57:48 Author: bpiotrowski Revision: 86532 upgpkg: spacefm 0.8.7-1 upstream release Modified: spacefm/trunk/PKGBUILD --+ PKGBUILD |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) Modified: PKGBUILD === --- PKGBUILD2013-03-18 17:46:55 UTC (rev 86531) +++ PKGBUILD2013-03-18 17:57:48 UTC (rev 86532) @@ -4,7 +4,7 @@ # Contributor: ridikulus_rat pkgname=spacefm -pkgver=0.8.6 +pkgver=0.8.7 pkgrel=1 pkgdesc='Multi-panel tabbed file manager' arch=('i686' 'x86_64') @@ -21,7 +21,7 @@ 'udisks: mount as non-root user' 'udisks2: mount as non-root user') source=(https://raw.github.com/IgnorantGuru/$pkgname/master/packages/$pkgver/$pkgname-$pkgver.tar.xz) -sha256sums=('27f898d180c8a679568f0b40a05b470d728d38c892f4032654c4f696bab476e5') +sha256sums=('3e48f276df4505b69d24fbeb4b5a869cf316503e2395bef467a29a5207b23947') build() { cd $srcdir/$pkgname-$pkgver
[arch-commits] Commit in geogebra/repos/community-any (4 files)
Date: Monday, March 18, 2013 @ 18:46:55 Author: bpiotrowski Revision: 86531 archrelease: copy trunk to community-any Added: geogebra/repos/community-any/PKGBUILD (from rev 86530, geogebra/trunk/PKGBUILD) geogebra/repos/community-any/geogebra.install (from rev 86530, geogebra/trunk/geogebra.install) Deleted: geogebra/repos/community-any/PKGBUILD geogebra/repos/community-any/geogebra.install --+ PKGBUILD | 58 ++--- geogebra.install | 28 - 2 files changed, 43 insertions(+), 43 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2013-03-18 17:46:42 UTC (rev 86530) +++ PKGBUILD2013-03-18 17:46:55 UTC (rev 86531) @@ -1,29 +0,0 @@ -# $Id$ -# Maintainer: Bartłomiej Piotrowski -# Contributor: Felipe Hommen -# Contributor: moostik - -pkgname=geogebra -pkgver=4.2.23.0 -pkgrel=1 -pkgdesc='Dynamic mathematics software with interactive graphics, algebra and spreadsheet' -arch=('any') -url='http://www.geogebra.org/' -license=('GPL3' 'CCPL:by-sa') -depends=('java-runtime' 'shared-mime-info' 'hicolor-icon-theme' 'desktop-file-utils' 'xdg-utils') -install='geogebra.install' -source=(http://$pkgname.googlecode.com/files/GeoGebra-Unixlike-Installer-$pkgver.tar.gz) -sha256sums=('bf45f25b7f81d12b084b0be4d6072f03f15af30e80041b613d7953eaff75594e') - -package() { - install -dm755 $pkgdir/usr/bin \ - $pkgdir/usr/share/applications \ - $pkgdir/usr/share/geogebra - - cd $srcdir/$pkgname-$pkgver - sed -i 's/\/usr/\$\{pkgdir\}\/usr/g' install.sh - source install.sh - install -Dm644 _license.txt $pkgdir/usr/share/licenses/$pkgname/LICENSE - - rm -rf $pkgdir/usr/share/mime/ -} Copied: geogebra/repos/community-any/PKGBUILD (from rev 86530, geogebra/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2013-03-18 17:46:55 UTC (rev 86531) @@ -0,0 +1,29 @@ +# $Id$ +# Maintainer: Bartłomiej Piotrowski +# Contributor: Felipe Hommen +# Contributor: moostik + +pkgname=geogebra +pkgver=4.2.25.0 +pkgrel=1 +pkgdesc='Dynamic mathematics software with interactive graphics, algebra and spreadsheet' +arch=('any') +url='http://www.geogebra.org/' +license=('GPL3' 'CCPL:by-sa') +depends=('java-runtime' 'shared-mime-info' 'hicolor-icon-theme' 'desktop-file-utils' 'xdg-utils') +install='geogebra.install' +source=(http://$pkgname.googlecode.com/files/GeoGebra-Unixlike-Installer-$pkgver.tar.gz) +sha256sums=('2d0e1a6e2e7b40ef743f078ec74fed335851548b284eca4e54eafdcf6fd7650d') + +package() { + install -dm755 $pkgdir/usr/bin \ + $pkgdir/usr/share/applications \ + $pkgdir/usr/share/geogebra + + cd $srcdir/$pkgname-$pkgver + sed -i 's/\/usr/\$\{pkgdir\}\/usr/g' install.sh + source install.sh + install -Dm644 _license.txt $pkgdir/usr/share/licenses/$pkgname/LICENSE + + rm -rf $pkgdir/usr/share/mime/ +} Deleted: geogebra.install === --- geogebra.install2013-03-18 17:46:42 UTC (rev 86530) +++ geogebra.install2013-03-18 17:46:55 UTC (rev 86531) @@ -1,14 +0,0 @@ -post_install() { - update-mime-database usr/share/mime/ > /dev/null - update-desktop-database -q - xdg-icon-resource forceupdate --theme hicolor 2> /dev/null -} - -post_upgrade() { - post_install -} - -post_remove() { - post_install $1 -} - Copied: geogebra/repos/community-any/geogebra.install (from rev 86530, geogebra/trunk/geogebra.install) === --- geogebra.install(rev 0) +++ geogebra.install2013-03-18 17:46:55 UTC (rev 86531) @@ -0,0 +1,14 @@ +post_install() { + update-mime-database usr/share/mime/ > /dev/null + update-desktop-database -q + xdg-icon-resource forceupdate --theme hicolor 2> /dev/null +} + +post_upgrade() { + post_install +} + +post_remove() { + post_install $1 +} +
[arch-commits] Commit in geogebra/trunk (PKGBUILD)
Date: Monday, March 18, 2013 @ 18:46:42 Author: bpiotrowski Revision: 86530 upgpkg: geogebra 4.2.25.0-1 upstream release Modified: geogebra/trunk/PKGBUILD --+ PKGBUILD |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) Modified: PKGBUILD === --- PKGBUILD2013-03-18 17:37:10 UTC (rev 86529) +++ PKGBUILD2013-03-18 17:46:42 UTC (rev 86530) @@ -4,7 +4,7 @@ # Contributor: moostik pkgname=geogebra -pkgver=4.2.23.0 +pkgver=4.2.25.0 pkgrel=1 pkgdesc='Dynamic mathematics software with interactive graphics, algebra and spreadsheet' arch=('any') @@ -13,7 +13,7 @@ depends=('java-runtime' 'shared-mime-info' 'hicolor-icon-theme' 'desktop-file-utils' 'xdg-utils') install='geogebra.install' source=(http://$pkgname.googlecode.com/files/GeoGebra-Unixlike-Installer-$pkgver.tar.gz) -sha256sums=('bf45f25b7f81d12b084b0be4d6072f03f15af30e80041b613d7953eaff75594e') +sha256sums=('2d0e1a6e2e7b40ef743f078ec74fed335851548b284eca4e54eafdcf6fd7650d') package() { install -dm755 $pkgdir/usr/bin \
[arch-commits] Commit in dvdauthor/repos (4 files)
Date: Monday, March 18, 2013 @ 18:44:06 Author: eric Revision: 180233 archrelease: copy trunk to staging-i686, staging-x86_64 Added: dvdauthor/repos/staging-i686/ dvdauthor/repos/staging-i686/PKGBUILD (from rev 180232, dvdauthor/trunk/PKGBUILD) dvdauthor/repos/staging-x86_64/ dvdauthor/repos/staging-x86_64/PKGBUILD (from rev 180232, dvdauthor/trunk/PKGBUILD) -+ staging-i686/PKGBUILD | 31 +++ staging-x86_64/PKGBUILD | 31 +++ 2 files changed, 62 insertions(+) Copied: dvdauthor/repos/staging-i686/PKGBUILD (from rev 180232, dvdauthor/trunk/PKGBUILD) === --- staging-i686/PKGBUILD (rev 0) +++ staging-i686/PKGBUILD 2013-03-18 17:44:06 UTC (rev 180233) @@ -0,0 +1,31 @@ +# $Id$ +# Maintainer: Giovanni Scafora +# Contributor: Travis Willard +# Contributor: Jaroslaw Swierczynski +# Contributor: Nicolai Lissner + +pkgname=dvdauthor +pkgver=0.7.1 +pkgrel=4 +pkgdesc="DVD authoring tools" +arch=('i686' 'x86_64') +url="http://dvdauthor.sourceforge.net/"; +license=('GPL') +depends=('libdvdread' 'imagemagick' 'libxml2' 'libpng' 'fribidi') +options=('!makeflags') +source=("http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz";) +md5sums=('2694a5a3ef460106ea3caf0f7f60ff80') + +build() { + cd "${srcdir}/${pkgname}" + + ./configure --prefix=/usr \ + --sysconfdir=/etc + make +} + +package() { + cd "${srcdir}/${pkgname}" + + make DESTDIR="${pkgdir}" install +} Copied: dvdauthor/repos/staging-x86_64/PKGBUILD (from rev 180232, dvdauthor/trunk/PKGBUILD) === --- staging-x86_64/PKGBUILD (rev 0) +++ staging-x86_64/PKGBUILD 2013-03-18 17:44:06 UTC (rev 180233) @@ -0,0 +1,31 @@ +# $Id$ +# Maintainer: Giovanni Scafora +# Contributor: Travis Willard +# Contributor: Jaroslaw Swierczynski +# Contributor: Nicolai Lissner + +pkgname=dvdauthor +pkgver=0.7.1 +pkgrel=4 +pkgdesc="DVD authoring tools" +arch=('i686' 'x86_64') +url="http://dvdauthor.sourceforge.net/"; +license=('GPL') +depends=('libdvdread' 'imagemagick' 'libxml2' 'libpng' 'fribidi') +options=('!makeflags') +source=("http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz";) +md5sums=('2694a5a3ef460106ea3caf0f7f60ff80') + +build() { + cd "${srcdir}/${pkgname}" + + ./configure --prefix=/usr \ + --sysconfdir=/etc + make +} + +package() { + cd "${srcdir}/${pkgname}" + + make DESTDIR="${pkgdir}" install +}
[arch-commits] Commit in dvdauthor/trunk (PKGBUILD dvdauthor-0.7.0-libpng15.patch)
Date: Monday, March 18, 2013 @ 18:43:38 Author: eric Revision: 180232 upgpkg: dvdauthor 0.7.1-4 Rebuild against imagemagick-6.8.3.9, Remove old patch Modified: dvdauthor/trunk/PKGBUILD Deleted: dvdauthor/trunk/dvdauthor-0.7.0-libpng15.patch + PKGBUILD |2 +- dvdauthor-0.7.0-libpng15.patch | 19 --- 2 files changed, 1 insertion(+), 20 deletions(-) Modified: PKGBUILD === --- PKGBUILD2013-03-18 17:37:42 UTC (rev 180231) +++ PKGBUILD2013-03-18 17:43:38 UTC (rev 180232) @@ -6,7 +6,7 @@ pkgname=dvdauthor pkgver=0.7.1 -pkgrel=3 +pkgrel=4 pkgdesc="DVD authoring tools" arch=('i686' 'x86_64') url="http://dvdauthor.sourceforge.net/"; Deleted: dvdauthor-0.7.0-libpng15.patch === --- dvdauthor-0.7.0-libpng15.patch 2013-03-18 17:37:42 UTC (rev 180231) +++ dvdauthor-0.7.0-libpng15.patch 2013-03-18 17:43:38 UTC (rev 180232) @@ -1,19 +0,0 @@ src/spuunmux.c -+++ src/spuunmux.c -@@ -39,6 +39,7 @@ - #include - - #include -+#include - - #include "rgb.h" - #include "common.h" -@@ -610,7 +611,7 @@ - png_destroy_write_struct(&png_ptr, (png_infopp)NULL); - return -1; - } /*if*/ --if (setjmp(png_ptr->jmpbuf)) -+if (setjmp(png_jmpbuf(png_ptr))) - { - png_destroy_write_struct(&png_ptr, &info_ptr); - fclose(fp);
[arch-commits] Commit in apache/trunk (PKGBUILD)
Date: Monday, March 18, 2013 @ 18:37:42 Author: jgc Revision: 180231 Revert pkgrel to 1, as the resulting package is still the same Modified: apache/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2013-03-18 17:34:16 UTC (rev 180230) +++ PKGBUILD2013-03-18 17:37:42 UTC (rev 180231) @@ -5,7 +5,7 @@ pkgname=apache pkgver=2.2.24 -pkgrel=2 +pkgrel=1 pkgdesc='A high performance Unix-based HTTP server' arch=('i686' 'x86_64') options=('!libtool')
[arch-commits] Commit in xmonad-contrib/repos (10 files)
Date: Monday, March 18, 2013 @ 18:37:10 Author: jelle Revision: 86529 archrelease: copy trunk to community-testing-i686, community-testing-x86_64 Added: xmonad-contrib/repos/community-testing-i686/PKGBUILD (from rev 86528, xmonad-contrib/trunk/PKGBUILD) xmonad-contrib/repos/community-testing-i686/xmonad-contrib-remove-getatomname.patch (from rev 86528, xmonad-contrib/trunk/xmonad-contrib-remove-getatomname.patch) xmonad-contrib/repos/community-testing-i686/xmonad-contrib.install (from rev 86528, xmonad-contrib/trunk/xmonad-contrib.install) xmonad-contrib/repos/community-testing-x86_64/PKGBUILD (from rev 86528, xmonad-contrib/trunk/PKGBUILD) xmonad-contrib/repos/community-testing-x86_64/xmonad-contrib-remove-getatomname.patch (from rev 86528, xmonad-contrib/trunk/xmonad-contrib-remove-getatomname.patch) xmonad-contrib/repos/community-testing-x86_64/xmonad-contrib.install (from rev 86528, xmonad-contrib/trunk/xmonad-contrib.install) Deleted: xmonad-contrib/repos/community-testing-i686/PKGBUILD xmonad-contrib/repos/community-testing-i686/xmonad-contrib.install xmonad-contrib/repos/community-testing-x86_64/PKGBUILD xmonad-contrib/repos/community-testing-x86_64/xmonad-contrib.install --+ community-testing-i686/PKGBUILD | 72 +- community-testing-i686/xmonad-contrib-remove-getatomname.patch | 19 ++ community-testing-i686/xmonad-contrib.install| 34 ++-- community-testing-x86_64/PKGBUILD| 72 +- community-testing-x86_64/xmonad-contrib-remove-getatomname.patch | 19 ++ community-testing-x86_64/xmonad-contrib.install | 34 ++-- 6 files changed, 146 insertions(+), 104 deletions(-) Deleted: community-testing-i686/PKGBUILD === --- community-testing-i686/PKGBUILD 2013-03-18 17:27:40 UTC (rev 86528) +++ community-testing-i686/PKGBUILD 2013-03-18 17:37:10 UTC (rev 86529) @@ -1,35 +0,0 @@ -# $Id$ -# Maintainer: Sergej Pupykin -# Maintainer: Vesa Kaihlavirta -# Contributor: orbisvicis - -pkgname=xmonad-contrib -pkgver=0.11 -pkgrel=3 -pkgdesc="Add-ons for xmonad" -arch=('i686' 'x86_64') -url="http://xmonad.org/"; -license=('BSD') -depends=('ghc=7.6.2-1' 'xmonad=0.11-2' 'sh' 'haskell-x11=1.6.0.2-2' 'haskell-x11-xft=0.3.1-6' 'haskell-utf8-string=0.3.7-4' 'haskell-random=1.0.1.1-4') -install='xmonad-contrib.install' -source=(http://hackage.haskell.org/packages/archive/$pkgname/$pkgver/$pkgname-$pkgver.tar.gz) -md5sums=('05fba258ac6063e49b50786a0869bd1f') - -build() { - cd $srcdir/$pkgname-$pkgver - - runhaskell Setup.lhs configure --ghc --enable-shared --enable-split-objs --prefix=/usr -fuse_xft \ - --libsubdir=\$compiler/site-local/\$pkgid - runhaskell Setup build - runhaskell Setup register --gen-script - runhaskell Setup unregister --gen-script - sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh -} - -package() { - cd $srcdir/$pkgname-$pkgver - install -D -m744 register.sh $pkgdir/usr/share/haskell/$pkgname/register.sh - install -m744 unregister.sh $pkgdir/usr/share/haskell/$pkgname/unregister.sh - runhaskell Setup.lhs copy --destdir=$pkgdir - install -D LICENSE $pkgdir/usr/share/licenses/xmonad-contrib/LICENSE -} Copied: xmonad-contrib/repos/community-testing-i686/PKGBUILD (from rev 86528, xmonad-contrib/trunk/PKGBUILD) === --- community-testing-i686/PKGBUILD (rev 0) +++ community-testing-i686/PKGBUILD 2013-03-18 17:37:10 UTC (rev 86529) @@ -0,0 +1,37 @@ +# $Id$ +# Maintainer: Sergej Pupykin +# Maintainer: Vesa Kaihlavirta +# Contributor: orbisvicis + +pkgname=xmonad-contrib +pkgver=0.11 +pkgrel=5 +pkgdesc="Add-ons for xmonad" +arch=('i686' 'x86_64') +url="http://xmonad.org/"; +license=('BSD') +depends=('ghc=7.6.2-1' 'xmonad=0.11-4' 'sh' 'haskell-x11=1.6.1.1-1' 'haskell-x11-xft=0.3.1' 'haskell-utf8-string=0.3.7-4' 'haskell-random=1.0.1.1-4') +install='xmonad-contrib.install' +source=(http://hackage.haskell.org/packages/archive/$pkgname/$pkgver/$pkgname-$pkgver.tar.gz xmonad-contrib-remove-getatomname.patch) + +build() { + cd $srcdir/$pkgname-$pkgver + patch -Np1 -i $srcdir/xmonad-contrib-remove-getatomname.patch + + runhaskell Setup.lhs configure --ghc --enable-shared --enable-split-objs --prefix=/usr -fuse_xft \ + --libsubdir=\$compiler/site-local/\$pkgid + runhaskell Setup build + runhaskell Setup register --gen-script + runhaskell Setup unregister --gen-script + sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh +} + +package() { + cd $srcdir/$pkgname-$pkgver + install -D -m744 register.sh $pkgdir/usr/share/haskell/$pkgname/register.sh + install -m744 unregister.sh $pkgdir/usr/share/haskell/$pkgname/unreg
[arch-commits] Commit in psiconv/repos (4 files)
Date: Monday, March 18, 2013 @ 18:34:16 Author: eric Revision: 180230 archrelease: copy trunk to staging-i686, staging-x86_64 Added: psiconv/repos/staging-i686/ psiconv/repos/staging-i686/PKGBUILD (from rev 180229, psiconv/trunk/PKGBUILD) psiconv/repos/staging-x86_64/ psiconv/repos/staging-x86_64/PKGBUILD (from rev 180229, psiconv/trunk/PKGBUILD) -+ staging-i686/PKGBUILD | 30 ++ staging-x86_64/PKGBUILD | 30 ++ 2 files changed, 60 insertions(+) Copied: psiconv/repos/staging-i686/PKGBUILD (from rev 180229, psiconv/trunk/PKGBUILD) === --- staging-i686/PKGBUILD (rev 0) +++ staging-i686/PKGBUILD 2013-03-18 17:34:16 UTC (rev 180230) @@ -0,0 +1,30 @@ +# $Id$ +# Maintainer: Giovanni Scafora +# Contributor: Tom Newsom + +pkgname=psiconv +pkgver=0.9.8 +pkgrel=12 +pkgdesc="Converts Psion 5(MX) files to more commonly used file formats" +arch=('i686' 'x86_64') +url="http://software.frodo.looijaard.name/psiconv/"; +license=('GPL') +depends=('imagemagick') +makedepends=('bc') +backup=('etc/psiconv/psiconv.conf') +options=('!libtool') +source=("http://software.frodo.looijaard.name/${pkgname}/files/${pkgname}-${pkgver}.tar.gz";) +md5sums=('8d7548e3c6b9cd408544736133728acd') + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + ./configure --prefix=/usr \ + --sysconfdir=/etc \ + --mandir=/usr/share/man + make +} + +package() { + cd "${srcdir}/${pkgname}-${pkgver}" + make DESTDIR="${pkgdir}" install +} Copied: psiconv/repos/staging-x86_64/PKGBUILD (from rev 180229, psiconv/trunk/PKGBUILD) === --- staging-x86_64/PKGBUILD (rev 0) +++ staging-x86_64/PKGBUILD 2013-03-18 17:34:16 UTC (rev 180230) @@ -0,0 +1,30 @@ +# $Id$ +# Maintainer: Giovanni Scafora +# Contributor: Tom Newsom + +pkgname=psiconv +pkgver=0.9.8 +pkgrel=12 +pkgdesc="Converts Psion 5(MX) files to more commonly used file formats" +arch=('i686' 'x86_64') +url="http://software.frodo.looijaard.name/psiconv/"; +license=('GPL') +depends=('imagemagick') +makedepends=('bc') +backup=('etc/psiconv/psiconv.conf') +options=('!libtool') +source=("http://software.frodo.looijaard.name/${pkgname}/files/${pkgname}-${pkgver}.tar.gz";) +md5sums=('8d7548e3c6b9cd408544736133728acd') + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + ./configure --prefix=/usr \ + --sysconfdir=/etc \ + --mandir=/usr/share/man + make +} + +package() { + cd "${srcdir}/${pkgname}-${pkgver}" + make DESTDIR="${pkgdir}" install +}
[arch-commits] Commit in psiconv/trunk (PKGBUILD)
Date: Monday, March 18, 2013 @ 18:33:41 Author: eric Revision: 180229 upgpkg: psiconv 0.9.8-12 Rebuild against imagemagick-6.8.3.9 Modified: psiconv/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2013-03-18 17:25:47 UTC (rev 180228) +++ PKGBUILD2013-03-18 17:33:41 UTC (rev 180229) @@ -4,7 +4,7 @@ pkgname=psiconv pkgver=0.9.8 -pkgrel=11 +pkgrel=12 pkgdesc="Converts Psion 5(MX) files to more commonly used file formats" arch=('i686' 'x86_64') url="http://software.frodo.looijaard.name/psiconv/";
[arch-commits] Commit in xmonad-contrib/trunk (PKGBUILD)
Date: Monday, March 18, 2013 @ 18:27:40 Author: jelle Revision: 86528 upgpkg: xmonad-contrib 0.11-5 add patch to fix haskell-x11 getAtomeName Modified: xmonad-contrib/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2013-03-18 17:04:57 UTC (rev 86527) +++ PKGBUILD2013-03-18 17:27:40 UTC (rev 86528) @@ -5,7 +5,7 @@ pkgname=xmonad-contrib pkgver=0.11 -pkgrel=4 +pkgrel=5 pkgdesc="Add-ons for xmonad" arch=('i686' 'x86_64') url="http://xmonad.org/";
[arch-commits] Commit in obex-data-server/repos (4 files)
Date: Monday, March 18, 2013 @ 18:25:47 Author: andrea Revision: 180228 archrelease: copy trunk to staging-i686, staging-x86_64 Added: obex-data-server/repos/staging-i686/ obex-data-server/repos/staging-i686/PKGBUILD (from rev 180227, obex-data-server/trunk/PKGBUILD) obex-data-server/repos/staging-x86_64/ obex-data-server/repos/staging-x86_64/PKGBUILD (from rev 180227, obex-data-server/trunk/PKGBUILD) -+ staging-i686/PKGBUILD | 28 staging-x86_64/PKGBUILD | 28 2 files changed, 56 insertions(+) Copied: obex-data-server/repos/staging-i686/PKGBUILD (from rev 180227, obex-data-server/trunk/PKGBUILD) === --- staging-i686/PKGBUILD (rev 0) +++ staging-i686/PKGBUILD 2013-03-18 17:25:47 UTC (rev 180228) @@ -0,0 +1,28 @@ +# $Id$ +# Maintainer: Andrea Scarpino +# Contributor: Geoffroy Carrier +# Contributor: Roman Kyrylych +# Contributor: Keerthi + +pkgname=obex-data-server +pkgver=0.4.6 +pkgrel=5 +pkgdesc="A D-Bus service providing high-level OBEX client and server side functionality" +arch=('i686' 'x86_64') +url="http://wiki.muiline.com/obex-data-server"; +license=('GPL') +depends=('dbus-glib' 'openobex' 'imagemagick') +source=("http://tadas.dailyda.com/software/${pkgname}-${pkgver}.tar.gz";) +md5sums=('961ca5db6fe9c97024e133cc6203cc4d') + +build() { + cd ${pkgname}-${pkgver} + ./configure --prefix=/usr \ +--sysconfdir=/etc + make +} + +package() { + cd ${pkgname}-${pkgver} + make DESTDIR="${pkgdir}" install +} Copied: obex-data-server/repos/staging-x86_64/PKGBUILD (from rev 180227, obex-data-server/trunk/PKGBUILD) === --- staging-x86_64/PKGBUILD (rev 0) +++ staging-x86_64/PKGBUILD 2013-03-18 17:25:47 UTC (rev 180228) @@ -0,0 +1,28 @@ +# $Id$ +# Maintainer: Andrea Scarpino +# Contributor: Geoffroy Carrier +# Contributor: Roman Kyrylych +# Contributor: Keerthi + +pkgname=obex-data-server +pkgver=0.4.6 +pkgrel=5 +pkgdesc="A D-Bus service providing high-level OBEX client and server side functionality" +arch=('i686' 'x86_64') +url="http://wiki.muiline.com/obex-data-server"; +license=('GPL') +depends=('dbus-glib' 'openobex' 'imagemagick') +source=("http://tadas.dailyda.com/software/${pkgname}-${pkgver}.tar.gz";) +md5sums=('961ca5db6fe9c97024e133cc6203cc4d') + +build() { + cd ${pkgname}-${pkgver} + ./configure --prefix=/usr \ +--sysconfdir=/etc + make +} + +package() { + cd ${pkgname}-${pkgver} + make DESTDIR="${pkgdir}" install +}
[arch-commits] Commit in obex-data-server/trunk (PKGBUILD)
Date: Monday, March 18, 2013 @ 18:25:40 Author: andrea Revision: 180227 upgpkg: obex-data-server 0.4.6-5 ImageMagick rebuild Modified: obex-data-server/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2013-03-18 16:47:18 UTC (rev 180226) +++ PKGBUILD2013-03-18 17:25:40 UTC (rev 180227) @@ -6,7 +6,7 @@ pkgname=obex-data-server pkgver=0.4.6 -pkgrel=4 +pkgrel=5 pkgdesc="A D-Bus service providing high-level OBEX client and server side functionality" arch=('i686' 'x86_64') url="http://wiki.muiline.com/obex-data-server";
[arch-commits] Commit in bitcoin/repos (8 files)
Date: Monday, March 18, 2013 @ 18:04:57 Author: tredaelli Revision: 86527 archrelease: copy trunk to community-i686, community-x86_64 Added: bitcoin/repos/community-i686/PKGBUILD (from rev 86526, bitcoin/trunk/PKGBUILD) bitcoin/repos/community-i686/bitcoin-qt.install (from rev 86526, bitcoin/trunk/bitcoin-qt.install) bitcoin/repos/community-x86_64/PKGBUILD (from rev 86526, bitcoin/trunk/PKGBUILD) bitcoin/repos/community-x86_64/bitcoin-qt.install (from rev 86526, bitcoin/trunk/bitcoin-qt.install) Deleted: bitcoin/repos/community-i686/PKGBUILD bitcoin/repos/community-i686/bitcoin-qt.install bitcoin/repos/community-x86_64/PKGBUILD bitcoin/repos/community-x86_64/bitcoin-qt.install -+ community-i686/PKGBUILD | 116 -- community-i686/bitcoin-qt.install | 22 +++--- community-x86_64/PKGBUILD | 116 -- community-x86_64/bitcoin-qt.install | 22 +++--- 4 files changed, 136 insertions(+), 140 deletions(-) Deleted: community-i686/PKGBUILD === --- community-i686/PKGBUILD 2013-03-18 17:04:24 UTC (rev 86526) +++ community-i686/PKGBUILD 2013-03-18 17:04:57 UTC (rev 86527) @@ -1,59 +0,0 @@ -# $Id$ -# Maintainer: Timothy Redaelli -# Contributor: shahid - -pkgbase=bitcoin -pkgname=('bitcoin-daemon' 'bitcoin-qt') -pkgver=0.8.0 -pkgrel=2 -arch=('i686' 'x86_64') -url="http://www.bitcoin.org/"; -makedepends=('boost' 'automoc4' 'qrencode' 'miniupnpc') -conflicts=('bitcoin' 'bitcoin-bin' 'bitcoin-git') -replaces=('bitcoin' 'bitcoin-bin' 'bitcoin-git') -license=('MIT') -source=(http://sourceforge.net/projects/bitcoin/files/Bitcoin/bitcoin-$pkgver/bitcoin-$pkgver-linux.tar.gz) -sha256sums=('e31529147d307b2240e08af3a5a4606fe2c112d1b0e91e3cce4a2bac2583cecc') - -build() { - cd "$srcdir/$pkgbase-$pkgver-linux/src" - - # and make qt gui - qmake-qt4 USE_QRCODE=1 - make - - # make bitcoind - make -f makefile.unix -C src CXXFLAGS="$CXXFLAGS" -} - - -package_bitcoin-qt() { - pkgdesc="Bitcoin is a peer-to-peer network based digital currency - QT" - depends=(boost-libs qt4 miniupnpc qrencode) - install=bitcoin-qt.install - - cd "$srcdir/$pkgbase-$pkgver-linux/src" - install -Dm755 bitcoin-qt "$pkgdir"/usr/bin/bitcoin-qt - install -Dm644 contrib/debian/bitcoin-qt.desktop \ -"$pkgdir"/usr/share/applications/bitcoin.desktop - install -Dm644 share/pixmaps/bitcoin80.xpm \ -"$pkgdir"/usr/share/pixmaps/bitcoin80.xpm - - install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING" -} - -package_bitcoin-daemon() { - pkgdesc="Bitcoin is a peer-to-peer network based digital currency - daemon" - depends=(boost-libs miniupnpc openssl) - - cd "$srcdir/$pkgbase-$pkgver-linux/src" - install -Dm755 src/bitcoind "$pkgdir"/usr/bin/bitcoind - install -Dm644 contrib/debian/examples/bitcoin.conf \ -"$pkgdir/usr/share/doc/$pkgname/examples/bitcoin.conf" - install -Dm644 contrib/debian/manpages/bitcoind.1 \ -"$pkgdir"/usr/share/man/man1/bitcoind.1 - install -Dm644 contrib/debian/manpages/bitcoin.conf.5 \ -"$pkgdir"/usr/share/man/man5/bitcoin.conf.5 - install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING" -} - Copied: bitcoin/repos/community-i686/PKGBUILD (from rev 86526, bitcoin/trunk/PKGBUILD) === --- community-i686/PKGBUILD (rev 0) +++ community-i686/PKGBUILD 2013-03-18 17:04:57 UTC (rev 86527) @@ -0,0 +1,57 @@ +# $Id$ +# Maintainer: Timothy Redaelli +# Contributor: shahid + +pkgbase=bitcoin +pkgname=('bitcoin-daemon' 'bitcoin-qt') +pkgver=0.8.1 +pkgrel=1 +arch=('i686' 'x86_64') +url="http://www.bitcoin.org/"; +makedepends=('boost' 'automoc4' 'qrencode' 'miniupnpc') +license=('MIT') +source=(http://sourceforge.net/projects/bitcoin/files/Bitcoin/bitcoin-$pkgver/bitcoin-$pkgver-linux.tar.gz) +sha256sums=('6d7f023a9df1a436c51de83f7cd751f162be9b4fb1c06da05545f9fba7cb2a98') + +build() { + cd "$srcdir/$pkgbase-$pkgver-linux/src" + + # and make qt gui + qmake-qt4 USE_QRCODE=1 + make + + # make bitcoind + make -f makefile.unix -C src CXXFLAGS="$CXXFLAGS" +} + + +package_bitcoin-qt() { + pkgdesc="Bitcoin is a peer-to-peer network based digital currency - QT" + depends=(boost-libs qt4 miniupnpc qrencode) + install=bitcoin-qt.install + + cd "$srcdir/$pkgbase-$pkgver-linux/src" + install -Dm755 bitcoin-qt "$pkgdir"/usr/bin/bitcoin-qt + install -Dm644 contrib/debian/bitcoin-qt.desktop \ +"$pkgdir"/usr/share/applications/bitcoin.desktop + install -Dm644 share/pixmaps/bitcoin80.xpm \ +"$pkgdir"/usr/share/pixmaps/bitcoin80.xpm + + install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING" +} + +package_bitcoin-daemon() { + pkgdesc="Bitcoin is a peer-to-peer network based digital currency - daemon" + depends=(boost-libs miniupnpc openssl) + +
[arch-commits] Commit in bitcoin/trunk (PKGBUILD)
Date: Monday, March 18, 2013 @ 18:04:24 Author: tredaelli Revision: 86526 upgpkg: bitcoin 0.8.1-1 Remove all replaces/conflicts packages FS#34326 Modified: bitcoin/trunk/PKGBUILD --+ PKGBUILD |8 +++- 1 file changed, 3 insertions(+), 5 deletions(-) Modified: PKGBUILD === --- PKGBUILD2013-03-18 16:24:05 UTC (rev 86525) +++ PKGBUILD2013-03-18 17:04:24 UTC (rev 86526) @@ -4,16 +4,14 @@ pkgbase=bitcoin pkgname=('bitcoin-daemon' 'bitcoin-qt') -pkgver=0.8.0 -pkgrel=2 +pkgver=0.8.1 +pkgrel=1 arch=('i686' 'x86_64') url="http://www.bitcoin.org/"; makedepends=('boost' 'automoc4' 'qrencode' 'miniupnpc') -conflicts=('bitcoin' 'bitcoin-bin' 'bitcoin-git') -replaces=('bitcoin' 'bitcoin-bin' 'bitcoin-git') license=('MIT') source=(http://sourceforge.net/projects/bitcoin/files/Bitcoin/bitcoin-$pkgver/bitcoin-$pkgver-linux.tar.gz) -sha256sums=('e31529147d307b2240e08af3a5a4606fe2c112d1b0e91e3cce4a2bac2583cecc') +sha256sums=('6d7f023a9df1a436c51de83f7cd751f162be9b4fb1c06da05545f9fba7cb2a98') build() { cd "$srcdir/$pkgbase-$pkgver-linux/src"
[arch-commits] Commit in lftp/repos (4 files)
Date: Monday, March 18, 2013 @ 17:47:18 Author: andyrtr Revision: 180226 archrelease: copy trunk to extra-i686, extra-x86_64 Added: lftp/repos/extra-i686/PKGBUILD (from rev 180225, lftp/trunk/PKGBUILD) lftp/repos/extra-x86_64/PKGBUILD (from rev 180225, lftp/trunk/PKGBUILD) Deleted: lftp/repos/extra-i686/PKGBUILD lftp/repos/extra-x86_64/PKGBUILD ---+ extra-i686/PKGBUILD | 64 extra-x86_64/PKGBUILD | 64 2 files changed, 64 insertions(+), 64 deletions(-) Deleted: extra-i686/PKGBUILD === --- extra-i686/PKGBUILD 2013-03-18 16:46:52 UTC (rev 180225) +++ extra-i686/PKGBUILD 2013-03-18 16:47:18 UTC (rev 180226) @@ -1,32 +0,0 @@ -# $Id$ -# Maintainer: Andreas Radke -# Contributor: Aaron Griffin - -pkgname=lftp -pkgver=4.4.4 -pkgrel=1 -pkgdesc="Sophisticated command line based FTP client" -arch=('i686' 'x86_64') -license=('GPL3') -depends=('gcc-libs' 'readline>=6.2' "gnutls" "expat>=2.0.1-4" 'sh') -optdepends=('perl: needed for convert-netscape-cookies and verify-file') -url="http://lftp.yar.ru/"; -backup=('etc/lftp.conf') -source=(http://ftp.yars.free.net/pub/source/lftp/${pkgname}-${pkgver}.tar.bz2) -md5sums=('f1fa7aec113219952d18e4dd87d531ca') - -build() { - cd ${srcdir}/${pkgname}-${pkgver} - ./configure --prefix=/usr \ ---with-gnutls \ ---without-openssl \ ---without-included-regex \ ---disable-static - make -} - -package() { - cd ${srcdir}/${pkgname}-${pkgver} - make DESTDIR=${pkgdir} install - rm -rf ${pkgdir}/usr/lib -} Copied: lftp/repos/extra-i686/PKGBUILD (from rev 180225, lftp/trunk/PKGBUILD) === --- extra-i686/PKGBUILD (rev 0) +++ extra-i686/PKGBUILD 2013-03-18 16:47:18 UTC (rev 180226) @@ -0,0 +1,32 @@ +# $Id$ +# Maintainer: Andreas Radke +# Contributor: Aaron Griffin + +pkgname=lftp +pkgver=4.4.5 +pkgrel=1 +pkgdesc="Sophisticated command line based FTP client" +arch=('i686' 'x86_64') +license=('GPL3') +depends=('gcc-libs' 'readline>=6.2' "gnutls" "expat>=2.0.1-4" 'sh') +optdepends=('perl: needed for convert-netscape-cookies and verify-file') +url="http://lftp.yar.ru/"; +backup=('etc/lftp.conf') +source=(http://ftp.yars.free.net/pub/source/lftp/${pkgname}-${pkgver}.tar.bz2) +md5sums=('a8abdc87a00174571908ffaf5cdffd45') + +build() { + cd ${srcdir}/${pkgname}-${pkgver} + ./configure --prefix=/usr \ +--with-gnutls \ +--without-openssl \ +--without-included-regex \ +--disable-static + make +} + +package() { + cd ${srcdir}/${pkgname}-${pkgver} + make DESTDIR=${pkgdir} install + rm -rf ${pkgdir}/usr/lib +} Deleted: extra-x86_64/PKGBUILD === --- extra-x86_64/PKGBUILD 2013-03-18 16:46:52 UTC (rev 180225) +++ extra-x86_64/PKGBUILD 2013-03-18 16:47:18 UTC (rev 180226) @@ -1,32 +0,0 @@ -# $Id$ -# Maintainer: Andreas Radke -# Contributor: Aaron Griffin - -pkgname=lftp -pkgver=4.4.4 -pkgrel=1 -pkgdesc="Sophisticated command line based FTP client" -arch=('i686' 'x86_64') -license=('GPL3') -depends=('gcc-libs' 'readline>=6.2' "gnutls" "expat>=2.0.1-4" 'sh') -optdepends=('perl: needed for convert-netscape-cookies and verify-file') -url="http://lftp.yar.ru/"; -backup=('etc/lftp.conf') -source=(http://ftp.yars.free.net/pub/source/lftp/${pkgname}-${pkgver}.tar.bz2) -md5sums=('f1fa7aec113219952d18e4dd87d531ca') - -build() { - cd ${srcdir}/${pkgname}-${pkgver} - ./configure --prefix=/usr \ ---with-gnutls \ ---without-openssl \ ---without-included-regex \ ---disable-static - make -} - -package() { - cd ${srcdir}/${pkgname}-${pkgver} - make DESTDIR=${pkgdir} install - rm -rf ${pkgdir}/usr/lib -} Copied: lftp/repos/extra-x86_64/PKGBUILD (from rev 180225, lftp/trunk/PKGBUILD) === --- extra-x86_64/PKGBUILD (rev 0) +++ extra-x86_64/PKGBUILD 2013-03-18 16:47:18 UTC (rev 180226) @@ -0,0 +1,32 @@ +# $Id$ +# Maintainer: Andreas Radke +# Contributor: Aaron Griffin + +pkgname=lftp +pkgver=4.4.5 +pkgrel=1 +pkgdesc="Sophisticated command line based FTP client" +arch=('i686' 'x86_64') +license=('GPL3') +depends=('gcc-libs' 'readline>=6.2' "gnutls" "expat>=2.0.1-4" 'sh') +optdepends=('perl: needed for convert-netscape-cookies and verify-file') +url="http://lftp.yar.ru/"; +backup=('etc/lftp.conf') +source=(http://ftp.yars.free.net/pub/source/lftp/${pkgname}-${pkgver}.tar.bz2) +md5sums=('a8abdc87a00174571908ffaf5cdffd45') + +build() { + cd ${srcdir}/${pkgname}-${pkgver} + ./configure --prefix=/usr \ +--with-gnutls \ +--without-openssl \ +--without-included-regex \ +--disable-static + make +} + +package() { + cd ${srcdir}/${pkgname}-${pkgver} + make DESTDIR=${pkgdir} install
[arch-commits] Commit in lftp/trunk (PKGBUILD)
Date: Monday, March 18, 2013 @ 17:46:52 Author: andyrtr Revision: 180225 upgpkg: lftp 4.4.5-1 upstream update 4.4.5 Modified: lftp/trunk/PKGBUILD --+ PKGBUILD |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) Modified: PKGBUILD === --- PKGBUILD2013-03-18 16:10:38 UTC (rev 180224) +++ PKGBUILD2013-03-18 16:46:52 UTC (rev 180225) @@ -3,7 +3,7 @@ # Contributor: Aaron Griffin pkgname=lftp -pkgver=4.4.4 +pkgver=4.4.5 pkgrel=1 pkgdesc="Sophisticated command line based FTP client" arch=('i686' 'x86_64') @@ -13,7 +13,7 @@ url="http://lftp.yar.ru/"; backup=('etc/lftp.conf') source=(http://ftp.yars.free.net/pub/source/lftp/${pkgname}-${pkgver}.tar.bz2) -md5sums=('f1fa7aec113219952d18e4dd87d531ca') +md5sums=('a8abdc87a00174571908ffaf5cdffd45') build() { cd ${srcdir}/${pkgname}-${pkgver}
[arch-commits] Commit in tcc/repos (8 files)
Date: Monday, March 18, 2013 @ 17:24:05 Author: spupykin Revision: 86525 archrelease: copy trunk to community-i686, community-x86_64 Added: tcc/repos/community-i686/ChangeLog (from rev 86524, tcc/trunk/ChangeLog) tcc/repos/community-i686/PKGBUILD (from rev 86524, tcc/trunk/PKGBUILD) tcc/repos/community-x86_64/ChangeLog (from rev 86524, tcc/trunk/ChangeLog) tcc/repos/community-x86_64/PKGBUILD (from rev 86524, tcc/trunk/PKGBUILD) Deleted: tcc/repos/community-i686/ChangeLog tcc/repos/community-i686/PKGBUILD tcc/repos/community-x86_64/ChangeLog tcc/repos/community-x86_64/PKGBUILD + community-i686/ChangeLog |6 +- community-i686/PKGBUILD| 96 ++- community-x86_64/ChangeLog |6 +- community-x86_64/PKGBUILD | 96 ++- 4 files changed, 106 insertions(+), 98 deletions(-) Deleted: community-i686/ChangeLog === --- community-i686/ChangeLog2013-03-18 16:23:39 UTC (rev 86524) +++ community-i686/ChangeLog2013-03-18 16:24:05 UTC (rev 86525) @@ -1,3 +0,0 @@ -0.9.25-2: - - + Added libtcc.so as well, for dynamic code. Copied: tcc/repos/community-i686/ChangeLog (from rev 86524, tcc/trunk/ChangeLog) === --- community-i686/ChangeLog(rev 0) +++ community-i686/ChangeLog2013-03-18 16:24:05 UTC (rev 86525) @@ -0,0 +1,3 @@ +0.9.25-2: + + + Added libtcc.so as well, for dynamic code. Deleted: community-i686/PKGBUILD === --- community-i686/PKGBUILD 2013-03-18 16:23:39 UTC (rev 86524) +++ community-i686/PKGBUILD 2013-03-18 16:24:05 UTC (rev 86525) @@ -1,46 +0,0 @@ -# $Id$ -# Maintainer: Sergej Pupykin -# Maintainer : Gergely Imreh -# Contributor : dschauer -# Contributor : Stefan Husmann -# Contributor : Jeremy Cowgar - -pkgname=tcc -pkgver=0.9.25 -pkgrel=2 -pkgdesc="Tiny C Compiler" -arch=('i686' 'x86_64') -url="http://bellard.org/tcc/"; -license=('LGPL') -makedepends=('gcc') -options=('docs') -source=(http://download.savannah.nongnu.org/releases/tinycc/${pkgname}-${pkgver}.tar.bz2) -md5sums=('991c2a1986cce15f03ca6ddc86ea5f43') - -build() { - cd ${srcdir}/${pkgname}-${pkgver} - - # sed fixes from Gentoo ebuild, cheers! - # Don't strip - sed -i -e 's|$(INSTALL) -s|$(INSTALL)|' Makefile - - # Fix examples - sed -i -e '1{ -i#! /usr/bin/tcc -run -/^#!/d - }' examples/ex*.c - sed -i -e '1s/$/ -lX11/' examples/ex4.c - - ./configure --prefix=/usr - make - make tccdir=${pkgdir}/usr/lib/tcc libdir=${pkgdir}/usr/lib \ -mandir=${pkgdir}/usr/share/man bindir=${pkgdir}/usr/bin \ -includedir=${pkgdir}/usr/include \ -docdir=${pkgdir}/usr/share/doc/tcc \ -install - - make clean - make CFLAGS="-fPIC" libtcc.o - ld -shared -soname libtcc.so -o libtcc.so libtcc.o - install -D -m 755 libtcc.so "${pkgdir}/usr/lib/libtcc.so" -} Copied: tcc/repos/community-i686/PKGBUILD (from rev 86524, tcc/trunk/PKGBUILD) === --- community-i686/PKGBUILD (rev 0) +++ community-i686/PKGBUILD 2013-03-18 16:24:05 UTC (rev 86525) @@ -0,0 +1,50 @@ +# $Id$ +# Maintainer: Sergej Pupykin +# Maintainer : Gergely Imreh +# Contributor : dschauer +# Contributor : Stefan Husmann +# Contributor : Jeremy Cowgar + +pkgname=tcc +pkgver=0.9.26 +pkgrel=1 +pkgdesc="Tiny C Compiler" +arch=('i686' 'x86_64') +url="http://bellard.org/tcc/"; +license=('LGPL') +makedepends=('gcc') +options=('docs') +source=(http://download.savannah.nongnu.org/releases/tinycc/${pkgname}-${pkgver}.tar.bz2) +md5sums=('5fb28e4abc830c46a7f54c1f637fb25d') + +build() { + cd ${srcdir}/${pkgname}-${pkgver} + + # sed fixes from Gentoo ebuild, cheers! + # Don't strip + sed -i -e 's|$(INSTALL) -s|$(INSTALL)|' Makefile + + # Fix examples + sed -i -e '1{ +i#! /usr/bin/tcc -run +/^#!/d + }' examples/ex*.c + sed -i -e '1s/$/ -lX11/' examples/ex4.c + + ./configure --prefix=/usr + make +} + +package() { + cd ${srcdir}/${pkgname}-${pkgver} + make tccdir=${pkgdir}/usr/lib/tcc libdir=${pkgdir}/usr/lib \ +mandir=${pkgdir}/usr/share/man bindir=${pkgdir}/usr/bin \ +includedir=${pkgdir}/usr/include \ +docdir=${pkgdir}/usr/share/doc/tcc \ +install + + make clean + make CFLAGS="-fPIC" libtcc.o + ld -shared -soname libtcc.so -o libtcc.so libtcc.o + install -D -m 755 libtcc.so "${pkgdir}/usr/lib/libtcc.so" +} Deleted: community-x86_64/ChangeLog === --- community-x86_64/ChangeLog 2013-03-18 16:23:39 UTC (rev 86524) +++ community-x86_64/ChangeLog 2013-03-18 16:24:05 UTC (rev 86525) @@ -1,3 +0,0 @@ -0.9.25-2: - - + Added libtcc.so as well, for dynamic code. Copied: tcc/repos/community-x86_64/Chang
[arch-commits] Commit in tcc/trunk (PKGBUILD)
Date: Monday, March 18, 2013 @ 17:23:39 Author: spupykin Revision: 86524 upgpkg: tcc 0.9.26-1 upd Modified: tcc/trunk/PKGBUILD --+ PKGBUILD |6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) Modified: PKGBUILD === --- PKGBUILD2013-03-18 14:47:32 UTC (rev 86523) +++ PKGBUILD2013-03-18 16:23:39 UTC (rev 86524) @@ -6,8 +6,8 @@ # Contributor : Jeremy Cowgar pkgname=tcc -pkgver=0.9.25 -pkgrel=2 +pkgver=0.9.26 +pkgrel=1 pkgdesc="Tiny C Compiler" arch=('i686' 'x86_64') url="http://bellard.org/tcc/"; @@ -15,7 +15,7 @@ makedepends=('gcc') options=('docs') source=(http://download.savannah.nongnu.org/releases/tinycc/${pkgname}-${pkgver}.tar.bz2) -md5sums=('991c2a1986cce15f03ca6ddc86ea5f43') +md5sums=('5fb28e4abc830c46a7f54c1f637fb25d') build() { cd ${srcdir}/${pkgname}-${pkgver}
[arch-commits] Commit in apache/trunk (PKGBUILD)
Date: Monday, March 18, 2013 @ 16:19:34 Author: jgc Revision: 180176 Use package() function. Split off itk to its own source build, as otherwise package() would be installing patched headers Modified: apache/trunk/PKGBUILD --+ PKGBUILD | 66 - 1 file changed, 40 insertions(+), 26 deletions(-) Modified: PKGBUILD === --- PKGBUILD2013-03-18 14:41:10 UTC (rev 180175) +++ PKGBUILD2013-03-18 15:19:34 UTC (rev 180176) @@ -5,7 +5,7 @@ pkgname=apache pkgver=2.2.24 -pkgrel=1 +pkgrel=2 pkgdesc='A high performance Unix-based HTTP server' arch=('i686' 'x86_64') options=('!libtool') @@ -71,31 +71,41 @@ cat "${srcdir}/arch.layout" >> config.layout - for mpm in prefork worker itk; do - if [ "${mpm}" = "itk" ]; then -# Fix patch to apply with latest Apache version -sed -i -e 's/mpmt_os2}/mpmt_os2|winnt}/g' "${srcdir}/03-add-mpm-to-build-system.patch" + cd .. + cp -r httpd-${pkgver} httpd-itk-${pkgver} - mkdir -p server/mpm/experimental/itk - cp -r server/mpm/prefork/* server/mpm/experimental/itk/ - mv server/mpm/experimental/itk/prefork.c server/mpm/experimental/itk/itk.c + cd httpd-itk-${pkgver} + + # Fix patch to apply with latest Apache version + sed -i -e 's/mpmt_os2}/mpmt_os2|winnt}/g' "${srcdir}/03-add-mpm-to-build-system.patch" - patch -Np1 -i "${srcdir}/02-rename-prefork-to-itk.patch" - patch -Np1 -i "${srcdir}/03-add-mpm-to-build-system.patch" - patch -Np1 -i "${srcdir}/04-correct-output-makefile-location.patch" - patch -Np1 -i "${srcdir}/05-add-copyright.patch" - patch -Np1 -i "${srcdir}/06-hook-just-after-merging-perdir-config.patch" - patch -Np1 -i "${srcdir}/07-base-functionality.patch" - patch -Np1 -i "${srcdir}/08-max-clients-per-vhost.patch" - patch -Np1 -i "${srcdir}/09-capabilities.patch" - patch -Np1 -i "${srcdir}/10-nice.patch" -patch -Np1 -i "${srcdir}/11-fix-htaccess-reads-for-persistent-connections.patch" + mkdir -p server/mpm/experimental/itk + cp -r server/mpm/prefork/* server/mpm/experimental/itk/ + mv server/mpm/experimental/itk/prefork.c server/mpm/experimental/itk/itk.c - autoconf + patch -Np1 -i "${srcdir}/02-rename-prefork-to-itk.patch" + patch -Np1 -i "${srcdir}/03-add-mpm-to-build-system.patch" + patch -Np1 -i "${srcdir}/04-correct-output-makefile-location.patch" + patch -Np1 -i "${srcdir}/05-add-copyright.patch" + patch -Np1 -i "${srcdir}/06-hook-just-after-merging-perdir-config.patch" + patch -Np1 -i "${srcdir}/07-base-functionality.patch" + patch -Np1 -i "${srcdir}/08-max-clients-per-vhost.patch" + patch -Np1 -i "${srcdir}/09-capabilities.patch" + patch -Np1 -i "${srcdir}/10-nice.patch" + patch -Np1 -i "${srcdir}/11-fix-htaccess-reads-for-persistent-connections.patch" + + autoconf + cd .. + for mpm in prefork worker itk; do + if [ "${mpm}" = "itk" ]; then + CONFIGURE=../httpd-itk-${pkgver}/configure + else + CONFIGURE=../httpd-${pkgver}/configure fi + mkdir build-${mpm} pushd build-${mpm} - ../configure --enable-layout=Arch \ + $CONFIGURE --enable-layout=Arch \ --enable-modules=all \ --enable-mods-shared=all \ --enable-so \ @@ -117,14 +127,19 @@ --with-pcre=/usr \ --with-mpm=${mpm} make - if [ "${mpm}" = "prefork" ]; then - make DESTDIR="${pkgdir}" install - else - install -m755 httpd "${pkgdir}/usr/sbin/httpd.${mpm}" - fi popd done +} +package() { + cd "${srcdir}" + cd build-prefork + make DESTDIR="${pkgdir}" install + cd .. + + install -m755 build-worker/httpd "${pkgdir}/usr/sbin/httpd.worker" + install -m755 build-itk/httpd "${pkgdir}/usr/sbin/httpd.itk" + install -D -m755 "${srcdir}/httpd" "${pkgdir}/etc/rc.d/httpd" install -D -m644 "${srcdir}/httpd.logrotate" "${pkgdir}/etc/logrotate.d/httpd" install -D -m644 "${srcdir}/apache.conf.d" "${pkgdir}/etc/conf.d/apache" @@ -152,7 +167,6 @@ rm -rf "${pkgdir}/usr/bin" rm -rf "${pkgdir}/var/run" - install -m755 -d "${pkgdir}/usr/lib/systemd/system" install
[arch-commits] Commit in chmsee/repos (12 files)
Date: Monday, March 18, 2013 @ 15:47:32 Author: lcarlier Revision: 86523 archrelease: copy trunk to community-i686, community-x86_64 Added: chmsee/repos/community-i686/PKGBUILD (from rev 86522, chmsee/trunk/PKGBUILD) chmsee/repos/community-i686/chmsee (from rev 86522, chmsee/trunk/chmsee) chmsee/repos/community-i686/chmsee.install (from rev 86522, chmsee/trunk/chmsee.install) chmsee/repos/community-x86_64/PKGBUILD (from rev 86522, chmsee/trunk/PKGBUILD) chmsee/repos/community-x86_64/chmsee (from rev 86522, chmsee/trunk/chmsee) chmsee/repos/community-x86_64/chmsee.install (from rev 86522, chmsee/trunk/chmsee.install) Deleted: chmsee/repos/community-i686/PKGBUILD chmsee/repos/community-i686/chmsee chmsee/repos/community-i686/chmsee.install chmsee/repos/community-x86_64/PKGBUILD chmsee/repos/community-x86_64/chmsee chmsee/repos/community-x86_64/chmsee.install -+ community-i686/PKGBUILD | 98 +++--- community-i686/chmsee |4 - community-i686/chmsee.install | 22 community-x86_64/PKGBUILD | 98 +++--- community-x86_64/chmsee |4 - community-x86_64/chmsee.install | 22 6 files changed, 124 insertions(+), 124 deletions(-) Deleted: community-i686/PKGBUILD === --- community-i686/PKGBUILD 2013-03-18 14:47:16 UTC (rev 86522) +++ community-i686/PKGBUILD 2013-03-18 14:47:32 UTC (rev 86523) @@ -1,49 +0,0 @@ -# $Id$ -# Maintainer : Laurent Carlier -# Contributor: dionydonny -# Contributor: Ermanno - -pkgname=chmsee -pkgver=2.0 -pkgrel=3 -arch=('i686' 'x86_64') -pkgdesc="A chm (MS HTML help file format) viewer based on xulrunner." -url="http://chmsee.googlecode.com/"; -license=('GPL') -depends=('xulrunner>=18.0' 'xulrunner<=19.0' 'chmlib' 'desktop-file-utils') -makedepends=('python2') -#source=(chmsee-$pkgver.tar.gz::https://github.com/jungleji/chmsee/tarball/v$pkgver -#source=(https://github.com/jungleji/chmsee/archive/b2a3c2ad32bfe9db067665ea1928d7e130d1b5e7.zip -source=(https://chmsee.googlecode.com/files/${pkgname}-${pkgver}.tar.gz -chmsee) -install=chmsee.install -md5sums=('a9a1e79094e5a2674caa3b1f1e34f5e7' - '1787edd1de8aa75bd9fa75a5ab319e85') - -build() { - cd ${srcdir}/chmsee-*/src - - cp Makefile.arch Makefile - sed -i -e 's/17.*/18.0/g' ../application.ini - sed -i -e 's/19.*/19.0/g' ../application.ini - - make -j1 -} - -package() { - cd ${srcdir}/chmsee-* - - install -d ${pkgdir}/usr/share/chmsee - cp -a * ${pkgdir}/usr/share/chmsee - rm -r ${pkgdir}/usr/share/chmsee/src - install -Dm644 data/chmsee.desktop.in \ -${pkgdir}/usr/share/applications/chmsee.desktop - # Fix FS#25152 - sed -i -e 's/_//g' ${pkgdir}/usr/share/applications/chmsee.desktop - # - install -d ${pkgdir}/usr/share/pixmaps - install -Dm644 data/chmsee-icon.png ${pkgdir}/usr/share/pixmaps - install -Dm755 ${srcdir}/chmsee ${pkgdir}/usr/bin/chmsee -# install -d ${pkgdir}/usr/share/icons -# cp -a data/icons/* ${pkgdir}/usr/share/icons/ -} Copied: chmsee/repos/community-i686/PKGBUILD (from rev 86522, chmsee/trunk/PKGBUILD) === --- community-i686/PKGBUILD (rev 0) +++ community-i686/PKGBUILD 2013-03-18 14:47:32 UTC (rev 86523) @@ -0,0 +1,49 @@ +# $Id$ +# Maintainer : Laurent Carlier +# Contributor: dionydonny +# Contributor: Ermanno + +pkgname=chmsee +pkgver=2.0 +pkgrel=4 +arch=('i686' 'x86_64') +pkgdesc="A chm (MS HTML help file format) viewer based on xulrunner." +url="http://chmsee.googlecode.com/"; +license=('GPL') +depends=('xulrunner>18.0' 'xulrunner<20.0' 'chmlib' 'desktop-file-utils') +makedepends=('python2') +#source=(chmsee-$pkgver.tar.gz::https://github.com/jungleji/chmsee/tarball/v$pkgver +#source=(https://github.com/jungleji/chmsee/archive/b2a3c2ad32bfe9db067665ea1928d7e130d1b5e7.zip +source=(https://chmsee.googlecode.com/files/${pkgname}-${pkgver}.tar.gz +chmsee) +install=chmsee.install +md5sums=('a9a1e79094e5a2674caa3b1f1e34f5e7' + '1787edd1de8aa75bd9fa75a5ab319e85') + +build() { + cd ${srcdir}/chmsee-*/src + + cp Makefile.arch Makefile + sed -i -e 's/17.*/18.0/g' ../application.ini + sed -i -e 's/19.*/20.0/g' ../application.ini + + make -j1 +} + +package() { + cd ${srcdir}/chmsee-* + + install -d ${pkgdir}/usr/share/chmsee + cp -a * ${pkgdir}/usr/share/chmsee + rm -r ${pkgdir}/usr/share/chmsee/src + install -Dm644 data/chmsee.desktop.in \ +${pkgdir}/usr/share/applications/chmsee.desktop + # Fix FS#25152 + sed -i -e 's/_//g' ${pkgdir}/usr/share/applications/chmsee.desktop + # + install -d ${pkgdir}/usr/share/pixmaps + install -Dm644 data/chmsee-icon.png ${pkgdir}/usr/share/pixmaps + install -Dm755 ${srcdir}/chmsee ${pkgdir}/usr/bin/chmsee +# install -d ${pkgdir}/usr/shar
[arch-commits] Commit in chmsee/trunk (PKGBUILD)
Date: Monday, March 18, 2013 @ 15:47:16 Author: lcarlier Revision: 86522 upgpkg: chmsee 2.0-4 Rebuild for new xulrunner, update dependencies Modified: chmsee/trunk/PKGBUILD --+ PKGBUILD |6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) Modified: PKGBUILD === --- PKGBUILD2013-03-18 14:14:51 UTC (rev 86521) +++ PKGBUILD2013-03-18 14:47:16 UTC (rev 86522) @@ -5,12 +5,12 @@ pkgname=chmsee pkgver=2.0 -pkgrel=3 +pkgrel=4 arch=('i686' 'x86_64') pkgdesc="A chm (MS HTML help file format) viewer based on xulrunner." url="http://chmsee.googlecode.com/"; license=('GPL') -depends=('xulrunner>=18.0' 'xulrunner<=19.0' 'chmlib' 'desktop-file-utils') +depends=('xulrunner>18.0' 'xulrunner<20.0' 'chmlib' 'desktop-file-utils') makedepends=('python2') #source=(chmsee-$pkgver.tar.gz::https://github.com/jungleji/chmsee/tarball/v$pkgver #source=(https://github.com/jungleji/chmsee/archive/b2a3c2ad32bfe9db067665ea1928d7e130d1b5e7.zip @@ -25,7 +25,7 @@ cp Makefile.arch Makefile sed -i -e 's/17.*/18.0/g' ../application.ini - sed -i -e 's/19.*/19.0/g' ../application.ini + sed -i -e 's/19.*/20.0/g' ../application.ini make -j1 }
[arch-commits] Commit in ncurses/repos (4 files)
Date: Monday, March 18, 2013 @ 15:41:10 Author: allan Revision: 180175 archrelease: copy trunk to testing-i686, testing-x86_64 Added: ncurses/repos/testing-i686/ ncurses/repos/testing-i686/PKGBUILD (from rev 180174, ncurses/trunk/PKGBUILD) ncurses/repos/testing-x86_64/ ncurses/repos/testing-x86_64/PKGBUILD (from rev 180174, ncurses/trunk/PKGBUILD) -+ testing-i686/PKGBUILD | 68 ++ testing-x86_64/PKGBUILD | 68 ++ 2 files changed, 136 insertions(+) Copied: ncurses/repos/testing-i686/PKGBUILD (from rev 180174, ncurses/trunk/PKGBUILD) === --- testing-i686/PKGBUILD (rev 0) +++ testing-i686/PKGBUILD 2013-03-18 14:41:10 UTC (rev 180175) @@ -0,0 +1,68 @@ +# $Id$ +# Maintainer: Allan McRae +# Contributor: judd + +pkgname=ncurses +pkgver=5.9 +pkgrel=5 +pkgdesc="System V Release 4.0 curses emulation library" +arch=('i686' 'x86_64') +url="http://www.gnu.org/software/ncurses/"; +license=('MIT') +depends=('glibc') +source=(ftp://ftp.gnu.org/pub/gnu/${pkgname}/${pkgname}-${pkgver}.tar.gz{,.sig}) +md5sums=('8cb9c412e5f2d96bc6f459aa8c6282a1' + '014ffdbbfec6d41a9a89d6cbe6434638') + +build() { + cd ${srcdir}/ + mkdir ncurses{,w}-build + + cd ${srcdir}/ncursesw-build + ../${pkgname}-${pkgver}/configure --prefix=/usr --mandir=/usr/share/man \ + --with-shared --with-normal --without-debug --without-ada \ + --enable-widec --enable-pc-files + # add --enable-ext-colors and --enable-ext-mouse with next soname bump + make + + # libraries for external binary support + cd ${srcdir}/ncurses-build + [ $CARCH = "x86_64" ] && CONFIGFLAG="--with-chtype=long" + ../${pkgname}-${pkgver}/configure --prefix=/usr \ +--with-shared --with-normal --without-debug --without-ada $CONFIGFLAG + make +} + +package() { + cd ${srcdir}/ncursesw-build + make DESTDIR=${pkgdir} install + + # fool packages looking to link to non-wide-character ncurses libraries + for lib in ncurses form panel menu; do +echo "INPUT(-l${lib}w)" >${pkgdir}/usr/lib/lib${lib}.so +ln -s lib${lib}w.a ${pkgdir}/usr/lib/lib${lib}.a + done + ln -s libncurses++w.a ${pkgdir}/usr/lib/libncurses++.a + + for lib in ncurses ncurses++ form panel menu; do +ln -s ${lib}w.pc ${pkgdir}/usr/lib/pkgconfig/${lib}.pc + done + + # some packages look for -lcurses during build + echo "INPUT(-lncursesw)" >${pkgdir}/usr/lib/libcursesw.so + ln -s libncurses.so ${pkgdir}/usr/lib/libcurses.so + ln -s libncursesw.a ${pkgdir}/usr/lib/libcursesw.a + ln -s libncurses.a ${pkgdir}/usr/lib/libcurses.a + + # non-widec compatibility libraries + cd ${srcdir}/ncurses-build + for lib in ncurses form panel menu; do +install -Dm755 lib/lib${lib}.so.${pkgver} ${pkgdir}/usr/lib/lib${lib}.so.${pkgver} +ln -s lib${lib}.so.${pkgver} ${pkgdir}/usr/lib/lib${lib}.so.5 + done + + # install license, rip it from the readme + cd ${srcdir}/${pkgname}-${pkgver} + install -dm755 ${pkgdir}/usr/share/licenses/$pkgname + grep -B 100 '$Id' README > ${pkgdir}/usr/share/licenses/${pkgname}/license.txt +} Copied: ncurses/repos/testing-x86_64/PKGBUILD (from rev 180174, ncurses/trunk/PKGBUILD) === --- testing-x86_64/PKGBUILD (rev 0) +++ testing-x86_64/PKGBUILD 2013-03-18 14:41:10 UTC (rev 180175) @@ -0,0 +1,68 @@ +# $Id$ +# Maintainer: Allan McRae +# Contributor: judd + +pkgname=ncurses +pkgver=5.9 +pkgrel=5 +pkgdesc="System V Release 4.0 curses emulation library" +arch=('i686' 'x86_64') +url="http://www.gnu.org/software/ncurses/"; +license=('MIT') +depends=('glibc') +source=(ftp://ftp.gnu.org/pub/gnu/${pkgname}/${pkgname}-${pkgver}.tar.gz{,.sig}) +md5sums=('8cb9c412e5f2d96bc6f459aa8c6282a1' + '014ffdbbfec6d41a9a89d6cbe6434638') + +build() { + cd ${srcdir}/ + mkdir ncurses{,w}-build + + cd ${srcdir}/ncursesw-build + ../${pkgname}-${pkgver}/configure --prefix=/usr --mandir=/usr/share/man \ + --with-shared --with-normal --without-debug --without-ada \ + --enable-widec --enable-pc-files + # add --enable-ext-colors and --enable-ext-mouse with next soname bump + make + + # libraries for external binary support + cd ${srcdir}/ncurses-build + [ $CARCH = "x86_64" ] && CONFIGFLAG="--with-chtype=long" + ../${pkgname}-${pkgver}/configure --prefix=/usr \ +--with-shared --with-normal --without-debug --without-ada $CONFIGFLAG + make +} + +package() { + cd ${srcdir}/ncursesw-build + make DESTDIR=${pkgdir} install + + # fool packages looking to link to non-wide-character ncurses libraries + for lib in ncurses form panel menu; do +echo "INPUT(-l${lib}w)" >${pkgdir}/usr/lib/lib${lib}.so +ln -s lib${lib}w.a ${pkgdir}/usr/lib/lib${lib}.a + done + ln -s libncurses++w.a ${pkgdir}/usr/lib/libncurses++.a + +
[arch-commits] Commit in ncurses/trunk (PKGBUILD)
Date: Monday, March 18, 2013 @ 15:39:56 Author: allan Revision: 180174 upgpkg: ncurses 5.9-5 add more compatibility libraries - FS#34101 Modified: ncurses/trunk/PKGBUILD --+ PKGBUILD | 18 ++ 1 file changed, 10 insertions(+), 8 deletions(-) Modified: PKGBUILD === --- PKGBUILD2013-03-18 14:31:27 UTC (rev 180173) +++ PKGBUILD2013-03-18 14:39:56 UTC (rev 180174) @@ -4,7 +4,7 @@ pkgname=ncurses pkgver=5.9 -pkgrel=4 +pkgrel=5 pkgdesc="System V Release 4.0 curses emulation library" arch=('i686' 'x86_64') url="http://www.gnu.org/software/ncurses/"; @@ -25,7 +25,7 @@ # add --enable-ext-colors and --enable-ext-mouse with next soname bump make - # libncurses.so.5 for external binary support + # libraries for external binary support cd ${srcdir}/ncurses-build [ $CARCH = "x86_64" ] && CONFIGFLAG="--with-chtype=long" ../${pkgname}-${pkgver}/configure --prefix=/usr \ @@ -37,7 +37,7 @@ cd ${srcdir}/ncursesw-build make DESTDIR=${pkgdir} install - # Fool packages looking to link to non-wide-character ncurses libraries + # fool packages looking to link to non-wide-character ncurses libraries for lib in ncurses form panel menu; do echo "INPUT(-l${lib}w)" >${pkgdir}/usr/lib/lib${lib}.so ln -s lib${lib}w.a ${pkgdir}/usr/lib/lib${lib}.a @@ -48,16 +48,18 @@ ln -s ${lib}w.pc ${pkgdir}/usr/lib/pkgconfig/${lib}.pc done - # Some packages look for -lcurses during build + # some packages look for -lcurses during build echo "INPUT(-lncursesw)" >${pkgdir}/usr/lib/libcursesw.so ln -s libncurses.so ${pkgdir}/usr/lib/libcurses.so ln -s libncursesw.a ${pkgdir}/usr/lib/libcursesw.a ln -s libncurses.a ${pkgdir}/usr/lib/libcurses.a - # non-widec compatibility library - cd ${srcdir}/ncurses-build - install -Dm755 lib/libncurses.so.${pkgver} ${pkgdir}/usr/lib/libncurses.so.${pkgver} - ln -s libncurses.so.${pkgver} ${pkgdir}/usr/lib/libncurses.so.5 + # non-widec compatibility libraries + cd ${srcdir}/ncurses-build + for lib in ncurses form panel menu; do +install -Dm755 lib/lib${lib}.so.${pkgver} ${pkgdir}/usr/lib/lib${lib}.so.${pkgver} +ln -s lib${lib}.so.${pkgver} ${pkgdir}/usr/lib/lib${lib}.so.5 + done # install license, rip it from the readme cd ${srcdir}/${pkgname}-${pkgver}
[arch-commits] Commit in gajim/repos (4 files)
Date: Monday, March 18, 2013 @ 15:31:27 Author: eric Revision: 180173 archrelease: copy trunk to testing-any Added: gajim/repos/testing-any/ gajim/repos/testing-any/PKGBUILD (from rev 180172, gajim/trunk/PKGBUILD) gajim/repos/testing-any/gajim-drill.patch (from rev 180172, gajim/trunk/gajim-drill.patch) gajim/repos/testing-any/gajim.install (from rev 180172, gajim/trunk/gajim.install) ---+ PKGBUILD | 40 ++ gajim-drill.patch | 802 gajim.install | 11 3 files changed, 853 insertions(+) Copied: gajim/repos/testing-any/PKGBUILD (from rev 180172, gajim/trunk/PKGBUILD) === --- testing-any/PKGBUILD(rev 0) +++ testing-any/PKGBUILD2013-03-18 14:31:27 UTC (rev 180173) @@ -0,0 +1,40 @@ +# $Id$ +# Maintainer: Eric Bélanger + +pkgname=gajim +pkgver=0.15.3 +pkgrel=1 +pkgdesc="A full featured and easy to use Jabber client" +arch=('any') +url="http://www.gajim.org/"; +license=('GPL3') +depends=('pygtk' 'python2-pyopenssl' 'hicolor-icon-theme' 'ldns' 'python2-pyasn1') +makedepends=('gettext' 'intltool') +optdepends=('python2-dbus: dbus support' +'farstream-0.1: for video/voice support' +'gstreamer0.10-bad: for video/voice support' + 'gstreamer0.10-python: for video/voice support' +'gtkspell: for spelling support' +'libxss: for idle module' +'notification-daemon: for desktop notification' +'python2-gnomekeyring: for GnomeKeyring support' +'python2-crypto: support for E2E encryption' +'python2-docutils: for RST generator support' +'gupnp-igd: for UPnP-IGD support') +options=('!libtool') +install=gajim.install +source=(http://www.gajim.org/downloads/${pkgver%.*}/gajim-${pkgver}.tar.bz2 gajim-drill.patch) +sha1sums=('6d8b94d8b0446005e80b5cc4c9b6b8eedfc42c99' + '998022ff282bce766463e1532239d27832168d5f') + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + patch -p1 -i "${srcdir}/gajim-drill.patch" + PYTHON=python2 ./configure --prefix=/usr --enable-site-packages + make +} + +package() { + cd "${srcdir}/${pkgname}-${pkgver}" + make DESTDIR="${pkgdir}" install +} Copied: gajim/repos/testing-any/gajim-drill.patch (from rev 180172, gajim/trunk/gajim-drill.patch) === --- testing-any/gajim-drill.patch (rev 0) +++ testing-any/gajim-drill.patch 2013-03-18 14:31:27 UTC (rev 180173) @@ -0,0 +1,802 @@ +diff -Naur old/po/be.po new/po/be.po +--- old/po/be.po 2013-03-18 22:41:50.747592943 +1100 new/po/be.po 2013-03-18 22:46:19.578638708 +1100 +@@ -8491,11 +8491,11 @@ + msgstr "" + + #: ../src/features_window.py:80 +-msgid "Requires dnsutils." ++msgid "Requires ldns." + msgstr "" + + #: ../src/features_window.py:81 +-msgid "Requires nslookup to use SRV records." ++msgid "Requires drill to use SRV records." + msgstr "" + + #: ../src/features_window.py:82 +diff -Naur old/po/b...@latin.po new/po/b...@latin.po +--- old/po/b...@latin.po 2013-03-18 22:41:50.750926289 +1100 new/po/b...@latin.po 2013-03-18 22:46:19.588638750 +1100 +@@ -8515,11 +8515,11 @@ + msgstr "" + + #: ../src/features_window.py:80 +-msgid "Requires dnsutils." ++msgid "Requires ldns." + msgstr "" + + #: ../src/features_window.py:81 +-msgid "Requires nslookup to use SRV records." ++msgid "Requires drill to use SRV records." + msgstr "" + + #: ../src/features_window.py:82 +diff -Naur old/po/bg.po new/po/bg.po +--- old/po/bg.po 2013-03-18 22:41:50.750926289 +1100 new/po/bg.po 2013-03-18 22:46:19.601972134 +1100 +@@ -8412,11 +8412,11 @@ + msgstr "Възможност за свързване към сървъри, които използват записи SRV." + + #: ../src/features_window.py:80 +-msgid "Requires dnsutils." +-msgstr "Изисква dnsutils." ++msgid "Requires ldns." ++msgstr "Изисква ldns." + + #: ../src/features_window.py:81 +-msgid "Requires nslookup to use SRV records." ++msgid "Requires drill to use SRV records." + msgstr "" + + #: ../src/features_window.py:82 +diff -Naur old/po/br.po new/po/br.po +--- old/po/br.po 2013-03-18 22:41:50.750926289 +1100 new/po/br.po 2013-03-18 22:46:19.615305519 +1100 +@@ -8494,11 +8494,11 @@ + msgstr "" + + #: ../src/features_window.py:80 +-msgid "Requires dnsutils." ++msgid "Requires ldns." + msgstr "" + + #: ../src/features_window.py:81 +-msgid "Requires nslookup to use SRV records." ++msgid "Requires drill to use SRV records." + msgstr "" + + #: ../src/features_window.py:82 +diff -Naur old/po/cs.po new/po/cs.po +--- old/po/cs.po 2013-03-18 22:41:50.750926289 +1100 new/po/cs.po 2013-03-18 22:46:19.628638904 +1100 +@@ -8325,12 +8325,12 @@ + msgstr "Schopnost připojit se na servery používající SRV záznamy." + + #: ../src/features_windo
[arch-commits] Commit in gajim/trunk (PKGBUILD gajim-drill.patch)
Date: Monday, March 18, 2013 @ 15:30:45 Author: eric Revision: 180172 upgpkg: gajim 0.15.3-1 Upstream update, Add patch to use ldns instead of dnsutils, Update optdepends Added: gajim/trunk/gajim-drill.patch Modified: gajim/trunk/PKGBUILD ---+ PKGBUILD | 14 gajim-drill.patch | 802 2 files changed, 810 insertions(+), 6 deletions(-) Modified: PKGBUILD === --- PKGBUILD2013-03-18 14:12:25 UTC (rev 180171) +++ PKGBUILD2013-03-18 14:30:45 UTC (rev 180172) @@ -2,16 +2,16 @@ # Maintainer: Eric Bélanger pkgname=gajim -pkgver=0.15.2 +pkgver=0.15.3 pkgrel=1 pkgdesc="A full featured and easy to use Jabber client" arch=('any') url="http://www.gajim.org/"; license=('GPL3') -depends=('pygtk' 'python2-pyopenssl' 'hicolor-icon-theme' 'dnsutils' 'python2-pyasn1') +depends=('pygtk' 'python2-pyopenssl' 'hicolor-icon-theme' 'ldns' 'python2-pyasn1') makedepends=('gettext' 'intltool') -optdepends=('dbus-python: dbus support' -'farstream: for video/voice support' +optdepends=('python2-dbus: dbus support' +'farstream-0.1: for video/voice support' 'gstreamer0.10-bad: for video/voice support' 'gstreamer0.10-python: for video/voice support' 'gtkspell: for spelling support' @@ -23,11 +23,13 @@ 'gupnp-igd: for UPnP-IGD support') options=('!libtool') install=gajim.install -source=(http://www.gajim.org/downloads/${pkgver%.*}/gajim-${pkgver}.tar.bz2) -sha1sums=('9f5300ef635aa71cfa7ce8745fe964b7572d94d1') +source=(http://www.gajim.org/downloads/${pkgver%.*}/gajim-${pkgver}.tar.bz2 gajim-drill.patch) +sha1sums=('6d8b94d8b0446005e80b5cc4c9b6b8eedfc42c99' + '998022ff282bce766463e1532239d27832168d5f') build() { cd "${srcdir}/${pkgname}-${pkgver}" + patch -p1 -i "${srcdir}/gajim-drill.patch" PYTHON=python2 ./configure --prefix=/usr --enable-site-packages make } Added: gajim-drill.patch === --- gajim-drill.patch (rev 0) +++ gajim-drill.patch 2013-03-18 14:30:45 UTC (rev 180172) @@ -0,0 +1,802 @@ +diff -Naur old/po/be.po new/po/be.po +--- old/po/be.po 2013-03-18 22:41:50.747592943 +1100 new/po/be.po 2013-03-18 22:46:19.578638708 +1100 +@@ -8491,11 +8491,11 @@ + msgstr "" + + #: ../src/features_window.py:80 +-msgid "Requires dnsutils." ++msgid "Requires ldns." + msgstr "" + + #: ../src/features_window.py:81 +-msgid "Requires nslookup to use SRV records." ++msgid "Requires drill to use SRV records." + msgstr "" + + #: ../src/features_window.py:82 +diff -Naur old/po/b...@latin.po new/po/b...@latin.po +--- old/po/b...@latin.po 2013-03-18 22:41:50.750926289 +1100 new/po/b...@latin.po 2013-03-18 22:46:19.588638750 +1100 +@@ -8515,11 +8515,11 @@ + msgstr "" + + #: ../src/features_window.py:80 +-msgid "Requires dnsutils." ++msgid "Requires ldns." + msgstr "" + + #: ../src/features_window.py:81 +-msgid "Requires nslookup to use SRV records." ++msgid "Requires drill to use SRV records." + msgstr "" + + #: ../src/features_window.py:82 +diff -Naur old/po/bg.po new/po/bg.po +--- old/po/bg.po 2013-03-18 22:41:50.750926289 +1100 new/po/bg.po 2013-03-18 22:46:19.601972134 +1100 +@@ -8412,11 +8412,11 @@ + msgstr "Възможност за свързване към сървъри, които използват записи SRV." + + #: ../src/features_window.py:80 +-msgid "Requires dnsutils." +-msgstr "Изисква dnsutils." ++msgid "Requires ldns." ++msgstr "Изисква ldns." + + #: ../src/features_window.py:81 +-msgid "Requires nslookup to use SRV records." ++msgid "Requires drill to use SRV records." + msgstr "" + + #: ../src/features_window.py:82 +diff -Naur old/po/br.po new/po/br.po +--- old/po/br.po 2013-03-18 22:41:50.750926289 +1100 new/po/br.po 2013-03-18 22:46:19.615305519 +1100 +@@ -8494,11 +8494,11 @@ + msgstr "" + + #: ../src/features_window.py:80 +-msgid "Requires dnsutils." ++msgid "Requires ldns." + msgstr "" + + #: ../src/features_window.py:81 +-msgid "Requires nslookup to use SRV records." ++msgid "Requires drill to use SRV records." + msgstr "" + + #: ../src/features_window.py:82 +diff -Naur old/po/cs.po new/po/cs.po +--- old/po/cs.po 2013-03-18 22:41:50.750926289 +1100 new/po/cs.po 2013-03-18 22:46:19.628638904 +1100 +@@ -8325,12 +8325,12 @@ + msgstr "Schopnost připojit se na servery používající SRV záznamy." + + #: ../src/features_window.py:80 +-msgid "Requires dnsutils." +-msgstr "Je potřeba dnsutils." ++msgid "Requires ldns." ++msgstr "Je potřeba ldns." + + #: ../src/features_window.py:81 +-msgid "Requires nslookup to use SRV records." +-msgstr "Je potřeba nslookup pro použití SRV záznamů." ++msgid "Requires drill to use SRV records." ++msgstr "Je potřeba drill pro použití SRV záznamů." + + #: ../src/features_window.py:82 + msgi
[arch-commits] Commit in fcitx-libpinyin/repos (6 files)
Date: Monday, March 18, 2013 @ 15:14:51 Author: fyan Revision: 86521 archrelease: copy trunk to community-testing-i686, community-testing-x86_64 Added: fcitx-libpinyin/repos/community-testing-i686/ fcitx-libpinyin/repos/community-testing-i686/PKGBUILD (from rev 86520, fcitx-libpinyin/trunk/PKGBUILD) fcitx-libpinyin/repos/community-testing-i686/fcitx-libpinyin.install (from rev 86520, fcitx-libpinyin/trunk/fcitx-libpinyin.install) fcitx-libpinyin/repos/community-testing-x86_64/ fcitx-libpinyin/repos/community-testing-x86_64/PKGBUILD (from rev 86520, fcitx-libpinyin/trunk/PKGBUILD) fcitx-libpinyin/repos/community-testing-x86_64/fcitx-libpinyin.install (from rev 86520, fcitx-libpinyin/trunk/fcitx-libpinyin.install) --+ community-testing-i686/PKGBUILD | 34 + community-testing-i686/fcitx-libpinyin.install | 11 ++ community-testing-x86_64/PKGBUILD| 34 + community-testing-x86_64/fcitx-libpinyin.install | 11 ++ 4 files changed, 90 insertions(+) Copied: fcitx-libpinyin/repos/community-testing-i686/PKGBUILD (from rev 86520, fcitx-libpinyin/trunk/PKGBUILD) === --- community-testing-i686/PKGBUILD (rev 0) +++ community-testing-i686/PKGBUILD 2013-03-18 14:14:51 UTC (rev 86521) @@ -0,0 +1,34 @@ +# $Id$ +# Maintainer: Felix Yan +# Contributor: poplarch + +pkgname=fcitx-libpinyin +pkgver=0.2.90 +pkgrel=1 +pkgdesc="Fcitx Wrapper for libpinyin, Library to deal with pinyin" +arch=('i686' 'x86_64') +url="https://github.com/fcitx/fcitx-libpinyin"; +license=('GPL') +depends=('fcitx' 'libpinyin') +makedepends=('cmake' 'intltool' 'wget') +source=("http://fcitx.googlecode.com/files/${pkgname}-${pkgver}.tar.xz";) +install=$pkgname.install + +build() { + cd "$srcdir/${pkgname}-${pkgver}" + + rm -rf build + mkdir build + cd build + + msg "Starting make..." + + cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release .. + make +} + +package() { + cd "$srcdir/${pkgname}-${pkgver}/build" + make DESTDIR="${pkgdir}" install +} +md5sums=('b19526c18102d8c240f2933d21bbbc81') Copied: fcitx-libpinyin/repos/community-testing-i686/fcitx-libpinyin.install (from rev 86520, fcitx-libpinyin/trunk/fcitx-libpinyin.install) === --- community-testing-i686/fcitx-libpinyin.install (rev 0) +++ community-testing-i686/fcitx-libpinyin.install 2013-03-18 14:14:51 UTC (rev 86521) @@ -0,0 +1,11 @@ +post_install() { +gtk-update-icon-cache -q -t -f usr/share/icons/hicolor +} + +post_upgrade() { +post_install +} + +post_remove() { +post_install +} Copied: fcitx-libpinyin/repos/community-testing-x86_64/PKGBUILD (from rev 86520, fcitx-libpinyin/trunk/PKGBUILD) === --- community-testing-x86_64/PKGBUILD (rev 0) +++ community-testing-x86_64/PKGBUILD 2013-03-18 14:14:51 UTC (rev 86521) @@ -0,0 +1,34 @@ +# $Id$ +# Maintainer: Felix Yan +# Contributor: poplarch + +pkgname=fcitx-libpinyin +pkgver=0.2.90 +pkgrel=1 +pkgdesc="Fcitx Wrapper for libpinyin, Library to deal with pinyin" +arch=('i686' 'x86_64') +url="https://github.com/fcitx/fcitx-libpinyin"; +license=('GPL') +depends=('fcitx' 'libpinyin') +makedepends=('cmake' 'intltool' 'wget') +source=("http://fcitx.googlecode.com/files/${pkgname}-${pkgver}.tar.xz";) +install=$pkgname.install + +build() { + cd "$srcdir/${pkgname}-${pkgver}" + + rm -rf build + mkdir build + cd build + + msg "Starting make..." + + cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release .. + make +} + +package() { + cd "$srcdir/${pkgname}-${pkgver}/build" + make DESTDIR="${pkgdir}" install +} +md5sums=('b19526c18102d8c240f2933d21bbbc81') Copied: fcitx-libpinyin/repos/community-testing-x86_64/fcitx-libpinyin.install (from rev 86520, fcitx-libpinyin/trunk/fcitx-libpinyin.install) === --- community-testing-x86_64/fcitx-libpinyin.install (rev 0) +++ community-testing-x86_64/fcitx-libpinyin.install2013-03-18 14:14:51 UTC (rev 86521) @@ -0,0 +1,11 @@ +post_install() { +gtk-update-icon-cache -q -t -f usr/share/icons/hicolor +} + +post_upgrade() { +post_install +} + +post_remove() { +post_install +}
[arch-commits] Commit in fcitx-libpinyin/trunk (PKGBUILD)
Date: Monday, March 18, 2013 @ 15:13:11 Author: fyan Revision: 86520 upgpkg: fcitx-libpinyin 0.2.90-1 Modified: fcitx-libpinyin/trunk/PKGBUILD --+ PKGBUILD | 11 +-- 1 file changed, 5 insertions(+), 6 deletions(-) Modified: PKGBUILD === --- PKGBUILD2013-03-18 13:54:45 UTC (rev 86519) +++ PKGBUILD2013-03-18 14:13:11 UTC (rev 86520) @@ -3,17 +3,16 @@ # Contributor: poplarch pkgname=fcitx-libpinyin -pkgver=0.2.1 -pkgrel=3 +pkgver=0.2.90 +pkgrel=1 pkgdesc="Fcitx Wrapper for libpinyin, Library to deal with pinyin" arch=('i686' 'x86_64') url="https://github.com/fcitx/fcitx-libpinyin"; license=('GPL') -depends=('fcitx>=4.2.0' 'libpinyin>=0.3.0') +depends=('fcitx' 'libpinyin') makedepends=('cmake' 'intltool' 'wget') -provides=('fcitx-libpinyin') source=("http://fcitx.googlecode.com/files/${pkgname}-${pkgver}.tar.xz";) -install='fcitx-libpinyin.install' +install=$pkgname.install build() { cd "$srcdir/${pkgname}-${pkgver}" @@ -32,4 +31,4 @@ cd "$srcdir/${pkgname}-${pkgver}/build" make DESTDIR="${pkgdir}" install } -md5sums=('9ff621f6f16ab426ff01652b1ffc06a7') +md5sums=('b19526c18102d8c240f2933d21bbbc81')
[arch-commits] Commit in cmucl/repos/extra-i686 (4 files)
Date: Monday, March 18, 2013 @ 15:12:25 Author: juergen Revision: 180171 archrelease: copy trunk to extra-i686 Added: cmucl/repos/extra-i686/PKGBUILD (from rev 180170, cmucl/trunk/PKGBUILD) cmucl/repos/extra-i686/workaround-for-gcc-4.6-overoptimization (from rev 180170, cmucl/trunk/workaround-for-gcc-4.6-overoptimization) Deleted: cmucl/repos/extra-i686/PKGBUILD cmucl/repos/extra-i686/workaround-for-gcc-4.6-overoptimization -+ PKGBUILD| 134 ++ workaround-for-gcc-4.6-overoptimization | 38 2 files changed, 85 insertions(+), 87 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2013-03-18 14:12:19 UTC (rev 180170) +++ PKGBUILD2013-03-18 14:12:25 UTC (rev 180171) @@ -1,68 +0,0 @@ -# $Id$ -# Contributor: John Proctor -# Maintainer: Juergen Hoetzel - -pkgname=cmucl -pkgver=20c -pkgrel=1 -pkgdesc="CMU Common Lisp" -depends=('glibc' 'lesstif') -provides=('common-lisp') -makedepends=('sed' 'bc') -license=('custom') -#license PublicDomain -source=(http://common-lisp.net/project/cmucl/downloads/release/${pkgver}/cmucl-src-${pkgver}.tar.bz2 \ - http://common-lisp.net/project/cmucl/downloads/release/${pkgver}/cmucl-${pkgver}-x86-linux.tar.bz2 \ - workaround-for-gcc-4.6-overoptimization) -md5sums=('7eec1ddbd281261e2b08194859727e9a' - 'c200365b631c7b36b7675e4fc6e17177' - '02dd46e8b4b966d121a15037c713f6d4') -url="http://www.cons.org/cmucl/"; -arch=(i686) - -build() { - cd "${srcdir}" - patch -Np1 -i workaround-for-gcc-4.6-overoptimization - export CMUCLCORE="${srcdir}"/lib/cmucl/lib/lisp-x87.core - # Create target buildroot - ./src/tools/create-target.sh $CHOST - # Use binary-dist lisp to create initial kernel.core - ./src/tools/build-world.sh $CHOST "${srcdir}"/bin/lisp - # build native lisp binary - ./src/tools/rebuild-lisp.sh $CHOST - # Generate lisp.core - ./src/tools/load-world.sh $CHOST ${pkgver} - # rebuild kernel.core using native lisp - ./src/tools/build-world.sh $CHOST $CHOST/lisp/lisp - # "(Re)generate lisp.core" - ./src/tools/load-world.sh $CHOST ${pkgver} - # Build auxilary stuff - ./src/tools/build-utils.sh $CHOST - # make new binary dist archives - ./src/tools/make-dist.sh $CHOST ${pkgver} x86 linux -} - -package() { - cd "${srcdir}" - mkdir -p "${pkgdir}"/usr/lib/cmucl/ - mkdir -p "${pkgdir}"/usr/share/man/man1 - mkdir dist - tar xjf cmucl-${pkgver}-x86-linux.tar.bz2 -C dist - tar xjf cmucl-${pkgver}-x86-linux.extra.tar.bz2 -C dist - cp -a dist/bin "${pkgdir}"/usr/lib/cmucl - cp -a dist/lib/cmucl "${pkgdir}"/usr/lib/ - cp -a dist/man/man1/* "${pkgdir}"/usr/share/man/man1/ - - ## Setup app-wrapper - install -m755 -p -D lib/cmucl/sample-wrapper "${pkgdir}"/usr/bin/cmucl - # Fixup paths in wrapper - sed -i -e "s|^CMUCLLIB=.*|CMUCLLIB=/usr/lib/cmucl/lib|" "${pkgdir}"/usr/bin/cmucl - sed -i -e "s|/<>|/usr/lib/cmucl|" "${pkgdir}"/usr/bin/cmucl - # many apps (ie, maxima) expect to find the wrapper named 'lisp' too - ln -sf cmucl "${pkgdir}"/usr/bin/lisp - ## Unpackaged files - rm -f "${pkgdir}"/usr/lib/cmucl/sample-wrapper - # license - install -D -m644 "${srcdir}"/src/general-info/COPYRIGHTS \ - "${pkgdir}"/usr/share/licenses/${pkgname}/license.txt -} Copied: cmucl/repos/extra-i686/PKGBUILD (from rev 180170, cmucl/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2013-03-18 14:12:25 UTC (rev 180171) @@ -0,0 +1,66 @@ +# $Id$ +# Contributor: John Proctor +# Maintainer: Juergen Hoetzel + +pkgname=cmucl +pkgver=20d +pkgrel=1 +pkgdesc="CMU Common Lisp" +depends=('glibc' 'lesstif') +provides=('common-lisp') +makedepends=('sed' 'bc') +license=('custom') +#license PublicDomain +source=(http://common-lisp.net/project/cmucl/downloads/release/${pkgver}/cmucl-src-${pkgver}.tar.bz2{,.asc} \ + http://common-lisp.net/project/cmucl/downloads/release/${pkgver}/cmucl-${pkgver}-x86-linux.tar.bz2{,.asc}) + +md5sums=('95700138a53f21231f58e3ab5702b40c' '0f578aea21cad3f729230911a246030c' + '947528c8c1abdabdc0e99c093e0e77ad' '1685fe47db90f7a3fe63d178dbbee162') +url="http://www.cons.org/cmucl/"; +arch=(i686) + +build() { + cd "${srcdir}" + export CMUCLCORE="${srcdir}"/lib/cmucl/lib/lisp-x87.core + # Create target buildroot + ./bin/create-target.sh $CHOST + # Use binary-dist lisp to create initial kernel.core + ./bin/build-world.sh $CHOST "${srcdir}"/bin/lisp + # build native lisp binary + ./bin/rebuild-lisp.sh $CHOST + # Generate lisp.core + ./bin/load-world.sh $CHOST ${pkgver} + # rebuild kernel.core using native lisp + ./bin/build-world.sh $CHOST $CHOST/lisp/lisp + # "(Re)generate lisp.core" + ./bin/load-world.sh $CHOST ${pkgver} + # Build auxilary stuff + ./bin/build-utils.sh $CHOST + # make new binary
[arch-commits] Commit in cmucl/trunk (PKGBUILD)
Date: Monday, March 18, 2013 @ 15:12:19 Author: juergen Revision: 180170 upgpkg: cmucl 20d-1 Modified: cmucl/trunk/PKGBUILD --+ PKGBUILD | 30 ++ 1 file changed, 14 insertions(+), 16 deletions(-) Modified: PKGBUILD === --- PKGBUILD2013-03-18 14:04:21 UTC (rev 180169) +++ PKGBUILD2013-03-18 14:12:19 UTC (rev 180170) @@ -3,7 +3,7 @@ # Maintainer: Juergen Hoetzel pkgname=cmucl -pkgver=20c +pkgver=20d pkgrel=1 pkgdesc="CMU Common Lisp" depends=('glibc' 'lesstif') @@ -11,35 +11,33 @@ makedepends=('sed' 'bc') license=('custom') #license PublicDomain -source=(http://common-lisp.net/project/cmucl/downloads/release/${pkgver}/cmucl-src-${pkgver}.tar.bz2 \ - http://common-lisp.net/project/cmucl/downloads/release/${pkgver}/cmucl-${pkgver}-x86-linux.tar.bz2 \ - workaround-for-gcc-4.6-overoptimization) -md5sums=('7eec1ddbd281261e2b08194859727e9a' - 'c200365b631c7b36b7675e4fc6e17177' - '02dd46e8b4b966d121a15037c713f6d4') +source=(http://common-lisp.net/project/cmucl/downloads/release/${pkgver}/cmucl-src-${pkgver}.tar.bz2{,.asc} \ + http://common-lisp.net/project/cmucl/downloads/release/${pkgver}/cmucl-${pkgver}-x86-linux.tar.bz2{,.asc}) + +md5sums=('95700138a53f21231f58e3ab5702b40c' '0f578aea21cad3f729230911a246030c' + '947528c8c1abdabdc0e99c093e0e77ad' '1685fe47db90f7a3fe63d178dbbee162') url="http://www.cons.org/cmucl/"; arch=(i686) build() { cd "${srcdir}" - patch -Np1 -i workaround-for-gcc-4.6-overoptimization export CMUCLCORE="${srcdir}"/lib/cmucl/lib/lisp-x87.core # Create target buildroot - ./src/tools/create-target.sh $CHOST + ./bin/create-target.sh $CHOST # Use binary-dist lisp to create initial kernel.core - ./src/tools/build-world.sh $CHOST "${srcdir}"/bin/lisp + ./bin/build-world.sh $CHOST "${srcdir}"/bin/lisp # build native lisp binary - ./src/tools/rebuild-lisp.sh $CHOST + ./bin/rebuild-lisp.sh $CHOST # Generate lisp.core - ./src/tools/load-world.sh $CHOST ${pkgver} + ./bin/load-world.sh $CHOST ${pkgver} # rebuild kernel.core using native lisp - ./src/tools/build-world.sh $CHOST $CHOST/lisp/lisp + ./bin/build-world.sh $CHOST $CHOST/lisp/lisp # "(Re)generate lisp.core" - ./src/tools/load-world.sh $CHOST ${pkgver} + ./bin/load-world.sh $CHOST ${pkgver} # Build auxilary stuff - ./src/tools/build-utils.sh $CHOST + ./bin/build-utils.sh $CHOST # make new binary dist archives - ./src/tools/make-dist.sh $CHOST ${pkgver} x86 linux + ./bin/make-dist.sh $CHOST ${pkgver} x86 linux } package() {
[arch-commits] Commit in apache/repos (36 files)
Date: Monday, March 18, 2013 @ 15:04:21 Author: jgc Revision: 180169 archrelease: copy trunk to extra-i686, extra-x86_64 Added: apache/repos/extra-i686/PKGBUILD (from rev 180168, apache/trunk/PKGBUILD) apache/repos/extra-i686/apache.conf.d (from rev 180168, apache/trunk/apache.conf.d) apache/repos/extra-i686/apache.install (from rev 180168, apache/trunk/apache.install) apache/repos/extra-i686/apache.tmpfiles.conf (from rev 180168, apache/trunk/apache.tmpfiles.conf) apache/repos/extra-i686/apachectl-confd.patch (from rev 180168, apache/trunk/apachectl-confd.patch) apache/repos/extra-i686/arch.layout (from rev 180168, apache/trunk/arch.layout) apache/repos/extra-i686/httpd (from rev 180168, apache/trunk/httpd) apache/repos/extra-i686/httpd.logrotate (from rev 180168, apache/trunk/httpd.logrotate) apache/repos/extra-i686/httpd.service (from rev 180168, apache/trunk/httpd.service) apache/repos/extra-x86_64/PKGBUILD (from rev 180168, apache/trunk/PKGBUILD) apache/repos/extra-x86_64/apache.conf.d (from rev 180168, apache/trunk/apache.conf.d) apache/repos/extra-x86_64/apache.install (from rev 180168, apache/trunk/apache.install) apache/repos/extra-x86_64/apache.tmpfiles.conf (from rev 180168, apache/trunk/apache.tmpfiles.conf) apache/repos/extra-x86_64/apachectl-confd.patch (from rev 180168, apache/trunk/apachectl-confd.patch) apache/repos/extra-x86_64/arch.layout (from rev 180168, apache/trunk/arch.layout) apache/repos/extra-x86_64/httpd (from rev 180168, apache/trunk/httpd) apache/repos/extra-x86_64/httpd.logrotate (from rev 180168, apache/trunk/httpd.logrotate) apache/repos/extra-x86_64/httpd.service (from rev 180168, apache/trunk/httpd.service) Deleted: apache/repos/extra-i686/PKGBUILD apache/repos/extra-i686/apache.conf.d apache/repos/extra-i686/apache.install apache/repos/extra-i686/apache.tmpfiles.conf apache/repos/extra-i686/apachectl-confd.patch apache/repos/extra-i686/arch.layout apache/repos/extra-i686/httpd apache/repos/extra-i686/httpd.logrotate apache/repos/extra-i686/httpd.service apache/repos/extra-x86_64/PKGBUILD apache/repos/extra-x86_64/apache.conf.d apache/repos/extra-x86_64/apache.install apache/repos/extra-x86_64/apache.tmpfiles.conf apache/repos/extra-x86_64/apachectl-confd.patch apache/repos/extra-x86_64/arch.layout apache/repos/extra-x86_64/httpd apache/repos/extra-x86_64/httpd.logrotate apache/repos/extra-x86_64/httpd.service + extra-i686/PKGBUILD| 316 +-- extra-i686/apache.conf.d | 30 +-- extra-i686/apache.install | 10 - extra-i686/apache.tmpfiles.conf|2 extra-i686/apachectl-confd.patch | 30 +-- extra-i686/arch.layout | 44 ++-- extra-i686/httpd | 130 +++--- extra-i686/httpd.logrotate | 12 - extra-i686/httpd.service | 30 +-- extra-x86_64/PKGBUILD | 316 +-- extra-x86_64/apache.conf.d | 30 +-- extra-x86_64/apache.install| 10 - extra-x86_64/apache.tmpfiles.conf |2 extra-x86_64/apachectl-confd.patch | 30 +-- extra-x86_64/arch.layout | 44 ++-- extra-x86_64/httpd | 130 +++--- extra-x86_64/httpd.logrotate | 12 - extra-x86_64/httpd.service | 30 +-- 18 files changed, 608 insertions(+), 600 deletions(-) The diff is longer than the limit of 200KB. Use svn diff -r 180168:180169 to see the changes.
[arch-commits] Commit in apache/trunk (PKGBUILD apache.install)
Date: Monday, March 18, 2013 @ 15:03:50 Author: jgc Revision: 180168 Update, includes config option to fix CRIME attack (FS#33561) Fix install scriptlet, depend on systemd for this (FS#34334) upgpkg: apache 2.2.24-1 Modified: apache/trunk/PKGBUILD apache/trunk/apache.install + PKGBUILD |8 apache.install |6 +- 2 files changed, 9 insertions(+), 5 deletions(-) Modified: PKGBUILD === --- PKGBUILD2013-03-18 13:36:39 UTC (rev 180167) +++ PKGBUILD2013-03-18 14:03:50 UTC (rev 180168) @@ -4,7 +4,7 @@ # Contributor: Pierre Schmitz pkgname=apache -pkgver=2.2.23 +pkgver=2.2.24 pkgrel=1 pkgdesc='A high performance Unix-based HTTP server' arch=('i686' 'x86_64') @@ -16,7 +16,7 @@ etc/httpd/conf/extra/httpd-{manual,mpm,multilang-errordoc}.conf etc/httpd/conf/extra/httpd-{ssl,userdir,vhosts}.conf etc/logrotate.d/httpd) -depends=('openssl' 'zlib' 'apr-util' 'pcre') +depends=('openssl' 'zlib' 'apr-util' 'pcre' 'systemd') optdepends=('lynx: apachectl status') install=apache.install _itkurl=http://mpm-itk.sesse.net/apache2.2-mpm-itk-2.2.17-01 @@ -39,8 +39,8 @@ httpd httpd.service arch.layout) -md5sums=('ca133de0e4b4b15316990a97186b9993' - '3289ae3b16e1a2dc633c811d6569abb6' +md5sums=('91bd1484aca13a7095d6432be37fc7ae' + 'f8f0d879b5fda028aad7ac9f329e057b' 'f1d9d41360908ceb2374da55ae99197a' 'cdfa04985a0efa850976aef01c2a0c40' '0930d2d0612eb0a53a0d00aea7e8687f' Modified: apache.install === --- apache.install 2013-03-18 13:36:39 UTC (rev 180167) +++ apache.install 2013-03-18 14:03:50 UTC (rev 180168) @@ -1,3 +1,7 @@ post_install() { - systemd-tmpfiles --create usr/lib/tmpfiles.d/apache.conf + systemd-tmpfiles --create apache.conf } + +post_upgrade() { + systemd-tmpfiles --create apache.conf +}
[arch-commits] Commit in open-vm-tools-modules/repos (16 files)
Date: Monday, March 18, 2013 @ 14:54:45 Author: spupykin Revision: 86519 archrelease: copy trunk to community-i686, community-x86_64 Added: open-vm-tools-modules/repos/community-i686/PKGBUILD (from rev 86518, open-vm-tools-modules/trunk/PKGBUILD) open-vm-tools-modules/repos/community-i686/linux-3.8.patch (from rev 86518, open-vm-tools-modules/trunk/linux-3.8.patch) open-vm-tools-modules/repos/community-i686/modprobe.conf (from rev 86518, open-vm-tools-modules/trunk/modprobe.conf) open-vm-tools-modules/repos/community-i686/open-vm-tools-modules.install (from rev 86518, open-vm-tools-modules/trunk/open-vm-tools-modules.install) open-vm-tools-modules/repos/community-x86_64/PKGBUILD (from rev 86518, open-vm-tools-modules/trunk/PKGBUILD) open-vm-tools-modules/repos/community-x86_64/linux-3.8.patch (from rev 86518, open-vm-tools-modules/trunk/linux-3.8.patch) open-vm-tools-modules/repos/community-x86_64/modprobe.conf (from rev 86518, open-vm-tools-modules/trunk/modprobe.conf) open-vm-tools-modules/repos/community-x86_64/open-vm-tools-modules.install (from rev 86518, open-vm-tools-modules/trunk/open-vm-tools-modules.install) Deleted: open-vm-tools-modules/repos/community-i686/PKGBUILD open-vm-tools-modules/repos/community-i686/linux-3.8.patch open-vm-tools-modules/repos/community-i686/modprobe.conf open-vm-tools-modules/repos/community-i686/open-vm-tools-modules.install open-vm-tools-modules/repos/community-x86_64/PKGBUILD open-vm-tools-modules/repos/community-x86_64/linux-3.8.patch open-vm-tools-modules/repos/community-x86_64/modprobe.conf open-vm-tools-modules/repos/community-x86_64/open-vm-tools-modules.install + community-i686/PKGBUILD| 120 +++ community-i686/linux-3.8.patch | 106 ++-- community-i686/modprobe.conf |2 community-i686/open-vm-tools-modules.install | 46 community-x86_64/PKGBUILD | 120 +++ community-x86_64/linux-3.8.patch | 106 ++-- community-x86_64/modprobe.conf |2 community-x86_64/open-vm-tools-modules.install | 46 8 files changed, 274 insertions(+), 274 deletions(-) Deleted: community-i686/PKGBUILD === --- community-i686/PKGBUILD 2013-03-18 13:54:14 UTC (rev 86518) +++ community-i686/PKGBUILD 2013-03-18 13:54:45 UTC (rev 86519) @@ -1,60 +0,0 @@ -# $Id$ -# Maintainer: Sergej Pupykin -# Contributor: Krzysztof Raczkowski - -pkgname=open-vm-tools-modules -epoch=1 -pkgver=9.2.2 -_pkgsubver=893683 -pkgrel=6 -pkgdesc="kernel modules for the open source implementation of VMware Tools" -arch=('i686' 'x86_64') -url="http://open-vm-tools.sourceforge.net/"; -license=('GPL') -makedepends=('libdnet' 'icu' 'uriparser' 'linux-headers') -depends=("linux") -install=$pkgname.install -options=('!strip' '!makeflags') -source=("http://downloads.sourceforge.net/open-vm-tools/open-vm-tools-$pkgver-${_pkgsubver}.tar.gz"; - "modprobe.conf" - "linux-3.8.patch") -md5sums=('7af505681d736d4c9ee6493b1166689f' - 'bc5518489077e91655489bd04b868584' - 'ff757686649404db0c2c9761eb293174') - -build() { - _kernver=$(pacman -Q linux | cut -d . -f 2 | cut -f 1 -d -) - KERNEL_RELEASE=$(cat /usr/lib/modules/extramodules-3.${_kernver}-ARCH/version) - - cd "$srcdir/open-vm-tools-${pkgver}-${_pkgsubver}" - - patch -Np1 -i "${srcdir}/linux-3.8.patch" - - sed -i 's|proc-3.2.8|procps|g' configure - sed -i 's|putname(name);|__putname(name);|' modules/linux/vmblock/linux/control.c - - [ $NOEXTRACT -eq 1 ] || ./configure \ - --prefix=/usr \ - --without-x \ - --with-linuxdir=/usr/lib/modules/$KERNEL_RELEASE - - make -C modules modules -} - -package() { - _kernver=$(pacman -Q linux | cut -d . -f 2 | cut -f 1 -d -) - depends=("linux>=3.${_kernver}" "linux<3.$(expr ${_kernver} + 1)") - KERNEL_VERSION=$(cat /usr/lib/modules/extramodules-3.${_kernver}-ARCH/version) - msg "Kernel = $KERNEL_VERSION" - - cd "$srcdir/open-vm-tools-${pkgver}-${_pkgsubver}" - mkdir -p $pkgdir/usr/lib/modules/extramodules-3.${_kernver}-ARCH/ - - find -type f -name '*.ko' \ --exec install -t "$pkgdir/usr/lib/modules/extramodules-3.$_kernver-ARCH" {} + - - gzip "$pkgdir/usr/lib/modules/extramodules-3.$_kernver-ARCH"/*.ko - - install -D -m 644 ${srcdir}/modprobe.conf ${pkgdir}/usr/lib/modprobe.d/${pkgname}.conf - sed -i "s|extramodules-.*-ARCH|extramodules-3.${_kernver}-ARCH|" $startdir/$pkgname.install -} Copied: open-vm-tools-modules/repos/community-i686/PKGBUILD (from rev 86518, open-vm-tools-modules/trunk/PKGBUILD) === --- community-i686/PKGBUILD (rev 0) +++ community-i686/PKGBUILD 2013-03-18
[arch-commits] Commit in open-vm-tools-modules/trunk (PKGBUILD)
Date: Monday, March 18, 2013 @ 14:54:14 Author: spupykin Revision: 86518 upgpkg: open-vm-tools-modules 1:9.2.2-7 upd Modified: open-vm-tools-modules/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2013-03-18 13:54:12 UTC (rev 86517) +++ PKGBUILD2013-03-18 13:54:14 UTC (rev 86518) @@ -6,7 +6,7 @@ epoch=1 pkgver=9.2.2 _pkgsubver=893683 -pkgrel=6 +pkgrel=7 pkgdesc="kernel modules for the open source implementation of VMware Tools" arch=('i686' 'x86_64') url="http://open-vm-tools.sourceforge.net/";
[arch-commits] Commit in kdenlive/trunk (PKGBUILD)
Date: Monday, March 18, 2013 @ 14:54:12 Author: spupykin Revision: 86517 upgpkg: kdenlive 0.9.4-2 upd Modified: kdenlive/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2013-03-18 13:48:59 UTC (rev 86516) +++ PKGBUILD2013-03-18 13:54:12 UTC (rev 86517) @@ -5,7 +5,7 @@ pkgname=kdenlive pkgver=0.9.4 -pkgrel=1 +pkgrel=2 pkgdesc="A non-linear video editor for Linux" arch=('i686' 'x86_64') # http://download.kde.org/stable/kdenlive/
[arch-commits] Commit in libpinyin/repos (4 files)
Date: Monday, March 18, 2013 @ 14:48:59 Author: fyan Revision: 86516 archrelease: copy trunk to community-testing-i686, community-testing-x86_64 Added: libpinyin/repos/community-testing-i686/ libpinyin/repos/community-testing-i686/PKGBUILD (from rev 86515, libpinyin/trunk/PKGBUILD) libpinyin/repos/community-testing-x86_64/ libpinyin/repos/community-testing-x86_64/PKGBUILD (from rev 86515, libpinyin/trunk/PKGBUILD) ---+ community-testing-i686/PKGBUILD | 33 + community-testing-x86_64/PKGBUILD | 33 + 2 files changed, 66 insertions(+) Copied: libpinyin/repos/community-testing-i686/PKGBUILD (from rev 86515, libpinyin/trunk/PKGBUILD) === --- community-testing-i686/PKGBUILD (rev 0) +++ community-testing-i686/PKGBUILD 2013-03-18 13:48:59 UTC (rev 86516) @@ -0,0 +1,33 @@ +# $Id$ +# Maintainer: Felix Yan +# Contributor: Yangtse +# Contributor: WU Jun + +pkgname=libpinyin +pkgver=0.8.93 +pkgrel=1 +pkgdesc="Library to deal with pinyin." +arch=('i686' 'x86_64') +url="https://github.com/libpinyin/libpinyin"; +license=('GPL') +depends=('db' 'glib2') +options=(!libtool) +source=("https://github.com/libpinyin/libpinyin/archive/${pkgver}.tar.gz"; +"http://downloads.sourceforge.net/libpinyin/model5.text.tar.gz";) +noextract=("model5.text.tar.gz") + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + cp "${srcdir}/model5.text.tar.gz" "${srcdir}/${pkgname}-${pkgver}/data/" + sed -i '/wget.*model5\.text\.tar\.gz/ d' ${srcdir}/${pkgname}-${pkgver}/data/Makefile.am + + aclocal && libtoolize --force && autoheader && automake -a && autoconf + ./configure --prefix=/usr && make +} + +package() { + cd "${srcdir}/libpinyin-$pkgver" + make DESTDIR="${pkgdir}" install +} +md5sums=('1d9a768496c8a4368d3488639cadd554' + 'a83812e2d3be5695be54f95d9d7a3aa0') Copied: libpinyin/repos/community-testing-x86_64/PKGBUILD (from rev 86515, libpinyin/trunk/PKGBUILD) === --- community-testing-x86_64/PKGBUILD (rev 0) +++ community-testing-x86_64/PKGBUILD 2013-03-18 13:48:59 UTC (rev 86516) @@ -0,0 +1,33 @@ +# $Id$ +# Maintainer: Felix Yan +# Contributor: Yangtse +# Contributor: WU Jun + +pkgname=libpinyin +pkgver=0.8.93 +pkgrel=1 +pkgdesc="Library to deal with pinyin." +arch=('i686' 'x86_64') +url="https://github.com/libpinyin/libpinyin"; +license=('GPL') +depends=('db' 'glib2') +options=(!libtool) +source=("https://github.com/libpinyin/libpinyin/archive/${pkgver}.tar.gz"; +"http://downloads.sourceforge.net/libpinyin/model5.text.tar.gz";) +noextract=("model5.text.tar.gz") + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + cp "${srcdir}/model5.text.tar.gz" "${srcdir}/${pkgname}-${pkgver}/data/" + sed -i '/wget.*model5\.text\.tar\.gz/ d' ${srcdir}/${pkgname}-${pkgver}/data/Makefile.am + + aclocal && libtoolize --force && autoheader && automake -a && autoconf + ./configure --prefix=/usr && make +} + +package() { + cd "${srcdir}/libpinyin-$pkgver" + make DESTDIR="${pkgdir}" install +} +md5sums=('1d9a768496c8a4368d3488639cadd554' + 'a83812e2d3be5695be54f95d9d7a3aa0')
[arch-commits] Commit in libpinyin/trunk (PKGBUILD)
Date: Monday, March 18, 2013 @ 14:47:24 Author: fyan Revision: 86515 upgpkg: libpinyin 0.8.93-1 Modified: libpinyin/trunk/PKGBUILD --+ PKGBUILD |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) Modified: PKGBUILD === --- PKGBUILD2013-03-18 12:39:54 UTC (rev 86514) +++ PKGBUILD2013-03-18 13:47:24 UTC (rev 86515) @@ -4,7 +4,7 @@ # Contributor: WU Jun pkgname=libpinyin -pkgver=0.8.92 +pkgver=0.8.93 pkgrel=1 pkgdesc="Library to deal with pinyin." arch=('i686' 'x86_64') @@ -29,5 +29,5 @@ cd "${srcdir}/libpinyin-$pkgver" make DESTDIR="${pkgdir}" install } -md5sums=('f9dd61040c19116d48ad3a83a33aa959' +md5sums=('1d9a768496c8a4368d3488639cadd554' 'a83812e2d3be5695be54f95d9d7a3aa0')
[arch-commits] Commit in sg3_utils/repos (6 files)
Date: Monday, March 18, 2013 @ 14:36:39 Author: jgc Revision: 180167 archrelease: copy trunk to extra-i686, extra-x86_64 Added: sg3_utils/repos/extra-i686/PKGBUILD (from rev 180166, sg3_utils/trunk/PKGBUILD) sg3_utils/repos/extra-x86_64/PKGBUILD (from rev 180166, sg3_utils/trunk/PKGBUILD) Deleted: sg3_utils/repos/extra-i686/PKGBUILD sg3_utils/repos/extra-i686/stdint.patch sg3_utils/repos/extra-x86_64/PKGBUILD sg3_utils/repos/extra-x86_64/stdint.patch ---+ extra-i686/PKGBUILD | 54 ++-- extra-i686/stdint.patch | 22 - extra-x86_64/PKGBUILD | 54 ++-- extra-x86_64/stdint.patch | 22 - 4 files changed, 54 insertions(+), 98 deletions(-) Deleted: extra-i686/PKGBUILD === --- extra-i686/PKGBUILD 2013-03-18 13:36:30 UTC (rev 180166) +++ extra-i686/PKGBUILD 2013-03-18 13:36:39 UTC (rev 180167) @@ -1,27 +0,0 @@ -#$Id$ -# Maintainer: Daniel Isenmann - -pkgname=sg3_utils -pkgver=1.33 -pkgrel=1 -pkgdesc="Generic SCSI utilities" -arch=(i686 x86_64) -url="http://sg.danny.cz/sg/sg3_utils.html"; -license=('GPL' 'custom:BSD') -depends=('glibc') -options=('!libtool') -source=(http://sg.danny.cz/sg/p/${pkgname}-${pkgver}.tgz) -md5sums=('261e39f7161337330ba6bd57999be801') - -build() { - cd "${srcdir}/${pkgname}-${pkgver}" - ./configure --prefix=/usr - make -} - -package() { - cd "${srcdir}/${pkgname}-${pkgver}" - make DESTDIR="${pkgdir}" install - install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}" - install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/" -} Copied: sg3_utils/repos/extra-i686/PKGBUILD (from rev 180166, sg3_utils/trunk/PKGBUILD) === --- extra-i686/PKGBUILD (rev 0) +++ extra-i686/PKGBUILD 2013-03-18 13:36:39 UTC (rev 180167) @@ -0,0 +1,27 @@ +#$Id$ +# Maintainer: Daniel Isenmann + +pkgname=sg3_utils +pkgver=1.35 +pkgrel=1 +pkgdesc="Generic SCSI utilities" +arch=(i686 x86_64) +url="http://sg.danny.cz/sg/sg3_utils.html"; +license=('GPL' 'custom:BSD') +depends=('glibc') +options=('!libtool') +source=(http://sg.danny.cz/sg/p/${pkgname}-${pkgver}.tgz) +md5sums=('55c32fb95a5b3907687b023f392fbd3c') + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + ./configure --prefix=/usr + make +} + +package() { + cd "${srcdir}/${pkgname}-${pkgver}" + make DESTDIR="${pkgdir}" install + install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}" + install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/" +} Deleted: extra-i686/stdint.patch === --- extra-i686/stdint.patch 2013-03-18 13:36:30 UTC (rev 180166) +++ extra-i686/stdint.patch 2013-03-18 13:36:39 UTC (rev 180167) @@ -1,22 +0,0 @@ include/sg_cmds_basic.h2008/06/26 23:27:40 1.1 -+++ include/sg_cmds_basic.h2008/06/26 23:28:06 -@@ -30,6 +30,8 @@ - * - */ - -+#include -+ - #ifdef __cplusplus - extern "C" { - #endif include/sg_cmds_extra.h2008/06/26 23:27:40 1.1 -+++ include/sg_cmds_extra.h2008/06/26 23:29:02 -@@ -30,6 +30,8 @@ - * - */ - -+#include -+ - #ifdef __cplusplus - extern "C" { - #endif Deleted: extra-x86_64/PKGBUILD === --- extra-x86_64/PKGBUILD 2013-03-18 13:36:30 UTC (rev 180166) +++ extra-x86_64/PKGBUILD 2013-03-18 13:36:39 UTC (rev 180167) @@ -1,27 +0,0 @@ -#$Id$ -# Maintainer: Daniel Isenmann - -pkgname=sg3_utils -pkgver=1.33 -pkgrel=1 -pkgdesc="Generic SCSI utilities" -arch=(i686 x86_64) -url="http://sg.danny.cz/sg/sg3_utils.html"; -license=('GPL' 'custom:BSD') -depends=('glibc') -options=('!libtool') -source=(http://sg.danny.cz/sg/p/${pkgname}-${pkgver}.tgz) -md5sums=('261e39f7161337330ba6bd57999be801') - -build() { - cd "${srcdir}/${pkgname}-${pkgver}" - ./configure --prefix=/usr - make -} - -package() { - cd "${srcdir}/${pkgname}-${pkgver}" - make DESTDIR="${pkgdir}" install - install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}" - install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/" -} Copied: sg3_utils/repos/extra-x86_64/PKGBUILD (from rev 180166, sg3_utils/trunk/PKGBUILD) === --- extra-x86_64/PKGBUILD (rev 0) +++ extra-x86_64/PKGBUILD 2013-03-18 13:36:39 UTC (rev 180167) @@ -0,0 +1,27 @@ +#$Id$ +# Maintainer: Daniel Isenmann + +pkgname=sg3_utils +pkgver=1.35 +pkgrel=1 +pkgdesc="Generic SCSI utilities" +arch=(i686 x86_64) +url="http://sg.danny.cz/sg/sg3_utils.html"; +license=('GPL' 'custom:BSD') +depends=('glibc') +options=('!libtool') +source=(http://sg.danny.cz/sg/p/${pkgname}-${pkgver}.tgz) +md5sums=('55c32fb95a5b3907687b023f392fbd3c') + +build() { + cd "${srcdir}/${pk
[arch-commits] Commit in sg3_utils/trunk (PKGBUILD stdint.patch)
Date: Monday, March 18, 2013 @ 14:36:30 Author: jgc Revision: 180166 upgpkg: sg3_utils 1.35-1 Modified: sg3_utils/trunk/PKGBUILD Deleted: sg3_utils/trunk/stdint.patch --+ PKGBUILD |4 ++-- stdint.patch | 22 -- 2 files changed, 2 insertions(+), 24 deletions(-) Modified: PKGBUILD === --- PKGBUILD2013-03-18 13:33:10 UTC (rev 180165) +++ PKGBUILD2013-03-18 13:36:30 UTC (rev 180166) @@ -2,7 +2,7 @@ # Maintainer: Daniel Isenmann pkgname=sg3_utils -pkgver=1.33 +pkgver=1.35 pkgrel=1 pkgdesc="Generic SCSI utilities" arch=(i686 x86_64) @@ -11,7 +11,7 @@ depends=('glibc') options=('!libtool') source=(http://sg.danny.cz/sg/p/${pkgname}-${pkgver}.tgz) -md5sums=('261e39f7161337330ba6bd57999be801') +md5sums=('55c32fb95a5b3907687b023f392fbd3c') build() { cd "${srcdir}/${pkgname}-${pkgver}" Deleted: stdint.patch === --- stdint.patch2013-03-18 13:33:10 UTC (rev 180165) +++ stdint.patch2013-03-18 13:36:30 UTC (rev 180166) @@ -1,22 +0,0 @@ include/sg_cmds_basic.h2008/06/26 23:27:40 1.1 -+++ include/sg_cmds_basic.h2008/06/26 23:28:06 -@@ -30,6 +30,8 @@ - * - */ - -+#include -+ - #ifdef __cplusplus - extern "C" { - #endif include/sg_cmds_extra.h2008/06/26 23:27:40 1.1 -+++ include/sg_cmds_extra.h2008/06/26 23:29:02 -@@ -30,6 +30,8 @@ - * - */ - -+#include -+ - #ifdef __cplusplus - extern "C" { - #endif
[arch-commits] Commit in ecl/repos/extra-x86_64 (PKGBUILD PKGBUILD)
Date: Monday, March 18, 2013 @ 14:33:10 Author: juergen Revision: 180165 archrelease: copy trunk to extra-x86_64 Added: ecl/repos/extra-x86_64/PKGBUILD (from rev 180164, ecl/trunk/PKGBUILD) Deleted: ecl/repos/extra-x86_64/PKGBUILD --+ PKGBUILD | 78 ++--- 1 file changed, 39 insertions(+), 39 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2013-03-18 13:29:43 UTC (rev 180164) +++ PKGBUILD2013-03-18 13:33:10 UTC (rev 180165) @@ -1,39 +0,0 @@ -# $Id$ -# Contributor: John Proctor -# Maintainer: juergen - -pkgname=ecl -pkgver=12.7.1 -pkgrel=1 -pkgdesc="Embeddable Common Lisp" -arch=('i686' 'x86_64') -url="http://sourceforge.net/projects/ecls/"; -license=('LGPL') -depends=('bash' 'gmp') -makedepends=('texinfo') -provides=('common-lisp' 'cl-asdf') -options=('!makeflags') -source=(http://downloads.sourceforge.net/project/ecls/ecls/12.7/ecl-12.7.1.tar.gz) -md5sums=('ce8dd2136fbbc74e44a1c41b32db1f3c') - -build() { - cd $srcdir/$pkgname-$pkgver - sed -i 's|-Wl,--rpath,~A|-Wl,--rpath,/usr/lib/ecl|' src/configure - ./configure \ ---build=$CHOST \ ---prefix=/usr \ ---with-tcp \ ---with-clos-streams \ ---enable-shared \ ---enable-boehm=included \ ---with-system-gmp \ ---without-x \ ---enable-threads \ ---without-clx - - make -} - -package() { - make -C $srcdir/$pkgname-$pkgver DESTDIR=$pkgdir install -} Copied: ecl/repos/extra-x86_64/PKGBUILD (from rev 180164, ecl/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2013-03-18 13:33:10 UTC (rev 180165) @@ -0,0 +1,39 @@ +# $Id$ +# Contributor: John Proctor +# Maintainer: juergen + +pkgname=ecl +pkgver=12.12.1 +pkgrel=1 +pkgdesc="Embeddable Common Lisp" +arch=('i686' 'x86_64') +url="http://sourceforge.net/projects/ecls/"; +license=('LGPL') +depends=('bash' 'gmp') +makedepends=('texinfo') +provides=('common-lisp' 'cl-asdf') +options=('!makeflags') +source=(http://downloads.sourceforge.net/project/ecls/ecls/12.12/ecl-${pkgver}.tgz) +md5sums=('014856bdfe265672f9d4b86a060a7aba') + +build() { + cd $srcdir/$pkgname-$pkgver + sed -i 's|-Wl,--rpath,~A|-Wl,--rpath,/usr/lib/ecl|' src/configure + ./configure \ +--build=$CHOST \ +--prefix=/usr \ +--with-tcp \ +--with-clos-streams \ +--enable-shared \ +--enable-boehm=included \ +--with-system-gmp \ +--without-x \ +--enable-threads \ +--without-clx + + make +} + +package() { + make -C $srcdir/$pkgname-$pkgver DESTDIR=$pkgdir install +}
[arch-commits] Commit in xulrunner/repos (16 files)
Date: Monday, March 18, 2013 @ 14:29:43 Author: jgc Revision: 180164 archrelease: copy trunk to extra-i686, extra-x86_64 Added: xulrunner/repos/extra-i686/PKGBUILD (from rev 180163, xulrunner/trunk/PKGBUILD) xulrunner/repos/extra-i686/mozconfig (from rev 180163, xulrunner/trunk/mozconfig) xulrunner/repos/extra-i686/mozilla-pkgconfig.patch (from rev 180163, xulrunner/trunk/mozilla-pkgconfig.patch) xulrunner/repos/extra-i686/shared-libs.patch (from rev 180163, xulrunner/trunk/shared-libs.patch) xulrunner/repos/extra-x86_64/PKGBUILD (from rev 180163, xulrunner/trunk/PKGBUILD) xulrunner/repos/extra-x86_64/mozconfig (from rev 180163, xulrunner/trunk/mozconfig) xulrunner/repos/extra-x86_64/mozilla-pkgconfig.patch (from rev 180163, xulrunner/trunk/mozilla-pkgconfig.patch) xulrunner/repos/extra-x86_64/shared-libs.patch (from rev 180163, xulrunner/trunk/shared-libs.patch) Deleted: xulrunner/repos/extra-i686/PKGBUILD xulrunner/repos/extra-i686/mozconfig xulrunner/repos/extra-i686/mozilla-pkgconfig.patch xulrunner/repos/extra-i686/shared-libs.patch xulrunner/repos/extra-x86_64/PKGBUILD xulrunner/repos/extra-x86_64/mozconfig xulrunner/repos/extra-x86_64/mozilla-pkgconfig.patch xulrunner/repos/extra-x86_64/shared-libs.patch --+ extra-i686/PKGBUILD | 118 - extra-i686/mozconfig | 58 extra-i686/mozilla-pkgconfig.patch | 80 +++--- extra-i686/shared-libs.patch | 24 +++--- extra-x86_64/PKGBUILD| 118 - extra-x86_64/mozconfig | 58 extra-x86_64/mozilla-pkgconfig.patch | 80 +++--- extra-x86_64/shared-libs.patch | 24 +++--- 8 files changed, 280 insertions(+), 280 deletions(-) Deleted: extra-i686/PKGBUILD === --- extra-i686/PKGBUILD 2013-03-18 13:29:32 UTC (rev 180163) +++ extra-i686/PKGBUILD 2013-03-18 13:29:43 UTC (rev 180164) @@ -1,59 +0,0 @@ -# $Id$ -# Maintainer: Jan de Groot -# Contributor: Alexander Baldeck -pkgname=xulrunner -pkgver=19.0 -pkgrel=1 -pkgdesc="Mozilla Runtime Environment" -arch=('i686' 'x86_64') -license=('MPL' 'GPL' 'LGPL') -depends=('gtk2' 'mozilla-common' 'nss>=3.14.1' 'libxt' 'libxrender' 'hunspell' 'startup-notification' 'mime-types' 'dbus-glib' 'alsa-lib' 'libevent' 'sqlite>=3.7.4' 'libvpx' 'python2') -makedepends=('zip' 'unzip' 'pkg-config' 'diffutils' 'yasm' 'mesa' 'autoconf2.13') -url="http://wiki.mozilla.org/XUL:Xul_Runner"; -source=(ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases/$pkgver/source/firefox-$pkgver.source.tar.bz2 -mozconfig -mozilla-pkgconfig.patch -shared-libs.patch) -options=('!emptydirs') -replaces=('xulrunner-oss') -md5sums=('3dc732b6ce177792b43324f4bc7164d8' - 'f26710bcf3e65699a0646c47155cb147' - '27271ce647a83906ef7a24605e840d61' - '52e52f840a49eb1d14be1c0065b03a93') - -build() { - cd "$srcdir/mozilla-release" - cp "$srcdir/mozconfig" .mozconfig - - #fix libdir/sdkdir - fedora - patch -Np1 -i ../mozilla-pkgconfig.patch - patch -Np1 -i ../shared-libs.patch - - # WebRTC build tries to execute "python" and expects Python 2 - # Workaround taken from chromium PKGBUILD - mkdir "$srcdir/python2-path" - ln -s /usr/bin/python2 "$srcdir/python2-path/python" - export PATH="$srcdir/python2-path:$PATH" - - export LDFLAGS="$LDFLAGS -Wl,-rpath,/usr/lib/xulrunner-$pkgver" - export PYTHON="/usr/bin/python2" - - make -j1 -f client.mk build MOZ_MAKE_FLAGS="$MAKEFLAGS" -} - -package() { - cd "$srcdir/mozilla-release" - make -j1 -f client.mk DESTDIR="$pkgdir" install - - rm -rf "$pkgdir"/usr/lib/xulrunner-$pkgver/{dictionaries,hyphenation} - ln -sf /usr/share/hunspell "$pkgdir/usr/lib/xulrunner-$pkgver/dictionaries" - ln -sf /usr/share/hyphen "$pkgdir/usr/lib/xulrunner-$pkgver/hyphenation" - - # add xulrunner library path to ld.so.conf - install -d $pkgdir/etc/ld.so.conf.d - echo "/usr/lib/xulrunner-$pkgver" > $pkgdir/etc/ld.so.conf.d/xulrunner.conf - - chmod +x "${pkgdir}/usr/lib/xulrunner-devel-$pkgver/sdk/bin/xpt.py" - sed -i 's|!/usr/bin/env python$|!/usr/bin/env python2|' \ - "$pkgdir"/usr/lib/xulrunner-devel-$pkgver/sdk/bin/{xpt,header,typelib,xpidl}.py -} Copied: xulrunner/repos/extra-i686/PKGBUILD (from rev 180163, xulrunner/trunk/PKGBUILD) === --- extra-i686/PKGBUILD (rev 0) +++ extra-i686/PKGBUILD 2013-03-18 13:29:43 UTC (rev 180164) @@ -0,0 +1,59 @@ +# $Id$ +# Maintainer: Jan de Groot +# Contributor: Alexander Baldeck +pkgname=xulrunner +pkgver=19.0.2 +pkgrel=1 +pkgdesc="Mozilla Runtime Environment" +arch=('i686' 'x86_64') +license=('MPL' 'GPL' 'LGPL') +depends=('gtk2' 'mozilla-common' 'nss>=3.14.1' 'libxt' 'libxrend
[arch-commits] Commit in xulrunner/trunk (PKGBUILD)
Date: Monday, March 18, 2013 @ 14:29:32 Author: jgc Revision: 180163 Update to 19.0.2 using xulrunner sources. Now Xulrunner gets regular releases, there is no reason to use firefox sources anymore upgpkg: xulrunner 19.0.2-1 Modified: xulrunner/trunk/PKGBUILD --+ PKGBUILD |6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) Modified: PKGBUILD === --- PKGBUILD2013-03-18 13:28:34 UTC (rev 180162) +++ PKGBUILD2013-03-18 13:29:32 UTC (rev 180163) @@ -2,7 +2,7 @@ # Maintainer: Jan de Groot # Contributor: Alexander Baldeck pkgname=xulrunner -pkgver=19.0 +pkgver=19.0.2 pkgrel=1 pkgdesc="Mozilla Runtime Environment" arch=('i686' 'x86_64') @@ -10,13 +10,13 @@ depends=('gtk2' 'mozilla-common' 'nss>=3.14.1' 'libxt' 'libxrender' 'hunspell' 'startup-notification' 'mime-types' 'dbus-glib' 'alsa-lib' 'libevent' 'sqlite>=3.7.4' 'libvpx' 'python2') makedepends=('zip' 'unzip' 'pkg-config' 'diffutils' 'yasm' 'mesa' 'autoconf2.13') url="http://wiki.mozilla.org/XUL:Xul_Runner"; -source=(ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases/$pkgver/source/firefox-$pkgver.source.tar.bz2 +source=(ftp://ftp.mozilla.org/pub/mozilla.org/xulrunner/releases/$pkgver/source/xulrunner-$pkgver.source.tar.bz2 mozconfig mozilla-pkgconfig.patch shared-libs.patch) options=('!emptydirs') replaces=('xulrunner-oss') -md5sums=('3dc732b6ce177792b43324f4bc7164d8' +md5sums=('956f60b12577bf7a42d60ba8e1a73794' 'f26710bcf3e65699a0646c47155cb147' '27271ce647a83906ef7a24605e840d61' '52e52f840a49eb1d14be1c0065b03a93')
[arch-commits] Commit in ecl/repos/extra-i686 (PKGBUILD PKGBUILD)
Date: Monday, March 18, 2013 @ 14:28:34 Author: juergen Revision: 180162 archrelease: copy trunk to extra-i686 Added: ecl/repos/extra-i686/PKGBUILD (from rev 180161, ecl/trunk/PKGBUILD) Deleted: ecl/repos/extra-i686/PKGBUILD --+ PKGBUILD | 78 ++--- 1 file changed, 39 insertions(+), 39 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2013-03-18 13:28:25 UTC (rev 180161) +++ PKGBUILD2013-03-18 13:28:34 UTC (rev 180162) @@ -1,39 +0,0 @@ -# $Id$ -# Contributor: John Proctor -# Maintainer: juergen - -pkgname=ecl -pkgver=12.7.1 -pkgrel=1 -pkgdesc="Embeddable Common Lisp" -arch=('i686' 'x86_64') -url="http://sourceforge.net/projects/ecls/"; -license=('LGPL') -depends=('bash' 'gmp') -makedepends=('texinfo') -provides=('common-lisp' 'cl-asdf') -options=('!makeflags') -source=(http://downloads.sourceforge.net/project/ecls/ecls/12.7/ecl-12.7.1.tar.gz) -md5sums=('ce8dd2136fbbc74e44a1c41b32db1f3c') - -build() { - cd $srcdir/$pkgname-$pkgver - sed -i 's|-Wl,--rpath,~A|-Wl,--rpath,/usr/lib/ecl|' src/configure - ./configure \ ---build=$CHOST \ ---prefix=/usr \ ---with-tcp \ ---with-clos-streams \ ---enable-shared \ ---enable-boehm=included \ ---with-system-gmp \ ---without-x \ ---enable-threads \ ---without-clx - - make -} - -package() { - make -C $srcdir/$pkgname-$pkgver DESTDIR=$pkgdir install -} Copied: ecl/repos/extra-i686/PKGBUILD (from rev 180161, ecl/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2013-03-18 13:28:34 UTC (rev 180162) @@ -0,0 +1,39 @@ +# $Id$ +# Contributor: John Proctor +# Maintainer: juergen + +pkgname=ecl +pkgver=12.12.1 +pkgrel=1 +pkgdesc="Embeddable Common Lisp" +arch=('i686' 'x86_64') +url="http://sourceforge.net/projects/ecls/"; +license=('LGPL') +depends=('bash' 'gmp') +makedepends=('texinfo') +provides=('common-lisp' 'cl-asdf') +options=('!makeflags') +source=(http://downloads.sourceforge.net/project/ecls/ecls/12.12/ecl-${pkgver}.tgz) +md5sums=('014856bdfe265672f9d4b86a060a7aba') + +build() { + cd $srcdir/$pkgname-$pkgver + sed -i 's|-Wl,--rpath,~A|-Wl,--rpath,/usr/lib/ecl|' src/configure + ./configure \ +--build=$CHOST \ +--prefix=/usr \ +--with-tcp \ +--with-clos-streams \ +--enable-shared \ +--enable-boehm=included \ +--with-system-gmp \ +--without-x \ +--enable-threads \ +--without-clx + + make +} + +package() { + make -C $srcdir/$pkgname-$pkgver DESTDIR=$pkgdir install +}
[arch-commits] Commit in ecl/trunk (PKGBUILD)
Date: Monday, March 18, 2013 @ 14:28:25 Author: juergen Revision: 180161 upgpkg: ecl 12.12.1-1 Modified: ecl/trunk/PKGBUILD --+ PKGBUILD |6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) Modified: PKGBUILD === --- PKGBUILD2013-03-18 13:15:20 UTC (rev 180160) +++ PKGBUILD2013-03-18 13:28:25 UTC (rev 180161) @@ -3,7 +3,7 @@ # Maintainer: juergen pkgname=ecl -pkgver=12.7.1 +pkgver=12.12.1 pkgrel=1 pkgdesc="Embeddable Common Lisp" arch=('i686' 'x86_64') @@ -13,8 +13,8 @@ makedepends=('texinfo') provides=('common-lisp' 'cl-asdf') options=('!makeflags') -source=(http://downloads.sourceforge.net/project/ecls/ecls/12.7/ecl-12.7.1.tar.gz) -md5sums=('ce8dd2136fbbc74e44a1c41b32db1f3c') +source=(http://downloads.sourceforge.net/project/ecls/ecls/12.12/ecl-${pkgver}.tgz) +md5sums=('014856bdfe265672f9d4b86a060a7aba') build() { cd $srcdir/$pkgname-$pkgver
[arch-commits] Commit in samba/repos (60 files)
Date: Monday, March 18, 2013 @ 14:15:20 Author: tpowa Revision: 180160 archrelease: copy trunk to extra-i686, extra-x86_64 Added: samba/repos/extra-i686/PKGBUILD (from rev 180159, samba/trunk/PKGBUILD) samba/repos/extra-i686/nmbd.service (from rev 180159, samba/trunk/nmbd.service) samba/repos/extra-i686/samba (from rev 180159, samba/trunk/samba) samba/repos/extra-i686/samba.conf (from rev 180159, samba/trunk/samba.conf) samba/repos/extra-i686/samba.conf.d (from rev 180159, samba/trunk/samba.conf.d) samba/repos/extra-i686/samba.install (from rev 180159, samba/trunk/samba.install) samba/repos/extra-i686/samba.logrotate (from rev 180159, samba/trunk/samba.logrotate) samba/repos/extra-i686/samba.pam (from rev 180159, samba/trunk/samba.pam) samba/repos/extra-i686/smbd.service (from rev 180159, samba/trunk/smbd.service) samba/repos/extra-i686/smbd.socket (from rev 180159, samba/trunk/smbd.socket) samba/repos/extra-i686/smbd@.service (from rev 180159, samba/trunk/smbd@.service) samba/repos/extra-i686/swat.socket (from rev 180159, samba/trunk/swat.socket) samba/repos/extra-i686/swat.xinetd (from rev 180159, samba/trunk/swat.xinetd) samba/repos/extra-i686/swat@.service (from rev 180159, samba/trunk/swat@.service) samba/repos/extra-i686/winbindd.service (from rev 180159, samba/trunk/winbindd.service) samba/repos/extra-x86_64/PKGBUILD (from rev 180159, samba/trunk/PKGBUILD) samba/repos/extra-x86_64/nmbd.service (from rev 180159, samba/trunk/nmbd.service) samba/repos/extra-x86_64/samba (from rev 180159, samba/trunk/samba) samba/repos/extra-x86_64/samba.conf (from rev 180159, samba/trunk/samba.conf) samba/repos/extra-x86_64/samba.conf.d (from rev 180159, samba/trunk/samba.conf.d) samba/repos/extra-x86_64/samba.install (from rev 180159, samba/trunk/samba.install) samba/repos/extra-x86_64/samba.logrotate (from rev 180159, samba/trunk/samba.logrotate) samba/repos/extra-x86_64/samba.pam (from rev 180159, samba/trunk/samba.pam) samba/repos/extra-x86_64/smbd.service (from rev 180159, samba/trunk/smbd.service) samba/repos/extra-x86_64/smbd.socket (from rev 180159, samba/trunk/smbd.socket) samba/repos/extra-x86_64/smbd@.service (from rev 180159, samba/trunk/smbd@.service) samba/repos/extra-x86_64/swat.socket (from rev 180159, samba/trunk/swat.socket) samba/repos/extra-x86_64/swat.xinetd (from rev 180159, samba/trunk/swat.xinetd) samba/repos/extra-x86_64/swat@.service (from rev 180159, samba/trunk/swat@.service) samba/repos/extra-x86_64/winbindd.service (from rev 180159, samba/trunk/winbindd.service) Deleted: samba/repos/extra-i686/PKGBUILD samba/repos/extra-i686/nmbd.service samba/repos/extra-i686/samba samba/repos/extra-i686/samba.conf samba/repos/extra-i686/samba.conf.d samba/repos/extra-i686/samba.install samba/repos/extra-i686/samba.logrotate samba/repos/extra-i686/samba.pam samba/repos/extra-i686/smbd.service samba/repos/extra-i686/smbd.socket samba/repos/extra-i686/smbd@.service samba/repos/extra-i686/swat.socket samba/repos/extra-i686/swat.xinetd samba/repos/extra-i686/swat@.service samba/repos/extra-i686/winbindd.service samba/repos/extra-x86_64/PKGBUILD samba/repos/extra-x86_64/nmbd.service samba/repos/extra-x86_64/samba samba/repos/extra-x86_64/samba.conf samba/repos/extra-x86_64/samba.conf.d samba/repos/extra-x86_64/samba.install samba/repos/extra-x86_64/samba.logrotate samba/repos/extra-x86_64/samba.pam samba/repos/extra-x86_64/smbd.service samba/repos/extra-x86_64/smbd.socket samba/repos/extra-x86_64/smbd@.service samba/repos/extra-x86_64/swat.socket samba/repos/extra-x86_64/swat.xinetd samba/repos/extra-x86_64/swat@.service samba/repos/extra-x86_64/winbindd.service ---+ extra-i686/PKGBUILD | 366 extra-i686/nmbd.service | 24 +- extra-i686/samba | 108 +-- extra-i686/samba.conf |4 extra-i686/samba.conf.d | 14 - extra-i686/samba.install | 14 - extra-i686/samba.logrotate| 18 - extra-i686/samba.pam |6 extra-i686/smbd.service | 24 +- extra-i686/smbd.socket| 18 - extra-i686/smbd@.service | 18 - extra-i686/swat.socket| 18 - extra-i686/swat.xinetd| 20 +- extra-i686/swat@.service | 14 - extra-i686/winbindd.service | 24 +- extra-x86_64/PKGBUILD | 366 extra-x86_64/nmbd.service | 24 +- extra-x86_64/samba| 108 +-- extra-x86_64/samba.conf |4 extra-x86_64/samba.conf.d | 14 - extra-x86_64/samba.install| 14 - extra-x86_64/samba.logrotate | 18 - extra-x86_64/samba.pam|6 extra-x86_64/smbd.service | 24 +- extra-x86_64/smbd.socket |
[arch-commits] Commit in samba/trunk (PKGBUILD samba.install)
Date: Monday, March 18, 2013 @ 14:14:38 Author: tpowa Revision: 180159 upgpkg: samba 3.6.13-1 bump to latest version, fix systemd tempfile in .install Modified: samba/trunk/PKGBUILD samba/trunk/samba.install ---+ PKGBUILD |8 samba.install |2 +- 2 files changed, 5 insertions(+), 5 deletions(-) Modified: PKGBUILD === --- PKGBUILD2013-03-18 12:05:08 UTC (rev 180158) +++ PKGBUILD2013-03-18 13:14:38 UTC (rev 180159) @@ -3,12 +3,12 @@ # Contributor: judd pkgbase=samba pkgname=('libwbclient' 'smbclient' 'samba') -pkgver=3.6.12 +pkgver=3.6.13 # We use the 'A' to fake out pacman's version comparators. Samba chooses # to append 'a','b',etc to their subsequent releases, which pamcan # misconstrues as alpha, beta, etc. Bad samba! -_realver=3.6.12 -pkgrel=2 +_realver=3.6.13 +pkgrel=1 arch=(i686 x86_64) url="http://www.samba.org"; license=('GPL3') @@ -169,7 +169,7 @@ mkdir -p ${pkgdir}/usr/lib/pkgconfig install -m644 pkgconfig/smbsharemodes.pc ${pkgdir}/usr/lib/pkgconfig/ } -md5sums=('430fd21a1acd26964d3ccf366df8709a' +md5sums=('b9fe8413cbb6fa4b970a159968db2fb4' '5697da77590ec092cc8a883bae06093c' 'a4bbfa39fee95bba2e7ad6b535fae7e6' '96f82c38f3f540b53f3e5144900acf17' Modified: samba.install === --- samba.install 2013-03-18 12:05:08 UTC (rev 180158) +++ samba.install 2013-03-18 13:14:38 UTC (rev 180159) @@ -1,7 +1,7 @@ #!/bin/sh post_install() { - systemd-tmpfiles --create /usr/lib/tmpfiles.d/samba.conf + systemd-tmpfiles --create samba.conf } # vim:set ts=2 sw=2 et:
[arch-commits] Commit in rsyslog/repos (18 files)
Date: Monday, March 18, 2013 @ 13:39:54 Author: spupykin Revision: 86514 archrelease: copy trunk to community-testing-i686, community-testing-x86_64 Added: rsyslog/repos/community-testing-i686/PKGBUILD (from rev 86513, rsyslog/trunk/PKGBUILD) rsyslog/repos/community-testing-i686/rsyslog (from rev 86513, rsyslog/trunk/rsyslog) rsyslog/repos/community-testing-i686/rsyslog.conf (from rev 86513, rsyslog/trunk/rsyslog.conf) rsyslog/repos/community-testing-i686/rsyslog.conf.d (from rev 86513, rsyslog/trunk/rsyslog.conf.d) rsyslog/repos/community-testing-i686/rsyslog.logrotate (from rev 86513, rsyslog/trunk/rsyslog.logrotate) rsyslog/repos/community-testing-x86_64/PKGBUILD (from rev 86513, rsyslog/trunk/PKGBUILD) rsyslog/repos/community-testing-x86_64/rsyslog (from rev 86513, rsyslog/trunk/rsyslog) rsyslog/repos/community-testing-x86_64/rsyslog.conf (from rev 86513, rsyslog/trunk/rsyslog.conf) rsyslog/repos/community-testing-x86_64/rsyslog.conf.d (from rev 86513, rsyslog/trunk/rsyslog.conf.d) rsyslog/repos/community-testing-x86_64/rsyslog.logrotate (from rev 86513, rsyslog/trunk/rsyslog.logrotate) Deleted: rsyslog/repos/community-testing-i686/PKGBUILD rsyslog/repos/community-testing-i686/rsyslog rsyslog/repos/community-testing-i686/rsyslog.conf.d rsyslog/repos/community-testing-i686/rsyslog.logrotate rsyslog/repos/community-testing-x86_64/PKGBUILD rsyslog/repos/community-testing-x86_64/rsyslog rsyslog/repos/community-testing-x86_64/rsyslog.conf.d rsyslog/repos/community-testing-x86_64/rsyslog.logrotate + community-testing-i686/PKGBUILD| 117 +-- community-testing-i686/rsyslog | 78 +- community-testing-i686/rsyslog.conf| 44 ++ community-testing-i686/rsyslog.conf.d | 12 +- community-testing-i686/rsyslog.logrotate | 14 +-- community-testing-x86_64/PKGBUILD | 117 +-- community-testing-x86_64/rsyslog | 78 +- community-testing-x86_64/rsyslog.conf | 44 ++ community-testing-x86_64/rsyslog.conf.d| 12 +- community-testing-x86_64/rsyslog.logrotate | 14 +-- 10 files changed, 312 insertions(+), 218 deletions(-) Deleted: community-testing-i686/PKGBUILD === --- community-testing-i686/PKGBUILD 2013-03-18 12:39:13 UTC (rev 86513) +++ community-testing-i686/PKGBUILD 2013-03-18 12:39:54 UTC (rev 86514) @@ -1,57 +0,0 @@ -# $Id$ -# Maintainer: Sergej Pupykin - -pkgname=rsyslog -pkgver=7.2.6 -pkgrel=5 -pkgdesc="An enhanced multi-threaded syslogd with a focus on security and reliability" -url="http://www.rsyslog.com/"; -arch=('i686' 'x86_64') -license=('GPL3') -depends=('zlib' 'libestr' 'libee' 'json-c') -makedepends=('postgresql-libs>=8.4.1' 'libmariadbclient' 'net-snmp' 'gnutls') -optdepends=('postgresql-libs: PostgreSQL Database Support' - 'libmariadbclient: MySQL Database Support' - 'net-snmp' - 'gnutls') -backup=('etc/rsyslog.conf' - 'etc/logrotate.d/rsyslog' - 'etc/conf.d/rsyslog') -options=('strip' 'zipman' '!libtool') -source=("http://www.rsyslog.com/files/download/rsyslog/rsyslog-$pkgver.tar.gz"; - 'rsyslog' - 'rsyslog.logrotate' - 'rsyslog.conf.d') -md5sums=('2b2bfbc3f87fe85add651dc07a6f21ea' - 'a18bbcbb6ebdaa13a6ec6d9f3d9eb2da' - '8065db4bef3061a4f000ba58779f6829' - '18565f38a4445136446a31a3c95ffc3e') - -build() { - cd ${srcdir}/${pkgname}-${pkgver} - ./configure --prefix=/usr \ - --enable-mysql \ - --enable-pgsql \ - --enable-mail \ - --enable-imfile \ - --enable-snmp \ - --enable-gnutls \ - --enable-inet \ - --with-systemdsystemunitdir=/usr/lib/systemd/system - echo "rsyslogd_LDADD += \$(LIBESTR_LIBS) -lm" >>tools/Makefile - make -} -package() { - cd ${srcdir}/${pkgname}-${pkgver} - make install DESTDIR=${pkgdir} - # Install Daemons and Configuration Files - install -D -m755 ${srcdir}/${pkgname} ${pkgdir}/etc/rc.d/${pkgname}d - install -D -m644 doc/${pkgname}-example.conf ${pkgdir}/usr/share/doc/$pkgname/${pkgname}.conf.example - install -D -m644 $srcdir/${pkgname}.logrotate ${pkgdir}/etc/logrotate.d/${pkgname} - install -D -m644 ${srcdir}/${pkgname}.conf.d ${pkgdir}/etc/conf.d/${pkgname} - - # fix location of systemctl and remove start precondition - sed -i "$pkgdir/usr/lib/systemd/system/rsyslog.service" \ --e 's@/bin/systemctl@/usr&@' \ --e '/^ExecStartPre/d' -} Copied: rsyslog/repos/community-testing-i686/PKGBUILD (from rev 86513, rsyslog/trunk/PKGBUILD) === --- community-testing-i686/PKGBUILD (rev 0) +++ community-testing-i686/PKGB
[arch-commits] Commit in rsyslog/trunk (PKGBUILD rsyslog.conf)
Date: Monday, March 18, 2013 @ 13:39:13 Author: spupykin Revision: 86513 upgpkg: rsyslog 7.2.6-6 upd Added: rsyslog/trunk/rsyslog.conf Modified: rsyslog/trunk/PKGBUILD --+ PKGBUILD |9 ++--- rsyslog.conf | 44 2 files changed, 50 insertions(+), 3 deletions(-) Modified: PKGBUILD === --- PKGBUILD2013-03-18 12:25:13 UTC (rev 86512) +++ PKGBUILD2013-03-18 12:39:13 UTC (rev 86513) @@ -3,7 +3,7 @@ pkgname=rsyslog pkgver=7.2.6 -pkgrel=5 +pkgrel=6 pkgdesc="An enhanced multi-threaded syslogd with a focus on security and reliability" url="http://www.rsyslog.com/"; arch=('i686' 'x86_64') @@ -21,11 +21,13 @@ source=("http://www.rsyslog.com/files/download/rsyslog/rsyslog-$pkgver.tar.gz"; 'rsyslog' 'rsyslog.logrotate' - 'rsyslog.conf.d') + 'rsyslog.conf.d' + 'rsyslog.conf') md5sums=('2b2bfbc3f87fe85add651dc07a6f21ea' 'a18bbcbb6ebdaa13a6ec6d9f3d9eb2da' '8065db4bef3061a4f000ba58779f6829' - '18565f38a4445136446a31a3c95ffc3e') + '18565f38a4445136446a31a3c95ffc3e' + 'd61dd424e660eb16401121eed20d98bc') build() { cd ${srcdir}/${pkgname}-${pkgver} @@ -47,6 +49,7 @@ # Install Daemons and Configuration Files install -D -m755 ${srcdir}/${pkgname} ${pkgdir}/etc/rc.d/${pkgname}d install -D -m644 doc/${pkgname}-example.conf ${pkgdir}/usr/share/doc/$pkgname/${pkgname}.conf.example + install -D -m644 $srcdir/${pkgname}.conf ${pkgdir}/etc/${pkgname}.conf install -D -m644 $srcdir/${pkgname}.logrotate ${pkgdir}/etc/logrotate.d/${pkgname} install -D -m644 ${srcdir}/${pkgname}.conf.d ${pkgdir}/etc/conf.d/${pkgname} Added: rsyslog.conf === --- rsyslog.conf(rev 0) +++ rsyslog.conf2013-03-18 12:39:13 UTC (rev 86513) @@ -0,0 +1,44 @@ +# Minimal config + +$ModLoad imuxsock # provides support for local system logging +$ModLoad imklog # provides kernel logging support +$ActionFileDefaultTemplate RSYSLOG_TraditionalFileFormat +$FileOwner root +$FileGroup root +$FileCreateMode 0640 +$DirCreateMode 0755 +$Umask 0022 +$WorkDirectory /var/spool/rsyslog +$IncludeConfig /etc/rsyslog.d/*.conf + +auth,authpriv.*/var/log/auth.log +*.*;auth,authpriv.none -/var/log/syslog +#cron.*/var/log/cron.log +daemon.* -/var/log/daemon.log +kern.* -/var/log/kern.log +lpr.* -/var/log/lpr.log +mail.* -/var/log/mail.log +user.* -/var/log/user.log + +mail.info -/var/log/mail.info +mail.warn -/var/log/mail.warn +mail.err /var/log/mail.err + +news.crit /var/log/news/news.crit +news.err /var/log/news/news.err +news.notice-/var/log/news/news.notice + +*.=debug;\ + auth,authpriv.none;\ + news.none;mail.none -/var/log/debug +*.=info;*.=notice;*.=warn;\ + auth,authpriv.none;\ + cron,daemon.none;\ + mail,news.none -/var/log/messages + +*.emerg:omusrmsg:* + +daemon.*;mail.*;\ + news.err;\ + *.=debug;*.=info;\ + *.=notice;*.=warn |/dev/xconsole
[arch-commits] Commit in perl-html-tree/repos/community-any (PKGBUILD PKGBUILD)
Date: Monday, March 18, 2013 @ 13:25:13 Author: spupykin Revision: 86512 archrelease: copy trunk to community-any Added: perl-html-tree/repos/community-any/PKGBUILD (from rev 86511, perl-html-tree/trunk/PKGBUILD) Deleted: perl-html-tree/repos/community-any/PKGBUILD --+ PKGBUILD | 57 ++--- 1 file changed, 30 insertions(+), 27 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2013-03-18 12:24:53 UTC (rev 86511) +++ PKGBUILD2013-03-18 12:25:13 UTC (rev 86512) @@ -1,27 +0,0 @@ -# $Id$ -# Maintainer: Sergej Pupykin -# Maintainer: Allan McRae -# Contributor: François Charette - -pkgname=perl-html-tree -pkgver=5.03 -pkgrel=1 -pkgdesc="Make parse trees out of HTML source" -arch=('any') -url="http://search.cpan.org/dist/HTML-Tree"; -license=('GPL' 'PerlArtistic') -depends=('perl>=5.10.0' 'perl-html-tagset>=3.02' 'perl-html-parser>=3.46' -'perl-html-formattext') -makedepends=('perl-test-fatal') -options=('!emptydirs') -source=(http://search.cpan.org/CPAN/authors/id/C/CJ/CJM/HTML-Tree-$pkgver.tar.gz) -md5sums=('d9271d60b872ed6fbe68b2d0fe8c450e') - -build() { - cd $srcdir/HTML-Tree-$pkgver - perl Build.PL installdirs=vendor destdir="$pkgdir/" - perl Build - perl Build install - find $pkgdir -name '.packlist' -delete - find $pkgdir -name '*.pod' -delete -} Copied: perl-html-tree/repos/community-any/PKGBUILD (from rev 86511, perl-html-tree/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2013-03-18 12:25:13 UTC (rev 86512) @@ -0,0 +1,30 @@ +# $Id$ +# Maintainer: Sergej Pupykin +# Maintainer: Allan McRae +# Contributor: François Charette + +pkgname=perl-html-tree +pkgver=5.03 +pkgrel=2 +pkgdesc="Make parse trees out of HTML source" +arch=('any') +url="http://search.cpan.org/dist/HTML-Tree"; +license=('GPL' 'PerlArtistic') +depends=('perl>=5.10.0' 'perl-html-tagset>=3.02' 'perl-html-parser>=3.46') +makedepends=('perl-test-fatal') +options=('!emptydirs') +source=(http://search.cpan.org/CPAN/authors/id/C/CJ/CJM/HTML-Tree-$pkgver.tar.gz) +md5sums=('d9271d60b872ed6fbe68b2d0fe8c450e') + +build() { + cd $srcdir/HTML-Tree-$pkgver + perl Build.PL installdirs=vendor destdir="$pkgdir/" + perl Build +} + +package() { + cd $srcdir/HTML-Tree-$pkgver + perl Build install + find $pkgdir -name '.packlist' -delete + find $pkgdir -name '*.pod' -delete +}
[arch-commits] Commit in perl-html-tree/trunk (PKGBUILD)
Date: Monday, March 18, 2013 @ 13:24:53 Author: spupykin Revision: 86511 upgpkg: perl-html-tree 5.03-2 upd Modified: perl-html-tree/trunk/PKGBUILD --+ PKGBUILD |5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) Modified: PKGBUILD === --- PKGBUILD2013-03-18 12:24:50 UTC (rev 86510) +++ PKGBUILD2013-03-18 12:24:53 UTC (rev 86511) @@ -5,13 +5,12 @@ pkgname=perl-html-tree pkgver=5.03 -pkgrel=1 +pkgrel=2 pkgdesc="Make parse trees out of HTML source" arch=('any') url="http://search.cpan.org/dist/HTML-Tree"; license=('GPL' 'PerlArtistic') -depends=('perl>=5.10.0' 'perl-html-tagset>=3.02' 'perl-html-parser>=3.46' -'perl-html-formattext') +depends=('perl>=5.10.0' 'perl-html-tagset>=3.02' 'perl-html-parser>=3.46') makedepends=('perl-test-fatal') options=('!emptydirs') source=(http://search.cpan.org/CPAN/authors/id/C/CJ/CJM/HTML-Tree-$pkgver.tar.gz)
[arch-commits] Commit in perl-html-formattext/repos/community-any (PKGBUILD PKGBUILD)
Date: Monday, March 18, 2013 @ 13:24:50 Author: spupykin Revision: 86510 archrelease: copy trunk to community-any Added: perl-html-formattext/repos/community-any/PKGBUILD (from rev 86509, perl-html-formattext/trunk/PKGBUILD) Deleted: perl-html-formattext/repos/community-any/PKGBUILD --+ PKGBUILD | 52 ++-- 1 file changed, 26 insertions(+), 26 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2013-03-18 12:24:36 UTC (rev 86509) +++ PKGBUILD2013-03-18 12:24:50 UTC (rev 86510) @@ -1,26 +0,0 @@ -# $Id$ -# Maintainer: Sergej Pupykin -# Maintainer: Andre Wayand - -pkgname=perl-html-formattext -pkgver=2.10 -pkgrel=1 -pkgdesc="Format HTML as plaintext" -arch=('any') -url="http://search.cpan.org/dist/HTML-Format/"; -license=('GPL' 'PerlArtistic') -depends=('perl>=5.10.0' 'perl-file-slurp' 'perl-font-afm') -options=(!emptydirs) -source=("http://search.cpan.org/CPAN/authors/id/N/NI/NIGELM/HTML-Format-$pkgver.tar.gz";) -md5sums=('34831ec506eaa8a7ad5da698224cf58d') - -build() { - cd "$srcdir/HTML-Format-$pkgver" - perl Build.PL installdirs=vendor destdir="$pkgdir/" - perl Build -} - -package() { - cd "$srcdir/HTML-Format-$pkgver" - perl Build install -} Copied: perl-html-formattext/repos/community-any/PKGBUILD (from rev 86509, perl-html-formattext/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2013-03-18 12:24:50 UTC (rev 86510) @@ -0,0 +1,26 @@ +# $Id$ +# Maintainer: Sergej Pupykin +# Maintainer: Andre Wayand + +pkgname=perl-html-formattext +pkgver=2.10 +pkgrel=2 +pkgdesc="Format HTML as plaintext" +arch=('any') +url="http://search.cpan.org/dist/HTML-Format/"; +license=('GPL' 'PerlArtistic') +depends=('perl>=5.10.0' 'perl-file-slurp' 'perl-font-afm' 'perl-html-tree') +options=(!emptydirs) +source=("http://search.cpan.org/CPAN/authors/id/N/NI/NIGELM/HTML-Format-$pkgver.tar.gz";) +md5sums=('34831ec506eaa8a7ad5da698224cf58d') + +build() { + cd "$srcdir/HTML-Format-$pkgver" + perl Build.PL installdirs=vendor destdir="$pkgdir/" + perl Build +} + +package() { + cd "$srcdir/HTML-Format-$pkgver" + perl Build install +}
[arch-commits] Commit in perl-html-formattext/trunk (PKGBUILD)
Date: Monday, March 18, 2013 @ 13:24:36 Author: spupykin Revision: 86509 upgpkg: perl-html-formattext 2.10-2 upd Modified: perl-html-formattext/trunk/PKGBUILD --+ PKGBUILD |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) Modified: PKGBUILD === --- PKGBUILD2013-03-18 12:20:58 UTC (rev 86508) +++ PKGBUILD2013-03-18 12:24:36 UTC (rev 86509) @@ -4,12 +4,12 @@ pkgname=perl-html-formattext pkgver=2.10 -pkgrel=1 +pkgrel=2 pkgdesc="Format HTML as plaintext" arch=('any') url="http://search.cpan.org/dist/HTML-Format/"; license=('GPL' 'PerlArtistic') -depends=('perl>=5.10.0' 'perl-file-slurp' 'perl-font-afm') +depends=('perl>=5.10.0' 'perl-file-slurp' 'perl-font-afm' 'perl-html-tree') options=(!emptydirs) source=("http://search.cpan.org/CPAN/authors/id/N/NI/NIGELM/HTML-Format-$pkgver.tar.gz";) md5sums=('34831ec506eaa8a7ad5da698224cf58d')
[arch-commits] Commit in darkstat/repos (20 files)
Date: Monday, March 18, 2013 @ 13:20:58 Author: spupykin Revision: 86508 archrelease: copy trunk to community-i686, community-x86_64 Added: darkstat/repos/community-i686/PKGBUILD (from rev 86507, darkstat/trunk/PKGBUILD) darkstat/repos/community-i686/darkstat (from rev 86507, darkstat/trunk/darkstat) darkstat/repos/community-i686/darkstat.conf (from rev 86507, darkstat/trunk/darkstat.conf) darkstat/repos/community-i686/darkstat.install (from rev 86507, darkstat/trunk/darkstat.install) darkstat/repos/community-i686/darkstat.service (from rev 86507, darkstat/trunk/darkstat.service) darkstat/repos/community-x86_64/PKGBUILD (from rev 86507, darkstat/trunk/PKGBUILD) darkstat/repos/community-x86_64/darkstat (from rev 86507, darkstat/trunk/darkstat) darkstat/repos/community-x86_64/darkstat.conf (from rev 86507, darkstat/trunk/darkstat.conf) darkstat/repos/community-x86_64/darkstat.install (from rev 86507, darkstat/trunk/darkstat.install) darkstat/repos/community-x86_64/darkstat.service (from rev 86507, darkstat/trunk/darkstat.service) Deleted: darkstat/repos/community-i686/PKGBUILD darkstat/repos/community-i686/darkstat darkstat/repos/community-i686/darkstat.conf darkstat/repos/community-i686/darkstat.install darkstat/repos/community-i686/darkstat.service darkstat/repos/community-x86_64/PKGBUILD darkstat/repos/community-x86_64/darkstat darkstat/repos/community-x86_64/darkstat.conf darkstat/repos/community-x86_64/darkstat.install darkstat/repos/community-x86_64/darkstat.service ---+ community-i686/PKGBUILD | 74 community-i686/darkstat | 166 ++-- community-i686/darkstat.conf |4 community-i686/darkstat.install | 40 community-i686/darkstat.service | 33 +++ community-x86_64/PKGBUILD | 74 community-x86_64/darkstat | 166 ++-- community-x86_64/darkstat.conf|4 community-x86_64/darkstat.install | 40 community-x86_64/darkstat.service | 33 +++ 10 files changed, 318 insertions(+), 316 deletions(-) Deleted: community-i686/PKGBUILD === --- community-i686/PKGBUILD 2013-03-18 12:20:26 UTC (rev 86507) +++ community-i686/PKGBUILD 2013-03-18 12:20:58 UTC (rev 86508) @@ -1,37 +0,0 @@ -# $Id$ -# Maintainer: Sergej Pupykin - -pkgname=darkstat -pkgver=3.0.715 -pkgrel=7 -pkgdesc="Network statistics gatherer (packet sniffer)" -url="http://dmr.ath.cx/net/darkstat/"; -license=("GPL") -arch=(i686 x86_64) -depends=('libpcap' 'zlib' 'gcc-libs') -backup=('etc/conf.d/darkstat.conf') -source=(http://dmr.ath.cx/net/darkstat/darkstat-$pkgver.tar.bz2 - darkstat - darkstat.service - darkstat.conf) -install=darkstat.install -md5sums=('5b7abc7538dcd8e30667dac150e81d77' - '1021f95fabe16cfab4c95f6264d535e5' - 'e2d9efc856201146e2abae145b4c5a1f' - 'aa9a9effd1e8f08860afcd6439fc94c5') - -build() { - cd $srcdir/darkstat-$pkgver - ./configure --prefix=/usr - make -} - -package() { - cd $srcdir/darkstat-$pkgver - make DESTDIR=$pkgdir install - - # darkstat script - install -D -m755 "$srcdir"/darkstat "$pkgdir"/etc/rc.d/darkstat - install -D -m644 "$srcdir"/darkstat.conf "$pkgdir"/etc/conf.d/darkstat.conf - install -Dm0644 $srcdir/$pkgname.service $pkgdir/usr/lib/systemd/system/$pkgname.service -} Copied: darkstat/repos/community-i686/PKGBUILD (from rev 86507, darkstat/trunk/PKGBUILD) === --- community-i686/PKGBUILD (rev 0) +++ community-i686/PKGBUILD 2013-03-18 12:20:58 UTC (rev 86508) @@ -0,0 +1,37 @@ +# $Id$ +# Maintainer: Sergej Pupykin + +pkgname=darkstat +pkgver=3.0.715 +pkgrel=8 +pkgdesc="Network statistics gatherer (packet sniffer)" +url="http://dmr.ath.cx/net/darkstat/"; +license=("GPL") +arch=(i686 x86_64) +depends=('libpcap' 'zlib' 'gcc-libs') +backup=('etc/conf.d/darkstat.conf') +source=(http://dmr.ath.cx/net/darkstat/darkstat-$pkgver.tar.bz2 + darkstat + darkstat.service + darkstat.conf) +install=darkstat.install +md5sums=('5b7abc7538dcd8e30667dac150e81d77' + '1021f95fabe16cfab4c95f6264d535e5' + '91dd1cf9d01c2b37896f01b4570b5521' + 'aa9a9effd1e8f08860afcd6439fc94c5') + +build() { + cd $srcdir/darkstat-$pkgver + ./configure --prefix=/usr + make +} + +package() { + cd $srcdir/darkstat-$pkgver + make DESTDIR=$pkgdir install + + # darkstat script + install -D -m755 "$srcdir"/darkstat "$pkgdir"/etc/rc.d/darkstat + install -D -m644 "$srcdir"/darkstat.conf "$pkgdir"/etc/conf.d/darkstat.conf + install -Dm0644 $srcdir/$pkgname.service $pkgdir/usr/lib/systemd/system/$pkgname.service +} Deleted: community-i686/darkstat ==
[arch-commits] Commit in darkstat/trunk (PKGBUILD darkstat.service)
Date: Monday, March 18, 2013 @ 13:20:26 Author: spupykin Revision: 86507 upgpkg: darkstat 3.0.715-8 upd Modified: darkstat/trunk/PKGBUILD darkstat/trunk/darkstat.service --+ PKGBUILD |4 ++-- darkstat.service |1 + 2 files changed, 3 insertions(+), 2 deletions(-) Modified: PKGBUILD === --- PKGBUILD2013-03-18 12:12:46 UTC (rev 86506) +++ PKGBUILD2013-03-18 12:20:26 UTC (rev 86507) @@ -3,7 +3,7 @@ pkgname=darkstat pkgver=3.0.715 -pkgrel=7 +pkgrel=8 pkgdesc="Network statistics gatherer (packet sniffer)" url="http://dmr.ath.cx/net/darkstat/"; license=("GPL") @@ -17,7 +17,7 @@ install=darkstat.install md5sums=('5b7abc7538dcd8e30667dac150e81d77' '1021f95fabe16cfab4c95f6264d535e5' - 'e2d9efc856201146e2abae145b4c5a1f' + '91dd1cf9d01c2b37896f01b4570b5521' 'aa9a9effd1e8f08860afcd6439fc94c5') build() { Modified: darkstat.service === --- darkstat.service2013-03-18 12:12:46 UTC (rev 86506) +++ darkstat.service2013-03-18 12:20:26 UTC (rev 86507) @@ -1,5 +1,6 @@ [Unit] Description=Network statistics gatherer (packet sniffer) +After=network.target [Service] Type=simple
[arch-commits] Commit in rss-glx/repos (8 files)
Date: Monday, March 18, 2013 @ 13:12:46 Author: spupykin Revision: 86506 archrelease: copy trunk to community-staging-i686, community-staging-x86_64 Added: rss-glx/repos/community-staging-i686/ rss-glx/repos/community-staging-i686/PKGBUILD (from rev 86505, rss-glx/trunk/PKGBUILD) rss-glx/repos/community-staging-i686/rss-glx-desktops.tar.bz2 (from rev 86505, rss-glx/trunk/rss-glx-desktops.tar.bz2) rss-glx/repos/community-staging-i686/rss-glx.install (from rev 86505, rss-glx/trunk/rss-glx.install) rss-glx/repos/community-staging-x86_64/ rss-glx/repos/community-staging-x86_64/PKGBUILD (from rev 86505, rss-glx/trunk/PKGBUILD) rss-glx/repos/community-staging-x86_64/rss-glx-desktops.tar.bz2 (from rev 86505, rss-glx/trunk/rss-glx-desktops.tar.bz2) rss-glx/repos/community-staging-x86_64/rss-glx.install (from rev 86505, rss-glx/trunk/rss-glx.install) --+ community-staging-i686/PKGBUILD | 50 + community-staging-i686/rss-glx.install | 12 ++ community-staging-x86_64/PKGBUILD| 50 + community-staging-x86_64/rss-glx.install | 12 ++ 4 files changed, 124 insertions(+) Copied: rss-glx/repos/community-staging-i686/PKGBUILD (from rev 86505, rss-glx/trunk/PKGBUILD) === --- community-staging-i686/PKGBUILD (rev 0) +++ community-staging-i686/PKGBUILD 2013-03-18 12:12:46 UTC (rev 86506) @@ -0,0 +1,50 @@ +# $Id$ +# Maintainer : Ionut Biru +# Contributor: Corrado 'bardo' Primier +# Contributor: Tate "Tatey" Johnson + +pkgname=rss-glx +pkgver=0.9.1 +pkgrel=14 +pkgdesc="The Really Slick Screensavers port to GLX" +arch=('i686' 'x86_64') +url="http://rss-glx.sourceforge.net/"; +license=('GPL') +depends=('desktop-file-utils' 'freealut' 'glew' 'imagemagick' 'glu') +makedepends=('mesa') +optdepends=('xscreensaver: xscreensaver integration') +install=rss-glx.install +options=('!libtool') +source=(http://downloads.sourceforge.net/rss-glx/${pkgname}_${pkgver}.tar.bz2 +rss-glx-desktops.tar.bz2) +md5sums=('a772bd143cd8d141edf4d9eff9860ab3' + '4211215c9a4918b0dff30a7000647dd9') + +build() { + cd ${srcdir}/${pkgname}_${pkgver} + + [ "$CARCH" = "x86_64" ] && (sed -i -e 's|@LIBS@|@LIBS@ -fopenmp|g' src/Makefile.in) + + ./configure --prefix=/usr \ +--mandir=/usr/share/man \ +--program-transform-name='s/plasma/plasma_rss/' \ +--with-configdir=/usr/share/xscreensaver/config \ +--with-kdessconfigdir=/usr/share/applnk/System/ScreenSavers \ +--enable-shared=yes --enable-static=no + make CFLAGS="$CFLAGS -I/usr/include/ImageMagick" +} + +package() { + cd ${srcdir}/${pkgname}_${pkgver} + make DESTDIR=${pkgdir} install + + # FS#18300 + install -d ${pkgdir}/usr/lib/xscreensaver/ + list=$(ls ${pkgdir}/usr/bin --ignore rss-glx_install.pl) + for i in $list; do +ln -s "/usr/bin/$i" "$pkgdir/usr/lib/xscreensaver/" + done + + install -d ${pkgdir}/usr/share/applications/screensavers + install -m644 ${srcdir}/${pkgname}-desktops/*.desktop ${pkgdir}/usr/share/applications/screensavers +} Copied: rss-glx/repos/community-staging-i686/rss-glx-desktops.tar.bz2 (from rev 86505, rss-glx/trunk/rss-glx-desktops.tar.bz2) === (Binary files differ) Copied: rss-glx/repos/community-staging-i686/rss-glx.install (from rev 86505, rss-glx/trunk/rss-glx.install) === --- community-staging-i686/rss-glx.install (rev 0) +++ community-staging-i686/rss-glx.install 2013-03-18 12:12:46 UTC (rev 86506) @@ -0,0 +1,12 @@ +post_install() { + cat << 'EOM' + --> If you want to integrate the RSS screen savers with xscreensaver + --> for your user, then install the xscreensaver package and launch + --> the command "rss-glx_install.pl" +EOM + update-desktop-database -q +} + +post_remove() { + update-desktop-database -q +} Copied: rss-glx/repos/community-staging-x86_64/PKGBUILD (from rev 86505, rss-glx/trunk/PKGBUILD) === --- community-staging-x86_64/PKGBUILD (rev 0) +++ community-staging-x86_64/PKGBUILD 2013-03-18 12:12:46 UTC (rev 86506) @@ -0,0 +1,50 @@ +# $Id$ +# Maintainer : Ionut Biru +# Contributor: Corrado 'bardo' Primier +# Contributor: Tate "Tatey" Johnson + +pkgname=rss-glx +pkgver=0.9.1 +pkgrel=14 +pkgdesc="The Really Slick Screensavers port to GLX" +arch=('i686' 'x86_64') +url="http://rss-glx.sourceforge.net/"; +license=('GPL') +depends=('desktop-file-utils' 'freealut' 'glew' 'imagemagick' 'glu') +makedepends=('mesa') +optdepends=('xscreensaver: xscreensaver integration') +install=rss-glx.install +options=('!libtool') +source=(http://downloads.sourceforge.net/rss-glx/${pkgname}_${pkgver}.tar
[arch-commits] Commit in rss-glx/trunk (PKGBUILD)
Date: Monday, March 18, 2013 @ 13:12:24 Author: spupykin Revision: 86505 upgpkg: rss-glx 0.9.1-14 upd Modified: rss-glx/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2013-03-18 12:11:11 UTC (rev 86504) +++ PKGBUILD2013-03-18 12:12:24 UTC (rev 86505) @@ -5,7 +5,7 @@ pkgname=rss-glx pkgver=0.9.1 -pkgrel=13 +pkgrel=14 pkgdesc="The Really Slick Screensavers port to GLX" arch=('i686' 'x86_64') url="http://rss-glx.sourceforge.net/";
[arch-commits] Commit in cuneiform/repos (4 files)
Date: Monday, March 18, 2013 @ 13:11:11 Author: spupykin Revision: 86504 archrelease: copy trunk to community-staging-i686, community-staging-x86_64 Added: cuneiform/repos/community-staging-i686/ cuneiform/repos/community-staging-i686/PKGBUILD (from rev 86503, cuneiform/trunk/PKGBUILD) cuneiform/repos/community-staging-x86_64/ cuneiform/repos/community-staging-x86_64/PKGBUILD (from rev 86503, cuneiform/trunk/PKGBUILD) ---+ community-staging-i686/PKGBUILD | 41 community-staging-x86_64/PKGBUILD | 41 2 files changed, 82 insertions(+) Copied: cuneiform/repos/community-staging-i686/PKGBUILD (from rev 86503, cuneiform/trunk/PKGBUILD) === --- community-staging-i686/PKGBUILD (rev 0) +++ community-staging-i686/PKGBUILD 2013-03-18 12:11:11 UTC (rev 86504) @@ -0,0 +1,41 @@ +# $Id$ +# Maintainer: Sergej Pupykin +# Contributor: Maxim Vuets + +pkgname=cuneiform +pkgver=1.1.0 +_dpkgver=1.1 +pkgrel=7 +pkgdesc="Linux port of an OCR system developed in Russia. Supports more than 20 languages." +arch=('i686' 'x86_64') +url="https://launchpad.net/cuneiform-linux"; +license=('BSD') +depends=('imagemagick') +makedepends=('cmake') +source=(http://launchpad.net/cuneiform-linux/${_dpkgver}/${_dpkgver}/+download/cuneiform-linux-${pkgver}.tar.bz2) +md5sums=('09fd160cdfc512f26442a7e91246598d') + +_SRC_ROOT="${srcdir}/${pkgname}-linux-${pkgver}" +md5sums=('09fd160cdfc512f26442a7e91246598d') + +build() { + cd "${_SRC_ROOT}" + sed -i 's#lib64#lib#' install_files.cmake + mkdir builddir + cd builddir + + cmake \ + -DCMAKE_BUILD_TYPE=release \ + -DCMAKE_INSTALL_PREFIX=/usr \ + -DImageMagick_Magick++_LIBRARY=/usr/lib/libMagick++-Q16.so.7 \ + .. + make +} + +package() { + cd "${_SRC_ROOT}"/builddir + make DESTDIR="${pkgdir}" install + + install -Dm644 "${_SRC_ROOT}/cuneiform_src/Kern/license.txt" \ +"${pkgdir}/usr/share/licenses/cuneiform/license.txt" +} Copied: cuneiform/repos/community-staging-x86_64/PKGBUILD (from rev 86503, cuneiform/trunk/PKGBUILD) === --- community-staging-x86_64/PKGBUILD (rev 0) +++ community-staging-x86_64/PKGBUILD 2013-03-18 12:11:11 UTC (rev 86504) @@ -0,0 +1,41 @@ +# $Id$ +# Maintainer: Sergej Pupykin +# Contributor: Maxim Vuets + +pkgname=cuneiform +pkgver=1.1.0 +_dpkgver=1.1 +pkgrel=7 +pkgdesc="Linux port of an OCR system developed in Russia. Supports more than 20 languages." +arch=('i686' 'x86_64') +url="https://launchpad.net/cuneiform-linux"; +license=('BSD') +depends=('imagemagick') +makedepends=('cmake') +source=(http://launchpad.net/cuneiform-linux/${_dpkgver}/${_dpkgver}/+download/cuneiform-linux-${pkgver}.tar.bz2) +md5sums=('09fd160cdfc512f26442a7e91246598d') + +_SRC_ROOT="${srcdir}/${pkgname}-linux-${pkgver}" +md5sums=('09fd160cdfc512f26442a7e91246598d') + +build() { + cd "${_SRC_ROOT}" + sed -i 's#lib64#lib#' install_files.cmake + mkdir builddir + cd builddir + + cmake \ + -DCMAKE_BUILD_TYPE=release \ + -DCMAKE_INSTALL_PREFIX=/usr \ + -DImageMagick_Magick++_LIBRARY=/usr/lib/libMagick++-Q16.so.7 \ + .. + make +} + +package() { + cd "${_SRC_ROOT}"/builddir + make DESTDIR="${pkgdir}" install + + install -Dm644 "${_SRC_ROOT}/cuneiform_src/Kern/license.txt" \ +"${pkgdir}/usr/share/licenses/cuneiform/license.txt" +}
[arch-commits] Commit in cuneiform/trunk (PKGBUILD)
Date: Monday, March 18, 2013 @ 13:10:47 Author: spupykin Revision: 86503 upgpkg: cuneiform 1.1.0-7 upd Modified: cuneiform/trunk/PKGBUILD --+ PKGBUILD |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Modified: PKGBUILD === --- PKGBUILD2013-03-18 11:57:06 UTC (rev 86502) +++ PKGBUILD2013-03-18 12:10:47 UTC (rev 86503) @@ -5,7 +5,7 @@ pkgname=cuneiform pkgver=1.1.0 _dpkgver=1.1 -pkgrel=6 +pkgrel=7 pkgdesc="Linux port of an OCR system developed in Russia. Supports more than 20 languages." arch=('i686' 'x86_64') url="https://launchpad.net/cuneiform-linux";
[arch-commits] Commit in gtk2/repos (12 files)
Date: Monday, March 18, 2013 @ 13:05:08 Author: jgc Revision: 180158 archrelease: copy trunk to extra-i686, extra-x86_64 Added: gtk2/repos/extra-i686/PKGBUILD (from rev 180157, gtk2/trunk/PKGBUILD) gtk2/repos/extra-i686/gtk2.install (from rev 180157, gtk2/trunk/gtk2.install) gtk2/repos/extra-i686/xid-collision-debug.patch (from rev 180157, gtk2/trunk/xid-collision-debug.patch) gtk2/repos/extra-x86_64/PKGBUILD (from rev 180157, gtk2/trunk/PKGBUILD) gtk2/repos/extra-x86_64/gtk2.install (from rev 180157, gtk2/trunk/gtk2.install) gtk2/repos/extra-x86_64/xid-collision-debug.patch (from rev 180157, gtk2/trunk/xid-collision-debug.patch) Deleted: gtk2/repos/extra-i686/PKGBUILD gtk2/repos/extra-i686/gtk2.install gtk2/repos/extra-i686/xid-collision-debug.patch gtk2/repos/extra-x86_64/PKGBUILD gtk2/repos/extra-x86_64/gtk2.install gtk2/repos/extra-x86_64/xid-collision-debug.patch + extra-i686/PKGBUILD| 112 +++ extra-i686/gtk2.install| 32 extra-i686/xid-collision-debug.patch | 30 extra-x86_64/PKGBUILD | 112 +++ extra-x86_64/gtk2.install | 32 extra-x86_64/xid-collision-debug.patch | 30 6 files changed, 174 insertions(+), 174 deletions(-) Deleted: extra-i686/PKGBUILD === --- extra-i686/PKGBUILD 2013-03-18 12:04:58 UTC (rev 180157) +++ extra-i686/PKGBUILD 2013-03-18 12:05:08 UTC (rev 180158) @@ -1,56 +0,0 @@ -# $Id$ -# Maintainer: Jan de Groot - -pkgbase=gtk2 -pkgname=('gtk2' 'gtk-update-icon-cache') -pkgver=2.24.16 -pkgrel=1 -arch=('i686' 'x86_64') -url="http://www.gtk.org/"; -makedepends=('atk' 'pango' 'libxcursor' 'libxinerama' 'libxrandr' 'libxi' 'libxcomposite' 'libxdamage' - 'shared-mime-info' 'cairo' 'libcups' 'gdk-pixbuf2' 'gobject-introspection') -options=('!libtool') -license=('LGPL') -source=(http://ftp.gnome.org/pub/gnome/sources/gtk+/2.24/gtk+-$pkgver.tar.xz -xid-collision-debug.patch) -sha256sums=('93cd69cc2cecf9a3aa31a50caf4a24752a6928a48c527ae967b109df6f9302d3' -'d758bb93e59df15a4ea7732cf984d1c3c19dff67c94b957575efea132b8fe558') - -build() { -cd gtk+-$pkgver -patch -Np1 -i ../xid-collision-debug.patch - -CXX=/bin/false ./configure --prefix=/usr \ ---sysconfdir=/etc \ ---localstatedir=/var \ ---with-xinput=yes - -# https://bugzilla.gnome.org/show_bug.cgi?id=655517 -sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool - -make -} - -package_gtk2() { -pkgdesc="GTK+ is a multi-platform toolkit (v2)" -install=gtk2.install -depends=('atk' 'pango' 'libxcursor' 'libxinerama' 'libxrandr' 'libxi' 'libxcomposite' 'libxdamage' 'shared-mime-info' 'cairo' 'libcups' 'gtk-update-icon-cache') -backup=(etc/gtk-2.0/gtkrc) -replaces=('gtk2-docs') - -cd gtk+-$pkgver - -make DESTDIR="$pkgdir" install -sed -i "s#env python#env python2#" $pkgdir/usr/bin/gtk-builder-convert -echo 'gtk-fallback-icon-theme = "gnome"' > "$pkgdir/etc/gtk-2.0/gtkrc" -#split this out to use with gtk3 too -rm $pkgdir/usr/bin/gtk-update-icon-cache -} -package_gtk-update-icon-cache() { -pkgdesc="The GTK+ update icon cache tool" -depends=('gdk-pixbuf2>=2.24.1-3') - -cd gtk+-$pkgver/gtk - -install -D -m755 gtk-update-icon-cache $pkgdir/usr/bin/gtk-update-icon-cache -} Copied: gtk2/repos/extra-i686/PKGBUILD (from rev 180157, gtk2/trunk/PKGBUILD) === --- extra-i686/PKGBUILD (rev 0) +++ extra-i686/PKGBUILD 2013-03-18 12:05:08 UTC (rev 180158) @@ -0,0 +1,56 @@ +# $Id$ +# Maintainer: Jan de Groot + +pkgbase=gtk2 +pkgname=('gtk2' 'gtk-update-icon-cache') +pkgver=2.24.17 +pkgrel=1 +arch=('i686' 'x86_64') +url="http://www.gtk.org/"; +makedepends=('atk' 'pango' 'libxcursor' 'libxinerama' 'libxrandr' 'libxi' 'libxcomposite' 'libxdamage' + 'shared-mime-info' 'cairo' 'libcups' 'gdk-pixbuf2' 'gobject-introspection') +options=('!libtool') +license=('LGPL') +source=(http://ftp.gnome.org/pub/gnome/sources/gtk+/2.24/gtk+-$pkgver.tar.xz +xid-collision-debug.patch) +sha256sums=('e947b2b460156d98e8e38930b82458e1d613a71eb26e927f966f7081a640f415' +'d758bb93e59df15a4ea7732cf984d1c3c19dff67c94b957575efea132b8fe558') + +build() { +cd gtk+-$pkgver +patch -Np1 -i ../xid-collision-debug.patch + +CXX=/bin/false ./configure --prefix=/usr \ +--sysconfdir=/etc \ +--localstatedir=/var \ +--with-xinput=yes + +# https://bugzilla.gnome.org/show_bug.cgi?id=655517 +sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool + +make +} + +package_gtk2() { +pkgdesc="GTK+ is a multi-platform toolkit (v2)" +install=gtk2.install +depends=('atk'
[arch-commits] Commit in gtk2/trunk (PKGBUILD)
Date: Monday, March 18, 2013 @ 13:04:58 Author: jgc Revision: 180157 upgpkg: gtk2 2.24.17-1 Modified: gtk2/trunk/PKGBUILD --+ PKGBUILD |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) Modified: PKGBUILD === --- PKGBUILD2013-03-18 11:46:25 UTC (rev 180156) +++ PKGBUILD2013-03-18 12:04:58 UTC (rev 180157) @@ -3,7 +3,7 @@ pkgbase=gtk2 pkgname=('gtk2' 'gtk-update-icon-cache') -pkgver=2.24.16 +pkgver=2.24.17 pkgrel=1 arch=('i686' 'x86_64') url="http://www.gtk.org/"; @@ -13,7 +13,7 @@ license=('LGPL') source=(http://ftp.gnome.org/pub/gnome/sources/gtk+/2.24/gtk+-$pkgver.tar.xz xid-collision-debug.patch) -sha256sums=('93cd69cc2cecf9a3aa31a50caf4a24752a6928a48c527ae967b109df6f9302d3' +sha256sums=('e947b2b460156d98e8e38930b82458e1d613a71eb26e927f966f7081a640f415' 'd758bb93e59df15a4ea7732cf984d1c3c19dff67c94b957575efea132b8fe558') build() {
[arch-commits] Commit in zathura-pdf-mupdf/repos (4 files)
Date: Monday, March 18, 2013 @ 12:57:06 Author: spupykin Revision: 86502 archrelease: copy trunk to community-i686, community-x86_64 Added: zathura-pdf-mupdf/repos/community-i686/PKGBUILD (from rev 86501, zathura-pdf-mupdf/trunk/PKGBUILD) zathura-pdf-mupdf/repos/community-x86_64/PKGBUILD (from rev 86501, zathura-pdf-mupdf/trunk/PKGBUILD) Deleted: zathura-pdf-mupdf/repos/community-i686/PKGBUILD zathura-pdf-mupdf/repos/community-x86_64/PKGBUILD ---+ community-i686/PKGBUILD | 50 ++-- community-x86_64/PKGBUILD | 50 ++-- 2 files changed, 50 insertions(+), 50 deletions(-) Deleted: community-i686/PKGBUILD === --- community-i686/PKGBUILD 2013-03-18 11:56:42 UTC (rev 86501) +++ community-i686/PKGBUILD 2013-03-18 11:57:06 UTC (rev 86502) @@ -1,25 +0,0 @@ -# $Id: PKGBUILD 67819 2012-03-14 16:22:14Z spupykin $ -# Maintainer: Daniel Wallace -# Maintainer: Sergej Pupykin -# Contributor: Moritz Lipp - -pkgname=zathura-pdf-mupdf -pkgver=0.2.2 -pkgrel=1 -pkgdesc="Adds pdf support to zathura by using the mupdf library" -arch=('i686' 'x86_64') -url="https://pwmt.org/projects/zathura/plugins/zathura-pdf-mupdf/"; -license=('custom') -depends=('mupdf>=1.1' 'zathura') -conflicts=('zathura-pdf-poppler') -source=("https://pwmt.org/projects/zathura/plugins/download/$pkgname-$pkgver.tar.gz";) -md5sums=('b66656d7c8cede5db92e1f66e472985d') - -build() { - make -C "${srcdir}/$pkgname-$pkgver" -} - -package(){ - make -C "${srcdir}/$pkgname-$pkgver" DESTDIR="$pkgdir" install - install -Dm0644 "${srcdir}/$pkgname-$pkgver/LICENSE" "$pkgdir/usr/share/licenses/$pkgname/LICENSE" -} Copied: zathura-pdf-mupdf/repos/community-i686/PKGBUILD (from rev 86501, zathura-pdf-mupdf/trunk/PKGBUILD) === --- community-i686/PKGBUILD (rev 0) +++ community-i686/PKGBUILD 2013-03-18 11:57:06 UTC (rev 86502) @@ -0,0 +1,25 @@ +# $Id: PKGBUILD 67819 2012-03-14 16:22:14Z spupykin $ +# Maintainer: Daniel Wallace +# Maintainer: Sergej Pupykin +# Contributor: Moritz Lipp + +pkgname=zathura-pdf-mupdf +pkgver=0.2.3 +pkgrel=1 +pkgdesc="Adds pdf support to zathura by using the mupdf library" +arch=('i686' 'x86_64') +url="https://pwmt.org/projects/zathura/plugins/zathura-pdf-mupdf/"; +license=('custom') +depends=('mupdf>=1.1' 'zathura') +conflicts=('zathura-pdf-poppler') +source=("https://pwmt.org/projects/zathura/plugins/download/$pkgname-$pkgver.tar.gz";) +md5sums=('777ba69a321ef4bb9cbced8f6733927a') + +build() { + make -C "${srcdir}/$pkgname-$pkgver" +} + +package(){ + make -C "${srcdir}/$pkgname-$pkgver" DESTDIR="$pkgdir" install + install -Dm0644 "${srcdir}/$pkgname-$pkgver/LICENSE" "$pkgdir/usr/share/licenses/$pkgname/LICENSE" +} Deleted: community-x86_64/PKGBUILD === --- community-x86_64/PKGBUILD 2013-03-18 11:56:42 UTC (rev 86501) +++ community-x86_64/PKGBUILD 2013-03-18 11:57:06 UTC (rev 86502) @@ -1,25 +0,0 @@ -# $Id: PKGBUILD 67819 2012-03-14 16:22:14Z spupykin $ -# Maintainer: Daniel Wallace -# Maintainer: Sergej Pupykin -# Contributor: Moritz Lipp - -pkgname=zathura-pdf-mupdf -pkgver=0.2.2 -pkgrel=1 -pkgdesc="Adds pdf support to zathura by using the mupdf library" -arch=('i686' 'x86_64') -url="https://pwmt.org/projects/zathura/plugins/zathura-pdf-mupdf/"; -license=('custom') -depends=('mupdf>=1.1' 'zathura') -conflicts=('zathura-pdf-poppler') -source=("https://pwmt.org/projects/zathura/plugins/download/$pkgname-$pkgver.tar.gz";) -md5sums=('b66656d7c8cede5db92e1f66e472985d') - -build() { - make -C "${srcdir}/$pkgname-$pkgver" -} - -package(){ - make -C "${srcdir}/$pkgname-$pkgver" DESTDIR="$pkgdir" install - install -Dm0644 "${srcdir}/$pkgname-$pkgver/LICENSE" "$pkgdir/usr/share/licenses/$pkgname/LICENSE" -} Copied: zathura-pdf-mupdf/repos/community-x86_64/PKGBUILD (from rev 86501, zathura-pdf-mupdf/trunk/PKGBUILD) === --- community-x86_64/PKGBUILD (rev 0) +++ community-x86_64/PKGBUILD 2013-03-18 11:57:06 UTC (rev 86502) @@ -0,0 +1,25 @@ +# $Id: PKGBUILD 67819 2012-03-14 16:22:14Z spupykin $ +# Maintainer: Daniel Wallace +# Maintainer: Sergej Pupykin +# Contributor: Moritz Lipp + +pkgname=zathura-pdf-mupdf +pkgver=0.2.3 +pkgrel=1 +pkgdesc="Adds pdf support to zathura by using the mupdf library" +arch=('i686' 'x86_64') +url="https://pwmt.org/projects/zathura/plugins/zathura-pdf-mupdf/"; +license=('custom') +depends=('mupdf>=1.1' 'zathura') +conflicts=('zathura-pdf-poppler') +source=("https://pwmt.org/projects/zathura/plugins/download/$pkgname-$pkgver.tar.gz";) +md5sums=('777ba69a321ef4bb9cbced8f6733927a') + +build() { + make -C "${srcdir}/$pkgname-$pkgver" +} + +package(){ +
[arch-commits] Commit in zathura-pdf-mupdf/trunk (PKGBUILD)
Date: Monday, March 18, 2013 @ 12:56:42 Author: spupykin Revision: 86501 upgpkg: zathura-pdf-mupdf 0.2.3-1 upd Modified: zathura-pdf-mupdf/trunk/PKGBUILD --+ PKGBUILD |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) Modified: PKGBUILD === --- PKGBUILD2013-03-18 11:56:38 UTC (rev 86500) +++ PKGBUILD2013-03-18 11:56:42 UTC (rev 86501) @@ -4,7 +4,7 @@ # Contributor: Moritz Lipp pkgname=zathura-pdf-mupdf -pkgver=0.2.2 +pkgver=0.2.3 pkgrel=1 pkgdesc="Adds pdf support to zathura by using the mupdf library" arch=('i686' 'x86_64') @@ -13,7 +13,7 @@ depends=('mupdf>=1.1' 'zathura') conflicts=('zathura-pdf-poppler') source=("https://pwmt.org/projects/zathura/plugins/download/$pkgname-$pkgver.tar.gz";) -md5sums=('b66656d7c8cede5db92e1f66e472985d') +md5sums=('777ba69a321ef4bb9cbced8f6733927a') build() { make -C "${srcdir}/$pkgname-$pkgver"
[arch-commits] Commit in when/repos/community-any (4 files)
Date: Monday, March 18, 2013 @ 12:56:38 Author: spupykin Revision: 86500 archrelease: copy trunk to community-any Added: when/repos/community-any/ChangeLog (from rev 86499, when/trunk/ChangeLog) when/repos/community-any/PKGBUILD (from rev 86499, when/trunk/PKGBUILD) Deleted: when/repos/community-any/ChangeLog when/repos/community-any/PKGBUILD ---+ ChangeLog |6 +++--- PKGBUILD | 40 2 files changed, 23 insertions(+), 23 deletions(-) Deleted: ChangeLog === --- ChangeLog 2013-03-18 11:56:25 UTC (rev 86499) +++ ChangeLog 2013-03-18 11:56:38 UTC (rev 86500) @@ -1,3 +0,0 @@ -2007-06-27 tardo -* Built for x86_64 - Copied: when/repos/community-any/ChangeLog (from rev 86499, when/trunk/ChangeLog) === --- ChangeLog (rev 0) +++ ChangeLog 2013-03-18 11:56:38 UTC (rev 86500) @@ -0,0 +1,3 @@ +2007-06-27 tardo +* Built for x86_64 + Deleted: PKGBUILD === --- PKGBUILD2013-03-18 11:56:25 UTC (rev 86499) +++ PKGBUILD2013-03-18 11:56:38 UTC (rev 86500) @@ -1,20 +0,0 @@ -# $Id$ -# Maintainer: Sergej Pupykin -# Contributor: Charles Mauch - -pkgname=when -pkgver=1.1.30 -pkgrel=1 -pkgdesc="A simple commandline personal calendar program" -arch=('any') -url="http://www.lightandmatter.com/when/when.html"; -license=('GPL') -depends=('perl') -source=(when-$pkgver.tar.gz::http://www.lightandmatter.com/when/when.tar.gz) -md5sums=('7312fe578d0208956b7eff1a3feff47e') - -build() { - cd $srcdir/when_dist - install -D -m755 $srcdir/when_dist/when $pkgdir/usr/bin/when - install -D -m644 $srcdir/when_dist/when.1 $pkgdir/usr/share/man/man1/when.1 -} Copied: when/repos/community-any/PKGBUILD (from rev 86499, when/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2013-03-18 11:56:38 UTC (rev 86500) @@ -0,0 +1,20 @@ +# $Id$ +# Maintainer: Sergej Pupykin +# Contributor: Charles Mauch + +pkgname=when +pkgver=1.1.31 +pkgrel=1 +pkgdesc="A simple commandline personal calendar program" +arch=('any') +url="http://www.lightandmatter.com/when/when.html"; +license=('GPL') +depends=('perl') +source=(when-$pkgver.tar.gz::http://www.lightandmatter.com/when/when.tar.gz) +md5sums=('72d4c1c0fbad5c2ca6b9e8bb449f7b39') + +package() { + cd $srcdir/when_dist + install -D -m755 $srcdir/when_dist/when $pkgdir/usr/bin/when + install -D -m644 $srcdir/when_dist/when.1 $pkgdir/usr/share/man/man1/when.1 +}
[arch-commits] Commit in when/trunk (PKGBUILD)
Date: Monday, March 18, 2013 @ 12:56:25 Author: spupykin Revision: 86499 upgpkg: when 1.1.31-1 upd Modified: when/trunk/PKGBUILD --+ PKGBUILD |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) Modified: PKGBUILD === --- PKGBUILD2013-03-18 11:56:18 UTC (rev 86498) +++ PKGBUILD2013-03-18 11:56:25 UTC (rev 86499) @@ -3,7 +3,7 @@ # Contributor: Charles Mauch pkgname=when -pkgver=1.1.30 +pkgver=1.1.31 pkgrel=1 pkgdesc="A simple commandline personal calendar program" arch=('any') @@ -11,7 +11,7 @@ license=('GPL') depends=('perl') source=(when-$pkgver.tar.gz::http://www.lightandmatter.com/when/when.tar.gz) -md5sums=('7312fe578d0208956b7eff1a3feff47e') +md5sums=('72d4c1c0fbad5c2ca6b9e8bb449f7b39') package() { cd $srcdir/when_dist
[arch-commits] Commit in redis/repos (16 files)
Date: Monday, March 18, 2013 @ 12:56:18 Author: spupykin Revision: 86498 archrelease: copy trunk to community-i686, community-x86_64 Added: redis/repos/community-i686/PKGBUILD (from rev 86497, redis/trunk/PKGBUILD) redis/repos/community-i686/redis.d (from rev 86497, redis/trunk/redis.d) redis/repos/community-i686/redis.logrotate (from rev 86497, redis/trunk/redis.logrotate) redis/repos/community-i686/redis.service (from rev 86497, redis/trunk/redis.service) redis/repos/community-x86_64/PKGBUILD (from rev 86497, redis/trunk/PKGBUILD) redis/repos/community-x86_64/redis.d (from rev 86497, redis/trunk/redis.d) redis/repos/community-x86_64/redis.logrotate (from rev 86497, redis/trunk/redis.logrotate) redis/repos/community-x86_64/redis.service (from rev 86497, redis/trunk/redis.service) Deleted: redis/repos/community-i686/PKGBUILD redis/repos/community-i686/redis.d redis/repos/community-i686/redis.logrotate redis/repos/community-i686/redis.service redis/repos/community-x86_64/PKGBUILD redis/repos/community-x86_64/redis.d redis/repos/community-x86_64/redis.logrotate redis/repos/community-x86_64/redis.service --+ community-i686/PKGBUILD | 86 ++-- community-i686/redis.d | 156 ++--- community-i686/redis.logrotate | 10 +- community-i686/redis.service | 28 +++--- community-x86_64/PKGBUILD| 86 ++-- community-x86_64/redis.d | 156 ++--- community-x86_64/redis.logrotate | 10 +- community-x86_64/redis.service | 28 +++--- 8 files changed, 280 insertions(+), 280 deletions(-) Deleted: community-i686/PKGBUILD === --- community-i686/PKGBUILD 2013-03-18 11:55:46 UTC (rev 86497) +++ community-i686/PKGBUILD 2013-03-18 11:56:18 UTC (rev 86498) @@ -1,43 +0,0 @@ -# $Id$ -# Maintainer: Sergej Pupykin -# Maintainer: Jan-Erik Rediger -# Contributor: nofxx .com> - -pkgname=redis -pkgver=2.6.10 -pkgrel=1 -pkgdesc="Advanced key-value store" -arch=('i686' 'x86_64') -url="http://redis.io/"; -license=('BSD') -depends=('bash') -makedepends=('gcc>=3.1' 'make' 'pkgconfig') -backup=("etc/redis.conf" - "etc/logrotate.d/redis") -source=("http://redis.googlecode.com/files/${pkgname}-${pkgver}.tar.gz"; - "redis.d" - "redis.service" - "redis.logrotate") -md5sums=('711b472b14084863699987786a378d87' - '8d843919d9f165e9a47e56cadb4ac2ed' - '5ab9fdb200e15c13b450fda77fa030b6' - '9e2d75b7a9dc421122d673fe520ef17f') - -build() { - cd "$srcdir/${pkgname}-${pkgver}" - make MALLOC=libc - sed -i 's|# bind 127.0.0.1|bind 127.0.0.1|' redis.conf -} - -package() { - cd "$srcdir/${pkgname}-${pkgver}" - mkdir -p $pkgdir/usr/bin - make INSTALL_BIN="$pkgdir/usr/bin" PREFIX=/usr install - - install -D -m755 "$srcdir/${pkgname}-${pkgver}/COPYING" "$pkgdir/usr/share/licenses/redis/COPYING" - install -D -m755 "$srcdir/redis.d" "$pkgdir/etc/rc.d/redis" - install -Dm644 "$srcdir"/redis.service "$pkgdir"/usr/lib/systemd/system/redis.service - install -Dm644 "$srcdir/redis.logrotate" "$pkgdir/etc/logrotate.d/redis" - sed -i 's|daemonize no|daemonize yes|;s|dir \./|dir /var/lib/redis/|;s|logfile stdout|logfile /var/log/redis.log| ' $srcdir/${pkgname}-${pkgver}/redis.conf - install -D -m644 "$srcdir/${pkgname}-${pkgver}/redis.conf" "$pkgdir/etc/redis.conf" -} Copied: redis/repos/community-i686/PKGBUILD (from rev 86497, redis/trunk/PKGBUILD) === --- community-i686/PKGBUILD (rev 0) +++ community-i686/PKGBUILD 2013-03-18 11:56:18 UTC (rev 86498) @@ -0,0 +1,43 @@ +# $Id$ +# Maintainer: Sergej Pupykin +# Maintainer: Jan-Erik Rediger +# Contributor: nofxx .com> + +pkgname=redis +pkgver=2.6.11 +pkgrel=1 +pkgdesc="Advanced key-value store" +arch=('i686' 'x86_64') +url="http://redis.io/"; +license=('BSD') +depends=('bash') +makedepends=('gcc>=3.1' 'make' 'pkgconfig') +backup=("etc/redis.conf" + "etc/logrotate.d/redis") +source=("http://redis.googlecode.com/files/${pkgname}-${pkgver}.tar.gz"; + "redis.d" + "redis.service" + "redis.logrotate") +md5sums=('99d4d79ca7021899001b9c737097bf88' + '8d843919d9f165e9a47e56cadb4ac2ed' + '5ab9fdb200e15c13b450fda77fa030b6' + '9e2d75b7a9dc421122d673fe520ef17f') + +build() { + cd "$srcdir/${pkgname}-${pkgver}" + make MALLOC=libc + sed -i 's|# bind 127.0.0.1|bind 127.0.0.1|' redis.conf +} + +package() { + cd "$srcdir/${pkgname}-${pkgver}" + mkdir -p $pkgdir/usr/bin + make INSTALL_BIN="$pkgdir/usr/bin" PREFIX=/usr install + + install -D -m755 "$srcdir/${pkgname}-${pkgver}/COPYING" "$pkgdir/usr/share/licenses/redis/COPYING" + install -D -m755 "$srcdir/redis.d" "$pkgdir/etc/rc.d/redis" + install -Dm644 "$sr
[arch-commits] Commit in redis/trunk (PKGBUILD)
Date: Monday, March 18, 2013 @ 12:55:46 Author: spupykin Revision: 86497 upgpkg: redis 2.6.11-1 upd Modified: redis/trunk/PKGBUILD --+ PKGBUILD |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) Modified: PKGBUILD === --- PKGBUILD2013-03-18 11:55:36 UTC (rev 86496) +++ PKGBUILD2013-03-18 11:55:46 UTC (rev 86497) @@ -4,7 +4,7 @@ # Contributor: nofxx .com> pkgname=redis -pkgver=2.6.10 +pkgver=2.6.11 pkgrel=1 pkgdesc="Advanced key-value store" arch=('i686' 'x86_64') @@ -18,7 +18,7 @@ "redis.d" "redis.service" "redis.logrotate") -md5sums=('711b472b14084863699987786a378d87' +md5sums=('99d4d79ca7021899001b9c737097bf88' '8d843919d9f165e9a47e56cadb4ac2ed' '5ab9fdb200e15c13b450fda77fa030b6' '9e2d75b7a9dc421122d673fe520ef17f')
[arch-commits] Commit in phoronix-test-suite/repos/community-any (4 files)
Date: Monday, March 18, 2013 @ 12:55:36 Author: spupykin Revision: 86496 archrelease: copy trunk to community-any Added: phoronix-test-suite/repos/community-any/PKGBUILD (from rev 86495, phoronix-test-suite/trunk/PKGBUILD) phoronix-test-suite/repos/community-any/phoronix-test-suite.install (from rev 86495, phoronix-test-suite/trunk/phoronix-test-suite.install) Deleted: phoronix-test-suite/repos/community-any/PKGBUILD phoronix-test-suite/repos/community-any/phoronix-test-suite.install -+ PKGBUILD| 56 +- phoronix-test-suite.install | 24 +- 2 files changed, 40 insertions(+), 40 deletions(-) Deleted: PKGBUILD === --- PKGBUILD2013-03-18 11:55:24 UTC (rev 86495) +++ PKGBUILD2013-03-18 11:55:36 UTC (rev 86496) @@ -1,28 +0,0 @@ -# $Id$ -# Maintainer: Sergej Pupykin -# Contributor: Andreas Schönfelder - -pkgname=phoronix-test-suite -pkgver=4.4.0 -pkgrel=1 -pkgdesc="The most comprehensive testing and benchmarking platform available for Linux" -arch=('any') -license=('GPL3') -url="http://www.phoronix-test-suite.com/"; -depends=('php') -optdepends=('php-gtk' - 'php-gd' - 'php-curl') -install=${pkgname}.install -source=(http://www.phoronix.net/downloads/phoronix-test-suite/releases/phoronix-test-suite-$pkgver.tar.gz) -md5sums=('acf89696d64b8b9297e2eaa8a76efce1') - -package() { - cd $srcdir/phoronix-test-suite - sed -i 's#-packages.sh#-packages.sh --asdeps#' pts-core/objects/client/pts_external_dependencies.php - install -d $pkgdir/usr/bin $pkgdir/usr/share/phoronix-test-suite - sed -e "s/^export PTS_DIR=.*/export PTS_DIR=\/usr\/share\/phoronix-test-suite/g" -i phoronix-test-suite - install -m755 phoronix-test-suite $pkgdir/usr/bin/ - rm -f $pkgdir/usr/share/phoronix-test-suite/pts/etc/scripts/package-build-* - cp -r pts-core/ $pkgdir/usr/share/phoronix-test-suite/ -} Copied: phoronix-test-suite/repos/community-any/PKGBUILD (from rev 86495, phoronix-test-suite/trunk/PKGBUILD) === --- PKGBUILD(rev 0) +++ PKGBUILD2013-03-18 11:55:36 UTC (rev 86496) @@ -0,0 +1,28 @@ +# $Id$ +# Maintainer: Sergej Pupykin +# Contributor: Andreas Schönfelder + +pkgname=phoronix-test-suite +pkgver=4.4.1 +pkgrel=1 +pkgdesc="The most comprehensive testing and benchmarking platform available for Linux" +arch=('any') +license=('GPL3') +url="http://www.phoronix-test-suite.com/"; +depends=('php') +optdepends=('php-gtk' + 'php-gd' + 'php-curl') +install=${pkgname}.install +source=(http://www.phoronix.net/downloads/phoronix-test-suite/releases/phoronix-test-suite-$pkgver.tar.gz) +md5sums=('54e98f06483bcb4f900f7813154b9f3a') + +package() { + cd $srcdir/phoronix-test-suite + sed -i 's#-packages.sh#-packages.sh --asdeps#' pts-core/objects/client/pts_external_dependencies.php + install -d $pkgdir/usr/bin $pkgdir/usr/share/phoronix-test-suite + sed -e "s/^export PTS_DIR=.*/export PTS_DIR=\/usr\/share\/phoronix-test-suite/g" -i phoronix-test-suite + install -m755 phoronix-test-suite $pkgdir/usr/bin/ + rm -f $pkgdir/usr/share/phoronix-test-suite/pts/etc/scripts/package-build-* + cp -r pts-core/ $pkgdir/usr/share/phoronix-test-suite/ +} Deleted: phoronix-test-suite.install === --- phoronix-test-suite.install 2013-03-18 11:55:24 UTC (rev 86495) +++ phoronix-test-suite.install 2013-03-18 11:55:36 UTC (rev 86496) @@ -1,12 +0,0 @@ -post_install() { - echo ">>>" - echo ">>> To complete the installation you should edit /etc/php/php.ini." - echo ">>> - Add / to the open_basedir list." - echo ">>> - Enable zip.so" - echo ">>>" - echo ">>> EXAMPLE:" - echo ">>> open_basedir = /srv/http/:/home/:/tmp/:/usr/share/pear/:/" - echo ">>> extension=zip.so" - echo ">>>" - echo ">>> To enable the GUI make sure you install php-gtk from aur" -} Copied: phoronix-test-suite/repos/community-any/phoronix-test-suite.install (from rev 86495, phoronix-test-suite/trunk/phoronix-test-suite.install) === --- phoronix-test-suite.install (rev 0) +++ phoronix-test-suite.install 2013-03-18 11:55:36 UTC (rev 86496) @@ -0,0 +1,12 @@ +post_install() { + echo ">>>" + echo ">>> To complete the installation you should edit /etc/php/php.ini." + echo ">>> - Add / to the open_basedir list." + echo ">>> - Enable zip.so" + echo ">>>" + echo ">>> EXAMPLE:" + echo ">>> open_basedir = /srv/http/:/home/:/tmp/:/usr/share/pear/:/" + echo ">>> extension=zip.so" + echo ">>>" + echo ">>> To enable the GUI make sure you install php-gtk from aur" +}
[arch-commits] Commit in phoronix-test-suite/trunk (PKGBUILD)
Date: Monday, March 18, 2013 @ 12:55:24 Author: spupykin Revision: 86495 upgpkg: phoronix-test-suite 4.4.1-1 upd Modified: phoronix-test-suite/trunk/PKGBUILD --+ PKGBUILD |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) Modified: PKGBUILD === --- PKGBUILD2013-03-18 11:55:20 UTC (rev 86494) +++ PKGBUILD2013-03-18 11:55:24 UTC (rev 86495) @@ -3,7 +3,7 @@ # Contributor: Andreas Schönfelder pkgname=phoronix-test-suite -pkgver=4.4.0 +pkgver=4.4.1 pkgrel=1 pkgdesc="The most comprehensive testing and benchmarking platform available for Linux" arch=('any') @@ -15,7 +15,7 @@ 'php-curl') install=${pkgname}.install source=(http://www.phoronix.net/downloads/phoronix-test-suite/releases/phoronix-test-suite-$pkgver.tar.gz) -md5sums=('acf89696d64b8b9297e2eaa8a76efce1') +md5sums=('54e98f06483bcb4f900f7813154b9f3a') package() { cd $srcdir/phoronix-test-suite
[arch-commits] Commit in openbsd-netcat/repos (4 files)
Date: Monday, March 18, 2013 @ 12:55:20 Author: spupykin Revision: 86494 archrelease: copy trunk to community-i686, community-x86_64 Added: openbsd-netcat/repos/community-i686/PKGBUILD (from rev 86493, openbsd-netcat/trunk/PKGBUILD) openbsd-netcat/repos/community-x86_64/PKGBUILD (from rev 86493, openbsd-netcat/trunk/PKGBUILD) Deleted: openbsd-netcat/repos/community-i686/PKGBUILD openbsd-netcat/repos/community-x86_64/PKGBUILD ---+ community-i686/PKGBUILD | 79 +--- community-x86_64/PKGBUILD | 79 +--- 2 files changed, 78 insertions(+), 80 deletions(-) Deleted: community-i686/PKGBUILD === --- community-i686/PKGBUILD 2013-03-18 11:54:52 UTC (rev 86493) +++ community-i686/PKGBUILD 2013-03-18 11:55:20 UTC (rev 86494) @@ -1,40 +0,0 @@ -# $Id$ -# Maintainer: Sergej Pupykin -# Contributor: Andrej Gelenberg - -pkgname="openbsd-netcat" -pkgver=1.105 -pkgrel=5 -_patch=7 -pkgdesc="TCP/IP swiss army knife. OpenBSD variant." -arch=('i686' 'x86_64') -url="http://packages.debian.org/sid/netcat-openbsd"; -license=('BSD') -depends=('libbsd') -makedepends=('gcc' 'make') -provides=('netcat') -conflicts=('gnu-netcat') -source=("http://ftp.debian.org/debian/pool/main/n/netcat-openbsd/netcat-openbsd_${pkgver}.orig.tar.gz"; - "http://ftp.debian.org/debian/pool/main/n/netcat-openbsd/netcat-openbsd_${pkgver}-${_patch}.debian.tar.gz";) -md5sums=('7e67b22f1ad41a1b7effbb59ff28fca1' - 'e914f8eb7eda5c75c679dd77787ac76b') - -build() { - cd $srcdir/netcat-openbsd-${pkgver} - for i in `cat ../debian/patches/series`; do - echo "** patch $i" 1>&2 - cat "../debian/patches/$i" - done | patch -p1 - make \ - CFLAGS="$CFLAGS -DDEBIAN_VERSION=\"\\\"${pkgrel}\\\"\" -I/usr/include/libbsd" \ - LDFLAGS="$LDFLAGS -lbsd" -} - -package() { - cd $srcdir/netcat-openbsd-${pkgver} - install -Dm0755 nc $pkgdir/usr/bin/nc - ln -s nc $pkgdir/usr/bin/netcat - install -Dm0644 nc.1 $pkgdir/usr/share/man/man1/nc.1 - install -dm0755 $pkgdir/usr/share/licenses/$pkgname/ - head -n28 netcat.c | tail -n+2 >$pkgdir/usr/share/licenses/$pkgname/LICENSE -} Copied: openbsd-netcat/repos/community-i686/PKGBUILD (from rev 86493, openbsd-netcat/trunk/PKGBUILD) === --- community-i686/PKGBUILD (rev 0) +++ community-i686/PKGBUILD 2013-03-18 11:55:20 UTC (rev 86494) @@ -0,0 +1,39 @@ +# $Id$ +# Maintainer: Sergej Pupykin +# Contributor: Andrej Gelenberg + +pkgname="openbsd-netcat" +pkgver=1.105_7 +pkgrel=6 +pkgdesc="TCP/IP swiss army knife. OpenBSD variant." +arch=('i686' 'x86_64') +url="http://packages.debian.org/sid/netcat-openbsd"; +license=('BSD') +depends=('libbsd') +makedepends=('gcc' 'make') +provides=('netcat') +conflicts=('gnu-netcat') +source=("http://ftp.debian.org/debian/pool/main/n/netcat-openbsd/netcat-openbsd_${pkgver%_*}.orig.tar.gz"; + "http://ftp.debian.org/debian/pool/main/n/netcat-openbsd/netcat-openbsd_${pkgver/_/-}.debian.tar.gz";) +md5sums=('7e67b22f1ad41a1b7effbb59ff28fca1' + 'e914f8eb7eda5c75c679dd77787ac76b') + +build() { + cd $srcdir/netcat-openbsd-${pkgver%_*} + for i in `cat ../debian/patches/series`; do + echo "** patch $i" 1>&2 + cat "../debian/patches/$i" + done | patch -p1 + make \ + CFLAGS="$CFLAGS -DDEBIAN_VERSION=\"\\\"${pkgrel}\\\"\" -I/usr/include/libbsd" \ + LDFLAGS="$LDFLAGS -lbsd" +} + +package() { + cd $srcdir/netcat-openbsd-${pkgver%_*} + install -Dm0755 nc $pkgdir/usr/bin/nc + ln -s nc $pkgdir/usr/bin/netcat + install -Dm0644 nc.1 $pkgdir/usr/share/man/man1/nc.1 + install -dm0755 $pkgdir/usr/share/licenses/$pkgname/ + head -n28 netcat.c | tail -n+2 >$pkgdir/usr/share/licenses/$pkgname/LICENSE +} Deleted: community-x86_64/PKGBUILD === --- community-x86_64/PKGBUILD 2013-03-18 11:54:52 UTC (rev 86493) +++ community-x86_64/PKGBUILD 2013-03-18 11:55:20 UTC (rev 86494) @@ -1,40 +0,0 @@ -# $Id$ -# Maintainer: Sergej Pupykin -# Contributor: Andrej Gelenberg - -pkgname="openbsd-netcat" -pkgver=1.105 -pkgrel=5 -_patch=7 -pkgdesc="TCP/IP swiss army knife. OpenBSD variant." -arch=('i686' 'x86_64') -url="http://packages.debian.org/sid/netcat-openbsd"; -license=('BSD') -depends=('libbsd') -makedepends=('gcc' 'make') -provides=('netcat') -conflicts=('gnu-netcat') -source=("http://ftp.debian.org/debian/pool/main/n/netcat-openbsd/netcat-openbsd_${pkgver}.orig.tar.gz"; - "http://ftp.debian.org/debian/pool/main/n/netcat-openbsd/netcat-openbsd_${pkgver}-${_patch}.debian.tar.gz";) -md5sums=('7e67b22f1ad41a1b7effbb59ff28fca1' - 'e914f8eb7eda5c75c679dd77787ac76b') - -build() { - cd $srcdir/netcat-openbsd-${pkgver} - for i in `cat ../debian/patches/series`; do - echo "