summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2021-06-15Add 1.6.1 releaseHEAD1.6.1masterPeter Bex
2021-06-15Handle symlinks first when moving files to cacheMario Domenech Goulart
When moving files from the temporary directory to the cache directory, we must handle symlinks first. If we handle the _target_ before the symlink, the target will be deleted and `copy-file' will break when trying to copy the symlink, as it will be dangling. Signed-off-by: Peter Bex <peter@more-magic.net>
2020-03-22Bump version to 1.61.6Peter Bex
2020-03-22Add note why module is commented outPeter Bex
2020-03-22Change default CHICKEN release to 5Peter Bex
2020-03-22Also copy over dotfiles after extracting the egg archivePeter Bex
2019-09-22Add 1.5.1 to release info filesPeter Bex
2019-09-22Bump version in setup file to 1.5.11.5.1Peter Bex
2019-09-22Remove module wrapperPeter Bex
Forgot about the fact that hooks exist. It is unclear how this should work with initfiles that register hooks. Ideally it would simply be a matter of exporting the hooks, but then we need a C4 installation procedure that somehow installs just the program and an import library. With C5 this would be easier, but I don't yet want to make henrietta-cache C5-only.
2019-09-22Add build artifacts to ignore filePeter Bex
2019-09-22Release 1.5Peter Bex
2019-09-22Fix CHICKEN 4 imports1.5Peter Bex
2019-09-22Wrap the program in a module formPeter Bex
This makes it easier to find out missing imports.
2019-09-22Fix short option argument groupingPeter Bex
This used lset-intersection but that should've been lset-difference.
2019-09-22Add -k and -n flags, suggested by Diego "dieggsy"Peter Bex
The -k or -keep option tells henrietta-cache to throw away older releases, so that only the supplied number of latest releases is kept. The -n option tells henrietta-cache to not download any new releases. It can be used if one wants to prune old releases, together with -k.
2019-09-12Fix sloppy code dealing with tmpdir parent deletionPeter Bex
Somehow this now causes an exception to be raised when the temp dir was the contents dir, because move-to-cache already removes that directory.
2019-09-12Also add 1.4 to C5 release-infoPeter Bex
2019-09-03Add tag 1.4 to release-infoPeter Bex
2019-09-01Don't use "tmp" and copy instead of move to improve permission handling1.4Peter Bex
tmp causes warnings when linking on OpenBSD. Group ownership switches to the directory and warns when moving (on OpenBSD and possibly other BSDs, too). Thanks to "n0goOi3"
2018-09-06Add 1.3 release1.3Peter Bex
2018-09-06Drop module wrapper, as that breaks backwards compatibilityPeter Bex
The -i (init file) option means we can't wrap things in a module, unless we build and ship the module, which will mean people need to rewrite the init file. Not worth the hassle to figure out how to do it "properly". Fixes #1531, reported by Mario Goulart
2018-09-05Release version 1.21.2Peter Bex
2018-09-05Port to CHICKEN 5Peter Bex
This drops support for CHICKEN versions before 4.6 (copy-port is required now)
2018-09-05Wrap program in a module to make it easier to portPeter Bex
Fix some issues like depending on srfi-13 implicitly only for string-null? and some other bad imports.
2018-09-05Improve egg/meta-file handling by only allowing "distribution-files" in ↵Peter Bex
egg-files and "files" in meta-files There's some minor code duplication but it's worth the loss of confusion and potential for error.
2018-09-05Support for CHICKEN 5's egg description filesMario Domenech Goulart
Support both `meta-file' and `egg-file' as URI types, and both `files' and `distribution-files' forms in egg description files (.meta for C4 and .egg for C5). Note that: * Although `distribution-files' is intended to be used by C5's chicken-install, it can also be used in the toplevel of .meta files, as chicken-install for C4 is very permissive. `files', however, cannot be used in the toplevel of .egg files. * (uri meta-file ...) can point to a .egg file, and (uri egg-file ...) can point to a .meta file. `egg-file' is just and alias to `meta-file' for naming consistency in C5. * henrietta-cache for C4 can be used to cache eggs for C5 (and supports `egg-file' and `distribution-files'). Signed-off-by: Peter Bex <peter@more-magic.net>
2016-03-04Update release-info to point to more-magic.netPeter Bex
2015-05-03Updated release-info file for release tag 1.1Peter Bex
2015-05-03Added tag 1.1 for changeset 74dca0085692Peter Bex
2015-05-03Bump version to 1.11.1Peter Bex
2015-05-03Use gunzip and bunzip instead of zcat and bzcat, for compatibility reasonsPeter Bex
As reported by Jim Ursetto, the version of zcat shipped with OS X doesn't handle gzipped files, and gzcat doesn't exist on many Linuxen. However, gunzip has a -c option which does the same. For consistency, use bunzip2 -c as well.
2014-09-15Updated release-info file for release tag 1.0Peter Bex
2014-09-15Added tag 1.0 for changeset 120e66c47492Peter Bex
2014-09-15Bump version to 1.01.0Peter Bex
2014-09-15Also pass CHICKEN release to the hooksPeter Bex
2014-09-15Do not default to the current CHICKEN release, that's just too confusing (I ↵Peter Bex
think). Remove "tags" subdirectories
2013-10-29Updated release-info file for release tag 0.4.1Peter Bex
2013-10-29Added tag 0.4.1 for changeset d0925e19129aPeter Bex
2013-10-29Fix pax_global_header problem0.4.1Peter Bex
2013-10-13Updated release-info file for release tag 0.4Peter Bex
2013-10-13Added tag 0.4 for changeset ca56e2ba477ePeter Bex
2013-10-01Bump version to 0.40.4Peter Bex
2013-10-01Download files from file-list types to a tmpdir and move them once completed.Peter Bex
This ensures that when we crap out mid-way for some reason, we won't leave an empty or half-populated directory around, which would cause it to skip the dir instead of trying again on the next run. (File-list types are meta-file or plaintext flat file listing)
2013-10-01Instead of trying to be fancy and "portable" with pax, just use tar.Peter Bex
Pax supports replacement patterns which makes it slightly simpler to use (and it's actually a standard), we'll just rely on the commonly supported tar flags "x" and "f", and just hope it'll work everywhere. This is because (at least on NetBSD), pax only supports plain ustar format, which has silly limitations on file name length. Longer file names are a GNU extension, which means we'll need something that supports these extensions anyway. On the long run we should probably switch to libarchive, but I don't feel like writing yet another egg just to work around these few problems. Also, don't create the target directory in advance but let the procedures do this, so if something breaks we won't get empty directories. This ensures it will be retried later.
2013-09-25Fix up tags; apparently rebasing doesn't work properlyPeter Bex
2013-09-25Added tag 0.3 for changeset f1be9412cc27Peter Bex
2013-09-25Updated release-info file for release tag 0.30.3Peter Bex
2013-09-25Added tag 0.3 for changeset feadfc3e0d6fPeter Bex
2013-09-25Bump version in setup file to 0.3Peter Bex
2012-02-23Merged in DerGuteMoritz/henrietta-cache/handle-init-file-errors (pull ↵Peter Bex
request #4)