Makefile: modify the 'dist' directive to allow 'make dist', 'make dist-rpm', and 'make dist-rpm-install' with a cloned git archive

Signed-off-by: Davide Madrisan <davide.madrisan@gmail.com>
This commit is contained in:
Davide Madrisan 2012-10-06 22:07:20 +02:00
parent 20748b3fe6
commit 49655b2bf4
2 changed files with 19 additions and 4 deletions

View File

@ -7,6 +7,10 @@ Changes in version 1.12.6
* autospec.spec - Davide Madrisan:
Make the specfile more distro-agnostic.
* Makefile - Davide Madrisan:
Modify the 'dist' directive to allow 'make dist', 'make dist-rpm', and
'make dist-rpm-install' with a cloned git archive.
-------------------------------------------------------------------------------
Changes in version 1.12.5

View File

@ -150,11 +150,22 @@ dist: clean
esac; \
done
@rm -f history/$(dist_archive)
@echo "Creating the compressed tarball..."
@$(INSTALL_DIR) history
tar cf - --exclude=history --exclude=.git \
-C .. $(distdir) |\
bzip2 -9 -c > history/$(dist_archive)
@echo "Creating a temporary copy of the entire repository..."
@tmpdir=`mktemp -q -d -t $(PACKAGE)-dist.XXXXXXXX`;\
[ $$? -eq 0 ] || \
{ echo "cannot create a temporary directory"; exit 1; };\
$(INSTALL_DIR) $$tmpdir/$(PACKAGE)-$(VERSION);\
find . -mindepth 1 \( -name .git -o -name history \) \
-prune -o \( \! -name *~ -print0 \) | \
cpio --quiet -pmd0 $$tmpdir/$(PACKAGE)-$(VERSION)/;\
currdir="`pwd`";\
echo "Creating the compressed tarball...";\
pushd $$tmpdir/$(PACKAGE)-$(VERSION)/ >/dev/null;\
tar cf - -C .. $(PACKAGE)-$(VERSION) |\
bzip2 -9 -c > "$$currdir"/history/$(dist_archive);\
popd >/dev/null;\
rm -fr $$tmpdir
dist-rpm: dist $(PACKAGE).spec
@rpm_name=$(PACKAGE)-$(VERSION)-$(RELEASE);\