Framework: sync with upstream

Taken from: HardenedBSD
This commit is contained in:
Franco Fichtner 2019-02-14 19:36:49 +01:00
parent f395a14e2d
commit b5b6c6e743
2 changed files with 5 additions and 4 deletions

1
MOVED
View File

@ -11589,6 +11589,7 @@ net-mgmt/pnp-icinga||2019-02-04|Removed, depends on expired net-mgmt/icinga-clas
sysutils/atf-allwinner|devel/atf-sun50i_a64|2019-02-05|Respect the ARM TF-A platform name
sysutils/yum||2019-02-07|Has expired: Abandoned upstream, does not work with python3
sysutils/createrepo||2019-02-07|Has expired: Abandoned upstream, does not work with python3
www/wml||2019-02-08|Removing to be properly added back with svn copy
misc/soapysdr-hackrf|comms/soapysdrhackrf|2019-02-09|Move to the proper category/name
math/wxMaxima|math/wxmaxima|2019-02-10|rename for consistency
net-mgmt/py-snmp4|net-mgmt/py-pysnmp|2019-02-11|Renamed to match upstream naming

View File

@ -134,16 +134,16 @@ CARGO_ENV+= GETTEXT_BIN_DIR=${LOCALBASE}/bin \
GETTEXT_LIB_DIR=${LOCALBASE}/lib
.endif
.if ${CARGO_CRATES:Mlibc-[0-9]*}
.for libc in ${CARGO_CRATES:Mlibc-[0-9]*}
# FreeBSD 12.0 changed ABI: r318736 and r320043
# https://github.com/rust-lang/libc/commit/78f93220d70e
# https://github.com/rust-lang/libc/commit/969ad2b73cdc
_libc_VER= ${CARGO_CRATES:Mlibc-[0-9]*:C/.*-//}
_libc_VER= ${libc:C/.*-//}
. if ${_libc_VER:R:R} == 0 && (${_libc_VER:R:E} < 2 || ${_libc_VER:R:E} == 2 && ${_libc_VER:E} < 38)
DEV_WARNING+= "CARGO_CRATES=libc-0.2.37 or older maybe unstable on FreeBSD 12.0. Consider updating to the latest version."
DEV_WARNING+= "CARGO_CRATES=${libc} may be unstable on FreeBSD 12.0. Consider updating to the latest version (higher than 0.2.37)."
. endif
.undef _libc_VER
.endif
.endfor
.if ${CARGO_CRATES:Mlibgit2-sys-[0-9]*}
# Use the system's libgit2 instead of building the bundled version