non port: lang/perl5.32/Makefile |
Number of commits found: 20 |
Saturday, 30 Sep 2023
|
02:22 Muhammad Moinur Rahman (bofh)
lang/perl5.32: Remove expired port
2023-09-30 lang/perl5.32: Support ends three years after .0 release. Please
upgrade to a more recent version of Perl
9664714 |
Friday, 1 Sep 2023
|
04:19 Yasuhiro Kimura (yasu)
lang/perl5.32: Mark DEPRECATED and set EXPIRATION_DATE
Perl 5.32 has already reached its EoL on June 20, 2023.
PR: 273175
Approved by: maintainer timeout
c42c692 |
Tuesday, 11 Jul 2023
|
20:10 Tijl Coosemans (tijl)
lang/perl5*: Link with -pthread instead of -lpthread
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
0b59b92 |
Wednesday, 22 Feb 2023
|
20:51 Piotr Kubaj (pkubaj)
lang/perl5.32: fix build on powerpc with llvm 15
LD_LIBRARY_PATH=/wrkdirs/usr/ports/lang/perl5.32/work/perl-5.32.1 ./miniperl
-Ilib -f write_buildcustomize.pl
Segmentation fault (core dumped)
29c28cb |
Wednesday, 21 Sep 2022
|
20:26 Dimitry Andric (dim)
lang/perl5*: alternative workaround for lld 15 and dtrace enabled
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
8c69fc2 |
Monday, 19 Sep 2022
|
18:54 Dimitry Andric (dim)
lang/perl5*: work around duplicate symbol errors with lld 15 and dtrace enabled
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
4ae8ff9 |
Wednesday, 7 Sep 2022
|
21:10 Stefan Eßer (se)
Add WWW entries to port Makefiles
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)
b7f0544 |
Thursday, 30 Sep 2021
|
21:23 Rene Ladan (rene)
cleanup: drop support for EOL FreeBSD 11.X
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
620968a |
Thursday, 10 Jun 2021
|
12:13 Piotr Kubaj (pkubaj)
lang/perl5.32: enable DTRACE on powerpc
e8ea5fd |
Thursday, 6 May 2021
|
13:21 Mathieu Arnold (mat)
lang/perl5.*: Fixup DEPRECATED/EXPIRATION_DATE
eef4c89 |
Wednesday, 7 Apr 2021
|
08:09 Mathieu Arnold (mat)
One more small cleanup, forgotten yesterday.
Reported by: lwhsu
cf118cc |
Tuesday, 6 Apr 2021
|
14:31 Mathieu Arnold (mat)
Remove # $FreeBSD$ from Makefiles.
305f148 |
Monday, 22 Mar 2021
|
15:13 mat
Fix an obscure sed message while going through check-plist.
The obscure message being:
sed: 4: /tmp/sed_plist_sub.1i0ZNBB8: RE error: trailing backslash (\)
Thanks to: kevans
 |
Saturday, 5 Dec 2020
|
22:48 pkubaj
lang/perl5*: remove powerpcspe from DTRACE exclude list
Builds fine.
Reported by: jhibbits
 |
Wednesday, 2 Dec 2020
|
23:30 pkubaj
lang/perl5.32: enable DTRACE on powerpc64
Builds fine.
 |
Tuesday, 18 Aug 2020
|
15:27 pkubaj
lang/perl5.32: revert r544611
Perl builds fine on powerpc with LLVM 11 rc1.
 |
Monday, 10 Aug 2020
|
12:17 pkubaj
lang/perl5.32: fix build on powerpc head
When building on powerpc (powerpc64 is fine) on head (which uses Clang), the
following command causes a build crash when compiled with -O2:
LD_LIBRARY_PATH=/wrkdirs/usr/ports/lang/perl5.32/work/perl-5.32.0 ./miniperl
-Ilib make_ext.pl lib/auto/DB_File/DB_File.so MAKE="/usr/bin/make"
LIBPERL_A=libperl.so.5.32.0 LINKTYPE=dynamic
Compiling with -O1 is fine. Base GCC on stable/12 is fine, so only Clang needs
this workaround.
PR: 248561
Approved by: mat (maintainer)
 |
Tuesday, 23 Jun 2020
|
10:18 mat
Update to 5.32.0.
 |
Tuesday, 9 Jun 2020
|
06:27 adamw
perl5.*: Fix a couple grammar errors
These have been bugging me for a while now.
 |
Monday, 8 Jun 2020
|
14:08 mat
Add Perl 5.32.0-RC1.
 |
Number of commits found: 20 |