freebsd-ports/lang
Pietro Cerutti 719e63e2fb lang/seed7: update to 05_20211225
20211225:
- Support for syntax highlighting in vim has been added. Many thanks
  to Johannes Gritsch for providing the files doc/seed7.vim and
  doc/sd7.vim.
- Chapters about ignoring values, bin64, bin32, bstring, fileSys,
  Transport Layer Security and the graphics library have been added
  to the manual. Many other chapters of the manual have been improved
  as well.
- The new library imagefile.s7i has been added. This library supports
  various image file formats (PNG, GIF, JPEG, BMP, ICO, PPM).
- The picture viewer program pv7.sd7 has been improved to use the
  function readImage() from the imagefile.s7i library.
- The keyboard test program gkbd.sd7 has been improved to show more
  keys. These keys turn red when they are currently pressed.
- The function equalFileContent() in sydir7.sd7 has been improved to
  use a reduced buffer size. A possible error that happens if just
  one file is at EOF after reading data into the buffers, has been
  fixed also.
- In keybd.s7i, keydescr.s7i and kbd_drv.h definitions for KEY_CTL_0
  to KEY_CTL_9 have been added.
- In png.s7i an error that happend when reading tiny interlaced PNG
  files has been fixed.
- In boolean.s7i the functions succ(), pred() and boolean()
  (conversion from integer) have been improved to raise RANGE_ERROR
  if the resulting value would not be TRUE or FALSE.
- Tests for the boolean succ() and pred() functions have been added
  to chkbool.sd7.
- Tests for boolean for-loops have been added to chkprc.sd7.
- The operator -:= has been added to bitset.s7i, bitsetof.s7i and
  hashsetof.s7i.
- Tests for set difference assignment (operator -:=) have been added
  to chkset.sd7.
- The program chk_all.sd7 has been adjusted to the changes in the
  check programs.
- The function width(aCharacter) (defined in char.s7i) has been fixed
  to return 0 for curser and function keys. The change has been made
  in chr_rtl.c.
- In file.s7i the function skip() has been improved to avoid a
  possible endless loop.
- In null_file.s7i the function gets() has been improved to raise
  RANGE_ERROR if the parameter ''maxLength'' is negative.
- In graph_file.s7i, pixmap_file.s7i and window.s7i, the scrolling
  has been fixed.
- In bytedata.s7i the functions getUInt16Le(), getUInt32Le(),
  getUInt16Be() and getUInt32Be() have been improved to use
  bytes2Int().
- In filesys.s7i and osfiles.s7i the function readlink() is
  deprecated. The function readLink() should be used instead.
  The files cpio.s7i ftpserv.s7i, rpm.s7i, tar.s7i, find7.sd7 and
  sydir7.sd7 have been altered to use readLink().
- In graph.s7i fhe function DRAW_FLUSH() is deprecated. The
  function flushGraphic() should be used instead.
- The files dialog.s7i, graph_file.s7i, pixmap_file.s7i, bas7.sd7,
  bifurk.sd7, carddemo.sd7, castle.sd7, cellauto.sd7, clock3.sd7,
  dnafight.sd7, gkbd.sd7, klondike.sd7, lander.sd7, mahjong.sd7,
  mandelbr.sd7, mirror.sd7, pairs.sd7, panic.sd7, percolation.sd7,
  pv7.sd7, raytrace.sd7, shisen.sd7, sudoku7.sd7 and tetg.sd7 have
  been altered to use flushGraphic() instead of the deprecated
  DRAW_FLUSH().
- In draw.s7i  the put() functions with PSET and XOR parameter are
  deprecated. The functions without PSET respectively XOR should
  be used instead.
- In graph.s7i the function setCloseAction() is deprecated.
  Instead of setCloseAction(popupWindow, RETURN_KEY); the statement
  selectInput(popupWindow, KEY_CLOSE, TRUE); should be used.
- The files dialog.s7i, castle.sd7, klondike.sd7, lander.sd7,
  mahjong.sd7, mandelbr.sd7, pairs.sd7, panic.sd7, planets.sd7,
  shisen.sd7, sokoban.sd7, sudoku7.sd7, tetg.sd7 and wator.sd7 have
  been altered to use selectInput() instead of the deprecated
  setCloseAction().
- In gzip.s7i the functions openGunzipFile(aFile) and
  openGzipFile(aFile) are deprecated. Instead of
  openGunzipFile(aFile), use openGzipFile(aFile, READ), and instead
  of openGzipFile(aFile) use openGzipFile(aFile, WRITE). The files
  rpm.s7i and tar_cmds.s7i have been altered to use the new
  function.
- In strifile.s7i the function openStrifile() is deprecated.
  The function openStriFile() should be used instead.
- The files htmldom.s7i, rpm.s7i, xmldom.s7i and chkbitdata.sd7 have
  been altered to use openStriFile() instead of the deprecated
  openStrifile().
- In stritext.s7i the function openStritext() is deprecated.
  The function openStriText() should be used instead.
- A syntax error in the library stritext.s7i has been fixed.
- In echo.s7i, dir.s7i, pixmap_file.s7i and shell.s7i internal
  indentifiers have been renamed to use camel case.
- Interpreter and compiler have been improved to support the actions
  BLN_SUCC and BLN_PRED. Changes have been done in boolean.s7i,
  blnlib.c, blnlib.h, primitiv.c, comp/bln_act.s7i and
  comp/action.s7i.
- Interpreter and compiler have been improved to support the action
  SET_DIFF_ASSIGN. Changes have been done in bitset.s7i,
  bitsetof.s7i, set_rtl.c, set_rtl.h, setlib.c, setlib.h, primitiv.c,
  comp/set_act.s7i and comp/action.s7i.
- In interpreter and compiler the actions BLN_ICONV1 and BLN_ICONV3
  have been improved to raise RANGE_ERROR if the value is not 0 or 1.
- The interpreter has been improved (in s7.c) to write an error
  message if the declaration of main() is missing.
- The graphic keyboard drivers in drw_win.c, gkb_win.c and gkb_x11.c
  have been improved. Minimizing, maximizing and restoring a window
  triggers a KEY_RESIZE only when it is necessary. Now it can be
  checked if the mouse forward and back buttons are currently
  pressed. The event tracing in the keyboard drivers has also been
  improved.
- The parameters of the function drwPut() have been altered in
  drw_dos.c, drw_emc.c, drw_win.c, drw_x11.c, drw_drv.h, drwlib.c
  and comp/drw_act.s7i.
- The code generation for ENU_ICONV2 in the compiler has been
  improved (in comp/enu_act.s7i). Now it is similar to the code
  generated for BLN_ICONV1 and BLN_ICONV3.
- The error logging in exec.c has been improved.
- Several makefiles have been improved such that 'sudo make install'
  succeeds for an existing installation.
- In blnlib.c the functions bln_pred() and bln_succ() have been
  added and the functions bln_iconv1() and bln_iconv3() have been
  adjusted. Now these functions raise RANGE_ERROR if the resulting
  value would not be TRUE or FALSE.
- The function setDiffAssign() has been added to set_rtl.c.
- In tim_win.c the function alternate_utime() has been improved to
  work more reliable (this is called by setMTime).
- The function cmdReadlink has been renamed to cmdReadLink. Changes
  have been done in cmdlib.c, cmd_rtl.c, cmd_rtl.h and
  comp/cmd_act.s7i.
- Documentation comments have been added or improved in array.s7i,
  bigint.s7i, bin32.s7i, bin64.s7i, bitset.s7i, bitsetof.s7i,
  bmp.s7i, boolean.s7i, bstring.s7i, category.s7i, char.s7i,
  cpio.s7i, dir.s7i, draw.s7i, echo.s7i, file.s7i, filesys.s7i,
  float.s7i, forloop.s7i, gif.s7i, graph.s7i, graph_file.s7i,
  gzip.s7i, hashsetof.s7i, ico.s7i, integer.s7i, jpeg.s7i,
  keydescr.s7i, line.s7i, logfile.s7i, lzma.s7i, null_file.s7i,
  pixmap_file.s7i, png.s7i, ppm.s7i, progs.s7i, reference.s7i,
  ref_list.s7i, rpm.s7i, shell.s7i, stars.s7i, strifile.s7i,
  string.s7i, stritext.s7i, subfile.s7i, tar.s7i, text.s7i,
  tls.s7i, utf16.s7i, utf8.s7i, xz.s7i, zstd.s7i
  setlib.c and set_rtl.c.
2021-12-27 15:36:38 +00:00
..
abcl lang/abcl: Update to version 1.8.0. 2021-09-11 11:32:55 +02:00
adacontrol *: fix tab vs. space issues, and comments according to the guide. 2021-10-16 11:51:39 +02:00
alchemist.el USES=emacs: Chase package name changes 2021-11-15 11:19:58 -04:00
algol68g math/gsl: update to 2.7 2021-06-16 21:31:27 +02: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
asis Remove # $FreeBSD$ from Makefiles. 2021-04-06 16:31:07 +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
bf2c lang/bf2c: Return to pool, expires on 2022-02-28 2021-11-06 17:25:18 +01:00
bsh all: Remove all other $FreeBSD keywords. 2021-04-06 16:31:13 +02: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 cleanup: drop support for EOL FreeBSD 11.X 2021-09-30 23:23:30 +02: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: Fix threads support on i386 platform 2021-12-11 09:15:52 +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 lang/cjs: switch 5df16891e1 to merged upstream version 2021-11-29 15:48:27 +00:00
cling lang/cling: Remove invalid CPE information 2021-09-03 06:25:48 +00: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.1020 2021-11-08 22:48:23 +00: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 cleanup: drop support for EOL FreeBSD 11.X 2021-09-30 23:23:30 +02:00
csharp-mode.el USES=emacs: Chase package name changes 2021-11-15 11:19:58 -04:00
cython lang/cython-devel: add port 2021-11-24 20:00:33 +03:00
cython-devel lang/cython-devel: add port 2021-11-24 20:00: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 One more small cleanup, forgotten yesterday. 2021-04-07 10:09:01 +02:00
duktape-lib One more small cleanup, forgotten yesterday. 2021-04-07 10:09:01 +02:00
ecl lang/ecl: upgrade to 21.2.1 2021-07-30 12:53:45 +02:00
eisl lang/eisl: Update 2.25 -> 2.34 2021-12-11 00:41:24 -08:00
elixir lang/elixir: Update to version 1.12.3, with portclippy fixes. 2021-09-30 22:02:16 +00:00
elixir-devel lang/elixir-devel: update to 1.13.1 2021-12-21 23:03:12 +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 Bump USES=cabal ports after 12837690ed 2021-04-21 06:48:23 +02:00
emacs-lisp-intro Remove # $FreeBSD$ from Makefiles. 2021-04-06 16:31:07 +02:00
erlang lang/erlang: Update to version 24.1.7 2021-11-22 20:11:01 +01:00
erlang-doc lang/erlang-doc: Update to version 24.1. 2021-10-02 00:38:15 +02:00
erlang-java lang/erlang-java: Update to version 24.1.7 2021-11-22 20:11:01 +01:00
erlang-man lang/erlang-man: Update to version 24.1. 2021-10-02 00:38:14 +02: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.10 2021-12-21 21:26:10 +01:00
erlang-runtime24 lang/erlang-runtime24: Update to version 24.1.7 2021-11-22 20:11:01 +01:00
erlang-wx lang/erlang-wx: Update to version 24.1.7 2021-11-22 20:11:01 +01:00
execline - Update Skarnet.org software stack ports to their latest versions 2021-05-09 08:58:59 +00:00
expect Remove # $FreeBSD$ from Makefiles. 2021-04-06 16:31:07 +02:00
f2c Remove # $FreeBSD$ from Makefiles. 2021-04-06 16:31:07 +02:00
fasm lang/fasm: Update to 1.73.28 2021-09-21 11:35:15 +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: unbreak on i386 after e40d870fc3 2021-08-01 02:20:06 +00: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 Remove # $FreeBSD$ from Makefiles. 2021-04-06 16:31:07 +02:00
gauche lang/gauche: Add CPE information 2021-08-29 19:30:44 +00:00
gawk lang/gawk: update GNU awk to version 5.1.1. 2021-11-05 10:34:07 +00: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: unbreak fetch after 620968a43a 2021-10-01 14:33:54 +00:00
gcc8 lang/gcc8: Relinquish maintainership 2021-10-23 15:38:57 +00:00
gcc9 lang/gcc9: fix build on powerpc64le 2021-12-18 19:06:37 +00:00
gcc9-devel lang/gcc9-devel: Relinquish maintainership 2021-10-11 04:47:34 +00:00
gcc10 lang/gcc10: fix runtime on powerpc64le 2021-04-29 11:33:40 +00:00
gcc10-devel lang/gcc10-devel: Relinquish maintainership 2021-10-12 05:35:10 +00:00
gcc11 lang/gcc11: Update to GCC 11.2 2021-08-16 02:15:13 +00:00
gcc11-devel lang/gcc11-devel: Relinquish maintainership 2021-10-14 21:37:13 +00:00
gcc12-devel lang/gcc12-devel: Update to the 20211128 snapshot of GCC 12.0.0 2021-12-02 17:55:32 +00:00
gcc48 Remove # $FreeBSD$ from Makefiles. 2021-04-06 16:31:07 +02:00
gforth lang/gforth: attempt to unbreak the port on i386, armv6, and armv7 2021-08-25 10:56:54 +00:00
ghc lang/ghc: add NO_CCACHE=yes 2021-11-17 23:48:27 +03:00
gjs lang/gjs: unbreak build with Meson 0.60.2 2021-11-27 23:35:02 +00:00
gleam lang/gleam: update to 0.18.2 2021-12-14 07:01:33 +00:00
gnat_util all: Remove all other $FreeBSD keywords. 2021-04-06 16:31:13 +02: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.5 2021-12-09 21:46:27 -05:00
go-devel lang/go-devel: Update to 1.18beta1 2021-12-14 19:47:59 -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 */*: Remove redundant '-[0-9]*' from CONFLICTS_INSTALL 2021-11-23 23:11:40 +01:00
guile1 */*: Remove redundant '-[0-9]*' from CONFLICTS_INSTALL 2021-11-23 23:11:40 +01:00
guile2 */*: Remove redundant '-[0-9]*' from CONFLICTS_INSTALL 2021-11-23 23:11:40 +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.9.0 -> 0.10.0 2021-12-02 23:41:20 -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 21.50.21939 2021-12-20 23:39:56 +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.19.2 2021-12-08 12:40:35 +01:00
jimtcl lang/jimtcl: update to 0.81 2021-12-01 08:50:47 +00:00
jpm lang/jpm: Add new port 2021-09-19 11:03:24 +02:00
jruby lang/jruby: Update to 9.2.17.0 2021-04-07 19:42:46 +09: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.89.0 2021-12-16 18:27:16 +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 2021-12-10 07:26:32 +01:00
kturtle KDE: Update KDE Gear to 21.12 2021-12-10 07:26:32 +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 cleanup: drop support for EOL FreeBSD 11.X 2021-09-30 23:23:30 +02: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 Remove # $FreeBSD$ from Makefiles. 2021-04-06 16:31:07 +02: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 */*: Remove redundant '-[0-9]*' from CONFLICTS 2021-10-29 11:50:18 +02:00
linux-dotnet-cli Remove # $FreeBSD$ from Makefiles. 2021-04-06 16:31:07 +02: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 all: Remove all other $FreeBSD keywords. 2021-04-06 16:31:13 +02:00
lua-ada Remove # $FreeBSD$ from Makefiles. 2021-04-06 16:31:07 +02: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/Makefile: connect lang/luajit-devel to build 2021-10-27 21:10:40 -04:00
luajit-devel lang/luajit-devel: enable CONFLICTS_INSTALL 2021-10-28 17:57:01 -04: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 to 2.6.1. 2021-10-26 12:40:14 +02: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 lang/mono: Invoke CPU_COUNT properly 2021-12-09 12:37:12 -08:00
mono-basic Remove # $FreeBSD$ from Makefiles. 2021-04-06 16:31:07 +02:00
mono5.10 lang/mono5.10: Invoke CPU_COUNT properly 2021-12-09 12:37:13 -08:00
mono5.20 lang/mono5.20: Invoke CPU_COUNT properly 2021-12-09 12:37:13 -08:00
mono6.8 lang/mono6.8: Invoke CPU_COUNT properly 2021-12-09 12:37:13 -08: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
nbc lang/nbc: Return to pool, expire on 2022-02-28 2021-11-06 17:25:19 +01:00
nbfc Remove # $FreeBSD$ from Makefiles. 2021-04-06 16:31:07 +02:00
neko One more small cleanup, forgotten yesterday. 2021-04-07 10:09:01 +02: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: Upgrade to 1.6.2 2021-12-23 01:00:11 +08:00
nml lang/nml: Mark as BROKEN, deprecate and set expiration date to 2021-12-31 2021-09-29 09:42:27 +02: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.60 2021-10-14 03:13:12 +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.4-102-ge43d289c7c 2021-10-11 17:09:48 +02: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
php73 Fix fetch for php* 2021-12-26 19:23:22 +01:00
php73-extensions One more small cleanup, forgotten yesterday. 2021-04-07 10:09:01 +02:00
php74 Fix fetch for php* 2021-12-26 19:23:22 +01:00
php74-extensions One more small cleanup, forgotten yesterday. 2021-04-07 10:09:01 +02:00
php80 Fix fetch for php* 2021-12-26 19:23:22 +01:00
php80-extensions One more small cleanup, forgotten yesterday. 2021-04-07 10:09:01 +02: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.8.2 2021-06-10 10:14:26 +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-qt5-qml */*: PyQt Update qscintilla2 to 2.13.0 and py-qt5-sip to 12.9.0 2021-07-27 20:55:03 +02: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 distinfo for python310 2021-12-09 08:40:38 +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
python36 lang/python3(6|7|8|9|10|11): work around unwanted multiarch detection again 2021-11-26 19:48:57 +01: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 COMMENT 2021-12-22 02:54:45 +08:00
python311 lang/python311: update to 3.11.0a3 2021-12-22 16:44:04 +03: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.3 2021-11-08 10:16:41 +01:00
racket-minimal lang/racket-minimal: Update to version 8.3 2021-11-08 10:16:36 +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/ruby26: Update to 2.6.9 2021-12-09 08:21:44 +09:00
ruby27 lang/ruby27: Update to 2.7.5 2021-12-09 08:21:51 +09:00
ruby30 lang/ruby30: Fix unnecessary substitution in PLIST 2021-12-22 02:54:46 +08:00
ruby31 lang/ruby31: Update to 3.1.0 2021-12-26 09:32:11 +09: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: Use backtrace noop backend on riscv64 too 2021-12-23 11:10:16 +01:00
rust-bootstrap lang/rust: Add riscv64 (riscv64gc-unknown-freebsd) support 2021-12-23 11:10:16 +01:00
rust-nightly lang/rust-nightly: Update to 1.59.0.20211221 2021-12-23 11:10:15 +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: Utilize SBCL_HOME to build custom core file and set it to empty. 2021-12-25 08:36:19 +01:00
scala lang/scala: Update to 3.1.0 2021-11-22 06:10:28 -04:00
scala-docs Remove # $FreeBSD$ from Makefiles. 2021-04-06 16:31:07 +02: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_20211225 2021-12-27 15:36:38 +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.11 release. 2021-12-20 17:49:57 +01:00
spidermonkey17 lang/spidermonkey*: Update WWW 2021-11-16 11:34:54 +08:00
spidermonkey60 lang/spidermonkey*: Update WWW 2021-11-16 11:34:54 +08:00
spidermonkey78 lang/rust: Rebuild consumers for Rust 1.57.0 2021-12-05 13:35:42 +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: Update to 2.8.3 2021-06-04 11:42:15 +02: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, x11-toolkits/tk86: update to 8.6.12 2021-11-08 07:47:20 +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.6.180.12 2021-11-22 02:19:08 +08:00
v8-beta lang/v8-beta: Update to 9.7.106.13 2021-12-22 02:46:25 +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: Add CPE information 2021-08-31 11:25:36 +00:00
yap lang/yap: fix build on powerpc64le 2021-11-08 16:49:35 +00:00
yorick Remove # $FreeBSD$ from Makefiles. 2021-04-06 16:31:07 +02:00
ypsilon Remove # $FreeBSD$ from Makefiles. 2021-04-06 16:31:07 +02:00
zig cleanup: drop support for EOL FreeBSD 11.X 2021-09-30 23:23:30 +02:00
zig-devel lang/zig-devel: add test target 2021-12-21 23:44:45 +00:00
Makefile lang/ruby31: Add new port 2021-12-19 09:34:57 +09:00