From 66ced551ca7ca441f7b3464c2f3a6ad5c422e1bc Mon Sep 17 00:00:00 2001 From: Alfred Wingate Date: Sat, 8 Oct 2022 05:44:13 +0300 Subject: [PATCH] cargo-git.eclass: remove unused Signed-off-by: Alfred Wingate --- eclass/cargo-git.eclass | 103 ---------------------------------------- 1 file changed, 103 deletions(-) delete mode 100644 eclass/cargo-git.eclass diff --git a/eclass/cargo-git.eclass b/eclass/cargo-git.eclass deleted file mode 100644 index 9065a0e..0000000 --- a/eclass/cargo-git.eclass +++ /dev/null @@ -1,103 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -# @ECLASS: cargo-git.eclass -# @MAINTAINER: -# parona@protonmail.com -# @AUTHOR: -# Alfred Wingate -# @SUPPORTED_EAPIS: 7 -# @BLURB: extend cargo.eclass to support git dependencies - -case "${EAPI:-0}" in - 0|1|2|3|4|5|6) - die "Unsupported EAPI=${EAPI:-0} (too old) for ${ECLASS}" - ;; - 7) - ;; - *) - die "Unsupported EAPI=${EAPI} (unknown) for ${ECLASS}" - ;; -esac - -inherit cargo git-r3 - -EXPORT_FUNCTIONS src_unpack - -# @ECLASS_VARIABLE: CARGO_GIT -# @DEFAULT_UNSET -# @DESCRIPTION: -# Array with the syntax "repourl oid identifier" (still not sure where the oid comes from :/) -# Fetches the repo with git-r3 and then checksout them for cargo in ECARGO_HOME -# Several checkouts arent possible at this moment, only one checkout per repository. - -# @FUNCTION: cargo-git_src_unpack -# @DESCRIPTION: -# Fetches and checksout git repositories specified in CARGO_GIT and sets up correct file structure for cargo so that it wont try to break the network sandbox -cargo-git_src_unpack() { - debug-print-function ${FUNCNAME} "$@" - - for line in "${CARGO_GIT[@]}"; do - local giturl oid identifier - read -r giturl oid identifier <<< "${line}" - - git-r3_fetch "${giturl}" "${identifier}" - done - - cargo_src_unpack - - ECARGO_GIT="${ECARGO_HOME}/git" - - for line in "${CARGO_GIT[@]}"; do - local giturl oid identifier - read -r giturl oid identifier <<< "${line}" - - name=$(basename "${giturl}" .git || die) - repodir=$(get_gitdir "${giturl}" || die) - shortid=$(git --git-dir="${repodir}" rev-parse --short "${identifier}" || die) - - git clone --bare "${repodir}" "${ECARGO_GIT}/db/${name}-${oid}" || die - - mkdir -p "${ECARGO_GIT}/checkouts/${name}-${oid}/${shortid}" || die - git-r3_checkout "${giturl}" "${ECARGO_GIT}/checkouts/${name}-${oid}/${shortid}" - - # Make cargo happy with the checkout so that it doesnt try to update it - touch "${ECARGO_GIT}/checkouts/${name}-${oid}/${shortid}/.cargo-ok" || die - done -} - -# @FUNCTION: get_gitdir -# @DESCRIPTION: -# Ripped out from git-r3.eclass to get the correct dir -get_gitdir() { - debug-print-function ${FUNCNAME} "$@" - - local repo_name=${1#*://*/} - - # strip the trailing slash - repo_name=${repo_name%/} - - # strip common prefixes to make paths more likely to match - # e.g. git://X/Y.git vs https://X/git/Y.git - # (but just one of the prefixes) - case "${repo_name}" in - # gnome.org... who else? - browse/*) repo_name=${repo_name#browse/};; - # cgit can proxy requests to git - cgit/*) repo_name=${repo_name#cgit/};; - # pretty common - git/*) repo_name=${repo_name#git/};; - # gentoo.org - gitroot/*) repo_name=${repo_name#gitroot/};; - # sourceforge - p/*) repo_name=${repo_name#p/};; - # kernel.org - pub/scm/*) repo_name=${repo_name#pub/scm/};; - esac - # ensure a .git suffix, same reason - repo_name=${repo_name%.git}.git - # now replace all the slashes - repo_name=${repo_name//\//_} - - echo "${EGIT3_STORE_DIR}/${repo_name}" -}