diff options
author | root <root@rshg054.dnsready.net> | 2013-03-29 00:06:00 -0700 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2013-03-29 00:06:00 -0700 |
commit | 236f7ce9638c79b9ff594552540f3f5a2cbd8703 (patch) | |
tree | 48799f3962c80c2ba374b02815b865a253d12869 | |
parent | 0fbe25a10dce8ec16455854ed6929b688f98cb36 (diff) |
Fri Mar 29 00:06:00 PDT 2013
45 files changed, 564 insertions, 492 deletions
diff --git a/community/almanah/PKGBUILD b/community/almanah/PKGBUILD index 36e6b4f35..9bf7cba30 100644 --- a/community/almanah/PKGBUILD +++ b/community/almanah/PKGBUILD @@ -1,22 +1,28 @@ -# $Id: PKGBUILD 79128 2012-10-30 23:07:30Z heftig $ +# $Id: PKGBUILD 87238 2013-03-28 21:27:02Z bgyorgy $ # Maintainer: Balló György <ballogyor+arch at gmail dot com> pkgname=almanah -pkgver=0.10.0 +pkgver=0.10.1 pkgrel=1 pkgdesc="Small GTK+ application to allow you to keep a diary of your life" arch=('i686' 'x86_64') url="http://live.gnome.org/Almanah_Diary" license=('GPL') -depends=('evolution-data-server>=3.6.0' 'gtkspell3' 'libcryptui' 'xdg-utils') +depends=('evolution-data-server' 'gtkspell3' 'libcryptui' 'xdg-utils') makedepends=('intltool') install=$pkgname.install -source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz) -sha256sums=('fd213b53ca2a9832df868ee44ed7c446cd6b320651e2f2d10e0a0c98aa3bfced') +source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz + update-gtkspell3-support.patch) +sha256sums=('122789c1baea1713102b200c0401d25395ec177a66ae22635d3ae2fecc1f08bd' + '60fedd6be05ef2619c3b50539b9fdc717480e4f03a2920d8b68b09e63dc7e7db') build() { cd "$srcdir/$pkgname-$pkgver" + # Port to the new gtkspell3 + patch -Np1 -i "$srcdir/update-gtkspell3-support.patch" + + autoreconf -fi ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \ --disable-static --disable-schemas-compile make diff --git a/community/almanah/update-gtkspell3-support.patch b/community/almanah/update-gtkspell3-support.patch new file mode 100644 index 000000000..aa2a81159 --- /dev/null +++ b/community/almanah/update-gtkspell3-support.patch @@ -0,0 +1,90 @@ +From 114c4f78ac9882be51c4154751760bd4fea48403 Mon Sep 17 00:00:00 2001 +From: Álvaro Peña <alvaropg@gmail.com> +Date: Wed, 06 Feb 2013 10:12:54 +0000 +Subject: Update GtkSpell 3 support + +--- +diff --git a/configure.ac b/configure.ac +index b89ba74..fbe6889 100644 +--- a/configure.ac ++++ b/configure.ac +@@ -95,7 +95,7 @@ AC_SUBST(EVO_LIBS) + + dnl Spell checking + if test $spell_checking = "true"; then +- PKG_CHECK_MODULES(SPELL_CHECKING, gtkspell-3.0) ++ PKG_CHECK_MODULES(SPELL_CHECKING, gtkspell3-3.0) + AC_SUBST(SPELL_CHECKING_CFLAGS) + AC_SUBST(SPELL_CHECKING_LIBS) + fi +diff --git a/src/main-window.c b/src/main-window.c +index fb931e1..2fe01ef 100644 +--- a/src/main-window.c ++++ b/src/main-window.c +@@ -1109,7 +1109,7 @@ mw_calendar_day_selected_cb (AlmanahCalendarButton *calendar_button, AlmanahMain + AlmanahEventManager *event_manager; + GDate calendar_date; + #ifdef ENABLE_SPELL_CHECKING +- GtkSpell *gtkspell; ++ GtkSpellChecker *gtkspell; + #endif /* ENABLE_SPELL_CHECKING */ + AlmanahMainWindowPrivate *priv = main_window->priv; + AlmanahEntry *entry; +@@ -1166,9 +1166,9 @@ mw_calendar_day_selected_cb (AlmanahCalendarButton *calendar_button, AlmanahMain + + #ifdef ENABLE_SPELL_CHECKING + /* Ensure the spell-checking is updated */ +- gtkspell = gtkspell_get_from_text_view (priv->entry_view); ++ gtkspell = gtk_spell_checker_get_from_text_view (priv->entry_view); + if (gtkspell != NULL) { +- gtkspell_recheck_all (gtkspell); ++ gtk_spell_checker_recheck_all (gtkspell); + gtk_widget_queue_draw (GTK_WIDGET (priv->entry_view)); + } + #endif /* ENABLE_SPELL_CHECKING */ +@@ -1326,13 +1326,13 @@ enable_spell_checking (AlmanahMainWindow *self, GError **error) + { + AlmanahApplication *application; + GSettings *settings; +- GtkSpell *gtkspell; ++ GtkSpellChecker *gtkspell; + gchar *spelling_language; + GtkTextTagTable *table; + GtkTextTag *tag; + + /* Bail out if spell checking's already enabled */ +- if (gtkspell_get_from_text_view (self->priv->entry_view) != NULL) ++ if (gtk_spell_checker_get_from_text_view (self->priv->entry_view) != NULL) + return TRUE; + + /* If spell checking wasn't already enabled, we have a dummy gtkspell-misspelled text tag to destroy */ +@@ -1353,7 +1353,9 @@ enable_spell_checking (AlmanahMainWindow *self, GError **error) + spelling_language = NULL; + } + +- gtkspell = gtkspell_new_attach (self->priv->entry_view, spelling_language, error); ++ gtkspell = gtk_spell_checker_new (); ++ gtk_spell_checker_set_language (gtkspell, spelling_language, error); ++ gtk_spell_checker_attach (gtkspell, self->priv->entry_view); + g_free (spelling_language); + + if (gtkspell == NULL) +@@ -1364,13 +1366,13 @@ enable_spell_checking (AlmanahMainWindow *self, GError **error) + static void + disable_spell_checking (AlmanahMainWindow *self) + { +- GtkSpell *gtkspell; ++ GtkSpellChecker *gtkspell; + GtkTextTagTable *table; + GtkTextTag *tag; + +- gtkspell = gtkspell_get_from_text_view (self->priv->entry_view); ++ gtkspell = gtk_spell_checker_get_from_text_view (self->priv->entry_view); + if (gtkspell != NULL) +- gtkspell_detach (gtkspell); ++ gtk_spell_checker_detach (gtkspell); + + /* Remove the old gtkspell-misspelling text tag */ + table = gtk_text_buffer_get_tag_table (self->priv->entry_buffer); +-- +cgit v0.9.1 diff --git a/community/cairo-dock-plugins/PKGBUILD b/community/cairo-dock-plugins/PKGBUILD new file mode 100755 index 000000000..3099f6c74 --- /dev/null +++ b/community/cairo-dock-plugins/PKGBUILD @@ -0,0 +1,67 @@ +# $Id: PKGBUILD 87222 2013-03-28 18:48:03Z alucryd $ +# Maintainer: Maxime Gauduin <alucryd@gmail.com> +# Contributor: Tofe <chris.chapuis@gmail.com> +# Contributor: zhuqin <zhuqin83@gmail.com> +# Contributor: tri1976 <trile7@gmail.com> +# Contributor: snoopy33 <snoopy33@no-log.org> + +pkgname=cairo-dock-plugins +pkgver=3.2.0 +pkgrel=1 +pkgdesc="Plugins for Cairo-Dock" +url="https://launchpad.net/cairo-dock" +license=('GPL') +arch=('i686' 'x86_64') +groups=('cairo-dock') +depends=('cairo-dock') +makedepends=('cmake' 'alsa-lib' 'fftw' 'gnome-menus' 'gtk-sharp-2' 'gvfs' 'libetpan' 'libexif' 'libical' 'libpulse' 'libxklavier' 'libxxf86vm' 'libzeitgeist' 'lm_sensors' 'ndesk-dbus-glib' 'python' 'ruby' 'upower' 'vala' 'vte3' 'webkitgtk3') +optdepends=('alsa-lib: Alsa-Mixer applet' + 'gnome-menus: GMenu applet' + 'fftw: Impulse applet' + 'libpulse: Impulse applet' + 'libxklavier: Keyboard-indicator applet' + 'libetpan: Mail applet' + 'libzeitgeist: Recent-Events applet' + 'vte3: Terminal applet' + 'webkitgtk3: Weblets applet' + 'libxxf86vm: XGamma applet' + 'gvfs: GVFS integration' + 'lm_sensors: Sensors support' + 'upower: UPower support' + 'libical: iCal support' + 'libexif: exif support' + 'python: Python interface' + 'gtk-sharp-2: Mono interface' + 'ndesk-dbus-glib: Mono interface' + 'ruby: Ruby interface' + 'vala: Vala interface') +options=('!libtool') +source=("http://launchpad.net/cairo-dock-plug-ins/3.2/${pkgver}/+download/${pkgname}-${pkgver}.tar.gz" 'alsa-mixer-applet.patch' 'applet-host-ias.patch') +sha256sums=('e407e1c0d54ae37815726d0f2a66f12ec8263499df99198646bcecccfc688b5c' + 'e474314037fe85dfb9e90c17b18f87936a911699d97fee5470ccd812ff6697c1' + '28be6144e9006f5c166d8f0119de1747ee2caf8e13072177a8d0dab23fd964b3') + +build() { + cd "${srcdir}"/${pkgname}-${pkgver} + +# Patch + patch -Np1 -i ../alsa-mixer-applet.patch + patch -Np1 -i ../applet-host-ias.patch + +# Build + if [[ -d build ]]; then + rm -rf build + fi + mkdir build && cd build + cmake .. -DCMAKE_INSTALL_PREFIX=/usr + make +} + +package() { + cd "${srcdir}"/${pkgname}-${pkgver}/build + +# Install + make DESTDIR=${pkgdir} install +} + +# vim: ts=2 sw=2 et: diff --git a/community/cairo-dock-plugins/alsa-mixer-applet.patch b/community/cairo-dock-plugins/alsa-mixer-applet.patch new file mode 100755 index 000000000..b70b89f0c --- /dev/null +++ b/community/cairo-dock-plugins/alsa-mixer-applet.patch @@ -0,0 +1,10 @@ +--- a/alsaMixer/src/applet-struct.h 2013-03-23 16:55:27.000000000 +0100 ++++ b/alsaMixer/src/applet-struct.h 2013-03-28 18:56:15.981944400 +0100 +@@ -19,6 +19,7 @@ + + #ifndef __CD_APPLET_STRUCT__ + #define __CD_APPLET_STRUCT__ ++#include <sys/types.h> + + #include <sys/types.h> + #include <alsa/asoundlib.h> diff --git a/community/cairo-dock-plugins/applet-host-ias.patch b/community/cairo-dock-plugins/applet-host-ias.patch new file mode 100755 index 000000000..a5316704f --- /dev/null +++ b/community/cairo-dock-plugins/applet-host-ias.patch @@ -0,0 +1,17 @@ +=== modified file 'Status-Notifier/src/applet-host-ias.c' +--- old/Status-Notifier/src/applet-host-ias.c 2012-03-18 02:41:47 +0000 ++++ new/Status-Notifier/src/applet-host-ias.c 2012-05-27 12:50:54 +0000 +@@ -238,10 +238,12 @@ + cIconThemePath, + #if (INDICATOR_OLD_NAMES == 0) + cAccessbleDesc && *cAccessbleDesc != '\0' ? cAccessbleDesc : ++ #if (INDICATOR_APPLICATIONADDED_HAS_HINT == 1) + #if (INDICATOR_APPLICATIONADDED_HAS_TITLE == 1) + cTitle && *cTitle != '\0' ? cTitle : + #endif + #endif ++ #endif + cLabel + ); + + diff --git a/community/cairo-dock/PKGBUILD b/community/cairo-dock/PKGBUILD new file mode 100755 index 000000000..221a7b11f --- /dev/null +++ b/community/cairo-dock/PKGBUILD @@ -0,0 +1,44 @@ +# $Id: PKGBUILD 87221 2013-03-28 18:43:22Z alucryd $ +# Maintainer: Maxime Gauduin <alucryd@gmail.com> +# Contributor: Tofe <chris.chapuis@gmail.com> +# Contributor: erm67 <erm67@yahoo.it> + +pkgname=cairo-dock +pkgver=3.2.0 +pkgrel=1 +pkgdesc="Light eye-candy fully themable animated dock" +arch=('i686' 'x86_64') +url="https://launchpad.net/cairo-dock-core" +license=('GPL') +groups=('cairo-dock') +depends=('curl' 'dbus-glib' 'gtk3' 'gtkglext' 'librsvg') +makedepends=('cmake' 'curl' 'dbus-glib' 'gtk3' 'gtkglext' 'inputproto' 'librsvg') +options=('!libtool') +source=("http://launchpad.net/${pkgname}-core/3.2/${pkgver}/+download/${pkgname}-${pkgver}.tar.gz" 'gldit-rpath.patch') +sha256sums=('69d57dab16e70bb0683ba91f1dfd19a9ee0de0b1642ca6480fef9dacbb9c2fd2' + '5a5fbc67aaa210387ef4410701747fe741942c99c4bd84ae771b96a3bdd1c4cc') + +build() { + cd "${srcdir}"/${pkgname}-${pkgver} + +# Patch + patch -Np1 -i ../gldit-rpath.patch + sed -i 's|themes3.2|themes|' CMakeLists.txt + +# Build + if [[ -d build ]]; then + rm -rf build + fi + mkdir build && cd build + cmake .. -DCMAKE_INSTALL_PREFIX=/usr + make +} + +package_cairo-dock() { + cd "${srcdir}"/${pkgname}-${pkgver}/build + +# Install + make DESTDIR="${pkgdir}" install +} + +# vim: ts=2 sw=2 et: diff --git a/community/cairo-dock/gldit-rpath.patch b/community/cairo-dock/gldit-rpath.patch new file mode 100755 index 000000000..11f73bf55 --- /dev/null +++ b/community/cairo-dock/gldit-rpath.patch @@ -0,0 +1,13 @@ +--- a/src/gldit/CMakeLists.txt 2013-03-23 16:55:12.000000000 +0100 ++++ b/src/gldit/CMakeLists.txt 2013-03-26 11:57:14.159200918 +0100 +@@ -82,9 +82,7 @@ link_directories( + ${GTK_LIBRARY_DIRS} + ${XEXTEND_LIBRARY_DIRS} + ${XINERAMA_LIBRARY_DIRS} +- ${CMAKE_SOURCE_DIR}/src/gldit +- ${CMAKE_SOURCE_DIR}/src/icon-factory +- ${CMAKE_SOURCE_DIR}/src/implementations) ++ ) + + # Define the library + add_library ("gldi" SHARED ${core_lib_SRCS}) diff --git a/community/gtkspell3/PKGBUILD b/community/gtkspell3/PKGBUILD index 35929803e..e66c20ba3 100644 --- a/community/gtkspell3/PKGBUILD +++ b/community/gtkspell3/PKGBUILD @@ -1,32 +1,30 @@ -# $Id: PKGBUILD 69145 2012-04-09 20:12:18Z bgyorgy $ +# $Id: PKGBUILD 87235 2013-03-28 21:25:14Z bgyorgy $ # Maintainer: Balló György <ballogyor+arch at gmail dot com> # Contributor: Roman Kyrylych <roman@archlinux.org> # Contributor: Ben <ben@benmazer.net> pkgname=gtkspell3 -_pkgname=gtkspell -pkgver=3.0.0.hg20110814 -_pkgver=3.0.0~hg20110814 +pkgver=3.0.2 pkgrel=1 url="http://gtkspell.sourceforge.net/" pkgdesc="Provides word-processor-style highlighting and replacement of misspelled words in a GtkTextView widget" arch=('i686' 'x86_64') license=('GPL') depends=('gtk3' 'enchant') -makedepends=('intltool') +makedepends=('intltool' 'gobject-introspection' 'vala') options=('!libtool') -source=(http://pkgbuild.com/~bgyorgy/sources/${pkgname}_$_pkgver.orig.tar.gz) -md5sums=('7cebcfa281f1f21fcb419f559a3e9e56') +source=(http://gtkspell.sourceforge.net/download/$pkgname-$pkgver.tar.gz) +md5sums=('5db501ead123ffbe8aad7d5f76c44c71') build() { - cd "$srcdir/$_pkgname-3.0.0+dev" + cd "$srcdir/$pkgname-$pkgver" ./configure --prefix=/usr --disable-static make } package() { - cd "$srcdir/$_pkgname-3.0.0+dev" + cd "$srcdir/$pkgname-$pkgver" make DESTDIR="$pkgdir" install } diff --git a/community/gtranslator/PKGBUILD b/community/gtranslator/PKGBUILD index c9f2b8b40..82881fd7c 100644 --- a/community/gtranslator/PKGBUILD +++ b/community/gtranslator/PKGBUILD @@ -1,28 +1,34 @@ -# $Id: PKGBUILD 87027 2013-03-25 19:19:12Z bpiotrowski $ +# $Id: PKGBUILD 87242 2013-03-28 21:28:56Z bgyorgy $ # Maintainer: Jaroslav Lichtblau <dragonlord@aur.archlinux.org> # Contributor: Hugo Doria <hugo@archlinux.org> # Contributor: Christer Solskogen (solskogen@carebears.mine.nu) pkgname=gtranslator pkgver=2.91.6 -pkgrel=2 +pkgrel=3 pkgdesc="An enhanced gettext po file editor for the GNOME" arch=('i686' 'x86_64') url="http://projects.gnome.org/gtranslator/" license=('GPL') depends=('desktop-file-utils' 'gdl' 'gettext' 'gtksourceview3' 'gtkspell3' 'iso-codes' 'libgda' 'libpeas' 'gsettings-desktop-schemas' 'hicolor-icon-theme' 'dconf') -makedepends=('intltool' 'itstool' 'gnome-doc-utils' 'gucharmap' 'json-glib') +makedepends=('intltool' 'itstool' 'gnome-doc-utils' 'gucharmap' 'json-glib' 'gnome-common' 'yelp-tools') optdepends=('gucharmap: for charmap plugin' 'json-glib: for open-tran plugin') options=('!libtool') install=$pkgname.install changelog=$pkgname.changelog -source=(http://ftp.acc.umu.se/pub/GNOME/sources/$pkgname/2.91/$pkgname-$pkgver.tar.xz) -sha256sums=('a1fd4b17b1f32cc7223a31d34e34f95b20acc7b5a23768351a34ff0b7a4bcdf6') +source=(http://ftp.acc.umu.se/pub/GNOME/sources/$pkgname/2.91/$pkgname-$pkgver.tar.xz + gtkspell3-port.patch) +sha256sums=('a1fd4b17b1f32cc7223a31d34e34f95b20acc7b5a23768351a34ff0b7a4bcdf6' + '29afb55c692869cbd47d0181ddd93acdd53f5b236ebabd9a96a983da66d4cb9d') build() { cd ${srcdir}/${pkgname}-${pkgver} + # Port to the new gtkspell3 + patch -Np1 -i "$srcdir/gtkspell3-port.patch" + + autoreconf -fi ./configure --prefix=/usr --sysconfdir=/etc --disable-schemas-compile make } diff --git a/community/gtranslator/gtkspell3-port.patch b/community/gtranslator/gtkspell3-port.patch new file mode 100644 index 000000000..e12e3a9d6 --- /dev/null +++ b/community/gtranslator/gtkspell3-port.patch @@ -0,0 +1,97 @@ +From cf33d8761dbfc7f6c8b27c3146efcad81f8fbde9 Mon Sep 17 00:00:00 2001 +From: Kalev Lember <kalevlember@gmail.com> +Date: Sun, 13 Jan 2013 13:19:40 +0000 +Subject: Port to gtkspell3 + +https://bugzilla.gnome.org/show_bug.cgi?id=691655 +--- +diff --git a/configure.ac b/configure.ac +index c1ba5b6..3fe9c46 100644 +--- a/configure.ac ++++ b/configure.ac +@@ -84,7 +84,7 @@ GDL_REQUIRED=3.6.0 + GDA_REQUIRED=4.2.3 + PEAS_REQUIRED=1.2.0 + GDICT_OPTIONAL=0.11.0 +-GTKSPELL_OPTIONAL=2.99.99 ++GTKSPELL_OPTIONAL=3.0.0 + JSON_GLIB_OPTIONAL=0.12.0 + + AC_ARG_WITH(gda, +@@ -174,14 +174,14 @@ dnl ------------------------------------------------------------------- + dnl Check for gtkspell >= 3.0 and use it if found + dnl ------------------------------------------------------------------- + have_gtkspell=no +-AC_ARG_WITH(gtkspell3, ++AC_ARG_WITH(gtkspell, + AS_HELP_STRING([--with-gtkspell],[Build with spell support]),, + with_gtkspell=auto) + + if test x"$with_gtkspell" != "xno" + then + PKG_CHECK_MODULES([GTKSPELL], [ +- gtkspell-3.0 >= $GTKSPELL_OPTIONAL ++ gtkspell3-3.0 >= $GTKSPELL_OPTIONAL + ], have_gtkspell=yes, have_gtkspell=no) + + if test x"$have_gtkspell" = "xyes" +@@ -339,7 +339,7 @@ if [ test x"$have_gtkspell" = "xyes" ]; then + echo "Building spell support: ................................YES" + else + echo "Building spell support: ................................NO" +- echo " Requires gtkspell >= $GTKSPELL_OPTIONAL" ++ echo " Requires gtkspell3 >= $GTKSPELL_OPTIONAL" + fi + + echo " +diff --git a/src/gtr-view.c b/src/gtr-view.c +index 59f18e8..b9c4f6a 100644 +--- a/src/gtr-view.c ++++ b/src/gtr-view.c +@@ -65,7 +65,7 @@ struct _GtrViewPrivate + gchar *search_text; + + #ifdef HAVE_GTKSPELL +- GtkSpell *spell; ++ GtkSpellChecker *spell; + #endif + }; + +@@ -75,11 +75,10 @@ gtr_attach_gtkspell (GtrView * view) + { + GError *error = NULL; + gchar *errortext = NULL; +- view->priv->spell = NULL; + +- view->priv->spell = +- gtkspell_new_attach (GTK_TEXT_VIEW (view), NULL, &error); +- if (view->priv->spell == NULL) ++ view->priv->spell = gtk_spell_checker_new (); ++ gtk_spell_checker_set_language (view->priv->spell, NULL, &error); ++ if (error) + { + g_warning (_("gtkspell error: %s\n"), error->message); + errortext = +@@ -90,6 +89,11 @@ gtr_attach_gtkspell (GtrView * view) + g_error_free (error); + g_free (errortext); + } ++ else ++ { ++ gtk_spell_checker_attach (view->priv->spell, ++ GTK_TEXT_VIEW (view)); ++ } + } + #endif + +@@ -263,7 +267,7 @@ gtr_view_enable_spellcheck (GtrView * view, gboolean enable) + #ifdef HAVE_GTKSPELL + if (!view->priv->spell) + return; +- gtkspell_detach (view->priv->spell); ++ gtk_spell_checker_detach (view->priv->spell); + #endif + } + } +-- +cgit v0.9.1 diff --git a/community/gtranslator/gtranslator.changelog b/community/gtranslator/gtranslator.changelog index 9dbf32879..393b0e71c 100644 --- a/community/gtranslator/gtranslator.changelog +++ b/community/gtranslator/gtranslator.changelog @@ -1,3 +1,7 @@ +2013-03-28 Balló György <ballogyor+arch at gmail dot com> + * gtranslator 2.91.6-3 + rebuild for the new gtkspell3 + 2013-01-18 Jaroslav Lichtblau (Dragonlord) <dragonlord@aur.archlinux.org> * gtranslator 2.91.6-1 diff --git a/community/gwibber/PKGBUILD b/community/gwibber/PKGBUILD index cfdf36be0..378218f5d 100644 --- a/community/gwibber/PKGBUILD +++ b/community/gwibber/PKGBUILD @@ -1,9 +1,9 @@ -# $Id: PKGBUILD 83023 2013-01-26 16:24:38Z bgyorgy $ +# $Id: PKGBUILD 87240 2013-03-28 21:28:09Z bgyorgy $ # Maintainer: Balló György <ballogyor+arch at gmail dot com> pkgname=gwibber pkgver=3.6.0 -pkgrel=2 +pkgrel=3 pkgdesc="Microblogging client for GNOME, which supports Facebook, Identi.ca, Twitter, Flickr, Foursquare, Sina and Sohu" arch=('i686' 'x86_64') url="http://gwibber.com/" @@ -15,11 +15,13 @@ install=$pkgname.install source=(http://launchpad.net/$pkgname/${pkgver%.*}/$pkgver/+download/$pkgname-$pkgver.tar.gz lp_934530.patch lp_1051801.patch - lp_1088775.patch) + lp_1088775.patch + gtkspell3-port.patch) md5sums=('5988e36e9f592c6eca6537ba6878307a' '8c43ae0ed96c52602befeff640a8672a' '0eb53f4f248a6c600b6c6dfaac12341f' - '5698a3b1699c018719b193362486c9b5') + '5698a3b1699c018719b193362486c9b5' + 'e8c657543542d8141fdfe4b87a24d7fe') build() { cd "$srcdir/$pkgname-$pkgver" @@ -30,6 +32,9 @@ build() { patch -Np1 -i "$srcdir/lp_1051801.patch" patch -Np1 -i "$srcdir/lp_1088775.patch" + # Port to the new gtkspell3 + patch -Np1 -i "$srcdir/gtkspell3-port.patch" + # Use the standalone accounts configuration panel sed -i 's/"gnome-control-center", "credentials", "application=gwibber"/"credentials-preferences"/' client/gwibber-client.vala sed -i 's/"gnome-control-center", "credentials"/"credentials-preferences"/' gwibber/microblog/dispatcher.py @@ -37,6 +42,8 @@ build() { # Remove unneeded dependency on libdbusmenu sed -i '/Dbusmenu-0.4/ d' client/Makefile.{am,in} + autoreconf -fi + intltoolize --force ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var --libexecdir=/usr/lib/$pkgname \ --disable-static --disable-schemas-compile --disable-unity make diff --git a/community/gwibber/gtkspell3-port.patch b/community/gwibber/gtkspell3-port.patch new file mode 100644 index 000000000..a7cc5da37 --- /dev/null +++ b/community/gwibber/gtkspell3-port.patch @@ -0,0 +1,29 @@ +diff -Naur gwibber-3.6.0.orig/configure.ac gwibber-3.6.0/configure.ac +--- gwibber-3.6.0.orig/configure.ac 2012-10-03 02:09:08.000000000 +0200 ++++ gwibber-3.6.0/configure.ac 2013-03-28 21:34:39.227995294 +0100 +@@ -159,10 +159,10 @@ + + if test "x$enable_spell" = "xyes"; then + PKG_CHECK_MODULES(GTKSPELL, +- gtkspell-3.0) ++ gtkspell3-3.0) + AC_SUBST(GTKSPELL_CFLAGS) + AC_SUBST(GTKSPELL_CFLAGS) +- GTKSPELL_PKG="--pkg gtkspell-3.0" ++ GTKSPELL_PKG="--pkg gtkspell3-3.0" + AC_SUBST(GTKSPELL_PKG) + fi + +diff -Naur gwibber-3.6.0.orig/libgwibber-gtk/entry.vala gwibber-3.6.0/libgwibber-gtk/entry.vala +--- gwibber-3.6.0.orig/libgwibber-gtk/entry.vala 2012-08-21 06:14:19.000000000 +0200 ++++ gwibber-3.6.0/libgwibber-gtk/entry.vala 2013-03-28 21:36:32.830637428 +0100 +@@ -141,7 +141,8 @@ + #if HAVE_GTKSPELL + try + { +- var spell = new Gtk.Spell.attach(this, null); ++ var spell = new GtkSpell.Checker(); ++ spell.attach(this); + } + catch (Error e) + { diff --git a/community/mfs/PKGBUILD b/community/mfs/PKGBUILD index f7370e8e6..35be11dc7 100644 --- a/community/mfs/PKGBUILD +++ b/community/mfs/PKGBUILD @@ -1,43 +1,35 @@ -# $Id: PKGBUILD 75321 2012-08-19 15:17:28Z arodseth $ +# $Id: PKGBUILD 87206 2013-03-28 15:53:12Z arodseth $ # Maintainer: Alexander Rødseth <rodseth@gmail.com> # Contributor: Thomas S Hatch <thatch45@gmail.com> pkgbase=mfs pkgname=('mfs-master' 'mfs-chunkserver' 'mfs-client') -pkgver=1.6.26 +pkgver=1.6.27_1 pkgrel=1 pkgdesc='MooseFS, fault tolerant, network distributed file system' -license=('GPL3') +url='http://www.moosefs.com/' arch=('x86_64' 'i686') -options=('!libtool') +license=('GPL3') depends=('zlib' 'fuse' 'python2' 'bash' 'xfsprogs') -url='http://www.moosefs.com/' -install=mfs.install -source=("http://www.moosefs.org/tl_files/mfscode/mfs-$pkgver.tar.gz" +install="$pkgbase.install" +options=('!libtool') +source=("http://www.moosefs.org/tl_files/${pkgbase}code/$pkgbase-${pkgver/_/-}.tar.gz" 'mfsmaster.service' 'mfschunkserver.service' 'mfsmetalogger.service' - 'mfscgiserv.service' - 'mfsmaster' - 'mfschunkserver' - 'mfsmetalogger' - 'mfscgiserv') -sha256sums=('f250f97c6f2a229277fdbf9fe96036873fd6c95a38f484f06e6b87a404c01885' + 'mfscgiserv.service') +sha256sums=('dfe682f0b184ed13e602274825148cd9a7ddfe4f0894e1ab9c1823f66208cb28' 'b24fc4f699e7d11fcda00d83a1feb45aa0e6f4f448e675a1857edcf315427fe0' '19262bde4dbefb1d3eba09ba7d507595aed9647328a0a7822bbc1915ae3201a7' 'bf92e93be68308d53f649de84dc5bbb0fb433e33306b8d0c303be6c6c3e59a55' - '6725a732c6294ee8817be6c24e3811481bf05e97a0a64108908e2312d7687f1a' - '7c307f7be520644ac5d9c71e39ff7ec7e26800aa77c8a18c51a2d0087e5b2f48' - '2d07e544f4bfeb497c24276936d3a8ce9f906597d6b9c898dc491426b21e74e0' - 'd9c072cbb9d9645e5131d08b08628ccc2a2bef0a4e9c6fd8c3c33e50efce39f3' - 'a2e1951888887e928e68a3a010047fa3528182e93c086e4addb5abc14ea72c3b') + '6725a732c6294ee8817be6c24e3811481bf05e97a0a64108908e2312d7687f1a') build() { cd "$srcdir" msg2 'Building client...' - cp -r $pkgbase-$pkgver $pkgbase-client - cd $pkgbase-client + cp -r "$pkgbase-${pkgver%_1}" "$pkgbase-client" + cd "$pkgbase-client" ./configure \ --prefix=/usr \ --sysconfdir=/etc/mfs \ @@ -50,8 +42,8 @@ build() { cd .. msg2 'Building chunkserver...' - cp -r $pkgbase-$pkgver $pkgbase-chunk - cd $pkgbase-chunk + cp -r "$pkgbase-${pkgver%_1}" "$pkgbase-chunk" + cd "$pkgbase-chunk" ./configure \ --prefix=/usr \ --sysconfdir=/etc/mfs \ @@ -64,8 +56,8 @@ build() { cd .. msg2 'Building master...' - cp -r $pkgbase-$pkgver $pkgbase-master - cd $pkgbase-master + cp -r "$pkgbase-${pkgver%_1}" "$pkgbase-master" + cd "$pkgbase-master" ./configure \ --prefix=/usr \ --sysconfdir=/etc/mfs \ @@ -98,9 +90,6 @@ package_mfs-chunkserver() { install -Dm644 "$srcdir/mfschunkserver.service" \ "$pkgdir/usr/lib/systemd/system/mfschunkserver.service" - msg2 'Packaging initscript...' - install -Dm755 "$srcdir/mfschunkserver" "$pkgdir/etc/rc.d/mfschunkserver" - msg2 'Cleaning up...' rm -rf "$pkgdir/usr/share/man/man7" rmdir "$pkgdir/usr/share/man/man1" @@ -120,9 +109,8 @@ package_mfs-master() { install -Dm644 NEWS "$pkgdir/usr/share/doc/$pkgbase/NEWS" install -Dm644 UPGRADE "$pkgdir/usr/share/doc/$pkgbase/UPGRADE" - msg2 'Packaging Systemd services and initscripts...' + msg2 'Packaging Systemd services...' for fn in master metalogger cgiserv; do - install -Dm755 "$srcdir/mfs$fn" "$pkgdir/etc/rc.d/mfs$fn" install -Dm644 "$srcdir/mfs$fn.service" \ "$pkgdir/usr/lib/systemd/system/mfs$fn.service" done diff --git a/community/mfs/mfs.install b/community/mfs/mfs.install index 906932aaa..433595cb0 100644 --- a/community/mfs/mfs.install +++ b/community/mfs/mfs.install @@ -17,8 +17,7 @@ post_install() { echo 'To troubleshoot a service, like "mfschunkserver", just running' echo '"/usr/bin/mfschunkserver start" can be helpful.' echo - echo '"systemctl enable mfschunkserver" can be used to enable a service' - echo "at boot, if you're using systemd." + echo 'Systemd is supported for starting services at boot.' echo } diff --git a/community/mfs/mfscgiserv b/community/mfs/mfscgiserv deleted file mode 100644 index 2f176d239..000000000 --- a/community/mfs/mfscgiserv +++ /dev/null @@ -1,36 +0,0 @@ -#!/bin/bash - -. /etc/rc.conf -. /etc/rc.d/functions - -PID=$(ps aux | grep -v grep | grep /usr/bin/mfscgiserv | awk '{print $2}') -case "$1" in - start) - stat_busy "Starting MooseFS CGI Web Frontend Daemon" - [ -z "$PID" ] && /usr/bin/mfscgiserv &> /dev/null - if [ $? = 0 ]; then - add_daemon mfscgiserv - stat_done - else - stat_fail - exit 1 - fi - ;; - stop) - stat_busy "Stopping MooseFS CGI Web Frontend Daemon" - [ ! -z "$PID" ] && kill $PID &> /dev/null - if [ $? -gt 0 ]; then - stat_fail - else - rm_daemon mfscgiserv - stat_done - fi - ;; - restart) - $0 stop - sleep 1 - $0 start - ;; - *) - echo "usage: $0 {start|stop|restart}" -esac diff --git a/community/mfs/mfschunkserver b/community/mfs/mfschunkserver deleted file mode 100644 index 606d00f48..000000000 --- a/community/mfs/mfschunkserver +++ /dev/null @@ -1,38 +0,0 @@ -#!/bin/bash - -. /etc/rc.conf -. /etc/rc.d/functions - -PID=`pidof -o %PPID /usr/bin/mfschunkserver` -case "$1" in - start) - stat_busy "Starting MooseFS Chunkserver Daemon" - if [ -z "$PID" ]; then - /usr/bin/mfschunkserver start - fi - if [ ! -z "$PID" -o $? -gt 0 ]; then - stat_fail - else - PID=`pidof -o %PPID /usr/bin/mfschunkserver` - echo $PID > /var/run/mfsmetalogger.pid - add_daemon mfschunkserver - stat_done - fi - ;; - stop) - stat_busy "Stopping MooseFS Chunkserver Daemon" - [ ! -z "$PID" ] && /usr/bin/mfschunkserver stop &> /dev/null - if [ $? -gt 0 ]; then - stat_fail - else - rm_daemon mfschunkserver - stat_done - fi - ;; - restart) - $0 stop - $0 start - ;; - *) - echo "usage: $0 {start|stop|restart}" -esac diff --git a/community/mfs/mfsmaster b/community/mfs/mfsmaster deleted file mode 100644 index b0cfd8299..000000000 --- a/community/mfs/mfsmaster +++ /dev/null @@ -1,39 +0,0 @@ -#!/bin/bash - -. /etc/rc.conf -. /etc/rc.d/functions - -PID=`pidof -o %PPID -x /usr/bin/mfsmaster` -case "$1" in - start) - stat_busy "Starting MooseFS Master Daemon" - if [ -z "$PID" ]; then - /usr/bin/mfsmaster start - fi - if [ ! -z "$PID" -o $? -gt 0 ]; then - stat_fail - else - PID=`pidof -o %PPID -x /usr/bin/mfsmaster` - echo $PID > /var/run/mfsmaster.pid - add_daemon mfsmaster - stat_done - fi - ;; - stop) - stat_busy "Stopping MooseFS Master Daemon" - [ ! -z "$PID" ] && /usr/bin/mfsmaster stop &> /dev/null - if [ $? -gt 0 ]; then - stat_fail - else - rm_daemon mfsmaster - rm /var/run/mfsmaster.pid - stat_done - fi - ;; - restart) - $0 stop - $0 start - ;; - *) - echo "usage: $0 {start|stop|restart}" -esac diff --git a/community/mfs/mfsmetalogger b/community/mfs/mfsmetalogger deleted file mode 100644 index a870cc5a7..000000000 --- a/community/mfs/mfsmetalogger +++ /dev/null @@ -1,39 +0,0 @@ -#!/bin/bash - -. /etc/rc.conf -. /etc/rc.d/functions - -PID=`pidof -o %PPID /usr/bin/mfsmetalogger` -case "$1" in - start) - stat_busy "Starting MooseFS Metalogger Daemon" - if [ -z "$PID" ]; then - /usr/bin/mfsmetalogger start - fi - if [ ! -z "$PID" -o $? -gt 0 ]; then - stat_fail - else - PID=`pidof -o %PPID /usr/bin/mfsmetalogger` - echo $PID > /var/run/mfsmetalogger.pid - add_daemon mfsmetalogger - stat_done - fi - ;; - stop) - stat_busy "Stopping MooseFS Metalogger Daemon" - [ ! -z "$PID" ] && /usr/bin/mfsmetalogger stop &> /dev/null - if [ $? -gt 0 ]; then - stat_fail - else - rm_daemon mfsmetalogger - rm /var/run/mfsmetalogger.pid - stat_done - fi - ;; - restart) - $0 stop - $0 start - ;; - *) - echo "usage: $0 {start|stop|restart}" -esac diff --git a/community/mosh/PKGBUILD b/community/mosh/PKGBUILD index 6b261372b..41df99725 100644 --- a/community/mosh/PKGBUILD +++ b/community/mosh/PKGBUILD @@ -4,15 +4,15 @@ # Contributor: Thomas Weißschuh <thomas_weissschuh lavabit.com> pkgname=mosh -pkgver=1.2.3 -pkgrel=5 +pkgver=1.2.4 +pkgrel=1 pkgdesc='Mobile shell, surviving disconnects with local echo and line editing' arch=('x86_64' 'i686') url='http://mosh.mit.edu/' license=('GPL3') depends=('protobuf' 'ncurses' 'zlib' 'openssh' 'perl' 'perl-io-tty' 'libutempter') -source=("https://github.com/downloads/keithw/mosh/$pkgname-$pkgver.tar.gz") -sha256sums=('93f09fda77e57f05485a61f3ac679bf9f3f359a9b0b93c216ddd53cd124a768f') +source=("http://$pkgname.mit.edu/$pkgname-$pkgver.tar.gz") +sha256sums=('e74d0d323226046e402dd469a176075fc2013b69b0e67cea49762c957175df46') optdepends=('ufw-extras') options=('!emptydirs') diff --git a/community/newsbeuter/PKGBUILD b/community/newsbeuter/PKGBUILD index 3e14c70fe..72ad250d0 100644 --- a/community/newsbeuter/PKGBUILD +++ b/community/newsbeuter/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 86876 2013-03-23 23:10:35Z td123 $ +# $Id: PKGBUILD 87233 2013-03-28 21:20:42Z jlichtblau $ # Maintainer: Jaroslav Lichtblau <dragonlord@aur.archlinux.org> # Contributor: Sven Pfleiderer <pfleidi@roothausen.de> pkgname=newsbeuter -pkgver=2.5 -pkgrel=2 +pkgver=2.6 +pkgrel=1 pkgdesc="A RSS feed reader for the text console with special Podcast support" arch=('i686' 'x86_64') url="http://www.newsbeuter.org/" @@ -15,19 +15,12 @@ optdepends=('ruby') options=('!libtool') install=$pkgname.install changelog=$pkgname.changelog -source=(http://www.newsbeuter.org/downloads/$pkgname-$pkgver.tar.gz - 'gcc47.patch' - 'libjson.patch') -sha256sums=('abc54b7bee3e062cd166787edf35aadbeb0ae1f5fcc8d955b77143aaca096825' - '24f30f83649deb8e2e268ebd2394243eb25824701f0c576a6c20f3f64e70dd52' - '6fa9f8a814474e3262595745309c0263c7f3d40feb4ea8da29d2808ab710e781') +source=(http://www.newsbeuter.org/downloads/$pkgname-$pkgver.tar.gz) +sha256sums=('3189fdd3c65b3207f9ffb3a10f6fda4e92ea927776cb49a79c1e4c0344f9dcc3') build() { cd ${srcdir}/$pkgname-$pkgver - patch -p1 -i "${srcdir}"/gcc47.patch - patch -p1 -i "${srcdir}"/libjson.patch - make prefix=/usr } diff --git a/community/newsbeuter/gcc47.patch b/community/newsbeuter/gcc47.patch deleted file mode 100644 index 9cb2e1182..000000000 --- a/community/newsbeuter/gcc47.patch +++ /dev/null @@ -1,90 +0,0 @@ -diff -u -r -U5 newsbeuter-2.5/src/controller.cpp newsbeuter-2.5.includes/src/controller.cpp ---- newsbeuter-2.5/src/controller.cpp 2012-01-06 09:41:13.000000000 -0500 -+++ newsbeuter-2.5.includes/src/controller.cpp 2012-02-18 15:57:32.525947811 -0500 -@@ -36,10 +36,11 @@ - - #include <sys/types.h> - #include <sys/wait.h> - #include <sys/stat.h> - #include <pwd.h> -+#include <unistd.h> - - #include <ncurses.h> - - #include <libxml/xmlversion.h> - #include <libxml/parser.h> -diff -u -r -U5 newsbeuter-2.5/src/google_api.cpp newsbeuter-2.5.includes/src/google_api.cpp ---- newsbeuter-2.5/src/google_api.cpp 2012-01-06 09:41:13.000000000 -0500 -+++ newsbeuter-2.5.includes/src/google_api.cpp 2012-02-18 15:28:32.287929217 -0500 -@@ -7,10 +7,12 @@ - #include <config.h> - #include <utils.h> - - #include <curl/curl.h> - -+#include <unistd.h> -+ - #define GREADER_LOGIN "https://www.google.com/accounts/ClientLogin" - #define GREADER_API_PREFIX "http://www.google.com/reader/api/0/" - #define GREADER_FEED_PREFIX "http://www.google.com/reader/atom/" - - #define GREADER_SUBSCRIPTION_LIST GREADER_API_PREFIX "subscription/list" -diff -u -r -U5 newsbeuter-2.5/src/pb_controller.cpp newsbeuter-2.5.includes/src/pb_controller.cpp ---- newsbeuter-2.5/src/pb_controller.cpp 2012-01-06 09:41:13.000000000 -0500 -+++ newsbeuter-2.5.includes/src/pb_controller.cpp 2012-02-18 15:57:48.241947978 -0500 -@@ -10,10 +10,11 @@ - #include <sys/stat.h> - #include <sys/types.h> - #include <pwd.h> - #include <cstdlib> - #include <signal.h> -+#include <unistd.h> - - #include <keymap.h> - #include <configcontainer.h> - #include <colormanager.h> - #include <exceptions.h> -diff -u -r -U5 newsbeuter-2.5/src/queueloader.cpp newsbeuter-2.5.includes/src/queueloader.cpp ---- newsbeuter-2.5/src/queueloader.cpp 2012-01-06 09:41:13.000000000 -0500 -+++ newsbeuter-2.5.includes/src/queueloader.cpp 2012-02-18 15:57:59.472948099 -0500 -@@ -5,10 +5,11 @@ - #include <logger.h> - #include <fstream> - #include <cstring> - #include <config.h> - #include <libgen.h> -+#include <unistd.h> - - using namespace newsbeuter; - - namespace podbeuter { - -diff -u -r -U5 newsbeuter-2.5/src/reloadthread.cpp newsbeuter-2.5.includes/src/reloadthread.cpp ---- newsbeuter-2.5/src/reloadthread.cpp 2012-01-06 09:41:13.000000000 -0500 -+++ newsbeuter-2.5.includes/src/reloadthread.cpp 2012-02-18 15:21:21.137924605 -0500 -@@ -1,8 +1,10 @@ - #include <reloadthread.h> - #include <logger.h> - -+#include <unistd.h> -+ - namespace newsbeuter { - - reloadthread::reloadthread(controller * c, configcontainer * cf) : ctrl(c), oldtime(0), waittime_sec(0), suppressed_first(false), cfg(cf) { - LOG(LOG_INFO,"reloadthread: waiting %u seconds between reloads",waittime_sec); - } -diff -u -r -U5 newsbeuter-2.5/src/utils.cpp newsbeuter-2.5.includes/src/utils.cpp ---- newsbeuter-2.5/src/utils.cpp 2012-01-06 09:41:13.000000000 -0500 -+++ newsbeuter-2.5.includes/src/utils.cpp 2012-02-18 15:01:55.076912171 -0500 -@@ -8,10 +8,11 @@ - #include <iconv.h> - #include <errno.h> - #include <pwd.h> - #include <libgen.h> - #include <sys/utsname.h> -+#include <unistd.h> - - #include <sstream> - #include <locale> - #include <cwchar> - #include <cstring> diff --git a/community/newsbeuter/libjson.patch b/community/newsbeuter/libjson.patch deleted file mode 100644 index 7c34b5bad..000000000 --- a/community/newsbeuter/libjson.patch +++ /dev/null @@ -1,29 +0,0 @@ -Description: propagate boolean json type -Apparently the libjson project decided to rename their boolean type to -json_bool... -Author: Nico Golde <nion@debian.org> -Bug-Debian: http://bugs.debian.org/689225 - ---- -The information above should follow the Patch Tagging Guidelines, please -checkout http://dep.debian.net/deps/dep3/ to learn about the format. Here -are templates for supplementary fields that you might want to add: - -Origin: vendor -Bug: http://bugs.debian.org/689225 -Bug-Debian: http://bugs.debian.org/689225 -Forwarded: - -Index: newsbeuter-2.5/src/ttrss_api.cpp -=================================================================== ---- newsbeuter-2.5.orig/src/ttrss_api.cpp 2012-09-30 17:25:23.000000000 +0200 -+++ newsbeuter-2.5/src/ttrss_api.cpp 2012-09-30 17:43:24.000000000 +0200 -@@ -220,7 +220,7 @@ - const char * link = json_object_get_string(json_object_object_get(item_obj, "link")); - const char * content = json_object_get_string(json_object_object_get(item_obj, "content")); - time_t updated = (time_t)json_object_get_int(json_object_object_get(item_obj, "updated")); -- boolean unread = json_object_get_boolean(json_object_object_get(item_obj, "unread")); -+ json_bool unread = json_object_get_boolean(json_object_object_get(item_obj, "unread")); - - rsspp::item item; - diff --git a/community/newsbeuter/newsbeuter.changelog b/community/newsbeuter/newsbeuter.changelog index 794d2b935..d8fb146ff 100644 --- a/community/newsbeuter/newsbeuter.changelog +++ b/community/newsbeuter/newsbeuter.changelog @@ -1,5 +1,8 @@ +2013-03-28 Jaroslav Lichtblau <dragonlord@aur.archlinux.org> + * newsbeuter 2.6-1 + 2013-03-07 Andrea Scarpino <andrea@archlinux.org> - * ruby 2.0 rebuild + * ruby 2.0 rebuild 2012-02-23 Jaroslav Lichtblau <dragonlord@aur.archlinux.org> * newsbeuter 2.5-1 diff --git a/community/opendkim/PKGBUILD b/community/opendkim/PKGBUILD index ee7846e36..a6ddb975d 100644 --- a/community/opendkim/PKGBUILD +++ b/community/opendkim/PKGBUILD @@ -1,9 +1,9 @@ -# $Id: PKGBUILD 86987 2013-03-25 17:04:53Z spupykin $ +# $Id: PKGBUILD 87200 2013-03-28 14:27:14Z spupykin $ # Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> # Maintainer: Thomas Jost <schnouki@schnouki.net> pkgname=opendkim -pkgver=2.8.1 +pkgver=2.8.2 pkgrel=1 pkgdesc="An open source implementation of the DKIM sender authentication system. Based on a fork of dkim-milter." arch=(i686 x86_64) @@ -18,7 +18,7 @@ source=(http://downloads.sourceforge.net/project/$pkgname/$pkgname-$pkgver.tar.g opendkim.conf opendkim.rc opendkim.service) -md5sums=('6c9810e343414f49ad7fee313f02a0a7' +md5sums=('62d7b22f3b15049e3692caa28bcc801e' '3e2bb1058ac0662f01e675aa6ac7ee8f' '093f5c098a45cc68753f97e45a5b374c' 'bc1b73856bc1941faaa4842e00437cb5') diff --git a/community/python-pyproj/PKGBUILD b/community/python-pyproj/PKGBUILD index 70ccf4529..90bf625f0 100644 --- a/community/python-pyproj/PKGBUILD +++ b/community/python-pyproj/PKGBUILD @@ -1,9 +1,9 @@ -# $Id: PKGBUILD 78245 2012-10-17 10:26:49Z allan $ +# $Id: PKGBUILD 87227 2013-03-28 19:33:14Z stephane $ # Maintainer: Stéphane Gaudreault <stephane@archlinux.org> pkgbase=python-pyproj pkgname=('python-pyproj' 'python2-pyproj') -pkgver=1.9.2 +pkgver=1.9.3 pkgrel=1 pkgdesc="Python interfaces to PROJ.4 library" arch=('i686' 'x86_64') @@ -11,7 +11,7 @@ url="http://code.google.com/p/pyproj" license=('custom') source=(http://pyproj.googlecode.com/files/pyproj-${pkgver}.tar.gz) makedepends=('python' 'python2') -sha1sums=('a7a4bf95f3492e45704bccd4aeafe3bbe32fb023') +sha1sums=('3f290241e113ea63d0487a48e7e054cc1c3e19f8') build() { cd "${srcdir}" diff --git a/community/qlandkartegt/PKGBUILD b/community/qlandkartegt/PKGBUILD index 67cc88043..abb8cb8a4 100644 --- a/community/qlandkartegt/PKGBUILD +++ b/community/qlandkartegt/PKGBUILD @@ -1,11 +1,11 @@ -# $Id: PKGBUILD 87019 2013-03-25 19:17:01Z bpiotrowski $ +# $Id: PKGBUILD 87229 2013-03-28 20:43:22Z jlichtblau $ # Maintainer: Jaroslav Lichtblau <dragonlord@aur.archlinux.org> # Contributor: Matthias Maennich <arch@maennich.net> # Contributor: <boenki@gmx.de> pkgname=qlandkartegt -pkgver=1.6.0 -pkgrel=3 +pkgver=1.7.0 +pkgrel=1 pkgdesc="Use your GPS with Linux" arch=('i686' 'x86_64') url="http://www.qlandkarte.org/" @@ -40,3 +40,5 @@ package(){ install -D -m644 "${srcdir}/$pkgname-mimetypes.xml" \ "${pkgdir}/usr/share/mime/packages/$pkgname-mimetypes.xml" } +sha256sums=('4dbab9ed00824647a9afd315619e7974e176a3b47e50f3754441e69f1dbee72d' + 'e8d33948831f8a66edd752c71c653085d6c4d9f1969e70dd8c40b9c7ca37fba0') diff --git a/community/qlandkartegt/qlandkartegt.changelog b/community/qlandkartegt/qlandkartegt.changelog index f481e3e0d..308d122a2 100644 --- a/community/qlandkartegt/qlandkartegt.changelog +++ b/community/qlandkartegt/qlandkartegt.changelog @@ -1,3 +1,6 @@ +2013-03-28 Jaroslav Lichtblau <dragonlord@aur.archlinux.org> + * qlandkartegt 1.7.0-1 + 2012-12-04 Jaroslav Lichtblau <dragonlord@aur.archlinux.org> * qlandkartegt 1.6.0-1 diff --git a/community/ruby-cairo/PKGBUILD b/community/ruby-cairo/PKGBUILD index 4351ecd02..803315aa2 100644 --- a/community/ruby-cairo/PKGBUILD +++ b/community/ruby-cairo/PKGBUILD @@ -1,11 +1,11 @@ -# $Id: PKGBUILD 87111 2013-03-27 11:45:17Z arodseth $ +# $Id: PKGBUILD 87182 2013-03-28 13:42:37Z arodseth $ # Maintainer: Alexander Rødseth <rodseth@gmail.com> # Contributor: Brad Fanella <bradfanella@archlinux.us> # Contributor: Jeremy <reebydobalina@yahoo.ca> pkgname=ruby-cairo pkgver=1.12.2 -pkgrel=6 +pkgrel=7 pkgdesc='Ruby bindings for cairo' arch=('x86_64' 'i686') url='http://cairographics.org/rcairo/' @@ -27,7 +27,7 @@ package() { make DESTDIR="$pkgdir" install install -Dm644 ext/cairo/cairo.so \ - "$pkgdir/usr/lib/ruby/vendor_ruby/2.0.0/$arch-linux/cairo.so" + "$pkgdir/usr/lib/ruby/vendor_ruby/2.0.0/$CARCH-linux/cairo.so" } # vim:set ts=2 sw=2 et: diff --git a/community/spring/PKGBUILD b/community/spring/PKGBUILD index f5f97397b..ab2d62b4f 100644 --- a/community/spring/PKGBUILD +++ b/community/spring/PKGBUILD @@ -1,11 +1,11 @@ -# $Id: PKGBUILD 86902 2013-03-24 08:40:39Z svenstaro $ +# $Id: PKGBUILD 87141 2013-03-27 23:35:41Z svenstaro $ # Maintainer: Sven-Hendrik Haase <sh@lutzhaase.com> # Contributor: Arkham <arkham at archlinux dot us> # Contributor: Christoph Zeiler <archNOSPAM_at_moonblade.dot.org> pkgname=spring -pkgver=0.94.0 -_pkgver=94.0 +pkgver=0.94.1 +_pkgver=94.1 pkgrel=1 pkgdesc='A free 3D real-time-strategy (RTS) game engine' arch=('i686' 'x86_64') @@ -18,7 +18,7 @@ optdepends=('python2: python-based bots' 'java-runtime: java-based bots') install=spring.install source=(http://downloads.sourceforge.net/sourceforge/springrts/${pkgname}_${_pkgver}_src.tar.lzma) -md5sums=('707829e3a5f3f296da83aab8651cd5e5') +md5sums=('bafc1e889bed31666553efc387a13b49') build() { bsdtar -xf ${pkgname}_${_pkgver}_src.tar.lzma diff --git a/core/procps-ng/PKGBUILD b/core/procps-ng/PKGBUILD index deede7ef4..2f6c71ab3 100644 --- a/core/procps-ng/PKGBUILD +++ b/core/procps-ng/PKGBUILD @@ -1,26 +1,28 @@ -# $Id: PKGBUILD 170098 2012-11-01 17:28:55Z bisson $ +# $Id: PKGBUILD 180917 2013-03-28 02:20:12Z bisson $ # Maintainer: Gaetan Bisson <bisson@archlinux.org> # Contributor: Eric Bélanger <eric@archlinux.org> pkgname=procps-ng -pkgver=3.3.5 +pkgver=3.3.7 pkgrel=1 pkgdesc='Utilities for monitoring your system and its processes' -url="http://gitorious.org/procps" +url='http://gitorious.org/procps' license=('GPL' 'LGPL') arch=('i686' 'x86_64') groups=('base') depends=('ncurses') -conflicts=('procps') -provides=('procps') -replaces=('procps') backup=('etc/sysctl.conf') -options=('!libtool') source=("procps-ng-${pkgver}.tar.gz::http://gitorious.org/procps/procps/archive-tarball/v${pkgver}" 'sysctl.conf') -sha1sums=('f591f2ff01f8866daf8999f45b797d18929b7aec' +sha1sums=('436ce9e585210340ff1673157e402e07879a6239' '97ff07bab9aa5daa8d54a1346f73ba74f8e12a53') +conflicts=('procps') +provides=('procps') +replaces=('procps') + +options=('!libtool') + build() { cd "${srcdir}/procps-procps" echo ${pkgver} > .tarball-version diff --git a/extra/libdrm/PKGBUILD b/extra/libdrm/PKGBUILD index fe8671734..08c0b3fe2 100644 --- a/extra/libdrm/PKGBUILD +++ b/extra/libdrm/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 177825 2013-02-09 17:43:46Z andyrtr $ +# $Id: PKGBUILD 180907 2013-03-27 23:06:26Z andyrtr $ # Maintainer: Jan de Groot <jgc@archlinux.org> pkgname=libdrm -pkgver=2.4.42 +pkgver=2.4.43 pkgrel=1 pkgdesc="Userspace interface to kernel DRM services" arch=(i686 x86_64) @@ -15,7 +15,8 @@ url="http://dri.freedesktop.org/" source=(http://dri.freedesktop.org/$pkgname/$pkgname-$pkgver.tar.bz2 no-pthread-stubs.patch COPYING) -sha256sums=('e0671082a77871c8474d3c0f09dbf5ff82d2429cd248088a691f7b484cbc76e1' + #git_fixes.diff +sha256sums=('7fb8cd89df06e236a66a1a6a9f6d058271c1b1ec92631e08c66dc9e12abd4975' '3915aaff4d5b0ed523c3144911e7f79ee812dece0e3933c13a88dddcf5912ded' '9631d4f694952e3e6ae5a05534c2e93e994e47d3413677a3a00e45c8cef6db93') @@ -23,12 +24,16 @@ build() { cd $pkgname-$pkgver patch -Np1 -i ../no-pthread-stubs.patch + # git_commits + #patch -Np1 -i ${srcdir}/git_fixes.diff + #libtoolize --force autoreconf --force --install ./configure --prefix=/usr \ --enable-udev \ --enable-omap-experimental-api \ - --enable-exynos-experimental-api + # --enable-exynos-experimental-api \ + # --enable-freedreno-experimental-api make } diff --git a/extra/libdrm/buildfix.diff b/extra/libdrm/buildfix.diff deleted file mode 100644 index 879fbf1b8..000000000 --- a/extra/libdrm/buildfix.diff +++ /dev/null @@ -1,11 +0,0 @@ -diff --git a/configure.ac b/configure.ac -index 10cc9a4..1776610 100644 ---- a/configure.ac -+++ b/configure.ac -@@ -348,7 +348,6 @@ AC_CONFIG_FILES([ - tests/vbltest/Makefile - include/Makefile - include/drm/Makefile -- man/Makefile - libdrm.pc]) - AC_OUTPUT diff --git a/extra/libdrm/git_fixes.diff b/extra/libdrm/git_fixes.diff new file mode 100644 index 000000000..fe0bb5649 --- /dev/null +++ b/extra/libdrm/git_fixes.diff @@ -0,0 +1,49 @@ +From 99105e765c31b598746b849e66e7a9106dcefa24 Mon Sep 17 00:00:00 2001 +From: Maarten Lankhorst <maarten.lankhorst@canonical.com> +Date: Wed, 27 Mar 2013 13:06:43 +0000 +Subject: makefiles: Add missing headers. + +I even compile time tested this on a panda with make dist! + +Signed-off-by: Maarten Lankhorst <maarten.lankhorst@canonical.com> +--- +diff --git a/exynos/Makefile.am b/exynos/Makefile.am +index 539aea0..0a2663a 100644 +--- a/exynos/Makefile.am ++++ b/exynos/Makefile.am +@@ -10,7 +10,11 @@ libdrm_exynos_ladir = $(libdir) + libdrm_exynos_la_LDFLAGS = -version-number 1:0:0 -no-undefined + libdrm_exynos_la_LIBADD = ../libdrm.la @PTHREADSTUBS_LIBS@ + +-libdrm_exynos_la_SOURCES = exynos_drm.c exynos_fimg2d.c ++libdrm_exynos_la_SOURCES = \ ++ exynos_drm.c \ ++ exynos_fimg2d.c \ ++ fimg2d.h \ ++ fimg2d_reg.h + + libdrm_exynoscommonincludedir = ${includedir}/exynos + libdrm_exynoscommoninclude_HEADERS = exynos_drm.h +diff --git a/freedreno/Makefile.am b/freedreno/Makefile.am +index f46a780..ba9bd68 100644 +--- a/freedreno/Makefile.am ++++ b/freedreno/Makefile.am +@@ -10,7 +10,15 @@ libdrm_freedreno_ladir = $(libdir) + libdrm_freedreno_la_LDFLAGS = -version-number 1:0:0 -no-undefined + libdrm_freedreno_la_LIBADD = ../libdrm.la @PTHREADSTUBS_LIBS@ + +-libdrm_freedreno_la_SOURCES = freedreno_device.c freedreno_pipe.c freedreno_ringbuffer.c freedreno_bo.c ++libdrm_freedreno_la_SOURCES = \ ++ freedreno_device.c \ ++ freedreno_pipe.c \ ++ freedreno_priv.h \ ++ freedreno_ringbuffer.c \ ++ freedreno_bo.c \ ++ kgsl_drm.h \ ++ list.h \ ++ msm_kgsl.h + + libdrm_freedrenocommonincludedir = ${includedir}/freedreno + libdrm_freedrenocommoninclude_HEADERS = freedreno_drmif.h freedreno_ringbuffer.h +-- +cgit v0.9.0.2-2-gbebe diff --git a/extra/libtorrent-rasterbar/PKGBUILD b/extra/libtorrent-rasterbar/PKGBUILD index 99be3512f..087d55f7d 100644 --- a/extra/libtorrent-rasterbar/PKGBUILD +++ b/extra/libtorrent-rasterbar/PKGBUILD @@ -1,9 +1,9 @@ -# $Id: PKGBUILD 178762 2013-02-26 18:22:51Z ioni $ +# $Id: PKGBUILD 180922 2013-03-28 12:43:45Z ioni $ # Maintainer : Ionut Biru <ibiru@archlinux.org> # Contributor: Hugo Doria <hugo@archlinux.org> pkgname=libtorrent-rasterbar -pkgver=0.16.8 +pkgver=0.16.9 pkgrel=1 epoch=1 pkgdesc="A C++ library that aims to be a good alternative to all the other bittorrent implementations around" @@ -14,7 +14,7 @@ depends=('boost-libs' 'geoip' 'python2') makedepends=('boost') options=('!libtool' '!emptydirs') source=(http://libtorrent.googlecode.com/files/$pkgname-$pkgver.tar.gz) -sha1sums=('483689787cb64e7cf4abefda4058b912ec406709') +sha1sums=('4335c8b275f041d6d34a493b21f2d7234ffca34b') build() { cd $pkgname-$pkgver diff --git a/extra/nx/PKGBUILD b/extra/nx/PKGBUILD index bb5e5e4a4..504011d9e 100644 --- a/extra/nx/PKGBUILD +++ b/extra/nx/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 180598 2013-03-24 10:41:11Z andyrtr $ +# $Id: PKGBUILD 180939 2013-03-28 18:40:16Z andyrtr $ # Maintainer: Andreas Radke <andyrtr@archlinux.org> pkgbase=nx pkgname=('libxcomp' 'nxproxy' 'nx-x11' 'nx-xcompext' 'nxagent' 'x2go-agent' 'nx-headers') -pkgver=3.5.0.18 -pkgrel=2 +pkgver=3.5.0.19 +pkgrel=1 arch=('i686' 'x86_64') url="http://wiki.x2go.org/" license=('GPL') @@ -14,7 +14,7 @@ makedepends=('libjpeg-turbo' 'libpng' 'bash' 'perl' 'libxml2' # runtime dependen ) source=(http://code.x2go.org/releases/source/nx-libs/nx-libs-$pkgver-full.tar.gz keyboard_rule.diff) -md5sums=('cb321b520c3e157619e4ed5315c9e44c' +md5sums=('6343c8bfee72e9b0bc2686c7785d1b0f' 'f681bc66827cd7ddff4b81b983c20401') build() { diff --git a/extra/sip/PKGBUILD b/extra/sip/PKGBUILD index 73f37d304..8ee8c3cd2 100644 --- a/extra/sip/PKGBUILD +++ b/extra/sip/PKGBUILD @@ -1,18 +1,18 @@ -# $Id: PKGBUILD 179558 2013-03-07 08:18:46Z andrea $ +# $Id: PKGBUILD 180919 2013-03-28 06:14:07Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> # Contributor: Douglas Soares de Andrade <douglas@archlinux.org> # Contributor: riai <riai@bigfoot.com>, Ben <ben@benmazer.net> pkgbase=sip pkgname=('sip' 'python-sip' 'python2-sip') -pkgver=4.14.4 +pkgver=4.14.5 pkgrel=1 arch=('i686' 'x86_64') url="http://www.riverbankcomputing.com/software/sip/" license=('custom:"sip"') makedepends=('python' 'python2') source=("http://downloads.sourceforge.net/pyqt/${pkgbase}-${pkgver}.tar.gz") -md5sums=('ae2d73ef43b8b0f7a9913561e9651706') +md5sums=('51757771c204e9fbad359f372a0b8256') build() { cp -r ${pkgbase}-${pkgver} python2-${pkgbase}-${pkgver} diff --git a/extra/xf86-input-keyboard/PKGBUILD b/extra/xf86-input-keyboard/PKGBUILD index f33028ba7..97a5dea9b 100644 --- a/extra/xf86-input-keyboard/PKGBUILD +++ b/extra/xf86-input-keyboard/PKGBUILD @@ -1,9 +1,9 @@ -# $Id: PKGBUILD 180184 2013-03-18 16:08:54Z andyrtr $ +# $Id: PKGBUILD 180909 2013-03-27 23:09:53Z andyrtr $ # Maintainer: Jan de Groot <jgc@archlinux.org> pkgname=xf86-input-keyboard -pkgver=1.6.2 -pkgrel=3 +pkgver=1.7.0 +pkgrel=1 pkgdesc="X.Org keyboard input driver" arch=(i686 x86_64) license=('custom') @@ -14,7 +14,7 @@ conflicts=('xorg-server<1.14.0' 'X-ABI-XINPUT_VERSION<19' 'X-ABI-XINPUT_VERSION> options=('!libtool') groups=('xorg-drivers' 'xorg') source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2) -sha256sums=('76651a84f5031f7c6ecf075d55989c04a00689642579df6d1a1bee6d5c2e5f8a') +sha256sums=('0cd5e2845149c7f0e19ec830c6914b7f3d154bff134ce84519e39f16ce65523c') build() { cd "${srcdir}/${pkgname}-${pkgver}" diff --git a/extra/xf86-input-mouse/PKGBUILD b/extra/xf86-input-mouse/PKGBUILD index e8d4a4b64..585b3a69b 100644 --- a/extra/xf86-input-mouse/PKGBUILD +++ b/extra/xf86-input-mouse/PKGBUILD @@ -1,9 +1,9 @@ -# $Id: PKGBUILD 180185 2013-03-18 16:08:55Z andyrtr $ +# $Id: PKGBUILD 180912 2013-03-27 23:12:17Z andyrtr $ # Maintainer: Jan de Groot <jgc@archlinux.org> pkgname=xf86-input-mouse -pkgver=1.8.1 -pkgrel=3 +pkgver=1.9.0 +pkgrel=1 pkgdesc="X.org mouse input driver" arch=(i686 x86_64) license=('custom') @@ -14,7 +14,7 @@ conflicts=('xorg-server<1.14.0' 'X-ABI-XINPUT_VERSION<19' 'X-ABI-XINPUT_VERSION> options=('!libtool') groups=('xorg-drivers' 'xorg') source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2) -sha256sums=('f5b97aac9aab8fa8b933e960631441ae23b18681c8bf3d5007c00da838f9c9c8') +sha256sums=('5d601e4bae53d5e9ead4ecd700f1beb5aeaf78b79e634c4aa381a9ce00276488') build() { cd "${srcdir}/${pkgname}-${pkgver}" diff --git a/extra/xf86-video-modesetting/PKGBUILD b/extra/xf86-video-modesetting/PKGBUILD index 403a14ee6..98ba58173 100644 --- a/extra/xf86-video-modesetting/PKGBUILD +++ b/extra/xf86-video-modesetting/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 180204 2013-03-18 16:09:12Z andyrtr $ +# $Id: PKGBUILD 180914 2013-03-27 23:14:30Z andyrtr $ # Maintainer: Andreas Radke <andyrtr@archlinux.org> # Contributor: Gerardo Exequiel Pozzi <vmlinuz386@yahoo.com.ar> pkgname=xf86-video-modesetting -pkgver=0.6.0 -pkgrel=2 +pkgver=0.7.0 +pkgrel=1 pkgdesc="X.org generic modesetting video driver" arch=('i686' 'x86_64') url="http://xorg.freedesktop.org/" @@ -16,7 +16,7 @@ groups=('xorg-drivers' 'xorg') groups=('xorg-drivers' 'xorg') options=('!libtool') source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2) -sha256sums=('852f9ddb213913f75e1e65ad7ce9c6b5bc7f43a93d8087b6e59666ea4eb3d0d6') +sha256sums=('2bc55f776eaee7b4e13df13238d36c4facf1cdca095a11519baf2376f5c996ac') build() { cd "${srcdir}/${pkgname}-${pkgver}" diff --git a/extra/xf86-video-nouveau/PKGBUILD b/extra/xf86-video-nouveau/PKGBUILD index 23a61f013..5de63e725 100644 --- a/extra/xf86-video-nouveau/PKGBUILD +++ b/extra/xf86-video-nouveau/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 180206 2013-03-18 16:09:13Z andyrtr $ +# $Id: PKGBUILD 180916 2013-03-27 23:16:59Z andyrtr $ # Maintainer: Andreas Radke <andyrtr@archlinux.org> # Contributor: buddabrod <buddabrod@gmail.com> pkgname=xf86-video-nouveau -pkgver=1.0.6 -pkgrel=2 +pkgver=1.0.7 +pkgrel=1 pkgdesc="Open Source 2D acceleration driver for nVidia cards" arch=('i686' 'x86_64') url="http://nouveau.freedesktop.org/" @@ -16,7 +16,7 @@ groups=('xorg-drivers' 'xorg') options=('!libtool') install=$pkgname.install source=(http://xorg.freedesktop.org/archive/individual/driver/$pkgname-$pkgver.tar.bz2) -sha256sums=('e3e1522d08134da74cb1796e8863fd3ad3caad9eb5e9d27f4cee3dfa7c75341f') +sha256sums=('d187c658e1823ca829c941f3f601f8e7220d427e079c3e52b94ecff45bc2e131') build() { cd $pkgname-$pkgver diff --git a/extra/xf86-video-openchrome/PKGBUILD b/extra/xf86-video-openchrome/PKGBUILD index af8e1756c..4a2d01826 100644 --- a/extra/xf86-video-openchrome/PKGBUILD +++ b/extra/xf86-video-openchrome/PKGBUILD @@ -1,33 +1,25 @@ -# $Id: PKGBUILD 180257 2013-03-18 23:41:34Z jgc $ +# $Id: PKGBUILD 180937 2013-03-28 18:10:47Z andyrtr $ # Contributor: Paul Mattal <paul@mattal.com> # Maintainer: Juergen Hoetzel <juergen@hoetzel.info> pkgname=xf86-video-openchrome -pkgver=0.3.1 -pkgrel=5 +pkgver=0.3.2 +pkgrel=1 pkgdesc="X.Org Openchrome drivers" arch=(i686 x86_64) license=('custom') url="http://www.openchrome.org" -depends=('libdrm' 'libxvmc') +depends=('libdrm' 'libxvmc' 'systemd') makedepends=('xorg-server-devel' 'X-ABI-VIDEODRV_VERSION=14' 'resourceproto' 'scrnsaverproto') conflicts=('xorg-server<1.14.0' 'X-ABI-VIDEODRV_VERSION<14' 'X-ABI-VIDEODRV_VERSION>=15' 'xf86-video-via' 'xf86-video-unichrome' 'openchrome' 'unichrome-dri') replaces=('openchrome' 'xf86-video-via') groups=('xorg-drivers' 'xorg') options=('!libtool' '!emptydirs' '!makeflags') -source=(http://xorg.freedesktop.org/archive/individual/driver/${pkgname}-${pkgver}.tar.bz2 - fix_system_lock.diff - no-mibstore.patch) -sha1sums=('89e56dcfe851345f72c61a95b4fa5ab6ad7e0d83' - '539ba65df1755af97799f49410e4091b8d222eca' - 'af0d7cace699b105e4405e48abc2f433032a7483') +source=(http://xorg.freedesktop.org/archive/individual/driver/${pkgname}-${pkgver}.tar.bz2) +sha1sums=('e5be9a8200410b3e3e66349bab4c8acd1ead4402') build() { cd "${srcdir}/${pkgname}-${pkgver}" - # https://bugs.freedesktop.org/show_bug.cgi?id=53307 - patch -Np1 -i ${srcdir}/fix_system_lock.diff - # https://bugs.freedesktop.org/show_bug.cgi?id=62112 - patch -Np1 -i ../no-mibstore.patch ./configure --prefix=/usr make } diff --git a/extra/xf86-video-openchrome/fix_system_lock.diff b/extra/xf86-video-openchrome/fix_system_lock.diff deleted file mode 100644 index a72369340..000000000 --- a/extra/xf86-video-openchrome/fix_system_lock.diff +++ /dev/null @@ -1,59 +0,0 @@ -From 76515c8a369346d76864e55610a6a747d9b152d8 Mon Sep 17 00:00:00 2001 -From: James Simmons <jsimmons@infradead.org> -Date: Sat, 12 Jan 2013 21:02:12 +0000 -Subject: As the comment suggested in via_outputs.c probing the 3rd i2c bug locks up the P4M900. So we re-enable the via_card_id handling of what outputs to test for to get around this problem. - ---- -diff --git a/src/via_display.c b/src/via_display.c -index 97473f0..aaf4267 100644 ---- a/src/via_display.c -+++ b/src/via_display.c -@@ -395,7 +395,7 @@ ViaFirstCRTCSetMode(ScrnInfoPtr pScrn, DisplayModePtr mode) - hwp->writeCrtc(hwp, 0x18, 0xFF); - ViaCrtcMask(hwp, 0x07, 0x10, 0x10); - ViaCrtcMask(hwp, 0x09, 0x40, 0x40); -- ViaCrtcMask(hwp, 0x33, 0x07, 0x06); -+ ViaCrtcMask(hwp, 0x33, 0x06, 0x07); - ViaCrtcMask(hwp, 0x35, 0x10, 0x10); - - /* zero Maximum scan line */ -diff --git a/src/via_id.c b/src/via_id.c -index 7764782..7321b26 100644 ---- a/src/via_id.c -+++ b/src/via_id.c -@@ -297,6 +297,7 @@ ViaCheckCardId(ScrnInfoPtr pScrn) - (Id->Vendor == SUBVENDOR_ID(pVia->PciInfo)) && - (Id->Device == SUBSYS_ID(pVia->PciInfo))) { - xf86DrvMsg(pScrn->scrnIndex, X_PROBED, "Detected %s. Card-Ids (%4X|%4X)\n", Id->String, SUBVENDOR_ID(pVia->PciInfo), SUBSYS_ID(pVia->PciInfo)); -+ pVia->ActiveDevice = Id->Outputs; - pVia->Id = Id; - return; - } -diff --git a/src/via_outputs.c b/src/via_outputs.c -index 808e570..c07b1d2 100644 ---- a/src/via_outputs.c -+++ b/src/via_outputs.c -@@ -873,10 +873,10 @@ ViaOutputsDetect(ScrnInfoPtr pScrn) - /* - * FIXME: xf86I2CProbeAddress(pVia->pI2CBus3, 0x40) - * disables the panel on P4M900 -- * See via_tv_detect. - */ - /* TV encoder */ -- via_tv_init(pScrn); -+ if (pVia->ActiveDevice & VIA_DEVICE_TV) -+ via_tv_init(pScrn); - - if (pVia->ActiveDevice & VIA_DEVICE_DFP) { - switch (pVia->Chipset) { -@@ -1195,7 +1195,7 @@ ViaModePrimaryLegacy(xf86CrtcPtr crtc, DisplayModePtr mode) - /* Enable MMIO & PCI burst (1 wait state) */ - ViaSeqMask(hwp, 0x1A, 0x06, 0x06); - -- if (pBIOSInfo->analog->status == XF86OutputStatusConnected) -+ if (pBIOSInfo->analog->status == XF86OutputStatusConnected) - ViaCrtcMask(hwp, 0x36, 0x30, 0x30); - else - ViaSeqMask(hwp, 0x16, 0x00, 0x40); --- -cgit v0.9.0.2-2-gbebe diff --git a/extra/xf86-video-openchrome/no-mibstore.patch b/extra/xf86-video-openchrome/no-mibstore.patch deleted file mode 100644 index e223babb7..000000000 --- a/extra/xf86-video-openchrome/no-mibstore.patch +++ /dev/null @@ -1,11 +0,0 @@ -diff -rup a/src/via_driver.c b/src/via_driver.c ---- a/src/via_driver.c 2013-03-10 16:11:57.614059200 +0100 -+++ b/src/via_driver.c 2013-03-10 16:12:46.374062244 +0100 -@@ -1873,7 +1873,6 @@ VIAScreenInit(SCREEN_INIT_ARGS_DECL) - if (!pVia->NoAccel && !viaInitExa(pScreen)) - return FALSE; - -- miInitializeBackingStore(pScreen); - xf86SetBackingStore(pScreen); - #if 0 - xf86SetSilkenMouse(pScreen);
\ No newline at end of file diff --git a/libre/mkbootcd/PKGBUILD b/libre/mkbootcd/PKGBUILD index 4e54ea3b4..1eb7bd8a7 100644 --- a/libre/mkbootcd/PKGBUILD +++ b/libre/mkbootcd/PKGBUILD @@ -1,4 +1,4 @@ -+# $Id$ +# $Id$ # Maintainer : Tobias Powalowski <tpowa@archlinux.org> pkgname=mkbootcd |