diff options
author | dylan.araps@gmail.com <dylan.araps@gmail.com> | 2019-09-09 08:28:35 +0000 |
---|---|---|
committer | dylan.araps@gmail.com <dylan.araps@gmail.com> | 2019-09-09 08:28:35 +0000 |
commit | 908e21e9c1e9db1313e2ca84efa16863c2716495 (patch) | |
tree | 0f72ff925ea7217063ff09cb1497ca9a173ca6db /kiss | |
parent | 18bcfe6dc7105bde286d1bce07747fc4e096aa97 (diff) | |
download | cpt-908e21e9c1e9db1313e2ca84efa16863c2716495.tar.gz |
kiss: remove unused and hacky git source support. Will be re-added.
FossilOrigin-Name: 2dc7315104a5aa8e7f6cbd304d329f598b27feb5318c43c485dc94671870498b
Diffstat (limited to 'kiss')
-rwxr-xr-x | kiss | 13 |
1 files changed, 0 insertions, 13 deletions
@@ -121,11 +121,6 @@ pkg_sources() { while read -r src _; do case $src in - # Git repository. - git:*) - git clone "${src##git:}" "$mak_dir" - ;; - # Remote source. *://*) [ -f "${src##*/}" ] && { @@ -165,10 +160,6 @@ pkg_extract() { mkdir -p "./$dest" case $src in - # Do nothing as git repository was downloaded to the build - # directory directly. - git:*) ;; - # Only 'tar' archives are currently supported for extraction. # Any other file-types are simply copied to '$mak_dir' which # allows you to extract them manually. @@ -553,10 +544,6 @@ pkg_checksums() { while read -r src _; do case $src in - # Git repository. - # Skip checksums on git repositories. - git:*) ;; - *) # File is local to the package and is stored in the # repository. |