all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#35818] [PATCH 01/31] gnu: mate-common: Use mirror://mate/ in source URI.
@ 2019-05-21  8:50 guy fleury iteriteka
  2019-05-21  8:50 ` [bug#35820] [PATCH 02/31] gnu: mate-icon-theme: " guy fleury iteriteka
                   ` (30 more replies)
  0 siblings, 31 replies; 36+ messages in thread
From: guy fleury iteriteka @ 2019-05-21  8:50 UTC (permalink / raw)
  To: 35818

* gnu/packages/mate.scm(mate-common)[source](uri): Use "mirror://mate/"
  instead of "https://pub.mate-desktop.org/releases/" directly.
---
 gnu/packages/mate.scm | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/gnu/packages/mate.scm b/gnu/packages/mate.scm
index f234d2c..9ab0bdd 100644
--- a/gnu/packages/mate.scm
+++ b/gnu/packages/mate.scm
@@ -79,8 +79,7 @@
     (source
      (origin
        (method url-fetch)
-       (uri (string-append "https://pub.mate-desktop.org/releases/"
-                           (version-major+minor version) "/"
+       (uri (string-append "mirror://mate/" (version-major+minor version) "/"
                            name "-" version ".tar.xz"))
        (sha256
         (base32
-- 
2.21.0

^ permalink raw reply related	[flat|nested] 36+ messages in thread

* [bug#35820] [PATCH 02/31] gnu: mate-icon-theme: Use mirror://mate/ in source URI.
  2019-05-21  8:50 [bug#35818] [PATCH 01/31] gnu: mate-common: Use mirror://mate/ in source URI guy fleury iteriteka
@ 2019-05-21  8:50 ` guy fleury iteriteka
  2019-05-21  8:50 ` [bug#35819] [PATCH 03/31] gnu: mate-icon-theme-faenza: " guy fleury iteriteka
                   ` (29 subsequent siblings)
  30 siblings, 0 replies; 36+ messages in thread
From: guy fleury iteriteka @ 2019-05-21  8:50 UTC (permalink / raw)
  To: 35820

* gnu/packages/mate.scm(mate-icon-theme)[source](uri): Use "mirror://mate/"
  instead of "https://pub.mate-desktop.org/releases/" directly.
---
 gnu/packages/mate.scm | 16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)

diff --git a/gnu/packages/mate.scm b/gnu/packages/mate.scm
index 9ab0bdd..faca663 100644
--- a/gnu/packages/mate.scm
+++ b/gnu/packages/mate.scm
@@ -135,14 +135,14 @@ actions.")
   (package
     (name "mate-icon-theme")
     (version "1.22.0")
-    (source (origin
-              (method url-fetch)
-              (uri (string-append "https://pub.mate-desktop.org/releases/"
-                                  (version-major+minor version) "/"
-                                  name "-" version ".tar.xz"))
-              (sha256
-               (base32
-                "090vfxpn1b1wwvkilv1j3cx4swdm4z0s7xyvhvqhdzj58zsf2000"))))
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "mirror://mate/" (version-major+minor version) "/"
+                           name "-" version ".tar.xz"))
+       (sha256
+        (base32
+         "090vfxpn1b1wwvkilv1j3cx4swdm4z0s7xyvhvqhdzj58zsf2000"))))
     (build-system gnu-build-system)
     (native-inputs
      `(("pkg-config" ,pkg-config)
-- 
2.21.0

^ permalink raw reply related	[flat|nested] 36+ messages in thread

* [bug#35819] [PATCH 03/31] gnu: mate-icon-theme-faenza: Use mirror://mate/ in source URI.
  2019-05-21  8:50 [bug#35818] [PATCH 01/31] gnu: mate-common: Use mirror://mate/ in source URI guy fleury iteriteka
  2019-05-21  8:50 ` [bug#35820] [PATCH 02/31] gnu: mate-icon-theme: " guy fleury iteriteka
@ 2019-05-21  8:50 ` guy fleury iteriteka
  2019-05-21  8:50 ` [bug#35821] [PATCH 04/31] gnu: mate-desktop: " guy fleury iteriteka
                   ` (28 subsequent siblings)
  30 siblings, 0 replies; 36+ messages in thread
From: guy fleury iteriteka @ 2019-05-21  8:50 UTC (permalink / raw)
  To: 35819

* gnu/packages/mate.scm(mate-icon-theme-faenza)[source](uri): Use
  "mirror://mate/" instead of "https://pub.mate-desktop.org/releases/"
  directly.
---
 gnu/packages/mate.scm | 16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)

diff --git a/gnu/packages/mate.scm b/gnu/packages/mate.scm
index faca663..eb909df 100644
--- a/gnu/packages/mate.scm
+++ b/gnu/packages/mate.scm
@@ -158,14 +158,14 @@ actions.")
   (package
     (name "mate-icon-theme-faenza")
     (version "1.20.0")
-    (source (origin
-              (method url-fetch)
-              (uri (string-append "https://pub.mate-desktop.org/releases/"
-                                  (version-major+minor version) "/"
-                                  name "-" version ".tar.xz"))
-              (sha256
-               (base32
-                "000vr9cnbl2qlysf2gyg1lsjirqdzmwrnh6d3hyrsfc0r2vh4wna"))))
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "mirror://mate/" (version-major+minor version) "/"
+                           name "-" version ".tar.xz"))
+       (sha256
+        (base32
+         "000vr9cnbl2qlysf2gyg1lsjirqdzmwrnh6d3hyrsfc0r2vh4wna"))))
     (build-system gnu-build-system)
     (arguments
      `(#:phases
-- 
2.21.0

^ permalink raw reply related	[flat|nested] 36+ messages in thread

* [bug#35821] [PATCH 04/31] gnu: mate-desktop: Use mirror://mate/ in source URI.
  2019-05-21  8:50 [bug#35818] [PATCH 01/31] gnu: mate-common: Use mirror://mate/ in source URI guy fleury iteriteka
  2019-05-21  8:50 ` [bug#35820] [PATCH 02/31] gnu: mate-icon-theme: " guy fleury iteriteka
  2019-05-21  8:50 ` [bug#35819] [PATCH 03/31] gnu: mate-icon-theme-faenza: " guy fleury iteriteka
@ 2019-05-21  8:50 ` guy fleury iteriteka
  2019-05-21  8:50 ` [bug#35822] [PATCH 05/31] gnu: libmateweather: " guy fleury iteriteka
                   ` (27 subsequent siblings)
  30 siblings, 0 replies; 36+ messages in thread
From: guy fleury iteriteka @ 2019-05-21  8:50 UTC (permalink / raw)
  To: 35821

* gnu/packages/mate.scm(mate-desktop)[source](uri): Use "mirror://mate/"
  instead of "https://pub.mate-desktop.org/releases/" directly.
---
 gnu/packages/mate.scm | 16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)

diff --git a/gnu/packages/mate.scm b/gnu/packages/mate.scm
index eb909df..1c20fd5 100644
--- a/gnu/packages/mate.scm
+++ b/gnu/packages/mate.scm
@@ -224,14 +224,14 @@ themes for both gtk+-2 and gtk+-3.")
   (package
     (name "mate-desktop")
     (version "1.22.0")
-    (source (origin
-              (method url-fetch)
-              (uri (string-append "https://pub.mate-desktop.org/releases/"
-                                  (version-major+minor version) "/"
-                                  name "-" version ".tar.xz"))
-              (sha256
-               (base32
-                "09gn840p6qds21kxab4pidjd53g76s76i7178fdibrz462mda217"))))
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "mirror://mate/" (version-major+minor version) "/"
+                           name "-" version ".tar.xz"))
+       (sha256
+        (base32
+         "09gn840p6qds21kxab4pidjd53g76s76i7178fdibrz462mda217"))))
     (build-system gnu-build-system)
     (native-inputs
      `(("pkg-config" ,pkg-config)
-- 
2.21.0

^ permalink raw reply related	[flat|nested] 36+ messages in thread

* [bug#35822] [PATCH 05/31] gnu: libmateweather: Use mirror://mate/ in source URI.
  2019-05-21  8:50 [bug#35818] [PATCH 01/31] gnu: mate-common: Use mirror://mate/ in source URI guy fleury iteriteka
                   ` (2 preceding siblings ...)
  2019-05-21  8:50 ` [bug#35821] [PATCH 04/31] gnu: mate-desktop: " guy fleury iteriteka
@ 2019-05-21  8:50 ` guy fleury iteriteka
  2019-05-21  8:50 ` [bug#35823] [PATCH 06/31] gnu: mate-terminal: " guy fleury iteriteka
                   ` (26 subsequent siblings)
  30 siblings, 0 replies; 36+ messages in thread
From: guy fleury iteriteka @ 2019-05-21  8:50 UTC (permalink / raw)
  To: 35822

* gnu/packages/mate.scm(libmateweather)[source](uri): Use "mirror://mate/"
  instead of "https://pub.mate-desktop.org/releases/" directly.
---
 gnu/packages/mate.scm | 16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)

diff --git a/gnu/packages/mate.scm b/gnu/packages/mate.scm
index 1c20fd5..53ef2d8 100644
--- a/gnu/packages/mate.scm
+++ b/gnu/packages/mate.scm
@@ -258,14 +258,14 @@ desktop and the mate-about program.")
   (package
     (name "libmateweather")
     (version "1.22.0")
-    (source (origin
-              (method url-fetch)
-              (uri (string-append "https://pub.mate-desktop.org/releases/"
-                                  (version-major+minor version) "/"
-                                  name "-" version ".tar.xz"))
-              (sha256
-               (base32
-                "1ribgcwl4ncfbcf9bkcbxrgc7yzajdnxg12837psngymkqswlp6a"))))
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "mirror://mate/" (version-major+minor version) "/"
+                           name "-" version ".tar.xz"))
+       (sha256
+        (base32
+         "1ribgcwl4ncfbcf9bkcbxrgc7yzajdnxg12837psngymkqswlp6a"))))
     (build-system gnu-build-system)
     (arguments
      '(#:configure-flags
-- 
2.21.0

^ permalink raw reply related	[flat|nested] 36+ messages in thread

* [bug#35823] [PATCH 06/31] gnu: mate-terminal: Use mirror://mate/ in source URI.
  2019-05-21  8:50 [bug#35818] [PATCH 01/31] gnu: mate-common: Use mirror://mate/ in source URI guy fleury iteriteka
                   ` (3 preceding siblings ...)
  2019-05-21  8:50 ` [bug#35822] [PATCH 05/31] gnu: libmateweather: " guy fleury iteriteka
@ 2019-05-21  8:50 ` guy fleury iteriteka
  2019-05-21  8:50 ` [bug#35824] [PATCH 07/31] gnu: mate-session-manager: " guy fleury iteriteka
                   ` (25 subsequent siblings)
  30 siblings, 0 replies; 36+ messages in thread
From: guy fleury iteriteka @ 2019-05-21  8:50 UTC (permalink / raw)
  To: 35823

* gnu/packages/mate.scm(mate-terminal)[source](uri): Use "mirror://mate/"
  instead of "https://pub.mate-desktop.org/releases/" directly.
---
 gnu/packages/mate.scm | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/gnu/packages/mate.scm b/gnu/packages/mate.scm
index 53ef2d8..70d854f 100644
--- a/gnu/packages/mate.scm
+++ b/gnu/packages/mate.scm
@@ -307,8 +307,7 @@ the MATE desktop environment.")
     (source
      (origin
        (method url-fetch)
-       (uri (string-append "https://pub.mate-desktop.org/releases/"
-                           (version-major+minor version) "/"
+       (uri (string-append "mirror://mate/" (version-major+minor version) "/"
                            name "-" version ".tar.xz"))
        (sha256
         (base32
-- 
2.21.0

^ permalink raw reply related	[flat|nested] 36+ messages in thread

* [bug#35824] [PATCH 07/31] gnu: mate-session-manager: Use mirror://mate/ in source URI.
  2019-05-21  8:50 [bug#35818] [PATCH 01/31] gnu: mate-common: Use mirror://mate/ in source URI guy fleury iteriteka
                   ` (4 preceding siblings ...)
  2019-05-21  8:50 ` [bug#35823] [PATCH 06/31] gnu: mate-terminal: " guy fleury iteriteka
@ 2019-05-21  8:50 ` guy fleury iteriteka
  2019-05-21  8:50 ` [bug#35825] [PATCH 08/31] gnu: mate-settings-daemon: " guy fleury iteriteka
                   ` (24 subsequent siblings)
  30 siblings, 0 replies; 36+ messages in thread
From: guy fleury iteriteka @ 2019-05-21  8:50 UTC (permalink / raw)
  To: 35824

* gnu/packages/mate.scm(mate-session-manager)[source](uri): Use
  "mirror://mate/" instead of "https://pub.mate-desktop.org/releases/"
  directly.
---
 gnu/packages/mate.scm | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/gnu/packages/mate.scm b/gnu/packages/mate.scm
index 70d854f..070c7b5 100644
--- a/gnu/packages/mate.scm
+++ b/gnu/packages/mate.scm
@@ -347,8 +347,7 @@ configurations (profiles).")
     (source
      (origin
        (method url-fetch)
-       (uri (string-append "https://pub.mate-desktop.org/releases/"
-                           (version-major+minor version) "/"
+       (uri (string-append "mirror://mate/" (version-major+minor version) "/"
                            name "-" version ".tar.xz"))
        (sha256
         (base32
-- 
2.21.0

^ permalink raw reply related	[flat|nested] 36+ messages in thread

* [bug#35825] [PATCH 08/31] gnu: mate-settings-daemon: Use mirror://mate/ in source URI.
  2019-05-21  8:50 [bug#35818] [PATCH 01/31] gnu: mate-common: Use mirror://mate/ in source URI guy fleury iteriteka
                   ` (5 preceding siblings ...)
  2019-05-21  8:50 ` [bug#35824] [PATCH 07/31] gnu: mate-session-manager: " guy fleury iteriteka
@ 2019-05-21  8:50 ` guy fleury iteriteka
  2019-05-21  8:50 ` [bug#35826] [PATCH 09/31] gnu: libmatemixer: " guy fleury iteriteka
                   ` (23 subsequent siblings)
  30 siblings, 0 replies; 36+ messages in thread
From: guy fleury iteriteka @ 2019-05-21  8:50 UTC (permalink / raw)
  To: 35825

* gnu/packages/mate.scm(mate-settings-daemon)[source](uri): Use
  "mirror://mate/" instead of "https://pub.mate-desktop.org/releases/"
  directly.
---
 gnu/packages/mate.scm | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/gnu/packages/mate.scm b/gnu/packages/mate.scm
index 070c7b5..5d8cae6 100644
--- a/gnu/packages/mate.scm
+++ b/gnu/packages/mate.scm
@@ -414,8 +414,7 @@ configuration program to choose applications starting on login.")
     (source
      (origin
        (method url-fetch)
-       (uri (string-append "https://pub.mate-desktop.org/releases/"
-                           (version-major+minor version) "/"
+       (uri (string-append "mirror://mate/" (version-major+minor version) "/"
                            name "-" version ".tar.xz"))
        (sha256
         (base32
-- 
2.21.0

^ permalink raw reply related	[flat|nested] 36+ messages in thread

* [bug#35826] [PATCH 09/31] gnu: libmatemixer: Use mirror://mate/ in source URI.
  2019-05-21  8:50 [bug#35818] [PATCH 01/31] gnu: mate-common: Use mirror://mate/ in source URI guy fleury iteriteka
                   ` (6 preceding siblings ...)
  2019-05-21  8:50 ` [bug#35825] [PATCH 08/31] gnu: mate-settings-daemon: " guy fleury iteriteka
@ 2019-05-21  8:50 ` guy fleury iteriteka
  2019-05-21  8:50 ` [bug#35827] [PATCH 10/31] gnu: libmatekbd: " guy fleury iteriteka
                   ` (22 subsequent siblings)
  30 siblings, 0 replies; 36+ messages in thread
From: guy fleury iteriteka @ 2019-05-21  8:50 UTC (permalink / raw)
  To: 35826

* gnu/packages/mate.scm(libmatemixer)[source](uri): Use "mirror://mate/"
  instead of "https://pub.mate-desktop.org/releases/" directly.
---
 gnu/packages/mate.scm | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/gnu/packages/mate.scm b/gnu/packages/mate.scm
index 5d8cae6..40828a8 100644
--- a/gnu/packages/mate.scm
+++ b/gnu/packages/mate.scm
@@ -456,8 +456,7 @@ configuration program to choose applications starting on login.")
     (source
      (origin
        (method url-fetch)
-       (uri (string-append "https://pub.mate-desktop.org/releases/"
-                           (version-major+minor version) "/"
+       (uri (string-append "mirror://mate/" (version-major+minor version) "/"
                            name "-" version ".tar.xz"))
        (sha256
         (base32
-- 
2.21.0

^ permalink raw reply related	[flat|nested] 36+ messages in thread

* [bug#35827] [PATCH 10/31] gnu: libmatekbd: Use mirror://mate/ in source URI.
  2019-05-21  8:50 [bug#35818] [PATCH 01/31] gnu: mate-common: Use mirror://mate/ in source URI guy fleury iteriteka
                   ` (7 preceding siblings ...)
  2019-05-21  8:50 ` [bug#35826] [PATCH 09/31] gnu: libmatemixer: " guy fleury iteriteka
@ 2019-05-21  8:50 ` guy fleury iteriteka
  2019-05-21  8:50 ` [bug#35828] [PATCH 11/31] gnu: mate-menus: " guy fleury iteriteka
                   ` (21 subsequent siblings)
  30 siblings, 0 replies; 36+ messages in thread
From: guy fleury iteriteka @ 2019-05-21  8:50 UTC (permalink / raw)
  To: 35827

* gnu/packages/mate.scm(libmatekbd)[source](uri): Use "mirror://mate/"
  instead of "https://pub.mate-desktop.org/releases/" directly.
---
 gnu/packages/mate.scm | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/gnu/packages/mate.scm b/gnu/packages/mate.scm
index 40828a8..3d777c6 100644
--- a/gnu/packages/mate.scm
+++ b/gnu/packages/mate.scm
@@ -485,8 +485,7 @@ sound systems.")
     (source
      (origin
        (method url-fetch)
-       (uri (string-append "https://pub.mate-desktop.org/releases/"
-                           (version-major+minor version) "/"
+       (uri (string-append "mirror://mate/" (version-major+minor version) "/"
                            name "-" version ".tar.xz"))
        (sha256
         (base32
-- 
2.21.0

^ permalink raw reply related	[flat|nested] 36+ messages in thread

* [bug#35828] [PATCH 11/31] gnu: mate-menus: Use mirror://mate/ in source URI.
  2019-05-21  8:50 [bug#35818] [PATCH 01/31] gnu: mate-common: Use mirror://mate/ in source URI guy fleury iteriteka
                   ` (8 preceding siblings ...)
  2019-05-21  8:50 ` [bug#35827] [PATCH 10/31] gnu: libmatekbd: " guy fleury iteriteka
@ 2019-05-21  8:50 ` guy fleury iteriteka
  2019-05-21  8:50 ` [bug#35830] [PATCH 12/31] gnu: mate-applets: " guy fleury iteriteka
                   ` (20 subsequent siblings)
  30 siblings, 0 replies; 36+ messages in thread
From: guy fleury iteriteka @ 2019-05-21  8:50 UTC (permalink / raw)
  To: 35828

* gnu/packages/mate.scm(mate-menus)[source](uri): Use "mirror://mate/"
  instead of "https://pub.mate-desktop.org/releases/" directly.
---
 gnu/packages/mate.scm | 16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)

diff --git a/gnu/packages/mate.scm b/gnu/packages/mate.scm
index 3d777c6..4f63fd1 100644
--- a/gnu/packages/mate.scm
+++ b/gnu/packages/mate.scm
@@ -513,14 +513,14 @@ MATE desktop environment.")
   (package
     (name "mate-menus")
     (version "1.22.0")
-    (source (origin
-              (method url-fetch)
-              (uri (string-append "https://pub.mate-desktop.org/releases/"
-                                  (version-major+minor version) "/"
-                                  name "-" version ".tar.xz"))
-              (sha256
-               (base32
-                "1lkakbf2f1815c146z4xp5f0h4lim6jzr02681wbvzalc6k97v5c"))))
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "mirror://mate/" (version-major+minor version) "/"
+                           name "-" version ".tar.xz"))
+       (sha256
+        (base32
+         "1lkakbf2f1815c146z4xp5f0h4lim6jzr02681wbvzalc6k97v5c"))))
     (build-system gnu-build-system)
     (arguments
      `(#:phases
-- 
2.21.0

^ permalink raw reply related	[flat|nested] 36+ messages in thread

* [bug#35830] [PATCH 12/31] gnu: mate-applets: Use mirror://mate/ in source URI.
  2019-05-21  8:50 [bug#35818] [PATCH 01/31] gnu: mate-common: Use mirror://mate/ in source URI guy fleury iteriteka
                   ` (9 preceding siblings ...)
  2019-05-21  8:50 ` [bug#35828] [PATCH 11/31] gnu: mate-menus: " guy fleury iteriteka
@ 2019-05-21  8:50 ` guy fleury iteriteka
  2019-05-21  8:50 ` [bug#35829] [PATCH 13/31] gnu: mate-media: " guy fleury iteriteka
                   ` (19 subsequent siblings)
  30 siblings, 0 replies; 36+ messages in thread
From: guy fleury iteriteka @ 2019-05-21  8:50 UTC (permalink / raw)
  To: 35830

* gnu/packages/mate.scm(mate-applets)[source](uri): Use "mirror://mate/"
  instead of "https://pub.mate-desktop.org/releases/" directly.
---
 gnu/packages/mate.scm | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/gnu/packages/mate.scm b/gnu/packages/mate.scm
index 4f63fd1..e7ab864 100644
--- a/gnu/packages/mate.scm
+++ b/gnu/packages/mate.scm
@@ -557,8 +557,7 @@ assorted menu related utility programs.")
     (source
      (origin
        (method url-fetch)
-       (uri (string-append "https://pub.mate-desktop.org/releases/"
-                           (version-major+minor version) "/"
+       (uri (string-append "mirror://mate/" (version-major+minor version) "/"
                            name "-" version ".tar.xz"))
        (sha256
         (base32
-- 
2.21.0

^ permalink raw reply related	[flat|nested] 36+ messages in thread

* [bug#35829] [PATCH 13/31] gnu: mate-media: Use mirror://mate/ in source URI.
  2019-05-21  8:50 [bug#35818] [PATCH 01/31] gnu: mate-common: Use mirror://mate/ in source URI guy fleury iteriteka
                   ` (10 preceding siblings ...)
  2019-05-21  8:50 ` [bug#35830] [PATCH 12/31] gnu: mate-applets: " guy fleury iteriteka
@ 2019-05-21  8:50 ` guy fleury iteriteka
  2019-05-21  8:50 ` [bug#35831] [PATCH 14/31] gnu: mate-panel: " guy fleury iteriteka
                   ` (18 subsequent siblings)
  30 siblings, 0 replies; 36+ messages in thread
From: guy fleury iteriteka @ 2019-05-21  8:50 UTC (permalink / raw)
  To: 35829

* gnu/packages/mate.scm(mate-media)[source](uri): Use "mirror://mate/"
  instead of "https://pub.mate-desktop.org/releases/" directly.
---
 gnu/packages/mate.scm | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/gnu/packages/mate.scm b/gnu/packages/mate.scm
index e7ab864..8148afe 100644
--- a/gnu/packages/mate.scm
+++ b/gnu/packages/mate.scm
@@ -630,8 +630,7 @@ Interactive Weather Information Network (IWIN).
     (source
      (origin
        (method url-fetch)
-       (uri (string-append "https://pub.mate-desktop.org/releases/"
-                           (version-major+minor version) "/"
+       (uri (string-append "mirror://mate/" (version-major+minor version) "/"
                            name "-" version ".tar.xz"))
        (sha256
         (base32
-- 
2.21.0

^ permalink raw reply related	[flat|nested] 36+ messages in thread

* [bug#35831] [PATCH 14/31] gnu: mate-panel: Use mirror://mate/ in source URI.
  2019-05-21  8:50 [bug#35818] [PATCH 01/31] gnu: mate-common: Use mirror://mate/ in source URI guy fleury iteriteka
                   ` (11 preceding siblings ...)
  2019-05-21  8:50 ` [bug#35829] [PATCH 13/31] gnu: mate-media: " guy fleury iteriteka
@ 2019-05-21  8:50 ` guy fleury iteriteka
  2019-05-21  8:50 ` [bug#35832] [PATCH 15/31] gnu: atril: " guy fleury iteriteka
                   ` (17 subsequent siblings)
  30 siblings, 0 replies; 36+ messages in thread
From: guy fleury iteriteka @ 2019-05-21  8:50 UTC (permalink / raw)
  To: 35831

* gnu/packages/mate.scm(mate-panel)[source](uri): Use "mirror://mate/"
  instead of "https://pub.mate-desktop.org/releases/" directly.
---
 gnu/packages/mate.scm | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/gnu/packages/mate.scm b/gnu/packages/mate.scm
index 8148afe..7aaefb3 100644
--- a/gnu/packages/mate.scm
+++ b/gnu/packages/mate.scm
@@ -666,8 +666,7 @@ mate-volume-control, a MATE volume control application and applet.")
     (source
      (origin
        (method url-fetch)
-       (uri (string-append "https://pub.mate-desktop.org/releases/"
-                           (version-major+minor version) "/"
+       (uri (string-append "mirror://mate/" (version-major+minor version) "/"
                            name "-" version ".tar.xz"))
        (sha256
         (base32
-- 
2.21.0

^ permalink raw reply related	[flat|nested] 36+ messages in thread

* [bug#35832] [PATCH 15/31] gnu: atril: Use mirror://mate/ in source URI.
  2019-05-21  8:50 [bug#35818] [PATCH 01/31] gnu: mate-common: Use mirror://mate/ in source URI guy fleury iteriteka
                   ` (12 preceding siblings ...)
  2019-05-21  8:50 ` [bug#35831] [PATCH 14/31] gnu: mate-panel: " guy fleury iteriteka
@ 2019-05-21  8:50 ` guy fleury iteriteka
  2019-05-21  8:50 ` [bug#35833] [PATCH 16/31] gnu: caja: " guy fleury iteriteka
                   ` (16 subsequent siblings)
  30 siblings, 0 replies; 36+ messages in thread
From: guy fleury iteriteka @ 2019-05-21  8:50 UTC (permalink / raw)
  To: 35832

* gnu/packages/mate.scm(atril)[source](uri): Use "mirror://mate/"
  instead of "https://pub.mate-desktop.org/releases/" directly.
---
 gnu/packages/mate.scm | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/gnu/packages/mate.scm b/gnu/packages/mate.scm
index 7aaefb3..280540e 100644
--- a/gnu/packages/mate.scm
+++ b/gnu/packages/mate.scm
@@ -739,8 +739,7 @@ infamous 'Wanda the Fish'.")
     (source
      (origin
        (method url-fetch)
-       (uri (string-append "https://pub.mate-desktop.org/releases/"
-                           (version-major+minor version) "/"
+       (uri (string-append "mirror://mate/" (version-major+minor version) "/"
                            name "-" version ".tar.xz"))
        (sha256
         (base32
-- 
2.21.0

^ permalink raw reply related	[flat|nested] 36+ messages in thread

* [bug#35833] [PATCH 16/31] gnu: caja: Use mirror://mate/ in source URI.
  2019-05-21  8:50 [bug#35818] [PATCH 01/31] gnu: mate-common: Use mirror://mate/ in source URI guy fleury iteriteka
                   ` (13 preceding siblings ...)
  2019-05-21  8:50 ` [bug#35832] [PATCH 15/31] gnu: atril: " guy fleury iteriteka
@ 2019-05-21  8:50 ` guy fleury iteriteka
  2019-05-21  8:50 ` [bug#35834] [PATCH 17/31] gnu: caja-extensions: " guy fleury iteriteka
                   ` (15 subsequent siblings)
  30 siblings, 0 replies; 36+ messages in thread
From: guy fleury iteriteka @ 2019-05-21  8:50 UTC (permalink / raw)
  To: 35833

* gnu/packages/mate.scm(caja)[source](uri): Use "mirror://mate/"
  instead of "https://pub.mate-desktop.org/releases/" directly.
---
 gnu/packages/mate.scm | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/gnu/packages/mate.scm b/gnu/packages/mate.scm
index 280540e..4b9f988 100644
--- a/gnu/packages/mate.scm
+++ b/gnu/packages/mate.scm
@@ -842,8 +842,7 @@ infamous 'Wanda the Fish'.")
     (source
      (origin
        (method url-fetch)
-       (uri (string-append "https://pub.mate-desktop.org/releases/"
-                           (version-major+minor version) "/"
+       (uri (string-append "mirror://mate/" (version-major+minor version) "/"
                            name "-" version ".tar.xz"))
        (sha256
         (base32
-- 
2.21.0

^ permalink raw reply related	[flat|nested] 36+ messages in thread

* [bug#35834] [PATCH 17/31] gnu: caja-extensions: Use mirror://mate/ in source URI.
  2019-05-21  8:50 [bug#35818] [PATCH 01/31] gnu: mate-common: Use mirror://mate/ in source URI guy fleury iteriteka
                   ` (14 preceding siblings ...)
  2019-05-21  8:50 ` [bug#35833] [PATCH 16/31] gnu: caja: " guy fleury iteriteka
@ 2019-05-21  8:50 ` guy fleury iteriteka
  2019-05-21  8:50 ` [bug#35835] [PATCH 18/31] gnu: mate-control-center: " guy fleury iteriteka
                   ` (14 subsequent siblings)
  30 siblings, 0 replies; 36+ messages in thread
From: guy fleury iteriteka @ 2019-05-21  8:50 UTC (permalink / raw)
  To: 35834

* gnu/packages/mate.scm(caja-extensions)[source](uri): Use "mirror://mate/"
  instead of "https://pub.mate-desktop.org/releases/" directly.
---
 gnu/packages/mate.scm | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/gnu/packages/mate.scm b/gnu/packages/mate.scm
index 4b9f988..886f47c 100644
--- a/gnu/packages/mate.scm
+++ b/gnu/packages/mate.scm
@@ -900,8 +900,7 @@ icons on the MATE desktop.  It works on local and remote file systems.")
     (source
      (origin
        (method url-fetch)
-       (uri (string-append "https://pub.mate-desktop.org/releases/"
-                           (version-major+minor version) "/"
+       (uri (string-append "mirror://mate/" (version-major+minor version) "/"
                            name "-" version ".tar.xz"))
        (sha256
         (base32
-- 
2.21.0

^ permalink raw reply related	[flat|nested] 36+ messages in thread

* [bug#35835] [PATCH 18/31] gnu: mate-control-center: Use mirror://mate/ in source URI.
  2019-05-21  8:50 [bug#35818] [PATCH 01/31] gnu: mate-common: Use mirror://mate/ in source URI guy fleury iteriteka
                   ` (15 preceding siblings ...)
  2019-05-21  8:50 ` [bug#35834] [PATCH 17/31] gnu: caja-extensions: " guy fleury iteriteka
@ 2019-05-21  8:50 ` guy fleury iteriteka
  2019-05-21  8:51 ` [bug#35836] [PATCH 19/31] gnu: marco: " guy fleury iteriteka
                   ` (13 subsequent siblings)
  30 siblings, 0 replies; 36+ messages in thread
From: guy fleury iteriteka @ 2019-05-21  8:50 UTC (permalink / raw)
  To: 35835

* gnu/packages/mate.scm(mate-control-center)[source](uri): Use
  "mirror://mate/" instead of "https://pub.mate-desktop.org/releases/"
  directly.
---
 gnu/packages/mate.scm | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/gnu/packages/mate.scm b/gnu/packages/mate.scm
index 886f47c..b3841fe 100644
--- a/gnu/packages/mate.scm
+++ b/gnu/packages/mate.scm
@@ -954,8 +954,7 @@ icons on the MATE desktop.  It works on local and remote file systems.")
     (source
      (origin
        (method url-fetch)
-       (uri (string-append "https://pub.mate-desktop.org/releases/"
-                           (version-major+minor version) "/"
+       (uri (string-append "mirror://mate/" (version-major+minor version) "/"
                            name "-" version ".tar.xz"))
        (sha256
         (base32
-- 
2.21.0

^ permalink raw reply related	[flat|nested] 36+ messages in thread

* [bug#35836] [PATCH 19/31] gnu: marco: Use mirror://mate/ in source URI.
  2019-05-21  8:50 [bug#35818] [PATCH 01/31] gnu: mate-common: Use mirror://mate/ in source URI guy fleury iteriteka
                   ` (16 preceding siblings ...)
  2019-05-21  8:50 ` [bug#35835] [PATCH 18/31] gnu: mate-control-center: " guy fleury iteriteka
@ 2019-05-21  8:51 ` guy fleury iteriteka
  2019-05-21  8:51 ` [bug#35838] [PATCH 20/31] gnu: mate-user-guide: " guy fleury iteriteka
                   ` (12 subsequent siblings)
  30 siblings, 0 replies; 36+ messages in thread
From: guy fleury iteriteka @ 2019-05-21  8:51 UTC (permalink / raw)
  To: 35836

* gnu/packages/mate.scm(marco)[source](uri): Use "mirror://mate/"
  instead of "https://pub.mate-desktop.org/releases/" directly.
---
 gnu/packages/mate.scm | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/gnu/packages/mate.scm b/gnu/packages/mate.scm
index b3841fe..2f71c18 100644
--- a/gnu/packages/mate.scm
+++ b/gnu/packages/mate.scm
@@ -1013,8 +1013,7 @@ of various aspects of your desktop.")
     (source
      (origin
        (method url-fetch)
-       (uri (string-append "https://pub.mate-desktop.org/releases/"
-                           (version-major+minor version) "/"
+       (uri (string-append "mirror://mate/" (version-major+minor version) "/"
                            name "-" version ".tar.xz"))
        (sha256
         (base32
-- 
2.21.0

^ permalink raw reply related	[flat|nested] 36+ messages in thread

* [bug#35838] [PATCH 20/31] gnu: mate-user-guide: Use mirror://mate/ in source URI.
  2019-05-21  8:50 [bug#35818] [PATCH 01/31] gnu: mate-common: Use mirror://mate/ in source URI guy fleury iteriteka
                   ` (17 preceding siblings ...)
  2019-05-21  8:51 ` [bug#35836] [PATCH 19/31] gnu: marco: " guy fleury iteriteka
@ 2019-05-21  8:51 ` guy fleury iteriteka
  2019-05-21  8:51 ` [bug#35837] [PATCH 21/31] gnu: mate-calc: " guy fleury iteriteka
                   ` (11 subsequent siblings)
  30 siblings, 0 replies; 36+ messages in thread
From: guy fleury iteriteka @ 2019-05-21  8:51 UTC (permalink / raw)
  To: 35838

* gnu/packages/mate.scm(mate-user-guide)[source](uri): Use "mirror://mate/"
  instead of "https://pub.mate-desktop.org/releases/" directly.
---
 gnu/packages/mate.scm | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/gnu/packages/mate.scm b/gnu/packages/mate.scm
index 2f71c18..712e7df 100644
--- a/gnu/packages/mate.scm
+++ b/gnu/packages/mate.scm
@@ -1063,8 +1063,7 @@ for use with MATE or as a standalone window manager.")
     (source
      (origin
        (method url-fetch)
-       (uri (string-append "https://pub.mate-desktop.org/releases/"
-                           (version-major+minor version) "/"
+       (uri (string-append "mirror://mate/" (version-major+minor version) "/"
                            name "-" version ".tar.xz"))
        (sha256
         (base32
-- 
2.21.0

^ permalink raw reply related	[flat|nested] 36+ messages in thread

* [bug#35837] [PATCH 21/31] gnu: mate-calc: Use mirror://mate/ in source URI.
  2019-05-21  8:50 [bug#35818] [PATCH 01/31] gnu: mate-common: Use mirror://mate/ in source URI guy fleury iteriteka
                   ` (18 preceding siblings ...)
  2019-05-21  8:51 ` [bug#35838] [PATCH 20/31] gnu: mate-user-guide: " guy fleury iteriteka
@ 2019-05-21  8:51 ` guy fleury iteriteka
  2019-05-21  8:51 ` [bug#35839] [PATCH 22/31] gnu: mate-backgrounds: " guy fleury iteriteka
                   ` (10 subsequent siblings)
  30 siblings, 0 replies; 36+ messages in thread
From: guy fleury iteriteka @ 2019-05-21  8:51 UTC (permalink / raw)
  To: 35837

* gnu/packages/mate.scm(mate-calc)[source](uri): Use "mirror://mate/"
  instead of "https://pub.mate-desktop.org/releases/" directly.
---
 gnu/packages/mate.scm | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/gnu/packages/mate.scm b/gnu/packages/mate.scm
index 712e7df..f542e4f 100644
--- a/gnu/packages/mate.scm
+++ b/gnu/packages/mate.scm
@@ -1102,8 +1102,7 @@ sessions, panels, menus, file management, and preferences.")
     (source
      (origin
        (method url-fetch)
-       (uri (string-append "https://pub.mate-desktop.org/releases/"
-                           (version-major+minor version) "/"
+       (uri (string-append "mirror://mate/" (version-major+minor version) "/"
                            name "-" version ".tar.xz"))
        (sha256
         (base32
-- 
2.21.0

^ permalink raw reply related	[flat|nested] 36+ messages in thread

* [bug#35839] [PATCH 22/31] gnu: mate-backgrounds: Use mirror://mate/ in source URI.
  2019-05-21  8:50 [bug#35818] [PATCH 01/31] gnu: mate-common: Use mirror://mate/ in source URI guy fleury iteriteka
                   ` (19 preceding siblings ...)
  2019-05-21  8:51 ` [bug#35837] [PATCH 21/31] gnu: mate-calc: " guy fleury iteriteka
@ 2019-05-21  8:51 ` guy fleury iteriteka
  2019-05-21  8:51 ` [bug#35840] [PATCH 23/31] gnu: mate-netbook: " guy fleury iteriteka
                   ` (9 subsequent siblings)
  30 siblings, 0 replies; 36+ messages in thread
From: guy fleury iteriteka @ 2019-05-21  8:51 UTC (permalink / raw)
  To: 35839

* gnu/packages/mate.scm(mate-backgrounds)[source](uri): Use "mirror://mate/"
  instead of "https://pub.mate-desktop.org/releases/" directly.
---
 gnu/packages/mate.scm | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/gnu/packages/mate.scm b/gnu/packages/mate.scm
index f542e4f..29f679f 100644
--- a/gnu/packages/mate.scm
+++ b/gnu/packages/mate.scm
@@ -1133,8 +1133,7 @@ sessions, panels, menus, file management, and preferences.")
     (source
      (origin
        (method url-fetch)
-       (uri (string-append "https://pub.mate-desktop.org/releases/"
-                           (version-major+minor version) "/"
+       (uri (string-append "mirror://mate/" (version-major+minor version) "/"
                            name "-" version ".tar.xz"))
        (sha256
         (base32
-- 
2.21.0

^ permalink raw reply related	[flat|nested] 36+ messages in thread

* [bug#35840] [PATCH 23/31] gnu: mate-netbook: Use mirror://mate/ in source URI.
  2019-05-21  8:50 [bug#35818] [PATCH 01/31] gnu: mate-common: Use mirror://mate/ in source URI guy fleury iteriteka
                   ` (20 preceding siblings ...)
  2019-05-21  8:51 ` [bug#35839] [PATCH 22/31] gnu: mate-backgrounds: " guy fleury iteriteka
@ 2019-05-21  8:51 ` guy fleury iteriteka
  2019-05-21  8:51 ` [bug#35818] [PATCH 24/31] gnu: mate-screensaver: " guy fleury iteriteka
                   ` (8 subsequent siblings)
  30 siblings, 0 replies; 36+ messages in thread
From: guy fleury iteriteka @ 2019-05-21  8:51 UTC (permalink / raw)
  To: 35840

* gnu/packages/mate.scm(mate-netbook)[source](uri): Use "mirror://mate/"
  instead of "https://pub.mate-desktop.org/releases/" directly.
---
 gnu/packages/mate.scm | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/gnu/packages/mate.scm b/gnu/packages/mate.scm
index 29f679f..8f2e31f 100644
--- a/gnu/packages/mate.scm
+++ b/gnu/packages/mate.scm
@@ -1155,8 +1155,7 @@ can be used as backgrounds in the MATE Desktop environment.")
     (source
      (origin
        (method url-fetch)
-       (uri (string-append "https://pub.mate-desktop.org/releases/"
-                           (version-major+minor version) "/"
+       (uri (string-append "mirror://mate/" (version-major+minor version) "/"
                            name "-" version ".tar.xz"))
        (sha256
         (base32
-- 
2.21.0

^ permalink raw reply related	[flat|nested] 36+ messages in thread

* [bug#35818] [PATCH 24/31] gnu: mate-screensaver: Use mirror://mate/ in source URI.
  2019-05-21  8:50 [bug#35818] [PATCH 01/31] gnu: mate-common: Use mirror://mate/ in source URI guy fleury iteriteka
                   ` (21 preceding siblings ...)
  2019-05-21  8:51 ` [bug#35840] [PATCH 23/31] gnu: mate-netbook: " guy fleury iteriteka
@ 2019-05-21  8:51 ` guy fleury iteriteka
  2019-05-21  8:51 ` [bug#35818] [PATCH 25/31] gnu: mate-utils: " guy fleury iteriteka
                   ` (7 subsequent siblings)
  30 siblings, 0 replies; 36+ messages in thread
From: guy fleury iteriteka @ 2019-05-21  8:51 UTC (permalink / raw)
  To: 35818

* gnu/packages/mate.scm(mate-screensaver)[source](uri): Use "mirror://mate/"
  instead of "https://pub.mate-desktop.org/releases/" directly.
---
 gnu/packages/mate.scm | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/gnu/packages/mate.scm b/gnu/packages/mate.scm
index 8f2e31f..ba903ae 100644
--- a/gnu/packages/mate.scm
+++ b/gnu/packages/mate.scm
@@ -1196,8 +1196,7 @@ Re-decorates windows on un-maximise.
     (source
      (origin
        (method url-fetch)
-       (uri (string-append "https://pub.mate-desktop.org/releases/"
-                           (version-major+minor version) "/"
+       (uri (string-append "mirror://mate/" (version-major+minor version) "/"
                            name "-" version ".tar.xz"))
        (sha256
         (base32
-- 
2.21.0

^ permalink raw reply related	[flat|nested] 36+ messages in thread

* [bug#35818] [PATCH 25/31] gnu: mate-utils: Use mirror://mate/ in source URI.
  2019-05-21  8:50 [bug#35818] [PATCH 01/31] gnu: mate-common: Use mirror://mate/ in source URI guy fleury iteriteka
                   ` (22 preceding siblings ...)
  2019-05-21  8:51 ` [bug#35818] [PATCH 24/31] gnu: mate-screensaver: " guy fleury iteriteka
@ 2019-05-21  8:51 ` guy fleury iteriteka
  2019-05-21  8:51 ` [bug#35818] [PATCH 26/31] gnu: eom: " guy fleury iteriteka
                   ` (6 subsequent siblings)
  30 siblings, 0 replies; 36+ messages in thread
From: guy fleury iteriteka @ 2019-05-21  8:51 UTC (permalink / raw)
  To: 35818

* gnu/packages/mate.scm(mate-utils)[source](uri): Use "mirror://mate/"
  instead of "https://pub.mate-desktop.org/releases/" directly.
---
 gnu/packages/mate.scm | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/gnu/packages/mate.scm b/gnu/packages/mate.scm
index ba903ae..10bfe38 100644
--- a/gnu/packages/mate.scm
+++ b/gnu/packages/mate.scm
@@ -1267,8 +1267,7 @@ can be used as backgrounds in the MATE Desktop environment.")
     (source
      (origin
        (method url-fetch)
-       (uri (string-append "https://pub.mate-desktop.org/releases/"
-                           (version-major+minor version) "/"
+       (uri (string-append "mirror://mate/" (version-major+minor version) "/"
                            name "-" version ".tar.xz"))
        (sha256
         (base32
-- 
2.21.0

^ permalink raw reply related	[flat|nested] 36+ messages in thread

* [bug#35818] [PATCH 26/31] gnu: eom: Use mirror://mate/ in source URI.
  2019-05-21  8:50 [bug#35818] [PATCH 01/31] gnu: mate-common: Use mirror://mate/ in source URI guy fleury iteriteka
                   ` (23 preceding siblings ...)
  2019-05-21  8:51 ` [bug#35818] [PATCH 25/31] gnu: mate-utils: " guy fleury iteriteka
@ 2019-05-21  8:51 ` guy fleury iteriteka
  2019-05-21  8:51 ` [bug#35818] [PATCH 27/31] gnu: engrampa: " guy fleury iteriteka
                   ` (5 subsequent siblings)
  30 siblings, 0 replies; 36+ messages in thread
From: guy fleury iteriteka @ 2019-05-21  8:51 UTC (permalink / raw)
  To: 35818

* gnu/packages/mate.scm(eom)[source](uri): Use "mirror://mate/"
  instead of "https://pub.mate-desktop.org/releases/" directly.
---
 gnu/packages/mate.scm | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/gnu/packages/mate.scm b/gnu/packages/mate.scm
index 10bfe38..f3b59fc 100644
--- a/gnu/packages/mate.scm
+++ b/gnu/packages/mate.scm
@@ -1319,8 +1319,7 @@ can be used as backgrounds in the MATE Desktop environment.")
     (source
      (origin
        (method url-fetch)
-       (uri (string-append "https://pub.mate-desktop.org/releases/"
-                           (version-major+minor version) "/"
+       (uri (string-append "mirror://mate/" (version-major+minor version) "/"
                            name "-" version ".tar.xz"))
        (sha256
         (base32
-- 
2.21.0

^ permalink raw reply related	[flat|nested] 36+ messages in thread

* [bug#35818] [PATCH 27/31] gnu: engrampa: Use mirror://mate/ in source URI.
  2019-05-21  8:50 [bug#35818] [PATCH 01/31] gnu: mate-common: Use mirror://mate/ in source URI guy fleury iteriteka
                   ` (24 preceding siblings ...)
  2019-05-21  8:51 ` [bug#35818] [PATCH 26/31] gnu: eom: " guy fleury iteriteka
@ 2019-05-21  8:51 ` guy fleury iteriteka
  2019-05-21  8:51 ` [bug#35818] [PATCH 28/31] gnu: pluma: " guy fleury iteriteka
                   ` (4 subsequent siblings)
  30 siblings, 0 replies; 36+ messages in thread
From: guy fleury iteriteka @ 2019-05-21  8:51 UTC (permalink / raw)
  To: 35818

* gnu/packages/mate.scm(engrampa)[source](uri): Use "mirror://mate/"
  instead of "https://pub.mate-desktop.org/releases/" directly.
---
 gnu/packages/mate.scm | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/gnu/packages/mate.scm b/gnu/packages/mate.scm
index f3b59fc..3a4bd4c 100644
--- a/gnu/packages/mate.scm
+++ b/gnu/packages/mate.scm
@@ -1369,8 +1369,7 @@ can be used as backgrounds in the MATE Desktop environment.")
     (source
      (origin
        (method url-fetch)
-       (uri (string-append "https://pub.mate-desktop.org/releases/"
-                           (version-major+minor version) "/"
+       (uri (string-append "mirror://mate/" (version-major+minor version) "/"
                            name "-" version ".tar.xz"))
        (sha256
         (base32
-- 
2.21.0

^ permalink raw reply related	[flat|nested] 36+ messages in thread

* [bug#35818] [PATCH 28/31] gnu: pluma: Use mirror://mate/ in source URI.
  2019-05-21  8:50 [bug#35818] [PATCH 01/31] gnu: mate-common: Use mirror://mate/ in source URI guy fleury iteriteka
                   ` (25 preceding siblings ...)
  2019-05-21  8:51 ` [bug#35818] [PATCH 27/31] gnu: engrampa: " guy fleury iteriteka
@ 2019-05-21  8:51 ` guy fleury iteriteka
  2019-05-21  8:51 ` [bug#35818] [PATCH 29/31] gnu: mate-system-monitor: " guy fleury iteriteka
                   ` (3 subsequent siblings)
  30 siblings, 0 replies; 36+ messages in thread
From: guy fleury iteriteka @ 2019-05-21  8:51 UTC (permalink / raw)
  To: 35818

* gnu/packages/mate.scm(pluma)[source](uri): Use "mirror://mate/"
  instead of "https://pub.mate-desktop.org/releases/" directly.
---
 gnu/packages/mate.scm | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/gnu/packages/mate.scm b/gnu/packages/mate.scm
index 3a4bd4c..a71b90d 100644
--- a/gnu/packages/mate.scm
+++ b/gnu/packages/mate.scm
@@ -1422,8 +1422,7 @@ can be used as backgrounds in the MATE Desktop environment.")
     (source
      (origin
        (method url-fetch)
-       (uri (string-append "https://pub.mate-desktop.org/releases/"
-                           (version-major+minor version) "/"
+       (uri (string-append "mirror://mate/" (version-major+minor version) "/"
                            name "-" version ".tar.xz"))
        (sha256
         (base32
-- 
2.21.0

^ permalink raw reply related	[flat|nested] 36+ messages in thread

* [bug#35818] [PATCH 29/31] gnu: mate-system-monitor: Use mirror://mate/ in source URI.
  2019-05-21  8:50 [bug#35818] [PATCH 01/31] gnu: mate-common: Use mirror://mate/ in source URI guy fleury iteriteka
                   ` (26 preceding siblings ...)
  2019-05-21  8:51 ` [bug#35818] [PATCH 28/31] gnu: pluma: " guy fleury iteriteka
@ 2019-05-21  8:51 ` guy fleury iteriteka
  2019-05-21  8:51 ` [bug#35818] [PATCH 30/31] gnu: mate-polkit: " guy fleury iteriteka
                   ` (2 subsequent siblings)
  30 siblings, 0 replies; 36+ messages in thread
From: guy fleury iteriteka @ 2019-05-21  8:51 UTC (permalink / raw)
  To: 35818

* gnu/packages/mate.scm(mate-system-monitor)[source](uri): Use
  "mirror://mate/" instead of "https://pub.mate-desktop.org/releases/"
  directly.
---
 gnu/packages/mate.scm | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/gnu/packages/mate.scm b/gnu/packages/mate.scm
index a71b90d..80b39f6 100644
--- a/gnu/packages/mate.scm
+++ b/gnu/packages/mate.scm
@@ -1472,8 +1472,7 @@ can be used as backgrounds in the MATE Desktop environment.")
     (source
      (origin
        (method url-fetch)
-       (uri (string-append "https://pub.mate-desktop.org/releases/"
-                           (version-major+minor version) "/"
+       (uri (string-append "mirror://mate/" (version-major+minor version) "/"
                            name "-" version ".tar.xz"))
        (sha256
         (base32
-- 
2.21.0

^ permalink raw reply related	[flat|nested] 36+ messages in thread

* [bug#35818] [PATCH 30/31] gnu: mate-polkit: Use mirror://mate/ in source URI.
  2019-05-21  8:50 [bug#35818] [PATCH 01/31] gnu: mate-common: Use mirror://mate/ in source URI guy fleury iteriteka
                   ` (27 preceding siblings ...)
  2019-05-21  8:51 ` [bug#35818] [PATCH 29/31] gnu: mate-system-monitor: " guy fleury iteriteka
@ 2019-05-21  8:51 ` guy fleury iteriteka
  2019-05-21  8:51 ` [bug#35818] [PATCH 31/31] gnu: mate-themes: Use mirror://mate/themes/ " guy fleury iteriteka
  2019-05-21 11:26 ` [bug#35818] [PATCH] gnu: Use mirror://mate/ in source URIs Tobias Geerinckx-Rice
  30 siblings, 0 replies; 36+ messages in thread
From: guy fleury iteriteka @ 2019-05-21  8:51 UTC (permalink / raw)
  To: 35818

* gnu/packages/mate.scm(mate-polkit)[source](uri): Use "mirror://mate/"
  instead of "https://pub.mate-desktop.org/releases/" directly.
---
 gnu/packages/mate.scm | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/gnu/packages/mate.scm b/gnu/packages/mate.scm
index 80b39f6..29696bf 100644
--- a/gnu/packages/mate.scm
+++ b/gnu/packages/mate.scm
@@ -1512,8 +1512,7 @@ MATE Desktop to monitor your system resources and usage.")
     (source
      (origin
        (method url-fetch)
-       (uri (string-append "https://pub.mate-desktop.org/releases/"
-                           (version-major+minor version) "/"
+       (uri (string-append "mirror://mate/" (version-major+minor version) "/"
                            name "-" version ".tar.xz"))
        (sha256
         (base32
-- 
2.21.0

^ permalink raw reply related	[flat|nested] 36+ messages in thread

* [bug#35818] [PATCH 31/31] gnu: mate-themes: Use mirror://mate/themes/ in source URI.
  2019-05-21  8:50 [bug#35818] [PATCH 01/31] gnu: mate-common: Use mirror://mate/ in source URI guy fleury iteriteka
                   ` (28 preceding siblings ...)
  2019-05-21  8:51 ` [bug#35818] [PATCH 30/31] gnu: mate-polkit: " guy fleury iteriteka
@ 2019-05-21  8:51 ` guy fleury iteriteka
  2019-05-21 11:26 ` [bug#35818] [PATCH] gnu: Use mirror://mate/ in source URIs Tobias Geerinckx-Rice
  30 siblings, 0 replies; 36+ messages in thread
From: guy fleury iteriteka @ 2019-05-21  8:51 UTC (permalink / raw)
  To: 35818

* gnu/packages/mate.scm(mate-themes)[source](uri): Use "mirror://mate/themes"
  instead of "https://pub.mate-desktop.org/releases/themes" directly.
---
 gnu/packages/mate.scm | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/gnu/packages/mate.scm b/gnu/packages/mate.scm
index 29696bf..c2a6aaf 100644
--- a/gnu/packages/mate.scm
+++ b/gnu/packages/mate.scm
@@ -196,11 +196,11 @@ from Mint-X-F and Faenza-Fresh icon packs.")
   (package
     (name "mate-themes")
     (version "3.22.19")
-    (source (origin
-              (method url-fetch)
-              (uri (string-append "https://pub.mate-desktop.org/releases/themes/"
-                                  (version-major+minor version) "/mate-themes-"
-                                  version ".tar.xz"))
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "mirror://mate/themes/" (version-major+minor version)
+                           "/mate-themes-" version ".tar.xz"))
               (sha256
                (base32
                 "1ycb8b8r0s8d1h1477135mynr53s5781gdb2ap8xlvj2g58492wq"))))
-- 
2.21.0

^ permalink raw reply related	[flat|nested] 36+ messages in thread

* [bug#35818] [PATCH] gnu: Use mirror://mate/ in source URIs.
  2019-05-21  8:50 [bug#35818] [PATCH 01/31] gnu: mate-common: Use mirror://mate/ in source URI guy fleury iteriteka
                   ` (29 preceding siblings ...)
  2019-05-21  8:51 ` [bug#35818] [PATCH 31/31] gnu: mate-themes: Use mirror://mate/themes/ " guy fleury iteriteka
@ 2019-05-21 11:26 ` Tobias Geerinckx-Rice
  2019-05-22  6:59   ` Guy fleury
  2019-05-24 15:40   ` Ludovic Courtès
  30 siblings, 2 replies; 36+ messages in thread
From: Tobias Geerinckx-Rice @ 2019-05-21 11:26 UTC (permalink / raw)
  To: 35818

[-- Attachment #1: Type: text/plain, Size: 340 bytes --]

Guy,

This opened 31 bugs in our patch tracker ;-)  I've merged them all 
into this one.

You can avoid this by first sending a cover letter, and using ‘git 
send-email --in-reply-to=’.  See ‘Sending a Patch Series’ in the 
Guix manual.  Sending a single patch straight to guix-patches@ is 
fine.

Kind regards,

T G-R

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 227 bytes --]

^ permalink raw reply	[flat|nested] 36+ messages in thread

* [bug#35818] [PATCH] gnu: Use mirror://mate/ in source URIs.
  2019-05-21 11:26 ` [bug#35818] [PATCH] gnu: Use mirror://mate/ in source URIs Tobias Geerinckx-Rice
@ 2019-05-22  6:59   ` Guy fleury
  2019-05-24 15:40   ` Ludovic Courtès
  1 sibling, 0 replies; 36+ messages in thread
From: Guy fleury @ 2019-05-22  6:59 UTC (permalink / raw)
  To: Tobias Geerinckx-Rice; +Cc: 35818

[-- Attachment #1: Type: text/plain, Size: 514 bytes --]

Hi,

Thanks for the tips.
I think there is no need to send an update series!
Le 21 mai 2019 13:27, "Tobias Geerinckx-Rice" <me@tobias.gr> a écrit :

> Guy,
>
> This opened 31 bugs in our patch tracker ;-)  I've merged them all into
> this one.
>
> You can avoid this by first sending a cover letter, and using ‘git
> send-email --in-reply-to=’.  See ‘Sending a Patch Series’ in the Guix
> manual.  Sending a single patch straight to guix-patches@ is fine.
>
> Kind regards,
>
> T G-R
>

[-- Attachment #2: Type: text/html, Size: 785 bytes --]

^ permalink raw reply	[flat|nested] 36+ messages in thread

* [bug#35818] [PATCH] gnu: Use mirror://mate/ in source URIs.
  2019-05-21 11:26 ` [bug#35818] [PATCH] gnu: Use mirror://mate/ in source URIs Tobias Geerinckx-Rice
  2019-05-22  6:59   ` Guy fleury
@ 2019-05-24 15:40   ` Ludovic Courtès
  2019-05-27  7:11     ` guy fleury iteriteka
  1 sibling, 1 reply; 36+ messages in thread
From: Ludovic Courtès @ 2019-05-24 15:40 UTC (permalink / raw)
  To: Tobias Geerinckx-Rice; +Cc: 35818

Hello,

Tobias Geerinckx-Rice <me@tobias.gr> skribis:

> This opened 31 bugs in our patch tracker ;-)  I've merged them all
> into this one.

The patches all LGTM, but I don’t think it makes sense to split them.
It’s a case where a single patch is more appropriate IMO, because this
is all logically the same change.

Could you merge them and send the resulting patch, Guy?

Thanks!

Ludo’.

^ permalink raw reply	[flat|nested] 36+ messages in thread

* [bug#35818] [PATCH] gnu: Use mirror://mate/ in source URIs.
  2019-05-24 15:40   ` Ludovic Courtès
@ 2019-05-27  7:11     ` guy fleury iteriteka
  2019-05-27 10:02       ` bug#35818: " Ludovic Courtès
  0 siblings, 1 reply; 36+ messages in thread
From: guy fleury iteriteka @ 2019-05-27  7:11 UTC (permalink / raw)
  To: Ludovic Courtès; +Cc: 35818


[-- Attachment #1.1: Type: text/plain, Size: 556 bytes --]

hi,
Le ven. 24 mai 2019 à 17:41, Ludovic Courtès <ludo@gnu.org> a écrit :

> Hello,
>
> Tobias Geerinckx-Rice <me@tobias.gr> skribis:
>
> > This opened 31 bugs in our patch tracker ;-)  I've merged them all
> > into this one.
>
> The patches all LGTM, but I don’t think it makes sense to split them.
> It’s a case where a single patch is more appropriate IMO, because this
> is all logically the same change.
>
> Could you merge them and send the resulting patch, Guy?
>
> see attached file!

> Thanks!
>
> Ludo’.
>
>
>
>

[-- Attachment #1.2: Type: text/html, Size: 1102 bytes --]

[-- Attachment #2: 0001-gnu-MATE-Use-mirror-mate-in-source-URIs.patch --]
[-- Type: text/x-patch, Size: 16361 bytes --]

From 3c76a517f763f592f49da4da15a3ee33ff25cd25 Mon Sep 17 00:00:00 2001
From: guy fleury iteriteka <hoonandon@gmail.com>
Date: Fri, 17 May 2019 09:15:35 +0200
Subject: [PATCH] gnu: MATE: Use mirror://mate/ in source URIs.

* gnu/packages/mate.scm(MATE packages)[source](uri): Use "mirror://mate/"
  instead of "https://pub.mate-desktop.org/releases/" directly.
---
 gnu/packages/mate.scm | 165 ++++++++++++++++++------------------------
 1 file changed, 70 insertions(+), 95 deletions(-)

diff --git a/gnu/packages/mate.scm b/gnu/packages/mate.scm
index f234d2c..c2a6aaf 100644
--- a/gnu/packages/mate.scm
+++ b/gnu/packages/mate.scm
@@ -79,8 +79,7 @@
     (source
      (origin
        (method url-fetch)
-       (uri (string-append "https://pub.mate-desktop.org/releases/"
-                           (version-major+minor version) "/"
+       (uri (string-append "mirror://mate/" (version-major+minor version) "/"
                            name "-" version ".tar.xz"))
        (sha256
         (base32
@@ -136,14 +135,14 @@ actions.")
   (package
     (name "mate-icon-theme")
     (version "1.22.0")
-    (source (origin
-              (method url-fetch)
-              (uri (string-append "https://pub.mate-desktop.org/releases/"
-                                  (version-major+minor version) "/"
-                                  name "-" version ".tar.xz"))
-              (sha256
-               (base32
-                "090vfxpn1b1wwvkilv1j3cx4swdm4z0s7xyvhvqhdzj58zsf2000"))))
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "mirror://mate/" (version-major+minor version) "/"
+                           name "-" version ".tar.xz"))
+       (sha256
+        (base32
+         "090vfxpn1b1wwvkilv1j3cx4swdm4z0s7xyvhvqhdzj58zsf2000"))))
     (build-system gnu-build-system)
     (native-inputs
      `(("pkg-config" ,pkg-config)
@@ -159,14 +158,14 @@ actions.")
   (package
     (name "mate-icon-theme-faenza")
     (version "1.20.0")
-    (source (origin
-              (method url-fetch)
-              (uri (string-append "https://pub.mate-desktop.org/releases/"
-                                  (version-major+minor version) "/"
-                                  name "-" version ".tar.xz"))
-              (sha256
-               (base32
-                "000vr9cnbl2qlysf2gyg1lsjirqdzmwrnh6d3hyrsfc0r2vh4wna"))))
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "mirror://mate/" (version-major+minor version) "/"
+                           name "-" version ".tar.xz"))
+       (sha256
+        (base32
+         "000vr9cnbl2qlysf2gyg1lsjirqdzmwrnh6d3hyrsfc0r2vh4wna"))))
     (build-system gnu-build-system)
     (arguments
      `(#:phases
@@ -197,11 +196,11 @@ from Mint-X-F and Faenza-Fresh icon packs.")
   (package
     (name "mate-themes")
     (version "3.22.19")
-    (source (origin
-              (method url-fetch)
-              (uri (string-append "https://pub.mate-desktop.org/releases/themes/"
-                                  (version-major+minor version) "/mate-themes-"
-                                  version ".tar.xz"))
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "mirror://mate/themes/" (version-major+minor version)
+                           "/mate-themes-" version ".tar.xz"))
               (sha256
                (base32
                 "1ycb8b8r0s8d1h1477135mynr53s5781gdb2ap8xlvj2g58492wq"))))
@@ -225,14 +224,14 @@ themes for both gtk+-2 and gtk+-3.")
   (package
     (name "mate-desktop")
     (version "1.22.0")
-    (source (origin
-              (method url-fetch)
-              (uri (string-append "https://pub.mate-desktop.org/releases/"
-                                  (version-major+minor version) "/"
-                                  name "-" version ".tar.xz"))
-              (sha256
-               (base32
-                "09gn840p6qds21kxab4pidjd53g76s76i7178fdibrz462mda217"))))
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "mirror://mate/" (version-major+minor version) "/"
+                           name "-" version ".tar.xz"))
+       (sha256
+        (base32
+         "09gn840p6qds21kxab4pidjd53g76s76i7178fdibrz462mda217"))))
     (build-system gnu-build-system)
     (native-inputs
      `(("pkg-config" ,pkg-config)
@@ -259,14 +258,14 @@ desktop and the mate-about program.")
   (package
     (name "libmateweather")
     (version "1.22.0")
-    (source (origin
-              (method url-fetch)
-              (uri (string-append "https://pub.mate-desktop.org/releases/"
-                                  (version-major+minor version) "/"
-                                  name "-" version ".tar.xz"))
-              (sha256
-               (base32
-                "1ribgcwl4ncfbcf9bkcbxrgc7yzajdnxg12837psngymkqswlp6a"))))
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "mirror://mate/" (version-major+minor version) "/"
+                           name "-" version ".tar.xz"))
+       (sha256
+        (base32
+         "1ribgcwl4ncfbcf9bkcbxrgc7yzajdnxg12837psngymkqswlp6a"))))
     (build-system gnu-build-system)
     (arguments
      '(#:configure-flags
@@ -308,8 +307,7 @@ the MATE desktop environment.")
     (source
      (origin
        (method url-fetch)
-       (uri (string-append "https://pub.mate-desktop.org/releases/"
-                           (version-major+minor version) "/"
+       (uri (string-append "mirror://mate/" (version-major+minor version) "/"
                            name "-" version ".tar.xz"))
        (sha256
         (base32
@@ -349,8 +347,7 @@ configurations (profiles).")
     (source
      (origin
        (method url-fetch)
-       (uri (string-append "https://pub.mate-desktop.org/releases/"
-                           (version-major+minor version) "/"
+       (uri (string-append "mirror://mate/" (version-major+minor version) "/"
                            name "-" version ".tar.xz"))
        (sha256
         (base32
@@ -417,8 +414,7 @@ configuration program to choose applications starting on login.")
     (source
      (origin
        (method url-fetch)
-       (uri (string-append "https://pub.mate-desktop.org/releases/"
-                           (version-major+minor version) "/"
+       (uri (string-append "mirror://mate/" (version-major+minor version) "/"
                            name "-" version ".tar.xz"))
        (sha256
         (base32
@@ -460,8 +456,7 @@ configuration program to choose applications starting on login.")
     (source
      (origin
        (method url-fetch)
-       (uri (string-append "https://pub.mate-desktop.org/releases/"
-                           (version-major+minor version) "/"
+       (uri (string-append "mirror://mate/" (version-major+minor version) "/"
                            name "-" version ".tar.xz"))
        (sha256
         (base32
@@ -490,8 +485,7 @@ sound systems.")
     (source
      (origin
        (method url-fetch)
-       (uri (string-append "https://pub.mate-desktop.org/releases/"
-                           (version-major+minor version) "/"
+       (uri (string-append "mirror://mate/" (version-major+minor version) "/"
                            name "-" version ".tar.xz"))
        (sha256
         (base32
@@ -519,14 +513,14 @@ MATE desktop environment.")
   (package
     (name "mate-menus")
     (version "1.22.0")
-    (source (origin
-              (method url-fetch)
-              (uri (string-append "https://pub.mate-desktop.org/releases/"
-                                  (version-major+minor version) "/"
-                                  name "-" version ".tar.xz"))
-              (sha256
-               (base32
-                "1lkakbf2f1815c146z4xp5f0h4lim6jzr02681wbvzalc6k97v5c"))))
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "mirror://mate/" (version-major+minor version) "/"
+                           name "-" version ".tar.xz"))
+       (sha256
+        (base32
+         "1lkakbf2f1815c146z4xp5f0h4lim6jzr02681wbvzalc6k97v5c"))))
     (build-system gnu-build-system)
     (arguments
      `(#:phases
@@ -563,8 +557,7 @@ assorted menu related utility programs.")
     (source
      (origin
        (method url-fetch)
-       (uri (string-append "https://pub.mate-desktop.org/releases/"
-                           (version-major+minor version) "/"
+       (uri (string-append "mirror://mate/" (version-major+minor version) "/"
                            name "-" version ".tar.xz"))
        (sha256
         (base32
@@ -637,8 +630,7 @@ Interactive Weather Information Network (IWIN).
     (source
      (origin
        (method url-fetch)
-       (uri (string-append "https://pub.mate-desktop.org/releases/"
-                           (version-major+minor version) "/"
+       (uri (string-append "mirror://mate/" (version-major+minor version) "/"
                            name "-" version ".tar.xz"))
        (sha256
         (base32
@@ -674,8 +666,7 @@ mate-volume-control, a MATE volume control application and applet.")
     (source
      (origin
        (method url-fetch)
-       (uri (string-append "https://pub.mate-desktop.org/releases/"
-                           (version-major+minor version) "/"
+       (uri (string-append "mirror://mate/" (version-major+minor version) "/"
                            name "-" version ".tar.xz"))
        (sha256
         (base32
@@ -748,8 +739,7 @@ infamous 'Wanda the Fish'.")
     (source
      (origin
        (method url-fetch)
-       (uri (string-append "https://pub.mate-desktop.org/releases/"
-                           (version-major+minor version) "/"
+       (uri (string-append "mirror://mate/" (version-major+minor version) "/"
                            name "-" version ".tar.xz"))
        (sha256
         (base32
@@ -852,8 +842,7 @@ infamous 'Wanda the Fish'.")
     (source
      (origin
        (method url-fetch)
-       (uri (string-append "https://pub.mate-desktop.org/releases/"
-                           (version-major+minor version) "/"
+       (uri (string-append "mirror://mate/" (version-major+minor version) "/"
                            name "-" version ".tar.xz"))
        (sha256
         (base32
@@ -911,8 +900,7 @@ icons on the MATE desktop.  It works on local and remote file systems.")
     (source
      (origin
        (method url-fetch)
-       (uri (string-append "https://pub.mate-desktop.org/releases/"
-                           (version-major+minor version) "/"
+       (uri (string-append "mirror://mate/" (version-major+minor version) "/"
                            name "-" version ".tar.xz"))
        (sha256
         (base32
@@ -966,8 +954,7 @@ icons on the MATE desktop.  It works on local and remote file systems.")
     (source
      (origin
        (method url-fetch)
-       (uri (string-append "https://pub.mate-desktop.org/releases/"
-                           (version-major+minor version) "/"
+       (uri (string-append "mirror://mate/" (version-major+minor version) "/"
                            name "-" version ".tar.xz"))
        (sha256
         (base32
@@ -1026,8 +1013,7 @@ of various aspects of your desktop.")
     (source
      (origin
        (method url-fetch)
-       (uri (string-append "https://pub.mate-desktop.org/releases/"
-                           (version-major+minor version) "/"
+       (uri (string-append "mirror://mate/" (version-major+minor version) "/"
                            name "-" version ".tar.xz"))
        (sha256
         (base32
@@ -1077,8 +1063,7 @@ for use with MATE or as a standalone window manager.")
     (source
      (origin
        (method url-fetch)
-       (uri (string-append "https://pub.mate-desktop.org/releases/"
-                           (version-major+minor version) "/"
+       (uri (string-append "mirror://mate/" (version-major+minor version) "/"
                            name "-" version ".tar.xz"))
        (sha256
         (base32
@@ -1117,8 +1102,7 @@ sessions, panels, menus, file management, and preferences.")
     (source
      (origin
        (method url-fetch)
-       (uri (string-append "https://pub.mate-desktop.org/releases/"
-                           (version-major+minor version) "/"
+       (uri (string-append "mirror://mate/" (version-major+minor version) "/"
                            name "-" version ".tar.xz"))
        (sha256
         (base32
@@ -1149,8 +1133,7 @@ sessions, panels, menus, file management, and preferences.")
     (source
      (origin
        (method url-fetch)
-       (uri (string-append "https://pub.mate-desktop.org/releases/"
-                           (version-major+minor version) "/"
+       (uri (string-append "mirror://mate/" (version-major+minor version) "/"
                            name "-" version ".tar.xz"))
        (sha256
         (base32
@@ -1172,8 +1155,7 @@ can be used as backgrounds in the MATE Desktop environment.")
     (source
      (origin
        (method url-fetch)
-       (uri (string-append "https://pub.mate-desktop.org/releases/"
-                           (version-major+minor version) "/"
+       (uri (string-append "mirror://mate/" (version-major+minor version) "/"
                            name "-" version ".tar.xz"))
        (sha256
         (base32
@@ -1214,8 +1196,7 @@ Re-decorates windows on un-maximise.
     (source
      (origin
        (method url-fetch)
-       (uri (string-append "https://pub.mate-desktop.org/releases/"
-                           (version-major+minor version) "/"
+       (uri (string-append "mirror://mate/" (version-major+minor version) "/"
                            name "-" version ".tar.xz"))
        (sha256
         (base32
@@ -1286,8 +1267,7 @@ can be used as backgrounds in the MATE Desktop environment.")
     (source
      (origin
        (method url-fetch)
-       (uri (string-append "https://pub.mate-desktop.org/releases/"
-                           (version-major+minor version) "/"
+       (uri (string-append "mirror://mate/" (version-major+minor version) "/"
                            name "-" version ".tar.xz"))
        (sha256
         (base32
@@ -1339,8 +1319,7 @@ can be used as backgrounds in the MATE Desktop environment.")
     (source
      (origin
        (method url-fetch)
-       (uri (string-append "https://pub.mate-desktop.org/releases/"
-                           (version-major+minor version) "/"
+       (uri (string-append "mirror://mate/" (version-major+minor version) "/"
                            name "-" version ".tar.xz"))
        (sha256
         (base32
@@ -1390,8 +1369,7 @@ can be used as backgrounds in the MATE Desktop environment.")
     (source
      (origin
        (method url-fetch)
-       (uri (string-append "https://pub.mate-desktop.org/releases/"
-                           (version-major+minor version) "/"
+       (uri (string-append "mirror://mate/" (version-major+minor version) "/"
                            name "-" version ".tar.xz"))
        (sha256
         (base32
@@ -1444,8 +1422,7 @@ can be used as backgrounds in the MATE Desktop environment.")
     (source
      (origin
        (method url-fetch)
-       (uri (string-append "https://pub.mate-desktop.org/releases/"
-                           (version-major+minor version) "/"
+       (uri (string-append "mirror://mate/" (version-major+minor version) "/"
                            name "-" version ".tar.xz"))
        (sha256
         (base32
@@ -1495,8 +1472,7 @@ can be used as backgrounds in the MATE Desktop environment.")
     (source
      (origin
        (method url-fetch)
-       (uri (string-append "https://pub.mate-desktop.org/releases/"
-                           (version-major+minor version) "/"
+       (uri (string-append "mirror://mate/" (version-major+minor version) "/"
                            name "-" version ".tar.xz"))
        (sha256
         (base32
@@ -1536,8 +1512,7 @@ MATE Desktop to monitor your system resources and usage.")
     (source
      (origin
        (method url-fetch)
-       (uri (string-append "https://pub.mate-desktop.org/releases/"
-                           (version-major+minor version) "/"
+       (uri (string-append "mirror://mate/" (version-major+minor version) "/"
                            name "-" version ".tar.xz"))
        (sha256
         (base32
-- 
2.21.0


^ permalink raw reply related	[flat|nested] 36+ messages in thread

* bug#35818: [PATCH] gnu: Use mirror://mate/ in source URIs.
  2019-05-27  7:11     ` guy fleury iteriteka
@ 2019-05-27 10:02       ` Ludovic Courtès
  0 siblings, 0 replies; 36+ messages in thread
From: Ludovic Courtès @ 2019-05-27 10:02 UTC (permalink / raw)
  To: guy fleury iteriteka; +Cc: 35818-done

Hi,

guy fleury iteriteka <hoonandon@gmail.com> skribis:

> From 3c76a517f763f592f49da4da15a3ee33ff25cd25 Mon Sep 17 00:00:00 2001
> From: guy fleury iteriteka <hoonandon@gmail.com>
> Date: Fri, 17 May 2019 09:15:35 +0200
> Subject: [PATCH] gnu: MATE: Use mirror://mate/ in source URIs.
>
> * gnu/packages/mate.scm(MATE packages)[source](uri): Use "mirror://mate/"
>   instead of "https://pub.mate-desktop.org/releases/" directly.

Applied, thanks!

Ludo'.

^ permalink raw reply	[flat|nested] 36+ messages in thread

end of thread, other threads:[~2019-05-27 10:03 UTC | newest]

Thread overview: 36+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-05-21  8:50 [bug#35818] [PATCH 01/31] gnu: mate-common: Use mirror://mate/ in source URI guy fleury iteriteka
2019-05-21  8:50 ` [bug#35820] [PATCH 02/31] gnu: mate-icon-theme: " guy fleury iteriteka
2019-05-21  8:50 ` [bug#35819] [PATCH 03/31] gnu: mate-icon-theme-faenza: " guy fleury iteriteka
2019-05-21  8:50 ` [bug#35821] [PATCH 04/31] gnu: mate-desktop: " guy fleury iteriteka
2019-05-21  8:50 ` [bug#35822] [PATCH 05/31] gnu: libmateweather: " guy fleury iteriteka
2019-05-21  8:50 ` [bug#35823] [PATCH 06/31] gnu: mate-terminal: " guy fleury iteriteka
2019-05-21  8:50 ` [bug#35824] [PATCH 07/31] gnu: mate-session-manager: " guy fleury iteriteka
2019-05-21  8:50 ` [bug#35825] [PATCH 08/31] gnu: mate-settings-daemon: " guy fleury iteriteka
2019-05-21  8:50 ` [bug#35826] [PATCH 09/31] gnu: libmatemixer: " guy fleury iteriteka
2019-05-21  8:50 ` [bug#35827] [PATCH 10/31] gnu: libmatekbd: " guy fleury iteriteka
2019-05-21  8:50 ` [bug#35828] [PATCH 11/31] gnu: mate-menus: " guy fleury iteriteka
2019-05-21  8:50 ` [bug#35830] [PATCH 12/31] gnu: mate-applets: " guy fleury iteriteka
2019-05-21  8:50 ` [bug#35829] [PATCH 13/31] gnu: mate-media: " guy fleury iteriteka
2019-05-21  8:50 ` [bug#35831] [PATCH 14/31] gnu: mate-panel: " guy fleury iteriteka
2019-05-21  8:50 ` [bug#35832] [PATCH 15/31] gnu: atril: " guy fleury iteriteka
2019-05-21  8:50 ` [bug#35833] [PATCH 16/31] gnu: caja: " guy fleury iteriteka
2019-05-21  8:50 ` [bug#35834] [PATCH 17/31] gnu: caja-extensions: " guy fleury iteriteka
2019-05-21  8:50 ` [bug#35835] [PATCH 18/31] gnu: mate-control-center: " guy fleury iteriteka
2019-05-21  8:51 ` [bug#35836] [PATCH 19/31] gnu: marco: " guy fleury iteriteka
2019-05-21  8:51 ` [bug#35838] [PATCH 20/31] gnu: mate-user-guide: " guy fleury iteriteka
2019-05-21  8:51 ` [bug#35837] [PATCH 21/31] gnu: mate-calc: " guy fleury iteriteka
2019-05-21  8:51 ` [bug#35839] [PATCH 22/31] gnu: mate-backgrounds: " guy fleury iteriteka
2019-05-21  8:51 ` [bug#35840] [PATCH 23/31] gnu: mate-netbook: " guy fleury iteriteka
2019-05-21  8:51 ` [bug#35818] [PATCH 24/31] gnu: mate-screensaver: " guy fleury iteriteka
2019-05-21  8:51 ` [bug#35818] [PATCH 25/31] gnu: mate-utils: " guy fleury iteriteka
2019-05-21  8:51 ` [bug#35818] [PATCH 26/31] gnu: eom: " guy fleury iteriteka
2019-05-21  8:51 ` [bug#35818] [PATCH 27/31] gnu: engrampa: " guy fleury iteriteka
2019-05-21  8:51 ` [bug#35818] [PATCH 28/31] gnu: pluma: " guy fleury iteriteka
2019-05-21  8:51 ` [bug#35818] [PATCH 29/31] gnu: mate-system-monitor: " guy fleury iteriteka
2019-05-21  8:51 ` [bug#35818] [PATCH 30/31] gnu: mate-polkit: " guy fleury iteriteka
2019-05-21  8:51 ` [bug#35818] [PATCH 31/31] gnu: mate-themes: Use mirror://mate/themes/ " guy fleury iteriteka
2019-05-21 11:26 ` [bug#35818] [PATCH] gnu: Use mirror://mate/ in source URIs Tobias Geerinckx-Rice
2019-05-22  6:59   ` Guy fleury
2019-05-24 15:40   ` Ludovic Courtès
2019-05-27  7:11     ` guy fleury iteriteka
2019-05-27 10:02       ` bug#35818: " Ludovic Courtès

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.