⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.67
Server IP:
50.6.168.112
Server:
Linux server-617809.webnetzimbabwe.com 5.14.0-570.25.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Jul 9 04:57:09 EDT 2025 x86_64
Server Software:
Apache
PHP Version:
8.4.10
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
usr
/
share
/
doc
/
perl-ExtUtils-MakeMaker
/
View File Name :
CONTRIBUTING
"The easy way is always mined. The important things are always simple. The simple things are always hard." -- Some of Murphy's Laws of Combat This is a short set of guidelines for those contributing ExtUtils::MakeMaker. It's not an iron-clad set of rules, but just things which make life easier when reading and integrating a patch. Reporting bugs - Often the only information we have for fixing a bug is contained in your report. So... - Please report your bugs via http://rt.cpan.org or https://github.com/Perl-Toolchain-Gang/ExtUtils-MakeMaker/issues or by mailing to makemaker@perl.org. RT or GitHub are preferred. - Please report your bug immediately upon encountering it. Do not wait until you have a patch to fix the bug. Patches are good, but not at the expense of timely bug reports. - Please be as verbose as possible. Include the complete output of your 'make test' or even 'make test TEST_VERBOSE=1' and a copy of the generated Makefile. Err on the side of verbosity. The more data we have to work with, the faster we can diagnose the problem. - If you find an undocumented feature, or if a feature has changed/been added which causes a problem, report it. Do not assume it was done deliberately. Even if it was done deliberately, we still want to hear if it caused problems. - If you're testing MakeMaker against a development version of Perl, please also check it against the latest stable version. This makes it easier to figure out if it's MakeMaker or Perl at fault. Pull Request - If you wrote a patch already, please Pull Request on GitHub. - Pull Request against the latest development snapshot from GitHub repository are preferred. - Pull Request against the latest CPAN version are ok, too. Code formatting - No literal tabs (except where necessary inside Makefile code, obviously). - 4 character indentation. - this_style is preferred instead of studlyCaps. - Private subroutine names (ie. those used only in the same package they're declared in) should start with an underscore (_sekret_method). - Protected subroutines (ie. ones intended to be used by other modules in ExtUtils::*) should be named normally (no leading underscore) but documented as protected (see Documentation below). - Do not use indirect object syntax (ie. new Foo::Bar (@args)) - make variables use dollar signs like Perl scalars. This causes problems when you have to mix them both in a string. If you find yourself backwacking lots of dollar signs because you have one interpolated perl variable, like this: return <
_foo_bar Blah blah blah =end private =cut sub _foo_bar { ... - If you're overriding a method, document that it's an override and *why* it's being overridden. Don't repeat the original documentation.