summaryrefslogtreecommitdiff
path: root/Porting
Commit message (Collapse)AuthorAgeFilesLines
* Update ExtUtils-MakeMaker to CPAN version 7.60Chris 'BinGOs' Williams2021-02-171-1/+1
| | | | | | | | | | | | | | | | [DELTA] 7.60 Wed 17 Feb 10:45:47 GMT 2021 No changes since v7.59_01 7.59_01 Tue 2 Feb 09:47:29 GMT 2021 Bug fixes: - Don't allow hyphens in parsed versions Test fixes: - Use correct hint file name in hints.t
* Regenerate Configure and frieds after backportH.Merijn Brand2021-02-141-1/+6
|
* Update to ExtUtils::PL2Bat to 0.004Leon Timmermans2021-02-121-3/+0
| | | | | This release was a sync from blead to cpan, so the blead version is no longer customized. Nothing actually changes except the version number.
* Update Porting/add-pod-fileJames E Keenan2021-02-051-2/+1
| | | Co-authored-by: Dan Book <grinnz@grinnz.com>
* Improve regex per suggestion from Leon TimmermansJames E Keenan2021-02-051-1/+2
|
* Place repeated hard-coded strings into variablesJames E Keenan2021-02-051-33/+36
| | | | | | | | | | | | | | | | Call Porting/pod_rules.pl with verbose output. Simplify syntax per suggestion from rjbs Note one small bug; clarify how to test program Improve verbose output Eliminate command-line switch '--abstract' Use Module::Metadata to parse new POD file for abstract. Per suggestions from rjbs, Grinnz and LeonT in ticket.
* Facilitate addition of new pod/*.pod fileJames E Keenan2021-02-052-0/+243
| | | | For: https://github.com/Perl/perl5/issues/18413
* win32: remove makefile.mk (#18511)xenu2021-01-284-6/+2
| | | | | | | | | Makefile.mk is redundant with GNUmakefile. See https://www.nntp.perl.org/group/perl.perl5.porters/2021/01/msg258848.html for more details. We planned to remove it shortly after the introduction of GNUmakefile but that slipped through the cracks for some reason: https://github.com/Perl/perl5/issues/14341
* Rebreak lines to keep porting/podcheck.t happyJames E Keenan2021-01-241-2/+3
| | | | | | | | | | | In 83141f1885, the maximum line length of all lines added was 77, which should have passed the 78 maximum used in t/porting/podcheck.t. There were no tabs in the allegedly offending lines and no '=over' directives in operation. So it's unclear why this failed. Nonetheless, as additional commits are pending, it's expedienct for us to rebreak the lines manually to get the test program to pass and figure out the problem another day.
* Add freeze explanationsSawyer X2021-01-241-3/+5
|
* Tick off releaseSteve Hay2021-01-231-1/+1
|
* Add epigraph for 5.32.1Steve Hay2021-01-231-0/+15
|
* Who wants to be the disco king?Chris 'BinGOs' Williams2021-01-211-1/+1
|
* Bump version to 5.33.7Richard Leach2021-01-214-33/+33
|
* Porting/epigraphs.pod - satisfy porting testsRichard Leach2021-01-211-3/+3
|
* release_schedule.pod - tick off 5.33.6 releaseRichard Leach2021-01-211-1/+1
|
* Update epigraphs.pod with 5.33.6 entryRichard Leach2021-01-211-0/+8
|
* Upgrade libnet from 3.12 to 3.13Richard Leach2021-01-191-1/+1
|
* Upgrade Socket from 2.030 to 2.031Richard Leach2021-01-181-1/+1
|
* Update IO-Compress from 2.096 to 2.100Richard Leach2021-01-181-1/+1
|
* Update ExtUtils::Manifest from 1.72 to 1.73Richard Leach2021-01-181-1/+1
|
* Update Compress::Raw::Zlib from 2.096 to 2.100Richard Leach2021-01-181-1/+1
|
* Update Compress::Raw::Bzip2 from 2.096 to 2.100Richard Leach2021-01-181-1/+1
|
* fix: Manifest sorting for dotfiles with no extension.Michael G. Schwern2021-01-171-1/+2
| | | | | | | | Forgot to add .editorconfig to the MANIFEST. Manfiest sorting was treating all of .editorconfig as an extension which put it before .dir-locals.el which is nonsense. Fixed it not to treat a file named .foo as an extension.
* style: Detabify indentation of the C code maintained by the core.Michael G. Schwern2021-01-172-54/+54
| | | | | | | | | | | This just detabifies to get rid of the mixed tab/space indentation. Applying consistent indentation and dealing with other tabs are another issue. Done with `expand -i`. * vutil.* left alone, it's part of version. * Left regen managed files alone for now.
* rt.perl.org no longer stores Perl 5 bugsTom Hukins2021-01-111-5/+0
|
* Aiming for 5.32.1 on 23rd JanuarySteve Hay2021-01-101-1/+1
|
* Add epigraph for 5.32.1-RC1Steve Hay2021-01-091-0/+10
|
* Revert "Fix Time::HiRes compile probe on VMS"Craig A. Berry2021-01-031-3/+0
| | | | | | | | | | | | | | | | | | | | This reverts commit 9eebd4ca7bb8610f51a27d96c12e9b1676958d55. It turns out that probing for the existence of functions also only generates informational messages (and thus a successful exit status) when the function is missing, e.g.: ret = clock_nanosleep(CLOCK_REALTIME, 0, &ts1, &ts2); ..........^ %CC-I-IMPLICITFUNC, In this statement, the identifier "clock_nanosleep" is implicitly declared as a function. at line number 13 in file D0:[craig.blead.dist.Time-HiRes]try.c;1 And we aren't linking in Time::HiRes's probes on VMS since making that work both in and out of core in a general way is no small feat. So we go back to requiring no compiler messages in the test compiles.
* Delete Porting/cherrymaintJames E Keenan2021-01-012-108/+0
| | | | Per discussion in https://github.com/Perl/perl5/issues/18028
* Fix Time::HiRes compile probe on VMSCraig A. Berry2020-12-241-0/+3
| | | | | | | | | | | The probe was checking the severity bits of the compiler exit status and requiring the value to be 1, which is what they are for SS$_NORMAL. But actually any true (odd) value is considered successful. So, for example, if the compile succeeds but emits "informational messages" that do not rise to the level of warnings or errors, the severity bits have a value of 3, not 1. The probe should not fail (and end up halting the build) in this case, so allow any successful value.
* pod_rules.pl: document (in a comment) --tapRicardo Signes2020-12-241-0/+1
|
* Better documentation for two Porting/*.pl programsJames E Keenan2020-12-232-4/+45
| | | | In partial satisfaction of https://github.com/Perl/perl5/issues/18413.
* Porting/pod_rules.pl: no '--test' command-line switchJames E Keenan2020-12-231-2/+0
| | | | | | | | | | | | As is illustrated by the following (trimmed) invocation: ./perl -Ilib Porting/pod_rules.pl --test Unknown option: test ... there is no '--test' option available for this program. Remove inaccurate inline documentation. In partial satisfaction of https://github.com/Perl/perl5/issues/18413.
* do not look for modules under */*/{inc,t} for Module::CoreListKaren Etheridge2020-12-221-0/+6
| | | | | this avoids adding the internal modules inc::QuestionList (from perlfaq) or Win32API::File::inc::ExtUtils::Myconst2perl (from Win32API-File)
* Update ExtUtils-MakeMaker to CPAN version 7.58Chris 'BinGOs' Williams2020-12-221-1/+1
| | | | | | | | | | | | | | | | | | | | | [DELTA] 7.58 Mon 21 Dec 18:16:04 GMT 2020 No changes since v7.57_02 7.57_02 Fri 18 Dec 23:04:09 GMT 2020 Macosx fixes: - Improve dlopen check on MacOS 7.57_01 Fri 18 Dec 13:30:30 GMT 2020 Macosx fixes: - Use dlopen to check for library presence on Mac OS (Big Sur fix) Bug fixes: - check CPAN::Meta::Requirements capabilities rather than prereqs
* Bump version to 5.33.6Max Maischein2020-12-204-33/+33
|
* Update release scheduleMax Maischein2020-12-201-1/+1
|
* Update epigraphs.pod with quote from Max WeberMax Maischein2020-12-201-0/+7
|
* Add Configure probe for getenv() buffer raceKarl Williamson2020-12-191-0/+1
| | | | | | Most implementations do not have a problem with two getenv()'s running simultaneously in different threads. But Posix doesn't require such good behavior. This adds a simple probe to test the current system.
* Update Config::Perl::V to 0.33H.Merijn Brand2020-12-181-2/+1
|
* Update ExtUtils-Install to CPAN version 2.20Chris 'BinGOs' Williams2020-12-181-1/+1
| | | | | | | | | | | | [DELTA] 2.20 - Exercise _is_prefix() method more in tests - Optimisations for file comparisons - Optimisations for directory creation - Typo fix in POD - Optimisations for tree traversal
* Also update Maintainers.pl with the updated PerlIO::via::QuotedPrint versionMax Maischein2020-12-181-1/+1
|
* Update Text::Balanced from 2.03 to 2.04Max Maischein2020-12-181-1/+1
| | | | No entry in Perldelta because that will be generated automatically
* Combine the two separate smoke test sectionsTom Hukins2020-12-101-8/+4
|
* Simplify the release management instructionsTom Hukins2020-12-101-11/+5
| | | | | Getting access to GitHub issues and commit privileges takes one action, not two, so merge the separate sections.
* dromedary no longer has a public_html directoryTom Hukins2020-12-101-9/+0
| | | | | | The old users.perl5.git.perl.org machine has been offline for some time. A replacement exists at dromedary.p5h.org, but this does not provide per-user public_html directories for sharing files.
* Synch with CPAN distribution libnet-3.12Steve Hay2020-12-101-1/+1
|
* Correct POD formatting errorJames E Keenan2020-12-101-1/+1
|
* Here be camelsChris 'BinGOs' Williams2020-12-081-1/+1
|