| 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: openSUSE Tumbleweed |
| Version: 0.120.0 | Vendor: openSUSE |
| Release: 1.2 | Build date: Fri Jul 11 16:13:34 2025 |
| Group: Unspecified | Build host: reproducible |
| Size: 8151 | Source RPM: perl-Devel-Trace-0.120.0-1.2.src.rpm |
| Packager: https://bugs.opensuse.org | |
| Url: https://metacpan.org/release/Devel-Trace | |
| Summary: Print out each line before it is executed (like 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
* Fri Jul 11 2025 Tina Müller <tina.mueller@suse.com>
- Normalize CPAN version
See https://github.com/openSUSE/cpanspec/issues/47 for details
* 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.42.0/Devel /usr/lib/perl5/vendor_perl/5.42.0/Devel/Trace.pm /usr/lib/perl5/vendor_perl/5.42.0/Devel/demo.pl /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, Sat Nov 1 22:25:32 2025