File: Makedistrib.pl

package info (click to toggle)
ecaccess 4.0.1-1
  • links: PTS
  • area: main
  • in suites: buster, jessie, jessie-kfreebsd, stretch
  • size: 11,208 kB
  • ctags: 1,084
  • sloc: perl: 2,046; makefile: 962
file content (211 lines) | stat: -rwxr-xr-x 5,227 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
#!/usr/bin/perl -w
#
# Makedistrib.pl: create package to be distributed. In the
# Windows environment expect to find the dmake command.
#
# Laurent.Gougeon@ecmwf.int - 2011-09-21
#
# Required libraries to run this script:
#
#  perl -MCPAN -e "install PAR"
#  perl -MCPAN -e "install PAR::Packer"
#  perl -MCPAN -e "install Archive::Tar"
#
# This script must be started from the source
# directory.

use Cwd;
use File::Path;
use File::Copy;
use Archive::Tar;
use Archive::Zip qw( :ERROR_CODES :CONSTANTS );

#
# Function to start an external command
#
sub execCmd($$) {
	my $command      = $_[0];
	my $expectedCode = $_[1];
	print "# " . $command . "\n";
	my $result = `$command 2>&1`;
	die "Error: $! (exit-code = $?)\n" if $expectedCode != -1 && not( $? >> 8 == $expectedCode );
	print $result;
	return $result;
}

#
# Where to install the ECMWF module?
#
my $installBase = "";

#
# Set the PERL5LIB environment parameter to install the ECMWF module
# in the source directory if "ecaccess-perl5" is defined. Otherwise
# the module is installed in the standard directories.
#
if ( $ENV{'PERL5LIB'} ) {
	my $perl5lib = $ENV{'PERL5LIB'};
	my $index = index( $perl5lib, 'ecaccess-perl5' );
	if ( $index != -1 ) {
		my $find = quotemeta substr( $perl5lib, 0, $index );
		$perl5lib =~ s/$find//g;
		$ENV{'PERL5LIB'} = $perl5lib . ":" . $ENV{'PERL5LIB'};
		$installBase = " INSTALL_BASE=ecaccess-perl5";
	}
}

#
# Get the ECaccess version number from the current directory
# name
#
my $cwd     = getcwd();
my $version = substr $cwd, -5, length($cwd);
my $make    = "make";

#
# Get the target system name (OS)
#
my $system;
if ( $^O =~ /^MSWin/ ) {
	$system = "windows";
	$make   = "dmake";
}
else {
	my $unameS = execCmd "uname -s", 0;
	my $unameM = execCmd "uname -m", 0;
	chomp($unameS);
	chomp($unameM);

	if ( $ENV{'ECACCESS_WEBTOOLKIT_PERL_TARGET_OS'} ) {
		$unameS = $ENV{'ECACCESS_WEBTOOLKIT_PERL_TARGET_OS'};
	}

	$system = $unameS . "-" . $unameM;
}

#
# Make, test and install the ECMWF module.
#
execCmd "perl Makefile.PL" . $installBase, 0;
execCmd $make, 0;
execCmd $make . " test",    0;
execCmd $make . " install", 0;

#
# Build the package name
#
my $packageName = "ecaccess-webtoolkit-" . $version . "-" . $system;
print "Creating package " . $packageName . "\n";

#
# Clean/create the target directory
#
rmtree "$packageName";
mkdir "$packageName";

#
# Get the list of scripts from the MANIFEST
#
my $scriptsList = "";
open( MANIFEST, "MANIFEST" );
while ( $record = <MANIFEST> ) {
	chomp($record);
	$scriptsList = "$scriptsList $record" if ( $record =~ m/^script/ );
}
close(MANIFEST);

# Runtime dependencies and options
my $dependencies = "--compress=9";

#
# Create the distribution
#
if ( $^O =~ /^MSWin/ ) {

	#
	# Process the Windows package
	#
	execCmd "pp " . $dependencies . " -M IO::Socket::SSL --output=$packageName/ecaccess-command.exe script/ecaccess-command $scriptsList", 0;

	# Goto the distrib directory
	chdir $packageName or die "Chdir failed ($packageName):  $!\n";

	# Create the bat files
	foreach ( split( / /, $scriptsList ) ) {
		$name = $_;
		if ( length($name) > 7 ) {
			my $scriptName = ( substr $name, 7 );
			print "Create ", $scriptName, ".bat file\n";
			open FILE, ">$scriptName" . ".bat" or die $!;
			print FILE "\@rem -------------------------------------------------------------\n";
			print FILE "\@rem Helper to start the $scriptName command from the\n";
			print FILE "\@rem ecaccess-command.exe file.\n";
			print FILE "\@rem \n";
			print FILE "\@rem Laurent.Gougeon\@ecmwf.int - 2012-02-09\n";
			print FILE "\@rem -------------------------------------------------------------\n";
			print FILE "\@%~dp0\\ecaccess-command.exe $scriptName %*\n";
			close FILE;
		}
	}

	# Go back to the main directory
	chdir "..";
}
else {

	#
	# Process the Unix packages
	#
	execCmd "pp " . $dependencies . " -M IO::Socket::INET6 -M IO::Socket::SSL -M Pod::Text --output=$packageName/.ecaccess-command script/ecaccess-command $scriptsList", 0;

	# Goto the distrib directory
	chdir $packageName or die "Chdir failed ($packageName):  $!\n";

	# Create the links/copies
	$source = ".ecaccess-command";
	foreach ( split( / /, $scriptsList ) ) {
		$name = $_;
		if ( length($name) > 7 ) {
			my $scriptName = substr $name, 7;
			print "ln ", $source, "->", $scriptName, "\n";
			symlink $source, $scriptName;
			execCmd "./$scriptName -v", -1;
		}
	}

	# Go back to the main directory
	chdir "..";
}

#
# Build the list of files to distribute
#
@archivefiles = <$packageName/*>;

#
# Push the ecaccess helper
#
push( @archivefiles, "$packageName/.ecaccess-command" )    if ( not $^O =~ /^MSWin/ );
push( @archivefiles, "$packageName/ecaccess-command.exe" ) if ( $^O     =~ /^MSWin/ );

#
# Compress the distribution files
#
print "Packing distribution\n";

if ( not $^O =~ /^MSWin/ ) {
	Archive::Tar->create_archive( "$packageName" . ".tar.gz", 9, @archivefiles ) or die "Create tar.gz failed ($packageName):  $!\n";
}
else {

	# Create a Zip file
	my $zip = Archive::Zip->new();

	# Add a directory
	$zip->addTree( $packageName . "/" );

	# Save the Zip file
	unless ( $zip->writeToFileNamed( "$packageName" . ".zip" ) == AZ_OK ) {
		die "Create zip failed ($packageName):  $!\n";
	}
}