[arch-commits] Commit in bzr/repos (2 files)

Maxime Gauduin alucryd at archlinux.org
Sat Feb 4 19:46:38 UTC 2017


    Date: Saturday, February 4, 2017 @ 19:46:38
  Author: alucryd
Revision: 288048

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

Deleted:
  bzr/repos/extra-i686/bzr-lazy-regex.patch
  bzr/repos/extra-x86_64/bzr-lazy-regex.patch

-----------------------------------+
 extra-i686/bzr-lazy-regex.patch   |   20 --------------------
 extra-x86_64/bzr-lazy-regex.patch |   20 --------------------
 2 files changed, 40 deletions(-)

Deleted: extra-i686/bzr-lazy-regex.patch
===================================================================
--- extra-i686/bzr-lazy-regex.patch	2017-02-04 19:29:08 UTC (rev 288047)
+++ extra-i686/bzr-lazy-regex.patch	2017-02-04 19:46:38 UTC (rev 288048)
@@ -1,20 +0,0 @@
-diff -u bzrlib/lazy_regex.py bzrlib/lazy_regex.py
---- bzrlib/lazy_regex.py	2017-01-15 20:36:48 +0000
-+++ bzrlib/lazy_regex.py	2017-01-30 09:08:25 +0000
-@@ -1,4 +1,4 @@
--# Copyright (C) 2006 Canonical Ltd
-+# Copyright (C) 2006, 2008-2011, 2017 Canonical Ltd
- #
- # This program is free software; you can redistribute it and/or modify
- # it under the terms of the GNU General Public License as published by
-@@ -133,0 +134,10 @@
-+
-+
-+# Some libraries calls re.finditer which fails it if receives a LazyRegex.
-+if getattr(re, 'finditer', False):
-+    def finditer_public(pattern, string, flags=0):
-+        if isinstance(pattern, LazyRegex):
-+            return pattern.finditer(string)
-+        else:
-+            return _real_re_compile(pattern, flags).finditer(string)
-+    re.finditer = finditer_public

Deleted: extra-x86_64/bzr-lazy-regex.patch
===================================================================
--- extra-x86_64/bzr-lazy-regex.patch	2017-02-04 19:29:08 UTC (rev 288047)
+++ extra-x86_64/bzr-lazy-regex.patch	2017-02-04 19:46:38 UTC (rev 288048)
@@ -1,20 +0,0 @@
-diff -u bzrlib/lazy_regex.py bzrlib/lazy_regex.py
---- bzrlib/lazy_regex.py	2017-01-15 20:36:48 +0000
-+++ bzrlib/lazy_regex.py	2017-01-30 09:08:25 +0000
-@@ -1,4 +1,4 @@
--# Copyright (C) 2006 Canonical Ltd
-+# Copyright (C) 2006, 2008-2011, 2017 Canonical Ltd
- #
- # This program is free software; you can redistribute it and/or modify
- # it under the terms of the GNU General Public License as published by
-@@ -133,0 +134,10 @@
-+
-+
-+# Some libraries calls re.finditer which fails it if receives a LazyRegex.
-+if getattr(re, 'finditer', False):
-+    def finditer_public(pattern, string, flags=0):
-+        if isinstance(pattern, LazyRegex):
-+            return pattern.finditer(string)
-+        else:
-+            return _real_re_compile(pattern, flags).finditer(string)
-+    re.finditer = finditer_public



More information about the arch-commits mailing list