summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorEmmanuel Vadot <manu@FreeBSD.org>2020-11-02 18:23:50 +0000
committerEmmanuel Vadot <manu@FreeBSD.org>2020-11-02 18:23:50 +0000
commit0ac8aa55da1cb5e53a9102fd007dd01ee6d17894 (patch)
treee4e370815ab8b3fbe9c705cb1df687ecf6e0a000 /Makefile
parent36639c3942f587e652d2aba6a71ad45b64c2ce47 (diff)
downloadsrc-test-0ac8aa55da1cb5e53a9102fd007dd01ee6d17894.tar.gz
src-test-0ac8aa55da1cb5e53a9102fd007dd01ee6d17894.zip
pkgbase: Add incremental packages
This adds a new target update-packages which will create the new packages compared to the last run. This is how to use it: At this point we cut a release $ make buildworld ... $ make buildkernel $ make packages There is now a PKG_VERSION directory with latest link pointing to it Distribute the packages to server $ something something that update the source tree $ make buildworld ... $ make buildkernel $ make update-packages You know have a PKG_VERSION directory in the REPODIR and latest link pointing to it. In PKG_VERSION dir only the packages which differs from the latest run are named PKG_VERSION, otherwise the old packages are there. The process is : Build the new packages in the PKG_VERSION directory Compare the internal data with the PKG_VERSION_FROM version. The comparison is done by checking the internal hash of the packages. By default PKG_VERSION_FROM is set to what the latest link points to. If the old and new version matches, we rm the new package and cp the old one. Differential Revision: https://reviews.freebsd.org/D25984
Notes
Notes: svn path=/head/; revision=367277
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 9b55fe6f01f30..32d5977c3eacf 100644
--- a/Makefile
+++ b/Makefile
@@ -162,8 +162,8 @@ TGTS= all all-man buildenv buildenvvars buildkernel buildworld \
xdev-links native-xtools native-xtools-install stageworld stagekernel \
stage-packages stage-packages-kernel stage-packages-world \
create-packages-world create-packages-kernel create-packages \
- packages installconfig real-packages sign-packages package-pkg \
- print-dir test-system-compiler test-system-linker
+ update-packages packages installconfig real-packages real-update-packages \
+ sign-packages package-pkg print-dir test-system-compiler test-system-linker
# These targets require a TARGET and TARGET_ARCH be defined.
XTGTS= native-xtools native-xtools-install xdev xdev-build xdev-install \