summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolás Reynolds <fauno@endefensadelsl.org>2014-06-02 03:33:36 +0000
committerNicolás Reynolds <fauno@endefensadelsl.org>2014-06-02 03:33:36 +0000
commit62ef4573f0f6a0a2ccaee3967ec3845afb6faaf0 (patch)
treed9af46c57f6a80b6feca6dd67206928cc352e74c
parent8d64e04cb528732ef0844a120620acc64f9fbc41 (diff)
Mon Jun 2 03:30:32 UTC 2014
-rw-r--r--community/0ad/PKGBUILD4
-rw-r--r--community/dwb/0001-Set-G_APPLICATION_HANDLES_COMMANDLINE-for-glib2-2.40.patch31
-rw-r--r--community/dwb/PKGBUILD14
-rw-r--r--community/i2c-tools/PKGBUILD8
-rw-r--r--community/roxterm/PKGBUILD10
-rw-r--r--extra/git/PKGBUILD7
-rw-r--r--extra/nasm/PKGBUILD9
-rw-r--r--extra/perl-net-dns/PKGBUILD6
-rw-r--r--extra/xorg-xcursorgen/PKGBUILD15
9 files changed, 72 insertions, 32 deletions
diff --git a/community/0ad/PKGBUILD b/community/0ad/PKGBUILD
index 9fb336a89..5721910ad 100644
--- a/community/0ad/PKGBUILD
+++ b/community/0ad/PKGBUILD
@@ -1,11 +1,11 @@
-# $Id: PKGBUILD 111463 2014-05-19 02:56:24Z svenstaro $
+# $Id: PKGBUILD 112345 2014-06-01 02:33:08Z svenstaro $
# Maintainer: Sven-Hendrik Haase <sh@lutzhaase.com>
# Contributor: t3ddy <t3ddy1988 "at" gmail {dot} com>
# Contributor: Adrián Chaves Fernández (Gallaecio) <adriyetichaves@gmail.com>
pkgname=0ad
pkgver=a16
_pkgver=0.0.16-alpha
-pkgrel=1
+pkgrel=2
pkgdesc="Cross-platform, 3D and historically-based real-time strategy game"
arch=('i686' 'x86_64')
url="http://play0ad.com/"
diff --git a/community/dwb/0001-Set-G_APPLICATION_HANDLES_COMMANDLINE-for-glib2-2.40.patch b/community/dwb/0001-Set-G_APPLICATION_HANDLES_COMMANDLINE-for-glib2-2.40.patch
new file mode 100644
index 000000000..cc6e9a269
--- /dev/null
+++ b/community/dwb/0001-Set-G_APPLICATION_HANDLES_COMMANDLINE-for-glib2-2.40.patch
@@ -0,0 +1,31 @@
+From 86057e813b61a20ee8ffc414d842625db5221123 Mon Sep 17 00:00:00 2001
+From: portix <portix@gmx.net>
+Date: Tue, 15 Apr 2014 16:49:08 +0200
+Subject: [PATCH] Set G_APPLICATION_HANDLES_COMMANDLINE for glib2 > 2.40
+
+Conflicts:
+ src/application.c
+---
+ src/application.c | 6 ++++++
+ 1 file changed, 6 insertions(+)
+
+diff --git a/src/application.c b/src/application.c
+index 77e7412..51b5c36 100644
+--- a/src/application.c
++++ b/src/application.c
+@@ -227,6 +227,12 @@ dwb_application_local_command_line(GApplication *app, gchar ***argv, gint *exit_
+ single_instance = GET_BOOL("single-instance");
+ if (s_opt_single || !single_instance)
+ g_application_set_flags(app, G_APPLICATION_NON_UNIQUE);
++#if GLIB_CHECK_VERSION(2, 40, 0)
++ else {
++ int flags = g_application_get_flags(app);
++ g_application_set_flags(app, flags | G_APPLICATION_HANDLES_COMMAND_LINE);
++ }
++#endif
+
+ bus = g_bus_get_sync(G_BUS_TYPE_SESSION, NULL, NULL);
+ if (!s_opt_fallback && bus != NULL && g_application_register(app, NULL, &error))
+--
+2.0.0
+
diff --git a/community/dwb/PKGBUILD b/community/dwb/PKGBUILD
index 42defb1fb..d495d10c9 100644
--- a/community/dwb/PKGBUILD
+++ b/community/dwb/PKGBUILD
@@ -1,10 +1,10 @@
-#$Id: PKGBUILD 107304 2014-03-16 22:27:48Z dwallace $
+#$Id: PKGBUILD 112343 2014-06-01 01:14:38Z dwallace $
# Maintainer: Daniel Wallace <danielwallace at gtmanfred dot com>
# Contributor: portix <portix at gmx.net>
pkgname=dwb
pkgver=2014.03.07
-pkgrel=1
+pkgrel=2
pkgdesc="A webkit web browser with vi-like keyboard shortcuts, stable snapshot"
url="http://portix.bitbucket.org/dwb/"
arch=('i686' 'x86_64')
@@ -12,8 +12,14 @@ install=dwb.install
license=('GPL')
depends=('webkitgtk2' 'desktop-file-utils')
makedepends=('json-c')
-source=(https://bitbucket.org/portix/"${pkgname}"/downloads/"${pkgname}"-"${pkgver}".tar.gz)
-sha1sums=('006e9df0c52219b9f022c1b4a3aa0518ff96295d')
+source=(https://bitbucket.org/portix/"${pkgname}"/downloads/"${pkgname}"-"${pkgver}".tar.gz
+ 0001-Set-G_APPLICATION_HANDLES_COMMANDLINE-for-glib2-2.40.patch)
+sha1sums=('006e9df0c52219b9f022c1b4a3aa0518ff96295d'
+ 'd026b4caf83920b1319591d1f1487fc9f49035df')
+
+prepare(){
+ patch -Np1 -d $srcdir/$pkgname-$pkgver -i $srcdir/0001-Set-G_APPLICATION_HANDLES_COMMANDLINE-for-glib2-2.40.patch
+}
build() {
cd "${srcdir}"/"${pkgname}"-"${pkgver}"
diff --git a/community/i2c-tools/PKGBUILD b/community/i2c-tools/PKGBUILD
index 448c7452c..e900a53b5 100644
--- a/community/i2c-tools/PKGBUILD
+++ b/community/i2c-tools/PKGBUILD
@@ -1,10 +1,10 @@
-# $Id: PKGBUILD 92028 2013-05-30 23:36:57Z seblu $
+# $Id: PKGBUILD 112431 2014-06-01 13:03:56Z jelle $
# Maintainer: Timothy Redaelli <timothy.redaelli@gmail.com>
# Contributor: DonVla <donvla@users.sourceforge.net>
pkgname=i2c-tools
-pkgver=3.1.0
-pkgrel=5
+pkgver=3.1.1
+pkgrel=1
pkgdesc="Heterogeneous set of I2C tools for Linux that used to be part of lm-sensors"
arch=('i686' 'x86_64')
url="http://www.lm-sensors.org/wiki/I2CTools"
@@ -12,7 +12,7 @@ license=('GPL')
depends=('python2')
optdepends=('read-edid: for decode-edid script')
source=(http://dl.lm-sensors.org/${pkgname}/releases/${pkgname}-${pkgver}.tar.bz2)
-md5sums=('f15019e559e378c6e9d5d6299a00df21')
+md5sums=('0fdbff53ebd0b8d9249256d6c56480b1')
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
diff --git a/community/roxterm/PKGBUILD b/community/roxterm/PKGBUILD
index a9caa0df2..7bfce1b2e 100644
--- a/community/roxterm/PKGBUILD
+++ b/community/roxterm/PKGBUILD
@@ -1,10 +1,10 @@
-# $Id: PKGBUILD 106002 2014-02-20 21:13:47Z ttoepper $
+# $Id: PKGBUILD 112433 2014-06-01 14:22:44Z ttoepper $
# Maintainer: Thorsten Töpper <atsutane-tu@freethoughts.de>
# Contributor: Alexander Fehr <pizzapunk gmail com>
pkgname=roxterm
-pkgver=2.8.2
-pkgrel=2
+pkgver=2.8.3
+pkgrel=1
pkgdesc='Tabbed, VTE-based terminal emulator'
arch=('i686' 'x86_64')
url='http://roxterm.sourceforge.net/'
@@ -14,9 +14,9 @@ makedepends=('docbook-xsl' 'xmlto' 'po4a' 'python2' 'python2-lockfile' 'imagemag
install=roxterm.install
source=("http://downloads.sourceforge.net/roxterm/roxterm-$pkgver.tar.bz2"
"http://downloads.sourceforge.net/roxterm/roxterm-$pkgver.tar.bz2.sign")
-md5sums=('62376327fe92071ad1f306dbe6ac82fa'
+md5sums=('0f775a11f01e38be22ae5a080800c5f7'
'SKIP')
-sha1sums=('fcde0b09f6ff02c5ec93a528e870e139d814b529'
+sha1sums=('05a046542918b20d1948158dc566db0ed7bc1ca5'
'SKIP')
diff --git a/extra/git/PKGBUILD b/extra/git/PKGBUILD
index 56d8ba756..ab0506250 100644
--- a/extra/git/PKGBUILD
+++ b/extra/git/PKGBUILD
@@ -1,8 +1,8 @@
-# $Id: PKGBUILD 213123 2014-05-19 02:58:52Z dan $
+# $Id: PKGBUILD 214028 2014-06-01 21:43:54Z dan $
# Maintainer: Dan McGee <dan@archlinux.org>
pkgname=git
-pkgver=1.9.3
+pkgver=2.0.0
pkgrel=1
pkgdesc="the fast distributed version control system"
arch=(i686 x86_64)
@@ -108,3 +108,6 @@ package() {
md5sums=('560200d1db05a2dd2b8a2b3718655463'
'042524f942785772d7bd52a1f02fe5ae'
'f67869315c2cc112e076f0c73f248002')
+md5sums=('0646202ae979e4339f3e47f2375b5773'
+ '042524f942785772d7bd52a1f02fe5ae'
+ 'f67869315c2cc112e076f0c73f248002')
diff --git a/extra/nasm/PKGBUILD b/extra/nasm/PKGBUILD
index 768338423..7856f919d 100644
--- a/extra/nasm/PKGBUILD
+++ b/extra/nasm/PKGBUILD
@@ -1,9 +1,8 @@
-# $Id: PKGBUILD 206134 2014-02-20 01:03:22Z eric $
-# Maintainer: Stéphane Gaudreault <stephane@archlinux.org>
-# Contributor: Aaron Griffin <aaron@archlinux.org>
+# $Id: PKGBUILD 213935 2014-06-01 02:30:44Z eric $
+# Maintainer: Eric Bélanger <eric@archlinux.org>
pkgname=nasm
-pkgver=2.11.01
+pkgver=2.11.05
pkgrel=1
pkgdesc="An 80x86 assembler designed for portability and modularity"
arch=('i686' 'x86_64')
@@ -12,7 +11,7 @@ license=('BSD')
depends=('glibc')
install=nasm.install
source=(http://www.nasm.us/pub/nasm/releasebuilds/${pkgver}/${pkgname}-${pkgver}.tar.xz)
-sha1sums=('e9414964de552cfe8ebc5d7645122d94d014702c')
+sha1sums=('20536831011b07015913964ddedbce916375e5ad')
build() {
cd ${pkgname}-${pkgver}
diff --git a/extra/perl-net-dns/PKGBUILD b/extra/perl-net-dns/PKGBUILD
index 735ec5fd9..b605b2108 100644
--- a/extra/perl-net-dns/PKGBUILD
+++ b/extra/perl-net-dns/PKGBUILD
@@ -1,8 +1,8 @@
-# $Id: PKGBUILD 212310 2014-05-12 17:45:02Z fyan $
+# $Id: PKGBUILD 213950 2014-06-01 10:58:40Z fyan $
# Maintainer: Felix Yan <felixonmars@gmail.com>
pkgname=perl-net-dns
-pkgver=0.75
+pkgver=0.76_1
pkgrel=1
pkgdesc="Perl Module: Interface to the DNS resolver"
arch=('i686' 'x86_64')
@@ -12,7 +12,7 @@ depends=('perl-digest-hmac' 'perl-net-ip' 'perl')
checkdepends=('perl-test-pod')
options=('!emptydirs')
source=(http://www.cpan.org/authors/id/N/NL/NLNETLABS/Net-DNS-$pkgver.tar.gz)
-sha1sums=('e57d08cfe61962d9de3cd78ec705a954e05f36bd')
+sha1sums=('f719cf72fdc19ed9a78fcd5d381385c620a93548')
build() {
cd Net-DNS-${pkgver}
diff --git a/extra/xorg-xcursorgen/PKGBUILD b/extra/xorg-xcursorgen/PKGBUILD
index 73b44508d..9ee5da684 100644
--- a/extra/xorg-xcursorgen/PKGBUILD
+++ b/extra/xorg-xcursorgen/PKGBUILD
@@ -1,27 +1,28 @@
-# $Id: PKGBUILD 184455 2013-05-06 19:40:25Z foutrelis $
+# $Id: PKGBUILD 214022 2014-06-01 11:38:18Z andyrtr $
+# Maintainer: AndyRTR <andyrtr@archlinux.org>
# Maintainer: Jan de Groot <jgc@archlinux.org>
pkgname=xorg-xcursorgen
-pkgver=1.0.5
-pkgrel=2
+pkgver=1.0.6
+pkgrel=1
pkgdesc="Create an X cursor file from PNG images"
-arch=(i686 x86_64)
+arch=('i686' 'x86_64')
url="http://xorg.freedesktop.org/"
license=('custom')
depends=('libx11' 'libxcursor' 'libpng')
makedepends=('xorg-util-macros')
groups=('xorg-apps' 'xorg')
source=(http://xorg.freedesktop.org/archive/individual/app/xcursorgen-${pkgver}.tar.bz2)
-sha1sums=('1d0ca82422d328522b06b218f86b5901a7d5521b')
+sha256sums=('31c8910f54eb175a8a74a60e7662697467e21a8bf948220a6048a93924b3f66c')
build() {
- cd "${srcdir}/xcursorgen-${pkgver}"
+ cd xcursorgen-${pkgver}
./configure --prefix=/usr
make
}
package() {
- cd "${srcdir}/xcursorgen-${pkgver}"
+ cd xcursorgen-${pkgver}
make DESTDIR="${pkgdir}" install
install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"