diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-14 19:54:34 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-14 19:58:39 +0000 |
commit | 129a1fb4dbc375be0fa926964aa1be46a0cdbbef (patch) | |
tree | 04c0088df47415b24a5be1325d3656b8c3881c04 /lib/Debian/Debhelper/Sequence/zz_debputy_rrr.pm | |
parent | Initial commit. (diff) | |
download | debputy-129a1fb4dbc375be0fa926964aa1be46a0cdbbef.tar.xz debputy-129a1fb4dbc375be0fa926964aa1be46a0cdbbef.zip |
Adding upstream version 0.1.21.upstream/0.1.21
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'lib/Debian/Debhelper/Sequence/zz_debputy_rrr.pm')
-rw-r--r-- | lib/Debian/Debhelper/Sequence/zz_debputy_rrr.pm | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/lib/Debian/Debhelper/Sequence/zz_debputy_rrr.pm b/lib/Debian/Debhelper/Sequence/zz_debputy_rrr.pm new file mode 100644 index 0000000..53971e8 --- /dev/null +++ b/lib/Debian/Debhelper/Sequence/zz_debputy_rrr.pm @@ -0,0 +1,13 @@ +use Debian::Debhelper::Dh_Lib qw(error); + +insert_after('dh_builddeb', 'dh_debputy'); +if (exists($INC{"Debian/Debhelper/Sequence/debputy.pm"})) { + error("The zz-debputy-rrr sequence cannot be used with the (zz-)debputy sequence"); +} +add_command_options('dh_debputy', '--integration-mode=rrr'); + +remove_command('dh_fixperms'); +remove_command('dh_gencontrol'); +remove_command('dh_md5sums'); +remove_command('dh_builddeb'); +1; |