018ea50518
It is customary to set a variable without the GLOBAL_ prefix. It is added to the name when exporting. I made by analogy use/cleanup/live-no-cleanup-docs. Since both targets have long names and are needed together, i made use/live/no-cleanup. Use target use/live/no-cleanup should be used instead of: @$(call set, GLOBAL_LIVE_NO_CLEANUPDB, yes)
58 lines
2.2 KiB
Makefile
58 lines
2.2 KiB
Makefile
use/cleanup:
|
|
@$(call add_feature)
|
|
@$(call xport,LIVE_NO_CLEANUPDB)
|
|
@$(call xport,LIVE_NO_CLEANUP_DOCS)
|
|
@$(call xport,CLEANUP_PACKAGES)
|
|
@$(call xport,CLEANUP_BASE_PACKAGES)
|
|
|
|
use/cleanup/live-no-cleanupdb:
|
|
@$(call set,LIVE_NO_CLEANUPDB,yes)
|
|
|
|
use/cleanup/live-no-cleanup-docs:
|
|
@$(call set,LIVE_NO_CLEANUP_DOCS,yes)
|
|
|
|
use/cleanup/libs:
|
|
@$(call add,BASE_PACKAGES,apt-scripts)
|
|
@$(call add,INSTALL2_PACKAGES,installer-feature-cleanup-libs-stage3)
|
|
|
|
use/cleanup/installer: use/cleanup
|
|
@$(call add,CLEANUP_BASE_PACKAGES,'installer-*')
|
|
|
|
use/cleanup/x11: use/cleanup use/cleanup/libs
|
|
@$(call add,CLEANUP_PACKAGES,libICE libSM libxcb 'libX*')
|
|
|
|
# as some alterator modules are installed into stage3 (the destination
|
|
# root filesystem) to perform actions like bootloader setup, we might
|
|
# have to remove them (contrary to the usual build-up)...
|
|
use/cleanup/alterator: use/cleanup
|
|
@$(call add,CLEANUP_PACKAGES,'alterator*' rpm-macros-alterator)
|
|
@$(call add,CLEANUP_PACKAGES,'guile*' libvhttpd autologin-sh-functions)
|
|
|
|
# for lightweight server distros
|
|
use/cleanup/x11-alterator: use/cleanup/x11 use/cleanup/alterator
|
|
@$(call add,CLEANUP_PACKAGES,libmng qt4-common qt5-base-common)
|
|
|
|
ifeq (,$(filter-out i586 x86_64,$(ARCH)))
|
|
# "basically everything else"; this *will* change with branches and distros
|
|
use/cleanup/jeos: use/cleanup/x11-alterator
|
|
@$(call add,CLEANUP_PACKAGES,liblcms libjpeg 'libtiff*')
|
|
@$(call add,CLEANUP_PACKAGES,avahi-autoipd iw wpa_supplicant)
|
|
@$(call add,CLEANUP_PACKAGES,openssl libpcsclite)
|
|
@# a *lot* of stray things get pulled in by alterator modules
|
|
@$(call add,CLEANUP_PACKAGES,fontconfig)
|
|
@$(call add,CLEANUP_PACKAGES,liblcms libjpeg 'libtiff*')
|
|
@$(call add,CLEANUP_PACKAGES,openssl libpcsclite)
|
|
|
|
# mostly non-interactive system
|
|
use/cleanup/jeos/full: use/cleanup/jeos
|
|
@$(call add,CLEANUP_PACKAGES,interactivesystem 'groff*' man stmpclean)
|
|
@$(call add,CLEANUP_PACKAGES,console-scripts console-vt-tools 'kbd*')
|
|
@$(call add,CLEANUP_PACKAGES,libsystemd-journal libsystemd-login)
|
|
@$(call add,CLEANUP_PACKAGES,dbus libdbus)
|
|
|
|
else
|
|
# non-x86 systems are much more prone to critical package removals,
|
|
# just avoid those for now => stub it
|
|
use/cleanup/jeos use/cleanup/jeos/full:; @:
|
|
endif
|