summaryrefslogtreecommitdiff
path: root/Porting
Commit message (Collapse)AuthorAgeFilesLines
* Updated dual-life modules for 5.35.7Neil Bowers2021-12-201-4/+4
|
* Update ExtUtils-MakeMaker to CPAN version 7.64Chris 'BinGOs' Williams2021-12-181-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | [DELTA] 7.64 Fri 17 Dec 15:35:46 GMT 2021 No changes since v7.63_11 7.63_11 Tue 14 Dec 16:00:11 GMT 2021 OS390 fixes: - Extend prereqs sort to work on EBCDIC 7.63_10 Mon 13 Dec 16:26:49 GMT 2021 OS390 fixes: - Fix dynamic loading 7.63_09 Wed 8 Dec 22:20:53 GMT 2021 Enhancements: - Don't use canned libpth values 7.63_08 Sat 27 Nov 17:28:03 GMT 2021 Correction: - Previous change to ${LDFLAGS) was reverted 7.63_07 Sat 27 Nov 11:34:12 GMT 2021 Enhancements: - Add $(LDFLAGS) when linking binary modules 7.63_06 Wed 3 Nov 01:24:05 GMT 2021 Bug fixes: - Add -rpath when compiling XS modules on macOS 7.63_05 Sat 14 Aug 09:04:08 BST 2021 Enhancements: - Added CPPRUN variable 7.63_04 Wed 30 Jun 15:15:01 BST 2021 Doc fixes: - Describe CCFLAGS’ default 7.63_03 Tue 22 Jun 14:39:32 BST 2021 OS390 Enhancements: - Fix override xs_make_dynamic_lib() for os390 7.63_02 Thu 3 Jun 19:52:03 BST 2021 Doc fixes: - Changed wording for POLLUTE 7.63_01 Tue 25 May 16:22:50 BST 2021 Bug fixes: - Comparing inodes numerically is unsafe
* Minor RMG tweaksRichard Leach2021-12-161-7/+25
|
* Minor output tweaks to sync-with-cpanRichard Leach2021-12-161-3/+8
|
* Porting/makerel: Don't reinvent a functionKarl Williamson2021-12-141-88/+10
| | | | | It turns out the functionality here duplicates a pre-existing tool, which this commit converts to use instead.
* Porting/makrel: White space onlyKarl Williamson2021-12-141-1/+2
|
* Porting/makerel: Add xlation of UTF-16 filesKarl Williamson2021-12-141-4/+43
|
* Porting/makerel: Avoid hardcoding UTF-EBCDICSKarl Williamson2021-12-141-39/+32
| | | | | Instead, this uses the fundamental constants and derived values copied from utf8.h, making things shorter
* Porting/makerel: White-space/comment onlyKarl Williamson2021-12-141-69/+73
| | | | Prepare for a future commit that will add a surrounding block.
* Porting/makerel: Add use strict/warningsKarl Williamson2021-12-141-9/+12
|
* Porting/makerel Make EBCDIC files writableKarl Williamson2021-12-141-1/+1
| | | | Some of them need to be changed after generation
* Add a builtin:: namespace, with true/false/isboolPaul "LeoNerd" Evans2021-11-291-0/+1
| | | | | | | | This finishes the perl-visible API required for RFC 0008 https://github.com/Perl/RFCs/blob/master/rfcs/rfc0008.md It also begins the "builtin::" namespace of RFC 0009 https://github.com/Perl/RFCs/blob/master/rfcs/rfc0009.md
* Prepare Module::Corelist for 5.35.7Richard Leach2021-11-221-1/+1
|
* Bump the perl version in various places for 5.35.7Richard Leach2021-11-214-33/+33
|
* Tick off 5.35.6 from release scheduleRichard Leach2021-11-211-1/+1
|
* Add epigraph for 5.35.6Richard Leach2021-11-211-0/+7
|
* Update HTTP::Tiny to v0.080Richard Leach2021-11-191-1/+1
| | | | | | | | | | | | | | 0.080 2021-11-05 08:15:46-04:00 America/New_York - No changes from 0.079-TRIAL. 0.079 2021-11-04 12:33:43-04:00 America/New_York (TRIAL RELEASE) [FIXED] - Fixed uninitialized value warnings on older Perls when the REQUEST_METHOD environment variable is set and CGI_HTTP_PROXY is not.
* Update bignum, Math::BigInt, Math::BigInt::FastCalc, and Math::BigRatRichard Leach2021-11-191-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | bignum ====== 0.63 2021-10-08 * This version instroduces no changes to the Perl modules, only the tests. * Remove tests that don't work on old Perls and that were actually testing Math::Big(Int|Float|Rat) more than big(int|num|rat). * Skip tests that don't work on older versions of Perl. * Remove Perl v5.10.0 as dependency. This distribution is compatible with Perls back to at least v5.6.1, although some functionality (e.g., nesting the pragmas) requires more recent versions of Perl. 0.62 2021-10-03 * Add support for multiple options in import(), so that one can use, e.g., use bignum accuracy => 20, lib => "GMP"; * Make sure the bigrat pragma always returns Math::BigRat objects. * Make the "trace" option work as indended, or at least according to what I believe is the intention. * Improve documentation. Fix typos, improve wording, add more examples etc. 0.61 2021-10-01 * Improve documentation related to floating point literals. * Skip tests that fail due to Perl's broken handling of floating point literals before v5.32.0. 0.60 2021-09-28 * Separate the bigint, bignum, and bigrat pragmas. - The bigint pragma now converts every numeric constant that represents an integer to a Math::BigInt object. Non-integers are converted to Math::BigInt NaNs. With the previous behaviour, only some numeric constant integers were converted to a Math::BigInt. - The bignum pragma now converts every numeric constant to a Math::BigFloat object. - The bigrat pragma now converts every numeric constant to a Math::BigRat pragma. The pragmas no longer activate upgrading and downgrading. The upgrading and downgrading must now be activated explicitly. The rationale behind deactivating it by default is that can cause infinite looping where objects bounce back and forth between different classes. Explicitly requesting a specific class doesn't always work either, because the object might be automatically upgraded or downgraded to a different class. Only one pragma can be used at a time in a given scope. Enabling one pragma disables the others in the same scope. * Implementat working version of "no bigint", "no bignum", and "no bigrat". Previously, the upgrading and downgrading activated by, e.g., "use bigint" was not deactivated by "no bigint". * Sync behaviour with the Math-BigInt distribution. Math::BigInt ============ 1.999827 2021-10-03 * Improve error message for missing library argument. * Skip tests that don't work on older Perls. Also skip tests that compare floating point numbers. 1.999826 2021-10-01 * Improve documentation related to floating point literals. * Skip tests that fail due to Perl's broken handling of floating point literals before v5.32.0. 1.999825 2021-09-28 * Make Math::BigInt accept integers regardless of whether they are written as decimal, binary, octal, or hexadecimal integers or decimal, binary, octal, or hexadecimal floating point number. * When numeric constants are overloaded (with the ":constant" option) in Math::BigInt, every numeric constant that represent an integer is converted to an object regardless of how it is written. All finite non-integers are converted to a NaN. * When numeric constants are overloaded (with the ":constant" option) in Math::BigFloat, every numeric constant is converted to an object regardless of how it is written. * Add method from_dec() (cf. from_bin(), from_oct(), and from_hex()). It is like new() except that it does not accept anything but a string representing a finite decimal number. 1.999824 2021-09-20 * Don't allow mixing math libraries. Use the first backend math library that is successfully loaded, and ignore any further attempts at loading a different backend library. This is a solution to the re-occurring problem of using objects using different math libraries. * Add missing documentation. * Miscellaneous minor improvements. Math::BigInt::FastCalc ====================== 0.5012 2021-09-28 * Sync test files with Math-BigInt. 0.5011 2021-09-20 * Sync test files with Math-BigInt. * Add missing documentation. * Make the test files only print to the standard error when there is an actual error. * Miscellaneous changes and updates to author and release test files. Math::BigRat ============ 0.2620 2021-10-03 * Skip tests that don't work on older Perls. Also skip tests that compare floating point numbers. 0.2619 2021-10-01 * Correct the handling of Inf and NaN in numify(). * Improve constant overloading. When numeric constants are overloaded (with the ":constant" option) in Math::BigRat, every numeric constant is converted to an object regardless of how it is written. 0.2618 2021-09-28 * Add new method binv() for the inverse. * Add new method dparts(), which returns the integer part and fraction part of a number. For example, 9/4 is split into 2 and 1/4. This method is equivalent to the Math::BigInt and Math::BigFloat methods with the same name. * Improve blog(). Handle cases $x->blog($b) where the numerator of $x and/or $b is 1 as special. * Sync tests with Math-BigInt.
* Remove AT&T UWIN supportDagfinn Ilmari Mannsåker2021-11-021-1/+0
| | | | | UWIN is a UNIX compatibility layer for Windows. It was last released in 2012 and has been superseded by Cygwin these days.
* Remove DOS/DJGPP supportDagfinn Ilmari Mannsåker2021-11-021-1/+1
| | | | | | DJGPP is a port of the GNU toolchain to 32-bit x86 systems running DOS. The last known attempt to build Perl on it was on 5.20, which only got as far as building miniperl.
* Regen Configure and friends after backportsH.Merijn Brand2021-10-291-0/+7
|
* release schedule: neilb to handle 2021-12Ricardo Signes2021-10-291-1/+1
|
* Prepare Module::Corelist for 5.35.6Leon Timmermans2021-10-211-1/+1
|
* Bump version to 5.35.6Leon Timmermans2021-10-214-33/+33
|
* Tick off 5.35.5 from release scheduleLeon Timmermans2021-10-211-1/+1
|
* Add epigraph for 5.35.5Leon Timmermans2021-10-211-0/+17
|
* Update Encode to 3.16Leon Timmermans2021-10-191-1/+1
|
* Update Scalar-List-Util to 1.60Leon Timmermans2021-10-191-1/+1
|
* Update experimental to 0.025Leon Timmermans2021-10-191-1/+1
|
* Update Test-Simple to 1.302188Leon Timmermans2021-10-191-1/+1
|
* add customized entries for the latest Memoize changesTony Cook2021-10-181-0/+3
|
* manicheck now optionally exits non-zero if it finds problemsNicholas Clark2021-10-121-6/+32
| | | | | | | This will enable it to be used in a CI test. Refactor the code to avoid the temporary array @files by iterating over the lines of MANIFEST as they are read in.
* In manicheck be explicit that the code is stripping './'Nicholas Clark2021-10-121-2/+3
| | | | | | | | | | | | | | The regex had been written as /^../, which strictly was correct as the string passed would *always* start with './', but this wasn't clear. One had to stop and double check how File::Find::find() works, and what argument it was called with. And it's not exactly clear when the '.' in the regex text matches '.' and then '/', but the '/' in the regex is the delimiter. Given that the regex is being changed, move it later - previously the code was performing a substitution on the value of $File::Find::name before it knew that it needed it. (ie doing work for all directories.)
* cpan/Encode: synch with CPAN 3.15Dan Kogai2021-10-101-1/+1
| | | | | | Per maintainer, this is a more complete fix for the problem addressed in Encode 3.13: memory leak on FB_CROAK. Certain problems with the sequencing of pull requests have been addressed.
* Remove NetWare supportDagfinn Ilmari Mannsåker2021-10-087-9/+5
| | | | The build has been broken since 2009.
* Update HTTP-Tiny to CPAN version 0.078Chris 'BinGOs' Williams2021-10-071-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | [DELTA] 0.078 2021-08-02 09:24:03-04:00 America/New_York - No changes from 0.077-TRIAL. 0.077 2021-07-22 13:07:14-04:00 America/New_York (TRIAL RELEASE) [ADDED] - Added a `patch` helper method for the HTTP `PATCH` verb. - If the REQUEST_METHOD environment variable is set, then CGI_HTTP_PROXY replaces HTTP_PROXY. [FIXED] - Unsupported scheme errors early without giving an uninitialized value warning first. - Sends Content-Length: 0 on empty body PUT/POST. This is not in the spec, but some servers require this. - Allows optional status line reason, as clarified in RFC 7230. - Ignore SIGPIPE on reads as well as writes, as IO::Socket::SSL says that SSL reads can also send writes as a side effect. - Check if a server has closed a connection before preserving it for reuse. [DOCS] - Clarified that exceptions/errors result in 599 status codes. [PREREQS] - Optional IO::Socket::IP prereq must be at least version 0.32 to be used. This ensures correct timeout support.
* Update Digest to CPAN version 1.20Chris 'BinGOs' Williams2021-10-071-1/+1
| | | | | | | [DELTA] 1.20 Tue 2021-08-24 - Remove temp files during unit tests.
* Storable is 3.25 on CPANChris 'BinGOs' Williams2021-10-071-1/+1
|
* IO is 1.48 on CPANChris 'BinGOs' Williams2021-10-071-1/+1
|
* cpan/Encode: synch with CPAN 3.13Dan Kogai2021-10-071-1/+1
| | | | | | Address RT#139622. It fixes the memory leak when you set FB_CROAK. Usually that is not a problem because perl dies immediately after the error occurs but that is not the case when you wrap it in eval {}.
* bisect-runner.pl must first check that ext/List/Util/Util.xs existsNicholas Clark2021-10-051-2/+2
| | | | | | | | It's a hard error to attempt to patch a file that is not found. ext/List/Util/Util.xs was only added to perl *during* the 5.7.x track. Without this change bisect-runner.pl was unable to build some early revisions of 5.7.x
* bisect-runner.pl should patch SDBM_File for parallel builds.Nicholas Clark2021-10-051-0/+10
| | | | | | | | | | | The fix in commit 4d106cc5d8fd328d: For SDBM_File, stop EU::MM from generating its default subdirs rule. The default subdirs rule creates a race condition with the rule that Makefile.PL explicitly adds to generate libsdbm.a, which can cause parallel makes to fail. is needed for earlier perl versions to.
* bisect-runner.pl should add -Ilib for makedef.pl in Makefile.SHNicholas Clark2021-10-051-0/+12
| | | | | | | | | | | | | The fix from commit 72bbce3da5eeffde: miniperl also needs -Ilib for perl.exp on AIX etc is needed to avoid build failures during parallel makes when makedef.pl is run before all the toolchain modules have been copied into lib/ Specifically -Ilib on the command line to miniperl loads buildcustomize.pl which then sets @INC to include all the toolchain modules directly, whereas setting @INC to lib in a BEGIN block doesn't trigger this complete setup. makedef.pl uses constant, which is dual life and copied from dist/constant/
* release schedule: Richard Leach to release v5.35.6Ricardo Signes2021-10-031-1/+1
|
* release schedule: leont will release v5.35.5Ricardo Signes2021-10-031-1/+1
|
* Prep Module::CoreList for the 5.35.5 releaseMatthew Horsfall2021-09-211-1/+1
|
* Update release_announcement_template.txt year for the next poor soulMatthew Horsfall2021-09-201-1/+1
|
* Bump versions from v5.35.4 to v5.35.5Matthew Horsfall2021-09-204-33/+33
|
* Check off 5.35.4 in release_schedule.podMatthew Horsfall2021-09-201-1/+1
|
* Update epigraphs for 5.35.4 releaseMatthew Horsfall2021-09-201-0/+36
|