diff options
author | Nicolás Reynolds <fauno@endefensadelsl.org> | 2014-04-14 03:52:55 +0000 |
---|---|---|
committer | Nicolás Reynolds <fauno@endefensadelsl.org> | 2014-04-14 03:52:55 +0000 |
commit | 7c266ff5a9e1f533fd8bd8c2fbbcc05df350dcd3 (patch) | |
tree | a65448ff1236d65a3fea9015e7cd01e6483eb282 | |
parent | 3d6877ee9ee7bba813a4b6be30a11d2b1942c656 (diff) |
Mon Apr 14 03:47:31 UTC 2014
61 files changed, 444 insertions, 1743 deletions
diff --git a/community/ccid/PKGBUILD b/community/ccid/PKGBUILD index 1001d3729..a0519e1fe 100644 --- a/community/ccid/PKGBUILD +++ b/community/ccid/PKGBUILD @@ -1,9 +1,9 @@ -# $Id: PKGBUILD 105836 2014-02-16 08:59:50Z giovanni $ +# $Id: PKGBUILD 109306 2014-04-13 07:27:36Z giovanni $ # Maintainer: Giovanni Scafora <giovanni@archlinux.org> # Contributor: Daniel Plaza <daniel.plaza.espi@gmail.com> pkgname=ccid -pkgver=1.4.15 +pkgver=1.4.16 pkgrel=1 pkgdesc="A generic USB Chip/Smart Card Interface Devices driver" arch=('i686' 'x86_64') @@ -12,8 +12,8 @@ license=('LGPL' 'GPL') depends=('pcsclite' 'libusbx' 'flex') makedepends=('pkg-config') backup=(etc/reader.conf.d/libccidtwin) -source=("https://alioth.debian.org/frs/download.php/file/3989/${pkgname}-${pkgver}.tar.bz2") -md5sums=('c195333c953f5530bc04a194b5ac1b71') +source=("https://alioth.debian.org/frs/download.php/file/4016/${pkgname}-${pkgver}.tar.bz2") +md5sums=('2f3ca6c4b4ad0f81d41a0e032e0f556f') build() { cd "${srcdir}/${pkgname}-${pkgver}" diff --git a/community/freerdp/CVE-2014-0791.patch b/community/freerdp/CVE-2014-0791.patch new file mode 100644 index 000000000..a47d804d1 --- /dev/null +++ b/community/freerdp/CVE-2014-0791.patch @@ -0,0 +1,79 @@ +--- a/libfreerdp-core/license.h 2013-01-03 05:46:59.000000000 +0800 ++++ b/libfreerdp-core/license.h 2014-04-09 19:11:59.593507658 +0800 +@@ -177,9 +177,9 @@ + + SCOPE_LIST* license_new_scope_list(); + void license_free_scope_list(SCOPE_LIST* scopeList); +-void license_read_scope_list(STREAM* s, SCOPE_LIST* scopeList); ++boolean license_read_scope_list(STREAM* s, SCOPE_LIST* scopeList); + +-void license_read_license_request_packet(rdpLicense* license, STREAM* s); ++boolean license_read_license_request_packet(rdpLicense* license, STREAM* s); + void license_read_platform_challenge_packet(rdpLicense* license, STREAM* s); + void license_read_new_license_packet(rdpLicense* license, STREAM* s); + void license_read_upgrade_license_packet(rdpLicense* license, STREAM* s); +--- a/libfreerdp-core/license.c 2013-01-03 05:46:59.000000000 +0800 ++++ b/libfreerdp-core/license.c 2014-04-09 19:11:59.593507658 +0800 +@@ -199,7 +199,8 @@ + switch (bMsgType) + { + case LICENSE_REQUEST: +- license_read_license_request_packet(license, s); ++ if(!license_read_license_request_packet(license, s)) ++ return false; + license_send_new_license_request_packet(license); + break; + +@@ -533,13 +534,16 @@ + * @param scopeList scope list + */ + +-void license_read_scope_list(STREAM* s, SCOPE_LIST* scopeList) ++boolean license_read_scope_list(STREAM* s, SCOPE_LIST* scopeList) + { + uint32 i; + uint32 scopeCount; + + stream_read_uint32(s, scopeCount); /* ScopeCount (4 bytes) */ + ++ if (scopeCount > stream_get_length(s) / 4) /* every blob is at least 4 bytes */ ++ return false; ++ + scopeList->count = scopeCount; + scopeList->array = (LICENSE_BLOB*) xmalloc(sizeof(LICENSE_BLOB) * scopeCount); + +@@ -549,6 +553,7 @@ + scopeList->array[i].type = BB_SCOPE_BLOB; + license_read_binary_blob(s, &scopeList->array[i]); + } ++ return true; + } + + /** +@@ -593,7 +598,7 @@ + * @param s stream + */ + +-void license_read_license_request_packet(rdpLicense* license, STREAM* s) ++boolean license_read_license_request_packet(rdpLicense* license, STREAM* s) + { + /* ServerRandom (32 bytes) */ + stream_read(s, license->server_random, 32); +@@ -608,7 +613,8 @@ + license_read_binary_blob(s, license->server_certificate); + + /* ScopeList */ +- license_read_scope_list(s, license->scope_list); ++ if(!license_read_scope_list(s, license->scope_list)) ++ return false; + + /* Parse Server Certificate */ + certificate_read_server_certificate(license->certificate, +@@ -617,6 +623,7 @@ + license_generate_keys(license); + license_generate_hwid(license); + license_encrypt_premaster_secret(license); ++ return true; + } + + /** diff --git a/community/freerdp/PKGBUILD b/community/freerdp/PKGBUILD index c442c9e4b..20efeba32 100644 --- a/community/freerdp/PKGBUILD +++ b/community/freerdp/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 99744 2013-10-30 23:26:59Z allan $ +# $Id: PKGBUILD 109311 2014-04-13 09:23:06Z fyan $ # Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> # Contributor: Stijn Segers <francesco dot borromini at gmail dot com> pkgname=freerdp pkgver=1.0.2 -pkgrel=4 +pkgrel=5 pkgdesc="Free RDP client" arch=('i686' 'x86_64') url="http://freerdp.sourceforge.net" @@ -16,15 +16,18 @@ conflicts=('freerdp-git') changelog=${pkgname}.changelog source=($pkgname-$pkgver.tar.gz::https://github.com/FreeRDP/FreeRDP/archive/$pkgver.tar.gz ffmpeg2.0.patch - patch_numblock.patch) + patch_numblock.patch + CVE-2014-0791.patch) md5sums=('c260051a94caff590def5caa4fcf59d6' '1260eecf01ea5212e2db8ac9c5e7fa6d' - 'ac581d445ded7cdbd59082a48d9c28ac') + 'ac581d445ded7cdbd59082a48d9c28ac' + '62d0ab241c16ee5d85ff89183df9bbc0') prepare() { cd $srcdir/FreeRDP-$pkgver patch -Np1 -i ../ffmpeg2.0.patch patch -Np1 -i ../patch_numblock.patch + patch -Np1 -i ../CVE-2014-0791.patch } build() { diff --git a/community/geany-plugins/PKGBUILD b/community/geany-plugins/PKGBUILD index 4fef542dd..74d02eca6 100644 --- a/community/geany-plugins/PKGBUILD +++ b/community/geany-plugins/PKGBUILD @@ -1,12 +1,12 @@ -# $Id: PKGBUILD 99755 2013-10-30 23:30:58Z allan $ +# $Id: PKGBUILD 109348 2014-04-13 20:12:27Z arodseth $ # Maintainer: Alexander Rødseth <rodseth@gmail.com> # Contributor: Angel 'angvp' Velasquez <angvp[at]archlinux.com.ve> # Contributor: djgera # Contributor: Patrick Melo <patrick@patrickmelo.eti.br> pkgname=geany-plugins -pkgver=1.23 -pkgrel=3 +pkgver=1.24 +pkgrel=1 pkgdesc='Plugins for Geany' arch=('x86_64' 'i686') url='http://plugins.geany.org/' @@ -17,19 +17,17 @@ makedepends=('intltool' 'vala' 'gdb' 'cppcheck') optdepends=('hspell: hebrew spell checker') install="$pkgname.install" source=("http://plugins.geany.org/$pkgname/$pkgname-$pkgver.tar.bz2") -sha256sums=('ff26860edd1cbaea88c73bd8c2bd02f9ba04046674f05d3696baf66582e2bf58') +sha256sums=('dcc0414b29ae0160fc3a7adb0a1d6cbd5bd6bfb1900dab03e8774b3cebf6f2ec') build() { - cd "$srcdir/$pkgname-$pkgver" + cd "$pkgname-$pkgver" ./configure --prefix=/usr --libexecdir=/usr/lib make } package() { - cd "$srcdir/$pkgname-$pkgver" - - make DESTDIR="$pkgdir" install + make -C "$pkgname-$pkgver" DESTDIR="$pkgdir" install } # vim:set ts=2 sw=2 et: diff --git a/community/geany/PKGBUILD b/community/geany/PKGBUILD index 22827bbb9..5f8af80f5 100644 --- a/community/geany/PKGBUILD +++ b/community/geany/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 99754 2013-10-30 23:30:36Z allan $ +# $Id: PKGBUILD 109346 2014-04-13 17:45:28Z arodseth $ # Maintainer: Alexander Rødseth <rodseth@gmail.com> # Contributor: Angel Velasquez <angvp@archlinux.org> # Contributor: Ionut Biru <ibiru@archlinux.ro> @@ -6,23 +6,23 @@ # Contributor: Allan McRae <mcrae_allan@hotmail.com> pkgname=geany -pkgver=1.23.1 +pkgver=1.24 pkgrel=1 pkgdesc='Fast and lightweight IDE' arch=('x86_64' 'i686') -url="http://www.geany.org/" +url='http://www.geany.org/' license=('GPL') depends=('gtk2' 'hicolor-icon-theme' 'desktop-file-utils') makedepends=('perlxml' 'setconf' 'intltool') -optdepends=('vte: for terminal support' - 'geany-plugins: various extra features' +optdepends=('geany-plugins: various extra features' + 'vte: terminal support' 'python2') install="$pkgname.install" source=("http://download.geany.org/$pkgname-$pkgver.tar.bz2") -sha256sums=('8815b16e59d8679ec359a1a5754fee05e77f7bca53083c939654bfc77d978fad') +sha256sums=('51c37690fea9b7a9baaf7f9158c5d88d86ae81d44409ec0460aa0445fe0a039f') prepare() { - cd "$srcdir/$pkgname-$pkgver" + cd "$pkgname-$pkgver" # Python2 fix sed -i '0,/on/s//on2/' data/templates/files/main.py @@ -32,7 +32,7 @@ prepare() { } build() { - cd "$srcdir/$pkgname-$pkgver" + cd "$pkgname-$pkgver" ./configure --prefix=/usr make @@ -42,9 +42,7 @@ build() { } package() { - cd "$srcdir/$pkgname-$pkgver" - - make DESTDIR="$pkgdir" install + make -C "$pkgname-$pkgver" DESTDIR="$pkgdir" install } # vim:set ts=2 sw=2 et: diff --git a/extra/kaffeine/PKGBUILD b/community/kaffeine/PKGBUILD index 5bad851f1..0d2f4996c 100644 --- a/extra/kaffeine/PKGBUILD +++ b/community/kaffeine/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 191225 2013-07-21 20:40:01Z eric $ +# $Id: PKGBUILD 109333 2014-04-13 12:27:58Z andrea $ # Maintainer: # Contributor: Pierre Schmitz <pierre@archlinux.de> diff --git a/extra/kaffeine/kaffeine-1.2.2-gcc4.7.patch b/community/kaffeine/kaffeine-1.2.2-gcc4.7.patch index e74563e0b..e74563e0b 100644 --- a/extra/kaffeine/kaffeine-1.2.2-gcc4.7.patch +++ b/community/kaffeine/kaffeine-1.2.2-gcc4.7.patch diff --git a/extra/kaffeine/kaffeine.install b/community/kaffeine/kaffeine.install index 5c501dc49..5c501dc49 100644 --- a/extra/kaffeine/kaffeine.install +++ b/community/kaffeine/kaffeine.install diff --git a/community/libnatpmp/PKGBUILD b/community/libnatpmp/PKGBUILD index 89e5e3967..a3790c157 100644 --- a/community/libnatpmp/PKGBUILD +++ b/community/libnatpmp/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 109133 2014-04-10 15:59:00Z anatolik $ +# $Id: PKGBUILD 109301 2014-04-12 23:46:12Z anatolik $ # Maintainer: Anatol Pomozov <anatol dot pomozov at gmail> # Contributor: Gustavo Alvarez <s1pkn07@gmail.com> # Contributor: Kristjan Reinloo <mail at kreinloo dot net> @@ -6,17 +6,22 @@ pkgname=libnatpmp pkgver=20140401 -pkgrel=1 +pkgrel=2 pkgdesc='A portable and fully compliant implementation of the NAT-PMP protocol' arch=(i686 x86_64) url='http://miniupnp.free.fr/libnatpmp.html' license=(BSD) depends=(glibc) -source=(http://miniupnp.tuxfamily.org/files/libnatpmp-$pkgver.tar.gz) -sha1sums=('e9511edecb9a75dbe8c9ed39c0469a18dc7e950b') +source=(http://miniupnp.tuxfamily.org/files/libnatpmp-$pkgver.tar.gz + fix_header_issue.diff) +sha1sums=('e9511edecb9a75dbe8c9ed39c0469a18dc7e950b' + '58baa3fe61edfc117ae92452fbc8176d095bd7d2') prepare() { - sed -e 's/CFLAGS = /CFLAGS += /' -i $pkgname-$pkgver/Makefile + cd $pkgname-$pkgver + sed -e 's/CFLAGS = /CFLAGS += /' -i Makefile + # The patch comes from upstream https://github.com/miniupnp/libnatpmp/commit/f376ab72bc4de0b45f4e10c9b287b7ffe2a1fcd1 + patch -p1 < "$srcdir"/fix_header_issue.diff } build() { diff --git a/community/libnatpmp/fix_header_issue.diff b/community/libnatpmp/fix_header_issue.diff new file mode 100644 index 000000000..2e52886b0 --- /dev/null +++ b/community/libnatpmp/fix_header_issue.diff @@ -0,0 +1,59 @@ +commit f376ab72bc4de0b45f4e10c9b287b7ffe2a1fcd1 +Author: Thomas Bernard <miniupnp@free.fr> +Date: Thu Apr 10 23:09:44 2014 +0200 + + remove declspec.h problems. still has to be fixed definitely + +diff --git a/getgateway.h b/getgateway.h +index d868f80..b3e17c6 100644 +--- a/getgateway.h ++++ b/getgateway.h +@@ -1,6 +1,6 @@ + /* $Id: getgateway.h,v 1.7 2013/09/10 20:09:04 nanard Exp $ */ + /* libnatpmp +-Copyright (c) 2007-2013, Thomas BERNARD ++Copyright (c) 2007-2014, Thomas BERNARD + All rights reserved. + + Redistribution and use in source and binary forms, with or without +@@ -38,12 +38,12 @@ typedef unsigned short uint16_t; + #endif + #define in_addr_t uint32_t + #endif +-#include "declspec.h" ++/* #include "declspec.h" */ + + /* getdefaultgateway() : + * return value : + * 0 : success + * -1 : failure */ +-LIBSPEC int getdefaultgateway(in_addr_t * addr); ++/* LIBSPEC */int getdefaultgateway(in_addr_t * addr); + + #endif +diff --git a/natpmp.h b/natpmp.h +index 62d113f..2399afb 100644 +--- a/natpmp.h ++++ b/natpmp.h +@@ -1,6 +1,6 @@ + /* $Id: natpmp.h,v 1.19 2014/04/01 09:39:29 nanard Exp $ */ + /* libnatpmp +-Copyright (c) 2007-2013, Thomas BERNARD ++Copyright (c) 2007-2014, Thomas BERNARD + All rights reserved. + + Redistribution and use in source and binary forms, with or without +@@ -48,10 +48,12 @@ typedef unsigned short uint16_t; + #define in_addr_t uint32_t + #include "declspec.h" + #else /* WIN32 */ ++#define LIBSPEC + #include <netinet/in.h> + #endif /* WIN32 */ + +-#include "declspec.h" ++/* causes problem when installing. Maybe should it be inlined ? */ ++/* #include "declspec.h" */ + + typedef struct { + int s; /* socket */ diff --git a/community/lmms/PKGBUILD b/community/lmms/PKGBUILD index 1f41a6d99..d6b9c69a5 100644 --- a/community/lmms/PKGBUILD +++ b/community/lmms/PKGBUILD @@ -1,18 +1,18 @@ -# $Id: PKGBUILD 99896 2013-10-31 02:20:39Z allan $ +# $Id: PKGBUILD 109323 2014-04-13 11:20:12Z lfleischer $ # Maintainer: Lukas Fleischer <archlinux at cryptocrack dot de> # Contributor: Shinlun Hsieh <yngwiexx@yahoo.com.tw> # Contributor: Mateusz Herych <heniekk@gmail.com> # Contributor: Storyteller <spiralsorrow@hotmail.com> pkgname=lmms -pkgver=0.4.15 +pkgver=1.0.0 pkgrel=1 pkgdesc='The Linux MultiMedia Studio.' arch=('i686' 'x86_64') url='http://lmms.sourceforge.net/' license=('GPL') depends=('sdl' 'glib2' 'fluidsynth' 'libpng' 'libvorbis' 'libxft' 'libxinerama' 'qt4' 'sdl_sound' - 'libsamplerate' 'shared-mime-info') + 'libsamplerate' 'shared-mime-info' 'fltk') optdepends=('wine: VST support (experimental)' 'fftw: SpectrumAnalyzer plugin' 'stk: STK instruments plugins' @@ -23,9 +23,9 @@ provides=('lmms-extras') conflicts=('lmms-extras') options=('!makeflags') install=lmms.install -source=("http://downloads.sourceforge.net/sourceforge/lmms/${pkgname}-${pkgver}.tar.bz2" +source=("http://sourceforge.net/projects/${pkgname}/files/${pkgname}/${pkgver}/${pkgname}-${pkgver}-src.tar.bz2/download" zynaddsubfx_unlink.patch) -md5sums=('0c754480ded76b7c081a99d7a884549c' +md5sums=('72260dd6e29bf018875fd751c1d43465' 'd2ea78ac0cf2979505f140c6845617cf') build() { diff --git a/community/lxtask/PKGBUILD b/community/lxtask/PKGBUILD index c1c6bf5e4..6ba068535 100644 --- a/community/lxtask/PKGBUILD +++ b/community/lxtask/PKGBUILD @@ -1,26 +1,41 @@ -# $Id: PKGBUILD 104479 2014-01-21 17:24:15Z bpiotrowski $ -# Maintainer: Bartłomiej Piotrowski <bpiotrowski@archlinux.org> +# $Id: PKGBUILD 109303 2014-04-13 01:12:59Z bgyorgy $ +# Maintainer: Balló György <ballogyor+arch at gmail dot com> +# Contributor: Bartłomiej Piotrowski <bpiotrowski@archlinux.org> # Contributor: Angel Velasquez <angvp@archlinux.org> # Contributor: Geoffroy Carrier <geoffroy.carrier@koon.fr> pkgname=lxtask pkgver=0.1.4 -pkgrel=4 +pkgrel=5 pkgdesc='Task manager of the LXDE Desktop' arch=('i686' 'x86_64') license=('GPL2') url='http://lxde.org/' groups=('lxde') depends=('gtk2') -makedepends=('pkgconfig' 'intltool') -source=(http://downloads.sourceforge.net/sourceforge/lxde/$pkgname-$pkgver.tar.gz) -md5sums=('c4ab47d03d41a88696d64d3f1e78cf7f') +makedepends=('intltool') +source=(http://downloads.sourceforge.net/lxde/$pkgname-$pkgver.tar.gz + fix-integer-overflow.patch + fix-sort-by-user.patch + fix-cpu-count.patch) +md5sums=('c4ab47d03d41a88696d64d3f1e78cf7f' + '0d4d325bd20dc7dcf2489bf78f18efb5' + 'ecb4b04fac25c7533b8760696b742330' + 'd18064be20c653274e31a73426e06abb') + +prepare() { + cd $pkgname-$pkgver + patch -Np1 -i ../fix-integer-overflow.patch + patch -Np1 -i ../fix-sort-by-user.patch + patch -Np1 -i ../fix-cpu-count.patch +} build() { cd $pkgname-$pkgver ./configure --sysconfdir=/etc --prefix=/usr make } + package() { cd $pkgname-$pkgver make DESTDIR="$pkgdir" install diff --git a/community/lxtask/fix-cpu-count.patch b/community/lxtask/fix-cpu-count.patch new file mode 100644 index 000000000..a0104289a --- /dev/null +++ b/community/lxtask/fix-cpu-count.patch @@ -0,0 +1,18 @@ +commit 963dea395cc58eae940b85e242f0d84fb7d2eaa5 +Author: dgod <dgod.osa@gmail.com> +Date: Mon Apr 22 19:08:58 2013 +0800 + + Patch that resolves -1% CPU for processes on armhf + +diff --git a/src/xfce-taskmanager-linux.c b/src/xfce-taskmanager-linux.c +index 116fec1..1267dfc 100644 +--- a/src/xfce-taskmanager-linux.c ++++ b/src/xfce-taskmanager-linux.c +@@ -267,6 +267,7 @@ gboolean get_system_status (system_status *sys_stat) + } + } + fclose (file); ++ if(!cpu_count) cpu_count++; /* cpu_count should be at least 1 */ + } + sys_stat->cpu_count=cpu_count; + return TRUE; diff --git a/community/lxtask/fix-integer-overflow.patch b/community/lxtask/fix-integer-overflow.patch new file mode 100644 index 000000000..aac7b22c6 --- /dev/null +++ b/community/lxtask/fix-integer-overflow.patch @@ -0,0 +1,39 @@ +commit 2dbcf129cd830bc3b50a2e040f862026eb1d9ab7 +Author: dgod <dgod.osa@gmail.com> +Date: Sun Feb 12 17:32:14 2012 +0800 + + fix integer overflow in memory show + + Extended by Arch Linux to fix sort tasks by memory. + +diff --git a/src/interface.c b/src/interface.c +index 52c6727..62e89ff 100644 +--- a/src/interface.c ++++ b/src/interface.c +@@ -430,10 +430,10 @@ void fill_list_item(gint i, GtkTreeIter *iter) + gtk_tree_store_set(GTK_TREE_STORE(list_store), iter, COLUMN_STATE, task->state, -1); + + /* size */ +- gtk_tree_store_set(GTK_TREE_STORE(list_store), iter, COLUMN_MEM, size_to_string(buf, task->size * 1024), -1); ++ gtk_tree_store_set(GTK_TREE_STORE(list_store), iter, COLUMN_MEM, size_to_string(buf, ((guint64)task->size)*1024), -1); + + /* rss */ +- gtk_tree_store_set(GTK_TREE_STORE(list_store), iter, COLUMN_RSS, size_to_string(buf, task->rss*1024), -1); ++ gtk_tree_store_set(GTK_TREE_STORE(list_store), iter, COLUMN_RSS, size_to_string(buf, ((guint64)task->rss)*1024), -1); + + gtk_tree_store_set(GTK_TREE_STORE(list_store), iter, COLUMN_UNAME, task->uname, -1); + sprintf(buf,"%0d%%", (guint)task->time_percentage); +@@ -545,10 +545,10 @@ gint compare_size_list_item(GtkTreeModel *model, GtkTreeIter *iter1, GtkTreeIter + gtk_tree_model_get(model, iter1, column, &s1, -1); + gtk_tree_model_get(model, iter2, column, &s2, -1); + +- gint64 i1 = string_to_size(s1); +- gint64 i2 = string_to_size(s2); ++ guint64 i1 = string_to_size(s1); ++ guint64 i2 = string_to_size(s2); + +- ret = i2 - i1; ++ ret = (i2 > i1) - (i2 < i1); + + g_free(s1); + g_free(s2); diff --git a/community/lxtask/fix-sort-by-user.patch b/community/lxtask/fix-sort-by-user.patch new file mode 100644 index 000000000..0c049554e --- /dev/null +++ b/community/lxtask/fix-sort-by-user.patch @@ -0,0 +1,19 @@ +commit 02fb78fb4f1e46b5176f45e2c221da6e52e9d014 +Author: dgod <dgod.osa@gmail.com> +Date: Wed Oct 31 20:31:48 2012 +0800 + + fix sort tasks by clicking the User Name + +diff --git a/src/interface.c b/src/interface.c +index 45cf256..1f98351 100644 +--- a/src/interface.c ++++ b/src/interface.c +@@ -195,7 +195,7 @@ void create_list_store(void) + column = gtk_tree_view_column_new_with_attributes(_("User"), cell_renderer, "text", COLUMN_UNAME, NULL); + gtk_tree_view_column_set_resizable(column, TRUE); + gtk_tree_view_column_set_sort_column_id(column, COLUMN_UNAME); +- gtk_tree_sortable_set_sort_func(GTK_TREE_SORTABLE(list_store), COLUMN_UNAME, compare_int_list_item, (void *)COLUMN_UNAME, NULL); ++ gtk_tree_sortable_set_sort_func(GTK_TREE_SORTABLE(list_store), COLUMN_UNAME, compare_string_list_item, (void *)COLUMN_UNAME, NULL); + gtk_tree_view_append_column(GTK_TREE_VIEW(treeview), column); + + cell_renderer = gtk_cell_renderer_text_new(); diff --git a/community/mongodb/PKGBUILD b/community/mongodb/PKGBUILD index caf35813c..015f7fe9b 100644 --- a/community/mongodb/PKGBUILD +++ b/community/mongodb/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 108911 2014-04-07 12:17:25Z fyan $ +# $Id: PKGBUILD 109312 2014-04-13 09:23:07Z fyan $ # Maintainer: Felix Yan <felixonmars@gmail.com> # Contributor: Sven-Hendrik Haase <sh@lutzhaase.com> # Contributor: Thomas Dziedzic < gostrc at gmail > @@ -6,13 +6,13 @@ # Contributor: Alec Thomas pkgname=mongodb -pkgver=2.4.10 +pkgver=2.6.0 pkgrel=1 pkgdesc='A high-performance, open source, schema-free document-oriented database' arch=('i686' 'x86_64') url='http://www.mongodb.org' license=('AGPL3') -depends=('boost-libs' 'pcre' 'snappy' 'openssl' 'gperftools') # 'libsasl') +depends=('boost-libs' 'pcre' 'snappy' 'openssl' 'gperftools' 'libsasl') # 'libyaml' 'yaml-cpp' 'v8') makedepends=('scons' 'boost' 'readline' 'ncurses' 'libpcap') checkdepends=('python2-pymongo') optdepends=('libpcap: needed for mongosniff') @@ -35,9 +35,9 @@ build() { --use-system-pcre \ --use-system-snappy \ --use-system-tcmalloc \ - --ssl \ - --sharedclient - # --use-sasl-client + --use-sasl-client \ + --ssl + # --use-system-yaml # --use-system-v8 } @@ -60,11 +60,10 @@ package() { --use-system-pcre \ --use-system-snappy \ --use-system-tcmalloc \ + --use-sasl-client \ --ssl \ - --sharedclient \ - --full \ --prefix="$pkgdir/usr" - # --use-sasl-client + # --use-system-yaml # --use-system-v8 install -Dm644 "$srcdir/mongodb.conf" "$pkgdir/etc/mongodb.conf" @@ -73,7 +72,7 @@ package() { install -dm755 "$pkgdir/var/log/mongodb" } -sha512sums=('970364dda2dba18bf979a0fc8291d9656b3cc3ba0aec1ca26d81f14f833e355c023d19b3cfaa81704013bf2c0e732d72de08b0f8236dafe85a3ac4d51b87edc6' +sha512sums=('60747ebd2fce9cffdb6b5ea3472a4efa46cd7e1ee38aee2a806a15667b5d86a61da89bf176876553ab348c0f3b3b925125921330b333a8349275e6ce79ccd337' '05dead727d3ea5fe8af1a3c3888693f6b3e2b8cb7f197a5d793352e10d2c524e96c9a5c55ad2e88c1114643a9612ec0b26a2574b48a5260a9b51ec8941461f1c' '177251404b2e818ae2b546fe8b13cb76e348c99e85c7bef22a04b0f07b600fd515a309ede50214f4198594388a6d2b31f46e945b9dae84aabb4dfa13b1123bb9' - 'e709f76fa71a10d6b72d2eeae65d715e0a0a7e6cb93704114f22db8662d7102de77bd1e6706049351beb159aaa04548cfe4b14fe6ee498a166c5ad54c8275f84') + 'SKIP') diff --git a/community/mongodb/removeWerror.patch b/community/mongodb/removeWerror.patch index dd96084da..e25f121bb 100644 --- a/community/mongodb/removeWerror.patch +++ b/community/mongodb/removeWerror.patch @@ -1,21 +1,11 @@ ---- a/SConstruct 2013-03-16 02:59:55.000000000 +0800 -+++ b/SConstruct 2013-03-20 10:55:20.009645869 +0800 -@@ -692,7 +692,7 @@ +--- a/SConstruct 2014-04-08 22:55:57.206075327 +0800 ++++ b/SConstruct 2014-04-08 22:57:58.692240224 +0800 +@@ -819,7 +819,7 @@ "-Winvalid-pch"] ) # env.Append( " -Wconversion" ) TODO: this doesn't really work yet - if linux: + if linux or darwin: - env.Append( CCFLAGS=["-Werror", "-pipe"] ) + env.Append( CCFLAGS=["-pipe"] ) - if not has_option('clang'): - env.Append( CCFLAGS=["-fno-builtin-memcmp"] ) # glibc's memcmp is faster than gcc's ---- a/src/third_party/v8/SConscript 2013-04-17 03:21:23.000000000 +0800 -+++ b/src/third_party/v8/SConscript 2013-04-18 17:41:29.878618892 +0800 -@@ -47,7 +47,6 @@ - 'gcc': { - 'all': { - 'CCFLAGS': ['-Wall', -- '-Werror', - '-W', - '-Wno-unused-parameter', - '-Woverloaded-virtual', + env.Append( CPPDEFINES=["_FILE_OFFSET_BITS=64"] ) + env.Append( CXXFLAGS=["-Wnon-virtual-dtor", "-Woverloaded-virtual"] ) diff --git a/community/python-pygpgme/PKGBUILD b/community/python-pygpgme/PKGBUILD new file mode 100644 index 000000000..5bb1c44a7 --- /dev/null +++ b/community/python-pygpgme/PKGBUILD @@ -0,0 +1,27 @@ +# Maintainer: Lukas Fleischer <archlinux at cryptocrack dot de> + +pkgbase=python-pygpgme +pkgname=(python-pygpgme python2-pygpgme) +pkgver=0.3 +pkgrel=2 +pkgdesc="A Python interface to the gpgme GnuPG library" +arch=('i686' 'x86_64') +url='https://launchpad.net/pygpgme' +makedepends=('python' 'python2') +license=('LGPL') +source=("https://launchpad.net/pygpgme/trunk/${pkgver}/+download/pygpgme-${pkgver}.tar.gz") +md5sums=('d38355af73f0352cde3d410b25f34fd0') + +package_python-pygpgme() { + depends=('python' 'gpgme') + + cd "${srcdir}/pygpgme-${pkgver}" + python setup.py install --root="${pkgdir}" --optimize=1 +} + +package_python2-pygpgme() { + depends=('python2' 'gpgme') + + cd "${srcdir}/pygpgme-${pkgver}" + python2 setup.py install --root="${pkgdir}" --optimize=1 +} diff --git a/community/redshift/PKGBUILD b/community/redshift/PKGBUILD index aff73c9fd..fa0210aba 100644 --- a/community/redshift/PKGBUILD +++ b/community/redshift/PKGBUILD @@ -1,20 +1,21 @@ -# $Id: PKGBUILD 109293 2014-04-12 21:39:07Z lfleischer $ +# $Id: PKGBUILD 109308 2014-04-13 08:35:54Z lfleischer $ # Maintainer: Lukas Fleischer <archlinux at cryptocrack dot de> # Contributor: Geoffrey Teale <tealeg@stop-squark> # Contributor: Mark, Huo Mian <markhuomian[at]gmail[dot]com> # Contributor: Biginoz <biginoz a free dot fr> +# Contributor: Mattias Andrée <`base64 -d`(bWFhbmRyZWUK)@member.fsf.org> pkgname=redshift pkgver=1.9 -pkgrel=1 +pkgrel=2 pkgdesc='Adjusts the color temperature of your screen according to your surroundings.' arch=('i686' 'x86_64') url='http://jonls.dk/redshift/' license=('GPL3') -depends=('gconf' 'geoclue' 'libxxf86vm') -optdepends=('pygtk: for gtk-redshift' - 'python-xdg: for gtk-redshift' - 'librsvg: for gtk-redshift') +depends=('geoclue' 'libdrm' 'libxcb' 'libxxf86vm') +optdepends=('pygtk: for redshift-gtk' + 'python-xdg: for redshift-gtk' + 'librsvg: for redshift-gtk') makedepends=('python') install='redshift.install' source=("https://github.com/jonls/${pkgname}/releases/download/v${pkgver}/${pkgname}-${pkgver}.tar.xz") @@ -23,7 +24,7 @@ md5sums=('9640218cd9ba88f6d10b347b2277c415') build() { cd "${srcdir}/${pkgname}-${pkgver}" - PYTHON=/usr/bin/python ./configure --prefix=/usr + ./configure --prefix=/usr --enable-drm --enable-randr --enable-vidmode --enable-geoclue make } diff --git a/community/stunnel/PKGBUILD b/community/stunnel/PKGBUILD index 6a79c3e0e..6ee7ba1eb 100644 --- a/community/stunnel/PKGBUILD +++ b/community/stunnel/PKGBUILD @@ -1,11 +1,11 @@ -# $Id: PKGBUILD 107290 2014-03-16 16:03:43Z lfleischer $ +# $Id: PKGBUILD 109329 2014-04-13 11:55:50Z lfleischer $ # Maintainer: Lukas Fleischer <archlinux at cryptocrack dot de> # Contributor: Kaiting Chen <kaitocracy@gmail.com> # Contributor: Daniel J Griffiths <ghost1227@archlinux.us> # Contributor: Kevin Piche <kevin@archlinux.org> pkgname=stunnel -pkgver=5.00 +pkgver=5.01 pkgrel=1 pkgdesc="A program that allows you to encrypt arbitrary TCP connections inside SSL" arch=('i686' 'x86_64') @@ -16,7 +16,7 @@ install=$pkgname.install source=("https://www.stunnel.org/downloads/$pkgname-$pkgver.tar.gz"{,.asc} 'Makefile.patch' 'stunnel.tmpfiles.conf') -md5sums=('4f00fd0faf99e3c9cf258a19dd83d14a' +md5sums=('7b63266b6fa05da696729e245100da65' 'SKIP' '579f198ecb90a42fcbfd8a4e48006264' '2e065a39998e57727ee79887bbd1751e') diff --git a/community/tcpflow/PKGBUILD b/community/tcpflow/PKGBUILD index 582004c4e..e00a1b7ba 100644 --- a/community/tcpflow/PKGBUILD +++ b/community/tcpflow/PKGBUILD @@ -1,27 +1,44 @@ -# $Id: PKGBUILD 82467 2013-01-18 15:47:09Z fyan $ -# Maintainer: Chris Brannon <cmbrannon79@gmail.com> +# $Id: PKGBUILD 109310 2014-04-13 08:57:55Z fyan $ +# Maintainer: Felix Yan <felixonmars@gmail.com> +# Contributor: Chris Brannon <cmbrannon79@gmail.com> # Contributor: Jeff Mickey <jeff@archlinux.org> pkgname=tcpflow -pkgver=1.3.0 +pkgver=1.4.4 pkgrel=1 pkgdesc="Captures data transmitted as part of TCP connections then stores the data conveniently" arch=('i686' 'x86_64') url="http://afflib.org/software/tcpflow" license=('GPL') -depends=('gcc-libs' 'libpcap' 'zlib') -source=("https://github.com/simsong/$pkgname/archive/$pkgname-$pkgver.tar.gz") +depends=('libpcap' 'cairo') +makedepends=('git' 'boost') +source=("git+https://github.com/simsong/$pkgname.git#tag=$pkgname-$pkgver" + 'git+https://github.com/simsong/be13_api.git' + 'git+https://github.com/simsong/dfxml.git' + 'git+https://github.com/joyent/http-parser.git') +md5sums=('SKIP' + 'SKIP' + 'SKIP' + 'SKIP') + +prepare() { + cd $pkgname + git submodule init + git config submodule."src/be13_api".url "$srcdir/be13_api" + git config submodule."src/dfxml".url "$srcdir/dfxml" + git config submodule."src/http-parser".url "$srcdir/http-parser" + git submodule update +} build() { - cd "$srcdir/$pkgname-$pkgname-$pkgver" + cd $pkgname sh bootstrap.sh ./configure --prefix=/usr --mandir=/usr/share/man make } package() { - cd "$srcdir/$pkgname-$pkgname-$pkgver" + cd $pkgname make DESTDIR="$pkgdir" install } -md5sums=('446be6d852bc7ddd0a8d5149f2bddb60') diff --git a/extra/yakuake/PKGBUILD b/community/yakuake/PKGBUILD index 1642a8bd4..b4f776385 100644 --- a/extra/yakuake/PKGBUILD +++ b/community/yakuake/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 169308 2012-10-19 06:54:12Z andrea $ +# $Id: PKGBUILD 109331 2014-04-13 12:27:19Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> # Contributor: James Rayner <iphitus@gmail.com> # Contributor: leeghoofd <abcdefg@solcon.nl> diff --git a/extra/yakuake/yakuake.install b/community/yakuake/yakuake.install index c0797237a..c0797237a 100644 --- a/extra/yakuake/yakuake.install +++ b/community/yakuake/yakuake.install diff --git a/extra/cups/PKGBUILD b/extra/cups/PKGBUILD index f9e6cfabb..b3ebf1daf 100644 --- a/extra/cups/PKGBUILD +++ b/extra/cups/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 207150 2014-03-07 19:58:24Z andyrtr $ +# $Id: PKGBUILD 210252 2014-04-13 07:29:52Z andyrtr $ # Maintainer: Andreas Radke <andyrtr@archlinux.org> pkgbase="cups" pkgname=('libcups' 'cups') -pkgver=1.7.1 -pkgrel=4 +pkgver=1.7.2 +pkgrel=1 arch=('i686' 'x86_64') license=('GPL') url="http://www.cups.org/" @@ -12,7 +12,7 @@ makedepends=('libtiff>=4.0.0' 'libpng>=1.5.7' 'acl' 'pam' 'xdg-utils' 'krb5' 'op 'cups-filters' 'bc' 'colord' 'xinetd' 'gzip' 'autoconf' 'libusb' 'dbus' 'avahi' 'hicolor-icon-theme' 'systemd' 'inetutils' 'libpaper' 'valgrind') source=(#http://mirror.easysw.com/pub/cups/${pkgver}/cups-${pkgver}-source.tar.bz2 - http://www.cups.org/software/${pkgver}/cups-${pkgver}-source.tar.bz2 + http://www.cups.org/software/${pkgver}/cups-${pkgver}-source.tar.bz2{,.sig} cups.logrotate cups.pam # improve build and linking cups-no-export-ssllibs.patch @@ -31,13 +31,14 @@ source=(#http://mirror.easysw.com/pub/cups/${pkgver}/cups-${pkgver}-source.tar.b cupsd-no-crash-on-avahi-threaded-poll-shutdown.patch get-ppd-file-for-statically-configured-ipp-shared-queues.patch ppd-poll-with-client-conf.patch) -md5sums=('55277c40fd4b7183dc3671d39c5c42b7' +md5sums=('f06a997d4b71b81b23324e27174f93e7' + 'SKIP' 'f861b18f4446c43918c8643dcbbd7f6d' '96f82c38f3f540b53f3e5144900acf17' '3ba9e3410df1dc3015463d615ef91b3b' 'cc4101beccb5ed6deb1c92707a575925' '90c30380d4c8cd48a908cfdadae1ea24' - 'cf2f881967b0531ec49bcb5d0e9573a8' + '7088c0123c06bce280925aa39ebd79c6' '8fe27d4248cacbc02824e7937cab4088' 'df0c367c0022e3c7d8e01827e8a6c5e7' 'f30c2a161caaf27854581507cde8cac6' @@ -51,7 +52,7 @@ md5sums=('55277c40fd4b7183dc3671d39c5c42b7' prepare() { cd ${pkgbase}-${pkgver} - +#return 1 # add systemd socket support - Fedora patch, also used in Gentoo # modified now to the changes done by Gentoo in their svn ebuild # http://sources.gentoo.org/cgi-bin/viewvc.cgi/gentoo-x86/net-print/cups/files/cups-1.5.0-systemd-socket.patch?revision=1.1 diff --git a/extra/cups/cups-systemd-socket.patch b/extra/cups/cups-systemd-socket.patch index ad13a6da7..54a951200 100644 --- a/extra/cups/cups-systemd-socket.patch +++ b/extra/cups/cups-systemd-socket.patch @@ -32,11 +32,11 @@ diff -up cups-1.7rc1/config-scripts/cups-systemd.m4.systemd-socket cups-1.7rc1/c + [], [with_systemdsystemunitdir=$($PKGCONFIG --variable=systemdsystemunitdir systemd)]) +if test "x$with_systemdsystemunitdir" != xno; then + AC_MSG_CHECKING(for libsystemd-daemon) ++ AC_SUBST([systemdsystemunitdir], [$with_systemdsystemunitdir]) + if $PKGCONFIG --exists libsystemd-daemon; then + AC_MSG_RESULT(yes) + SDCFLAGS=`$PKGCONFIG --cflags libsystemd-daemon` + SDLIBS=`$PKGCONFIG --libs libsystemd-daemon` -+ AC_SUBST([systemdsystemunitdir], [$with_systemdsystemunitdir]) + AC_DEFINE(HAVE_SYSTEMD) + else + AC_MSG_RESULT(no) @@ -213,15 +213,6 @@ diff -up cups-1.7rc1/scheduler/listen.c.systemd-socket cups-1.7rc1/scheduler/lis diff -up cups-1.7rc1/scheduler/main.c.systemd-socket cups-1.7rc1/scheduler/main.c --- cups-1.7rc1/scheduler/main.c.systemd-socket 2013-07-12 11:16:53.212546887 +0200 +++ cups-1.7rc1/scheduler/main.c 2013-07-12 11:16:53.261546208 +0200 -@@ -26,6 +26,8 @@ - * launchd_checkin() - Check-in with launchd and collect the listening - * fds. - * launchd_checkout() - Update the launchd KeepAlive file as needed. -+ * systemd_checkin() - Check-in with systemd and collect the -+ * listening fds. - * parent_handler() - Catch USR1/CHLD signals... - * process_children() - Process all dead children... - * select_timeout() - Calculate the select timeout value. @@ -62,6 +64,10 @@ # endif /* !LAUNCH_JOBKEY_SERVICEIPC */ #endif /* HAVE_LAUNCH_H */ @@ -238,7 +229,7 @@ diff -up cups-1.7rc1/scheduler/main.c.systemd-socket cups-1.7rc1/scheduler/main. static void launchd_checkout(void); #endif /* HAVE_LAUNCHD */ +#ifdef HAVE_SYSTEMD -+static void systemd_checkin(void); ++static int systemd_checkin(void); +#endif /* HAVE_SYSTEMD */ static void parent_handler(int sig); static void process_children(void); @@ -278,7 +269,7 @@ diff -up cups-1.7rc1/scheduler/main.c.systemd-socket cups-1.7rc1/scheduler/main. #endif /* HAVE_LAUNCHD */ +#ifdef HAVE_SYSTEMD -+static void ++static int +systemd_checkin(void) +{ + int n, fd; diff --git a/extra/easytag/PKGBUILD b/extra/easytag/PKGBUILD index fe517e1ba..660e92a2c 100644 --- a/extra/easytag/PKGBUILD +++ b/extra/easytag/PKGBUILD @@ -1,13 +1,13 @@ -# $Id: PKGBUILD 206159 2014-02-20 12:56:10Z guillaume $ +# $Id: PKGBUILD 210272 2014-04-13 11:24:53Z 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.10 +pkgver=2.2.0 pkgrel=1 -pkgdesc='Utility for viewing and editing tags for most audio formats' +pkgdesc='Simple application for viewing and editing tags in audio files' arch=('i686' 'x86_64') license=('GPL') url='http://easytag.sourceforge.net/' @@ -16,9 +16,7 @@ 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=('fe73a27aa4ad0a2ddc183a84d923ac214aeaf4a5752cb8640a2f840d9dd023d9') - -# TODO either 'svn delete' patch about mime or add it back here +sha256sums=('29589972a3a8beb7823df74f1e845c1e61ab46508425894fa46b72c86cad56f7') build() { cd "${srcdir}/${pkgname}-${pkgver}" diff --git a/extra/gnutls/PKGBUILD b/extra/gnutls/PKGBUILD index deb8d7392..68fba3bb2 100644 --- a/extra/gnutls/PKGBUILD +++ b/extra/gnutls/PKGBUILD @@ -1,9 +1,9 @@ -# $Id: PKGBUILD 209911 2014-04-08 13:33:24Z andyrtr $ +# $Id: PKGBUILD 210253 2014-04-13 07:29:53Z andyrtr $ # Maintainer: Jan de Groot <jgc@archlinux.org> # Maintainer: Andreas Radke <andyrtr@archlinux.org> pkgname=gnutls -pkgver=3.2.13 +pkgver=3.3.0 pkgrel=1 pkgdesc="A library which provides a secure layer over a reliable transport layer" arch=('i686' 'x86_64') @@ -12,8 +12,8 @@ url="http://www.gnutls.org/" install=gnutls.install options=('!zipman') depends=('gcc-libs' 'libtasn1' 'readline' 'zlib' 'nettle' 'p11-kit') -source=(ftp://ftp.gnutls.org/gcrypt/gnutls/v3.2/${pkgname}-${pkgver}.tar.xz{,.sig}) -md5sums=('300e5f413054e2f4719c1c3b5179a611' +source=(ftp://ftp.gnutls.org/gcrypt/gnutls/v3.3/${pkgname}-${pkgver}.tar.xz{,.sig}) +md5sums=('4aeb8014feb4016c73a60f4e1ac73c9f' 'SKIP') build() { diff --git a/extra/maxima/PKGBUILD b/extra/maxima/PKGBUILD index 83e206abb..72b009bfb 100644 --- a/extra/maxima/PKGBUILD +++ b/extra/maxima/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 207716 2014-03-13 19:21:04Z juergen $ +# $Id: PKGBUILD 210270 2014-04-13 08:41:15Z ronald $ # Maintainer: Ronald van Haren <ronald.archlinux.org> # Contributor: Damir Perisa <damir@archlinux.org> pkgname=maxima -pkgver=5.32.1 -pkgrel=3 +pkgver=5.33.0 +pkgrel=1 pkgdesc="A sophisticated computer algebra system" arch=('i686' 'x86_64') license=('GPL') @@ -17,14 +17,18 @@ optdepends=('gnuplot: plotting capabilities' 'rlwrap: readline support via /usr/ options=('!makeflags' '!zipman') # don't zip info pages or they won't work inside maxima install=maxima.install source=("http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz" "$pkgname.desktop") -sha1sums=('8667c9e26fdb2889ceb0641b0abc7372aadd591a' +sha1sums=('0b57f1ada8676979c6d431d6e114c7b04e1e8c8c' '4398ebb1ec85ccfa12f37516a56d60c26f74b18b') -build() { +prepare() { cd "${srcdir}/${pkgname}-${pkgver}" # set correct python executable to create docs sed -i "s|${PYTHONBIN:-python}|python2|" doc/info/extract_categories.sh +} + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" ./configure --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info \ --libexecdir=/usr/lib --enable-sbcl --with-default-lisp=sbcl diff --git a/extra/mesa/PKGBUILD b/extra/mesa/PKGBUILD index 2bab10435..e882ec5e0 100644 --- a/extra/mesa/PKGBUILD +++ b/extra/mesa/PKGBUILD @@ -1,20 +1,29 @@ -# $Id: PKGBUILD 207954 2014-03-15 14:36:28Z lcarlier $ +# $Id: PKGBUILD 210291 2014-04-13 14:05:33Z lcarlier $ # Maintainer: Jan de Groot <jgc@archlinux.org> # Maintainer: Andreas Radke <andyrtr@archlinux.org> pkgbase=mesa pkgname=('ati-dri' 'intel-dri' 'nouveau-dri' 'svga-dri' 'mesa' 'mesa-libgl') pkgver=10.1.0 -pkgrel=4 +pkgrel=5 arch=('i686' 'x86_64') makedepends=('python2' 'libxml2' 'libx11' 'glproto' 'libdrm' 'dri2proto' 'dri3proto' 'presentproto' 'libxshmfence' 'libxxf86vm' 'libxdamage' 'libvdpau' 'wayland' 'elfutils' 'llvm' 'systemd') url="http://mesa3d.sourceforge.net" license=('custom') source=(ftp://ftp.freedesktop.org/pub/mesa/10.1/MesaLib-${pkgver}.tar.bz2 - LICENSE) + LICENSE + workaround-for-robustness-and-reset-with-intel.patch) md5sums=('3ec43f79dbcd9aa2a4a27bf1f51655b6' - '5c65a0fe315dd347e09b1f2826a1df5a') + '5c65a0fe315dd347e09b1f2826a1df5a' + 'b6b744a948b0de9cd14a2a971b7472de') + +prepare () { + cd ${srcdir}/?esa-* + + # workaround for FS#39803 - https://bugs.freedesktop.org/show_bug.cgi?id=75723 + patch -Np1 -i ../workaround-for-robustness-and-reset-with-intel.patch +} build() { cd ${srcdir}/?esa-* diff --git a/extra/mesa/workaround-for-robustness-and-reset-with-intel.patch b/extra/mesa/workaround-for-robustness-and-reset-with-intel.patch new file mode 100644 index 000000000..dc4a213bb --- /dev/null +++ b/extra/mesa/workaround-for-robustness-and-reset-with-intel.patch @@ -0,0 +1,15 @@ +diff --git a/src/mesa/drivers/dri/i965/brw_context.c b/src/mesa/drivers/dri/i965/brw_context.c +index e113654..5790680 100644 +--- a/src/mesa/drivers/dri/i965/brw_context.c ++++ b/src/mesa/drivers/dri/i965/brw_context.c +@@ -645,7 +645,7 @@ brwCreateContext(gl_api api, + + brw_init_driver_functions(brw, &functions); + +- if (notify_reset) ++ if (notify_reset && brw->gen >= 6) + functions.GetGraphicsResetStatus = brw_get_graphics_reset_status; + + struct gl_context *ctx = &brw->ctx; + + diff --git a/extra/nss/PKGBUILD b/extra/nss/PKGBUILD deleted file mode 100644 index 239b798bf..000000000 --- a/extra/nss/PKGBUILD +++ /dev/null @@ -1,91 +0,0 @@ -# $Id: PKGBUILD 209931 2014-04-09 10:55:38Z jgc $ -# Maintainer: Jan de Groot <jgc@archlinux.org> - -pkgname=nss -pkgver=3.16 -pkgrel=1 -pkgdesc="Mozilla Network Security Services" -arch=(i686 x86_64) -url="http://www.mozilla.org/projects/security/pki/nss/" -license=('MPL' 'GPL') -_nsprver=4.10.4 -depends=("nspr>=${_nsprver}" 'sqlite' 'zlib' 'sh') -makedepends=('perl') -options=('!strip' '!makeflags' 'staticlibs') -source=(ftp://ftp.mozilla.org/pub/security/nss/releases/NSS_${pkgver//./_}_RTM/src/${pkgname}-${pkgver}.tar.gz - nss.pc.in - nss-config.in - ssl-renegotiate-transitional.patch) -sha1sums=('981dc6ef2f1e69ec7e2b277ce27c7005e9837f95' - 'aa5b2c0aa38d3c1066d511336cf28d1333e3aebd' - 'cb744cc3e56b604e4754bc3c7d9f25bb9a0a136c' - '8a964a744ba098711b80c0d279a2993524e8eb92') - -prepare() { - cd $pkgname-$pkgver - - # Adds transitional SSL renegotiate support - patch from Debian - patch -Np3 -i ../ssl-renegotiate-transitional.patch - - # Respect LDFLAGS - sed -e 's/\$(MKSHLIB) -o/\$(MKSHLIB) \$(LDFLAGS) -o/' \ - -i nss/coreconf/rules.mk -} - - -build() { - cd $pkgname-$pkgver/nss - - export BUILD_OPT=1 - export NSS_USE_SYSTEM_SQLITE=1 - export NSS_ENABLE_ECC=1 - export NSPR_INCLUDE_DIR="`nspr-config --includedir`" - export NSPR_LIB_DIR="`nspr-config --libdir`" - export XCFLAGS="${CFLAGS}" - - [ "$CARCH" = "x86_64" ] && export USE_64=1 - - make -C coreconf - make -C lib/dbm - make -} - -package() { - cd $pkgname-$pkgver - install -d "$pkgdir"/usr/{bin,include/nss,lib/pkgconfig} - - NSS_VMAJOR=$(grep '#define.*NSS_VMAJOR' nss/lib/nss/nss.h | awk '{print $3}') - NSS_VMINOR=$(grep '#define.*NSS_VMINOR' nss/lib/nss/nss.h | awk '{print $3}') - NSS_VPATCH=$(grep '#define.*NSS_VPATCH' nss/lib/nss/nss.h | awk '{print $3}') - - sed ../nss.pc.in \ - -e "s,%libdir%,/usr/lib,g" \ - -e "s,%prefix%,/usr,g" \ - -e "s,%exec_prefix%,/usr/bin,g" \ - -e "s,%includedir%,/usr/include/nss,g" \ - -e "s,%NSPR_VERSION%,${_nsprver},g" \ - -e "s,%NSS_VERSION%,${pkgver},g" \ - > "$pkgdir/usr/lib/pkgconfig/nss.pc" - ln -s nss.pc "$pkgdir/usr/lib/pkgconfig/mozilla-nss.pc" - - sed ../nss-config.in \ - -e "s,@libdir@,/usr/lib,g" \ - -e "s,@prefix@,/usr/bin,g" \ - -e "s,@exec_prefix@,/usr/bin,g" \ - -e "s,@includedir@,/usr/include/nss,g" \ - -e "s,@MOD_MAJOR_VERSION@,${NSS_VMAJOR},g" \ - -e "s,@MOD_MINOR_VERSION@,${NSS_VMINOR},g" \ - -e "s,@MOD_PATCH_VERSION@,${NSS_VPATCH},g" \ - > "$pkgdir/usr/bin/nss-config" - chmod 755 "$pkgdir/usr/bin/nss-config" - - cd dist/*.OBJ/bin - install -t "$pkgdir/usr/bin" *util shlibsign signtool signver ssltap - - cd ../lib - install -t "$pkgdir/usr/lib" *.so - install -t "$pkgdir/usr/lib" -m644 libcrmf.a *.chk - - cd ../../public/nss - install -t "$pkgdir/usr/include/nss" -m644 *.h -} diff --git a/extra/nss/nss-config.in b/extra/nss/nss-config.in deleted file mode 100644 index f8f893e71..000000000 --- a/extra/nss/nss-config.in +++ /dev/null @@ -1,145 +0,0 @@ -#!/bin/sh - -prefix=@prefix@ - -major_version=@MOD_MAJOR_VERSION@ -minor_version=@MOD_MINOR_VERSION@ -patch_version=@MOD_PATCH_VERSION@ - -usage() -{ - cat <<EOF -Usage: nss-config [OPTIONS] [LIBRARIES] -Options: - [--prefix[=DIR]] - [--exec-prefix[=DIR]] - [--includedir[=DIR]] - [--libdir[=DIR]] - [--version] - [--libs] - [--cflags] -Dynamic Libraries: - nss - nssutil - ssl - smime -EOF - exit $1 -} - -if test $# -eq 0; then - usage 1 1>&2 -fi - -lib_ssl=yes -lib_smime=yes -lib_nss=yes -lib_nssutil=yes - -while test $# -gt 0; do - case "$1" in - -*=*) optarg=`echo "$1" | sed 's/[-_a-zA-Z0-9]*=//'` ;; - *) optarg= ;; - esac - - case $1 in - --prefix=*) - prefix=$optarg - ;; - --prefix) - echo_prefix=yes - ;; - --exec-prefix=*) - exec_prefix=$optarg - ;; - --exec-prefix) - echo_exec_prefix=yes - ;; - --includedir=*) - includedir=$optarg - ;; - --includedir) - echo_includedir=yes - ;; - --libdir=*) - libdir=$optarg - ;; - --libdir) - echo_libdir=yes - ;; - --version) - echo ${major_version}.${minor_version}.${patch_version} - ;; - --cflags) - echo_cflags=yes - ;; - --libs) - echo_libs=yes - ;; - ssl) - lib_ssl=yes - ;; - smime) - lib_smime=yes - ;; - nss) - lib_nss=yes - ;; - nssutil) - lib_nssutil=yes - ;; - *) - usage 1 1>&2 - ;; - esac - shift -done - -# Set variables that may be dependent upon other variables -if test -z "$exec_prefix"; then - exec_prefix=`pkg-config --variable=exec_prefix nss` -fi -if test -z "$includedir"; then - includedir=`pkg-config --variable=includedir nss` -fi -if test -z "$libdir"; then - libdir=`pkg-config --variable=libdir nss` -fi - -if test "$echo_prefix" = "yes"; then - echo $prefix -fi - -if test "$echo_exec_prefix" = "yes"; then - echo $exec_prefix -fi - -if test "$echo_includedir" = "yes"; then - echo $includedir -fi - -if test "$echo_libdir" = "yes"; then - echo $libdir -fi - -if test "$echo_cflags" = "yes"; then - echo -I$includedir -fi - -if test "$echo_libs" = "yes"; then - libdirs="-Wl,-rpath-link,$libdir -L$libdir" - if test -n "$lib_ssl"; then - libdirs="$libdirs -lssl${major_version}" - fi - if test -n "$lib_smime"; then - libdirs="$libdirs -lsmime${major_version}" - fi - if test -n "$lib_nss"; then - libdirs="$libdirs -lnss${major_version}" - fi - if test -n "$lib_nssutil"; then - libdirs="$libdirs -lnssutil${major_version}" - fi - echo $libdirs -fi - diff --git a/extra/nss/nss.pc.in b/extra/nss/nss.pc.in deleted file mode 100644 index d47b9e146..000000000 --- a/extra/nss/nss.pc.in +++ /dev/null @@ -1,11 +0,0 @@ -prefix=%prefix% -exec_prefix=%exec_prefix% -libdir=%libdir% -includedir=%includedir% - -Name: NSS -Description: Network Security Services -Version: %NSS_VERSION% -Requires: nspr >= %NSPR_VERSION% -Libs: -lssl3 -lsmime3 -lnss3 -lnssutil3 -Cflags: -I${includedir} diff --git a/extra/nss/ssl-renegotiate-transitional.patch b/extra/nss/ssl-renegotiate-transitional.patch deleted file mode 100644 index f457c5551..000000000 --- a/extra/nss/ssl-renegotiate-transitional.patch +++ /dev/null @@ -1,21 +0,0 @@ -Enable transitional scheme for ssl renegotiation: - -(from mozilla/security/nss/lib/ssl/ssl.h) -Disallow unsafe renegotiation in server sockets only, but allow clients -to continue to renegotiate with vulnerable servers. -This value should only be used during the transition period when few -servers have been upgraded. - -diff --git a/mozilla/security/nss/lib/ssl/sslsock.c b/mozilla/security/nss/lib/ssl/sslsock.c -index f1d1921..c074360 100644 ---- a/mozilla/security/nss/lib/ssl/sslsock.c -+++ b/mozilla/security/nss/lib/ssl/sslsock.c -@@ -181,7 +181,7 @@ static sslOptions ssl_defaults = { - PR_FALSE, /* noLocks */ - PR_FALSE, /* enableSessionTickets */ - PR_FALSE, /* enableDeflate */ -- 2, /* enableRenegotiation (default: requires extension) */ -+ 3, /* enableRenegotiation (default: transitional) */ - PR_FALSE, /* requireSafeNegotiation */ - }; - diff --git a/extra/r/PKGBUILD b/extra/r/PKGBUILD index baa09e78b..ed57820e1 100644 --- a/extra/r/PKGBUILD +++ b/extra/r/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 209657 2014-03-31 18:56:07Z ronald $ +# $Id: PKGBUILD 210268 2014-04-13 08:32:33Z ronald $ # Maintainer: Ronald van Haren <ronald.archlinux.org> # Contributor: Damir Perisa <damir.perisa@bluewin.ch> # Contributor: K. Piche <kpiche@rogers.com> pkgname=r -pkgver=3.0.3 +pkgver=3.1.0 pkgrel=1 pkgdesc="Language and environment for statistical computing and graphics" arch=('i686' 'x86_64') @@ -22,7 +22,7 @@ source=("http://cran.r-project.org/src/base/R-${pkgver%%.*}/R-${pkgver}.tar.gz" 'r.desktop' 'r.png' 'R.conf') -sha1sums=('82e83415d27a2fbbdcacb41c4aa14d8b36fdf470' +sha1sums=('a9d13932c739cc12667c6a17fabd9361624a1708' 'd7fa521345b230a4187d60d07d06ce4b6d573e3f' 'a69a07ec363440efc18ce0a7f2af103375dea978' '43668da6cfd1b4455a99f23e79e2059294dddac9') diff --git a/extra/varnish/PKGBUILD b/extra/varnish/PKGBUILD index 32567111c..b69d6ca31 100644 --- a/extra/varnish/PKGBUILD +++ b/extra/varnish/PKGBUILD @@ -1,25 +1,27 @@ -# $Id: PKGBUILD 200724 2013-12-03 14:59:11Z dreisner $ +# $Id: PKGBUILD 210293 2014-04-13 15:14:17Z dreisner $ # Maintainer: Dave Reisner <dreisner@archlinux.org> # Contributor: Jaroslav Lichtblau <dragonlord@aur.archlinux.org> # Contributor: Douglas Soares de Andrade # Contributor: Roberto Alsina <ralsina@kde.org> pkgname=varnish -pkgver=3.0.5 +pkgver=4.0.0 pkgrel=1 pkgdesc="High-performance HTTP accelerator" arch=('i686' 'x86_64') url="http://www.varnish-cache.org/" license=('BSD') depends=('gcc' 'libedit' 'pcre') +makedepends=('python-docutils') +optdepends=('python: needed for vmod development') backup=('etc/varnish/default.vcl') install=$pkgname.install source=("http://repo.varnish-cache.org/source/$pkgname-$pkgver.tar.gz" varnish-vcl-reload varnish.service) -md5sums=('674d44775cc927aee4601edb37f60198' +md5sums=('05af2deae29f37b166392a0237756250' '03196dee7fc68e75069393d52c370762' - '276f1761b3c7c6a83688038659194bbb') + '699d118a069c2e63e49c81f275ce2658') build() { cd "$pkgname-$pkgver" @@ -34,11 +36,17 @@ build() { } package() { - make -C "$pkgname-$pkgver" DESTDIR="$pkgdir" install + cd "$pkgname-$pkgver" + + make DESTDIR="$pkgdir" install install -m755 "$srcdir/varnish-vcl-reload" "$pkgdir/usr/bin" install -Dm644 "$srcdir/$pkgname.service" "$pkgdir/usr/lib/systemd/system/$pkgname.service" + # config + install -Dm644 "etc/example.vcl" "$pkgdir/etc/varnish/default.vcl" + install -Dm644 "etc/builtin.vcl" "$pkgdir/usr/share/doc/varnish/builtin.vcl" + # license - install -Dm644 "$pkgname-$pkgver/LICENSE" "$pkgdir/usr/share/licenses/$pkgname/LICENSE" + install -Dm644 "LICENSE" "$pkgdir/usr/share/licenses/$pkgname/LICENSE" } diff --git a/extra/varnish/varnish.install b/extra/varnish/varnish.install index 1cbb1f16e..66e825f70 100644 --- a/extra/varnish/varnish.install +++ b/extra/varnish/varnish.install @@ -4,3 +4,11 @@ post_remove() { rm -rf var/lib/varnish } + +post_upgrade() { + if [ "$(vercmp 4.0.0-1 "$2")" -eq 1 ]; then + echo ":: You must update your VCL to be compatible with 4.0.0. See the following" + echo " upgrade guide to port your configuration:" + echo " https://www.varnish-cache.org/docs/trunk/whats-new/upgrading.html" + fi +} diff --git a/extra/varnish/varnish.service b/extra/varnish/varnish.service index 01fda89c2..54c5ac835 100644 --- a/extra/varnish/varnish.service +++ b/extra/varnish/varnish.service @@ -1,10 +1,15 @@ [Unit] -Description=Web Application Accelerator +Description=High-perfomance HTTP accelerator After=network.target [Service] ExecStart=/usr/bin/varnishd -a 0.0.0.0:80,[::]:80 -f /etc/varnish/default.vcl -T localhost:6082 -s malloc,64M -u nobody -g nobody -F ExecReload=/usr/bin/varnish-vcl-reload +PrivateTmp=true +PrivateDevices=true +LimitNOFILE=131072 +LimitMEMLOCK=82000 +LimitCORE=infinity [Install] WantedBy=multi-user.target diff --git a/libre/atril-libre/PKGBUILD b/libre/atril-libre/PKGBUILD deleted file mode 100644 index d4b98a231..000000000 --- a/libre/atril-libre/PKGBUILD +++ /dev/null @@ -1,59 +0,0 @@ -# $Id: PKGBUILD 106531 2014-03-05 20:16:04Z flexiondotorg $ -# Maintainer : Martin Wimpress <code@flexion.org> -# Maintainer (Parabola): André Silva <emulatorman@parabola.nu> - -_pkgname=atril -pkgname=atril-libre -pkgver=1.8.0 -pkgrel=1 -pkgdesc="Simply a document viewer, with libarchive recommendation" -url="http://mate-desktop.org" -arch=('i686' 'x86_64' 'mips64el') -license=('GPL') -depends=('dconf' 'dbus' 'desktop-file-utils' 'gtk2' 'libsm' 'libspectre' - 'mate-desktop' 'mate-icon-theme' 'poppler-glib' 'zlib') -makedepends=('caja' 'djvulibre' 'gobject-introspection' 'libgxps' 'mate-common' - 'perl-xml-parser' 'texlive-bin' 'yelp-tools') -optdepends=('caja: Document Properties extension' - 'djvulibre: DjVu support' - 'libgxps: XPS support' - 'p7zip: cbz and cb7 compressed comic books' - 'texlive-bin: DVI support' - 'libarchive: cbr compressed comic books' - 'yelp: for reading MATE help documents') -replaces=('mate-document-viewer' "$_pkgname") -provides=('mate-document-viewer' "$_pkgname=$pkgver") -conflicts=('mate-document-viewer' "$_pkgname") -options=('!emptydirs') -groups=('mate-extra') -source=("http://pub.mate-desktop.org/releases/1.8/${_pkgname}-${pkgver}.tar.xz") -sha1sums=('8327437ba12df61326b83342cea746d1764727d0') -install=${_pkgname}.install - -prepare() { - cd "${srcdir}/${_pkgname}-${pkgver}" - NOCONFIGURE=1 ./autogen.sh -} - -build() { - cd "${srcdir}/${_pkgname}-${pkgver}" - ./configure \ - --prefix=/usr \ - --libexecdir=/usr/lib/${_pkgname} \ - --with-gtk=2.0 \ - --enable-gtk-doc \ - --enable-djvu \ - --enable-dvi \ - --enable-t1lib \ - --enable-pixbuf \ - --enable-comics \ - --enable-xps \ - --enable-introspection \ - --disable-static - make -} - -package() { - cd "${srcdir}/${_pkgname}-${pkgver}" - make DESTDIR="${pkgdir}" install -} diff --git a/libre/atril-libre/atril.install b/libre/atril-libre/atril.install deleted file mode 100644 index bf6781f93..000000000 --- a/libre/atril-libre/atril.install +++ /dev/null @@ -1,13 +0,0 @@ -post_install() { - glib-compile-schemas /usr/share/glib-2.0/schemas/ - gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor - update-desktop-database -q -} - -post_upgrade() { - post_install -} - -post_remove() { - post_install -} diff --git a/libre/engrampa-libre/PKGBUILD b/libre/engrampa-libre/PKGBUILD deleted file mode 100644 index a109e8839..000000000 --- a/libre/engrampa-libre/PKGBUILD +++ /dev/null @@ -1,50 +0,0 @@ -# $Id: PKGBUILD 106530 2014-03-05 20:15:56Z flexiondotorg $ -# Maintainer : Martin Wimpress <code@flexion.org> -# Maintainer (Parabola): André Silva <emulatorman@parabola.nu> - -_pkgname=engrampa -pkgname=engrampa-libre -pkgver=1.8.0 -pkgrel=1 -pkgdesc="Archive manipulator for MATE, with unar recommendation included and nonfree unace recommendation removed" -url="http://mate-desktop.org" -arch=('i686' 'x86_64' 'mips64el') -license=('GPL') -depends=('bzip2' 'caja' 'desktop-file-utils' 'gtk2' 'gzip' 'libarchive' 'tar') -makedepends=('mate-common' 'perl-xml-parser' 'yelp-tools') -optdepends=('unar: for RAR uncompression' - 'zip: for ZIP archives' 'unzip: for ZIP archives' - 'p7zip: 7zip compression utility' 'arj: for ARJ archives' - 'yelp: for reading MATE help documents') -replaces=('mate-file-archiver' "$_pkgname") -provides=('mate-file-archiver' "$_pkgname=$pkgver") -conflicts=('mate-file-archiver' "$_pkgname") -options=( '!emptydirs') -groups=('mate-extra') -source=("http://pub.mate-desktop.org/releases/1.8/${_pkgname}-${pkgver}.tar.xz" - fr-rpm-bsdtar.patch) -sha1sums=('511019cee95568a4951e9da12d8a7282c3f6af65' - '219b05a979bf6f249aaae27964f02345fd81168d') -install=${_pkgname}.install - -prepare() { - cd "${srcdir}/${_pkgname}-${pkgver}" - # This patch 'depends' on libarchive - patch -Np1 -i "${srcdir}/fr-rpm-bsdtar.patch" -} - -build() { - cd "${srcdir}/${_pkgname}-${pkgver}" - ./configure \ - --prefix=/usr \ - --libexecdir=/usr/lib/${_pkgname} \ - --with-gtk=2.0 \ - --disable-static \ - --disable-packagekit - make -} - -package() { - cd "${srcdir}/${_pkgname}-${pkgver}" - make DESTDIR="${pkgdir}" install -} diff --git a/libre/engrampa-libre/engrampa.install b/libre/engrampa-libre/engrampa.install deleted file mode 100644 index bf6781f93..000000000 --- a/libre/engrampa-libre/engrampa.install +++ /dev/null @@ -1,13 +0,0 @@ -post_install() { - glib-compile-schemas /usr/share/glib-2.0/schemas/ - gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor - update-desktop-database -q -} - -post_upgrade() { - post_install -} - -post_remove() { - post_install -} diff --git a/libre/engrampa-libre/fr-rpm-bsdtar.patch b/libre/engrampa-libre/fr-rpm-bsdtar.patch deleted file mode 100644 index 93a783176..000000000 --- a/libre/engrampa-libre/fr-rpm-bsdtar.patch +++ /dev/null @@ -1,60 +0,0 @@ -This makes Engrampa use bsdtar to extract .RPM packages instead of using cpio. -It is useful on systems that do not have cpio or RPM/YUM -This patch was created for Arch Linux, however should work on any system that has bsdtar capable of handling cpio archives. - -------------------+ - rpm2cpio.c | 2 +- - fr-command-rpm.c | 8 ++++---- - 2 files changed, 5 insertions(+), 5 deletions(-) - -Index: src/commands/rpm2cpio.c -================================ ---- mate-file-archiver-1.6.0/src/commands/rpm2cpio.c 2013-03-31 -+++ mate-file-archiver-1.6.0/src/commands/rpm2cpio.c 2013-07-26 -@@ -128,7 +128,7 @@ - archive_command = "bzip2 -dc"; - fclose (stream); - -- command = g_strdup_printf ("sh -c \"dd if=%s ibs=%u skip=1 2>/dev/null | %s | cpio %s\"", g_shell_quote (filename), offset, archive_command, cpio_args->str); -+ command = g_strdup_printf ("sh -c \"dd if=%s ibs=%u skip=1 2>/dev/null | %s | bsdtar %s\"", g_shell_quote (filename), offset, archive_command, cpio_args->str); - - return system (command); - } -Index: src/fr-command-rpm.c -================================ ---- mate-file-archiver-1.6.0/src/fr-command-rpm.c 2013-03-31 -+++ mate-file-archiver-1.6.0/src/fr-command-rpm.c 2013-07-26 -@@ -175,7 +175,7 @@ - - fr_process_begin_command (comm->process, "sh"); - fr_process_add_arg (comm->process, "-c"); -- fr_process_add_arg_concat (comm->process, PRIVEXECDIR "rpm2cpio ", comm->e_filename, " -itv", NULL); -+ fr_process_add_arg_concat (comm->process, PRIVEXECDIR "rpm2cpio ", comm->e_filename, " -tvf -", NULL); - fr_process_end_command (comm->process); - fr_process_start (comm->process); - } -@@ -200,7 +200,7 @@ - - cmd = g_string_new (PRIVEXECDIR "rpm2cpio "); - g_string_append (cmd, comm->e_filename); -- g_string_append (cmd, " -idu "); -+ g_string_append (cmd, " -xf - "); - for (scan = file_list; scan; scan = scan->next) { - char *filename = g_shell_quote (scan->data); - g_string_append (cmd, filename); -@@ -233,7 +233,7 @@ - FrCommandCap capabilities; - - capabilities = FR_COMMAND_CAN_ARCHIVE_MANY_FILES; -- if (is_program_available ("cpio", check_command)) -+ if (is_program_available ("bsdtar", check_command)) - capabilities |= FR_COMMAND_CAN_READ; - - return capabilities; -@@ -244,7 +244,7 @@ - fr_command_rpm_get_packages (FrCommand *comm, - const char *mime_type) - { -- return PACKAGES ("cpio,rpm"); -+ return PACKAGES ("bsdtar,rpm"); - } diff --git a/libre/gst-plugins-bad-libre/PKGBUILD b/libre/gst-plugins-bad-libre/PKGBUILD deleted file mode 100644 index 82d82e8dd..000000000 --- a/libre/gst-plugins-bad-libre/PKGBUILD +++ /dev/null @@ -1,47 +0,0 @@ -# $Id: PKGBUILD 207667 2014-03-12 23:35:44Z foutrelis $ -# Maintainer: Jan de Groot <jgc@archlinux.org> -# Maintainer (Parabola): Márcio Silva <coadde@lavabit.com> - -_pkgname=gst-plugins-bad -pkgname=$_pkgname-libre -pkgver=1.2.3 -pkgrel=2 -pkgdesc="GStreamer Multimedia Framework Bad Plugins, without nonfree faac support" -arch=('i686' 'x86_64' 'mips64el') -license=('LGPL') -url="http://gstreamer.freedesktop.org/" -depends=('mjpegtools' 'gst-plugins-base-libs' 'curl' 'chromaprint' 'libmms' 'faad2' 'mpg123' 'celt' 'libdca' 'soundtouch' 'spandsp' 'libdvdnav' 'libmodplug' 'libgme' 'opus' 'wayland' 'neon' 'libofa' 'fluidsynth' 'openjpeg' 'libwebp' 'libsrtp' 'gnutls' 'wildmidi') -makedepends=('schroedinger' 'libexif' 'libdvdread' 'libvdpau' 'libmpeg2' 'python' 'valgrind' 'wildmidi' 'librsvg' - 'gobject-introspection' 'gtk-doc') -provides=($_pkgname=$pkgver) -conflicts=$_pkgname -replaces=$_pkgname -options=(!emptydirs) -source=(${url}/src/$_pkgname/$_pkgname-$pkgver.tar.xz) -sha256sums=('595d7911a9e6207dea37200587724bdbf841b81a5eb0730118be36976684278c') - -build() { - cd $_pkgname-$pkgver - - ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \ - --disable-static --enable-experimental --enable-gtk-doc \ - --with-package-name="GStreamer Bad Plugins (Parabola GNU/Linux-libre)" \ - --with-package-origin="https://parabolagnulinux.org/" \ - --with-gtk=3.0 - - # https://bugzilla.gnome.org/show_bug.cgi?id=655517 - sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool - - make -} - -check() { - cd $_pkgname-$pkgver - # don't have a camera for the camerabin test - make -k check || : -} - -package() { - cd $_pkgname-$pkgver - make DESTDIR="${pkgdir}" install -} diff --git a/libre/gstreamer0.10-bad-libre/PKGBUILD b/libre/gstreamer0.10-bad-libre/PKGBUILD deleted file mode 100644 index ead094736..000000000 --- a/libre/gstreamer0.10-bad-libre/PKGBUILD +++ /dev/null @@ -1,71 +0,0 @@ -# $Id: PKGBUILD 207669 2014-03-12 23:48:57Z foutrelis $ -# Maintainer: Jan de Groot <jgc@archlinux.org> -# Maintainer (Parabola): fauno <fauno@kiwwwi.com.ar> -# Maintainer (Parabola): André Silva <emulatorman@parabola.nu> - -pkgbase=gstreamer0.10-bad-libre -pkgname=('gstreamer0.10-bad-libre' 'gstreamer0.10-bad-libre-plugins') -pkgver=0.10.23 -pkgrel=8 -arch=('i686' 'x86_64' 'mips64el') -license=('LGPL' 'GPL') -makedepends=('pkgconfig' 'gstreamer0.10-base>=0.10.36' 'xvidcore' 'libdca' 'bzip2' 'libdc1394' 'neon' 'musicbrainz' 'faad2' 'libmms' 'libcdaudio' 'libmpcdec' 'mjpegtools' 'libdvdnav' 'libmodplug' 'jasper' 'liblrdf' 'libofa' 'soundtouch' 'libvdpau' 'schroedinger' 'libass' 'libvpx' 'gsm' 'libgme' 'rtmpdump' 'libsndfile' 'librsvg' 'wildmidi' 'opus' 'git' 'spandsp' 'celt') -url="http://gstreamer.freedesktop.org/" -options=(!emptydirs) -source=("git://anongit.freedesktop.org/gstreamer-sdk/gst-plugins-bad#commit=57569a4854a0f2d14ef19a8264a4ae9a7a1d1125" - disable-assrender-test.patch - disable-camerabin-test.patch) -sha256sums=('SKIP' - 'e66642affa6c0e69837d37615010e67e59ef3d672663303d46c1e2591e2ddfc6' - '01e780ddf1f8161a6115dded9dc5bf4bdd4d09a9eee00fa423b1330e90e76c68') - -prepare() { - cd gst-plugins-bad - sed -e 's/AM_CONFIG_HEADER/AC_CONFIG_HEADERS/' -i configure.ac - patch -Np1 -i ../disable-assrender-test.patch - patch -Np1 -i ../disable-camerabin-test.patch -} - -build() { - cd gst-plugins-bad - NOCONFIGURE=1 ./autogen.sh - ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \ - --disable-static --enable-experimental --disable-gtk-doc \ - --with-package-name="GStreamer Bad Plugins (Parabola GNU/Linux-libre)" \ - --with-package-origin="https://parabolagnulinux.org/" - - make - sed -e 's/gst sys ext/gst/' -i Makefile -} - -check() { - cd gst-plugins-bad - make check -} - -package_gstreamer0.10-bad-libre() { - pkgdesc="GStreamer Multimedia Framework Bad Plugin libraries (gst-plugins-bad), without nonfree faac support" - depends=('gstreamer0.10-base>=0.10.34') - provides=("gstreamer0.10-bad=$pkgver") - conflicts=('gstreamer0.10-bad') - replaces=('gstreamer0.10-bad') - - cd gst-plugins-bad - make DESTDIR="${pkgdir}" install -} - -package_gstreamer0.10-bad-libre-plugins() { - pkgdesc="GStreamer Multimedia Framework Bad Plugins (gst-plugins-bad), without nonfree faac support" - depends=("gstreamer0.10-bad-libre=${pkgver}" 'xvidcore' 'libdca' 'bzip2' 'libdc1394' 'neon' 'musicbrainz' 'faad2' 'libmms' 'libcdaudio' 'libmpcdec' 'mjpegtools' 'libdvdnav' 'libmodplug' 'jasper' 'liblrdf' 'libofa' 'libvdpau' 'soundtouch' 'libass' 'schroedinger' 'libvpx' 'gsm' 'rtmpdump' 'libgme' 'libsndfile' 'librsvg' 'wildmidi' 'opus' 'celt' 'spandsp') - groups=('gstreamer0.10-plugins') - install=gstreamer0.10-bad-plugins.install - provides=("gstreamer0.10-bad-plugins=$pkgver") - conflicts=('gstreamer0.10-bad-plugins') - replaces=('gstreamer0.10-bad-plugins') - - cd gst-plugins-bad - make -C gst-libs DESTDIR="${pkgdir}" install - make -C ext DESTDIR="${pkgdir}" install - make -C sys DESTDIR="${pkgdir}" install - make -C gst-libs DESTDIR="${pkgdir}" uninstall -} diff --git a/libre/texlive-bin-libre/PKGBUILD b/libre/texlive-bin-libre/PKGBUILD deleted file mode 100644 index 6df239440..000000000 --- a/libre/texlive-bin-libre/PKGBUILD +++ /dev/null @@ -1,304 +0,0 @@ -# $Id: PKGBUILD 207625 2014-03-12 22:46:29Z remy $ -# Maintainer: Rémy Oudompheng <remy@archlinux.org> -# Contributor: francois <francois.archlinux.org> -# Maintainer (Parabola): Michał Masłowski <mtjm@mtjm.eu> -# Contributor (Parabola): André Silva <emulatorman@parabola.nu> - -pkgname=texlive-bin-libre -pkgver=2013.30973 -pkgrel=8 -pkgdesc="TeX Live binaries, without biber binaries (Parabola rebranded)" -license=('GPL') -arch=('i686' 'x86_64' 'mips64el') -depends=('cairo' 'pixman' 'graphite' 't1lib' 'gd' 'poppler>=0.24.4' - 'libsigsegv' 'zziplib' 'libpng' 'libjpeg' 'freetype2' - 'icu' 'harfbuzz' 'harfbuzz-icu') -makedepends=('perl' 'clisp' 'ffcall') -optdepends=('ed: for texconfig') -provides=('texlive-bin' 'lcdf-typetools' 'kpathsea' 'xindy' 'pdfjam') -conflicts=('texlive-bin' 'pdfjam') -replaces=('texlive-bin') -options=('!strip') -url='http://tug.org/texlive/' -install="texlive.install" -source=('fix-fontforge-encoding.patch' - "http://mirrors.kernel.org/archlinux/other/texlive/texlive-bin-source-${pkgver}.tar.xz" -) -md5sums=('bfb9716aa00c86c08cd31e5b32edeb98' - '0a8ffd5c0002a080a4202057b1f106c6') - -build() { - cd "$srcdir" - - if [ "${CARCH}" != "i686" ]; then - export CFLAGS="${CFLAGS} -fPIC" - export CXXFLAGS="${CXXFLAGS} -fPIC" - fi - - # this patch removes spurious error message with locale "xx_YY.utf8" - #patch -Np0 -i fix-fontforge-encoding.patch - # t4ht expects to be un /usr/share/texmf/bin/t4ht (FS#27251) - sed -i s/SELFAUTOPARENT/TEXMFROOT/ source/texk/tex4htk/t4ht.c - ############################################################# - ### configure - cd source - ## prevent compiling Xdvi with libXp - sed -i~ 's|-lXp ||' texk/xdvik/configure - test ! -d Work && mkdir Work - cd Work - echo "--> Initial configuration..." - # we use temporary prefix to avoid messing the existing - # $pkgdir/usr/share/texmf tree - # system zlib is disabled due to issues with zlib 1.2.6 (FS#28221) - ../configure --prefix=/usr -C \ - --sysconfdir=/etc \ - --datarootdir=/usr/share \ - --datadir=/usr/share \ - --mandir=/usr/share/man \ - --disable-native-texlive-build \ - --with-banner-add="/Parabola GNU/Linux-libre" \ - --disable-multiplatform \ - --disable-dialog \ - --disable-psutils \ - --disable-t1utils \ - --disable-bibtexu \ - --disable-xz \ - --enable-shared \ - --disable-static \ - --with-system-zlib \ - --with-system-zziplib \ - --with-system-pnglib \ - --with-system-ncurses \ - --with-system-t1lib \ - --with-system-gd \ - --with-system-poppler \ - --with-system-xpdf \ - --with-system-freetype2 \ - --with-system-pixman \ - --with-system-cairo \ - --with-system-harfbuzz \ - --with-system-graphite \ - --with-system-icu \ - --with-freetype2-libdir=/usr/lib \ - --with-freetype2-include=/usr/include/freetype2 \ - --with-xdvi-x-toolkit=xaw \ - --disable-dump-share \ - --disable-aleph \ - --enable-luatex \ - --with-clisp-runtime=default \ - --enable-xindy --disable-xindy-rules --disable-xindy-docs - ############################################################# - ### make - echo "-------------------------------------------------------" - echo "--> Building the whole beast ..." - echo "-------------------------------------------------------" - make -} - -package() { - cd "$srcdir" - - ############################################################# - ### install - cd source - # fixes for xindy - find utils/xindy -name Makefile -exec sed -i -e "s|^prefix =.\+$|prefix = $pkgdir/usr|" -e "s|^mandir =.\+$|mandir = \${prefix}/share/man|" -e "s|^datadir =.\+$|datadir = \${datarootdir}/texmf|" -e "s|^docdir =.\+$|docdir = \${datadir}/doc/xindy|" '{}' \; - - echo "-------------------------------------------------------" - echo "--> Proceeding with make install ..." - echo "-------------------------------------------------------" - cd Work - make DESTDIR="${pkgdir}" texmf="$pkgdir"/usr/share/texmf install - rm -rf "${pkgdir}"/usr/{texmf,share/texmf-dist} - - ## install Perl libraries - mkdir -p "$pkgdir"/usr/share/tlpkg/TeXLive - install -m644 "${srcdir}"/source/utils/biber/TeXLive/*.pm "${pkgdir}/usr/share/tlpkg/TeXLive" - - ## symlink engines by hand. texlinks has moved to texlive-core... - mkdir -p ${pkgdir}/usr/bin - ln -s eptex ${pkgdir}/usr/bin/platex - ln -s euptex ${pkgdir}/usr/bin/uplatex - ln -s luatex ${pkgdir}/usr/bin/dvilualatex - ln -s luatex ${pkgdir}/usr/bin/dviluatex - ln -s luatex ${pkgdir}/usr/bin/lualatex - ln -s pdftex ${pkgdir}/usr/bin/amstex - ln -s pdftex ${pkgdir}/usr/bin/cslatex - ln -s pdftex ${pkgdir}/usr/bin/csplain - ln -s pdftex ${pkgdir}/usr/bin/eplain - ln -s pdftex ${pkgdir}/usr/bin/etex - ln -s pdftex ${pkgdir}/usr/bin/jadetex - ln -s pdftex ${pkgdir}/usr/bin/latex - ln -s pdftex ${pkgdir}/usr/bin/mex - ln -s pdftex ${pkgdir}/usr/bin/mllatex - ln -s pdftex ${pkgdir}/usr/bin/mltex - ln -s pdftex ${pkgdir}/usr/bin/pdfetex - ln -s pdftex ${pkgdir}/usr/bin/pdfcslatex - ln -s pdftex ${pkgdir}/usr/bin/pdfcsplain - ln -s pdftex ${pkgdir}/usr/bin/pdfjadetex - ln -s pdftex ${pkgdir}/usr/bin/pdflatex - ln -s pdftex ${pkgdir}/usr/bin/pdfmex - ln -s pdftex ${pkgdir}/usr/bin/pdfxmltex - ln -s pdftex ${pkgdir}/usr/bin/texsis - ln -s pdftex ${pkgdir}/usr/bin/utf8mex - ln -s pdftex ${pkgdir}/usr/bin/xmltex - ln -s xetex ${pkgdir}/usr/bin/xelatex - - ############################################################# - # remove dangling symlinks - _bibtexextra_scripts=" -bibexport -listbib -multibibliography -urlbst -" - _core_scripts=" -a2ping -a5toa4 -adhocfilelist -afm2afm -allcm -allec -allneeded -arara -arlatex -autoinst -bundledoc -checkcites -chkweb -context -ctanify -ctanupload -ctxtools -de-macro -deweb -dosepsbin -dtxgen -dvi2fax -dviasm -dvired -e2pall -epstopdf -findhyph -fmtutil -fmtutil-sys -fontinst -fragmaster -installfont-tl -kpsepath -kpsetool -kpsewhere -kpsexpand -latex2man -latexdiff -latexdiff-vc -latexfileversion -latexmk -latexpand -latexrevise -listings-ext.sh -ltxfileinfo -lua2dox_filter -luaotfload-tool -luatools -match_parens -mf2pt1 -mkjobtexmf -mkluatexfontdb -mkt1font -mktexfmt -mptopdf -mtxrun -ot2kpx -pdf180 -pdf270 -pdf90 -pdfatfi -pdfbook -pdfcrop -pdfflip -pdfjam -pdfjam-pocketmod -pdfjam-slides3up -pdfjam-slides6up -pdfjoin -pdfnup -pdfpun -pfarrei -pkfix -pkfix-helper -ps2eps -ps2frag -pslatex -pstopdf -purifyeps -repstopdf -rpdfcrop -rungs -simpdftex -sty2dtx -texconfig -texconfig-dialog -texconfig-sys -texcount -texdef -texdiff -texdirflatten -texdoc -texdoctk -texexec -texindy -texlinks -texliveonfly -texloganalyser -texmfstart -thumbpdf -typeoutfileinfo -updmap -updmap-sys -vpl2ovp -vpl2vpl -xindy -" - _htmlxml_scripts="ht htcontext htlatex htmex httex httexi htxelatex htxetex mk4ht" - _langcyrillic_scripts="rubibtex rumakeindex" - _langcjk_scripts="convbkmk ptex2pdf -kanji-fontmap-creator -kanji-config-updmap -kanji-config-updmap-sys -" - _langextra_scripts="ebong" - _langgreek_scripts="mkgrkindex" - _latexextra_scripts=" -authorindex -exceltex -makeglossaries -pdfannotextractor -perltex -ps4pdf -splitindex -svn-multi -vpe" - _music_scripts="m-tx musixtex musixflx pmx2pdf" - _pictures_scripts="cachepic epspdf epspdftk fig4latex mathspic" - _pstricks_scripts="pedigree pst2pdf" - _science_scripts="ulqda" - for s in \ - ${_bibtexextra_scripts} \ - ${_core_scripts} \ - ${_htmlxml_scripts} \ - ${_langcjk_scripts} \ - ${_langcyrillic_scripts} \ - ${_langextra_scripts} \ - ${_langgreek_scripts} \ - ${_latexextra_scripts} \ - ${_music_scripts} \ - ${_pictures_scripts} \ - ${_pstricks_scripts} \ - ${_science_scripts} \ - tlmgr; do - ! readlink -e "$pkgdir"/usr/bin/$s && rm "$pkgdir"/usr/bin/$s - done - ################################################################### -} - diff --git a/libre/texlive-core-libre/texlive-core.maps b/libre/texlive-core-libre/texlive-core.maps deleted file mode 100644 index 46f598907..000000000 --- a/libre/texlive-core-libre/texlive-core.maps +++ /dev/null @@ -1,56 +0,0 @@ -Map euler.map -Map charter.map -Map cs-charter.map -Map csfonts.map -Map fpls.map -Map l7x-urwvn.map -Map lm.map -Map marvosym.map -Map mathpple.map -Map original-context-symbol.map -Map pazo.map -Map pxfonts.map -Map qag.map -Map qbk.map -Map qcr.map -Map qcs.map -Map qhv.map -Map qpl.map -Map qtm.map -Map qzc.map -Map tabvar.map -Map troff-updmap.map -Map txfonts.map -Map uag.map -Map ubk.map -Map ucr.map -Map uhv.map -Map unc.map -Map upl.map -Map usy.map -Map utm.map -Map utopia.map -Map uzc.map -Map uzd.map -MixedMap ccpl.map -MixedMap cm-super-t1.map -MixedMap cm-super-t2a.map -MixedMap cm-super-t2b.map -MixedMap cm-super-t2c.map -MixedMap cm-super-ts1.map -MixedMap cm-super-x2.map -MixedMap cm.map -MixedMap cmextra.map -MixedMap cmtext-bsr-interpolated.map -MixedMap cyrillic.map -MixedMap eurosym.map -MixedMap latxfont.map -MixedMap mflogo.map -MixedMap plother.map -MixedMap pltext.map -MixedMap rsfs.map -MixedMap stmaryrd.map -MixedMap symbols.map -MixedMap tipa.map -MixedMap wasy.map -MixedMap yhmath.map diff --git a/libre/texlive-core-libre/texmfcnf.lua b/libre/texlive-core-libre/texmfcnf.lua deleted file mode 100644 index 4409692be..000000000 --- a/libre/texlive-core-libre/texmfcnf.lua +++ /dev/null @@ -1,190 +0,0 @@ --- public domain - --- ConTeXt needs a properly expanded TEXMFLOCAL, so here is a --- bit of lua code to make that happen - -local texmflocal = resolvers.prefixes.selfautoparent(); -texmflocal = string.gsub(texmflocal, "20%d%d$", "texmf-local"); - -return { - - type = "configuration", - version = "1.1.0", - date = "2012-05-24", - time = "12:12:12", - comment = "ConTeXt MkIV configuration file", - author = "Hans Hagen, PRAGMA-ADE, Hasselt NL", - - content = { - - -- Originally there was support for engines and progname but I don't expect - -- other engines to use this file, so first engines were removed. After that - -- if made sense also to get rid of progname. At some point specific formats - -- will be supported but then as a subtable with fallbacks, which sounds more - -- natural. Also, at some point the paths will become tables. For the moment - -- I don't care too much about it as extending is easy. - - variables = { - - -- The following variable is predefined (but can be overloaded) and in - -- most cases you can leve this one untouched. The built-in definition - -- permits relocation of the tree. - -- - -- TEXMFCNF = "{selfautodir:,selfautoparent:}{,{/share,}/texmf{-local,}/web2c}" - -- - -- more readable than "selfautoparent:{/texmf{-local,}{,/web2c},}}" is: - -- - -- TEXMFCNF = { - -- "selfautoparent:/texmf-local", - -- "selfautoparent:/texmf-local/web2c", - -- "selfautoparent:/texmf-dist", - -- "selfautoparent:/texmf/web2c", - -- "selfautoparent:", - -- } - - -- only used for FONTCONFIG_PATH & TEXMFCACHE in TeX Live - - TEXMFSYSVAR = "/var/lib/texmf", - TEXMFVAR = "home:.texlive/texmf-var", - - -- We have only one cache path but there can be more. The first writable one - -- will be chosen but there can be more readable paths. - - TEXMFCACHE = "$TEXMFSYSVAR;$TEXMFVAR", - TEXMFCONFIG = "home:.texlive/texmf-config", - - -- I don't like this texmf under home and texmf-home would make more - -- sense. One never knows what installers put under texmf anywhere and - -- sorting out problems will be a pain. But on the other hand ... home - -- mess is normally under the users own responsibility. - -- - -- By using prefixes we don't get expanded paths in the cache __path__ - -- entry. This makes the tex root relocatable. - - TEXMFOS = "selfautodir:share", - TEXMFDIST = "selfautodir:share/texmf-dist", - - TEXMFLOCAL = texmflocal, - TEXMFSYSCONFIG = "/etc/texmf", - TEXMFFONTS = "selfautoparent:texmf-fonts", - TEXMFPROJECT = "selfautoparent:texmf-project", - - TEXMFHOME = "home:texmf", - -- TEXMFHOME = os.name == "macosx" and "home:Library/texmf" or "home:texmf", - - -- We need texmfos for a few rare files but as I have a few more bin trees - -- a hack is needed. Maybe other users also have texmf-platform-new trees. - - TEXMF = "{$TEXMFCONFIG,$TEXMFHOME,!!$TEXMFSYSCONFIG,!!$TEXMFSYSVAR,!!$TEXMFPROJECT,!!$TEXMFFONTS,!!$TEXMFLOCAL,!!$TEXMFDIST}", - - TEXFONTMAPS = ".;$TEXMF/fonts/data//;$TEXMF/fonts/map/{pdftex,dvips}//", - ENCFONTS = ".;$TEXMF/fonts/data//;$TEXMF/fonts/enc/{dvips,pdftex}//", - VFFONTS = ".;$TEXMF/fonts/{data,vf}//", - TFMFONTS = ".;$TEXMF/fonts/{data,tfm}//", - T1FONTS = ".;$TEXMF/fonts/{data,type1}//;$OSFONTDIR", - AFMFONTS = ".;$TEXMF/fonts/{data,afm}//;$OSFONTDIR", - TTFONTS = ".;$TEXMF/fonts/{data,truetype}//;$OSFONTDIR", - OPENTYPEFONTS = ".;$TEXMF/fonts/{data,opentype}//;$OSFONTDIR", - CMAPFONTS = ".;$TEXMF/fonts/cmap//", - FONTFEATURES = ".;$TEXMF/fonts/{data,fea}//;$OPENTYPEFONTS;$TTFONTS;$T1FONTS;$AFMFONTS", - FONTCIDMAPS = ".;$TEXMF/fonts/{data,cid}//", - OFMFONTS = ".;$TEXMF/fonts/{data,ofm,tfm}//", - OVFFONTS = ".;$TEXMF/fonts/{data,ovf,vf}//", - - TEXINPUTS = ".;$TEXMF/tex/{context,plain/base,generic}//", - MPINPUTS = ".;$TEXMF/metapost/{context,base,}//", - - -- In the next variable the inputs path will go away. - - TEXMFSCRIPTS = ".;$TEXMF/scripts/context/{lua,ruby,python,perl}//;$TEXINPUTS", - PERLINPUTS = ".;$TEXMF/scripts/context/perl", - PYTHONINPUTS = ".;$TEXMF/scripts/context/python", - RUBYINPUTS = ".;$TEXMF/scripts/context/ruby", - LUAINPUTS = ".;$TEXINPUTS;$TEXMF/scripts/context/lua//", - CLUAINPUTS = ".;$SELFAUTOLOC/lib/{context,luatex,}/lua//", - - -- Not really used by MkIV so they might go away. - - BIBINPUTS = ".;$TEXMF/bibtex/bib//", - BSTINPUTS = ".;$TEXMF/bibtex/bst//", - - -- Experimental - - ICCPROFILES = ".;$TEXMF/tex/context/colors/{icc,profiles}//;$OSCOLORDIR", - - -- A few special ones that will change some day. - - FONTCONFIG_FILE = "fonts.conf", - FONTCONFIG_PATH = "$TEXMFSYSVAR/fonts/conf", - - }, - - -- We have a few reserved subtables. These control runtime behaviour. The - -- keys have names like 'foo.bar' which means that you have to use keys - -- like ['foo.bar'] so for convenience we also support 'foo_bar'. - - directives = { - - -- There are a few variables that determine the engines - -- limits. Most will fade away when we close in on version 1. - - ["luatex.expanddepth"] = "10000", -- 10000 - ["luatex.hashextra"] = "100000", -- 0 - ["luatex.nestsize"] = "1000", -- 50 - ["luatex.maxinopen"] = "500", -- 15 - ["luatex.maxprintline"] = " 10000", -- 79 - ["luatex.maxstrings"] = "500000", -- 15000 -- obsolete - ["luatex.paramsize"] = "25000", -- 60 - ["luatex.savesize"] = "50000", -- 4000 - ["luatex.stacksize"] = "10000", -- 300 - - -- A few process related variables come next. - - -- ["system.checkglobals"] = "10", - -- ["system.nostatistics"] = "yes", - ["system.errorcontext"] = "10", - ["system.compile.cleanup"] = "no", -- remove tma files - ["system.compile.strip"] = "yes", -- strip tmc files - - -- The io modes are similar to the traditional ones. Possible values - -- are all, paranoid and restricted. - - ["system.outputmode"] = "restricted", - ["system.inputmode"] = "any", - - -- The following variable is under consideration. We do have protection - -- mechanims but it's not enabled by default. - - ["system.commandmode"] = "any", -- any none list - ["system.commandlist"] = "mtxrun, convert, inkscape, gs, imagemagick, curl, bibtex, pstoedit", - - -- The mplib library support mechanisms have their own - -- configuration. Normally these variables can be left as - -- they are. - - ["mplib.texerrors"] = "yes", - - -- Normally you can leave the font related directives untouched - -- as they only make sense when testing. - - -- ["fonts.autoreload"] = "no", - -- ["fonts.otf.loader.method"] = "table", -- table mixed sparse - -- ["fonts.otf.loader.cleanup"] = "0", -- 0 1 2 3 - - -- In an edit cycle it can be handy to launch an editor. The - -- preferred one can be set here. - - -- ["pdfview.method"] = "okular", -- default (often acrobat) xpdf okular - - }, - - experiments = { - ["fonts.autorscale"] = "yes", - }, - - trackers = { - }, - - }, - -} diff --git a/libre/texlive-fontsextra-libre/texlive-fontsextra.maps b/libre/texlive-fontsextra-libre/texlive-fontsextra.maps deleted file mode 100644 index 0b67bca11..000000000 --- a/libre/texlive-fontsextra-libre/texlive-fontsextra.maps +++ /dev/null @@ -1,148 +0,0 @@ -Map Acorn.map -Map Alegreya.map -Map AnnSton.map -Map AnonymousPro.map -Map ArrowsADF.map -Map ArtNouv.map -Map ArtNouvc.map -Map BulletsADF.map -Map Carrickc.map -Map CountriesOfEurope.map -Map EBGaramond.map -Map ESSTIX.map -Map Eichenla.map -Map Eileen.map -Map EileenBl.map -Map Elzevier.map -Map GotIn.map -Map GoudyIn.map -Map Kinigcap.map -Map Konanur.map -Map Kramer.map -Map LibreBaskerville.map -Map LibreCaslon.map -Map LobsterTwo.map -Map MnSymbol.map -Map MorrisIn.map -Map Nouveaud.map -Map OrnementsADF.map -Map Raleway.map -Map Romantik.map -Map Rothdn.map -Map RoyalIn.map -Map Sanremo.map -Map SourceCodePro.map -Map SourceSansPro.map -Map Starburst.map -Map Typocaps.map -Map XCharter.map -Map Zallman.map -Map accanthis.map -Map antt.map -Map ap.map -Map archaicprw.map -Map arev.map -Map ascii.map -Map aspectratio.map -Map augie.map -Map auncial.map -Map aurical.map -Map belleek.map -Map bera.map -Map bguq.map -Map boondox.map -Map cabin.map -Map calligra.map -Map cantarell.map -Map ccicons.map -Map clm.map -Map cm-lgc.map -Map cmin.map -Map comfortaa.map -Map cyklop.map -Map dejavu-type1.map -Map dictsym.map -Map droid.map -Map dstroke.map -Map dutchcal.map -Map epigrafica.map -Map esvect.map -Map fbb.map -Map fdsymbol.map -Map fetamont.map -Map fge.map -Map foekfont.map -Map fonetika.map -Map fourier-utopia-expert.map -Map fourier.map -Map frcursive.map -Map gentium-type1.map -Map gfsartemisia.map -Map gfsbodoni.map -Map gfscomplutum.map -Map gfsdidot.map -Map gfsneohellenic.map -Map gfssolomos.map -Map gillius.map -Map gptimes.map -Map hacm.map -Map icelandic.map -Map ipaex-type1.map -Map iwona.map -Map kpfonts.map -Map kurier.map -Map lato.map -Map libertine.map -Map linearA.map -Map mathabx.map -Map mdbch.map -Map mdgreek.map -Map mdici.map -Map mdpgd.map -Map mdpus.map -Map mdput.map -Map mdsymbol.map -Map mdugm.map -Map merriweather.map -Map mintspirit.map -Map newpx.map -Map newtx.map -Map ocrb.map -Map opensans.map -Map paratype-type1.map -Map pbsi.map -Map phaistos.map -Map prodint.map -Map pxtx.map -Map quattrocento.map -Map recycle.map -Map rsfso.map -Map sansmathaccent.map -Map sansmathfonts.map -Map sqrcaps.map -Map starfont.map -Map stix.map -Map superiors.map -Map tfrupee.map -Map uaq.map -Map ugq.map -Map ybd.map -Map ybv.map -Map yes.map -Map yfrak.map -Map yly.map -Map yrd.map -Map yv1.map -Map yv2.map -Map yv3.map -Map yvo.map -Map yvt.map -Map zi4.map -MixedMap allrunes.map -MixedMap bbold.map -MixedMap cmll.map -MixedMap hfbright.map -MixedMap lxfonts.map -MixedMap pigpen.map -MixedMap semaf.map -MixedMap trajan.map diff --git a/nonprism/sylpheed-nonprism/PKGBUILD b/nonprism/sylpheed-nonprism/PKGBUILD deleted file mode 100644 index 75f98249b..000000000 --- a/nonprism/sylpheed-nonprism/PKGBUILD +++ /dev/null @@ -1,51 +0,0 @@ -# $Id: PKGBUILD 107092 2014-03-12 11:31:06Z speps $ -# Maintainer: speps <speps at aur dot archlinux dot org> -# Contributor: Alexander Fehr <pizzapunk gmail com> -# Contributor: dorphell <dorphell@archlinux.org> -# Maintainer (Parabola): André Silva <emulatorman@parabola.nu> -# Contributor (Parabola): Aditya Som <icarious@hacari.org>" - -_pkgname=sylpheed -pkgname=sylpheed-nonprism -pkgver=3.3.1 -pkgrel=1 -pkgdesc="Lightweight and user-friendly e-mail client, without Gmail support" -arch=('i686' 'x86_64') -url="http://sylpheed.sraoss.jp/en/" -license=('GPL') -replaces=$_pkgname -conflicts=$_pkgname -provides=$_pkgname=$pkgver -depends=('compface' 'gpgme' 'gtkspell' 'desktop-file-utils') -makedepends=('openssl') -install="$_pkgname.install" -source=("http://sylpheed.sraoss.jp/$_pkgname/v3.3/$_pkgname-$pkgver.tar.bz2" - 'nonprism.patch') -md5sums=('34551fa05722bac80bbe0688bb4a3341' - 'e1bddc14962e607cdb899ec082660639') - -prepare() { - cd $_pkgname-$pkgver - - # Remove Gmail support - patch -Np1 -i "$srcdir/nonprism.patch" -} - -build() { - cd $_pkgname-$pkgver - ./configure --prefix=/usr \ - --enable-ldap - make - - # Build Attachment-Tool Plug-in - cd plugin/attachment_tool && make -} - -package() { - cd $_pkgname-$pkgver - make DESTDIR="$pkgdir/" install - - # Install Attachment-Tool Plug-in - cd plugin/attachment_tool - make DESTDIR="$pkgdir/" install-plugin -} diff --git a/pcr/trytond-carrier/PKGBUILD b/pcr/trytond-carrier/PKGBUILD deleted file mode 100644 index c4827cac0..000000000 --- a/pcr/trytond-carrier/PKGBUILD +++ /dev/null @@ -1,25 +0,0 @@ -# Maintainer: Robin Baumgartner <robin@baumgartners.ch> -pkgname=trytond-carrier -_pkgname=trytond_carrier -pkgver=3.0.0 -_pkgdir=3.0 -pkgrel=3 -pkgdesc="The carrier module of the Tryton application platform" -arch=('any') -url='http://www.tryton.org/' -license=('GPL3') -groups=('trytond-modules') -depends=('trytond>=3.0' 'trytond-party>=3.0' 'trytond-product>=3.0') -makedepends=('python2-distribute') -source=("http://downloads.tryton.org/$_pkgdir/$_pkgname-$pkgver.tar.gz") -md5sums=("f1c0c88d3e3ab4f2955a252125090eb7") - -build() { - cd $srcdir/$_pkgname-$pkgver - python2 setup.py build -} - -package() { - cd $srcdir/$_pkgname-$pkgver - python2 setup.py install --root=$pkgdir -}
\ No newline at end of file diff --git a/pcr/trytond-product-price-list/PKGBUILD b/pcr/trytond-product-price-list/PKGBUILD deleted file mode 100644 index bc55f3e7b..000000000 --- a/pcr/trytond-product-price-list/PKGBUILD +++ /dev/null @@ -1,25 +0,0 @@ -# Maintainer: Robin Baumgartner <robin@baumgartners.ch> -pkgname=trytond-product-price-list -_pkgname=trytond_product_price_list -pkgver=3.0.0 -_pkgdir=3.0 -pkgrel=3 -pkgdesc="The product_price_list module of the Tryton application platform" -arch=('any') -url='http://www.tryton.org/' -license=('GPL3') -groups=('trytond-modules') -depends=('trytond>=3.0' 'trytond-company>=3.0' 'trytond-product>=3.0') -makedepends=('python2-distribute') -source=("http://downloads.tryton.org/$_pkgdir/$_pkgname-$pkgver.tar.gz") -md5sums=("d220b8f8693368fe17688ddeda92aaa8") - -build() { - cd $srcdir/$_pkgname-$pkgver - python2 setup.py build -} - -package() { - cd $srcdir/$_pkgname-$pkgver - python2 setup.py install --root=$pkgdir -}
\ No newline at end of file diff --git a/pcr/trytond-purchase/PKGBUILD b/pcr/trytond-purchase/PKGBUILD deleted file mode 100644 index 5b0042cb0..000000000 --- a/pcr/trytond-purchase/PKGBUILD +++ /dev/null @@ -1,25 +0,0 @@ -# Maintainer: Robin Baumgartner <robin@baumgartners.ch> -pkgname=trytond-purchase -_pkgname=trytond_purchase -pkgver=3.0.0 -_pkgdir=3.0 -pkgrel=3 -pkgdesc="The purchase module of the Tryton application platform" -arch=('any') -url='http://www.tryton.org/' -license=('GPL3') -groups=('trytond-modules') -depends=('trytond>=3.0' 'trytond-account>=3.0' 'trytond-account-invoice>=3.0' 'trytond-account-product>=3.0' 'trytond-company>=3.0' 'trytond-currency>=3.0' 'trytond-party>=3.0' 'trytond-product>=3.0' 'trytond-stock>=3.0') -makedepends=('python2-distribute') -source=("http://downloads.tryton.org/$_pkgdir/$_pkgname-$pkgver.tar.gz") -md5sums=("83da5c8fce0588ca6077e1adb21d15d9") - -build() { - cd $srcdir/$_pkgname-$pkgver - python2 setup.py build -} - -package() { - cd $srcdir/$_pkgname-$pkgver - python2 setup.py install --root=$pkgdir -}
\ No newline at end of file diff --git a/pcr/trytond-sale-invoice-grouping/PKGBUILD b/pcr/trytond-sale-invoice-grouping/PKGBUILD deleted file mode 100644 index 8606d43e2..000000000 --- a/pcr/trytond-sale-invoice-grouping/PKGBUILD +++ /dev/null @@ -1,25 +0,0 @@ -# Maintainer: Robin Baumgartner <robin@baumgartners.ch> -pkgname=trytond-sale-invoice-grouping -_pkgname=trytond_sale_invoice_grouping -pkgver=3.0.1 -_pkgdir=3.0 -pkgrel=2 -pkgdesc="The sale_invoice_grouping module of the Tryton application platform" -arch=('any') -url='http://www.tryton.org/' -license=('GPL3') -groups=('trytond-modules') -depends=('trytond>=3.0' 'trytond-party>=3.0' 'trytond-account-invoice>=3.0' 'trytond-sale>=3.0') -makedepends=('python2-distribute') -source=("http://downloads.tryton.org/$_pkgdir/$_pkgname-$pkgver.tar.gz") -md5sums=("aef313cc4465536e7c4c925514bbdc3f") - -build() { - cd $srcdir/$_pkgname-$pkgver - python2 setup.py build -} - -package() { - cd $srcdir/$_pkgname-$pkgver - python2 setup.py install --root=$pkgdir -}
\ No newline at end of file diff --git a/pcr/trytond-sale-opportunity/PKGBUILD b/pcr/trytond-sale-opportunity/PKGBUILD deleted file mode 100644 index c2702eb4b..000000000 --- a/pcr/trytond-sale-opportunity/PKGBUILD +++ /dev/null @@ -1,25 +0,0 @@ -# Maintainer: Robin Baumgartner <robin@baumgartners.ch> -pkgname=trytond-sale-opportunity -_pkgname=trytond_sale_opportunity -pkgver=3.0.0 -_pkgdir=3.0 -pkgrel=3 -pkgdesc="The sale_opportunity module of the Tryton application platform" -arch=('any') -url='http://www.tryton.org/' -license=('GPL3') -groups=('trytond-modules') -depends=('trytond>=3.0' 'trytond-account>=3.0' 'trytond-company>=3.0' 'trytond-currency>=3.0' 'trytond-party>=3.0' 'trytond-product>=3.0' 'trytond-sale>=3.0' 'trytond-stock>=3.0') -makedepends=('python2-distribute') -source=("http://downloads.tryton.org/$_pkgdir/$_pkgname-$pkgver.tar.gz") -md5sums=("08a104e969fa638f265e427260756dfd") - -build() { - cd $srcdir/$_pkgname-$pkgver - python2 setup.py build -} - -package() { - cd $srcdir/$_pkgname-$pkgver - python2 setup.py install --root=$pkgdir -}
\ No newline at end of file diff --git a/pcr/trytond-sale-price-list/PKGBUILD b/pcr/trytond-sale-price-list/PKGBUILD deleted file mode 100644 index f0d501e9a..000000000 --- a/pcr/trytond-sale-price-list/PKGBUILD +++ /dev/null @@ -1,25 +0,0 @@ -# Maintainer: Robin Baumgartner <robin@baumgartners.ch> -pkgname=trytond-sale-price-list -_pkgname=trytond_sale_price_list -pkgver=3.0.0 -_pkgdir=3.0 -pkgrel=3 -pkgdesc="The sale_price_list module of the Tryton application platform" -arch=('any') -url='http://www.tryton.org/' -license=('GPL3') -groups=('trytond-modules') -depends=('trytond>=3.0' 'trytond-party>=3.0' 'trytond-product-price-list>=3.0' 'trytond-sale>=3.0') -makedepends=('python2-distribute') -source=("http://downloads.tryton.org/$_pkgdir/$_pkgname-$pkgver.tar.gz") -md5sums=("aad1178622b585285bd24964926a1326") - -build() { - cd $srcdir/$_pkgname-$pkgver - python2 setup.py build -} - -package() { - cd $srcdir/$_pkgname-$pkgver - python2 setup.py install --root=$pkgdir -}
\ No newline at end of file diff --git a/pcr/trytond-sale-shipment-cost/PKGBUILD b/pcr/trytond-sale-shipment-cost/PKGBUILD deleted file mode 100644 index 723ebfc11..000000000 --- a/pcr/trytond-sale-shipment-cost/PKGBUILD +++ /dev/null @@ -1,25 +0,0 @@ -# Maintainer: Robin Baumgartner <robin@baumgartners.ch> -pkgname=trytond-sale-shipment-cost -_pkgname=trytond_sale_shipment_cost -pkgver=3.0.0 -_pkgdir=3.0 -pkgrel=3 -pkgdesc="The sale_shipment_cost module of the Tryton application platform" -arch=('any') -url='http://www.tryton.org/' -license=('GPL3') -groups=('trytond-modules') -depends=('trytond>=3.0' 'trytond-account-invoice>=3.0' 'trytond-carrier>=3.0' 'trytond-currency>=3.0' 'trytond-sale>=3.0' 'trytond-stock>=3.0') -makedepends=('python2-distribute') -source=("http://downloads.tryton.org/$_pkgdir/$_pkgname-$pkgver.tar.gz") -md5sums=("031f6c3decc0f8918527b324c3674238") - -build() { - cd $srcdir/$_pkgname-$pkgver - python2 setup.py build -} - -package() { - cd $srcdir/$_pkgname-$pkgver - python2 setup.py install --root=$pkgdir -}
\ No newline at end of file diff --git a/pcr/trytond-sale-supply-drop-shipment/PKGBUILD b/pcr/trytond-sale-supply-drop-shipment/PKGBUILD deleted file mode 100644 index 2c8acf5e5..000000000 --- a/pcr/trytond-sale-supply-drop-shipment/PKGBUILD +++ /dev/null @@ -1,25 +0,0 @@ -# Maintainer: Robin Baumgartner <robin@baumgartners.ch> -pkgname=trytond-sale-supply-drop-shipment -_pkgname=trytond_sale_supply_drop_shipment -pkgver=3.0.0 -_pkgdir=3.0 -pkgrel=3 -pkgdesc="The sale_supply_drop_shipment module of the Tryton application platform" -arch=('any') -url='http://www.tryton.org/' -license=('GPL3') -groups=('trytond-modules') -depends=('trytond>=3.0' 'trytond-company>=3.0' 'trytond-purchase>=3.0' 'trytond-sale>=3.0' 'trytond-sale-supply>=3.0' 'trytond-stock>=3.0') -makedepends=('python2-distribute') -source=("http://downloads.tryton.org/$_pkgdir/$_pkgname-$pkgver.tar.gz") -md5sums=("3c7ace69223264f6a06ee2a5393bdb3e") - -build() { - cd $srcdir/$_pkgname-$pkgver - python2 setup.py build -} - -package() { - cd $srcdir/$_pkgname-$pkgver - python2 setup.py install --root=$pkgdir -}
\ No newline at end of file diff --git a/pcr/trytond-sale-supply/PKGBUILD b/pcr/trytond-sale-supply/PKGBUILD deleted file mode 100644 index 031c2ca85..000000000 --- a/pcr/trytond-sale-supply/PKGBUILD +++ /dev/null @@ -1,25 +0,0 @@ -# Maintainer: Robin Baumgartner <robin@baumgartners.ch> -pkgname=trytond-sale-supply -_pkgname=trytond_sale_supply -pkgver=3.0.0 -_pkgdir=3.0 -pkgrel=3 -pkgdesc="The sale_supply module of the Tryton application platform" -arch=('any') -url='http://www.tryton.org/' -license=('GPL3') -groups=('trytond-modules') -depends=('trytond>=3.0' 'trytond-purchase>=3.0' 'trytond-sale>=3.0' 'trytond-stock>=3.0' 'trytond-stock-supply>=3.0') -makedepends=('python2-distribute') -source=("http://downloads.tryton.org/$_pkgdir/$_pkgname-$pkgver.tar.gz") -md5sums=("806c0c542375cd2f9883352c544b2411") - -build() { - cd $srcdir/$_pkgname-$pkgver - python2 setup.py build -} - -package() { - cd $srcdir/$_pkgname-$pkgver - python2 setup.py install --root=$pkgdir -}
\ No newline at end of file diff --git a/pcr/trytond-sale/PKGBUILD b/pcr/trytond-sale/PKGBUILD deleted file mode 100644 index f6ac99044..000000000 --- a/pcr/trytond-sale/PKGBUILD +++ /dev/null @@ -1,25 +0,0 @@ -# Maintainer: Robin Baumgartner <robin@baumgartners.ch> -pkgname=trytond-sale -_pkgname=trytond_sale -pkgver=3.0.0 -_pkgdir=3.0 -pkgrel=3 -pkgdesc="The sale module of the Tryton application platform" -arch=('any') -url='http://www.tryton.org/' -license=('GPL3') -groups=('trytond-modules') -depends=('trytond>=3.0' 'trytond-account>=3.0' 'trytond-account-invoice>=3.0' 'trytond-account-product>=3.0' 'trytond-company>=3.0' 'trytond-currency>=3.0' 'trytond-party>=3.0' 'trytond-product>=3.0' 'trytond-stock>=3.0') -makedepends=('python2-distribute') -source=("http://downloads.tryton.org/$_pkgdir/$_pkgname-$pkgver.tar.gz") -md5sums=("87b25a8af9d592a903a071031bd5f2e9") - -build() { - cd $srcdir/$_pkgname-$pkgver - python2 setup.py build -} - -package() { - cd $srcdir/$_pkgname-$pkgver - python2 setup.py install --root=$pkgdir -}
\ No newline at end of file diff --git a/pcr/trytond-stock-supply/PKGBUILD b/pcr/trytond-stock-supply/PKGBUILD deleted file mode 100644 index 6f65cfc8d..000000000 --- a/pcr/trytond-stock-supply/PKGBUILD +++ /dev/null @@ -1,25 +0,0 @@ -# Maintainer: Robin Baumgartner <robin@baumgartners.ch> -pkgname=trytond-stock-supply -_pkgname=trytond_stock_supply -pkgver=3.0.0 -_pkgdir=3.0 -pkgrel=3 -pkgdesc="The stock_supply module of the Tryton application platform" -arch=('any') -url='http://www.tryton.org/' -license=('GPL3') -groups=('trytond-modules') -depends=('trytond>=3.0' 'trytond-account>=3.0' 'trytond-party>=3.0' 'trytond-product>=3.0' 'trytond-purchase>=3.0' 'trytond-stock>=3.0') -makedepends=('python2-distribute') -source=("http://downloads.tryton.org/$_pkgdir/$_pkgname-$pkgver.tar.gz") -md5sums=("19b178ba0b6d42cc64e09577113edf88") - -build() { - cd $srcdir/$_pkgname-$pkgver - python2 setup.py build -} - -package() { - cd $srcdir/$_pkgname-$pkgver - python2 setup.py install --root=$pkgdir -}
\ No newline at end of file |