summaryrefslogtreecommitdiff
path: root/lang/perl5-devel (follow)
Commit message (Collapse)AuthorAgeFilesLines
* lang/perl5-devel: update to 5.41.13Mathieu Arnold2025-05-296-11/+13
| | | | Changes: https://metacpan.org/release/BOOK/perl-5.41.13/view/pod/perldelta.pod
* lang/perl5*: first attempt of reporting local patchesMathieu Arnold2025-05-151-1/+5
|
* lang/perl5-devel: update to 5.41.12Mathieu Arnold2025-04-233-4/+6
|
* lang/perl5-devel: update to 5.41.11Mathieu Arnold2025-04-233-4/+65
|
* lang/perl5-devel: update to 5.41.10Mathieu Arnold2025-04-145-9/+11
|
* lang/perl5-devel: update to 5.41.9Mathieu Arnold2025-04-143-4/+8
|
* lang/perl5-devel: update to 5.41.8Mathieu Arnold2025-04-144-11/+17
|
* lang/perl5-devel: update to 5.41.7Mathieu Arnold2025-04-144-6/+8
|
* lang/perl5-devel: update to 5.41.6Mathieu Arnold2025-04-143-4/+6
|
* lang/perl5-devel: update to 5.41.5Mathieu Arnold2025-04-144-6/+12
|
* lang/perl5-devel: update to 5.41.4Mathieu Arnold2025-04-143-4/+6
|
* lang/perl5-devel: update to 5.41.3Mathieu Arnold2024-08-306-14/+20
| | | | | | While there, drop the THREADS option [1] PR: 274192 [1]
* lang/perl5*: remove calls to makewhatisMathieu Arnold2024-08-192-3/+1
| | | | | | | | | | | | The @*exec macros have issues when being used when used with `pkg -r`, as %D does not account for the root directory. As we have a periodic task updating the makewhatis databases, and perl ports are the only ones actually doing that, probably for some long lost historic reason, it is easier to let that periodic task do its job. PR: 280458 Discussed with: bapt Reported by: Siva Mahadevan
* lang/perl5-devel: update to 5.41.1Mathieu Arnold2024-07-033-27/+11
|
* lang/perl5*: synchronize commentsMathieu Arnold2024-06-051-1/+1
|
* lang/perl5-devel: update to 5.39.10Mathieu Arnold2024-05-257-39/+316
| | | | While there, switch to released tarballs
* */*: Sunset 12.4-RELEASE/12-STABLE from ports treeMuhammad Moinur Rahman2023-12-311-2/+2
| | | | | | | | | | | | | | | | | | | | | - Remove all references to defunct ARCH arm - Remove all references to defunct ARCH sparc64 - Remove x11-drivers/xf86-video-sunffb which requires defunct sparc64 ARCH - Remove sysutils/afbinit requires defunct sparc64 ARCH - Remove all references to bktr driver - Remove all references to defunct FreeBSD_12 - Remove all references to OSVERSION/OSREL corresponding to 12 - Remove conditionals in Mk/Uses/cabal.mk - Remove sparc reference from Mk/Uses/qt-dist.mk - Remove BROKEN_sparc64/NOT_FOR_ARCH=sparc64 - Remove BROKEN_FreeBSD_12* from: - Remove OpenSSL patches from: - Remove conditional flags for OSVERSION >= 1300000 to fixed flags. Also move conditional flags for non sparc64/arm ARCH to fixed flags. Reviewed by: brooks, jbeich, rene, salvadore Differential Revision: https://reviews.freebsd.org/D42068
* lang/perl5*: Link with -pthread instead of -lpthreadTijl Coosemans2023-07-112-11/+34
| | | | | | | | | | | | | | | | | | | | | | During configure of security/p5-Crypt-GCrypt a test program is compiled and run to test libgcrypt. This program segfaults when perl5 is built with the THREADS option. Libgcrypt links with libgpg-error which has an init function which calls into libintl (gettext) which calls pthread functions before libthr is initialised. The compiler command line is provided by perl and it includes both -pthread and -lpthread. Patch perl to remove -lpthread. With -pthread the compiler will pass -lpthread to the linker such that it is initialised early. Discovered by the exp-run for gettext 0.22. While here also remove -lc unconditionally and remove the code that replaced it with -lc_r for old version of FreeBSD because the version test is incorrect (missing a dot). The -pthread flag already tells the compiler to use -lc_r on those old versions. PR: 272210
* lang/perl5-devel: update to latest commitMathieu Arnold2023-07-075-37/+18
|
* lang/perl5-devel: update to latest commitMathieu Arnold2023-06-247-29/+55
| | | | (cherry picked from commit 9bd6ffdcb83d03f14dd9075b0d8967fe094cba59)
* lang/perl5*: remove workarounds for lld 15 and dtrace enabledDimitry Andric2022-12-121-18/+0
| | | | | | | | | | | After https://cgit.freebsd.org/src/commit/?id=be39466a1035, there is no need anymore to patch the perl5 Makefiles to add "-Wl,--allow-multiple-definition" to the linker flags. They should now link with lld 15 and later without any issues. PR: 265516 Fixes: 8c69fc20e6c7 MFH: 2022Q4
* lang/perl5*: alternative workaround for lld 15 and dtrace enabledDimitry Andric2022-09-213-14/+21
| | | | | | | | | | | | | | | | | Modify the workaround committed in 4ae8ff941b29 by only adding -Wl,--allow-multiple-definition to the two link command lines that require it, instead of adding it to hints/freebsd.sh Otherwise, that linker flag is emitted into perl's global configuration (/usr/local/lib/perl5/5.xx/mach/Config_heavy.pl), and might be used by other ports which link in libperl, such as www/mod_perl2, which cannot correctly handle any unexpected linker flags, leading to errors. PR: 265516 Reported by: lev Approved by: maintainer timeout (1 month) Fixes: 4ae8ff941b29 MFH: 2022Q3
* lang/perl5*: work around duplicate symbol errors with lld 15 and dtrace enabledDimitry Andric2022-09-192-2/+13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Building any of the lang/perl5* ports with clang and lld 15, and the DTRACE option enabled (which is default on) results in link errors similar to: cc -pthread -Wl,-E -fstack-protector-strong -L/usr/local/lib -o miniperl mpdtrace/opmini.o mpdtrace/perlmini.o mpdtrace/universalmini.o mpdtrace/gv.o mpdtrace/toke.o mpdtrace/perly.o mpdtrace/pad.o mpdtrace/regcomp.o mpdtrace/dump.o mpdtrace/util.o mpdtrace/mg.o mpdtrace/reentr.o mpdtrace/mro_core.o mpdtrace/keywords.o mpdtrace/builtin.o mpdtrace/hv.o mpdtrace/av.o mpdtrace/run.o mpdtrace/pp_hot.o mpdtrace/sv.o mpdtrace/pp.o mpdtrace/scope.o mpdtrace/pp_ctl.o mpdtrace/pp_sys.o mpdtrace/doop.o mpdtrace/doio.o mpdtrace/regexec.o mpdtrace/utf8.o mpdtrace/taint.o mpdtrace/deb.o mpdtrace/globals.o mpdtrace/perlio.o mpdtrace/numeric.o mpdtrace/mathoms.o mpdtrace/locale.o mpdtrace/pp_pack.o mpdtrace/pp_sort.o mpdtrace/caretx.o mpdtrace/dquote.o mpdtrace/time64.o mpdtrace/miniperlmain.o dtrace_mini.o -lpthread -lm -lcrypt -lutil ld: error: duplicate symbol: __dtraceenabled_perl___sub__entry >>> defined in mpdtrace/pp_hot.o >>> defined in mpdtrace/pp_sort.o ld: error: duplicate symbol: __dtraceenabled_perl___sub__entry >>> defined in mpdtrace/pp_hot.o >>> defined in mpdtrace/regexec.o ld: error: duplicate symbol: __dtraceenabled_perl___op__entry >>> defined in mpdtrace/perlmini.o >>> defined in mpdtrace/run.o ld: error: duplicate symbol: __dtraceenabled_perl___op__entry >>> defined in mpdtrace/perlmini.o >>> defined in mpdtrace/dump.o ld: error: duplicate symbol: __dtraceenabled_perl___sub__entry >>> defined in mpdtrace/pp_hot.o >>> defined in mpdtrace/pp_ctl.o cc: error: linker command failed with exit code 1 (use -v to see invocation) Work around these errors by allowing multiple definitions during linking, using the --allow-multiple-definition linker flag. (Note: this flag is also supported by GNU ld.) PR: 265516 Approved by: maintainer timeout (1 month) MFH: 2022Q3
* Remove WWW entries moved into port MakefilesStefan Eßer2022-09-071-2/+0
| | | | | | | | | | Commit b7f05445c00f has added WWW entries to port Makefiles based on WWW: lines in pkg-descr files. This commit removes the WWW: lines of moved-over URLs from these pkg-descr files. Approved by: portmgr (tcberner)
* Add WWW entries to port MakefilesStefan Eßer2022-09-071-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | It has been common practice to have one or more URLs at the end of the ports' pkg-descr files, one per line and prefixed with "WWW:". These URLs should point at a project website or other relevant resources. Access to these URLs required processing of the pkg-descr files, and they have often become stale over time. If more than one such URL was present in a pkg-descr file, only the first one was tarnsfered into the port INDEX, but for many ports only the last line did contain the port specific URL to further information. There have been several proposals to make a project URL available as a macro in the ports' Makefiles, over time. This commit implements such a proposal and moves one of the WWW: entries of each pkg-descr file into the respective port's Makefile. A heuristic attempts to identify the most relevant URL in case there is more than one WWW: entry in some pkg-descr file. URLs that are not moved into the Makefile are prefixed with "See also:" instead of "WWW:" in the pkg-descr files in order to preserve them. There are 1256 ports that had no WWW: entries in pkg-descr files. These ports will not be touched in this commit. The portlint port has been adjusted to expect a WWW entry in each port Makefile, and to flag any remaining "WWW:" lines in pkg-descr files as deprecated. Approved by: portmgr (tcberner)
* lang/perl5-devel: update to latest commitMathieu Arnold2022-06-204-8/+9
|
* lang/perl5-devel: update to v5.37.0-193-g7511199464Mathieu Arnold2022-06-143-4/+5
|
* lang/perl5-devel: update to v5.37.0-91-g975aa39f26Mathieu Arnold2022-06-017-45/+29
|
* lang/perl5-devel: add a small knit so I don't forget next yearMathieu Arnold2022-06-012-2/+2
|
* lang/perl5-devel: Update to v5.35.10-86-g66f51c878fMathieu Arnold2022-04-113-6/+4
|
* lang/perl5-devel: update to v5.35.10-49-ga3ccbff349Mathieu Arnold2022-04-042-4/+4
|
* lang/perl5-devel: update to v5.35.10-22-gf97596086dMathieu Arnold2022-03-282-4/+4
|
* lang/perl5-devel: update to v5.35.10-15-g7ddf4b5513Mathieu Arnold2022-03-245-7/+14
|
* lang/perl5-devel: update to v5.35.8-60-gafded0c3c2Mathieu Arnold2022-02-107-14/+23
|
* lang/perl5-devel: update to v5.35.4-102-ge43d289c7cMathieu Arnold2021-10-114-8/+6
|
* cleanup: drop support for EOL FreeBSD 11.XRene Ladan2021-09-301-5/+2
| | | | | | | | | | | | | | | | | Search criteria used: - 11.4 - OSREL* - OSVER* - *_FreeBSD_11 Input from: - adridg: devel/qca-legacy - jbeich: _WITH_DPRINTF, _WITH_GETLINE, GNU bfd workarounds - sunpoet: security/p5-*OpenSSL* Reviewed by: doceng, kde, multimedia, perl, python, ruby, rust Differential Revision: https://reviews.freebsd.org/D32008 Test Plan: make index
* lang/perl5-devel: update to v5.35.4-44-ge36174629bMathieu Arnold2021-09-274-5/+7
|
* lang/perl5-devel: update to latest commitMathieu Arnold2021-09-206-17/+23
|
* lang/perl5-devel: Update to v5.35.1-99-g6cc408b0b0Mathieu Arnold2021-07-073-4/+6
|
* lang/perl5-devel: Update to v5.35.1-50-gfc0b7d587aMathieu Arnold2021-06-282-4/+4
|
* lang/perl5-devel: Update to v5.35.1-20-gc5082864c7Mathieu Arnold2021-06-214-5/+7
|
* lang/perl5-devel: Update to v5.35.0-138-g9b7a2e9a50Mathieu Arnold2021-06-153-8/+8
|
* lang/perl5-devel: enable DTRACE on powerpcPiotr Kubaj2021-06-101-1/+0
|
* lang/perl5-devel: Update to v5.35.0-115-g1c1bafd87b.Mathieu Arnold2021-06-073-9/+9
|
* lang/perl5-devel: Update to v5.35.0-91-gfef07e7ee7.Mathieu Arnold2021-05-312-4/+4
|
* lang/perl5-devel: Update to v5.35.0-68-gfd007c55e2.Mathieu Arnold2021-05-255-8/+12
|
* Update to v5.34.0-RC2-3-gf212efc79f.Mathieu Arnold2021-05-172-5/+5
|
* lang/perl5-devel: Update to v5.34.0-RC1-7-g1e43c13e1f.Mathieu Arnold2021-05-104-27/+7
|
* Update to v5.33.9-19-gacd998d763.Mathieu Arnold2021-05-032-4/+4
|
* lang/perl5-devel: Update to v5.33.9-8-gcc442aa116.Mathieu Arnold2021-04-263-4/+6
|