[arch-commits] Commit in apitrace/repos (8 files)

Laurent Carlier lcarlier at nymeria.archlinux.org
Tue May 13 08:12:15 UTC 2014


    Date: Tuesday, May 13, 2014 @ 10:12:14
  Author: lcarlier
Revision: 111076

archrelease: copy trunk to community-i686, community-x86_64

Added:
  apitrace/repos/community-i686/PKGBUILD
    (from rev 111075, apitrace/trunk/PKGBUILD)
  apitrace/repos/community-i686/gcc-4.7-fix.patch
    (from rev 111075, apitrace/trunk/gcc-4.7-fix.patch)
  apitrace/repos/community-x86_64/PKGBUILD
    (from rev 111075, apitrace/trunk/PKGBUILD)
  apitrace/repos/community-x86_64/gcc-4.7-fix.patch
    (from rev 111075, apitrace/trunk/gcc-4.7-fix.patch)
Deleted:
  apitrace/repos/community-i686/PKGBUILD
  apitrace/repos/community-i686/gcc-4.7-fix.patch
  apitrace/repos/community-x86_64/PKGBUILD
  apitrace/repos/community-x86_64/gcc-4.7-fix.patch

------------------------------------+
 /PKGBUILD                          |   66 +++++++++++++++++++++++++++++
 /gcc-4.7-fix.patch                 |   78 +++++++++++++++++++++++++++++++++++
 community-i686/PKGBUILD            |   33 --------------
 community-i686/gcc-4.7-fix.patch   |   39 -----------------
 community-x86_64/PKGBUILD          |   33 --------------
 community-x86_64/gcc-4.7-fix.patch |   39 -----------------
 6 files changed, 144 insertions(+), 144 deletions(-)

Deleted: community-i686/PKGBUILD
===================================================================
--- community-i686/PKGBUILD	2014-05-13 08:12:03 UTC (rev 111075)
+++ community-i686/PKGBUILD	2014-05-13 08:12:14 UTC (rev 111076)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Laurent Carlier <lordheavym at gmail.com>
-# Contributor: Luca Bennati <lucak3 AT gmail DOT com>
-# Contributor: Glaucous <glakke1 at gmail dot com>
-
-pkgname=apitrace
-pkgver=4.0
-pkgrel=1
-pkgdesc="Graphics API Tracing"
-arch=('i686' 'x86_64')
-url="https://github.com/apitrace/apitrace"
-license=('custom')
-makedepends=('cmake' 'mesa' 'libgl' 'python2' 'qtwebkit' 'qjson')
-optdepends=('qtwebkit: GUI support' 'qjson: GUI support')
-source=("https://github.com/apitrace/apitrace/archive/${pkgver}.zip")
-md5sums=('5b2e212d91d2f184d8608c712eab69a0')
-
-build() {
-  cd ${srcdir}/apitrace-*
-
-  cmake . -Bbuild -DCMAKE_INSTALL_PREFIX=/usr -DPYTHON_EXECUTABLE='/usr/bin/python2'
-  make -C build
-}
-
-package() {
-  depends=('python2' 'libgl')
-  cd ${srcdir}/apitrace-*
-
-  make -C build DESTDIR="${pkgdir}/" install
-
-  install -m755 -d "${pkgdir}/usr/share/licenses/apitrace"
-  install -m644 LICENSE "${pkgdir}/usr/share/licenses/apitrace/"
-}

Copied: apitrace/repos/community-i686/PKGBUILD (from rev 111075, apitrace/trunk/PKGBUILD)
===================================================================
--- community-i686/PKGBUILD	                        (rev 0)
+++ community-i686/PKGBUILD	2014-05-13 08:12:14 UTC (rev 111076)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Laurent Carlier <lordheavym at gmail.com>
+# Contributor: Luca Bennati <lucak3 AT gmail DOT com>
+# Contributor: Glaucous <glakke1 at gmail dot com>
+
+pkgname=apitrace
+pkgver=5.0
+pkgrel=1
+pkgdesc="Graphics API Tracing"
+arch=('i686' 'x86_64')
+url="https://github.com/apitrace/apitrace"
+license=('custom')
+makedepends=('cmake' 'mesa' 'libgl' 'python2' 'qtwebkit' 'qjson')
+optdepends=('qtwebkit: GUI support' 'qjson: GUI support')
+source=("https://github.com/apitrace/apitrace/archive/${pkgver}.zip")
+md5sums=('2a60e8a4c90f841dc95fe659ba26607e')
+
+build() {
+  cd ${srcdir}/apitrace-*
+
+  cmake . -Bbuild -DCMAKE_INSTALL_PREFIX=/usr -DPYTHON_EXECUTABLE='/usr/bin/python2'
+  make -C build
+}
+
+package() {
+  depends=('python2' 'libgl')
+  cd ${srcdir}/apitrace-*
+
+  make -C build DESTDIR="${pkgdir}/" install
+
+  install -m755 -d "${pkgdir}/usr/share/licenses/apitrace"
+  install -m644 LICENSE "${pkgdir}/usr/share/licenses/apitrace/"
+}

Deleted: community-i686/gcc-4.7-fix.patch
===================================================================
--- community-i686/gcc-4.7-fix.patch	2014-05-13 08:12:03 UTC (rev 111075)
+++ community-i686/gcc-4.7-fix.patch	2014-05-13 08:12:14 UTC (rev 111076)
@@ -1,39 +0,0 @@
-From 8159d6c1295da8c1b342bc77686e7ecfed1e5c01 Mon Sep 17 00:00:00 2001
-From: Martin Olsson <martin at minimum.se>
-Date: Mon, 26 Mar 2012 10:40:45 +0200
-Subject: [PATCH] Fix compile error "isatty was not declared"; missing
- unistd.h include
-MIME-Version: 1.0
-Content-Type: text/plain; charset=UTF-8
-Content-Transfer-Encoding: 8bit
-
-When I built apitrace on Fedora 16, using the usual:
-
-	cmake -H. -Bbuild
-	make -C build
-
-...then I got this compile error:
-
-	apitrace/cli/cli_dump.cpp: In function ‘int command(int, char**)’:
-	apitrace/cli/cli_dump.cpp:176:25: error: ‘isatty’ was not declared in this scope
----
- cli/cli_dump.cpp |    3 +++
- 1 file changed, 3 insertions(+)
-
-diff --git a/cli/cli_dump.cpp b/cli/cli_dump.cpp
-index 28c91af..f52b83c 100644
---- a/cli/cli_dump.cpp
-+++ b/cli/cli_dump.cpp
-@@ -28,6 +28,9 @@
- #include <string.h>
- #include <limits.h> // for CHAR_MAX
- #include <getopt.h>
-+#ifndef _WIN32
-+#include <unistd.h> // for isatty()
-+#endif
- 
- #include "cli.hpp"
- #include "cli_pager.hpp"
--- 
-1.7.10
-

Copied: apitrace/repos/community-i686/gcc-4.7-fix.patch (from rev 111075, apitrace/trunk/gcc-4.7-fix.patch)
===================================================================
--- community-i686/gcc-4.7-fix.patch	                        (rev 0)
+++ community-i686/gcc-4.7-fix.patch	2014-05-13 08:12:14 UTC (rev 111076)
@@ -0,0 +1,39 @@
+From 8159d6c1295da8c1b342bc77686e7ecfed1e5c01 Mon Sep 17 00:00:00 2001
+From: Martin Olsson <martin at minimum.se>
+Date: Mon, 26 Mar 2012 10:40:45 +0200
+Subject: [PATCH] Fix compile error "isatty was not declared"; missing
+ unistd.h include
+MIME-Version: 1.0
+Content-Type: text/plain; charset=UTF-8
+Content-Transfer-Encoding: 8bit
+
+When I built apitrace on Fedora 16, using the usual:
+
+	cmake -H. -Bbuild
+	make -C build
+
+...then I got this compile error:
+
+	apitrace/cli/cli_dump.cpp: In function ‘int command(int, char**)’:
+	apitrace/cli/cli_dump.cpp:176:25: error: ‘isatty’ was not declared in this scope
+---
+ cli/cli_dump.cpp |    3 +++
+ 1 file changed, 3 insertions(+)
+
+diff --git a/cli/cli_dump.cpp b/cli/cli_dump.cpp
+index 28c91af..f52b83c 100644
+--- a/cli/cli_dump.cpp
++++ b/cli/cli_dump.cpp
+@@ -28,6 +28,9 @@
+ #include <string.h>
+ #include <limits.h> // for CHAR_MAX
+ #include <getopt.h>
++#ifndef _WIN32
++#include <unistd.h> // for isatty()
++#endif
+ 
+ #include "cli.hpp"
+ #include "cli_pager.hpp"
+-- 
+1.7.10
+

Deleted: community-x86_64/PKGBUILD
===================================================================
--- community-x86_64/PKGBUILD	2014-05-13 08:12:03 UTC (rev 111075)
+++ community-x86_64/PKGBUILD	2014-05-13 08:12:14 UTC (rev 111076)
@@ -1,33 +0,0 @@
-# $Id$
-# Maintainer: Laurent Carlier <lordheavym at gmail.com>
-# Contributor: Luca Bennati <lucak3 AT gmail DOT com>
-# Contributor: Glaucous <glakke1 at gmail dot com>
-
-pkgname=apitrace
-pkgver=4.0
-pkgrel=1
-pkgdesc="Graphics API Tracing"
-arch=('i686' 'x86_64')
-url="https://github.com/apitrace/apitrace"
-license=('custom')
-makedepends=('cmake' 'mesa' 'libgl' 'python2' 'qtwebkit' 'qjson')
-optdepends=('qtwebkit: GUI support' 'qjson: GUI support')
-source=("https://github.com/apitrace/apitrace/archive/${pkgver}.zip")
-md5sums=('5b2e212d91d2f184d8608c712eab69a0')
-
-build() {
-  cd ${srcdir}/apitrace-*
-
-  cmake . -Bbuild -DCMAKE_INSTALL_PREFIX=/usr -DPYTHON_EXECUTABLE='/usr/bin/python2'
-  make -C build
-}
-
-package() {
-  depends=('python2' 'libgl')
-  cd ${srcdir}/apitrace-*
-
-  make -C build DESTDIR="${pkgdir}/" install
-
-  install -m755 -d "${pkgdir}/usr/share/licenses/apitrace"
-  install -m644 LICENSE "${pkgdir}/usr/share/licenses/apitrace/"
-}

Copied: apitrace/repos/community-x86_64/PKGBUILD (from rev 111075, apitrace/trunk/PKGBUILD)
===================================================================
--- community-x86_64/PKGBUILD	                        (rev 0)
+++ community-x86_64/PKGBUILD	2014-05-13 08:12:14 UTC (rev 111076)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Laurent Carlier <lordheavym at gmail.com>
+# Contributor: Luca Bennati <lucak3 AT gmail DOT com>
+# Contributor: Glaucous <glakke1 at gmail dot com>
+
+pkgname=apitrace
+pkgver=5.0
+pkgrel=1
+pkgdesc="Graphics API Tracing"
+arch=('i686' 'x86_64')
+url="https://github.com/apitrace/apitrace"
+license=('custom')
+makedepends=('cmake' 'mesa' 'libgl' 'python2' 'qtwebkit' 'qjson')
+optdepends=('qtwebkit: GUI support' 'qjson: GUI support')
+source=("https://github.com/apitrace/apitrace/archive/${pkgver}.zip")
+md5sums=('2a60e8a4c90f841dc95fe659ba26607e')
+
+build() {
+  cd ${srcdir}/apitrace-*
+
+  cmake . -Bbuild -DCMAKE_INSTALL_PREFIX=/usr -DPYTHON_EXECUTABLE='/usr/bin/python2'
+  make -C build
+}
+
+package() {
+  depends=('python2' 'libgl')
+  cd ${srcdir}/apitrace-*
+
+  make -C build DESTDIR="${pkgdir}/" install
+
+  install -m755 -d "${pkgdir}/usr/share/licenses/apitrace"
+  install -m644 LICENSE "${pkgdir}/usr/share/licenses/apitrace/"
+}

Deleted: community-x86_64/gcc-4.7-fix.patch
===================================================================
--- community-x86_64/gcc-4.7-fix.patch	2014-05-13 08:12:03 UTC (rev 111075)
+++ community-x86_64/gcc-4.7-fix.patch	2014-05-13 08:12:14 UTC (rev 111076)
@@ -1,39 +0,0 @@
-From 8159d6c1295da8c1b342bc77686e7ecfed1e5c01 Mon Sep 17 00:00:00 2001
-From: Martin Olsson <martin at minimum.se>
-Date: Mon, 26 Mar 2012 10:40:45 +0200
-Subject: [PATCH] Fix compile error "isatty was not declared"; missing
- unistd.h include
-MIME-Version: 1.0
-Content-Type: text/plain; charset=UTF-8
-Content-Transfer-Encoding: 8bit
-
-When I built apitrace on Fedora 16, using the usual:
-
-	cmake -H. -Bbuild
-	make -C build
-
-...then I got this compile error:
-
-	apitrace/cli/cli_dump.cpp: In function ‘int command(int, char**)’:
-	apitrace/cli/cli_dump.cpp:176:25: error: ‘isatty’ was not declared in this scope
----
- cli/cli_dump.cpp |    3 +++
- 1 file changed, 3 insertions(+)
-
-diff --git a/cli/cli_dump.cpp b/cli/cli_dump.cpp
-index 28c91af..f52b83c 100644
---- a/cli/cli_dump.cpp
-+++ b/cli/cli_dump.cpp
-@@ -28,6 +28,9 @@
- #include <string.h>
- #include <limits.h> // for CHAR_MAX
- #include <getopt.h>
-+#ifndef _WIN32
-+#include <unistd.h> // for isatty()
-+#endif
- 
- #include "cli.hpp"
- #include "cli_pager.hpp"
--- 
-1.7.10
-

Copied: apitrace/repos/community-x86_64/gcc-4.7-fix.patch (from rev 111075, apitrace/trunk/gcc-4.7-fix.patch)
===================================================================
--- community-x86_64/gcc-4.7-fix.patch	                        (rev 0)
+++ community-x86_64/gcc-4.7-fix.patch	2014-05-13 08:12:14 UTC (rev 111076)
@@ -0,0 +1,39 @@
+From 8159d6c1295da8c1b342bc77686e7ecfed1e5c01 Mon Sep 17 00:00:00 2001
+From: Martin Olsson <martin at minimum.se>
+Date: Mon, 26 Mar 2012 10:40:45 +0200
+Subject: [PATCH] Fix compile error "isatty was not declared"; missing
+ unistd.h include
+MIME-Version: 1.0
+Content-Type: text/plain; charset=UTF-8
+Content-Transfer-Encoding: 8bit
+
+When I built apitrace on Fedora 16, using the usual:
+
+	cmake -H. -Bbuild
+	make -C build
+
+...then I got this compile error:
+
+	apitrace/cli/cli_dump.cpp: In function ‘int command(int, char**)’:
+	apitrace/cli/cli_dump.cpp:176:25: error: ‘isatty’ was not declared in this scope
+---
+ cli/cli_dump.cpp |    3 +++
+ 1 file changed, 3 insertions(+)
+
+diff --git a/cli/cli_dump.cpp b/cli/cli_dump.cpp
+index 28c91af..f52b83c 100644
+--- a/cli/cli_dump.cpp
++++ b/cli/cli_dump.cpp
+@@ -28,6 +28,9 @@
+ #include <string.h>
+ #include <limits.h> // for CHAR_MAX
+ #include <getopt.h>
++#ifndef _WIN32
++#include <unistd.h> // for isatty()
++#endif
+ 
+ #include "cli.hpp"
+ #include "cli_pager.hpp"
+-- 
+1.7.10
+




More information about the arch-commits mailing list