[arch-commits] Commit in mesa/repos/testing-i686 (7 files)

2014-09-20 Thread Laurent Carlier
Date: Sunday, September 21, 2014 @ 00:01:44
  Author: lcarlier
Revision: 222525

archrelease: copy trunk to testing-i686

Added:
  mesa/repos/testing-i686/LICENSE
(from rev 222524, mesa/trunk/LICENSE)
  mesa/repos/testing-i686/PKGBUILD
(from rev 222524, mesa/trunk/PKGBUILD)
Deleted:
  
mesa/repos/testing-i686/0001-gallivm-Disable-workaround-for-PR12833-on-LLVM-3.2.patch
  
mesa/repos/testing-i686/0002-gallivm-set-mcpu-when-initializing-llvm-execution-en.patch
  mesa/repos/testing-i686/LICENSE
  mesa/repos/testing-i686/PKGBUILD
  mesa/repos/testing-i686/llvm35.patch

-+
 0001-gallivm-Disable-workaround-for-PR12833-on-LLVM-3.2.patch   |   33 
 0002-gallivm-set-mcpu-when-initializing-llvm-execution-en.patch |   77 --
 LICENSE |  164 ++--
 PKGBUILD|  348 
--
 llvm35.patch|   26 
 5 files changed, 255 insertions(+), 393 deletions(-)

Deleted: 0001-gallivm-Disable-workaround-for-PR12833-on-LLVM-3.2.patch
===
--- 0001-gallivm-Disable-workaround-for-PR12833-on-LLVM-3.2.patch   
2014-09-20 21:14:31 UTC (rev 222524)
+++ 0001-gallivm-Disable-workaround-for-PR12833-on-LLVM-3.2.patch   
2014-09-20 22:01:44 UTC (rev 222525)
@@ -1,33 +0,0 @@
-From 22c970946535956abac321585598425ad5cc82c5 Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?Jos=C3=A9=20Fonseca?= 
-Date: Wed, 14 May 2014 12:55:50 +0100
-Subject: [PATCH 1/2] gallivm: Disable workaround for PR12833 on LLVM 3.2+.
-
-Fixed upstream.
-
-(cherry picked from commit 172ef0c5a5a97c211702eb4033eeaac20993350e)

- src/gallium/auxiliary/gallivm/lp_bld_misc.cpp | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/src/gallium/auxiliary/gallivm/lp_bld_misc.cpp 
b/src/gallium/auxiliary/gallivm/lp_bld_misc.cpp
-index d85adfb..45c985d 100644
 a/src/gallium/auxiliary/gallivm/lp_bld_misc.cpp
-+++ b/src/gallium/auxiliary/gallivm/lp_bld_misc.cpp
-@@ -321,11 +321,11 @@ 
lp_build_create_jit_compiler_for_module(LLVMExecutionEngineRef *OutJIT,
-builder.setJITMemoryManager(JITMemoryManager::CreateDefaultMemManager());
- 
-ExecutionEngine *JIT;
--#if 0
-+#if HAVE_LLVM >= 0x0302
-JIT = builder.create();
- #else
-/*
--* Workaround http://llvm.org/bugs/show_bug.cgi?id=12833
-+* Workaround http://llvm.org/PR12833
- */
-StringRef MArch = "";
-StringRef MCPU = "";
--- 
-2.1.0
-

Deleted: 0002-gallivm-set-mcpu-when-initializing-llvm-execution-en.patch
===
--- 0002-gallivm-set-mcpu-when-initializing-llvm-execution-en.patch 
2014-09-20 21:14:31 UTC (rev 222524)
+++ 0002-gallivm-set-mcpu-when-initializing-llvm-execution-en.patch 
2014-09-20 22:01:44 UTC (rev 222525)
@@ -1,77 +0,0 @@
-From ebe30fd4d4a90219431b6947f233473b2cf518a5 Mon Sep 17 00:00:00 2001
-From: Roland Scheidegger 
-Date: Thu, 19 Jun 2014 03:27:26 +0200
-Subject: [PATCH 2/2] gallivm: set mcpu when initializing llvm execution engine
-
-Previously llvm detected cpu features automatically when the execution engine
-was created (based on host cpu). This is no longer the case, which meant llvm
-was then not able to emit some of the intrinsics we used as we didn't specify
-any sse attributes (only on avx supporting systems this was not a problem since
-despite at least some llvm versions enabling it anyway we always set this
-manually). So, instead of trying to figure out which MAttrs to set just set
-MCPU.
-
-This fixes https://bugs.freedesktop.org/show_bug.cgi?id=77493.
-
-Reviewed-by: Jose Fonseca 
-Tested-by: Vinson Lee 
-(cherry picked from commit cad60420d5ea36a4b6fa2e6c91317f71423aa63e)

- src/gallium/auxiliary/gallivm/lp_bld_misc.cpp | 24 ++--
- 1 file changed, 22 insertions(+), 2 deletions(-)
-
-diff --git a/src/gallium/auxiliary/gallivm/lp_bld_misc.cpp 
b/src/gallium/auxiliary/gallivm/lp_bld_misc.cpp
-index 45c985d..395ac7b 100644
 a/src/gallium/auxiliary/gallivm/lp_bld_misc.cpp
-+++ b/src/gallium/auxiliary/gallivm/lp_bld_misc.cpp
-@@ -59,6 +59,7 @@
- #include 
- #endif
- #include 
-+#include 
- #include 
- 
- #if HAVE_LLVM >= 0x0300
-@@ -309,8 +310,8 @@ 
lp_build_create_jit_compiler_for_module(LLVMExecutionEngineRef *OutJIT,
-   /*
-* AVX feature is not automatically detected from CPUID by the X86 
target
-* yet, because the old (yet default) JIT engine is not capable of
--   * emitting the opcodes.  But as we're using MCJIT here, it is safe to
--   * add set this attribute.
-+   * emitting the opcodes. On newer llvm versions it is and at least some
-+   * versions (tested with 3.3) will emit avx opcodes without this anyway.
-*/
-   MAttrs.push_back("+avx");
-   if (util_cpu_caps.has_f16c) {
-@@ -318,9 +319,

[arch-commits] Commit in mesa/repos (testing-i686)

2011-08-01 Thread Ionut Biru
Date: Monday, August 1, 2011 @ 09:02:38
  Author: ibiru
Revision: 134100

archrelease: copy trunk to testing-i686

Added:
  mesa/repos/testing-i686/



[arch-commits] Commit in mesa/repos (testing-i686)

2011-08-01 Thread Ionut Biru
Date: Monday, August 1, 2011 @ 09:02:25
  Author: ibiru
Revision: 134099

archrelease: remove testing-i686

Deleted:
  mesa/repos/testing-i686/



[arch-commits] Commit in mesa/repos (testing-i686)

2011-07-31 Thread Ionut Biru
Date: Sunday, July 31, 2011 @ 07:31:51
  Author: ibiru
Revision: 133991

archrelease: copy trunk to testing-i686

Added:
  mesa/repos/testing-i686/



[arch-commits] Commit in mesa/repos (testing-i686)

2011-07-31 Thread Ionut Biru
Date: Sunday, July 31, 2011 @ 07:31:36
  Author: ibiru
Revision: 133990

archrelease: remove testing-i686

Deleted:
  mesa/repos/testing-i686/



[arch-commits] Commit in mesa/repos (testing-i686)

2011-07-26 Thread Ionut Biru
Date: Tuesday, July 26, 2011 @ 08:31:16
  Author: ibiru
Revision: 132823

archrelease: copy trunk to testing-i686

Added:
  mesa/repos/testing-i686/



[arch-commits] Commit in mesa/repos (testing-i686)

2011-07-26 Thread Ionut Biru
Date: Tuesday, July 26, 2011 @ 08:31:01
  Author: ibiru
Revision: 132821

archrelease: remove testing-i686

Deleted:
  mesa/repos/testing-i686/



[arch-commits] Commit in mesa/repos (testing-i686)

2011-07-20 Thread andyrtr
Date: Wednesday, July 20, 2011 @ 03:12:43
  Author: andyrtr
Revision: 132097

archrelease: copy trunk to testing-i686

Added:
  mesa/repos/testing-i686/



[arch-commits] Commit in mesa/repos (testing-i686)

2011-07-20 Thread andyrtr
Date: Wednesday, July 20, 2011 @ 03:12:24
  Author: andyrtr
Revision: 132096

archrelease: remove testing-i686

Deleted:
  mesa/repos/testing-i686/



[arch-commits] Commit in mesa/repos (testing-i686)

2011-07-13 Thread andyrtr
Date: Wednesday, July 13, 2011 @ 11:21:23
  Author: andyrtr
Revision: 131698

archrelease: copy trunk to testing-i686

Added:
  mesa/repos/testing-i686/



[arch-commits] Commit in mesa/repos (testing-i686)

2011-07-13 Thread andyrtr
Date: Wednesday, July 13, 2011 @ 11:21:04
  Author: andyrtr
Revision: 131697

archrelease: remove testing-i686

Deleted:
  mesa/repos/testing-i686/



[arch-commits] Commit in mesa/repos (testing-i686)

2011-07-11 Thread andyrtr
Date: Monday, July 11, 2011 @ 12:28:11
  Author: andyrtr
Revision: 131190

archrelease: copy trunk to testing-i686

Added:
  mesa/repos/testing-i686/



[arch-commits] Commit in mesa/repos (testing-i686)

2011-07-11 Thread andyrtr
Date: Monday, July 11, 2011 @ 12:27:53
  Author: andyrtr
Revision: 131189

archrelease: remove testing-i686

Deleted:
  mesa/repos/testing-i686/



[arch-commits] Commit in mesa/repos (testing-i686)

2011-07-10 Thread andyrtr
Date: Sunday, July 10, 2011 @ 05:28:57
  Author: andyrtr
Revision: 131081

archrelease: copy trunk to testing-i686

Added:
  mesa/repos/testing-i686/



[arch-commits] Commit in mesa/repos (testing-i686)

2011-07-10 Thread andyrtr
Date: Sunday, July 10, 2011 @ 05:28:41
  Author: andyrtr
Revision: 131080

archrelease: remove testing-i686

Deleted:
  mesa/repos/testing-i686/



[arch-commits] Commit in mesa/repos (testing-i686)

2011-07-09 Thread andyrtr
Date: Saturday, July 9, 2011 @ 09:04:04
  Author: andyrtr
Revision: 131011

archrelease: copy trunk to testing-i686

Added:
  mesa/repos/testing-i686/



[arch-commits] Commit in mesa/repos (testing-i686)

2011-07-09 Thread andyrtr
Date: Saturday, July 9, 2011 @ 09:03:46
  Author: andyrtr
Revision: 131010

archrelease: remove testing-i686

Deleted:
  mesa/repos/testing-i686/



[arch-commits] Commit in mesa/repos (testing-i686)

2011-07-07 Thread andyrtr
Date: Thursday, July 7, 2011 @ 23:57:49
  Author: andyrtr
Revision: 130809

archrelease: copy trunk to testing-i686

Added:
  mesa/repos/testing-i686/



[arch-commits] Commit in mesa/repos (testing-i686)

2011-07-07 Thread andyrtr
Date: Thursday, July 7, 2011 @ 23:57:33
  Author: andyrtr
Revision: 130808

archrelease: remove testing-i686

Deleted:
  mesa/repos/testing-i686/



[arch-commits] Commit in mesa/repos (testing-i686)

2011-07-06 Thread andyrtr
Date: Wednesday, July 6, 2011 @ 12:36:04
  Author: andyrtr
Revision: 130491

archrelease: copy trunk to testing-i686

Added:
  mesa/repos/testing-i686/



[arch-commits] Commit in mesa/repos (testing-i686)

2011-07-06 Thread andyrtr
Date: Wednesday, July 6, 2011 @ 12:35:47
  Author: andyrtr
Revision: 130490

archrelease: remove testing-i686

Deleted:
  mesa/repos/testing-i686/



[arch-commits] Commit in mesa/repos (testing-i686)

2011-06-17 Thread andyrtr
Date: Friday, June 17, 2011 @ 05:07:44
  Author: andyrtr
Revision: 127629

archrelease: copy trunk to testing-i686

Added:
  mesa/repos/testing-i686/



[arch-commits] Commit in mesa/repos (testing-i686)

2011-06-17 Thread andyrtr
Date: Friday, June 17, 2011 @ 05:07:26
  Author: andyrtr
Revision: 127628

archrelease: remove testing-i686

Deleted:
  mesa/repos/testing-i686/



[arch-commits] Commit in mesa/repos (testing-i686)

2011-06-16 Thread andyrtr
Date: Thursday, June 16, 2011 @ 12:51:19
  Author: andyrtr
Revision: 127573

archrelease: copy trunk to testing-i686

Added:
  mesa/repos/testing-i686/



[arch-commits] Commit in mesa/repos (testing-i686)

2011-06-16 Thread andyrtr
Date: Thursday, June 16, 2011 @ 12:51:02
  Author: andyrtr
Revision: 127572

archrelease: remove testing-i686

Deleted:
  mesa/repos/testing-i686/



[arch-commits] Commit in mesa/repos (testing-i686)

2011-06-12 Thread andyrtr
Date: Sunday, June 12, 2011 @ 07:13:06
  Author: andyrtr
Revision: 127286

archrelease: copy trunk to testing-i686

Added:
  mesa/repos/testing-i686/



[arch-commits] Commit in mesa/repos (testing-i686)

2011-06-12 Thread andyrtr
Date: Sunday, June 12, 2011 @ 07:12:44
  Author: andyrtr
Revision: 127285

archrelease: remove testing-i686

Deleted:
  mesa/repos/testing-i686/



[arch-commits] Commit in mesa/repos (testing-i686)

2011-05-31 Thread andyrtr
Date: Tuesday, May 31, 2011 @ 15:03:45
  Author: andyrtr
Revision: 125910

archrelease: copy trunk to testing-i686

Added:
  mesa/repos/testing-i686/



[arch-commits] Commit in mesa/repos (testing-i686)

2011-05-31 Thread andyrtr
Date: Tuesday, May 31, 2011 @ 15:03:29
  Author: andyrtr
Revision: 125909

archrelease: remove testing-i686

Deleted:
  mesa/repos/testing-i686/



[arch-commits] Commit in mesa/repos (testing-i686)

2011-05-26 Thread andyrtr
Date: Thursday, May 26, 2011 @ 16:49:31
  Author: andyrtr
Revision: 125603

archrelease: copy trunk to testing-i686

Added:
  mesa/repos/testing-i686/



[arch-commits] Commit in mesa/repos (testing-i686)

2011-05-26 Thread andyrtr
Date: Thursday, May 26, 2011 @ 16:49:10
  Author: andyrtr
Revision: 125602

archrelease: remove testing-i686

Deleted:
  mesa/repos/testing-i686/



[arch-commits] Commit in mesa/repos (testing-i686)

2011-05-26 Thread andyrtr
Date: Thursday, May 26, 2011 @ 15:19:42
  Author: andyrtr
Revision: 125566

archrelease: copy trunk to testing-i686

Added:
  mesa/repos/testing-i686/



[arch-commits] Commit in mesa/repos (testing-i686)

2011-05-26 Thread andyrtr
Date: Thursday, May 26, 2011 @ 15:19:27
  Author: andyrtr
Revision: 125565

archrelease: remove testing-i686

Deleted:
  mesa/repos/testing-i686/



[arch-commits] Commit in mesa/repos (testing-i686)

2011-04-28 Thread andyrtr
Date: Friday, April 29, 2011 @ 01:13:01
  Author: andyrtr
Revision: 121131

archrelease: copy trunk to testing-i686

Added:
  mesa/repos/testing-i686/



[arch-commits] Commit in mesa/repos (testing-i686)

2011-04-28 Thread andyrtr
Date: Friday, April 29, 2011 @ 01:12:44
  Author: andyrtr
Revision: 121130

archrelease: remove testing-i686

Deleted:
  mesa/repos/testing-i686/



[arch-commits] Commit in mesa/repos (testing-i686)

2011-04-28 Thread andyrtr
Date: Friday, April 29, 2011 @ 01:07:49
  Author: andyrtr
Revision: 121129

archrelease: copy trunk to testing-i686

Added:
  mesa/repos/testing-i686/



[arch-commits] Commit in mesa/repos (testing-i686)

2011-04-28 Thread andyrtr
Date: Friday, April 29, 2011 @ 01:07:32
  Author: andyrtr
Revision: 121128

archrelease: remove testing-i686

Deleted:
  mesa/repos/testing-i686/



[arch-commits] Commit in mesa/repos (testing-i686)

2011-04-12 Thread andyrtr
Date: Tuesday, April 12, 2011 @ 12:55:35
  Author: andyrtr
Revision: 119616

archrelease: copy trunk to testing-i686

Added:
  mesa/repos/testing-i686/



[arch-commits] Commit in mesa/repos (testing-i686)

2011-04-10 Thread Ionut Biru
Date: Sunday, April 10, 2011 @ 16:12:44
  Author: ibiru
Revision: 119077

archrelease: copy trunk to testing-i686

Added:
  mesa/repos/testing-i686/



[arch-commits] Commit in mesa/repos (testing-i686)

2011-04-10 Thread Ionut Biru
Date: Sunday, April 10, 2011 @ 16:12:32
  Author: ibiru
Revision: 119076

archrelease: remove testing-i686

Deleted:
  mesa/repos/testing-i686/



[arch-commits] Commit in mesa/repos (testing-i686)

2011-04-10 Thread andyrtr
Date: Sunday, April 10, 2011 @ 14:17:37
  Author: andyrtr
Revision: 119057

archrelease: copy trunk to testing-i686

Added:
  mesa/repos/testing-i686/



[arch-commits] Commit in mesa/repos (testing-i686)

2011-04-10 Thread andyrtr
Date: Sunday, April 10, 2011 @ 14:17:12
  Author: andyrtr
Revision: 119056

archrelease: remove testing-i686

Deleted:
  mesa/repos/testing-i686/



[arch-commits] Commit in mesa/repos (testing-i686)

2011-04-03 Thread Ionut Biru
Date: Sunday, April 3, 2011 @ 13:26:13
  Author: ibiru
Revision: 117471

archrelease: copy trunk to testing-i686

Added:
  mesa/repos/testing-i686/



[arch-commits] Commit in mesa/repos (testing-i686)

2011-02-15 Thread andyrtr
Date: Tuesday, February 15, 2011 @ 11:12:23
  Author: andyrtr
Revision: 110054

archrelease: copy trunk to testing-i686

Added:
  mesa/repos/testing-i686/



[arch-commits] Commit in mesa/repos (testing-i686)

2011-02-06 Thread andyrtr
Date: Sunday, February 6, 2011 @ 10:09:13
  Author: andyrtr
Revision: 109148

archrelease: copy trunk to testing-i686

Added:
  mesa/repos/testing-i686/



[arch-commits] Commit in mesa/repos (testing-i686)

2011-02-06 Thread andyrtr
Date: Sunday, February 6, 2011 @ 10:08:54
  Author: andyrtr
Revision: 109147

archrelease: remove testing-i686

Deleted:
  mesa/repos/testing-i686/



[arch-commits] Commit in mesa/repos (testing-i686)

2011-02-06 Thread andyrtr
Date: Sunday, February 6, 2011 @ 08:34:47
  Author: andyrtr
Revision: 109138

archrelease: copy trunk to testing-i686

Added:
  mesa/repos/testing-i686/



[arch-commits] Commit in mesa/repos (testing-i686)

2011-01-08 Thread andyrtr
Date: Saturday, January 8, 2011 @ 17:57:25
  Author: andyrtr
Revision: 105445

archrelease: copy trunk to testing-i686

Added:
  mesa/repos/testing-i686/



[arch-commits] Commit in mesa/repos (testing-i686)

2011-01-08 Thread andyrtr
Date: Saturday, January 8, 2011 @ 17:57:05
  Author: andyrtr
Revision: 105444

archrelease: remove testing-i686

Deleted:
  mesa/repos/testing-i686/



[arch-commits] Commit in mesa/repos (testing-i686)

2010-12-30 Thread andyrtr
Date: Thursday, December 30, 2010 @ 04:39:29
  Author: andyrtr
Revision: 104168

archrelease: copy trunk to testing-i686

Added:
  mesa/repos/testing-i686/



[arch-commits] Commit in mesa/repos (testing-i686)

2010-12-30 Thread andyrtr
Date: Thursday, December 30, 2010 @ 04:39:11
  Author: andyrtr
Revision: 104167

archrelease: remove testing-i686

Deleted:
  mesa/repos/testing-i686/



[arch-commits] Commit in mesa/repos (testing-i686)

2010-12-22 Thread andyrtr
Date: Wednesday, December 22, 2010 @ 15:12:41
  Author: andyrtr
Revision: 103766

archrelease: copy trunk to testing-i686

Added:
  mesa/repos/testing-i686/



[arch-commits] Commit in mesa/repos (testing-i686)

2010-12-22 Thread andyrtr
Date: Wednesday, December 22, 2010 @ 15:12:24
  Author: andyrtr
Revision: 103765

archrelease: remove testing-i686

Deleted:
  mesa/repos/testing-i686/



[arch-commits] Commit in mesa/repos (testing-i686)

2010-12-17 Thread andyrtr
Date: Friday, December 17, 2010 @ 14:13:59
  Author: andyrtr
Revision: 103307

archrelease: copy trunk to testing-i686

Added:
  mesa/repos/testing-i686/



[arch-commits] Commit in mesa/repos (testing-i686)

2010-12-07 Thread andyrtr
Date: Tuesday, December 7, 2010 @ 15:30:29
  Author: andyrtr
Revision: 102426

archrelease: copy trunk to testing-i686

Added:
  mesa/repos/testing-i686/



[arch-commits] Commit in mesa/repos (testing-i686)

2010-12-07 Thread andyrtr
Date: Tuesday, December 7, 2010 @ 15:30:11
  Author: andyrtr
Revision: 102425

archrelease: remove testing-i686

Deleted:
  mesa/repos/testing-i686/



[arch-commits] Commit in mesa/repos (testing-i686)

2010-12-07 Thread andyrtr
Date: Tuesday, December 7, 2010 @ 13:36:18
  Author: andyrtr
Revision: 102401

archrelease: copy trunk to testing-i686

Added:
  mesa/repos/testing-i686/



[arch-commits] Commit in mesa/repos (testing-i686)

2010-10-09 Thread andyrtr
Date: Saturday, October 9, 2010 @ 09:01:46
  Author: andyrtr
Revision: 94676

archrelease: copy trunk to testing-i686

Added:
  mesa/repos/testing-i686/



[arch-commits] Commit in mesa/repos (testing-i686)

2010-08-26 Thread Jan de Groot
Date: Thursday, August 26, 2010 @ 03:40:08
  Author: jgc
Revision: 88905

archrelease: copy trunk to testing-i686

Added:
  mesa/repos/testing-i686/



[arch-commits] Commit in mesa/repos (testing-i686)

2010-08-26 Thread Jan de Groot
Date: Thursday, August 26, 2010 @ 03:40:00
  Author: jgc
Revision: 88904

archrelease: remove testing-i686

Deleted:
  mesa/repos/testing-i686/



[arch-commits] Commit in mesa/repos (testing-i686)

2010-08-23 Thread Jan de Groot
Date: Monday, August 23, 2010 @ 08:42:08
  Author: jgc
Revision: 88426

archrelease: copy trunk to testing-i686

Added:
  mesa/repos/testing-i686/



[arch-commits] Commit in mesa/repos (testing-i686)

2010-05-26 Thread Jan de Groot
Date: Wednesday, May 26, 2010 @ 15:33:45
  Author: jgc
Revision: 81127

archrelease: copy trunk to testing-i686

Added:
  mesa/repos/testing-i686/



[arch-commits] Commit in mesa/repos (testing-i686)

2010-05-26 Thread Jan de Groot
Date: Wednesday, May 26, 2010 @ 15:33:37
  Author: jgc
Revision: 81126

archrelease: remove testing-i686

Deleted:
  mesa/repos/testing-i686/



[arch-commits] Commit in mesa/repos (testing-i686)

2010-04-28 Thread andyrtr
Date: Wednesday, April 28, 2010 @ 12:24:32
  Author: andyrtr
Revision: 78851

archrelease: copy trunk to testing-i686

Added:
  mesa/repos/testing-i686/



[arch-commits] Commit in mesa/repos (testing-i686)

2010-04-28 Thread andyrtr
Date: Wednesday, April 28, 2010 @ 12:24:07
  Author: andyrtr
Revision: 78850

archrelease: remove testing-i686

Deleted:
  mesa/repos/testing-i686/



[arch-commits] Commit in mesa/repos (testing-i686 xorg18-i686)

2010-04-27 Thread Jan de Groot
Date: Tuesday, April 27, 2010 @ 17:22:34
  Author: jgc
Revision: 78727

db-move: moved mesa from [xorg18] to [testing] (i686)

Added:
  mesa/repos/testing-i686/
Deleted:
  mesa/repos/xorg18-i686/



[arch-commits] Commit in mesa/repos (testing-i686)

2010-03-29 Thread andyrtr
Date: Monday, March 29, 2010 @ 05:20:49
  Author: andyrtr
Revision: 73890

archrelease: copy trunk to testing-i686

Added:
  mesa/repos/testing-i686/



[arch-commits] Commit in mesa/repos (testing-i686)

2010-03-29 Thread andyrtr
Date: Monday, March 29, 2010 @ 05:20:28
  Author: andyrtr
Revision: 73889

archrelease: remove testing-i686

Deleted:
  mesa/repos/testing-i686/



[arch-commits] Commit in mesa/repos (testing-i686)

2010-03-29 Thread andyrtr
Date: Monday, March 29, 2010 @ 05:16:39
  Author: andyrtr
Revision: 73886

archrelease: copy trunk to testing-i686

Added:
  mesa/repos/testing-i686/



[arch-commits] Commit in mesa/repos (testing-i686)

2010-03-29 Thread andyrtr
Date: Monday, March 29, 2010 @ 04:46:01
  Author: andyrtr
Revision: 73880

archrelease: remove testing-i686

Deleted:
  mesa/repos/testing-i686/



[arch-commits] Commit in mesa/repos (testing-i686)

2010-03-24 Thread andyrtr
Date: Wednesday, March 24, 2010 @ 15:36:39
  Author: andyrtr
Revision: 73298

archrelease: copy trunk to testing-i686

Added:
  mesa/repos/testing-i686/



[arch-commits] Commit in mesa/repos (testing-i686)

2010-03-24 Thread andyrtr
Date: Wednesday, March 24, 2010 @ 15:36:18
  Author: andyrtr
Revision: 73297

archrelease: remove testing-i686

Deleted:
  mesa/repos/testing-i686/



[arch-commits] Commit in mesa/repos (testing-i686)

2010-03-18 Thread andyrtr
Date: Thursday, March 18, 2010 @ 13:52:08
  Author: andyrtr
Revision: 72592

archrelease: copy trunk to testing-i686

Added:
  mesa/repos/testing-i686/



[arch-commits] Commit in mesa/repos (testing-i686)

2010-03-18 Thread andyrtr
Date: Thursday, March 18, 2010 @ 13:51:44
  Author: andyrtr
Revision: 72591

archrelease: remove testing-i686

Deleted:
  mesa/repos/testing-i686/



[arch-commits] Commit in mesa/repos (testing-i686)

2010-03-14 Thread andyrtr
Date: Sunday, March 14, 2010 @ 07:23:26
  Author: andyrtr
Revision: 72347

archrelease: copy trunk to testing-i686

Added:
  mesa/repos/testing-i686/



[arch-commits] Commit in mesa/repos (testing-i686)

2010-03-14 Thread andyrtr
Date: Sunday, March 14, 2010 @ 07:23:04
  Author: andyrtr
Revision: 72346

archrelease: remove testing-i686

Deleted:
  mesa/repos/testing-i686/



[arch-commits] Commit in mesa/repos (testing-i686)

2010-02-27 Thread andyrtr
Date: Saturday, February 27, 2010 @ 12:08:06
  Author: andyrtr
Revision: 70624

archrelease: copy trunk to testing-i686

Added:
  mesa/repos/testing-i686/



[arch-commits] Commit in mesa/repos (testing-i686)

2009-12-26 Thread Jan de Groot
Date: Saturday, December 26, 2009 @ 06:28:44
  Author: jgc
Revision: 61816

Initialized merge tracking via "svnmerge" with revisions "1-61814" from 
svn+ssh://gerolde.archlinux.org/srv/svn-packages/mesa/trunk

Modified:
  mesa/repos/testing-i686/  (properties)


Property changes on: mesa/repos/testing-i686
___
Added: svnmerge-integrated
   + /mesa/trunk:1-61814



[arch-commits] Commit in mesa/repos (testing-i686)

2009-12-26 Thread Jan de Groot
Date: Saturday, December 26, 2009 @ 06:28:30
  Author: jgc
Revision: 61815

archrelease: new repo testing-i686

Added:
  mesa/repos/testing-i686/