Commit History - (may be incomplete: for full details, see links to repositories near top of page) |
Commit | Credits | Log message |
19.9.0 30 Jun 2023 03:25:28 |
Muhammad Moinur Rahman (bofh) |
www/node19: Sunset
2023-06-30 www/node19: Nodejs 19.* will reach its EoL on 2023-06-01. Use Node.js
18.* (www/node18) or 20.* (www/node20) instead
Approved by: portmgr (blanket) |
19.9.0 27 Jun 2023 19:34:34 |
Rene Ladan (rene) |
all: remove explicit versions in USES=python for "3.x+"
The logic in USES=python will automatically convert this to 3.8+ by
itself.
Adjust two ports that only had Python 3.7 mentioned but build fine
on Python 3.8 too.
finance/quickfix: mark BROKEN with PYTHON
libtool: compile: c++ -DHAVE_CONFIG_H -I. -I../.. -I -I. -I.. -I../.. -I../C++
-DLIBICONV_PLUG -DPYTHON_MAJOR_VERSION=3 -Wno-unused-variable
-Wno-maybe-uninitialized -O2 -pipe -DLIBICONV_PLUG -fstack-protector-strong
-fno-strict-aliasing -DLIBICONV_PLUG -Wall -ansi
-Wno-unused-command-line-argument -Wpointer-arith -Wwrite-strings
-Wno-overloaded-virtual -Wno-deprecated-declarations -Wno-deprecated -std=c++0x
-MT _quickfix_la-QuickfixPython.lo -MD -MP -MF
.deps/_quickfix_la-QuickfixPython.Tpo -c QuickfixPython.cpp -fPIC -DPIC -o
.libs/_quickfix_la-QuickfixPython.o
warning: unknown warning option '-Wno-maybe-uninitialized'; did you mean
'-Wno-uninitialized'? [-Wunknown-warning-option]
QuickfixPython.cpp:175:11: fatal error: 'Python.h' file not found
^~~~~~~~~~
1 warning and 1 error generated.
Reviewed by: portmgr, vishwin, yuri
Differential Revision: <https://reviews.freebsd.org/D40568> |
19.9.0 24 Apr 2023 20:34:01 |
Piotr Kubaj (pkubaj) |
www/node19: fix build on powerpc64* |
19.9.0 18 Apr 2023 21:37:52 |
Po-Chuan Hsieh (sunpoet) |
www/node19: Mark DEPRECATED and set EXPIRATION_DATE to 2023-06-30
Reference: https://github.com/nodejs/release/blob/main/README.md#release-schedule |
19.9.0 18 Apr 2023 18:00:46 |
Po-Chuan Hsieh (sunpoet) |
www/node19: Update to 19.9.0
Changes: https://github.com/nodejs/node/blob/main/doc/changelogs/CHANGELOG_V19.md |
19.8.1_1 13 Apr 2023 00:56:37 |
Jan Beich (jbeich) |
devel/icu: update to 73.1
- Temporarily switch to GitHub auto archive (release artifacts are N/A atm)
Changes: https://github.com/unicode-org/icu/releases/tag/release-73-1
Reported by: GitHub (watch releases)
PR: 270422
Exp-run by: antoine |
19.8.1 05 Apr 2023 17:29:53 |
Po-Chuan Hsieh (sunpoet) |
www/node19: Update to 19.8.1
Changes: https://github.com/nodejs/node/blob/main/doc/changelogs/CHANGELOG_V19.md |
19.6.0 21 Mar 2023 19:20:11 |
Po-Chuan Hsieh (sunpoet) |
www/node19: Update to 19.6.0
Changes: https://github.com/nodejs/node/blob/main/doc/changelogs/CHANGELOG_V19.md |
19.5.0 20 Feb 2023 22:06:37 |
Matthias Andree (mandree) |
www/node18: www/node19: honor ccache for build
This works because CCACHE_BIN is empty if not requested.
Approved by: sunpoet@ (maintainer)
PR: 269491 |
19.5.0 05 Feb 2023 15:47:46 |
Po-Chuan Hsieh (sunpoet) |
www/node19: Fix USES=python
It follows acceptable_pythons in the configure script. [1]
PR: 269279
Reported by: Jordan Ostreff <jordan@ostreff.info>
Reference: https://github.com/nodejs/node/blob/v19.6.0/configure [1] |
19.5.0 30 Jan 2023 23:51:42 |
Po-Chuan Hsieh (sunpoet) |
www/node19: Update to 19.5.0
Changes: https://github.com/nodejs/node/blob/main/doc/changelogs/CHANGELOG_V19.md |
19.2.0 30 Jan 2023 14:20:38 |
Po-Chuan Hsieh (sunpoet) |
Framework: Rewrite nodejs.mk and reorganize www/{node,npm,yarn}
The current USES=nodejs has the following issues:
- www/node is not the default version while www/node16 is.
- It also means inconsistent naming of node ports.
- www/npm duplicates with www/npm-node16.
- www/yarn duplicates with www/yarn-node16.
The notable changes are introduced to fix the above issues:
- Rewrite Mk/Uses/nodejs.mk.
- Add new LTS version of nodejs (www/noe18).
- Add new current version of nodejs (www/node19).
- Change default nodejs version from 16 to 18 (latest LTS).
- Use consistent naming for all supported node versions.
- Convert www/node, www/npm and www/yarn to meta ports.
After this commit:
- All supported node versions are named as node{14,16,18,19}
- www/node is a meta port which depends on the default version (e.g. www/node18)
- www/npm is a meta port which depends on the default version (e.g.
www/npm-node18)
- www/yarn is a meta port which depends on the default version (e.g.
www/yarn-node18)
- Bump PORTREVISION of dependent ports for dependency change (from www/node16 to
www/node18)
Discussed with: jrm, otis, pizzamig |