freebsd-ports/lang
Pietro Cerutti fbc7d9e005 lang/seed7: update to 05_20220130
20220130:
- An arc() function (to draw an arc) with a width (thickness)
  parameter has been added to the draw.s7i library. Many thanks to
  Zachary Menzies for pointing out that it was missing.
- The new library tiff.s7i has been added. This library supports the
  TIFF image file format.
- The new library ccittfax.s7i has been added. This library supports
  CCITT fax decoding as it is used in TIFF files.
- The library zip.s7i has been improved to support reading zip64
  archives.
- A chapter about the type 'process' has been added to the manual.
  The chapter about case statements and other chapters of the manual
  have been improved as well.
- Bit streams have been introduced and the huffman decoding has been
  improved. The run-time to extract a gzipped Seed7 archive with tar7
  has been reduced to 46% (measured with gcc and valgrind). Other
  usages of the inflate algorithm (PNG, ZIP, etc.) also benefit from
  the improvements.
- The compiler has been improved to:
  - Optimize overflow checks away for shift operations.
  - Optimize index checks for string operations.
  - Write an error message if an unsupported option is used.
  - Inline the string tail function.
  - Use parentheses to reduce C compiler warnings.
  - Improve optimizations of the bytes2Int() function.
  - Improve checking of division by zero.
- The statistics of the Seed7 compiler (s7c.sd7) has been improved
  to count inlined functions, optimized index checks and optimized
  overflow checks.
- In bitdata.s7i, the types bitStream, lsbBitStream and msbBitStream
  have been introduced. These types support the functions getBit(),
  getBits(), peekBits(), skipBits() and gets().
- In bitdata.s7i, the functions openLsbBitStream() and
  openMsbBitStream() have been introduced to create lsbBitStream
  and msbBitStream values. With these functions, bit streams can be
  created with a file or a string as data source.
- In bitdata.s7i the functions getBitLsb(), getBitsLsb(),
  peekBitsLsb(), skipBitsLsb(), getBitMsb(), getBitsMsb(),
  peekBitsMsb() and skipBitsMsb() with string als parameters are
  deprecated now. The functions with the types lsbBitStream and
  msbBitStream should be used instead.
- In huffman.s7i the functions getHuffmanSymbolMsb(string, ...) and
  getHuffmanSymbolLsb(string, ...) are deprecated. The functions
  getHuffmanSymbol(msbBitStream, ...) and
  getHuffmanSymbol(lsbBitStream, ...) should be used instead.
- Tests for getBit(), getBits(), peekBits(), skipBits() and gets()
  have been added to chkbitdata.sd7. This refers to tests with
  lsbBitStream and msbBitStream.
- The program chk_all.sd7 has been adjusted to the changes in
  chkbitdata.sd7.
- The functions in inflate.s7i have been improved to use lsbBitStream
  as parameter instead of the previous combination of string, bytePos
  and bitPos.
- The library inflatefile.s7i has been removed. The functions from
  inflate.s7i can be used instead.
- The library cpio.s7i has been improved to check if a CPIO header
  is the correct size.
- The library bytedata.s7i has been improved to raise RANGE_ERROR
  if an empty byte string is converted to integer or bigInteger.
- The library gzip.s7i has been improved to use lsbBitStream and the
  new functions from inflate.s7i.
- The library imagefile.s7i has been improved to support TIFF images.
- The library jpeg.s7i has been improved to use
  getHuffmanSymbol(msbBitStream) instead of
  getHuffmanSymbolMsb(stri, bytePos, bitPos, ...).
- The library lzw.s7i has been improved to support the functions
  lzwDecompress(lsbBitStream, ...), lzwDecompress(msbBitStream, ...),
  lzwDecompressEarlyChange(msbBitStream, codeSize),
  lzwDecompressEarlyChange(msbBitStream, codeSize, requestedLength)
  and lzwDecompressMsbEarlyChange(string, codeSize, requestedLength).
- The files bitdata.s7i, gzip.s7i, inflate.s7i, jpeg.s7i, zstd.s7i
  and chkbitdata.sd7 have been refactored to avoid 'bitStream' as
  variable name. The name 'bitStream' is now used as interface type
  in bitdata.s7i.
- The Seed7 compiler has been improved in comp/arr_act.s7i,
  comp/bin_act.s7i, comp/bst_act.s7i, comp/const.s7i,
  comp/flt_act.s7i, comp/int_act.s7i, comp/intrange.s7i,
  comp/literal.s7i, comp/prc_act.s7i, comp/rfl_act.s7i,
  comp/set_act.s7i, comp/stat.s7i, comp/str_act.s7i and s7c.sd7.
- Checks for bytes(), bytes2Int(), the right shift operator and
  division by zero have been added to chkint.sd7.
- Checks for bin64 shift operations have been added to chkbin.sd7.
- Checks for index access to an empty array have been added to
  chkarr.sd7.
- Checks for bytes2BigInt() have been added to chkbig.sd7.
- In array.s7i the declaration of the times operator has been
  simplified.
- The program pv7.sd7 has been improved to support TIFF files.
- Casts have been added to dll_win.c and libpath.c to reduce C
  compiler warnings.
- In error.c the error message for a failed declaration has been
  improved.
- In str_rtl.c the performance of strHeadSlice() has been improved.
- Unused variables have been removed in several files of the
  compiler.
- In int_rtl.c the functions intBytesBe2Int(), intBytesBe2UInt(),
  intBytesLe2Int() and intBytesLe2UInt() have been changed to raise
  RANGE_ERROR if the string is empty.
- In big_rtl.c and big_gmp.c the functions bigFromByteBufferBe()
  and bigFromByteBufferLe() have been changed to raise RANGE_ERROR
  if the size is zero (the buffer is empty).
- The files drw_win.c, drw_x11.c, drw_drv.h, drwlib.c, drwlib.h and
  primitiv.c have been changed to support the action DRW_PFARC.
- Definitions for the function XSetLineAttributes() have been added
  to fwd_x11.c and x11_x.h.
- In the program chkccomp.c the detection of the division by zero
  behavior and the remainder by zero behavior has been improved.
- Documentation comments have been improved in bstring.s7i,
  bytedata.s7i, bitdata.s7i, null_file.s7i, process.s7i, strifile.s7i
  and biglib.c.
2022-03-01 15:10:59 +00:00
..
abcl lang/abcl: Update to version 1.8.0. 2021-09-11 11:32:55 +02:00
alchemist.el USES=emacs: Chase package name changes 2021-11-15 11:19:58 -04:00
algol68g math/gsl: bump portrevision of consumers after update to 2.7.1 2022-01-12 20:41:22 +01:00
angelscript lang/angelscript: enable on riscv64 2021-12-17 14:36:21 +01:00
apache-commons-jelly all: Remove all other $FreeBSD keywords. 2021-04-06 16:31:13 +02:00
asn1c lang/asn1c: Add CPE information 2021-10-20 18:13:16 +02:00
atlast Remove # $FreeBSD$ from Makefiles. 2021-04-06 16:31:07 +02:00
awka Remove # $FreeBSD$ from Makefiles. 2021-04-06 16:31:07 +02:00
bas2tap Remove # $FreeBSD$ from Makefiles. 2021-04-06 16:31:07 +02:00
basic256 graphics/mesa-libs: Bump reverse deps for libglvnd 2021-06-22 11:53:08 -07:00
bsh *: Sweep up new CONFLICTS_INSTALL mess 2022-01-17 14:20:24 +01:00
bwbasic Remove # $FreeBSD$ from Makefiles. 2021-04-06 16:31:07 +02:00
c lang/c: fix typos in pkg-descr. 2021-10-16 09:09:12 +02:00
cbmbasic Deorbit RESTRICTED && NO_CDROM, part one. 2021-05-06 13:47:41 +02:00
ccl Fix CONFLICTS entries of multiple ports 2022-01-10 16:15:39 +01:00
ceylon Remove # $FreeBSD$ from Makefiles. 2021-04-06 16:31:07 +02:00
cfortran Remove # $FreeBSD$ from Makefiles. 2021-04-06 16:31:07 +02:00
chaiscript One more small cleanup, forgotten yesterday. 2021-04-07 10:09:01 +02:00
chez-scheme lang/chez-scheme: Update to 9.5.6 2022-02-06 18:01:30 +00:00
chibi-scheme lang/chibi-scheme: update to 0.10.0 2021-05-25 12:08:18 +00:00
chicken5 lang/chicken5: update to 5.3.0 2021-11-25 14:34:14 +00:00
cim One more small cleanup, forgotten yesterday. 2021-04-07 10:09:01 +02:00
cjs devel/meson: update to 0.61.1 2022-01-26 19:58:13 +00:00
cling Fix CONFLICTS entries of multiple ports 2022-01-10 16:15:39 +01:00
clips lang/clips: Update WWW 2021-11-16 11:28:06 +08:00
clisp */*: Replace USE_GCC=any with USE_GCC=yes 2021-06-04 05:53:21 +00:00
clojure lang/clojure: update to 1.10.3.1058 and fix missing exec.jar 2022-01-17 16:53:36 +09:00
clojure-mode.el USES=emacs: Chase package name changes 2021-11-15 11:19:58 -04:00
clover Style: improve ONLY_FOR_ARCHS_REASON (grammar, markup, etc.) 2021-10-25 12:58:29 +00:00
cmucl Remove # $FreeBSD$ from Makefiles. 2021-04-06 16:31:07 +02:00
cmucl-extra Remove # $FreeBSD$ from Makefiles. 2021-04-06 16:31:07 +02:00
cocor Remove # $FreeBSD$ from Makefiles. 2021-04-06 16:31:07 +02:00
coffeescript */*: use new nodejs USES flag 2021-11-12 06:54:51 +01:00
cparser Remove # $FreeBSD$ from Makefiles. 2021-04-06 16:31:07 +02:00
crystal lang/crystal: update to 1.2.2 2021-12-28 18:43:02 +01:00
csharp-mode.el USES=emacs: Chase package name changes 2021-11-15 11:19:58 -04:00
cython lang/cython: Update to 0.29.27 2022-02-28 20:46:02 +08:00
cython-devel lang/cython-devel: update 3.0.0a9 → 3.0.0a10 2022-01-21 16:46:33 +03:00
dlang-tools Remove # $FreeBSD$ from Makefiles. 2021-04-06 16:31:07 +02:00
dlv Deorbit RESTRICTED && NO_CDROM, part two. 2021-05-06 13:47:48 +02:00
duktape lang/duktape*: Update to 2.7.0 2022-02-21 08:13:52 +01:00
duktape-lib lang/duktape*: Update to 2.7.0 2022-02-21 08:13:52 +01:00
ecl lang/ecl: upgrade to 21.2.1 2021-07-30 12:53:45 +02:00
eisl lang/eisl: Update 2.37 -> 2.38 2022-01-24 13:27:59 -08:00
elixir lang/elixir: add back SRC to OPTIONS_DEFAULT. 2022-02-10 15:23:26 +01:00
elixir-devel lang/elixir-devel: update to 1.13.3 2022-02-09 16:50:13 +00:00
elixir-mode.el USES=emacs: Chase package name changes 2021-11-15 11:19:58 -04:00
elk Remove # $FreeBSD$ from Makefiles. 2021-04-06 16:31:07 +02:00
elm Fix CONFLICTS entries of multiple ports 2022-01-10 16:15:39 +01:00
emacs-lisp-intro Remove # $FreeBSD$ from Makefiles. 2021-04-06 16:31:07 +02:00
erlang lang/erlang: update to version 24.2.2 2022-02-25 18:15:43 +01:00
erlang-doc lang/erlang-doc: Update to version 24.2 2022-01-26 11:54:22 +01:00
erlang-java lang/erlang-java: update to version 24.2.2 2022-02-25 18:15:43 +01:00
erlang-man lang/erlang-man: Update to version 24.2 2022-01-26 11:54:22 +01:00
erlang-runtime21 lang/(erlang(-runtime2[13])?): work around dtrace failures with clang 13 2021-10-03 12:13:35 +02:00
erlang-runtime22 lang/erlang-runtime22: Update to version 22.3.4.24 2021-12-21 21:26:10 +01:00
erlang-runtime23 lang/erlang-runtime23: Update to version 23.3.4.11 2022-01-26 11:54:23 +01:00
erlang-runtime24 lang/erlang-runtime24: update to version 24.2.2 2022-02-25 18:15:43 +01:00
erlang-wx lang/erlang-wx: update to version 24.2.2 2022-02-25 18:15:43 +01:00
execline - Update Skarnet.org software stack ports to their latest versions 2021-05-09 08:58:59 +00:00
expect lang/expect: apply patches from upstream 2022-02-09 17:31:55 +00:00
f2c Remove # $FreeBSD$ from Makefiles. 2021-04-06 16:31:07 +02:00
fasm lang/fasm: Update to 1.73.29 2022-01-12 02:44:02 +08:00
fennel lang/fennel: Update to 1.0.0 2021-12-21 11:36:02 -04:00
ferite Remove # $FreeBSD$ from Makefiles. 2021-04-06 16:31:07 +02:00
ficl Remove # $FreeBSD$ from Makefiles. 2021-04-06 16:31:07 +02:00
fpc lang/fpc: Fix build issue on lazarus i386 and amd64 2022-02-03 00:07:13 -05:00
fpc-base lang/fpc: update to 3.2.2 2021-07-31 20:56:08 -05:00
fpc-docs lang/fpc: update to 3.2.2 2021-07-31 20:56:08 -05:00
fpc-lua Remove # $FreeBSD$ from Makefiles. 2021-04-06 16:31:07 +02:00
fpc-pastojs lang/fpc: update to 3.2.2 2021-07-31 20:56:08 -05:00
fpc-rexx Remove # $FreeBSD$ from Makefiles. 2021-04-06 16:31:07 +02:00
fpc-rtl-console One more small cleanup, forgotten yesterday. 2021-04-07 10:09:01 +02:00
fpc-rtl-extra lang/fpc: update to 3.2.2 2021-07-31 20:56:08 -05:00
fpc-rtl-generics One more small cleanup, forgotten yesterday. 2021-04-07 10:09:01 +02:00
fpc-rtl-objpas lang/fpc: update to 3.2.2 2021-07-31 20:56:08 -05:00
fpc-rtl-unicode One more small cleanup, forgotten yesterday. 2021-04-07 10:09:01 +02:00
fpc-source *: fix tab vs. space issues, and comments according to the guide. 2021-10-16 11:51:39 +02:00
fpc-units lang/fpc: update to 3.2.2 2021-07-31 20:56:08 -05:00
fpc-utils lang/fpc-utils: unbreak after e40d870fc3 2021-08-01 03:07:24 +00:00
fsharp Remove # $FreeBSD$ from Makefiles. 2021-04-06 16:31:07 +02:00
fth One more small cleanup, forgotten yesterday. 2021-04-07 10:09:01 +02:00
gambit-c lang/gambit-c: Update to version 4.9.4 2022-01-08 14:59:42 +01:00
gauche security/mbedtls: Update to 2.28.0 and fix make test 2022-01-28 13:14:09 +01:00
gawk Fix CONFLICTS entries of multiple ports 2022-01-10 16:15:39 +01:00
gcc lang/gcc: Add CPE information 2021-10-14 23:30:52 +02:00
gcc-ecj45 Remove # $FreeBSD$ from Makefiles. 2021-04-06 16:31:07 +02:00
gcc6-aux lang/gcc6-aux: Mark for deprecation 2022-01-26 20:11:01 +00:00
gcc8 lang/gcc8: Relinquish maintainership 2021-10-23 15:38:57 +00:00
gcc9 lang/gcc9: Relinquish maintainership 2022-01-21 23:30:25 +00:00
gcc9-devel Fix CONFLICTS entries of multiple ports 2022-01-10 16:15:39 +01:00
gcc10 Fix CONFLICTS entries of multiple ports 2022-01-10 16:15:39 +01:00
gcc10-devel Fix CONFLICTS entries of multiple ports 2022-01-10 16:15:39 +01:00
gcc11 Fix CONFLICTS entries of multiple ports 2022-01-10 16:15:39 +01:00
gcc11-devel Fix CONFLICTS entries of multiple ports 2022-01-10 16:15:39 +01:00
gcc12-devel lang/gcc12-devel: Update to the 20220220 snapshot of GCC 12.1.0 2022-02-25 21:59:32 +00:00
gcc48 Remove # $FreeBSD$ from Makefiles. 2021-04-06 16:31:07 +02:00
gforth lang/gforth: fix build on powerpc64 2022-02-11 22:25:49 +00:00
ghc lang/ghc: Add a patch for correctly selecting a LLVM backend. 2022-02-13 21:23:45 +03:00
gjs devel/meson: update to 0.61.1 2022-01-26 19:58:13 +00:00
gleam lang/rust: Relink consumers 2022-02-03 15:02:32 +01:00
gnatcross-binutils-aarch64 Remove # $FreeBSD$ from Makefiles. 2021-04-06 16:31:07 +02:00
gnatcross-sysroot-aarch64 Remove # $FreeBSD$ from Makefiles. 2021-04-06 16:31:07 +02:00
gnatdroid-binutils lang/gnatdroid-binutils: Add CPE information 2021-10-23 23:38:18 +02:00
gnatdroid-binutils-x86 Remove # $FreeBSD$ from Makefiles. 2021-04-06 16:31:07 +02:00
gnatdroid-sysroot Remove # $FreeBSD$ from Makefiles. 2021-04-06 16:31:07 +02:00
gnatdroid-sysroot-x86 Remove # $FreeBSD$ from Makefiles. 2021-04-06 16:31:07 +02:00
gnu-apl lang/gnu-apl: unbreak the build on recent -CURRENT (clang 13.0.0) 2021-11-26 18:47:16 +00:00
gnu-cobol lang/gnu-cobol: hook the test suite to our framework. 2021-09-15 03:48:35 +00:00
gnustep-base devel/icu: update to 70.1 2021-10-28 16:37:30 +00:00
go lang/go: Update to 1.17.7 2022-02-18 01:57:30 -05:00
go-devel lang/go-devel: Update to 1.18rc1 2022-02-18 00:12:22 -05:00
gomacro One more small cleanup, forgotten yesterday. 2021-04-07 10:09:01 +02:00
gprolog lang/gprolog: update to 1.5.0 2021-07-11 05:17:51 +07:00
gravity lang/gravity: Add CPE information 2021-10-20 18:13:17 +02:00
groovy lang/groovy: Add CPE information 2021-10-20 18:13:17 +02:00
gscheme One more small cleanup, forgotten yesterday. 2021-04-07 10:09:01 +02:00
guile lang/guile: fix build on powerpc 2022-02-03 13:39:44 +00:00
guile1 */*: Remove redundant '-[0-9]*' from CONFLICTS_INSTALL 2021-11-23 23:11:40 +01:00
guile2 Fix CONFLICTS entries of multiple ports 2022-01-10 16:15:39 +01:00
halide One more small cleanup, forgotten yesterday. 2021-04-07 10:09:01 +02:00
haskell-mode.el USES=emacs: Chase package name changes 2021-11-15 11:19:58 -04:00
hermes lang/hermes: Update 0.10.0 -> 0.11.0 2022-02-03 09:16:22 -08:00
hla Remove # $FreeBSD$ from Makefiles. 2021-04-06 16:31:07 +02:00
hs-brainfuck Bump USES=cabal ports after 12837690ed 2021-04-21 06:48:23 +02:00
hs-unlambda Bump USES=cabal ports after 12837690ed 2021-04-21 06:48:23 +02:00
huc Remove # $FreeBSD$ from Makefiles. 2021-04-06 16:31:07 +02:00
icc Deorbit RESTRICTED && NO_CDROM, part one. 2021-05-06 13:47:41 +02:00
intel-compute-runtime lang/intel-compute-runtime: update to 22.08.22549 2022-02-28 15:56:00 +00:00
intercal Remove # $FreeBSD$ from Makefiles. 2021-04-06 16:31:07 +02:00
io lang/io: Update WWW 2021-11-17 11:18:31 +08:00
io-devel */*: Remove redundant '-[0-9]*' from CONFLICTS 2021-10-29 11:50:18 +02:00
itcl Remove # $FreeBSD$ from Makefiles. 2021-04-06 16:31:07 +02:00
itcl4 lang/itcl4: update to 4.2.2 2021-11-08 08:11:20 +00:00
J Style: improve ONLY_FOR_ARCHS_REASON (grammar, markup, etc.) 2021-10-25 12:58:29 +00:00
janet lang/janet: Update to v1.20.0 2022-01-29 11:44:19 +01:00
jimtcl lang/jimtcl: update to 0.81 2021-12-01 08:50:47 +00:00
jpm lang/jpm: Update to 0.0.2 2022-01-29 11:44:19 +01:00
jruby lang/jruby: Update to 9.2.17.0 2021-04-07 19:42:46 +09:00
julia lang/julia: Update to 1.7.2 2022-02-09 23:25:26 -05:00
jython lang/jython: Add CPE information 2021-10-19 12:43:33 +02:00
kawa Remove # $FreeBSD$ from Makefiles. 2021-04-06 16:31:07 +02:00
kf5-kross KDE: Update KDE Frameworks to 5.91 2022-02-27 19:39:06 +01:00
kotlin lang/kotlin: update to 1.6.10 2021-12-16 11:05:10 +03:00
kross-interpreters KDE: Update KDE Gear to 21.12.2 (bug fix release) 2022-02-07 17:33:10 +01:00
kturtle KDE: Update KDE Gear to 21.12.2 (bug fix release) 2022-02-07 17:33:10 +01:00
lafontaine Remove # $FreeBSD$ from Makefiles. 2021-04-06 16:31:07 +02:00
lci One more small cleanup, forgotten yesterday. 2021-04-07 10:09:01 +02:00
ldc devel/libconfig: update to 1.7.3 2022-01-26 08:46:25 +01:00
lfe One more small cleanup, forgotten yesterday. 2021-04-07 10:09:01 +02:00
libhx lang/libhx: the port had been updated (+) 2021-10-20 02:47:19 +00:00
libobjc2 lang/libobjc2: fix build on powerpc* and riscv64* 2022-02-26 11:35:56 +00:00
librep Remove # $FreeBSD$ from Makefiles. 2021-04-06 16:31:07 +02:00
libstdc++_stldoc_4.2.2 Remove # $FreeBSD$ from Makefiles. 2021-04-06 16:31:07 +02:00
linux-c7-tcl85 *: Linux emulation: add support for aarch64 2022-01-17 15:47:28 +01:00
linux-dotnet-cli lang/linux-dotnet-cli: Fix typos that prevent copy/paste success 2022-01-25 11:56:06 -05:00
linux-dotnet-runtime Remove # $FreeBSD$ from Makefiles. 2021-04-06 16:31:07 +02:00
linux-dotnet-sdk *: fix tab vs. space issues, and comments according to the guide. 2021-10-16 11:51:39 +02:00
linux-dotnet10-runtime Remove # $FreeBSD$ from Makefiles. 2021-04-06 16:31:07 +02:00
linux-dotnet11-runtime Remove # $FreeBSD$ from Makefiles. 2021-04-06 16:31:07 +02:00
linux-dotnet11-sdk Remove # $FreeBSD$ from Makefiles. 2021-04-06 16:31:07 +02:00
linux-j Fix CONFLICTS entries of multiple ports 2022-01-10 16:15:39 +01:00
lua51 lang/lua51: Add CPE information 2021-08-31 09:23:09 +00:00
lua52 lang/lua52: Add CPE information 2021-08-31 09:23:09 +00:00
lua53 lang/lua53: Add CPE information 2021-08-31 09:23:10 +00:00
lua54 lang/lua54: Add CPE information 2021-08-31 09:23:10 +00:00
luajit lang/luajit: Fix option description 2022-01-12 17:03:21 -07:00
luajit-devel lang/luajit-devel: update to the recent commit 2022-01-27 21:51:22 -05:00
luajit-openresty lang/luajit-openresty: 2.1-20210510 -> 2.1-20211210 2021-12-23 00:00:26 +01:00
malbolge Remove # $FreeBSD$ from Makefiles. 2021-04-06 16:31:07 +02:00
maude Remove # $FreeBSD$ from Makefiles. 2021-04-06 16:31:07 +02:00
mawk Remove # $FreeBSD$ from Makefiles. 2021-04-06 16:31:07 +02:00
mdk *: Remove unnecessary 'port' argument from USES=readline 2021-05-15 09:14:04 +02:00
mecrisp-stellaris lang/mecrisp-stellaris: update distinfo 2022-01-07 14:26:50 +01:00
micropython lang/micropython: Update to 1.17 2021-09-09 11:10:17 +02:00
mit-scheme Remove # $FreeBSD$ from Makefiles. 2021-04-06 16:31:07 +02:00
mixal Remove # $FreeBSD$ from Makefiles. 2021-04-06 16:31:07 +02:00
mlton lang/mlton: Update to 20210816 2021-10-20 16:42:18 +09:00
mmix Remove # $FreeBSD$ from Makefiles. 2021-04-06 16:31:07 +02:00
mono Fix CONFLICTS entries of multiple ports 2022-01-10 16:15:39 +01:00
mono-basic Remove # $FreeBSD$ from Makefiles. 2021-04-06 16:31:07 +02:00
mono5.10 Fix CONFLICTS entries of multiple ports 2022-01-10 16:15:39 +01:00
mono5.20 Fix CONFLICTS entries of multiple ports 2022-01-10 16:15:39 +01:00
mono6.8 Fix CONFLICTS entries of multiple ports 2022-01-10 16:15:39 +01:00
mosh Remove # $FreeBSD$ from Makefiles. 2021-04-06 16:31:07 +02:00
mosml Deorbit RESTRICTED && NO_CDROM, part two. 2021-05-06 13:47:48 +02:00
mtasc lang/mtasc: the port had been improved (+) 2021-09-11 11:02:40 +00:00
mujs lang/mujs: Update 1.1.3 -> 1.2.0 2021-12-23 13:17:35 -08:00
munger Remove # $FreeBSD$ from Makefiles. 2021-04-06 16:31:07 +02:00
myrddin One more small cleanup, forgotten yesterday. 2021-04-07 10:09:01 +02:00
nawk Remove # $FreeBSD$ from Makefiles. 2021-04-06 16:31:07 +02:00
nbfc Remove # $FreeBSD$ from Makefiles. 2021-04-06 16:31:07 +02:00
neko security/mbedtls: Update to 2.28.0 and fix make test 2022-01-28 13:14:09 +01:00
nesasm Remove # $FreeBSD$ from Makefiles. 2021-04-06 16:31:07 +02:00
newlisp */*: Remove redundant '-[0-9]*' from CONFLICTS 2021-10-29 11:50:18 +02:00
nhc98 */*: Remove redundant '-[0-9]*' from CONFLICTS 2021-10-29 11:50:18 +02:00
nickle Remove # $FreeBSD$ from Makefiles. 2021-04-06 16:31:07 +02:00
nim lang/nim: Update to 1.6.4 2022-02-10 17:22:38 -05:00
nqc Remove # $FreeBSD$ from Makefiles. 2021-04-06 16:31:07 +02:00
nwcc lang/nwcc: Drop maintainership 2021-05-19 20:56:14 +01:00
nx Remove # $FreeBSD$ from Makefiles. 2021-04-06 16:31:07 +02:00
nyan One more small cleanup, forgotten yesterday. 2021-04-07 10:09:01 +02:00
ocaml lang/ocaml: Remove redundant '-[0-9]*' from CONFLICTS 2021-10-29 12:05:35 +02:00
ocaml-autoconf Remove # $FreeBSD$ from Makefiles. 2021-04-06 16:31:07 +02:00
ocaml-camlidl Remove # $FreeBSD$ from Makefiles. 2021-04-06 16:31:07 +02:00
ocaml-nox11 */*: Remove redundant '-[0-9]*' from CONFLICTS 2021-10-29 11:50:18 +02:00
onyx Remove # $FreeBSD$ from Makefiles. 2021-04-06 16:31:07 +02:00
oo2c */*: Replace USE_GCC=any with USE_GCC=yes 2021-06-04 05:53:21 +00:00
opencoarrays lang/opencoarrays: Simplify handling of GCC versions 2021-06-15 06:46:31 +00:00
ott One more small cleanup, forgotten yesterday. 2021-04-07 10:09:01 +02:00
owl-lisp Regenerate all distfiles using gitlab as source. 2021-04-09 20:44:23 +02:00
p5-Data-JavaScript Remove # $FreeBSD$ from Makefiles. 2021-04-06 16:31:07 +02:00
p5-ePerl Remove # $FreeBSD$ from Makefiles. 2021-04-06 16:31:07 +02:00
p5-Error Remove # $FreeBSD$ from Makefiles. 2021-04-06 16:31:07 +02:00
p5-Expect One more small cleanup, forgotten yesterday. 2021-04-07 10:09:01 +02:00
p5-ExtUtils-F77 lang/p5-ExtUtils-F77: Update to 1.26 2021-05-31 03:53:23 +08:00
p5-Interpolation Remove # $FreeBSD$ from Makefiles. 2021-04-06 16:31:07 +02:00
p5-JavaScript-SpiderMonkey Remove # $FreeBSD$ from Makefiles. 2021-04-06 16:31:07 +02:00
p5-JavaScript-Squish Remove # $FreeBSD$ from Makefiles. 2021-04-06 16:31:07 +02:00
p5-JavaScript-Value-Escape *: re-assign kuriyama@s ports to the pool, commit bit safekept 2021-10-04 21:58:01 +02:00
p5-JSAN Remove # $FreeBSD$ from Makefiles. 2021-04-06 16:31:07 +02:00
p5-List-MoreUtils Remove # $FreeBSD$ from Makefiles. 2021-04-06 16:31:07 +02:00
p5-List-MoreUtils-XS Remove # $FreeBSD$ from Makefiles. 2021-04-06 16:31:07 +02:00
p5-Marpa Remove # $FreeBSD$ from Makefiles. 2021-04-06 16:31:07 +02:00
p5-Marpa-PP Remove # $FreeBSD$ from Makefiles. 2021-04-06 16:31:07 +02:00
p5-Marpa-XS Remove # $FreeBSD$ from Makefiles. 2021-04-06 16:31:07 +02:00
p5-Modern-Perl Remove # $FreeBSD$ from Makefiles. 2021-04-06 16:31:07 +02:00
p5-Perl6-Subs Remove # $FreeBSD$ from Makefiles. 2021-04-06 16:31:07 +02:00
p5-Promises Remove # $FreeBSD$ from Makefiles. 2021-04-06 16:31:07 +02:00
p5-Pugs-Compiler-Rule Remove # $FreeBSD$ from Makefiles. 2021-04-06 16:31:07 +02:00
p5-Quantum-Superpositions Remove # $FreeBSD$ from Makefiles. 2021-04-06 16:31:07 +02:00
p5-Scalar-List-Utils lang/p5-Scalar-List-Utils: Update to 1.61 2022-03-01 07:47:11 +08:00
p5-signatures One more small cleanup, forgotten yesterday. 2021-04-07 10:09:01 +02:00
p5-Switch Remove # $FreeBSD$ from Makefiles. 2021-04-06 16:31:07 +02:00
p5-Tcl Remove # $FreeBSD$ from Makefiles. 2021-04-06 16:31:07 +02:00
p5-Test-XPath One more small cleanup, forgotten yesterday. 2021-04-07 10:09:01 +02:00
p5-Try-Catch Remove # $FreeBSD$ from Makefiles. 2021-04-06 16:31:07 +02:00
p5-Try-Tiny lang/p5-Try-Tiny: Update to 0.31 2021-12-22 02:47:37 +08:00
p5-Try-Tiny-Retry Remove # $FreeBSD$ from Makefiles. 2021-04-06 16:31:07 +02:00
p5-TryCatch One more small cleanup, forgotten yesterday. 2021-04-07 10:09:01 +02:00
p5-v6 Remove # $FreeBSD$ from Makefiles. 2021-04-06 16:31:07 +02:00
parrot devel/icu: update to 70.1 2021-10-28 16:37:30 +00:00
pbasic Remove # $FreeBSD$ from Makefiles. 2021-04-06 16:31:07 +02:00
pcc Remove # $FreeBSD$ from Makefiles. 2021-04-06 16:31:07 +02:00
perl5-devel lang/perl5-devel: update to v5.35.8-60-gafded0c3c2 2022-02-10 16:35:37 +01:00
perl5.30 cleanup: drop support for EOL FreeBSD 11.X 2021-09-30 23:23:30 +02:00
perl5.32 cleanup: drop support for EOL FreeBSD 11.X 2021-09-30 23:23:30 +02:00
perl5.34 cleanup: drop support for EOL FreeBSD 11.X 2021-09-30 23:23:30 +02:00
petite-chez */*: Remove redundant '-*' from CONFLICTS definitions 2021-11-25 22:40:11 +01:00
pfe Remove # $FreeBSD$ from Makefiles. 2021-04-06 16:31:07 +02:00
pharo Remove # $FreeBSD$ from Makefiles. 2021-04-06 16:31:07 +02:00
php-mode.el lang/php-mode.el: Return to pool 2021-11-29 08:42:26 +09:00
php74 lang/php74: Update version 7.4.27=>7.4.28 2022-02-18 22:44:58 -06:00
php74-extensions lang/php74{-extensions}: Mark DEPRECATED 2022-02-01 02:08:43 -06:00
php80 lang/php80: Update version 8.0.15=>8.0.16 2022-02-18 22:42:29 -06:00
php80-extensions lang/php8[01]: Make openssl as DEFAULT 2022-02-12 09:41:51 -06:00
php81 lang/php*: remove support for 11 on powerpc64 2022-02-18 19:10:17 +00:00
php81-extensions lang/php8[01]: Make openssl as DEFAULT 2022-02-12 09:41:51 -06:00
picoc lang/picoc: Add CPE information 2021-10-20 18:13:18 +02:00
plexil One more small cleanup, forgotten yesterday. 2021-04-07 10:09:01 +02:00
pocl lang/pocl: drop pkg-message + minor style and whitespace fixes 2021-11-17 02:21:11 +00:00
polyml lang/polyml: Update to 5.9 2022-01-10 08:15:31 +08:00
ponyc lang/ponyc: unbreak clang 13 build, release maintainership 2021-11-23 10:14:45 -08:00
ptoc Remove # $FreeBSD$ from Makefiles. 2021-04-06 16:31:07 +02:00
purescript lang/purescript: Update to 0.14.5 2021-10-29 18:45:09 +03:00
py-hy Remove # $FreeBSD$ from Makefiles. 2021-04-06 16:31:07 +02:00
py-lupa lang/py-lupa: Remove -f because RM has it already 2021-11-06 07:54:08 +08:00
py-textX One more small cleanup, forgotten yesterday. 2021-04-07 10:09:01 +02:00
python Remove # $FreeBSD$ from Makefiles. 2021-04-06 16:31:07 +02:00
python-doc-html lang/python-doc-html: Update python-doc for 3.10.2 2022-01-18 08:19:56 +08:00
python-doc-pdf-a4 Remove # $FreeBSD$ from Makefiles. 2021-04-06 16:31:07 +02:00
python-doc-pdf-letter Remove # $FreeBSD$ from Makefiles. 2021-04-06 16:31:07 +02:00
python-doc-text Remove # $FreeBSD$ from Makefiles. 2021-04-06 16:31:07 +02:00
python-mode.el Remove # $FreeBSD$ from Makefiles. 2021-04-06 16:31:07 +02:00
python-tools lang/python-tools: fix for python 3.9 and later 2021-05-25 19:56:04 +03:00
python2 lang/python2: Clean up 2021-07-25 04:23:05 +08:00
python3 lang/python3: Clean up 2021-07-25 04:23:06 +08:00
python27 lang/python*: sort pkg-plists 2021-07-14 21:56:31 +03:00
python37 lang/python3(6|7|8|9|10|11): work around unwanted multiarch detection again 2021-11-26 19:48:57 +01:00
python38 lang/python3(6|7|8|9|10|11): work around unwanted multiarch detection again 2021-11-26 19:48:57 +01:00
python39 lang/python39: Update to 3.9.9 2021-12-06 09:05:24 +08:00
python310 lang/python310: Update to 3.10.2 2022-01-18 08:16:40 +08:00
python311 lang/python311: Update to 3.11.0a5 2022-02-14 09:25:09 +08:00
qmasm One more small cleanup, forgotten yesterday. 2021-04-07 10:09:01 +02:00
qscheme Remove # $FreeBSD$ from Makefiles. 2021-04-06 16:31:07 +02:00
quickjs lang/quickjs: Add CPE information 2021-10-19 13:14:31 +02:00
racket lang/racket: update to version 8.4 2022-02-10 00:15:39 +01:00
racket-minimal lang/racket-minimal: update to version 8.4 2022-02-10 00:15:39 +01:00
ratfor lang/ratfor: Mark as broken on arm. 2021-09-24 16:13:04 +02:00
referenceassemblies-pcl Remove # $FreeBSD$ from Makefiles. 2021-04-06 16:31:07 +02:00
retro12 lang/retro12: Update to 2021.4 and adopt port 2021-05-06 11:45:38 -07:00
rexx-imc */*: Remove redundant '-[0-9]*' from CONFLICTS 2021-10-29 11:50:18 +02:00
rexx-regina */*: Remove redundant '-[0-9]*' from CONFLICTS 2021-10-29 11:50:18 +02:00
rexx-regutil Remove # $FreeBSD$ from Makefiles. 2021-04-06 16:31:07 +02:00
rexx-wrapper Remove # $FreeBSD$ from Makefiles. 2021-04-06 16:31:07 +02:00
rhino all: Remove all other $FreeBSD keywords. 2021-04-06 16:31:13 +02:00
ruby26 lang/ruby{2,3}*: enable dtrace on powerpc64le and bump PORTREVISION 2022-01-23 01:25:12 +00:00
ruby27 lang/ruby{2,3}*: enable dtrace on powerpc64le and bump PORTREVISION 2022-01-23 01:25:12 +00:00
ruby30 lang/ruby{2,3}*: enable dtrace on powerpc64le and bump PORTREVISION 2022-01-23 01:25:12 +00:00
ruby31 lang/ruby{2,3}*: enable dtrace on powerpc64le and bump PORTREVISION 2022-01-23 01:25:12 +00:00
rubygem-ruby_language_server lang/rubygem-ruby_language_server: Add rubygem-ruby_language_server 0.3.16 2021-06-15 01:32:51 +08:00
runawk Remove # $FreeBSD$ from Makefiles. 2021-04-06 16:31:07 +02:00
rust lang/rust*: Remove superfluous 'Changes' from commit log template 2022-02-03 15:02:32 +01:00
rust-bootstrap lang/rust: Update to 1.58.1 2022-02-03 15:02:31 +01:00
rust-nightly lang/rust-nightly: Update to 1.60.0.20220204 2022-02-05 09:28:11 +01:00
sagittarius-scheme lang/sagittarius-scheme: Update to 0.9.8 2021-10-30 10:13:17 +00:00
sather-specification Remove # $FreeBSD$ from Makefiles. 2021-04-06 16:31:07 +02:00
sather-tutorial Remove # $FreeBSD$ from Makefiles. 2021-04-06 16:31:07 +02:00
sbcl lang/sbcl: Update to 2.2.1 2022-01-31 09:06:19 +01:00
scala lang/scala: Update to 3.1.0 2021-11-22 06:10:28 -04:00
scheme48 */*: Remove redundant '-[0-9]*' from CONFLICTS 2021-10-29 11:50:18 +02:00
scm lang/scm: fix build on powerpc64* 2021-10-17 11:54:34 +00:00
sdcc */*: Remove redundant '-[0-9]*' from CONFLICTS_INSTALL 2021-11-23 23:11:40 +01:00
see */*: Remove redundant '-[0-9]*' from CONFLICTS 2021-10-29 11:50:18 +02:00
seed7 lang/seed7: update to 05_20220130 2022-03-01 15:10:59 +00:00
silq lang/silq: Fix build failures due to llvm13 changes 2021-11-20 20:39:02 +01:00
siod Remove # $FreeBSD$ from Makefiles. 2021-04-06 16:31:07 +02:00
sisc Remove # $FreeBSD$ from Makefiles. 2021-04-06 16:31:07 +02:00
sketchy Remove # $FreeBSD$ from Makefiles. 2021-04-06 16:31:07 +02:00
slib Remove # $FreeBSD$ from Makefiles. 2021-04-06 16:31:07 +02:00
slib-guile lang/slib-guile: Fix leftovers 2021-06-06 11:33:58 -05:00
slib-guile1 Remove # $FreeBSD$ from Makefiles. 2021-04-06 16:31:07 +02:00
slib-guile2 Remove # $FreeBSD$ from Makefiles. 2021-04-06 16:31:07 +02:00
slisp Remove # $FreeBSD$ from Makefiles. 2021-04-06 16:31:07 +02:00
smalltalk graphics/mesa-libs: Bump reverse deps for libglvnd 2021-06-22 11:53:08 -07:00
smlnj One more small cleanup, forgotten yesterday. 2021-04-07 10:09:01 +02:00
snobol4 lang/snobol4: Update to 2.2.2 2021-12-21 18:17:17 +01:00
solidity lang/solidity: update to 0.8.12 release. 2022-02-17 11:16:54 +01:00
spidermonkey17 lang/spidermonkey*: Update WWW 2021-11-16 11:34:54 +08:00
spidermonkey78 lang/rust: Relink consumers 2022-02-03 15:02:32 +01:00
spl lang/spl: patch and unbreak with -fno-common 2021-07-21 16:07:47 +08:00
squeak graphics/mesa-libs: Bump reverse deps for libglvnd 2021-06-22 11:53:08 -07:00
squirrel */*: Remove redundant '-[0-9]*' from CONFLICTS 2021-10-29 11:50:18 +02:00
swi-pl *: fix tab vs. space issues, and comments according to the guide. 2021-10-16 11:51:39 +02:00
tauthon lang/tauthon: remove past expiration date. 2022-01-23 21:56:23 +01:00
tcbasic One more small cleanup, forgotten yesterday. 2021-04-07 10:09:01 +02:00
tcc One more small cleanup, forgotten yesterday. 2021-04-07 10:09:01 +02:00
tcl-manual lang/tcl-manual: Update WWW 2021-06-20 19:39:01 +08:00
tcl-wrapper Mk: Cleanup after moving apply-slist earlier. 2021-04-14 17:41:02 +02:00
tcl85 lang/tcl85: regenerate patch files 2021-09-10 07:03:41 +00:00
tcl86 lang/tcl86: fix build with non-default options (THREADS off) 2022-01-06 13:13:58 +00:00
tcl87 lang/tcl87: Add CPE information 2021-08-29 18:29:13 +00:00
tclX Remove # $FreeBSD$ from Makefiles. 2021-04-06 16:31:07 +02:00
tolua Remove # $FreeBSD$ from Makefiles. 2021-04-06 16:31:07 +02:00
tolua++ lang/tolua++: remove dependency on python2, undeprecate consumer ports 2021-04-12 19:49:07 +03:00
tuareg-mode.el USES=emacs: Chase package name changes 2021-11-15 11:19:58 -04:00
twelf Remove # $FreeBSD$ from Makefiles. 2021-04-06 16:31:07 +02:00
ucc Remove # $FreeBSD$ from Makefiles. 2021-04-06 16:31:07 +02:00
urweb Remove # $FreeBSD$ from Makefiles. 2021-04-06 16:31:07 +02:00
v Remove # $FreeBSD$ from Makefiles. 2021-04-06 16:31:07 +02:00
v8 lang/v8: Update to 9.8.177.9 2022-02-28 20:46:02 +08:00
v8-beta lang/v8-beta: Update to 9.9.115.5 2022-02-28 20:46:03 +08:00
vala lang/vala: Add CPE information 2021-09-11 11:40:49 +00:00
visualworks Deorbit RESTRICTED && NO_CDROM, part two. 2021-05-06 13:47:48 +02:00
voc One more small cleanup, forgotten yesterday. 2021-04-07 10:09:01 +02:00
yabasic lang/yabasic: Update to 2.90.2 2022-01-12 11:09:40 +08:00
yap lang/yap: fix build on powerpc64le 2021-11-08 16:49:35 +00:00
yorick *: Sweep up new CONFLICTS_INSTALL mess 2022-01-17 14:20:24 +01:00
ypsilon Remove # $FreeBSD$ from Makefiles. 2021-04-06 16:31:07 +02:00
zig lang/zig: update to 0.9.0 2022-01-04 09:19:25 +00:00
zig-devel lang/zig-devel: add test target 2021-12-21 23:44:45 +00:00
Makefile cleanup: Remove ports depending on expired lang/gcc6-aux 2022-02-28 22:34:25 +01:00