diff options
author | Timo Teräs <timo.teras@iki.fi> | 2015-11-09 12:47:23 +0200 |
---|---|---|
committer | Timo Teräs <timo.teras@iki.fi> | 2015-11-09 12:51:01 +0200 |
commit | cce4cff55310cddb2e2ec61d19b758e52a4e2c97 (patch) | |
tree | de2735305369fc75caee961485a6d44bc2782ce5 /src/database.c | |
parent | 7501f6012fc06ebfa8c6d8f928f38318267abe72 (diff) | |
download | apk-tools-cce4cff55310cddb2e2ec61d19b758e52a4e2c97.tar.gz apk-tools-cce4cff55310cddb2e2ec61d19b758e52a4e2c97.tar.bz2 apk-tools-cce4cff55310cddb2e2ec61d19b758e52a4e2c97.tar.xz apk-tools-cce4cff55310cddb2e2ec61d19b758e52a4e2c97.zip |
io, database: preserve [am]time for cached and fetched files
preserve [am]time for all packages and indexes. this fixes the caching
error that 'apk update' is after new index is generated, but before
the used mirror is synchronized. this caused local apkindex timestamp
to be newer than file in mirror, when in fact it was outdated index.
this also fixes fetched files to have build timestamp so that files
going to .iso or custom images have proper timestamps (rsync with
appropriate --modify-window now works)
Diffstat (limited to 'src/database.c')
-rw-r--r-- | src/database.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/database.c b/src/database.c index ed7f10b..8a56401 100644 --- a/src/database.c +++ b/src/database.c @@ -655,7 +655,10 @@ int apk_cache_download(struct apk_database *db, struct apk_repository *repo, } else fd = -1, r = PTR_ERR(is) ?: -EIO; if (fd >= 0) { + struct apk_file_meta meta; r = apk_istream_splice(is, fd, APK_SPLICE_ALL, cb, cb_ctx); + is->get_meta(is, &meta); + apk_file_meta_to_fd(fd, &meta); close(fd); } } |