From: Roy Marples Date: Fri, 26 Apr 2019 14:23:22 +0000 (+0100) Subject: Allow make distinfo to work once more. X-Git-Tag: v6.11.7~3 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9dbef10132b921bfe5379d22f81b349dd38aaa99;p=thirdparty%2Fdhcpcd.git Allow make distinfo to work once more. --- diff --git a/Makefile b/Makefile index f8934e48..36aa1055 100644 --- a/Makefile +++ b/Makefile @@ -51,13 +51,19 @@ SED_SYS= -e 's:@SYSCONFDIR@:${SYSCONFDIR}:g' DEPEND!= test -e .depend && echo ".depend" || echo "" VERSION!= sed -n 's/\#define VERSION[[:space:]]*"\(.*\)".*/\1/p' defs.h -FOSSILID?= dhcpcd-6 - -DISTPREFIX?= ${PROG}-${VERSION} +DIST!= if test -f .fslckout; then echo "dist-fossil"; \ + elif test -d .git; then echo "dist-git"; \ + else echo "dist-inst"; fi +FOSSILID?= current +GITREF?= HEAD + +DISTSUFFIX= +DISTPREFIX?= dhcpcd-${VERSION}${DISTSUFFIX} DISTFILEGZ?= ${DISTPREFIX}.tar.gz DISTFILE?= ${DISTPREFIX}.tar.xz DISTINFO= ${DISTFILE}.distinfo DISTINFOSIGN= ${DISTINFO}.asc + CKSUM?= cksum -a SHA256 PGP?= netpgp @@ -148,11 +154,23 @@ distclean: clean rm -f .depend config.h config.mk config.log \ ${DISTFILE} ${DISTFILEGZ} ${DISTINFO} ${DISTINFOSIGN} -dist: +dist-fossil: fossil tarball --name ${DISTPREFIX} ${FOSSILID} ${DISTFILEGZ} gunzip -c ${DISTFILEGZ} | xz >${DISTFILE} rm ${DISTFILEGZ} +dist-git: + git archive --prefix=${DISTPREFIX}/ ${GITREF} | xz >${DISTFILE} + +dist-inst: + mkdir /tmp/${DISTPREFIX} + cp -RPp * /tmp/${DISTPREFIX} + (cd /tmp/${DISTPREFIX}; make clean) + tar -cvjpf ${DISTFILE} -C /tmp ${DISTPREFIX} + rm -rf /tmp/${DISTPREFIX} + +dist: ${DIST} + distinfo: dist rm -f ${DISTINFO} ${DISTINFOSIGN} ${CKSUM} ${DISTFILE} >${DISTINFO}