1
0

initial import from Debian

version: 14.3.0-5
commit: bee30ab0fff2fd6af94c62376c8aa4221bb831e0
This commit is contained in:
2025-08-11 15:00:09 +03:00
commit c2c1923c7b
274 changed files with 101988 additions and 0 deletions

39
debian/ada/libgnat_alihash vendored Executable file
View File

@@ -0,0 +1,39 @@
#!/usr/bin/perl
# Helper for debian/rules2.
# Exit silently during builds without Ada.
# If the gnat RTS directory contains .ali (Ada Library Information) files,
# output a dpkg-gencontrol command line argument setting the
# libgnat:Provides substitution variable
# to the XOR of the checksums in all such files,
# as 8 lowercase hexadecimal digits.
# See https://people.debian.org/~lbrenta/debian-ada-policy.html.
# Should be in sync with dh_ada_library in the dh-ada-library package.
# perl -c $script
# perltidy $script -st | diff -u $script -
# perlcritic -1 --verbose=11 --exclude=Modules::RequireVersionVar $script
use autodie;
use re '/amsx';
use strict;
use warnings;
my @ali_files = glob 'build/gcc/ada/rts/*.ali';
if (@ali_files) {
my $result = 0;
for my $path (@ali_files) {
open my $fh, q{<}, $path;
while (<$fh>) {
if (m/ ^ D [ ] [^\t]+ \t+ \d{14} [ ] ( [[:xdigit:]]{8} ) /) {
$result ^= hex $1;
}
}
close $fh;
}
printf '-Vlibgnat:alihash=%08x', $result;
}