mirror of
ssh://git.janware.com/srv/git/janware/proj/jw-pkg
synced 2026-01-15 20:13:32 +01:00
Add a unified $(MOD_SCRIPT_DIR) definition and usage, ubiquitously used but not very well tested.
70 lines
2.1 KiB
Makefile
70 lines
2.1 KiB
Makefile
# === variable definitions
|
|
GET_OS_SH = sh $(MOD_SCRIPT_DIR)/get_os.sh
|
|
GENERATE_SELECTION = sh $(MOD_SCRIPT_DIR)/generate_selection.sh
|
|
UPLOAD_SH = sh $(MOD_SCRIPT_DIR)/upload.sh
|
|
|
|
DISTRIBUTOR = $(shell $(GET_OS_SH) | cut -d- -f1)
|
|
DISTRO_RELEASE = $(shell $(GET_OS_SH) | cut -d- -f2-)
|
|
UPLOAD_URL = root@ftp.jannet.de:/home/ftp/dat/pub/packages/linux/$(DISTRIBUTOR)/$(DISTRO_RELEASE)/inst-source/setup/descr
|
|
|
|
SELECTION = $(shell $(GENERATE_SELECTION) -s)-packages.txt
|
|
CHANNEL_LIST = $(shell $(GENERATE_SELECTION) -s)-channels.txt
|
|
|
|
# === targets
|
|
all: selection.done channels.done
|
|
install:
|
|
clean:
|
|
rm -rf *.done *.tmp
|
|
distclean: clean
|
|
upload: upload.done
|
|
install-smart: rpm-install-smart.done
|
|
commit: selection.done channels.done
|
|
cvs add $(SELECTION) $(CHANNEL_LIST) || exit 0
|
|
cvs commit -m "o updated by target $@"
|
|
smart-update: smart-update.done
|
|
smart-config: smart-config.done
|
|
write: selection.done channels.done
|
|
|
|
# === rules
|
|
selection.done: $(MODDIR)/make/smart-selection.mk
|
|
rpm -qa --queryformat '%{NAME}\n' | sort -u | \
|
|
sed ' \
|
|
/gpg-pubkey/ d \
|
|
' > $(SELECTION)
|
|
touch $@
|
|
|
|
channels.done: $(MODDIR)/make/smart-selection.mk
|
|
smart channel --show | sed '/\[rpm-sys\]/,+3 d' > $(CHANNEL_LIST)
|
|
touch $@
|
|
|
|
upload.done: selection.done
|
|
sh $(UPLOAD_SH) $(SELECTION) $(CHANNEL_LIST) $(UPLOAD_URL)
|
|
ssh -l root ftp.jannet.de /etc/cron.hourly/create_packet_descriptions.sh
|
|
touch $@
|
|
|
|
rpm-install-smart.done:
|
|
if ! rpm -q smart >/dev/null 2>&1 ; then \
|
|
wget ftp.jannet.de:/pub/packages/linux/$(DISTRIBUTOR)/$(DISTRO_RELEASE)/inst-source/rpm/i686/smart.rpm; \
|
|
sudo rpm -U smart.rpm; \
|
|
sudo smart update; \
|
|
sudo smart channel --remove-all; \
|
|
fi
|
|
touch $@
|
|
|
|
smart-update.done:
|
|
sudo smart update || exit 0
|
|
touch $@
|
|
|
|
%-packages.txt-install: smart-update.done
|
|
cat $*-packages.txt | xargs sudo smart install -y
|
|
|
|
%-channels.txt-replace:
|
|
sudo smart channel -y --remove-all
|
|
sudo smart channel -y --add $*-channels.txt
|
|
sudo smart update || exit 0
|
|
|
|
smart-config.done:
|
|
sudo smart config --set rpm-check-signatures=false
|
|
sudo smart config --set remove-packages=false
|
|
touch $@
|
|
|