diff options
40 files changed, 439 insertions, 193 deletions
diff --git a/community/kdenlive/PKGBUILD b/community/kdenlive/PKGBUILD index c81ab98e3..018fbe488 100644 --- a/community/kdenlive/PKGBUILD +++ b/community/kdenlive/PKGBUILD @@ -1,11 +1,11 @@ -# $Id: PKGBUILD 79569 2012-11-07 15:38:50Z spupykin $ +# $Id: PKGBUILD 80567 2012-11-25 17:21:40Z spupykin $ # Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> # Contributor: Zuf <kontakt.zuf@gmail.com> # Contributor: Darwin Bautista <djclue917@gmail.com> pkgname=kdenlive pkgver=0.9.2 -pkgrel=5 +pkgrel=6 pkgdesc="A non-linear video editor for Linux" arch=('i686' 'x86_64') # http://download.kde.org/stable/kdenlive/ diff --git a/community/lilyterm/PKGBUILD b/community/lilyterm/PKGBUILD index ba889afc8..1c44b642d 100644 --- a/community/lilyterm/PKGBUILD +++ b/community/lilyterm/PKGBUILD @@ -1,11 +1,11 @@ -# $Id: PKGBUILD 72085 2012-06-08 12:19:07Z kkeen $ +# $Id: PKGBUILD 80564 2012-11-25 16:09:33Z kkeen $ # Maintainer: Kyle Keen <keenerd@gmail.com> # Contributor: TDY <tdy@gmx.com> # Contributor: DonVla <donvla@users.sourceforge.net> # Contributor: Stefan Husmann <stefan-husmann@t-online.de> pkgname=lilyterm -pkgver=0.9.9.1 +pkgver=0.9.9.2 pkgrel=1 pkgdesc="A light and easy to use libvte based X terminal emulator" arch=('i686' 'x86_64') @@ -15,7 +15,7 @@ license=('GPL3') depends=('vte') makedepends=('gettext' 'intltool' 'pkgconfig>=0.16') source=(http://lilyterm.luna.com.tw/file/$pkgname-$pkgver.tar.gz) -md5sums=('2ba6e18ed7c17463d5451338ca5229a5') +md5sums=('d68dd29ce4894f765adba1efd470f90e') build() { cd "$srcdir/lilyterm-$pkgver" @@ -30,3 +30,4 @@ package() { install -Dm644 COPYING \ "$pkgdir/usr/share/licenses/lilyterm/COPYING" } + diff --git a/community/python-pyzmq/PKGBUILD b/community/python-pyzmq/PKGBUILD index f3d299334..87512ebb3 100644 --- a/community/python-pyzmq/PKGBUILD +++ b/community/python-pyzmq/PKGBUILD @@ -1,20 +1,47 @@ -# $Id: PKGBUILD 78250 2012-10-17 10:27:01Z allan $ +# $Id: PKGBUILD 80562 2012-11-25 15:29:31Z kkeen $ # Maintainer: Kyle Keen <keenerd at gmail dot com> -pkgname=python-pyzmq +pkgbase=python-pyzmq +pkgname=(python2-pyzmq python-pyzmq) pkgver=2.2.0.1 -pkgrel=2 +pkgrel=3 pkgdesc="Python3 bindings for zeromq, written in Cython" arch=(i686 x86_64) url="http://www.zeromq.org/bindings:python" license=('LGPL') depends=(zeromq python) +makedepends=(python python2 zeromq) source=(https://github.com/zeromq/pyzmq/downloads/pyzmq-$pkgver.tar.gz) md5sums=('f2f80709e84c8ac72d6671eee645d804') build() { + cd "$srcdir" + cp -a pyzmq-${pkgver} py2zmq-${pkgver} cd "$srcdir/pyzmq-$pkgver" # py3 errors added in 2.2.0.1 sed -i 's|except socket.error, e:|except socket.error as e:|' zmq/eventloop/ioloop.py sed -i 's|except gevent.Timeout, t:|except gevent.Timeout as t:|' zmq/green/core.py + cd "$srcdir/py2zmq-$pkgver" + sed -i 's|^#!/usr/bin/env python$|&2|' $(find ./ -name '*.py') +} + +package_python2-pyzmq() { + depends=(zeromq python2) + cd "$srcdir/py2zmq-$pkgver" + python2 setup.py install --root="$pkgdir" --optimize=0 +} + +package_python-pyzmq() { + depends=(zeromq python) + cd "$srcdir/pyzmq-$pkgver" python3 setup.py install --root="$pkgdir" --optimize=0 -} +} + +check() +{ + cd "$srcdir/pyzmq-$pkgver" + python3 setup.py build_ext --inplace + python3 setup.py test + cd "$srcdir/py2zmq-$pkgver" + python2 setup.py build_ext --inplace + python2 setup.py test +} diff --git a/community/xlockmore/PKGBUILD b/community/xlockmore/PKGBUILD index a0e8e4380..d2add346c 100644 --- a/community/xlockmore/PKGBUILD +++ b/community/xlockmore/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 77869 2012-10-15 10:22:11Z spupykin $ +# $Id: PKGBUILD 80569 2012-11-25 17:22:16Z spupykin $ # Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> # Maintainer: dorphell <dorphell@archlinux.org> pkgname=xlockmore -pkgver=5.40 -pkgrel=3 +pkgver=5.41 +pkgrel=1 pkgdesc="screen saver / locker for the X Window System" arch=(i686 x86_64) license=('BSD') @@ -14,7 +14,7 @@ url="http://www.tux.org/~bagleyd/xlockmore.html" options=('!makeflags') source=(http://www.tux.org/~bagleyd/xlock/xlockmore-$pkgver/xlockmore-$pkgver.tar.bz2 LICENSE) -md5sums=('47a8e16c485da7b0ebfa3f3e43300189' +md5sums=('a9af1cc72f0fd096ba4bba9097f9291c' 'a64afab4283f53972a6702c2e59850d7') build() { diff --git a/community/zeromq/PKGBUILD b/community/zeromq/PKGBUILD index cea3eba27..0131fe0a4 100644 --- a/community/zeromq/PKGBUILD +++ b/community/zeromq/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 70149 2012-04-30 19:48:46Z kkeen $ +# $Id: PKGBUILD 80560 2012-11-25 15:27:50Z kkeen $ # Maintainer: Kyle Keen <keenerd@gmail.com> pkgname=zeromq -pkgver=2.2.0 -pkgrel=2 +pkgver=3.2.2 +pkgrel=1 pkgdesc="Fast messaging system built on sockets, C and C++ bindings. aka 0MQ, ZMQ." arch=('i686' 'x86_64') url="http://www.zeromq.org" @@ -10,7 +10,7 @@ license=('LGPL') depends=('gcc-libs' 'util-linux') makedepends=('python2') source=(http://download.zeromq.org/$pkgname-$pkgver.tar.gz) -md5sums=('1b11aae09b19d18276d0717b2ea288f6') +md5sums=('df68431d9300da84a1a5f9a2784e33de') build() { cd "$srcdir/$pkgname-$pkgver" diff --git a/core/btrfs-progs/PKGBUILD b/core/btrfs-progs/PKGBUILD index 773a11213..190146fb5 100644 --- a/core/btrfs-progs/PKGBUILD +++ b/core/btrfs-progs/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 169609 2012-10-24 12:46:01Z tomegun $ +# $Id: PKGBUILD 172000 2012-11-26 02:40:48Z dreisner $ # Maintainer: Tom Gundersen <teg@jklm.no> # Contributor: Tobias Powalowski <tpowa@archlinux.org> pkgname=btrfs-progs pkgver=0.19.20121005 -pkgrel=2 +pkgrel=4 pkgdesc="btrfs filesystem utilities" arch=(i686 x86_64) depends=('glibc' 'e2fsprogs') @@ -18,7 +18,7 @@ source=(ftp://ftp.archlinux.org/other/$pkgname/$pkgname-$pkgver.tar.xz initcpio-hook-btrfs) install=btrfs-progs.install md5sums=('7fb014324954ee073b039dc0066de960' - 'd7ad825b0b25f2be73289a20e7afcdb7' + '7241ba3a4286d08da0d50b7176941112' 'b09688a915a0ec8f40e2f5aacbabc9ad') build() { diff --git a/core/btrfs-progs/initcpio-install-btrfs b/core/btrfs-progs/initcpio-install-btrfs index aa06e55ac..f7b0285b3 100644 --- a/core/btrfs-progs/initcpio-install-btrfs +++ b/core/btrfs-progs/initcpio-install-btrfs @@ -3,6 +3,7 @@ build() { add_module btrfs add_binary btrfs + add_binary btrfsck add_runscript } diff --git a/core/cronie/PKGBUILD b/core/cronie/PKGBUILD index 01ebcefa9..86036df8e 100644 --- a/core/cronie/PKGBUILD +++ b/core/cronie/PKGBUILD @@ -2,8 +2,8 @@ # Maintainer: Gaetan Bisson <bisson@archlinux.org> pkgname='cronie' -pkgver=1.4.8 -pkgrel=4 +pkgver=1.4.9 +pkgrel=1 pkgdesc='Daemon that runs specified programs at scheduled times and related tools' url='https://fedorahosted.org/cronie/' license=('custom:BSD') @@ -17,7 +17,7 @@ source=("https://fedorahosted.org/releases/c/r/${pkgname}/${pkgname}-${pkgver}.t 'service' 'pam.d' 'rc.d') -sha1sums=('1d2ce3a6ca2a6f96ff31921e4060be3199dc10f3' +sha1sums=('40405cb30b62bd60323e4daf5198f26f0e65c4c4' '0f279b8fb820340267d578dc85511c980715f91e' '3038a05476829f72fc4918bee9176b273ce10340' '5eff7fb31f6bc0a924243ff046704726cf20c221' diff --git a/extra/e_dbus/PKGBUILD b/extra/e_dbus/PKGBUILD index d06a69482..b308f0d17 100644 --- a/extra/e_dbus/PKGBUILD +++ b/extra/e_dbus/PKGBUILD @@ -1,9 +1,9 @@ -# $Id: PKGBUILD 171664 2012-11-20 21:58:02Z ronald $ +# $Id: PKGBUILD 171993 2012-11-25 21:21:29Z ronald $ # Maintainer: Ronald van Haren <ronald@archlinux.org> # Contributor: Gustavo Sverzut Barbieri <barbieri@gmail.com> pkgname=e_dbus -pkgver=1.7.1 +pkgver=1.7.2 pkgrel=1 pkgdesc="D-Bus integration with Ecore" arch=('i686' 'x86_64') @@ -12,7 +12,7 @@ license=('BSD') depends=('ecore' 'dbus-core') options=('!libtool' '!emptydirs') source=(http://download.enlightenment.org/releases/$pkgname-$pkgver.tar.gz) -sha1sums=('5072699f5ebfaa9b3ffdba3c275e0f569130c2d8') +sha1sums=('119af7ddeabf65e294c998ba27a7486027a5e67c') build() { cd $srcdir/$pkgname-$pkgver @@ -29,7 +29,7 @@ build() { --disable-ehal \ --enable-enotify \ --disable-eofono \ - --disable-eukit \ + --enable-eukit \ --disable-edbus-test \ --disable-edbus-test-client \ --disable-edbus-bluez-test \ diff --git a/extra/ecore/PKGBUILD b/extra/ecore/PKGBUILD index 01eac9aa1..c7c1e0b2e 100644 --- a/extra/ecore/PKGBUILD +++ b/extra/ecore/PKGBUILD @@ -1,9 +1,9 @@ -# $Id: PKGBUILD 171655 2012-11-20 21:49:02Z ronald $ +# $Id: PKGBUILD 171984 2012-11-25 21:16:15Z ronald $ # Maintainer: Ronald van Haren <ronald@archlinux.org> # Contributor: Gustavo Sverzut Barbieri <barbieri@gmail.com> pkgname=ecore -pkgver=1.7.1 +pkgver=1.7.2 pkgrel=1 pkgdesc="OS abstraction layer for e17" arch=('i686' 'x86_64') @@ -14,7 +14,7 @@ depends=('eina' 'evas' 'glib2' 'libxp' 'curl' 'libxss' 'libxtst' makedepends=('subversion') options=('!libtool' '!emptydirs') source=(http://download.enlightenment.org/releases/$pkgname-$pkgver.tar.gz) -sha1sums=('c48f2815cddd735b33f169a703d4baa4dee90b43') +sha1sums=('190f257d7c8c5a233a9e4644a02e9fd6b4898e89') build() { cd $srcdir/$pkgname-$pkgver diff --git a/extra/edje/PKGBUILD b/extra/edje/PKGBUILD index 4d7eade9f..e8149d97a 100644 --- a/extra/edje/PKGBUILD +++ b/extra/edje/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 171861 2012-11-21 20:21:48Z ronald $ +# $Id: PKGBUILD 171989 2012-11-25 21:18:51Z ronald $ # Maintainer: Ronald van Haren <ronald@archlinux.org> # Contributor: Gustavo Sverzut Barbieri <barbieri@gmail.com> pkgname=edje -pkgver=1.7.1 -pkgrel=2 +pkgver=1.7.2 +pkgrel=1 pkgdesc="A graphical design and layout library based on Evas" arch=('i686' 'x86_64') url="http://www.enlightenment.org" @@ -13,16 +13,12 @@ depends=('eina' 'ecore' 'evas' 'eio' 'lua' 'shared-mime-info' 'embryo') optdepends=('python2: inkscape2edc') install=edje.install options=('!libtool' '!emptydirs') -source=(http://download.enlightenment.org/releases/$pkgname-$pkgver.tar.gz - changeset_76449.diff) -sha1sums=('65e983041fa4405f14c23239d35dcce65ac1bbe4' - '032b96634bdd6bacba0b2cec87d648f54f9ebc05') +source=(http://download.enlightenment.org/releases/$pkgname-$pkgver.tar.gz) +sha1sums=('f42b5276840dc2b5cc611150ad72f1a54dae123b') build() { cd $srcdir/$pkgname-$pkgver - patch -Np3 -i ${srcdir}/changeset_76449.diff - export CFLAGS="-fvisibility=hidden -ffunction-sections -fdata-sections ${CFLAGS}" export CXXFLAGS="-fvisibility=hidden -ffunction-sections -fdata-sections ${CXXFLAGS}" export LDFLAGS="-fvisibility=hidden -ffunction-sections -fdata-sections -Wl,--gc-sections -Wl,--as-needed ${LDFLAGS}" diff --git a/extra/eet/PKGBUILD b/extra/eet/PKGBUILD index de1f64e68..c30e44d2c 100644 --- a/extra/eet/PKGBUILD +++ b/extra/eet/PKGBUILD @@ -1,9 +1,9 @@ -# $Id: PKGBUILD 171652 2012-11-20 21:46:42Z ronald $ +# $Id: PKGBUILD 171981 2012-11-25 21:14:16Z ronald $ # Maintainer: Ronald van Haren <ronald.archlinux.org> # Contributor: Ronald van Haren <ronald.archlinux.org> pkgname=eet -pkgver=1.7.1 +pkgver=1.7.2 pkgrel=1 pkgdesc="A data storage and compression library" arch=('i686' 'x86_64') @@ -12,7 +12,7 @@ license=('BSD') depends=('libjpeg>=7' 'openssl' 'eina') options=(!libtool) source=(http://download.enlightenment.org/releases/$pkgname-$pkgver.tar.gz) -sha1sums=('6fec006476f8d0c25f05a02e57f8d27c1c4f74d3') +sha1sums=('8e768421107e48ae55839ba0e3d36440f74e0bf6') build() { cd $srcdir/$pkgname-$pkgver @@ -22,7 +22,10 @@ build() { export LDFLAGS="-fvisibility=hidden -ffunction-sections -fdata-sections -Wl,--gc-sections -Wl,--as-needed ${LDFLAGS}" ./configure --prefix=/usr --enable-openssl --disable-gnutls \ - --enable-amalgamation + --disable-build-examples \ + --disable-doc --disable-install-examples \ + --disable-old-eet-file-format --disable-tests \ + --disable-static make } diff --git a/extra/eeze/PKGBUILD b/extra/eeze/PKGBUILD index c797c733d..4f0f3490c 100644 --- a/extra/eeze/PKGBUILD +++ b/extra/eeze/PKGBUILD @@ -1,9 +1,9 @@ -# $Id: PKGBUILD 171657 2012-11-20 21:53:49Z ronald $ +# $Id: PKGBUILD 171987 2012-11-25 21:17:34Z ronald $ # Maintainer: Ronald van Haren <ronald@archlinux.org> # Contributor: Gustavo Sverzut Barbieri <barbieri@gmail.com> pkgname=eeze -pkgver=1.7.1 +pkgver=1.7.2 pkgrel=1 pkgdesc="Manipulate devices using udev and sysfs" arch=('i686' 'x86_64') @@ -12,7 +12,7 @@ license=('BSD') depends=('ecore' 'eina' 'udev') options=('!libtool' '!emptydirs') source=(http://download.enlightenment.org/releases/$pkgname-$pkgver.tar.gz) -sha1sums=('74c7f85a112bb80e16419a30244c144ebc8b20d7') +sha1sums=('6d5562116c143841485c51278064b772d79bdb27') build() { cd "$srcdir/$pkgname-$pkgver" diff --git a/extra/efreet/PKGBUILD b/extra/efreet/PKGBUILD index 81c5c1002..c65d34c48 100644 --- a/extra/efreet/PKGBUILD +++ b/extra/efreet/PKGBUILD @@ -1,9 +1,9 @@ -# $Id: PKGBUILD 171663 2012-11-20 21:57:20Z ronald $ +# $Id: PKGBUILD 171992 2012-11-25 21:20:53Z ronald $ # Maintainer: Ronald van Haren <ronald@archlinux.org> # Contributor: Gustavo Sverzut Barbieri <barbieri@gmail.com> pkgname=efreet -pkgver=1.7.1 +pkgver=1.7.2 pkgrel=1 pkgdesc="FreeDesktop.Org specifications for e17" arch=('i686' 'x86_64') @@ -12,7 +12,7 @@ license=('BSD') depends=('eina' 'ecore' 'e_dbus') options=('!libtool' '!emptydirs') source=(http://download.enlightenment.org/releases/$pkgname-$pkgver.tar.gz) -sha1sums=('6eda38615fba758338b76962f45c676620715052') +sha1sums=('ec8c8f6504b2205c74e992f8ea911dcb746452fd') build() { cd $srcdir/$pkgname-$pkgver diff --git a/extra/eina/PKGBUILD b/extra/eina/PKGBUILD index a31df47c4..5315ea2af 100644 --- a/extra/eina/PKGBUILD +++ b/extra/eina/PKGBUILD @@ -1,18 +1,18 @@ -# $Id: PKGBUILD 171651 2012-11-20 21:46:00Z ronald $ +# $Id: PKGBUILD 171980 2012-11-25 21:13:37Z ronald $ # Maintainer: Ronald van Haren <ronald.archlinux.org> # Contributor: Ronald van Haren <ronald.archlinux.org> pkgname=eina -pkgver=1.7.1 +pkgver=1.7.2 pkgrel=1 -pkgdesc="E17 file chunk reading/writing library" +pkgdesc="A core data structure and common utility library" arch=('i686' 'x86_64') url="http://www.enlightenment.org" license=('LGPL2.1') depends=('glibc') options=('!libtool' '!emptydirs') -source=(http://download.enlightenment.org/releases/eina-1.7.1.tar.gz) -sha1sums=('6d5d7344aed93a71edf9c7cccf3d3c8bc28043a7') +source=(http://download.enlightenment.org/releases/$pkgname-$pkgver.tar.gz) +sha1sums=('cb56cf9ec28d7cb42ca168d9e261c5f580986c29') build() { cd $srcdir/$pkgname-$pkgver @@ -21,7 +21,26 @@ build() { export CXXFLAGS="-fvisibility=hidden -ffunction-sections -fdata-sections ${CXXFLAGS}" export LDFLAGS="-fvisibility=hidden -ffunction-sections -fdata-sections -Wl,--gc-sections -Wl,--as-needed ${LDFLAGS}" - ./configure --prefix=/usr --enable-amalgamation + ./configure --prefix=/usr --enable-amalgamation \ + --with-internal-maximum-log-level=3 \ + --disable-static \ + --disable-benchmark \ + --disable-install-examples \ + --disable-build-examples \ + --disable-doc \ + --disable-tests \ + --enable-default-mempool \ + --enable-mempool-chained-pool \ + --enable-mempool-pass-through \ + --disable-mempool-buddy \ + --disable-mempool-ememoa-fixed \ + --disable-mempool-ememoa-unknown \ + --disable-mempool-fixed-bitmap \ + --disable-assert \ + --disable-ememoa + +# --disable-mempool-one-big ## this option causes a segfault in 1.7.2 + make } diff --git a/extra/eio/PKGBUILD b/extra/eio/PKGBUILD index a2da1b33b..81c8cf032 100644 --- a/extra/eio/PKGBUILD +++ b/extra/eio/PKGBUILD @@ -1,9 +1,9 @@ -# $Id: PKGBUILD 171656 2012-11-20 21:53:07Z ronald $ +# $Id: PKGBUILD 171985 2012-11-25 21:16:56Z ronald $ # Maintainer: Ronald van Haren <ronald@archlinux.org> # Contributor: Gustavo Sverzut Barbieri <barbieri@gmail.com> pkgname=eio -pkgver=1.7.1 +pkgver=1.7.2 pkgrel=1 pkgdesc="Async IO library using Ecore" arch=('i686' 'x86_64') @@ -12,7 +12,7 @@ license=('BSD') depends=('ecore') options=('!libtool' '!emptydirs') source=(http://download.enlightenment.org/releases/$pkgname-$pkgver.tar.gz) -sha1sums=('ae9d1760c417e37d3df65181df532daa81e51281') +sha1sums=('ce242ab4d3ec2659e4986694e5ed99932d9faa99') build() { cd $srcdir/$pkgname-$pkgver diff --git a/extra/elementary/PKGBUILD b/extra/elementary/PKGBUILD index a8023271f..8c1c5cd65 100644 --- a/extra/elementary/PKGBUILD +++ b/extra/elementary/PKGBUILD @@ -1,9 +1,9 @@ -# $Id: PKGBUILD 171665 2012-11-20 21:58:44Z ronald $ +# $Id: PKGBUILD 171994 2012-11-25 21:22:05Z ronald $ # Maintainer: Ronald van Haren <ronald@archlinux.org> # Contributor: Gustavo Sverzut Barbieri <barbieri@gmail.com> pkgname=elementary -pkgver=1.7.1 +pkgver=1.7.2 pkgrel=1 pkgdesc="Enlightenment's widget set" arch=('i686' 'x86_64') @@ -12,7 +12,7 @@ license=('BSD') depends=('edje' 'e_dbus' 'efreet' 'ethumb' 'eio') options=('!libtool' '!emptydirs') source=(http://download.enlightenment.org/releases/$pkgname-$pkgver.tar.gz) -sha1sums=('3dd6ef268d49883ceaf3c4060154a6ae4a5a6eda') +sha1sums=('59968aee7ae83b1843a4d812140922e95a20b317') build() { cd $srcdir/$pkgname-$pkgver diff --git a/extra/embryo/PKGBUILD b/extra/embryo/PKGBUILD index ffa660d69..0a556c623 100644 --- a/extra/embryo/PKGBUILD +++ b/extra/embryo/PKGBUILD @@ -1,9 +1,9 @@ -# $Id: PKGBUILD 171658 2012-11-20 21:54:30Z ronald $ +# $Id: PKGBUILD 171988 2012-11-25 21:18:10Z ronald $ # Maintainer: Ronald van Haren <ronald.archlinux.org> # Contributor: Ronald van Haren <ronald.archlinux.org> pkgname=embryo -pkgver=1.7.1 +pkgver=1.7.2 pkgrel=1 pkgdesc="implementation of a C like scripting language for e17" arch=('i686' 'x86_64') @@ -12,7 +12,7 @@ license=('BSD') depends=('glibc' 'eina') options=('!libtool') source=(http://download.enlightenment.org/releases/$pkgname-$pkgver.tar.gz) -sha1sums=('de3695ac4d484af903201a3c7120a2d2b9ee9c2a') +sha1sums=('517126e873b8c3af9e0ad966af1de390947f89fd') build() { cd $srcdir/$pkgname-$pkgver @@ -21,8 +21,9 @@ build() { export CXXFLAGS="-fvisibility=hidden -ffunction-sections -fdata-sections ${CXXFLAGS}" export LDFLAGS="-fvisibility=hidden -ffunction-sections -fdata-sections -Wl,--gc-sections -Wl,--as-needed ${LDFLAGS}" - ./configure --prefix=/usr - + ./configure --prefix=/usr \ + --disable-static \ + --disable-doc make } diff --git a/extra/emotion/PKGBUILD b/extra/emotion/PKGBUILD index 3fcaa9d52..3ea81b2ca 100644 --- a/extra/emotion/PKGBUILD +++ b/extra/emotion/PKGBUILD @@ -1,9 +1,9 @@ -# $Id: PKGBUILD 171660 2012-11-20 21:55:53Z ronald $ +# $Id: PKGBUILD 171990 2012-11-25 21:19:38Z ronald $ # Maintainer: Ronald van Haren <ronald@archlinux.org> # Contributor: Gustavo Sverzut Barbieri <barbieri@gmail.com> pkgname=emotion -pkgver=1.7.1 +pkgver=1.7.2 pkgrel=1 pkgdesc="Library to easily integrate media playback into EFL applications" arch=('i686' 'x86_64') @@ -12,7 +12,7 @@ license=('BSD') depends=('gstreamer0.10' 'edje' 'eeze') options=('!libtool' '!emptydirs') source=(http://download.enlightenment.org/releases/$pkgname-$pkgver.tar.gz) -sha1sums=('8d3dd7aa4cd72f9c9c1113bf92f595e4f5fdbf53') +sha1sums=('20304f130e5fb4d81176c442262465cacaa52381') build() { cd $srcdir/$pkgname-$pkgver diff --git a/extra/enlightenment17/PKGBUILD b/extra/enlightenment17/PKGBUILD index 58e174e6a..c606dfdf9 100644 --- a/extra/enlightenment17/PKGBUILD +++ b/extra/enlightenment17/PKGBUILD @@ -1,11 +1,11 @@ -# $Id: PKGBUILD 171863 2012-11-21 20:27:16Z ronald $ +# $Id: PKGBUILD 171995 2012-11-25 21:24:57Z ronald $ # Maintainer: Ronald van Haren <ronald@archlinux.org> # Contributor: Gustavo Sverzut Barbieri <barbieri@gmail.com> pkgname=enlightenment17 _pkgname=enlightenment -pkgver=0.17.0alpha4 -_pkgver=0.17.0-alpha4 +pkgver=0.17.0alpha5 +_pkgver=0.17.0-alpha5 pkgrel=1 pkgdesc="Enlightenment window manager DR17 (aka e17)" arch=('i686' 'x86_64') @@ -20,7 +20,7 @@ options=('!libtool' '!emptydirs') install=enlightenment17.install source=(http://download.enlightenment.org/releases/$_pkgname-$_pkgver.tar.gz 'e-applications.menu' 'quickstart.patch') -sha1sums=('637026cfb0e6bb1e8508fa1693f7e4bbaafae435' +sha1sums=('5d9fce8c1daabbadb5f4db8ea187d7a8340a5e31' 'e08cc63cb8a188a06705b42d03e032b9fcfa7ee5' '3f53931ae86de8fe99e386aeb097521aac0decd8') diff --git a/extra/ethumb/PKGBUILD b/extra/ethumb/PKGBUILD index 7c50cad33..a6f952bef 100644 --- a/extra/ethumb/PKGBUILD +++ b/extra/ethumb/PKGBUILD @@ -1,9 +1,9 @@ -# $Id: PKGBUILD 171662 2012-11-20 21:56:39Z ronald $ +# $Id: PKGBUILD 171991 2012-11-25 21:20:15Z ronald $ # Maintainer: Ronald van Haren <ronald@archlinux.org> # Contributor: Gustavo Sverzut Barbieri <barbieri@gmail.com> pkgname=ethumb -pkgver=1.7.1 +pkgver=1.7.2 pkgrel=1 pkgdesc="Thumbnailing library and D-Bus service using EFL" arch=('i686' 'x86_64') @@ -12,7 +12,7 @@ license=('BSD') depends=('libexif' 'e_dbus' 'emotion') options=('!libtool' '!emptydirs') source=(http://download.enlightenment.org/releases/$pkgname-$pkgver.tar.gz) -sha1sums=('66309a00abee82a6e45f2841e7b40e301e2df3dd') +sha1sums=('16d9a9908fb16df2b06f9084190a828683f72f8f') build() { cd $srcdir/$pkgname-$pkgver diff --git a/extra/evas/PKGBUILD b/extra/evas/PKGBUILD index 95395ec0d..3fbadcb62 100644 --- a/extra/evas/PKGBUILD +++ b/extra/evas/PKGBUILD @@ -1,20 +1,20 @@ -# $Id: PKGBUILD 171654 2012-11-20 21:48:04Z ronald $ +# $Id: PKGBUILD 171983 2012-11-25 21:15:28Z ronald $ # Maintainer: Ronald van Haren <ronald@archlinux.org> # Contributor: Gustavo Sverzut Barbieri <barbieri@gmail.com> pkgname=evas -pkgver=1.7.1 +pkgver=1.7.2 pkgrel=1 pkgdesc="A hardware-accelerated canvas API for X-Windows" arch=('i686' 'x86_64') url="http://www.enlightenment.org" license=('BSD') depends=('eet' 'giflib' 'libpng' 'libjpeg>=7' 'libxrender' 'mesa' - 'fribidi' 'fontconfig' 'freetype2') + 'fribidi' 'fontconfig' 'freetype2' 'harfbuzz') optdepends=("evas_generic_loaders") options=('!libtool' '!emptydirs') source=(http://download.enlightenment.org/releases/$pkgname-$pkgver.tar.gz) -sha1sums=('86e9bb6813eb707ccd162c08f06ca1f5ed78ee75') +sha1sums=('47e43fb21dae959959e9e3e2b1e0868e4c92b63f') build() { cd "$srcdir/$pkgname-$pkgver" @@ -30,9 +30,9 @@ build() { --disable-static \ --enable-fontconfig \ --enable-fribidi \ - --disable-harfbuzz \ + --enable-harfbuzz \ --disable-pixman \ - --enable-buffer \ + --enable-buffer=static \ --disable-gl-sdl \ --enable-fb \ --disable-directfb \ @@ -40,13 +40,15 @@ build() { --disable-wayland-egl \ --disable-sdl-primitive \ --disable-software-xcb \ - --enable-software-xlib \ + --enable-software-xlib=static \ --disable-gl-xcb \ --enable-gl-xlib \ --disable-image-loader-edb \ - --enable-image-loader-gif \ - --disable-image-loader-tiff \ - --disable-image-loader-svg \ + --enable-image-loader-gif=static \ + --enable-image-loader-tiff=static \ + --enable-image-loader-svg=static \ + --enable-image-loader-eet=static \ + --enable-image-loader-generic=static \ --disable-install-examples \ --disable-tests \ --disable-coverage \ diff --git a/extra/evas_generic_loaders/PKGBUILD b/extra/evas_generic_loaders/PKGBUILD index fc9d4808d..56f01eab9 100644 --- a/extra/evas_generic_loaders/PKGBUILD +++ b/extra/evas_generic_loaders/PKGBUILD @@ -1,9 +1,9 @@ -# $Id: PKGBUILD 171653 2012-11-20 21:47:23Z ronald $ +# $Id: PKGBUILD 171982 2012-11-25 21:14:53Z ronald $ # Maintainer: Ronald van Haren <ronald@archlinux.org> # Contributor: Gustavo Sverzut Barbieri <barbieri@gmail.com> pkgname=evas_generic_loaders -pkgver=1.7.1 +pkgver=1.7.2 pkgrel=1 pkgdesc="Additional generic loaders for Evas" arch=('i686' 'x86_64') @@ -12,7 +12,7 @@ license=('BSD') depends=('librsvg' 'gstreamer0.10' 'poppler' 'libraw' 'libspectre' 'eina') options=('!libtool' '!emptydirs') source=(http://download.enlightenment.org/releases/$pkgname-$pkgver.tar.gz) -sha1sums=('f2c82792430c79bfcfbcb879d631c91a01f74f04') +sha1sums=('dc1adc0b604acc3a3ed3260653d7cb485a4c5732') build() { cd "$srcdir/$pkgname-$pkgver" @@ -28,7 +28,8 @@ build() { --enable-spectre \ --enable-libraw \ --enable-svg \ - --enable-gstreamer + --enable-gstreamer \ + --disable-static make } diff --git a/extra/fontforge/PKGBUILD b/extra/fontforge/PKGBUILD index e88630203..5ff2c77db 100644 --- a/extra/fontforge/PKGBUILD +++ b/extra/fontforge/PKGBUILD @@ -1,11 +1,11 @@ -# $Id: PKGBUILD 171504 2012-11-18 08:12:30Z bisson $ +# $Id: PKGBUILD 171997 2012-11-25 21:50:28Z bisson $ # Maintainer: Gaetan Bisson <bisson@archlinux.org> # Contributor: Eric Belanger <eric@archlinux.org> # Contributor: William Rea <sillywilly@gmail.com> pkgname=fontforge pkgver=20120731_b -pkgrel=2 +pkgrel=3 pkgdesc='Outline and bitmap font editor' arch=('i686' 'x86_64') url='http://fontforge.sourceforge.net/' @@ -40,7 +40,9 @@ build() { package() { cd "${srcdir}/${pkgname}-${pkgver//_/-}" make DESTDIR="${pkgdir}" install + install -d "${pkgdir}/usr/share/icons" + cp -a Packaging/icons "${pkgdir}/usr/share/icons/hicolor" + rm -fr "${pkgdir}/usr/share/icons/hicolor/src" install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" install -Dm644 Packaging/fontforge.desktop "${pkgdir}/usr/share/applications/fontforge.desktop" - install -d "${pkgdir}/usr/share/icons/hicolor"; mv Packaging/icons "${pkgdir}/usr/share/icons/hicolor" } diff --git a/extra/gnutls/PKGBUILD b/extra/gnutls/PKGBUILD index cd89bfa18..3a6ea279d 100644 --- a/extra/gnutls/PKGBUILD +++ b/extra/gnutls/PKGBUILD @@ -1,9 +1,9 @@ -# $Id: PKGBUILD 171534 2012-11-18 13:31:11Z andyrtr $ +# $Id: PKGBUILD 171957 2012-11-25 10:16:20Z andyrtr $ # Maintainer: Jan de Groot <jgc@archlinux.org> # Maintainer: Andreas Radke <andyrtr@archlinux.org> pkgname=gnutls -pkgver=3.1.4 +pkgver=3.1.5 pkgrel=1 pkgdesc="A library which provides a secure layer over a reliable transport layer" arch=('i686' 'x86_64') @@ -14,8 +14,8 @@ options=('!libtool' '!zipman') depends=('gcc-libs>=4.7.1-5' 'libtasn1>=3.0' 'readline' 'zlib' 'nettle>=2.4' 'p11-kit>=0.12') makedepends=('valgrind' 'strace' 'datefudge') source=(http://ftp.gnu.org/gnu/gnutls/${pkgname}-${pkgver}.tar.xz{,.sig}) -md5sums=('13901668735923add4470c33cb9d6298' - '340949854804f71987bc00bf50bf684e') +md5sums=('cd4e5a5382b0e0c76c6cffe30d48bbb6' + '3a8526473e0d47401f88d05727949fc9') build() { cd "${srcdir}/${pkgname}-${pkgver}" @@ -29,8 +29,8 @@ build() { check() { cd "${srcdir}/${pkgname}-${pkgver}" - #make -k check # passes all || /bin/true - make -k check || /bin/true # some new tests are broken + make -k check # passes all || /bin/true + #make -k check || /bin/true # some new tests are broken } package() { diff --git a/extra/gparted/PKGBUILD b/extra/gparted/PKGBUILD index be00fc49c..9515cdd67 100644 --- a/extra/gparted/PKGBUILD +++ b/extra/gparted/PKGBUILD @@ -1,16 +1,16 @@ -# $Id: PKGBUILD 168428 2012-10-11 16:00:51Z giovanni $ +# $Id: PKGBUILD 171955 2012-11-25 09:02:02Z giovanni $ # Maintainer: Giovanni Scafora <giovanni@archlinux.org> # Contributor: Andrew Simmons <andrew.simmons@gmail.com> # Contributor: György Balló <ballogy@freestart.hu> pkgname=gparted pkgver=0.14.0 -pkgrel=1 +pkgrel=2 pkgdesc="A Partition Magic clone, frontend to GNU Parted" arch=('i686' 'x86_64') url="http://gparted.sourceforge.net" license=('GPL') -depends=('parted' 'gtkmm' 'hicolor-icon-theme') +depends=('parted' 'gtkmm' 'hicolor-icon-theme' 'gksu') makedepends=('intltool' 'pkg-config' 'gnome-doc-utils') optdepends=('dosfstools: for FAT16 and FAT32 partitions' 'jfsutils: for jfs partitions' @@ -18,14 +18,11 @@ optdepends=('dosfstools: for FAT16 and FAT32 partitions' 'reiserfsprogs: for reiser partitions' 'xfsprogs: for xfs partitions' 'nilfs-utils: for nilfs2 support' - 'polkit: to run gparted directly from menu' 'gpart: for recovering corrupt partition tables' 'mtools') install=gparted.install -source=("http://downloads.sourceforge.net/project/${pkgname}/${pkgname}/${pkgname}-${pkgver}/${pkgname}-${pkgver}.tar.bz2" - 'org.archlinux.pkexec.gparted.policy') -md5sums=('fc3507479e930967a2049c533907384d' - '27c264cfad8fa413d75954dda7a2dd50') +source=("http://downloads.sourceforge.net/project/${pkgname}/${pkgname}/${pkgname}-${pkgver}/${pkgname}-${pkgver}.tar.bz2") +md5sums=('fc3507479e930967a2049c533907384d') build() { cd "${srcdir}/${pkgname}-${pkgver}" @@ -38,16 +35,4 @@ package() { cd "${srcdir}/${pkgname}-${pkgver}" make DESTDIR="${pkgdir}" install - - # Install policy file - install -Dm644 "${srcdir}/org.archlinux.pkexec.gparted.policy" "${pkgdir}/usr/share/polkit-1/actions/org.archlinux.pkexec.gparted.policy" - - # Install launcher script - mkdir -p ${pkgdir}/usr/bin - echo '#!/bin/sh' > ${pkgdir}/usr/bin/gparted-pkexec - echo 'pkexec "/usr/sbin/gparted" "$@"' >> ${pkgdir}/usr/bin/gparted-pkexec - chmod 755 ${pkgdir}/usr/bin/gparted-pkexec - - # Modify desktop file - sed -i -e "s/Exec=.*/Exec=gparted-pkexec/" ${pkgdir}/usr/share/applications/gparted.desktop } diff --git a/extra/kdepim-runtime/PKGBUILD b/extra/kdepim-runtime/PKGBUILD index 3a1f340d9..11e302381 100644 --- a/extra/kdepim-runtime/PKGBUILD +++ b/extra/kdepim-runtime/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 170585 2012-11-09 08:25:22Z andrea $ +# $Id: PKGBUILD 171973 2012-11-25 15:28:09Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> # Contributor: Pierre Schmitz <pierre@archlinux.de> pkgname=kdepim-runtime pkgver=4.9.3 -pkgrel=1 +pkgrel=2 pkgdesc='Extends the functionality of kdepim' arch=('i686' 'x86_64') url='https://projects.kde.org/projects/kde/kdepim-runtime' diff --git a/extra/kdeplasma-addons/PKGBUILD b/extra/kdeplasma-addons/PKGBUILD index 385e97699..5d78ffed9 100644 --- a/extra/kdeplasma-addons/PKGBUILD +++ b/extra/kdeplasma-addons/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 170660 2012-11-09 08:30:09Z andrea $ +# $Id: PKGBUILD 171969 2012-11-25 15:04:14Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> # Contributor: Pierre Schmitz <pierre@archlinux.de> @@ -76,7 +76,7 @@ pkgname=('kdeplasma-addons-applets-bball' 'kdeplasma-addons-wallpapers-virus' 'kdeplasma-addons-wallpapers-weather') pkgver=4.9.3 -pkgrel=1 +pkgrel=2 arch=('i686' 'x86_64') url='http://www.kde.org' license=('GPL' 'LGPL') diff --git a/extra/kdevplatform/PKGBUILD b/extra/kdevplatform/PKGBUILD index 159c5fefc..44bcf0bc5 100644 --- a/extra/kdevplatform/PKGBUILD +++ b/extra/kdevplatform/PKGBUILD @@ -1,11 +1,11 @@ -# $Id: PKGBUILD 170181 2012-11-04 07:58:57Z andrea $ +# $Id: PKGBUILD 171963 2012-11-25 14:40:16Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> # Contributor: Giovanni Scafora <giovanni@archlinux.org> pkgname=kdevplatform pkgver=1.4.1 _pkgver=4.4.1 -pkgrel=1 +pkgrel=2 pkgdesc="A C/C++ development platform for KDE" arch=('i686' 'x86_64') url="http://www.kdevelop.org/" diff --git a/extra/libkgapi/PKGBUILD b/extra/libkgapi/PKGBUILD index 5d65fe003..19ae944c7 100644 --- a/extra/libkgapi/PKGBUILD +++ b/extra/libkgapi/PKGBUILD @@ -1,9 +1,9 @@ -# $Id: PKGBUILD 169492 2012-10-22 07:20:41Z andrea $ +# $Id: PKGBUILD 171965 2012-11-25 14:45:06Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=libkgapi pkgver=0.4.3 -pkgrel=1 +pkgrel=2 pkgdesc="A KDE-based library for accessing various Google services via their public API" url='https://projects.kde.org/projects/extragear/libs/libkgapi' arch=('i686' 'x86_64') diff --git a/extra/libmygpo-qt/PKGBUILD b/extra/libmygpo-qt/PKGBUILD index 9d16abfcb..004ccdaf0 100644 --- a/extra/libmygpo-qt/PKGBUILD +++ b/extra/libmygpo-qt/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 168683 2012-10-14 02:17:22Z andrea $ +# $Id: PKGBUILD 171967 2012-11-25 14:53:14Z andrea $ # Maintainer: # Contributor: Andrea Scarpino <andrea@archlinux.org> pkgname=libmygpo-qt pkgver=1.0.6 -pkgrel=1 +pkgrel=2 pkgdesc="A C++/Qt client library for gpodder.net" arch=('i686' 'x86_64') url="http://wiki.gpodder.org/wiki/Libmygpo-qt" diff --git a/extra/telepathy-kde-auth-handler/PKGBUILD b/extra/telepathy-kde-auth-handler/PKGBUILD index db0b81c89..5332b3170 100644 --- a/extra/telepathy-kde-auth-handler/PKGBUILD +++ b/extra/telepathy-kde-auth-handler/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 168038 2012-10-05 14:00:52Z andrea $ +# $Id: PKGBUILD 171961 2012-11-25 14:29:34Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=telepathy-kde-auth-handler _pkgname=ktp-auth-handler pkgver=0.5.1 -pkgrel=1 +pkgrel=2 pkgdesc="Provide UI/KWallet Integration For Passwords and SSL Errors on Account Connect" arch=('i686' 'x86_64') url="http://community.kde.org/Real-Time_Communication_and_Collaboration" diff --git a/libre/icedove-i18n/PKGBUILD b/libre/icedove-i18n/PKGBUILD index 7d0aa1d8b..d7dbbb211 100644 --- a/libre/icedove-i18n/PKGBUILD +++ b/libre/icedove-i18n/PKGBUILD @@ -2,7 +2,7 @@ # Maintainer: André Silva <emulatorman@lavabit.com> pkgbase=icedove-i18n -pkgver=16.0.2.1 +pkgver=17.0.1 pkgname=('icedove-i18n-ar' 'icedove-i18n-ast' 'icedove-i18n-be' @@ -473,58 +473,58 @@ package_icedove-i18n-zh-tw() { cd ${srcdir} install -Dm644 icedove-i18n-$pkgver-zh-TW.xpi "${pkgdir}/$_path/langpack-zh-TW@icedove.mozilla.org.xpi" } -md5sums=('9c4a59c7da66e2354164c3a5bc7af21d' - '1cc30ebb50c2ff783b07060fe14b4260' - 'bd2a994f1b0aa8d71b7f432f582e08b5' - '1b7d5f199b714e5d235cdadc89882c82' - 'a5945807be0c8e205cf0f4be41d1f301' - 'ec323d1ea8372afa236ed82d1f38bf62' - '04985b1bb7a7255970de1c9a0d6b6c37' - '143d16162ded3cf1ed99731e0ccd4cbc' - 'ec04abda3d2eafd5cccad44b843d2191' - 'a1273c8ba22f38f0304d44f52095541d' - '06ff7794da97ef3cad3ccfde2a229db3' - 'bb873b67b1e65eccf186622c1315e14b' - '87ea24ef462fed8a3f6e74e25b210607' - 'c7363deffa336c8470884ca7500ff583' - '64d7b4490bbe3cdb25cc8633d46761d4' - '1bc28fd43fbe54185e0f34161e2bb856' - 'f90cedcac1daa1a7be9abc9a960bbde0' - '326a063d3b5d0aff735a145dcbb51e01' - '86ff061d2346b75b85e59374328d20f8' - '83969caa207fa30dd016fee6bd2aa543' - '68d50a5c356d62514bfa99b04776ed7c' - 'f5ffaa9dc1da2412faf78a4920d19278' - 'a76518ba680a2fc263de99099e0e1c53' - 'e88f3c95cf4e51035429307f4f6a4eb5' - 'c2573d6f463cdd69f6b37612f9ae997a' - '8b17220cd897ea744978752b2ef11ab0' - '4ee8b3d2e4fd7bf3353a910d76cbbaf8' - 'f87d295343ecf5b1e21abe430b157c42' - '74ce04669c8acf87a8b8878fb2653dc4' - '5ffc16a8c701c8c2c133775a815d1e67' - '6d6c1a7e31bf6301ee690509881a4395' - '41c970fd7ef2224a63de7d562ce71b39' - 'a4243831934d31aad648221190fe2b42' - '6c1c023d67a35e4ed3a792bb365f360e' - '0045f4bceaaddd57fa6c0b895a34feff' - '18b359d881127defff20e549bb0c5b80' - 'a295fbd180dfe3e009218aa2775ce332' - '6beaeaf5bf67321fdef0ee6de968edaa' - '92b29bc95a476d9cb75c5df075f353b9' - 'fa757024edb1f1f794f77ecee8c07706' - '8f21adb897625a2a27a040a8e88bed3f' - '26b5ab6bb93b454702179c48c9da2e5b' - 'f319345cdc962919830792644c66165d' - '7f32885e485beab6822eb9ec0025bae7' - 'edf019e6332d099d67b68f1f90da680c' - 'e21836a77f143457ac7912ee0e6386dc' - '24adc86b3fb496f3d27944a5027d5fa9' - '7192e7c7d80cc8eb85e1f57defa0496c' - 'f449ced45bb084ce0adda6df89b1ee31' - '25e3ce79fc2c1e2164ce04821e683a29' - '615138d3ed86797a168a0d5784f0c6fe' - '7c83196da5ee2d01444450cca620c29d' - '265f8447eee6e6b41ab8fdcf1a1dc154' - '9889d38b50a7e2d095582ebf75cab9e2' - '12b882986056bca65fdfc90806daf87b') +md5sums=('15ededc2d92b095297c32682b1ea5556' + '21b066c8006bd37843873a0950b4dd17' + 'c531b388e48a2b964091cdabdc6ea843' + '02dd4a828cd62d3704b329cc0269c754' + 'aa058920d2e9e590a5f43371ec0c758a' + 'd2f6d97e73956b929812efc26cbb8a00' + '422ba52f874f376d97a74c79047bb07e' + 'ebc329dbdfd9533f237731f4ab13c0c7' + '372f5b371ef045fd9b1d87d0f5a02f1b' + 'f4833810e478a319360b144d1e4e5dd0' + 'dcd04ada6fc38908cd1a0b4c640d49b6' + 'f5805071746aaac4c977dc6104d81524' + '55fb0a3581661c71e8a8b4fdaa5f92c6' + 'f4f24e1b0a53d0dca2b8bef384173682' + '3beb64fc06de87f5b70f2ba08ab3359e' + '62d4a011ccdfdf4f24063caec6e881b2' + '230373349ab450147ff19f4afebde2ea' + 'c7eff1f39bf536a4da476d77a3e0a450' + '06a7c3143b493c96628e93a58f25550c' + '5017bdacb7ee1430fa73b9b7ca657497' + 'c7aa6657da6f2cd9dc90c323c6676bf9' + 'ee9a365773d95e7c31de8089aef0d847' + 'feebccca9f6eec21b81e26e1804b0140' + '65339aa37592def5a0fa6e5aaf416de5' + '64980f1186f4045574babcde77f11529' + '20f25644314ad2801db9156531ea290c' + 'fd7c8318ab9d946a49ef2873de0d8e0a' + 'd6612e0b47375fdb34341ed8386a621f' + '89295ed1c51be054d571609209641fa1' + 'b35e49dc04bf9134262ae7db57b0311b' + '15487ee85959928fa0b85fe99e3c7a82' + 'ed555ce92aa37545b4f62ea4bdca9187' + '5d83088d4bcd042acfecbb0a85215548' + '1f1a513aac9b1d3cbc6dce3e948c33ca' + '1b955a8dd7690991d06ced05fc2f1fae' + '1785e4bb27d71cc0226eab506f81669a' + 'fd9a007c75b8738f3b2e167087655526' + '6578b879762db29b40e1723ba59043d6' + 'afe8fff2c2707724d2ef5536180a0907' + 'b8befd7b5e781403c3c0797633f0f92b' + '2097f7218575732e448662b3d1d1a351' + '82c29288a115668f25d01d0e7175419f' + '8398d4a711dd73302b790a2b99d9e78f' + '1ed5155cd7f3be98b25d94a126d043bb' + '899f04c2629e648be0f32f1ec04b9b56' + '4af5b8985fdb1858c0c25b8452ca72fc' + '43189f0ad649e00cedc608c6197a6426' + 'aeed4c0b7e536c0b4f9b36a5dc3d1d63' + 'a8bbc0c2acf8defcf9c200cacd243536' + '9c35cfcbf9d66aa42abfaae4aa4a6937' + 'b19268362d73d7e3f66ff7f7f21ab6bd' + 'c45de9ad905bbdda655227e77b09a1ba' + '430bb7d6dc4037666fb452e5c2c03c83' + '6280326bb1fb7c2ddd5c3b5a5360651b' + '571688d2bce6597ae76a7ead8929420c') diff --git a/libre/icedove-libre/Icedove-branding.patch b/libre/icedove-libre/Icedove-branding.patch new file mode 100644 index 000000000..751305147 --- /dev/null +++ b/libre/icedove-libre/Icedove-branding.patch @@ -0,0 +1,37 @@ +From: =?UTF-8?q?Guido=20G=C3=BCnther?= <agx@sigxcpu.org> +Date: Sat, 24 Nov 2012 11:36:16 +0100 +Subject: Icedove branding + +--- + mail/app/application.ini | 2 +- + mail/confvars.sh | 4 ++-- + 2 files changed, 3 insertions(+), 3 deletions(-) + +diff --git a/mail/app/application.ini b/mail/app/application.ini +index 8380eb7..12902c2 100644 +--- a/mail/app/application.ini ++++ b/mail/app/application.ini +@@ -4,7 +4,7 @@ + + #filter substitution + [App] +-Name=Thunderbird ++Name=Icedove + Version=@APP_VERSION@ + BuildID=@GRE_BUILDID@ + #ifdef MOZ_SOURCE_REPO +diff --git a/mail/confvars.sh b/mail/confvars.sh +index 5c34d70..395bb87 100755 +--- a/mail/confvars.sh ++++ b/mail/confvars.sh +@@ -3,8 +3,8 @@ + # License, v. 2.0. If a copy of the MPL was not distributed with this + # file, You can obtain one at http://mozilla.org/MPL/2.0/. + +-MOZ_APP_BASENAME=Thunderbird +-MOZ_APP_NAME=thunderbird ++MOZ_APP_BASENAME=Icedove ++MOZ_APP_NAME=icedove + MOZ_UPDATER=1 + MOZ_THUNDERBIRD=1 + MOZ_CHROME_FILE_FORMAT=omni diff --git a/libre/icedove-libre/PKGBUILD b/libre/icedove-libre/PKGBUILD index 6ec577f58..d61b756f5 100644 --- a/libre/icedove-libre/PKGBUILD +++ b/libre/icedove-libre/PKGBUILD @@ -3,7 +3,7 @@ # We're getting this from Debian Experimental _debname=icedove -_debver=16.0.2 +_debver=17.0 _debrel=1 _debrepo=http://ftp.debian.org/debian/pool/main/ debfile() { echo $@|sed -r 's@(.).*@\1/&/&@'; } @@ -11,7 +11,7 @@ debfile() { echo $@|sed -r 's@(.).*@\1/&/&@'; } _pkgname=${_debname} pkgname=${_debname}-libre pkgver=${_debver}.${_debrel} -pkgrel=3 +pkgrel=1 pkgdesc="A libre version of Debian Icedove, the Standalone Mail/News reader based on Mozilla Thunderbird." arch=('i586' 'i686' 'x86_64' 'mips64el') license=('GPL2' 'MPL' 'LGPL') @@ -30,16 +30,18 @@ source=("${_debrepo}/`debfile ${_debname}`_${_debver}.orig.tar.bz2" vendor.js makefile.patch branding.patch - ${_pkgname}.desktop) + ${_pkgname}.desktop + Icedove-branding.patch) options=(!emptydirs) -md5sums=('a3724f40d28014acf593528bb8a048f0' - '53d62a4841d7989d1f6d1b04929394b4' +md5sums=('f011e0308a0758df772638836fb03709' + '8534a19b46ce21d80fce16b50f1f37bd' 'd6d58d3104a44624e0a3d227cdf1c211' '476ec205162340fb0679f522c9d31c3b' '4eecc4fc5aafaf0da651a09eadc90bee' 'c4ed43e85945e180a89cce03e45ec62c' '126b1446212396c33220936c01d9592d' - 'e785e0c267f4435ae1a9aa0b03bcacfb') + 'e785e0c267f4435ae1a9aa0b03bcacfb' + 'ea5f7a06967f561d47d7e5c35b23de6f') build() { export QUILT_PATCHES=debian/patches @@ -58,10 +60,15 @@ build() { for i in 48x48 64x64; do install -Dm644 "debian/app-icons/${_pkgname}${i/x*/}.png" "${srcdir}/${DEBIAN_BUILD}/mail/branding/${_pkgname}/content/icon${i/x*/}.png" done + + # This patch has a orthographic issue ("Icdove" instead of "Icedove") in MOZ_APP_BASENAME line for confvars.sh + rm -v debian/patches/debian-hacks/Icedove-branding.patch || true + quilt push -av patch -Np1 -i "${srcdir}/makefile.patch" # small fix patch -Np1 -i "${srcdir}/branding.patch" # fixing branding + patch -Np1 -i "${srcdir}/Icedove-branding.patch" # debian patch fixed version cp "${srcdir}/mozconfig" .mozconfig make -j1 -f client.mk build MOZ_MAKE_FLAGS="${MAKEFLAGS}" diff --git a/x86_64/polipo/PKGBUILD b/x86_64/polipo/PKGBUILD new file mode 100644 index 000000000..5611e1ec4 --- /dev/null +++ b/x86_64/polipo/PKGBUILD @@ -0,0 +1,54 @@ +# $Id: PKGBUILD 80565 2012-11-25 16:48:33Z ttoepper $ +# Maintainer: Thorsten Töpper <atsutane-tu@freethoughts.de> +# Contributor: Jelle van der Waa <jelle vdwaa nl> +# Contributor: Thomas Holmquist <thomas@vorget.com> +# Contributor: Jan Boehringer <ja(a)bm-boehringer.de> +# Contributor: Alex Griffin <griffin.aj(a)gmail.com> + +pkgname=polipo +pkgver=1.0.4.1 +pkgrel=8 +pkgdesc="A small and fast caching web proxy." +arch=('i686' 'x86_64') +url="http://www.pps.jussieu.fr/~jch/software/polipo/" +license=('GPL') +depends=('bash') +makedepends=('texinfo') +install=polipo.install +source=("http://freehaven.net/~chrisd/polipo/polipo-$pkgver.tar.gz" + "polipo.rc.d" "polipo.conf.d" "polipo.service") +md5sums=('bfc5c85289519658280e093a270d6703' + '7406aad26807fb3a4e5f7b01ecb97a59' + '685aa0c6070dee11c701932d23afcc6a' + 'a7cf48637a8ec8fe8d88754c399380c0') + +build() { + cd "$srcdir/$pkgname-$pkgver" + + make +} + +package() { + cd "$srcdir/$pkgname-$pkgver" + make PREFIX="$pkgdir/usr" \ + MANDIR="$pkgdir/usr/share/man" \ + INFODIR="$pkgdir/usr/share/info" \ + LOCAL_ROOT="$pkgdir/usr/share/polipo/www" \ + DISK_CACHE_ROOT="$pkgdir/var/cache/polipo" \ + install + + + # install config files + install -Dm 644 config.sample $pkgdir/etc/polipo/config.sample + install -Dm 644 forbidden.sample $pkgdir/etc/polipo/forbidden.sample + + # install license + install -Dm644 COPYING $pkgdir/usr/share/licenses/polipo/LICENSE + + # install daemon scripts / cron + install -Dm 755 $srcdir/polipo.rc.d $pkgdir/etc/rc.d/polipo + install -Dm 644 $srcdir/polipo.service $pkgdir/usr/lib/systemd/system/polipo.service + install -Dm 644 $srcdir/polipo.conf.d $pkgdir/etc/conf.d/polipo.conf +} + +# vim:set ts=2 sw=2 et: diff --git a/x86_64/polipo/polipo.conf.d b/x86_64/polipo/polipo.conf.d new file mode 100644 index 000000000..dc879d32b --- /dev/null +++ b/x86_64/polipo/polipo.conf.d @@ -0,0 +1,4 @@ +# +# Parameters to be passed to polipo +# +POLIPO_ARGS="daemonise=true logFile=\"/var/log/polipo.log\"" diff --git a/x86_64/polipo/polipo.install b/x86_64/polipo/polipo.install new file mode 100644 index 000000000..bacc46377 --- /dev/null +++ b/x86_64/polipo/polipo.install @@ -0,0 +1,25 @@ +infodir=/usr/share/info +filelist=(polipo.info) + +post_install() { + [ -x usr/bin/install-info ] || return 0 + for file in ${filelist[@]}; do + install-info $infodir/$file $infodir/dir 2> /dev/null + done + install -d /var/cache/polipo 2> /dev/null + touch /var/log/polipo.log 2> /dev/null + chown -R nobody:nobody /var/cache/polipo /var/log/polipo.log 2> /dev/null +} + +post_upgrade() { + post_install $1 +} + +pre_remove() { + [ -x usr/bin/install-info ] || return 0 + for file in ${filelist[@]}; do + install-info --delete $infodir/$file $infodir/dir 2> /dev/null + done +} + +# vim:set ts=2 sw=2 et: diff --git a/x86_64/polipo/polipo.rc.d b/x86_64/polipo/polipo.rc.d new file mode 100644 index 000000000..0333ded57 --- /dev/null +++ b/x86_64/polipo/polipo.rc.d @@ -0,0 +1,71 @@ +#!/bin/bash + +daemon_name=polipo + +. /etc/rc.conf +. /etc/rc.d/functions +. /etc/conf.d/$daemon_name.conf + +get_pid() { + pidof -o %PPID $daemon_name +} + +case "$1" in + start) + stat_busy "Starting $daemon_name daemon" + + PID=$(get_pid) + if [[ -z $PID ]]; then + [[ -f /run/$daemon_name.pid ]] && + rm -f /run/$daemon_name.pid + # RUN + su -c "/usr/bin/$daemon_name ${POLIPO_ARGS}" -s /bin/sh - nobody + # + if [[ $? -gt 0 ]]; then + stat_fail + exit 1 + else + echo $(get_pid) > /run/$daemon_name.pid + add_daemon $daemon_name + stat_done + fi + else + stat_fail + exit 1 + fi + ;; + + stop) + stat_busy "Stopping $daemon_name daemon" + PID=$(get_pid) + # KILL + [[ -n $PID ]] && kill $PID &> /dev/null + # + if [[ $? -gt 0 ]]; then + stat_fail + exit 1 + else + rm -f /run/$daemon_name.pid &> /dev/null + rm_daemon $daemon_name + stat_done + fi + ;; + + restart) + $0 stop + sleep 3 + $0 start + ;; + + status) + stat_busy "Checking $daemon_name status"; + ck_status $daemon_name + ;; + + *) + echo "usage: $0 {start|stop|restart|status}" +esac + +exit 0 + +# vim:set ts=2 sw=2 et: diff --git a/x86_64/polipo/polipo.service b/x86_64/polipo/polipo.service new file mode 100644 index 000000000..59aeb9f3b --- /dev/null +++ b/x86_64/polipo/polipo.service @@ -0,0 +1,10 @@ +[Unit] +Description=Polipo Proxy Server + +[Service] +Type=forking +ExecStart=/usr/bin/polipo daemonise=true logFile="/var/log/polipo.log" +User=nobody + +[Install] +WantedBy=multi-user.target |