summaryrefslogtreecommitdiff
path: root/MANIFEST
Commit message (Collapse)AuthorAgeFilesLines
* Updated Text-Tabs+Wrap from 2013.0523 to 2021.0717Neil Bowers2021-07-221-0/+1
|
* Upgraded Math::BigRat, Math::BigInt::FastCalc, Math::BigInt, & bignumNeil Bowers2021-07-221-0/+15
| | | | | They have interdependencies that require at least these versions, so needed to be added together.
* Sync Devel::PPPort with CPAN version 3.63Karl Williamson2021-07-181-0/+23
|
* Pod-Html: rename Auxiliary.pm to Util.pmJames E Keenan2021-07-061-1/+1
| | | | Per rjbs code review in https://github.com/Perl/perl5/pull/18950
* Introduce Pod::Html::AuxiliaryJames E Keenan2021-07-061-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | This package will hold helper subroutines used within the main package or in tests. They can be placed in a separate module and imported into Pod::Html because they won't depend on having the globals passed as an argument. They will also be potentially independently testable. Start with html_escape(). Move anchorify(), htmlify() to Auxiliary.pm. Also _unixify -- now as unixify(). Move relativize_url() to Auxiliary. Move usage() to Auxiliary. Move trim_leading_whitespace to Auxiliary. Move parse_command_line() to Auxiliary. Keep porting tests happy. Increment $VERSION. Run: ./perl -Ilib regen/lib_cleanup.pl anchorify.t, eol.t: Correct excessive corrections. Standardize setting of $VERSION.
* Remove :win32 PerlIO layerLeon Timmermans2021-06-281-1/+0
|
* ext/Pod-Html/t/*.t: Have each file run in tempdirJames E Keenan2021-06-281-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Until now, the tests for this library ran inside the ext/Pod-Html directory in the core distribution. Since the tests necessarily create files while the harness runs, there was a possibility for race conditions, which meant that we had to have a workaround in t/harness to have the tests in this directory not run in parallel. This commit restructures the testing process so that each test program gets its own tempdir in which to create files and directories. The test architecture is now found in t/lib/Testing.pm. This module will export two functions on demand that are used in the individual test files. They guarantee that all files created when running a test program will be created in a temporary directory rather than underneath the core distribution. t/pod2html-lib.pl is now superseded by t/lib/Testing.pm and can be removed. The workaround has been removed from t/harness. Change directory name from testdir/ to corpus/. So as to more precisely describe what the directory's purpose is. Keep porting tests happy. Update MANIFEST and known_pod_issues database. Acknowledge Craig Berry's recommendation in earlier branch This should help in the resolution of https://github.com/Perl/perl5/issues/12271. Correct typo spotted by rjbs.
* new perldelta for 5.35.2Max Maischein2021-06-201-0/+1
|
* MANIFEST: Add commentKarl Williamson2021-06-161-1/+1
|
* CPAN mirror list: stop building oneRicardo Signes2021-06-131-1/+0
|
* Porting/docs-team-charter.pod: the docs team charterRicardo Signes2021-05-311-0/+1
|
* Restore the explicit Data::Dumper Makefile.PLNicholas Clark2021-05-251-0/+1
| | | | | | | | | | | | Data::Dumper's upstream repository is (effectively) blead, and whilst we can auto-generate Makefile.PL suitable for blead, this doesn't provide some other functionality needed for CPAN. This also fixes CPAN #12282, which has been missed forever. Really we should decide *which* bugtracker is canonical for Data::Dumper (and will be checked and acted upon) and then record that metadata in this Makefile.PL so that metacapn.org etc link to it.
* Update Test::Simple from 1.302183 to 1.302185Max Maischein2021-05-231-0/+1
|
* Update Scalar-List-Utils to 1.56Max Maischein2021-05-221-0/+2
|
* perldelta: add a new delta for v5.35.1Ricardo Signes2021-05-201-0/+1
|
* New perldeltaSawyer X2021-05-211-0/+1
|
* Merge all perldelta files to create perl534delta.podSawyer X2021-05-041-10/+0
|
* new perldelta for 5.33.10Todd Rinaldo2021-04-201-0/+1
| | | | | 5.33.10 isn't going to happen but it looks like we bump to the bogus release and THEN switch to RC1.
* Revert "Update Scalar-List-Utils to 1.56"Todd Rinaldo2021-04-201-2/+0
| | | | | | This reverts commit a7dc88699c420088b5448c415a8a973e51c0fc18. We've opted to keep this out until 5.34 is released.
* Update Scalar-List-Utils to 1.56Todd Rinaldo2021-04-191-0/+2
| | | | | | | | | [Delta] 1.56 -- 2021-03-30 * Added `List::Util::zip`, `List::Util::mesh` and related functions (RT129479) * Updated embedded ppport.h for Devel::PPPort v3.62
* ExtUtils::ParseXS fix error-message bugEd J2021-03-241-0/+1
|
* new perldelta for 5.33.9Nicolas R2021-03-201-0/+1
|
* Split Config-dependent tests in t/opbasic/arith.t to t/op/arith2.tTony Cook2021-03-191-0/+1
| | | | | | Some tests in t/opbasic/arith.t used to depend on the perl configuration, but t/opbasic/* is so basic tests that it should not depend on Config.pm. Now these tests are splitted into separate test file under t/op/.
* Update Win32 from version 0.54 to 0.56Tomasz Konojacki2021-03-081-0/+1
|
* add new perldelta for 5.33.8reneeb2021-02-201-0/+1
|
* Update autodie to CPAN version 2.34Chris 'BinGOs' Williams2021-02-191-0/+1
| | | | | | | | [DELTA] 2.34 2021-01-22 11:03:19-06:00 America/Chicago * Remove rt.cpan.org reference.
* Remove stadtx from perl.Yves Orton2021-02-131-1/+0
|
* Fix trivial syntax bugs in doc for multidimensionalEugene Alvin Villar2021-02-111-1/+1
|
* Facilitate addition of new pod/*.pod fileJames E Keenan2021-02-051-0/+1
| | | | For: https://github.com/Perl/perl5/issues/18413
* Initial attempt at feature 'try'Paul "LeoNerd" Evans2021-02-041-0/+1
| | | | | | | | | * Add feature, experimental warning, keyword * Basic parsing * Basic implementation as optree fragment See also https://github.com/Perl/perl5/issues/18504
* win32: remove makefile.mk (#18511)xenu2021-01-281-1/+0
| | | | | | | | | 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
* Import perl5321delta.podSteve Hay2021-01-231-0/+1
|
* New perldelta for 5.33.7Richard Leach2021-01-211-0/+1
|
* typo fixMichael G. Schwern2021-01-171-1/+1
|
* fix: Manifest sorting for dotfiles with no extension.Michael G. Schwern2021-01-171-0/+1
| | | | | | | | 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.
* Improve GDBM_FileSergey Poznyakoff2021-01-061-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This patch implements new functions and improves compatibility with new versions of GDBM. * ext/GDBM_File/GDBM_File.xs: Define interface methods for functions in newer GDBM versions. (GDBM_version): New static method. Return the version number (string in scalar, array of numbers in list context). Provide heurisics for determining the library version for GDBM prior to 1.9. (gdbm_close): Propagate return value from the library call. (gdbm_DESTROY): Croak if closing the database fails. (gdbm_UNTIE): New method. (gdbm_FETCH): Check database validity. Croak if gdbm_fetch returns error (except GDBM_ITEM_NOT_FOUND). (gdbm_STORE,gdbm_DELETE): Likewise. (gdbm_FIRSTKEY,gdbm_NEXTKEY): Likewise. (gdbm_EXISTS): Check database validity. (gdbm_errno): New function. (gdbm_syserrno): New function. (gdbm_strerror): New function. (gdbm_clear_error): New function. (gdbm_needs_recovery): New function. (gdbm_recover): New function. (gdbm_count): New function. * ext/GDBM_File/typemap (gdbm_count_t): Map to T_COUNT. * ext/GDBM_File/GDBM_File.pm: Document everything. Raise $VERSION. * MANIFEST: Update. * AUTHORS: Update.
* Add a unit test that IO::Socket constructor uses error variables as specifiedPaul "LeoNerd" Evans2021-01-041-0/+1
|
* add a bareword_filehandles feature, which is enabled by defaultTony Cook2021-01-041-0/+1
| | | | This disables use of bareword filehandles except for the built-in handles
* Delete Porting/cherrymaintJames E Keenan2021-01-011-1/+0
| | | | Per discussion in https://github.com/Perl/perl5/issues/18028
* Add test harness for regexp optimizationHugo van der Sanden2020-12-231-0/+1
|
* perlgov: the perl governance documentRicardo Signes2020-12-211-0/+1
|
* new perldelta for 5.33.6Max Maischein2020-12-201-0/+1
|
* MANIFEST: Add ext/POSIX/t/iv_const.tTAKAI Kousuke2020-12-191-0/+1
|
* Add pod/perldocstyle.podJason McIntosh2020-12-191-0/+1
| | | | | | | | | | | | | | | | | Satisfies https://news.perlfoundation.org/post/grant_proposal_documentation_standards_perl7 Committer: Adding a new file underneath pod/ entails adding (i) an entry for that file in pod/perl.pod and (ii) entries in win32/pod.mak. (i) In turn requires, figuring out an appropriate category within perl.pod in which to place the new file. The entry should match that in MANIFEST and be consistent with the style of entries in MANIFEST. (ii) Requires running Porting/pod_rules.pl so that entries in win32/pod.mak are also generated for the corresponding *.man, *.html and *.tex files. Supersedes https://github.com/Perl/perl5/pull/18275.
* Update Config::Perl::V to 0.33H.Merijn Brand2020-12-181-0/+4
|
* Update PerlIO::via::QuotedPrint from 0.08 to 0.09Max Maischein2020-12-181-0/+4
| | | | This should be picked up by the auto-generated perldelta
* Update Text::Balanced from 2.03 to 2.04Max Maischein2020-12-181-0/+5
| | | | No entry in Perldelta because that will be generated automatically
* Synch with CPAN distribution libnet-3.12Steve Hay2020-12-101-1/+0
|
* Win32: implement symlink() and readlink()Tony Cook2020-12-011-0/+1
| | | | | | | | The API used requires Windows Vista or later. The API itself requires either elevated privileges or a sufficiently recent version of Windows 10 running in "Developer Mode", so some tests require updates.
* Win32: add lstat(), fetch st_dev and st_ino and fetch st_nlink for fstatTony Cook2020-12-011-0/+1
| | | | | | | | | | | | | | | We need lstat() for various modules to work well with symlinks, and the same modules often want to check for matches on the device and inode number. The values we're using for st_ino match those that the Python and Rust libraries use, and Go uses the same volume and file index values for testing if two stat objects refer to the same file. They aren't entirely unique, given ReFS uses 128-bit file ids, but the API used to check for this (GetFileInformationByHandleEx() for FileIdInfo) is only available on server operating systems, so I can't directly test it anyway.