diff options
Diffstat (limited to 'extra')
38 files changed, 385 insertions, 362 deletions
diff --git a/extra/check/PKGBUILD b/extra/check/PKGBUILD index f05cffea2..a02aed5a2 100644 --- a/extra/check/PKGBUILD +++ b/extra/check/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 200362 2013-11-27 06:20:00Z heftig $ +# $Id: PKGBUILD 210085 2014-04-09 18:36:39Z anatolik $ # Maintainer: Jan Alexander Steffens (heftig) <jan.steffens@gmail.com> # Contributor: Jaroslav Lichtblau <dragonlord@aur.archlinux.org> # Contributor: Jeremy Cowgar <jeremy@cowgar.com> pkgname=check -pkgver=0.9.11 +pkgver=0.9.12 pkgrel=1 pkgdesc="A unit testing framework for C" arch=('i686' 'x86_64') @@ -13,7 +13,7 @@ license=('LGPL') install=$pkgname.install depends=('awk') source=(http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz) -md5sums=('fd5a03979bcab9fb80ba005b55f54178') +md5sums=('46fe540d1a03714c7a1967dbc6d484e7') build() { cd $pkgname-$pkgver @@ -34,4 +34,7 @@ package() { # get rid of the package's info directory, # install-info adds entries for us at install-time rm "$pkgdir/usr/share/info/dir" + + # svn log file is too big + rm "$pkgdir"/usr/share/doc/check/*ChangeLog* } diff --git a/extra/dnsmasq/PKGBUILD b/extra/dnsmasq/PKGBUILD index 8a5619890..951a21273 100644 --- a/extra/dnsmasq/PKGBUILD +++ b/extra/dnsmasq/PKGBUILD @@ -1,35 +1,31 @@ -# $Id: PKGBUILD 201313 2013-12-08 20:12:10Z dreisner $ +# $Id: PKGBUILD 210146 2014-04-10 11:59:27Z dreisner $ # Maintainer: Dave Reisner <dreisner@archlinux.org> # Contributor: Paul Mattal <paul@archlinux.org> # Contributor: Tom Newsom <Jeepster@gmx.co.uk> pkgname=dnsmasq -pkgver=2.68 -pkgrel=1 +pkgver=2.69 +pkgrel=2 pkgdesc="Lightweight, easy to configure DNS forwarder and DHCP server" url="http://www.thekelleys.org.uk/dnsmasq/doc.html" arch=('i686' 'x86_64') license=('GPL') -depends=('glibc' 'dbus-core') +depends=('glibc' 'libdbus' 'gmp' 'nettle') install=$pkgname.install backup=('etc/dnsmasq.conf') -source=("http://www.thekelleys.org.uk/$pkgname/$pkgname-$pkgver.tar.xz" +source=("http://www.thekelleys.org.uk/$pkgname/$pkgname-$pkgver.tar.xz"{,.asc} 'dnsmasq.service') -md5sums=('fec885ba0a9df0f7d8f2e44db48f19ae' +md5sums=('c5a1152e646eb54db4f33f8e0deee180' + 'SKIP' '7ac45726cabef4145db40d758cc7fedf') -prepare() { - cd "$pkgname-$pkgver" - - # link against dbus. this ugliness is needed to ensure that the - # compile time opts report properly on startup. yuck. - sed -i '/^#ifdef DNSMASQ_COMPILE_OPTS/ i#define HAVE_DBUS' src/config.h -} - build() { cd "$pkgname-$pkgver" - make "CFLAGS=$CPPFLAGS $CFLAGS" "LDFLAGS=$LDFLAGS" + make \ + CFLAGS="$CPPFLAGS $CFLAGS" \ + LDFLAGS="$LDFLAGS" \ + COPTS="-DHAVE_DNSSEC -DHAVE_DBUS" } package() { @@ -40,6 +36,10 @@ package() { install -Dm644 "dbus/dnsmasq.conf" "$pkgdir"/etc/dbus-1/system.d/dnsmasq.conf install -Dm644 "dnsmasq.conf.example" "$pkgdir"/etc/dnsmasq.conf install -Dm644 "$srcdir/dnsmasq.service" "$pkgdir"/usr/lib/systemd/system/dnsmasq.service + + # DNSSEC setup + sed -i 's,%%PREFIX%%,/usr,' "$pkgdir"/etc/dnsmasq.conf + install -Dm644 "trust-anchors.conf" "$pkgdir"/usr/share/dnsmasq/trust-anchors.conf } # vim: ts=2 sw=2 et ft=sh diff --git a/extra/ffmpeg/0001-libx265-Support-API-version-9.patch b/extra/ffmpeg/0001-libx265-Support-API-version-9.patch new file mode 100644 index 000000000..3b6a6e24c --- /dev/null +++ b/extra/ffmpeg/0001-libx265-Support-API-version-9.patch @@ -0,0 +1,50 @@ +From d67dbfa7c195fabce706ca03c439419450f9bd8a Mon Sep 17 00:00:00 2001 +From: Derek Buitenhuis <derek.buitenhuis@gmail.com> +Date: Thu, 6 Mar 2014 20:01:17 +0000 +Subject: [PATCH] libx265: Support API version 9 + +Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com> +--- + configure | 4 ++-- + libavcodec/libx265.c | 10 +++++----- + 2 files changed, 7 insertions(+), 7 deletions(-) + +diff --git a/configure b/configure +index d3f5f33..4d7382a 100755 +--- a/configure ++++ b/configure +@@ -3980,8 +3980,8 @@ enabled libx264 && require libx264 x264.h x264_encoder_encode -lx264 & + { check_cpp_condition x264.h "X264_BUILD >= 118" || + die "ERROR: libx264 version must be >= 0.118."; } + enabled libx265 && require_pkg_config x265 x265.h x265_encoder_encode && +- { check_cpp_condition x265.h "X265_BUILD >= 7" || +- die "ERROR: libx265 version must be >= 7."; } ++ { check_cpp_condition x265.h "X265_BUILD >= 9" || ++ die "ERROR: libx265 version must be >= 9."; } + enabled libxavs && require libxavs xavs.h xavs_encoder_encode -lxavs + enabled libxvid && require libxvid xvid.h xvid_global -lxvidcore + enabled openssl && { check_lib openssl/ssl.h SSL_library_init -lssl -lcrypto || +diff --git a/libavcodec/libx265.c b/libavcodec/libx265.c +index 961fc74..a6e4193 100644 +--- a/libavcodec/libx265.c ++++ b/libavcodec/libx265.c +@@ -121,11 +121,11 @@ static av_cold int libx265_encode_init(AVCodecContext *avctx) + av_reduce(&sar_num, &sar_den, + avctx->sample_aspect_ratio.num, + avctx->sample_aspect_ratio.den, 4096); +- ctx->params->bEnableVuiParametersPresentFlag = 1; +- ctx->params->bEnableAspectRatioIdc = 1; +- ctx->params->aspectRatioIdc = 255; +- ctx->params->sarWidth = sar_num; +- ctx->params->sarHeight = sar_den; ++ ctx->params->vui.bEnableVuiParametersPresentFlag = 1; ++ ctx->params->vui.bEnableAspectRatioIdc = 1; ++ ctx->params->vui.aspectRatioIdc = 255; ++ ctx->params->vui.sarWidth = sar_num; ++ ctx->params->vui.sarHeight = sar_den; + + if (x265_max_bit_depth == 8) + ctx->params->internalBitDepth = 8; +-- +1.7.10.4 + diff --git a/extra/ffmpeg/PKGBUILD b/extra/ffmpeg/PKGBUILD index d334d5934..5edf28227 100644 --- a/extra/ffmpeg/PKGBUILD +++ b/extra/ffmpeg/PKGBUILD @@ -1,12 +1,12 @@ -# $Id: PKGBUILD 208905 2014-03-28 15:46:19Z bpiotrowski $ +# $Id: PKGBUILD 210158 2014-04-10 14:28:28Z bpiotrowski $ # Maintainer: Ionut Biru <ibiru@archlinux.org> # Maintainer: Bartłomiej Piotrowski <bpiotrowski@archlinux.org> # Contributor: Tom Newsom <Jeepster@gmx.co.uk> # Contributor: Paul Mattal <paul@archlinux.org> pkgname=ffmpeg -pkgver=2.2 -pkgrel=2 +pkgver=2.2.1 +pkgrel=1 epoch=1 pkgdesc='Complete and free Internet live audio and video broadcasting solution' arch=('i686' 'x86_64') @@ -19,9 +19,16 @@ depends=( 'v4l-utils' 'x264' 'xvidcore' 'zlib' 'x265' ) makedepends=('libvdpau' 'yasm') -source=(http://ffmpeg.org/releases/$pkgname-$pkgver.tar.bz2{,.asc}) -md5sums=('744febca199548c9393b1f1ed05ccdd8' - 'SKIP') +source=(http://ffmpeg.org/releases/$pkgname-$pkgver.tar.bz2{,.asc} + 0001-libx265-Support-API-version-9.patch) +md5sums=('b8a1ee4964c2638f46fcc803ed453818' + 'SKIP' + '4cbf9b13dc013e96be36445b4a2bfdac') + +prepare() { + cd $pkgname-$pkgver + patch -p1 -i ../0001-libx265-Support-API-version-9.patch +} build() { cd $pkgname-$pkgver diff --git a/extra/fftw/PKGBUILD b/extra/fftw/PKGBUILD index 08943a759..34f6569b0 100644 --- a/extra/fftw/PKGBUILD +++ b/extra/fftw/PKGBUILD @@ -1,19 +1,19 @@ -# $Id: PKGBUILD 197299 2013-10-25 01:41:11Z allan $ +# $Id: PKGBUILD 209927 2014-04-09 07:41:45Z ronald $ # Maintainer: Ronald van Haren <ronald.archlinux.org> # Contributor: damir <damir@archlinux.org> pkgname=fftw -pkgver=3.3.3 -pkgrel=2 +pkgver=3.3.4 +pkgrel=1 pkgdesc="A library for computing the discrete Fourier transform (DFT)" arch=('i686' 'x86_64') license=('GPL2') url="http://www.fftw.org/" -depends=('glibc' 'bash') +depends=('bash' 'gcc-libs') makedepends=('gcc-fortran') source=("http://www.fftw.org/${pkgname}-${pkgver}.tar.gz") install=fftw.install -sha1sums=('11487180928d05746d431ebe7a176b52fe205cf9') +sha1sums=('fd508bac8ac13b3a46152c54b7ac885b69734262') # notes: # http://www.fftw.org/fftw2_doc/fftw_6.html#SEC69 @@ -33,11 +33,12 @@ build() { CFLAGS+=" -O3 -fomit-frame-pointer -malign-double -fstrict-aliasing -ffast-math" CONFIGURE="./configure F77=gfortran --prefix=/usr \ - --enable-shared --enable-threads" + --enable-shared --enable-threads \ + --enable-openmp" # build double precision cd ${srcdir}/${pkgname}-${pkgver}-double - $CONFIGURE --enable-sse2 + $CONFIGURE --enable-sse2 --enable-avx make # build & install long double precission @@ -47,7 +48,7 @@ build() { # build & install single precision cd ${srcdir}/${pkgname}-${pkgver}-single - $CONFIGURE --enable-float --enable-sse + $CONFIGURE --enable-float --enable-sse --enable-avx make } diff --git a/extra/gcin/PKGBUILD b/extra/gcin/PKGBUILD index 6a827b46e..921dfb695 100644 --- a/extra/gcin/PKGBUILD +++ b/extra/gcin/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 193564 2013-08-24 05:33:50Z bisson $ +# $Id: PKGBUILD 210176 2014-04-10 16:42:10Z bisson $ # Maintainer: Gaetan Bisson <bisson@archlinux.org> # Contributor: Andreas Radke <andyrtr@archlinux.org> # Contributor: damir <damir@archlinux.org> pkgname=gcin -pkgver=2.8.1 +pkgver=2.8.2 pkgrel=1 pkgdesc='Input method server supporting various input methods' url='http://hyperrate.com/dir.php?eid=67' @@ -16,8 +16,8 @@ optdepends=('qt4: support for qt4 input method' 'gtk3: support for gtk3 input method' 'anthy: support for anthy input method' 'libchewing: support for chewing input method') -source=("http://www.csie.nctu.edu.tw/~cp76/gcin/download/${pkgname}-${pkgver}.tar.xz") -sha1sums=('fc7323f1e0558675a94e91de2166c484c72d464d') +source=("http://hyperrate.com/gcin-source/${pkgname}-${pkgver}.tar.xz") +sha1sums=('d045f5369cca83c131abf4f871601cd226a6aaec') install=install diff --git a/extra/git/PKGBUILD b/extra/git/PKGBUILD index 111f36cda..bfea77083 100644 --- a/extra/git/PKGBUILD +++ b/extra/git/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 208306 2014-03-20 13:23:19Z dan $ +# $Id: PKGBUILD 210112 2014-04-10 01:31:51Z dan $ # Maintainer: Dan McGee <dan@archlinux.org> pkgname=git -pkgver=1.9.1 +pkgver=1.9.2 pkgrel=1 pkgdesc="the fast distributed version control system" arch=(i686 x86_64) @@ -107,6 +107,6 @@ package() { install -D -m 644 "$srcdir"/git-daemon.socket "$pkgdir"/usr/lib/systemd/system/git-daemon.socket } -md5sums=('d65ca55041898c226e532425fc673035' +md5sums=('437c32078b5b5b229f1c10f6474eae78' '042524f942785772d7bd52a1f02fe5ae' 'f67869315c2cc112e076f0c73f248002') diff --git a/extra/glpk/PKGBUILD b/extra/glpk/PKGBUILD index 730111e79..4247c5b4d 100644 --- a/extra/glpk/PKGBUILD +++ b/extra/glpk/PKGBUILD @@ -1,18 +1,18 @@ -# $Id: PKGBUILD 199812 2013-11-17 05:33:51Z allan $ +# $Id: PKGBUILD 209928 2014-04-09 07:42:53Z ronald $ # Maintainer: Ronald van Haren <ronald.archlinux.org> # Contributor: bzklrm <bzklrm@gmail.com> # Additional contributors Senjin, Xavier, dundee pkgname=glpk -pkgver=4.52 -pkgrel=2 +pkgver=4.54 +pkgrel=1 pkgdesc="GNU Linear Programming Kit : solve LP, MIP and other problems." arch=('i686' 'x86_64') url="http://www.gnu.org/software/glpk/glpk.html" license=('GPL') depends=('glibc') source=(http://ftp.gnu.org/gnu/glpk/${pkgname}-${pkgver}.tar.gz{,.sig}) -sha1sums=('44b30b0de777a0a07e00615ac6791af180ff4d2c' +sha1sums=('69d9c5d83271d34de1a58d2de2f7ababab975492' 'SKIP') build() { cd "${srcdir}/${pkgname}-${pkgver}" @@ -20,7 +20,7 @@ build() { ./configure --prefix=/usr if [ "$CARCH" == "x86_64" ]; then - make CFLAGS="$CFLAGS -fPIC" + make CFLAGS="$CFLAGS -fPIC" else make fi diff --git a/extra/kdenetwork-kdnssd/PKGBUILD b/extra/kdenetwork-kdnssd/PKGBUILD deleted file mode 100644 index 5da7333a6..000000000 --- a/extra/kdenetwork-kdnssd/PKGBUILD +++ /dev/null @@ -1,30 +0,0 @@ -# $Id: PKGBUILD 207056 2014-03-06 12:07:41Z andrea $ -# Maintainer: Andrea Scarpino <andrea@archlinux.org> - -pkgname=kdenetwork-kdnssd -pkgver=4.12.3 -pkgrel=1 -pkgdesc='Monitors the network for DNS-SD services' -url='https://projects.kde.org/projects/kde/kdenetwork/kdnssd' -arch=('i686' 'x86_64') -license=('GPL' 'LGPL' 'FDL') -groups=('kde' 'kdenetwork') -depends=('kdebase-runtime') -makedepends=('cmake' 'automoc4') -source=("http://download.kde.org/stable/${pkgver}/src/kdnssd-${pkgver}.tar.xz") -sha1sums=('6751b009cafa5eececf7c4f9ed6a2d6c59a78c3a') - -build() { - mkdir build - cd build - cmake ../kdnssd-${pkgver} \ - -DCMAKE_BUILD_TYPE=Release \ - -DKDE4_BUILD_TESTS=OFF \ - -DCMAKE_INSTALL_PREFIX=/usr - make -} - -package() { - cd build - make DESTDIR=$pkgdir install -} diff --git a/extra/libchewing/PKGBUILD b/extra/libchewing/PKGBUILD index e78344048..283087fb1 100644 --- a/extra/libchewing/PKGBUILD +++ b/extra/libchewing/PKGBUILD @@ -1,21 +1,22 @@ -# $Id: PKGBUILD 198138 2013-10-30 13:01:13Z allan $ +# $Id: PKGBUILD 210188 2014-04-11 03:45:09Z bisson $ # Maintainer: Gaetan Bisson <bisson@archlinux.org> # Contributor: whisky <archlinux.cle(at)gmail.com> # Contributor: damir <damir@archlinux.org> pkgname=libchewing -pkgver=0.3.5 +pkgver=0.4.0 pkgrel=1 pkgdesc='Intelligent Chinese phonetic input method' url='http://chewing.im/' arch=('i686' 'x86_64') license=('GPL') -source=("http://chewing.googlecode.com/files/${pkgname}-${pkgver}.tar.bz2") -sha1sums=('5ee3941f0f62fa14fbda53e1032970b04a7a88b7') +depends=('sqlite') +source=("https://github.com/chewing/${pkgname}/releases/download/v${pkgver}/${pkgname}-${pkgver}.tar.bz2") +sha1sums=('7409b0a6753e14510c96574714dcec86c7b10138') build() { cd "${srcdir}/${pkgname}-${pkgver}" - ./configure --prefix=/usr --disable-static + ./configure --prefix=/usr make } diff --git a/extra/libdrm/PKGBUILD b/extra/libdrm/PKGBUILD index 84713ea18..ec72b2811 100644 --- a/extra/libdrm/PKGBUILD +++ b/extra/libdrm/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 204511 2014-01-21 18:58:35Z lcarlier $ +# $Id: PKGBUILD 210192 2014-04-11 05:47:52Z lcarlier $ # Maintainer: Jan de Groot <jgc@archlinux.org> pkgname=libdrm -pkgver=2.4.52 +pkgver=2.4.53 pkgrel=1 pkgdesc="Userspace interface to kernel DRM services" arch=(i686 x86_64) @@ -14,7 +14,7 @@ replaces=('libdrm-new' 'libdrm-nouveau') url="http://dri.freedesktop.org/" source=(http://dri.freedesktop.org/$pkgname/$pkgname-$pkgver.tar.bz2 COPYING) -sha256sums=('fa693c2f1f61befcefbdcc396673e38481110bac9db610afa4b8afb2be0218c1' +sha256sums=('1b0c28fd2f2b92d2df0a73d1aed88f43cb0dee1267aea6bc52ccb5fca5757a08' '9631d4f694952e3e6ae5a05534c2e93e994e47d3413677a3a00e45c8cef6db93') build() { diff --git a/extra/libjpeg-turbo/PKGBUILD b/extra/libjpeg-turbo/PKGBUILD index 75dbd544a..59e3c1d33 100644 --- a/extra/libjpeg-turbo/PKGBUILD +++ b/extra/libjpeg-turbo/PKGBUILD @@ -1,30 +1,23 @@ -# $Id: PKGBUILD 201420 2013-12-11 04:56:37Z bisson $ +# $Id: PKGBUILD 210178 2014-04-10 16:48:10Z bisson $ # Maintainer: Gaetan Bisson <bisson@archlinux.org> # Contributor: Allan McRae <allan@archlinux.org> # Contributor: Simone Sclavi 'Ito' <darkhado@gmail.com> pkgname=libjpeg-turbo -pkgver=1.3.0 -pkgrel=4 +pkgver=1.3.1 +pkgrel=1 pkgdesc='JPEG image codec with accelerated baseline compression and decompression' url='http://libjpeg-turbo.virtualgl.org/' license=('GPL' 'custom') arch=('i686' 'x86_64') makedepends=('nasm') -source=("http://downloads.sourceforge.net/project/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz" - 'cve-2013-6629.patch') -sha1sums=('1792c964b35604cebd3a8846f1ca6de5976e9c28' - '10f2cf2276244d2b94d35bfca24639bc83ce1185') +source=("http://downloads.sourceforge.net/project/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.gz") +sha1sums=('5fa19252e5ca992cfa40446a0210ceff55fbe468') provides=('libjpeg=8.0.2' 'turbojpeg') conflicts=('libjpeg' 'turbojpeg') replaces=('libjpeg' 'turbojpeg') -prepare() { - cd "${srcdir}/${pkgname}-${pkgver}" - patch -i ../cve-2013-6629.patch # FS#38094 -} - build() { cd "${srcdir}/${pkgname}-${pkgver}" ./configure --prefix=/usr --with-jpeg8 --mandir=/usr/share/man diff --git a/extra/libjpeg-turbo/cve-2013-6629.patch b/extra/libjpeg-turbo/cve-2013-6629.patch deleted file mode 100644 index 7fb02730f..000000000 --- a/extra/libjpeg-turbo/cve-2013-6629.patch +++ /dev/null @@ -1,36 +0,0 @@ -Index: jdmarker.c -=================================================================== ---- jdmarker.c (revision 1088) -+++ jdmarker.c (revision 1089) -@@ -304,7 +304,7 @@ - /* Process a SOS marker */ - { - INT32 length; -- int i, ci, n, c, cc; -+ int i, ci, n, c, cc, pi; - jpeg_component_info * compptr; - INPUT_VARS(cinfo); - -@@ -348,6 +348,13 @@ - - TRACEMS3(cinfo, 1, JTRC_SOS_COMPONENT, cc, - compptr->dc_tbl_no, compptr->ac_tbl_no); -+ -+ /* This CSi (cc) should differ from the previous CSi */ -+ for (pi = 0; pi < i; pi++) { -+ if (cinfo->cur_comp_info[pi] == compptr) { -+ ERREXIT1(cinfo, JERR_BAD_COMPONENT_ID, cc); -+ } -+ } - } - - /* Collect the additional scan parameters Ss, Se, Ah/Al. */ -@@ -465,6 +472,8 @@ - for (i = 0; i < count; i++) - INPUT_BYTE(cinfo, huffval[i], return FALSE); - -+ MEMZERO(&huffval[count], (256 - count) * SIZEOF(UINT8)); -+ - length -= count; - - if (index & 0x10) { /* AC table definition */ diff --git a/extra/libreoffice/PKGBUILD b/extra/libreoffice/PKGBUILD index 73bbaa83e..b458c97a2 100644 --- a/extra/libreoffice/PKGBUILD +++ b/extra/libreoffice/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 208822 2014-03-27 14:43:11Z fyan $ +# $Id: PKGBUILD 210194 2014-04-11 09:13:27Z bpiotrowski $ # Maintainer: AndyRTR <andyrtr@archlinux.org> # Maintainer: Bartłomiej Piotrowski <nospam@bpiotrowski.pl> @@ -18,24 +18,27 @@ pkgname=('libreoffice-common' 'libreoffice-postgresql-connector' 'libreoffice-extension-wiki-publisher' 'libreoffice-extension-nlpsolver') # svn up -r 142692 (last one with all extensions built) -_LOver=4.2.2.1 -pkgver=4.2.2 -pkgrel=5 +_LOver=4.2.3.3 +pkgver=4.2.3 +pkgrel=1 arch=('i686' 'x86_64') license=('LGPL3') url="http://www.libreoffice.org/" makedepends=( # makedepends - 'sane' 'perl-archive-zip' 'zip' 'unzip' 'unixodbc' - 'apache-ant' 'gperf' 'kdelibs' 'gconf' 'gtk3' 'cppunit' - 'beanshell2' 'vigra' 'clucene' 'junit' 'libmythes' 'libwpg' 'imagemagick' - 'glu' 'mesa' 'gst-plugins-base-libs' 'java-environment' 'postgresql-libs' 'doxygen' - 'clucene' 'bluez-libs' 'harfbuzz-icu' 'gdb' + 'sane' 'perl-archive-zip' 'zip' 'unzip' 'unixodbc' 'apache-ant' + 'gperf' 'kdelibs' 'gconf' 'gtk3' 'cppunit' 'beanshell2' 'vigra' + 'clucene' 'junit' 'libmythes' 'libwpg' 'mesa' 'clucene' + 'java-environment' 'postgresql-libs' 'bluez-libs' 'harfbuzz-icu' + 'gdb' 'doxygen' # the runtime dependencies - "curl>=7.20.0" "hunspell>=1.2.8" "python>=3.3" 'libwpd>=0.9.2' 'libwps' 'libxaw' "neon>=0.28.6" - 'pango' 'nspr' 'libjpeg' 'libxrandr' 'libgl' 'dbus-glib' 'libxslt' 'librsvg' "icu>=52.1" - 'redland' 'hyphen' 'lpsolve' 'gcc-libs' 'sh' 'libtextcat' 'graphite' 'lcms2' 'poppler>=0.24.0' - 'libvisio' 'libetonyek' 'libodfgen' #'telepathy-glib' - 'hicolor-icon-theme' 'desktop-file-utils' 'shared-mime-info' 'gtk2' 'orbit2' 'translate-toolkit' 'xdg-utils' + "curl>=7.20.0" "hunspell>=1.2.8" "python>=3.4" 'libwpd>=0.9.2' + 'libwps' 'libxaw' "neon>=0.28.6" 'pango' 'nspr' 'libjpeg' 'libxrandr' + 'libgl' 'dbus-glib' 'libxslt' 'librsvg' "icu>=52.1" 'redland' + 'hyphen' 'lpsolve' 'gcc-libs' 'sh' 'libtextcat' 'graphite' + 'lcms2' 'poppler>=0.24.0' 'libvisio' 'libetonyek' 'libodfgen' + 'hicolor-icon-theme' 'desktop-file-utils' 'shared-mime-info' + 'gtk2' 'orbit2' 'translate-toolkit' 'xdg-utils' #'telepathy-glib' + 'gstreamer0.10-base' 'gst-plugins-base-libs' 'glu' 'ttf-liberation' # to satisfy regression tests 'git') # there's only one single static library in libreoffice-sdk, @@ -125,11 +128,11 @@ noextract=(15cb8c0803064faef0c4ddf5bc5ca279-boost_1_54_0.tar.bz2 libatomic_ops-7_2d.zip libe-book-0.0.3.tar.bz2 libabw-0.0.2.tar.bz2) -md5sums=('b8b00aac99c056e8908c1a89ad999f4b' +md5sums=('0347f2c919e809b3f3794ed509caa902' 'SKIP' - '3c11900dce8a5e520abc8350045b2407' + '11a2381971a7444fe5154ab9ae9578d6' 'SKIP' - '5ac66bd46617d00f759602c00e755ea0' + '21f4ff9b4e49c2b1a6464b4dae6cfb42' 'SKIP' '15cb8c0803064faef0c4ddf5bc5ca279' '1f24ab1d39f4a51faf22244c94a6203f' @@ -312,12 +315,14 @@ build() { #} package_libreoffice-common() { - - pkgdesc="common files for LibreOffice - a productivity suite that is compatible with other major office suites" + pkgdesc="Common files for LibreOffice - a productivity suite that is compatible with other major office suites" install=libreoffice-common.install - depends=('libreoffice-langpack' "hunspell>=1.2.8" "python>=3.3" "neon>=0.28.6" 'dbus-glib' 'librsvg' 'libcups' - 'nss' 'libsm' 'redland' 'hyphen' 'graphite' "icu>=52.1" 'clucene' 'lcms2' "poppler>=0.24.0" #'telepathy-glib' # (calc telepathy-glib libtubeslo.so) - 'libodfgen' 'libvisio' 'harfbuzz-icu' 'hicolor-icon-theme' 'desktop-file-utils' 'shared-mime-info' 'xdg-utils') + depends=('libreoffice-langpack' "hunspell>=1.2.8" "python>=3.3" "neon>=0.28.6" + 'dbus-glib' 'librsvg' 'libcups' 'nss' 'libsm' 'redland' 'hyphen' + 'graphite' "icu>=52.1" 'clucene' 'lcms2' "poppler>=0.24.0" + #'telepathy-glib' # (calc telepathy-glib libtubeslo.so) + 'libodfgen' 'libvisio' 'harfbuzz-icu' 'hicolor-icon-theme' 'glu' + 'desktop-file-utils' 'shared-mime-info' 'xdg-utils' 'gstreamer0.10-base') optdepends=('libreoffice-langpack: additional language support' 'java-runtime: adds java support' 'pstoedit: translates PostScript and PDF graphics into other vector formats' @@ -520,7 +525,6 @@ package_libreoffice-impress() { pkgdesc="Presentation Application for LibreOffice." install=libreoffice-impress.install depends=('libreoffice-common' 'libetonyek') - optdepends=('glu: for the OGLTrans extension') groups=('libreoffice') replaces=('libreoffice') diff --git a/extra/libseccomp/PKGBUILD b/extra/libseccomp/PKGBUILD deleted file mode 100644 index fa8af7a77..000000000 --- a/extra/libseccomp/PKGBUILD +++ /dev/null @@ -1,24 +0,0 @@ -# Maintainer: Daniel Micay <danielmicay@gmail.com> -# Contributor: Patryk Kowalczyk < patryk at kowalczyk dot ws> - -pkgname=libseccomp -pkgver=2.1.1 -pkgrel=1 -pkgdesc='Enhanced seccomp library' -arch=('i686' 'x86_64') -license=('LGPL2.1') -url="http://sourceforge.net/projects/libseccomp/" -depends=('glibc') -source=("http://downloads.sourceforge.net/project/$pkgname/$pkgname-$pkgver/$pkgname-$pkgver.tar.gz") - -build() { - cd $pkgname-$pkgver - ./configure --prefix=/usr - make -} - -package() { - cd $pkgname-$pkgver - make DESTDIR="$pkgdir" install -} -md5sums=('1f41207b29e66a7e5e375dd48a64de85') diff --git a/extra/mpd/PKGBUILD b/extra/mpd/PKGBUILD index 03e6389e5..5937f6fe5 100644 --- a/extra/mpd/PKGBUILD +++ b/extra/mpd/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 206590 2014-03-02 16:53:57Z bisson $ +# $Id: PKGBUILD 210174 2014-04-10 16:28:59Z bisson $ # Maintainer: Gaetan Bisson <bisson@archlinux.org> # Contributor: Angel Velasquez <angvp@archlinux.org> # Contributor: Andrea Scarpino <andrea@archlinux.org> @@ -6,7 +6,7 @@ # Contributor: Ben <ben@benmazer.net> pkgname=mpd -pkgver=0.18.9 +pkgver=0.18.10 pkgrel=1 pkgdesc='Flexible, powerful, server-side application for playing music' url='http://www.musicpd.org/' @@ -18,7 +18,7 @@ makedepends=('doxygen') source=("http://www.musicpd.org/download/${pkgname}/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz"{,.sig} 'tmpfiles.d' 'conf') -sha1sums=('70e96857d68c0191bbf721aa08a8b5f4ec8120c7' 'SKIP' +sha1sums=('0923318cfda033bb4f89c219e6effa9d5b330c1d' 'SKIP' 'f4d5922abb69abb739542d8e93f4dfd748acdad7' '67c145c046cddd885630d72ce8ebe71f8321ff3b') diff --git a/extra/nginx/PKGBUILD b/extra/nginx/PKGBUILD new file mode 100644 index 000000000..5f73a0c88 --- /dev/null +++ b/extra/nginx/PKGBUILD @@ -0,0 +1,100 @@ +# $Id: PKGBUILD 210208 2014-04-11 19:22:18Z bpiotrowski $ +# Maintainer: Bartłomiej Piotrowski <bpiotrowski@archlinux.org> +# Maintainer: Sébastien Luttringer +# Contributor: Sergej Pupykin <pupykin.s+arch@gmail.com> +# Contributor: Miroslaw Szot <mss@czlug.icis.pcz.pl> +# Contributor: Daniel Micay <danielmicay@gmail.com> + +pkgname=nginx +pkgver=1.4.7 +pkgrel=2 +pkgdesc='Lightweight HTTP server and IMAP/POP3 proxy server' +arch=('i686' 'x86_64') +url='http://nginx.org' +license=('custom') +depends=('pcre' 'zlib' 'openssl') +backup=('etc/nginx/fastcgi.conf' + 'etc/nginx/fastcgi_params' + 'etc/nginx/koi-win' + 'etc/nginx/koi-utf' + 'etc/nginx/mime.types' + 'etc/nginx/nginx.conf' + 'etc/nginx/scgi_params' + 'etc/nginx/uwsgi_params' + 'etc/nginx/win-utf' + 'etc/logrotate.d/nginx') +install=nginx.install +source=($url/download/nginx-$pkgver.tar.gz + service + logrotate) +md5sums=('aee151d298dcbfeb88b3f7dd3e7a4d17' + '5c0cd4fd992596938b2d4fd98b2bac41' + '3441ce77cdd1aab6f0ab7e212698a8a7') + +build() { + cd $pkgname-$pkgver + ./configure \ + --prefix=/etc/nginx \ + --conf-path=/etc/nginx/nginx.conf \ + --sbin-path=/usr/bin/nginx \ + --pid-path=/run/nginx.pid \ + --lock-path=/run/lock/nginx.lock \ + --user=http \ + --group=http \ + --http-log-path=/var/log/nginx/access.log \ + --error-log-path=stderr \ + --http-client-body-temp-path=/var/lib/nginx/client-body \ + --http-proxy-temp-path=/var/lib/nginx/proxy \ + --http-fastcgi-temp-path=/var/lib/nginx/fastcgi \ + --http-scgi-temp-path=/var/lib/nginx/scgi \ + --http-uwsgi-temp-path=/var/lib/nginx/uwsgi \ + --with-imap \ + --with-imap_ssl_module \ + --with-ipv6 \ + --with-pcre-jit \ + --with-file-aio \ + --with-http_dav_module \ + --with-http_gunzip_module \ + --with-http_gzip_static_module \ + --with-http_realip_module \ + --with-http_spdy_module \ + --with-http_ssl_module \ + --with-http_stub_status_module \ + --with-http_addition_module \ + --with-http_degradation_module \ + --with-http_flv_module \ + --with-http_mp4_module \ + --with-http_secure_link_module \ + --with-http_sub_module + + make +} + +package() { + cd $pkgname-$pkgver + make DESTDIR="$pkgdir" install + + sed -e 's|\<user\s\+\w\+;|user html;|g' \ + -e '44s|html|/usr/share/nginx/html|' \ + -e '54s|html|/usr/share/nginx/html|' \ + -i "$pkgdir"/etc/nginx/nginx.conf + + rm "$pkgdir"/etc/nginx/*.default + + install -d "$pkgdir"/var/lib/nginx + install -dm700 "$pkgdir"/var/lib/nginx/proxy + + chmod 750 "$pkgdir"/var/log/nginx + chown http:log "$pkgdir"/var/log/nginx + + install -d "$pkgdir"/usr/share/nginx + mv "$pkgdir"/etc/nginx/html/ "$pkgdir"/usr/share/nginx + + install -Dm644 ../logrotate "$pkgdir"/etc/logrotate.d/nginx + install -Dm644 ../service "$pkgdir"/usr/lib/systemd/system/nginx.service + install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE + + rmdir "$pkgdir"/run +} + +# vim:set ts=2 sw=2 et: diff --git a/extra/nginx/logrotate b/extra/nginx/logrotate new file mode 100644 index 000000000..e0fa9ec4c --- /dev/null +++ b/extra/nginx/logrotate @@ -0,0 +1,9 @@ +/var/log/nginx/*log { + missingok + create 640 http log + sharedscripts + compress + postrotate + test ! -r /var/run/nginx.pid || kill -USR1 `cat /var/run/nginx.pid` + endscript +} diff --git a/extra/nginx/nginx.install b/extra/nginx/nginx.install new file mode 100644 index 000000000..7c4adf14b --- /dev/null +++ b/extra/nginx/nginx.install @@ -0,0 +1,21 @@ +post_upgrade() { + if (( $(vercmp $2 1.2.7-4) <= 0 )); then + chmod 750 var/log/nginx + chown http:log var/log/nginx + fi + if (( $(vercmp $2 1.2.1-2) <= 0 )); then + echo ' >>> Since 1.2.1-2 several changes has been made in package:' + echo ' - *.conf files have been moved to /etc/nginx' + echo ' - /etc/conf.d/nginx has been removed' + echo ' Main configuration file is set to /etc/nginx/nginx.conf' + echo ' - access.log and error.log can be found in /var/log/nginx by default' + echo ' - bundled *.html files have been moved to /usr/share/nginx/html' + echo ' - /etc/nginx/{html,logs} symbolic links and *.default files have been removed' + fi + if (( $(vercmp $2 1.4.2-4) < 0 )); then + echo 'Nginx now includes only upstream bundled modules.' + echo 'Thus, passenger module support was dropped.' + fi +} + +# vim:set ts=4 sw=4 et: diff --git a/extra/nginx/service b/extra/nginx/service new file mode 100644 index 000000000..a50eb4000 --- /dev/null +++ b/extra/nginx/service @@ -0,0 +1,15 @@ +[Unit] +Description=A high performance web server and a reverse proxy server +After=syslog.target network.target + +[Service] +Type=forking +PIDFile=/run/nginx.pid +ExecStartPre=/usr/bin/nginx -t -q -g 'pid /run/nginx.pid; daemon on; master_process on;' +ExecStart=/usr/bin/nginx -g 'pid /run/nginx.pid; daemon on; master_process on;' +ExecReload=/usr/bin/nginx -g 'pid /run/nginx.pid; daemon on; master_process on;' -s reload +ExecStop=/usr/bin/nginx -g 'pid /run/nginx.pid;' -s quit +PrivateDevices=yes + +[Install] +WantedBy=multi-user.target diff --git a/extra/nss/PKGBUILD b/extra/nss/PKGBUILD index c28b21493..239b798bf 100644 --- a/extra/nss/PKGBUILD +++ b/extra/nss/PKGBUILD @@ -1,14 +1,14 @@ -# $Id: PKGBUILD 208903 2014-03-28 15:28:03Z pierre $ +# $Id: PKGBUILD 209931 2014-04-09 10:55:38Z jgc $ # Maintainer: Jan de Groot <jgc@archlinux.org> pkgname=nss -pkgver=3.15.5 -pkgrel=2 +pkgver=3.16 +pkgrel=1 pkgdesc="Mozilla Network Security Services" arch=(i686 x86_64) url="http://www.mozilla.org/projects/security/pki/nss/" license=('MPL' 'GPL') -_nsprver=4.10.2 +_nsprver=4.10.4 depends=("nspr>=${_nsprver}" 'sqlite' 'zlib' 'sh') makedepends=('perl') options=('!strip' '!makeflags' 'staticlibs') @@ -16,7 +16,7 @@ source=(ftp://ftp.mozilla.org/pub/security/nss/releases/NSS_${pkgver//./_}_RTM/s nss.pc.in nss-config.in ssl-renegotiate-transitional.patch) -sha1sums=('c8d34a33cf5782d35df1aa78cdb38707d7bfc5fe' +sha1sums=('981dc6ef2f1e69ec7e2b277ce27c7005e9837f95' 'aa5b2c0aa38d3c1066d511336cf28d1333e3aebd' 'cb744cc3e56b604e4754bc3c7d9f25bb9a0a136c' '8a964a744ba098711b80c0d279a2993524e8eb92') diff --git a/extra/octave/PKGBUILD b/extra/octave/PKGBUILD index e759630ab..2f984e532 100644 --- a/extra/octave/PKGBUILD +++ b/extra/octave/PKGBUILD @@ -1,24 +1,24 @@ -# $Id: PKGBUILD 204926 2014-01-31 13:36:05Z ronald $ +# $Id: PKGBUILD 209929 2014-04-09 07:42:54Z ronald $ # Maintainer: Ronald van Haren <ronald.archlinux.org> # Contributor : shining <shiningxc.at.gmail.com> # Contributor : cyberdune <cyberdune@gmail.com> pkgname=octave -pkgver=3.8.0 -pkgrel=2 +pkgver=3.8.1 +pkgrel=1 pkgdesc="A high-level language, primarily intended for numerical computations." arch=('i686' 'x86_64') url="http://www.octave.org" license=('GPL') -depends=('fftw' 'curl' 'graphicsmagick' 'glpk' 'hdf5' 'qhull' 'fltk' 'arpack' 'glu') +depends=('fftw' 'curl' 'graphicsmagick' 'glpk' 'hdf5' 'qhull' 'fltk' 'arpack' 'glu') makedepends=('gcc-fortran' 'texlive-core' 'suitesparse' 'texinfo' 'gnuplot' 'qscintilla') optdepends=('texinfo: for help-support in octave' 'gnuplot: alternative plotting' - 'qscintilla: experimental gui') + 'qscintilla: experimental gui') source=(ftp://ftp.gnu.org/gnu/octave/octave-$pkgver.tar.bz2{,.sig}) options=('!emptydirs') install=octave.install -sha1sums=('ebb03485b72d97fa01f105460f81016f94680f77' +sha1sums=('2951aeafe58d562672feb80dd8c3cfe0643a5087' 'SKIP') build() { diff --git a/extra/openmpi/PKGBUILD b/extra/openmpi/PKGBUILD index 5c4ba5d9d..1742d1ff6 100644 --- a/extra/openmpi/PKGBUILD +++ b/extra/openmpi/PKGBUILD @@ -1,17 +1,19 @@ -# $Id: PKGBUILD 197773 2013-10-29 21:29:45Z eric $ +# $Id: PKGBUILD 210083 2014-04-09 17:50:07Z anatolik $ # Maintainer: Stéphane Gaudreault <stephane@archlinux.org> + pkgname=openmpi -pkgver=1.6.5 +pkgver=1.8 pkgrel=1 pkgdesc="High performance message passing library (MPI)" arch=('i686' 'x86_64') url="http://www.open-mpi.org" license=('custom') -depends=('gcc-fortran' 'openssh' 'valgrind' 'libltdl' 'hwloc') -makedepends=('inetutils') +depends=('libltdl' 'hwloc') +makedepends=('inetutils' 'valgrind' 'gcc-fortran') +optdepends=('gcc-fortran: fortran support') options=('staticlibs') -source=(http://www.open-mpi.org/software/ompi/v1.6/downloads/${pkgname}-${pkgver}.tar.bz2) -sha1sums=('93859d515b33dd9a0ee6081db285a2d1dffe21ce') +source=(http://www.open-mpi.org/software/ompi/v1.8/downloads/${pkgname}-${pkgver}.tar.bz2) +sha1sums=('d32961b83c689e086cede6c964b312e1f3d174f0') build() { cd ${pkgname}-${pkgver} @@ -21,7 +23,7 @@ build() { ./configure --prefix=/usr \ --sysconfdir=/etc/${pkgname} \ - --enable-mpi-f90 \ + --enable-mpi-fortran=all \ --libdir=/usr/lib/${pkgname} \ --with-threads=posix \ --enable-smp-locks \ @@ -52,7 +54,6 @@ package() { mv "${pkgdir}"/usr/bin/otfinfo{,mpi} # Remove dangling symlink and useless file - rm "${pkgdir}"/usr/share/man/man1/orteCC.1 rm "${pkgdir}"/usr/share/vampirtrace/config.log install -d -m 755 "${pkgdir}"/etc/ld.so.conf.d diff --git a/extra/oxygen-gtk2/PKGBUILD b/extra/oxygen-gtk2/PKGBUILD index e82967d29..d458e6852 100644 --- a/extra/oxygen-gtk2/PKGBUILD +++ b/extra/oxygen-gtk2/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 208162 2014-03-18 11:27:59Z andrea $ +# $Id: PKGBUILD 210148 2014-04-10 12:04:17Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> # Contributor: birdflesh <antkoul at gmail dot com> pkgname=oxygen-gtk2 -pkgver=1.4.4 -pkgrel=2 +pkgver=1.4.5 +pkgrel=1 pkgdesc="Port of the default KDE widget theme (Oxygen) to GTK2" arch=('i686' 'x86_64') url='https://projects.kde.org/projects/playground/artwork/oxygen-gtk/' @@ -13,16 +13,11 @@ depends=('gtk2') conflicts=('oxygen-gtk') replaces=('oxygen-gtk') makedepends=('cmake') -source=("http://download.kde.org/stable/${pkgname}/${pkgver}/src/${pkgname}-${pkgver}.tar.bz2" - 'kdebug-331879.patch') -md5sums=('dd55d704f97e0c9e2fcc0d4d88d2eb1d' - '1900b38a9e5fbfe681aa3074fd95b64e') +source=("http://download.kde.org/stable/${pkgname}/${pkgver}/src/${pkgname}-${pkgver}.tar.bz2") +md5sums=('b368d074cb13a6020e6ed43016866d93') prepare() { mkdir build - - cd ${pkgname}-${pkgver} - patch -p1 -i "${srcdir}"/kdebug-331879.patch } build() { diff --git a/extra/oxygen-gtk2/kdebug-331879.patch b/extra/oxygen-gtk2/kdebug-331879.patch deleted file mode 100644 index f52a1f8ed..000000000 --- a/extra/oxygen-gtk2/kdebug-331879.patch +++ /dev/null @@ -1,35 +0,0 @@ -From: Hugo Pereira Da Costa <hugo.pereira@free.fr> -Date: Sun, 09 Mar 2014 12:00:33 +0000 -Subject: make sure parent is registered to innerShadowEngine before registering child -X-Git-Url: http://quickgit.kde.org/?p=oxygen-gtk.git&a=commitdiff&h=b39931fa3ad7a2756bcb1494d5c3559513406ce2 ---- -make sure parent is registered to innerShadowEngine before registering child -CCBUG: 331879 ---- - - ---- a/src/oxygenstylewrapper.cpp -+++ b/src/oxygenstylewrapper.cpp -@@ -1669,7 +1669,10 @@ - } - - // register to inner shadow engine -- if( shadow == GTK_SHADOW_IN && gtk_scrolled_window_get_shadow_type( GTK_SCROLLED_WINDOW( widget ) ) == GTK_SHADOW_IN ) -+ if( -+ shadow == GTK_SHADOW_IN && -+ gtk_scrolled_window_get_shadow_type( GTK_SCROLLED_WINDOW( widget ) ) == GTK_SHADOW_IN && -+ Style::instance().animations().innerShadowEngine().contains( widget ) ) - { Style::instance().animations().innerShadowEngine().registerChild( widget, gtk_bin_get_child( GTK_BIN( widget ) ) ); } - - } else if( -@@ -2074,7 +2077,8 @@ - if( gtk_scrolled_window_get_shadow_type( scrolledWindow ) != GTK_SHADOW_IN ) - { - gtk_scrolled_window_set_shadow_type( scrolledWindow, GTK_SHADOW_IN ); -- Style::instance().animations().innerShadowEngine().registerChild( child, gtk_bin_get_child( GTK_BIN( child ) ) ); -+ if( Style::instance().animations().innerShadowEngine().contains( child ) ) -+ { Style::instance().animations().innerShadowEngine().registerChild( child, gtk_bin_get_child( GTK_BIN( child ) ) ); } - } - - return; - diff --git a/extra/oxygen-gtk3/PKGBUILD b/extra/oxygen-gtk3/PKGBUILD index ca4662176..74f94f0fa 100644 --- a/extra/oxygen-gtk3/PKGBUILD +++ b/extra/oxygen-gtk3/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 207336 2014-03-08 08:57:31Z andrea $ +# $Id: PKGBUILD 210150 2014-04-10 12:04:43Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> pkgname=oxygen-gtk3 -pkgver=1.3.4 +pkgver=1.3.5 pkgrel=1 pkgdesc="Port of the default KDE widget theme (Oxygen) to GTK3" arch=('i686' 'x86_64') @@ -11,7 +11,7 @@ license=('LGPL') depends=('gtk3') makedepends=('cmake') source=("http://download.kde.org/stable/${pkgname}/${pkgver}/src/${pkgname}-${pkgver}.tar.bz2") -md5sums=('0299012f736444230bfdef0aaeb27a2f') +md5sums=('fb0204ad8af22070b0eea2e7b5d6c686') prepare() { mkdir build diff --git a/extra/perl-dbd-mysql/PKGBUILD b/extra/perl-dbd-mysql/PKGBUILD index c39d6e340..881e08b98 100644 --- a/extra/perl-dbd-mysql/PKGBUILD +++ b/extra/perl-dbd-mysql/PKGBUILD @@ -1,11 +1,11 @@ -# $Id: PKGBUILD 206053 2014-02-16 12:10:42Z bpiotrowski $ -# Maintainer: Bartłomiej Piotrowski <nospam@bpiotrowski.pl> +# $Id: PKGBUILD 210123 2014-04-10 07:33:31Z bpiotrowski $ +# Maintainer: Bartłomiej Piotrowski <bpiotrowski@archlinux.org> # Contributor: kevin <kevin@archlinux.org> # Contributor: Eric Johnson <eric@coding-zone.com> pkgname=perl-dbd-mysql _realname=DBD-mysql -pkgver=4.026 +pkgver=4.027 pkgrel=1 pkgdesc='Perl/CPAN DBD::mysql module for interacting with MySQL via DBD' arch=('i686' 'x86_64') @@ -15,12 +15,10 @@ depends=('libmariadbclient' 'perl-dbi') makedepends=('mariadb') options=('!emptydirs') source=(http://search.cpan.org/CPAN/authors/id/C/CA/CAPTTOFU/${_realname}-${pkgver}.tar.gz) -md5sums=('b18dc2795ec8628a9b84b6e5f1b58775') +md5sums=('11fa6449715ba9d3fa5f4ee5ae688d6f') build() { cd $_realname-$pkgver - - # install module in vendor directories. perl Makefile.PL INSTALLDIRS=vendor --testsocket=/tmp/socket.mysql make } diff --git a/extra/perl-ev/PKGBUILD b/extra/perl-ev/PKGBUILD index 1f6075bde..49d35242a 100644 --- a/extra/perl-ev/PKGBUILD +++ b/extra/perl-ev/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 186404 2013-05-26 09:25:10Z bluewind $ +# $Id: PKGBUILD 210156 2014-04-10 13:13:58Z fyan $ pkgname=perl-ev -pkgver=4.15 -pkgrel=2 +pkgver=4.16 +pkgrel=1 pkgdesc='perl interface to libev, a high performance full-featured event loop' arch=(i686 x86_64) license=(PerlArtistic GPL) @@ -10,7 +10,7 @@ options=(!emptydirs) depends=(perl-common-sense) url=https://metacpan.org/release/EV source=("http://search.cpan.org/CPAN/authors/id/M/ML/MLEHMANN/EV-$pkgver.tar.gz") -md5sums=('546d10fb5901f2af937e53b41a92b2bb') +md5sums=('8b2ee81053b0766db8af36b055e4dab5') build() { cd EV-$pkgver diff --git a/extra/perl-netaddr-ip/PKGBUILD b/extra/perl-netaddr-ip/PKGBUILD index b1a1798cc..676e5bcdf 100644 --- a/extra/perl-netaddr-ip/PKGBUILD +++ b/extra/perl-netaddr-ip/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 205925 2014-02-14 03:22:35Z eric $ +# $Id: PKGBUILD 210129 2014-04-10 08:52:32Z fyan $ # Maintainer: pkgname=perl-netaddr-ip -pkgver=4.072 +pkgver=4.073 pkgrel=1 pkgdesc="Perl module to manage IP addresses and subnets" arch=('i686' 'x86_64') @@ -11,7 +11,7 @@ license=('PerlArtistic' 'GPL') depends=('perl') options=('!emptydirs') source=(http://search.cpan.org/CPAN/authors/id/M/MI/MIKER/NetAddr-IP-${pkgver}.tar.gz) -md5sums=('7764bf54881cd014880c0b77161f16aa') +md5sums=('4dc78e95809450100c1037cc10942fdf') build() { cd NetAddr-IP-${pkgver} diff --git a/extra/pycups/PKGBUILD b/extra/pycups/PKGBUILD index 6af67b143..0f7020847 100644 --- a/extra/pycups/PKGBUILD +++ b/extra/pycups/PKGBUILD @@ -1,25 +1,30 @@ -# $Id: PKGBUILD 205906 2014-02-13 18:15:29Z eric $ +# $Id: PKGBUILD 210172 2014-04-10 16:01:34Z fyan $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> # Contributor: nesl247 <nesl247@gmail.com> -pkgname=pycups +pkgbase=pycups +pkgname=python2-pycups +_pypiname=pycups pkgver=1.9.66 -pkgrel=1 +pkgrel=2 pkgdesc="Python CUPS Bindings" arch=('i686' 'x86_64') url="http://cyberelk.net/tim/software/pycups/" license=('GPL') depends=('libcups' 'python2') -source=(http://cyberelk.net/tim/data/${pkgname}/${pkgname}-${pkgver}.tar.bz2{,.asc}) +provides=('pycups') +conflicts=('pycups') +replaces=('pycups') +source=(http://cyberelk.net/tim/data/${_pypiname}/${_pypiname}-${pkgver}.tar.bz2{,.asc}) md5sums=('a6cc4d40ac908dd9182ed93739b4bb79' 'SKIP') build() { - cd ${pkgname}-${pkgver} + cd ${_pypiname}-${pkgver} python2 setup.py build } -package() { - cd ${pkgname}-${pkgver} +package_python2-pycups() { + cd ${_pypiname}-${pkgver} python2 setup.py install --root="${pkgdir}" --optimize=1 } diff --git a/extra/pysmbc/PKGBUILD b/extra/pysmbc/PKGBUILD index 22c72d62d..895a5c1d1 100644 --- a/extra/pysmbc/PKGBUILD +++ b/extra/pysmbc/PKGBUILD @@ -1,31 +1,29 @@ -# $Id: PKGBUILD 206929 2014-03-06 10:57:48Z andrea $ +# $Id: PKGBUILD 210169 2014-04-10 15:47:29Z fyan $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> # Contributor: Shane Peelar <lookatyouhacker@gm@il(d0t)c0m> -pkgname=pysmbc -pkgver=1.0.13 +pkgbase=pysmbc +pkgname=python2-pysmbc +_pypiname=pysmbc +pkgver=1.0.14.1 pkgrel=2 pkgdesc="Python bindings for libsmbclient" arch=('i686' 'x86_64') url="http://pypi.python.org/pypi/pysmbc/" license=('GPL') depends=('python2' 'smbclient') -source=("http://pypi.python.org/packages/source/p/${pkgname}/${pkgname}-${pkgver}.tar.bz2" - 'pkg-config.patch') -md5sums=('019dbb3bc6ee217f7389a2330cda9fe0' - '4b1d5498780181cdc9a217894c1cf85c') - -prepare() { - cd ${pkgname}-${pkgver} - patch -p1 -i "${srcdir}"/pkg-config.patch -} +provides=('pysmbc') +conflicts=('pysmbc') +replaces=('pysmbc') +source=("http://pypi.python.org/packages/source/p/${_pypiname}/${_pypiname}-${pkgver}.tar.bz2") +md5sums=('9299b5576cf838d07a5048ed22a5c1d4') build(){ - cd ${pkgname}-${pkgver} + cd ${_pypiname}-${pkgver} python2 setup.py build } -package() { - cd ${pkgname}-${pkgver} +package_python2-pysmbc() { + cd ${_pypiname}-${pkgver} python2 setup.py install --root="$pkgdir" --optimize=1 } diff --git a/extra/pysmbc/pkg-config.patch b/extra/pysmbc/pkg-config.patch deleted file mode 100644 index 9586b8666..000000000 --- a/extra/pysmbc/pkg-config.patch +++ /dev/null @@ -1,58 +0,0 @@ -diff -up pysmbc-1.0.13/Makefile.pkg-config pysmbc-1.0.13/Makefile ---- pysmbc-1.0.13/Makefile.pkg-config 2010-08-22 15:59:36.000000000 +0100 -+++ pysmbc-1.0.13/Makefile 2012-11-21 12:44:29.051173967 +0000 -@@ -4,7 +4,7 @@ SDIST_ARGS=--formats=bztar -d. - - smbc.so: force - python setup.py build -- mv build/lib*/$@ . -+ mv build/lib*/smbc*.so . - - doc: smbc.so - rm -rf html -@@ -14,7 +14,7 @@ doczip: doc - cd html && zip ../smbc-html.zip * - - clean: -- -rm -rf build smbc.so *.pyc tests/*.pyc *~ tests/*~ -+ -rm -rf build smbc*.so *.pyc tests/*.pyc *~ tests/*~ - - dist: - python setup.py sdist $(SDIST_ARGS) -diff -up pysmbc-1.0.13/setup.py.pkg-config pysmbc-1.0.13/setup.py ---- pysmbc-1.0.13/setup.py.pkg-config 2012-02-15 16:12:44.000000000 +0000 -+++ pysmbc-1.0.13/setup.py 2012-11-21 12:45:05.362285519 +0000 -@@ -1,6 +1,6 @@ - #!/usr/bin/env python - --## Copyright (C) 2002, 2005, 2006, 2007, 2008, 2010, 2011 Red Hat, Inc -+## Copyright (C) 2002, 2005, 2006, 2007, 2008, 2010, 2011, 2012 Red Hat, Inc - ## Copyright (C) 2010 Open Source Solution Technology Corporation - ## Authors: - ## Tim Waugh <twaugh@redhat.com> -@@ -51,6 +51,18 @@ hello - """ - - from distutils.core import setup, Extension -+import subprocess -+ -+def pkgconfig_I (pkg): -+ dirs = [] -+ c = subprocess.Popen (["pkg-config", "--cflags", pkg], -+ stdout=subprocess.PIPE) -+ (stdout, stderr) = c.communicate () -+ for p in stdout.decode (encoding='ascii').split (): -+ if p.startswith ("-I"): -+ dirs.append (p[2:]) -+ return dirs -+ - setup (name="pysmbc", - version="1.0.13", - description="Python bindings for libsmbclient", -@@ -74,4 +86,5 @@ setup (name="pysmbc", - "dir.c", - "file.c", - "smbcdirent.c"], -- libraries=["smbclient"])]) -+ libraries=["smbclient"], -+ include_dirs=pkgconfig_I("smbclient"))]) diff --git a/extra/python-egenix-mx-base/PKGBUILD b/extra/python-egenix-mx-base/PKGBUILD index 52fcc5aed..fce5151e6 100644 --- a/extra/python-egenix-mx-base/PKGBUILD +++ b/extra/python-egenix-mx-base/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 192252 2013-08-08 18:04:12Z eric $ +# $Id: PKGBUILD 210144 2014-04-10 09:20:23Z fyan $ # Maintainer: Stéphane Gaudreault <stephane@archlinux.org> # Contributor: Douglas Soares de Andrade <douglas@archlinux.org> pkgbase=python-egenix-mx-base pkgname=('python2-egenix-mx-base') -pkgver=3.2.6 +pkgver=3.2.7 pkgrel=1 pkgdesc="A collection of Python tools" arch=('i686' 'x86_64') @@ -14,7 +14,7 @@ makedepends=('python2') conflicts=('python-egenix-mx-base<=3.2.4-1') replaces=('python-egenix-mx-base<=3.2.4-1') source=(http://downloads.egenix.com/python/egenix-mx-base-${pkgver}.tar.gz{,.asc}) -sha1sums=('3e21c6eba53a841070a4e9430a85ecf8a28df20f' +sha1sums=('fd9e470f8d8b14f793d65991858e5cc95ae17fcf' 'SKIP') prepare() { diff --git a/extra/python-urwid/PKGBUILD b/extra/python-urwid/PKGBUILD index 05d85c5a2..1b69f8ec9 100644 --- a/extra/python-urwid/PKGBUILD +++ b/extra/python-urwid/PKGBUILD @@ -4,15 +4,15 @@ # Maintainer: Douglas Soares de Andrade <dsandrade@gmail.com> pkgname=('python-urwid' 'python2-urwid') -pkgver=1.2.0 -pkgrel=2 +pkgver=1.2.1 +pkgrel=1 pkgdesc="Urwid is a curses-based user interface library." license=('LGPL') arch=('i686' 'x86_64') makedepends=('python2-setuptools' 'python-setuptools') url="http://excess.org/urwid/" source=(https://pypi.python.org/packages/source/u/urwid/urwid-$pkgver.tar.gz) -md5sums=('ea046a0f683bc2d46b08df70b29c7f66') +md5sums=('6a05ada11b87e7b026b01fc5150855b0') build() { cp -r urwid-$pkgver python2-urwid-$pkgver diff --git a/extra/re2c/PKGBUILD b/extra/re2c/PKGBUILD index 70720e6cf..6f6fd39bd 100644 --- a/extra/re2c/PKGBUILD +++ b/extra/re2c/PKGBUILD @@ -1,26 +1,31 @@ -# $Id: PKGBUILD 149483 2012-02-08 10:02:54Z pierre $ +# $Id: PKGBUILD 210170 2014-04-10 15:54:53Z anatolik $ # Maintainer: # Contributor: nut543 <kfs1@online.no> # Contributor: Dale Blount <dale@archlinux.org> pkgname=re2c -pkgver=0.13.5 -pkgrel=3 +pkgver=0.13.6 +pkgrel=1 arch=('i686' 'x86_64') depends=('gcc-libs') pkgdesc="A tool for generating C-based recognizers from regular expressions" url="http://re2c.sourceforge.net/" license=('GPL') source=("http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz") -md5sums=('4a97d8f77ed6d2c76c8bd840a43f5633') +md5sums=('8927c3f65d445c40f2e6213269dcef2d') build() { - cd "${srcdir}"/$pkgname-$pkgver + cd $pkgname-$pkgver ./configure --prefix=/usr make } +check() { + cd $pkgname-$pkgver + make check +} + package() { - cd "${srcdir}"/$pkgname-$pkgver + cd $pkgname-$pkgver make DESTDIR="${pkgdir}" install } diff --git a/extra/x265/PKGBUILD b/extra/x265/PKGBUILD index c0be24e7e..62dbbbb27 100644 --- a/extra/x265/PKGBUILD +++ b/extra/x265/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 208166 2014-03-18 13:36:20Z bpiotrowski $ +# $Id: PKGBUILD 210087 2014-04-09 19:14:05Z bpiotrowski $ # Maintainer: Bartłomiej Piotrowski <bpiotrowski@archlinux.org> # Contributor: kfgz <kfgz at interia pl> pkgname=x265 -pkgver=0.8 -pkgrel=2 +pkgver=0.9 +pkgrel=1 pkgdesc='Open Source H265/HEVC video encoder' arch=('i686' 'x86_64') license=('GPL') @@ -12,7 +12,7 @@ depends=('gcc-libs') makedepends=('yasm' 'cmake') url='https://bitbucket.org/multicoreware/x265' source=($url/get/$pkgver.tar.bz2) -md5sums=('0c690dfad024e87f6b617e6fc2f354eb') +md5sums=('0cc0b0189cf9ed7422aad98633c6de8f') build() { cd multicoreware-x265-*/build/linux diff --git a/extra/x2goclient/PKGBUILD b/extra/x2goclient/PKGBUILD index 74b542881..8db9e19d8 100644 --- a/extra/x2goclient/PKGBUILD +++ b/extra/x2goclient/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 204550 2014-01-22 12:35:18Z andyrtr $ +# $Id: PKGBUILD 210182 2014-04-10 18:18:43Z andyrtr $ # Maintainer: AndyRTR <andyrtr@archlinux.org> # Contributor: Gerhard Brauer <gerbra@archlinux.de> # Contributor: Richard Murri <admin@richardmurri.com> pkgname=x2goclient -pkgver=4.0.1.3 +pkgver=4.0.2.0 pkgrel=1 pkgdesc="x2go qt4 client" arch=('i686' 'x86_64') @@ -14,7 +14,7 @@ depends=('qt4' 'libldap' 'libcups' 'nxproxy' 'libssh' 'libxpm' 'hicolor-icon-the makedepends=('man2html') install=x2goclient.install source=(http://code.x2go.org/releases/source/${pkgname}/${pkgname}-${pkgver}.tar.gz{,.asc}) -sha1sums=('37b946b5b6d0a072a6d1fee98ae43bef929f2abd' +sha1sums=('bbe8efb2df88bfa18b056c52ee0b1cca7a52b71b' 'SKIP') build() { diff --git a/extra/xfburn/PKGBUILD b/extra/xfburn/PKGBUILD index b7ae00193..e30abce31 100755 --- a/extra/xfburn/PKGBUILD +++ b/extra/xfburn/PKGBUILD @@ -1,9 +1,9 @@ -# $Id: PKGBUILD 206175 2014-02-20 21:33:41Z eric $ +# $Id: PKGBUILD 210119 2014-04-10 04:11:29Z fyan $ # Maintainer: Tobias Kieslich <tobias funnychar archlinux.org> # Contributor: Alois Nespor alois.nespor@gmail.com pkgname=xfburn -pkgver=0.5.0 +pkgver=0.5.2 pkgrel=1 pkgdesc="A simple CD/DVD burning tool based on libburnia libraries" arch=('i686' 'x86_64') @@ -14,7 +14,7 @@ makedepends=('intltool') groups=('xfce4-goodies') install=xfburn.install source=(http://archive.xfce.org/src/apps/xfburn/${pkgver%.*}/$pkgname-$pkgver.tar.bz2) -sha1sums=('def2ced9a74b5112e992149ce901f3a5a73f20d9') +sha1sums=('d0a39b331353ccbc73b027a09c87bcbc45d9a312') build() { cd $pkgname-$pkgver |