Linux vmi2545633.contaboserver.net 6.1.0-32-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.129-1 (2025-03-06) x86_64
Apache/2.4.62 (Debian)
Server IP : 127.0.0.1 & Your IP : 127.0.0.1
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
perl5 /
Debian /
Debhelper /
Sequence /
Delete
Unzip
Name
Size
Permission
Date
Action
autoreconf.pm
189
B
-rw-r--r--
2021-02-04 11:26
autotools_dev.pm
332
B
-rw-r--r--
2022-01-31 14:43
bash_completion.pm
131
B
-rw-r--r--
2020-01-24 22:23
build_stamp.pm
280
B
-rw-r--r--
2023-01-02 14:54
dwz.pm
268
B
-rw-r--r--
2023-01-02 14:54
elf_tools.pm
281
B
-rw-r--r--
2023-01-02 14:54
installinitramfs.pm
330
B
-rw-r--r--
2023-01-02 14:54
installsysusers.pm
126
B
-rw-r--r--
2023-01-02 14:54
perl_dbi.pm
332
B
-rw-r--r--
2022-11-19 21:14
phpcomposer.pm
166
B
-rw-r--r--
2023-01-28 15:13
phppear.pm
158
B
-rw-r--r--
2023-01-28 15:13
root_sequence.pm
2.74
KB
-rw-r--r--
2023-01-02 14:54
single_binary.pm
1.64
KB
-rw-r--r--
2023-01-02 14:54
systemd.pm
610
B
-rw-r--r--
2023-01-02 14:54
xml_core.pm
139
B
-rw-r--r--
2019-02-27 00:18
Save
Rename
use strict; use warnings; use Debian::Debhelper::Dh_Lib qw(getpackages error warning tmpdir); use Debian::Debhelper::SequencerUtil; my @packages = getpackages(); my $pkg = $packages[0]; my $tmp = tmpdir($pkg); if (@packages != 1) { warning('Detected multiple binary packages (Package paragraphs) in debian/control, which is incompatible'); warning('with the single-binary dh add-on.'); warning(); warning('Please:'); warning(' 1) Remove the single-binary add-on ("dh-sequence-single-binary" in Build-Depends)'); warning(' 2) Update the packaging to cope with dh_auto_install using \"debian/tmp\" as default dest dir'); warning(" (Previously, it would probably have used \"${tmp}\")"); warning(' 3) Add Breaks/Replaces if you are moving existing files into a new package.'); warning(' 4) Double check that the resulting binaries have content.'); warning(); warning("IF YOU ARE ADDING A TRANSITIONAL PACKAGE: Then you probably want to pass --destdir=${tmp} to"); warning(' dh_auto_install. Most likely you will need Breaks + Replaces as renaming a package counts as'); warning(' moving files between two packages.'); warning(); warning('IF YOU ARE "SPLITTING" THE CONTENT INTO MULTIPLE PACKAGES: Then remember to install the content'); warning(" into them (by creating debian/${pkg}.install, etc.). Also remember to add Breaks + Replaces if"); warning(' you are moving files from one package into another.'); warning(); error("The single-binary add-on cannot be used for source packages that build multiple binary packages."); } add_command_options('dh_auto_install', "--destdir=${tmp}/"); 1;