[sheepdog-users] [PATCH stable-0.7 2/2] deb: create deb package from raw source archive

Hitoshi Mitake mitake.hitoshi at lab.ntt.co.jp
Mon Feb 24 06:44:03 CET 2014


This patch makes it possible for users to create debian package from
raw source archive.

Related issue:
https://bugs.launchpad.net/sheepdog-project/+bug/1264255

Reported-by: Bastian Scholz <scholzb at t-online.de>
Signed-off-by: Hitoshi Mitake <mitake.hitoshi at lab.ntt.co.jp>
Signed-off-by: Liu Yuan <namei.unix at gmail.com>
---
 Makefile.am |    6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/Makefile.am b/Makefile.am
index 510dd52..8df99ec 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -97,7 +97,11 @@ rpm: clean
 
 deb:
 	fakeroot ./debian/rules clean
-	git log > debian/CHANGELOG
+	@if [ -d .git ]; then \
+		git log > debian/CHANGELOG; \
+	else \
+		echo "This package doesn't contain CHANGELOG because it is build from raw source archive." > debian/CHANGELOG; \
+	fi
 	rm -f debian/changelog
 	dch -v $(shell echo $(PACKAGE_VERSION) | sed s/_/+/ | sed s/_/./g)-1 \
 		--package sheepdog --create 'Local build'
-- 
1.7.10.4




More information about the sheepdog-users mailing list