Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] common/travis: switch CI scripts to repo-ci
@ 2022-06-15  0:31 classabbyamp
  2022-06-15  0:32 ` [PR PATCH] [Updated] " classabbyamp
  2022-06-23  5:54 ` [PR PATCH] [Merged]: " the-maldridge
  0 siblings, 2 replies; 3+ messages in thread
From: classabbyamp @ 2022-06-15  0:31 UTC (permalink / raw)
  To: ml

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

There is a new pull request by classabbyamp against master on the void-packages repository

https://github.com/classabbyamp/void-packages ci/repo-ci
https://github.com/void-linux/void-packages/pull/37564

common/travis: switch CI scripts to repo-ci
None

A patch file from https://github.com/void-linux/void-packages/pull/37564.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-ci/repo-ci-37564.patch --]
[-- Type: text/x-diff, Size: 1321 bytes --]

From fa0e06c64dec1b0cf354e071978dacf37954bc0f Mon Sep 17 00:00:00 2001
From: classabbyamp <void@placeviolette.net>
Date: Tue, 14 Jun 2022 20:29:44 -0400
Subject: [PATCH] common/travis: switch CI scripts to repo-ci

---
 common/travis/fetch-xbps.sh | 2 +-
 common/travis/set_mirror.sh | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/common/travis/fetch-xbps.sh b/common/travis/fetch-xbps.sh
index 17fd2b4d9db2..e5c588142826 100755
--- a/common/travis/fetch-xbps.sh
+++ b/common/travis/fetch-xbps.sh
@@ -7,7 +7,7 @@ TAR=tar
 command -v bsdtar >/dev/null && TAR=bsdtar
 ARCH=$(uname -m)-musl
 VERSION=0.59_5
-URL="https://repo-default.voidlinux.org/static/xbps-static-static-${VERSION}.${ARCH}.tar.xz"
+URL="https://repo-ci.voidlinux.org/static/xbps-static-static-${VERSION}.${ARCH}.tar.xz"
 FILE=${URL##*/}
 
 mkdir -p /tmp/bin
diff --git a/common/travis/set_mirror.sh b/common/travis/set_mirror.sh
index 53c3ad489f92..52bd7a5e12a2 100755
--- a/common/travis/set_mirror.sh
+++ b/common/travis/set_mirror.sh
@@ -12,5 +12,5 @@ for _i in etc/xbps.d/repos-remote*.conf ; do
 
     # Now set the mirror
     sed -i "s:alpha\.de\.repo\.voidlinux\.org:$TRAVIS_MIRROR:g" $_i
-    sed -i "s:repo-default\.voidlinux\.org:$TRAVIS_MIRROR:g" $_i
+    sed -i "s:repo-ci\.voidlinux\.org:$TRAVIS_MIRROR:g" $_i
 done

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

* Re: [PR PATCH] [Updated] common/travis: switch CI scripts to repo-ci
  2022-06-15  0:31 [PR PATCH] common/travis: switch CI scripts to repo-ci classabbyamp
@ 2022-06-15  0:32 ` classabbyamp
  2022-06-23  5:54 ` [PR PATCH] [Merged]: " the-maldridge
  1 sibling, 0 replies; 3+ messages in thread
From: classabbyamp @ 2022-06-15  0:32 UTC (permalink / raw)
  To: ml

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

There is an updated pull request by classabbyamp against master on the void-packages repository

https://github.com/classabbyamp/void-packages ci/repo-ci
https://github.com/void-linux/void-packages/pull/37564

common/travis: switch CI scripts to repo-ci
None

A patch file from https://github.com/void-linux/void-packages/pull/37564.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-ci/repo-ci-37564.patch --]
[-- Type: text/x-diff, Size: 1249 bytes --]

From ba80a9a37e3b07297ff32f4bda85241909e8212a Mon Sep 17 00:00:00 2001
From: classabbyamp <void@placeviolette.net>
Date: Tue, 14 Jun 2022 20:29:44 -0400
Subject: [PATCH] common/travis: switch CI scripts to repo-ci

---
 common/travis/fetch-xbps.sh | 2 +-
 common/travis/set_mirror.sh | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/common/travis/fetch-xbps.sh b/common/travis/fetch-xbps.sh
index 17fd2b4d9db2..e5c588142826 100755
--- a/common/travis/fetch-xbps.sh
+++ b/common/travis/fetch-xbps.sh
@@ -7,7 +7,7 @@ TAR=tar
 command -v bsdtar >/dev/null && TAR=bsdtar
 ARCH=$(uname -m)-musl
 VERSION=0.59_5
-URL="https://repo-default.voidlinux.org/static/xbps-static-static-${VERSION}.${ARCH}.tar.xz"
+URL="https://repo-ci.voidlinux.org/static/xbps-static-static-${VERSION}.${ARCH}.tar.xz"
 FILE=${URL##*/}
 
 mkdir -p /tmp/bin
diff --git a/common/travis/set_mirror.sh b/common/travis/set_mirror.sh
index 53c3ad489f92..c14f6ac70e34 100755
--- a/common/travis/set_mirror.sh
+++ b/common/travis/set_mirror.sh
@@ -1,7 +1,7 @@
 #!/bin/sh
 
 TRAVIS_PROTO=http
-TRAVIS_MIRROR=repo-us.voidlinux.org
+TRAVIS_MIRROR=repo-ci.voidlinux.org
 
 for _i in etc/xbps.d/repos-remote*.conf ; do
     /bin/echo -e "\x1b[32mUpdating $_i...\x1b[0m"

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

* Re: [PR PATCH] [Merged]: common/travis: switch CI scripts to repo-ci
  2022-06-15  0:31 [PR PATCH] common/travis: switch CI scripts to repo-ci classabbyamp
  2022-06-15  0:32 ` [PR PATCH] [Updated] " classabbyamp
@ 2022-06-23  5:54 ` the-maldridge
  1 sibling, 0 replies; 3+ messages in thread
From: the-maldridge @ 2022-06-23  5:54 UTC (permalink / raw)
  To: ml

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

There's a merged pull request on the void-packages repository

common/travis: switch CI scripts to repo-ci
https://github.com/void-linux/void-packages/pull/37564

Description:
None

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

end of thread, other threads:[~2022-06-23  5:54 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-06-15  0:31 [PR PATCH] common/travis: switch CI scripts to repo-ci classabbyamp
2022-06-15  0:32 ` [PR PATCH] [Updated] " classabbyamp
2022-06-23  5:54 ` [PR PATCH] [Merged]: " the-maldridge

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).