Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2020-08-04 | mk/fetch/fetch.mk: add keywords for "bmake help" | rillig | 1 | -1/+2 | |
2020-06-18 | mk: do not check vulnerability when just fetching distfiles | wiz | 1 | -2/+2 | |
This is intended to reduce the log output on ftp.NetBSD.org when fetching all distfiles. Also, we call the target in basically every step of package creation (extract, patch, configure, build, install, package) - perhaps we should trim this down some more. | |||||
2020-04-25 | mk/fetch/fetch.mk: Use -f with ofhttp | js | 1 | -2/+2 | |
pkgsrc wants to be able to override files when the checksum didn't match. | |||||
2020-04-25 | mk/fetch/fetch.mk: Add ofhttp as fetcher | js | 1 | -1/+7 | |
2020-03-30 | mk/fetch/fetch.mk: don't print double-slash in pathname | rillig | 1 | -2/+2 | |
2018-01-11 | Add FETCH_PROXY and FETCH_PROXY.{ftp,http,https}. | alnsn | 1 | -5/+39 | |
2017-08-01 | Do not perform checksum tests when explicitly calling a make target that | jperkin | 1 | -2/+3 | |
creates or updates the checksum. Allows users to set FAILOVER_FETCH in mk.conf unconditionally and be able to update distinfo files without first having to remove them. | |||||
2016-01-06 | Use :tA to make DISTINFO_FILE absolute when passing it to the fetch | dholland | 1 | -2/+2 | |
and checksum scripts. Fixes the problem where DISTINFO_FILE=../../foo/bar/distinfo doesn't work without having an extraneous and ugly ${.CURDIR} stuffed into it by hand. | |||||
2015-09-14 | Reorder and fix logic snafu. | joerg | 1 | -3/+3 | |
2015-09-13 | Introduce IGNORE_INTERACTIVE_FETCH to allow trying to fetch files from | joerg | 1 | -2/+7 | |
the override site, even for INTERACTIVE_STATE=stage or FETCH_MESSAGE. Ignore all backup sites as they won't have the distfile anyway, the fetch wouldn't be interactive in first place otherwise. | |||||
2015-09-08 | Add a hook for running an action after a successful fetch. | joerg | 1 | -1/+4 | |
This is intended for keeping distfile archives synchronised between different machines without requiring NFS mounts or the like. | |||||
2014-10-07 | Pass "--remote-time" option to "curl" to get correct time stamps | tron | 1 | -2/+2 | |
on downloaded files. | |||||
2014-02-14 | tell wget as a tool. | obache | 1 | -2/+2 | |
2013-11-16 | Ensure failure on failure of depends-fetch and depends-checksum targets. | jakllsch | 1 | -2/+2 | |
2013-11-16 | Use correct verb in depends-fetch target information message. | jakllsch | 1 | -2/+2 | |
2013-02-16 | Remove fetched file if fetch command succeeds to fetch but checksum mismatch | obache | 1 | -1/+2 | |
with PKG_RESUME_TRANSFERS=YES. PR 39896. | |||||
2013-02-07 | FTPUSERAGENT is a environment variable for ftp(1), not a make variable. | obache | 1 | -2/+1 | |
No need to pass here. related to PR 47525. | |||||
2013-01-20 | Allow overwritting of FTPUSERAGENT for some broken sites, which requires it. | morr | 1 | -2/+2 | |
2012-12-14 | Clear FTPUSERAGENT environment variable. | ryoon | 1 | -1/+2 | |
When FTPUSERAGENT="Mozilla/1.0", for example, fetching from MASTER_SITE_SOURCEFORGE fails. Original problem is reported from tsutsui@. | |||||
2012-07-27 | Make curl a tool. Add support for /usr/bin/curl, if available, on Solaris. | jperkin | 1 | -2/+2 | |
SmartOS and OmniOS users can now set FETCH_USING=curl and no longer require pkgsrc dependencies for downloading distfiles. | |||||
2012-02-06 | Revert runaway commit | fhajny | 1 | -1/+2 | |
2012-02-06 | Added devel/ruby-kgio, www/ruby-raindrops and www/ruby-unicorn | fhajny | 1 | -2/+1 | |
2011-12-06 | Let wget to skip CERT check, same as curl doing. | obache | 1 | -1/+2 | |
2011-09-08 | Introduce PKGSRC_SETENV, defaulting to SETENV. Can be set to ${SETENV} -i | abs | 1 | -3/+3 | |
to santise environment | |||||
2011-05-17 | he -> the typo in fetch.mk; reported by Snader_LB | mspo | 1 | -2/+2 | |
2011-02-10 | Disable certificate checks when using "curl". This fixes the build of | tron | 1 | -2/+2 | |
the "youtube-dl" package. | |||||
2011-02-08 | Add FETCH_USE_IPV4_ONLY option to force connecting to only IPv4 addresses. | obache | 1 | -5/+12 | |
2011-02-08 | Add `--location' option for curl to follow HTTP redirect. | obache | 1 | -2/+2 | |
2011-02-08 | Let curl to silent fail with server error. | obache | 1 | -1/+2 | |
fixes a part of PR#44528. | |||||
2011-01-22 | For curl, "=" is not required for longname options with value. | obache | 1 | -3/+3 | |
2011-01-18 | For PR #44396. | reed | 1 | -2/+2 | |
"FETCH_CMD is the program used to fetch files for FETCH_USING=custom." | |||||
2010-06-27 | Add FETCH_TIMEOUT option to limit the time connections may hang during | joerg | 1 | -5/+13 | |
fetch. Requested by spz@, OK by wiz@ | |||||
2009-07-15 | Add depends-fetch and depends-checksum. They work like | joerg | 1 | -1/+11 | |
show-depends-options, e.g. recurse. make fetch-list does not provide the same functionality as it doesn't deal well with broken mirror. | |||||
2009-03-17 | Replaced _PKG_SILENT and _PKG_DEBUG with RUN. | rillig | 1 | -7/+7 | |
2009-02-17 | Fix C&P error. Pointed out by OBATA Akio. | joerg | 1 | -2/+2 | |
2009-02-14 | Don't use += to append to an empty variable. If PASSIVE_FTP is not | joerg | 1 | -5/+3 | |
defined, it would still leave the variable with a non-empty value and that would be passed down to the fetch command when running fetch-list. | |||||
2009-02-10 | Optionally request passive FTP for wget. | joerg | 1 | -2/+2 | |
2009-02-10 | Change the way the fetch process is organised as proposed on tech-pkg: | joerg | 1 | -19/+26 | |
- Introduce FETCH_USING, which specifies the mechanism to use; possible values are ftp, fetch, curl, wget, manual and custom. - Depend on the correct tool/program if not using manual or custom. - For manual, just use /usr/bin/false to bail out if a distfile is missing. - For custom, FETCH_CMD and related variables are used as before. - Default value is ftp. | |||||
2008-10-08 | Allow use of fetch as FETCH_CMD. | joerg | 1 | -1/+6 | |
2008-09-24 | Fix a typo in comment. | obache | 1 | -2/+2 | |
2008-09-07 | Add FETCH_*_ARGS templates for curl. | obache | 1 | -1/+7 | |
Should be solution for PR 39208. | |||||
2008-05-22 | Move digest dependency into checksum and fetch part. | joerg | 1 | -25/+1 | |
Make _ALL_FILES and in turn _CKSUMFILES available earlier. Use it to only depend on digest if _CKSUMFILES is non-empty. NO_CHECKSUM will now only skip the checksum and checksum-phase targets. FAILOVER_FETCH will independently check the sums on distfiles and depend on digest, fixing the remaining issues originally raised in PR 34914. | |||||
2008-04-03 | Move handling of pkg_install version into flavor. Add an explicit | joerg | 1 | -1/+2 | |
phase pkg_install-depends before bootstrap-depends that just tries to install a new pkg_install if the current version is too old. Still keep it as bootstrap dependency for the bulk build code. For NetBSD, PKG_TOOLS_BIN has to be computed in shell code due to a make bug. OK: jlam@ | |||||
2007-12-01 | Removed _INTERACTIVE_COOKIE, after asking on tech-pkg if anyone needs | rillig | 1 | -2/+1 | |
it. It had only been used to change the "nerrors" variable in bulk builds, but this variable is not used further anyway. | |||||
2007-12-01 | If a package defines FETCH_MESSAGE, show that instead of the generic | rillig | 1 | -2/+2 | |
instructions. | |||||
2007-09-06 | If DISTDIR points to a non-existing location and a package has neither | joerg | 1 | -1/+6 | |
PATCHFILES nor DISTFILES, make fetch would complain about an unbuildable dependency. Fix this by explicitly checking that _ALLFILES is not empty. Reported by Sean Boudreau. | |||||
2007-08-14 | Checksum checks only make sense when distinfo is also present, so | joerg | 1 | -3/+2 | |
move this into the conditional. | |||||
2007-08-01 | Teach mirror-distfiles to use emul-fetch if EMUL_PLATFORMS is defined so | jlam | 1 | -1/+3 | |
that mirror sites will grab all of the distfiles, not just the ones that are for the native platform. | |||||
2007-07-14 | No need to pass "." as directory, it is default value. | obache | 1 | -3/+1 | |
2007-07-14 | Allow empty DIST_SUBDIR, need to fix PR 35494. | obache | 1 | -3/+7 | |