* Added missing (build-)dependencies (took what was in the Ubuntu package and
which seems to be missing in Debian).
* Fixed missing license in debian/copyright.
+ * Added a get-vcs-source target in debian/rules.
-- Thomas Goirand <zigo@debian.org> Fri, 06 Jul 2012 18:03:53 +0000
rm -rf $(CURDIR)/horizon/build
rm -rf $(CURDIR)/horizon.egg-info
rm -rf $(CURDIR)/openstack_dashboard/openstack_dashboard.egg-info
+
+get-vcs-source:
+ git remote add upstream git://github.com/openstack/horizon.git || true
+ git fetch upstream
+ git archive --prefix=horizon-2012.1.1/ 2012.1.1 | xz >../horizon_2012.1.1.orig.tar.xz
+ if ! git checkout master ; then \
+ echo "No upstream branch: checking out" ; \
+ git checkout -b master upstream/master ; \
+ fi
+ git checkout debian/unstable