From 4f73192c45f7b9615f06144dcb71f8450d39b7fb Mon Sep 17 00:00:00 2001 From: Nicolás Reynolds Date: Fri, 16 May 2014 04:10:38 +0000 Subject: Fri May 16 04:04:53 UTC 2014 --- community/avifile/PKGBUILD | 46 ------ community/avifile/gcc.patch | 145 ----------------- community/avifile/videodev.patch | 180 --------------------- community/delegate/PKGBUILD | 8 +- community/freeradius/PKGBUILD | 8 +- community/gmic/PKGBUILD | 6 +- community/kdenlive/PKGBUILD | 17 +- community/kleansweep/ChangeLog | 2 - community/kleansweep/PKGBUILD | 27 ---- .../kubuntu_03_fix_scons_chmod_error.patch | 23 --- community/kovpn/ChangeLog | 2 - community/kovpn/PKGBUILD | 43 ----- community/kovpn/kovpn.install | 12 -- community/ktechlab/PKGBUILD | 30 ---- community/madman/PKGBUILD | 59 ------- community/madman/fake-g++.sh | 5 - community/mandvd/PKGBUILD | 37 ----- community/mandvd/mandvd.changelog | 10 -- community/mcabber/PKGBUILD | 6 +- community/mediaproxy/PKGBUILD | 6 +- community/mingw-w64-binutils/PKGBUILD | 22 +-- .../binutils-2.23.2-texinfo-5.0.patch.txt | 162 ------------------- community/miniupnpd/PKGBUILD | 8 +- community/mumble/PKGBUILD | 16 +- community/openvswitch/PKGBUILD | 29 +--- community/openvswitch/openvswitch.install | 4 +- community/perl-datetime-format-mail/PKGBUILD | 8 +- community/perl-datetime/PKGBUILD | 6 +- community/perl-io-tty/PKGBUILD | 8 +- community/perl-params-validate/PKGBUILD | 6 +- community/python-psycopg2/PKGBUILD | 8 +- community/recoll/PKGBUILD | 6 +- community/ruby-gtk2/PKGBUILD | 88 ---------- community/ruby-gtk3/PKGBUILD | 50 ------ community/squashfs-tools/PKGBUILD | 8 +- community/tesseract-game/PKGBUILD | 46 ++++++ community/tesseract-game/tesseract.sh | 6 + community/tork/PKGBUILD | 63 -------- community/tork/fix_getuid.patch | 23 --- community/tork/fix_net_port.patch | 20 --- community/tork/tork.install | 12 -- community/uwsgi/PKGBUILD | 17 +- community/vyqchat/PKGBUILD | 33 ---- community/vyqchat/build-fix.patch | 36 ----- community/xdebug/PKGBUILD | 6 +- 45 files changed, 146 insertions(+), 1217 deletions(-) delete mode 100644 community/avifile/PKGBUILD delete mode 100644 community/avifile/gcc.patch delete mode 100644 community/avifile/videodev.patch delete mode 100644 community/kleansweep/ChangeLog delete mode 100644 community/kleansweep/PKGBUILD delete mode 100644 community/kleansweep/kubuntu_03_fix_scons_chmod_error.patch delete mode 100644 community/kovpn/ChangeLog delete mode 100644 community/kovpn/PKGBUILD delete mode 100644 community/kovpn/kovpn.install delete mode 100644 community/ktechlab/PKGBUILD delete mode 100644 community/madman/PKGBUILD delete mode 100644 community/madman/fake-g++.sh delete mode 100644 community/mandvd/PKGBUILD delete mode 100644 community/mandvd/mandvd.changelog delete mode 100644 community/mingw-w64-binutils/binutils-2.23.2-texinfo-5.0.patch.txt delete mode 100644 community/ruby-gtk2/PKGBUILD delete mode 100644 community/ruby-gtk3/PKGBUILD create mode 100644 community/tesseract-game/PKGBUILD create mode 100644 community/tesseract-game/tesseract.sh delete mode 100644 community/tork/PKGBUILD delete mode 100644 community/tork/fix_getuid.patch delete mode 100644 community/tork/fix_net_port.patch delete mode 100644 community/tork/tork.install delete mode 100644 community/vyqchat/PKGBUILD delete mode 100644 community/vyqchat/build-fix.patch (limited to 'community') diff --git a/community/avifile/PKGBUILD b/community/avifile/PKGBUILD deleted file mode 100644 index 07d7531f2..000000000 --- a/community/avifile/PKGBUILD +++ /dev/null @@ -1,46 +0,0 @@ -# $Id: PKGBUILD 99690 2013-10-30 23:02:52Z allan $ -# Maintainer: Sergej Pupykin -# Maintainer: tobias -# Contributor: Tom Newsom - -pkgname=avifile -pkgver=0.7.45 -pkgrel=9 -pkgdesc="A library that allows you to read and write compressed AVI files" -arch=('i686' 'x86_64') -depends=('qt3' 'sdl' 'freetype2' 'libpng' 'libjpeg' - 'libvorbis' 'xvidcore' 'libxxf86dga' 'libxi' 'libxv') -makedepends=('lame' 'v4l-utils' 'chrpath') -url="http://avifile.sourceforge.net" -license=('GPL') -source=("http://downloads.sourceforge.net/sourceforge/avifile/$pkgname-0.7-$pkgver.tar.bz2" - 'gcc.patch' - 'videodev.patch') -md5sums=('7da94802f120d1b69e04a13170dcd21d' - '79a488db80c82f0abb8a83f52e3b3aa0' - '6cca050885afe85c2d98982f75f5e3b0') - -build() { - cd $pkgname-0.7-$pkgver - - patch -Np1 <$srcdir/gcc.patch - patch -Np1 <$srcdir/videodev.patch - - ./configure \ - --prefix=/usr \ - --mandir=$pkgdir/usr/share/man \ - --with-qt-prefix=/usr \ - --with-qt-includes=/usr/include/qt3 \ - --with-qt-libraries=/usr/lib \ - --enable-oss - - make -} - -package() { - cd $pkgname-0.7-$pkgver - make prefix=$pkgdir/usr install - - cd $pkgdir/usr/bin - chrpath -d avibench avicap avicat avirec kv4lsetup avimake aviplay avitype avirecompress -} diff --git a/community/avifile/gcc.patch b/community/avifile/gcc.patch deleted file mode 100644 index 078b4ae81..000000000 --- a/community/avifile/gcc.patch +++ /dev/null @@ -1,145 +0,0 @@ -diff -wbBur avifile-0.7-0.7.45/avifile.pc avifile-0.7-0.7.45.my/avifile.pc ---- avifile-0.7-0.7.45/avifile.pc 2006-03-06 12:12:26.000000000 +0300 -+++ avifile-0.7-0.7.45.my/avifile.pc 2009-05-25 13:10:17.347697640 +0400 -@@ -1,4 +1,4 @@ --prefix=/var/tmp/avi6 -+prefix=/usr - exec_prefix=${prefix} - libdir=${exec_prefix}/lib - includedir=${prefix}/include/avifile-0.7 -diff -wbBur avifile-0.7-0.7.45/include/avm_map.h avifile-0.7-0.7.45.my/include/avm_map.h ---- avifile-0.7-0.7.45/include/avm_map.h 2004-02-19 14:39:56.000000000 +0300 -+++ avifile-0.7-0.7.45.my/include/avm_map.h 2009-05-25 13:10:21.014364635 +0400 -@@ -45,7 +45,7 @@ - - template struct binary_tree_node - { -- avm_map::pair* entry; -+ struct pair* entry; - binary_tree_node* left; - Key1 minval; - binary_tree_node* right; -diff -wbBur avifile-0.7-0.7.45/include/version.h avifile-0.7-0.7.45.my/include/version.h ---- avifile-0.7-0.7.45/include/version.h 2006-03-06 12:12:25.000000000 +0300 -+++ avifile-0.7-0.7.45.my/include/version.h 2009-05-25 13:10:16.841030758 +0400 -@@ -3,5 +3,5 @@ - #define AVIFILE_MINOR_VERSION 7 - #define AVIFILE_PATCHLEVEL 45 - #define AVIFILE_VERSION ((AVIFILE_MAJOR_VERSION << 16) + (AVIFILE_MINOR_VERSION << 8) + AVIFILE_PATCHLEVEL) --#define AVIFILE_BUILD "CVS-0.7.45-060306-10:11-4.0.3" -+#define AVIFILE_BUILD "RELEASE-0.7.45-090525-13:10-4.4.0" - #endif -diff -wbBur avifile-0.7-0.7.45/lib/aviplay/aviplay.cpp avifile-0.7-0.7.45.my/lib/aviplay/aviplay.cpp ---- avifile-0.7-0.7.45/lib/aviplay/aviplay.cpp 2005-11-05 00:56:33.000000000 +0300 -+++ avifile-0.7-0.7.45.my/lib/aviplay/aviplay.cpp 2009-05-25 13:13:36.304347364 +0400 -@@ -242,7 +242,7 @@ - //printf("VSTREAMTIME %f\n", m_pVideostream->GetTime()); - // reading subtitles - avm::string fn = m_Filename; -- char* p = strrchr(fn.c_str(), '.'); -+ char* p = (char*)strrchr(fn.c_str(), '.'); - if (p) - *p = 0; - InitSubtitles(m_Subfilename.size() -diff -wbBur avifile-0.7-0.7.45/lib/codeckeeper.cpp avifile-0.7-0.7.45.my/lib/codeckeeper.cpp ---- avifile-0.7-0.7.45/lib/codeckeeper.cpp 2004-03-10 16:27:38.000000000 +0300 -+++ avifile-0.7-0.7.45.my/lib/codeckeeper.cpp 2009-05-25 13:15:11.971004390 +0400 -@@ -143,7 +143,7 @@ - { - char plgn[100]; - strcpy(plgn, "avm_codec_plugin_"); -- char* x = strrchr(name, '/'); -+ char* x = (char*)strrchr(name, '/'); - strncat(plgn, x + 1, 50); - x = strchr(plgn, '.'); - *x = 0; -diff -wbBur avifile-0.7-0.7.45/lib/common/Args.cpp avifile-0.7-0.7.45.my/lib/common/Args.cpp ---- avifile-0.7-0.7.45/lib/common/Args.cpp 2003-02-06 23:39:12.000000000 +0300 -+++ avifile-0.7-0.7.45.my/lib/common/Args.cpp 2009-05-25 13:14:38.562055811 +0400 -@@ -17,7 +17,7 @@ - { - char* c = cp; - char* b; -- while ((b = strchr(c, ':'))) -+ while ((b = (char*)strchr(c, ':'))) - { - *b++ = 0; - if (strlen(c)) -@@ -259,7 +259,7 @@ - } - for (unsigned i = 0; i < arr.size(); i++) - { -- char* par = strchr(arr[i], '='); -+ char* par = (char*)strchr(arr[i], '='); - if (par) - { - *par = 0; -@@ -335,7 +335,7 @@ - { - for (unsigned j = 1; j < arr.size(); j++) - { -- char* p = strchr(arr[j].c_str(), '='); -+ char* p = (char*)strchr(arr[j].c_str(), '='); - int val = 0; - bool valid = false; - if (p) -diff -wbBur avifile-0.7-0.7.45/player/playercontrol.cpp avifile-0.7-0.7.45.my/player/playercontrol.cpp ---- avifile-0.7-0.7.45/player/playercontrol.cpp 2005-09-27 17:40:09.000000000 +0400 -+++ avifile-0.7-0.7.45.my/player/playercontrol.cpp 2009-05-25 13:16:18.274330659 +0400 -@@ -764,7 +764,7 @@ - return; - - avm::string path = RS("url", "."); -- char* cut = strrchr(path.c_str(), '/'); -+ char* cut = (char*)strrchr(path.c_str(), '/'); - if (!cut) - path = "./"; - #if QT_VERSION <= 220 -diff -wbBur avifile-0.7-0.7.45/plugins/libmp3lame_audioenc/mp3encoder.cpp avifile-0.7-0.7.45.my/plugins/libmp3lame_audioenc/mp3encoder.cpp ---- avifile-0.7-0.7.45/plugins/libmp3lame_audioenc/mp3encoder.cpp 2006-03-05 23:45:26.000000000 +0300 -+++ avifile-0.7-0.7.45.my/plugins/libmp3lame_audioenc/mp3encoder.cpp 2009-05-25 13:10:21.014364635 +0400 -@@ -30,7 +30,7 @@ - short nCodecDelay; - }; - public: -- MP3Encoder::MP3Encoder(const CodecInfo& info, const WAVEFORMATEX* format) -+ MP3Encoder(const CodecInfo& info, const WAVEFORMATEX* format) - :IAudioEncoder(info) - { - in_fmt=*format; -diff -wbBur avifile-0.7-0.7.45/samples/qtvidcap/kv4lsetup.cpp avifile-0.7-0.7.45.my/samples/qtvidcap/kv4lsetup.cpp ---- avifile-0.7-0.7.45/samples/qtvidcap/kv4lsetup.cpp 2005-03-23 18:18:21.000000000 +0300 -+++ avifile-0.7-0.7.45.my/samples/qtvidcap/kv4lsetup.cpp 2009-05-25 13:10:21.014364635 +0400 -@@ -229,7 +229,7 @@ - if (XF86DGAQueryExtension(dpy, &foo, &bar)) { - XF86DGAQueryDirectVideo(dpy, XDefaultScreen(dpy),&flags); - if (flags & XF86DGADirectPresent) { -- XF86DGAGetVideoLL(dpy,XDefaultScreen(dpy),(int*)&base,&width,&foo,&bar); -+ XF86DGAGetVideoLL(dpy,XDefaultScreen(dpy),(unsigned int*)&base,&width,&foo,&bar); - set_bpl = width * set_bpp/8; - set_base = base; - if (verbose == 2) { -diff -wbBur avifile-0.7-0.7.45/samples/qtvidcap/v4lxif.cpp avifile-0.7-0.7.45.my/samples/qtvidcap/v4lxif.cpp ---- avifile-0.7-0.7.45/samples/qtvidcap/v4lxif.cpp 2005-03-23 19:16:09.000000000 +0300 -+++ avifile-0.7-0.7.45.my/samples/qtvidcap/v4lxif.cpp 2009-05-25 13:10:21.014364635 +0400 -@@ -1115,7 +1115,7 @@ - major,minor, XDGA_MAJOR_VERSION,XDGA_MINOR_VERSION); - have_dga= false; - } else { -- XF86DGAGetVideoLL(disp, DefaultScreen(disp), (int*)&base, &width, &bank, &ram); -+ XF86DGAGetVideoLL(disp, DefaultScreen(disp), (unsigned int*)&base, &width, &bank, &ram); - if (!base) - avml(AVML_WARN, - "v4l1: can not allocate frame buffer base: %p\n", base); -diff -wbBur avifile-0.7-0.7.45/lib/aviread/AsfNetworkInputStream.cpp avifile-0.7-0.7.45.my/lib/aviread/AsfNetworkInputStream.cpp ---- avifile-0.7-0.7.45.org/lib/aviread/AsfNetworkInputStream.cpp 2004-10-25 14:15:38.000000000 +0400 -+++ avifile-0.7-0.7.45/lib/aviread/AsfNetworkInputStream.cpp 2012-08-28 13:26:33.000000000 +0400 -@@ -937,7 +937,7 @@ - } - - asf_packet* p; -- unsigned short& size = chhdr.size; -+ uint16_t size = chhdr.size; - //printf("STREAMPACKET 0x%x sz:%d %lld seq:%d part:%d sc:%d\n", chhdr.kind, size, rsize, chhdr.seq, chhdr.partflag, chhdr.size_confirm); - switch (chhdr.kind) - { diff --git a/community/avifile/videodev.patch b/community/avifile/videodev.patch deleted file mode 100644 index 0729c8ab9..000000000 --- a/community/avifile/videodev.patch +++ /dev/null @@ -1,180 +0,0 @@ -diff -wbBur avifile-0.7-0.7.45/acinclude.m4 avifile-0.7-0.7.45.my/acinclude.m4 ---- avifile-0.7-0.7.45/acinclude.m4 2006-03-06 12:11:19.000000000 +0300 -+++ avifile-0.7-0.7.45.my/acinclude.m4 2011-11-17 13:20:52.000000000 +0400 -@@ -1158,7 +1158,7 @@ - AC_ARG_ENABLE(v4l, [ --enable-v4l support v4l video interface. (autodetect)], - [], enable_v4l=yes) - if test x$enable_v4l = xyes; then -- AC_CHECK_HEADER([linux/videodev.h], [], [ enable_v4l=no; ]) -+ AC_CHECK_HEADER([libv4l1-videodev.h], [], [ enable_v4l=no; ]) - fi - - if test x$enable_v4l = xyes; then -diff -wbBur avifile-0.7-0.7.45/configure avifile-0.7-0.7.45.my/configure ---- avifile-0.7-0.7.45/configure 2006-03-06 12:11:32.000000000 +0300 -+++ avifile-0.7-0.7.45.my/configure 2011-11-17 13:20:47.000000000 +0400 -@@ -27667,8 +27667,8 @@ - fi; - if test x$enable_v4l = xyes; then - if test "${ac_cv_header_linux_videodev_h+set}" = set; then -- echo "$as_me:$LINENO: checking for linux/videodev.h" >&5 --echo $ECHO_N "checking for linux/videodev.h... $ECHO_C" >&6 -+ echo "$as_me:$LINENO: checking for libv4l1-videodev.h" >&5 -+echo $ECHO_N "checking for libv4l1-videodev.h... $ECHO_C" >&6 - if test "${ac_cv_header_linux_videodev_h+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 - fi -@@ -27676,8 +27676,8 @@ - echo "${ECHO_T}$ac_cv_header_linux_videodev_h" >&6 - else - # Is the header compilable? --echo "$as_me:$LINENO: checking linux/videodev.h usability" >&5 --echo $ECHO_N "checking linux/videodev.h usability... $ECHO_C" >&6 -+echo "$as_me:$LINENO: checking libv4l1-videodev.h usability" >&5 -+echo $ECHO_N "checking libv4l1-videodev.h usability... $ECHO_C" >&6 - cat >conftest.$ac_ext <<_ACEOF - /* confdefs.h. */ - _ACEOF -@@ -27685,7 +27685,7 @@ - cat >>conftest.$ac_ext <<_ACEOF - /* end confdefs.h. */ - $ac_includes_default --#include -+#include - _ACEOF - rm -f conftest.$ac_objext - if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 -@@ -27720,15 +27720,15 @@ - echo "${ECHO_T}$ac_header_compiler" >&6 - - # Is the header present? --echo "$as_me:$LINENO: checking linux/videodev.h presence" >&5 --echo $ECHO_N "checking linux/videodev.h presence... $ECHO_C" >&6 -+echo "$as_me:$LINENO: checking libv4l1-videodev.h presence" >&5 -+echo $ECHO_N "checking libv4l1-videodev.h presence... $ECHO_C" >&6 - cat >conftest.$ac_ext <<_ACEOF - /* confdefs.h. */ - _ACEOF - cat confdefs.h >>conftest.$ac_ext - cat >>conftest.$ac_ext <<_ACEOF - /* end confdefs.h. */ --#include -+#include - _ACEOF - if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 - (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 -@@ -27762,25 +27762,25 @@ - # So? What about this header? - case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in - yes:no: ) -- { echo "$as_me:$LINENO: WARNING: linux/videodev.h: accepted by the compiler, rejected by the preprocessor!" >&5 --echo "$as_me: WARNING: linux/videodev.h: accepted by the compiler, rejected by the preprocessor!" >&2;} -- { echo "$as_me:$LINENO: WARNING: linux/videodev.h: proceeding with the compiler's result" >&5 --echo "$as_me: WARNING: linux/videodev.h: proceeding with the compiler's result" >&2;} -+ { echo "$as_me:$LINENO: WARNING: libv4l1-videodev.h: accepted by the compiler, rejected by the preprocessor!" >&5 -+echo "$as_me: WARNING: libv4l1-videodev.h: accepted by the compiler, rejected by the preprocessor!" >&2;} -+ { echo "$as_me:$LINENO: WARNING: libv4l1-videodev.h: proceeding with the compiler's result" >&5 -+echo "$as_me: WARNING: libv4l1-videodev.h: proceeding with the compiler's result" >&2;} - ac_header_preproc=yes - ;; - no:yes:* ) -- { echo "$as_me:$LINENO: WARNING: linux/videodev.h: present but cannot be compiled" >&5 --echo "$as_me: WARNING: linux/videodev.h: present but cannot be compiled" >&2;} -- { echo "$as_me:$LINENO: WARNING: linux/videodev.h: check for missing prerequisite headers?" >&5 --echo "$as_me: WARNING: linux/videodev.h: check for missing prerequisite headers?" >&2;} -- { echo "$as_me:$LINENO: WARNING: linux/videodev.h: see the Autoconf documentation" >&5 --echo "$as_me: WARNING: linux/videodev.h: see the Autoconf documentation" >&2;} -- { echo "$as_me:$LINENO: WARNING: linux/videodev.h: section \"Present But Cannot Be Compiled\"" >&5 --echo "$as_me: WARNING: linux/videodev.h: section \"Present But Cannot Be Compiled\"" >&2;} -- { echo "$as_me:$LINENO: WARNING: linux/videodev.h: proceeding with the preprocessor's result" >&5 --echo "$as_me: WARNING: linux/videodev.h: proceeding with the preprocessor's result" >&2;} -- { echo "$as_me:$LINENO: WARNING: linux/videodev.h: in the future, the compiler will take precedence" >&5 --echo "$as_me: WARNING: linux/videodev.h: in the future, the compiler will take precedence" >&2;} -+ { echo "$as_me:$LINENO: WARNING: libv4l1-videodev.h: present but cannot be compiled" >&5 -+echo "$as_me: WARNING: libv4l1-videodev.h: present but cannot be compiled" >&2;} -+ { echo "$as_me:$LINENO: WARNING: libv4l1-videodev.h: check for missing prerequisite headers?" >&5 -+echo "$as_me: WARNING: libv4l1-videodev.h: check for missing prerequisite headers?" >&2;} -+ { echo "$as_me:$LINENO: WARNING: libv4l1-videodev.h: see the Autoconf documentation" >&5 -+echo "$as_me: WARNING: libv4l1-videodev.h: see the Autoconf documentation" >&2;} -+ { echo "$as_me:$LINENO: WARNING: libv4l1-videodev.h: section \"Present But Cannot Be Compiled\"" >&5 -+echo "$as_me: WARNING: libv4l1-videodev.h: section \"Present But Cannot Be Compiled\"" >&2;} -+ { echo "$as_me:$LINENO: WARNING: libv4l1-videodev.h: proceeding with the preprocessor's result" >&5 -+echo "$as_me: WARNING: libv4l1-videodev.h: proceeding with the preprocessor's result" >&2;} -+ { echo "$as_me:$LINENO: WARNING: libv4l1-videodev.h: in the future, the compiler will take precedence" >&5 -+echo "$as_me: WARNING: libv4l1-videodev.h: in the future, the compiler will take precedence" >&2;} - ( - cat <<\_ASBOX - ## ------------------------------------------ ## -@@ -27791,8 +27791,8 @@ - sed "s/^/$as_me: WARNING: /" >&2 - ;; - esac --echo "$as_me:$LINENO: checking for linux/videodev.h" >&5 --echo $ECHO_N "checking for linux/videodev.h... $ECHO_C" >&6 -+echo "$as_me:$LINENO: checking for libv4l1-videodev.h" >&5 -+echo $ECHO_N "checking for libv4l1-videodev.h... $ECHO_C" >&6 - if test "${ac_cv_header_linux_videodev_h+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 - else -diff -wbBur avifile-0.7-0.7.45/ffmpeg/libavformat/grab.c avifile-0.7-0.7.45.my/ffmpeg/libavformat/grab.c ---- avifile-0.7-0.7.45/ffmpeg/libavformat/grab.c 2006-02-04 11:57:34.000000000 +0300 -+++ avifile-0.7-0.7.45.my/ffmpeg/libavformat/grab.c 2011-11-17 13:21:12.000000000 +0400 -@@ -23,7 +23,7 @@ - #include - #include - #define _LINUX_TIME_H 1 --#include -+#include - #include - - typedef struct { -diff -wbBur avifile-0.7-0.7.45/ffmpeg/libavformat/v4l2.c avifile-0.7-0.7.45.my/ffmpeg/libavformat/v4l2.c ---- avifile-0.7-0.7.45/ffmpeg/libavformat/v4l2.c 2006-03-02 00:36:52.000000000 +0300 -+++ avifile-0.7-0.7.45.my/ffmpeg/libavformat/v4l2.c 2011-11-17 13:29:40.000000000 +0400 -@@ -31,7 +31,8 @@ - #include - #include - #define _LINUX_TIME_H 1 --#include -+#include -+#include - #include - - static const int desired_video_buffers = 256; -diff -wbBur avifile-0.7-0.7.45/m4/v4l.m4 avifile-0.7-0.7.45.my/m4/v4l.m4 ---- avifile-0.7-0.7.45/m4/v4l.m4 2004-02-18 23:53:58.000000000 +0300 -+++ avifile-0.7-0.7.45.my/m4/v4l.m4 2011-11-17 13:20:56.000000000 +0400 -@@ -10,7 +10,7 @@ - AC_ARG_ENABLE(v4l, [ --enable-v4l support v4l video interface. (autodetect)], - [], enable_v4l=yes) - if test x$enable_v4l = xyes; then -- AC_CHECK_HEADER([linux/videodev.h], [], [ enable_v4l=no; ]) -+ AC_CHECK_HEADER([libv4l1-videodev.h], [], [ enable_v4l=no; ]) - fi - - if test x$enable_v4l = xyes; then -diff -wbBur avifile-0.7-0.7.45/samples/qtvidcap/kv4lsetup.cpp avifile-0.7-0.7.45.my/samples/qtvidcap/kv4lsetup.cpp ---- avifile-0.7-0.7.45/samples/qtvidcap/kv4lsetup.cpp 2005-03-23 18:18:21.000000000 +0300 -+++ avifile-0.7-0.7.45.my/samples/qtvidcap/kv4lsetup.cpp 2011-11-17 13:29:34.000000000 +0400 -@@ -39,7 +39,7 @@ - - /* Necessary to prevent collisions between and when V4L2 is installed. */ - #define _LINUX_TIME_H --#include -+#include - - #ifndef X_DISPLAY_MISSING - #include -diff -wbBur avifile-0.7-0.7.45/samples/qtvidcap/v4lxif.h avifile-0.7-0.7.45.my/samples/qtvidcap/v4lxif.h ---- avifile-0.7-0.7.45/samples/qtvidcap/v4lxif.h 2003-11-14 19:42:04.000000000 +0300 -+++ avifile-0.7-0.7.45.my/samples/qtvidcap/v4lxif.h 2011-11-17 13:35:57.000000000 +0400 -@@ -32,7 +32,8 @@ - - /* Necessary to prevent collisions between and when V4L2 is installed. */ - #define _LINUX_TIME_H --#include -+#include -+#define BASE_VIDIOCPRIVATE 192 /* 192-255 are private */ - - #define V4L_DEVICE "/dev/video" - #define V4L_VBI_DEVICE "/dev/vbi" diff --git a/community/delegate/PKGBUILD b/community/delegate/PKGBUILD index e9b4f9a87..cd9621cff 100644 --- a/community/delegate/PKGBUILD +++ b/community/delegate/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 91876 2013-05-28 17:59:23Z spupykin $ +# $Id: PKGBUILD 111221 2014-05-15 14:30:26Z spupykin $ # Maintainer: Sergej Pupykin # Contributor: Sergej Pupykin pkgname=delegate -pkgver=9.9.7 -pkgrel=3 +pkgver=9.9.8 +pkgrel=1 pkgdesc="Caching and converting multyprotocol proxy. For example, you may use it as NNTP web interface" arch=('i686' 'x86_64') url="http://www.delegate.org/" @@ -13,7 +13,7 @@ depends=('pam') options=(!strip) install=delegate.install source=(ftp://ftp:ps790809%40inbox%2Eru@ftp.delegate.org/pub/DeleGate/delegate$pkgver.tar.gz) -md5sums=('86c833e95cd16a54d54fa3c7e4ab7929') +md5sums=('db78957f3a8183a4df6cd047984d5900') build() { cd $srcdir/$pkgname$pkgver diff --git a/community/freeradius/PKGBUILD b/community/freeradius/PKGBUILD index 9b8855c66..45a4e1f29 100644 --- a/community/freeradius/PKGBUILD +++ b/community/freeradius/PKGBUILD @@ -1,11 +1,11 @@ -# $Id: PKGBUILD 108978 2014-04-08 15:15:47Z thestinger $ +# $Id: PKGBUILD 111175 2014-05-15 14:13:37Z spupykin $ # Maintainer: Sergej Pupykin # Contributor: Jason R Begley (jayray@digitalgoat.com> # Contributor: Daniel Micay pkgname=freeradius -pkgver=3.0.2 -pkgrel=2 +pkgver=3.0.3 +pkgrel=1 pkgdesc="The premier open source RADIUS server" arch=('i686' 'x86_64') url="http://www.freeradius.org/" @@ -18,7 +18,7 @@ install=$pkgname.install source=("ftp://ftp.freeradius.org/pub/radius/freeradius-server-$pkgver.tar.bz2"{,.sig} freeradius.tmpfiles freeradius.service) -md5sums=('c6b25a532e65ce6bfef4f422b7240d4d' +md5sums=('6093be8d2a962035d6b1111789b3447c' 'SKIP' 'f959e89812bedfc9f8308076f78cd74e' 'e3f18e3a25df3b692e59f60605354708') diff --git a/community/gmic/PKGBUILD b/community/gmic/PKGBUILD index 4870394b9..d55cef05b 100644 --- a/community/gmic/PKGBUILD +++ b/community/gmic/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 109898 2014-04-21 10:42:07Z spupykin $ +# $Id: PKGBUILD 111177 2014-05-15 14:13:54Z spupykin $ # Maintainer: Sergej Pupykin # Maintainer: Jan "heftig" Steffens # Contributor: farid @@ -6,14 +6,14 @@ pkgbase=gmic pkgname=("gmic" "gimp-plugin-gmic" "zart") -pkgver=1.5.8.6 +pkgver=1.5.9.0 pkgrel=1 arch=("i686" "x86_64") url="http://gmic.sourceforge.net" license=("custom:CeCILL") makedepends=('gimp' 'qt4' 'fftw' 'openexr' 'opencv' 'mesa' 'gtk2') source=("http://downloads.sourceforge.net/sourceforge/gmic/gmic_${pkgver}.tar.gz") -md5sums=('0df62707961248869477c58f6c7d7605') +md5sums=('b5b64887b48843e47641ebcf146f5ec7') prepare() { cd "${srcdir}/gmic-${pkgver}" diff --git a/community/kdenlive/PKGBUILD b/community/kdenlive/PKGBUILD index 77850f59f..747528c6f 100644 --- a/community/kdenlive/PKGBUILD +++ b/community/kdenlive/PKGBUILD @@ -1,11 +1,11 @@ -# $Id: PKGBUILD 106888 2014-03-09 13:16:31Z andrea $ +# $Id: PKGBUILD 111179 2014-05-15 14:14:12Z spupykin $ # Maintainer: Sergej Pupykin # Contributor: Zuf # Contributor: Darwin Bautista pkgname=kdenlive -pkgver=0.9.6 -pkgrel=4 +pkgver=0.9.8 +pkgrel=1 pkgdesc="A non-linear video editor for Linux" arch=('i686' 'x86_64') # http://download.kde.org/stable/kdenlive/ @@ -20,15 +20,8 @@ optdepends=('recordmydesktop: screen capture' 'cdrkit: dvd iso image creation') install=kdenlive.install options=('docs') -source=(http://download.kde.org/stable/kdenlive/$pkgver/src/kdenlive-$pkgver.tar.bz2 - "FS37617.patch::http://quickgit.kde.org/?p=kdenlive.git&a=commitdiff&h=d049b327afc02b499266b5c895b13e438490b7c0&o=plain") -md5sums=('3bd3a511b860490acc367e7c9d7ffa43' - '672edd6399a4d5e80937f61547490038') - -prepare() { - cd ${srcdir}/kdenlive-${pkgver} - patch -p1 <$srcdir/FS37617.patch -} +source=(http://download.kde.org/stable/kdenlive/$pkgver/src/kdenlive-$pkgver.tar.bz2) +md5sums=('589801ff79c5819936141abe7e4f44fc') build() { export LDFLAGS="$LDFLAGS -lX11" diff --git a/community/kleansweep/ChangeLog b/community/kleansweep/ChangeLog deleted file mode 100644 index d8e35c402..000000000 --- a/community/kleansweep/ChangeLog +++ /dev/null @@ -1,2 +0,0 @@ -2007-06-25 Georg Grabler (STiAT) -* Added libtool option diff --git a/community/kleansweep/PKGBUILD b/community/kleansweep/PKGBUILD deleted file mode 100644 index c6783590d..000000000 --- a/community/kleansweep/PKGBUILD +++ /dev/null @@ -1,27 +0,0 @@ -# $Id: PKGBUILD 77134 2012-10-05 11:29:08Z spupykin $ -# Maintainer: Sergej Pupykin -# Maintainer: Guillermo A. Amaral - -pkgname=kleansweep -pkgver=0.2.9 -pkgrel=6 -pkgdesc="Allows you to reclaim disk space by finding unneeded files" -license=("GPL") -url="http://linux.bydg.org/~yogin/" -arch=(i686 x86_64) -depends=('kdelibs3') -makedepends=('scons') -options=('libtool') -#source=(http://linux-projects.net/d/kleansweep-$pkgver.tar.gz -source=(http://arch.p5n.pp.ru/~sergej/dl/2011/kleansweep-$pkgver.tar.gz - kubuntu_03_fix_scons_chmod_error.patch) -md5sums=('25fea364644590acd23fe766506e0b92' - 'bebb833313fc184848b5fef77a7cb310') - -build() { - cd $srcdir/$pkgname-$pkgver - [ $NOEXTRACT -eq 1 ] || patch -p1 <$srcdir/kubuntu_03_fix_scons_chmod_error.patch - [ $NOEXTRACT -eq 1 ] || ./configure - scons - scons install DESTDIR=$pkgdir -} diff --git a/community/kleansweep/kubuntu_03_fix_scons_chmod_error.patch b/community/kleansweep/kubuntu_03_fix_scons_chmod_error.patch deleted file mode 100644 index 4e6495016..000000000 --- a/community/kleansweep/kubuntu_03_fix_scons_chmod_error.patch +++ /dev/null @@ -1,23 +0,0 @@ -diff -Nur -x '*.orig' -x '*~' kleansweep-0.2.9/admin/generic.py kleansweep-0.2.9.new/admin/generic.py ---- kleansweep-0.2.9/admin/generic.py 2008-02-15 02:59:29.000000000 +0100 -+++ kleansweep-0.2.9.new/admin/generic.py 2008-02-15 03:00:49.278304972 +0100 -@@ -244,7 +244,8 @@ - ret=self.env.Program(self.p_localtarget, self.p_localsource) - if not self.env.has_key('NOAUTOINSTALL'): - ins=self.env.bksys_install(self.instdir, ret) -- if self.perms: self.env.AddPostAction(ins, self.env.Chmod(ins, self.perms)) -+ if ins and self.perms: -+ for i in ins: self.env.AddPostAction(ins, self.env.Chmod(str(i), self.perms)) - elif self.type=='staticlib': - ret=self.env.StaticLibrary(self.p_localtarget, self.p_localsource) - -@@ -462,7 +463,8 @@ - if not destfile: install_list = env.Install(lenv.join(basedir,subdir), lenv.make_list(files)) - elif subdir: install_list = env.InstallAs(lenv.join(basedir,subdir,destfile), lenv.make_list(files)) - else: install_list = env.InstallAs(lenv.join(basedir,destfile), lenv.make_list(files)) -- if perms and install_list: lenv.AddPostAction(install_list, lenv.Chmod(install_list, perms)) -+ if perms and install_list: -+ for i in install_list: lenv.AddPostAction(install_list, lenv.Chmod(str(i), perms)) - env.Alias('install', install_list) - return install_list - diff --git a/community/kovpn/ChangeLog b/community/kovpn/ChangeLog deleted file mode 100644 index d8e35c402..000000000 --- a/community/kovpn/ChangeLog +++ /dev/null @@ -1,2 +0,0 @@ -2007-06-25 Georg Grabler (STiAT) -* Added libtool option diff --git a/community/kovpn/PKGBUILD b/community/kovpn/PKGBUILD deleted file mode 100644 index ddf9128d6..000000000 --- a/community/kovpn/PKGBUILD +++ /dev/null @@ -1,43 +0,0 @@ -# $Id: PKGBUILD 90051 2013-05-06 19:38:01Z foutrelis $ -# Maintainer: Sergej Pupykin -# Contributor: Douglas Soares de Andrade - -pkgname=kovpn -pkgver=0.3pre7 -_pkgver=0.3.pre7 -pkgrel=7 -pkgdesc="An OpenVPN client management interface for KDE" -arch=('i686' 'x86_64') -url="http://www.kde-apps.org/content/show.php?content=37043" -license=('GPL') -depends=('openvpn' 'kdelibs3' 'xdg-utils') -makedepends=('automake' 'autoconf') -options=('libtool') -install=kovpn.install -DLAGENTS=('ftp::/usr/bin/wget -c --passive-ftp -t 3 --waitretry=3 -O %o %u' - 'http::/usr/bin/wget -c -t 3 --waitretry=3 --no-check-certificate -O %o %u' - 'https::/usr/bin/wget -c -t 3 --waitretry=3 --no-check-certificate -O %o %u') -source=("https://projects.fslab.de/projects/kovpn/chrome/site/kovpn-${_pkgver}.tar.bz2" - "kovpn-disable-dcop.patch::https://bugs.archlinux.org/task/15464?getfile=4173") -md5sums=('19b61cf9f84088baffbd5bb0a287422c' - '21171b74f76289daea1cc61eedaa4dba') - -build() { - cd $srcdir/$pkgname-$_pkgver - - unset LDFLAGS - export QTDIR=/usr - export QMAKESPEC=/usr/share/qt3/mkspecs/linux-g++ - - patch -Np1 -i ../kovpn-disable-dcop.patch - sed -i "s#automake\*1.10\*#automake*`pacman -Q automake | cut -f2 -d\ |cut -f1-2 -d.`*#" admin/cvs.sh - sed -i 's#AM_CONFIG_HEADER#AC_CONFIG_HEADER#g' admin/{cvs.sh,configure.in.min} - make -f admin/Makefile.common cvs - ./configure --prefix=/opt/kde --without-arts --with-qt-dir=/opt/qt - make -} - -package() { - cd $srcdir/$pkgname-$_pkgver - make prefix=$pkgdir/usr install -} diff --git a/community/kovpn/kovpn.install b/community/kovpn/kovpn.install deleted file mode 100644 index b4ee8556f..000000000 --- a/community/kovpn/kovpn.install +++ /dev/null @@ -1,12 +0,0 @@ -post_install() { - which xdg-icon-resource 1>/dev/null 2>/dev/null && xdg-icon-resource forceupdate || true -} - -post_upgrade() { - post_install $1 -} - -post_remove() { - which xdg-icon-resource 1>/dev/null 2>/dev/null && xdg-icon-resource forceupdate || true -} - diff --git a/community/ktechlab/PKGBUILD b/community/ktechlab/PKGBUILD deleted file mode 100644 index ac59910d6..000000000 --- a/community/ktechlab/PKGBUILD +++ /dev/null @@ -1,30 +0,0 @@ -# $Id: PKGBUILD 58604 2011-11-16 15:28:16Z spupykin $ -# Maintainer: JJDaNiMoTh - -pkgname=ktechlab -pkgver=0.3.7 -pkgrel=3 -pkgdesc="IDE for electronic circuits and microcontrollers" -arch=('i686' 'x86_64') -url="http://sourceforge.net/projects/ktechlab" -license=("GPL") -depends=('kdelibs3' 'gputils' 'gpsim') -source=("http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.bz2" - "$pkgname-gcc45.patch::http://patch-tracker.debian.org/patch/series/dl/ktechlab/0.3.7-10/40-gcc-4.5.patch") -md5sums=('8e778ef8ce6d0dd4539f5532c933f6bf' - '126a04255a8288a7ee42fe47a81c0079') - -build() { - . /etc/profile.d/qt3.sh - cd "${srcdir}/${pkgname}-$pkgver" - patch -p1 <$srcdir/$pkgname-gcc45.patch - ./configure --prefix=/opt/kde \ - --disable-debug \ - --without-arts - make -} - -package() { - cd "${srcdir}/${pkgname}-$pkgver" - make DESTDIR="${pkgdir}" install -} diff --git a/community/madman/PKGBUILD b/community/madman/PKGBUILD deleted file mode 100644 index 821b7c1e1..000000000 --- a/community/madman/PKGBUILD +++ /dev/null @@ -1,59 +0,0 @@ -# $Id: PKGBUILD 104837 2014-01-27 10:33:49Z spupykin $ -# Maintainer: Sergej Pupykin -# Maintainer: Eric Belanger -# Contributor: Hugo Ideler -# Contributor: Zsolt Varadi - -pkgname=madman -pkgver=0.94beta1.20080906 -pkgrel=1 -pkgdesc="I-tunes like music player" -arch=('i686' 'x86_64') -url="http://madman.sourceforge.net/" -license=('GPL') -depends=('qt3' 'xmms' 'gtk' 'taglib') -makedepends=('python2' 'scons' 'git') -source=(git+http://git.tiker.net/trees/madman.git - ftp://ftp.archlinux.org/other/community/madman/madman.desktop - ftp://ftp.archlinux.org/other/community/madman/madman_logo.png - ftp://ftp.archlinux.org/other/community/madman/madman_logo_mini.png - ftp://ftp.archlinux.org/other/community/madman/madman_logo_large.png - fake-g++.sh) -md5sums=('SKIP' - '591354b69235d5a4b5a09591d04db266' - 'd4546f77857a6ccdabb2036eb6a0da07' - '2d54bb8eceed283edc88a3e4553d2483' - '3c2da1b1800fb372e225ae38fa1398e8' - '685a6fb13c861b82950dd6a77fd02120') - -prepare() { - cd $srcdir/$pkgname - mkdir -p ,build/release/designer - touch ,build/release/designer/tsonglistview.h \ - ,build/release/designer/tsetlistview.h \ - ,build/release/designer/tclickablelabel.h \ - ,build/release/designer/tacceleratorlineedit.h \ - ,build/release/designer/tsonglistview.h \ - ,build/release/designer/tsetlistview.h - sed -i 's|python|python2|' designer/make_imagedata httpd/make_webdata doc/update_format_tag -} - -build() { - cd $srcdir/$pkgname - echo -e '\n\n' | ./configure - install -m755 $srcdir/fake-g++.sh ./g++ - export PATH=.:$PATH - scons qt_directory=/usr/lib/qt3 add_c_include_dirs=/usr/include/qt3 -} - -package() { - cd $srcdir/$pkgname - - scons qt_directory=/usr/lib/qt3 add_c_include_dirs=/usr/include/qt3 \ - install_to=$pkgdir/usr prefix=/usr install - - install -Dm644 $srcdir/madman_logo.png $pkgdir/usr/share/icons/madman_logo.png - install -Dm644 $srcdir/madman_logo_mini.png $pkgdir/usr/share/icons/mini/madman_logo_mini.png - install -Dm644 $srcdir/madman_logo_large.png $pkgdir/usr/share/icons/large/madman_logo_large.png - install -Dm644 $srcdir/madman.desktop $pkgdir/usr/share/applications/madman.desktop -} diff --git a/community/madman/fake-g++.sh b/community/madman/fake-g++.sh deleted file mode 100644 index af424f5ca..000000000 --- a/community/madman/fake-g++.sh +++ /dev/null @@ -1,5 +0,0 @@ -#!/bin/sh -x - -Q=`echo "$*" | sed 's|- p t h r e a d|-pthread|'` -echo "$Q" | grep 'lmp4ff' && Q="$Q /usr/lib/libmp4ff.a" -exec /usr/bin/g++ $Q diff --git a/community/mandvd/PKGBUILD b/community/mandvd/PKGBUILD deleted file mode 100644 index 3519ac8dd..000000000 --- a/community/mandvd/PKGBUILD +++ /dev/null @@ -1,37 +0,0 @@ -# $Id: PKGBUILD 87997 2013-04-09 21:40:35Z eric $ -# Maintainer: Jaroslav Lichtblau -# Contributor: JJDaNiMoTh -# Contributor: Jesus Lazaro Plaza - -pkgname=mandvd -pkgver=2.6 -pkgrel=2 -pkgdesc="A program to simply create DVD Video" -arch=('i686' 'x86_64') -url="http://www.kde-apps.org/content/show.php/ManDVD?content=83906" -license=('GPL') -depends=('dvd+rw-tools>=5.21.4' 'dvd-slideshow>=0.7.5' 'mjpegtools>=1.8.0' 'mplayer' 'qt3' 'xine-ui>=0.99.4') -changelog=$pkgname.changelog -source=(http://vectorlinux.osuosl.org/veclinux-7.0/source/abs/xap/$pkgname/$pkgname-$pkgver-1.fc12.tar.gz) -sha256sums=('967fd66da31f0619001b3aaea494ab41579ab7ffdc6a1b0a51a4a4add012eb9c') - -build() { - cd ${srcdir}/$pkgname-$pkgver - - qmake-qt3 - sed -i "s|O2|O1|" ./Makefile - sed -i 's|-I$(QTDIR)/include|-I/usr/include/qt3|' Makefile - sed -i '55 i\#include ' main.cpp - sed -i '28 i\#include ' mandvd.cpp - make QTDIR=/usr MOC=/usr/bin/moc-qt3 UIC=/usr/bin/uic-qt3 -} - -package() { - cd ${srcdir}/$pkgname-$pkgver - - install -D -m755 $pkgname ${pkgdir}/usr/bin/$pkgname - -# Creating menu item - install -D -m644 mandvdico.png ${pkgdir}/usr/share/pixmaps/$pkgname.png - install -D -m644 $pkgname.desktop ${pkgdir}/usr/share/applications/$pkgname.desktop -} diff --git a/community/mandvd/mandvd.changelog b/community/mandvd/mandvd.changelog deleted file mode 100644 index 90b4038b0..000000000 --- a/community/mandvd/mandvd.changelog +++ /dev/null @@ -1,10 +0,0 @@ -2012-02-21 Jaroslav Lichtblau - * mandvd 2.6-2 - * package signed and FS#27067 fixed - -2010-08-29 Jaroslav Lichtblau - * mandvd 2.6-1 - * new upstream release - -2009-04-29 Jaroslav Lichtblau - * Update to major release 2.5 diff --git a/community/mcabber/PKGBUILD b/community/mcabber/PKGBUILD index adb1067cd..27e6363d2 100644 --- a/community/mcabber/PKGBUILD +++ b/community/mcabber/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 99907 2013-10-31 02:24:20Z allan $ +# $Id: PKGBUILD 111181 2014-05-15 14:14:31Z spupykin $ # Maintainer: Sergej Pupykin # Maintainer: Thorsten Töpper # Contributor: 3ED pkgname=mcabber -pkgver=0.10.2 +pkgver=0.10.3 pkgrel=1 pkgdesc="A small Jabber console client, includes features: SSL, PGP, MUC, UTF8" arch=('i686' 'x86_64') @@ -13,7 +13,7 @@ license=('GPL') depends=('ncurses' 'glib2' 'loudmouth' 'gpgme' 'libotr3' 'aspell') makedepends=('pkg-config') source=(http://www.lilotux.net/~mikael/mcabber/files/$pkgname-${pkgver/_/-}.tar.bz2) -md5sums=('6bb2302f5168ad4c28b647390e37f9b3') +md5sums=('f6b0a075ba678de15af0129653a553da') build() { cd "${srcdir}"/$pkgname-${pkgver/_/-} diff --git a/community/mediaproxy/PKGBUILD b/community/mediaproxy/PKGBUILD index a55cffb5e..fc09c4561 100644 --- a/community/mediaproxy/PKGBUILD +++ b/community/mediaproxy/PKGBUILD @@ -1,9 +1,9 @@ -# $Id: PKGBUILD 107384 2014-03-17 09:31:23Z spupykin $ +# $Id: PKGBUILD 111231 2014-05-15 14:32:13Z spupykin $ # Maintainer: Sergej Pupykin # Contributor: Colin Pitrat pkgname=mediaproxy -pkgver=2.6.0 +pkgver=2.6.1 pkgrel=1 pkgdesc="Open-source media proxy for OpenSER" url="http://mediaproxy.ag-projects.com/" @@ -16,7 +16,7 @@ source=("http://download.ag-projects.com/MediaProxy/mediaproxy-$pkgver.tar.gz" "mediaproxy-dispatcher.service" "mediaproxy-relay.service" "mediaproxy.tmpfiles") -md5sums=('726610cf1ee4a3a9855b8cd6adf85502' +md5sums=('72443d6137c77c3c9cd446ca98ec5d21' '4a1fa0b6ce0a8bd44bf0f1d9d36a6154' '23c1a584835de00a958ef963cdd40040' '60a25f2cb6429a0a7d62d45d0c75a0ea') diff --git a/community/mingw-w64-binutils/PKGBUILD b/community/mingw-w64-binutils/PKGBUILD index 28ba518b0..a377f7fc6 100644 --- a/community/mingw-w64-binutils/PKGBUILD +++ b/community/mingw-w64-binutils/PKGBUILD @@ -1,12 +1,12 @@ -# $Id: PKGBUILD 104091 2014-01-15 13:38:18Z spupykin $ +# $Id: PKGBUILD 111257 2014-05-15 15:10:10Z spupykin $ # Maintainer: Sergej Pupykin # Maintainer: rubenvb vanboxem ruben gmail com _targets="i686-w64-mingw32 x86_64-w64-mingw32" pkgname=mingw-w64-binutils -pkgver=2.23.2 -pkgrel=3 +pkgver=2.24 +pkgrel=1 pkgdesc="Cross binutils for the MinGW-w64 cross-compiler" arch=('i686' 'x86_64') url="http://www.gnu.org/software/binutils" @@ -14,20 +14,11 @@ license=('GPL') groups=('mingw-w64-toolchain' 'mingw-w64') depends=('zlib') options=('!libtool' '!emptydirs') -source=("http://ftp.gnu.org/gnu/binutils/binutils-${pkgver}.tar.gz" - "windres.patch::https://bugs.archlinux.org/task/38111?getfile=11313" - "binutils-2.23.2-texinfo-5.0.patch.txt") -md5sums=('cda9dcc08c86ff2fd3f27e4adb250f6f' - '2b653bdfd2ddda9ff36b4695b2d9bc8c' - '34e439ce23213a91e2af872dfbb5094c') +source=("http://ftp.gnu.org/gnu/binutils/binutils-${pkgver}.tar.gz") +md5sums=('a5dd5dd2d212a282cc1d4a84633e0d88') prepare() { cd ${srcdir}/binutils-${pkgver} - # http://sourceware.org/git/?p=binutils.git;a=patch;h=e02bf935 - # http://sourceware.org/git/?p=binutils.git;a=patch;h=935f8542 - patch -p1 -i ${srcdir}/binutils-2.23.2-texinfo-5.0.patch.txt - patch -p1 -i ${srcdir}/windres.patch - #do not install libiberty sed -i 's/install_to_$(INSTALL_DEST) //' libiberty/Makefile.in # hack! - libiberty configure tests for header files using "$CPP $CPPFLAGS" @@ -42,7 +33,8 @@ build() { --target=${_target} \ --infodir=/usr/share/info/${_target} \ --enable-lto --enable-plugins \ - --disable-multilib --disable-nls + --disable-multilib --disable-nls \ + --disable-werror make done } diff --git a/community/mingw-w64-binutils/binutils-2.23.2-texinfo-5.0.patch.txt b/community/mingw-w64-binutils/binutils-2.23.2-texinfo-5.0.patch.txt deleted file mode 100644 index 38dc19fb0..000000000 --- a/community/mingw-w64-binutils/binutils-2.23.2-texinfo-5.0.patch.txt +++ /dev/null @@ -1,162 +0,0 @@ -diff --git a/bfd/doc/bfd.texinfo b/bfd/doc/bfd.texinfo -index 45ffa73..3aa3300 100644 ---- a/bfd/doc/bfd.texinfo -+++ b/bfd/doc/bfd.texinfo -@@ -322,7 +324,7 @@ All of BFD lives in one directory. - @printindex cp - - @tex --% I think something like @colophon should be in texinfo. In the -+% I think something like @@colophon should be in texinfo. In the - % meantime: - \long\def\colophon{\hbox to0pt{}\vfill - \centerline{The body of this manual is set in} -@@ -333,7 +335,7 @@ All of BFD lives in one directory. - \centerline{{\sl\fontname\tensl\/}} - \centerline{are used for emphasis.}\vfill} - \page\colophon --% Blame: doc@cygnus.com, 28mar91. -+% Blame: doc@@cygnus.com, 28mar91. - @end tex - - @bye -diff --git a/binutils/doc/binutils.texi b/binutils/doc/binutils.texi -index 56a0510..fb1802b 100644 ---- a/binutils/doc/binutils.texi -+++ b/binutils/doc/binutils.texi -@@ -148,18 +148,18 @@ in the section entitled ``GNU Free Documentation License''. - * objcopy:: Copy and translate object files - * objdump:: Display information from object files - * ranlib:: Generate index to archive contents --* readelf:: Display the contents of ELF format files - * size:: List section sizes and total size - * strings:: List printable strings from files - * strip:: Discard symbols --* elfedit:: Update the ELF header of ELF files - * c++filt:: Filter to demangle encoded C++ symbols - * cxxfilt: c++filt. MS-DOS name for c++filt - * addr2line:: Convert addresses to file and line - * nlmconv:: Converts object code into an NLM --* windres:: Manipulate Windows resources - * windmc:: Generator for Windows message resources -+* windres:: Manipulate Windows resources - * dlltool:: Create files needed to build and use DLLs -+* readelf:: Display the contents of ELF format files -+* elfedit:: Update the ELF header of ELF files - * Common Options:: Command-line options for all utilities - * Selecting the Target System:: How these utilities determine the target - * Reporting Bugs:: Reporting Bugs -@@ -2907,7 +2907,7 @@ the Info entries for @file{binutils}. - @c man end - @end ignore - --@node c++filt, addr2line, elfedit, Top -+@node c++filt, addr2line, strip, Top - @chapter c++filt - - @kindex c++filt -@@ -4384,7 +4384,7 @@ equivalent. At least one of the @option{--output-mach}, - - @table @env - --@itemx --input-mach=@var{machine} -+@item --input-mach=@var{machine} - Set the matching input ELF machine type to @var{machine}. If - @option{--input-mach} isn't specified, it will match any ELF - machine types. -@@ -4392,21 +4392,21 @@ machine types. - The supported ELF machine types are, @var{L1OM}, @var{K1OM} and - @var{x86-64}. - --@itemx --output-mach=@var{machine} -+@item --output-mach=@var{machine} - Change the ELF machine type in the ELF header to @var{machine}. The - supported ELF machine types are the same as @option{--input-mach}. - --@itemx --input-type=@var{type} -+@item --input-type=@var{type} - Set the matching input ELF file type to @var{type}. If - @option{--input-type} isn't specified, it will match any ELF file types. - - The supported ELF file types are, @var{rel}, @var{exec} and @var{dyn}. - --@itemx --output-type=@var{type} -+@item --output-type=@var{type} - Change the ELF file type in the ELF header to @var{type}. The - supported ELF types are the same as @option{--input-type}. - --@itemx --input-osabi=@var{osabi} -+@item --input-osabi=@var{osabi} - Set the matching input ELF file OSABI to @var{osabi}. If - @option{--input-osabi} isn't specified, it will match any ELF OSABIs. - -@@ -4416,7 +4416,7 @@ The supported ELF OSABIs are, @var{none}, @var{HPUX}, @var{NetBSD}, - @var{FreeBSD}, @var{TRU64}, @var{Modesto}, @var{OpenBSD}, @var{OpenVMS}, - @var{NSK}, @var{AROS} and @var{FenixOS}. - --@itemx --output-osabi=@var{osabi} -+@item --output-osabi=@var{osabi} - Change the ELF OSABI in the ELF header to @var{osabi}. The - supported ELF OSABI are the same as @option{--input-osabi}. - -diff --git a/ld/ld.texinfo b/ld/ld.texinfo -index c7ae2a5..4777ad5 100644 ---- a/ld/ld.texinfo -+++ b/ld/ld.texinfo -@@ -142,12 +144,12 @@ in the section entitled ``GNU Free Documentation License''. - @ifset ARM - * ARM:: ld and the ARM family - @end ifset --@ifset HPPA --* HPPA ELF32:: ld and HPPA 32-bit ELF --@end ifset - @ifset M68HC11 - * M68HC11/68HC12:: ld and the Motorola 68HC11 and 68HC12 families - @end ifset -+@ifset HPPA -+* HPPA ELF32:: ld and HPPA 32-bit ELF -+@end ifset - @ifset M68K - * M68K:: ld and Motorola 68K family - @end ifset -@@ -6012,6 +6014,9 @@ functionality are not listed. - @ifset I960 - * i960:: @command{ld} and the Intel 960 family - @end ifset -+@ifset M68HC11 -+* M68HC11/68HC12:: @code{ld} and the Motorola 68HC11 and 68HC12 families -+@end ifset - @ifset ARM - * ARM:: @command{ld} and the ARM family - @end ifset -@@ -6027,9 +6032,6 @@ functionality are not listed. - @ifset MSP430 - * MSP430:: @command{ld} and MSP430 - @end ifset --@ifset M68HC11 --* M68HC11/68HC12:: @code{ld} and the Motorola 68HC11 and 68HC12 families --@end ifset - @ifset POWERPC - * PowerPC ELF32:: @command{ld} and PowerPC 32-bit ELF Support - @end ifset -@@ -7877,7 +7879,7 @@ If you have more than one @code{SECT} statement for the same - @printindex cp - - @tex --% I think something like @colophon should be in texinfo. In the -+% I think something like @@colophon should be in texinfo. In the - % meantime: - \long\def\colophon{\hbox to0pt{}\vfill - \centerline{The body of this manual is set in} -@@ -7888,7 +7890,7 @@ If you have more than one @code{SECT} statement for the same - \centerline{{\sl\fontname\tensl\/}} - \centerline{are used for emphasis.}\vfill} - \page\colophon --% Blame: doc@cygnus.com, 28mar91. -+% Blame: doc@@cygnus.com, 28mar91. - @end tex - - @bye --- -1.7.1 - diff --git a/community/miniupnpd/PKGBUILD b/community/miniupnpd/PKGBUILD index 559f9443f..30093b524 100644 --- a/community/miniupnpd/PKGBUILD +++ b/community/miniupnpd/PKGBUILD @@ -1,9 +1,9 @@ -# $Id: PKGBUILD 110046 2014-04-23 15:59:45Z tredaelli $ +# $Id: PKGBUILD 111172 2014-05-15 09:51:25Z tredaelli $ # Maintainer: Timothy Redaelli # Contributor: fauno pkgname=miniupnpd -pkgver=1.8.20140401 -pkgrel=2 +pkgver=1.8.20140422 +pkgrel=1 pkgdesc="Lightweight UPnP IGD daemon" arch=('i686' 'x86_64') url="http://miniupnp.free.fr" @@ -14,7 +14,7 @@ makedepends=('lsb-release') source=("http://miniupnp.free.fr/files/$pkgname-$pkgver.tar.gz" miniupnpd-1.8.20140401-foreground.patch miniupnpd.systemd) -sha256sums=('086dfffa59e8e86e792b73a71d275fec55ef17fe3e94a8c140301aceb05bcdbd' +sha256sums=('2980c7dbcdf00d6942ad21c814d88a3c70996b550a8e229eb52362bd472c3961' '79350f2dbb695b58744aa9036d34a7dfdcfc97cf0f5f3419b86bd9ca58482f8e' 'baac6223eb35729ea301bd658dc2df6aad5396c7c0b1ec15c8aac1803ef37f6a') diff --git a/community/mumble/PKGBUILD b/community/mumble/PKGBUILD index 952dc6e6b..2dcb6aae9 100644 --- a/community/mumble/PKGBUILD +++ b/community/mumble/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 105350 2014-02-05 20:04:46Z bluewind $ +# $Id: PKGBUILD 111165 2014-05-15 02:14:15Z svenstaro $ # Maintainer: Sven-Hendrik Haase # Contributor: Lauri Niskanen # Contributor: Sebastian.Salich@gmx.de @@ -8,7 +8,7 @@ # to the depends and delete "no-g15" in the configure line below pkgname=mumble -pkgver=1.2.5 +pkgver=1.2.6 pkgrel=1 arch=('i686' 'x86_64') pkgdesc="A voice chat application similar to TeamSpeak" @@ -18,8 +18,16 @@ makedepends=('boost' 'mesa') #optdepends=('portaudio: for portaudio back-end' 'g15daemon: G15 Keyboard support') install=mumble.install url="http://mumble.sourceforge.net/" -source=("http://downloads.sourceforge.net/mumble/$pkgname-$pkgver.tar.gz") -md5sums=('084ca44252bd5356b68af555f81ba6f6') +source=("http://downloads.sourceforge.net/mumble/$pkgname-$pkgver.tar.gz" +"gcc49.patch::https://github.com/mumble-voip/mumble/commit/349436284b5f1baa61836c98ff0d518392140c5d.patch") +md5sums=('32b37ff426863d7abeb1b7c1938652ff' + 'ca344e0c4a33f1cbff2de94c60112a45') + +prepare() { + cd $srcdir/$pkgname-$pkgver + + patch -Np1 < $srcdir/gcc49.patch +} build() { cd $srcdir/$pkgname-$pkgver diff --git a/community/openvswitch/PKGBUILD b/community/openvswitch/PKGBUILD index d7f88b1d0..0744a8164 100644 --- a/community/openvswitch/PKGBUILD +++ b/community/openvswitch/PKGBUILD @@ -1,44 +1,27 @@ -# $Id: PKGBUILD 110682 2014-05-05 09:14:44Z spupykin $ +# $Id: PKGBUILD 111252 2014-05-15 14:55:44Z spupykin $ # Maintainer: Sergej Pupykin # Contributor: Pedro Martinez-Julia (pedromj@um.es) # Contributor: Matt Monaco pkgname=openvswitch pkgver=2.1.2 -pkgrel=1 +pkgrel=2 pkgdesc="Production Quality, Multilayer Open Virtual Switch" url="http://openvswitch.org" license=('APACHE') arch=(x86_64 i686) install=openvswitch.install source=("http://openvswitch.org/releases/openvswitch-$pkgver.tar.gz" - openvswitch.install openvswitch.tmpfiles ovsdb-server.service ovs-vswitchd.service) depends=('openssl') makedepends=('python2') optdepends=('python2') -sha256sums=('014907bcf2f98228dfa4472ea1547871d24b8fb8192dcfff3ead1af93c433a67' - '9d30ed859214f4cdeb6b6450d5c5defaf31f2c593c05201109df66fa9373ef0c' - 'e8dc21e50fc886bfd6aa55991bdb3cb66907e11b071045452bb12de01a3ecbd9' - '5900728bca0292ec66e6da234eaa6f32f28ead6bda163d89a480eac08558c657' - 'c2cb5e2685240ea50b1aba4e77784f4dd66d157e7cd05a17853868aa8d8a2a45') -sha256sums=('a032fcc3becd98802b4816488cb3a2441b6b88b510ec28a929e756f948eb48c0' - '9d30ed859214f4cdeb6b6450d5c5defaf31f2c593c05201109df66fa9373ef0c' - 'e8dc21e50fc886bfd6aa55991bdb3cb66907e11b071045452bb12de01a3ecbd9' - '5900728bca0292ec66e6da234eaa6f32f28ead6bda163d89a480eac08558c657' - 'c2cb5e2685240ea50b1aba4e77784f4dd66d157e7cd05a17853868aa8d8a2a45') -sha256sums=('43f228ac145f682a7c6681bae7b9bee004fcdd9d4a4503d87ca65c0e9fe1a04b' - '9d30ed859214f4cdeb6b6450d5c5defaf31f2c593c05201109df66fa9373ef0c' - 'e8dc21e50fc886bfd6aa55991bdb3cb66907e11b071045452bb12de01a3ecbd9' - '5900728bca0292ec66e6da234eaa6f32f28ead6bda163d89a480eac08558c657' - 'c2cb5e2685240ea50b1aba4e77784f4dd66d157e7cd05a17853868aa8d8a2a45') -sha256sums=('875429b052c4001815b6cb38616c7a6cb212df4bba74602164ee0a99b172079b' - '9d30ed859214f4cdeb6b6450d5c5defaf31f2c593c05201109df66fa9373ef0c' - 'e8dc21e50fc886bfd6aa55991bdb3cb66907e11b071045452bb12de01a3ecbd9' - '5900728bca0292ec66e6da234eaa6f32f28ead6bda163d89a480eac08558c657' - 'c2cb5e2685240ea50b1aba4e77784f4dd66d157e7cd05a17853868aa8d8a2a45') +md5sums=('430ff6d1e1fc81e9c5ebc2e641cfc953' + '0534c19ed27d2ff8c6b32d87c07bc76f' + '69b29d231bcc3002528fd29f1f78a37f' + 'c5338742b6667f7be611176afe209230') build() { cd "$srcdir/$pkgname-$pkgver" diff --git a/community/openvswitch/openvswitch.install b/community/openvswitch/openvswitch.install index a64353d02..b9ee27005 100644 --- a/community/openvswitch/openvswitch.install +++ b/community/openvswitch/openvswitch.install @@ -1,14 +1,12 @@ post_install() { - if [[ ! -f etc/openvswitch/conf.db ]]; then - cmd=(ovsdb-tool create etc/openvswitch/conf.db usr/share/openvswitch/vswitch.ovsschema) - printf "Running: %s\n" "${cmd[*]}" "${cmd[@]}" fi + systemd-tmpfiles --create openvswitch.conf } post_upgrade() { diff --git a/community/perl-datetime-format-mail/PKGBUILD b/community/perl-datetime-format-mail/PKGBUILD index cb5bacb73..f629a9c1e 100644 --- a/community/perl-datetime-format-mail/PKGBUILD +++ b/community/perl-datetime-format-mail/PKGBUILD @@ -2,16 +2,16 @@ # Contributor: François Charette pkgname=perl-datetime-format-mail -pkgver=0.3001 -pkgrel=8 +pkgver=0.401 +pkgrel=1 pkgdesc="Convert between DateTime and RFC2822/822 formats " arch=('i686' 'x86_64') url="http://search.cpan.org/dist/DateTime-Format-Mail" license=('GPL' 'PerlArtistic') depends=('perl>=5.10.0' 'perl-datetime' 'perl-params-validate>=0.67') options=('!emptydirs') -source=(http://www.cpan.org/authors/id/D/DR/DROLSKY/DateTime-Format-Mail-$pkgver.tar.gz) -md5sums=('15e36249e866463bd0237262a8e43b16') +source=("http://search.cpan.org/CPAN/authors/id/B/BO/BOOK/DateTime-Format-Mail-$pkgver.tar.gz") +md5sums=('98f4d4d9dc17af5dcb3b3c79314ccc96') build() { cd $srcdir/DateTime-Format-Mail-$pkgver diff --git a/community/perl-datetime/PKGBUILD b/community/perl-datetime/PKGBUILD index e6b3320e4..7d6dd042c 100644 --- a/community/perl-datetime/PKGBUILD +++ b/community/perl-datetime/PKGBUILD @@ -1,9 +1,9 @@ -# $Id: PKGBUILD 110688 2014-05-05 09:15:39Z spupykin $ +# $Id: PKGBUILD 111183 2014-05-15 14:14:48Z spupykin $ # Maintainer: Sergej Pupykin # Contributor: François Charette pkgname=perl-datetime -pkgver=1.09 +pkgver=1.10 pkgrel=1 pkgdesc="A complete, easy to use date and time object" arch=('i686' 'x86_64') @@ -15,7 +15,7 @@ LC_NUMERIC=C provides=("perl-datetime=`printf %.4f $pkgver`") options=('!emptydirs') source=(http://www.cpan.org/authors/id/D/DR/DROLSKY/DateTime-$pkgver.tar.gz) -md5sums=('5bd3b4145ea08df1af71f2e8979ca178') +md5sums=('2dccc83565dfffef50611acaa50f0426') build() { cd $srcdir/DateTime-$pkgver diff --git a/community/perl-io-tty/PKGBUILD b/community/perl-io-tty/PKGBUILD index 54100cf32..c485b8dc5 100644 --- a/community/perl-io-tty/PKGBUILD +++ b/community/perl-io-tty/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 91682 2013-05-26 09:25:34Z bluewind $ +# $Id: PKGBUILD 111199 2014-05-15 14:16:30Z spupykin $ # Maintainer: Sergej Pupykin # Contributor: Charles Mauch pkgname=perl-io-tty -pkgver=1.10 -pkgrel=3 +pkgver=1.11 +pkgrel=1 pkgdesc="Provide an interface to TTYs and PTYs" arch=('i686' 'x86_64') url="http://search.cpan.org/dist/IO-Tty/" @@ -12,7 +12,7 @@ license=("GPL" "PerlArtistic") depends=('glibc') options=('!emptydirs') source=("http://search.cpan.org/CPAN/authors/id/T/TO/TODDR/IO-Tty-$pkgver.tar.gz") -md5sums=('46baec86a145e57f0ec661fa412b097c') +md5sums=('fc42736aee83f848ff5191c6890cc539') build() { cd $srcdir/IO-Tty-$pkgver diff --git a/community/perl-params-validate/PKGBUILD b/community/perl-params-validate/PKGBUILD index 33881b8f7..5e690c007 100644 --- a/community/perl-params-validate/PKGBUILD +++ b/community/perl-params-validate/PKGBUILD @@ -1,9 +1,9 @@ -# $Id: PKGBUILD 94191 2013-07-16 14:53:18Z spupykin $ +# $Id: PKGBUILD 111203 2014-05-15 14:17:05Z spupykin $ # Maintainer: Sergej Pupykin # Contributor: François Charette pkgname=perl-params-validate -pkgver=1.08 +pkgver=1.10 pkgrel=1 pkgdesc="Validate sub params against a spec" arch=('i686' 'x86_64') @@ -12,7 +12,7 @@ license=('GPL' 'PerlArtistic') depends=('perl' 'perl-module-implementation') options=('!emptydirs') source=("http://www.cpan.org/authors/id/D/DR/DROLSKY/Params-Validate-${pkgver}.tar.gz") -md5sums=('5edfb0ffd92cbb0e2646ddf23d4516e9') +md5sums=('be70733a36b5e941da8c985b664e4028') build() { cd Params-Validate-${pkgver} diff --git a/community/python-psycopg2/PKGBUILD b/community/python-psycopg2/PKGBUILD index 0a1992429..f0730c5b4 100644 --- a/community/python-psycopg2/PKGBUILD +++ b/community/python-psycopg2/PKGBUILD @@ -1,19 +1,19 @@ -# $Id: PKGBUILD 108468 2014-03-27 14:48:03Z fyan $ +# $Id: PKGBUILD 111209 2014-05-15 14:17:45Z spupykin $ # Maintainer: Sergej Pupykin # Maintainer: Angel 'angvp' Velasquez # Maintainer: Douglas Soares de Andrade pkgbase=python-psycopg2 pkgname=('python-psycopg2' 'python2-psycopg2') -pkgver=2.5.2 -pkgrel=2 +pkgver=2.5.3 +pkgrel=1 pkgdesc="A PostgreSQL database adapter for the Python programming language." arch=('i686' 'x86_64') url="http://initd.org/psycopg/" license=('LGPL3') makedepends=('python2' 'python' 'postgresql-libs>=8.4.1') source=(http://initd.org/psycopg/tarballs/PSYCOPG-2-5/psycopg2-$pkgver.tar.gz) -md5sums=('53d81793fbab8fee6e732a0425d50047') +md5sums=('09dcec70f623a9ef774f1aef75690995') build() { cd "$srcdir/psycopg2-$pkgver" diff --git a/community/recoll/PKGBUILD b/community/recoll/PKGBUILD index 9aa4bc195..870add721 100644 --- a/community/recoll/PKGBUILD +++ b/community/recoll/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 110411 2014-04-29 11:37:39Z spupykin $ +# $Id: PKGBUILD 111211 2014-05-15 14:18:01Z spupykin $ # Maintainer: Sergej Pupykin # Contributor: Daniel J Griffiths # Contributor: Andrea Scarpino @@ -6,7 +6,7 @@ # Contributor: Robert Emil Berge pkgname=recoll -pkgver=1.19.12 +pkgver=1.19.13 pkgrel=1 pkgdesc="Full text search tool based on Xapian backend" arch=('i686' 'x86_64') @@ -31,7 +31,7 @@ optdepends=('libxslt: for XML based formats (fb2,etc)' 'aspell-en: English stemming support') install=recoll.install source=("http://www.lesbonscomptes.com/$pkgname/$pkgname-${pkgver/_/}.tar.gz") -md5sums=('5f688d48a574c142bb7e9c6606b5c6f6') +md5sums=('b8a670e182e9671e25ec9a493d8452a1') build() { cd "$srcdir/$pkgname-${pkgver/_/}" diff --git a/community/ruby-gtk2/PKGBUILD b/community/ruby-gtk2/PKGBUILD deleted file mode 100644 index 4476268c9..000000000 --- a/community/ruby-gtk2/PKGBUILD +++ /dev/null @@ -1,88 +0,0 @@ -# $Id: PKGBUILD 104888 2014-01-28 03:34:19Z td123 $ -# Maintainer: Alexander Rødseth -# Contributor: Eric Bélanger -# Contributor: Brad Fanella -# Contributor: Bjorn Lindeijer -# Contributor: kritoke - -pkgbase=ruby-gtk2 -pkgname=('ruby-atk' 'ruby-gdkpixbuf2' 'ruby-gio2' 'ruby-glib2' 'ruby-gtk2' - 'ruby-pango') -pkgver=2.1.0 -pkgrel=2 -arch=('x86_64' 'i686') -url='http://ruby-gnome2.sourceforge.jp/' -license=('LGPL') -makedepends=('ruby-pkgconfig' 'ruby-cairo' 'gtk2' 'glib2') -source=("http://downloads.sourceforge.net/ruby-gnome2/ruby-gtk2-$pkgver.tar.gz") -sha256sums=('939251c1f82b41c3cf657552396cf4e1198365316904957cfb7167d1298db204') - -prepare() { - cd "ruby-gtk2-$pkgver" - - LANG="en_US.UTF-8" \ - ruby extconf.rb atk gdk_pixbuf2 gio2 glib2 gtk2 pango --vendor - mkdir -p \ - "$pkgdir/ruby-glib2/usr/lib/ruby/vendor_ruby/2.0.0/i686-linux" \ - "$pkgdir/ruby-atk/usr/lib/ruby/vendor_ruby/2.0.0/i686-linux" \ - "$pkgdir/ruby-gio2/usr/lib/ruby/vendor_ruby/2.0.0/i686-linux" \ - "$pkgdir/ruby-atk/usr/lib/ruby/vendor_ruby/2.0.0/i686-linux" \ - "$pkgdir/ruby-pango/usr/lib/ruby/vendor_ruby/2.0.0/x86_64-linux" \ - "$pkgdir/ruby-glib2/usr/lib/ruby/vendor_ruby/2.0.0/x86_64-linux" \ - "$pkgdir/ruby-gio2/usr/lib/ruby/vendor_ruby/2.0.0/x86_64-linux" -} - -build() { - make -C "ruby-gtk2-$pkgver" -} - -package_ruby-atk() { - pkgdesc='Ruby bindings for atk' - depends=("ruby-glib2=$pkgver" 'atk') - - cd "$srcdir/ruby-gtk2-$pkgver/atk" - make includedir="/usr/include" DESTDIR="$pkgdir" install -j1 -} - -package_ruby-gdkpixbuf2() { - pkgdesc='Ruby bindings for gdkpixbuf2' - depends=("ruby-glib2=$pkgver" 'gdk-pixbuf2') - - cd "$srcdir/ruby-gtk2-$pkgver/gdk_pixbuf2" - make includedir="/usr/include" DESTDIR="$pkgdir" install -j1 -} - -package_ruby-gio2() { - pkgdesc='Ruby bindings for gio2' - depends=("ruby-glib2=$pkgver") - - cd "$srcdir/ruby-gtk2-$pkgver/gio2" - make includedir="/usr/include" DESTDIR="$pkgdir/" install -j1 -} - -package_ruby-glib2() { - pkgdesc='Ruby bindings for glib2' - depends=('glib2' 'ruby') - - cd "$srcdir/ruby-gtk2-$pkgver/glib2" - make includedir="/usr/include" DESTDIR="$pkgdir/" install -j1 -} - -package_ruby-gtk2() { - pkgdesc='Ruby bindings for gtk2' - depends=('gtk2' "ruby-glib2=$pkgver" "ruby-pango=$pkgver" "ruby-atk=$pkgver" - "ruby-gdkpixbuf2=$pkgver") - - cd "$srcdir/ruby-gtk2-$pkgver/gtk2" - make includedir="/usr/include" DESTDIR="$pkgdir/" install -j1 -} - -package_ruby-pango() { - pkgdesc='Ruby bindings for pango' - depends=("ruby-glib2=$pkgver" 'ruby-cairo' 'pango') - - cd "$srcdir/ruby-gtk2-$pkgver/pango" - make includedir="/usr/include" DESTDIR="$pkgdir/" install -j1 -} - -# vim:set ts=2 sw=2 et: diff --git a/community/ruby-gtk3/PKGBUILD b/community/ruby-gtk3/PKGBUILD deleted file mode 100644 index 4051be99e..000000000 --- a/community/ruby-gtk3/PKGBUILD +++ /dev/null @@ -1,50 +0,0 @@ -# $Id: PKGBUILD 104889 2014-01-28 03:34:19Z td123 $ -# Maintainer: Alexander Rødseth -# Contributor: Eric Bélanger -# Contributor: Brad Fanella -# Contributor: Bjorn Lindeijer -# Contributor: kritoke - -pkgbase=ruby-gtk3 -pkgver=2.1.0 -pkgrel=2 -pkgname=('ruby-gtk3' 'ruby-gdk3') -depends=("ruby-atk=$pkgver" "ruby-gdkpixbuf2=$pkgver" "ruby-glib2=$pkgver" "ruby-pango=$pkgver") -arch=('x86_64' 'i686') -url='http://ruby-gnome2.sourceforge.jp/' -license=('LGPL') -makedepends=('ruby-pkgconfig' 'ruby-cairo' 'gtk3') -source=("http://downloads.sourceforge.net/ruby-gnome2/ruby-gtk3-$pkgver.tar.gz") -sha256sums=('436844cc9ab3bf5e5a3027e3276fc69ff9cae5cff88bc60179c416050d5e753d') - -prepare() { - cd "$srcdir/ruby-gtk3-$pkgver" - - LANG="en_US.UTF-8" ruby extconf.rb gtk3 gdk3 --vendor -} - -build() { - cd "$srcdir/ruby-gtk3-$pkgver" - make -} - -package_ruby-gtk3() { - pkgdesc='Ruby bindings for gtk3' - depends=('gtk3' "ruby-glib2=$pkgver" "ruby-pango=$pkgver" "ruby-atk=$pkgver" - "ruby-gdkpixbuf2=$pkgver" "ruby-gdk3=$pkgver") - - cd "$srcdir/ruby-gtk3-$pkgver/gtk3" - mkdir -p "$pkgdir/usr/lib/ruby/vendor_ruby/2.0.0/$CARCH-linux" - make DESTDIR="$pkgdir/" install -j1 -} - -package_ruby-gdk3() { - pkgdesc='Ruby bindings for gdk3' - depends=('ruby' 'gtk3') - - cd "$srcdir/ruby-gtk3-$pkgver/gdk3" - mkdir -p "$pkgdir/usr/lib/ruby/vendor_ruby/2.0.0/$CARCH-linux" - make DESTDIR="$pkgdir/" install -j1 -} - -# vim:set ts=2 sw=2 et: diff --git a/community/squashfs-tools/PKGBUILD b/community/squashfs-tools/PKGBUILD index 091687396..79c049be2 100644 --- a/community/squashfs-tools/PKGBUILD +++ b/community/squashfs-tools/PKGBUILD @@ -1,19 +1,19 @@ -# $Id: PKGBUILD 91959 2013-05-30 09:44:39Z spupykin $ +# $Id: PKGBUILD 111215 2014-05-15 14:18:32Z spupykin $ # Maintainer: Sergej Pupykin # Maintainer: Aaron Griffin # Original TU: Jeff Mickey # Contributor: ciccio.a pkgname=squashfs-tools -pkgver=4.2 -pkgrel=4 +pkgver=4.3 +pkgrel=1 pkgdesc="Tools for squashfs, a highly compressed read-only filesystem for Linux." url="http://squashfs.sourceforge.net" license=("GPL") arch=('i686' 'x86_64') depends=('zlib' 'lzo2' 'xz') source=("http://downloads.sourceforge.net/sourceforge/squashfs/squashfs${pkgver}.tar.gz") -md5sums=('1b7a781fb4cf8938842279bd3e8ee852') +md5sums=('d92ab59aabf5173f2a59089531e30dbf') build() { cd ${srcdir}/squashfs${pkgver}/${pkgname} diff --git a/community/tesseract-game/PKGBUILD b/community/tesseract-game/PKGBUILD new file mode 100644 index 000000000..f0da99a3d --- /dev/null +++ b/community/tesseract-game/PKGBUILD @@ -0,0 +1,46 @@ +# $Id: PKGBUILD 111260 2014-05-15 21:20:00Z arodseth $ +# Maintainer: Alexander Rødseth +# Contributor: portals +# Contributor: novemberist +# Contributor: PyroDevil +# Contributor: giacomogiorgianni@gmail.com + +pkgname=tesseract-game +pkgver=1 +pkgrel=1 +pkgdesc='Smooth FPS with map editing, instagib, DM and CTF' +url='http://tesseract.gg/' +arch=('x86_64' 'i686') +license=('ZLIB') +depends=('libgl' 'sdl2' 'sdl2_image' 'sdl2_mixer' 'libpng' 'mesa' 'zlib') +makedepends=('subversion' 'gendesk' 'imagemagick') +source=('tesseract::svn://svn.tuxfamily.org/svnroot/tesseract/main#revision=1678' + 'tesseract_large.png::http://upload.wikimedia.org/wikipedia/commons/5/50/Truncated_tesseract_stereographic_%28tC%29.png' + 'tesseract.sh') +md5sums=('SKIP' + '3f7098fad57081bb1af0ee4771e20ad3' + 'ab00bafb80c1c7764cba8f51120d4a9a') + +prepare() { + gendesk -n -f --pkgname tesseract --pkgdesc "$pkgdesc" + convert -transparent white -resize 48x48 tesseract_large.png tesseract.png 2> /dev/null +} + +build() { + make -C tesseract/src +} + +package() { + cd tesseract + make -C src install + install -d "$pkgdir/usr/share/tesseract-game/" + cp -R media/ config/ "$pkgdir/usr/share/tesseract-game" + install -Dm755 bin_unix/native_client "$pkgdir/usr/bin/tesseract-client" + install -Dm755 bin_unix/native_server "$pkgdir/usr/bin/tesseract-server" + install -Dm644 src/readme_tesseract.txt "$pkgdir/usr/share/licenses/tesseract-game/LICENSE" + install -Dm755 ../tesseract.sh "$pkgdir/usr/bin/tesseract-game" + install -Dm644 ../tesseract.desktop "$pkgdir/usr/share/applications/tesseract.desktop" + install -Dm644 ../tesseract.png "$pkgdir/usr/share/pixmaps/tesseract.png" +} + +# vim:set ts=2 sw=2 et: diff --git a/community/tesseract-game/tesseract.sh b/community/tesseract-game/tesseract.sh new file mode 100644 index 000000000..896d571fc --- /dev/null +++ b/community/tesseract-game/tesseract.sh @@ -0,0 +1,6 @@ +#!/bin/sh +TESS_BIN=/usr/bin/ +TESS_DATA=/usr/share/tesseract-game/ +TESS_OPTIONS="-u$HOME/.tesseract" +cd "$TESS_DATA" +exec "$TESS_BIN/tesseract-client" "$TESS_OPTIONS" "$@" diff --git a/community/tork/PKGBUILD b/community/tork/PKGBUILD deleted file mode 100644 index fe8a4121b..000000000 --- a/community/tork/PKGBUILD +++ /dev/null @@ -1,63 +0,0 @@ -# $Id: PKGBUILD 103134 2013-12-27 05:36:23Z fyan $ -# Maintainer: Felix Yan -# Contributor: Darwin Bautista -# Contributor: Chris Giles - -_libname=tor -pkgname=${_libname}k -pkgver=0.33 -pkgrel=5 -pkgdesc="An anonymity manager for KDE" -arch=("i686" "x86_64") -url="http://sourceforge.net/projects/$pkgname/" -license=("GPL") -depends=("geoip" "kdelibs3" "${_libname}" "torsocks" "hicolor-icon-theme" "desktop-file-utils" "xdg-utils") -optdepends=("privoxy: For anonymous browsing with Konqueror") -options=("!emptydirs") -install=${pkgname}.install - -source=( - http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.bz2 - fix_net_port.patch - fix_getuid.patch -) -sha1sums=( - 'cf94b9579cf24254fcb344f579088a241bbd4028' - '70c450031bf5e603801451fc016e5cfc22cfd19c' - '9fe1de823850e6a0d0a4a18c3b86955206f544bd' -) - -build() { - cd ${pkgname}-${pkgver} - - # Source the KDE and QT profiles - source /etc/profile.d/kde3.sh - #source /etc/profile.d/qt3.sh - - msg "Applying patch(es) ..." - - patch -Np1 -i ../fix_net_port.patch - patch -Np1 -i ../fix_getuid.patch - - # Build - msg "Compiling tork ..." - ./configure --prefix=/opt/kde --mandir=/usr/share/man \ - --sysconfdir=/etc --with-external-geoip --without-arts - - # Fix --as-needed and --hash-style=gnu options not recognized error - find . -name Makefile -exec sed -i "s/-Wl,//g" {} \; - find . -name Makefile -exec sed -i "s/-Wl//g" {} \; - find . -name Makefile -exec sed -i "s/--hash-style=gnu,//g" {} \; - find . -name Makefile -exec sed -i "s/--hash-style=gnu//g" {} \; - find . -name Makefile -exec sed -i "s/--as-needed,//g" {} \; - find . -name Makefile -exec sed -i "s/--as-needed//g" {} \; - - make -} - -package() { - cd ${pkgname}-${pkgver} - make DESTDIR="${pkgdir}" install -} - -# vim:set ts=2 sw=2 et: diff --git a/community/tork/fix_getuid.patch b/community/tork/fix_getuid.patch deleted file mode 100644 index 6afdae74a..000000000 --- a/community/tork/fix_getuid.patch +++ /dev/null @@ -1,23 +0,0 @@ ---- A/src/tork.h 2009-08-13 03:41:23.000000000 +0800 -+++ B/src/tork.h 2012-04-04 22:43:55.924940588 +0800 -@@ -45,6 +45,9 @@ - #include - #include - -+#include -+#include -+ - #include "update.h" - #include "trayicon.h" - #include "upnpmanager.h" ---- A/src/likeback.h 2006-10-01 19:58:11.000000000 +0800 -+++ B/src/likeback.h 2012-04-04 22:50:38.024921928 +0800 -@@ -22,6 +22,8 @@ - #define LIKEBACK_H - - #include -+#include -+#include - - class KConfig; - class KAboutData; diff --git a/community/tork/fix_net_port.patch b/community/tork/fix_net_port.patch deleted file mode 100644 index b5545e0b2..000000000 --- a/community/tork/fix_net_port.patch +++ /dev/null @@ -1,20 +0,0 @@ ---- A/src/upnp/upnprouter.h -+++ B/src/upnp/upnprouter.h -@@ -242,7 +242,7 @@ - * @param port The local port to forward - */ - void forward(const net::Port & externalport, -- const net::Port & internalport = net::Port::Port(), -+ const net::Port & internalport = net::Port(), - bool force = false); - - /** -@@ -291,7 +291,7 @@ - bt::HTTPRequest* sendSoapQuery(const QString & query,const QString & soapact,const QString & controlurl,bool fwd, bool at_exit = false ); - bool verbose; - -- void forward(UPnPService* srv,const net::Port & externalport,const net::Port & internalport = net::Port::Port()); -+ void forward(UPnPService* srv,const net::Port & externalport,const net::Port & internalport = net::Port()); - void undoForward(UPnPService* srv,const net::Port & externalport,const net::Port & - internalport,bt::WaitJob* waitjob); - void httpRequestDone(bt::HTTPRequest* r,bool erase_fwd); diff --git a/community/tork/tork.install b/community/tork/tork.install deleted file mode 100644 index 5c501dc49..000000000 --- a/community/tork/tork.install +++ /dev/null @@ -1,12 +0,0 @@ -post_install() { - xdg-icon-resource forceupdate --theme hicolor &> /dev/null - update-desktop-database -q -} - -post_upgrade() { - post_install -} - -post_remove() { - post_install -} diff --git a/community/uwsgi/PKGBUILD b/community/uwsgi/PKGBUILD index 88162a474..ad0dabba5 100644 --- a/community/uwsgi/PKGBUILD +++ b/community/uwsgi/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 110184 2014-04-25 23:44:06Z dwallace $ +# $Id: PKGBUILD 111170 2014-05-15 03:12:20Z svenstaro $ # Maintainer: Daniel Wallace # Contributor: Valentin Hăloiu # Contributor: Angel Velasquez @@ -12,6 +12,7 @@ pkgname=(uwsgi uwsgi-plugin-psgi uwsgi-plugin-python2 uwsgi-plugin-python + uwsgi-plugin-pypy uwsgi-plugin-nagios uwsgi-plugin-router uwsgi-plugin-php @@ -24,7 +25,7 @@ pkgname=(uwsgi #uwsgi-plugin-erlang #uwsgi-plugin-admin pkgver=2.0.4 -pkgrel=1 +pkgrel=2 arch=(i686 x86_64) url="http://projects.unbit.it/$pkgbase" license=(GPL2) @@ -32,7 +33,7 @@ backup=('etc/uwsgi/emperor.ini') conflicts=(python-$pkgbase) makedepends=(gcc python python2 ruby python2-greenlet php-embed curl libxml2 libyaml perl lua51 pcre libedit openssl bzip2 gmp pam java-environment=7 - jansson classpath) + jansson classpath pypy) source=(http://projects.unbit.it/downloads/$pkgbase-$pkgver.tar.gz archlinux.ini tmpfilesd @@ -76,6 +77,7 @@ build() { python2 uwsgiconfig.py --plugin plugins/python archlinux python2 python2 uwsgiconfig.py --plugin plugins/greenlet archlinux greenlet python2 uwsgiconfig.py --plugin plugins/gevent archlinux gevent + python2 uwsgiconfig.py --plugin plugins/pypy archlinux pypy } package_uwsgi() { @@ -144,6 +146,15 @@ package_uwsgi-plugin-python(){ ln -s uwsgi $pkgdir/usr/bin/uwsgi_${pkgname#uwsgi-plugin-} } +package_uwsgi-plugin-pypy(){ + depends=(pypy uwsgi-plugin-common) + pkgdesc="Plugin for PyPy support" + install -dm755 $pkgdir/usr/bin + cd $srcdir/$pkgbase-$pkgver + install -Dm755 $srcdir/$pkgbase-$pkgver/pypy_plugin.so $pkgdir/usr/lib/uwsgi/pypy_plugin.so + ln -s uwsgi $pkgdir/usr/bin/uwsgi_${pkgname#uwsgi-plugin-} +} + package_uwsgi-plugin-nagios(){ depends=( uwsgi-plugin-common) pkgdesc="Plugin for Nagios support" diff --git a/community/vyqchat/PKGBUILD b/community/vyqchat/PKGBUILD deleted file mode 100644 index c7a4ddebd..000000000 --- a/community/vyqchat/PKGBUILD +++ /dev/null @@ -1,33 +0,0 @@ -# $Id: PKGBUILD 110076 2014-04-23 17:29:50Z spupykin $ -# Maintainer: Sergej Pupykin -# Contributor: Sergej Pupykin - -pkgname=vyqchat -pkgver=0.2.8 -pkgrel=5 -pkgdesc="vypress compatible qt chat (can work without server)" -arch=('i686' 'x86_64') -url="http://linux.bydg.org/~yogin/" -license=('GPL') -depends=('qt3' 'libao' 'libxi') -source=(http://www.uic.unn.ru/~soed/programs/chat/$pkgname-$pkgver.tar.gz - build-fix.patch) -md5sums=('67974bc5df1ed0d63785d04325444d4f' - 'de3af70da3743c27929f04f72c837412') - -build() { - cd $srcdir/$pkgname-${pkgver} - patch -Np1 <../build-fix.patch - # Use _LDADD to properly compile with --as-needed - sed -i 's/vyqchat_LDFLAGS/vyqchat_LDADD/' src/Makefile.am - # Correct acinclude.m4 to avoid empty else block - sed -i 's:# Leave bnv_qt_lib_dir defined:/bin/true:' acinclude.m4 - autoreconf -fiv - ./configure --prefix=/usr --with-Qt-bin-dir=/usr/lib/qt3/bin --with-Qt-include-dir=/usr/include/qt3 --with-Qt-lib-dir=/usr/lib - make -} - -package() { - cd $srcdir/$pkgname-${pkgver} - make DESTDIR=$pkgdir install -} diff --git a/community/vyqchat/build-fix.patch b/community/vyqchat/build-fix.patch deleted file mode 100644 index 7ad70ab2f..000000000 --- a/community/vyqchat/build-fix.patch +++ /dev/null @@ -1,36 +0,0 @@ -diff -wbBur vyqchat-0.2.8/src/settings.h vyqchat-0.2.8.my/src/settings.h ---- vyqchat-0.2.8/src/settings.h 2005-07-18 22:54:08.000000000 +0400 -+++ vyqchat-0.2.8.my/src/settings.h 2007-02-21 21:05:11.000000000 +0300 -@@ -88,7 +88,7 @@ - - // - // Get methods -- const UUID& Settings::getUUID() const { return uuid; } -+ const UUID& getUUID() const { return uuid; } - const QString& getIconThemeName() const { return icontheme; } - const QString& getNick() const { return nick; } - char getGender() const { return gender; } -diff -wbBur vyqchat-0.2.8/src/sound.h vyqchat-0.2.8.my/src/sound.h ---- vyqchat-0.2.8/src/sound.h 2005-07-18 22:54:08.000000000 +0400 -+++ vyqchat-0.2.8.my/src/sound.h 2007-02-21 21:04:45.000000000 +0300 -@@ -47,7 +47,7 @@ - bool reload_samples(Settings &settings); - static bool init(Settings *settings); - static void close(); -- static const QString& Sound::error(); -+ static const QString& error(); - static void play(VyEvent evt); - }; - -diff -wbBur vyqchat-0.2.8/src/user.h vyqchat-0.2.8.my/src/user.h ---- vyqchat-0.2.8/src/user.h 2005-07-18 23:03:01.000000000 +0400 -+++ vyqchat-0.2.8.my/src/user.h 2007-02-21 21:04:14.000000000 +0300 -@@ -38,7 +38,7 @@ - } - return false; - } -- bool User::setStatus(char s) { status=s; return true; } -+ bool setStatus(char s) { status=s; return true; } - void setNick(const QString &nick) { setText(nick); } - int incDeadCounter() { if (dcnt<1) dcnt++; return dcnt; } - int decDeadCounter() { return --dcnt; } diff --git a/community/xdebug/PKGBUILD b/community/xdebug/PKGBUILD index 714f6127d..738cfee1d 100644 --- a/community/xdebug/PKGBUILD +++ b/community/xdebug/PKGBUILD @@ -1,11 +1,11 @@ -# $Id: PKGBUILD 107191 2014-03-14 08:53:43Z spupykin $ +# $Id: PKGBUILD 111217 2014-05-15 14:18:48Z spupykin $ # Maintainer: Sergej Pupykin # Maintainer: Jonathan Wiersma # Contributor: Jonathan Wiersma # Contributor: sracker pkgname=xdebug -pkgver=2.2.4 +pkgver=2.2.5 pkgrel=1 pkgdesc="PHP debugging extension" arch=('i686' 'x86_64') @@ -15,7 +15,7 @@ depends=('php') backup=('etc/php/conf.d/xdebug.ini') source=(http://www.xdebug.org/files/$pkgname-$pkgver.tgz xdebug.ini) -md5sums=('a2edd77f112ab47286c280df041c396a' +md5sums=('7e571ce8eb6fa969fd8263969019849d' '6a1f2ef91c632d4c9b7b218cd2e278ef') build() { -- cgit v1.2.3-54-g00ecf