diff options
author | V3n3RiX <venerix@redcorelinux.org> | 2018-11-26 11:04:17 +0000 |
---|---|---|
committer | V3n3RiX <venerix@redcorelinux.org> | 2018-11-26 11:04:17 +0000 |
commit | 806aa6310fd5da334ddb5ddf39ee1e5670480939 (patch) | |
tree | 82609453f100e50def9ec63865c69c605b10e412 /app-admin/vasile/files/nuke-gitlab-switch-to-cgit.patch | |
parent | 666914bb6cc78d5364a5f23283226c9701eb9935 (diff) |
app-admin/vasile : version bump
Diffstat (limited to 'app-admin/vasile/files/nuke-gitlab-switch-to-cgit.patch')
-rw-r--r-- | app-admin/vasile/files/nuke-gitlab-switch-to-cgit.patch | 49 |
1 files changed, 0 insertions, 49 deletions
diff --git a/app-admin/vasile/files/nuke-gitlab-switch-to-cgit.patch b/app-admin/vasile/files/nuke-gitlab-switch-to-cgit.patch deleted file mode 100644 index f0699cbb..00000000 --- a/app-admin/vasile/files/nuke-gitlab-switch-to-cgit.patch +++ /dev/null @@ -1,49 +0,0 @@ -diff --git a/src/backend/f_modeswitch.sh b/src/backend/f_modeswitch.sh -index 90d62660fad1afd5e454055d5b4be79ed49d80c1..d85f36fba356caf04d7f985571f60ea8f0503509 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 https://gitlab.com/redcore/portage.git -+ git remote add origin http://redcorelinux.org/cgit/portage/ - 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 https://gitlab.com/redcore/portage.git -+ git remote add origin http://redcorelinux.org/cgit/portage/ - 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 https://gitlab.com/redcore/redcore-desktop.git -+ git remote add origin http://redcorelinux.org/cgit/redcore-desktop/ - 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 https://gitlab.com/redcore/redcore-desktop.git -+ git remote add origin http://redcorelinux.org/cgit/redcore-desktop/ - 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 https://gitlab.com/redcore/redcore-build.git -+ git clone http://redcorelinux.org/cgit/redcore-build/ - popd > /dev/null 2>&1 - } - |