1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731
|
==================================================
Changes from 2016-01-13 00:00:00 +0000 to present.
==================================================
-----------------------------------------
version 2.08 at 2021-01-11 20:08:00 +0000
-----------------------------------------
Change: 2e710bc17736e5d2c43875c2076db7c1a6e4fe47
Author: Chris 'BinGOs' Williams <chris@bingosnet.co.uk>
Date : 2021-01-11 20:08:00 +0000
This is 2.08
Change: 1eaa7976957abbc533869176a390638e93850d12
Author: Graham Knop <haarg@haarg.org>
Date : 2021-01-11 08:47:00 +0000
fix darwin DynaLoader patch for older perls
The patch that was taken from blead uses a <<$^OS-eq-darwin>>
preprocessing token, which is handled by the DynaLoader_pm.PL script.
Older versions of DynaLoader_pm.PL don't include this preprocessing,
but the patch still applies.
In our case, the preprocessing is a check for darwin. But the patch
is already only applied on darwin, so it is redundant. We can just
remove the preprocessing token, and it should work across all
versions.
-----------------------------------------
version 2.06 at 2020-12-23 17:32:27 +0000
-----------------------------------------
Change: 3d44f83c8ccc5eba3ad3f449bab2a985464b7726
Author: Chris 'BinGOs' Williams <chris@bingosnet.co.uk>
Date : 2020-12-23 17:32:27 +0000
Fixes for Big Sur
Dynaloader fix:
https://github.com/perl/perl5/commit/d296ead16762852ec34d173616a271c8
56711f77
ExtUtils::MakeMaker fix:
https://github.com/Perl-Toolchain-Gang/ExtUtils-MakeMaker/commit/21a4
41da515d55654bca4971f21ad2550de069d2
Made adjustments to the check_patchperl tool
-----------------------------------------
version 2.04 at 2020-11-20 12:36:29 +0000
-----------------------------------------
Change: 771e4fd9595bcc90f482f454203d84c568814966
Author: Chris 'BinGOs' Williams <chris@bingosnet.co.uk>
Date : 2020-11-20 12:36:29 +0000
Tweaked hints patching
Hints file patching now occurs before other patching and has an
independent certified perl version.
Updated included hints files to v5.33.4 level.
-----------------------------------------
version 2.02 at 2020-11-08 19:28:50 +0000
-----------------------------------------
Change: f02eab39c2f0073e6aceff6bb0b73f4d03e39b8f
Author: Chris 'BinGOs' Williams <chris@bingosnet.co.uk>
Date : 2020-11-08 19:28:50 +0000
This is 2.02
Change: fa458343e6ae7f70412c466eb604633db44bf24b
Author: Chris 'BinGOs' Williams <chris@bingosnet.co.uk>
Date : 2020-11-08 19:19:39 +0000
Finesse the check_patchperl script
Suppress the git output and only show patchperl output if there is a
problem with patching
Change: d4fe0e9fa23d0fd78b368a5edb34550120e2c233
Author: Ichinose Shogo <shogo82148@gmail.com>
Date : 2020-11-08 19:18:21 +0000
fix env command syntax
Change: 20692277283d6eb1616eab987583b33cfb612198
Author: Ichinose Shogo <shogo82148@gmail.com>
Date : 2020-11-08 19:18:21 +0000
update deprecated GitHub Actions commands
add-path and set-env are deprecated for security reason.
https://github.blog/changelog/2020-10-01-github-actions-deprecating-s
et-env-and-add-path-commands/ update them to use the new environment
files.
https://docs.github.com/en/free-pro-team@latest/actions/reference/wor
kflow-commands-for-github-actions#environment-files
Change: 175ccb4bc8c88a0e3e3f4600fe1db09f023a9999
Author: Ichinose Shogo <shogo82148@gmail.com>
Date : 2020-11-07 09:17:00 +0000
fix -Duseshrplib builds on darwin
port of https://github.com/Perl/perl5/issues/15057
Change: 7c806f542ffd0b5e75d724404012fd8bc9afc4e4
Author: Ichinose Shogo <shogo82148@gmail.com>
Date : 2020-11-07 09:12:34 +0000
Patch Time::HiRes in 5.24.2
Time::HiRes is broken on threaded darwin in 5.24.2, not only 5.24.1
and 5.24.0. https://github.com/bingos/devel-patchperl/pull/26 is need
in Perl 5.24.2.
Change: eaf8ec2500acde369ad78aea12d1de0011480a0e
Author: Ichinose Shogo <shogo82148@gmail.com>
Date : 2020-06-23 15:26:13 +0000
Perl 5.32.0 is released
Change: 0b60d5d7d06de737cc4e033f658aad8cff906657
Author: Chris 'BinGOs' Williams <chris@bingosnet.co.uk>
Date : 2020-06-09 16:26:25 +0000
Fix make depend problems with v5.9.[0-4]
Change: df4f5009c804675bf97160490a95af8a67ded395
Author: Chris 'BinGOs' Williams <chris@bingosnet.co.uk>
Date : 2020-06-09 16:00:56 +0000
Fix patching the v5.7.x series
Change: 3dce408aaf97a3b245b29303f20b30a7584fb362
Author: Chris 'BinGOs' Williams <chris@bingosnet.co.uk>
Date : 2020-06-08 21:13:06 +0000
Added a tool to check patchperl from the repository
It checkouts the perl5 git repository and runs patchperl for all of
the supported perl versions
Change: 3e819851d4e28806c629ed783ef56b02f6e5ad12
Author: Chris 'BinGOs' Williams <chris@bingosnet.co.uk>
Date : 2020-06-08 19:09:04 +0000
Fixed utils/h2ph.PL patching
v5.21.9 actually already had the fix
Change: 647e88747c8469d9c9b418a78a5b999984f17acb
Author: Ichinose Shogo <shogo82148@gmail.com>
Date : 2020-06-08 12:28:52 +0000
introduce GitHub Actions
-----------------------------------------
version 2.00 at 2020-06-04 10:20:07 +0000
-----------------------------------------
Change: 0ab4bf0d8b02af79e1afed7fac9e91b75f1c1fda
Author: Chris 'BinGOs' Williams <chris@bingosnet.co.uk>
Date : 2020-06-04 11:20:07 +0000
Resolve patching issues with v5.22.x and v5.24.x
https://github.com/bingos/devel-patchperl/issues/44
Configure changes had been backported to the v5.22 and v5.24 maint
releases, so what worked for .0 releases didn't work for later maint
releases.
I have adjusted and tested the patch application criteria for all
v5.22.x and v5.24.x releases.
-----------------------------------------
version 1.98 at 2020-05-25 18:17:30 +0000
-----------------------------------------
Change: 25ccc65e1b2bd688983ced340c23561888456921
Author: Chris 'BinGOs' Williams <chris@bingosnet.co.uk>
Date : 2020-05-25 19:17:30 +0000
Added command line switches to patchperl
--version prints version of Devel::PatchPerl and exits
--patchlevel will update patchlevel.h even in a git repository
One may also set the PERL5_PATCHPERL_PATCHLEVEL env var to have the
same effect as --patchlevel
-----------------------------------------
version 1.96 at 2020-05-25 11:21:50 +0000
-----------------------------------------
Change: 15cdb6b32538d3cefc779735413f0fe8522aa27b
Author: Chris 'BinGOs' Williams <chris@bingosnet.co.uk>
Date : 2020-05-25 12:21:50 +0000
Resolve reported issue with 1.94 release
https://github.com/bingos/devel-patchperl/issues/42
Will successfully patch all the way back to v5.6.0
-----------------------------------------
version 1.94 at 2020-05-24 12:52:39 +0000
-----------------------------------------
Change: 14c825fc079cb8f0d626b6b9769d048db9771bc0
Author: Chris 'BinGOs' Williams <chris@bingosnet.co.uk>
Date : 2020-05-24 13:52:39 +0000
Added Configure patch for GCC10
https://github.com/perl/perl5/commit/9f4e6307232229875331a55e44e1245b
0b91e219
Fedora 32 now ships with GCC 10 as the system compiler
-----------------------------------------
version 1.92 at 2020-04-27 10:25:28 +0000
-----------------------------------------
Change: fc4fd9ed11ccce6c653010df796d7ccc5c0a8bb9
Author: Chris 'BinGOs' Williams <chris@bingosnet.co.uk>
Date : 2020-04-27 11:25:28 +0000
Release engineering for 1.92
- Added
https://github.com/perl/perl5/commit/e9c9cf57594854df9f5802f7f149be47
38212e96
to resolve issues building threaded/quadmath perls below v5.28.0 on
recent Ubunutu 20.04
-----------------------------------------
version 1.90 at 2020-03-11 15:12:17 +0000
-----------------------------------------
Change: 4e7524712ba22826ee94dc270270d544a8402b40
Author: Chris 'BinGOs' Williams <chris@bingosnet.co.uk>
Date : 2020-03-11 15:12:17 +0000
Release engineering for 1.90
- Finessed patching for Time::Local 2020 problem
Local.t patching back to v5.8.7
-----------------------------------------
version 1.88 at 2020-03-10 20:11:48 +0000
-----------------------------------------
Change: a54f02952cf7e62be4ed4f4772a1db6544949fcf
Author: Chris 'BinGOs' Williams <chris@bingosnet.co.uk>
Date : 2020-03-10 20:11:48 +0000
Release engineering for 1.88
- Fixes for Locale.t year 2020 problems
Applies back to v5.13.9
-----------------------------------------
version 1.86 at 2020-02-04 15:37:02 +0000
-----------------------------------------
Change: 8cf8b79c67f7d3aed2b54f21adedd3019dbc687f
Author: Chris 'BinGOs' Williams <chris@bingosnet.co.uk>
Date : 2020-02-04 15:37:02 +0000
Release engineering for 1.86
- Added fix for ExtUtils::MM_AIX preventing builds on AIX for
perls v5.28.x and v5.30.x
-----------------------------------------
version 1.84 at 2020-01-28 19:00:25 +0000
-----------------------------------------
Change: 64abf332fa8344c14becb070727cec3b6e8c06d8
Author: Chris 'BinGOs' Williams <chris@bingosnet.co.uk>
Date : 2020-01-28 19:00:25 +0000
Release engineering for 1.84
- fixed problem with 1.82 release that stops perls < 5.10
from being patched
(I suck at Perl Versions).
-----------------------------------------
version 1.82 at 2020-01-28 18:45:38 +0000
-----------------------------------------
Change: f367dbcb8e4fd2b998450e2f52a2844cb7be2d71
Author: Chris 'BinGOs' Williams <chris@bingosnet.co.uk>
Date : 2020-01-28 18:45:38 +0000
Release engineering for 1.82
Certified perl version < 5.031004
Change: ead35cf30015274f8b98c0f93c93882b1502345a
Author: Chris 'BinGOs' Williams <chris@bingosnet.co.uk>
Date : 2020-01-28 18:38:42 +0000
Fix issue with SDBM_File on perls > 5.10.0 and < 5.14.4
I've only seen an issue without the patch on Alpine Linux
(https://github.com/Perl/perl5/commit/acdbe25bd91)
-----------------------------------------
version 1.80 at 2019-11-19 16:27:40 +0000
-----------------------------------------
Change: acdcf1d67ae426367f42ca763b9ba6b92dd90925
Author: Chris 'BinGOs' Williams <chris@bingosnet.co.uk>
Date : 2019-11-19 16:27:40 +0000
Release engineering for 1.80
- Fixes https://github.com/bingos/devel-patchperl/issues/38
"Failed to apply devel-patchperl to perl 5.8.8 in macOS"
Change: 94520b369885689366535b80a05b16e8129789d7
Author: Shoichi Kaji <skaji@cpan.org>
Date : 2019-11-19 16:26:17 +0000
fix #38; _patch -> _patch_b64
-----------------------------------------
version 1.78 at 2019-11-14 14:18:25 +0000
-----------------------------------------
Change: fd36f9e4d74f0360b79ad8d9db3795d15dd45da7
Author: Chris 'BinGOs' Williams <chris@bingosnet.co.uk>
Date : 2019-11-14 14:18:25 +0000
Release engineering for 1.78
No functional changes, removed stray file from the dist. GH #37
-----------------------------------------
version 1.76 at 2019-11-10 21:56:25 +0000
-----------------------------------------
Change: c6c3401c1ff06069158e500666a15d5b917c5333
Author: Chris 'BinGOs' Williams <chris@bingosnet.co.uk>
Date : 2019-11-10 21:56:25 +0000
Release engineering for 1.76
Change: fe21ec31068762a266065d97d58049024d324712
Author: Chris 'BinGOs' Williams <chris@bingosnet.co.uk>
Date : 2019-11-10 21:52:33 +0000
Fix issues with patching utils/h2ph.PL on v5.8.x
Whilst I was at it got it working for the v5.9.x series and converted
patch storage to base64
-----------------------------------------
version 1.74 at 2019-11-10 19:12:13 +0000
-----------------------------------------
Change: bc34799b4bbfd6617f994462cf286c885076a685
Author: Chris 'BinGOs' Williams <chris@bingosnet.co.uk>
Date : 2019-11-10 19:12:13 +0000
Release engineering for 1.74
Change: ce53c2729056069ab0a1703ab4a607ff591c67a3
Author: Shoichi Kaji <skaji@cpan.org>
Date : 2019-11-10 19:09:52 +0000
fix #35; restore file permission
Change: feb438a355d8f56eb7c302ca0c861fd06f82323c
Author: Chris 'BinGOs' Williams <chris@bingosnet.co.uk>
Date : 2019-11-10 19:07:52 +0000
Revert "Fix issue where Configure was left not executable"
This reverts commit 8c5111233d3120fc9e5c11045755a4d96d247848.
Will apply skaji's solution as it is much more elegant.
-----------------------------------------
version 1.72 at 2019-11-10 17:14:02 +0000
-----------------------------------------
Change: 525226049faf7c37435bd8850a72b441d5611769
Author: Chris 'BinGOs' Williams <chris@bingosnet.co.uk>
Date : 2019-11-10 17:14:02 +0000
Release engineering for 1.72
Change: 8c5111233d3120fc9e5c11045755a4d96d247848
Author: Chris 'BinGOs' Williams <chris@bingosnet.co.uk>
Date : 2019-11-10 17:12:54 +0000
Fix issue where Configure was left not executable
Change: eb986180d4cb0d6bef5c6cb937c915cf5f3c1ab4
Author: Mohammad S Anwar <mohammad.anwar@yahoo.com>
Date : 2019-11-08 09:25:18 +0000
Added test prereq Test::More as suggested by CPANTS.
Signed-off-by: Chris 'BinGOs' Williams <chris@bingosnet.co.uk>
-----------------------------------------
version 1.70 at 2019-11-08 02:01:40 +0000
-----------------------------------------
Change: a28752586c80e3973427a195eee9fef139769126
Author: Chris 'BinGOs' Williams <chris@bingosnet.co.uk>
Date : 2019-11-08 02:01:40 +0000
Release engineering for 1.70
Change: cdbf062e9cae9bdccb4d510a506a93c01f879f9b
Author: Chris 'BinGOs' Williams <chris@bingosnet.co.uk>
Date : 2019-11-08 01:59:33 +0000
Added Base64 encoding of patches
This should resolve issues such as RT#130939 Initially encoded the
offending patch
-----------------------------------------
version 1.68 at 2019-11-07 10:11:25 +0000
-----------------------------------------
Change: ad469d13d24b4ba61745025946d94873c6741bbb
Author: Chris 'BinGOs' Williams <chris@bingosnet.co.uk>
Date : 2019-11-07 10:11:25 +0000
Release engineering for 1.68
Don't index package Errno
-----------------------------------------
version 1.66 at 2019-11-07 00:59:46 +0000
-----------------------------------------
Change: 0b8b9e1a230fc5db2da7a0c134059acb36bd0f18
Author: Chris 'BinGOs' Williams <chris@bingosnet.co.uk>
Date : 2019-11-07 00:59:46 +0000
Release engineering for 1.66
Change: 3be89570ad0dc2cbd7de4fe8b2abce06e178e55c
Author: Chris 'BinGOs' Williams <chris@bingosnet.co.uk>
Date : 2019-11-07 00:51:03 +0000
Fix issues with v5.7.x (h2ph.PL and Errno.pm.PL)
Change: 9795ec9c40d3a2fb627e975b7fc1503375cd9a9b
Author: Chris 'BinGOs' Williams <chris@bingosnet.co.uk>
Date : 2019-11-06 23:49:45 +0000
Fix utils/h2ph.PL patching on v5.8.0
Change: b4e5461e9e762b26944305ddcb195c29a98c1b39
Author: wwlwpd <6434714+wwlwpd@users.noreply.github.com>
Date : 2019-06-21 10:10:58 +0000
Set files to be patched to 0644 if they are 0444, set back after.
Issue 31: In an environment that uses the Lustre file system, it's
been seen that any files that are set to 0444 (read only) will cause
fatal filesystem errors when the patch is attempted. This makes using
perlbrew to install perl on these systems impossible This change
detects read-only files about to be patched, sets them to 0644 for
the duration of the patching, then sets them back to 0444 so that
they exist as expected during the actual build process.
-----------------------------------------
version 1.64 at 2019-06-15 09:35:16 +0000
-----------------------------------------
Change: 62eed456ce2092db5521f21adbd8c34b30987c84
Author: Chris 'BinGOs' Williams <chris@bingosnet.co.uk>
Date : 2019-06-15 10:35:16 +0000
Release engineering for 1.64
Change: a7e913e3ffb1228ab7628da44ecfb1b9da59e8b7
Author: Chris 'BinGOs' Williams <chris@bingosnet.co.uk>
Date : 2019-06-15 10:33:43 +0000
Fix GH issue #33 Fails to patch 5.20.3
-----------------------------------------
version 1.62 at 2019-06-02 13:06:13 +0000
-----------------------------------------
Change: c49873891956e56b72e3a986f3d2b13f8b785a9c
Author: Chris 'BinGOs' Williams <chris@bingosnet.co.uk>
Date : 2019-06-02 14:06:13 +0000
Release engineering for 1.62
Change: 2c864effec4b1ade1fb45f10c6d917942eecd479
Author: Chris 'BinGOs' Williams <chris@bingosnet.co.uk>
Date : 2019-06-02 14:04:38 +0000
Fixed GH issue #30 patch_source fails with 5.8.1..8
-----------------------------------------
version 1.60 at 2019-05-14 11:37:28 +0000
-----------------------------------------
Change: 1595e5c61cbef9e8d580cbdd97b32eefdb83209a
Author: Chris 'BinGOs' Williams <chris@bingosnet.co.uk>
Date : 2019-05-14 12:37:28 +0000
Release engineering for 1.60
Change: 66635512bb0e8ddb8dd8e5f2142600697eafd946
Author: Benjamin Smith <bsmith@cpan.org>
Date : 2019-05-14 12:34:42 +0000
Fix Configure patch for fwrapv issue
Signed-off-by: Chris 'BinGOs' Williams <chris@bingosnet.co.uk>
-----------------------------------------
version 1.58 at 2019-04-26 15:51:27 +0000
-----------------------------------------
Change: 1be25996c64d8e3b9ed9997facc4e07f66722f59
Author: Chris 'BinGOs' Williams <chris@bingosnet.co.uk>
Date : 2019-04-26 16:51:27 +0000
Release engineering for 1.58
Change: 9acd33780d61b675239cb812777a172eb0ae4492
Author: Chris 'BinGOs' Williams <chris@bingosnet.co.uk>
Date : 2019-04-26 16:50:42 +0000
Merge hints from blead v5.29.10
Change: 7753eb224020419fc199bf5bc207cce0bef93d18
Author: Chris 'BinGOs' Williams <chris@bingosnet.co.uk>
Date : 2019-04-26 16:46:44 +0000
Add patch to fix lib/h2ph.t
Change: 3f58aa0bda494f4a7ff8e8d178bce25e0928efd2
Author: Chris 'BinGOs' Williams <chris@bingosnet.co.uk>
Date : 2019-04-26 15:34:00 +0000
Added patch to fix utils/h2ph.PL
Change: 86165ca94b2bc35ac49e99c91371e0bb269d2d72
Author: Chris 'BinGOs' Williams <chris@bingosnet.co.uk>
Date : 2019-04-26 14:18:44 +0000
Patch Configure for -fwrapv
Change: 9eabda784544256a9fe1879bef9b0a0c043546f3
Author: Chris 'BinGOs' Williams <chris@bingosnet.co.uk>
Date : 2019-04-26 10:58:03 +0000
Test hints() function as well
Change: e1d4c88a89f3809432479113de2370a31cb68fb4
Author: Chris 'BinGOs' Williams <chris@bingosnet.co.uk>
Date : 2019-04-26 10:01:03 +0000
Added test for non-existant plugin
-----------------------------------------
version 1.56 at 2019-02-26 14:01:17 +0000
-----------------------------------------
Change: 1e8e1b66831493bbf6993eb5190527b8f1312e8a
Author: Chris 'BinGOs' Williams <chris@bingosnet.co.uk>
Date : 2019-02-26 14:01:17 +0000
Let's not exit from a sub, eh
Apparently I am an idiot.
-----------------------------------------
version 1.54 at 2019-02-18 11:06:49 +0000
-----------------------------------------
Change: 498fcff11abd4e5f06a4e916c2296323c1125ced
Author: Chris 'BinGOs' Williams <chris@bingosnet.co.uk>
Date : 2019-02-18 11:06:49 +0000
Updated hints and added certified perl version
If perl to be patched is greater than or equal to certified perl
version than patchperl will exit doing nothing
-----------------------------------------
version 1.52 at 2018-06-23 09:12:01 +0000
-----------------------------------------
Change: 9987ca085ff78e37d4fb0a118a16dc6b6b11ba79
Author: Chris 'BinGOs' Williams <chris@bingosnet.co.uk>
Date : 2018-06-23 10:12:01 +0000
Release engineering for 1.52
Change: d4d87e4d9324316e1ab392619491a96885aa3fa1
Author: Chris 'BinGOs' Williams <chris@bingosnet.co.uk>
Date : 2018-06-23 10:03:51 +0000
Updated hints
Change: 95826fad7e96f573dad727374cfb9f4a8b1017ee
Author: Bram <bram-tvguho@mail.wizbit.be>
Date : 2017-12-08 12:56:34 +0000
Add patch for 'Perl_fp_class_denorm'
Patch error:
sv.o: In function `S_hextract':
sv.c:(.text+0xcfd): undefined reference to `Perl_fp_class_denorm'
perl5 commit message:
Fallbacks for Perl_fp_class_denorm().
These may be needed if the compiler doesn't expose the C99 math
without some special switches.
See also: - https://rt.perl.org/Public/Bug/Display.html?id=132255 -
perl5 commit 488307ffa67ce70fc9755e560a74dac04bdcb0e4
-----------------------------------------
version 1.48 at 2017-02-12 18:32:39 +0000
-----------------------------------------
Change: 5a47f8c8ee6a2658264412f66d010fd50820e304
Author: Chris 'BinGOs' Williams <chris@bingosnet.co.uk>
Date : 2017-02-12 18:32:39 +0000
Updated hints
Change: cbdc230953a7bb62852d6f9bd65ea2ebecec935a
Author: David Golden <xdg@xdg.me>
Date : 2017-02-12 14:29:34 +0000
Patch Time::HiRes in 5.24.[01] (#26)
Time::HiRes is broken on threaded darwin in 5.24.0 and 5.24.1. This
patch brings in changes from blead that fix it. The patch is
unfortunately large, as untangling just the compilation fix from
other changes and still getting tests to pass wasn't straightforward.
-----------------------------------------
version 1.46 at 2016-11-21 11:02:53 +0000
-----------------------------------------
Change: d89ef82256c963746f576c2ce1dfb8ef8bd0aca6
Author: Chris 'BinGOs' Williams <chris@bingosnet.co.uk>
Date : 2016-11-21 11:02:53 +0000
Updated hints
-----------------------------------------
version 1.44 at 2016-08-18 11:38:32 +0000
-----------------------------------------
Change: 7438a96d49d498b6bd3752293c4d147d9f3fef49
Author: Chris 'BinGOs' Williams <chris@bingosnet.co.uk>
Date : 2016-08-18 12:38:32 +0000
Updated hints for darwin, freebsd and gnu (hurd)
-----------------------------------------
version 1.42 at 2016-04-21 16:08:59 +0000
-----------------------------------------
Change: af3745be4c87fbf89b59c0a6356a3944b59d6179
Author: Chris 'BinGOs' Williams <chris@bingosnet.co.uk>
Date : 2016-04-21 17:08:59 +0000
Update hints file for Darwin
Change: 0c03b74346458076f014851f7501e7cb96c4c06d
Author: Chris 'BinGOs' Williams <chris@bingosnet.co.uk>
Date : 2016-04-21 17:08:52 +0000
Don't patch the patchlevel if in Git repository
This should address https://rt.cpan.org/Ticket/Display.html?id=108689
Change: d8048d8ce5280d4ac67a5f99b97d2fc43aef8bef
Author: Chris Williams <chris@bingosnet.co.uk>
Date : 2016-01-01 01:41:04 +0000
Merge pull request #25 from book/master
Add the proper patch for ext/Errno/Errno_pm.PL in Perl 5.7.2
Change: c3e98d2f49d52819b85982e118fda73baaa90070
Author: Philippe Bruhat (BooK) <book@cpan.org>
Date : 2015-12-30 08:47:59 +0000
Add the proper patch for ext/Errno/Errno_pm.PL in Perl 5.7.2
Fixes GH #24
=================================================
Plus 70 releases after 2016-01-13 00:00:00 +0000.
=================================================
|