| Index | index by Group | index by Distribution | index by Vendor | index by creation date | index by Name | Mirrors | Help | Search |
| Name: perl-Devel-Trace | Distribution: SUSE Linux Enterprise 15 SP5 |
| Version: 0.12 | Vendor: openSUSE |
| Release: bp155.2.9 | Build date: Wed May 17 15:45:39 2023 |
| Group: Development/Libraries/Perl | Build host: goat19 |
| Size: 8344 | Source RPM: perl-Devel-Trace-0.12-bp155.2.9.src.rpm |
| Packager: https://bugs.opensuse.org | |
| Url: http://search.cpan.org/dist/Devel-Trace/ | |
| Summary: Print out each line before it is executed (like C<sh -x>) | |
If you run your program with 'perl -d:Trace program', this module will
print a message to standard error just before each line is executed. For
example, if your program looks like this:
print "Statement 1 at line 4\n";
print "Statement 2 at line 5\n";
print "Call to sub x returns ", &x(), " at line 6.\n";
exit 0;
sub x {
print "In sub x at line 12.\n";
return 13;
}
Then the 'Trace' output will look like this:
>> ./test:4: print "Statement 1 at line 4\n";
>> ./test:5: print "Statement 2 at line 5\n";
>> ./test:6: print "Call to sub x returns ", &x(), " at line 6.\n";
>> ./test:12: print "In sub x at line 12.\n";
>> ./test:13: return 13;
>> ./test:8: exit 0;
This is something like the shell's '-x' option.
SUSE-Public-Domain
* Sun Apr 19 2015 coolo@suse.com
- updated to 0.12
see /usr/share/doc/packages/perl-Devel-Trace/Changes
0.12 Thu Feb 16 12:26:09 EST 2012
- eliminate interactive prompting during test phase
* Sun Apr 19 2015 coolo@suse.com
- updated to 0.11
see /usr/share/doc/packages/perl-Devel-Trace/Changes
* Wed Dec 01 2010 coolo@novell.com
- switch to perl_requires macro
* Fri Sep 17 2010 chris@computersalat.de
- recreated by cpanspec 1.78
- noarch pkg
* Mon Mar 22 2010 coolo@novell.com
- initial package created by cpanspec 1.78
/usr/lib/perl5/vendor_perl/5.26.1/Devel /usr/lib/perl5/vendor_perl/5.26.1/Devel/Trace.pm /usr/lib/perl5/vendor_perl/5.26.1/Devel/demo.pl /usr/lib/perl5/vendor_perl/5.26.1/x86_64-linux-thread-multi /usr/share/doc/packages/perl-Devel-Trace /usr/share/doc/packages/perl-Devel-Trace/Changes /usr/share/doc/packages/perl-Devel-Trace/README /usr/share/doc/packages/perl-Devel-Trace/sample /usr/share/man/man3/Devel::Trace.3pm.gz
Generated by rpm2html 1.8.1
Fabrice Bellet, Fri Jul 24 19:26:09 2026