-Had to update the awips-ade and awips-devel dockers -Update rpm building to include awips2-python-awips (which includes awips, dynamicserialize, thrift packages), and remove rpm install dependencies on ufpy, dynamicserialize, and thrift -Update LDM scripts and edexBridge to use awips instead of ufpy -Update multiple python scripts across several repos to use awips instead of ufpy -awips2 -awips2-core -awips2-nativelib -awips2-ncep -awips2-rpm
27 lines
396 B
Perl
27 lines
396 B
Perl
#!/usr/bin/perl
|
|
|
|
$date="20240108";
|
|
|
|
$path="/awips2/repo/awips2/dist/el7-dev-$date";
|
|
|
|
@repos=("noarch","x86_64");
|
|
|
|
foreach $repo(@repos)
|
|
{
|
|
chomp $repo;
|
|
|
|
@rpms=`ls $path/$repo`;
|
|
foreach $rpm(@rpms)
|
|
{
|
|
chomp $rpm;
|
|
$output=`rpm -qpl $path/$repo/$rpm`;
|
|
@splitOutput=split(/\n/,$output);
|
|
|
|
foreach $l(@splitOutput)
|
|
{
|
|
chomp $l;
|
|
print "$rpm:=====$l\n";
|
|
}
|
|
}
|
|
}
|
|
|