summaryrefslogtreecommitdiff
path: root/extra
diff options
context:
space:
mode:
Diffstat (limited to 'extra')
-rw-r--r--extra/bluez/PKGBUILD8
-rw-r--r--extra/easytag/PKGBUILD8
-rw-r--r--extra/easytag/easytag-2.1.8-fix_mixed_declarations_and_code.patch43
-rw-r--r--extra/ethtool/PKGBUILD10
-rw-r--r--extra/gdk-pixbuf2/PKGBUILD6
-rw-r--r--extra/gnome-shell/PKGBUILD6
-rw-r--r--extra/gparted/PKGBUILD8
-rw-r--r--extra/gptfdisk/PKGBUILD16
-rw-r--r--extra/grilo-plugins/PKGBUILD6
-rw-r--r--extra/grilo/PKGBUILD6
-rw-r--r--extra/imagemagick/PKGBUILD6
-rw-r--r--extra/libass/PKGBUILD12
-rw-r--r--extra/libindi/PKGBUILD12
-rw-r--r--extra/lynx/PKGBUILD17
-rw-r--r--extra/mercurial/PKGBUILD7
-rw-r--r--extra/mutter-wayland/PKGBUILD8
-rw-r--r--extra/mutter/PKGBUILD6
-rw-r--r--extra/nasm/PKGBUILD6
-rw-r--r--extra/perl-image-exiftool/PKGBUILD41
-rw-r--r--extra/postgresql-old-upgrade/PKGBUILD8
-rw-r--r--extra/postgresql/PKGBUILD10
-rw-r--r--extra/python-zope-interface/PKGBUILD55
-rw-r--r--extra/qemu/PKGBUILD25
-rw-r--r--extra/sbc/PKGBUILD6
-rw-r--r--extra/totem-plparser/PKGBUILD8
-rw-r--r--extra/vlc/PKGBUILD6
-rw-r--r--extra/webkitgtk/PKGBUILD8
-rw-r--r--extra/xcb-util-wm/PKGBUILD12
-rwxr-xr-xextra/xfburn/PKGBUILD44
-rw-r--r--extra/xfburn/fix_empty_dir_segfault.diff48
-rw-r--r--extra/xmlto/PKGBUILD8
31 files changed, 192 insertions, 278 deletions
diff --git a/extra/bluez/PKGBUILD b/extra/bluez/PKGBUILD
index 7e709fd17..972682fc9 100644
--- a/extra/bluez/PKGBUILD
+++ b/extra/bluez/PKGBUILD
@@ -1,11 +1,11 @@
-# $Id: PKGBUILD 204503 2014-01-21 12:45:19Z andyrtr $
+# $Id: PKGBUILD 206240 2014-02-22 16:19:00Z andyrtr $
# Maintainer: Tom Gundersen <teg@jklm.no>
# Contributor: Andrea Scarpino <andrea@archlinux.org>
# Contributor: Geoffroy Carrier <geoffroy@archlinux.org>
pkgbase=bluez
pkgname=('bluez' 'bluez-utils' 'bluez-libs' 'bluez-cups' 'bluez-hid2hci' 'bluez-plugins')
-pkgver=5.14
+pkgver=5.15
pkgrel=1
url="http://www.bluez.org/"
arch=('i686' 'x86_64' 'mips64el')
@@ -15,7 +15,7 @@ source=(http://www.kernel.org/pub/linux/bluetooth/${pkgname}-${pkgver}.tar.xz
0001-Allow-using-obexd-without-systemd-in-the-user-session.patch
bluetooth.modprobe)
# see https://www.kernel.org/pub/linux/bluetooth/sha256sums.asc
-sha256sums=('5a485837c215f3093d3a98cb412dc99e1139f88a66c8809bdf183ad5e676395f'
+sha256sums=('487bd75697e565793bf5bc4fbd5fa6a602788313b0c694f7542b81689fc0aa87'
'896a1403d9b7258c4fb0d41f3a6f70fd51eaa1115ab3f4259f3dbbe02b55766b'
'46c021be659c9a1c4e55afd04df0c059af1f3d98a96338236412e449bf7477b4')
@@ -135,7 +135,7 @@ package_bluez-hid2hci() {
}
package_bluez-plugins() {
- pkgdesc="bluez plugins (PS3 sicaxis controller)"
+ pkgdesc="bluez plugins (PS3 Sixaxis controller)"
depends=('systemd')
cd ${pkgbase}-${pkgver}
diff --git a/extra/easytag/PKGBUILD b/extra/easytag/PKGBUILD
index d329ca076..2ace2569e 100644
--- a/extra/easytag/PKGBUILD
+++ b/extra/easytag/PKGBUILD
@@ -1,11 +1,11 @@
-# $Id: PKGBUILD 203446 2014-01-10 22:37:23Z guillaume $
+# $Id: PKGBUILD 206159 2014-02-20 12:56:10Z guillaume $
# Maintainer: Guillaume ALAUX <guillaume@archlinux.org>
# Contributor: Kevin Piche <kevin@archlinux.org>
# Contributor: Aaron Griffin <aaron@archlinux.org>
# Contributor: dorphell <dorphell@archlinux.org>
pkgname=easytag
-pkgver=2.1.9
+pkgver=2.1.10
pkgrel=1
pkgdesc='Utility for viewing and editing tags for most audio formats'
arch=('i686' 'x86_64' 'mips64el')
@@ -16,7 +16,9 @@ depends=('id3lib' 'libid3tag' 'gtk2' 'libvorbis' 'flac' 'speex' 'wavpack' 'tagli
'desktop-file-utils' 'hicolor-icon-theme')
install=${pkgname}.install
source=(http://download.gnome.org/sources/${pkgname}/${pkgver:0:3}/${pkgname}-${pkgver}.tar.xz)
-sha256sums=('f5a6e742a458ef6f48f2d5e98a24182a9c87a213e847fcce75c757ac90273501')
+sha256sums=('fe73a27aa4ad0a2ddc183a84d923ac214aeaf4a5752cb8640a2f840d9dd023d9')
+
+# TODO either 'svn delete' patch about mime or add it back here
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
diff --git a/extra/easytag/easytag-2.1.8-fix_mixed_declarations_and_code.patch b/extra/easytag/easytag-2.1.8-fix_mixed_declarations_and_code.patch
deleted file mode 100644
index ff7a52a94..000000000
--- a/extra/easytag/easytag-2.1.8-fix_mixed_declarations_and_code.patch
+++ /dev/null
@@ -1,43 +0,0 @@
---- src/wavpack_tag.c
-+++ src/wavpack_tag.c
-@@ -82,15 +82,15 @@ gboolean Wavpack_Tag_Write_File (FILE *file_in, gchar *filename_in, vcedit_state
- */
- gboolean Wavpack_Tag_Read_File_Tag (gchar *filename, File_Tag *FileTag)
- {
-- if (!filename || !FileTag)
-- return FALSE;
--
- WavpackContext *wpc;
- gchar *field, *field2;
- guint length;
-
- int open_flags = OPEN_TAGS;
-
-+ if (!filename || !FileTag)
-+ return FALSE;
-+
- wpc = WavpackOpenFileInput(filename, NULL, open_flags, 0);
-
- if ( wpc == NULL ) {
-@@ -271,9 +271,6 @@ gboolean Wavpack_Tag_Read_File_Tag (gchar *filename, File_Tag *FileTag)
-
- gboolean Wavpack_Tag_Write_File_Tag (ET_File *ETFile)
- {
-- if (!ETFile || !ETFile->FileTag)
-- return FALSE;
--
- WavpackContext *wpc;
-
- gchar *filename = ((File_Name *)((GList *)ETFile->FileNameCur)->data)->value;
-@@ -282,6 +279,9 @@ gboolean Wavpack_Tag_Write_File_Tag (ET_File *ETFile)
-
- int open_flags = OPEN_EDIT_TAGS;
-
-+ if (!ETFile || !ETFile->FileTag)
-+ return FALSE;
-+
- wpc = WavpackOpenFileInput(filename, NULL, open_flags, 0);
-
- if ( wpc == NULL ) {
---
-cgit v0.9.1
diff --git a/extra/ethtool/PKGBUILD b/extra/ethtool/PKGBUILD
index 35654aaf2..c91c11a96 100644
--- a/extra/ethtool/PKGBUILD
+++ b/extra/ethtool/PKGBUILD
@@ -1,19 +1,19 @@
-# $Id: PKGBUILD 196480 2013-10-14 08:50:55Z ioni $
+# $Id: PKGBUILD 206117 2014-02-19 03:37:03Z dan $
# Maintainer : Ionut Biru <ibiru@archlinux.org>
# Contributor: Paul Mattal <paul@archlinux.org>
# Contributor: Martin Kemp <mdkemp@elys.com>
pkgname=ethtool
-pkgver=3.11
+pkgver=3.13
pkgrel=1
epoch=1
pkgdesc="Utility for controlling network drivers and hardware"
arch=('i686' 'x86_64' 'mips64el')
-url="http://www.kernel.org/pub/software/network/ethtool/"
+url="https://www.kernel.org/pub/software/network/ethtool/"
license=('GPL')
depends=('glibc')
-source=(http://www.kernel.org/pub/software/network/$pkgname/$pkgname-$pkgver.tar.xz)
-md5sums=('5f3a0ed1b3510ca0695db0b4debdd292')
+source=(https://www.kernel.org/pub/software/network/$pkgname/$pkgname-$pkgver.tar.xz)
+md5sums=('dcb8f345d44ee79108282e7d0bdf5013')
build() {
cd $pkgname-$pkgver
diff --git a/extra/gdk-pixbuf2/PKGBUILD b/extra/gdk-pixbuf2/PKGBUILD
index ce8e750e8..c6baf6ff4 100644
--- a/extra/gdk-pixbuf2/PKGBUILD
+++ b/extra/gdk-pixbuf2/PKGBUILD
@@ -1,8 +1,8 @@
-# $Id: PKGBUILD 205063 2014-02-04 00:48:48Z heftig $
+# $Id: PKGBUILD 206105 2014-02-18 06:28:10Z heftig $
# Maintainer: Ionut Biru <ibiru@archlinux.org>
pkgname=gdk-pixbuf2
-pkgver=2.30.4
+pkgver=2.30.5
pkgrel=1
pkgdesc="An image loading library"
arch=('i686' 'x86_64' 'mips64el')
@@ -12,7 +12,7 @@ depends=('glib2' 'libpng' 'libtiff' 'libjpeg' 'libx11' 'jasper')
makedepends=('gtk-doc' 'gobject-introspection')
install=gdk-pixbuf2.install
source=(http://download.gnome.org/sources/gdk-pixbuf/${pkgver%.*}/gdk-pixbuf-$pkgver.tar.xz)
-sha256sums=('a13bbad0d804829b260bc901dc7d284d330c534489fc1666c126fa4555bbb051')
+sha256sums=('43e71d50c4511d7d72fa75b1ac7ad3e8e04bdc97908d003449e78171683bb136')
build() {
cd gdk-pixbuf-$pkgver
diff --git a/extra/gnome-shell/PKGBUILD b/extra/gnome-shell/PKGBUILD
index 75e33489d..a646a2847 100644
--- a/extra/gnome-shell/PKGBUILD
+++ b/extra/gnome-shell/PKGBUILD
@@ -1,9 +1,9 @@
-# $Id: PKGBUILD 204299 2014-01-16 21:00:27Z heftig $
+# $Id: PKGBUILD 206149 2014-02-20 09:00:15Z heftig $
# Maintainer: Ionut Biru <ibiru@archlinux.org>
# Contributor: Flamelab <panosfilip@gmail.com
pkgname=gnome-shell
-pkgver=3.10.3
+pkgver=3.10.4
pkgrel=1
pkgdesc="The next generation GNOME Shell"
arch=(i686 x86_64 mips64el)
@@ -20,7 +20,7 @@ install=gnome-shell.install
groups=(gnome)
source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz
nm-libexecdir.patch)
-sha256sums=('4b14b9ffde08ccee6d972dea353b5f7ed8bbd12e52cb2252c31bcfe59d8242bc'
+sha256sums=('e082f6847eedbbc474ffe4bcb3dfe51054eb0e4c5ddab440d39afed78526b726'
'e5bb10ad2e5c3e0fde3d05babd1bfdda701e553e02d493f7e54cb7832ce7e607')
prepare() {
diff --git a/extra/gparted/PKGBUILD b/extra/gparted/PKGBUILD
index 667d3dee0..080ae424b 100644
--- a/extra/gparted/PKGBUILD
+++ b/extra/gparted/PKGBUILD
@@ -1,11 +1,11 @@
-# $Id: PKGBUILD 203515 2014-01-12 11:15:34Z giovanni $
+# $Id: PKGBUILD 206153 2014-02-20 11:30:56Z 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.17.0
-pkgrel=2
+pkgver=0.18.0
+pkgrel=1
pkgdesc="A Partition Magic clone, frontend to GNU Parted"
arch=('i686' 'x86_64' 'mips64el')
url="http://gparted.sourceforge.net"
@@ -28,7 +28,7 @@ install=gparted.install
source=("http://downloads.sourceforge.net/project/${pkgname}/${pkgname}/${pkgname}-${pkgver}/${pkgname}-${pkgver}.tar.bz2"
'org.archlinux.pkexec.gparted.policy'
'gparted_polkit')
-md5sums=('ecd66491bb2061c6aa6077cc24823b9e'
+md5sums=('c4c928de08519c923abaa5a099881241'
'122ed3120c846376bead22b25f6a3b19'
'0b68a4e2bc6bc15440730ebe2d7bf9f6')
diff --git a/extra/gptfdisk/PKGBUILD b/extra/gptfdisk/PKGBUILD
index cfc55d56f..6e10796dc 100644
--- a/extra/gptfdisk/PKGBUILD
+++ b/extra/gptfdisk/PKGBUILD
@@ -1,32 +1,32 @@
-# $Id: PKGBUILD 196742 2013-10-17 14:02:47Z andyrtr $
+# $Id: PKGBUILD 206141 2014-02-20 07:26:51Z foutrelis $
# Maintainer: Evangelos Foutras <evangelos@foutrelis.com>
# Contributor: Tobias Powalowski <tpowa@archlinux.org>
# Contributor: Hokum <hokum_at_mail_dot_ru>
pkgname=gptfdisk
-pkgver=0.8.8
-pkgrel=2
-pkgdesc="A text-mode partitioning tool that works on Globally Unique Identifier (GUID) Partition Table (GPT) disks"
+pkgver=0.8.9
+pkgrel=1
+pkgdesc="A text-mode partitioning tool that works on GUID Partition Table (GPT) disks"
arch=('i686' 'x86_64' 'mips64el')
url="http://www.rodsbooks.com/gdisk/"
license=('GPL2')
-depends=('gcc-libs' 'util-linux' 'popt' 'icu')
+depends=('gcc-libs' 'util-linux' 'popt')
provides=("gdisk=$pkgver")
conflicts=('gdisk')
replaces=('gdisk')
source=(http://downloads.sourceforge.net/project/$pkgname/$pkgname/$pkgver/$pkgname-$pkgver.tar.gz)
+sha256sums=('4f7e6199f8b2eae8d4b7f0f65afebac0835331f571605ec70172067bbbd004ca')
build() {
- cd $pkgname-$pkgver
+ cd "$srcdir/$pkgname-$pkgver"
make
}
package () {
- cd $pkgname-$pkgver
+ cd "$srcdir/$pkgname-$pkgver"
install -d "$pkgdir"/usr/{bin,share/{doc/gdisk,man/man8}}
install -t "$pkgdir/usr/bin" {,c,s}gdisk fixparts
install -m644 -t "$pkgdir/usr/share/man/man8" {{,c,s}gdisk,fixparts}.8
install -m644 -t "$pkgdir/usr/share/doc/gdisk" README NEWS
}
-md5sums=('bd47d03ec27bab5613254b5a20f72143')
diff --git a/extra/grilo-plugins/PKGBUILD b/extra/grilo-plugins/PKGBUILD
index 9d0008177..c7ccc8d50 100644
--- a/extra/grilo-plugins/PKGBUILD
+++ b/extra/grilo-plugins/PKGBUILD
@@ -1,8 +1,8 @@
-# $Id: PKGBUILD 205841 2014-02-11 12:54:03Z heftig $
+# $Id: PKGBUILD 206113 2014-02-18 14:55:38Z heftig $
# Maintainer: Jan Alexander Steffens (heftig) <jan.steffens@gmail.com>
pkgname=grilo-plugins
-pkgver=0.2.10
+pkgver=0.2.11
pkgrel=1
pkgdesc="Plugins for Grilo"
url="http://www.gnome.org"
@@ -22,7 +22,7 @@ optdepends=('gupnp-av: uPnP plugin'
options=('!emptydirs')
groups=('gnome')
source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz)
-sha256sums=('5a7dd406ed58145847553e6dbb5f766e9d58dc5d4cfeb7e290d5b38c88163871')
+sha256sums=('a2ac4ad28f3ead53d00d99653b2fb2d19cd5d9cfc33a16e7e82477223d089944')
build() {
cd $pkgname-$pkgver
diff --git a/extra/grilo/PKGBUILD b/extra/grilo/PKGBUILD
index 121d60cb8..d09472df5 100644
--- a/extra/grilo/PKGBUILD
+++ b/extra/grilo/PKGBUILD
@@ -1,8 +1,8 @@
-# $Id: PKGBUILD 205840 2014-02-11 12:53:50Z heftig $
+# $Id: PKGBUILD 206111 2014-02-18 14:34:10Z heftig $
# Maintainer: Jan Alexander Steffens (heftig) <jan.steffens@gmail.com>
pkgname=grilo
-pkgver=0.2.8
+pkgver=0.2.9
pkgrel=1
pkgdesc="Framework that provides access to various sources of multimedia content"
url="http://www.gnome.org"
@@ -13,7 +13,7 @@ makedepends=('gobject-introspection' 'gtk-doc' 'vala' 'intltool')
optdepends=('grilo-plugins: Plugins for grilo')
options=('!emptydirs')
source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz)
-sha256sums=('03a50e011b897a46d6ec6fe4cfec4ca0737047f279c99b3d9eb9bef8c472cee8')
+sha256sums=('e51e937ae1ceee31d3f07fd459cd67e17d5c4497e32b30eb883830a0995df935')
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
diff --git a/extra/imagemagick/PKGBUILD b/extra/imagemagick/PKGBUILD
index 0ffe293fe..3b7bdaae6 100644
--- a/extra/imagemagick/PKGBUILD
+++ b/extra/imagemagick/PKGBUILD
@@ -1,9 +1,9 @@
-# $Id: PKGBUILD 206033 2014-02-16 02:34:53Z eric $
+# $Id: PKGBUILD 206119 2014-02-19 04:57:14Z eric $
# Maintainer: Eric Bélanger <eric@archlinux.org>
pkgbase=imagemagick
pkgname=('imagemagick' 'imagemagick-doc')
-pkgver=6.8.8.6
+pkgver=6.8.8.7
pkgrel=1
arch=('i686' 'x86_64' 'mips64el')
url="http://www.imagemagick.org/"
@@ -15,7 +15,7 @@ makedepends=('libltdl' 'lcms2' 'libxt' 'fontconfig' 'libxext' 'ghostscript'
#source=(http://www.imagemagick.org/download/ImageMagick-${pkgver%.*}-${pkgver##*.}.tar.xz{,.asc}
source=(ftp://ftp.sunet.se/pub/multimedia/graphics/ImageMagick/ImageMagick-${pkgver%.*}-${pkgver##*.}.tar.xz{,.asc}
perlmagick.rpath.patch)
-sha1sums=('02bb3888a7d9218a9c81af1bef8df7e68af846a0'
+sha1sums=('8a8b0d70cc8692c32efbfcb7b739973a2ac39a36'
'SKIP'
'e143cf9d530fabf3b58023899b5cc544ba93daec')
diff --git a/extra/libass/PKGBUILD b/extra/libass/PKGBUILD
index 6320d1720..dda2297e0 100644
--- a/extra/libass/PKGBUILD
+++ b/extra/libass/PKGBUILD
@@ -1,18 +1,18 @@
-# $Id: PKGBUILD 203015 2013-12-31 17:37:47Z giovanni $
+# $Id: PKGBUILD 206128 2014-02-19 17:11:36Z giovanni $
# Maintainer: Giovanni Scafora <giovanni@archlinux.org>
# Contributor: G_Syme <demichan(at)mail(dot)upb(dot)de>
pkgname=libass
-pkgver=0.10.2
-pkgrel=2
+pkgver=0.11.1
+pkgrel=1
pkgdesc="A portable library for SSA/ASS subtitles rendering"
arch=('i686' 'x86_64' 'mips64el')
url="http://code.google.com/p/libass/"
license=('BSD')
depends=('fribidi' 'fontconfig' 'enca' 'harfbuzz')
-makedepends=('pkg-config')
-source=("http://libass.googlecode.com/files/${pkgname}-${pkgver}.tar.xz")
-md5sums=('ce672ed5629c9708b3401b976f516744')
+makedepends=('pkg-config' 'yasm')
+source=("https://github.com/${pkgname}/${pkgname}/releases/download/${pkgver}/${pkgname}-${pkgver}.tar.xz")
+md5sums=('4c67e4450d4aad65e344de3f5cf28751')
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
diff --git a/extra/libindi/PKGBUILD b/extra/libindi/PKGBUILD
index b5d898f87..722c0f072 100644
--- a/extra/libindi/PKGBUILD
+++ b/extra/libindi/PKGBUILD
@@ -1,10 +1,10 @@
-# $Id: PKGBUILD 202208 2013-12-19 13:43:24Z fyan $
+# $Id: PKGBUILD 206107 2014-02-18 08:08:06Z andrea $
# Maintainer: Andrea Scarpino <andrea@archlinux.org>
# Contributor: Tobias Powalowski <tpowa@archlinux.org>
pkgname=libindi
-pkgver=0.9.6
-pkgrel=7
+pkgver=0.9.7
+pkgrel=1
pkgdesc="A distributed control protocol designed to operate astronomical instrumentation"
url="http://www.indilib.org/index.php?title=Main_Page"
license=('GPL2')
@@ -13,7 +13,7 @@ depends=('libnova' 'cfitsio' 'boost-libs' 'libusb-compat')
makedepends=('cmake' 'boost')
options=('staticlibs') # libindiclient builds as static only
source=("http://downloads.sourceforge.net/indi/${pkgname}_${pkgver}.tar.gz")
-md5sums=('c1456544a36f543e2884f88913cf3eb0')
+md5sums=('3e457c4226d7a445a0d89c044cced6b7')
prepare() {
mkdir build
@@ -32,7 +32,7 @@ package() {
make DESTDIR="${pkgdir}" install
install -d "${pkgdir}"/usr/lib/udev/rules.d
- mv "${pkgdir}"/etc/udev/rules.d/99-gpusb.rules \
+ mv "${pkgdir}"/lib/udev/rules.d/99-gpusb.rules \
"${pkgdir}"/usr/lib/udev/rules.d/
- rmdir "${pkgdir}"/etc/udev/rules.d "${pkgdir}"/etc/udev "${pkgdir}"/etc
+ rmdir "${pkgdir}"/lib/udev/rules.d "${pkgdir}"/lib/udev "${pkgdir}"/lib
}
diff --git a/extra/lynx/PKGBUILD b/extra/lynx/PKGBUILD
index 714c2c18b..b6a01d92c 100644
--- a/extra/lynx/PKGBUILD
+++ b/extra/lynx/PKGBUILD
@@ -1,19 +1,22 @@
-# $Id: PKGBUILD 197170 2013-10-23 13:51:58Z pierre $
-# Maintainer:
+# $Id: PKGBUILD 206120 2014-02-19 05:02:54Z pierre $
+# Maintainer: Pierre Schmitz <pierre@archlinux.de>
# Contributor: Douglas Soares de Andrade <douglas@archlinux.org>
# Contributor: Tom Newsom <Jeepster@gmx.co.uk>
pkgname=lynx
-pkgver=2.8.7
-pkgrel=7
+pkgver=2.8.8
+_relver=${pkgver}rel.1
+pkgrel=1
pkgdesc="A text browser for the World Wide Web"
url="http://lynx.isc.org/"
arch=('i686' 'x86_64' 'mips64el')
license=('GPL')
-depends=('ncurses' 'openssl')
+depends=('openssl')
backup=('etc/lynx.cfg')
-source=("http://lynx.isc.org/release/${pkgname}${pkgver}.tar.gz")
-md5sums=('e36d70f3f09b2d502055ca67f09e363c')
+source=("http://lynx.isc.org/current/${pkgname}${_relver}.tar.bz2"
+ "http://lynx.isc.org/current/${pkgname}${_relver}.tar.bz2.asc")
+md5sums=('f467c043fe9a3963fc1c05f54923803f'
+ 'SKIP')
build() {
cd ${srcdir}/${pkgname}${pkgver//./-}
diff --git a/extra/mercurial/PKGBUILD b/extra/mercurial/PKGBUILD
index 1981a47b4..c244b0955 100644
--- a/extra/mercurial/PKGBUILD
+++ b/extra/mercurial/PKGBUILD
@@ -1,10 +1,10 @@
-# $Id: PKGBUILD 204972 2014-02-02 16:54:39Z giovanni $
+# $Id: PKGBUILD 206155 2014-02-20 12:01:46Z giovanni $
# Maintainer: Giovanni Scafora <giovanni@archlinux.org>
# Contributor: Douglas Soares de Andrade <douglas@archlinux.org>
pkgname=mercurial
pkgver=2.9
-pkgrel=1
+pkgrel=2
pkgdesc="A scalable distributed SCM tool"
arch=('i686' 'x86_64' 'mips64el')
url="http://mercurial.selenic.com/"
@@ -44,4 +44,7 @@ package() {
# install configuration file
install -m755 -d ${pkgdir}/etc/mercurial
install -m644 contrib/sample.hgrc "${pkgdir}/etc/mercurial/hgrc"
+
+ # FS#38825 - Add certs config to package
+ echo -e "\n[web]\ncacerts = /etc/ssl/certs/ca-certificates.crt" >> "${pkgdir}/etc/mercurial/hgrc"
}
diff --git a/extra/mutter-wayland/PKGBUILD b/extra/mutter-wayland/PKGBUILD
index cb61970d4..1ef8bbb86 100644
--- a/extra/mutter-wayland/PKGBUILD
+++ b/extra/mutter-wayland/PKGBUILD
@@ -1,9 +1,9 @@
-# $Id: PKGBUILD 199788 2013-11-16 12:17:37Z heftig $
+# $Id: PKGBUILD 206148 2014-02-20 08:59:56Z heftig $
# Maintainer: Jan Alexander Steffens (heftig) <jan.steffens@gmail.com>
pkgname=mutter-wayland
-pkgver=3.10.1
-pkgrel=2
+pkgver=3.10.4
+pkgrel=1
pkgdesc="A Wayland compositor for GNOME"
arch=(i686 x86_64)
license=(GPL)
@@ -15,7 +15,7 @@ install=mutter-wayland.install
source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz
mutter-wayland-3.10.0.1-logfile.patch
0001-monitor-expose-min-backlight-step.patch)
-sha256sums=('bdb6bcc25791309256b09ec9aa7e0be311ef311778450aafccb86caf2753b6b4'
+sha256sums=('2dd625a0e0429a4852ec52ca9a40890d57537d947cc6269a9d85c52987d87828'
'b79866b6b3fa6029b35ef2b5c5d0cb92886ec2ed0173f780c4d46a5b8d9a1644'
'f1ef173d96ac27abdcf765972d2ac434f63bf4629b8bd51c177e8963d07f5eb7')
diff --git a/extra/mutter/PKGBUILD b/extra/mutter/PKGBUILD
index f7661bfc7..990f3ba39 100644
--- a/extra/mutter/PKGBUILD
+++ b/extra/mutter/PKGBUILD
@@ -1,10 +1,10 @@
-# $Id: PKGBUILD 204298 2014-01-16 20:59:19Z heftig $
+# $Id: PKGBUILD 206147 2014-02-20 08:59:41Z heftig $
# Maintainer: Jan Alexander Steffens (heftig) <jan.steffens@gmail.com>
# Maintainer: Ionut Biru <ibiru@archlinux.org>
# Contributor: Michael Kanis <mkanis_at_gmx_dot_de>
pkgname=mutter
-pkgver=3.10.3
+pkgver=3.10.4
pkgrel=1
pkgdesc="A window manager for GNOME"
arch=(i686 x86_64 mips64el)
@@ -17,7 +17,7 @@ options=('!emptydirs')
install=mutter.install
source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz
0001-monitor-expose-min-backlight-step.patch)
-sha256sums=('7b19eda620d11e0638e3be33455998d65bdee3ff6556b562df937978efb8830c'
+sha256sums=('9159c40ea9f5c5e3d1e67cc12ebcbd6328a7b732274195b4e5bdacb3cb1771e6'
'f1ef173d96ac27abdcf765972d2ac434f63bf4629b8bd51c177e8963d07f5eb7')
prepare() {
diff --git a/extra/nasm/PKGBUILD b/extra/nasm/PKGBUILD
index f9b1b0515..7219b0124 100644
--- a/extra/nasm/PKGBUILD
+++ b/extra/nasm/PKGBUILD
@@ -1,9 +1,9 @@
-# $Id: PKGBUILD 203305 2014-01-07 23:23:24Z eric $
+# $Id: PKGBUILD 206134 2014-02-20 01:03:22Z eric $
# Maintainer: Stéphane Gaudreault <stephane@archlinux.org>
# Contributor: Aaron Griffin <aaron@archlinux.org>
pkgname=nasm
-pkgver=2.11
+pkgver=2.11.01
pkgrel=1
pkgdesc="An 80x86 assembler designed for portability and modularity"
arch=('i686' 'x86_64' 'mips64el')
@@ -12,7 +12,7 @@ license=('BSD')
depends=('glibc')
install=nasm.install
source=(http://www.nasm.us/pub/nasm/releasebuilds/${pkgver}/${pkgname}-${pkgver}.tar.xz)
-sha1sums=('7cc2568ce804fa17d972d159f161adc3f6d25750')
+sha1sums=('e9414964de552cfe8ebc5d7645122d94d014702c')
build() {
cd ${pkgname}-${pkgver}
diff --git a/extra/perl-image-exiftool/PKGBUILD b/extra/perl-image-exiftool/PKGBUILD
deleted file mode 100644
index 0b249f81b..000000000
--- a/extra/perl-image-exiftool/PKGBUILD
+++ /dev/null
@@ -1,41 +0,0 @@
-# $Id: PKGBUILD 144999 2011-12-13 23:07:09Z eric $
-# Maintainer: Florian Pritz <bluewind@xinu.at>
-# Contributor: tobias <tobias@archlinux.org>
-# Contributor: Tobias Kieslich <tobias@justdreams.de>
-# Contributor: Firmicus <francois.archlinux.org>
-
-pkgname=perl-image-exiftool
-_srcname=Image-ExifTool
-pkgver=9.46
-pkgrel=1
-pkgdesc="Reader and rewriter of EXIF informations that supports raw files"
-arch=('any')
-url="http://search.cpan.org/perldoc?exiftool"
-license=('GPL')
-depends=('perl')
-provides=("perl-exiftool=$pkgver")
-replaces=("perl-exiftool")
-options=('!emptydirs')
-source=(http://search.cpan.org/CPAN/authors/id/E/EX/EXIFTOOL/${_srcname}-$pkgver.tar.gz)
-md5sums=('1561118c8fe9a8e8078afcf0d1650423')
-
-build() {
- cd "${srcdir}/${_srcname}-${pkgver}"
- # install module in vendor directories.
- perl Makefile.PL INSTALLDIRS=vendor
- make
-}
-
-check() {
- cd "${srcdir}/${_srcname}-${pkgver}"
- make test
-}
-
-package() {
- cd "${srcdir}/${_srcname}-${pkgver}"
- make DESTDIR="${pkgdir}" install
- # remove *.pod, .packlist, and empty dirs:
- find "${pkgdir}" -name '.packlist' -delete
- find "${pkgdir}" -name '*.pod' -delete
-}
-
diff --git a/extra/postgresql-old-upgrade/PKGBUILD b/extra/postgresql-old-upgrade/PKGBUILD
index 5be9ccaa9..e743bf0ce 100644
--- a/extra/postgresql-old-upgrade/PKGBUILD
+++ b/extra/postgresql-old-upgrade/PKGBUILD
@@ -1,8 +1,8 @@
-# $Id: PKGBUILD 201242 2013-12-06 15:41:36Z dan $
+# $Id: PKGBUILD 206163 2014-02-20 15:36:20Z dan $
# Maintainer: Dan McGee <dan@archlinux.org>
pkgname=postgresql-old-upgrade
-pkgver=9.2.6
+pkgver=9.2.7
_majorver=${pkgver%.*}
pkgrel=1
pkgdesc="PostgreSQL build for migrating between major versions with pg_upgrade"
@@ -47,5 +47,5 @@ package() {
rm -rf "${pkgdir}/opt/pgsql-${_majorver}/include/"
}
-md5sums=('3e68c0c7468c56f73060a88a377dbde8')
-sha256sums=('4ba98053a66e5678af93dbc2956e8b04623f759e174f48940c41f4251cf0f886')
+md5sums=('610354e939d3b6d8d1a620504bc25fb2')
+sha256sums=('83c042c3f61c69b176d3e4344e59104f844bc8b8628dad2bb9022a64cf5afe86')
diff --git a/extra/postgresql/PKGBUILD b/extra/postgresql/PKGBUILD
index e5e74a440..23be11374 100644
--- a/extra/postgresql/PKGBUILD
+++ b/extra/postgresql/PKGBUILD
@@ -1,11 +1,11 @@
-# $Id: PKGBUILD 201244 2013-12-06 16:00:26Z dan $
+# $Id: PKGBUILD 206165 2014-02-20 15:36:54Z dan $
# Maintainer: Dan McGee <dan@archlinux.org>
pkgbase=postgresql
pkgname=('postgresql-libs' 'postgresql-docs' 'postgresql')
-pkgver=9.3.2
+pkgver=9.3.3
_majorver=${pkgver%.*}
-pkgrel=4
+pkgrel=1
arch=('i686' 'x86_64' 'mips64el')
url="http://www.postgresql.org/"
license=('custom:PostgreSQL')
@@ -14,14 +14,14 @@ source=(http://ftp.postgresql.org/pub/source/v${pkgver}/postgresql-${pkgver}.tar
postgresql-run-socket.patch
postgresql.pam postgresql.logrotate
postgresql.service postgresql.tmpfiles.conf postgresql-check-db-dir)
-md5sums=('8c905155e3e9f9367b4299a9acb41d2a'
+md5sums=('0247b0a24e76a3f20cc50c06d0aa2412'
'75c579eed03ffb2312631f0b649175b4'
'96f82c38f3f540b53f3e5144900acf17'
'd28e443f9f65a5712c52018b84e27137'
'89b48774b0dae7c37fbb0e907c3c1db8'
'1c5a1f99e8e93776c593c468e2612985'
'ea7f9f914900e60835d20cb95010e63c')
-sha256sums=('700da51a71857e092f6af1c85fcd86b46d7d5cd2f2ba343cafb1f206c20232d7'
+sha256sums=('e925d8abe7157bd8bece6b7c0dd0c343d87a2b4336f85f4681ce596af99c3879'
'8538619cb8bea51078b605ad64fe22abd6050373c7ae3ad6595178da52f6a7d9'
'57dfd072fd7ef0018c6b0a798367aac1abb5979060ff3f9df22d1048bb71c0d5'
'6abb842764bbed74ea4a269d24f1e73d1c0b1d8ecd6e2e6fb5fb10590298605e'
diff --git a/extra/python-zope-interface/PKGBUILD b/extra/python-zope-interface/PKGBUILD
new file mode 100644
index 000000000..f83ae12eb
--- /dev/null
+++ b/extra/python-zope-interface/PKGBUILD
@@ -0,0 +1,55 @@
+# $Id: PKGBUILD 206137 2014-02-20 04:37:49Z fyan $
+# Maintainer : Felix Yan <felixonmars@gmail.com>
+# Contributor: Ionut Biru <ibiru@archlinux.org>
+# Contributor: Douglas Soares de Andrade <douglas@archlinux.org>
+
+pkgbase=python-zope-interface
+pkgname=('python-zope-interface' 'python2-zope-interface')
+pkgver=4.1.0
+pkgrel=1
+license=('ZPL')
+arch=('i686' 'x86_64')
+url="http://pypi.python.org/pypi/zope.interface"
+makedepends=('python-setuptools' 'python2-setuptools')
+source=("http://pypi.python.org/packages/source/z/zope.interface/zope.interface-${pkgver}.tar.gz")
+md5sums=('ac63de1784ea0327db876c908af07a94')
+
+prepare() {
+ cp -a zope.interface-${pkgver}{,-python2}
+}
+
+build() {
+ #build python3 module
+ cd "${srcdir}/zope.interface-${pkgver}"
+ python setup.py build
+
+ #build python2 module
+ cd "${srcdir}/zope.interface-${pkgver}-python2"
+ python2 setup.py build
+}
+
+check() {
+ cd "${srcdir}/zope.interface-${pkgver}"
+ python setup.py test
+
+ cd "${srcdir}/zope.interface-${pkgver}-python2"
+ python2 setup.py test
+}
+
+package_python-zope-interface() {
+ pkgdesc=('Zope Interfaces for Python3')
+ depends=('python')
+ cd "${srcdir}/zope.interface-${pkgver}"
+ python setup.py install --prefix=/usr --root="${pkgdir}" --optimize=1
+ cp src/zope/__init__.py "${pkgdir}/usr/lib/python3.3/site-packages/zope/"
+}
+
+package_python2-zope-interface(){
+ pkgdesc=('Zope Interfaces for Python2')
+ depends=('python2')
+ replaces=('zope-interface')
+ provides=('zope-interface')
+ cd "${srcdir}/zope.interface-${pkgver}-python2"
+ python2 setup.py install --prefix=/usr --root="${pkgdir}" --optimize=1
+ cp src/zope/__init__.py "${pkgdir}/usr/lib/python2.7/site-packages/zope/"
+}
diff --git a/extra/qemu/PKGBUILD b/extra/qemu/PKGBUILD
index 6c086ad03..82eb471bc 100644
--- a/extra/qemu/PKGBUILD
+++ b/extra/qemu/PKGBUILD
@@ -1,21 +1,23 @@
-# $Id: PKGBUILD 201269 2013-12-07 10:40:12Z tpowa $
+# $Id: PKGBUILD 206122 2014-02-19 14:06:40Z heftig $
# Maintainer: Tobias Powalowski <tpowa@archlinux.org>
pkgname=('qemu' 'libcacard')
pkgver=1.7.0
-pkgrel=1
+pkgrel=2
arch=('i686' 'x86_64')
license=('GPL2' 'LGPL2.1')
url="http://wiki.qemu.org/Index.html"
-makedepends=('texi2html' 'perl' 'python2' 'spice-protocol')
-install=qemu.install
-source=(http://wiki.qemu.org/download/${pkgname}-${pkgver}.tar.bz2
- 65-kvm.rules)
makedepends=('pixman' 'libjpeg' 'libpng' 'sdl' 'alsa-lib' 'nss' 'glib2'
'gnutls>=2.4.1' 'bluez-libs' 'vde2' 'util-linux' 'curl' 'libsasl'
'libgl' 'libpulse' 'seabios' 'libcap-ng' 'libaio' 'libseccomp'
- 'libiscsi' 'libcacard' 'spice' 'spice-protocol' 'python2')
+ 'libiscsi' 'libcacard' 'spice' 'spice-protocol' 'python2'
+ 'usbredir')
replaces=('qemu-kvm')
options=(!strip)
+install=qemu.install
+source=(http://wiki.qemu.org/download/${pkgname}-${pkgver}.tar.bz2
+ 65-kvm.rules)
+md5sums=('32893941d40d052a5e649efcf06aca06'
+ '33ab286a20242dda7743a900f369d68a')
build ()
{
@@ -28,7 +30,8 @@ build ()
--python=/usr/bin/python2 --smbd=/usr/bin/smbd \
--enable-docs --libexecdir=/usr/lib/qemu \
--disable-gtk --enable-linux-aio --enable-seccomp \
- --enable-spice --localstatedir=/var
+ --enable-spice --localstatedir=/var \
+ --enable-tpm
make V=99
}
@@ -37,7 +40,7 @@ package_qemu() {
depends=('pixman' 'libjpeg' 'libpng' 'sdl' 'alsa-lib' 'nss' 'glib2'
'gnutls>=2.4.1' 'bluez-libs' 'vde2' 'util-linux' 'curl' 'libsasl'
'libgl' 'libpulse' 'seabios' 'libcap-ng' 'libaio' 'libseccomp'
- 'libiscsi' 'libcacard' 'spice')
+ 'libiscsi' 'libcacard' 'spice' 'usbredir')
backup=('etc/qemu/target-x86_64.conf')
cd "${srcdir}/${pkgname}-${pkgver}"
make DESTDIR="${pkgdir}" libexecdir="/usr/lib/qemu" install
@@ -71,7 +74,7 @@ package_qemu() {
package_libcacard() {
pkgdesc="Common Access Card (CAC) Emulation"
options=('strip')
- depends=('nss' 'libaio' 'libcap-ng' 'libiscsi' 'curl' 'vde2')
+ depends=('nss' 'libaio' 'libcap-ng' 'libiscsi' 'curl' 'vde2' 'glib2')
mkdir -p ${pkgdir}/usr/bin
mkdir -p ${pkgdir}/usr/lib/pkgconfig
mkdir -p ${pkgdir}/usr/include/cacard
@@ -80,5 +83,3 @@ package_libcacard() {
cp -a ${srcdir}/qemu-${pkgver}/libcacard.pc ${pkgdir}/usr/lib/pkgconfig/
cp -a ${srcdir}/qemu-${pkgver}/.libs/vscclient ${pkgdir}/usr/bin/
}
-md5sums=('32893941d40d052a5e649efcf06aca06'
- '33ab286a20242dda7743a900f369d68a')
diff --git a/extra/sbc/PKGBUILD b/extra/sbc/PKGBUILD
index ccadf102d..686e614b2 100644
--- a/extra/sbc/PKGBUILD
+++ b/extra/sbc/PKGBUILD
@@ -1,8 +1,8 @@
-# $Id: PKGBUILD 198402 2013-10-30 14:39:13Z allan $
+# $Id: PKGBUILD 206207 2014-02-21 18:43:56Z heftig $
# Maintainer: Jan Alexander Steffens (heftig) <jan.steffens@gmail.com>
pkgname=sbc
-pkgver=1.1
+pkgver=1.2
pkgrel=1
pkgdesc="Bluetooth Subband Codec (SBC) library"
arch=('i686' 'x86_64' 'mips64el')
@@ -10,7 +10,7 @@ url="http://www.bluez.org/"
license=('GPL' 'LGPL')
depends=('glibc')
source=(http://www.kernel.org/pub/linux/bluetooth/$pkgname-$pkgver.tar.xz)
-md5sums=('ecadadbfd4b1dfe7b98f446c69126b23')
+md5sums=('ec65c444ad4c32aa85702641045b19e9')
build() {
cd $pkgname-$pkgver
diff --git a/extra/totem-plparser/PKGBUILD b/extra/totem-plparser/PKGBUILD
index eabab491e..f1116384c 100644
--- a/extra/totem-plparser/PKGBUILD
+++ b/extra/totem-plparser/PKGBUILD
@@ -1,10 +1,10 @@
-# $Id: PKGBUILD 203592 2014-01-13 17:12:25Z andyrtr $
+# $Id: PKGBUILD 206115 2014-02-18 17:40:26Z heftig $
# Maintainer: Jan Alexander Steffens (heftig) <jan.steffens@gmail.com>
# Contributor: Jan de Groot <jgc@archlinux.org>
pkgname=totem-plparser
-pkgver=3.10.0
-pkgrel=4
+pkgver=3.10.1
+pkgrel=1
url="http://www.gnome.org"
pkgdesc="Totem playlist parser library"
license=('LGPL')
@@ -13,7 +13,7 @@ depends=('gmime' 'libsoup' 'libarchive')
makedepends=('intltool' 'gobject-introspection' 'libquvi')
optdepends=('libquvi: video site handling (Youtube etc.)')
source=(http://ftp.gnome.org/pub/gnome/sources/totem-pl-parser/${pkgver%.*}/totem-pl-parser-$pkgver.tar.xz)
-sha256sums=('87eac3fdf2b632dfac0edda07906a3e84f1ce4442b8127394414020dafe41aa9')
+sha256sums=('13d20222e7230eff1b22acc2b6b54d3c910590782a3ac39b859857407fb5e413')
build() {
cd totem-pl-parser-$pkgver
diff --git a/extra/vlc/PKGBUILD b/extra/vlc/PKGBUILD
index 36bf19617..b4124b5e4 100644
--- a/extra/vlc/PKGBUILD
+++ b/extra/vlc/PKGBUILD
@@ -1,10 +1,10 @@
-# $Id: PKGBUILD 205478 2014-02-05 18:23:46Z giovanni $
+# $Id: PKGBUILD 206249 2014-02-22 18:40:57Z giovanni $
# Maintainer: Giovanni Scafora <giovanni@archlinux.org>
# Contributor: Sarah Hay <sarahhay@mb.sympatico.ca>
# Contributor: Martin Sandsmark <martin.sandsmark@kde.org>
pkgname=vlc
-pkgver=2.1.3
+pkgver=2.1.4
pkgrel=1
pkgdesc="A multi-platform MPEG, VCD/DVD, and DivX player"
arch=('i686' 'x86_64' 'mips64el')
@@ -60,7 +60,7 @@ options=('!emptydirs')
install=vlc.install
source=("http://download.videolan.org/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.xz"
'vlc-2.0.7-vaapi-compat.patch')
-md5sums=('56a489d093ffef9aa29809116985adba'
+md5sums=('7ed67d22f7425011078772bfc62ac222'
'6df10774bb7acf20e09d6139e5c7839e')
prepare() {
diff --git a/extra/webkitgtk/PKGBUILD b/extra/webkitgtk/PKGBUILD
index 4d4f15edf..88fa24493 100644
--- a/extra/webkitgtk/PKGBUILD
+++ b/extra/webkitgtk/PKGBUILD
@@ -1,9 +1,9 @@
-# $Id: PKGBUILD 205028 2014-02-03 10:02:58Z heftig $
+# $Id: PKGBUILD 206206 2014-02-21 18:40:49Z heftig $
# Maintainer: Andreas Radke <andyrtr@archlinux.org>
pkgname=webkitgtk
-pkgver=2.2.4
-pkgrel=2
+pkgver=2.2.5
+pkgrel=1
pkgdesc="GTK+ Web content engine library"
arch=(i686 x86_64 mips64el)
url="http://webkitgtk.org/"
@@ -17,7 +17,7 @@ conflicts=(webkitgtk3 libwebkit3)
replaces=(webkitgtk3 libwebkit3)
options=(!emptydirs)
source=(http://webkitgtk.org/releases/$pkgname-${pkgver}.tar.xz)
-sha256sums=('5e1aee1bfca3602cb02920d6984c584c775c661b30c33955e35ff9a21b4c4d74')
+sha256sums=('c710994a1ed0ec78f746a05ae7dc65369ed56d7475f0de576ca7a73ad9c6e670')
prepare() {
cd $pkgbase-$pkgver
diff --git a/extra/xcb-util-wm/PKGBUILD b/extra/xcb-util-wm/PKGBUILD
index 0044aa4c3..9ea7393df 100644
--- a/extra/xcb-util-wm/PKGBUILD
+++ b/extra/xcb-util-wm/PKGBUILD
@@ -1,9 +1,9 @@
-# $Id: PKGBUILD 204850 2014-01-29 10:16:49Z andyrtr $
+# $Id: PKGBUILD 206198 2014-02-21 16:31:02Z andyrtr $
# Maintainer: Jan de Groot <jgc@archlinux.org>
# Maintainer: Andreas Radke <andyrtr@archlinux.org>
pkgname=xcb-util-wm
-pkgver=0.4.0
+pkgver=0.4.1
pkgrel=1
pkgdesc="Utility libraries for XC Binding - client and window-manager helpers for ICCCM"
arch=('i686' 'x86_64' 'mips64el')
@@ -13,22 +13,22 @@ depends=('libxcb>=1.7')
makedepends=('xorg-util-macros')
source=("http://xcb.freedesktop.org/dist/${pkgname}-${pkgver}.tar.bz2"
'LICENSE')
-sha256sums=('66f97c18f7d98d3c873fe5db5842d2fca34519274c31ee668551ab8995a2f51f'
+sha256sums=('28bf8179640eaa89276d2b0f1ce4285103d136be6c98262b6151aaee1d3c2a3f'
'ded299aa179dcf0d885bf89274a4db77a530e03f9f5e7cf1c3c4ef1d60e914b9')
build() {
- cd "${srcdir}/${pkgname}-${pkgver}"
+ cd ${pkgname}-${pkgver}
./configure --prefix=/usr --disable-static
make
}
check() {
- cd "${srcdir}/${pkgname}-${pkgver}"
+ cd ${pkgname}-${pkgver}
make check
}
package() {
- cd "${srcdir}/${pkgname}-${pkgver}"
+ cd ${pkgname}-${pkgver}
make DESTDIR="${pkgdir}" install
install -D -m644 "${srcdir}/LICENSE" \
diff --git a/extra/xfburn/PKGBUILD b/extra/xfburn/PKGBUILD
index c093a8991..a21214cd7 100755
--- a/extra/xfburn/PKGBUILD
+++ b/extra/xfburn/PKGBUILD
@@ -1,46 +1,28 @@
-# $Id: PKGBUILD 157835 2012-04-30 04:19:58Z foutrelis $
+# $Id: PKGBUILD 206175 2014-02-20 21:33:41Z eric $
# Maintainer: Tobias Kieslich <tobias funnychar archlinux.org>
# Contributor: Alois Nespor alois.nespor@gmail.com
pkgname=xfburn
-pkgver=0.4.3
-pkgrel=6.1
-arch=('i686' 'x86_64' 'mips64el')
+pkgver=0.5.0
+pkgrel=1
pkgdesc="A simple CD/DVD burning tool based on libburnia libraries"
+arch=('i686' 'x86_64' 'mips64el')
url="http://goodies.xfce.org/projects/applications/xfburn"
-license=('GPL2')
-groups=('xfce4-goodies')
-install=${pkgname}.install
-depends=('libburn' 'libisofs' 'libxfcegui4' 'exo' 'gstreamer0.10-base'
- 'hicolor-icon-theme' 'desktop-file-utils' 'librsvg')
+license=('GPL')
+depends=('libburn' 'libisofs' 'exo' 'gstreamer0.10-base' 'desktop-file-utils')
makedepends=('intltool')
-source=(http://archive.xfce.org/src/apps/xfburn/0.4/$pkgname-$pkgver.tar.bz2
- fix_empty_dir_segfault.diff)
-sha1sums=('52d33e56b7ce9774fba680f50723eaf1a7215091'
- 'e374dd4942a49b52166fa9f2aa40e9aefb3aa3ec')
+groups=('xfce4-goodies')
+install=xfburn.install
+source=(http://archive.xfce.org/src/apps/xfburn/${pkgver%.*}/$pkgname-$pkgver.tar.bz2)
+sha1sums=('def2ced9a74b5112e992149ce901f3a5a73f20d9')
build() {
- cd "$srcdir/$pkgname-$pkgver"
-
- # fix https://bugs.archlinux.org/task/26121
- patch -Np0 -i "$srcdir/fix_empty_dir_segfault.diff"
-
- # fix build issue
- sed -i '1 i\
- #include <glib-object.h>' \
- xfburn/xfburn-settings.h
-
- ./configure \
- --prefix=/usr \
- --enable-gstreamer \
- --enable-dbus \
- --disable-hal
+ cd $pkgname-$pkgver
+ ./configure --prefix=/usr --enable-gstreamer
make
}
package() {
- cd "$srcdir/$pkgname-$pkgver"
+ cd $pkgname-$pkgver
make DESTDIR="$pkgdir" install
}
-
-# vim:set ts=2 sw=2 et:
diff --git a/extra/xfburn/fix_empty_dir_segfault.diff b/extra/xfburn/fix_empty_dir_segfault.diff
deleted file mode 100644
index af3fe07c8..000000000
--- a/extra/xfburn/fix_empty_dir_segfault.diff
+++ /dev/null
@@ -1,48 +0,0 @@
---- xfburn/xfburn-data-composition.c 2011-02-17 16:37:03.000000000 +0100
-+++ xfburn/xfburn-data-composition_patched.c 2011-02-17 16:40:40.000000000 +0100
-@@ -1874,26 +1874,29 @@
- g_error ("Failed adding %s as a node to the image: code %X!", src, r);
- }
-
-- basename = g_path_get_basename (src);
-+ /* Check names only for items not manually created (#613563) */
-+ if (type != DATA_COMPOSITION_TYPE_DIRECTORY || src != NULL) {
-+ basename = g_path_get_basename (src);
-+
-+ /* check if the file has been renamed */
-+ if (strcmp (basename, name) != 0) {
-+ /* rename the iso_node */
-+ r = iso_node_set_name (node, name);
-+
-+ if (r == 0) {
-+ /* The first string is the renamed name, the second one the original name */
-+ xfce_warn (_("Duplicate filename '%s' for '%s'"), name, src);
-+
-+ g_free (basename);
-+ g_free (name);
-+ g_free (src);
-
-- /* check if the file has been renamed */
-- if (strcmp (basename, name) != 0) {
-- /* rename the iso_node */
-- r = iso_node_set_name (node, name);
--
-- if (r == 0) {
-- /* The first string is the renamed name, the second one the original name */
-- xfce_warn (_("Duplicate filename '%s' for '%s'"), name, src);
--
-- g_free (basename);
-- g_free (name);
-- g_free (src);
--
-- continue;
-+ continue;
-+ }
- }
-+ g_free (basename);
- }
-
-- g_free (basename);
- g_free (name);
- g_free (src);
-
diff --git a/extra/xmlto/PKGBUILD b/extra/xmlto/PKGBUILD
index 299f5ac51..88d6c62b8 100644
--- a/extra/xmlto/PKGBUILD
+++ b/extra/xmlto/PKGBUILD
@@ -1,4 +1,4 @@
-# $Id: PKGBUILD 201307 2013-12-08 11:06:49Z giovanni $
+# $Id: PKGBUILD 206151 2014-02-20 11:17:14Z giovanni $
# Maintainer: Giovanni Scafora <giovanni@archlinux.org>
# Contributor: Jan de Groot <jgc@archlinux.org>
# Contributor: Sergej Pupykin <sergej@aur.archlinux.org>
@@ -6,7 +6,7 @@
pkgname=xmlto
pkgver=0.0.25
-pkgrel=3
+pkgrel=5
pkgdesc="Convert xml to many other formats"
arch=('i686' 'x86_64' 'mips64el')
url="http://cyberelk.net/tim/software/xmlto/"
@@ -19,8 +19,8 @@ md5sums=('6b6267b1470f8571fe5f63a128970364')
build() {
cd "$srcdir/${pkgname}-${pkgver}"
- ./configure --prefix=/usr \
- --mandir=/usr/share/man
+ ./configure BASH=/bin/bash --prefix=/usr \
+ --mandir=/usr/share/man
make
}