summaryrefslogtreecommitdiff
path: root/app-admin/vasile/files/switch-to-pagure.patch
blob: 88cc9fbe9f6af4802cf38a3e8db70fe0c42970ac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
From 9caaa7afc334e87fc46a038ae01516fed0ad0406 Mon Sep 17 00:00:00 2001
From: V3n3RiX <venerix@redcorelinux.org>
Date: Jul 21 2018 19:15:53 +0000
Subject: sadly our cgit doesn't play nice with shallow clones, so switch to pagure.io


---

diff --git a/src/backend/f_makeiso.sh b/src/backend/f_makeiso.sh
index 936a780..87e6261 100644
--- a/src/backend/f_makeiso.sh
+++ b/src/backend/f_makeiso.sh
@@ -137,7 +137,7 @@ mkliveimg () {
 
 cfgbootldr () {
 	# fetch and install GRUB2 config files
-	git clone https://gitlab.com/"$distname"/boot-core.git "$jailbootldrdlpath"
+	git clone https://pagure.io/redcore/boot-core.git "$jailbootldrdlpath"
 	cp -avx "$jailbootldrcfgpath" "$jailrootpath"
 	sync
 }
diff --git a/src/backend/f_modeswitch.sh b/src/backend/f_modeswitch.sh
index d85f36f..8a40938 100644
--- a/src/backend/f_modeswitch.sh
+++ b/src/backend/f_modeswitch.sh
@@ -33,7 +33,7 @@ dlmainportfulltree () {
 	if [ ! -d ""$jailmainportpath"/.git" ] ; then
 		einfo "I am injecting Gentoo ebuild tree"
 		cd "$jailmainportpath" && git init > /dev/null 2>&1
-		git remote add origin http://redcorelinux.org/cgit/portage/
+		git remote add origin https://pagure.io/redcore/portage.git
 		git pull --depth=1 origin master
 		git branch -u origin/master master
 		rm -rf ""$jailmainportpath"/profiles/updates"
@@ -44,7 +44,7 @@ dlmainportmintree () {
 	if [ ! -d ""$jailmainportpath"/.git" ] ; then
 		einfo "I am injecting Gentoo ebuild tree"
 		cd "$jailmainportpath" && git init > /dev/null 2>&1
-		git remote add origin http://redcorelinux.org/cgit/portage/
+		git remote add origin https://pagure.io/redcore/portage.git
 		git config core.sparsecheckout true
 		echo "profiles/*" >> .git/info/sparse-checkout
 		echo "metadata/*" >> .git/info/sparse-checkout
@@ -59,7 +59,7 @@ dladdonportfulltree () {
 	if [ ! -d ""$jailaddonportpath"/.git" ] ; then
 		einfo "I am injecting Redcore ebuild tree"
 		cd "$jailaddonportpath" && git init > /dev/null 2>&1
-		git remote add origin http://redcorelinux.org/cgit/redcore-desktop/
+		git remote add origin https://pagure.io/redcore/redcore-desktop.git
 		git pull --depth=1 origin master
 		git branch -u origin/master master
 	fi
@@ -69,7 +69,7 @@ dladdonportmintree () {
 	if [ ! -d ""$jailaddonportpath"/.git" ] ; then
 		einfo "I am injecting Redcore ebuild tree"
 		cd "$jailaddonportpath" && git init > /dev/null 2>&1
-		git remote add origin http://redcorelinux.org/cgit/redcore-desktop/
+		git remote add origin https://pagure.io/redcore/redcore-desktop.git
 		git config core.sparsecheckout true
 		echo "profiles/*" >> .git/info/sparse-checkout
 		echo "metadata/*" >> .git/info/sparse-checkout
@@ -82,7 +82,7 @@ dladdonportmintree () {
 dlportcfgtree () {
 	pushd /opt > /dev/null 2>&1
 	einfo "I am injecting portage configuration"
-	git clone http://redcorelinux.org/cgit/redcore-build/
+	git clone https://pagure.io/redcore/redcore-build.git
 	popd > /dev/null 2>&1
 }