#!/usr/bin/perl -w # This file was preprocessed, do not edit! use strict; use POSIX; use Fcntl; use Getopt::Long; use Debconf::Client::ConfModule (); my ($config, $start, $from, $to, $stop); my $progress=1; my $dlwaypoint=15; my ($logfile, $logstderr); my $had_frontend; sub checkopen (@) { my $file = $_[0]; my $fd = POSIX::open($file, &POSIX::O_RDONLY); defined $fd or die "$0: can't open $_[0]: $!\n"; return $fd; } sub checkclose ($) { my $fd = $_[0]; unless (POSIX::close($fd)) { return if $! == &POSIX::EBADF; die "$0: can't close fd $fd: $!\n"; } } sub checkdup2 ($$) { my ($oldfd, $newfd) = @_; checkclose($newfd); POSIX::dup2($oldfd, $newfd) or die "$0: can't dup fd $oldfd to $newfd: $!\n"; } sub nocloexec (*) { my $fh = shift; my $flags = fcntl($fh, F_GETFD, 0); fcntl($fh, F_SETFD, $flags & ~FD_CLOEXEC); } sub nonblock (*) { my $fh = shift; my $flags = fcntl($fh, F_GETFL, 0); fcntl($fh, F_SETFL, $flags | O_NONBLOCK); } sub reservefds (@) { my $null = checkopen('/dev/null'); my $close = 1; for my $fd (@_) { if ($null == $fd) { $close = 0; } else { checkclose($fd); checkdup2($null, $fd); } } if ($close) { checkclose($null); } } sub envnonempty ($) { my $name = shift; return (exists $ENV{$name} and $ENV{$name} ne ''); } sub start_debconf (@) { if (! $ENV{DEBIAN_HAS_FRONTEND}) { if (envnonempty('DEBCONF_DB_REPLACE')) { $ENV{DEBCONF_APT_PROGRESS_DB_REPLACE} = $ENV{DEBCONF_DB_REPLACE}; } if (envnonempty('DEBCONF_DB_OVERRIDE')) { $ENV{DEBCONF_APT_PROGRESS_DB_OVERRIDE} = $ENV{DEBCONF_DB_OVERRIDE}; } $ENV{DEBCONF_DB_REPLACE} = 'configdb'; $ENV{DEBCONF_DB_OVERRIDE} = 'Pipe{infd:none outfd:none}'; $ENV{DEBCONF_APT_PROGRESS_NO_FRONTEND} = 1; @ARGV = @_; } import Debconf::Client::ConfModule; } sub passthrough (@) { my $priority = Debconf::Client::ConfModule::get('debconf/priority'); defined(my $pid = fork) or die "$0: can't fork: $!\n"; if (!$pid) { close STATUS_READ; close COMMAND_WRITE; close DEBCONF_COMMAND_READ; close DEBCONF_REPLY_WRITE; $^F = 6; # avoid close-on-exec if (fileno(COMMAND_READ) != 0) { checkdup2(fileno(COMMAND_READ), 0); close COMMAND_READ; } if (fileno(APT_LOG) != 1) { checkclose(1); checkdup2(fileno(APT_LOG), 1); } if (fileno(APT_LOG) != 2) { checkclose(2); checkdup2(fileno(APT_LOG), 2); } close APT_LOG; delete $ENV{DEBIAN_HAS_FRONTEND}; delete $ENV{DEBCONF_REDIR}; delete $ENV{DEBCONF_SYSTEMRC}; delete $ENV{DEBCONF_PIPE}; # just in case ... $ENV{DEBIAN_FRONTEND} = 'passthrough'; $ENV{DEBIAN_PRIORITY} = $priority; $ENV{DEBCONF_READFD} = 5; $ENV{DEBCONF_WRITEFD} = 6; $ENV{APT_LISTCHANGES_FRONTEND} = 'none'; if ($had_frontend) { $ENV{DEBCONF_DB_REPLACE} = 'configdb'; $ENV{DEBCONF_DB_OVERRIDE} = 'Pipe{infd:none outfd:none}'; } exec @_; } close STATUS_WRITE; close COMMAND_READ; close DEBCONF_COMMAND_WRITE; close DEBCONF_REPLY_READ; return $pid; } sub handle_status ($$$) { my ($from, $to, $line) = @_; my ($status, $pkg, $percent, $description) = split ':', $line, 4; my ($min, $len); if ($status eq 'dlstatus') { $min = 0; $len = $dlwaypoint; } elsif ($status eq 'pmstatus') { $min = $dlwaypoint; $len = 100 - $dlwaypoint; } elsif ($status eq 'media-change') { Debconf::Client::ConfModule::subst( 'debconf-apt-progress/media-change', 'MESSAGE', $description); my @ret = Debconf::Client::ConfModule::input( 'critical', 'debconf-apt-progress/media-change'); $ret[0] == 0 or die "Can't display media change request!\n"; Debconf::Client::ConfModule::go(); print COMMAND_WRITE "\n" || die "can't talk to command fd: $!"; return; } else { return; } $percent = ($percent * $len / 100 + $min); $percent = ($percent * ($to - $from) / 100 + $from); $percent =~ s/\..*//; if ($progress) { my @ret=Debconf::Client::ConfModule::progress('SET', $percent); if ($ret[0] eq '30') { cancel(); } } Debconf::Client::ConfModule::subst( 'debconf-apt-progress/info', 'DESCRIPTION', $description); my @ret=Debconf::Client::ConfModule::progress( 'INFO', 'debconf-apt-progress/info'); if ($ret[0] eq '30') { cancel(); } } sub handle_debconf_command ($) { my $line = shift; print "$line\n" || die "can't write to stdout: $!"; my $ret = <STDIN>; chomp $ret; print DEBCONF_REPLY_WRITE "$ret\n" || die "can't write to DEBCONF_REPLY_WRITE: $!"; } my $pid; sub run_progress ($$@) { my $from = shift; my $to = shift; my $command = shift; local (*STATUS_READ, *STATUS_WRITE); local (*COMMAND_READ, *COMMAND_WRITE); local (*DEBCONF_COMMAND_READ, *DEBCONF_COMMAND_WRITE); local (*DEBCONF_REPLY_READ, *DEBCONF_REPLY_WRITE); local *APT_LOG; use IO::Handle; if ($progress) { my @ret=Debconf::Client::ConfModule::progress( 'INFO', 'debconf-apt-progress/preparing'); if ($ret[0] eq '30') { cancel(); return 30; } } reservefds(4, 5, 6); pipe STATUS_READ, STATUS_WRITE or die "$0: can't create status pipe: $!"; nonblock(\*STATUS_READ); checkdup2(fileno(STATUS_WRITE), 4); open STATUS_WRITE, '>&=4' or die "$0: can't reopen STATUS_WRITE as fd 4: $!"; nocloexec(\*STATUS_WRITE); pipe COMMAND_READ, COMMAND_WRITE or die "$0: can't create command pipe: $!"; nocloexec(\*COMMAND_READ); COMMAND_WRITE->autoflush(1); pipe DEBCONF_COMMAND_READ, DEBCONF_COMMAND_WRITE or die "$0: can't create debconf command pipe: $!"; nonblock(\*DEBCONF_COMMAND_READ); checkdup2(fileno(DEBCONF_COMMAND_WRITE), 6); open DEBCONF_COMMAND_WRITE, '>&=6' or die "$0: can't reopen DEBCONF_COMMAND_WRITE as fd 6: $!"; nocloexec(\*DEBCONF_COMMAND_WRITE); pipe DEBCONF_REPLY_READ, DEBCONF_REPLY_WRITE or die "$0: can't create debconf reply pipe: $!"; checkdup2(fileno(DEBCONF_REPLY_READ), 5); open DEBCONF_REPLY_READ, '<&=5' or die "$0: can't reopen DEBCONF_REPLY_READ as fd 5: $!"; nocloexec(\*DEBCONF_REPLY_READ); DEBCONF_REPLY_WRITE->autoflush(1); if (defined $logfile) { open APT_LOG, '>>', $logfile or die "$0: can't open $logfile: $!"; } elsif ($logstderr) { open APT_LOG, '>&STDERR' or die "$0: can't duplicate stderr: $!"; } else { open APT_LOG, '>', '/dev/null' or die "$0: can't open /dev/null: $!"; } nocloexec(\*APT_LOG); $pid = passthrough $command, '-o', 'APT::Status-Fd=4', '-o', 'APT::Keep-Fds::=5', '-o', 'APT::Keep-Fds::=6', @_; my $status_eof = 0; my $debconf_command_eof = 0; my $status_buf = ''; my $debconf_command_buf = ''; while (not $status_eof) { my $rin = ''; my $rout; vec($rin, fileno(STATUS_READ), 1) = 1; vec($rin, fileno(DEBCONF_COMMAND_READ), 1) = 1 unless $debconf_command_eof; my $sel = select($rout = $rin, undef, undef, undef); if ($sel < 0) { next if $! == &POSIX::EINTR; die "$0: select failed: $!"; } if (vec($rout, fileno(STATUS_READ), 1) == 1) { while (1) { my $r = sysread(STATUS_READ, $status_buf, 4096, length $status_buf); if (not defined $r) { next if $! == &POSIX::EINTR; last if $! == &POSIX::EAGAIN or $! == &POSIX::EWOULDBLOCK; die "$0: read STATUS_READ failed: $!"; } elsif ($r == 0) { if ($status_buf ne '' and $status_buf !~ /\n$/) { $status_buf .= "\n"; } $status_eof = 1; last; } last if $status_buf =~ /\n/; } while ($status_buf =~ /\n/) { my $status_line; ($status_line, $status_buf) = split /\n/, $status_buf, 2; handle_status $from, $to, $status_line; } } if (vec($rout, fileno(DEBCONF_COMMAND_READ), 1) == 1) { while (1) { my $r = sysread(DEBCONF_COMMAND_READ, $debconf_command_buf, 4096, length $debconf_command_buf); if (not defined $r) { next if $! == &POSIX::EINTR; last if $! == &POSIX::EAGAIN or $! == &POSIX::EWOULDBLOCK; die "$0: read DEBCONF_COMMAND_READ " . "failed: $!"; } elsif ($r == 0) { if ($debconf_command_buf ne '' and $debconf_command_buf !~ /\n$/) { $debconf_command_buf .= "\n"; } $debconf_command_eof = 1; last; } last if $debconf_command_buf =~ /\n/; } while ($debconf_command_buf =~ /\n/) { my $debconf_command_line; ($debconf_command_line, $debconf_command_buf) = split /\n/, $debconf_command_buf, 2; handle_debconf_command $debconf_command_line; } } } waitpid $pid, 0; undef $pid; my $status = $?; if ($progress) { my @ret=Debconf::Client::ConfModule::progress('SET', $to); if ($ret[0] eq '30') { cancel(); } } if ($status & 127) { return 127; } return ($status >> 8); } my $cancelled=0; my $cancel_sent_signal=0; sub cancel () { $cancelled++; if (defined $pid) { $cancel_sent_signal++; if ($cancel_sent_signal == 1) { kill INT => $pid; } else { kill KILL => $pid; } } } sub start_bar ($$) { my ($from, $to) = @_; if ($progress) { Debconf::Client::ConfModule::progress( 'START', $from, $to, 'debconf-apt-progress/title'); my @ret=Debconf::Client::ConfModule::progress( 'INFO', 'debconf-apt-progress/preparing'); if ($ret[0] eq '30') { cancel(); } } } sub stop_bar () { Debconf::Client::ConfModule::progress('STOP') if $progress; Debconf::Client::ConfModule::stop() unless $had_frontend; } if (envnonempty('DEBCONF_APT_PROGRESS_DB_REPLACE')) { $ENV{DEBCONF_DB_REPLACE} = $ENV{DEBCONF_APT_PROGRESS_DB_REPLACE}; } else { delete $ENV{DEBCONF_DB_REPLACE}; } if (envnonempty('DEBCONF_APT_PROGRESS_DB_OVERRIDE')) { $ENV{DEBCONF_DB_OVERRIDE} = $ENV{DEBCONF_APT_PROGRESS_DB_OVERRIDE}; } else { delete $ENV{DEBCONF_DB_OVERRIDE}; } $had_frontend = 1 unless $ENV{DEBCONF_APT_PROGRESS_NO_FRONTEND}; delete $ENV{DEBCONF_APT_PROGRESS_NO_FRONTEND}; # avoid inheritance my @saved_argv = @ARGV; my $result = GetOptions('config' => \$config, 'start' => \$start, 'from=i' => \$from, 'to=i' => \$to, 'stop' => \$stop, 'logfile=s' => \$logfile, 'logstderr' => \$logstderr, 'progress!' => \$progress, 'dlwaypoint=i' => \$dlwaypoint, ); if (! $progress && ($start || $from || $to || $stop)) { die "--no-progress cannot be used with --start, --from, --to, or --stop\n"; } unless ($start) { if (defined $from and not defined $to) { die "$0: --from requires --to\n"; } elsif (defined $to and not defined $from) { die "$0: --to requires --from\n"; } } my $mutex = 0; ++$mutex if $config; ++$mutex if $start; ++$mutex if $stop; if ($mutex > 1) { die "$0: must use only one of --config, --start, or --stop\n"; } if (($config or $stop) and (defined $from or defined $to)) { die "$0: cannot use --from or --to with --config or --stop\n"; } start_debconf(@saved_argv) unless $config; my $status = 0; if ($config) { print <<'EOF'; DEBCONF_APT_PROGRESS_DB_REPLACE="$DEBCONF_DB_REPLACE" DEBCONF_APT_PROGRESS_DB_OVERRIDE="$DEBCONF_DB_OVERRIDE" export DEBCONF_APT_PROGRESS_DB_REPLACE DEBCONF_APT_PROGRESS_DB_OVERRIDE DEBCONF_DB_REPLACE=configdb DEBCONF_DB_OVERRIDE='Pipe{infd:none outfd:none}' export DEBCONF_DB_REPLACE DEBCONF_DB_OVERRIDE EOF } elsif ($start) { $from = 0 unless defined $from; $to = 100 unless defined $to; start_bar($from, $to); } elsif (defined $from) { $status = run_progress($from, $to, @ARGV); } elsif ($stop) { stop_bar(); } else { start_bar(0, 100); if (! $cancelled) { $status = run_progress(0, 100, @ARGV); stop_bar(); } } if ($cancelled) { Debconf::Client::ConfModule::get("debconf/priority"); exit 30; } elsif ($status == 30) { exit 3; } else { exit $status; }
Name | Type | Size | Permission | Actions |
---|---|---|---|---|
X11 | Folder | 0755 |
|
|
aclocal-1.16 | File | 35.18 KB | 0755 |
|
File | 0 B | 0 |
|
|
appstream-compose | File | 26.3 KB | 0755 |
|
appstream-util | File | 98.3 KB | 0755 |
|
appstreamcli | File | 118.23 KB | 0755 |
|
File | 0 B | 0 |
|
|
File | 0 B | 0 |
|
|
autoconf | File | 14.85 KB | 0755 |
|
autoheader | File | 8.82 KB | 0755 |
|
autom4te | File | 32.69 KB | 0755 |
|
automake-1.16 | File | 255.91 KB | 0755 |
|
autoreconf | File | 26.3 KB | 0755 |
|
autoscan | File | 16.77 KB | 0755 |
|
autoupdate | File | 33.22 KB | 0755 |
|
broadwayd | File | 130.21 KB | 0755 |
|
bwrap | File | 70.47 KB | 0755 |
|
File | 0 B | 0 |
|
|
c89-gcc | File | 428 B | 0755 |
|
c99-gcc | File | 454 B | 0755 |
|
cairo-trace | File | 2.95 KB | 0755 |
|
canberra-gtk-play | File | 18.2 KB | 0755 |
|
corelist | File | 15.01 KB | 0755 |
|
cpan | File | 8.16 KB | 0755 |
|
cpan5.34-x86_64-linux-gnu | File | 8.18 KB | 0755 |
|
File | 0 B | 0 |
|
|
File | 0 B | 0 |
|
|
curl-config | File | 6.52 KB | 0755 |
|
dazzle-list-counters | File | 14.13 KB | 0755 |
|
debconf | File | 2.79 KB | 0755 |
|
debconf-apt-progress | File | 11.27 KB | 0755 |
|
debconf-communicate | File | 608 B | 0755 |
|
debconf-copydb | File | 1.68 KB | 0755 |
|
debconf-escape | File | 647 B | 0755 |
|
debconf-set-selections | File | 2.92 KB | 0755 |
|
debconf-show | File | 1.78 KB | 0755 |
|
derb | File | 26.88 KB | 0755 |
|
desktop-file-edit | File | 96.44 KB | 0755 |
|
desktop-file-install | File | 96.44 KB | 0755 |
|
desktop-file-validate | File | 76.69 KB | 0755 |
|
dh_autotools-dev_restoreconfig | File | 1.79 KB | 0755 |
|
dh_autotools-dev_updateconfig | File | 1.81 KB | 0755 |
|
dh_girepository | File | 12.88 KB | 0755 |
|
dumpsexp | File | 18.3 KB | 0755 |
|
File | 0 B | 0 |
|
|
File | 0 B | 0 |
|
|
enc2xs | File | 40.84 KB | 0755 |
|
encguess | File | 3.01 KB | 0755 |
|
envsubst | File | 34.38 KB | 0755 |
|
fc-cache | File | 22.23 KB | 0755 |
|
fc-cat | File | 18.23 KB | 0755 |
|
fc-conflist | File | 14.23 KB | 0755 |
|
fc-list | File | 14.23 KB | 0755 |
|
fc-match | File | 14.23 KB | 0755 |
|
fc-pattern | File | 14.23 KB | 0755 |
|
fc-query | File | 14.23 KB | 0755 |
|
fc-scan | File | 14.23 KB | 0755 |
|
fc-validate | File | 14.23 KB | 0755 |
|
file | File | 26.56 KB | 0755 |
|
fribidi | File | 26.99 KB | 0755 |
|
gapplication | File | 22.21 KB | 0755 |
|
File | 0 B | 0 |
|
|
File | 0 B | 0 |
|
|
File | 0 B | 0 |
|
|
File | 0 B | 0 |
|
|
File | 0 B | 0 |
|
|
File | 0 B | 0 |
|
|
gdbus | File | 54.21 KB | 0755 |
|
gdbus-codegen | File | 1.99 KB | 0755 |
|
gdk-pixbuf-csource | File | 14.15 KB | 0755 |
|
gdk-pixbuf-pixdata | File | 14.13 KB | 0755 |
|
gdk-pixbuf-thumbnailer | File | 18.21 KB | 0755 |
|
genbrk | File | 14.78 KB | 0755 |
|
gencat | File | 26.37 KB | 0755 |
|
gencfu | File | 14.73 KB | 0755 |
|
gencnval | File | 26.61 KB | 0755 |
|
gendict | File | 26.78 KB | 0755 |
|
genrb | File | 147.91 KB | 0755 |
|
getconf | File | 34.29 KB | 0755 |
|
getent | File | 38.65 KB | 0755 |
|
gettext | File | 34.38 KB | 0755 |
|
gettext.sh | File | 5.07 KB | 0755 |
|
gettextize | File | 41.28 KB | 0755 |
|
gio | File | 102.23 KB | 0755 |
|
gio-querymodules | File | 18.13 KB | 0755 |
|
gjs | File | 26.7 KB | 0755 |
|
gjs-console | File | 26.7 KB | 0755 |
|
glib-compile-schemas | File | 66.21 KB | 0755 |
|
File | 0 B | 0 |
|
|
gobject-query | File | 14.14 KB | 0755 |
|
File | 0 B | 0 |
|
|
gpg-error-config | File | 2.04 KB | 0755 |
|
gpgrt-config | File | 13.11 KB | 0755 |
|
File | 0 B | 0 |
|
|
gresource | File | 26.13 KB | 0755 |
|
gsettings | File | 30.21 KB | 0755 |
|
gsound-play | File | 18.21 KB | 0755 |
|
gtk-encode-symbolic-svg | File | 22.24 KB | 0755 |
|
gtk-launch | File | 18.29 KB | 0755 |
|
gtk-query-settings | File | 14.13 KB | 0755 |
|
gtk-update-icon-cache | File | 38.57 KB | 0755 |
|
gtk4-broadwayd | File | 150.22 KB | 0755 |
|
gtk4-encode-symbolic-svg | File | 8.58 MB | 0755 |
|
gtk4-launch | File | 18.29 KB | 0755 |
|
gtk4-query-settings | File | 14.13 KB | 0755 |
|
gtk4-rendernode-tool | File | 30.13 KB | 0755 |
|
hb-info | File | 54.21 KB | 0755 |
|
hb-ot-shape-closure | File | 46.21 KB | 0755 |
|
hb-shape | File | 50.21 KB | 0755 |
|
hb-subset | File | 46.18 KB | 0755 |
|
hb-view | File | 82.35 KB | 0755 |
|
hmac256 | File | 18.7 KB | 0755 |
|
iconv | File | 66.41 KB | 0755 |
|
icuexportdata | File | 30.98 KB | 0755 |
|
icuinfo | File | 14.62 KB | 0755 |
|
ifnames | File | 4.08 KB | 0755 |
|
instmodsh | File | 4.27 KB | 0755 |
|
ispell-wrapper | File | 7.05 KB | 0755 |
|
itstool | File | 67.8 KB | 0755 |
|
js102 | File | 28.97 MB | 0755 |
|
js102-config | File | 2.03 KB | 0755 |
|
json-glib-format | File | 18.38 KB | 0755 |
|
json-glib-validate | File | 14.24 KB | 0755 |
|
json_pp | File | 4.88 KB | 0755 |
|
File | 0 B | 0 |
|
|
File | 0 B | 0 |
|
|
File | 0 B | 0 |
|
|
ldd | File | 5.32 KB | 0755 |
|
libgcrypt-config | File | 4.52 KB | 0755 |
|
libinput | File | 62.35 KB | 0755 |
|
libnetcfg | File | 15.41 KB | 0755 |
|
libpng-config | File | 2.41 KB | 0755 |
|
libpng16-config | File | 2.41 KB | 0755 |
|
libtool | File | 366.5 KB | 0755 |
|
libtoolize | File | 128.35 KB | 0755 |
|
libwacom-list-devices | File | 14.24 KB | 0755 |
|
libwacom-list-local-devices | File | 18.29 KB | 0755 |
|
libwacom-show-stylus | File | 5.99 KB | 0755 |
|
libwacom-update-db | File | 8.99 KB | 0755 |
|
locale | File | 57.56 KB | 0755 |
|
localedef | File | 326.96 KB | 0755 |
|
File | 0 B | 0 |
|
|
lzmainfo | File | 14.23 KB | 0755 |
|
m4 | File | 154.37 KB | 0755 |
|
makeconv | File | 50.89 KB | 0755 |
|
mako-render | File | 961 B | 0755 |
|
markdown_py | File | 973 B | 0755 |
|
mpicalc | File | 22.3 KB | 0755 |
|
msgattrib | File | 26.38 KB | 0755 |
|
msgcat | File | 26.38 KB | 0755 |
|
msgcmp | File | 26.38 KB | 0755 |
|
msgcomm | File | 26.38 KB | 0755 |
|
msgconv | File | 22.38 KB | 0755 |
|
msgen | File | 22.38 KB | 0755 |
|
msgexec | File | 22.38 KB | 0755 |
|
msgfilter | File | 34.38 KB | 0755 |
|
msgfmt | File | 82.59 KB | 0755 |
|
msggrep | File | 114.46 KB | 0755 |
|
msginit | File | 66.39 KB | 0755 |
|
msgmerge | File | 74.41 KB | 0755 |
|
msgunfmt | File | 34.39 KB | 0755 |
|
msguniq | File | 22.38 KB | 0755 |
|
ngettext | File | 34.38 KB | 0755 |
|
nspr-config | File | 2.58 KB | 0755 |
|
nss-config | File | 2.31 KB | 0755 |
|
p11-kit | File | 170.45 KB | 0755 |
|
pango-list | File | 18.13 KB | 0755 |
|
pango-segmentation | File | 18.21 KB | 0755 |
|
pango-view | File | 66.42 KB | 0755 |
|
pcre-config | File | 2.29 KB | 0755 |
|
pcre2-config | File | 1.93 KB | 0755 |
|
pdfattach | File | 22.21 KB | 0755 |
|
pdfdetach | File | 26.32 KB | 0755 |
|
pdffonts | File | 22.33 KB | 0755 |
|
pdfimages | File | 42.33 KB | 0755 |
|
pdfinfo | File | 62.33 KB | 0755 |
|
pdfseparate | File | 22.21 KB | 0755 |
|
pdfsig | File | 42.6 KB | 0755 |
|
pdftocairo | File | 190.3 KB | 0755 |
|
pdftohtml | File | 118.23 KB | 0755 |
|
pdftoppm | File | 34.24 KB | 0755 |
|
pdftops | File | 34.34 KB | 0755 |
|
pdftotext | File | 50.34 KB | 0755 |
|
pdfunite | File | 34.21 KB | 0755 |
|
perl5.34-x86_64-linux-gnu | File | 14.3 KB | 0755 |
|
perlbug | File | 44.12 KB | 0755 |
|
perldoc | File | 125 B | 0755 |
|
perlivp | File | 10.61 KB | 0755 |
|
perlthanks | File | 44.12 KB | 0755 |
|
piconv | File | 8.16 KB | 0755 |
|
pip | File | 225 B | 0755 |
|
pip3 | File | 225 B | 0755 |
|
pip3.10 | File | 225 B | 0755 |
|
pipewire | File | 14.38 KB | 0755 |
|
pkgdata | File | 43.53 KB | 0755 |
|
pldd | File | 22.37 KB | 0755 |
|
pod2html | File | 4.04 KB | 0755 |
|
pod2man | File | 14.68 KB | 0755 |
|
pod2text | File | 10.55 KB | 0755 |
|
pod2usage | File | 4.01 KB | 0755 |
|
podchecker | File | 3.57 KB | 0755 |
|
psl | File | 22.16 KB | 0755 |
|
psl-make-dafsa | File | 22.21 KB | 0755 |
|
ptar | File | 3.48 KB | 0755 |
|
ptardiff | File | 2.58 KB | 0755 |
|
ptargrep | File | 4.29 KB | 0755 |
|
pw-cat | File | 138.38 KB | 0755 |
|
pw-cli | File | 134.38 KB | 0755 |
|
pw-dot | File | 34.38 KB | 0755 |
|
pw-dsdplay | File | 138.38 KB | 0755 |
|
pw-dump | File | 94.38 KB | 0755 |
|
pw-link | File | 30.38 KB | 0755 |
|
pw-loopback | File | 18.38 KB | 0755 |
|
pw-metadata | File | 14.38 KB | 0755 |
|
pw-mididump | File | 34.38 KB | 0755 |
|
pw-midiplay | File | 138.38 KB | 0755 |
|
pw-midirecord | File | 138.38 KB | 0755 |
|
pw-mon | File | 90.42 KB | 0755 |
|
pw-play | File | 138.38 KB | 0755 |
|
pw-profiler | File | 26.38 KB | 0755 |
|
pw-record | File | 138.38 KB | 0755 |
|
pw-reserve | File | 26.38 KB | 0755 |
|
pw-top | File | 30.38 KB | 0755 |
|
pw-v4l2 | File | 1.95 KB | 0755 |
|
py3compile | File | 12.89 KB | 0755 |
|
py3versions | File | 11.63 KB | 0755 |
|
python3.10 | File | 5.67 MB | 0755 |
|
recode-sr-latin | File | 14.38 KB | 0755 |
|
rsvg-convert | File | 5.53 MB | 0755 |
|
secret-tool | File | 22.21 KB | 0755 |
|
select-default-iwrap | File | 474 B | 0755 |
|
session-migration | File | 22.15 KB | 0755 |
|
shasum | File | 9.75 KB | 0755 |
|
spa-acp-tool | File | 268.12 KB | 0755 |
|
spa-inspect | File | 78.48 KB | 0755 |
|
spa-json-dump | File | 14.3 KB | 0755 |
|
spa-monitor | File | 14.48 KB | 0755 |
|
spa-resample | File | 30.6 KB | 0755 |
|
splain | File | 18.96 KB | 0755 |
|
streamzip | File | 7.75 KB | 0755 |
|
tzselect | File | 15.02 KB | 0755 |
|
uconv | File | 54.83 KB | 0755 |
|
unxz | File | 82.52 KB | 0755 |
|
update-desktop-database | File | 22.38 KB | 0755 |
|
update-mime-database | File | 58.23 KB | 0755 |
|
xdg-dbus-proxy | File | 50.14 KB | 0755 |
|
xdg-user-dir | File | 234 B | 0755 |
|
xdg-user-dirs-update | File | 26.23 KB | 0755 |
|
xml2-config | File | 1.44 KB | 0755 |
|
xmlcatalog | File | 22.3 KB | 0755 |
|
xmllint | File | 78.95 KB | 0755 |
|
xz | File | 82.52 KB | 0755 |
|
xzcat | File | 82.52 KB | 0755 |
|
xzcmp | File | 6.86 KB | 0755 |
|
xzdiff | File | 6.86 KB | 0755 |
|
xzegrep | File | 5.87 KB | 0755 |
|
xzfgrep | File | 5.87 KB | 0755 |
|
xzgrep | File | 5.87 KB | 0755 |
|
xzless | File | 1.76 KB | 0755 |
|
xzmore | File | 2.11 KB | 0755 |
|
zdump | File | 26.21 KB | 0755 |
|
zipdetails | File | 58.66 KB | 0755 |
|