Compare commits
9 Commits
debian-4.3
...
release-4.
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
7860d5ac4e | ||
|
|
bb54ee7868 | ||
|
|
6a5506768c | ||
|
|
d6e33edb5b | ||
|
|
611d6c4eb4 | ||
|
|
0cde7cdf39 | ||
|
|
cde5617a29 | ||
|
|
74411f970b | ||
|
|
3383b6dacf |
3
Makefile
3
Makefile
@@ -14,7 +14,7 @@
|
||||
#
|
||||
TMP ?= /tmp
|
||||
DIST_PREFIX = ${TMP}
|
||||
VERSION = 4.3
|
||||
VERSION = 4.3.1
|
||||
DEBVERSION = $(shell echo $(VERSION)|sed 's/\(rc\|pre\|beta\|alpha\)/~\1/')
|
||||
BASE = xen-tools
|
||||
VCS = git
|
||||
@@ -68,6 +68,7 @@ clean:
|
||||
@if [ -d debian/xen-tools ]; then rm -rf ./debian/xen-tools; fi
|
||||
@if [ -e $(BASE)-$(VERSION).tar.gz ]; then rm $(BASE)-$(VERSION).tar.gz ; fi
|
||||
@if [ -e $(BASE)-$(VERSION).tar.gz.asc ]; then rm $(BASE)-$(VERSION).tar.gz.asc ; fi
|
||||
cd t; $(MAKE) clean
|
||||
|
||||
|
||||
#
|
||||
|
||||
@@ -822,7 +822,7 @@ my $FAIL = 0;
|
||||
#
|
||||
# Release number.
|
||||
#
|
||||
my $RELEASE = '4.3';
|
||||
my $RELEASE = '4.3.1';
|
||||
|
||||
|
||||
#
|
||||
|
||||
@@ -131,7 +131,7 @@ $CONFIG{ 'template' } = '/etc/xen-tools/xm-nfs.tmpl';
|
||||
#
|
||||
# Release number.
|
||||
#
|
||||
my $RELEASE = '4.3';
|
||||
my $RELEASE = '4.3.1';
|
||||
|
||||
|
||||
# store version number away.
|
||||
|
||||
@@ -171,7 +171,7 @@ my %CONFIG;
|
||||
#
|
||||
# Release number.
|
||||
#
|
||||
my $RELEASE = '4.3';
|
||||
my $RELEASE = '4.3.1';
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -101,7 +101,7 @@ $CONFIG{ 'prefix' } = "/etc/xen";
|
||||
#
|
||||
# Release number.
|
||||
#
|
||||
my $RELEASE = '4.3';
|
||||
my $RELEASE = '4.3.1';
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -116,7 +116,7 @@ my %CONFIG;
|
||||
#
|
||||
# Release number.
|
||||
#
|
||||
my $RELEASE = '4.3';
|
||||
my $RELEASE = '4.3.1';
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -120,7 +120,7 @@ my %CONFIG;
|
||||
#
|
||||
# Release number.
|
||||
#
|
||||
my $RELEASE = '4.3';
|
||||
my $RELEASE = '4.3.1';
|
||||
|
||||
|
||||
#
|
||||
|
||||
@@ -156,7 +156,7 @@ $CONFIG{ 'extension' } = '.cfg';
|
||||
#
|
||||
# Release number.
|
||||
#
|
||||
my $RELEASE = '4.3';
|
||||
my $RELEASE = '4.3.1';
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -98,7 +98,7 @@ my %CONFIG;
|
||||
#
|
||||
# Release number.
|
||||
#
|
||||
my $RELEASE = '4.3';
|
||||
my $RELEASE = '4.3.1';
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -81,7 +81,7 @@ use strict;
|
||||
#
|
||||
# Release number.
|
||||
#
|
||||
my $RELEASE = '4.3';
|
||||
my $RELEASE = '4.3.1';
|
||||
|
||||
# Init
|
||||
my $mirror = '';
|
||||
|
||||
@@ -118,7 +118,7 @@ my %CONFIG;
|
||||
#
|
||||
# Release number.
|
||||
#
|
||||
my $RELEASE = '4.3';
|
||||
my $RELEASE = '4.3.1';
|
||||
|
||||
|
||||
#
|
||||
|
||||
9
debian/changelog
vendored
9
debian/changelog
vendored
@@ -1,3 +1,12 @@
|
||||
xen-tools (4.3.1-1) unstable; urgency=low
|
||||
|
||||
* Remove t/modules.t in upstream's t/Makefile instead of debian/rules'
|
||||
clean target.
|
||||
* Run t/hook-tls.t only if distribution actually has
|
||||
10-disable-tls. Fixes test suite failure on 32 bit architectures.
|
||||
|
||||
-- Axel Beckert <abe@debian.org> Sat, 30 Jun 2012 16:44:50 +0200
|
||||
|
||||
xen-tools (4.3-1) unstable; urgency=low
|
||||
|
||||
* New upstream release
|
||||
|
||||
1
debian/clean
vendored
1
debian/clean
vendored
@@ -1 +0,0 @@
|
||||
t/modules.t
|
||||
@@ -10,4 +10,4 @@ modules: modules.sh
|
||||
./modules.sh > modules.t
|
||||
|
||||
clean:
|
||||
-rm *~
|
||||
rm -vf *~ modules.t
|
||||
|
||||
14
t/hook-tls.t
14
t/hook-tls.t
@@ -27,14 +27,14 @@ else
|
||||
#
|
||||
foreach my $dir ( glob( "hooks/*" ) )
|
||||
{
|
||||
next if ( $dir =~ /CVS/i );
|
||||
next if ( $dir =~ /CVS|common/i );
|
||||
next if ( ! -d $dir );
|
||||
|
||||
if ( $dir =~ /hooks\/(.*)/ )
|
||||
{
|
||||
my $dist = $1;
|
||||
|
||||
testTLSDisabling( $dist ) unless ( $dist =~ /(dapper|edgy|ubuntu|debian)/i );
|
||||
testTLSDisabling( $dist ) if -e "hooks/$dist/10-disable-tls";
|
||||
}
|
||||
}
|
||||
|
||||
@@ -69,8 +69,8 @@ sub testTLSDisabling
|
||||
#
|
||||
ok( -d "hooks/$dist", "There is a hook directory for the distro $dist" );
|
||||
|
||||
ok( -e "hooks/$dist/10-disable-tls", "TLS Disabling hook exists" );
|
||||
ok( -x "hooks/$dist/10-disable-tls", "TLS Disabling hook is executable" );
|
||||
ok( -e "hooks/$dist/10-disable-tls", "TLS Disabling hook exists ($dist)" );
|
||||
ok( -x "hooks/$dist/10-disable-tls", "TLS Disabling hook is executable ($dist)" );
|
||||
|
||||
#
|
||||
# Call the hook
|
||||
@@ -80,7 +80,7 @@ sub testTLSDisabling
|
||||
#
|
||||
# Make sure the the TLS directory is empty
|
||||
#
|
||||
ok( ! -e "$dir/lib/tls/foo", "The fake library from /lib/tls is gone" );
|
||||
ok( -e "$dir/lib/tls.disabled/foo", "The fake library ended up in /lib/tls.disabled" );
|
||||
ok( -d "$dir/lib/tls", "There is a new /lib/tls directory" );
|
||||
ok( ! -e "$dir/lib/tls/foo", "The fake library from /lib/tls is gone ($dist)" );
|
||||
ok( -e "$dir/lib/tls.disabled/foo", "The fake library ended up in /lib/tls.disabled ($dist)" );
|
||||
ok( -d "$dir/lib/tls", "There is a new /lib/tls directory ($dist)" );
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user