mirror of
https://github.com/clearlinux/mixer-tools.git
synced 2026-09-05 05:01:28 +00:00
- superpack-maker.sh Create superpacks for each bundle in an update version. The superpack replaces oldest pack in that directory (excluding zero packs) and is a superset of updates needed for all newer packs. Leaves a defined number of newest delta packs unchanged. The remaining delta packs are symlinked to the superpack. - create-update.sh Define variables for superpack-maker.sh, call pack-maker.sh, and call superpack-maker.sh - Makefile.am Install superpack-maker.sh Signed-off-by: Matthew Johnson <matthew.johnson@intel.com>
24 lines
608 B
Makefile
24 lines
608 B
Makefile
dist_bin_SCRIPTS = \
|
|
add-rpms.sh \
|
|
create-update.sh \
|
|
build-chroots.sh \
|
|
init-mix.sh \
|
|
init-versions.sh \
|
|
update-bundles.sh \
|
|
pack-maker.sh \
|
|
superpack-maker.sh
|
|
|
|
configdir = $(datadir)/defaults/mixer
|
|
dist_config_DATA = yum.conf.in
|
|
EXTRA_DIST = COPYING
|
|
|
|
release:
|
|
@git rev-parse v$(PACKAGE_VERSION) &> /dev/null; \
|
|
if [ "$$?" -eq 0 ]; then \
|
|
echo "Error: Release $(PACKAGE_VERSION) already exists."; \
|
|
echo "Bump version in configure.ac before releasing."; \
|
|
exit 1; \
|
|
fi
|
|
@git tag -a -m "Release $(PACKAGE_VERSION)" v$(PACKAGE_VERSION)
|
|
@printf "\nNew release $(PACKAGE_VERSION) tagged!\n\n"
|