mirror of
https://github.com/macports/macports-ports.git
synced 2026-07-12 18:20:25 -07:00
72 lines
2.7 KiB
Tcl
72 lines
2.7 KiB
Tcl
# -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4
|
|
|
|
PortSystem 1.0
|
|
PortGroup github 1.0
|
|
PortGroup python 1.0
|
|
|
|
github.setup wkentaro gdown 5.2.1 v
|
|
github.tarball_from archive
|
|
revision 0
|
|
|
|
categories net python
|
|
license MIT
|
|
maintainers {i0ntempest @i0ntempest} openmaintainer
|
|
supported_archs noarch
|
|
|
|
description Google Drive Public File Downloader when Curl/Wget Fails
|
|
long_description ${github.project} downloads a public file/folder from Google Drive.\
|
|
${github.project} provides what curl/wget doesn't for Google Drive:\n\
|
|
Skip the security notice allowing you to download large files \(curl/wget fails\)\;\n\
|
|
Recursive download of files in a folder \(maximum 50 files per folder\)\;\n\
|
|
Specify download file format for Google Slides/Sheet/Docs like PDF/XML/CSV
|
|
|
|
checksums rmd160 a4c7d7b97ad10a53f1d8e20665acf441719badd3 \
|
|
sha256 c19d2dc7be09b08ac2674f0b7d47902a412af4574dcd161a00c4703ef68f8b19 \
|
|
size 283713
|
|
|
|
depends_build-append \
|
|
port:py${python.version}-setuptools \
|
|
port:py${python.version}-setuptools_scm \
|
|
port:py${python.version}-hatch-fancy-pypi-readme \
|
|
port:py${python.version}-hatch-vcs
|
|
|
|
depends_lib-append \
|
|
port:py${python.version}-filelock \
|
|
port:py${python.version}-requests \
|
|
port:py${python.version}-tqdm \
|
|
port:py${python.version}-beautifulsoup4 \
|
|
port:py${python.version}-typing_extensions
|
|
|
|
python.pep517_backend \
|
|
hatch
|
|
|
|
build.env-append SETUPTOOLS_SCM_PRETEND_VERSION=${version}
|
|
|
|
if {
|
|
![variant_isset python310] && ![variant_isset python311] &&
|
|
![variant_isset python312] && ![variant_isset python313] &&
|
|
![variant_isset python314]
|
|
} {
|
|
default_variants +python314
|
|
}
|
|
|
|
variant python310 conflicts python311 python312 python313 python314 description {Use Python 3.10} {
|
|
python.default_version 310
|
|
}
|
|
|
|
variant python311 conflicts python310 python312 python313 python314 description {Use Python 3.11} {
|
|
python.default_version 311
|
|
}
|
|
|
|
variant python312 conflicts python310 python311 python313 python314 description {Use Python 3.12} {
|
|
python.default_version 312
|
|
}
|
|
|
|
variant python313 conflicts python310 python311 python312 python314 description {Use Python 3.13} {
|
|
python.default_version 313
|
|
}
|
|
|
|
variant python314 conflicts python310 python311 python312 python313 description {Use Python 3.14} {
|
|
python.default_version 314
|
|
}
|