1
0
mirror of synced 2026-04-16 07:56:15 +00:00

Remove most Mercurial traces

This commit is contained in:
Axel Beckert
2012-06-08 21:45:49 +02:00
parent 3ce7398cf6
commit 58a050218f
5 changed files with 8 additions and 10 deletions

1
.gitignore vendored
View File

@@ -5,7 +5,6 @@
.*
# but we _wan't_ those dot-files
!.gitignore
!.hgignore
!.mailmap
# ChangeLog is generated during make

View File

@@ -1,5 +0,0 @@
(^|/)CVS($|/)
(^|/)\.hg($|/)
(^|/)\.hgtags($|/)
ChangeLog
~$

View File

@@ -17,9 +17,7 @@ DIST_PREFIX = ${TMP}
VERSION = 4.3rc1
DEBVERSION = $(shell echo $(VERSION)|sed 's/\(rc\|pre\|beta\|alpha\)/~\1/')
BASE = xen-tools
VCS = $(shell if git ls-files > /dev/null; then echo git; \
elif hg st > /dev/null; then echo hg; \
else echo cannot-determine-used-vcs; fi)
VCS = git
#
# Installation prefix, useful for the Debian package.
@@ -240,7 +238,6 @@ release: tidy fixup-perms update-version update-modules clean changelog
rm -f $(DIST_PREFIX)/$(BASE)-$(VERSION).tar.gz
cp -R . $(DIST_PREFIX)/$(BASE)-$(VERSION)
rm -rf $(DIST_PREFIX)/$(BASE)-$(VERSION)/debian
rm -rf $(DIST_PREFIX)/$(BASE)-$(VERSION)/.hg*
rm -rf $(DIST_PREFIX)/$(BASE)-$(VERSION)/.git*
cd $(DIST_PREFIX) && tar -cvf $(DIST_PREFIX)/$(BASE)-$(VERSION).tar $(BASE)-$(VERSION)/
gzip $(DIST_PREFIX)/$(BASE)-$(VERSION).tar

6
NEWS
View File

@@ -7,6 +7,12 @@ Bug Fixes
* Fix several testuite failures depending on the build host's
installation.
Other Changes
-------------
* Remove most Mercurial traces
xen-tools 4.3rc1 (released 08 Jun 2012)
=======================================

1
debian/changelog vendored
View File

@@ -1,6 +1,7 @@
xen-tools (4.3~rc2~dev-1) UNRELEASED; urgency=low
* New upstream release candidate
- Remove most Mercurial traces
* Fixes FTBFS due to testsuite failures (Closes: #676681)
- Disable tests of not yet used Xen::Tools. Fixes FTBFS in test suite
due to not satisifed Moose dependency in Xen::Tools::Log.