debian/0000755000000000000000000000000012231166032007162 5ustar debian/watch0000644000000000000000000000016412125563274010227 0ustar version=3 https://metacpan.org/release/Devel-DProf/ .*/Devel-DProf-v?(\d[\d.-]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)$ debian/rules0000755000000000000000000000003611622552221010243 0ustar #!/usr/bin/make -f %: dh $@ debian/copyright0000644000000000000000000000200612125563274011126 0ustar Format-Specification: http://anonscm.debian.org/viewvc/dep/web/deps/dep5.mdwn?view=markup&pathrev=135 Maintainer: The Perl 5 Porters Source: https://metacpan.org/release/Devel-DProf/ Name: Devel-DProf Files: * Copyright: The Perl 5 Porters License: Artistic or GPL-1+ Files: debian/* Copyright: 2011, Dominic Hargreaves License: Artistic or GPL-1+ License: Artistic This program is free software; you can redistribute it and/or modify it under the terms of the Artistic License, which comes with Perl. . On Debian systems, the complete text of the Artistic License can be found in `/usr/share/common-licenses/Artistic'. License: GPL-1+ This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 1, or (at your option) any later version. . On Debian systems, the complete text of version 1 of the GNU General Public License can be found in `/usr/share/common-licenses/GPL-1'. debian/postrm0000644000000000000000000000071111622552221010432 0ustar #!/bin/sh set -e if [ "$1" = remove ] then dpkg-divert --remove --package libdevel-dprof-perl --rename \ --divert /usr/bin/dprofpp.bundled /usr/bin/dprofpp dpkg-divert --remove --package libdevel-dprof-perl --rename \ --divert /usr/share/man/man1/dprofpp.bundled.1.gz /usr/share/man/man1/dprofpp.1.gz fi # dh_installdeb will replace this with shell code automatically # generated by other debhelper scripts. #DEBHELPER# exit 0 debian/preinst0000644000000000000000000000117611622552221010600 0ustar #!/bin/sh set -e if [ "$1" = install ] || [ "$1" = upgrade ] then dpkg-divert --add --package libdevel-dprof-perl --rename \ --divert /usr/bin/dprofpp.bundled /usr/bin/dprofpp # this diversion is needed even if we don't actually ship dprofpp.1.gz, # because otherwise it takes precedence over dprofpp.1p.gz (which we do # ship) dpkg-divert --add --package libdevel-dprof-perl --rename \ --divert /usr/share/man/man1/dprofpp.bundled.1.gz /usr/share/man/man1/dprofpp.1.gz fi # dh_installdeb will replace this with shell code automatically # generated by other debhelper scripts. #DEBHELPER# exit 0 debian/source/0000755000000000000000000000000011622552221010464 5ustar debian/source/format0000644000000000000000000000001411622552221011672 0ustar 3.0 (quilt) debian/libdevel-dprof-perl.docs0000644000000000000000000000001411622552221013667 0ustar README Todo debian/patches/0000755000000000000000000000000012125630701010612 5ustar debian/patches/fix-ftbfs-5.16.patch0000644000000000000000000000142212125630701014111 0ustar From 658895c781a8f42752791e4d6f1b32423d1a36f6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= Date: Wed, 27 Jun 2012 17:18:48 +0200 Subject: [PATCH] Work around static XS_Devel__DProf_END mismatch Bug: https://rt.cpan.org/Public/Bug/Display.html?id=70629 Bug-Debian: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=676271 Origin: https://rt.cpan.org/Public/Bug/Display.html?id=70629 --- DProf.xs | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/DProf.xs b/DProf.xs index a4bbb4b..9642010 100644 --- a/DProf.xs +++ b/DProf.xs @@ -1,4 +1,5 @@ #define PERL_NO_GET_CONTEXT +#define PERL_EUPXS_ALWAYS_EXPORT /* Perl 5.16 makes XSUB static, RT #70629 */ #include "EXTERN.h" #include "perl.h" #include "XSUB.h" -- 1.7.7.6 debian/patches/series0000644000000000000000000000002512125630303012022 0ustar fix-ftbfs-5.16.patch debian/compat0000644000000000000000000000000212125563274010373 0ustar 8 debian/control0000644000000000000000000000241512125563274010602 0ustar Source: libdevel-dprof-perl Section: perl Priority: optional Build-Depends: debhelper (>= 8), perl Maintainer: Debian Perl Group Uploaders: Dominic Hargreaves , Florian Schlichting Standards-Version: 3.9.2 Homepage: https://metacpan.org/release/Devel-DProf/ Vcs-Git: git://anonscm.debian.org/pkg-perl/packages/libdevel-dprof-perl.git Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-perl/packages/libdevel-dprof-perl.git Package: libdevel-dprof-perl Architecture: any Depends: ${misc:Depends}, ${perl:Depends}, ${shlibs:Depends}, perl (>= 5.12.0) Description: deprecated Perl code profiler The Devel::DProf package is a Perl code profiler. This will collect information on the execution time of a Perl script and of the subs in that script. This information can be used to determine which subroutines are using the most time and which subroutines are being called most often. This information can also be used to create an execution graph of the script, showing subroutine relationships. . Devel::DProf is deprecated. It is recommended that you install and use Devel::NYTProf (in the package libdevel-nytprof-perl) instead, as it offers significantly improved profiling and reporting. debian/changelog0000644000000000000000000000234212231166032011035 0ustar libdevel-dprof-perl (20110802.00-2build1) trusty; urgency=low * Rebuild for Perl 5.18. -- Colin Watson Mon, 21 Oct 2013 09:55:54 +0100 libdevel-dprof-perl (20110802.00-2) unstable; urgency=low [ Salvatore Bonaccorso ] * Change Vcs-Git to canonical URI (git://anonscm.debian.org) * Change search.cpan.org based URIs to metacpan.org based URIs [ Dominic Hargreaves ] * Apply patch from Petr Písař fixing test failures with Perl 5.16 (Closes: #676271) -- Dominic Hargreaves Sun, 05 May 2013 23:41:29 +0100 libdevel-dprof-perl (20110802.00-1) unstable; urgency=low [ Florian Schlichting ] * Imported Upstream version 20110802.00 * Bump debhelper compatibility to 8 (no changes). * Added myself to Uploaders. [ Ansgar Burchardt ] * debian/control: Convert Vcs-* fields to Git. [ Salvatore Bonaccorso ] * debian/copyright: Replace DEP5 Format-Specification URL from svn.debian.org to anonscm.debian.org URL. -- Florian Schlichting Fri, 25 Nov 2011 22:54:30 +0000 libdevel-dprof-perl (20110228.00-1) unstable; urgency=low * Initial Release. (Closes: #627114) -- Dominic Hargreaves Wed, 18 May 2011 23:00:25 +0100