From 0f3cc3aa55bcc6476d721f9fbb8dfe8559d85ff7 Mon Sep 17 00:00:00 2001 From: Rob Austein Date: Mon, 27 Jun 2016 16:26:25 -0400 Subject: First cut at consolidated alpha releng. Undoubtedly doesn't work yet, and still needs doc, but perhaps now ready for testing on build machine. --- software/Makefile | 64 ------------------------------------------------------- 1 file changed, 64 deletions(-) delete mode 100644 software/Makefile (limited to 'software/Makefile') diff --git a/software/Makefile b/software/Makefile deleted file mode 100644 index 787fea4..0000000 --- a/software/Makefile +++ /dev/null @@ -1,64 +0,0 @@ -# Top-level build of software packages to work with Cryptech Alpha board. - -export CRYPTECH_VERSION := 2.0 - -HEAD_TIME := $(shell git show -s --format=%ct HEAD) -HEAD_HASH := $(shell git rev-parse HEAD) - -PACKAGE_NAME := cryptech-alpha -PACKAGE_VERSION := ${CRYPTECH_VERSION}~${HEAD_TIME}~${HEAD_HASH} - -export GNUPGHOME := /home/aptbot/gnupg - -REPO_BASE := /home/aptbot/alpha -REPO_UMASK := 002 - -PBUILDER_BASE := ${HOME}/pbuilder -PBUILDER_TARGETS := debian/jessie/i386 debian/jessie/amd64 ubuntu/xenial/i386 ubuntu/xenial/amd64 - -REPO_UPLOAD_USER := aptbot -REPO_UPLOAD_URI := rsync://apt.cryptech.is/alpha/ - -# Command to generate a new changelog containing one entry. -# Does nothing if the changelog already exists. - -DCH = test -f debian/changelog || \ - EDITOR=true VISUAL=true TZ=UTC DEBEMAIL='APT Builder Robot ' \ - dch --create --package ${PACKAGE_NAME} --newversion '${PACKAGE_VERSION}' \ - '$(strip Version ${CRYPTECH_VERSION} of software for Cryptech Alpha development board.)' - -all: init source pbuilder homebrew - -enchilada: all upload - -init: - git submodule update --init --recursive - -clean: - git clean -dfx - git submodule foreach --recursive git clean -dfx - -sandblast: clean - git submodule deinit -f . - -source: - cd source; ${DCH} - cd source; debuild -S -uc -us - -pbuilder: - rm -f ${PBUILDER_BASE}/*result/* - umask ${REPO_UMASK}; \ - for target in ${PBUILDER_TARGETS}; do echo $$target | tr '/' ' '; done | \ - while read dist code arch; do \ - reprepro -b ${REPO_BASE}/$$dist -A $$arch list $$code ${PACKAGE_NAME} | awk '{v = $$3} END {exit v != "${PACKAGE_VERSION}"}' && continue; \ - pbuilder-dist $$code $$arch build ${PACKAGE_NAME}_${PACKAGE_VERSION}.dsc; \ - reprepro -b ${REPO_BASE}/$$dist include $$code ${PBUILDER_BASE}/$${code}-$${arch}_result/${PACKAGE_NAME}_${PACKAGE_VERSION}_$${arch}.changes; \ - done - -RSYNC := rsync --rsh 'ssh -l ${REPO_UPLOAD_USER}' --archive --itemize-changes - -upload: - ${RSYNC} --ignore-existing ${REPO_BASE}/ ${REPO_UPLOAD_URI} - ${RSYNC} --delete --delete-delay ${REPO_BASE}/ ${REPO_UPLOAD_URI} - -.PHONY: all init clean source pbuilder homebrew upload enchilada sandblast -- cgit v1.2.3