diff options
author | William Hubbs <w.d.hubbs@gmail.com> | 2016-09-23 15:25:22 -0500 |
---|---|---|
committer | William Hubbs <w.d.hubbs@gmail.com> | 2016-09-23 15:28:56 -0500 |
commit | 24010dcb483cf7284cd8a5db111ae63f0d4e1038 (patch) | |
tree | 3d0171292db924a608f60b7b09492a066fdcb92d | |
parent | 0a76627345a173fc00be9864f3f3f5c3b15319cd (diff) |
dist: convert to tar.gz
This allows the "make dist" target to be used as well as the github
archive generation.
-rw-r--r-- | .gitignore | 2 | ||||
-rw-r--r-- | mk/dist.mk | 10 |
2 files changed, 6 insertions, 6 deletions
@@ -1,4 +1,4 @@ -*.bz2 +*.gz *.diff *.patch @@ -11,9 +11,9 @@ GITREF?= ${VERSION} DISTPREFIX?= ${NAME}-${VERSION} -DISTFILE?= ${DISTPREFIX}.tar.bz2 +DISTFILE?= ${DISTPREFIX}.tar.gz -CLEANFILES+= ${NAME}-*.tar.bz2 +CLEANFILES+= ${NAME}-*.tar.gz CHANGELOG_LIMIT?= --after="1 year ago" @@ -21,13 +21,13 @@ _SNAP_SH= date -u +%Y%m%d%H%M _SNAP:= $(shell ${_SNAP_SH}) SNAP= ${_SNAP} SNAPDIR= ${DISTPREFIX}-${SNAP} -SNAPFILE= ${SNAPDIR}.tar.bz2 +SNAPFILE= ${SNAPDIR}.tar.gz changelog: git log ${CHANGELOG_LIMIT} --format=full > ChangeLog dist: - git archive --prefix=${DISTPREFIX}/ ${GITREF} | bzip2 > ${DISTFILE} + git archive --prefix=${DISTPREFIX}/ ${GITREF} --output=${DISTFILE} distcheck: dist rm -rf ${DISTPREFIX} @@ -42,7 +42,7 @@ snapshot: cp -RPp * /tmp/${SNAPDIR} (cd /tmp/${SNAPDIR}; make clean) rm -rf /tmp/${SNAPDIR}/.git 2>/dev/null || true - tar -cvjpf ${SNAPFILE} -C /tmp ${SNAPDIR} + tar -cvzpf ${SNAPFILE} -C /tmp ${SNAPDIR} rm -rf /tmp/${SNAPDIR} ls -l ${SNAPFILE} |