diff --git a/Mk/Uses/cargo.mk b/Mk/Uses/cargo.mk index 0a9455fb97a7..55bedf30b1e9 100644 --- a/Mk/Uses/cargo.mk +++ b/Mk/Uses/cargo.mk @@ -1,405 +1,405 @@ # This file contains logic to ease porting of Rust packages or # binaries using the `cargo` command. # # Feature: cargo # Usage: USES=cargo # Valid ARGS: none # # MAINTAINER: rust@FreeBSD.org .if !defined(_INCLUDE_USES_CARGO_MK) _INCLUDE_USES_CARGO_MK= yes . if !empty(cargo_ARGS) IGNORE+= USES=cargo takes no arguments . endif .sinclude "${MASTERDIR}/Makefile.crates" # List of static dependencies. The format is cratename-version. # CARGO_CRATES will be downloaded from MASTER_SITE_CRATESIO. CARGO_CRATES?= # List of features to build (space separated list). # Use special token --no-default-features to disable default # features by passing it to cargo build/install/test. CARGO_FEATURES?= # Name of the local directory for vendoring crates. CARGO_VENDOR_DIR?= ${WRKSRC}/cargo-crates # Default path for cargo manifest. CARGO_CARGOTOML?= ${WRKSRC}/Cargo.toml CARGO_CARGOLOCK?= ${WRKSRC}/Cargo.lock # Save crates inside ${DISTDIR}/rust/crates by default. CARGO_DIST_SUBDIR?= rust/crates # Generate list of DISTFILES. # Prefer canonical file extension .crate going forward . if make(makesum) CARGO_CRATE_EXT= .crate . else # If there is a rust/crates/*.tar.gz in distinfo keep using the old # extension. We need to delay eval until the last moment for # DISTINFO_FILE. We cache the command output to avoid multiple # slow grep runs for every CARGO_CRATE_EXT access. CARGO_CRATE_EXT= ${defined(_CARGO_CRATE_EXT_CACHE):?${_CARGO_CRATE_EXT_CACHE}:${:!if ${GREP} -q '\(${CARGO_DIST_SUBDIR}/.*\.tar\.gz\)' "${DISTINFO_FILE}" 2>/dev/null; then ${ECHO_CMD} .tar.gz; else ${ECHO_CMD} .crate; fi!:_=_CARGO_CRATE_EXT_CACHE}} . endif _CARGO_CRATES:= ${CARGO_CRATES:N*@git+*} _CARGO_GIT_SOURCES:= ${CARGO_CRATES:M*@git+*} # enumerate crates for unqiue and sane distfile group names _CARGO_CRATES:= ${empty(_CARGO_CRATES):?:${_CARGO_CRATES:range:@i@$i ${_CARGO_CRATES:[$i]}@}} # split up crates into (index, crate, name, version) 4-tuples _CARGO_CRATES:= ${_CARGO_CRATES:C/^([-_a-zA-Z0-9]+)-([0-9].*)/\0 \1 \2/} . for _index _crate _name _version in ${_CARGO_CRATES} # Resolving CRATESIO alias is very inefficient with many MASTER_SITES, consume MASTER_SITE_CRATESIO directly MASTER_SITES+= ${MASTER_SITE_CRATESIO:S,%SUBDIR%,${_name}/${_version},:S,$,:_cargo_${_index},} DISTFILES+= ${CARGO_DIST_SUBDIR}/${_crate}${CARGO_CRATE_EXT}:_cargo_${_index} # Provide pointer to the crate's extraction dir WRKSRC_crate_${_name}= ${CARGO_VENDOR_DIR}/${_crate} # ... also with version suffix in case of multiple versions of the # same crate WRKSRC_crate_${_crate}= ${CARGO_VENDOR_DIR}/${_crate} . endfor _CARGO_AWK= ${AWK} -vCP="${CP}" -vFIND="${FIND}" -vGREP="${GREP}" \ -vCARGO_VENDOR_DIR="${CARGO_VENDOR_DIR}" \ -vGIT_SOURCES="${_CARGO_GIT_SOURCES}" \ -vWRKDIR="${WRKDIR}" -vWRKSRC="${WRKSRC}" \ -f${SCRIPTSDIR}/split-url.awk \ -f${SCRIPTSDIR}/cargo-crates-git-common.awk -f . if !empty(_CARGO_GIT_SOURCES) . for _index _site _filename _wrksrc _crates in ${:!${_CARGO_AWK} ${SCRIPTSDIR}/cargo-crates-git-fetch.awk /dev/null!} MASTER_SITES+= ${_site}:_cargo_git${_index} DISTFILES+= ${_filename}:_cargo_git${_index} . for _crate in ${_crates:S/,/ /g} # Make sure the build dependencies checks below can work for git sourced crates too _CARGO_CRATES+= @git ${_crate} ${_crate} @git # Provide pointer to the crate's extraction dir # # This might not point to the actual crate's sources since a # single git source can contain multiple crates. We cannot collect # subdir information until after the full extraction is done and we # cannot set make variables at that point. This is better than # nothing. WRKSRC_crate_${_crate}= ${WRKDIR}/${_wrksrc} . endfor . endfor . endif # Build dependencies. CARGO_BUILDDEP?= yes . if ${CARGO_BUILDDEP:tl} == "yes" -BUILD_DEPENDS+= ${RUST_DEFAULT}>=1.62.0:lang/${RUST_DEFAULT} +BUILD_DEPENDS+= ${RUST_DEFAULT}>=1.63.0:lang/${RUST_DEFAULT} . endif # Location of toolchain (default to lang/rust's toolchain) CARGO?= ${LOCALBASE}/bin/cargo RUSTC?= ${LOCALBASE}/bin/rustc RUSTDOC?= ${LOCALBASE}/bin/rustdoc # Location of the cargo output directory. CARGO_TARGET_DIR?= ${WRKDIR}/target # Default target platform (affects some RUSTFLAGS if passed) CARGO_BUILD_TARGET?= ${_CARGO_RUST_ARCH_${ARCH}:U${ARCH}}-unknown-${OPSYS:tl} _CARGO_RUST_ARCH_amd64= x86_64 _CARGO_RUST_ARCH_i386= i686 _CARGO_RUST_ARCH_riscv64= riscv64gc # Environment for cargo # - CARGO_HOME: local cache of the registry index # - CARGO_BUILD_JOBS: configure number of jobs to run # - CARGO_TARGET_DIR: location of where to place all generated artifacts # - RUST_BACKTRACE: produce backtraces when something in the build panics # - RUSTC: path of rustc binary (default to lang/rust) # - RUSTDOC: path of rustdoc binary (default to lang/rust) # - RUSTFLAGS: custom flags to pass to all compiler invocations that Cargo performs CARGO_ENV+= \ CARGO_HOME=${WRKDIR}/cargo-home \ CARGO_BUILD_JOBS=${MAKE_JOBS_NUMBER} \ CARGO_BUILD_TARGET=${CARGO_BUILD_TARGET} \ CARGO_TARGET_DIR=${CARGO_TARGET_DIR} \ CARGO_TARGET_${CARGO_BUILD_TARGET:S/-/_/g:tu}_LINKER="${CC}" \ RUSTC=${RUSTC} \ RUSTDOC=${RUSTDOC} \ RUSTFLAGS="${RUSTFLAGS} ${LDFLAGS:C/.+/-C link-arg=&/}" . if ${ARCH} != powerpc CARGO_ENV+= RUST_BACKTRACE=1 . endif # Adjust -C target-cpu if -march/-mcpu is set by bsd.cpu.mk . if ${ARCH} == amd64 || ${ARCH} == i386 RUSTFLAGS+= ${CFLAGS:M-march=*:S/-march=/-C target-cpu=/} . elif ${ARCH:Mpowerpc*} RUSTFLAGS+= ${CFLAGS:M-mcpu=*:S/-mcpu=/-C target-cpu=/:S/power/pwr/} . else RUSTFLAGS+= ${CFLAGS:M-mcpu=*:S/-mcpu=/-C target-cpu=/} . endif . if defined(PPC_ABI) && ${PPC_ABI} == ELFv1 USE_GCC?= yes STRIP_CMD= ${LOCALBASE}/bin/strip # unsupported e_type with base strip . endif # Helper to shorten cargo calls. _CARGO_RUN= ${SETENV} ${MAKE_ENV} ${CARGO_ENV} ${CARGO} CARGO_CARGO_RUN= cd ${WRKSRC}; ${SETENV} CARGO_FREEBSD_PORTS_SKIP_GIT_UPDATE=1 ${_CARGO_RUN} # User arguments for cargo targets. CARGO_BUILD_ARGS?= CARGO_INSTALL_ARGS?= CARGO_INSTALL_PATH?= . CARGO_TEST_ARGS?= CARGO_UPDATE_ARGS?= # Use module targets ? CARGO_BUILD?= yes CARGO_CONFIGURE?= yes CARGO_INSTALL?= yes CARGO_TEST?= yes # rustc stashes intermediary files in TMPDIR (default /tmp) which # might cause issues for users that for some reason space limit # their /tmp. WRKDIR should have plenty of space. # Allow users and ports to still overwrite it. . if ${TMPDIR:U/tmp} == /tmp TMPDIR= ${WRKDIR} . endif # Manage crate features. . if !empty(CARGO_FEATURES:M--no-default-features) CARGO_BUILD_ARGS+= --no-default-features CARGO_INSTALL_ARGS+= --no-default-features CARGO_TEST_ARGS+= --no-default-features . endif . if !empty(CARGO_FEATURES:N--no-default-features) CARGO_BUILD_ARGS+= --features='${CARGO_FEATURES:N--no-default-features}' CARGO_INSTALL_ARGS+= --features='${CARGO_FEATURES:N--no-default-features}' CARGO_TEST_ARGS+= --features='${CARGO_FEATURES:N--no-default-features}' . endif . if !defined(WITH_DEBUG) CARGO_BUILD_ARGS+= --release CARGO_TEST_ARGS+= --release . else CARGO_INSTALL_ARGS+= --debug . endif . if ${_CARGO_CRATES:Mcmake} BUILD_DEPENDS+= cmake:devel/cmake . endif . if ${_CARGO_CRATES:Mgettext-sys} CARGO_ENV+= GETTEXT_BIN_DIR=${LOCALBASE}/bin \ GETTEXT_INCLUDE_DIR=${LOCALBASE}/include \ GETTEXT_LIB_DIR=${LOCALBASE}/lib . endif . if ${_CARGO_CRATES:Mjemalloc-sys} BUILD_DEPENDS+= gmake:devel/gmake . endif . if ${_CARGO_CRATES:Mlibgit2-sys} # Use the system's libgit2 instead of building the bundled version CARGO_ENV+= LIBGIT2_SYS_USE_PKG_CONFIG=1 . endif . if ${_CARGO_CRATES:Mlibssh2-sys} # Use the system's libssh2 instead of building the bundled version CARGO_ENV+= LIBSSH2_SYS_USE_PKG_CONFIG=1 . endif . if ${_CARGO_CRATES:Monig_sys} # onig_sys always prefers the system library but will try to link # statically with it. Since devel/oniguruma doesn't provide a static # library it'll link to libonig.so instead. Strictly speaking setting # RUSTONIG_SYSTEM_LIBONIG is not necessary, but will force onig_sys to # always use the system's libonig as returned by `pkg-config oniguruma`. CARGO_ENV+= RUSTONIG_SYSTEM_LIBONIG=1 . endif . if ${_CARGO_CRATES:Mopenssl-src} DEV_WARNING+= "Please make sure this port uses the system OpenSSL and consider removing CARGO_CRATES=${CARGO_CRATES:Mopenssl-src-[0-9]*} (a vendored copy of OpenSSL) from the build, e.g., by patching Cargo.toml appropriately." . endif . if ${_CARGO_CRATES:Mopenssl-sys} # Make sure that openssl-sys can find the correct version of OpenSSL CARGO_ENV+= OPENSSL_LIB_DIR=${OPENSSLLIB} \ OPENSSL_INCLUDE_DIR=${OPENSSLINC} . endif . if ${_CARGO_CRATES:Mpkg-config} .include "${USESDIR}/pkgconfig.mk" . endif . for _index _crate _name _version in ${_CARGO_CRATES} # Split up semantic version and try to sanitize it by removing # pre-release identifier (-) or build metadata (+) . if ${_version:S/./ /:S/./ /:C/[-+].*//:_:[#]} == 3 . for _major _minor _patch in $_ # FreeBSD 12.0 changed ABI: r318736 and r320043 # https://github.com/rust-lang/libc/commit/78f93220d70e # https://github.com/rust-lang/libc/commit/969ad2b73cdc . if ${_name} == libc && ${_major} == 0 && (${_minor} < 2 || (${_minor} == 2 && ${_patch} < 38)) DEV_ERROR+= "CARGO_CRATES=${_crate} may be unstable on FreeBSD 12.0. Consider updating to the latest version \(higher than 0.2.37\)." . endif . if ${_name} == libc && ${_major} == 0 && (${_minor} < 2 || (${_minor} == 2 && ${_patch} < 49)) DEV_ERROR+= "CARGO_CRATES=${_crate} may be unstable on aarch64 or not build on armv6, armv7, powerpc64. Consider updating to the latest version \(higher than 0.2.49\)." . endif # FreeBSD 12.0 updated base OpenSSL in r339270: # https://github.com/sfackler/rust-openssl/commit/276577553501 . if ${_name} == openssl && !exists(${PATCHDIR}/patch-openssl-1.1.1) && ${_major} == 0 && (${_minor} < 10 || (${_minor} == 10 && ${_patch} < 4)) DEV_WARNING+= "CARGO_CRATES=${_crate} does not support OpenSSL 1.1.1. Consider updating to the latest version \(higher than 0.10.3\)." . endif . endfor . endif . endfor _USES_extract+= 600:cargo-extract cargo-extract: # target for preparing crates directory. It will put all crates in # the local crates directory. @${ECHO_MSG} "===> Moving crates to ${CARGO_VENDOR_DIR}" @${MKDIR} ${CARGO_VENDOR_DIR} . for _index _crate _name _version in ${_CARGO_CRATES} . if ${_index} != @git @${MV} ${WRKDIR}/${_crate} ${CARGO_VENDOR_DIR}/${_crate} @${PRINTF} '{"package":"%s","files":{}}' \ $$(${SHA256} -q ${DISTDIR}/${CARGO_DIST_SUBDIR}/${_crate}${CARGO_CRATE_EXT}) \ > ${CARGO_VENDOR_DIR}/${_crate}/.cargo-checksum.json @if [ -r ${CARGO_VENDOR_DIR}/${_crate}/Cargo.toml.orig ]; then \ ${MV} ${CARGO_VENDOR_DIR}/${_crate}/Cargo.toml.orig \ ${CARGO_VENDOR_DIR}/${_crate}/Cargo.toml.orig-cargo; \ fi . endif . endfor . if ${CARGO_CONFIGURE:tl} == "yes" _USES_configure+= 250:cargo-configure # configure hook. Place a config file for overriding crates-io index # by local source directory. cargo-configure: # Check that the running kernel has COMPAT_FREEBSD11 required by lang/rust post-ino64 @${SETENV} CC="${CC}" OPSYS="${OPSYS}" OSVERSION="${OSVERSION}" WRKDIR="${WRKDIR}" \ ${SH} ${SCRIPTSDIR}/rust-compat11-canary.sh @${ECHO_MSG} "===> Cargo config:" @${MKDIR} ${WRKDIR}/.cargo @: > ${WRKDIR}/.cargo/config.toml @${ECHO_CMD} "[source.cargo]" >> ${WRKDIR}/.cargo/config.toml @${ECHO_CMD} "directory = '${CARGO_VENDOR_DIR}'" >> ${WRKDIR}/.cargo/config.toml @${ECHO_CMD} "[source.crates-io]" >> ${WRKDIR}/.cargo/config.toml @${ECHO_CMD} "replace-with = 'cargo'" >> ${WRKDIR}/.cargo/config.toml . if !empty(_CARGO_GIT_SOURCES) @${_CARGO_AWK} ${SCRIPTSDIR}/cargo-crates-git-configure.awk \ /dev/null >> ${WRKDIR}/.cargo/config.toml . endif @${CAT} ${WRKDIR}/.cargo/config.toml @if ! ${GREP} -qF '[profile.release]' ${CARGO_CARGOTOML}; then \ ${ECHO_CMD} "" >> ${CARGO_CARGOTOML}; \ ${ECHO_CMD} "[profile.release]" >> ${CARGO_CARGOTOML}; \ ${ECHO_CMD} "opt-level = 2" >> ${CARGO_CARGOTOML}; \ ${ECHO_CMD} "debug = false" >> ${CARGO_CARGOTOML}; \ fi @${ECHO_MSG} "===> Updating Cargo.lock" @${CARGO_CARGO_RUN} update \ --manifest-path ${CARGO_CARGOTOML} \ --verbose \ --verbose \ ${CARGO_UPDATE_ARGS} . endif . if !target(do-build) && ${CARGO_BUILD:tl} == "yes" do-build: @${CARGO_CARGO_RUN} build \ --manifest-path ${CARGO_CARGOTOML} \ --verbose \ --verbose \ ${CARGO_BUILD_ARGS} . endif . if !target(do-install) && ${CARGO_INSTALL:tl} == "yes" do-install: . for path in ${CARGO_INSTALL_PATH} @${CARGO_CARGO_RUN} install \ --no-track \ --path "${path}" \ --root "${STAGEDIR}${PREFIX}" \ --verbose \ --verbose \ ${CARGO_INSTALL_ARGS} . endfor . endif . if !target(do-test) && ${CARGO_TEST:tl} == "yes" do-test: @${CARGO_CARGO_RUN} test \ --manifest-path ${CARGO_CARGOTOML} \ --verbose \ --verbose \ ${CARGO_TEST_ARGS} . endif # # Helper targets for port maintainers # # cargo-audit generates a vulnerability report using # security/cargo-audit based on the crates in Cargo.lock. cargo-audit: configure @if ! type cargo-audit > /dev/null 2>&1; then \ ${ECHO_MSG} "===> Please install \"security/cargo-audit\""; exit 1; \ fi @${ECHO_MSG} "===> Checking for vulnerable crates" @${CARGO} audit --file ${CARGO_CARGOLOCK} # cargo-crates will output the crates list from Cargo.lock. If there # is no Cargo.lock for some reason, try and generate it first. cargo-crates: cargo-crates-generate-lockfile @${_CARGO_AWK} ${SCRIPTSDIR}/cargo-crates.awk ${CARGO_CARGOLOCK} # cargo-crates-generate-lockfile will try to generate a Cargo.lock file # if it does not exist. cargo-crates-generate-lockfile: extract @if [ ! -r "${CARGO_CARGOLOCK}" ]; then \ ${ECHO_MSG} "===> ${CARGO_CARGOLOCK} not found. Trying to generate it..."; \ cd ${WRKSRC}; ${_CARGO_RUN} generate-lockfile \ --manifest-path ${CARGO_CARGOTOML} \ --verbose; \ fi # cargo-crates-licenses will try to grab license information from # all downloaded crates. cargo-crates-licenses: configure @${FIND} ${CARGO_VENDOR_DIR} -name 'Cargo.toml' -maxdepth 2 \ -exec ${GREP} -H '^license' {} \; \ | ${SED} \ -e 's@^${CARGO_VENDOR_DIR}/@@' \ -e 's@/Cargo.toml:license.*= *"@|@' \ -e 's@"$$@@g' | sort | /usr/bin/column -t -s '|' # cargo-crates-merge will in-place update CARGO_CRATES in the port # based on the crates list from Cargo.lock. If there is no Cargo.lock # for some reason, try and generate it first. cargo-crates-merge: @if ! type portedit > /dev/null 2>&1; then \ ${ECHO_MSG} "===> Please install \"ports-mgmt/portfmt\""; exit 1; \ fi @${MAKE} clean cargo-crates-generate-lockfile @f="${MASTERDIR}/Makefile"; [ -r "${MASTERDIR}/Makefile.crates" ] && f="${MASTERDIR}/Makefile.crates"; \ ${_CARGO_AWK} ${SCRIPTSDIR}/cargo-crates.awk ${CARGO_CARGOLOCK} | \ portedit merge -i $$f; \ ${MAKE} clean makesum; \ ${ECHO_MSG} "${DISTINFO_FILE} and CARGO_CRATES in $$f were updated"; .endif diff --git a/Mk/bsd.gecko.mk b/Mk/bsd.gecko.mk index 2ea394ae9956..047310846c15 100644 --- a/Mk/bsd.gecko.mk +++ b/Mk/bsd.gecko.mk @@ -1,409 +1,409 @@ #-*- tab-width: 4; -*- # ex:ts=4 # # Date created: 12 Nov 2005 # Whom: Michael Johnson # # 4 column tabs prevent hair loss and tooth decay! # bsd.gecko.mk abstracts the selection of gecko-based backends. It allows users # and porters to support any available gecko backend without needing to build # many conditional tests. ${USE_GECKO} is the list of backends that your port # can handle, and ${GECKO} is set by bsd.gecko.mk to be the chosen backend. # Users set ${WITH_GECKO} to the list of gecko backends they want on their # system. .if defined(USE_GECKO) . if !defined(_POSTMKINCLUDED) && !defined(Gecko_Pre_Include) Gecko_Pre_Include= bsd.gecko.mk # This file contains some reusable components for mozilla ports. It's of # use primarily to apps from the mozilla project itself (such as Firefox, # Thunderbird, etc.), and probably won't be of use for gecko-based ports # like epiphany, galeon, etc. # # You need to make sure to add USE_GECKO=gecko to for your port can uses # one of these options below. # # Ports can use the following: # # USE_MOZILLA By default, it enables every system dependency # listed in '_ALL_DEPENDS'. If your port doesn't # need one of those then you can use '-' like # 'USE_MOZILLA= -png -vpx' to subtract the # dependencies. Experimental deps use '+' like # 'USE_MOZILLA= +speex +theora'. # # MOZILLA_PLIST_DIRS List of directories to descend into when installing # and creating the plist # # MOZ_OPTIONS configure arguments (added to .mozconfig). If # NOMOZCONFIG is defined, you probably want to set # CONFIGURE_ARGS+=${MOZ_OPTIONS} # # MOZ_MK_OPTIONS The make(1) arguments (added to .mozconfig). If # NOMOZCONFIG is defined, you probably want to set # MAKE_ARGS+=${MOZ_MK_OPTIONS} # # MOZ_EXPORT Environment variables for the build process (added # to .mozconfig). If NOMOZCONFIG is defined, you # probably want to set MAKE_ENV+=${MOZ_EXPORT} # # NOMOZCONFIG Don't drop a customized .mozconfig into the build # directory. Options will have to be specified in # CONFIGURE_ARGS instead # MAINTAINER?= gecko@FreeBSD.org MOZILLA?= ${PORTNAME} MOZILLA_VER?= ${PORTVERSION} MOZILLA_BIN?= ${PORTNAME}-bin MOZILLA_EXEC_NAME?=${MOZILLA} USES+= compiler:c++17-lang cpe gl gmake gnome iconv localbase perl5 pkgconfig \ python:3.6+,build desktop-file-utils CPE_VENDOR?=mozilla USE_GL= gl USE_GNOME= cairo gdkpixbuf2 gtk30 USE_PERL5= build USE_XORG= x11 xcb xcomposite xdamage xext xfixes xrender xt . if ${MOZILLA_VER:R:R} >= 96 USE_XORG+= xrandr xtst . endif HAS_CONFIGURE= yes CONFIGURE_OUTSOURCE= yes LDFLAGS+= -Wl,--as-needed BINARY_ALIAS+= python3=${PYTHON_CMD} BUNDLE_LIBS= yes BUILD_DEPENDS+= llvm${LLVM_DEFAULT}>0:devel/llvm${LLVM_DEFAULT} \ rust-cbindgen>=0.24.3:devel/rust-cbindgen \ - ${RUST_DEFAULT}>=1.62.0:lang/${RUST_DEFAULT} \ + ${RUST_DEFAULT}>=1.63.0:lang/${RUST_DEFAULT} \ node:www/node LIB_DEPENDS+= libdrm.so:graphics/libdrm RUN_DEPENDS+= ${LOCALBASE}/lib/libpci.so:devel/libpci LIB_DEPENDS+= libepoll-shim.so:devel/libepoll-shim MOZ_EXPORT+= ${CONFIGURE_ENV} \ PERL="${PERL}" \ PYTHON3="${PYTHON_CMD}" \ RUSTFLAGS="${RUSTFLAGS}" MOZ_OPTIONS+= --prefix="${PREFIX}" MOZ_MK_OPTIONS+=MOZ_OBJDIR="${BUILD_WRKSRC}" MOZ_OPTIONS+= --with-libclang-path="${LOCALBASE}/llvm${LLVM_DEFAULT}/lib" . if !exists(/usr/bin/llvm-objdump) MOZ_EXPORT+= LLVM_OBJDUMP="${LOCALBASE}/bin/llvm-objdump${LLVM_DEFAULT}" . endif # fix LLVM to version 13, as that's the only reasonable wasi-toolchain # we currently have # if !defined(DEFAULT_VERSIONS) || ! ${DEFAULT_VERSIONS:Mllvm*} || ${PORT_OPTIONS:MLTO} LLVM_DEFAULT= 13 # chase bundled LLVM in lang/rust for LTO LLVM_VERSION= 13.0.1 # keep in sync with devel/wasi-compiler-rt${LLVM_DEFAULT} # endif # Require newer Clang than what's in base system unless user opted out . if ${CC} == cc && ${CXX} == c++ && exists(/usr/lib/libc++.so) BUILD_DEPENDS+= ${LOCALBASE}/bin/clang${LLVM_DEFAULT}:devel/llvm${LLVM_DEFAULT} CPP= ${LOCALBASE}/bin/clang-cpp${LLVM_DEFAULT} CC= ${LOCALBASE}/bin/clang${LLVM_DEFAULT} CXX= ${LOCALBASE}/bin/clang++${LLVM_DEFAULT} USES:= ${USES:Ncompiler\:*} # XXX avoid warnings . endif MOZSRC?= ${WRKSRC} PLISTF?= ${WRKDIR}/plist_files MOZCONFIG?= ${WRKSRC}/.mozconfig MOZILLA_PLIST_DIRS?= bin lib share/pixmaps share/applications # Adjust -C target-cpu if -march/-mcpu is set by bsd.cpu.mk . if ${ARCH} == amd64 || ${ARCH} == i386 RUSTFLAGS+= ${CFLAGS:M-march=*:S/-march=/-C target-cpu=/} . elif ${ARCH:Mpowerpc*} RUSTFLAGS+= ${CFLAGS:M-mcpu=*:S/-mcpu=/-C target-cpu=/:S/power/pwr/} . else RUSTFLAGS+= ${CFLAGS:M-mcpu=*:S/-mcpu=/-C target-cpu=/} . endif # Standard depends _ALL_DEPENDS= av1 event ffi graphite harfbuzz icu jpeg nspr nss png pixman sqlite vpx webp . if exists(${FILESDIR}/patch-bug1559213) av1_LIB_DEPENDS= libaom.so:multimedia/aom libdav1d.so:multimedia/dav1d av1_MOZ_OPTIONS= --with-system-av1 . endif event_LIB_DEPENDS= libevent.so:devel/libevent event_MOZ_OPTIONS= --with-system-libevent ffi_LIB_DEPENDS= libffi.so:devel/libffi ffi_MOZ_OPTIONS= --enable-system-ffi . if exists(${FILESDIR}/patch-bug847568) graphite_LIB_DEPENDS= libgraphite2.so:graphics/graphite2 graphite_MOZ_OPTIONS= --with-system-graphite2 harfbuzz_LIB_DEPENDS= libharfbuzz.so:print/harfbuzz harfbuzz_MOZ_OPTIONS= --with-system-harfbuzz . endif icu_LIB_DEPENDS= libicui18n.so:devel/icu icu_MOZ_OPTIONS= --with-system-icu --with-intl-api -jpeg_BUILD_DEPENDS=yasm:devel/yasm jpeg_USES= jpeg jpeg_MOZ_OPTIONS= --with-system-jpeg=${LOCALBASE} nspr_LIB_DEPENDS= libnspr4.so:devel/nspr nspr_MOZ_OPTIONS= --with-system-nspr nss_LIB_DEPENDS= libnss3.so:security/nss nss_MOZ_OPTIONS= --with-system-nss pixman_LIB_DEPENDS= libpixman-1.so:x11/pixman pixman_MOZ_OPTIONS= --enable-system-pixman png_LIB_DEPENDS= libpng.so:graphics/png png_MOZ_OPTIONS= --with-system-png=${LOCALBASE} . if ${MOZILLA_VER:R:R} >= 97 png_MOZ_OPTIONS= --with-system-png . endif sqlite_LIB_DEPENDS= libsqlite3.so:databases/sqlite3 sqlite_MOZ_OPTIONS= --enable-system-sqlite -vpx_BUILD_DEPENDS= yasm:devel/yasm vpx_LIB_DEPENDS= libvpx.so:multimedia/libvpx vpx_MOZ_OPTIONS= --with-system-libvpx webp_LIB_DEPENDS= libwebp.so:graphics/webp webp_MOZ_OPTIONS= --with-system-webp . for use in ${USE_MOZILLA} ${use:S/-/_WITHOUT_/}= ${TRUE} . endfor LIB_DEPENDS+= libfontconfig.so:x11-fonts/fontconfig \ libfreetype.so:print/freetype2 . for dep in ${_ALL_DEPENDS} ${USE_MOZILLA:M+*:S/+//} . if !defined(_WITHOUT_${dep}) BUILD_DEPENDS+= ${${dep}_BUILD_DEPENDS} LIB_DEPENDS+= ${${dep}_LIB_DEPENDS} RUN_DEPENDS+= ${${dep}_RUN_DEPENDS} USES+= ${${dep}_USES} MOZ_OPTIONS+= ${${dep}_MOZ_OPTIONS} . else BUILD_DEPENDS+= ${-${dep}_BUILD_DEPENDS} . endif . endfor # Standard options MOZ_OPTIONS+= \ --enable-update-channel=${PKGNAMESUFFIX:Urelease:S/^-//} \ --disable-updater \ --with-system-zlib # API keys from www/chromium # http://www.chromium.org/developers/how-tos/api-keys # Note: these are for FreeBSD use ONLY. For your own distribution, # please get your own set of keys. MOZ_EXPORT+= MOZ_GOOGLE_LOCATION_SERVICE_API_KEY=AIzaSyBsp9n41JLW8jCokwn7vhoaMejDFRd1mp8 MOZ_EXPORT+= MOZ_GOOGLE_SAFEBROWSING_API_KEY=AIzaSyBsp9n41JLW8jCokwn7vhoaMejDFRd1mp8 . if ${PORT_OPTIONS:MOPTIMIZED_CFLAGS} CFLAGS+= -O3 MOZ_EXPORT+= MOZ_OPTIMIZE_FLAGS="${CFLAGS:M-O*}" MOZ_OPTIONS+= --enable-optimize . else MOZ_OPTIONS+= --disable-optimize . if ${/usr/bin/ld:L:tA} != /usr/bin/ld.lld # ld 2.17 barfs on Stylo built with -C opt-level=0 USE_BINUTILS= yes LDFLAGS+= -B${LOCALBASE}/bin . endif . endif . if ${PORT_OPTIONS:MCANBERRA} RUN_DEPENDS+= libcanberra>0:audio/libcanberra . endif . if ${PORT_OPTIONS:MDBUS} BUILD_DEPENDS+= libnotify>0:devel/libnotify LIB_DEPENDS+= libdbus-1.so:devel/dbus \ libdbus-glib-1.so:devel/dbus-glib . else MOZ_OPTIONS+= --disable-dbus . endif . if ${PORT_OPTIONS:MFFMPEG} # dom/media/platforms/ffmpeg/FFmpegRuntimeLinker.cpp RUN_DEPENDS+= ffmpeg>=0.8,1:multimedia/ffmpeg . endif . if ${PORT_OPTIONS:MLIBPROXY} LIB_DEPENDS+= libproxy.so:net/libproxy MOZ_OPTIONS+= --enable-libproxy . else MOZ_OPTIONS+= --disable-libproxy . endif . if ${PORT_OPTIONS:MLTO} MOZ_OPTIONS+= --enable-lto=cross . endif . if ${PORT_OPTIONS:MALSA} BUILD_DEPENDS+= ${LOCALBASE}/include/alsa/asoundlib.h:audio/alsa-lib MOZ_OPTIONS+= --enable-alsa . endif . if ${PORT_OPTIONS:MJACK} BUILD_DEPENDS+= ${LOCALBASE}/include/jack/jack.h:audio/jack MOZ_OPTIONS+= --enable-jack . endif . if ${PORT_OPTIONS:MPULSEAUDIO} BUILD_DEPENDS+= ${LOCALBASE}/include/pulse/pulseaudio.h:audio/pulseaudio MOZ_OPTIONS+= --enable-pulseaudio . else MOZ_OPTIONS+= --disable-pulseaudio . endif . if ${PORT_OPTIONS:MSNDIO} BUILD_DEPENDS+= ${LOCALBASE}/include/sndio.h:audio/sndio . if ${MOZILLA_VER:R:R} < 100 post-patch-SNDIO-on: @${REINPLACE_CMD} -e 's|OpenBSD|${OPSYS}|g' \ -e '/DISABLE_LIBSNDIO_DLOPEN/d' \ ${MOZSRC}/media/libcubeb/src/moz.build . else MOZ_OPTIONS+= --enable-sndio . endif . else . if ${MOZILLA_VER:R:R} >= 100 MOZ_OPTIONS+= --disable-sndio . endif . endif . if ${PORT_OPTIONS:MDEBUG} MOZ_OPTIONS+= --enable-debug --disable-release STRIP= # ports/184285 . else MOZ_OPTIONS+= --disable-debug --disable-debug-symbols --enable-release . if ${ARCH:Maarch64} || (defined(MACHINE_CPU) && ${MACHINE_CPU:Msse2}) MOZ_OPTIONS+= --enable-rust-simd . endif . endif . if ${PORT_OPTIONS:MPROFILE} MOZ_OPTIONS+= --enable-profiling STRIP= . else MOZ_OPTIONS+= --disable-profiling . endif . if ${PORT_OPTIONS:MTEST} USE_XORG+= xscrnsaver MOZ_OPTIONS+= --enable-tests . else MOZ_OPTIONS+= --disable-tests . endif . if !defined(STRIP) || ${STRIP} == "" MOZ_OPTIONS+= --disable-strip --disable-install-strip . else MOZ_OPTIONS+= --enable-strip --enable-install-strip . endif # _MAKE_JOBS is only available after bsd.port.post.mk, thus cannot be # used in .mozconfig. And client.mk automatically uses -jN where N # is what multiprocessing.cpu_count() returns. . if defined(DISABLE_MAKE_JOBS) || defined(MAKE_JOBS_UNSAFE) MAKE_JOBS_NUMBER= 1 . endif . if defined(MAKE_JOBS_NUMBER) MOZ_MAKE_FLAGS+=-j${MAKE_JOBS_NUMBER} . endif . if defined(MOZ_MAKE_FLAGS) MOZ_MK_OPTIONS+=MOZ_MAKE_FLAGS="${MOZ_MAKE_FLAGS}" . endif . if ${ARCH} == amd64 . if ${USE_MOZILLA:M-nss} USE_BINUTILS= # intel-gcm.s CFLAGS+= -B${LOCALBASE}/bin LDFLAGS+= -B${LOCALBASE}/bin . endif . elif ${ARCH:Mpowerpc*} BUILD_DEPENDS+= as:devel/binutils . endif . else # bsd.port.post.mk post-patch: gecko-post-patch gecko-post-patch: @${RM} ${MOZCONFIG} . if !defined(NOMOZCONFIG) . for arg in ${MOZ_OPTIONS} @${ECHO_CMD} ac_add_options ${arg:Q} >> ${MOZCONFIG} . endfor . for arg in ${MOZ_MK_OPTIONS} @${ECHO_CMD} mk_add_options ${arg:Q} >> ${MOZCONFIG} . endfor . for var in ${MOZ_EXPORT} @${ECHO_CMD} export ${var:Q} >> ${MOZCONFIG} . endfor . endif # .if !defined(NOMOZCONFIG) . if ${USE_MOZILLA:M-nspr} @${ECHO_MSG} "===> Applying NSPR patches" @for i in ${.CURDIR}/../../devel/nspr/files/patch-*; do \ ${PATCH} ${PATCH_ARGS} -d ${MOZSRC}/nsprpub < $$i; \ done . endif . if ${USE_MOZILLA:M-nss} @${ECHO_MSG} "===> Applying NSS patches" @for i in ${.CURDIR}/../../security/nss/files/patch-*; do \ ${PATCH} ${PATCH_ARGS} -d ${MOZSRC}/security/nss < $$i; \ done . endif @if [ -f ${WRKSRC}/config/baseconfig.mk ] ; then \ ${REINPLACE_CMD} -e 's|%%MOZILLA%%|${MOZILLA}|g' \ ${WRKSRC}/config/baseconfig.mk; \ fi @${REINPLACE_CMD} -e 's|%%MOZILLA%%|${MOZILLA}|g' \ ${MOZSRC}/config/baseconfig.mk @${REINPLACE_CMD} -e 's|/usr/local/netscape|${LOCALBASE}|g ; \ s|/usr/local/lib/netscape|${LOCALBASE}/lib|g' \ ${MOZSRC}/xpcom/io/SpecialSystemDirectory.cpp @${REINPLACE_CMD} -e 's|/etc|${PREFIX}&|g' \ ${MOZSRC}/xpcom/build/nsXPCOMPrivate.h @${REINPLACE_CMD} -e 's|/usr/local|${LOCALBASE}|g' \ -e 's|mozilla/plugins|browser_plugins|g' \ -e 's|share/mozilla/extensions|lib/xpi|g' \ ${MOZSRC}/xpcom/io/nsAppFileLocationProvider.cpp \ ${MOZSRC}/toolkit/xre/nsXREDirProvider.cpp # Disable vendor checksums like lang/rust @${REINPLACE_CMD} 's,"files":{[^}]*},"files":{},' \ ${MOZSRC}/third_party/rust/*/.cargo-checksum.json pre-configure-script: # Check that the running kernel has COMPAT_FREEBSD11 required by lang/rust post-ino64 @${SETENV} CC="${CC}" OPSYS="${OPSYS}" OSVERSION="${OSVERSION}" WRKDIR="${WRKDIR}" \ ${SH} ${SCRIPTSDIR}/rust-compat11-canary.sh post-install-script: gecko-create-plist gecko-create-plist: # Create the plist ${RM} ${PLISTF} . for dir in ${MOZILLA_PLIST_DIRS} @cd ${STAGEDIR}${PREFIX}/${dir} && ${FIND} -H -s * ! -type d | \ ${SED} -e 's|^|${dir}/|' >> ${PLISTF} . endfor ${CAT} ${PLISTF} | ${SORT} >> ${TMPPLIST} . endif .endif # HERE THERE BE TACOS -- adamw diff --git a/accessibility/sctd/Makefile b/accessibility/sctd/Makefile index 63361ad1d227..9d69de7bb4f1 100644 --- a/accessibility/sctd/Makefile +++ b/accessibility/sctd/Makefile @@ -1,50 +1,50 @@ PORTNAME= sctd DISTVERSION= 0.2.0 -PORTREVISION= 15 +PORTREVISION= 16 CATEGORIES= accessibility MAINTAINER= 0mp@FreeBSD.org COMMENT= Set color temperature (sct) daemon LICENSE= CC0-1.0 MIT LICENSE_COMB= multi LICENSE_FILE_CC0-1.0= ${WRKSRC}/LICENSE USES= cargo xorg USE_GITHUB= yes GH_ACCOUNT= amir USE_XORG= x11 xrandr CARGO_CRATES= ansi_term-0.11.0 \ atty-0.2.14 \ autocfg-1.0.0 \ bitflags-1.2.1 \ cfg-if-0.1.10 \ chrono-0.4.11 \ clap-2.33.0 \ env_logger-0.7.1 \ hermit-abi-0.1.8 \ humantime-1.3.0 \ libc-0.2.68 \ log-0.4.8 \ num-integer-0.1.42 \ num-traits-0.2.11 \ pkg-config-0.3.17 \ quick-error-1.2.3 \ redox_syscall-0.1.56 \ strsim-0.8.0 \ textwrap-0.11.0 \ time-0.1.42 \ unicode-width-0.1.7 \ vec_map-0.8.1 \ winapi-0.3.8 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-x86_64-pc-windows-gnu-0.4.0 \ x11-2.18.2 \ spa@git+https://github.com/amir/spa-rs?branch=pub-SolarPos\#fa80d0ce99d675674cf1a7cc9cf2ee2e33f501ea PLIST_FILES= bin/sctd post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/sctd .include diff --git a/accessibility/wl-gammarelay-rs/Makefile b/accessibility/wl-gammarelay-rs/Makefile index 1007e72dd41f..fe2faf0390de 100644 --- a/accessibility/wl-gammarelay-rs/Makefile +++ b/accessibility/wl-gammarelay-rs/Makefile @@ -1,141 +1,142 @@ PORTNAME= wl-gammarelay-rs DISTVERSIONPREFIX= v DISTVERSION= 0.2.3 +PORTREVISION= 1 CATEGORIES= accessibility wayland MAINTAINER= jbeich@FreeBSD.org COMMENT= Adjust color temperature/brightness under Wayland via DBus LICENSE= GPLv3 LICENSE_FILE= ${WRKSRC}/LICENCE USES= cargo USE_GITHUB= yes GH_ACCOUNT= MaxVerevkin PLIST_FILES= bin/${PORTNAME} CARGO_CRATES= aho-corasick-0.7.18 \ anyhow-1.0.62 \ async-broadcast-0.4.1 \ async-recursion-0.3.2 \ async-trait-0.1.57 \ atty-0.2.14 \ autocfg-1.1.0 \ bitflags-1.3.2 \ byteorder-1.4.3 \ bytes-1.2.1 \ cc-1.0.73 \ cfg-if-1.0.0 \ clap-3.2.17 \ clap_derive-3.2.17 \ clap_lex-0.2.4 \ derivative-2.2.0 \ dirs-4.0.0 \ dirs-sys-0.3.7 \ dlib-0.5.0 \ downcast-rs-1.2.0 \ enumflags2-0.7.5 \ enumflags2_derive-0.7.4 \ event-listener-2.5.3 \ fastrand-1.8.0 \ futures-0.3.23 \ futures-channel-0.3.23 \ futures-core-0.3.23 \ futures-executor-0.3.23 \ futures-io-0.3.23 \ futures-macro-0.3.23 \ futures-sink-0.3.23 \ futures-task-0.3.23 \ futures-util-0.3.23 \ getrandom-0.2.7 \ hashbrown-0.12.3 \ heck-0.4.0 \ hermit-abi-0.1.19 \ hex-0.4.3 \ indexmap-1.9.1 \ instant-0.1.12 \ lazy_static-1.4.0 \ libc-0.2.132 \ libloading-0.7.3 \ lock_api-0.4.7 \ log-0.4.17 \ memchr-2.5.0 \ memmap-0.7.0 \ memoffset-0.6.5 \ mio-0.8.4 \ nix-0.24.2 \ once_cell-1.13.1 \ ordered-stream-0.0.1 \ os_str_bytes-6.3.0 \ parking_lot-0.12.1 \ parking_lot_core-0.9.3 \ pin-project-lite-0.2.9 \ pin-utils-0.1.0 \ pkg-config-0.3.25 \ ppv-lite86-0.2.16 \ proc-macro-crate-1.2.1 \ proc-macro-error-1.0.4 \ proc-macro-error-attr-1.0.4 \ proc-macro2-1.0.43 \ quote-1.0.21 \ rand-0.8.5 \ rand_chacha-0.3.1 \ rand_core-0.6.3 \ redox_syscall-0.2.16 \ redox_users-0.4.3 \ regex-1.6.0 \ regex-syntax-0.6.27 \ remove_dir_all-0.5.3 \ scoped-tls-1.0.0 \ scopeguard-1.1.0 \ serde-1.0.144 \ serde_derive-1.0.144 \ serde_repr-0.1.9 \ sha1-0.6.1 \ sha1_smol-1.0.0 \ shmemfdrs-0.1.3 \ slab-0.4.7 \ smallvec-1.9.0 \ socket2-0.4.4 \ static_assertions-1.1.0 \ strsim-0.10.0 \ syn-1.0.99 \ tempfile-3.3.0 \ termcolor-1.1.3 \ textwrap-0.15.0 \ thiserror-1.0.32 \ thiserror-impl-1.0.32 \ tokio-1.20.1 \ tokio-macros-1.8.0 \ toml-0.5.9 \ tracing-0.1.36 \ tracing-attributes-0.1.22 \ tracing-core-0.1.29 \ uds_windows-1.0.2 \ unicode-ident-1.0.3 \ version_check-0.9.4 \ wasi-0.11.0+wasi-snapshot-preview1 \ wayland-backend-0.1.0-beta.8 \ wayland-client-0.30.0-beta.8 \ wayland-protocols-0.30.0-beta.8 \ wayland-protocols-wlr-0.1.0-beta.8 \ wayland-scanner-0.30.0-beta.8 \ wayland-sys-0.30.0-beta.8 \ winapi-0.3.9 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-util-0.1.5 \ winapi-x86_64-pc-windows-gnu-0.4.0 \ windows-sys-0.36.1 \ windows_aarch64_msvc-0.36.1 \ windows_i686_gnu-0.36.1 \ windows_i686_msvc-0.36.1 \ windows_x86_64_gnu-0.36.1 \ windows_x86_64_msvc-0.36.1 \ xml-rs-0.8.4 \ zbus-3.0.0 \ zbus_macros-3.0.0 \ zbus_names-2.2.0 \ zvariant-3.6.0 \ zvariant_derive-3.6.0 .include diff --git a/audio/gnome-podcasts/Makefile b/audio/gnome-podcasts/Makefile index 8a9d58486499..d53ca72c3d98 100644 --- a/audio/gnome-podcasts/Makefile +++ b/audio/gnome-podcasts/Makefile @@ -1,327 +1,327 @@ PORTNAME= podcasts DISTVERSION= 0.5.1 -PORTREVISION= 6 +PORTREVISION= 7 CATEGORIES= audio PKGNAMEPREFIX= gnome- PATCH_SITES= ${GL_SITE}/${GL_ACCOUNT}/${GL_PROJECT}/-/commit/ PATCHFILES+= 6614bb62ecbe.patch:-p1 # https://gitlab.gnome.org/World/podcasts/-/merge_requests/213 MAINTAINER= jbeich@FreeBSD.org COMMENT= Podcast app for GNOME LICENSE= GPLv3+ LICENSE_FILE= ${WRKSRC}/LICENSE BUILD_DEPENDS= bash:shells/bash LIB_DEPENDS= libdbus-1.so:devel/dbus \ libhandy-1.so:x11-toolkits/libhandy USES= cargo gettext gnome gstreamer meson pkgconfig python:build shebangfix sqlite ssl USE_GITLAB= yes USE_GNOME= gdkpixbuf2 gtk30 USE_GSTREAMER= bad good libav GL_SITE= https://gitlab.gnome.org GL_ACCOUNT= World GL_COMMIT= c86f7bfdef7692bbf20f315a90450321f6ca9ce7 SHEBANG_FILES= scripts/cargo.sh scripts/compile-gschema.py MAKE_ENV= ${CARGO_ENV} GLIB_SCHEMAS= org.gnome.Podcasts.gschema.xml CARGO_CRATES= aho-corasick-0.7.18 \ ammonia-3.1.2 \ ansi_term-0.12.1 \ anyhow-1.0.52 \ atk-0.14.0 \ atk-sys-0.14.0 \ atom_syndication-0.11.0 \ atty-0.2.14 \ autocfg-1.0.1 \ base64-0.13.0 \ bitflags-1.3.2 \ bumpalo-3.8.0 \ byteorder-1.4.3 \ bytes-1.1.0 \ cairo-rs-0.14.9 \ cairo-sys-rs-0.14.9 \ cc-1.0.72 \ cfg-expr-0.8.1 \ cfg-if-1.0.0 \ chrono-0.4.19 \ core-foundation-0.9.2 \ core-foundation-sys-0.8.3 \ crossbeam-channel-0.5.1 \ crossbeam-deque-0.8.1 \ crossbeam-epoch-0.9.5 \ crossbeam-utils-0.8.5 \ ctor-0.1.21 \ darling-0.10.2 \ darling-0.12.4 \ darling_core-0.10.2 \ darling_core-0.12.4 \ darling_macro-0.10.2 \ darling_macro-0.12.4 \ dbus-0.6.5 \ derive_builder-0.9.0 \ derive_builder-0.10.2 \ derive_builder_core-0.9.0 \ derive_builder_core-0.10.2 \ derive_builder_macro-0.10.2 \ diesel-1.4.8 \ diesel_derives-1.4.1 \ diesel_migrations-1.4.0 \ diff-0.1.12 \ diligent-date-parser-0.1.3 \ dirs-3.0.2 \ dirs-sys-0.3.6 \ either-1.6.1 \ encoding_rs-0.8.30 \ env_logger-0.7.1 \ field-offset-0.3.4 \ fnv-1.0.7 \ foreign-types-0.3.2 \ foreign-types-shared-0.1.1 \ form_urlencoded-1.0.1 \ fragile-1.0.0 \ fuchsia-cprng-0.1.1 \ futf-0.1.4 \ futures-0.3.19 \ futures-channel-0.3.19 \ futures-core-0.3.19 \ futures-executor-0.3.19 \ futures-io-0.3.19 \ futures-macro-0.3.19 \ futures-sink-0.3.19 \ futures-task-0.3.19 \ futures-util-0.3.19 \ gdk-0.14.3 \ gdk-pixbuf-0.14.0 \ gdk-pixbuf-sys-0.14.0 \ gdk-sys-0.14.0 \ getrandom-0.1.16 \ getrandom-0.2.3 \ gio-0.14.8 \ gio-sys-0.14.0 \ glib-0.10.3 \ glib-0.14.8 \ glib-macros-0.10.1 \ glib-macros-0.14.1 \ glib-sys-0.10.1 \ glib-sys-0.14.0 \ glob-0.3.0 \ gobject-sys-0.10.0 \ gobject-sys-0.14.0 \ gstreamer-0.17.4 \ gstreamer-base-0.17.2 \ gstreamer-base-sys-0.17.0 \ gstreamer-player-0.17.0 \ gstreamer-player-sys-0.17.0 \ gstreamer-sys-0.17.3 \ gstreamer-video-0.17.2 \ gstreamer-video-sys-0.17.0 \ gtk-0.14.3 \ gtk-sys-0.14.0 \ gtk3-macros-0.14.0 \ h2-0.3.9 \ hashbrown-0.11.2 \ heck-0.3.3 \ hermit-abi-0.1.19 \ html2text-0.2.1 \ html5ever-0.25.1 \ http-0.2.6 \ http-body-0.4.4 \ httparse-1.5.1 \ httpdate-1.0.2 \ humansize-1.1.1 \ humantime-1.3.0 \ hyper-0.14.16 \ hyper-tls-0.5.0 \ ident_case-1.0.1 \ idna-0.2.3 \ indexmap-1.7.0 \ instant-0.1.12 \ ipnet-2.3.1 \ itertools-0.9.0 \ itertools-0.10.3 \ itoa-0.4.8 \ itoa-1.0.1 \ js-sys-0.3.55 \ lazy_static-1.4.0 \ libc-0.2.112 \ libdbus-sys-0.2.2 \ libhandy-0.8.0 \ libhandy-sys-0.8.0 \ libsqlite3-sys-0.22.2 \ locale_config-0.2.3 \ lock_api-0.4.5 \ log-0.4.14 \ mac-0.1.1 \ maplit-1.0.2 \ markup5ever-0.10.1 \ markup5ever_rcdom-0.1.0 \ matches-0.1.9 \ memchr-2.4.1 \ memoffset-0.6.5 \ migrations_internals-1.4.1 \ migrations_macros-1.4.2 \ mime-0.3.16 \ mime_guess-2.0.3 \ mio-0.7.14 \ miow-0.3.7 \ mpris-player-0.6.1 \ muldiv-1.0.0 \ native-tls-0.2.8 \ never-0.1.0 \ new_debug_unreachable-1.0.4 \ ntapi-0.3.6 \ num-integer-0.1.44 \ num-rational-0.4.0 \ num-traits-0.2.14 \ num_cpus-1.13.1 \ once_cell-1.9.0 \ open-2.0.2 \ openssl-0.10.38 \ openssl-probe-0.1.4 \ openssl-sys-0.9.72 \ output_vt100-0.1.2 \ pango-0.14.8 \ pango-sys-0.14.0 \ parking_lot-0.11.2 \ parking_lot_core-0.8.5 \ paste-1.0.6 \ pathdiff-0.2.1 \ percent-encoding-2.1.0 \ pest-2.1.3 \ phf-0.8.0 \ phf_codegen-0.8.0 \ phf_generator-0.8.0 \ phf_shared-0.8.0 \ pin-project-lite-0.2.8 \ pin-utils-0.1.0 \ pkg-config-0.3.24 \ ppv-lite86-0.2.16 \ precomputed-hash-0.1.1 \ pretty-hex-0.2.1 \ pretty_assertions-1.0.0 \ pretty_env_logger-0.4.0 \ proc-macro-crate-0.1.5 \ proc-macro-crate-1.1.0 \ proc-macro-error-1.0.4 \ proc-macro-error-attr-1.0.4 \ proc-macro2-1.0.36 \ quick-error-1.2.3 \ quick-xml-0.22.0 \ quote-1.0.14 \ r2d2-0.8.9 \ rand-0.4.6 \ rand-0.7.3 \ rand-0.8.4 \ rand_chacha-0.2.2 \ rand_chacha-0.3.1 \ rand_core-0.3.1 \ rand_core-0.4.2 \ rand_core-0.5.1 \ rand_core-0.6.3 \ rand_hc-0.2.0 \ rand_hc-0.3.1 \ rand_pcg-0.2.1 \ rayon-1.5.1 \ rayon-core-1.9.1 \ rdrand-0.4.0 \ redox_syscall-0.2.10 \ redox_users-0.4.0 \ regex-1.5.4 \ regex-syntax-0.6.25 \ remove_dir_all-0.5.3 \ reqwest-0.11.8 \ rfc822_sanitizer-0.3.4 \ rss-2.0.0 \ rustc_version-0.3.3 \ ryu-1.0.9 \ schannel-0.1.19 \ scheduled-thread-pool-0.2.5 \ scopeguard-1.1.0 \ security-framework-2.4.2 \ security-framework-sys-2.4.2 \ semver-0.11.0 \ semver-parser-0.10.2 \ serde-1.0.133 \ serde_json-1.0.74 \ serde_urlencoded-0.7.0 \ siphasher-0.3.7 \ slab-0.4.5 \ smallvec-1.7.0 \ socket2-0.4.2 \ string_cache-0.8.2 \ string_cache_codegen-0.5.1 \ strsim-0.9.3 \ strsim-0.10.0 \ strum-0.18.0 \ strum-0.21.0 \ strum_macros-0.18.0 \ strum_macros-0.21.1 \ syn-1.0.84 \ system-deps-1.3.2 \ system-deps-3.2.0 \ tempdir-0.3.7 \ tempfile-3.2.0 \ tendril-0.4.2 \ termcolor-1.1.2 \ thiserror-1.0.30 \ thiserror-impl-1.0.30 \ time-0.1.43 \ tinyvec-1.5.1 \ tinyvec_macros-0.1.0 \ tokio-1.15.0 \ tokio-macros-1.7.0 \ tokio-native-tls-0.3.0 \ tokio-util-0.6.9 \ toml-0.5.8 \ tower-service-0.3.1 \ tracing-0.1.29 \ tracing-core-0.1.21 \ try-lock-0.2.3 \ ucd-trie-0.1.3 \ unicase-2.6.0 \ unicode-bidi-0.3.7 \ unicode-normalization-0.1.19 \ unicode-segmentation-1.8.0 \ unicode-width-0.1.9 \ unicode-xid-0.2.2 \ url-2.2.2 \ utf-8-0.7.6 \ vcpkg-0.2.15 \ version-compare-0.0.10 \ version-compare-0.0.11 \ version_check-0.9.4 \ want-0.3.0 \ wasi-0.9.0+wasi-snapshot-preview1 \ wasi-0.10.2+wasi-snapshot-preview1 \ wasm-bindgen-0.2.78 \ wasm-bindgen-backend-0.2.78 \ wasm-bindgen-futures-0.4.28 \ wasm-bindgen-macro-0.2.78 \ wasm-bindgen-macro-support-0.2.78 \ wasm-bindgen-shared-0.2.78 \ web-sys-0.3.55 \ winapi-0.3.9 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-util-0.1.5 \ winapi-x86_64-pc-windows-gnu-0.4.0 \ winreg-0.7.0 \ xdg-2.4.0 \ xml-rs-0.8.4 \ xml5ever-0.16.2 \ gettext-rs,gettext-sys@git+https://github.com/danigm/gettext-rs?branch=no-gettext\#61938b9f5f1d3bdc31f9839f53fabe5ccf136a78 CARGO_BUILD= no CARGO_INSTALL= no CARGO_TEST= no post-patch: @${REINPLACE_CMD} -e '/dependency.*openssl/d' \ ${WRKSRC}/meson.build # Make each cargo subcommand very verbose @${REINPLACE_CMD} -e "/ARGS=/s/()/('--verbose' '--verbose')/" \ ${WRKSRC}/scripts/cargo.sh .include diff --git a/audio/lewton/Makefile b/audio/lewton/Makefile index 98ab58075625..8b7d70871aab 100644 --- a/audio/lewton/Makefile +++ b/audio/lewton/Makefile @@ -1,99 +1,99 @@ PORTNAME= lewton DISTVERSION= 0.10.2 -PORTREVISION= 10 +PORTREVISION= 11 CATEGORIES= audio PATCH_SITES= https://github.com/${GH_ACCOUNT}/${GH_PROJECT}/commit/ PATCHFILES+= 05f96f6e6976.patch:-p1 # https://github.com/RustAudio/lewton/pull/97 MAINTAINER= jbeich@FreeBSD.org COMMENT= Rust vorbis decoder LICENSE= APACHE20 MIT LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE BUILD_DEPENDS= cargo-cbuild:devel/cargo-c USES= cargo USE_GITHUB= yes USE_LDCONFIG= yes GH_ACCOUNT= RustAudio PLIST_SUB= VERSION=${DISTVERSION:C/-.*//} CARGO_CRATES= al-sys-0.6.1 \ alto-3.0.4 \ autocfg-1.0.0 \ byteorder-1.3.2 \ bytes-0.4.12 \ cc-1.0.50 \ cfg-if-0.1.10 \ cmake-0.1.42 \ curl-0.4.25 \ curl-sys-0.4.25 \ fuchsia-cprng-0.1.1 \ futures-0.1.29 \ gcc-0.3.55 \ iovec-0.1.4 \ lazy_static-0.2.11 \ lazy_static-1.4.0 \ libc-0.2.66 \ libloading-0.5.2 \ libz-sys-1.0.25 \ log-0.4.8 \ maybe-uninit-2.0.0 \ ogg-0.8.0 \ ogg-sys-0.0.9 \ openssl-probe-0.1.2 \ openssl-sys-0.9.54 \ owning_ref-0.3.3 \ parking_lot-0.4.8 \ parking_lot_core-0.2.14 \ pkg-config-0.3.17 \ proc-macro2-1.0.8 \ quote-1.0.2 \ rand-0.3.23 \ rand-0.4.6 \ rand_core-0.3.1 \ rand_core-0.4.2 \ rdrand-0.4.0 \ redox_syscall-0.1.56 \ rental-0.5.5 \ rental-impl-0.5.5 \ rustc-serialize-0.3.24 \ schannel-0.1.16 \ sha2-0.1.2 \ smallvec-0.6.13 \ socket2-0.3.11 \ stable_deref_trait-1.1.1 \ syn-1.0.14 \ test-assets-0.2.0 \ tinyvec-1.0.1 \ tinyvec_macros-0.1.0 \ tokio-io-0.1.12 \ unicode-xid-0.2.0 \ vcpkg-0.2.8 \ vorbis-0.1.0 \ vorbis-encoder-0.1.4 \ vorbis-sys-0.0.8 \ vorbisfile-sys-0.0.8 \ winapi-0.3.8 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-x86_64-pc-windows-gnu-0.4.0 do-build: @${CARGO_CARGO_RUN} cbuild \ --verbose \ --verbose \ ${CARGO_BUILD_ARGS} do-install: @${CARGO_CARGO_RUN} cinstall \ --verbose \ --verbose \ --destdir "${STAGEDIR}" \ --prefix "${PREFIX}" \ ${CARGO_INSTALL_ARGS} @${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/*.so .include diff --git a/audio/myxer/Makefile b/audio/myxer/Makefile index 9dba90255a4a..888a9b700e2f 100644 --- a/audio/myxer/Makefile +++ b/audio/myxer/Makefile @@ -1,96 +1,96 @@ PORTNAME= myxer DISTVERSION= 1.2.1 -PORTREVISION= 12 +PORTREVISION= 13 CATEGORIES= audio MAINTAINER= yuri@FreeBSD.org COMMENT= Modern volume mixer for PulseAudio LICENSE= GPLv3 LICENSE_FILE= ${WRKSRC}/LICENSE.md LIB_DEPENDS= libpulse.so:audio/pulseaudio USES= cargo gnome USE_GNOME= glib20 gtk30 USE_GITHUB= yes GH_ACCOUNT= Aurailus GH_PROJECT= Myxer CARGO_CRATES= anyhow-1.0.38 \ atk-0.9.0 \ atk-sys-0.10.0 \ autocfg-1.0.1 \ bitflags-1.2.1 \ cairo-rs-0.9.1 \ cairo-sys-rs-0.10.0 \ cc-1.0.67 \ colorsys-0.6.3 \ either-1.6.1 \ futures-0.3.13 \ futures-channel-0.3.13 \ futures-core-0.3.13 \ futures-executor-0.3.13 \ futures-io-0.3.13 \ futures-macro-0.3.13 \ futures-sink-0.3.13 \ futures-task-0.3.13 \ futures-util-0.3.13 \ gdk-0.13.2 \ gdk-pixbuf-0.9.0 \ gdk-pixbuf-sys-0.10.0 \ gdk-sys-0.10.0 \ gio-0.9.1 \ gio-sys-0.10.1 \ glib-0.10.3 \ glib-macros-0.10.1 \ glib-sys-0.10.1 \ gobject-sys-0.10.0 \ gtk-0.9.2 \ gtk-sys-0.10.0 \ heck-0.3.2 \ itertools-0.9.0 \ libc-0.2.86 \ libpulse-binding-2.23.0 \ libpulse-sys-1.18.0 \ memchr-2.3.4 \ num-derive-0.3.3 \ num-traits-0.2.14 \ once_cell-1.6.0 \ pango-0.9.1 \ pango-sys-0.10.0 \ pin-project-lite-0.2.4 \ pin-utils-0.1.0 \ pkg-config-0.3.19 \ proc-macro-crate-0.1.5 \ proc-macro-error-1.0.4 \ proc-macro-error-attr-1.0.4 \ proc-macro-hack-0.5.19 \ proc-macro-nested-0.1.7 \ proc-macro2-1.0.24 \ quote-1.0.9 \ serde-1.0.123 \ slab-0.4.2 \ slice_as_array-1.1.0 \ strum-0.18.0 \ strum_macros-0.18.0 \ syn-1.0.60 \ system-deps-1.3.2 \ thiserror-1.0.24 \ thiserror-impl-1.0.24 \ toml-0.5.8 \ unicode-segmentation-1.7.1 \ unicode-xid-0.2.1 \ version-compare-0.0.10 \ version_check-0.9.2 \ winapi-0.3.9 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-x86_64-pc-windows-gnu-0.4.0 PLIST_FILES= bin/${PORTNAME} post-install: @${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/${PORTNAME} .include diff --git a/audio/ncspot/Makefile b/audio/ncspot/Makefile index 449fb7aa5004..63ee23ad8d85 100644 --- a/audio/ncspot/Makefile +++ b/audio/ncspot/Makefile @@ -1,417 +1,417 @@ PORTNAME= ncspot DISTVERSIONPREFIX= v DISTVERSION= 0.9.7 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= audio MAINTAINER= rodrigo@FreeBSD.org COMMENT= Ncurses Spotify client LICENSE= BSD2CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE LIB_DEPENDS= libdbus-1.so:devel/dbus USES= cargo ncurses ssl USE_GITHUB= yes GH_ACCOUNT= hrkfdn CARGO_CRATES= aes-0.6.0 \ aes-ctr-0.6.0 \ aes-soft-0.6.4 \ aesni-0.10.0 \ ahash-0.7.6 \ aho-corasick-0.7.18 \ alsa-0.5.0 \ alsa-0.6.0 \ alsa-sys-0.3.1 \ async-trait-0.1.52 \ atty-0.2.14 \ autocfg-1.1.0 \ base-x-0.2.8 \ base64-0.13.0 \ bindgen-0.56.0 \ bitflags-1.3.2 \ block-0.1.6 \ block-buffer-0.9.0 \ block-buffer-0.10.2 \ bumpalo-3.9.1 \ bytecount-0.6.2 \ byteorder-1.4.3 \ bytes-1.1.0 \ cc-1.0.73 \ cesu8-1.1.0 \ cexpr-0.4.0 \ cfg-if-1.0.0 \ chrono-0.4.19 \ chunked_transfer-1.4.0 \ cipher-0.2.5 \ clang-sys-1.3.1 \ clap-3.1.6 \ clipboard-0.5.0 \ clipboard-win-2.2.0 \ combine-4.6.3 \ const_fn-0.4.9 \ convert_case-0.4.0 \ cookie-0.15.1 \ cookie_store-0.15.1 \ core-foundation-0.9.3 \ core-foundation-sys-0.8.3 \ coreaudio-rs-0.10.0 \ coreaudio-sys-0.2.9 \ cpal-0.13.5 \ cpufeatures-0.2.2 \ crossbeam-channel-0.5.4 \ crossbeam-utils-0.8.8 \ crypto-common-0.1.3 \ crypto-mac-0.11.1 \ ctr-0.6.0 \ cursive-0.17.0 \ cursive_core-0.3.1 \ darling-0.13.1 \ darling_core-0.13.1 \ darling_macro-0.13.1 \ dbus-0.9.5 \ dbus-tree-0.9.2 \ derive-new-0.5.9 \ derive_more-0.99.17 \ digest-0.9.0 \ digest-0.10.3 \ dirs-next-1.0.2 \ dirs-next-2.0.0 \ dirs-sys-next-0.1.2 \ discard-1.0.4 \ downcast-rs-1.2.0 \ encoding_rs-0.8.30 \ enum-map-2.0.3 \ enum-map-derive-0.8.0 \ enumset-1.0.8 \ enumset_derive-0.5.5 \ fastrand-1.7.0 \ fern-0.6.0 \ fixedbitset-0.4.1 \ fnv-1.0.7 \ foreign-types-0.3.2 \ foreign-types-shared-0.1.1 \ form_urlencoded-1.0.1 \ futures-0.1.31 \ futures-0.3.21 \ futures-channel-0.3.21 \ futures-core-0.3.21 \ futures-executor-0.3.21 \ futures-io-0.3.21 \ futures-macro-0.3.21 \ futures-sink-0.3.21 \ futures-task-0.3.21 \ futures-util-0.3.21 \ generic-array-0.14.5 \ getrandom-0.2.5 \ glob-0.3.0 \ h2-0.3.12 \ half-1.8.2 \ hashbrown-0.11.2 \ headers-0.3.7 \ headers-core-0.2.0 \ heck-0.3.3 \ heck-0.4.0 \ hermit-abi-0.1.19 \ hmac-0.11.0 \ http-0.2.6 \ http-body-0.4.4 \ httparse-1.6.0 \ httpdate-1.0.2 \ hyper-0.14.18 \ hyper-proxy-0.9.1 \ hyper-tls-0.5.0 \ ident_case-1.0.1 \ idna-0.2.3 \ indexmap-1.8.0 \ instant-0.1.12 \ ioctl-rs-0.2.0 \ ipnet-2.4.0 \ itoa-1.0.1 \ jni-0.19.0 \ jni-sys-0.3.0 \ jobserver-0.1.24 \ js-sys-0.3.56 \ lazy_static-1.4.0 \ lazycell-1.3.0 \ lewton-0.10.2 \ libc-0.2.121 \ libdbus-sys-0.2.2 \ libloading-0.7.3 \ libm-0.2.2 \ libpulse-binding-2.26.0 \ libpulse-simple-binding-2.25.0 \ libpulse-simple-sys-1.19.2 \ libpulse-sys-1.19.3 \ librespot-audio-0.3.1 \ librespot-core-0.3.1 \ librespot-metadata-0.3.1 \ librespot-playback-0.3.1 \ librespot-protocol-0.3.1 \ lock_api-0.4.6 \ log-0.4.16 \ mac-notification-sys-0.5.0 \ mach-0.3.2 \ malloc_buf-0.0.6 \ maplit-1.0.2 \ matches-0.1.9 \ maybe-async-0.2.6 \ memchr-2.4.1 \ memoffset-0.6.5 \ mime-0.3.16 \ minimal-lexical-0.2.1 \ mio-0.8.2 \ miow-0.3.7 \ native-tls-0.2.8 \ ncurses-5.101.0 \ ndk-0.6.0 \ ndk-context-0.1.0 \ ndk-glue-0.6.1 \ ndk-macro-0.3.0 \ ndk-sys-0.3.0 \ nix-0.20.0 \ nix-0.22.3 \ nix-0.23.1 \ nom-5.1.2 \ nom-7.1.1 \ notify-rust-4.5.7 \ ntapi-0.3.7 \ num-0.2.1 \ num-0.4.0 \ num-bigint-0.2.6 \ num-bigint-0.4.3 \ num-complex-0.2.4 \ num-complex-0.4.0 \ num-derive-0.3.3 \ num-integer-0.1.44 \ num-iter-0.1.42 \ num-rational-0.2.4 \ num-rational-0.4.0 \ num-traits-0.2.14 \ num_cpus-1.13.1 \ num_enum-0.5.7 \ num_enum_derive-0.5.7 \ num_threads-0.1.5 \ numtoa-0.1.0 \ objc-0.2.7 \ objc-foundation-0.1.1 \ objc_id-0.1.1 \ oboe-0.4.5 \ oboe-sys-0.4.5 \ ogg-0.8.0 \ once_cell-1.10.0 \ opaque-debug-0.3.0 \ openssl-0.10.38 \ openssl-probe-0.1.5 \ openssl-sys-0.9.72 \ os_pipe-1.0.1 \ os_str_bytes-6.0.0 \ owning_ref-0.4.1 \ pancurses-0.17.0 \ parking_lot-0.11.2 \ parking_lot_core-0.8.5 \ parse_duration-2.1.1 \ pbkdf2-0.8.0 \ pdcurses-sys-0.7.1 \ peeking_take_while-0.1.2 \ percent-encoding-2.1.0 \ petgraph-0.6.0 \ pin-project-lite-0.2.8 \ pin-utils-0.1.0 \ pkg-config-0.3.24 \ platform-dirs-0.3.0 \ portaudio-rs-0.3.2 \ portaudio-sys-0.1.1 \ ppv-lite86-0.2.16 \ priority-queue-1.2.1 \ proc-macro-crate-1.1.3 \ proc-macro-hack-0.5.19 \ proc-macro2-1.0.36 \ protobuf-2.27.1 \ protobuf-codegen-2.27.1 \ protobuf-codegen-pure-2.27.1 \ psl-types-2.0.10 \ publicsuffix-2.1.1 \ quote-1.0.16 \ rand-0.8.5 \ rand_chacha-0.3.1 \ rand_core-0.6.3 \ rand_distr-0.4.3 \ redox_syscall-0.2.11 \ redox_termios-0.1.2 \ redox_users-0.4.2 \ regex-1.5.5 \ regex-syntax-0.6.25 \ remove_dir_all-0.5.3 \ reqwest-0.11.10 \ ring-0.16.20 \ rodio-0.14.0 \ rspotify-0.11.4 \ rspotify-http-0.11.4 \ rspotify-macros-0.11.4 \ rspotify-model-0.11.4 \ rustc-hash-1.1.0 \ rustc-serialize-0.3.24 \ rustc_version-0.2.3 \ rustc_version-0.4.0 \ rustls-0.20.4 \ rustversion-1.0.6 \ ryu-1.0.9 \ same-file-1.0.6 \ schannel-0.1.19 \ scopeguard-1.1.0 \ sct-0.7.0 \ security-framework-2.6.1 \ security-framework-sys-2.6.1 \ semver-0.9.0 \ semver-1.0.6 \ semver-parser-0.7.0 \ serde-1.0.136 \ serde_cbor-0.11.2 \ serde_derive-1.0.136 \ serde_json-1.0.79 \ serde_urlencoded-0.7.1 \ sha-1-0.9.8 \ sha-1-0.10.0 \ sha1-0.6.1 \ sha1_smol-1.0.0 \ sha2-0.10.2 \ shannon-0.2.0 \ shell-words-1.1.0 \ shlex-0.1.1 \ signal-hook-0.3.13 \ signal-hook-registry-1.4.0 \ slab-0.4.5 \ smallvec-1.8.0 \ socket2-0.4.4 \ spin-0.5.2 \ stable_deref_trait-1.2.0 \ standback-0.2.17 \ stdweb-0.1.3 \ stdweb-0.4.20 \ stdweb-derive-0.5.3 \ stdweb-internal-macros-0.2.9 \ stdweb-internal-runtime-0.1.5 \ strsim-0.10.0 \ strum-0.22.0 \ strum-0.24.0 \ strum_macros-0.22.0 \ strum_macros-0.24.0 \ subtle-2.4.1 \ syn-1.0.89 \ synstructure-0.12.6 \ tempfile-3.3.0 \ term_size-0.3.2 \ termcolor-1.1.3 \ termion-1.5.6 \ textwrap-0.15.0 \ thiserror-1.0.30 \ thiserror-impl-1.0.30 \ time-0.1.44 \ time-0.2.27 \ time-0.3.9 \ time-macros-0.1.1 \ time-macros-impl-0.1.2 \ tinyvec-1.5.1 \ tinyvec_macros-0.1.0 \ tokio-1.17.0 \ tokio-macros-1.7.0 \ tokio-native-tls-0.3.0 \ tokio-stream-0.1.8 \ tokio-util-0.6.9 \ toml-0.5.8 \ tower-service-0.3.1 \ tracing-0.1.32 \ tracing-core-0.1.23 \ tree_magic_mini-3.0.3 \ try-lock-0.2.3 \ typenum-1.15.0 \ unicode-bidi-0.3.7 \ unicode-normalization-0.1.19 \ unicode-segmentation-1.9.0 \ unicode-width-0.1.9 \ unicode-xid-0.2.2 \ untrusted-0.7.1 \ ureq-2.4.0 \ url-2.2.2 \ uuid-0.8.2 \ vcpkg-0.2.15 \ vergen-3.2.0 \ version_check-0.9.4 \ walkdir-2.3.2 \ want-0.3.0 \ wasi-0.10.0+wasi-snapshot-preview1 \ wasi-0.11.0+wasi-snapshot-preview1 \ wasm-bindgen-0.2.79 \ wasm-bindgen-backend-0.2.79 \ wasm-bindgen-futures-0.4.29 \ wasm-bindgen-macro-0.2.79 \ wasm-bindgen-macro-support-0.2.79 \ wasm-bindgen-shared-0.2.79 \ wayland-client-0.29.4 \ wayland-commons-0.29.4 \ wayland-protocols-0.29.4 \ wayland-scanner-0.29.4 \ wayland-sys-0.29.4 \ web-sys-0.3.56 \ webbrowser-0.6.0 \ webpki-0.22.0 \ webpki-roots-0.22.2 \ widestring-0.5.1 \ winapi-0.3.9 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-util-0.1.5 \ winapi-x86_64-pc-windows-gnu-0.4.0 \ windows-0.24.0 \ windows_i686_gnu-0.24.0 \ windows_i686_msvc-0.24.0 \ windows_x86_64_gnu-0.24.0 \ windows_x86_64_msvc-0.24.0 \ winreg-0.5.1 \ winreg-0.10.1 \ winrt-notification-0.5.1 \ wl-clipboard-rs-0.6.0 \ x11-clipboard-0.3.3 \ xcb-0.8.2 \ xi-unicode-0.3.0 \ xml-rs-0.8.4 \ zerocopy-0.3.0 \ zerocopy-derive-0.2.0 CARGO_FEATURES= --no-default-features cursive/pancurses-backend PLIST_FILES= bin/ncspot PORTDOCS= README.md OPTIONS_DEFINE= CLIPBOARD DOCS MPRIS NOTIFY PORTAUDIO PULSEAUDIO OPTIONS_DEFAULT= CLIPBOARD MPRIS NOTIFY PORTAUDIO CLIPBOARD_DESC= Support for accessing X11 clipboard MPRIS_DESC= D-Bus MPRIS support CLIPBOARD_USES= python:3.6+,build xorg CLIPBOARD_USE= XORG=xcb CLIPBOARD_BINARY_ALIAS= python3=${PYTHON_CMD} CLIPBOARD_VARS= CARGO_FEATURES+=share_clipboard MPRIS_VARS= CARGO_FEATURES+=mpris NOTIFY_VARS= CARGO_FEATURES+=notify PORTAUDIO_LIB_DEPENDS= libportaudio.so:audio/portaudio PORTAUDIO_VARS= CARGO_FEATURES+=portaudio_backend PULSEAUDIO_LIB_DEPENDS= libpulse.so:audio/pulseaudio PULSEAUDIO_USES= localbase:ldflags PULSEAUDIO_VARS= CARGO_FEATURES+=pulseaudio_backend post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/ncspot post-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_MAN} ${WRKSRC}/README.md ${STAGEDIR}${DOCSDIR} .include diff --git a/audio/shortwave/Makefile b/audio/shortwave/Makefile index 52971eb0ebdd..eeeb43fc676e 100644 --- a/audio/shortwave/Makefile +++ b/audio/shortwave/Makefile @@ -1,303 +1,303 @@ PORTNAME= shortwave DISTVERSION= 2.0.1 -PORTREVISION= 12 +PORTREVISION= 13 CATEGORIES= audio MAINTAINER= jbeich@FreeBSD.org COMMENT= Listen to internet radio LICENSE= GPLv3+ LICENSE_FILE= ${WRKSRC}/COPYING.md IGNORE= crashes with libadwaita >= 1.0 LIB_DEPENDS= libdbus-1.so:devel/dbus USES= cargo gettext gnome gstreamer meson pkgconfig python:build shebangfix sqlite ssl USE_GITLAB= yes USE_GNOME= gdkpixbuf2 gtk40 libadwaita USE_GSTREAMER= good libav soup vorbis GL_SITE= https://gitlab.gnome.org GL_ACCOUNT= World GL_PROJECT= Shortwave GL_COMMIT= 9bfc5ee2d857035cf0d3c72e211b3d76b85d7414 SHEBANG_FILES= build-aux/meson/postinstall.py MAKE_ENV= ${CARGO_ENV} GLIB_SCHEMAS= de.haeckerfelix.Shortwave.gschema.xml CARGO_CRATES= addr2line-0.14.1 \ adler-1.0.2 \ aho-corasick-0.7.15 \ anyhow-1.0.40 \ array-init-2.0.0 \ async-channel-1.6.1 \ async-executor-1.4.0 \ async-global-executor-2.0.2 \ async-io-1.4.0 \ async-lock-2.4.0 \ async-mutex-1.4.0 \ async-std-1.9.0 \ async-std-resolver-0.20.2 \ async-task-4.0.3 \ async-trait-0.1.50 \ atomic-waker-1.0.0 \ atty-0.2.14 \ autocfg-1.0.1 \ backtrace-0.3.57 \ bitflags-1.2.1 \ block-0.1.6 \ blocking-1.0.2 \ bumpalo-3.6.1 \ byteorder-1.4.3 \ bytes-1.0.1 \ c_linked_list-1.1.1 \ cache-padded-1.1.1 \ cc-1.0.67 \ cfg-expr-0.7.4 \ cfg-if-0.1.10 \ cfg-if-1.0.0 \ chrono-0.4.19 \ concurrent-queue-1.2.2 \ crossbeam-utils-0.8.3 \ ctor-0.1.20 \ curl-0.4.35 \ curl-sys-0.4.42+curl-7.76.0 \ data-encoding-2.3.2 \ dbus-0.6.5 \ diesel-1.4.6 \ diesel_derives-1.4.1 \ diesel_migrations-1.4.0 \ dns-parser-0.8.0 \ either-1.6.1 \ encoding_rs-0.8.28 \ enum-as-inner-0.3.3 \ env_logger-0.7.1 \ error-chain-0.12.4 \ event-listener-2.5.1 \ fastrand-1.4.0 \ field-offset-0.3.3 \ fnv-1.0.7 \ foreign-types-0.3.2 \ foreign-types-shared-0.1.1 \ form_urlencoded-1.0.1 \ fuchsia-zircon-0.3.3 \ fuchsia-zircon-sys-0.3.3 \ futures-0.3.14 \ futures-channel-0.3.14 \ futures-core-0.3.14 \ futures-executor-0.3.14 \ futures-io-0.3.14 \ futures-lite-1.11.3 \ futures-macro-0.3.14 \ futures-sink-0.3.14 \ futures-task-0.3.14 \ futures-util-0.3.14 \ gcc-0.3.55 \ get_if_addrs-0.5.3 \ get_if_addrs-sys-0.1.1 \ getrandom-0.2.2 \ gettext-rs-0.5.0 \ gettext-sys-0.19.9 \ gimli-0.23.0 \ glib-0.10.3 \ glib-macros-0.10.1 \ glib-sys-0.10.1 \ gloo-timers-0.2.1 \ gobject-sys-0.10.0 \ gtk-macros-0.3.0 \ hashbrown-0.9.1 \ heck-0.3.2 \ hermit-abi-0.1.18 \ hostname-0.3.1 \ http-0.2.4 \ humantime-1.3.0 \ idna-0.2.3 \ indexmap-1.6.2 \ instant-0.1.9 \ iovec-0.1.4 \ ipconfig-0.2.2 \ ipnet-2.3.0 \ isahc-1.3.1 \ itertools-0.9.0 \ itertools-0.10.0 \ itoa-0.4.7 \ js-sys-0.3.50 \ kernel32-sys-0.2.2 \ kv-log-macro-1.0.7 \ lazy_static-1.4.0 \ libc-0.2.93 \ libdbus-sys-0.2.1 \ libnghttp2-sys-0.1.6+1.43.0 \ libsqlite3-sys-0.20.1 \ libz-sys-1.1.2 \ linked-hash-map-0.5.4 \ locale_config-0.3.0 \ lock_api-0.4.3 \ log-0.4.14 \ lru-cache-0.1.2 \ malloc_buf-0.0.6 \ match_cfg-0.1.0 \ matches-0.1.8 \ mdns-0.3.2 \ memchr-2.3.4 \ memoffset-0.6.3 \ migrations_internals-1.4.1 \ migrations_macros-1.4.2 \ mime-0.3.16 \ miniz_oxide-0.4.4 \ mio-0.6.23 \ miow-0.2.2 \ mpris-player-0.6.1 \ muldiv-1.0.0 \ net2-0.2.37 \ num-integer-0.1.44 \ num-rational-0.4.0 \ num-traits-0.2.14 \ num_cpus-1.13.0 \ objc-0.2.7 \ objc-foundation-0.1.1 \ objc_id-0.1.1 \ object-0.23.0 \ once_cell-1.7.2 \ open-1.7.0 \ openssl-0.10.33 \ openssl-probe-0.1.2 \ openssl-sys-0.9.61 \ parking-2.0.0 \ parking_lot-0.11.1 \ parking_lot_core-0.8.3 \ paste-1.0.5 \ percent-encoding-2.1.0 \ pest-2.1.3 \ pin-project-1.0.7 \ pin-project-internal-1.0.7 \ pin-project-lite-0.2.6 \ pin-utils-0.1.0 \ pkg-config-0.3.19 \ polling-2.0.3 \ ppv-lite86-0.2.10 \ pretty-hex-0.2.1 \ pretty_env_logger-0.4.0 \ proc-macro-crate-0.1.5 \ proc-macro-crate-1.0.0 \ proc-macro-error-1.0.4 \ proc-macro-error-attr-1.0.4 \ proc-macro-hack-0.5.19 \ proc-macro-nested-0.1.7 \ proc-macro2-1.0.26 \ protobuf-2.20.0 \ protobuf-codegen-2.20.0 \ protoc-2.20.0 \ protoc-rust-2.20.0 \ quick-error-1.2.3 \ quote-1.0.9 \ r2d2-0.8.9 \ rand-0.8.3 \ rand_chacha-0.3.0 \ rand_core-0.6.2 \ rand_hc-0.3.0 \ redox_syscall-0.2.6 \ regex-1.4.6 \ regex-syntax-0.6.23 \ remove_dir_all-0.5.3 \ resolv-conf-0.7.0 \ rust_cast-0.16.0 \ rustc-demangle-0.1.18 \ rustc_version-0.3.3 \ ryu-1.0.5 \ sanitize-filename-0.3.0 \ schannel-0.1.19 \ scheduled-thread-pool-0.2.5 \ scopeguard-1.1.0 \ semver-0.11.0 \ semver-parser-0.10.2 \ serde-1.0.125 \ serde_derive-1.0.125 \ serde_json-1.0.64 \ serde_urlencoded-0.7.0 \ slab-0.4.3 \ sluice-0.5.4 \ smallvec-1.6.1 \ socket2-0.3.19 \ socket2-0.4.0 \ strum-0.18.0 \ strum-0.20.0 \ strum_macros-0.18.0 \ strum_macros-0.20.1 \ syn-1.0.70 \ system-deps-1.3.2 \ system-deps-3.1.1 \ tempfile-3.2.0 \ termcolor-1.1.2 \ thiserror-1.0.24 \ thiserror-impl-1.0.24 \ time-0.1.44 \ tinyvec-1.2.0 \ tinyvec_macros-0.1.0 \ toml-0.5.8 \ tracing-0.1.25 \ tracing-attributes-0.1.15 \ tracing-core-0.1.17 \ tracing-futures-0.2.5 \ trust-dns-proto-0.20.2 \ trust-dns-resolver-0.20.2 \ ucd-trie-0.1.3 \ unicode-bidi-0.3.5 \ unicode-normalization-0.1.17 \ unicode-segmentation-1.7.1 \ unicode-xid-0.2.1 \ url-2.2.1 \ value-bag-1.0.0-alpha.6 \ vcpkg-0.2.12 \ vec-arena-1.1.0 \ version-compare-0.0.10 \ version-compare-0.0.11 \ version_check-0.9.3 \ waker-fn-1.1.0 \ wasi-0.10.0+wasi-snapshot-preview1 \ wasm-bindgen-0.2.73 \ wasm-bindgen-backend-0.2.73 \ wasm-bindgen-futures-0.4.23 \ wasm-bindgen-macro-0.2.73 \ wasm-bindgen-macro-support-0.2.73 \ wasm-bindgen-shared-0.2.73 \ web-sys-0.3.50 \ wepoll-sys-3.0.1 \ which-4.1.0 \ widestring-0.4.3 \ winapi-0.2.8 \ winapi-0.3.9 \ winapi-build-0.1.1 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-util-0.1.5 \ winapi-x86_64-pc-windows-gnu-0.4.0 \ winreg-0.6.2 \ ws2_32-sys-0.2.1 \ gstreamer,gstreamer-audio,gstreamer-audio-sys,gstreamer-base,gstreamer-base-sys,gstreamer-sys@git+https://gitlab.freedesktop.org/gstreamer/gstreamer-rs\#f00c57cd6f2a0912e04c10887cedbe95be7d5dea \ cairo-rs,cairo-sys-rs,gdk-pixbuf,gdk-pixbuf-sys,gio,gio-sys,glib,glib-macros,glib-sys,gobject-sys,graphene-rs,graphene-sys,pango,pango-sys@git+https://github.com/gtk-rs/gtk3-rs\#1ca4fbcc30ec882f6079f26018c30ef1ceb8a2e2 \ gdk4,gdk4-sys,gsk4,gsk4-sys,gtk4,gtk4-macros,gtk4-sys@git+https://github.com/gtk-rs/gtk4-rs\#534f63e66a2a3883770fe110a8a556a4b40f84b3 \ libadwaita,libadwaita-sys@git+https://gitlab.gnome.org/bilelmoussaoui/libadwaita-rs\#2d09b6b566bc0fa2497612768cf0c41f582acdd7 CARGO_BUILD= no CARGO_INSTALL= no CARGO_TEST= no OPTIONS_DEFINE= PULSEAUDIO OPTIONS_DEFAULT=PULSEAUDIO PULSEAUDIO_USE= GSTREAMER=pulse pre-patch: # Chase gtk-rs -> gtk3-rs rename for USES=cargo patching @${GREP} --include='*/Cargo.toml' -lr 'git.*gtk-rs' ${WRKDIR} | ${XARGS} ${REINPLACE_CMD} \ 's,\(gtk-rs\)/gtk-rs,\1/gtk3-rs,' post-patch: @${REINPLACE_CMD} -e '/dependency.*openssl/d' \ -e '/gstreamer.*bad/d' \ -e "/vcs_tag/s/=.*/= '${DISTVERSIONFULL}'/" \ ${WRKSRC}/meson.build # Make each cargo subcommand very verbose @${REINPLACE_CMD} -e '/cargo/s/ --/&verbose&verbose&/' \ ${WRKSRC}/build-aux/cargo.sh .include diff --git a/audio/spotify-tui/Makefile b/audio/spotify-tui/Makefile index 2048de9a1443..0973990cafc4 100644 --- a/audio/spotify-tui/Makefile +++ b/audio/spotify-tui/Makefile @@ -1,297 +1,297 @@ PORTNAME= spotify-tui DISTVERSIONPREFIX= v DISTVERSION= 0.25.0 -PORTREVISION= 10 +PORTREVISION= 11 CATEGORIES= audio MAINTAINER= lcook@FreeBSD.org COMMENT= Spotify for the terminal written in Rust LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= cargo localbase:ldflags python:3.6+,build ssl xorg USE_GITHUB= yes GH_ACCOUNT= Rigellute USE_XORG= xcb CARGO_CRATES= addr2line-0.14.1 \ adler-0.2.3 \ adler32-1.2.0 \ aho-corasick-0.7.13 \ ansi_term-0.11.0 \ anyhow-1.0.43 \ arboard-1.2.0 \ arrayref-0.3.6 \ arrayvec-0.5.1 \ atty-0.2.14 \ autocfg-0.1.7 \ autocfg-1.0.0 \ backtrace-0.3.56 \ base64-0.10.1 \ base64-0.11.0 \ base64-0.12.3 \ bitflags-1.2.1 \ blake2b_simd-0.5.10 \ block-0.1.6 \ bumpalo-3.4.0 \ bytemuck-1.4.1 \ byteorder-1.3.4 \ bytes-0.4.12 \ bytes-0.5.6 \ cassowary-0.3.0 \ cc-1.0.58 \ cfg-if-0.1.10 \ cfg-if-1.0.0 \ chrono-0.4.13 \ clap-2.33.3 \ clipboard-win-4.0.3 \ cloudabi-0.0.3 \ cloudabi-0.1.0 \ color_quant-1.1.0 \ constant_time_eq-0.1.5 \ core-foundation-0.7.0 \ core-foundation-0.9.1 \ core-foundation-sys-0.7.0 \ core-foundation-sys-0.8.2 \ core-graphics-0.21.0 \ crc32fast-1.2.1 \ crossbeam-utils-0.7.2 \ crossterm-0.20.0 \ crossterm_winapi-0.8.0 \ darling-0.9.0 \ darling_core-0.9.0 \ darling_macro-0.9.0 \ deflate-0.8.6 \ derive_builder-0.7.2 \ derive_builder_core-0.5.0 \ dirs-3.0.1 \ dirs-sys-0.3.5 \ dotenv-0.13.0 \ dtoa-0.4.6 \ either-1.5.3 \ encoding_rs-0.8.23 \ env_logger-0.6.2 \ error-code-2.0.2 \ failure-0.1.8 \ failure_derive-0.1.8 \ fnv-1.0.7 \ foreign-types-0.3.2 \ foreign-types-shared-0.1.1 \ fuchsia-cprng-0.1.1 \ fuchsia-zircon-0.3.3 \ fuchsia-zircon-sys-0.3.3 \ futures-0.3.5 \ futures-channel-0.3.5 \ futures-core-0.3.5 \ futures-executor-0.3.5 \ futures-io-0.3.5 \ futures-macro-0.3.5 \ futures-sink-0.3.5 \ futures-task-0.3.5 \ futures-util-0.3.5 \ gethostname-0.2.1 \ getrandom-0.1.14 \ getrandom-0.2.2 \ gimli-0.23.0 \ h2-0.2.6 \ hashbrown-0.8.1 \ hermit-abi-0.1.15 \ http-0.2.1 \ http-body-0.3.1 \ httparse-1.3.4 \ humantime-1.3.0 \ hyper-0.13.7 \ hyper-tls-0.4.3 \ ident_case-1.0.1 \ idna-0.1.5 \ idna-0.2.0 \ image-0.23.12 \ indexmap-1.5.0 \ instant-0.1.7 \ iovec-0.1.4 \ itertools-0.8.2 \ itoa-0.4.6 \ jpeg-decoder-0.1.20 \ js-sys-0.3.42 \ kernel32-sys-0.2.2 \ lazy_static-1.4.0 \ libc-0.2.82 \ linked-hash-map-0.5.3 \ lock_api-0.4.1 \ log-0.4.11 \ malloc_buf-0.0.6 \ matches-0.1.8 \ memchr-2.3.3 \ mime-0.3.16 \ mime_guess-2.0.3 \ miniz_oxide-0.3.7 \ miniz_oxide-0.4.3 \ mio-0.6.23 \ mio-0.7.0 \ mio-named-pipes-0.1.7 \ mio-uds-0.6.8 \ miow-0.2.2 \ miow-0.3.5 \ native-tls-0.2.4 \ net2-0.2.37 \ nix-0.20.0 \ ntapi-0.3.4 \ num-integer-0.1.43 \ num-iter-0.1.42 \ num-rational-0.3.2 \ num-traits-0.2.12 \ num_cpus-1.13.0 \ objc-0.2.7 \ objc-foundation-0.1.1 \ objc_id-0.1.1 \ object-0.23.0 \ once_cell-1.4.0 \ openssl-0.10.30 \ openssl-probe-0.1.2 \ openssl-sys-0.9.58 \ parking_lot-0.11.0 \ parking_lot_core-0.8.0 \ percent-encoding-1.0.1 \ percent-encoding-2.1.0 \ pin-project-0.4.22 \ pin-project-internal-0.4.22 \ pin-project-lite-0.1.7 \ pin-utils-0.1.0 \ pkg-config-0.3.18 \ png-0.16.8 \ ppv-lite86-0.2.8 \ proc-macro-hack-0.5.16 \ proc-macro-nested-0.1.6 \ proc-macro2-0.4.30 \ proc-macro2-1.0.24 \ quick-error-1.2.3 \ quote-0.6.13 \ quote-1.0.7 \ rand-0.6.5 \ rand-0.7.3 \ rand-0.8.3 \ rand_chacha-0.1.1 \ rand_chacha-0.2.2 \ rand_chacha-0.3.0 \ rand_core-0.3.1 \ rand_core-0.4.2 \ rand_core-0.5.1 \ rand_core-0.6.2 \ rand_hc-0.1.0 \ rand_hc-0.2.0 \ rand_hc-0.3.0 \ rand_isaac-0.1.1 \ rand_jitter-0.1.4 \ rand_os-0.1.3 \ rand_pcg-0.1.2 \ rand_xorshift-0.1.1 \ random-0.12.2 \ rdrand-0.4.0 \ redox_syscall-0.1.57 \ redox_users-0.3.4 \ regex-1.3.9 \ regex-syntax-0.6.18 \ remove_dir_all-0.5.3 \ reqwest-0.10.6 \ rspotify-0.10.0 \ rust-argon2-0.7.0 \ rustc-demangle-0.1.16 \ rustc-serialize-0.3.24 \ ryu-1.0.5 \ schannel-0.1.19 \ scopeguard-1.1.0 \ security-framework-0.4.4 \ security-framework-sys-0.4.3 \ serde-1.0.128 \ serde_derive-1.0.128 \ serde_json-1.0.64 \ serde_urlencoded-0.6.1 \ serde_yaml-0.8.19 \ signal-hook-0.3.9 \ signal-hook-mio-0.2.1 \ signal-hook-registry-1.4.0 \ slab-0.4.2 \ smallvec-1.4.1 \ socket2-0.3.12 \ str-buf-1.0.5 \ strsim-0.7.0 \ strsim-0.8.0 \ syn-0.15.44 \ syn-1.0.60 \ synstructure-0.12.4 \ tempfile-3.1.0 \ termcolor-1.1.0 \ textwrap-0.11.0 \ thiserror-1.0.20 \ thiserror-impl-1.0.20 \ thread_local-1.0.1 \ tiff-0.6.1 \ time-0.1.43 \ tinyvec-0.3.3 \ tokio-0.2.25 \ tokio-macros-0.2.6 \ tokio-socks-0.2.2 \ tokio-tls-0.3.1 \ tokio-util-0.3.1 \ tower-service-0.3.0 \ tracing-0.1.17 \ tracing-core-0.1.11 \ try-lock-0.2.3 \ tui-0.16.0 \ unicase-2.6.0 \ unicode-bidi-0.3.4 \ unicode-normalization-0.1.13 \ unicode-segmentation-1.6.0 \ unicode-width-0.1.8 \ unicode-xid-0.1.0 \ unicode-xid-0.2.1 \ url-1.7.2 \ url-2.1.1 \ vcpkg-0.2.10 \ vec_map-0.8.2 \ version_check-0.9.2 \ want-0.3.0 \ wasi-0.9.0+wasi-snapshot-preview1 \ wasi-0.10.2+wasi-snapshot-preview1 \ wasm-bindgen-0.2.65 \ wasm-bindgen-backend-0.2.65 \ wasm-bindgen-futures-0.4.15 \ wasm-bindgen-macro-0.2.65 \ wasm-bindgen-macro-support-0.2.65 \ wasm-bindgen-shared-0.2.65 \ web-sys-0.3.42 \ webbrowser-0.5.5 \ weezl-0.1.3 \ widestring-0.4.2 \ winapi-0.2.8 \ winapi-0.3.9 \ winapi-build-0.1.1 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-util-0.1.5 \ winapi-wsapoll-0.1.1 \ winapi-x86_64-pc-windows-gnu-0.4.0 \ winreg-0.7.0 \ ws2_32-sys-0.2.1 \ x11rb-0.8.1 \ yaml-rust-0.4.5 BINARY_ALIAS= python3=${PYTHON_CMD} SUB_FILES= pkg-message PLIST_FILES= bin/spt PORTDOCS= CHANGELOG.md README.md OPTIONS_DEFINE= DOCS SPOTIFYD SPOTIFYD_DESC= Lightweight Spotify client daemon SPOTIFYD_RUN_DEPENDS= spotifyd:audio/spotifyd post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/spt post-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR} .include diff --git a/audio/spotifyd/Makefile b/audio/spotifyd/Makefile index 876c8e5fe2f2..55afcbdbcdd8 100644 --- a/audio/spotifyd/Makefile +++ b/audio/spotifyd/Makefile @@ -1,446 +1,446 @@ PORTNAME= spotifyd DISTVERSIONPREFIX= v DISTVERSION= 0.3.3 -PORTREVISION= 6 +PORTREVISION= 7 CATEGORIES= audio MAINTAINER= rodrigo@FreeBSD.org COMMENT= Spotify daemon LICENSE= GPLv3 LICENSE_FILE= ${WRKSRC}/cargo-crates/ansi_term-0.11.0/LICENCE LIB_DEPENDS= libogg.so:audio/libogg USES= cargo ssl:build USE_GITHUB= yes GH_ACCOUNT= Spotifyd USE_RC_SUBR= spotifyd CARGO_CRATES= addr2line-0.14.1 \ adler-0.2.3 \ aes-0.6.0 \ aes-ctr-0.6.0 \ aes-soft-0.6.4 \ aesni-0.10.0 \ aho-corasick-0.7.6 \ alsa-0.5.0 \ alsa-sys-0.3.1 \ ansi_term-0.11.0 \ async-trait-0.1.50 \ atty-0.2.14 \ autocfg-0.1.7 \ autocfg-1.0.0 \ backtrace-0.3.55 \ base64-0.10.1 \ base64-0.11.0 \ base64-0.13.0 \ bindgen-0.51.1 \ bitflags-1.2.1 \ block-buffer-0.9.0 \ block-modes-0.7.0 \ block-padding-0.2.1 \ boxfnonce-0.1.1 \ bumpalo-3.2.0 \ byteorder-1.4.3 \ bytes-0.4.12 \ bytes-0.5.6 \ bytes-1.0.1 \ c2-chacha-0.2.3 \ cc-1.0.50 \ cesu8-1.1.0 \ cexpr-0.3.6 \ cfg-if-0.1.10 \ cfg-if-1.0.0 \ chrono-0.4.11 \ cipher-0.2.5 \ clang-sys-0.28.1 \ clap-2.33.0 \ cloudabi-0.0.3 \ color-eyre-0.5.10 \ color-spantrace-0.1.6 \ combine-4.6.0 \ core-foundation-0.7.0 \ core-foundation-0.9.1 \ core-foundation-sys-0.6.2 \ core-foundation-sys-0.7.0 \ core-foundation-sys-0.8.2 \ coreaudio-rs-0.10.0 \ coreaudio-sys-0.2.3 \ cpal-0.13.3 \ cpuid-bool-0.1.2 \ crossbeam-utils-0.6.6 \ crypto-mac-0.10.0 \ crypto-mac-0.11.0 \ ctr-0.6.0 \ daemonize-0.4.1 \ darling-0.9.0 \ darling-0.10.2 \ darling_core-0.9.0 \ darling_core-0.10.2 \ darling_macro-0.9.0 \ darling_macro-0.10.2 \ dbus-0.2.3 \ dbus-0.9.3 \ dbus-crossroads-0.4.0 \ dbus-tokio-0.7.3 \ derefable-0.1.0 \ derivative-2.2.0 \ derive_builder-0.7.2 \ derive_builder_core-0.5.0 \ digest-0.9.0 \ dotenv-0.13.0 \ dtoa-0.4.4 \ either-1.5.3 \ encoding_rs-0.8.22 \ env_logger-0.6.2 \ env_logger-0.7.1 \ error-chain-0.11.0 \ eyre-0.6.5 \ failure-0.1.7 \ failure_derive-0.1.7 \ fern-0.6.0 \ fnv-1.0.6 \ foreign-types-0.3.2 \ foreign-types-shared-0.1.1 \ form_urlencoded-1.0.1 \ fuchsia-cprng-0.1.1 \ fuchsia-zircon-0.3.3 \ fuchsia-zircon-sys-0.3.3 \ futures-0.1.29 \ futures-0.3.15 \ futures-channel-0.3.15 \ futures-core-0.3.15 \ futures-executor-0.3.15 \ futures-io-0.3.15 \ futures-macro-0.3.15 \ futures-sink-0.3.15 \ futures-task-0.3.15 \ futures-util-0.3.15 \ gcc-0.3.55 \ generic-array-0.14.4 \ gethostname-0.2.1 \ getrandom-0.1.14 \ getrandom-0.2.3 \ gimli-0.23.0 \ glob-0.3.0 \ h2-0.2.1 \ h2-0.3.3 \ hashbrown-0.11.2 \ heck-0.3.1 \ hermit-abi-0.1.6 \ hex-0.4.2 \ hkdf-0.10.0 \ hmac-0.10.1 \ hmac-0.11.0 \ hostname-0.3.1 \ http-0.2.0 \ http-body-0.3.1 \ http-body-0.4.2 \ httparse-1.3.4 \ httpdate-0.3.2 \ humantime-1.3.0 \ hyper-0.13.2 \ hyper-0.14.5 \ hyper-tls-0.4.1 \ hyper-tls-0.5.0 \ ident_case-1.0.1 \ idna-0.1.5 \ idna-0.2.0 \ if-addrs-0.6.7 \ if-addrs-sys-0.3.2 \ indenter-0.3.2 \ indexmap-1.7.0 \ instant-0.1.9 \ iovec-0.1.4 \ ipnet-2.3.1 \ itertools-0.8.2 \ itoa-0.4.4 \ jni-0.18.0 \ jni-sys-0.3.0 \ jobserver-0.1.22 \ js-sys-0.3.51 \ kernel32-sys-0.2.2 \ keyring-0.10.1 \ lazy_static-1.4.0 \ lewton-0.10.2 \ libc-0.2.98 \ libdbus-sys-0.2.1 \ libloading-0.5.2 \ libmdns-0.6.2 \ libpulse-binding-2.23.1 \ libpulse-simple-binding-2.23.0 \ libpulse-simple-sys-1.16.1 \ libpulse-sys-1.18.0 \ librespot-audio-0.2.0 \ librespot-connect-0.2.0 \ librespot-core-0.2.0 \ librespot-metadata-0.2.0 \ librespot-playback-0.2.0 \ librespot-protocol-0.2.0 \ librespot-tremor-0.2.0 \ lock_api-0.3.3 \ lock_api-0.4.4 \ log-0.4.8 \ mach-0.3.2 \ match_cfg-0.1.0 \ matches-0.1.8 \ maybe-uninit-2.0.0 \ memchr-2.3.0 \ mime-0.3.16 \ mime_guess-2.0.1 \ miniz_oxide-0.4.3 \ mio-0.6.23 \ mio-0.7.13 \ miow-0.2.2 \ miow-0.3.7 \ multimap-0.8.3 \ native-tls-0.2.7 \ ndk-0.3.0 \ ndk-glue-0.3.0 \ ndk-macro-0.2.0 \ ndk-sys-0.2.1 \ net2-0.2.37 \ nix-0.20.0 \ nom-4.2.3 \ ntapi-0.3.6 \ num-0.3.1 \ num-bigint-0.3.1 \ num-bigint-0.4.0 \ num-complex-0.3.1 \ num-derive-0.3.3 \ num-integer-0.1.44 \ num-iter-0.1.42 \ num-rational-0.3.2 \ num-traits-0.2.14 \ num_cpus-1.11.1 \ num_enum-0.5.1 \ num_enum_derive-0.5.1 \ object-0.22.0 \ oboe-0.4.2 \ oboe-sys-0.4.2 \ ogg-0.8.0 \ ogg-sys-0.0.9 \ once_cell-1.5.2 \ opaque-debug-0.3.0 \ openssl-0.10.35 \ openssl-probe-0.1.2 \ openssl-sys-0.9.65 \ owo-colors-1.2.1 \ parking_lot-0.9.0 \ parking_lot-0.11.1 \ parking_lot_core-0.6.2 \ parking_lot_core-0.8.3 \ pbkdf2-0.8.0 \ peeking_take_while-0.1.2 \ percent-encoding-1.0.1 \ percent-encoding-2.1.0 \ pin-project-0.4.8 \ pin-project-1.0.7 \ pin-project-internal-0.4.8 \ pin-project-internal-1.0.7 \ pin-project-lite-0.1.4 \ pin-project-lite-0.2.4 \ pin-utils-0.1.0 \ pkg-config-0.3.17 \ portaudio-rs-0.3.2 \ portaudio-sys-0.1.1 \ ppv-lite86-0.2.10 \ priority-queue-1.1.1 \ proc-macro-crate-0.1.5 \ proc-macro-error-1.0.2 \ proc-macro-error-attr-1.0.2 \ proc-macro-hack-0.5.19 \ proc-macro-nested-0.1.3 \ proc-macro2-0.4.30 \ proc-macro2-1.0.27 \ protobuf-2.14.0 \ protobuf-codegen-2.14.0 \ protobuf-codegen-pure-2.14.0 \ quick-error-1.2.3 \ quote-0.6.13 \ quote-1.0.9 \ rand-0.6.5 \ rand-0.7.3 \ rand-0.8.4 \ rand_chacha-0.1.1 \ rand_chacha-0.2.1 \ rand_chacha-0.3.1 \ rand_core-0.3.1 \ rand_core-0.4.2 \ rand_core-0.5.1 \ rand_core-0.6.3 \ rand_hc-0.1.0 \ rand_hc-0.2.0 \ rand_hc-0.3.1 \ rand_isaac-0.1.1 \ rand_jitter-0.1.4 \ rand_os-0.1.3 \ rand_pcg-0.1.2 \ rand_xorshift-0.1.1 \ random-0.12.2 \ rdrand-0.4.0 \ redox_syscall-0.1.56 \ redox_syscall-0.2.9 \ regex-1.3.3 \ regex-syntax-0.6.13 \ remove_dir_all-0.5.2 \ reqwest-0.10.1 \ reqwest-0.11.4 \ rodio-0.13.1 \ rspotify-0.8.0 \ rustc-demangle-0.1.16 \ rustc-hash-1.0.1 \ rustc-serialize-0.3.24 \ rustc_version-0.2.3 \ ryu-1.0.2 \ same-file-1.0.6 \ schannel-0.1.16 \ scopeguard-1.1.0 \ secret-service-1.1.3 \ security-framework-0.4.4 \ security-framework-2.3.1 \ security-framework-sys-0.4.3 \ security-framework-sys-2.3.0 \ semver-0.9.0 \ semver-parser-0.7.0 \ serde-1.0.115 \ serde_derive-1.0.115 \ serde_json-1.0.44 \ serde_urlencoded-0.6.1 \ serde_urlencoded-0.7.0 \ sha-1-0.9.1 \ sha2-0.9.2 \ shannon-0.2.0 \ sharded-slab-0.1.1 \ shell-words-1.0.0 \ shlex-0.1.1 \ signal-hook-registry-1.4.0 \ slab-0.4.2 \ smallvec-0.6.13 \ smallvec-1.6.1 \ socket2-0.4.0 \ stdweb-0.1.3 \ strsim-0.7.0 \ strsim-0.8.0 \ strsim-0.9.3 \ structopt-0.3.17 \ structopt-derive-0.4.10 \ subtle-2.4.0 \ syn-0.15.44 \ syn-1.0.73 \ syn-mid-0.5.0 \ synstructure-0.12.3 \ syslog-4.0.1 \ tempfile-3.1.0 \ termcolor-1.1.0 \ textwrap-0.11.0 \ thiserror-1.0.26 \ thiserror-impl-1.0.26 \ thread_local-1.0.1 \ time-0.1.42 \ tinyvec-1.2.0 \ tinyvec_macros-0.1.0 \ tokio-0.2.25 \ tokio-1.8.1 \ tokio-compat-0.1.6 \ tokio-compat-02-0.2.0 \ tokio-current-thread-0.1.6 \ tokio-executor-0.1.9 \ tokio-io-0.1.13 \ tokio-macros-1.3.0 \ tokio-native-tls-0.3.0 \ tokio-reactor-0.1.11 \ tokio-socks-0.2.0 \ tokio-stream-0.1.7 \ tokio-sync-0.1.7 \ tokio-timer-0.2.12 \ tokio-tls-0.3.0 \ tokio-util-0.2.0 \ tokio-util-0.6.7 \ toml-0.5.8 \ tower-service-0.3.0 \ tracing-0.1.22 \ tracing-attributes-0.1.11 \ tracing-core-0.1.17 \ tracing-error-0.1.2 \ tracing-subscriber-0.2.15 \ try-lock-0.2.2 \ typenum-1.12.0 \ unicase-2.6.0 \ unicode-bidi-0.3.4 \ unicode-normalization-0.1.11 \ unicode-segmentation-1.6.0 \ unicode-width-0.1.7 \ unicode-xid-0.1.0 \ unicode-xid-0.2.0 \ url-1.7.2 \ url-2.2.2 \ uuid-0.8.2 \ vcpkg-0.2.8 \ vec_map-0.8.1 \ vergen-3.0.4 \ version_check-0.1.5 \ version_check-0.9.1 \ walkdir-2.3.2 \ want-0.3.0 \ wasi-0.9.0+wasi-snapshot-preview1 \ wasi-0.10.2+wasi-snapshot-preview1 \ wasm-bindgen-0.2.74 \ wasm-bindgen-backend-0.2.74 \ wasm-bindgen-futures-0.4.24 \ wasm-bindgen-macro-0.2.74 \ wasm-bindgen-macro-support-0.2.74 \ wasm-bindgen-shared-0.2.74 \ web-sys-0.3.51 \ webbrowser-0.5.2 \ whoami-0.9.0 \ widestring-0.4.0 \ winapi-0.2.8 \ winapi-0.3.9 \ winapi-build-0.1.1 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-util-0.1.3 \ winapi-x86_64-pc-windows-gnu-0.4.0 \ winreg-0.6.2 \ winreg-0.7.0 \ ws2_32-sys-0.2.1 \ xdg-2.2.0 \ zerocopy-0.3.0 \ zerocopy-derive-0.2.0 CARGO_FEATURES= --no-default-features PLIST_FILES= bin/spotifyd \ "@sample etc/spotifyd.conf.sample" PORTDOCS= README.md OPTIONS_DEFINE= DBUS DOCS PORTAUDIO PULSEAUDIO ALSA OPTIONS_DEFAULT= PORTAUDIO DBUS_DESC= D-Bus MPRIS support DBUS_LIB_DEPENDS= libdbus-1.so:devel/dbus DBUS_VARS= CARGO_FEATURES+=dbus_mpris ALSA_LIB_DEPENDS= libasound_module_pcm_oss.so:audio/alsa-plugins ALSA_VARS= CARGO_FEATURES+=alsa_backend PORTAUDIO_LIB_DEPENDS= libportaudio.so:audio/portaudio PORTAUDIO_VARS= CARGO_FEATURES+=portaudio_backend PULSEAUDIO_LIB_DEPENDS= libpulse.so:audio/pulseaudio PULSEAUDIO_VARS= CARGO_FEATURES+=pulseaudio_backend post-patch: @${REINPLACE_CMD} 's,/etc/,${PREFIX}/etc/,g' ${WRKSRC}/src/config.rs post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/spotifyd ${INSTALL_DATA} ${FILESDIR}/spotifyd.conf ${STAGEDIR}${PREFIX}/etc/spotifyd.conf.sample post-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_MAN} ${WRKSRC}/README.md ${STAGEDIR}${DOCSDIR} .include diff --git a/benchmarks/hyperfine/Makefile b/benchmarks/hyperfine/Makefile index bd712e33675a..64eed459be0a 100644 --- a/benchmarks/hyperfine/Makefile +++ b/benchmarks/hyperfine/Makefile @@ -1,126 +1,126 @@ PORTNAME= hyperfine DISTVERSIONPREFIX= v DISTVERSION= 1.14.0 -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= benchmarks MAINTAINER= pizzamig@FreeBSD.org COMMENT= Command-line benchmarking tool LICENSE= APACHE20 MIT LICENSE_COMB= dual LICENSE_FILE_APACHE20= ${WRKSRC}/LICENSE-APACHE LICENSE_FILE_MIT= ${WRKSRC}/LICENSE-MIT BROKEN_i386= LLVM ERROR: No support for lowering a copy into EFLAGS when used by this instruction USES= cargo USE_GITHUB= yes GH_ACCOUNT= sharkdp PLIST_FILES= bin/hyperfine CARGO_CRATES= aho-corasick-0.7.18 \ anyhow-1.0.57 \ approx-0.5.1 \ arrayvec-0.7.2 \ assert_cmd-2.0.4 \ atty-0.2.14 \ autocfg-0.1.8 \ autocfg-1.1.0 \ bitflags-1.3.2 \ bstr-0.2.17 \ cfg-if-1.0.0 \ clap-3.1.14 \ clap_complete-3.1.1 \ clap_lex-0.2.0 \ cloudabi-0.0.3 \ colored-2.0.0 \ console-0.15.0 \ csv-1.1.6 \ csv-core-0.1.10 \ difflib-0.4.0 \ doc-comment-0.3.3 \ either-1.6.1 \ encode_unicode-0.3.6 \ fastrand-1.7.0 \ float-cmp-0.9.0 \ fuchsia-cprng-0.1.1 \ getrandom-0.2.5 \ hashbrown-0.11.2 \ hermit-abi-0.1.19 \ indexmap-1.8.0 \ indicatif-0.16.2 \ instant-0.1.12 \ itertools-0.10.3 \ itoa-0.4.8 \ itoa-1.0.1 \ lazy_static-1.4.0 \ libc-0.2.125 \ memchr-2.4.1 \ memoffset-0.6.5 \ nix-0.24.1 \ normalize-line-endings-0.3.0 \ num-0.2.1 \ num-bigint-0.2.6 \ num-complex-0.2.4 \ num-integer-0.1.44 \ num-iter-0.1.42 \ num-rational-0.2.4 \ num-traits-0.2.14 \ number_prefix-0.4.0 \ once_cell-1.10.0 \ os_str_bytes-6.0.0 \ ppv-lite86-0.2.16 \ predicates-2.1.1 \ predicates-core-1.0.3 \ predicates-tree-1.0.5 \ proc-macro2-1.0.36 \ quote-1.0.15 \ rand-0.6.5 \ rand-0.8.5 \ rand_chacha-0.1.1 \ rand_chacha-0.3.1 \ rand_core-0.3.1 \ rand_core-0.4.2 \ rand_core-0.6.3 \ rand_hc-0.1.0 \ rand_isaac-0.1.1 \ rand_jitter-0.1.4 \ rand_os-0.1.3 \ rand_pcg-0.1.2 \ rand_xorshift-0.1.1 \ rdrand-0.4.0 \ redox_syscall-0.2.11 \ regex-1.5.4 \ regex-automata-0.1.10 \ regex-syntax-0.6.25 \ remove_dir_all-0.5.3 \ rust_decimal-1.23.1 \ ryu-1.0.9 \ serde-1.0.136 \ serde_derive-1.0.136 \ serde_json-1.0.80 \ shell-words-1.1.0 \ statistical-1.0.0 \ strsim-0.10.0 \ syn-1.0.86 \ tempfile-3.3.0 \ termcolor-1.1.3 \ terminal_size-0.1.17 \ termtree-0.2.4 \ textwrap-0.15.0 \ thiserror-1.0.31 \ thiserror-impl-1.0.31 \ unicode-xid-0.2.2 \ wait-timeout-0.2.0 \ wasi-0.10.2+wasi-snapshot-preview1 \ winapi-0.3.9 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-util-0.1.5 \ winapi-x86_64-pc-windows-gnu-0.4.0 post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/hyperfine .include diff --git a/benchmarks/inferno/Makefile b/benchmarks/inferno/Makefile index b0e2e4b1476a..0243f1584aad 100644 --- a/benchmarks/inferno/Makefile +++ b/benchmarks/inferno/Makefile @@ -1,155 +1,156 @@ PORTNAME= inferno DISTVERSIONPREFIX= v DISTVERSION= 0.11.7 +PORTREVISION= 1 CATEGORIES= benchmarks MAINTAINER= yuri@FreeBSD.org COMMENT= Stack trace visualizer, a Rust port of flamegraph LICENSE= CDDL LICENSE_FILE= ${WRKSRC}/LICENSE USES= cargo USE_GITHUB= yes GH_ACCOUNT= jonhoo CARGO_CRATES= adler32-1.2.0 \ ahash-0.7.6 \ ansi_term-0.12.1 \ arrayvec-0.4.12 \ assert_cmd-2.0.4 \ atty-0.2.14 \ autocfg-1.1.0 \ bitflags-1.3.2 \ bstr-0.2.17 \ bumpalo-3.10.0 \ bytemuck-1.11.0 \ cast-0.3.0 \ cfg-if-1.0.0 \ clap-2.34.0 \ clap-3.2.15 \ clap_derive-3.2.15 \ clap_lex-0.2.4 \ crc32fast-1.3.2 \ criterion-0.3.6 \ criterion-plot-0.4.5 \ crossbeam-channel-0.5.6 \ crossbeam-deque-0.8.2 \ crossbeam-epoch-0.9.10 \ crossbeam-utils-0.8.11 \ csv-1.1.6 \ csv-core-0.1.10 \ ctor-0.1.22 \ dashmap-5.3.4 \ diff-0.1.13 \ difflib-0.4.0 \ doc-comment-0.3.3 \ either-1.7.0 \ env_logger-0.9.0 \ getrandom-0.2.7 \ half-1.8.2 \ hashbrown-0.12.3 \ heck-0.4.0 \ hermit-abi-0.1.19 \ indexmap-1.9.1 \ itertools-0.10.3 \ itoa-0.4.8 \ itoa-1.0.2 \ js-sys-0.3.59 \ lazy_static-1.4.0 \ libc-0.2.126 \ libflate-1.2.0 \ libflate_lz77-1.1.0 \ lock_api-0.4.7 \ log-0.4.17 \ maplit-1.0.2 \ memchr-2.5.0 \ memoffset-0.6.5 \ nodrop-0.1.14 \ num-format-0.4.0 \ num-traits-0.2.15 \ num_cpus-1.13.1 \ once_cell-1.13.0 \ oorandom-11.1.3 \ os_str_bytes-6.2.0 \ output_vt100-0.1.3 \ parking_lot_core-0.9.3 \ plotters-0.3.2 \ plotters-backend-0.3.4 \ plotters-svg-0.3.2 \ ppv-lite86-0.2.16 \ predicates-2.1.1 \ predicates-core-1.0.3 \ predicates-tree-1.0.5 \ pretty_assertions-1.2.1 \ proc-macro-error-1.0.4 \ proc-macro-error-attr-1.0.4 \ proc-macro2-1.0.42 \ quick-xml-0.23.0 \ quote-1.0.20 \ rand-0.8.5 \ rand_chacha-0.3.1 \ rand_core-0.6.3 \ rayon-1.5.3 \ rayon-core-1.9.3 \ redox_syscall-0.2.16 \ regex-1.6.0 \ regex-automata-0.1.10 \ regex-syntax-0.6.27 \ rgb-0.8.33 \ rle-decode-fast-1.0.3 \ ryu-1.0.10 \ same-file-1.0.6 \ scopeguard-1.1.0 \ serde-1.0.140 \ serde_cbor-0.11.2 \ serde_derive-1.0.140 \ serde_json-1.0.82 \ smallvec-1.9.0 \ str_stack-0.1.0 \ strsim-0.10.0 \ syn-1.0.98 \ termcolor-1.1.3 \ termtree-0.2.4 \ testing_logger-0.1.1 \ textwrap-0.11.0 \ textwrap-0.15.0 \ tinytemplate-1.2.1 \ unicode-ident-1.0.2 \ unicode-width-0.1.9 \ version_check-0.9.4 \ wait-timeout-0.2.0 \ walkdir-2.3.2 \ wasi-0.11.0+wasi-snapshot-preview1 \ wasm-bindgen-0.2.82 \ wasm-bindgen-backend-0.2.82 \ wasm-bindgen-macro-0.2.82 \ wasm-bindgen-macro-support-0.2.82 \ wasm-bindgen-shared-0.2.82 \ web-sys-0.3.59 \ winapi-0.3.9 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-util-0.1.5 \ winapi-x86_64-pc-windows-gnu-0.4.0 \ windows-sys-0.36.1 \ windows_aarch64_msvc-0.36.1 \ windows_i686_gnu-0.36.1 \ windows_i686_msvc-0.36.1 \ windows_x86_64_gnu-0.36.1 \ windows_x86_64_msvc-0.36.1 EXECUTABLES= inferno-collapse-dtrace \ inferno-collapse-guess \ inferno-collapse-perf \ inferno-collapse-sample \ inferno-collapse-vsprof \ inferno-collapse-vtune \ inferno-diff-folded \ inferno-flamegraph PLIST_FILES= ${EXECUTABLES:S/inferno-/bin\/&/} post-install: cd ${STAGEDIR}${PREFIX}/bin && ${STRIP_CMD} ${EXECUTABLES} .include diff --git a/converters/yj-bruceadams/Makefile b/converters/yj-bruceadams/Makefile index becaf601c1a1..bba87c2ce7d6 100644 --- a/converters/yj-bruceadams/Makefile +++ b/converters/yj-bruceadams/Makefile @@ -1,76 +1,76 @@ PORTNAME= yj DISTVERSION= 1.2.0 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= converters textproc PKGNAMESUFFIX= -${GH_ACCOUNT} MAINTAINER= 0mp@FreeBSD.org COMMENT= Command line tool that converts YAML to JSON LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE USES= cargo USE_GITHUB= yes GH_ACCOUNT= bruceadams CARGO_CRATES= addr2line-0.17.0 \ adler-1.0.2 \ atty-0.2.14 \ autocfg-1.0.1 \ backtrace-0.3.63 \ bitflags-1.3.2 \ cc-1.0.72 \ cfg-if-1.0.0 \ clap-3.0.0 \ clap_derive-3.0.0 \ doc-comment-0.3.3 \ exitfailure-0.5.1 \ failure-0.1.8 \ failure_derive-0.1.8 \ gimli-0.26.1 \ hashbrown-0.11.2 \ heck-0.3.3 \ hermit-abi-0.1.19 \ indexmap-1.7.0 \ itoa-1.0.1 \ lazy_static-1.4.0 \ libc-0.2.112 \ linked-hash-map-0.5.4 \ memchr-2.4.1 \ miniz_oxide-0.4.4 \ object-0.27.1 \ os_str_bytes-6.0.0 \ proc-macro-error-1.0.4 \ proc-macro-error-attr-1.0.4 \ proc-macro2-1.0.36 \ quote-1.0.14 \ rustc-demangle-0.1.21 \ ryu-1.0.9 \ serde-1.0.133 \ serde_json-1.0.74 \ serde_yaml-0.8.23 \ snafu-0.6.10 \ snafu-derive-0.6.10 \ strsim-0.10.0 \ syn-1.0.84 \ synstructure-0.12.6 \ termcolor-1.1.2 \ terminal_size-0.1.17 \ textwrap-0.14.2 \ unicode-segmentation-1.8.0 \ unicode-xid-0.2.2 \ version_check-0.9.4 \ winapi-0.3.9 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-util-0.1.5 \ winapi-x86_64-pc-windows-gnu-0.4.0 \ yaml-rust-0.4.5 CONFLICTS_INSTALL= yj PLIST_FILES= bin/yj post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/${PORTNAME} .include diff --git a/databases/ods2sql/Makefile b/databases/ods2sql/Makefile index 9452cb312316..c05b1ced35be 100644 --- a/databases/ods2sql/Makefile +++ b/databases/ods2sql/Makefile @@ -1,85 +1,85 @@ PORTNAME= ods2sql DISTVERSION= 0.4.0 -PORTREVISION= 16 +PORTREVISION= 17 CATEGORIES= databases MAINTAINER= yuri@FreeBSD.org COMMENT= Create SQLite3 database from ODS spreadsheet LICENSE= AGPLv3 LICENSE_FILE= ${WRKSRC}/LICENSE USES= cargo sqlite USE_GITLAB= yes GL_ACCOUNT= zetok GL_COMMIT= aca63183274038487cecb6be17d7f65e92178b8c CARGO_CRATES= adler32-1.2.0 \ ahash-0.4.6 \ aho-corasick-0.7.14 \ atty-0.2.14 \ autocfg-1.0.1 \ bitflags-1.2.1 \ byteorder-1.3.4 \ calamine-0.16.2 \ cfg-if-0.1.10 \ cfg-if-1.0.0 \ clap-3.0.0-beta.2 \ clap_derive-3.0.0-beta.2 \ codepage-0.1.1 \ crc32fast-1.2.1 \ encoding_rs-0.8.24 \ env_logger-0.8.1 \ fallible-iterator-0.2.0 \ fallible-streaming-iterator-0.1.9 \ flate2-1.0.14 \ hashbrown-0.9.1 \ hashlink-0.6.0 \ heck-0.3.1 \ hermit-abi-0.1.17 \ humantime-2.0.1 \ indexmap-1.6.0 \ lazy_static-1.4.0 \ libc-0.2.79 \ libsqlite3-sys-0.20.1 \ log-0.4.11 \ memchr-2.3.3 \ miniz_oxide-0.3.7 \ os_str_bytes-2.3.2 \ pkg-config-0.3.19 \ proc-macro-error-1.0.4 \ proc-macro-error-attr-1.0.4 \ proc-macro2-1.0.24 \ quick-xml-0.19.0 \ quote-1.0.7 \ regex-1.4.1 \ regex-syntax-0.6.20 \ rusqlite-0.24.1 \ serde-1.0.117 \ smallvec-1.4.2 \ strsim-0.10.0 \ syn-1.0.46 \ termcolor-1.1.0 \ textwrap-0.12.1 \ thiserror-1.0.21 \ thiserror-impl-1.0.21 \ thread_local-1.0.1 \ unicode-segmentation-1.6.0 \ unicode-width-0.1.8 \ unicode-xid-0.2.1 \ vcpkg-0.2.10 \ vec_map-0.8.2 \ version_check-0.9.2 \ winapi-0.3.9 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-util-0.1.5 \ winapi-x86_64-pc-windows-gnu-0.4.0 \ zip-0.5.8 PLIST_FILES= bin/${PORTNAME} post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/${PORTNAME} .include diff --git a/databases/redisjson/Makefile b/databases/redisjson/Makefile index 60e2b74a7c6c..b67e291289b6 100644 --- a/databases/redisjson/Makefile +++ b/databases/redisjson/Makefile @@ -1,119 +1,119 @@ PORTNAME= redisjson DISTVERSIONPREFIX= v DISTVERSION= 2.0.8 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= databases MAINTAINER= ports@FreeBSD.org COMMENT= JSON data type for Redis LICENSE= UNKNOWN LICENSE_NAME= Redis Source Available License Agreement LICENSE_FILE= ${WRKSRC}/LICENSE LICENSE_PERMS= dist-mirror pkg-mirror auto-accept BUILD_DEPENDS= ${LOCALBASE}/llvm${LLVM_DEFAULT}/lib/libclang.so:devel/llvm${LLVM_DEFAULT} USES= cargo USE_GITHUB= yes GH_ACCOUNT= RedisJSON GH_PROJECT= RedisJSON CARGO_CRATES= addr2line-0.17.0 \ adler-1.0.2 \ aho-corasick-0.7.18 \ ansi_term-0.12.1 \ array_tool-1.0.3 \ atty-0.2.14 \ autocfg-1.1.0 \ backtrace-0.3.64 \ bindgen-0.59.2 \ bitflags-1.3.2 \ bson-0.14.1 \ byteorder-1.4.3 \ cc-1.0.73 \ cexpr-0.6.0 \ cfg-if-1.0.0 \ chrono-0.4.19 \ clang-sys-1.3.1 \ clap-2.34.0 \ dashmap-4.0.2 \ either-1.6.1 \ enum-primitive-derive-0.1.2 \ env_logger-0.9.0 \ getrandom-0.1.16 \ gimli-0.26.1 \ glob-0.3.0 \ hashbrown-0.11.2 \ heck-0.3.3 \ hermit-abi-0.1.19 \ hex-0.3.2 \ humantime-2.1.0 \ ijson-0.1.3 \ indexmap-1.8.0 \ itertools-0.10.3 \ itoa-1.0.1 \ lazy_static-1.4.0 \ lazycell-1.3.0 \ libc-0.2.120 \ libloading-0.7.3 \ linked-hash-map-0.5.4 \ log-0.4.14 \ md5-0.6.1 \ memchr-2.4.1 \ minimal-lexical-0.2.1 \ miniz_oxide-0.4.4 \ nom-7.1.1 \ num-integer-0.1.44 \ num-traits-0.1.43 \ num-traits-0.2.14 \ num_cpus-1.13.1 \ object-0.27.1 \ peeking_take_while-0.1.2 \ ppv-lite86-0.2.16 \ proc-macro2-1.0.36 \ quote-0.3.15 \ quote-1.0.15 \ rand-0.7.3 \ rand_chacha-0.2.2 \ rand_core-0.5.1 \ rand_hc-0.2.0 \ redis-module-1.0.0 \ regex-1.5.5 \ regex-syntax-0.6.25 \ rustc-demangle-0.1.21 \ rustc-hash-1.1.0 \ rustversion-1.0.6 \ ryu-1.0.9 \ serde-1.0.136 \ serde_derive-1.0.136 \ serde_json-1.0.79 \ shlex-1.1.0 \ strsim-0.8.0 \ strum_macros-0.23.1 \ syn-0.11.11 \ syn-1.0.88 \ synom-0.11.3 \ termcolor-1.1.3 \ textwrap-0.11.0 \ time-0.1.44 \ unicode-segmentation-1.9.0 \ unicode-width-0.1.9 \ unicode-xid-0.0.4 \ unicode-xid-0.2.2 \ vec_map-0.8.2 \ wasi-0.9.0+wasi-snapshot-preview1 \ wasi-0.10.0+wasi-snapshot-preview1 \ which-4.2.4 \ winapi-0.3.9 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-util-0.1.5 \ winapi-x86_64-pc-windows-gnu-0.4.0 \ jsonpath_lib@git+https://github.com/RedisJSON/jsonpath.git?branch=generic_json_path\#6da271ec44ff56db0d2e7009efc707935ee8c0f8 PLIST_FILES= lib/librejson.so do-install: ${INSTALL_LIB} ${CARGO_TARGET_DIR}/${CARGO_BUILD_TARGET}/*/librejson.so ${STAGEDIR}${PREFIX}/lib .include diff --git a/databases/xls2txt/Makefile b/databases/xls2txt/Makefile index 820b1c1b1115..3b6dfe487413 100644 --- a/databases/xls2txt/Makefile +++ b/databases/xls2txt/Makefile @@ -1,66 +1,66 @@ PORTNAME= xls2txt DISTVERSION= 1.0.1 -PORTREVISION= 15 +PORTREVISION= 16 CATEGORIES= databases textproc MAINTAINER= yuri@FreeBSD.org COMMENT= Utilities to convert spreadsheet files to text and csv formats LICENSE= APACHE20 USES= cargo USE_GITHUB= yes GH_ACCOUNT= masklinn GH_TAGNAME= 1222f8069428f6bcedfcccf9e80523db34c0d343 CARGO_CRATES= adler32-1.2.0 \ ansi_term-0.11.0 \ atty-0.2.14 \ bitflags-1.2.1 \ bstr-0.2.14 \ byteorder-1.3.4 \ calamine-0.16.2 \ cfg-if-0.1.10 \ cfg-if-1.0.0 \ clap-2.33.3 \ codepage-0.1.1 \ crc32fast-1.2.1 \ csv-1.1.5 \ csv-core-0.1.10 \ encoding_rs-0.8.26 \ flate2-1.0.14 \ hermit-abi-0.1.17 \ itoa-0.4.6 \ lazy_static-1.4.0 \ libc-0.2.80 \ log-0.4.11 \ memchr-2.3.4 \ miniz_oxide-0.3.7 \ proc-macro2-1.0.24 \ quick-xml-0.19.0 \ quote-1.0.7 \ regex-automata-0.1.9 \ ryu-1.0.5 \ serde-1.0.117 \ strsim-0.8.0 \ syn-1.0.52 \ textwrap-0.11.0 \ thiserror-1.0.22 \ thiserror-impl-1.0.22 \ unicode-width-0.1.8 \ unicode-xid-0.2.1 \ vec_map-0.8.2 \ winapi-0.3.9 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-x86_64-pc-windows-gnu-0.4.0 \ zip-0.5.8 EXECUTABLES= ${PORTNAME} xls2csv PLIST_FILES= ${EXECUTABLES:S/^/bin\//} post-install: cd ${STAGEDIR}${PREFIX}/bin && ${STRIP_CMD} ${EXECUTABLES} .include diff --git a/deskutils/just/Makefile b/deskutils/just/Makefile index cef0aa69d507..b52e85a11e2d 100644 --- a/deskutils/just/Makefile +++ b/deskutils/just/Makefile @@ -1,110 +1,111 @@ PORTNAME= just DISTVERSION= 1.3.0 +PORTREVISION= 1 CATEGORIES= deskutils MAINTAINER= yuri@FreeBSD.org COMMENT= Just a command runner: handy way to save/run project-specific commands LICENSE= CC0-1.0 LICENSE_FILE= ${WRKSRC}/LICENSE USES= cargo USE_GITHUB= yes GH_ACCOUNT= casey CARGO_CRATES= aho-corasick-0.7.18 \ ansi_term-0.12.1 \ atty-0.2.14 \ bitflags-1.3.2 \ block-buffer-0.10.2 \ bstr-0.2.17 \ camino-1.0.9 \ cfg-if-1.0.0 \ clap-2.34.0 \ cpufeatures-0.2.2 \ cradle-0.2.2 \ crypto-common-0.1.6 \ ctor-0.1.22 \ ctrlc-3.2.2 \ derivative-2.2.0 \ diff-0.1.13 \ digest-0.10.3 \ doc-comment-0.3.3 \ dotenv-0.15.0 \ edit-distance-2.1.0 \ either-1.7.0 \ env_logger-0.9.0 \ executable-path-1.0.0 \ fastrand-1.8.0 \ generic-array-0.14.5 \ getopts-0.2.21 \ getrandom-0.2.7 \ heck-0.3.3 \ heck-0.4.0 \ hermit-abi-0.1.19 \ humantime-2.1.0 \ instant-0.1.12 \ itoa-1.0.2 \ lazy_static-1.4.0 \ lexiclean-0.0.1 \ libc-0.2.126 \ linked-hash-map-0.5.6 \ log-0.4.17 \ memchr-2.5.0 \ nix-0.24.2 \ output_vt100-0.1.3 \ pretty_assertions-1.2.1 \ proc-macro-error-1.0.4 \ proc-macro-error-attr-1.0.4 \ proc-macro2-1.0.41 \ pulldown-cmark-0.9.1 \ pulldown-cmark-to-cmark-10.0.2 \ quote-1.0.20 \ redox_syscall-0.2.15 \ regex-1.6.0 \ regex-automata-0.1.10 \ regex-syntax-0.6.27 \ remove_dir_all-0.5.3 \ rustversion-1.0.8 \ ryu-1.0.10 \ serde-1.0.140 \ serde_derive-1.0.140 \ serde_json-1.0.82 \ sha2-0.10.2 \ similar-2.1.0 \ snafu-0.7.1 \ snafu-derive-0.7.1 \ strsim-0.8.0 \ structopt-0.3.26 \ structopt-derive-0.4.18 \ strum-0.24.1 \ strum_macros-0.24.2 \ syn-1.0.98 \ target-2.0.0 \ tempfile-3.3.0 \ temptree-0.2.0 \ term_size-0.3.2 \ termcolor-1.1.3 \ textwrap-0.11.0 \ typed-arena-2.0.1 \ typenum-1.15.0 \ unicase-2.6.0 \ unicode-ident-1.0.2 \ unicode-segmentation-1.9.0 \ unicode-width-0.1.9 \ uuid-1.1.2 \ vec_map-0.8.2 \ version_check-0.9.4 \ wasi-0.11.0+wasi-snapshot-preview1 \ which-4.2.5 \ winapi-0.3.9 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-util-0.1.5 \ winapi-x86_64-pc-windows-gnu-0.4.0 \ yaml-rust-0.4.5 PLIST_FILES= bin/${PORTNAME} post-install: @${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/${PORTNAME} .include diff --git a/deskutils/sigi/Makefile b/deskutils/sigi/Makefile index 2c6c77bbbf7a..e51fce026234 100644 --- a/deskutils/sigi/Makefile +++ b/deskutils/sigi/Makefile @@ -1,124 +1,125 @@ PORTNAME= sigi DISTVERSIONPREFIX= v DISTVERSION= 3.4.2 +PORTREVISION= 1 CATEGORIES= deskutils MAINTAINER= hiljusti@so.dang.cool COMMENT= Organizing tool for terminal lovers who hate organizing LICENSE= GPLv2 USES= cargo USE_GITHUB= yes GH_ACCOUNT= hiljusti CARGO_BUILD_ARGS= --all CARGO_CRATES= atty-0.2.14 \ autocfg-1.0.1 \ bitflags-1.3.2 \ cc-1.0.73 \ cfg-if-0.1.10 \ cfg-if-1.0.0 \ chrono-0.4.19 \ clap-3.2.6 \ clap_derive-3.2.6 \ clap_lex-0.2.3 \ clearscreen-1.0.9 \ clipboard-win-4.4.1 \ dirs-2.0.2 \ dirs-next-2.0.0 \ dirs-sys-0.3.7 \ dirs-sys-next-0.1.2 \ either-1.6.1 \ endian-type-0.1.2 \ errno-0.2.8 \ errno-dragonfly-0.1.2 \ error-code-2.3.1 \ fd-lock-3.0.6 \ fnv-1.0.7 \ getrandom-0.1.16 \ getrandom-0.2.6 \ hashbrown-0.11.2 \ heck-0.4.0 \ hermit-abi-0.1.18 \ indexmap-1.8.0 \ io-lifetimes-0.7.2 \ itoa-0.4.7 \ json-0.12.4 \ lazy_static-1.4.0 \ libc-0.2.126 \ linux-raw-sys-0.0.46 \ log-0.4.16 \ memchr-2.4.1 \ memoffset-0.6.5 \ nibble_vec-0.1.0 \ nix-0.22.3 \ nix-0.23.1 \ nom-5.1.2 \ num-integer-0.1.44 \ num-traits-0.2.14 \ once_cell-1.12.0 \ os_str_bytes-6.0.0 \ phf-0.8.0 \ phf_codegen-0.8.0 \ phf_generator-0.8.0 \ phf_shared-0.8.0 \ ppv-lite86-0.2.16 \ proc-macro-error-1.0.4 \ proc-macro-error-attr-1.0.4 \ proc-macro2-1.0.36 \ pure-rust-locales-0.5.6 \ quote-1.0.9 \ radix_trie-0.2.1 \ rand-0.7.3 \ rand_chacha-0.2.2 \ rand_core-0.5.1 \ rand_hc-0.2.0 \ rand_pcg-0.2.1 \ redox_syscall-0.2.13 \ redox_users-0.4.3 \ rustix-0.35.6 \ rustyline-9.1.2 \ ryu-1.0.5 \ scopeguard-1.1.0 \ serde-1.0.123 \ serde_derive-1.0.123 \ serde_json-1.0.64 \ siphasher-0.3.10 \ smallvec-1.8.0 \ str-buf-1.0.5 \ strsim-0.10.0 \ syn-1.0.86 \ termcolor-1.1.2 \ terminfo-0.7.3 \ textwrap-0.15.0 \ thiserror-1.0.30 \ thiserror-impl-1.0.30 \ time-0.1.44 \ unicode-segmentation-1.9.0 \ unicode-width-0.1.9 \ unicode-xid-0.2.1 \ utf8parse-0.2.0 \ version_check-0.9.4 \ wasi-0.9.0+wasi-snapshot-preview1 \ wasi-0.10.0+wasi-snapshot-preview1 \ which-4.2.5 \ winapi-0.3.9 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-util-0.1.5 \ winapi-x86_64-pc-windows-gnu-0.4.0 \ windows-sys-0.36.1 \ windows_aarch64_msvc-0.36.1 \ windows_i686_gnu-0.36.1 \ windows_i686_msvc-0.36.1 \ windows_x86_64_gnu-0.36.1 \ windows_x86_64_msvc-0.36.1 PLIST_FILES= bin/sigi \ man/man1/sigi.1.gz post-install: ${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.1 ${STAGEDIR}${PREFIX}/man/man1/ .include diff --git a/deskutils/solanum/Makefile b/deskutils/solanum/Makefile index 72643c66ba7d..f97e8b5f11ed 100644 --- a/deskutils/solanum/Makefile +++ b/deskutils/solanum/Makefile @@ -1,134 +1,134 @@ PORTNAME= solanum DISTVERSIONPREFIX= v DISTVERSION= 3.0.1 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= deskutils PATCH_SITES= ${GL_SITE}/${GL_ACCOUNT}/${GL_PROJECT}/-/commit/ PATCHFILES+= e5c5d88f95b0.patch:-p1 # https://gitlab.gnome.org/World/Solanum/-/merge_requests/49 MAINTAINER= jbeich@FreeBSD.org COMMENT= Pomodoro timer for the GNOME desktop LICENSE= GPLv3+ LICENSE_FILE= ${WRKSRC}/LICENSE.md USES= cargo gettext gnome gstreamer meson pkgconfig python:build shebangfix USE_GITLAB= yes USE_GNOME= gtk40 libadwaita USE_GSTREAMER= bad good vorbis GL_SITE= https://gitlab.gnome.org GL_ACCOUNT= World GL_PROJECT= Solanum GL_COMMIT= 3f84b1d0c46fe1a3daef2940b1d0747222023984 SHEBANG_FILES= build-aux/meson/postinstall.py MAKE_ENV= ${CARGO_ENV} GLIB_SCHEMAS= org.gnome.Solanum.gschema.xml CARGO_CRATES= aho-corasick-0.7.18 \ anyhow-1.0.41 \ autocfg-1.0.1 \ bitflags-1.2.1 \ cairo-rs-0.14.7 \ cairo-sys-rs-0.14.0 \ cc-1.0.68 \ cfg-expr-0.7.4 \ cfg-expr-0.9.0 \ cfg-if-1.0.0 \ either-1.6.1 \ field-offset-0.3.4 \ futures-channel-0.3.15 \ futures-core-0.3.15 \ futures-executor-0.3.15 \ futures-io-0.3.15 \ futures-task-0.3.15 \ futures-util-0.3.15 \ gdk-pixbuf-0.14.0 \ gdk-pixbuf-sys-0.14.0 \ gdk4-0.3.0 \ gdk4-sys-0.3.0 \ gettext-rs-0.4.4 \ gettext-sys-0.19.9 \ gio-0.14.6 \ gio-sys-0.14.0 \ glib-0.14.5 \ glib-macros-0.14.1 \ glib-sys-0.14.0 \ gobject-sys-0.14.0 \ graphene-rs-0.14.0 \ graphene-sys-0.14.0 \ gsk4-0.3.0 \ gsk4-sys-0.3.0 \ gstreamer-0.17.4 \ gstreamer-base-0.17.2 \ gstreamer-base-sys-0.17.0 \ gstreamer-player-0.17.0 \ gstreamer-player-sys-0.17.0 \ gstreamer-sys-0.17.3 \ gstreamer-video-0.17.2 \ gstreamer-video-sys-0.17.0 \ gtk-macros-0.2.0 \ gtk4-0.3.0 \ gtk4-macros-0.3.0 \ gtk4-sys-0.3.0 \ heck-0.3.3 \ itertools-0.10.1 \ lazy_static-1.4.0 \ libadwaita-0.1.0-alpha-6 \ libadwaita-sys-0.1.0-alpha-6 \ libc-0.2.97 \ locale_config-0.2.3 \ memchr-2.4.0 \ memoffset-0.6.4 \ muldiv-1.0.0 \ num-integer-0.1.44 \ num-rational-0.4.0 \ num-traits-0.2.14 \ once_cell-1.8.0 \ pango-0.14.3 \ pango-sys-0.14.0 \ paste-1.0.5 \ pest-2.1.3 \ pin-project-lite-0.2.6 \ pin-utils-0.1.0 \ pkg-config-0.3.19 \ pretty-hex-0.2.1 \ proc-macro-crate-1.0.0 \ proc-macro-error-1.0.4 \ proc-macro-error-attr-1.0.4 \ proc-macro2-1.0.27 \ quote-1.0.9 \ regex-1.5.4 \ regex-syntax-0.6.25 \ rustc_version-0.3.3 \ semver-0.11.0 \ semver-parser-0.10.2 \ serde-1.0.126 \ slab-0.4.3 \ smallvec-1.6.1 \ strum-0.20.0 \ strum_macros-0.20.1 \ syn-1.0.73 \ system-deps-3.1.1 \ system-deps-4.0.0 \ thiserror-1.0.25 \ thiserror-impl-1.0.25 \ toml-0.5.8 \ ucd-trie-0.1.3 \ unicode-segmentation-1.7.1 \ unicode-xid-0.2.2 \ version-compare-0.0.11 \ version_check-0.9.3 \ winapi-0.3.9 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-x86_64-pc-windows-gnu-0.4.0 CARGO_BUILD= no CARGO_INSTALL= no CARGO_TEST= no post-patch: # Make each cargo subcommand very verbose @${REINPLACE_CMD} -e '/cargo/s/ --/&verbose&verbose&/' \ ${WRKSRC}/build-aux/cargo.sh .include diff --git a/deskutils/taskwarrior-tui/Makefile b/deskutils/taskwarrior-tui/Makefile index 90da69beab27..01b09cc4a6ad 100644 --- a/deskutils/taskwarrior-tui/Makefile +++ b/deskutils/taskwarrior-tui/Makefile @@ -1,192 +1,192 @@ PORTNAME= taskwarrior-tui DISTVERSIONPREFIX= v DISTVERSION= 0.23.4 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= deskutils MAINTAINER= alexis.praga@free.fr COMMENT= Terminal User Interface (TUI) for Taskwarrior LICENSE= AGPLv3 LICENSE_FILE= ${WRKSRC}/LICENSE USES= cargo USE_GITHUB= yes GH_ACCOUNT= kdheepak CARGO_CRATES= addr2line-0.17.0 \ adler-1.0.2 \ aho-corasick-0.7.18 \ anyhow-1.0.56 \ arc-swap-0.4.8 \ atty-0.2.14 \ autocfg-1.0.1 \ backtrace-0.3.63 \ better-panic-0.3.0 \ bitflags-1.3.2 \ bytes-1.1.0 \ cassowary-0.3.0 \ cc-1.0.72 \ cfg-if-1.0.0 \ chrono-0.4.19 \ clap-3.1.6 \ clap_complete-3.1.1 \ clap_derive-3.1.4 \ clipboard-win-4.2.2 \ console-0.15.0 \ crossterm-0.22.1 \ crossterm-0.23.2 \ crossterm_winapi-0.9.0 \ darling-0.10.2 \ darling_core-0.10.2 \ darling_macro-0.10.2 \ derivative-2.2.0 \ derive_builder-0.9.0 \ derive_builder_core-0.9.0 \ dirs-4.0.0 \ dirs-next-2.0.0 \ dirs-sys-0.3.6 \ dirs-sys-next-0.1.2 \ either-1.6.1 \ encode_unicode-0.3.6 \ endian-type-0.1.2 \ error-code-2.3.0 \ failure-0.1.8 \ failure_derive-0.1.8 \ fd-lock-3.0.2 \ fnv-1.0.7 \ futures-0.3.21 \ futures-channel-0.3.21 \ futures-core-0.3.21 \ futures-executor-0.3.21 \ futures-io-0.3.21 \ futures-macro-0.3.21 \ futures-sink-0.3.21 \ futures-task-0.3.21 \ futures-util-0.3.21 \ getrandom-0.2.3 \ gimli-0.26.1 \ hashbrown-0.11.2 \ heck-0.4.0 \ hermit-abi-0.1.19 \ humantime-2.1.0 \ ident_case-1.0.1 \ indexmap-1.7.0 \ instant-0.1.12 \ itertools-0.10.3 \ itoa-1.0.1 \ lazy_static-1.4.0 \ libc-0.2.124 \ linked-hash-map-0.5.4 \ lock_api-0.4.6 \ log-0.4.14 \ log-mdc-0.1.0 \ log4rs-1.0.0 \ memchr-2.4.1 \ memoffset-0.6.5 \ minimal-lexical-0.2.1 \ miniz_oxide-0.4.4 \ mio-0.7.14 \ mio-0.8.2 \ miow-0.3.7 \ nibble_vec-0.1.0 \ nix-0.23.1 \ nom-7.1.0 \ ntapi-0.3.6 \ num-integer-0.1.44 \ num-traits-0.2.14 \ num_cpus-1.13.1 \ object-0.27.1 \ once_cell-1.9.0 \ ordered-float-2.8.0 \ os_str_bytes-6.0.0 \ parking_lot-0.11.2 \ parking_lot-0.12.0 \ parking_lot_core-0.8.5 \ parking_lot_core-0.9.1 \ path-clean-0.1.0 \ pin-project-lite-0.2.8 \ pin-utils-0.1.0 \ ppv-lite86-0.2.16 \ proc-macro-error-1.0.4 \ proc-macro-error-attr-1.0.4 \ proc-macro2-1.0.36 \ quote-1.0.14 \ radix_trie-0.2.1 \ rand-0.8.5 \ rand_chacha-0.3.1 \ rand_core-0.6.3 \ redox_syscall-0.1.57 \ redox_syscall-0.2.10 \ redox_users-0.4.0 \ regex-1.5.5 \ regex-syntax-0.6.25 \ rustc-demangle-0.1.21 \ rustyline-9.1.2 \ ryu-1.0.9 \ scopeguard-1.1.0 \ serde-1.0.136 \ serde-value-0.7.0 \ serde_derive-1.0.136 \ serde_json-1.0.79 \ serde_yaml-0.8.23 \ shellexpand-2.1.0 \ shlex-1.1.0 \ signal-hook-0.3.13 \ signal-hook-mio-0.2.3 \ signal-hook-registry-1.4.0 \ slab-0.4.5 \ smallvec-1.7.0 \ socket2-0.4.4 \ str-buf-1.0.5 \ strsim-0.9.3 \ strsim-0.10.0 \ syn-1.0.84 \ synstructure-0.12.6 \ termcolor-1.1.2 \ terminal_size-0.1.17 \ textwrap-0.15.0 \ thiserror-1.0.30 \ thiserror-impl-1.0.30 \ thread-id-3.3.0 \ time-0.1.44 \ tokio-1.17.0 \ tokio-macros-1.7.0 \ tokio-stream-0.1.8 \ traitobject-0.1.0 \ tui-0.17.0 \ typemap-0.3.3 \ unicode-segmentation-1.9.0 \ unicode-truncate-0.2.0 \ unicode-width-0.1.9 \ unicode-xid-0.2.2 \ unsafe-any-0.4.2 \ utf8parse-0.2.0 \ uuid-0.8.2 \ version_check-0.9.4 \ versions-4.0.0 \ wasi-0.10.0+wasi-snapshot-preview1 \ wasi-0.11.0+wasi-snapshot-preview1 \ winapi-0.3.9 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-util-0.1.5 \ winapi-x86_64-pc-windows-gnu-0.4.0 \ windows-sys-0.28.0 \ windows-sys-0.32.0 \ windows_aarch64_msvc-0.28.0 \ windows_aarch64_msvc-0.32.0 \ windows_i686_gnu-0.28.0 \ windows_i686_gnu-0.32.0 \ windows_i686_msvc-0.28.0 \ windows_i686_msvc-0.32.0 \ windows_x86_64_gnu-0.28.0 \ windows_x86_64_gnu-0.32.0 \ windows_x86_64_msvc-0.28.0 \ windows_x86_64_msvc-0.32.0 \ yaml-rust-0.4.5 \ task-hookrs@git+https://github.com/kdheepak/task-hookrs\#6f04ee63c0d58bb0fe9bd6563457df52b5b5f84d PLIST_FILES= bin/taskwarrior-tui post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/taskwarrior-tui .include diff --git a/devel/bingrep/Makefile b/devel/bingrep/Makefile index dce717620fe8..a21d6fc024be 100644 --- a/devel/bingrep/Makefile +++ b/devel/bingrep/Makefile @@ -1,124 +1,124 @@ PORTNAME= bingrep DISTVERSIONPREFIX= v DISTVERSION= 0.10.0 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= devel MAINTAINER= eduardo@FreeBSD.org COMMENT= Grep through binaries LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= cargo cpe CPE_VENDOR= bingrep_project USE_GITHUB= yes GH_ACCOUNT= m4b CARGO_CRATES= aho-corasick-0.7.18 \ anyhow-1.0.56 \ arrayref-0.3.6 \ arrayvec-0.5.2 \ atty-0.2.14 \ autocfg-1.1.0 \ base64-0.13.0 \ bitflags-1.3.2 \ blake2b_simd-0.5.11 \ bstr-0.2.17 \ byteorder-1.4.3 \ cfg-if-1.0.0 \ clap-3.1.6 \ clap_derive-3.1.4 \ constant_time_eq-0.1.5 \ cpp_demangle-0.3.5 \ crossbeam-utils-0.8.8 \ csv-1.1.6 \ csv-core-0.1.10 \ dirs-1.0.5 \ encode_unicode-0.3.6 \ env_logger-0.9.0 \ fuchsia-cprng-0.1.1 \ getrandom-0.1.16 \ goblin-0.5.1 \ hashbrown-0.11.2 \ heck-0.4.0 \ hermit-abi-0.1.19 \ hexplay-0.2.1 \ humantime-2.1.0 \ indexmap-1.8.0 \ itoa-0.4.8 \ lazy_static-1.4.0 \ libc-0.2.121 \ log-0.4.14 \ memchr-2.4.1 \ memrange-0.1.3 \ metagoblin-0.6.0 \ os_str_bytes-6.0.0 \ plain-0.2.3 \ prettytable-rs-0.8.0 \ proc-macro-error-1.0.4 \ proc-macro-error-attr-1.0.4 \ proc-macro2-1.0.36 \ quote-1.0.16 \ rand-0.3.23 \ rand-0.4.6 \ rand_core-0.3.1 \ rand_core-0.4.2 \ rdrand-0.4.0 \ redox_syscall-0.1.57 \ redox_users-0.3.5 \ regex-1.5.5 \ regex-automata-0.1.10 \ regex-syntax-0.6.25 \ rust-argon2-0.8.3 \ rustc-demangle-0.1.21 \ rustc-serialize-0.3.24 \ ryu-1.0.9 \ scroll-0.11.0 \ scroll_derive-0.11.0 \ serde-1.0.136 \ strsim-0.10.0 \ syn-1.0.89 \ term-0.5.2 \ termcolor-0.3.6 \ termcolor-1.1.3 \ terminal_size-0.1.17 \ textwrap-0.15.0 \ theban_interval_tree-0.7.1 \ time-0.1.44 \ unicode-width-0.1.9 \ unicode-xid-0.2.2 \ version_check-0.9.4 \ wasi-0.9.0+wasi-snapshot-preview1 \ wasi-0.10.0+wasi-snapshot-preview1 \ winapi-0.3.9 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-util-0.1.5 \ winapi-x86_64-pc-windows-gnu-0.4.0 \ wincolor-0.1.6 PLIST_FILES= bin/bingrep PORTDOCS= README.md PORTEXAMPLES= etc/*.png OPTIONS_DEFINE= DOCS EXAMPLES EXAMPLES_PLIST_FILES= ${EXAMPLESDIR}/archive.png \ ${EXAMPLESDIR}/elf_table1.png \ ${EXAMPLESDIR}/elf_table2.png \ ${EXAMPLESDIR}/mach.png \ ${EXAMPLESDIR}/ranges.png do-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/${PORTDOCS} ${STAGEDIR}${DOCSDIR} do-install-EXAMPLES-on: @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} (cd ${WRKSRC}/etc && ${COPYTREE_SHARE} . ${STAGEDIR}${EXAMPLESDIR}) post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/${PORTNAME} .include diff --git a/devel/cargo-c/Makefile b/devel/cargo-c/Makefile index 8a07ea114bd5..67f0d0320ae0 100644 --- a/devel/cargo-c/Makefile +++ b/devel/cargo-c/Makefile @@ -1,166 +1,166 @@ PORTNAME= cargo-c DISTVERSION= 0.9.8 DISTVERSIONSUFFIX= +cargo-0.60 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= devel MASTER_SITES= CRATESIO # XXX Teach USES=cargo to have proper default DISTFILES= ${CARGO_DIST_SUBDIR}/${DISTNAME}${CARGO_CRATE_EXT} MAINTAINER= jbeich@FreeBSD.org COMMENT= Cargo C-ABI helpers LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE LIB_DEPENDS= libgit2.so:devel/libgit2 \ libcurl.so:ftp/curl \ libssh2.so:security/libssh2 USES= cargo ssl PLIST_FILES= bin/cargo-capi \ bin/cargo-cbuild \ bin/cargo-cinstall \ bin/cargo-ctest \ ${NULL} CARGO_CRATES= adler-1.0.2 \ aho-corasick-0.7.18 \ ansi_term-0.12.1 \ anyhow-1.0.55 \ arrayvec-0.5.2 \ atty-0.2.14 \ autocfg-1.1.0 \ bitflags-1.3.2 \ bitmaps-2.1.0 \ bstr-0.2.17 \ bytesize-1.1.0 \ cargo-0.60.0 \ cargo-platform-0.1.2 \ cargo-util-0.1.2 \ cbindgen-0.20.0 \ cc-1.0.73 \ cfg-if-1.0.0 \ clap-2.34.0 \ commoncrypto-0.2.0 \ commoncrypto-sys-0.2.0 \ core-foundation-0.9.3 \ core-foundation-sys-0.8.3 \ crates-io-0.33.1 \ crc32fast-1.3.2 \ crossbeam-utils-0.8.7 \ crypto-hash-0.3.4 \ curl-0.4.42 \ curl-sys-0.4.52+curl-7.81.0 \ either-1.6.1 \ env_logger-0.9.0 \ fastrand-1.7.0 \ filetime-0.2.15 \ flate2-1.0.22 \ fnv-1.0.7 \ foreign-types-0.3.2 \ foreign-types-shared-0.1.1 \ form_urlencoded-1.0.1 \ fwdansi-1.1.0 \ git2-0.13.25 \ git2-curl-0.14.1 \ glob-0.3.0 \ globset-0.4.8 \ hashbrown-0.11.2 \ heck-0.3.3 \ hermit-abi-0.1.19 \ hex-0.3.2 \ hex-0.4.3 \ home-0.5.3 \ humantime-2.1.0 \ idna-0.2.3 \ ignore-0.4.18 \ im-rc-15.0.0 \ indexmap-1.8.0 \ instant-0.1.12 \ itertools-0.10.3 \ itoa-1.0.1 \ jobserver-0.1.24 \ lazy_static-1.4.0 \ lazycell-1.3.0 \ libc-0.2.119 \ libgit2-sys-0.12.26+1.3.0 \ libnghttp2-sys-0.1.7+1.45.0 \ libssh2-sys-0.2.23 \ libz-sys-1.1.3 \ log-0.4.14 \ matches-0.1.9 \ memchr-2.4.1 \ miniz_oxide-0.4.4 \ miow-0.3.7 \ num_cpus-1.13.1 \ once_cell-1.9.0 \ opener-0.5.0 \ openssl-0.10.38 \ openssl-probe-0.1.5 \ openssl-src-111.17.0+1.1.1m \ openssl-sys-0.9.72 \ os_info-3.2.0 \ percent-encoding-2.1.0 \ pkg-config-0.3.24 \ proc-macro-error-1.0.4 \ proc-macro-error-attr-1.0.4 \ proc-macro2-1.0.36 \ quote-1.0.15 \ rand_core-0.5.1 \ rand_xoshiro-0.4.0 \ redox_syscall-0.2.10 \ regex-1.5.4 \ regex-automata-0.1.10 \ regex-syntax-0.6.25 \ remove_dir_all-0.5.3 \ rustc-workspace-hack-1.0.0 \ rustfix-0.6.0 \ ryu-1.0.9 \ same-file-1.0.6 \ schannel-0.1.19 \ semver-1.0.6 \ serde-1.0.136 \ serde_derive-1.0.136 \ serde_ignored-0.1.2 \ serde_json-1.0.79 \ shell-escape-0.1.5 \ sized-chunks-0.6.5 \ socket2-0.4.4 \ strip-ansi-escapes-0.1.1 \ strsim-0.8.0 \ structopt-0.3.26 \ structopt-derive-0.4.18 \ syn-1.0.86 \ tar-0.4.38 \ tempfile-3.3.0 \ termcolor-1.1.2 \ textwrap-0.11.0 \ thread_local-1.1.4 \ tinyvec-1.5.1 \ tinyvec_macros-0.1.0 \ toml-0.5.8 \ typenum-1.15.0 \ unicode-bidi-0.3.7 \ unicode-normalization-0.1.19 \ unicode-segmentation-1.9.0 \ unicode-width-0.1.9 \ unicode-xid-0.2.2 \ url-2.2.2 \ utf8parse-0.2.0 \ vcpkg-0.2.15 \ vec_map-0.8.2 \ version_check-0.9.4 \ vte-0.10.1 \ vte_generate_state_changes-0.1.1 \ walkdir-2.3.2 \ winapi-0.3.9 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-util-0.1.5 \ winapi-x86_64-pc-windows-gnu-0.4.0 post-patch: @${REINPLACE_CMD} -e 's,libdir.join("pkgconfig,prefix.join("libdata/pkgconfig,' \ ${WRKSRC}/src/install.rs .include diff --git a/devel/cargo-generate/Makefile b/devel/cargo-generate/Makefile index 092480fa72a7..dbde9740824e 100644 --- a/devel/cargo-generate/Makefile +++ b/devel/cargo-generate/Makefile @@ -1,210 +1,211 @@ PORTNAME= cargo-generate DISTVERSIONPREFIX= v DISTVERSION= 0.13.1 +PORTREVISION= 1 CATEGORIES= devel MAINTAINER= lcook@FreeBSD.org COMMENT= Quickly generate Rust project templates from existing git repositories LICENSE= APACHE20 MIT LICENSE_COMB= dual LICENSE_FILE_APACHE20= ${WRKSRC}/LICENSE-APACHE LICENSE_FILE_MIT= ${WRKSRC}/LICENSE-MIT LIB_DEPENDS= libcurl.so:ftp/curl \ libgit2.so:devel/libgit2 \ libssh2.so:security/libssh2 USES= cargo localbase ssl USE_GITHUB= yes GH_ACCOUNT= ashleygwilliams CARGO_CRATES= addr2line-0.17.0 \ adler-1.0.2 \ ahash-0.7.6 \ aho-corasick-0.7.18 \ ansi_term-0.12.1 \ anyhow-1.0.56 \ anymap2-0.13.0 \ assert_cmd-2.0.4 \ atty-0.2.14 \ autocfg-1.1.0 \ backtrace-0.3.64 \ bitflags-1.3.2 \ block-buffer-0.7.3 \ block-padding-0.1.5 \ bstr-0.2.17 \ byte-tools-0.3.1 \ byteorder-1.4.3 \ cargo-husky-1.5.0 \ cc-1.0.73 \ cfg-if-1.0.0 \ clap-2.34.0 \ console-0.15.0 \ crossbeam-channel-0.5.4 \ crossbeam-deque-0.8.1 \ crossbeam-epoch-0.9.8 \ crossbeam-utils-0.8.8 \ dialoguer-0.10.0 \ difflib-0.4.0 \ digest-0.8.1 \ dirs-4.0.0 \ dirs-sys-0.3.7 \ doc-comment-0.3.3 \ either-1.6.1 \ encode_unicode-0.3.6 \ failure-0.1.8 \ failure_derive-0.1.8 \ fake-simd-0.1.2 \ fastrand-1.7.0 \ float-cmp-0.9.0 \ fnv-1.0.7 \ foreign-types-0.3.2 \ foreign-types-shared-0.1.1 \ form_urlencoded-1.0.1 \ generic-array-0.12.4 \ getrandom-0.2.6 \ gimli-0.26.1 \ git-config-0.2.1 \ git-features-0.20.0 \ git-hash-0.9.3 \ git2-0.14.2 \ globset-0.4.8 \ heck-0.3.3 \ heck-0.4.0 \ hermit-abi-0.1.19 \ hex-0.4.3 \ home-0.5.3 \ idna-0.2.3 \ ignore-0.4.18 \ indicatif-0.16.2 \ indoc-1.0.4 \ instant-0.1.12 \ itertools-0.10.3 \ itoa-1.0.1 \ jobserver-0.1.24 \ kstring-2.0.0 \ lazy_static-1.4.0 \ libc-0.2.122 \ libgit2-sys-0.13.2+1.4.2 \ libssh2-sys-0.2.23 \ libz-sys-1.1.5 \ liquid-0.26.0 \ liquid-core-0.26.0 \ liquid-derive-0.26.0 \ liquid-lib-0.26.0 \ log-0.4.16 \ maplit-1.0.2 \ matches-0.1.9 \ memchr-2.4.1 \ memoffset-0.6.5 \ minimal-lexical-0.2.1 \ miniz_oxide-0.4.4 \ nom-7.1.1 \ normalize-line-endings-0.3.0 \ num-traits-0.2.14 \ num_cpus-1.13.1 \ num_threads-0.1.5 \ number_prefix-0.4.0 \ object-0.27.1 \ once_cell-1.10.0 \ opaque-debug-0.2.3 \ openssl-0.10.38 \ openssl-probe-0.1.5 \ openssl-src-111.18.0+1.1.1n \ openssl-sys-0.9.72 \ path-absolutize-3.0.13 \ path-dedot-3.0.17 \ percent-encoding-2.1.0 \ pest-2.1.3 \ pest_derive-2.1.0 \ pest_generator-2.1.3 \ pest_meta-2.1.3 \ pkg-config-0.3.25 \ predicates-2.1.1 \ predicates-core-1.0.3 \ predicates-tree-1.0.5 \ proc-macro-error-1.0.4 \ proc-macro-error-attr-1.0.4 \ proc-macro-hack-0.5.19 \ proc-macro2-1.0.37 \ proc-quote-0.4.0 \ proc-quote-impl-0.3.2 \ pwd-1.3.1 \ quick-error-2.0.1 \ quote-1.0.18 \ rayon-1.5.1 \ rayon-core-1.9.1 \ redox_syscall-0.2.13 \ redox_users-0.4.3 \ regex-1.5.5 \ regex-automata-0.1.10 \ regex-syntax-0.6.25 \ remove_dir_all-0.5.3 \ remove_dir_all-0.7.0 \ rhai-1.6.1 \ rhai_codegen-1.4.0 \ rustc-demangle-0.1.21 \ same-file-1.0.6 \ sanitize-filename-0.3.0 \ scopeguard-1.1.0 \ semver-1.0.7 \ serde-1.0.136 \ serde_derive-1.0.136 \ sha-1-0.8.2 \ smallvec-1.8.0 \ smartstring-1.0.1 \ static_assertions-1.1.0 \ strsim-0.8.0 \ structopt-0.3.26 \ structopt-derive-0.4.18 \ syn-1.0.91 \ synstructure-0.12.6 \ tempfile-3.3.0 \ terminal_size-0.1.17 \ termtree-0.2.4 \ textwrap-0.11.0 \ thiserror-1.0.30 \ thiserror-impl-1.0.30 \ thread_local-1.1.4 \ time-0.3.9 \ time-macros-0.2.4 \ tinyvec-1.5.1 \ tinyvec_macros-0.1.0 \ toml-0.5.8 \ typenum-1.15.0 \ ucd-trie-0.1.3 \ unicode-bidi-0.3.7 \ unicode-bom-1.1.4 \ unicode-normalization-0.1.19 \ unicode-segmentation-1.9.0 \ unicode-width-0.1.9 \ unicode-xid-0.2.2 \ unindent-0.1.8 \ url-2.2.2 \ vcpkg-0.2.15 \ vec_map-0.8.2 \ version_check-0.9.4 \ wait-timeout-0.2.0 \ walkdir-2.3.2 \ wasi-0.10.2+wasi-snapshot-preview1 \ winapi-0.3.9 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-util-0.1.5 \ winapi-x86_64-pc-windows-gnu-0.4.0 \ zeroize-1.5.4 PLIST_FILES= bin/${PORTNAME} PORTDOCS= CHANGELOG.md CODE_OF_CONDUCT.md CONTRIBUTING.md README.md \ TEMPLATES.md OPTIONS_DEFINE= DOCS post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/${PORTNAME} post-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR} .include diff --git a/devel/desed/Makefile b/devel/desed/Makefile index df8e86f64db4..d7f0e9e02cb2 100644 --- a/devel/desed/Makefile +++ b/devel/desed/Makefile @@ -1,78 +1,78 @@ PORTNAME= desed DISTVERSION= 1.2.0 -PORTREVISION= 18 +PORTREVISION= 19 CATEGORIES= devel MASTER_SITES= CRATESIO DISTFILES= ${CARGO_DIST_SUBDIR}/${DISTNAME}${CARGO_CRATE_EXT} MAINTAINER= yuri@FreeBSD.org COMMENT= Demystify and debug sed scripts from the comfort of your terminal LICENSE= GPLv3 LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= gsed:textproc/gsed USES= cargo PLIST_FILES= bin/${PORTNAME} CARGO_CRATES= ansi_term-0.11.0 \ anyhow-1.0.32 \ arc-swap-0.4.7 \ atty-0.2.14 \ bitflags-1.2.1 \ bytes-0.5.6 \ cassowary-0.3.0 \ cfg-if-0.1.10 \ clap-2.33.3 \ cloudabi-0.0.3 \ crossterm-0.17.6 \ crossterm_winapi-0.6.1 \ either-1.6.1 \ fuchsia-zircon-0.3.3 \ fuchsia-zircon-sys-0.3.3 \ futures-core-0.3.5 \ hermit-abi-0.1.15 \ inotify-0.8.3 \ inotify-sys-0.1.3 \ iovec-0.1.4 \ itertools-0.9.0 \ kernel32-sys-0.2.2 \ kqueue-1.0.2 \ kqueue-sys-1.0.1 \ lazy_static-1.4.0 \ libc-0.2.78 \ lock_api-0.3.4 \ log-0.4.8 \ mio-0.6.22 \ mio-0.7.0 \ miow-0.2.1 \ miow-0.3.5 \ net2-0.2.35 \ ntapi-0.3.4 \ parking_lot-0.10.2 \ parking_lot_core-0.7.2 \ pin-project-lite-0.1.10 \ redox_syscall-0.1.57 \ scopeguard-1.1.0 \ signal-hook-0.1.16 \ signal-hook-registry-1.2.0 \ slab-0.4.2 \ smallvec-1.4.1 \ socket2-0.3.12 \ strsim-0.8.0 \ textwrap-0.11.0 \ tokio-0.2.22 \ tui-0.9.5 \ unicode-segmentation-1.6.0 \ unicode-width-0.1.8 \ vec_map-0.8.2 \ winapi-0.2.8 \ winapi-0.3.9 \ winapi-build-0.1.1 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-x86_64-pc-windows-gnu-0.4.0 \ ws2_32-sys-0.2.1 .include diff --git a/devel/dtool/Makefile b/devel/dtool/Makefile index 11781151c0bd..b288be6672d0 100644 --- a/devel/dtool/Makefile +++ b/devel/dtool/Makefile @@ -1,193 +1,193 @@ PORTNAME= dtool DISTVERSIONPREFIX= v DISTVERSION= 0.12.0 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= devel MAINTAINER= lcook@FreeBSD.org COMMENT= Command-line tool collection to assist development LICENSE= GPLv3 LICENSE_FILE= ${WRKSRC}/LICENSE USES= cargo USE_GITHUB= yes GH_ACCOUNT= guoxbin CARGO_CRATES= aho-corasick-0.7.6 \ ansi_term-0.11.0 \ arrayref-0.3.6 \ arrayvec-0.4.12 \ arrayvec-0.5.2 \ atty-0.2.14 \ autocfg-0.1.7 \ autocfg-1.0.0 \ base64-0.11.0 \ bitcoin_hashes-0.9.7 \ bitflags-1.2.1 \ blake2b_simd-0.5.10 \ block-buffer-0.7.3 \ block-buffer-0.9.0 \ block-padding-0.1.5 \ bs58-0.3.0 \ bstr-0.2.9 \ build_const-0.2.1 \ bumpalo-3.2.0 \ byte-tools-0.3.1 \ byteorder-1.3.2 \ cc-1.0.70 \ cfg-if-0.1.10 \ cfg-if-1.0.0 \ chrono-0.4.10 \ clap-2.33.0 \ cloudabi-0.0.3 \ const-oid-0.6.0 \ constant_time_eq-0.1.5 \ cpufeatures-0.2.1 \ crc-1.8.1 \ crossbeam-utils-0.6.6 \ crypto-bigint-0.2.6 \ crypto-mac-0.11.1 \ csv-1.1.2 \ csv-core-0.1.6 \ curve25519-dalek-ng-4.0.1 \ der-0.4.1 \ digest-0.8.1 \ digest-0.9.0 \ dirs-1.0.5 \ dtoa-0.4.4 \ ecdsa-0.12.4 \ elliptic-curve-0.10.6 \ encode_unicode-0.3.6 \ entities-1.0.1 \ escaper-0.1.0 \ fake-simd-0.1.2 \ ff-0.10.1 \ fuchsia-cprng-0.1.1 \ gcc-0.3.55 \ generic-array-0.12.3 \ generic-array-0.14.4 \ getrandom-0.1.14 \ getrandom-0.2.3 \ group-0.10.0 \ heck-0.3.1 \ hermit-abi-0.1.6 \ hex-0.4.0 \ hmac-0.11.0 \ indexmap-1.3.1 \ itoa-0.4.4 \ js-sys-0.3.53 \ keccak-0.1.0 \ lazy_static-1.4.0 \ libc-0.2.101 \ linked-hash-map-0.5.3 \ log-0.4.8 \ madato-0.5.3 \ md5-0.7.0 \ memchr-2.3.0 \ merlin-3.0.0 \ nodrop-0.1.14 \ num-integer-0.1.42 \ num-traits-0.2.11 \ once_cell-1.8.0 \ opaque-debug-0.2.3 \ opaque-debug-0.3.0 \ p256-0.9.0 \ p384-0.8.0 \ parity-codec-3.5.4 \ pkcs8-0.7.5 \ ppv-lite86-0.2.10 \ prettytable-rs-0.8.0 \ proc-macro2-1.0.29 \ quote-1.0.2 \ rand-0.3.23 \ rand-0.4.6 \ rand-0.5.6 \ rand-0.6.5 \ rand-0.8.4 \ rand_chacha-0.1.1 \ rand_chacha-0.3.1 \ rand_core-0.3.1 \ rand_core-0.4.2 \ rand_core-0.6.3 \ rand_hc-0.1.0 \ rand_hc-0.3.1 \ rand_isaac-0.1.1 \ rand_jitter-0.1.4 \ rand_os-0.1.3 \ rand_pcg-0.1.2 \ rand_xorshift-0.1.1 \ rdrand-0.4.0 \ redox_syscall-0.1.56 \ redox_users-0.3.3 \ regex-1.3.3 \ regex-automata-0.1.8 \ regex-syntax-0.6.13 \ ring-0.16.20 \ ripemd160-0.8.0 \ rust-argon2-0.6.1 \ rust-crypto-0.2.36 \ rustc-serialize-0.3.24 \ ryu-1.0.2 \ schnorrkel-0.10.1 \ secp256k1-0.20.3 \ secp256k1-sys-0.4.1 \ serde-1.0.104 \ serde_derive-1.0.104 \ serde_test-1.0.104 \ serde_yaml-0.7.5 \ sha2-0.8.1 \ sha2-0.9.6 \ sha3-0.8.2 \ signature-1.3.1 \ spin-0.5.2 \ spki-0.4.0 \ static_assertions-1.1.0 \ strsim-0.8.0 \ subtle-2.4.1 \ subtle-ng-2.4.1 \ syn-1.0.76 \ synstructure-0.12.3 \ term-0.5.2 \ textwrap-0.11.0 \ thread_local-1.0.1 \ time-0.1.42 \ twox-hash-1.6.1 \ typenum-1.12.0 \ unicode-segmentation-1.6.0 \ unicode-width-0.1.7 \ unicode-xid-0.2.0 \ untrusted-0.7.1 \ urlencoding-1.0.0 \ vec_map-0.8.1 \ version_check-0.9.2 \ wasi-0.9.0+wasi-snapshot-preview1 \ wasi-0.10.2+wasi-snapshot-preview1 \ wasm-bindgen-0.2.76 \ wasm-bindgen-backend-0.2.76 \ wasm-bindgen-macro-0.2.76 \ wasm-bindgen-macro-support-0.2.76 \ wasm-bindgen-shared-0.2.76 \ web-sys-0.3.53 \ winapi-0.3.8 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-x86_64-pc-windows-gnu-0.4.0 \ yaml-rust-0.4.3 \ yogcrypt-0.0.0 \ zeroize-1.4.1 \ zeroize_derive-1.0.0 PLIST_FILES= bin/${PORTNAME} _DOCS= docs/Usage.md README.md PORTDOCS= ${DOCS:T} OPTIONS_DEFINE= DOCS post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/${PORTNAME} post-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} cd ${WRKSRC} && ${INSTALL_DATA} ${_DOCS} ${STAGEDIR}${DOCSDIR} .include diff --git a/devel/elfcat/Makefile b/devel/elfcat/Makefile index c1cd37a17cc3..52bdb516dae2 100644 --- a/devel/elfcat/Makefile +++ b/devel/elfcat/Makefile @@ -1,21 +1,21 @@ PORTNAME= elfcat DISTVERSION= 0.1.8 -PORTREVISION= 7 +PORTREVISION= 8 CATEGORIES= devel MAINTAINER= lwhsu@FreeBSD.org COMMENT= ELF visualizer, generates HTML files from ELF binaries LICENSE= ZLIB LICENSE_FILE= ${WRKSRC}/license USES= cargo USE_GITHUB= yes GH_ACCOUNT= ruslashev PLIST_FILES= bin/elfcat post-install: @${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/elfcat .include diff --git a/devel/gbump/Makefile b/devel/gbump/Makefile index 671a191a04f0..de0848713af5 100644 --- a/devel/gbump/Makefile +++ b/devel/gbump/Makefile @@ -1,68 +1,68 @@ PORTNAME= gbump PORTVERSION= 1.0.1 -PORTREVISION= 24 +PORTREVISION= 25 CATEGORIES= devel MASTER_SITES= CRATESIO DISTFILES= ${CARGO_DIST_SUBDIR}/${DISTNAME}${CARGO_CRATE_EXT} MAINTAINER= nbari@tequila.io COMMENT= Git tag semantic version bumper LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE LIB_DEPENDS= libgit2.so:devel/libgit2 \ libssh2.so:security/libssh2 USES= cargo ssl CARGO_CRATES= aho-corasick-0.7.6 \ ansi_term-0.11.0 \ atty-0.2.13 \ autocfg-0.1.7 \ bitflags-1.2.1 \ cc-1.0.47 \ cfg-if-0.1.10 \ clap-2.33.0 \ getrandom-0.1.13 \ git2-0.10.1 \ hermit-abi-0.1.3 \ idna-0.2.0 \ jobserver-0.1.17 \ lazy_static-1.4.0 \ libc-0.2.65 \ libgit2-sys-0.9.1 \ libssh2-sys-0.2.13 \ libz-sys-1.0.25 \ log-0.4.8 \ matches-0.1.8 \ maybe-uninit-2.0.0 \ memchr-2.2.1 \ num_cpus-1.11.1 \ openssl-probe-0.1.2 \ openssl-sys-0.9.52 \ percent-encoding-2.1.0 \ pkg-config-0.3.17 \ regex-1.3.1 \ regex-syntax-0.6.12 \ smallvec-0.6.13 \ strsim-0.8.0 \ textwrap-0.11.0 \ thread_local-0.3.6 \ unicode-bidi-0.3.4 \ unicode-normalization-0.1.9 \ unicode-width-0.1.6 \ url-2.1.0 \ vcpkg-0.2.7 \ vec_map-0.8.1 \ wasi-0.7.0 \ winapi-0.3.8 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-x86_64-pc-windows-gnu-0.4.0 PLIST_FILES= bin/gbump post-install: @${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/gbump .include diff --git a/devel/gfold/Makefile b/devel/gfold/Makefile index e5a003fe32ea..9096dc715906 100644 --- a/devel/gfold/Makefile +++ b/devel/gfold/Makefile @@ -1,32 +1,32 @@ PORTNAME= gfold DISTVERSION= 4.0.0 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= devel MAINTAINER= sec.research.2005@gmail.com COMMENT= CLI tool to help keep track of your Git repositories LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE USES= cargo USE_GITHUB= yes GH_ACCOUNT= nickgerace BINARY_NAME= gitfold OPTIONS_DEFINE= DOCS OPTIONS_DEFAULT= DOCS PORTDOCS= CHANGELOG.md README.md PLIST_FILES= bin/${BINARY_NAME} post-install: @${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/${PORTNAME} ${MV} ${STAGEDIR}${PREFIX}/bin/${PORTNAME} ${STAGEDIR}${PREFIX}/bin/${BINARY_NAME} post-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} (cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${STAGEDIR}${DOCSDIR}) .include "${.CURDIR}/bsd.gfold.mk" .include diff --git a/devel/git-absorb/Makefile b/devel/git-absorb/Makefile index 7342776d47d5..42c3ebc500ad 100644 --- a/devel/git-absorb/Makefile +++ b/devel/git-absorb/Makefile @@ -1,90 +1,90 @@ PORTNAME= git-absorb DISTVERSION= 0.6.6 -PORTREVISION= 8 +PORTREVISION= 9 CATEGORIES= devel MAINTAINER= greg@unrelenting.technology COMMENT= Git command for automating fixup/autosquash commits LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE.md LIB_DEPENDS= libgit2.so:devel/libgit2 USES= cargo USE_GITHUB= yes GH_ACCOUNT= tummychow CARGO_CRATES= ansi_term-0.11.0 \ anyhow-1.0.33 \ arrayref-0.3.6 \ arrayvec-0.5.1 \ atty-0.2.14 \ autocfg-1.0.1 \ base64-0.12.3 \ bitflags-1.2.1 \ blake2b_simd-0.5.10 \ cc-1.0.60 \ cfg-if-0.1.10 \ chrono-0.4.19 \ clap-2.33.3 \ constant_time_eq-0.1.5 \ crossbeam-channel-0.4.4 \ crossbeam-utils-0.7.2 \ dirs-2.0.2 \ dirs-sys-0.3.5 \ getrandom-0.1.15 \ git2-0.13.11 \ hermit-abi-0.1.17 \ idna-0.2.0 \ jobserver-0.1.21 \ lazy_static-1.4.0 \ libc-0.2.79 \ libgit2-sys-0.12.13+1.0.1 \ libz-sys-1.1.2 \ log-0.4.11 \ matches-0.1.8 \ maybe-uninit-2.0.0 \ memchr-2.3.3 \ num-integer-0.1.43 \ num-traits-0.2.12 \ percent-encoding-2.1.0 \ pkg-config-0.3.18 \ ppv-lite86-0.2.9 \ rand-0.7.3 \ rand_chacha-0.2.2 \ rand_core-0.5.1 \ rand_hc-0.2.0 \ redox_syscall-0.1.57 \ redox_users-0.3.5 \ remove_dir_all-0.5.3 \ rust-argon2-0.8.2 \ slog-2.5.2 \ slog-async-2.5.0 \ slog-term-2.6.0 \ strsim-0.8.0 \ take_mut-0.2.2 \ tempfile-3.1.0 \ term-0.6.1 \ textwrap-0.11.0 \ thread_local-1.0.1 \ time-0.1.44 \ tinyvec-0.3.4 \ unicode-bidi-0.3.4 \ unicode-normalization-0.1.13 \ unicode-width-0.1.8 \ url-2.1.1 \ vcpkg-0.2.10 \ vec_map-0.8.2 \ wasi-0.9.0+wasi-snapshot-preview1 \ wasi-0.10.0+wasi-snapshot-preview1 \ winapi-0.3.9 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-x86_64-pc-windows-gnu-0.4.0 PLIST_FILES= bin/git-absorb post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/git-absorb .include diff --git a/devel/git-delta/Makefile b/devel/git-delta/Makefile index 97aa293ea688..83c8952c294b 100644 --- a/devel/git-delta/Makefile +++ b/devel/git-delta/Makefile @@ -1,155 +1,155 @@ PORTNAME= delta DISTVERSION= 0.9.2 -PORTREVISION= 8 +PORTREVISION= 9 CATEGORIES= devel PKGNAMEPREFIX= git- MAINTAINER= greg@unrelenting.technology COMMENT= Syntax-highlighting pager for git/diff LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE LIB_DEPENDS+= libgit2.so:devel/libgit2 \ libonig.so:devel/oniguruma USES= cargo cpe CPE_VENDOR= ${PORTNAME}_project USE_GITHUB= yes GH_ACCOUNT= dandavison CARGO_CRATES= adler-0.2.3 \ aho-corasick-0.7.15 \ ansi_colours-1.0.4 \ ansi_term-0.11.0 \ ansi_term-0.12.1 \ arrayvec-0.5.2 \ atty-0.2.14 \ autocfg-1.0.1 \ base64-0.13.0 \ bincode-1.3.1 \ bitflags-1.3.2 \ box_drawing-0.1.2 \ bstr-0.2.15 \ bytelines-2.2.2 \ byteorder-1.3.4 \ cc-1.0.66 \ cfg-if-0.1.10 \ cfg-if-1.0.0 \ chrono-0.4.19 \ clap-2.33.3 \ console-0.15.0 \ crc32fast-1.2.1 \ ctrlc-3.2.1 \ dirs-3.0.2 \ dirs-next-2.0.0 \ dirs-sys-0.3.6 \ dirs-sys-next-0.1.1 \ either-1.6.1 \ encode_unicode-0.3.6 \ error-chain-0.12.4 \ flate2-1.0.19 \ fnv-1.0.7 \ form_urlencoded-1.0.0 \ getrandom-0.1.16 \ getrandom-0.2.3 \ git2-0.13.23 \ globset-0.4.8 \ grep-cli-0.1.6 \ hashbrown-0.8.2 \ heck-0.3.2 \ hermit-abi-0.1.17 \ idna-0.2.0 \ indexmap-1.5.2 \ itertools-0.10.1 \ itoa-0.4.7 \ jobserver-0.1.21 \ lazy_static-1.4.0 \ lazycell-1.3.0 \ libc-0.2.103 \ libgit2-sys-0.12.24+1.3.0 \ libz-sys-1.1.2 \ line-wrap-0.1.1 \ linked-hash-map-0.5.3 \ log-0.4.11 \ matches-0.1.8 \ memchr-2.3.4 \ memoffset-0.6.4 \ miniz_oxide-0.4.3 \ nix-0.23.0 \ num-integer-0.1.44 \ num-traits-0.2.14 \ once_cell-1.8.0 \ onig-6.1.1 \ onig_sys-69.6.0 \ pathdiff-0.2.1 \ percent-encoding-2.1.0 \ pkg-config-0.3.19 \ plist-1.0.1 \ proc-macro-error-1.0.4 \ proc-macro-error-attr-1.0.4 \ proc-macro2-1.0.24 \ quote-1.0.8 \ redox_syscall-0.1.57 \ redox_syscall-0.2.10 \ redox_users-0.3.5 \ redox_users-0.4.0 \ regex-1.4.6 \ regex-automata-0.1.10 \ regex-syntax-0.6.22 \ ryu-1.0.5 \ safemem-0.3.3 \ same-file-1.0.6 \ serde-1.0.118 \ serde_derive-1.0.118 \ serde_json-1.0.61 \ shell-words-1.0.0 \ smol_str-0.1.18 \ strsim-0.8.0 \ structopt-0.3.25 \ structopt-derive-0.4.18 \ syn-1.0.57 \ syntect-4.6.0 \ termcolor-1.1.2 \ terminal_size-0.1.15 \ textwrap-0.11.0 \ tinyvec-1.1.0 \ tinyvec_macros-0.1.0 \ unicode-bidi-0.3.4 \ unicode-normalization-0.1.16 \ unicode-segmentation-1.8.0 \ unicode-width-0.1.9 \ unicode-xid-0.2.1 \ url-2.2.0 \ utf8parse-0.2.0 \ vcpkg-0.2.11 \ vec_map-0.8.2 \ version_check-0.9.2 \ vte-0.10.1 \ vte_generate_state_changes-0.1.1 \ walkdir-2.3.1 \ wasi-0.9.0+wasi-snapshot-preview1 \ wasi-0.10.0+wasi-snapshot-preview1 \ winapi-0.3.9 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-util-0.1.5 \ winapi-x86_64-pc-windows-gnu-0.4.0 \ xdg-2.4.0 \ xml-rs-0.8.3 \ yaml-rust-0.4.5 CONFLICTS_INSTALL= delta PLIST_FILES= bin/delta OPTIONS_DEFINE= BASH OPTIONS_DEFAULT= BASH BASH_PLIST_FILES= etc/bash_completion.d/_delta.bash do-install-BASH-on: ${MKDIR} ${STAGEDIR}${LOCALBASE}/etc/bash_completion.d ${INSTALL_DATA} ${WRKSRC}/etc/completion/completion.bash \ ${STAGEDIR}${LOCALBASE}/etc/bash_completion.d/_delta.bash post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/delta .include diff --git a/devel/gitui/Makefile b/devel/gitui/Makefile index ebf95fa2ce24..28fb446c813b 100644 --- a/devel/gitui/Makefile +++ b/devel/gitui/Makefile @@ -1,231 +1,232 @@ PORTNAME= gitui DISTVERSIONPREFIX= v DISTVERSION= 0.21.0 +PORTREVISION= 1 CATEGORIES= devel MAINTAINER= yuri@FreeBSD.org COMMENT= Terminal UI for git LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.md BROKEN_armv7= error: conflicting types for 'get_proc_total', see https://github.com/FillZpp/sys-info-rs/issues/80 BROKEN_i386= error: conflicting types for 'get_proc_total', see https://github.com/FillZpp/sys-info-rs/issues/80 BROKEN_powerpc= error: conflicting types for 'get_proc_total', see https://github.com/FillZpp/sys-info-rs/issues/80 BUILD_DEPENDS= bash:shells/bash \ gmake:devel/gmake LIB_DEPENDS= libgit2.so:devel/libgit2 \ libssh2.so:security/libssh2 USES= cargo pkgconfig localbase:ldflags perl5 python:build xorg USE_XORG= xcb USE_GITHUB= yes GH_ACCOUNT= extrawurst CARGO_CRATES= addr2line-0.17.0 \ adler-1.0.2 \ ahash-0.7.6 \ aho-corasick-0.7.18 \ android_system_properties-0.1.4 \ ansi_term-0.12.1 \ anyhow-1.0.62 \ arrayvec-0.4.12 \ atty-0.2.14 \ autocfg-1.1.0 \ backtrace-0.3.66 \ base64-0.13.0 \ bincode-1.3.3 \ bit-set-0.5.3 \ bit-vec-0.6.3 \ bitflags-1.3.2 \ bugreport-0.5.0 \ bumpalo-3.11.0 \ bytemuck-1.12.1 \ bytesize-1.1.0 \ cassowary-0.3.0 \ cc-1.0.73 \ cfg-if-1.0.0 \ chrono-0.4.22 \ clap-3.2.17 \ clap_lex-0.2.4 \ core-foundation-sys-0.8.3 \ cpp_demangle-0.3.5 \ crc32fast-1.3.2 \ crossbeam-channel-0.5.6 \ crossbeam-deque-0.8.2 \ crossbeam-epoch-0.9.10 \ crossbeam-utils-0.8.11 \ crossterm-0.23.2 \ crossterm_winapi-0.9.0 \ ctor-0.1.23 \ dashmap-5.3.4 \ debugid-0.8.0 \ diff-0.1.13 \ dirs-4.0.0 \ dirs-next-2.0.0 \ dirs-sys-0.3.7 \ dirs-sys-next-0.1.2 \ easy-cast-0.4.4 \ either-1.7.0 \ fancy-regex-0.7.1 \ fastrand-1.8.0 \ findshlibs-0.10.2 \ flate2-1.0.24 \ fnv-1.0.7 \ form_urlencoded-1.0.1 \ futures-0.3.23 \ futures-channel-0.3.23 \ futures-core-0.3.23 \ futures-executor-0.3.23 \ futures-io-0.3.23 \ futures-sink-0.3.23 \ futures-task-0.3.23 \ futures-util-0.3.23 \ fuzzy-matcher-0.3.7 \ getrandom-0.2.7 \ gh-emoji-1.0.7 \ gimli-0.26.2 \ git-version-0.3.5 \ git-version-macro-0.3.5 \ git2-0.15.0 \ hashbrown-0.12.3 \ hermit-abi-0.1.19 \ iana-time-zone-0.1.45 \ idna-0.2.3 \ indexmap-1.9.1 \ inferno-0.11.7 \ instant-0.1.12 \ itertools-0.10.3 \ itoa-0.4.8 \ itoa-1.0.3 \ jobserver-0.1.24 \ js-sys-0.3.59 \ lazy_static-1.4.0 \ libc-0.2.132 \ libgit2-sys-0.14.0+1.5.0 \ libssh2-sys-0.2.23 \ libz-sys-1.1.8 \ lock_api-0.4.7 \ log-0.4.17 \ matches-0.1.9 \ memchr-2.5.0 \ memmap2-0.5.7 \ memoffset-0.6.5 \ miniz_oxide-0.5.3 \ mio-0.8.4 \ nix-0.24.2 \ nodrop-0.1.14 \ num-format-0.4.0 \ num-integer-0.1.45 \ num-traits-0.2.15 \ num_cpus-1.13.1 \ num_threads-0.1.6 \ object-0.29.0 \ once_cell-1.13.1 \ openssl-probe-0.1.5 \ openssl-src-111.22.0+1.1.1q \ openssl-sys-0.9.75 \ os_str_bytes-6.3.0 \ output_vt100-0.1.3 \ parking_lot-0.12.1 \ parking_lot_core-0.9.3 \ percent-encoding-2.1.0 \ phf-0.11.1 \ phf_shared-0.11.1 \ pin-project-lite-0.2.9 \ pin-utils-0.1.0 \ pkg-config-0.3.25 \ pprof-0.10.0 \ pretty_assertions-1.2.1 \ proc-macro-error-1.0.4 \ proc-macro-error-attr-1.0.4 \ proc-macro-hack-0.5.19 \ proc-macro2-1.0.43 \ quick-xml-0.23.0 \ quote-1.0.21 \ rayon-core-1.9.3 \ redox_syscall-0.2.16 \ redox_users-0.4.3 \ regex-1.6.0 \ regex-syntax-0.6.27 \ remove_dir_all-0.5.3 \ rgb-0.8.33 \ ron-0.8.0 \ rustc-demangle-0.1.21 \ ryu-1.0.11 \ same-file-1.0.6 \ scopeguard-1.1.0 \ serde-1.0.143 \ serde_derive-1.0.143 \ serde_json-1.0.83 \ serial_test-0.9.0 \ serial_test_derive-0.9.0 \ shell-escape-0.1.5 \ shellexpand-2.1.2 \ signal-hook-0.3.14 \ signal-hook-mio-0.2.3 \ signal-hook-registry-1.4.0 \ simplelog-0.12.0 \ siphasher-0.3.10 \ slab-0.4.7 \ smallvec-1.9.0 \ smawk-0.3.1 \ stable_deref_trait-1.2.0 \ str_stack-0.1.0 \ strsim-0.10.0 \ symbolic-common-9.1.1 \ symbolic-demangle-9.1.1 \ syn-1.0.99 \ syntect-5.0.0 \ sys-info-0.9.1 \ tempfile-3.3.0 \ termcolor-1.1.3 \ textwrap-0.15.0 \ thiserror-1.0.32 \ thiserror-impl-1.0.32 \ thread_local-1.1.4 \ time-0.3.13 \ time-macros-0.2.4 \ tinyvec-1.6.0 \ tinyvec_macros-0.1.0 \ tui-0.18.0 \ unicode-bidi-0.3.8 \ unicode-ident-1.0.3 \ unicode-linebreak-0.1.2 \ unicode-normalization-0.1.21 \ unicode-segmentation-1.9.0 \ unicode-truncate-0.2.0 \ unicode-width-0.1.9 \ url-2.2.2 \ uuid-1.1.2 \ vcpkg-0.2.15 \ version_check-0.9.4 \ walkdir-2.3.2 \ wasi-0.11.0+wasi-snapshot-preview1 \ wasm-bindgen-0.2.82 \ wasm-bindgen-backend-0.2.82 \ wasm-bindgen-macro-0.2.82 \ wasm-bindgen-macro-support-0.2.82 \ wasm-bindgen-shared-0.2.82 \ which-4.2.5 \ winapi-0.3.9 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-util-0.1.5 \ winapi-x86_64-pc-windows-gnu-0.4.0 \ windows-sys-0.36.1 \ windows_aarch64_msvc-0.36.1 \ windows_i686_gnu-0.36.1 \ windows_i686_msvc-0.36.1 \ windows_x86_64_gnu-0.36.1 \ windows_x86_64_msvc-0.36.1 RUSTFLAGS+= --cap-lints=warn PLIST_FILES= bin/${PORTNAME} BINARY_ALIAS= python3=${PYTHON_CMD} # xcb requires python3 post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/${PORTNAME} .include diff --git a/devel/grcov/Makefile b/devel/grcov/Makefile index 301c58284c8b..45790d5e11f0 100644 --- a/devel/grcov/Makefile +++ b/devel/grcov/Makefile @@ -1,192 +1,192 @@ PORTNAME= grcov DISTVERSIONPREFIX= v DISTVERSION= 0.8.10 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel MAINTAINER= yuri@FreeBSD.org COMMENT= Code coverage information aggregator LICENSE= MPL20 LICENSE_FILE= ${WRKSRC}/LICENSE-MPL-2.0 USES= cargo USE_GITHUB= yes GH_ACCOUNT= mozilla CARGO_CRATES= \ addr2line-0.17.0 \ adler-1.0.2 \ aho-corasick-0.7.18 \ ansi_term-0.12.1 \ anyhow-1.0.57 \ atty-0.2.14 \ autocfg-1.1.0 \ backtrace-0.3.65 \ bitflags-1.3.2 \ block-buffer-0.7.3 \ block-buffer-0.10.2 \ block-padding-0.1.5 \ bstr-0.2.17 \ byte-tools-0.3.1 \ byteorder-1.4.3 \ cargo-binutils-0.3.5 \ cargo_metadata-0.11.4 \ cc-1.0.73 \ cfg-if-1.0.0 \ chrono-0.4.19 \ chrono-tz-0.6.1 \ chrono-tz-build-0.0.2 \ clap-2.34.0 \ cpp_demangle-0.3.5 \ crc32fast-1.3.2 \ crossbeam-0.8.1 \ crossbeam-channel-0.5.4 \ crossbeam-deque-0.8.1 \ crossbeam-epoch-0.9.8 \ crossbeam-queue-0.3.5 \ crossbeam-utils-0.8.8 \ crypto-common-0.1.3 \ ctor-0.1.22 \ debugid-0.7.3 \ deunicode-0.4.3 \ diff-0.1.12 \ digest-0.8.1 \ digest-0.10.3 \ either-1.6.1 \ failure-0.1.8 \ failure_derive-0.1.8 \ fake-simd-0.1.2 \ fastrand-1.7.0 \ flate2-1.0.24 \ fnv-1.0.7 \ fomat-macros-0.3.1 \ generic-array-0.12.4 \ generic-array-0.14.5 \ getrandom-0.2.6 \ gimli-0.26.1 \ globset-0.4.9 \ globwalk-0.8.1 \ heck-0.3.3 \ hermit-abi-0.1.19 \ humansize-1.1.1 \ ignore-0.4.18 \ instant-0.1.12 \ is_executable-1.0.1 \ itoa-1.0.2 \ lazy_static-1.4.0 \ libc-0.2.126 \ libz-sys-1.1.8 \ log-0.4.17 \ maplit-1.0.2 \ md-5-0.10.1 \ memchr-2.5.0 \ memmap2-0.5.4 \ memoffset-0.6.5 \ miniz_oxide-0.5.3 \ msvc-demangler-0.9.0 \ num-integer-0.1.45 \ num-traits-0.2.15 \ num_cpus-1.13.1 \ num_threads-0.1.6 \ object-0.28.4 \ once_cell-1.12.0 \ opaque-debug-0.2.3 \ output_vt100-0.1.3 \ parse-zoneinfo-0.3.0 \ percent-encoding-2.1.0 \ pest-2.1.3 \ pest_derive-2.1.0 \ pest_generator-2.1.3 \ pest_meta-2.1.3 \ phf-0.10.1 \ phf_codegen-0.10.0 \ phf_generator-0.10.0 \ phf_shared-0.10.0 \ pkg-config-0.3.25 \ ppv-lite86-0.2.16 \ pretty_assertions-1.2.1 \ proc-macro-error-1.0.4 \ proc-macro-error-attr-1.0.4 \ proc-macro2-1.0.39 \ quick-xml-0.23.0 \ quote-1.0.18 \ rand-0.8.5 \ rand_chacha-0.3.1 \ rand_core-0.6.3 \ rayon-1.5.3 \ rayon-core-1.9.3 \ redox_syscall-0.2.13 \ regex-1.5.6 \ regex-syntax-0.6.26 \ remove_dir_all-0.5.3 \ rustc-cfg-0.4.0 \ rustc-demangle-0.1.21 \ rustc-hash-1.1.0 \ rustc_version-0.2.3 \ ryu-1.0.10 \ same-file-1.0.6 \ scopeguard-1.1.0 \ semver-0.9.0 \ semver-0.10.0 \ semver-1.0.10 \ semver-parser-0.7.0 \ serde-1.0.137 \ serde_derive-1.0.137 \ serde_json-1.0.81 \ sha-1-0.8.2 \ simplelog-0.12.0 \ siphasher-0.3.10 \ slug-0.1.4 \ smallvec-1.8.0 \ stable_deref_trait-1.2.0 \ strsim-0.8.0 \ structopt-0.3.26 \ structopt-derive-0.4.18 \ symbolic-common-8.7.3 \ symbolic-demangle-8.7.3 \ syn-1.0.96 \ synstructure-0.12.6 \ tcmalloc-0.3.0 \ tempfile-3.3.0 \ tera-1.16.0 \ termcolor-1.1.3 \ textwrap-0.11.0 \ thread_local-1.1.4 \ time-0.1.43 \ time-0.3.9 \ time-macros-0.2.4 \ toml-0.5.9 \ typenum-1.15.0 \ ucd-trie-0.1.3 \ uncased-0.9.7 \ unic-char-property-0.9.0 \ unic-char-range-0.9.0 \ unic-common-0.9.0 \ unic-segment-0.9.0 \ unic-ucd-segment-0.9.0 \ unic-ucd-version-0.9.0 \ unicode-ident-1.0.0 \ unicode-segmentation-1.9.0 \ unicode-width-0.1.9 \ unicode-xid-0.2.3 \ uuid-0.8.2 \ uuid-1.1.2 \ vcpkg-0.2.15 \ vec_map-0.8.2 \ version_check-0.9.4 \ walkdir-2.3.2 \ wasi-0.10.2+wasi-snapshot-preview1 \ winapi-0.3.9 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-util-0.1.5 \ winapi-x86_64-pc-windows-gnu-0.4.0 \ zip-0.6.2 PLIST_FILES= bin/grcov post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/${PORTNAME} .include diff --git a/devel/grex/Makefile b/devel/grex/Makefile index 9885ff315815..4969932c7038 100644 --- a/devel/grex/Makefile +++ b/devel/grex/Makefile @@ -1,174 +1,175 @@ PORTNAME= grex DISTVERSIONPREFIX= v DISTVERSION= 1.4.0 +PORTREVISION= 1 CATEGORIES= devel MAINTAINER= petteri.valkonen@iki.fi COMMENT= Command-line tool for generating regular expressions from test cases LICENSE= APACHE20 USES= cargo USE_GITHUB= yes GH_ACCOUNT= pemistahl CARGO_CRATES= aho-corasick-0.7.18 \ assert_cmd-2.0.4 \ atty-0.2.14 \ autocfg-1.0.1 \ bit-set-0.5.2 \ bit-vec-0.6.3 \ bitflags-1.2.1 \ bstr-0.2.15 \ bumpalo-3.9.1 \ byteorder-1.3.4 \ cast-0.2.7 \ cast-0.3.0 \ cfg-if-1.0.0 \ clap-2.34.0 \ clap-3.2.15 \ clap_derive-3.2.15 \ clap_lex-0.2.2 \ console_error_panic_hook-0.1.7 \ criterion-0.3.6 \ criterion-plot-0.4.4 \ crossbeam-channel-0.5.4 \ crossbeam-deque-0.8.1 \ crossbeam-epoch-0.9.8 \ crossbeam-utils-0.8.8 \ csv-1.1.6 \ csv-core-0.1.10 \ difflib-0.4.0 \ doc-comment-0.3.3 \ either-1.6.1 \ fastrand-1.6.0 \ fixedbitset-0.4.0 \ float-cmp-0.9.0 \ fnv-1.0.7 \ futures-0.3.21 \ futures-channel-0.3.21 \ futures-core-0.3.21 \ futures-executor-0.3.21 \ futures-io-0.3.21 \ futures-macro-0.3.21 \ futures-sink-0.3.21 \ futures-task-0.3.21 \ futures-timer-3.0.2 \ futures-util-0.3.21 \ getrandom-0.2.2 \ half-1.8.2 \ hashbrown-0.11.2 \ heck-0.4.0 \ hermit-abi-0.1.17 \ indexmap-1.7.0 \ indoc-1.0.6 \ instant-0.1.12 \ itertools-0.10.3 \ itoa-0.4.8 \ itoa-1.0.1 \ js-sys-0.3.58 \ lazy_static-1.4.0 \ libc-0.2.125 \ log-0.4.17 \ matches-0.1.8 \ matrixmultiply-0.3.2 \ memchr-2.4.0 \ memoffset-0.6.5 \ ndarray-0.15.4 \ normalize-line-endings-0.3.0 \ num-complex-0.4.0 \ num-integer-0.1.44 \ num-traits-0.2.14 \ num_cpus-1.13.1 \ once_cell-1.12.0 \ oorandom-11.1.3 \ os_str_bytes-6.0.0 \ petgraph-0.6.2 \ pin-project-lite-0.2.9 \ pin-utils-0.1.0 \ plotters-0.3.1 \ plotters-backend-0.3.2 \ plotters-svg-0.3.1 \ ppv-lite86-0.2.10 \ predicates-2.1.1 \ predicates-core-1.0.1 \ predicates-tree-1.0.1 \ proc-macro-error-1.0.4 \ proc-macro-error-attr-1.0.4 \ proc-macro2-1.0.36 \ proptest-1.0.0 \ quick-error-1.2.3 \ quick-error-2.0.0 \ quote-1.0.9 \ rand-0.8.3 \ rand_chacha-0.3.0 \ rand_core-0.6.2 \ rand_xorshift-0.3.0 \ rawpointer-0.2.1 \ rayon-1.5.2 \ rayon-core-1.9.2 \ redox_syscall-0.2.10 \ regex-1.6.0 \ regex-automata-0.1.9 \ regex-syntax-0.6.27 \ remove_dir_all-0.5.3 \ rstest-0.15.0 \ rstest_macros-0.14.0 \ rustc_version-0.4.0 \ rusty-fork-0.3.0 \ ryu-1.0.9 \ same-file-1.0.6 \ scoped-tls-1.0.0 \ scopeguard-1.1.0 \ semver-1.0.4 \ serde-1.0.137 \ serde_cbor-0.11.2 \ serde_derive-1.0.136 \ serde_json-1.0.80 \ slab-0.4.6 \ strsim-0.10.0 \ syn-1.0.86 \ tempfile-3.3.0 \ termcolor-1.1.2 \ terminal_size-0.1.17 \ textwrap-0.11.0 \ textwrap-0.15.0 \ tinytemplate-1.2.1 \ treeline-0.1.0 \ unic-char-property-0.9.0 \ unic-char-range-0.9.0 \ unic-common-0.9.0 \ unic-ucd-category-0.9.0 \ unic-ucd-version-0.9.0 \ unicode-segmentation-1.9.0 \ unicode-width-0.1.9 \ unicode-xid-0.2.1 \ version_check-0.9.2 \ wait-timeout-0.2.0 \ walkdir-2.3.2 \ wasi-0.10.2+wasi-snapshot-preview1 \ wasm-bindgen-0.2.81 \ wasm-bindgen-backend-0.2.81 \ wasm-bindgen-futures-0.4.31 \ wasm-bindgen-macro-0.2.81 \ wasm-bindgen-macro-support-0.2.81 \ wasm-bindgen-shared-0.2.81 \ wasm-bindgen-test-0.3.31 \ wasm-bindgen-test-macro-0.3.31 \ web-sys-0.3.57 \ winapi-0.3.9 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-util-0.1.5 \ winapi-x86_64-pc-windows-gnu-0.4.0 PLIST_FILES= bin/grex PORTDOCS= README.md RELEASE_NOTES.md OPTIONS_DEFINE= DOCS post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/grex @${MKDIR} ${STAGEDIR}${DOCSDIR} (cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${STAGEDIR}${DOCSDIR}) .include diff --git a/devel/interactive_rebase_tool/Makefile b/devel/interactive_rebase_tool/Makefile index 09f0646e0500..c71c423bea09 100644 --- a/devel/interactive_rebase_tool/Makefile +++ b/devel/interactive_rebase_tool/Makefile @@ -1,120 +1,120 @@ PORTNAME= interactive_rebase_tool DISTVERSION= 2.2.0 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= devel MAINTAINER= petteri.valkonen@iki.fi COMMENT= Improved sequence editor for Git LICENSE= GPLv3+ LIB_DEPENDS= libgit2.so:devel/libgit2 USES= cargo USE_GITHUB= yes GH_ACCOUNT= MitMaro GH_PROJECT= git-interactive-rebase-tool CARGO_CRATES= ansi_term-0.12.1 \ anyhow-1.0.57 \ arrayvec-0.4.12 \ autocfg-1.0.1 \ bitflags-1.3.2 \ captur-0.1.0 \ cc-1.0.68 \ cfg-if-1.0.0 \ chrono-0.4.19 \ crossbeam-channel-0.5.4 \ crossbeam-utils-0.8.6 \ crossterm-0.23.2 \ crossterm_winapi-0.9.0 \ ctor-0.1.21 \ diff-0.1.12 \ fastrand-1.6.0 \ form_urlencoded-1.0.1 \ getrandom-0.2.3 \ git2-0.14.2 \ idna-0.2.3 \ instant-0.1.9 \ itoa-0.4.7 \ jobserver-0.1.22 \ lazy_static-1.4.0 \ libc-0.2.97 \ libgit2-sys-0.13.2+1.4.2 \ libz-sys-1.1.3 \ lock_api-0.4.6 \ log-0.4.14 \ matches-0.1.8 \ mio-0.8.2 \ miow-0.3.7 \ nodrop-0.1.14 \ ntapi-0.3.6 \ num-format-0.4.0 \ num-integer-0.1.44 \ num-traits-0.2.14 \ output_vt100-0.1.2 \ parking_lot-0.11.2 \ parking_lot-0.12.0 \ parking_lot_core-0.8.5 \ parking_lot_core-0.9.0 \ percent-encoding-2.1.0 \ pico-args-0.4.2 \ pkg-config-0.3.19 \ ppv-lite86-0.2.16 \ pretty_assertions-1.2.1 \ proc-macro-error-1.0.4 \ proc-macro-error-attr-1.0.4 \ proc-macro2-1.0.27 \ quote-1.0.9 \ rand-0.8.5 \ rand_chacha-0.3.1 \ rand_core-0.6.3 \ redox_syscall-0.2.9 \ remove_dir_all-0.5.3 \ rstest-0.11.0 \ rstest-0.12.0 \ rustc_version-0.4.0 \ rustversion-1.0.6 \ scopeguard-1.1.0 \ semver-1.0.3 \ serial_test-0.6.0 \ serial_test_derive-0.6.0 \ signal-hook-0.3.13 \ signal-hook-mio-0.2.3 \ signal-hook-registry-1.4.0 \ smallvec-1.6.1 \ syn-1.0.73 \ tempfile-3.3.0 \ time-0.1.43 \ tinyvec-1.2.0 \ tinyvec_macros-0.1.0 \ unicode-bidi-0.3.5 \ unicode-normalization-0.1.19 \ unicode-segmentation-1.9.0 \ unicode-width-0.1.9 \ unicode-xid-0.2.2 \ url-2.2.2 \ uuid-1.0.0 \ vcpkg-0.2.15 \ version_check-0.9.4 \ wasi-0.10.2+wasi-snapshot-preview1 \ wasi-0.11.0+wasi-snapshot-preview1 \ winapi-0.3.9 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-x86_64-pc-windows-gnu-0.4.0 \ windows-sys-0.29.0 \ windows_aarch64_msvc-0.29.0 \ windows_i686_gnu-0.29.0 \ windows_i686_msvc-0.29.0 \ windows_x86_64_gnu-0.29.0 \ windows_x86_64_msvc-0.29.0 \ xi-unicode-0.3.0 PLIST_FILES= bin/interactive-rebase-tool \ man/man1/interactive-rebase-tool.1.gz post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/interactive-rebase-tool ${INSTALL_MAN} ${WRKSRC}/src/interactive-rebase-tool.1 ${STAGEDIR}${MAN1PREFIX}/man/man1 .include diff --git a/devel/pijul/Makefile b/devel/pijul/Makefile index 7ae95cf7d96e..287f8df373e9 100644 --- a/devel/pijul/Makefile +++ b/devel/pijul/Makefile @@ -1,292 +1,292 @@ PORTNAME= pijul PORTVERSION= 1.0.0.b -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= devel MAINTAINER= cs@FreeBSD.org COMMENT= Distributed version control system LICENSE= GPLv2 LIB_DEPENDS= libzstd.so:archivers/zstd \ libxxhash.so:devel/xxhash USES= cargo ssl CARGO_INSTALL= no CARGO_CRATES= ${PORTNAME}-1.0.0-beta \ addr2line-0.17.0 \ adler-1.0.2 \ adler32-1.2.0 \ aes-0.7.5 \ aho-corasick-0.7.18 \ anyhow-1.0.52 \ arrayref-0.3.6 \ arrayvec-0.7.2 \ atty-0.2.14 \ autocfg-1.0.1 \ backtrace-0.3.63 \ base64-0.13.0 \ base64ct-1.3.3 \ bcrypt-pbkdf-0.6.2 \ bincode-1.3.3 \ bit-vec-0.6.3 \ bitflags-1.3.2 \ blake3-1.3.0 \ block-buffer-0.9.0 \ block-buffer-0.10.0 \ block-modes-0.8.1 \ block-padding-0.2.1 \ blowfish-0.8.0 \ bs58-0.4.0 \ bstr-0.2.17 \ bumpalo-3.9.1 \ byteorder-1.4.3 \ bytes-1.1.0 \ canonical-path-2.0.2 \ cc-1.0.72 \ cfg-if-1.0.0 \ chrono-0.4.19 \ cipher-0.3.0 \ clap-3.0.10 \ clap_derive-3.0.6 \ constant_time_eq-0.1.5 \ core-foundation-0.9.2 \ core-foundation-sys-0.8.3 \ cpufeatures-0.2.1 \ crc32fast-1.3.0 \ crossbeam-deque-0.8.1 \ crossbeam-epoch-0.9.6 \ crossbeam-utils-0.8.6 \ crypto-common-0.1.1 \ crypto-mac-0.11.1 \ cryptovec-0.6.1 \ ctr-0.8.0 \ ctrlc-3.2.1 \ curve25519-dalek-3.2.0 \ data-encoding-2.3.2 \ diffs-0.4.1 \ digest-0.9.0 \ digest-0.10.1 \ dirs-3.0.2 \ dirs-next-2.0.0 \ dirs-sys-0.3.6 \ dirs-sys-next-0.1.2 \ ed25519-1.3.0 \ ed25519-dalek-1.0.1 \ edit-0.1.3 \ either-1.6.1 \ encoding_rs-0.8.30 \ env_logger-0.8.4 \ errno-0.2.8 \ errno-dragonfly-0.1.2 \ fastrand-1.6.0 \ filetime-0.2.15 \ flate2-1.0.22 \ fnv-1.0.7 \ foreign-types-0.3.2 \ foreign-types-shared-0.1.1 \ form_urlencoded-1.0.1 \ fs2-0.4.3 \ futures-0.3.19 \ futures-channel-0.3.19 \ futures-core-0.3.19 \ futures-executor-0.3.19 \ futures-io-0.3.19 \ futures-macro-0.3.19 \ futures-sink-0.3.19 \ futures-task-0.3.19 \ futures-util-0.3.19 \ generic-array-0.14.5 \ getrandom-0.1.16 \ getrandom-0.2.4 \ gimli-0.26.1 \ git2-0.13.25 \ globset-0.4.8 \ h2-0.3.10 \ hashbrown-0.11.2 \ heck-0.4.0 \ hermit-abi-0.1.19 \ hmac-0.11.0 \ http-0.2.6 \ http-body-0.4.4 \ httparse-1.5.1 \ httpdate-1.0.2 \ human-panic-1.0.3 \ humantime-2.1.0 \ hyper-0.14.16 \ hyper-tls-0.5.0 \ idna-0.2.3 \ ignore-0.4.18 \ indexmap-1.8.0 \ instant-0.1.12 \ ipnet-2.3.1 \ itoa-0.4.8 \ itoa-1.0.1 \ jobserver-0.1.24 \ js-sys-0.3.55 \ lazy_static-1.4.0 \ libc-0.2.112 \ libgit2-sys-0.12.26+1.3.0 \ libpijul-1.0.0-beta \ libsodium-sys-0.2.7 \ libssh2-sys-0.2.23 \ libz-sys-1.1.3 \ linked-hash-map-0.5.4 \ lock_api-0.4.5 \ log-0.4.14 \ lru-cache-0.1.2 \ matches-0.1.9 \ md5-0.7.0 \ memchr-2.4.1 \ memmap-0.7.0 \ memoffset-0.6.5 \ mime-0.3.16 \ minimal-lexical-0.2.1 \ miniz_oxide-0.4.4 \ mio-0.7.14 \ miow-0.3.7 \ native-tls-0.2.8 \ nix-0.23.1 \ nom-7.1.0 \ ntapi-0.3.6 \ num-bigint-0.4.3 \ num-integer-0.1.44 \ num-traits-0.2.14 \ num_cpus-1.13.1 \ object-0.27.1 \ once_cell-1.9.0 \ opaque-debug-0.3.0 \ openssl-0.10.38 \ openssl-probe-0.1.5 \ openssl-sys-0.9.72 \ os_str_bytes-6.0.0 \ os_type-2.4.0 \ pager-0.16.0 \ parking_lot-0.11.2 \ parking_lot_core-0.8.5 \ password-hash-0.2.3 \ path-slash-0.1.4 \ pbkdf2-0.8.0 \ pbkdf2-0.9.0 \ percent-encoding-2.1.0 \ pijul-macros-0.5.0 \ pin-project-lite-0.2.8 \ pin-utils-0.1.0 \ pkg-config-0.3.24 \ ppv-lite86-0.2.16 \ proc-macro-error-1.0.4 \ proc-macro-error-attr-1.0.4 \ proc-macro2-1.0.36 \ quote-1.0.14 \ rand-0.7.3 \ rand-0.8.4 \ rand_chacha-0.2.2 \ rand_chacha-0.3.1 \ rand_core-0.5.1 \ rand_core-0.6.3 \ rand_hc-0.2.0 \ rand_hc-0.3.1 \ redox_syscall-0.2.10 \ redox_users-0.4.0 \ regex-1.5.4 \ regex-syntax-0.6.25 \ remove_dir_all-0.5.3 \ reqwest-0.11.9 \ rlimit-0.6.2 \ rpassword-5.0.1 \ rustc-demangle-0.1.21 \ ryu-1.0.9 \ same-file-1.0.6 \ sanakirja-1.2.16 \ sanakirja-core-1.2.16 \ schannel-0.1.19 \ scopeguard-1.1.0 \ security-framework-2.5.0 \ security-framework-sys-2.5.0 \ serde-1.0.133 \ serde_bytes-0.11.5 \ serde_derive-1.0.133 \ serde_json-1.0.75 \ serde_urlencoded-0.7.1 \ sha2-0.9.9 \ signal-hook-registry-1.4.0 \ signature-1.5.0 \ slab-0.4.5 \ smallvec-1.8.0 \ socket2-0.4.2 \ static_assertions-1.1.0 \ strsim-0.10.0 \ subtle-2.4.1 \ syn-1.0.85 \ synstructure-0.12.6 \ tar-0.4.38 \ tempfile-3.3.0 \ termcolor-1.1.2 \ terminal_size-0.1.17 \ textwrap-0.14.2 \ thiserror-1.0.30 \ thiserror-impl-1.0.30 \ thread_local-1.1.3 \ threadpool-1.8.1 \ thrussh-0.33.5 \ thrussh-config-0.5.0 \ thrussh-keys-0.21.0 \ thrussh-libsodium-0.2.1 \ time-0.1.43 \ tinyvec-1.5.1 \ tinyvec_macros-0.1.0 \ tokio-1.15.0 \ tokio-macros-1.7.0 \ tokio-native-tls-0.3.0 \ tokio-stream-0.1.8 \ tokio-util-0.6.9 \ toml-0.5.8 \ tower-service-0.3.1 \ tracing-0.1.29 \ tracing-core-0.1.21 \ try-lock-0.2.3 \ twox-hash-1.6.2 \ typenum-1.15.0 \ unicode-bidi-0.3.7 \ unicode-normalization-0.1.19 \ unicode-xid-0.2.2 \ url-2.2.2 \ uuid-0.8.2 \ vcpkg-0.2.15 \ version_check-0.9.4 \ walkdir-2.3.2 \ want-0.3.0 \ wasi-0.9.0+wasi-snapshot-preview1 \ wasi-0.10.3+wasi-snapshot-preview1 \ wasm-bindgen-0.2.78 \ wasm-bindgen-backend-0.2.78 \ wasm-bindgen-futures-0.4.28 \ wasm-bindgen-macro-0.2.78 \ wasm-bindgen-macro-support-0.2.78 \ wasm-bindgen-shared-0.2.78 \ web-sys-0.3.55 \ which-4.2.2 \ whoami-1.2.1 \ winapi-0.3.9 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-util-0.1.5 \ winapi-x86_64-pc-windows-gnu-0.4.0 \ winreg-0.7.0 \ xattr-0.2.2 \ yasna-0.4.0 \ zeroize-1.3.0 \ zeroize_derive-1.3.1 \ zstd-seekable-0.1.7 PLIST_FILES= bin/pijul post-patch: ${MV} ${WRKSRC}/cargo-crates/pijul-1.0.0-beta/* ${WRKSRC}/ do-install: ${INSTALL_SCRIPT} ${CARGO_TARGET_DIR}/${CARGO_BUILD_TARGET}/*/pijul ${STAGEDIR}${PREFIX}/bin/pijul post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/pijul .include diff --git a/devel/py-maturin/Makefile b/devel/py-maturin/Makefile index 00cf366945a8..23b10bb4d182 100644 --- a/devel/py-maturin/Makefile +++ b/devel/py-maturin/Makefile @@ -1,287 +1,287 @@ PORTNAME= maturin DISTVERSIONPREFIX= v DISTVERSION= 0.11.3 -PORTREVISION= 8 +PORTREVISION= 9 CATEGORIES= devel python PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= kai@FreeBSD.org COMMENT= Build and publish crates with pyo3, rust-cpython and cffi bindings LICENSE= APACHE20 MIT LICENSE_COMB= dual LICENSE_FILE_APACHE20= ${WRKSRC}/license-apache LICENSE_FILE_MIT= ${WRKSRC}/license-mit # Although the port builds fine on some 32-bit architectures (e.g. i386) it # doesn't support creating 32-bit Python wheels for FreeBSD. Thus save build # time and skip the port at a early stage. NOT_FOR_ARCHS= armv6 armv7 i386 mips powerpc NOT_FOR_ARCHS_REASON= the creation of 32-bit Python wheels is not supported for FreeBSD BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}toml>=0.10.0:textproc/py-toml@${PY_FLAVOR} RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}toml>=0.10.0:textproc/py-toml@${PY_FLAVOR} USES= cargo python:3.6+ USE_GITHUB= yes GH_ACCOUNT= PyO3 USE_PYTHON= autoplist concurrent distutils CARGO_CRATES= addr2line-0.16.0 \ adler-1.0.2 \ aes-0.6.0 \ aes-soft-0.6.4 \ aesni-0.10.0 \ aho-corasick-0.7.18 \ ansi_term-0.11.0 \ anyhow-1.0.43 \ atty-0.2.14 \ autocfg-1.0.1 \ backtrace-0.3.61 \ base64-0.10.1 \ base64-0.13.0 \ bitflags-1.3.2 \ block-buffer-0.9.0 \ block-modes-0.7.0 \ block-padding-0.2.1 \ bumpalo-3.7.0 \ byteorder-1.4.3 \ bytes-1.0.1 \ bytesize-1.1.0 \ bzip2-0.4.3 \ bzip2-sys-0.1.11+1.0.8 \ camino-1.0.5 \ cargo-platform-0.1.2 \ cargo_metadata-0.14.0 \ cbindgen-0.20.0 \ cc-1.0.69 \ cfg-if-1.0.0 \ charset-0.1.2 \ cipher-0.2.5 \ clap-2.33.3 \ configparser-2.1.0 \ core-foundation-0.7.0 \ core-foundation-sys-0.7.0 \ cpufeatures-0.1.5 \ crc32fast-1.2.1 \ crypto-mac-0.10.1 \ dbus-0.2.3 \ digest-0.9.0 \ dirs-3.0.2 \ dirs-sys-0.3.6 \ encoding_rs-0.8.28 \ env_logger-0.7.1 \ fat-macho-0.4.4 \ filetime-0.2.15 \ flate2-1.0.20 \ fnv-1.0.7 \ form_urlencoded-1.0.1 \ fs-err-2.6.0 \ futures-channel-0.3.16 \ futures-core-0.3.16 \ futures-io-0.3.16 \ futures-macro-0.3.16 \ futures-sink-0.3.16 \ futures-task-0.3.16 \ futures-util-0.3.16 \ generic-array-0.14.4 \ getrandom-0.1.16 \ getrandom-0.2.3 \ gimli-0.25.0 \ glob-0.3.0 \ goblin-0.4.2 \ h2-0.3.4 \ hashbrown-0.11.2 \ heck-0.3.3 \ hermit-abi-0.1.19 \ hkdf-0.10.0 \ hmac-0.10.1 \ http-0.2.4 \ http-body-0.4.3 \ httparse-1.5.1 \ httpdate-1.0.1 \ human-panic-1.0.3 \ humantime-1.3.0 \ hyper-0.14.12 \ hyper-rustls-0.22.1 \ idna-0.2.3 \ indexmap-1.7.0 \ indoc-1.0.3 \ ipnet-2.3.1 \ itoa-0.4.8 \ js-sys-0.3.53 \ keyring-0.10.1 \ lazy_static-1.4.0 \ libc-0.2.100 \ log-0.4.14 \ mailparse-0.13.5 \ matches-0.1.9 \ memchr-2.4.1 \ mime-0.3.16 \ mime_guess-2.0.3 \ miniz_oxide-0.4.4 \ mio-0.7.13 \ miow-0.3.7 \ ntapi-0.3.6 \ num-0.3.1 \ num-bigint-0.3.2 \ num-complex-0.3.1 \ num-integer-0.1.44 \ num-iter-0.1.42 \ num-rational-0.3.2 \ num-traits-0.2.14 \ num_cpus-1.13.0 \ object-0.26.1 \ once_cell-1.8.0 \ opaque-debug-0.3.0 \ os_type-2.3.0 \ percent-encoding-2.1.0 \ pin-project-lite-0.2.7 \ pin-utils-0.1.0 \ pkg-config-0.3.19 \ plain-0.2.3 \ platform-info-0.1.0 \ ppv-lite86-0.2.10 \ pretty_env_logger-0.4.0 \ proc-macro-error-1.0.4 \ proc-macro-error-attr-1.0.4 \ proc-macro-hack-0.5.19 \ proc-macro-nested-0.1.7 \ proc-macro2-1.0.28 \ pyproject-toml-0.2.0 \ python-pkginfo-0.4.0 \ quick-error-1.2.3 \ quote-1.0.9 \ quoted_printable-0.4.3 \ rand-0.7.3 \ rand-0.8.4 \ rand_chacha-0.2.2 \ rand_chacha-0.3.1 \ rand_core-0.5.1 \ rand_core-0.6.3 \ rand_hc-0.2.0 \ rand_hc-0.3.1 \ redox_syscall-0.2.10 \ redox_users-0.4.0 \ regex-1.5.4 \ regex-syntax-0.6.25 \ remove_dir_all-0.5.3 \ reqwest-0.11.4 \ ring-0.16.20 \ rpassword-5.0.1 \ rustc-demangle-0.1.21 \ rustls-0.19.1 \ ryu-1.0.5 \ same-file-1.0.6 \ scroll-0.10.2 \ scroll_derive-0.10.5 \ sct-0.6.1 \ secret-service-1.1.3 \ security-framework-0.4.4 \ security-framework-sys-0.4.3 \ semver-1.0.4 \ serde-1.0.129 \ serde_derive-1.0.129 \ serde_json-1.0.66 \ serde_urlencoded-0.7.0 \ sha2-0.9.5 \ shlex-1.0.0 \ slab-0.4.4 \ smawk-0.3.1 \ socket2-0.4.1 \ spin-0.5.2 \ strsim-0.8.0 \ structopt-0.3.22 \ structopt-derive-0.4.15 \ subtle-2.4.1 \ syn-1.0.75 \ tar-0.4.37 \ target-lexicon-0.12.2 \ tempfile-3.2.0 \ termcolor-1.1.2 \ textwrap-0.11.0 \ textwrap-0.14.2 \ thiserror-1.0.26 \ thiserror-impl-1.0.26 \ time-0.1.43 \ tinyvec-1.3.1 \ tinyvec_macros-0.1.0 \ tokio-1.10.1 \ tokio-rustls-0.22.0 \ tokio-util-0.6.7 \ toml-0.5.8 \ tower-service-0.3.1 \ tracing-0.1.26 \ tracing-core-0.1.19 \ try-lock-0.2.3 \ typenum-1.13.0 \ unicase-2.6.0 \ unicode-bidi-0.3.6 \ unicode-linebreak-0.1.2 \ unicode-normalization-0.1.19 \ unicode-segmentation-1.8.0 \ unicode-width-0.1.8 \ unicode-xid-0.2.2 \ unindent-0.1.7 \ untrusted-0.7.1 \ url-2.2.2 \ uuid-0.8.2 \ vec_map-0.8.2 \ version_check-0.9.3 \ walkdir-2.3.2 \ want-0.3.0 \ wasi-0.9.0+wasi-snapshot-preview1 \ wasi-0.10.2+wasi-snapshot-preview1 \ wasm-bindgen-0.2.76 \ wasm-bindgen-backend-0.2.76 \ wasm-bindgen-futures-0.4.26 \ wasm-bindgen-macro-0.2.76 \ wasm-bindgen-macro-support-0.2.76 \ wasm-bindgen-shared-0.2.76 \ web-sys-0.3.53 \ webpki-0.21.4 \ webpki-roots-0.21.1 \ winapi-0.3.9 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-util-0.1.5 \ winapi-x86_64-pc-windows-gnu-0.4.0 \ winreg-0.7.0 \ xattr-0.2.2 \ zip-0.5.13 CARGO_BUILD= no CARGO_INSTALL= no CARGO_TARGET_DIR= ${WRKSRC}/target MAKE_ENV= ${CARGO_ENV} .include .if ${ARCH:Mpowerpc*} CARGO_BUILD_ARGS= --no-default-features \ --features=upload,log,human-panic .endif post-patch: @${RM} ${WRKSRC}/pyproject.toml # The binary is usually built via setup.py which uses different compiler flags. # That line is patched out there to use the compiler flags from the Ports # framework instead. The setup.py is processed in the "do-build" target to # install the compiled binary. pre-build: ${CARGO_CARGO_RUN} build \ --manifest-path ${CARGO_CARGOTOML} \ --verbose \ ${CARGO_BUILD_ARGS} post-install: ${INSTALL_PROGRAM} ${CARGO_TARGET_DIR}/${CARGO_BUILD_TARGET}/*/maturin ${STAGEDIR}${PREFIX}/bin ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/maturin # Regenerate .PLIST.pymodtemp to get all installed files from # ${STAGEDIR} because the file that is generated in the first place # contains only the EGG files as a whole. @${FIND} ${STAGEDIR} -type f -o -type l | \ ${SORT} | ${SED} -e 's|${STAGEDIR}||' \ > ${WRKDIR}/.PLIST.pymodtmp .include diff --git a/devel/rust-analyzer/Makefile b/devel/rust-analyzer/Makefile index 1ea3d8c87f4d..13524fcdced9 100644 --- a/devel/rust-analyzer/Makefile +++ b/devel/rust-analyzer/Makefile @@ -1,204 +1,205 @@ PORTNAME= rust-analyzer DISTVERSION= 2022-07-18 +PORTREVISION= 1 CATEGORIES= devel MAINTAINER= rust@FreeBSD.org COMMENT= Experimental Rust compiler front-end for IDEs LICENSE= APACHE20 MIT LICENSE_COMB= dual LICENSE_FILE_APACHE20= ${WRKSRC}/LICENSE-APACHE LICENSE_FILE_MIT= ${WRKSRC}/LICENSE-MIT USES= cargo dos2unix DOS2UNIX_FILES= ${WRKSRC_crate_notify}/src/kqueue.rs USE_GITHUB= yes CARGO_CRATES= addr2line-0.17.0 \ adler-1.0.2 \ always-assert-0.1.2 \ ansi_term-0.12.1 \ anyhow-1.0.58 \ anymap-1.0.0-beta.2 \ arbitrary-1.1.3 \ arrayvec-0.7.2 \ atty-0.2.14 \ autocfg-1.1.0 \ backtrace-0.3.65 \ bitflags-1.3.2 \ camino-1.0.9 \ cargo-platform-0.1.2 \ cargo_metadata-0.15.0 \ cc-1.0.73 \ cfg-if-1.0.0 \ chalk-derive-0.83.0 \ chalk-ir-0.83.0 \ chalk-recursive-0.83.0 \ chalk-solve-0.83.0 \ countme-3.0.1 \ cov-mark-2.0.0-pre.1 \ crc32fast-1.3.2 \ crossbeam-channel-0.5.5 \ crossbeam-deque-0.8.1 \ crossbeam-epoch-0.9.9 \ crossbeam-utils-0.8.10 \ dashmap-5.3.4 \ derive_arbitrary-1.1.3 \ dissimilar-1.0.4 \ dot-0.1.4 \ drop_bomb-0.1.5 \ either-1.7.0 \ ena-0.14.0 \ expect-test-1.3.0 \ filetime-0.2.17 \ fixedbitset-0.2.0 \ flate2-1.0.24 \ form_urlencoded-1.0.1 \ fs_extra-1.2.0 \ fsevent-sys-4.1.0 \ fst-0.4.7 \ gimli-0.26.1 \ hashbrown-0.12.1 \ heck-0.3.3 \ hermit-abi-0.1.19 \ home-0.5.3 \ idna-0.2.3 \ indexmap-1.9.1 \ inotify-0.9.6 \ inotify-sys-0.1.5 \ instant-0.1.12 \ itertools-0.10.3 \ itoa-1.0.2 \ jod-thread-0.1.2 \ kqueue-1.0.6 \ kqueue-sys-1.0.3 \ lazy_static-1.4.0 \ libc-0.2.126 \ libloading-0.7.3 \ libmimalloc-sys-0.1.25 \ lock_api-0.4.7 \ log-0.4.17 \ lsp-types-0.93.0 \ matchers-0.1.0 \ matches-0.1.9 \ memchr-2.5.0 \ memmap2-0.5.4 \ memoffset-0.6.5 \ mimalloc-0.1.29 \ miniz_oxide-0.5.3 \ mio-0.8.4 \ miow-0.4.0 \ notify-5.0.0-pre.15 \ num_cpus-1.13.1 \ object-0.28.4 \ object-0.29.0 \ once_cell-1.12.0 \ oorandom-11.1.3 \ parking_lot-0.11.2 \ parking_lot-0.12.1 \ parking_lot_core-0.8.5 \ parking_lot_core-0.9.3 \ paste-1.0.7 \ percent-encoding-2.1.0 \ perf-event-0.4.7 \ perf-event-open-sys-1.0.1 \ petgraph-0.5.1 \ pin-project-lite-0.2.9 \ proc-macro2-1.0.40 \ pulldown-cmark-0.9.1 \ pulldown-cmark-to-cmark-10.0.2 \ quote-1.0.20 \ rayon-1.5.3 \ rayon-core-1.9.3 \ redox_syscall-0.2.13 \ regex-1.5.6 \ regex-automata-0.1.10 \ regex-syntax-0.6.26 \ rowan-0.15.5 \ rustc-ap-rustc_lexer-725.0.0 \ rustc-demangle-0.1.21 \ rustc-hash-1.1.0 \ ryu-1.0.10 \ salsa-0.17.0-pre.2 \ salsa-macros-0.17.0-pre.2 \ same-file-1.0.6 \ scoped-tls-1.0.0 \ scopeguard-1.1.0 \ semver-1.0.12 \ serde-1.0.138 \ serde_derive-1.0.138 \ serde_json-1.0.82 \ serde_repr-0.1.8 \ sharded-slab-0.1.4 \ smallvec-1.9.0 \ smol_str-0.1.23 \ snap-1.0.5 \ syn-1.0.98 \ synstructure-0.12.6 \ text-size-1.1.0 \ thread_local-1.1.4 \ threadpool-1.8.1 \ tikv-jemalloc-ctl-0.5.0 \ tikv-jemalloc-sys-0.5.1+5.3.0-patched \ tikv-jemallocator-0.5.0 \ tinyvec-1.6.0 \ tinyvec_macros-0.1.0 \ tracing-0.1.35 \ tracing-attributes-0.1.22 \ tracing-core-0.1.28 \ tracing-log-0.1.3 \ tracing-subscriber-0.3.14 \ tracing-tree-0.2.1 \ typed-arena-2.0.1 \ ungrammar-1.16.1 \ unicase-2.6.0 \ unicode-bidi-0.3.8 \ unicode-ident-1.0.1 \ unicode-normalization-0.1.21 \ unicode-segmentation-1.9.0 \ unicode-xid-0.2.3 \ url-2.2.2 \ valuable-0.1.0 \ version_check-0.9.4 \ walkdir-2.3.2 \ wasi-0.11.0+wasi-snapshot-preview1 \ winapi-0.3.9 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-util-0.1.5 \ winapi-x86_64-pc-windows-gnu-0.4.0 \ windows-sys-0.28.0 \ windows-sys-0.36.1 \ windows_aarch64_msvc-0.28.0 \ windows_aarch64_msvc-0.36.1 \ windows_i686_gnu-0.28.0 \ windows_i686_gnu-0.36.1 \ windows_i686_msvc-0.28.0 \ windows_i686_msvc-0.36.1 \ windows_x86_64_gnu-0.28.0 \ windows_x86_64_gnu-0.36.1 \ windows_x86_64_msvc-0.28.0 \ windows_x86_64_msvc-0.36.1 \ write-json-0.1.2 \ xflags-0.2.4 \ xflags-macros-0.2.4 \ xshell-0.2.2 \ xshell-macros-0.2.2 CARGO_INSTALL_PATH= crates/rust-analyzer # attempts to install rustup toolchains NO_TEST= yes PLIST_FILES= bin/rust-analyzer PORTDOCS= * OPTIONS_DEFINE= DOCS post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/rust-analyzer post-install-DOCS-on: @cd ${WRKSRC}/docs && \ ${COPYTREE_SHARE} . ${STAGEDIR}${DOCSDIR} .include diff --git a/devel/rust-bindgen/Makefile b/devel/rust-bindgen/Makefile index 34192b0f3b91..0069e9794840 100644 --- a/devel/rust-bindgen/Makefile +++ b/devel/rust-bindgen/Makefile @@ -1,79 +1,79 @@ PORTNAME= bindgen DISTVERSION= 0.60.1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel MASTER_SITES= CRATESIO PKGNAMEPREFIX= rust- # XXX Teach USES=cargo to have proper default DISTFILES= ${CARGO_DIST_SUBDIR}/${DISTNAME}${CARGO_CRATE_EXT} MAINTAINER= gecko@FreeBSD.org COMMENT= Generate Rust bindings from C (and some C++) code LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= llvm${LLVM_DEFAULT}>0:devel/llvm${LLVM_DEFAULT} USES= cargo PLIST_FILES= bin/${PORTNAME} CARGO_CRATES= aho-corasick-0.7.15 \ atty-0.2.14 \ autocfg-1.0.1 \ bitflags-1.2.1 \ cexpr-0.6.0 \ cfg-if-1.0.0 \ clang-sys-1.3.3 \ clap-3.0.4 \ diff-0.1.12 \ either-1.6.1 \ env_logger-0.9.0 \ getrandom-0.2.3 \ glob-0.3.0 \ hashbrown-0.11.2 \ hermit-abi-0.1.19 \ humantime-2.1.0 \ indexmap-1.7.0 \ lazy_static-1.4.0 \ lazycell-1.3.0 \ libc-0.2.98 \ libloading-0.7.0 \ log-0.4.14 \ memchr-2.4.1 \ minimal-lexical-0.1.4 \ nom-7.0.0 \ os_str_bytes-6.0.0 \ peeking_take_while-0.1.2 \ ppv-lite86-0.2.10 \ proc-macro2-1.0.28 \ quote-1.0.9 \ rand-0.8.4 \ rand_chacha-0.3.1 \ rand_core-0.6.3 \ rand_hc-0.3.1 \ redox_syscall-0.2.9 \ regex-1.4.6 \ regex-syntax-0.6.25 \ remove_dir_all-0.5.3 \ rustc-hash-1.1.0 \ shlex-1.0.0 \ strsim-0.10.0 \ tempfile-3.2.0 \ termcolor-1.1.2 \ textwrap-0.14.2 \ unicode-xid-0.2.2 \ version_check-0.9.3 \ wasi-0.10.2+wasi-snapshot-preview1 \ which-4.2.2 \ winapi-0.3.9 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-util-0.1.5 \ winapi-x86_64-pc-windows-gnu-0.4.0 post-patch: @${REINPLACE_CMD} -e 's,"llvm-config,&${LLVM_DEFAULT},' \ ${WRKSRC}/cargo-crates/clang-sys-*/build/common.rs \ ${WRKSRC}/cargo-crates/clang-sys-*/src/support.rs .include diff --git a/devel/rust-cbindgen/Makefile b/devel/rust-cbindgen/Makefile index c240bd3ba2cc..1e47dd7bef43 100644 --- a/devel/rust-cbindgen/Makefile +++ b/devel/rust-cbindgen/Makefile @@ -1,64 +1,64 @@ PORTNAME= cbindgen DISTVERSION= 0.24.3 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel MASTER_SITES= CRATESIO PKGNAMEPREFIX= rust- # XXX Teach USES=cargo to have proper default DISTFILES= ${CARGO_DIST_SUBDIR}/${DISTNAME}${CARGO_CRATE_EXT} MAINTAINER= gecko@FreeBSD.org COMMENT= Generate C bindings from Rust code LICENSE= MPL20 RUN_DEPENDS= cargo:lang/${RUST_DEFAULT} USES= cargo PLIST_FILES= bin/${PORTNAME} CARGO_CRATES= atty-0.2.14 \ autocfg-1.1.0 \ bitflags-1.3.2 \ cfg-if-1.0.0 \ clap-3.1.6 \ fastrand-1.7.0 \ hashbrown-0.11.2 \ heck-0.4.0 \ hermit-abi-0.1.19 \ indexmap-1.8.0 \ instant-0.1.12 \ itoa-1.0.1 \ lazy_static-1.4.0 \ libc-0.2.121 \ lock_api-0.4.6 \ log-0.4.16 \ memchr-2.4.1 \ os_str_bytes-6.0.0 \ parking_lot-0.11.2 \ parking_lot_core-0.8.5 \ proc-macro2-1.0.36 \ quote-1.0.17 \ redox_syscall-0.2.12 \ remove_dir_all-0.5.3 \ ryu-1.0.9 \ scopeguard-1.1.0 \ serde-1.0.136 \ serde_derive-1.0.136 \ serde_json-1.0.79 \ serial_test-0.5.1 \ serial_test_derive-0.5.1 \ smallvec-1.8.0 \ strsim-0.10.0 \ syn-1.0.89 \ tempfile-3.3.0 \ termcolor-1.1.3 \ textwrap-0.15.0 \ toml-0.5.8 \ unicode-xid-0.2.2 \ winapi-0.3.9 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-util-0.1.5 \ winapi-x86_64-pc-windows-gnu-0.4.0 .include diff --git a/devel/sccache/Makefile b/devel/sccache/Makefile index a4b6d7592315..12ea2150695f 100644 --- a/devel/sccache/Makefile +++ b/devel/sccache/Makefile @@ -1,418 +1,418 @@ PORTNAME= sccache DISTVERSIONPREFIX= v DISTVERSION= 0.2.15 -PORTREVISION= 14 +PORTREVISION= 15 PORTEPOCH= 1 CATEGORIES= devel MAINTAINER= pizzamig@FreeBSD.org COMMENT= Like ccache with cloud storage support LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE ONLY_FOR_ARCHS= aarch64 amd64 i386 ONLY_FOR_ARCHS_REASON= ring crate not ported to other architectures USES= cargo ssl USE_GITHUB= yes GH_ACCOUNT= mozilla OPTIONS_DEFINE= DOCS OPTIONS_DEFAULT= DOCS PLIST_FILES= bin/sccache PORTDOCS= README.md CARGO_FEATURES= all CARGO_CRATES= addr2line-0.14.1 \ adler-0.2.3 \ aho-corasick-0.7.15 \ ansi_term-0.11.0 \ anyhow-1.0.37 \ ar-0.8.0 \ arrayref-0.3.6 \ arrayvec-0.5.2 \ ascii-0.8.7 \ assert_cmd-1.0.2 \ async-channel-1.5.1 \ async-executor-1.4.0 \ async-global-executor-1.4.3 \ async-io-1.3.1 \ async-mutex-1.4.0 \ async-std-1.8.0 \ async-task-4.0.3 \ async-trait-0.1.42 \ atomic-waker-1.0.0 \ atty-0.2.14 \ autocfg-0.1.7 \ autocfg-1.0.1 \ backtrace-0.3.55 \ base64-0.9.3 \ base64-0.10.1 \ base64-0.12.3 \ base64-0.13.0 \ bincode-0.8.0 \ bincode-1.3.1 \ bitflags-1.2.1 \ blake2b_simd-0.5.11 \ blake3-0.3.7 \ block-buffer-0.9.0 \ blocking-1.0.2 \ boxfnonce-0.1.1 \ buf_redux-0.8.4 \ bufstream-0.1.4 \ bumpalo-3.4.0 \ byteorder-1.3.4 \ bytes-0.4.12 \ bytes-0.5.6 \ bytes-1.0.0 \ cache-padded-1.1.1 \ case-0.1.0 \ cc-1.0.66 \ cfg-if-0.1.10 \ cfg-if-1.0.0 \ chrono-0.4.19 \ chunked_transfer-0.3.1 \ clap-2.33.3 \ cloudabi-0.0.3 \ combine-4.5.2 \ concurrent-queue-1.2.2 \ conhash-0.4.0 \ constant_time_eq-0.1.5 \ cookie-0.12.0 \ cookie_store-0.7.0 \ core-foundation-0.9.1 \ core-foundation-sys-0.8.2 \ counted-array-0.1.2 \ cpuid-bool-0.1.2 \ crc32fast-1.2.1 \ crossbeam-deque-0.7.3 \ crossbeam-epoch-0.8.2 \ crossbeam-queue-0.1.2 \ crossbeam-queue-0.2.3 \ crossbeam-utils-0.6.6 \ crossbeam-utils-0.7.2 \ crossbeam-utils-0.8.1 \ crypto-mac-0.8.0 \ crypto-mac-0.10.0 \ daemonize-0.4.1 \ derive-error-0.0.3 \ difference-2.0.0 \ digest-0.9.0 \ directories-3.0.1 \ dirs-1.0.5 \ dirs-sys-0.3.5 \ doc-comment-0.3.3 \ dtoa-0.4.7 \ either-1.6.1 \ encoding_rs-0.8.26 \ env_logger-0.8.2 \ error-chain-0.12.4 \ event-listener-2.5.1 \ failure-0.1.8 \ failure_derive-0.1.8 \ fastrand-1.4.0 \ filetime-0.2.13 \ flate2-1.0.19 \ float-cmp-0.8.0 \ fnv-1.0.7 \ foreign-types-0.3.2 \ foreign-types-shared-0.1.1 \ form_urlencoded-1.0.0 \ fuchsia-cprng-0.1.1 \ fuchsia-zircon-0.3.3 \ fuchsia-zircon-sys-0.3.3 \ futures-0.1.30 \ futures-0.3.9 \ futures-channel-0.3.9 \ futures-core-0.3.9 \ futures-cpupool-0.1.8 \ futures-executor-0.3.9 \ futures-io-0.3.9 \ futures-lite-1.11.3 \ futures-macro-0.3.9 \ futures-sink-0.3.9 \ futures-task-0.3.9 \ futures-util-0.3.9 \ generic-array-0.14.4 \ getopts-0.2.21 \ getrandom-0.1.16 \ gimli-0.23.0 \ glob-0.3.0 \ gloo-timers-0.2.1 \ h2-0.1.26 \ hashbrown-0.9.1 \ hermit-abi-0.1.17 \ hmac-0.10.1 \ http-0.1.21 \ http-body-0.1.0 \ httparse-1.3.4 \ humantime-2.0.1 \ hyper-0.12.35 \ hyper-tls-0.3.2 \ hyperx-0.12.0 \ idna-0.1.5 \ idna-0.2.0 \ indexmap-1.6.1 \ instant-0.1.9 \ iovec-0.1.4 \ itertools-0.9.0 \ itertools-0.10.0 \ itoa-0.4.7 \ jobserver-0.1.21 \ js-sys-0.3.46 \ jsonwebtoken-7.2.0 \ kernel32-sys-0.2.2 \ kv-log-macro-1.0.7 \ language-tags-0.2.2 \ lazy_static-1.4.0 \ libc-0.2.82 \ libmount-0.1.15 \ linked-hash-map-0.5.3 \ local-encoding-0.2.0 \ lock_api-0.3.4 \ log-0.3.9 \ log-0.4.11 \ matches-0.1.8 \ maybe-uninit-2.0.0 \ md-5-0.9.1 \ md5-0.3.8 \ memcached-rs-0.4.2 \ memchr-2.3.4 \ memoffset-0.5.6 \ mime-0.2.6 \ mime-0.3.16 \ mime_guess-1.8.8 \ mime_guess-2.0.3 \ miniz_oxide-0.4.3 \ mio-0.6.23 \ mio-named-pipes-0.1.7 \ mio-uds-0.6.8 \ miow-0.2.2 \ miow-0.3.6 \ multipart-0.15.4 \ native-tls-0.2.7 \ nb-connect-1.0.2 \ net2-0.2.37 \ nix-0.14.1 \ nix-0.19.1 \ normalize-line-endings-0.3.0 \ num-bigint-0.2.6 \ num-integer-0.1.44 \ num-traits-0.1.43 \ num-traits-0.2.14 \ num_cpus-1.13.0 \ number_prefix-0.4.0 \ object-0.22.0 \ once_cell-1.5.2 \ opaque-debug-0.3.0 \ openssl-0.10.32 \ openssl-probe-0.1.2 \ openssl-sys-0.9.60 \ parking-2.0.0 \ parking_lot-0.9.0 \ parking_lot_core-0.6.2 \ pem-0.8.2 \ percent-encoding-1.0.1 \ percent-encoding-2.1.0 \ phf-0.7.24 \ phf_codegen-0.7.24 \ phf_generator-0.7.24 \ phf_shared-0.7.24 \ pin-project-lite-0.1.11 \ pin-project-lite-0.2.1 \ pin-utils-0.1.0 \ pkg-config-0.3.19 \ polling-2.0.2 \ ppv-lite86-0.2.10 \ predicates-1.0.6 \ predicates-core-1.0.1 \ predicates-tree-1.0.1 \ proc-macro-hack-0.5.19 \ proc-macro-nested-0.1.6 \ proc-macro2-1.0.24 \ publicsuffix-1.5.4 \ pulldown-cmark-0.0.3 \ quick-error-1.2.3 \ quote-0.3.15 \ quote-1.0.8 \ rand-0.4.6 \ rand-0.5.6 \ rand-0.6.5 \ rand-0.7.3 \ rand_chacha-0.1.1 \ rand_chacha-0.2.2 \ rand_core-0.3.1 \ rand_core-0.4.2 \ rand_core-0.5.1 \ rand_hc-0.1.0 \ rand_hc-0.2.0 \ rand_isaac-0.1.1 \ rand_jitter-0.1.4 \ rand_os-0.1.3 \ rand_pcg-0.1.2 \ rand_xorshift-0.1.1 \ rdrand-0.4.0 \ redis-0.17.0 \ redox_syscall-0.1.57 \ redox_users-0.3.5 \ regex-1.4.2 \ regex-syntax-0.6.21 \ remove_dir_all-0.5.3 \ reqwest-0.9.24 \ retry-1.2.0 \ ring-0.16.19 \ rouille-3.0.0 \ rust-argon2-0.8.3 \ rustc-demangle-0.1.18 \ rustc_version-0.2.3 \ ryu-1.0.5 \ safemem-0.3.3 \ same-file-1.0.6 \ schannel-0.1.19 \ scopeguard-1.1.0 \ security-framework-2.0.0 \ security-framework-sys-2.0.0 \ selenium-rs-0.1.2 \ semver-0.9.0 \ semver-parser-0.7.0 \ serde-1.0.118 \ serde_derive-1.0.118 \ serde_json-1.0.61 \ serde_urlencoded-0.5.5 \ sha-1-0.9.2 \ sha1-0.6.0 \ sha2-0.9.2 \ signal-hook-registry-1.3.0 \ simple_asn1-0.4.1 \ siphasher-0.2.3 \ skeptic-0.4.0 \ slab-0.4.2 \ smallvec-0.6.13 \ socket2-0.3.19 \ spin-0.5.2 \ string-0.2.1 \ strip-ansi-escapes-0.1.0 \ strsim-0.8.0 \ subtle-2.4.0 \ syn-0.11.11 \ syn-1.0.58 \ synom-0.11.3 \ synstructure-0.12.4 \ syslog-5.0.0 \ tar-0.4.30 \ tempdir-0.3.7 \ tempfile-3.1.0 \ term-0.5.2 \ termcolor-1.1.2 \ textwrap-0.11.0 \ thiserror-1.0.23 \ thiserror-impl-1.0.23 \ thread_local-1.1.0 \ threadpool-1.8.1 \ time-0.1.44 \ tiny_http-0.6.2 \ tinyvec-1.1.0 \ tinyvec_macros-0.1.0 \ tokio-0.1.22 \ tokio-0.2.24 \ tokio-buf-0.1.1 \ tokio-codec-0.1.2 \ tokio-compat-0.1.6 \ tokio-current-thread-0.1.7 \ tokio-executor-0.1.10 \ tokio-fs-0.1.7 \ tokio-io-0.1.13 \ tokio-named-pipes-0.1.0 \ tokio-process-0.2.5 \ tokio-reactor-0.1.12 \ tokio-serde-0.1.0 \ tokio-serde-bincode-0.1.1 \ tokio-signal-0.2.9 \ tokio-sync-0.1.8 \ tokio-tcp-0.1.4 \ tokio-threadpool-0.1.18 \ tokio-timer-0.2.13 \ tokio-udp-0.1.6 \ tokio-uds-0.2.7 \ tokio-util-0.3.1 \ toml-0.5.8 \ tower-0.1.1 \ tower-buffer-0.1.2 \ tower-discover-0.1.0 \ tower-layer-0.1.0 \ tower-limit-0.1.3 \ tower-load-shed-0.1.0 \ tower-retry-0.1.0 \ tower-service-0.2.0 \ tower-timeout-0.1.1 \ tower-util-0.1.0 \ tracing-0.1.22 \ tracing-attributes-0.1.11 \ tracing-core-0.1.17 \ treeline-0.1.0 \ try-lock-0.2.3 \ try_from-0.3.2 \ twoway-0.1.8 \ typenum-1.12.0 \ unicase-1.4.2 \ unicase-2.6.0 \ unicode-bidi-0.3.4 \ unicode-normalization-0.1.16 \ unicode-width-0.1.8 \ unicode-xid-0.0.4 \ unicode-xid-0.2.1 \ unix_socket-0.5.0 \ untrusted-0.7.1 \ url-1.7.2 \ url-2.2.0 \ utf8parse-0.1.1 \ uuid-0.7.4 \ uuid-0.8.1 \ vcpkg-0.2.11 \ vec-arena-1.0.0 \ vec_map-0.8.2 \ version-compare-0.0.11 \ version_check-0.1.5 \ version_check-0.9.2 \ void-1.0.2 \ vte-0.3.3 \ wait-timeout-0.2.0 \ waker-fn-1.1.0 \ walkdir-2.3.1 \ want-0.2.0 \ wasi-0.9.0+wasi-snapshot-preview1 \ wasi-0.10.0+wasi-snapshot-preview1 \ wasm-bindgen-0.2.69 \ wasm-bindgen-backend-0.2.69 \ wasm-bindgen-futures-0.4.19 \ wasm-bindgen-macro-0.2.69 \ wasm-bindgen-macro-support-0.2.69 \ wasm-bindgen-shared-0.2.69 \ web-sys-0.3.46 \ wepoll-sys-3.0.1 \ which-4.0.2 \ winapi-0.2.8 \ winapi-0.3.9 \ winapi-build-0.1.1 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-util-0.1.5 \ winapi-x86_64-pc-windows-gnu-0.4.0 \ winreg-0.6.2 \ ws2_32-sys-0.2.1 \ xattr-0.2.2 \ zip-0.5.9 \ zstd-0.6.0+zstd.1.4.8 \ zstd-safe-3.0.0+zstd.1.4.8 \ zstd-sys-1.4.19+zstd.1.4.8 do-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/README.md ${STAGEDIR}${DOCSDIR} post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/sccache .include diff --git a/devel/sentry-cli/Makefile b/devel/sentry-cli/Makefile index 09076afa9c50..c15e9b275224 100644 --- a/devel/sentry-cli/Makefile +++ b/devel/sentry-cli/Makefile @@ -1,315 +1,315 @@ PORTNAME= sentry-cli DISTVERSION= 1.71.0 -PORTREVISION= 8 +PORTREVISION= 9 CATEGORIES= devel MAINTAINER= lcook@FreeBSD.org COMMENT= Command line utility to work with Sentry LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE LIB_DEPENDS= libcurl.so:ftp/curl \ libgit2.so:devel/libgit2 USES= cargo ssl:build USE_GITHUB= yes GH_ACCOUNT= getsentry CARGO_CRATES= addr2line-0.16.0 \ adler-1.0.2 \ advapi32-sys-0.2.0 \ ahash-0.4.7 \ aho-corasick-0.7.18 \ anyhow-1.0.44 \ anylog-0.6.1 \ app_dirs-1.2.1 \ arrayref-0.3.6 \ arrayvec-0.5.2 \ arrayvec-0.7.1 \ assert-json-diff-2.0.1 \ assert_cmd-1.0.8 \ atty-0.2.14 \ autocfg-1.0.1 \ backoff-0.3.0 \ backtrace-0.3.61 \ base64-0.10.1 \ base64-0.13.0 \ bitflags-1.3.2 \ blake2b_simd-0.5.11 \ block-buffer-0.7.3 \ block-padding-0.1.5 \ brotli-sys-0.3.2 \ brotli2-0.3.2 \ brownstone-1.0.1 \ bstr-0.2.17 \ byte-tools-0.3.1 \ byteorder-1.4.3 \ bzip2-0.4.3 \ bzip2-sys-0.1.11+1.0.8 \ cc-1.0.70 \ cfg-if-1.0.0 \ chardet-0.2.4 \ chrono-0.4.19 \ clap-2.33.3 \ colored-2.0.0 \ console-0.14.1 \ constant_time_eq-0.1.5 \ crc32fast-1.2.1 \ crossbeam-channel-0.5.1 \ crossbeam-deque-0.8.1 \ crossbeam-epoch-0.9.5 \ crossbeam-utils-0.8.5 \ csv-1.1.6 \ csv-core-0.1.10 \ curl-0.4.38 \ curl-sys-0.4.48+curl-7.79.1 \ debugid-0.7.2 \ difference-2.0.0 \ difflib-0.4.0 \ digest-0.8.1 \ dirs-1.0.5 \ dirs-3.0.2 \ dirs-sys-0.3.6 \ dlv-list-0.2.3 \ dmsort-1.0.1 \ doc-comment-0.3.3 \ dotenv-0.15.0 \ dtoa-0.4.8 \ either-1.6.1 \ elementtree-0.5.0 \ encode_unicode-0.3.6 \ encoding-0.2.33 \ encoding-index-japanese-1.20141219.5 \ encoding-index-korean-1.20141219.5 \ encoding-index-simpchinese-1.20141219.5 \ encoding-index-singlebyte-1.20141219.5 \ encoding-index-tradchinese-1.20141219.5 \ encoding_index_tests-0.1.4 \ failure-0.1.8 \ failure_derive-0.1.8 \ fake-simd-0.1.2 \ fallible-iterator-0.2.0 \ flate2-1.0.22 \ float-cmp-0.9.0 \ fnv-1.0.7 \ form_urlencoded-1.0.1 \ generic-array-0.12.4 \ getrandom-0.1.16 \ getrandom-0.2.3 \ gimli-0.25.0 \ git2-0.13.22 \ glob-0.3.0 \ globset-0.4.8 \ goblin-0.4.3 \ hashbrown-0.9.1 \ hashbrown-0.11.2 \ heck-0.3.3 \ hermit-abi-0.1.19 \ httparse-1.5.1 \ httpdate-1.0.1 \ id-arena-2.2.1 \ idna-0.1.5 \ idna-0.2.3 \ if_chain-0.1.3 \ if_chain-1.0.2 \ ignore-0.4.18 \ indent_write-2.2.0 \ indexmap-1.7.0 \ indicatif-0.14.0 \ insta-1.8.0 \ instant-0.1.11 \ itertools-0.10.1 \ itoa-0.4.8 \ java-properties-1.4.0 \ jobserver-0.1.24 \ joinery-2.1.0 \ lazy_static-1.4.0 \ lazycell-1.3.0 \ leb128-0.2.4 \ libc-0.2.103 \ libgit2-sys-0.12.23+1.2.0 \ libz-sys-1.1.3 \ line-wrap-0.1.1 \ linked-hash-map-0.5.4 \ lock_api-0.4.5 \ log-0.4.14 \ mac-process-info-0.2.0 \ maplit-1.0.2 \ matches-0.1.9 \ memchr-2.4.1 \ memmap-0.7.0 \ memoffset-0.6.4 \ might-be-minified-0.3.0 \ minimal-lexical-0.1.3 \ miniz_oxide-0.4.4 \ mockito-0.30.0 \ new_debug_unreachable-1.0.4 \ nom-7.0.0 \ nom-supreme-0.6.0 \ normalize-line-endings-0.3.0 \ num-integer-0.1.44 \ num-traits-0.2.14 \ num_cpus-1.13.0 \ number_prefix-0.3.0 \ object-0.26.2 \ ole32-sys-0.2.0 \ once_cell-1.8.0 \ opaque-debug-0.2.3 \ open-1.7.1 \ openssl-probe-0.1.4 \ openssl-sys-0.9.67 \ ordered-multimap-0.3.1 \ osascript-0.3.0 \ parking_lot-0.11.2 \ parking_lot_core-0.8.5 \ pathdiff-0.2.1 \ pdb-0.7.0 \ percent-encoding-1.0.1 \ percent-encoding-2.1.0 \ pest-2.1.3 \ pest_derive-2.1.0 \ pest_generator-2.1.3 \ pest_meta-2.1.3 \ phf_shared-0.8.0 \ pin-project-lite-0.2.7 \ pkg-config-0.3.20 \ plain-0.2.3 \ plist-1.2.1 \ ppv-lite86-0.2.10 \ precomputed-hash-0.1.1 \ predicates-2.0.2 \ predicates-core-1.0.2 \ predicates-tree-1.0.3 \ prettytable-rs-0.8.0 \ proc-macro2-0.4.30 \ proc-macro2-1.0.29 \ proguard-4.1.1 \ quote-0.6.13 \ quote-1.0.9 \ r2d2-0.8.9 \ rand-0.8.4 \ rand_chacha-0.3.1 \ rand_core-0.6.3 \ rand_hc-0.3.1 \ rayon-1.5.1 \ rayon-core-1.9.1 \ redox_syscall-0.1.57 \ redox_syscall-0.2.10 \ redox_users-0.3.5 \ redox_users-0.4.0 \ regex-1.5.4 \ regex-automata-0.1.10 \ regex-syntax-0.6.25 \ remove_dir_all-0.5.3 \ runas-0.2.1 \ rust-argon2-0.8.3 \ rust-ini-0.17.0 \ rustc-demangle-0.1.21 \ rustc_version-0.2.3 \ ryu-1.0.5 \ safemem-0.3.3 \ same-file-1.0.6 \ schannel-0.1.19 \ scheduled-thread-pool-0.2.5 \ scopeguard-1.1.0 \ scroll-0.9.2 \ scroll-0.10.2 \ scroll_derive-0.9.5 \ scroll_derive-0.10.5 \ semver-0.9.0 \ semver-1.0.4 \ semver-parser-0.7.0 \ sentry-0.23.0 \ sentry-core-0.23.0 \ sentry-types-0.23.0 \ serde-1.0.130 \ serde_derive-1.0.130 \ serde_json-1.0.68 \ serde_urlencoded-0.7.0 \ serde_yaml-0.8.21 \ sha-1-0.8.2 \ sha1-0.6.0 \ shell32-sys-0.1.2 \ signal-hook-0.3.10 \ signal-hook-registry-1.4.0 \ similar-1.3.0 \ siphasher-0.3.7 \ smallvec-1.7.0 \ socket2-0.4.2 \ sourcemap-5.0.0 \ stable_deref_trait-1.2.0 \ string_cache-0.8.1 \ strsim-0.8.0 \ symbolic-8.3.1 \ symbolic-common-8.3.1 \ symbolic-debuginfo-8.3.1 \ syn-0.15.44 \ syn-1.0.77 \ synstructure-0.12.5 \ tempfile-3.2.0 \ term-0.5.2 \ term_size-0.3.2 \ terminal_size-0.1.17 \ textwrap-0.11.0 \ thiserror-1.0.29 \ thiserror-impl-1.0.29 \ thread_local-1.1.3 \ time-0.1.43 \ tinyvec-1.5.0 \ tinyvec_macros-0.1.0 \ tokio-1.13.0 \ treeline-0.1.0 \ typenum-1.14.0 \ ucd-trie-0.1.3 \ unicode-bidi-0.3.6 \ unicode-normalization-0.1.19 \ unicode-segmentation-1.8.0 \ unicode-width-0.1.9 \ unicode-xid-0.1.0 \ unicode-xid-0.2.2 \ unix-daemonize-0.1.2 \ url-1.7.2 \ url-2.2.2 \ username-0.2.0 \ uuid-0.8.2 \ vcpkg-0.2.15 \ version_check-0.9.3 \ wait-timeout-0.2.0 \ walkdir-2.3.2 \ walrus-0.19.0 \ walrus-macro-0.19.0 \ wasi-0.9.0+wasi-snapshot-preview1 \ wasi-0.10.2+wasi-snapshot-preview1 \ wasmparser-0.77.0 \ which-3.1.1 \ which-4.2.2 \ winapi-0.2.8 \ winapi-0.3.9 \ winapi-build-0.1.1 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-util-0.1.5 \ winapi-x86_64-pc-windows-gnu-0.4.0 \ xdg-2.2.0 \ xml-rs-0.8.4 \ yaml-rust-0.4.5 \ zip-0.5.13 CARGO_FEATURES= --no-default-features PLIST_FILES= bin/${PORTNAME} PORTDOCS= CHANGELOG.md README.md OPTIONS_DEFINE= DOCS REPORTING OPTIONS_DEFAULT= REPORTING REPORTING_DESC= Enable crash reporting REPORTING_VARS= CARGO_FEATURES+=with_crash_reporting post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/${PORTNAME} post-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR} .include diff --git a/devel/stylua/Makefile b/devel/stylua/Makefile index 9427248f862b..95e4ca8a5d46 100644 --- a/devel/stylua/Makefile +++ b/devel/stylua/Makefile @@ -1,162 +1,163 @@ PORTNAME= stylua DISTVERSIONPREFIX= v DISTVERSION= 0.14.2 +PORTREVISION= 1 CATEGORIES= devel MAINTAINER= lcook@FreeBSD.org COMMENT= Opinionated Lua code formatter LICENSE= MPL20 LICENSE_FILE= ${WRKSRC}/LICENSE.md USES= cargo USE_GITHUB= yes GH_ACCOUNT= JohnnyMorganz GH_PROJECT= StyLua CARGO_CRATES= aho-corasick-0.7.18 \ anyhow-1.0.53 \ assert_cmd-2.0.4 \ atty-0.2.14 \ autocfg-1.0.1 \ bitflags-1.3.2 \ bstr-0.2.16 \ bumpalo-3.7.0 \ bytecount-0.5.1 \ cast-0.2.7 \ cfg-if-1.0.0 \ clap-2.33.3 \ clap-3.1.6 \ clap_derive-3.1.4 \ console-0.15.0 \ convert_case-0.4.0 \ criterion-0.3.5 \ criterion-plot-0.4.4 \ crossbeam-channel-0.5.4 \ crossbeam-deque-0.8.1 \ crossbeam-epoch-0.9.5 \ crossbeam-utils-0.8.7 \ csv-1.1.6 \ csv-core-0.1.10 \ derive_more-0.99.16 \ difflib-0.4.0 \ doc-comment-0.3.3 \ dtoa-0.4.8 \ either-1.6.1 \ encode_unicode-0.3.6 \ env_logger-0.9.0 \ fnv-1.0.7 \ full_moon-0.15.1 \ full_moon_derive-0.10.0 \ globset-0.4.8 \ half-1.7.1 \ hashbrown-0.11.2 \ heck-0.4.0 \ hermit-abi-0.1.19 \ ignore-0.4.18 \ indexmap-1.7.0 \ insta-1.12.0 \ itertools-0.10.1 \ itoa-0.4.8 \ itoa-1.0.1 \ js-sys-0.3.55 \ lazy_static-1.4.0 \ libc-0.2.119 \ linked-hash-map-0.5.4 \ log-0.4.14 \ memchr-2.4.1 \ memoffset-0.6.4 \ num-traits-0.2.14 \ num_cpus-1.13.1 \ once_cell-1.9.0 \ oorandom-11.1.3 \ os_str_bytes-6.0.0 \ paste-0.1.18 \ paste-impl-0.1.18 \ peg-0.7.0 \ peg-macros-0.7.0 \ peg-runtime-0.7.0 \ pest-2.1.3 \ plotters-0.3.1 \ plotters-backend-0.3.2 \ plotters-svg-0.3.1 \ predicates-2.1.1 \ predicates-core-1.0.3 \ predicates-tree-1.0.5 \ proc-macro-error-1.0.4 \ proc-macro-error-attr-1.0.4 \ proc-macro-hack-0.5.19 \ proc-macro2-1.0.29 \ quote-1.0.9 \ rayon-1.5.1 \ rayon-core-1.9.1 \ regex-1.5.4 \ regex-automata-0.1.10 \ regex-syntax-0.6.25 \ rustc_version-0.3.3 \ rustc_version-0.4.0 \ ryu-1.0.5 \ same-file-1.0.6 \ scopeguard-1.1.0 \ semver-0.11.0 \ semver-1.0.4 \ semver-parser-0.10.2 \ serde-1.0.136 \ serde_cbor-0.11.2 \ serde_derive-1.0.136 \ serde_json-1.0.79 \ serde_yaml-0.8.21 \ similar-2.1.0 \ smol_str-0.1.18 \ strsim-0.10.0 \ syn-1.0.76 \ termcolor-1.1.3 \ terminal_size-0.1.17 \ termtree-0.2.4 \ textwrap-0.11.0 \ textwrap-0.15.0 \ thiserror-1.0.31 \ thiserror-impl-1.0.31 \ thread_local-1.1.3 \ threadpool-1.8.1 \ tinytemplate-1.2.1 \ toml-0.5.8 \ ucd-trie-0.1.3 \ unicode-width-0.1.8 \ unicode-xid-0.2.2 \ version_check-0.9.3 \ wait-timeout-0.2.0 \ walkdir-2.3.2 \ wasm-bindgen-0.2.81 \ wasm-bindgen-backend-0.2.81 \ wasm-bindgen-macro-0.2.81 \ wasm-bindgen-macro-support-0.2.81 \ wasm-bindgen-shared-0.2.81 \ web-sys-0.3.55 \ winapi-0.3.9 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-util-0.1.5 \ winapi-x86_64-pc-windows-gnu-0.4.0 \ yaml-rust-0.4.5 CARGO_FEATURES= --no-default-features PLIST_FILES= bin/${PORTNAME} PORTDOCS= CHANGELOG.md README.md OPTIONS_DEFINE= DOCS LUA52 LUAU OPTIONS_DEFAULT= LUA52 LUAU LUA52_DESC= Build with Lua 5.2 support LUAU_DESC= Build with Luau support LUA52_VARS= CARGO_FEATURES+=lua52 LUAU_VARS= CARGO_FEATURES+=luau post-install: ${STRIP_CMD} ${STAGEDIR}/${PREFIX}/bin/${PORTNAME} post-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} \ ${STAGEDIR}${DOCSDIR} .include diff --git a/devel/texlab/Makefile b/devel/texlab/Makefile index 85bba0ee5cc1..a4a29764220c 100644 --- a/devel/texlab/Makefile +++ b/devel/texlab/Makefile @@ -1,34 +1,35 @@ PORTNAME= texlab DISTVERSIONPREFIX= v DISTVERSION= 4.2.0 +PORTREVISION= 1 CATEGORIES= devel MAINTAINER= antranigv@freebsd.am COMMENT= Language Server Protocol for LaTeX LICENSE= GPLv3 LICENSE_FILE= ${WRKSRC}/LICENSE USES= cargo USE_GITHUB= yes GH_ACCOUNT= latex-lsp PLIST_FILES= bin/${PORTNAME} \ man/man1/${PORTNAME}.1.gz PORTDOCS= CHANGELOG.md README.md docs/* OPTIONS_DEFINE= DOCS OPTIONS_DEFAULT= DOCS post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/${PORTNAME} ${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.1 \ ${STAGEDIR}${MAN1PREFIX}/man/man1 post-install-DOCS-on: ${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/README.md ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/CHANGELOG.md ${STAGEDIR}${DOCSDIR} (cd ${WRKSRC} && ${COPYTREE_SHARE} docs ${STAGEDIR}${DOCSDIR}) .include diff --git a/devel/tokei/Makefile b/devel/tokei/Makefile index 29441a33ff7c..fa87b81823b5 100644 --- a/devel/tokei/Makefile +++ b/devel/tokei/Makefile @@ -1,178 +1,178 @@ PORTNAME= tokei DISTVERSIONPREFIX= v DISTVERSION= 12.1.2 -PORTREVISION= 14 +PORTREVISION= 15 CATEGORIES= devel MAINTAINER= mikael@FreeBSD.org COMMENT= Display statistics about your code LICENSE= APACHE20 MIT LICENSE_COMB= dual LICENSE_FILE_APACHE20= ${WRKSRC}/LICENCE-APACHE LICENSE_FILE_MIT= ${WRKSRC}/LICENCE-MIT USES= cargo USE_GITHUB= yes GH_ACCOUNT= XAMPPRocky CARGO_CRATES= aho-corasick-0.7.15 \ ansi_term-0.11.0 \ arrayref-0.3.6 \ arrayvec-0.4.12 \ arrayvec-0.5.1 \ atty-0.2.14 \ autocfg-1.0.0 \ base64-0.11.0 \ bitflags-1.2.1 \ blake2b_simd-0.5.10 \ block-buffer-0.7.3 \ block-padding-0.1.5 \ bstr-0.2.13 \ byte-tools-0.3.1 \ bytecount-0.6.0 \ byteorder-1.3.4 \ cc-1.0.54 \ cfg-if-0.1.10 \ cfg-if-1.0.0 \ chrono-0.4.11 \ chrono-tz-0.5.2 \ clap-2.33.3 \ cloudabi-0.1.0 \ const_fn-0.4.2 \ constant_time_eq-0.1.5 \ crossbeam-channel-0.5.0 \ crossbeam-deque-0.8.0 \ crossbeam-epoch-0.9.1 \ crossbeam-utils-0.7.2 \ crossbeam-utils-0.8.0 \ dashmap-4.0.1 \ deunicode-0.4.3 \ digest-0.8.1 \ dirs-3.0.1 \ dirs-sys-0.3.5 \ dtoa-0.4.6 \ either-1.5.3 \ encoding_rs-0.8.23 \ encoding_rs_io-0.1.7 \ env_logger-0.8.2 \ fake-simd-0.1.2 \ fnv-1.0.7 \ generic-array-0.12.3 \ getrandom-0.1.14 \ getrandom-0.2.0 \ git2-0.13.15 \ globset-0.4.5 \ globwalk-0.8.1 \ grep-matcher-0.1.4 \ grep-searcher-0.1.7 \ half-1.6.0 \ hermit-abi-0.1.14 \ hex-0.4.2 \ humansize-1.1.0 \ humantime-2.0.1 \ idna-0.2.0 \ ignore-0.4.17 \ instant-0.1.5 \ itoa-0.4.6 \ jobserver-0.1.21 \ lazy_static-1.4.0 \ libc-0.2.71 \ libgit2-sys-0.12.17+1.1.0 \ libz-sys-1.1.0 \ linked-hash-map-0.5.3 \ lock_api-0.4.0 \ log-0.4.11 \ maplit-1.0.2 \ matches-0.1.8 \ memchr-2.3.3 \ memmap-0.7.0 \ memoffset-0.6.1 \ nodrop-0.1.14 \ num-format-0.4.0 \ num-integer-0.1.43 \ num-traits-0.2.12 \ num_cpus-1.13.0 \ once_cell-1.5.2 \ opaque-debug-0.2.3 \ parking_lot-0.11.1 \ parking_lot_core-0.8.0 \ parse-zoneinfo-0.3.0 \ percent-encoding-2.1.0 \ pest-2.1.3 \ pest_derive-2.1.0 \ pest_generator-2.1.3 \ pest_meta-2.1.3 \ pkg-config-0.3.17 \ ppv-lite86-0.2.8 \ proc-macro2-1.0.18 \ quote-1.0.7 \ rand-0.7.3 \ rand-0.8.0 \ rand_chacha-0.2.2 \ rand_chacha-0.3.0 \ rand_core-0.5.1 \ rand_core-0.6.0 \ rand_hc-0.2.0 \ rand_hc-0.3.0 \ rayon-1.5.0 \ rayon-core-1.9.0 \ redox_syscall-0.1.56 \ redox_users-0.3.4 \ regex-1.4.3 \ regex-syntax-0.6.22 \ remove_dir_all-0.5.3 \ rust-argon2-0.7.0 \ ryu-1.0.5 \ same-file-1.0.6 \ scopeguard-1.1.0 \ serde-1.0.118 \ serde_cbor-0.11.1 \ serde_derive-1.0.118 \ serde_json-1.0.61 \ serde_yaml-0.8.15 \ sha-1-0.8.2 \ slug-0.1.4 \ smallvec-1.4.0 \ strsim-0.8.0 \ syn-1.0.33 \ tempfile-3.1.0 \ tera-1.6.1 \ term_size-0.3.2 \ termcolor-1.1.0 \ textwrap-0.11.0 \ thread_local-1.0.1 \ time-0.1.43 \ tinyvec-0.3.3 \ toml-0.5.8 \ typenum-1.12.0 \ ucd-trie-0.1.3 \ unic-char-property-0.9.0 \ unic-char-range-0.9.0 \ unic-common-0.9.0 \ unic-segment-0.9.0 \ unic-ucd-segment-0.9.0 \ unic-ucd-version-0.9.0 \ unicode-bidi-0.3.4 \ unicode-normalization-0.1.13 \ unicode-width-0.1.7 \ unicode-xid-0.2.0 \ url-2.1.1 \ vcpkg-0.2.10 \ vec_map-0.8.2 \ walkdir-2.3.1 \ wasi-0.9.0+wasi-snapshot-preview1 \ winapi-0.3.8 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-util-0.1.5 \ winapi-x86_64-pc-windows-gnu-0.4.0 \ yaml-rust-0.4.5 # enable all output serialization formats CARGO_FEATURES= all PLIST_FILES= bin/tokei post-install: @${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/tokei .include diff --git a/devel/wrangler/Makefile b/devel/wrangler/Makefile index d0673ed4670f..9ff53c35bf46 100644 --- a/devel/wrangler/Makefile +++ b/devel/wrangler/Makefile @@ -1,38 +1,38 @@ PORTNAME= wrangler DISTVERSIONPREFIX= v DISTVERSION= 1.19.12 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel MAINTAINER= antranigv@freebsd.am COMMENT= Cloudflare Workers CLI Tool LICENSE= APACHE20 MIT LICENSE_COMB= dual LICENSE_FILE_APACHE20= ${WRKSRC}/LICENSE-APACHE LICENSE_FILE_MIT= ${WRKSRC}/LICENSE-MIT BROKEN_i386= fails to build: error occurred: Command "cc" ... with args "cc" did not execute successfully (status code exit status: 1) LIB_DEPENDS= libcurl.so:ftp/curl USES= cargo gmake ssl USE_GITHUB= yes GH_ACCOUNT= cloudflare CARGO_FEATURES= --no-default-features sys-openssl PLIST_FILES= bin/${PORTNAME} PORTDOCS= CHANGELOG.md README.md OPTIONS_DEFINE= DOCS OPTIONS_DEFAULT= DOCS post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/${PORTNAME} post-install-DOCS-on: ${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR} .include diff --git a/dns/dog/Makefile b/dns/dog/Makefile index 7188da205aa5..5e6fc5332fe3 100644 --- a/dns/dog/Makefile +++ b/dns/dog/Makefile @@ -1,122 +1,122 @@ PORTNAME= dog DISTVERSIONPREFIX= v DISTVERSION= 0.1.0 -PORTREVISION= 16 +PORTREVISION= 17 CATEGORIES= dns net MAINTAINER= lcook@FreeBSD.org COMMENT= Command-line DNS client LICENSE= EUPL LICENSE_NAME= European Union Public Licence V. 1.2 LICENSE_FILE= ${WRKSRC}/LICENCE LICENSE_PERMS= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept USES= cargo ssl USE_GITHUB= yes GH_ACCOUNT= ogham CONFLICTS_INSTALL= py*-datadog CARGO_CRATES= addr2line-0.14.0 \ adler-0.2.3 \ ansi_term-0.11.0 \ ansi_term-0.12.1 \ atty-0.2.14 \ autocfg-1.0.1 \ backtrace-0.3.54 \ bitflags-1.2.1 \ byteorder-1.3.4 \ cc-1.0.61 \ cfg-if-0.1.10 \ cfg-if-1.0.0 \ core-foundation-0.7.0 \ core-foundation-sys-0.7.0 \ ctor-0.1.16 \ datetime-0.5.1 \ difference-2.0.0 \ failure-0.1.8 \ failure_derive-0.1.8 \ foreign-types-0.3.2 \ foreign-types-shared-0.1.1 \ getopts-0.2.21 \ getrandom-0.1.15 \ gimli-0.23.0 \ hermit-abi-0.1.17 \ httparse-1.3.4 \ ipconfig-0.2.2 \ itoa-0.4.6 \ json-0.12.4 \ lazy_static-1.4.0 \ libc-0.2.80 \ log-0.4.11 \ miniz_oxide-0.4.3 \ native-tls-0.2.4 \ object-0.22.0 \ openssl-0.10.30 \ openssl-probe-0.1.2 \ openssl-sys-0.9.58 \ output_vt100-0.1.2 \ pkg-config-0.3.19 \ ppv-lite86-0.2.10 \ pretty_assertions-0.6.1 \ proc-macro2-1.0.24 \ quote-1.0.7 \ rand-0.7.3 \ rand_chacha-0.2.2 \ rand_core-0.5.1 \ rand_hc-0.2.0 \ redox_syscall-0.1.57 \ regex-1.4.2 \ regex-syntax-0.6.21 \ remove_dir_all-0.5.3 \ rustc-demangle-0.1.18 \ ryu-1.0.5 \ schannel-0.1.19 \ security-framework-0.4.4 \ security-framework-sys-0.4.3 \ serde-1.0.117 \ serde_derive-1.0.117 \ serde_json-1.0.59 \ socket2-0.3.15 \ syn-1.0.48 \ synstructure-0.12.4 \ tempfile-3.1.0 \ unicode-width-0.1.8 \ unicode-xid-0.2.1 \ vcpkg-0.2.10 \ wasi-0.9.0+wasi-snapshot-preview1 \ widestring-0.4.3 \ winapi-0.3.9 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-x86_64-pc-windows-gnu-0.4.0 \ winreg-0.6.2 \ mutagen,mutagen-core,mutagen-transform@git+https://github.com/llogiq/mutagen\#c7abc956a10e8a3e2cc71f21279ea0a42f7b7c10 PORTDOCS= README.md OPTIONS_DEFINE= COMPLETIONS DOCS OPTIONS_DEFAULT= COMPLETIONS OPTIONS_SUB= yes COMPLETIONS_DESC= Install shell completions for bash, fish and zsh post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/${PORTNAME} post-install-COMPLETIONS-on: @${MKDIR} ${STAGEDIR}${PREFIX}/etc/bash_completion.d ${INSTALL_DATA} ${WRKSRC}/completions/${PORTNAME}.bash \ ${STAGEDIR}${PREFIX}/etc/bash_completion.d/${PORTNAME} @${MKDIR} ${STAGEDIR}${PREFIX}/share/fish/completions ${INSTALL_DATA} ${WRKSRC}/completions/${PORTNAME}.fish \ ${STAGEDIR}${PREFIX}/share/fish/completions/${PORTNAME}.fish @${MKDIR} ${STAGEDIR}${PREFIX}/share/zsh/site-functions ${INSTALL_DATA} ${WRKSRC}/completions/${PORTNAME}.zsh \ ${STAGEDIR}${PREFIX}/share/zsh/site-functions/_${PORTNAME} post-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/${PORTDOCS} ${STAGEDIR}${DOCSDIR} .include diff --git a/dns/doh-proxy/Makefile b/dns/doh-proxy/Makefile index 9e9ab1ee3248..a638e70623d8 100644 --- a/dns/doh-proxy/Makefile +++ b/dns/doh-proxy/Makefile @@ -1,23 +1,23 @@ PORTNAME= doh-proxy DISTVERSION= 0.9.3 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= dns MASTER_SITES= CRATESIO DISTFILES= ${CARGO_DIST_SUBDIR}/${DISTNAME}${CARGO_CRATE_EXT} MAINTAINER= mat@FreeBSD.org COMMENT= DNS-over-HTTP server proxy LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= cargo PLIST_FILES= bin/doh-proxy # make cargo-crates > Makefile.crates post-install: @${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/doh-proxy .include diff --git a/dns/encrypted-dns-server/Makefile b/dns/encrypted-dns-server/Makefile index dcee27a54eee..ab169970d5f0 100644 --- a/dns/encrypted-dns-server/Makefile +++ b/dns/encrypted-dns-server/Makefile @@ -1,192 +1,193 @@ PORTNAME= encrypted-dns-server DISTVERSION= 0.9.6 +PORTREVISION= 1 CATEGORIES= dns MAINTAINER= felix@userspace.com.au COMMENT= High-performance, zero maintenance encrypted DNS proxy LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= cargo USE_GITHUB= yes GH_ACCOUNT= jedisct1 USE_RC_SUBR= encrypted_dns CARGO_CRATES= adler-1.0.2 \ adler32-1.2.0 \ anyhow-1.0.58 \ autocfg-1.1.0 \ base64-0.13.0 \ bitflags-1.3.2 \ bumpalo-3.10.0 \ byteorder-1.4.3 \ bytes-1.1.0 \ cc-1.0.73 \ cfg-if-1.0.0 \ chunked_transfer-1.4.0 \ clap-3.2.8 \ clap_lex-0.2.4 \ clockpro-cache-0.1.10 \ coarsetime-0.1.22 \ crc32fast-1.3.2 \ crossbeam-utils-0.8.10 \ ct-codecs-1.1.1 \ daemonize-simple-0.1.5 \ derivative-2.2.0 \ dnsstamps-0.1.9 \ env_logger-0.9.0 \ filetime-0.2.17 \ flate2-1.0.24 \ fnv-1.0.7 \ form_urlencoded-1.0.1 \ futures-0.3.21 \ futures-channel-0.3.21 \ futures-core-0.3.21 \ futures-executor-0.3.21 \ futures-io-0.3.21 \ futures-macro-0.3.21 \ futures-sink-0.3.21 \ futures-task-0.3.21 \ futures-util-0.3.21 \ getrandom-0.2.7 \ hashbrown-0.12.2 \ hermit-abi-0.1.19 \ hex-0.4.3 \ http-0.2.8 \ http-body-0.4.5 \ httparse-1.7.1 \ httpdate-1.0.2 \ humantime-2.1.0 \ hyper-0.14.20 \ idna-0.2.3 \ indexmap-1.9.1 \ ipext-0.1.0 \ itoa-1.0.2 \ js-sys-0.3.58 \ lazy_static-1.4.0 \ libc-0.2.126 \ libflate-1.2.0 \ libflate_lz77-1.1.0 \ libmimalloc-sys-0.1.25 \ libsodium-sys-stable-1.19.22 \ lock_api-0.4.7 \ log-0.4.17 \ matches-0.1.9 \ memchr-2.5.0 \ memoffset-0.6.5 \ mimalloc-0.1.29 \ minisign-verify-0.2.1 \ miniz_oxide-0.5.3 \ mio-0.8.4 \ nix-0.24.1 \ num_cpus-1.13.1 \ once_cell-1.13.0 \ os_str_bytes-6.1.0 \ parking_lot-0.12.1 \ parking_lot_core-0.9.3 \ percent-encoding-2.1.0 \ pin-project-lite-0.2.9 \ pin-utils-0.1.0 \ pkg-config-0.3.25 \ ppv-lite86-0.2.16 \ privdrop-0.5.2 \ proc-macro2-1.0.40 \ procfs-0.12.0 \ prometheus-32bitfix-0.13.1 \ quote-1.0.20 \ rand-0.8.5 \ rand_chacha-0.3.1 \ rand_core-0.6.3 \ redox_syscall-0.2.13 \ ring-0.16.20 \ rle-decode-fast-1.0.3 \ rlimit-0.8.3 \ rustc-hash-1.1.0 \ rustls-0.20.6 \ scopeguard-1.1.0 \ sct-0.7.0 \ serde-1.0.138 \ serde-big-array-0.4.1 \ serde_derive-1.0.138 \ siphasher-0.3.10 \ slab-0.4.6 \ slabigator-0.1.4 \ smallvec-1.9.0 \ socket2-0.4.4 \ spin-0.5.2 \ syn-1.0.98 \ tar-0.4.38 \ terminal_size-0.1.17 \ textwrap-0.15.0 \ thiserror-1.0.31 \ thiserror-impl-1.0.31 \ tinyvec-1.6.0 \ tinyvec_macros-0.1.0 \ tokio-1.19.2 \ toml-0.5.9 \ tower-service-0.3.2 \ tracing-0.1.35 \ tracing-core-0.1.28 \ try-lock-0.2.3 \ unicode-bidi-0.3.8 \ unicode-ident-1.0.1 \ unicode-normalization-0.1.21 \ unsafe_unwrap-0.1.0 \ untrusted-0.7.1 \ ureq-2.5.0 \ url-2.2.2 \ vcpkg-0.2.15 \ want-0.3.0 \ wasi-0.11.0+wasi-snapshot-preview1 \ wasm-bindgen-0.2.81 \ wasm-bindgen-backend-0.2.81 \ wasm-bindgen-macro-0.2.81 \ wasm-bindgen-macro-support-0.2.81 \ wasm-bindgen-shared-0.2.81 \ web-sys-0.3.58 \ webpki-0.22.0 \ webpki-roots-0.22.4 \ winapi-0.3.9 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-x86_64-pc-windows-gnu-0.4.0 \ windows-sys-0.36.1 \ windows_aarch64_msvc-0.36.1 \ windows_i686_gnu-0.36.1 \ windows_i686_msvc-0.36.1 \ windows_x86_64_gnu-0.36.1 \ windows_x86_64_msvc-0.36.1 \ xattr-0.2.3 \ zip-0.6.2 CARGO_FEATURES= --no-default-features USERS= _encrypted-dns GROUPS= _encrypted-dns PLIST_FILES= "@dir(${USERS},${GROUPS},0755) ${ETCDIR}" \ "@sample ${ETCDIR}/encrypted-dns.toml.sample" \ "@sample ${ETCDIR}/undelegated.txt.sample" \ bin/encrypted-dns PLIST_SUB= GROUPS=${GROUPS} \ USERS=${USERS} OPTIONS_DEFINE= METRICS OPTIONS_DEFAULT= METRICS METRICS_DESC= Enable Prometheus metrics METRICS_VARS= CARGO_FEATURES+=metrics post-extract: ${MV} ${WRKSRC}/undelegated.txt \ ${WRKSRC}/undelegated.txt.sample post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/* ${MKDIR} ${STAGEDIR}${ETCDIR} ${INSTALL_DATA} ${FILESDIR}/encrypted-dns.toml.sample \ ${STAGEDIR}${ETCDIR} ${INSTALL_DATA} ${WRKSRC}/undelegated.txt.sample \ ${STAGEDIR}${ETCDIR} .include diff --git a/editors/amp/Makefile b/editors/amp/Makefile index 6ee5dd11e6cf..7543b01555c0 100644 --- a/editors/amp/Makefile +++ b/editors/amp/Makefile @@ -1,24 +1,25 @@ PORTNAME= amp DISTVERSION= 0.6.2 +PORTREVISION= 1 CATEGORIES= editors MAINTAINER= eduardo@FreeBSD.org COMMENT= Complete text editor for your terminal LICENSE= GPLv3 LICENSE_FILE= ${WRKSRC}/LICENSE USES= cargo localbase:ldflags python:build xorg USE_GITHUB= yes GH_ACCOUNT= jmacdonald USE_XORG= xcb PLIST_FILES= bin/${PORTNAME} post-patch: @${REINPLACE_CMD} 's|python3|python${PYTHON_VER}|' ${WRKSRC}/cargo-crates/xcb-0.8.2/build.rs post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/${PORTNAME} .include diff --git a/editors/helix/Makefile b/editors/helix/Makefile index 39f824739ab9..e871de5c3050 100644 --- a/editors/helix/Makefile +++ b/editors/helix/Makefile @@ -1,261 +1,261 @@ PORTNAME= helix DISTVERSION= 22.05 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= editors MASTER_SITES= https://git.sr.ht/~ecmma/tree-sitter-hare/archive/:treesitterhare DISTFILES= ${TREE_SITTER_HARE_REV}.tar.gz:treesitterhare MAINTAINER= ashish@FreeBSD.org COMMENT= Post-modern modal text editor LICENSE= MPL20 LICENSE_FILE= ${WRKSRC}/LICENSE USES= cargo CONFLICTS_INSTALL= shx USE_GITHUB= yes GH_ACCOUNT= helix-editor GH_TUPLE= \ ikatyang:tree-sitter-toml:7cff70b:tree_sitter_toml/runtime/grammars/sources/toml \ tree-sitter:tree-sitter-bash:275effdfc0e:tree_sitter_bash/runtime/grammars/sources/bash \ tree-sitter:tree-sitter-c-sharp:53a65a9:tree_sitter_c_sharp/runtime/grammars/sources/c-sharp \ tree-sitter:tree-sitter-c:f05e279:tree_sitter_c/runtime/grammars/sources/c \ archseer:tree-sitter-cairo:5155c6eb:archseer_tree_sitter_cairo/runtime/grammars/sources/cairo \ uyha:tree-sitter-cmake:f6616f1:tree_sitter_cmake/runtime/grammars/sources/cmake \ stsewd:tree-sitter-comment:5dd3c62:tree_sitter_comment/runtime/grammars/sources/comment \ fvacek:tree-sitter-cpon:cc6a22b1:fvacek_tree_sitter_cpon/runtime/grammars/sources/cpon \ tree-sitter:tree-sitter-cpp:e8dcc9d:tree_sitter_cpp/runtime/grammars/sources/cpp \ tree-sitter:tree-sitter-css:94e1023:tree_sitter_css/runtime/grammars/sources/css \ UserNobody14:tree-sitter-dart:6a25376:tree_sitter_dart/runtime/grammars/sources/dart \ joelspadin:tree-sitter-devicetree:877adbfa:joelspadin_tree_sitter_devicetree/runtime/grammars/sources/devicetree \ camdencheek:tree-sitter-dockerfile:7af32bc:tree_sitter_dockerfile/runtime/grammars/sources/dockerfile \ connorlay:tree-sitter-eex:f742f2fe:connorlay_tree_sitter_eex/runtime/grammars/sources/eex \ elixir-lang:tree-sitter-elixir:1dabc1c7:tree_sitter_elixir/runtime/grammars/sources/elixir \ elm-tooling:tree-sitter-elm:bd50ccf:tree_sitter_elm/runtime/grammars/sources/elm \ tree-sitter:tree-sitter-embedded-template:d21df11b:tree_sitter_tree_sitter_embedded_template/runtime/grammars/sources/embedded-template \ the-mikedavis:tree-sitter-erlang:6cd8f956ad:tree_sitter_erlang/runtime/grammars/sources/erlang \ ram02z:tree-sitter-fish:04e54ab:tree_sitter_fish/runtime/grammars/sources/fish \ PrestonKnopp:tree-sitter-gdscript:2a6abdaa:PrestonKnopp_tree_sitter_gdscript/runtime/grammars/sources/gdscript \ mtoohey31:tree-sitter-gitattributes:3dd50808:tree_sitter_gitattributes/runtime/grammars/sources/gitattributes \ the-mikedavis:tree-sitter-git-commit:7ae23de:tree_sitter_git_commit/runtime/grammars/sources/git-commit \ the-mikedavis:tree-sitter-git-config:0e4f0ba:tree_sitter_git_config/runtime/grammars/sources/git-config \ the-mikedavis:tree-sitter-diff:c12e6ec:tree_sitter_git_diff/runtime/grammars/sources/git-diff \ shunsambongi:tree-sitter-gitignore:f4685bf11:tree_sitter_gitignore/runtime/grammars/sources/gitignore \ the-mikedavis:tree-sitter-git-rebase:332dc52:tree_sitter_git_rebase/runtime/grammars/sources/git-rebase \ gleam-lang:tree-sitter-gleam:d7861b2a4b:tree_sitter_gleam/runtime/grammars/sources/gleam \ theHamsta:tree-sitter-glsl:88408ff:tree_sitter_glsl/runtime/grammars/sources/glsl \ tree-sitter:tree-sitter-go:0fa917a:tree_sitter_go/runtime/grammars/sources/go \ camdencheek:tree-sitter-go-mod:e8f51f8e:tree_sitter_go_mod/runtime/grammars/sources/gomod \ omertuc:tree-sitter-go-work:6dd9dd79f:tree_sitter_go_work/runtime/grammars/sources/gowork \ bkegley:tree-sitter-graphql:5e66e96:tree_sitter_graphql/runtime/grammars/sources/graphql \ tree-sitter:tree-sitter-haskell:b6ec26f:tree_sitter_haskell/runtime/grammars/sources/haskell \ MichaHoffmann:tree-sitter-hcl:3cb7fc2:tree_sitter_hcl/runtime/grammars/sources/hcl \ connorlay:tree-sitter-heex:592e2229:connorlay_tree_sitter_heex/runtime/grammars/sources/heex \ tree-sitter:tree-sitter-html:d93af48:tree_sitter_html/runtime/grammars/sources/html \ elixir-lang:tree-sitter-iex:39f20bb:tree_sitter_iex/runtime/grammars/sources/iex \ tree-sitter:tree-sitter-java:bd6186c:tree_sitter_java/runtime/grammars/sources/java \ tree-sitter:tree-sitter-javascript:4a95461:tree_sitter_javascript/runtime/grammars/sources/javascript \ tree-sitter:tree-sitter-json:65bceef:tree_sitter_json/runtime/grammars/sources/json \ tree-sitter:tree-sitter-julia:12ea597:tree_sitter_julia/runtime/grammars/sources/julia \ fwcd:tree-sitter-kotlin:a4f71eb:tree_sitter_kotlin/runtime/grammars/sources/kotlin \ latex-lsp:tree-sitter-latex:7f72066:tree_sitter_latex/runtime/grammars/sources/latex \ Julian:tree-sitter-lean:d984261:tree_sitter_lean/runtime/grammars/sources/lean \ cbarrete:tree-sitter-ledger:0cdeb0e:tree_sitter_ledger/runtime/grammars/sources/ledger \ Flakebi:tree-sitter-llvm-mir:06fabca:tree_sitter_llvm_mir/runtime/grammars/sources/llvm-mir \ benwilliamgraham:tree-sitter-llvm:3b21392:tree_sitter_llvm/runtime/grammars/sources/llvm \ nvim-treesitter:tree-sitter-lua:6f5d401:tree_sitter_lua/runtime/grammars/sources/lua \ alemuller:tree-sitter-make:a4b9187:tree_sitter_make/runtime/grammars/sources/make \ MDeiml:tree-sitter-markdown:ad8c329:tree_sitter_markdown/runtime/grammars/sources/markdown \ bearcove:tree-sitter-meson:feea83be:bearcove_tree_sitter_meson/runtime/grammars/sources/meson \ nickel-lang:tree-sitter-nickel:c4dd1420b:tree_sitter_nickel/runtime/grammars/sources/nickel \ cstrahan:tree-sitter-nix:50f38ce:tree_sitter_nix/runtime/grammars/sources/nix \ LhKipp:tree-sitter-nu:db4e990b:LhKipp_tree_sitter_nu/runtime/grammars/sources/nu \ tree-sitter:tree-sitter-ocaml:23d419b:tree_sitter_ocaml/runtime/grammars/sources/ocaml \ MineBill:tree-sitter-odin:da885f4a:MineBill_tree_sitter_odin/runtime/grammars/sources/odin \ milisims:tree-sitter-org:1c3eb53:tree_sitter_org/runtime/grammars/sources/org \ ganezdragon:tree-sitter-perl:0ac2c6d:tree_sitter_perl/runtime/grammars/sources/perl \ tree-sitter:tree-sitter-php:57f8554:tree_sitter_php/runtime/grammars/sources/php \ yusdacra:tree-sitter-protobuf:19c211a:tree_sitter_protobuf/runtime/grammars/sources/protobuf \ tree-sitter:tree-sitter-python:d6210ce:tree_sitter_python/runtime/grammars/sources/python \ r-lib:tree-sitter-r:cc04302e1bf:tree_sitter_r/runtime/grammars/sources/r \ tree-sitter:tree-sitter-regex:e1cfca3:tree_sitter_regex/runtime/grammars/sources/regex \ jaredramirez:tree-sitter-rescript:4cd7ba9:tree_sitter_rescript/runtime/grammars/sources/rescript \ tree-sitter:tree-sitter-ruby:dfff673:tree_sitter_ruby/runtime/grammars/sources/ruby \ tree-sitter:tree-sitter-rust:a360da0:tree_sitter_rust/runtime/grammars/sources/rust \ tree-sitter:tree-sitter-scala:0a3dd53:tree_sitter_scala/runtime/grammars/sources/scala \ 6cdh:tree-sitter-scheme:27fb77db:6cdh_tree_sitter_scheme/runtime/grammars/sources/scheme \ slinlee:tree-sitter-solidity:f3a0022:tree_sitter_solidity/runtime/grammars/sources/solidity \ DerekStride:tree-sitter-sql:0caa7fa2:DerekStride_tree_sitter_sql/runtime/grammars/sources/sql \ metio:tree-sitter-ssh-client-config:769d7a01:metio_tree_sitter_ssh_client_config/runtime/grammars/sources/sshclientconfig \ Himujjal:tree-sitter-svelte:349a598:tree_sitter_svelte/runtime/grammars/sources/svelte \ Dispersia:tree-sitter-swift:e75240f89bb:tree_sitter_swift/runtime/grammars/sources/swift \ Flakebi:tree-sitter-tablegen:568dd8a:tree_sitter_tablegen/runtime/grammars/sources/tablegen \ tree-sitter:tree-sitter-tsq:b665659:tree_sitter_tsq/runtime/grammars/sources/tsq \ eirabben:tree-sitter-twig:b744418:tree_sitter_twig/runtime/grammars/sources/twig \ tree-sitter:tree-sitter-typescript:3e897ea:tree_sitter_typescript/runtime/grammars/sources/typescript \ vala-lang:tree-sitter-vala:c9eea93b:vala_lang_tree_sitter_vala/runtime/grammars/sources/vala \ andreytkachenko:tree-sitter-verilog:514d8d70:andreytkachenko_tree_sitter_verilog/runtime/grammars/sources/verilog \ ikatyang:tree-sitter-vue:91fe275:tree_sitter_vue/runtime/grammars/sources/vue \ szebniok:tree-sitter-wgsl:f00ff52:tree_sitter_wgsl/runtime/grammars/sources/wgsl \ ikatyang:tree-sitter-yaml:0e36bed:tree_sitter_yaml/runtime/grammars/sources/yaml \ maxxnino:tree-sitter-zig:93331b8:tree_sitter_zig/runtime/grammars/sources/zig TREE_SITTER_HARE_REV= bc26a6a949f2e0d98b7bfc437d459b250900a165 CARGO_CARGOTOML= ${WRKSRC}/helix-term/Cargo.toml CARGO_INSTALL_PATH= ./helix-term CARGO_CRATES= aho-corasick-0.7.18 \ anyhow-1.0.57 \ arc-swap-1.5.0 \ autocfg-1.1.0 \ bitflags-1.3.2 \ bstr-0.2.17 \ bytecount-0.6.2 \ bytes-1.1.0 \ cassowary-0.3.0 \ cc-1.0.73 \ cfg-if-1.0.0 \ chardetng-0.1.17 \ chrono-0.4.19 \ clipboard-win-4.4.1 \ content_inspector-0.2.4 \ crossbeam-utils-0.8.8 \ crossterm-0.23.2 \ crossterm_winapi-0.9.0 \ dirs-next-2.0.0 \ dirs-sys-next-0.1.2 \ either-1.6.1 \ encoding_rs-0.8.31 \ encoding_rs_io-0.1.7 \ error-code-2.3.1 \ etcetera-0.4.0 \ fern-0.6.1 \ fnv-1.0.7 \ form_urlencoded-1.0.1 \ futures-core-0.3.21 \ futures-executor-0.3.21 \ futures-task-0.3.21 \ futures-util-0.3.21 \ fuzzy-matcher-0.3.7 \ getrandom-0.2.6 \ globset-0.4.8 \ grep-matcher-0.1.5 \ grep-regex-0.1.9 \ grep-searcher-0.1.8 \ hermit-abi-0.1.19 \ idna-0.2.3 \ ignore-0.4.18 \ itoa-1.0.1 \ jsonrpc-core-18.0.0 \ lazy_static-1.4.0 \ libc-0.2.121 \ libloading-0.7.3 \ lock_api-0.4.7 \ log-0.4.17 \ lsp-types-0.93.0 \ matches-0.1.9 \ memchr-2.4.1 \ memmap2-0.3.1 \ mio-0.8.2 \ miow-0.3.7 \ ntapi-0.3.7 \ num-integer-0.1.44 \ num-traits-0.2.14 \ num_cpus-1.13.1 \ once_cell-1.12.0 \ parking_lot-0.12.0 \ parking_lot_core-0.9.2 \ percent-encoding-2.1.0 \ pin-project-lite-0.2.8 \ pin-utils-0.1.0 \ proc-macro2-1.0.36 \ pulldown-cmark-0.9.1 \ quickcheck-1.0.3 \ quote-1.0.17 \ rand-0.8.5 \ rand_core-0.6.3 \ redox_syscall-0.2.13 \ redox_users-0.4.3 \ regex-1.5.6 \ regex-automata-0.1.10 \ regex-syntax-0.6.26 \ retain_mut-0.1.7 \ ropey-1.4.1 \ ryu-1.0.9 \ same-file-1.0.6 \ scopeguard-1.1.0 \ serde-1.0.137 \ serde_derive-1.0.137 \ serde_json-1.0.81 \ serde_repr-0.1.7 \ signal-hook-0.3.14 \ signal-hook-mio-0.2.3 \ signal-hook-registry-1.4.0 \ signal-hook-tokio-0.3.1 \ similar-2.1.0 \ slab-0.4.6 \ slotmap-1.0.6 \ smallvec-1.8.0 \ smartstring-1.0.1 \ smawk-0.3.1 \ socket2-0.4.4 \ static_assertions-1.1.0 \ str-buf-1.0.5 \ str_indices-0.3.2 \ syn-1.0.90 \ textwrap-0.15.0 \ thiserror-1.0.31 \ thiserror-impl-1.0.31 \ thread_local-1.1.4 \ threadpool-1.8.1 \ tinyvec-1.5.1 \ tinyvec_macros-0.1.0 \ tokio-1.18.2 \ tokio-macros-1.7.0 \ tokio-stream-0.1.8 \ toml-0.5.9 \ tree-sitter-0.20.6 \ unicase-2.6.0 \ unicode-bidi-0.3.7 \ unicode-general-category-0.5.1 \ unicode-linebreak-0.1.2 \ unicode-normalization-0.1.19 \ unicode-segmentation-1.9.0 \ unicode-width-0.1.9 \ unicode-xid-0.2.2 \ url-2.2.2 \ version_check-0.9.4 \ walkdir-2.3.2 \ wasi-0.10.2+wasi-snapshot-preview1 \ wasi-0.11.0+wasi-snapshot-preview1 \ which-4.2.5 \ winapi-0.3.9 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-util-0.1.5 \ winapi-x86_64-pc-windows-gnu-0.4.0 \ windows-sys-0.34.0 \ windows_aarch64_msvc-0.34.0 \ windows_i686_gnu-0.34.0 \ windows_i686_msvc-0.34.0 \ windows_x86_64_gnu-0.34.0 \ windows_x86_64_msvc-0.34.0 post-extract: cd ${WRKSRC}/runtime/grammars/sources && ${CP} -a typescript tsx cd ${WRKSRC}/runtime/grammars/sources && ${CP} -a ocaml ocaml-interface ${MV} ${WRKDIR}/tree-sitter-hare-${TREE_SITTER_HARE_REV} ${WRKSRC}/runtime/grammars/sources/hare post-patch: ${GREP} -F -Rl '%%DATADIR%%' ${WRKSRC}/ | ${XARGS} ${REINPLACE_CMD} -e 's,%%DATADIR%%,${DATADIR},' post-install: ${MKDIR} ${STAGEDIR}${DATADIR}/runtime/grammars .for DIR in queries themes cd ${WRKSRC}/runtime && ${COPYTREE_SHARE} ${DIR} ${STAGEDIR}${DATADIR}/runtime .endfor ${INSTALL_DATA} ${WRKSRC}/runtime/tutor.txt ${STAGEDIR}${DATADIR}/runtime/tutor.txt ${FIND} ${WRKSRC}/runtime/grammars -maxdepth 1 -type f -name '*.so' \ -exec ${INSTALL_LIB} {} ${STAGEDIR}${DATADIR}/runtime/grammars \; .include diff --git a/editors/kak-lsp/Makefile b/editors/kak-lsp/Makefile index 44afba66499d..c80d1a5c6814 100644 --- a/editors/kak-lsp/Makefile +++ b/editors/kak-lsp/Makefile @@ -1,170 +1,171 @@ PORTNAME= kak-lsp DISTVERSIONPREFIX= v DISTVERSION= 13.0.0 +PORTREVISION= 1 CATEGORIES= editors MAINTAINER= mikael@FreeBSD.org COMMENT= Kakoune Language Server Protocol Client LICENSE= UNLICENSE LICENSE_FILE= ${WRKSRC}/UNLICENSE RUN_DEPENDS= kakoune>=2018.10.27:editors/kakoune USES= cargo USE_GITHUB= yes GH_ACCOUNT= ul CARGO_CRATES= adler32-1.2.0 \ aho-corasick-0.7.18 \ ansi_term-0.12.1 \ arc-swap-1.5.0 \ atty-0.2.14 \ autocfg-1.1.0 \ bitflags-1.3.2 \ boxfnonce-0.1.1 \ bumpalo-3.9.1 \ cfg-if-0.1.10 \ cfg-if-1.0.0 \ chrono-0.4.19 \ clap-2.34.0 \ crc32fast-1.3.2 \ crossbeam-channel-0.5.4 \ crossbeam-utils-0.8.8 \ daemonize-0.4.1 \ diffs-0.4.1 \ dirs-2.0.2 \ dirs-next-2.0.0 \ dirs-sys-0.3.7 \ dirs-sys-next-0.1.2 \ either-1.6.1 \ enum_primitive-0.1.1 \ field-offset-0.3.4 \ form_urlencoded-1.0.1 \ futures-0.3.21 \ futures-channel-0.3.21 \ futures-core-0.3.21 \ futures-executor-0.3.21 \ futures-io-0.3.21 \ futures-macro-0.3.21 \ futures-sink-0.3.21 \ futures-task-0.3.21 \ futures-util-0.3.21 \ getopts-0.2.21 \ getrandom-0.2.6 \ glob-0.3.0 \ hermit-abi-0.1.19 \ idna-0.2.3 \ indoc-1.0.4 \ itertools-0.10.3 \ itoa-1.0.1 \ js-sys-0.3.56 \ jsonrpc-core-18.0.0 \ lazy_static-1.4.0 \ libc-0.2.121 \ libflate-1.2.0 \ libflate_lz77-1.1.0 \ log-0.4.16 \ lsp-types-0.92.1 \ matches-0.1.9 \ memchr-2.4.1 \ memoffset-0.6.5 \ num-integer-0.1.44 \ num-traits-0.1.43 \ num-traits-0.2.14 \ num_threads-0.1.5 \ once_cell-1.10.0 \ percent-encoding-2.1.0 \ pest-2.1.3 \ pin-project-lite-0.2.8 \ pin-utils-0.1.0 \ ppv-lite86-0.2.16 \ proc-macro2-1.0.36 \ pulldown-cmark-0.8.0 \ quote-1.0.17 \ rand-0.8.5 \ rand_chacha-0.3.1 \ rand_core-0.6.3 \ redox_syscall-0.2.12 \ redox_users-0.4.2 \ regex-1.5.5 \ regex-syntax-0.6.25 \ rle-decode-fast-1.0.3 \ ropey-1.4.1 \ rustc_version-0.3.3 \ rustversion-1.0.6 \ ryu-1.0.9 \ semver-0.11.0 \ semver-parser-0.10.2 \ serde-1.0.136 \ serde_derive-1.0.136 \ serde_json-1.0.79 \ serde_repr-0.1.7 \ slab-0.4.5 \ slog-2.7.0 \ slog-async-2.7.0 \ slog-kvfilter-0.7.0 \ slog-scope-4.4.0 \ slog-stdlog-4.1.1 \ slog-term-2.9.0 \ sloggers-2.1.1 \ smallvec-1.8.0 \ str_indices-0.3.2 \ strsim-0.8.0 \ syn-1.0.90 \ take_mut-0.2.2 \ term-0.7.0 \ textwrap-0.11.0 \ thiserror-1.0.30 \ thiserror-impl-1.0.30 \ thread_local-1.1.4 \ time-0.1.43 \ time-0.3.9 \ time-macros-0.2.4 \ tinyvec-1.5.1 \ tinyvec_macros-0.1.0 \ toml-0.5.8 \ trackable-1.2.0 \ trackable_derive-1.0.0 \ ucd-trie-0.1.3 \ unicase-2.6.0 \ unicode-bidi-0.3.7 \ unicode-normalization-0.1.19 \ unicode-width-0.1.9 \ unicode-xid-0.2.2 \ unindent-0.1.8 \ url-2.2.2 \ vec_map-0.8.2 \ version_check-0.9.4 \ wasi-0.10.2+wasi-snapshot-preview1 \ wasm-bindgen-0.2.79 \ wasm-bindgen-backend-0.2.79 \ wasm-bindgen-macro-0.2.79 \ wasm-bindgen-macro-support-0.2.79 \ wasm-bindgen-shared-0.2.79 \ web-sys-0.3.56 \ whoami-1.2.1 \ widestring-0.4.3 \ winapi-0.3.9 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-x86_64-pc-windows-gnu-0.4.0 \ windows-acl-0.3.0 SUB_FILES= pkg-message PLIST_FILES= bin/kak-lsp \ "@sample ${ETCDIR}/kak-lsp.toml.sample" PORTDOCS= README.asciidoc OPTIONS_DEFINE= DOCS post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/kak-lsp @${MKDIR} ${STAGEDIR}${ETCDIR} ${INSTALL_DATA} ${WRKSRC}/kak-lsp.toml ${STAGEDIR}${ETCDIR}/kak-lsp.toml.sample post-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/README.asciidoc ${STAGEDIR}${DOCSDIR} .include diff --git a/editors/kibi/Makefile b/editors/kibi/Makefile index 55e4d074d8b1..ef0e9eb6bec5 100644 --- a/editors/kibi/Makefile +++ b/editors/kibi/Makefile @@ -1,73 +1,73 @@ PORTNAME= kibi DISTVERSIONPREFIX= v DISTVERSION= 0.2.2 -PORTREVISION= 13 +PORTREVISION= 14 CATEGORIES= editors MAINTAINER= lcook@FreeBSD.org COMMENT= Tiny text editor written in Rust LICENSE= BSD2CLAUSE LICENSE_FILE= ${WRKSRC}/COPYRIGHT USES= cargo USE_GITHUB= yes GH_ACCOUNT= ilai-deutel CARGO_CRATES= bitflags-1.2.1 \ cfg-if-0.1.10 \ cfg-if-1.0.0 \ cloudabi-0.0.3 \ getrandom-0.2.1 \ lazy_static-1.4.0 \ libc-0.2.86 \ lock_api-0.3.4 \ parking_lot-0.10.2 \ parking_lot_core-0.7.2 \ ppv-lite86-0.2.10 \ proc-macro2-1.0.12 \ quote-1.0.4 \ rand-0.8.2 \ rand_chacha-0.3.0 \ rand_core-0.6.1 \ rand_hc-0.3.0 \ redox_syscall-0.1.56 \ redox_syscall-0.2.4 \ remove_dir_all-0.5.2 \ scopeguard-1.1.0 \ serial_test-0.5.1 \ serial_test_derive-0.5.1 \ smallvec-1.4.0 \ syn-1.0.18 \ tempfile-3.2.0 \ unicode-width-0.1.8 \ unicode-xid-0.2.0 \ wasi-0.10.1+wasi-snapshot-preview1 \ winapi-0.3.9 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-util-0.1.5 \ winapi-x86_64-pc-windows-gnu-0.4.0 PORTDOCS= CHANGELOG.md README.md OPTIONS_DEFINE= DOCS SYNTAX OPTIONS_DEFAULT= SYNTAX OPTIONS_SUB= yes SYNTAX_DESC= Install Syntax-highlighting ini files post-patch: @${REINPLACE_CMD} -e "s|%%PREFIX%%|${PREFIX}|g" ${WRKSRC}/src/unix.rs post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/${PORTNAME} post-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR} post-install-SYNTAX-on: @${MKDIR} ${STAGEDIR}${DATADIR} cd ${WRKSRC} && ${COPYTREE_SHARE} syntax.d ${STAGEDIR}${DATADIR} .include diff --git a/editors/parinfer-rust/Makefile b/editors/parinfer-rust/Makefile index ebb86958119e..a06d42aabe58 100644 --- a/editors/parinfer-rust/Makefile +++ b/editors/parinfer-rust/Makefile @@ -1,122 +1,122 @@ PORTNAME= parinfer-rust DISTVERSIONPREFIX= v DISTVERSION= 0.4.3.20220110 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= editors MAINTAINER= mikael@FreeBSD.org COMMENT= Infer parentheses for Clojure, Lisp, and Scheme LICENSE= ISCL LICENSE_FILE= ${WRKSRC}/LICENSE.md BUILD_DEPENDS= llvm${LLVM_DEFAULT}>0:devel/llvm${LLVM_DEFAULT} USES= cargo USE_GITHUB= yes GH_ACCOUNT= eraserhd GH_TAGNAME= 211f72e3 USE_LDCONFIG= yes STRIP= CARGO_CRATES= aho-corasick-0.7.15 \ ansi_term-0.11.0 \ anyhow-1.0.38 \ atty-0.2.14 \ base-x-0.2.8 \ bindgen-0.56.0 \ bitflags-1.2.1 \ bumpalo-3.6.1 \ cexpr-0.4.0 \ cfg-if-1.0.0 \ clang-sys-1.1.1 \ clap-2.33.3 \ ctor-0.1.19 \ darling-0.10.2 \ darling_core-0.10.2 \ darling_macro-0.10.2 \ discard-1.0.4 \ emacs-0.16.2 \ emacs-macros-0.15.1 \ emacs_module-0.16.2 \ env_logger-0.8.3 \ fnv-1.0.7 \ getopts-0.2.21 \ glob-0.3.0 \ hermit-abi-0.1.18 \ humantime-2.1.0 \ ident_case-1.0.1 \ itoa-0.4.7 \ lazy_static-1.4.0 \ lazycell-1.3.0 \ libc-0.2.87 \ libloading-0.7.0 \ log-0.4.14 \ memchr-2.3.4 \ nom-5.1.2 \ once_cell-1.7.2 \ peeking_take_while-0.1.2 \ proc-macro2-1.0.24 \ quote-1.0.9 \ regex-1.4.3 \ regex-syntax-0.6.22 \ rustc-hash-1.1.0 \ rustc_version-0.2.3 \ ryu-1.0.5 \ semver-0.9.0 \ semver-parser-0.7.0 \ serde-1.0.123 \ serde_derive-1.0.123 \ serde_json-1.0.64 \ sha1-0.6.0 \ shlex-0.1.1 \ stdweb-0.4.20 \ stdweb-derive-0.5.3 \ stdweb-internal-macros-0.2.9 \ stdweb-internal-runtime-0.1.5 \ strsim-0.8.0 \ strsim-0.9.3 \ syn-1.0.60 \ termcolor-1.1.2 \ textwrap-0.11.0 \ thiserror-1.0.24 \ thiserror-impl-1.0.24 \ thread_local-1.1.3 \ unicode-segmentation-1.7.1 \ unicode-width-0.1.8 \ unicode-xid-0.2.1 \ vec_map-0.8.2 \ version_check-0.9.2 \ wasm-bindgen-0.2.71 \ wasm-bindgen-backend-0.2.71 \ wasm-bindgen-macro-0.2.71 \ wasm-bindgen-macro-support-0.2.71 \ wasm-bindgen-shared-0.2.71 \ which-3.1.1 \ winapi-0.3.9 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-util-0.1.5 \ winapi-x86_64-pc-windows-gnu-0.4.0 CARGO_FEATURES= emacs PLIST_FILES= bin/parinfer-rust \ lib/libparinfer_rust.so \ share/kak/rc/extra/parinfer.kak \ share/vim/vimfiles/doc/parinfer.txt \ share/vim/vimfiles/plugin/parinfer.vim post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/parinfer-rust ${INSTALL_LIB} ${CARGO_TARGET_DIR}/${CARGO_BUILD_TARGET}/*/libparinfer_rust.so \ ${STAGEDIR}${PREFIX}/lib @${MKDIR} ${STAGEDIR}${PREFIX}/share/kak/rc/extra \ ${STAGEDIR}${PREFIX}/share/vim/vimfiles/doc \ ${STAGEDIR}${PREFIX}/share/vim/vimfiles/plugin ${INSTALL_DATA} ${WRKSRC}/rc/parinfer.kak \ ${STAGEDIR}${PREFIX}/share/kak/rc/extra ${INSTALL_DATA} ${WRKSRC}/doc/parinfer.txt \ ${STAGEDIR}${PREFIX}/share/vim/vimfiles/doc ${INSTALL_DATA} ${WRKSRC}/plugin/parinfer.vim \ ${STAGEDIR}${PREFIX}/share/vim/vimfiles/plugin .include diff --git a/editors/xi-core/Makefile b/editors/xi-core/Makefile index d5ed8622b114..a728f0aadaaa 100644 --- a/editors/xi-core/Makefile +++ b/editors/xi-core/Makefile @@ -1,182 +1,182 @@ PORTNAME= xi-core DISTVERSIONPREFIX= v DISTVERSION= 0.3.0 -PORTREVISION= 25 +PORTREVISION= 26 CATEGORIES= editors MAINTAINER= eduardo@FreeBSD.org COMMENT= Modern editor backend written in Rust LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/../LICENSE USES= cargo USE_GITHUB= yes GH_ACCOUNT= xi-editor GH_PROJECT= xi-editor CARGO_CRATES= adler32-1.0.3 \ aho-corasick-0.7.3 \ argon2rs-0.2.5 \ arrayvec-0.4.10 \ ascii-0.9.1 \ autocfg-0.1.4 \ backtrace-0.3.32 \ backtrace-sys-0.1.29 \ base64-0.10.1 \ bincode-1.1.4 \ bitflags-1.1.0 \ blake2-rfc-0.2.18 \ block-buffer-0.7.3 \ block-padding-0.1.4 \ build_const-0.2.1 \ byte-tools-0.3.1 \ bytecount-0.5.1 \ byteorder-1.3.2 \ cc-1.0.37 \ cfg-if-0.1.9 \ chrono-0.4.7 \ cloudabi-0.0.3 \ combine-3.8.1 \ constant_time_eq-0.1.3 \ crc-1.8.1 \ crc32fast-1.2.0 \ crossbeam-0.7.1 \ crossbeam-channel-0.3.8 \ crossbeam-deque-0.7.1 \ crossbeam-epoch-0.7.1 \ crossbeam-queue-0.1.2 \ crossbeam-utils-0.6.5 \ digest-0.8.0 \ dirs-2.0.1 \ dirs-sys-0.3.3 \ either-1.5.2 \ failure-0.1.5 \ failure_derive-0.1.5 \ fake-simd-0.1.2 \ fern-0.5.8 \ filetime-0.2.5 \ flate2-1.0.9 \ fnv-1.0.6 \ fsevent-0.4.0 \ fsevent-sys-2.0.1 \ fuchsia-cprng-0.1.1 \ fuchsia-zircon-0.3.3 \ fuchsia-zircon-sys-0.3.3 \ generic-array-0.12.3 \ humantime-1.2.0 \ idna-0.1.5 \ inotify-0.6.1 \ inotify-sys-0.1.3 \ iovec-0.1.2 \ itoa-0.4.4 \ jsonrpc-lite-0.5.0 \ kernel32-sys-0.2.2 \ languageserver-types-0.54.0 \ lazy_static-1.3.0 \ lazycell-1.2.1 \ libc-0.2.58 \ line-wrap-0.1.1 \ linked-hash-map-0.5.2 \ log-0.4.6 \ matches-0.1.8 \ memchr-2.2.0 \ memoffset-0.2.1 \ miniz-sys-0.1.12 \ miniz_oxide-0.2.1 \ miniz_oxide_c_api-0.2.1 \ mio-0.6.19 \ mio-extras-2.0.5 \ miow-0.2.1 \ net2-0.2.33 \ nodrop-0.1.13 \ nom-4.2.3 \ notify-4.0.12 \ num-derive-0.2.5 \ num-integer-0.1.41 \ num-traits-0.2.8 \ onig-4.3.2 \ onig_sys-69.1.0 \ opaque-debug-0.2.2 \ percent-encoding-1.0.1 \ pkg-config-0.3.14 \ plist-0.4.2 \ pom-3.0.2 \ proc-macro2-0.4.30 \ quick-error-1.2.2 \ quote-0.6.12 \ rand-0.4.6 \ rand-0.6.5 \ rand_chacha-0.1.1 \ rand_core-0.3.1 \ rand_core-0.4.0 \ rand_hc-0.1.0 \ rand_isaac-0.1.1 \ rand_jitter-0.1.4 \ rand_os-0.1.3 \ rand_pcg-0.1.2 \ rand_xorshift-0.1.1 \ rdrand-0.4.0 \ redox_syscall-0.1.54 \ redox_users-0.3.0 \ regex-1.1.7 \ regex-syntax-0.6.7 \ remove_dir_all-0.5.2 \ rustc-demangle-0.1.15 \ ryu-0.2.8 \ safemem-0.3.0 \ same-file-1.0.4 \ scoped_threadpool-0.1.9 \ scopeguard-0.3.3 \ serde-1.0.94 \ serde_derive-1.0.94 \ serde_json-1.0.39 \ serde_test-1.0.94 \ sha2-0.8.0 \ slab-0.4.2 \ smallvec-0.6.10 \ syn-0.15.39 \ synstructure-0.10.2 \ syntect-3.2.0 \ tempdir-0.3.7 \ thread_local-0.3.6 \ time-0.1.42 \ toml-0.5.1 \ typenum-1.10.0 \ ucd-util-0.1.3 \ unicode-bidi-0.3.4 \ unicode-normalization-0.1.8 \ unicode-segmentation-1.3.0 \ unicode-xid-0.1.0 \ unreachable-1.0.0 \ url-1.7.2 \ url_serde-0.2.0 \ utf8-ranges-1.0.3 \ version_check-0.1.5 \ void-1.0.2 \ walkdir-2.2.8 \ winapi-0.2.8 \ winapi-0.3.7 \ winapi-build-0.1.1 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-util-0.1.2 \ winapi-x86_64-pc-windows-gnu-0.4.0 \ ws2_32-sys-0.2.1 \ xml-rs-0.8.0 \ yaml-rust-0.4.3 WRKSRC_SUBDIR= rust PLIST_FILES= bin/xi-core PORTDOCS= README.md OPTIONS_DEFINE= DOCS do-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_MAN} ${WRKSRC}/../README.md ${STAGEDIR}${DOCSDIR} post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/xi-core .include diff --git a/editors/xi-term/Makefile b/editors/xi-term/Makefile index 7d50fa2e00b9..e0a57e59fa5c 100644 --- a/editors/xi-term/Makefile +++ b/editors/xi-term/Makefile @@ -1,177 +1,177 @@ PORTNAME= xi-term DISTVERSION= g20190913 -PORTREVISION= 16 +PORTREVISION= 17 CATEGORIES= editors MAINTAINER= eduardo@FreeBSD.org COMMENT= Terminal frontend for xi-editor LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= xi-core:editors/xi-core USES= cargo USE_GITHUB= yes GH_ACCOUNT= xi-frontend GH_TAGNAME= d264767 CARGO_CRATES= adler32-1.0.3 \ ansi_term-0.11.0 \ antidote-1.0.0 \ arc-swap-0.3.11 \ arrayvec-0.4.10 \ atty-0.2.11 \ autocfg-0.1.4 \ backtrace-0.3.30 \ backtrace-sys-0.1.28 \ base64-0.10.1 \ bitflags-1.1.0 \ build_const-0.2.1 \ byteorder-1.3.2 \ bytes-0.4.12 \ cc-1.0.37 \ cfg-if-0.1.9 \ chrono-0.4.6 \ clap-2.33.0 \ cloudabi-0.0.3 \ crc-1.8.1 \ crc32fast-1.2.0 \ crossbeam-deque-0.7.1 \ crossbeam-epoch-0.7.1 \ crossbeam-queue-0.1.2 \ crossbeam-utils-0.6.5 \ dtoa-0.4.4 \ failure-0.1.5 \ failure_derive-0.1.5 \ flate2-1.0.7 \ fnv-1.0.6 \ fuchsia-cprng-0.1.1 \ fuchsia-zircon-0.3.3 \ fuchsia-zircon-sys-0.3.3 \ futures-0.1.27 \ humantime-1.2.0 \ indexmap-1.0.2 \ iovec-0.1.2 \ itoa-0.4.4 \ kernel32-sys-0.2.2 \ lazy_static-1.3.0 \ lazycell-1.2.1 \ libc-0.2.58 \ line-wrap-0.1.1 \ linked-hash-map-0.5.2 \ lock_api-0.1.5 \ log-0.4.6 \ log-mdc-0.1.0 \ log4rs-0.8.3 \ memoffset-0.2.1 \ miniz-sys-0.1.12 \ miniz_oxide-0.2.1 \ miniz_oxide_c_api-0.2.1 \ mio-0.6.19 \ mio-named-pipes-0.1.6 \ mio-uds-0.6.7 \ miow-0.2.1 \ miow-0.3.3 \ net2-0.2.33 \ nodrop-0.1.13 \ num-integer-0.1.41 \ num-traits-0.2.8 \ num_cpus-1.10.1 \ numtoa-0.1.0 \ ordered-float-1.0.2 \ owning_ref-0.4.0 \ parking_lot-0.7.1 \ parking_lot_core-0.4.0 \ plist-0.4.2 \ proc-macro2-0.4.30 \ quick-error-1.2.2 \ quote-0.6.12 \ rand-0.6.5 \ rand_chacha-0.1.1 \ rand_core-0.3.1 \ rand_core-0.4.0 \ rand_hc-0.1.0 \ rand_isaac-0.1.1 \ rand_jitter-0.1.4 \ rand_os-0.1.3 \ rand_pcg-0.1.2 \ rand_xorshift-0.1.1 \ rdrand-0.4.0 \ redox_syscall-0.1.54 \ redox_termios-0.1.1 \ rustc-demangle-0.1.15 \ rustc_version-0.2.3 \ ryu-0.2.8 \ safemem-0.3.0 \ same-file-1.0.4 \ scopeguard-0.3.3 \ semver-0.9.0 \ semver-parser-0.7.0 \ serde-1.0.92 \ serde-value-0.5.3 \ serde_derive-1.0.92 \ serde_json-1.0.39 \ serde_yaml-0.8.9 \ signal-hook-0.1.9 \ signal-hook-registry-1.0.1 \ slab-0.4.2 \ smallvec-0.6.10 \ socket2-0.3.9 \ stable_deref_trait-1.1.1 \ strsim-0.8.0 \ syn-0.15.36 \ synstructure-0.10.2 \ syntect-3.2.0 \ termion-1.5.3 \ textwrap-0.11.0 \ thread-id-3.3.0 \ time-0.1.42 \ tokio-0.1.21 \ tokio-codec-0.1.1 \ tokio-current-thread-0.1.6 \ tokio-executor-0.1.7 \ tokio-fs-0.1.6 \ tokio-io-0.1.12 \ tokio-process-0.2.3 \ tokio-reactor-0.1.9 \ tokio-signal-0.2.7 \ tokio-sync-0.1.6 \ tokio-tcp-0.1.3 \ tokio-threadpool-0.1.14 \ tokio-timer-0.2.11 \ tokio-trace-core-0.2.0 \ tokio-udp-0.1.3 \ tokio-uds-0.2.5 \ traitobject-0.1.0 \ typemap-0.3.3 \ unicode-width-0.1.5 \ unicode-xid-0.1.0 \ unsafe-any-0.4.2 \ vec_map-0.8.1 \ walkdir-2.2.8 \ winapi-0.2.8 \ winapi-0.3.7 \ winapi-build-0.1.1 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-util-0.1.2 \ winapi-x86_64-pc-windows-gnu-0.4.0 \ ws2_32-sys-0.2.1 \ xdg-2.2.0 \ xml-rs-0.8.0 \ xrl-0.0.8 \ yaml-rust-0.4.3 PLIST_FILES= bin/xi-term PORTDOCS= README.md OPTIONS_DEFINE= DOCS do-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_MAN} ${WRKSRC}/README.md ${STAGEDIR}${DOCSDIR} post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/xi-term .include diff --git a/finance/tickrs/Makefile b/finance/tickrs/Makefile index 26cd4fac85a9..8d148675a5e4 100644 --- a/finance/tickrs/Makefile +++ b/finance/tickrs/Makefile @@ -1,200 +1,200 @@ PORTNAME= tickrs DISTVERSIONPREFIX= v DISTVERSION= 0.14.4 -PORTREVISION= 13 +PORTREVISION= 14 CATEGORIES= finance MAINTAINER= lcook@FreeBSD.org COMMENT= Realtime ticker data in your terminal LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE LIB_DEPENDS= libcurl.so:ftp/curl USES= cargo ssl USE_GITHUB= yes GH_ACCOUNT= tarkah CARGO_CRATES= addr2line-0.14.1 \ adler-0.2.3 \ ansi_term-0.11.0 \ anyhow-1.0.38 \ async-attributes-1.1.2 \ async-channel-1.5.1 \ async-executor-1.4.0 \ async-global-executor-2.0.2 \ async-io-1.3.1 \ async-lock-2.3.0 \ async-mutex-1.4.0 \ async-std-1.9.0 \ async-task-4.0.3 \ atomic-waker-1.0.0 \ atty-0.2.14 \ autocfg-1.0.1 \ backtrace-0.3.56 \ better-panic-0.2.0 \ bitflags-1.2.1 \ blocking-1.0.2 \ bumpalo-3.6.0 \ byteorder-1.4.2 \ bytes-0.4.12 \ cache-padded-1.1.1 \ cassowary-0.3.0 \ cc-1.0.66 \ cfg-if-0.1.10 \ cfg-if-1.0.0 \ chrono-0.4.19 \ chrono-tz-0.5.3 \ clap-2.33.3 \ clicolors-control-1.0.1 \ concurrent-queue-1.2.2 \ console-0.9.2 \ crossbeam-channel-0.4.4 \ crossbeam-utils-0.7.2 \ crossbeam-utils-0.8.1 \ crossterm-0.18.2 \ crossterm-0.19.0 \ crossterm_winapi-0.6.2 \ crossterm_winapi-0.7.0 \ ctor-0.1.19 \ curl-0.4.34 \ curl-sys-0.4.40+curl-7.75.0 \ dirs-next-2.0.0 \ dirs-sys-next-0.1.2 \ dtoa-0.4.7 \ either-1.6.1 \ encode_unicode-0.3.6 \ event-listener-2.5.1 \ fastrand-1.4.0 \ fnv-1.0.7 \ form_urlencoded-1.0.0 \ futures-0.3.12 \ futures-channel-0.3.12 \ futures-core-0.3.12 \ futures-executor-0.3.12 \ futures-io-0.3.12 \ futures-lite-1.11.3 \ futures-macro-0.3.12 \ futures-sink-0.3.12 \ futures-task-0.3.12 \ futures-util-0.3.12 \ getrandom-0.2.2 \ gimli-0.23.0 \ gloo-timers-0.2.1 \ heck-0.3.2 \ hermit-abi-0.1.18 \ http-0.1.21 \ idna-0.2.1 \ instant-0.1.9 \ iovec-0.1.4 \ isahc-0.8.2 \ itertools-0.9.0 \ itoa-0.4.7 \ js-sys-0.3.47 \ kv-log-macro-1.0.7 \ lazy_static-1.4.0 \ libc-0.2.86 \ libnghttp2-sys-0.1.6+1.43.0 \ libz-sys-1.1.2 \ linked-hash-map-0.5.4 \ lock_api-0.4.2 \ log-0.4.14 \ matches-0.1.8 \ maybe-uninit-2.0.0 \ memchr-2.3.4 \ miniz_oxide-0.4.3 \ mio-0.7.7 \ miow-0.3.6 \ nb-connect-1.0.3 \ ntapi-0.3.6 \ num-integer-0.1.44 \ num-traits-0.2.14 \ num_cpus-1.13.0 \ object-0.23.0 \ once_cell-1.5.2 \ openssl-probe-0.1.2 \ openssl-sys-0.9.60 \ parking-2.0.0 \ parking_lot-0.11.1 \ parking_lot_core-0.8.3 \ parse-zoneinfo-0.3.0 \ percent-encoding-2.1.0 \ pin-project-lite-0.2.4 \ pin-utils-0.1.0 \ pkg-config-0.3.19 \ polling-2.0.2 \ proc-macro-error-1.0.4 \ proc-macro-error-attr-1.0.4 \ proc-macro-hack-0.5.19 \ proc-macro-nested-0.1.7 \ proc-macro2-1.0.24 \ quote-1.0.9 \ redox_syscall-0.2.5 \ redox_users-0.4.0 \ regex-1.4.3 \ regex-syntax-0.6.22 \ rustc-demangle-0.1.18 \ ryu-1.0.5 \ schannel-0.1.19 \ scopeguard-1.1.0 \ serde-1.0.123 \ serde_derive-1.0.123 \ serde_json-1.0.62 \ serde_urlencoded-0.6.1 \ serde_yaml-0.8.17 \ signal-hook-0.1.17 \ signal-hook-registry-1.3.0 \ slab-0.4.2 \ sluice-0.5.4 \ smallvec-1.6.1 \ socket2-0.3.19 \ strsim-0.8.0 \ structopt-0.3.21 \ structopt-derive-0.4.14 \ syn-1.0.60 \ termios-0.3.3 \ textwrap-0.11.0 \ time-0.1.43 \ tinyvec-1.1.1 \ tinyvec_macros-0.1.0 \ tui-0.14.0 \ unicode-bidi-0.3.4 \ unicode-normalization-0.1.17 \ unicode-segmentation-1.7.1 \ unicode-width-0.1.8 \ unicode-xid-0.2.1 \ url-2.2.0 \ value-bag-1.0.0-alpha.6 \ vcpkg-0.2.11 \ vec-arena-1.0.0 \ vec_map-0.8.2 \ version_check-0.9.2 \ waker-fn-1.1.0 \ wasi-0.10.2+wasi-snapshot-preview1 \ wasm-bindgen-0.2.70 \ wasm-bindgen-backend-0.2.70 \ wasm-bindgen-futures-0.4.20 \ wasm-bindgen-macro-0.2.70 \ wasm-bindgen-macro-support-0.2.70 \ wasm-bindgen-shared-0.2.70 \ web-sys-0.3.47 \ wepoll-sys-3.0.1 \ winapi-0.3.9 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-x86_64-pc-windows-gnu-0.4.0 \ yaml-rust-0.4.5 PLIST_FILES= bin/${PORTNAME} PORTDOCS= CHANGELOG.md README.md OPTIONS_DEFINE= DOCS post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/${PORTNAME} post-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR} .include diff --git a/games/0ad/Makefile b/games/0ad/Makefile index d7f62bf848cd..d7ffe0b4037c 100644 --- a/games/0ad/Makefile +++ b/games/0ad/Makefile @@ -1,90 +1,90 @@ PORTNAME= 0ad PORTVERSION= 0.0.25b -PORTREVISION= 16 +PORTREVISION= 17 CATEGORIES= games MASTER_SITES= http://releases.wildfiregames.com/ \ SF/zero-ad/releases DISTFILES= ${PORTNAME}-${PORTVERSION}-alpha-unix-build.tar.xz \ ${PORTNAME}-${PORTVERSION}-alpha-unix-data.tar.xz MAINTAINER= madpilot@FreeBSD.org COMMENT= Real-time strategy (RTS) game of ancient warfare BROKEN_aarch64= fails to compile: no member named verifyHeapAccessDisassembly BROKEN_armv6= fails to link: fatal error: conftest: Unknown error: -1 BROKEN_armv7= fails to link: fatal error: conftest: Unknown error: -1 BROKEN_powerpc64= fails to compile: _psutil_bsd.c: error: 'struct xtcpcb' has no member named 'xt_tp' BUILD_DEPENDS= ${RUST_DEFAULT}>=1.35:lang/${RUST_DEFAULT} \ zip:archivers/zip \ cmake:devel/cmake LIB_DEPENDS= libboost_thread.so:devel/boost-libs \ libicui18n.so:devel/icu \ libpng.so:graphics/png \ libogg.so:audio/libogg \ libvorbis.so:audio/libvorbis \ libcurl.so:ftp/curl \ libgloox.so:net-im/gloox \ libminiupnpc.so:net/miniupnpc \ libnspr4.so:devel/nspr \ libenet.so:net/enet \ libtiff.so:graphics/tiff \ libsodium.so:security/libsodium \ libfmt.so:devel/libfmt USES= compiler:c++11-lib desktop-file-utils dos2unix gl gmake gnome \ iconv jpeg openal:al perl5 pkgconfig python:build sdl tar:xz \ xorg USE_GNOME= libxml2 USE_GL= gl USE_SDL= sdl2 USE_XORG= x11 xcursor USE_PERL5= build WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}-alpha BUILD_WRKSRC= ${WRKSRC}/build/workspaces/gcc MAKE_ARGS= config=release verbose=1 CPPFLAGS+= -DU_USING_ICU_NAMESPACE=1 CFLAGS_i386= -msse2 BUNDLE_LIBS= yes DOS2UNIX_REGEX= .*\.([ch]p{0,2}|make) BINARY_ALIAS= python3=${PYTHON_CMD} USE_WX= 3.0+ WX_COMPS= wx:lib MAKE_ENV+= JOBS=${_MAKE_JOBS} PORTDATA= * .include post-patch: @${REINPLACE_CMD} -e 's|%%LOCALBASE%%|${LOCALBASE}|' \ -e 's|%%CC%%|${CC}|' \ ${WRKSRC}/build/premake/premake5.lua ${WRKSRC}/build/premake/extern_libs5.lua .if ${ARCH} == i386 && ${CHOSEN_COMPILER_TYPE} == gcc @${REINPLACE_CMD} -e '1055,1251s/-rdynamic/-lssp_nonshared &/' \ -e '1441s/"execinfo",/& "ssp_nonshared",/' \ ${WRKSRC}/build/premake/premake5.lua .endif @${ECHO_CMD} "patch < ../setuptools.diff" >> ${WRKSRC}/libraries/source/spidermonkey/patch.sh @${CP} ${FILESDIR}/setuptools.diff ${WRKSRC}/libraries/source/spidermonkey/ pre-build: (cd ${WRKSRC}/build/workspaces && ${SETENV} ${MAKE_ENV} ./update-workspaces.sh --bindir=${PREFIX}/bin --datadir=${DATADIR} --libdir=${PREFIX}/lib/${PORTNAME}) do-install: ${INSTALL_PROGRAM} ${WRKSRC}/binaries/system/pyrogenesis ${STAGEDIR}${PREFIX}/bin ${INSTALL_SCRIPT} ${WRKSRC}/build/resources/0ad.sh ${STAGEDIR}${PREFIX}/bin/0ad ${INSTALL_PROGRAM} ${WRKSRC}/binaries/system/ActorEditor ${STAGEDIR}${PREFIX}/bin ${MKDIR} ${STAGEDIR}${PREFIX}/lib/${PORTNAME} (cd ${WRKSRC}/binaries/system && ${INSTALL_LIB} libAtlasUI.so libCollada.so libmozjs78-ps-release.so libnvcore.so libnvimage.so libnvmath.so libnvtt.so ${STAGEDIR}${PREFIX}/lib/${PORTNAME}) ${INSTALL_DATA} ${WRKSRC}/build/resources/0ad.desktop ${STAGEDIR}${PREFIX}/share/applications ${INSTALL_DATA} ${WRKSRC}/build/resources/0ad.png ${STAGEDIR}${PREFIX}/share/pixmaps ${MKDIR} ${STAGEDIR}${DATADIR} (cd ${WRKSRC}/binaries/data && ${COPYTREE_SHARE} "config l10n tests tools" ${STAGEDIR}${DATADIR}) ${MKDIR} ${STAGEDIR}${DATADIR}/mods/public ${STAGEDIR}${DATADIR}/mods/mod ${TAR} xf ${WRKSRC}/binaries/data/mods/public/public.zip -C ${STAGEDIR}${DATADIR}/mods/public --no-same-permissions ${TAR} xf ${WRKSRC}/binaries/data/mods/mod/mod.zip -C ${STAGEDIR}${DATADIR}/mods/mod --no-same-permissions .include diff --git a/games/abstreet/Makefile b/games/abstreet/Makefile index fb66b04d0545..b007dbd9b267 100644 --- a/games/abstreet/Makefile +++ b/games/abstreet/Makefile @@ -1,473 +1,473 @@ PORTNAME= abstreet DISTVERSIONPREFIX= v DISTVERSION= 0.2.64 -PORTREVISION= 7 +PORTREVISION= 8 CATEGORIES= games MASTER_SITES= LOCAL/yuri:data DISTFILES= ${PORTNAME}-data-${DISTVERSION}.tgz:data # updated by the update-data target MAINTAINER= yuri@FreeBSD.org COMMENT= Game exploring how changes to city affect drivers/cyclists/pedestrians LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE BROKEN= fails to build with rust 1.61.0+ # also see the WIP https://github.com/a-b-street/abstreet/issues/959 why it can't be updated yet BUILD_DEPENDS= alsa-lib>0:audio/alsa-lib USES= cargo gnome localbase:ldflags pkgconfig python:build xorg USE_GNOME= glib20 gtk30 USE_XORG= xcb USE_GITHUB= yes GH_ACCOUNT= a-b-street MAKE_ENV= ABST_DATA_DIR=${DATADIR} ABST_PLAYER_HOME_DIR=1 CARGO_CRATES= aabb-quadtree-0.1.0 \ ab_glyph_rasterizer-0.1.4 \ adler-1.0.2 \ adler32-1.2.0 \ ahash-0.4.7 \ aho-corasick-0.7.18 \ alsa-0.5.0 \ alsa-sys-0.3.1 \ andrew-0.3.1 \ android_glue-0.2.3 \ ansi_term-0.11.0 \ anyhow-1.0.41 \ approx-0.4.0 \ arrayvec-0.5.2 \ as-slice-0.1.5 \ atk-sys-0.10.0 \ atty-0.2.14 \ autocfg-1.0.1 \ base64-0.13.0 \ bincode-1.3.3 \ bindgen-0.56.0 \ bitflags-1.2.1 \ block-0.1.6 \ bstr-0.2.16 \ built-0.5.1 \ bumpalo-3.7.0 \ bytemuck-1.7.0 \ byteorder-1.4.3 \ bytes-1.0.1 \ cairo-sys-rs-0.10.0 \ calloop-0.6.5 \ cargo-lock-7.0.0 \ cbindgen-0.19.0 \ cc-1.0.68 \ cesu8-1.1.0 \ cexpr-0.4.0 \ cfg-if-0.1.10 \ cfg-if-1.0.0 \ cgl-0.3.2 \ chrono-0.4.19 \ clang-sys-1.2.0 \ clap-2.33.3 \ clipboard-0.5.0 \ clipboard-win-2.2.0 \ cocoa-0.23.0 \ cocoa-0.24.0 \ cocoa-foundation-0.1.0 \ color_quant-1.1.0 \ colorous-1.0.5 \ combine-4.6.0 \ console_log-0.2.0 \ contour-0.4.0 \ core-foundation-0.7.0 \ core-foundation-0.9.1 \ core-foundation-sys-0.6.2 \ core-foundation-sys-0.7.0 \ core-foundation-sys-0.8.2 \ core-graphics-0.19.2 \ core-graphics-0.22.2 \ core-graphics-types-0.1.1 \ core-video-sys-0.1.4 \ coreaudio-rs-0.10.0 \ coreaudio-sys-0.2.8 \ cpal-0.13.3 \ crc32fast-1.2.1 \ csv-1.1.6 \ csv-core-0.1.10 \ ctrlc-3.1.9 \ darling-0.10.2 \ darling-0.12.4 \ darling_core-0.10.2 \ darling_core-0.12.4 \ darling_macro-0.10.2 \ darling_macro-0.12.4 \ data-url-0.1.0 \ deflate-0.8.6 \ derivative-2.2.0 \ derive_builder-0.9.0 \ derive_builder_core-0.9.0 \ dispatch-0.2.0 \ dlib-0.4.2 \ dlib-0.5.0 \ downcast-rs-1.2.0 \ earcutr-0.1.1 \ either-1.6.1 \ encoding_rs-0.8.28 \ enum_dispatch-0.3.7 \ enumset-1.0.6 \ enumset_derive-0.5.4 \ env_logger-0.8.4 \ euclid-0.22.6 \ fallible-streaming-iterator-0.1.9 \ fixedbitset-0.4.0 \ flatbuffers-0.6.1 \ flate2-1.0.20 \ flatgeobuf-0.5.0 \ float-cmp-0.5.3 \ float_next_after-0.1.5 \ fnv-1.0.7 \ fontdb-0.5.4 \ foreign-types-0.3.2 \ foreign-types-shared-0.1.1 \ form_urlencoded-1.0.1 \ fuchsia-zircon-0.3.3 \ fuchsia-zircon-sys-0.3.3 \ futures-0.3.15 \ futures-channel-0.3.15 \ futures-core-0.3.15 \ futures-executor-0.3.15 \ futures-io-0.3.15 \ futures-macro-0.3.15 \ futures-sink-0.3.15 \ futures-task-0.3.15 \ futures-util-0.3.15 \ gdal-0.8.0 \ gdal-sys-0.4.0 \ gdk-pixbuf-sys-0.10.0 \ gdk-sys-0.10.0 \ generic-array-0.12.4 \ generic-array-0.13.3 \ generic-array-0.14.4 \ geographiclib-rs-0.2.0 \ geojson-0.22.2 \ geozero-0.7.4 \ getrandom-0.2.3 \ gio-sys-0.10.1 \ gl_generator-0.14.0 \ glib-sys-0.10.1 \ glob-0.3.0 \ glow-0.9.0 \ glutin-0.26.0 \ glutin_egl_sys-0.1.5 \ glutin_emscripten_sys-0.1.1 \ glutin_gles2_sys-0.1.5 \ glutin_glx_sys-0.1.7 \ glutin_wgl_sys-0.1.5 \ gobject-sys-0.10.0 \ gtk-sys-0.10.0 \ h2-0.3.3 \ hash32-0.1.1 \ hashbrown-0.9.1 \ heapless-0.6.1 \ heck-0.3.3 \ hermit-abi-0.1.18 \ histogram-0.6.9 \ htmlescape-0.3.1 \ http-0.2.4 \ http-body-0.4.2 \ httparse-1.4.1 \ httpdate-1.0.1 \ humantime-2.1.0 \ hyper-0.14.9 \ hyper-rustls-0.22.1 \ ident_case-1.0.1 \ idna-0.2.3 \ image-0.23.14 \ indexmap-1.6.2 \ instant-0.1.9 \ iovec-0.1.4 \ ipnet-2.3.1 \ itertools-0.9.0 \ itertools-0.10.1 \ itoa-0.4.7 \ jni-0.18.0 \ jni-sys-0.3.0 \ jobserver-0.1.22 \ js-sys-0.3.51 \ kernel32-sys-0.2.2 \ khronos_api-3.1.0 \ kurbo-0.8.1 \ lazy_static-1.4.0 \ lazycell-1.3.0 \ lewton-0.10.2 \ libc-0.2.97 \ libloading-0.6.7 \ libloading-0.7.0 \ libm-0.1.4 \ libm-0.2.1 \ lock_api-0.4.4 \ log-0.4.14 \ lru-0.6.5 \ lttb-0.2.0 \ lyon-0.16.2 \ lyon_algorithms-0.16.0 \ lyon_geom-0.16.2 \ lyon_path-0.16.2 \ lyon_tessellation-0.16.2 \ mach-0.3.2 \ malloc_buf-0.0.6 \ maplit-1.0.2 \ matches-0.1.8 \ maybe-uninit-2.0.0 \ md5-0.7.0 \ memchr-2.4.0 \ memmap2-0.1.0 \ memmap2-0.2.3 \ mime-0.3.16 \ miniz_oxide-0.3.7 \ miniz_oxide-0.4.4 \ mio-0.6.23 \ mio-0.7.13 \ mio-extras-2.0.6 \ miow-0.2.2 \ miow-0.3.7 \ nbez-0.1.0 \ ndk-0.2.1 \ ndk-0.3.0 \ ndk-glue-0.2.1 \ ndk-glue-0.3.0 \ ndk-macro-0.2.0 \ ndk-sys-0.2.1 \ net2-0.2.37 \ nix-0.18.0 \ nix-0.20.0 \ nom-5.1.2 \ nom-6.1.2 \ ntapi-0.3.6 \ num-derive-0.3.3 \ num-integer-0.1.44 \ num-iter-0.1.42 \ num-rational-0.3.2 \ num-traits-0.1.43 \ num-traits-0.2.14 \ num_cpus-1.13.0 \ num_enum-0.4.3 \ num_enum-0.5.1 \ num_enum_derive-0.4.3 \ num_enum_derive-0.5.1 \ numtoa-0.1.0 \ objc-0.2.7 \ objc-foundation-0.1.1 \ objc_id-0.1.1 \ oboe-0.4.2 \ oboe-sys-0.4.2 \ ogg-0.8.0 \ once_cell-1.8.0 \ ordered-float-2.5.1 \ osmesa-sys-0.1.2 \ osmio-0.4.0 \ owned_ttf_parser-0.6.0 \ pango-sys-0.10.0 \ parking_lot-0.11.1 \ parking_lot_core-0.8.3 \ pdqselect-0.1.0 \ peeking_take_while-0.1.2 \ percent-encoding-2.1.0 \ pest-2.1.3 \ petgraph-0.6.0 \ petname-1.1.0 \ pico-args-0.4.2 \ pin-project-lite-0.2.6 \ pin-utils-0.1.0 \ pkg-config-0.3.19 \ png-0.16.8 \ ppv-lite86-0.2.10 \ priority-queue-1.1.1 \ proc-macro-crate-0.1.5 \ proc-macro-error-1.0.4 \ proc-macro-error-attr-1.0.4 \ proc-macro-hack-0.5.19 \ proc-macro-nested-0.1.7 \ proc-macro2-1.0.27 \ protobuf-2.8.2 \ quick-xml-0.20.0 \ quote-1.0.9 \ rand-0.8.4 \ rand_chacha-0.3.1 \ rand_core-0.6.3 \ rand_distr-0.4.1 \ rand_hc-0.3.1 \ rand_xorshift-0.3.0 \ raw-window-handle-0.3.3 \ rctree-0.3.3 \ redox_syscall-0.2.9 \ redox_termios-0.1.2 \ regex-1.5.4 \ regex-automata-0.1.10 \ regex-syntax-0.6.25 \ remove_dir_all-0.5.3 \ reqwest-0.11.3 \ rfd-0.4.0 \ ring-0.16.20 \ robust-0.2.3 \ rodio-0.14.0 \ roxmltree-0.14.1 \ rstar-0.8.3 \ rustc-hash-1.1.0 \ rustls-0.19.1 \ rusttype-0.9.2 \ rustybuzz-0.3.0 \ ryu-1.0.5 \ same-file-1.0.6 \ scoped-tls-1.0.0 \ scoped_threadpool-0.1.9 \ scopeguard-1.1.0 \ sct-0.6.1 \ semver-0.11.0 \ semver-1.0.3 \ semver-parser-0.10.2 \ separator-0.4.1 \ serde-1.0.126 \ serde_derive-1.0.126 \ serde_json-1.0.64 \ serde_urlencoded-0.7.0 \ shared_library-0.1.9 \ shlex-0.1.1 \ sid-0.6.1 \ signal-hook-registry-1.4.0 \ simplecss-0.2.0 \ siphasher-0.2.3 \ slab-0.4.3 \ slotmap-0.4.0 \ smallvec-1.6.1 \ smithay-client-toolkit-0.12.3 \ socket2-0.4.0 \ spin-0.5.2 \ stable_deref_trait-1.2.0 \ stdweb-0.1.3 \ stretch-0.3.2 \ strsim-0.8.0 \ strsim-0.9.3 \ strsim-0.10.0 \ structopt-0.3.23 \ structopt-derive-0.4.16 \ strum-0.18.0 \ strum-0.21.0 \ strum_macros-0.18.0 \ strum_macros-0.21.1 \ svg_face-0.1.3 \ svgtypes-0.5.0 \ syn-1.0.73 \ system-deps-1.3.2 \ tempfile-3.2.0 \ termcolor-1.1.2 \ termion-1.5.6 \ textwrap-0.11.0 \ thiserror-1.0.25 \ thiserror-impl-1.0.25 \ thread_local-1.1.3 \ time-0.1.43 \ tinyvec-1.2.0 \ tinyvec_macros-0.1.0 \ tokio-1.7.0 \ tokio-macros-1.2.0 \ tokio-rustls-0.22.0 \ tokio-util-0.6.7 \ toml-0.5.8 \ tower-service-0.3.1 \ tracing-0.1.26 \ tracing-core-0.1.18 \ try-lock-0.2.3 \ ttf-parser-0.6.2 \ ttf-parser-0.9.0 \ ttf-parser-0.12.2 \ typenum-1.13.0 \ ucd-trie-0.1.3 \ unicode-bidi-0.3.5 \ unicode-bidi-mirroring-0.1.0 \ unicode-ccc-0.1.2 \ unicode-general-category-0.2.0 \ unicode-normalization-0.1.19 \ unicode-script-0.5.2 \ unicode-segmentation-1.7.1 \ unicode-vo-0.1.0 \ unicode-width-0.1.8 \ unicode-xid-0.2.2 \ untrusted-0.7.1 \ url-2.2.2 \ usvg-0.14.1 \ vec_map-0.8.2 \ version-compare-0.0.10 \ version_check-0.9.3 \ walkdir-2.3.2 \ want-0.3.0 \ wasi-0.10.2+wasi-snapshot-preview1 \ wasm-bindgen-0.2.74 \ wasm-bindgen-backend-0.2.74 \ wasm-bindgen-futures-0.4.24 \ wasm-bindgen-macro-0.2.74 \ wasm-bindgen-macro-support-0.2.74 \ wasm-bindgen-shared-0.2.74 \ wasm-streams-0.2.0 \ wayland-client-0.28.5 \ wayland-commons-0.28.5 \ wayland-cursor-0.28.5 \ wayland-egl-0.28.5 \ wayland-protocols-0.28.5 \ wayland-scanner-0.28.5 \ wayland-sys-0.28.5 \ web-sys-0.3.51 \ webbrowser-0.5.5 \ webpki-0.21.4 \ webpki-roots-0.21.1 \ widestring-0.4.3 \ winapi-0.2.8 \ winapi-0.3.9 \ winapi-build-0.1.1 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-util-0.1.5 \ winapi-x86_64-pc-windows-gnu-0.4.0 \ winit-0.24.0 \ winreg-0.7.0 \ ws2_32-sys-0.2.1 \ x11-clipboard-0.3.3 \ x11-dl-2.18.5 \ xcb-0.8.2 \ xcursor-0.3.3 \ xdg-2.2.0 \ xml-rs-0.8.3 \ xmlparser-0.13.3 \ xmltree-0.10.3 \ xmlwriter-0.1.0 \ include_dir,include_dir_impl@git+https://github.com/dabreegster/include_dir?branch=union\#0e40ac82424165dac85496283304d3c64e080bb5 \ fast_paths@git+https://github.com/easbar/fast_paths?rev=9a954e02f01ed16939d3c4a2dc9dd3fb4f6c03ee\#9a954e02f01ed16939d3c4a2dc9dd3fb4f6c03ee \ geo,geo-types@git+https://github.com/georust/geo\#2ebbc7f8a8774d9a4a68e9a1b40bcdd22b02fac9 \ geo-booleanop@git+https://github.com/21re/rust-geo-booleanop\#188f016e44a3ec737ce8e279215caf558443de89 \ subprocess@git+https://github.com/hniksic/rust-subprocess\#c3e057d485dc9154396eeb322965b834e666b1c5 \ polylabel@git+https://github.com/urschrei/polylabel-rs\#d86089e93af18517651e866a53a79461bda331b7 BINARY_ALIAS= python3=${PYTHON_CMD} # To update this port: # 1. Update CARGO_CRATES based on 'make cargo-crates' # 2. Run 'make update-data' # 3. Upload the abstreet-data distfile # 4. Run 'make makesum clean' update-data: configure # see https://github.com/dabreegster/abstreet/blob/master/docs/dev.md#getting-started for the list of supported cities # huge_seattle is excluded as per this comment: https://github.com/dabreegster/abstreet/issues/192#issuecomment-657938969 @(${ECHO} "runtime: seattle,krakow,berlin" && \ ${ECHO} "input: seattle,krakow,berlin") > ${WRKSRC}/data/config @cd ${WRKSRC} && \ ${SETENV} ${MAKE_ENV} ${CARGO_CARGO_RUN} run --bin updater && \ ${TAR} czf ${DISTDIR}/${PORTNAME}-data-${DISTVERSION}.tgz data && \ ${ECHO} "Please upload the file ${DISTDIR}/${PORTNAME}-data-${DISTVERSION}.tgz" post-extract: @${CP} ${WRKDIR}/data/config ${WRKSRC}/data/ @cd ${WRKDIR}/data/system && ${COPYTREE_SHARE} us ${WRKSRC}/data/system/ do-install: ${INSTALL_PROGRAM} ${CARGO_TARGET_DIR}/${CARGO_BUILD_TARGET}/*/game ${STAGEDIR}${PREFIX}/bin/${PORTNAME}-game cd ${WRKSRC}/data && ${COPYTREE_SHARE} . ${STAGEDIR}${DATADIR} .include diff --git a/games/anki/Makefile b/games/anki/Makefile index 6fb0a051ab46..25f7d9f40519 100644 --- a/games/anki/Makefile +++ b/games/anki/Makefile @@ -1,594 +1,594 @@ PORTNAME= anki DISTVERSION= 2.1.49 -PORTREVISION= 3 +PORTREVISION= 4 # Don't forget to update ${_MY_BUILDHASH} if DISTVERSION changes CATEGORIES= games education python MASTER_SITES= LOCAL/kai/:yarncache DISTFILES= anki-yarn-cache-${DISTVERSION}${EXTRACT_SUFX}:yarncache MAINTAINER= kai@FreeBSD.org COMMENT= Flashcard trainer with spaced repetition LICENSE= AGPLv3+ LICENSE_FILE= ${WRKSRC}/LICENSE BROKEN_aarch64= needs adjustments (e.g. "//platforms:freebsd_arm64") for the shipped Bazel rules files to include several files during build. NOT_FOR_ARCHS= armv6 armv7 i386 mips powerpc NOT_FOR_ARCHS_REASON= the bazel build framework supports only 64-bit systems. BUILD_DEPENDS= bash:shells/bash \ bazel:devel/bazel \ esbuild:devel/esbuild \ protoc:devel/protobuf \ yarn:www/yarn \ ${PYTHON_PKGNAMEPREFIX}mypy-protobuf>=1.21:devel/py-mypy-protobuf@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}stringcase>0:devel/py-stringcase@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}black>0:devel/py-black@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}fluent>0:devel/py-fluent@${PY_FLAVOR} \ ${RUN_DEPENDS} # For x64 architectures there's also a Python package "orjson" that still needs # to be ported once the required features (= "untagged unions", # "specialication" and "const_generics") of the "smallvec" crate are available # in the Rust release channel. # # Although the "orjson" package is required via the setup.py of Anki's Python # library it's (still) optional in the code. RUN_DEPENDS= lame:audio/lame \ ${PYTHON_PKGNAMEPREFIX}pyaudio>0:audio/py-pyaudio@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}sqlite3>0:databases/py-sqlite3@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}decorator>0:devel/py-decorator@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}jsonschema>0:devel/py-jsonschema@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}send2trash>0:deskutils/py-send2trash@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}distro>0:sysutils/py-distro@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}markdown>0:textproc/py-markdown@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}beautifulsoup>0:www/py-beautifulsoup@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}requests>0:www/py-requests@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}Flask>0:www/py-flask@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}Flask-Cors>0:www/py-flask-cors@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}protobuf>0:devel/py-protobuf@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}stringcase>0:devel/py-stringcase@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}waitress>0:www/py-waitress@${PY_FLAVOR} # USES=ssl is required for the compilation of the Rust code USES= cargo desktop-file-utils pyqt:5 python:3.8+ shebangfix ssl USE_GITHUB= yes GH_ACCOUNT= ankitects # Translation files GH_TUPLE= ankitects:anki-core-i18n:56d46d6:ftlrslib \ ankitects:anki-desktop-ftl:5359f84:ftlextra # Bazel Skylib framework and sets of bazel rules GH_TUPLE+= bazelbuild:bazel-skylib:e59b620:bzlskylib \ bazelbuild:rules_cc:40548a2:bzlrcc \ bazelbuild:rules_java:c13e3ea:bzlrjava \ bazelbuild:rules_nodejs:2d02e82:bzlrnodejs \ bazelbuild:rules_proto:f7a30f6:bzlrproto \ ankitects:esbuild_toolchain:f942aa9:esbuildtc \ ankitects:rules_pip:fb02cb7:bzlrpip \ ankitects:rules_python:3927c9b:bzlrpython \ ankitects:rules_rust:f66001a:bzlrrust \ ankitects:rules_sass:275ace7:bzlrsass USE_PYQT= pyqt5 sip webengine SHEBANG_FILES= qt/tools/runanki.system.in CARGO_CRATES= Inflector-0.11.4 \ adler-1.0.2 \ ahash-0.7.4 \ aho-corasick-0.7.18 \ ammonia-3.1.2 \ anyhow-1.0.42 \ arc-swap-1.3.0 \ arrayref-0.3.6 \ arrayvec-0.4.12 \ arrayvec-0.5.2 \ askama-0.10.5 \ askama_derive-0.10.5 \ askama_escape-0.10.1 \ askama_shared-0.11.1 \ async-trait-0.1.51 \ atty-0.2.14 \ autocfg-1.0.1 \ base64-0.13.0 \ bitflags-1.2.1 \ bitvec-0.19.5 \ blake3-0.3.8 \ bumpalo-3.7.0 \ byteorder-1.4.3 \ bytes-1.0.1 \ cc-1.0.69 \ cfg-if-0.1.10 \ cfg-if-1.0.0 \ chrono-0.4.19 \ coarsetime-0.1.19 \ codespan-0.11.1 \ codespan-reporting-0.11.1 \ constant_time_eq-0.1.5 \ convert_case-0.4.0 \ core-foundation-0.9.1 \ core-foundation-sys-0.8.2 \ crc32fast-1.2.1 \ crossbeam-channel-0.5.1 \ crossbeam-utils-0.8.5 \ crypto-mac-0.8.0 \ cssparser-0.27.2 \ cssparser-macros-0.6.0 \ ctor-0.1.20 \ derivative-2.2.0 \ derive_more-0.99.16 \ digest-0.9.0 \ dirs-2.0.2 \ dirs-sys-0.3.6 \ dtoa-0.4.8 \ dtoa-short-0.3.3 \ dunce-1.0.2 \ either-1.6.1 \ encoding_rs-0.8.28 \ env_logger-0.8.4 \ fallible-iterator-0.2.0 \ fallible-streaming-iterator-0.1.9 \ fixedbitset-0.2.0 \ flate2-1.0.20 \ fluent-0.15.0 \ fluent-bundle-0.15.1 \ fluent-langneg-0.13.0 \ fluent-syntax-0.11.0 \ fnv-1.0.7 \ foreign-types-0.3.2 \ foreign-types-shared-0.1.1 \ form_urlencoded-1.0.1 \ funty-1.1.0 \ futf-0.1.4 \ futures-0.3.16 \ futures-channel-0.3.16 \ futures-core-0.3.16 \ futures-executor-0.3.16 \ futures-io-0.3.16 \ futures-macro-0.3.16 \ futures-sink-0.3.16 \ futures-task-0.3.16 \ futures-util-0.3.16 \ fxhash-0.2.1 \ generic-array-0.14.4 \ getopts-0.2.21 \ getrandom-0.1.16 \ getrandom-0.2.3 \ ghost-0.1.2 \ h2-0.3.3 \ hashbrown-0.11.2 \ hashlink-0.7.0 \ heck-0.3.3 \ hermit-abi-0.1.19 \ hex-0.4.3 \ html5ever-0.25.1 \ htmlescape-0.3.1 \ http-0.2.4 \ http-body-0.4.2 \ httparse-1.4.1 \ httpdate-1.0.1 \ humansize-1.1.1 \ humantime-2.1.0 \ hyper-0.14.11 \ hyper-rustls-0.22.1 \ hyper-tls-0.5.0 \ idna-0.2.3 \ indexmap-1.7.0 \ indoc-0.3.6 \ indoc-impl-0.3.6 \ inflections-1.1.1 \ instant-0.1.10 \ intl-memoizer-0.5.1 \ intl_pluralrules-7.0.1 \ inventory-0.1.10 \ inventory-impl-0.1.10 \ ipnet-2.3.1 \ itertools-0.9.0 \ itertools-0.10.1 \ itoa-0.4.7 \ js-sys-0.3.52 \ kuchiki-0.8.1 \ lazy_static-1.4.0 \ lexical-core-0.7.6 \ libc-0.2.98 \ libsqlite3-sys-0.22.2 \ linkify-0.5.0 \ lock_api-0.4.4 \ log-0.4.14 \ mac-0.1.1 \ maplit-1.0.2 \ markup5ever-0.10.1 \ markup5ever_rcdom-0.1.0 \ matches-0.1.8 \ memchr-2.4.0 \ mime-0.3.16 \ mime_guess-2.0.3 \ miniz_oxide-0.4.4 \ mio-0.7.13 \ miow-0.3.7 \ multimap-0.8.3 \ native-tls-0.2.7 \ new_debug_unreachable-1.0.4 \ nodrop-0.1.14 \ nom-6.1.2 \ nom-7.0.0-alpha1 \ ntapi-0.3.6 \ num-format-0.4.0 \ num-integer-0.1.44 \ num-traits-0.2.14 \ num_cpus-1.13.0 \ num_enum-0.5.2 \ num_enum_derive-0.5.2 \ once_cell-1.8.0 \ openssl-0.10.35 \ openssl-probe-0.1.4 \ openssl-sys-0.9.65 \ ouroboros-0.9.5 \ ouroboros_macro-0.9.5 \ parking_lot-0.11.1 \ parking_lot_core-0.8.3 \ paste-0.1.18 \ paste-impl-0.1.18 \ percent-encoding-2.1.0 \ pest-2.1.3 \ petgraph-0.5.1 \ phf-0.8.0 \ phf-0.9.0 \ phf_codegen-0.8.0 \ phf_generator-0.8.0 \ phf_generator-0.9.0 \ phf_macros-0.8.0 \ phf_macros-0.9.0 \ phf_shared-0.8.0 \ phf_shared-0.9.0 \ pin-project-1.0.8 \ pin-project-internal-1.0.8 \ pin-project-lite-0.2.7 \ pin-utils-0.1.0 \ pkg-config-0.3.19 \ ppv-lite86-0.2.10 \ precomputed-hash-0.1.1 \ proc-macro-crate-1.0.0 \ proc-macro-error-1.0.4 \ proc-macro-error-attr-1.0.4 \ proc-macro-hack-0.5.19 \ proc-macro-nested-0.1.6 \ proc-macro2-1.0.28 \ prost-0.7.0 \ prost-build-0.7.0 \ prost-derive-0.7.0 \ prost-types-0.7.0 \ pulldown-cmark-0.8.0 \ pyo3-0.13.2 \ pyo3-macros-0.13.2 \ pyo3-macros-backend-0.13.2 \ quote-1.0.9 \ radium-0.5.3 \ rand-0.7.3 \ rand-0.8.4 \ rand_chacha-0.2.2 \ rand_chacha-0.3.1 \ rand_core-0.5.1 \ rand_core-0.6.3 \ rand_hc-0.2.0 \ rand_hc-0.3.1 \ rand_pcg-0.2.1 \ redox_syscall-0.2.9 \ redox_users-0.4.0 \ regex-1.5.4 \ regex-syntax-0.6.25 \ remove_dir_all-0.5.3 \ reqwest-0.11.4 \ ring-0.16.20 \ rusqlite-0.25.3 \ rustc-hash-1.1.0 \ rustc_version-0.3.3 \ rustls-0.19.1 \ rustls-native-certs-0.5.0 \ ryu-1.0.5 \ schannel-0.1.19 \ scopeguard-1.1.0 \ sct-0.6.1 \ security-framework-2.3.1 \ security-framework-sys-2.3.0 \ selectors-0.22.0 \ semver-0.11.0 \ semver-parser-0.10.2 \ serde-1.0.127 \ serde-aux-2.2.0 \ serde_derive-1.0.127 \ serde_json-1.0.66 \ serde_repr-0.1.7 \ serde_tuple-0.5.0 \ serde_tuple_macros-0.5.0 \ serde_urlencoded-0.7.0 \ servo_arc-0.1.1 \ sha1-0.6.0 \ siphasher-0.3.6 \ slab-0.4.3 \ slog-2.7.0 \ slog-async-2.7.0 \ slog-envlogger-2.2.0 \ slog-scope-4.4.0 \ slog-stdlog-4.1.0 \ slog-term-2.6.0 \ smallvec-1.6.1 \ socket2-0.4.1 \ spin-0.5.2 \ stable_deref_trait-1.2.0 \ static_assertions-1.1.0 \ string_cache-0.8.1 \ string_cache_codegen-0.5.1 \ strum-0.21.0 \ strum_macros-0.21.1 \ subtle-2.4.1 \ syn-1.0.74 \ take_mut-0.2.2 \ tap-1.0.1 \ tempfile-3.2.0 \ tendril-0.4.2 \ term-0.6.1 \ termcolor-1.1.2 \ thin-slice-0.1.1 \ thiserror-1.0.26 \ thiserror-impl-1.0.26 \ thread_local-1.1.3 \ time-0.1.44 \ tinystr-0.3.4 \ tinyvec-1.3.1 \ tinyvec_macros-0.1.0 \ tokio-1.9.0 \ tokio-macros-1.3.0 \ tokio-native-tls-0.3.0 \ tokio-rustls-0.22.0 \ tokio-socks-0.5.1 \ tokio-util-0.6.7 \ toml-0.5.8 \ tower-service-0.3.1 \ tracing-0.1.26 \ tracing-core-0.1.18 \ try-lock-0.2.3 \ type-map-0.4.0 \ typenum-1.13.0 \ ucd-trie-0.1.3 \ unic-char-property-0.9.0 \ unic-char-range-0.9.0 \ unic-common-0.9.0 \ unic-langid-0.9.0 \ unic-langid-impl-0.9.0 \ unic-langid-macros-0.9.0 \ unic-langid-macros-impl-0.9.0 \ unic-ucd-category-0.9.0 \ unic-ucd-version-0.9.0 \ unicase-2.6.0 \ unicode-bidi-0.3.5 \ unicode-normalization-0.1.19 \ unicode-segmentation-1.8.0 \ unicode-width-0.1.8 \ unicode-xid-0.2.2 \ unindent-0.1.7 \ untrusted-0.7.1 \ url-2.2.2 \ utf-8-0.7.6 \ utf8-decode-1.0.1 \ utime-0.3.1 \ vcpkg-0.2.15 \ version_check-0.9.3 \ want-0.3.0 \ wasi-0.9.0+wasi-snapshot-preview1 \ wasi-0.10.0+wasi-snapshot-preview1 \ wasm-bindgen-0.2.75 \ wasm-bindgen-backend-0.2.75 \ wasm-bindgen-futures-0.4.25 \ wasm-bindgen-macro-0.2.75 \ wasm-bindgen-macro-support-0.2.75 \ wasm-bindgen-shared-0.2.75 \ web-sys-0.3.52 \ webpki-0.21.4 \ webpki-roots-0.21.1 \ which-4.2.2 \ winapi-0.3.9 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-util-0.1.5 \ winapi-x86_64-pc-windows-gnu-0.4.0 \ winreg-0.7.0 \ wyz-0.2.0 \ xml5ever-0.16.1 \ zip-0.5.13 \ reqwest@git+https://github.com/ankitects/reqwest.git?rev=7591444614de02b658ddab125efba7b2bb4e2335\#7591444614de02b658ddab125efba7b2bb4e2335 \ hyper-timeout@git+https://github.com/ankitects/hyper-timeout.git?rev=0cb6f7d14c62819e37cd221736f8b0555e823712\#0cb6f7d14c62819e37cd221736f8b0555e823712 \ linkcheck@git+https://github.com/ankitects/linkcheck.git?rev=2f20798ce521cc594d510d4e417e76d5eac04d4b\#2f20798ce521cc594d510d4e417e76d5eac04d4b \ tokio-io-timeout@git+https://github.com/ankitects/tokio-io-timeout.git?rev=1ee0892217e9a76bba4bb369ec5fab8854935a3c\#1ee0892217e9a76bba4bb369ec5fab8854935a3c \ pct-str@git+https://github.com/timothee-haudebourg/pct-str.git?rev=4adccd8d4a222ab2672350a102f06ae832a0572d\#4adccd8d4a222ab2672350a102f06ae832a0572d CARGO_CARGOTOML= ${WRKSRC}/pylib/rsbridge/Cargo.toml CARGO_BUILD= no CARGO_INSTALL= no # BAZEL=1 is required otherwise ${WRKSRC}/rslib/build/main.rs produces a dummy # buildinfo.txt that doesn't contain the actual build hash. CARGO_ENV= BAZEL=1 \ BUILDINFO=${_MY_LOCALREPO}/rust_output/buildinfo.txt \ PYO3_PYTHON=${PYTHON_CMD} \ PROTO_TOP=${WRKSRC}/proto/.top_level \ PROTOC=${LOCALBASE}/bin/protoc \ BACKEND_PROTO=${WRKSRC}/rslib/backend.proto \ RSLIB_FTL_ROOT=${_MY_LOCALREPO}/ftlrslib/l10n.toml \ EXTRA_FTL_ROOT=${_MY_LOCALREPO}/ftlextra/l10n.toml OPTIONS_DEFAULT= MPV OPTIONS_GROUP= PLAYER OPTIONS_GROUP_PLAYER= MPLAYER MPV OPTIONS_SUB= yes MPV_DESC= mpv media player support MPLAYER_RUN_DEPENDS= mplayer:multimedia/mplayer MPV_RUN_DEPENDS= mpv:multimedia/mpv # Should contain the most recent commit that reflects ${DISTVERSION} and must # be exactly 8 digits otherwise the check for newer versions won't work as # expected. _MY_BUILDHASH= dc80804a # Path of the local bazel repositories _MY_LOCALREPO= ${WRKSRC}/local_repos # Path of cache that is used by www/yarn _MY_YARNCACHE= ${WRKDIR}/.yarn post-extract: # Create a configuration file for bazel @${ECHO_CMD} "startup --batch" > ${WRKSRC}/user.bazelrc # Create local repositories which are used by bazel @${MKDIR} ${_MY_LOCALREPO} \ ${_MY_LOCALREPO}/local_esbuild/bin \ ${_MY_LOCALREPO}/local_node/node/bin \ ${_MY_LOCALREPO}/local_node/node/lib \ ${_MY_LOCALREPO}/local_node/yarn/bin \ ${_MY_LOCALREPO}/protoc_bin_freebsd/bin \ ${_MY_LOCALREPO}/pyqt5 \ ${_MY_LOCALREPO}/rust_output/librsbridge \ ${_MY_LOCALREPO}/rust_output/strings_json # Create empty WORKSPACE files in the top directory of each local # repository @${TOUCH} ${_MY_LOCALREPO}/local_esbuild/WORKSPACE \ ${_MY_LOCALREPO}/local_node/WORKSPACE \ ${_MY_LOCALREPO}/protoc_bin_freebsd/WORKSPACE \ ${_MY_LOCALREPO}/pyqt5/WORKSPACE \ ${_MY_LOCALREPO}/rust_output/WORKSPACE # Copy the bazel rules for NodeJS and esbuild to the custom local repository # as they need some patching @${CP} -r ${WRKSRC_esbuildtc} ${_MY_LOCALREPO}/esbuild_toolchain @${CP} -r ${WRKSRC_bzlrnodejs} ${_MY_LOCALREPO}/rules_nodejs # Link the remaining bazel rules into the custom local repository as # they don't need to be patched .for _dir in bzlskylib bzlrcc bzlrjava bzlrpip bzlrproto bzlrpython bzlrrust bzlrsass ftlextra ftlrslib @${RLN} ${WRKSRC_${_dir}} ${_MY_LOCALREPO}/${_dir:S/bzlr/rules_/} .endfor # Copy custom BUILD.bazel files to the local repositories @${CP} ${FILESDIR}/bazel/BUILD.bazel-local_esbuild \ ${_MY_LOCALREPO}/local_esbuild/BUILD.bazel @${CP} ${FILESDIR}/bazel/BUILD.bazel-local_node \ ${_MY_LOCALREPO}/local_node/BUILD.bazel @${CP} ${FILESDIR}/bazel/BUILD.bazel-protoc_bin_freebsd \ ${_MY_LOCALREPO}/protoc_bin_freebsd/BUILD.bazel @${CP} ${FILESDIR}/bazel/BUILD.bazel-pyqt5 \ ${_MY_LOCALREPO}/pyqt5/BUILD.bazel @${CP} ${FILESDIR}/bazel/BUILD.bazel-rust_output-librsbridge \ ${_MY_LOCALREPO}/rust_output/librsbridge/BUILD.bazel @${CP} ${FILESDIR}/bazel/BUILD.bazel-rust_output-strings_json \ ${_MY_LOCALREPO}/rust_output/strings_json/BUILD.bazel @${CP} ${FILESDIR}/bazel/BUILD.bazel-i18n ${WRKSRC_ftlrslib}/BUILD.bazel @${CP} ${FILESDIR}/bazel/BUILD.bazel-i18n ${WRKSRC_ftlextra}/BUILD.bazel # Move some files out of the way as they will be replaced by custom copies. @${MV} ${WRKSRC}/repos.bzl ${WRKSRC}/repos.bzl.dist @${MV} ${WRKSRC}/pip/pyqt5/defs.bzl ${WRKSRC}/pip/pyqt5/defs.bzl.dist @${MV} ${WRKSRC}/pylib/rsbridge/BUILD.bazel ${WRKSRC}/pylib/rsbridge/BUILD.bazel.dist @${MV} ${WRKSRC}/rslib/i18n/BUILD.bazel ${WRKSRC}/rslib/i18n/BUILD.bazel.dist # Copy the replacement files @${CP} ${FILESDIR}/bazel/repos.bzl ${WRKSRC}/ @${CP} ${FILESDIR}/bazel/pyqt5.bzl ${WRKSRC}/pip/pyqt5/defs.bzl @${CP} ${FILESDIR}/bazel/BUILD.bazel-pylib-rsbridge \ ${WRKSRC}/pylib/rsbridge/BUILD.bazel @${CP} ${FILESDIR}/bazel/BUILD.bazel-rslib-i18n \ ${WRKSRC}/rslib/i18n/BUILD.bazel post-patch: @${REINPLACE_CMD} -e 's|%%LOCALBASE%%|${LOCALBASE}|' \ ${_MY_LOCALREPO}/rules_nodejs/internal/node/node_patches.js @${REINPLACE_CMD} -e 's|\@PREFIX\@|${PREFIX}|' \ ${WRKSRC}/qt/tools/runanki.system.in @${REINPLACE_CMD} -e 's|%%_MY_BUILDHASH%%|${_MY_BUILDHASH}|' \ ${WRKSRC}/scripts/status.sh @${REINPLACE_CMD} -e 's|%%_MY_LOCALREPO%%|${_MY_LOCALREPO}|g' \ ${WRKSRC}/repos.bzl ${WRKSRC}/proto/protobuf.bzl \ ${_MY_LOCALREPO}/esbuild_toolchain/esbuild_repo.bzl @${REINPLACE_CMD} -e 's|%%_MY_YARNCACHE%%|${_MY_YARNCACHE}|' \ ${_MY_LOCALREPO}/rules_nodejs/internal/npm_install/npm_install.bzl pre-configure: # Link the binaries of Node, Protobuf and Yarn into the local bazel # repositories to provide them during build. ${LN} -s ${LOCALBASE}/bin/protoc-gen-mypy ${WRKSRC}/pylib/tools/protoc-gen-mypy ${LN} -s ${LOCALBASE}/bin/esbuild ${_MY_LOCALREPO}/local_esbuild/bin/esbuild ${LN} -s ${LOCALBASE}/bin/node ${_MY_LOCALREPO}/local_node/node/bin/node ${LN} -s ${LOCALBASE}/bin/yarn.js ${_MY_LOCALREPO}/local_node/yarn/bin/yarn.js ${LN} -s ${LOCALBASE}/bin/protoc ${_MY_LOCALREPO}/protoc_bin_freebsd/bin/protoc # Overview of the build process # # Steps 1 and 2 are built separately from the bazel build process. # # 1. rslib (Rust library, implictly built by step 2) # `-> produces ${_MY_LOCALREPO}/rust_output/strings_json/strings.json # 2. pylib/rsbridge (Rust/Python bridge) # `-> produces ${_MY_LOCALREPO}/rust_output/librsbridge/librsbridge.so # 3. The remaining components (Python, Qt5 and JS) are built by bazel pre-build: # Generate buildinfo.txt which is used via BUILDINFO in ${CARGO_ENV} during # compilation. ${ECHO_CMD} -e "STABLE_VERSION ${DISTVERSION}\nSTABLE_BUILDHASH ${_MY_BUILDHASH}" >> ${_MY_LOCALREPO}/rust_output/buildinfo.txt ${CARGO_CARGO_RUN} build \ --manifest-path ${CARGO_CARGOTOML} \ --verbose \ ${CARGO_BUILD_ARGS} # These files are required for the remaining build process via bazel so copy # them the local repository. ${CP} `${FIND} ${CARGO_TARGET_DIR} -name "librsbridge.so"` ${_MY_LOCALREPO}/rust_output/librsbridge/ ${CP} `${FIND} ${CARGO_TARGET_DIR} -name "strings.json"` ${_MY_LOCALREPO}/rust_output/strings_json/ do-build: # Limit bazel jobs to 1 due random build failures while compiling TS files # via "tsc". cd ${WRKSRC} && \ bazel --output_user_root="${WRKDIR}/.bazel" build \ --action_env=PYTHON_SITE_PACKAGES="${PYTHON_SITELIBDIR}" \ --action_env=PYTHON_SYS_EXECUTABLE="${PYTHON_CMD}" \ --compilation_mode opt \ --jobs 1 \ --subcommands \ dist post-build: ${TAR} -xf `${FIND} ${WRKDIR}/.bazel -name "dist.tar"` -C ${WRKSRC} cd ${WRKSRC}/bazel-dist && \ ${UNZIP_NATIVE_CMD} anki-${DISTVERSION}-*.whl && \ ${UNZIP_NATIVE_CMD} aqt-${DISTVERSION}-*.whl # Compile Anki's Python libary (pylib) and Qt5 library (aqt) to prepare # them for installation ${PYTHON_CMD} -m compileall ${WRKSRC}/bazel-dist/anki ${PYTHON_CMD} -O -m compileall ${WRKSRC}/bazel-dist/anki ${PYTHON_CMD} -m compileall ${WRKSRC}/bazel-dist/aqt ${PYTHON_CMD} -O -m compileall ${WRKSRC}/bazel-dist/aqt do-install: ${MKDIR} ${STAGEDIR}${DATADIR}/anki \ ${STAGEDIR}${DATADIR}/aqt \ ${STAGEDIR}${PREFIX}/share/pixmaps \ ${STAGEDIR}${PREFIX}/share/applications cd ${WRKSRC}/bazel-dist/ \ && ${COPYTREE_SHARE} anki ${STAGEDIR}${DATADIR} "! -name .gitignore" \ && ${COPYTREE_SHARE} aqt ${STAGEDIR}${DATADIR} "! -name .gitignore" cd ${WRKSRC}/qt/linux \ && ${INSTALL_DATA} anki.xpm anki.png ${STAGEDIR}${PREFIX}/share/pixmaps \ && ${INSTALL_DATA} anki.desktop ${STAGEDIR}${PREFIX}/share/applications \ && ${INSTALL_MAN} anki.1 ${STAGEDIR}${MANPREFIX}/man/man1 cd ${WRKSRC}/qt/tools \ && ${INSTALL_SCRIPT} runanki.system.in ${STAGEDIR}${PREFIX}/bin/anki ${STRIP_CMD} ${STAGEDIR}${DATADIR}/anki/_backend/rsbridge.so # Helper target to make the generation of the yarn cache easier make-yarn-cache: # Run "make extract" before executing this target @${RM} -r ${_MY_YARNCACHE} @cd ${WRKSRC}/ts \ && ${LOCALBASE}/bin/yarn --cache-folder ${_MY_YARNCACHE} install @cd ${WRKSRC_bzlrnodejs}/packages/labs/grpc_web/ \ && ${LOCALBASE}/bin/yarn --cache-folder ${_MY_YARNCACHE} install @cd ${WRKSRC_bzlrsass}/sass \ && ${LOCALBASE}/bin/yarn --cache-folder ${_MY_YARNCACHE} install @cd ${WRKDIR} \ && ${TAR} -czf ${PORTNAME}-yarn-cache-${DISTVERSION}${EXTRACT_SUFX} .yarn \ && ${ECHO_CMD} "Please upload the file ${WRKDIR}/${PORTNAME}-yarn-cache-${DISTVERSION}${EXTRACT_SUFX}" .include diff --git a/games/dose-response/Makefile b/games/dose-response/Makefile index a8fd520a1d53..f0c2152e556f 100644 --- a/games/dose-response/Makefile +++ b/games/dose-response/Makefile @@ -1,226 +1,226 @@ PORTNAME= dose-response DISTVERSIONPREFIX= v DISTVERSION= 1.0.0 -PORTREVISION= 26 +PORTREVISION= 27 CATEGORIES= games MAINTAINER= greg@unrelenting.technology COMMENT= Open-world roguelike game where you play an addict LICENSE= GPLv3+ LICENSE_FILE= ${WRKSRC}/COPYING.txt USES= cargo gnome sdl USE_SDL= sdl2 USE_GITHUB= yes GH_ACCOUNT= tryjumping GH_TAGNAME= 179c326 CARGO_FEATURES+= prod sdl2/use-pkgconfig CARGO_CRATES= adler32-1.0.3 \ aho-corasick-0.7.6 \ andrew-0.2.1 \ android_glue-0.2.3 \ ansi_term-0.11.0 \ approx-0.3.0 \ arrayvec-0.4.7 \ ascii-0.9.1 \ atty-0.2.11 \ backtrace-0.3.11 \ backtrace-sys-0.1.28 \ bincode-1.0.1 \ bitflags-1.0.4 \ block-0.1.6 \ byteorder-1.2.7 \ cc-1.0.25 \ cfg-if-0.1.6 \ cgl-0.2.3 \ chrono-0.4.9 \ clap-2.32.0 \ cloudabi-0.0.3 \ cmake-0.1.35 \ cocoa-0.18.4 \ color_quant-1.0.1 \ combine-3.8.1 \ core-foundation-0.6.3 \ core-foundation-sys-0.6.2 \ core-graphics-0.17.3 \ crc32fast-1.2.0 \ crossbeam-deque-0.2.0 \ crossbeam-epoch-0.3.1 \ crossbeam-utils-0.2.2 \ deflate-0.7.19 \ derivative-1.0.2 \ dlib-0.4.1 \ downcast-rs-1.0.3 \ either-1.5.0 \ encoding_rs-0.8.20 \ error-chain-0.10.0 \ filetime-0.2.7 \ flate2-1.0.12 \ foreign-types-0.3.2 \ foreign-types-shared-0.1.1 \ fuchsia-zircon-0.3.3 \ fuchsia-zircon-sys-0.3.3 \ gif-0.10.1 \ gl-0.10.0 \ gl_generator-0.9.0 \ gl_generator-0.10.0 \ gl_generator-0.11.0 \ gleam-0.6.7 \ glutin-0.21.0 \ glutin_egl_sys-0.1.3 \ glutin_emscripten_sys-0.1.0 \ glutin_gles2_sys-0.1.3 \ glutin_glx_sys-0.1.5 \ glutin_wgl_sys-0.1.3 \ image-0.20.1 \ inflate-0.4.3 \ itoa-0.4.3 \ jpeg-decoder-0.1.15 \ khronos_api-2.2.0 \ khronos_api-3.1.0 \ lazy_static-1.3.0 \ libc-0.2.65 \ libloading-0.5.0 \ line_drawing-0.7.0 \ linked-hash-map-0.5.2 \ lock_api-0.1.5 \ lock_api-0.3.1 \ log-0.3.9 \ log-0.4.6 \ log-panics-2.0.0 \ lzw-0.10.0 \ malloc_buf-0.0.6 \ memchr-2.2.1 \ memmap-0.7.0 \ memoffset-0.2.1 \ metadeps-1.1.2 \ miniz_oxide-0.3.3 \ nix-0.11.0 \ nix-0.13.0 \ nodrop-0.1.13 \ num-0.1.42 \ num-derive-0.2.3 \ num-integer-0.1.39 \ num-iter-0.1.37 \ num-rational-0.2.1 \ num-traits-0.2.6 \ num_cpus-1.8.0 \ objc-0.2.6 \ oorandom-11.0.1 \ ordered-float-1.0.1 \ osmesa-sys-0.1.2 \ owning_ref-0.4.0 \ parking_lot-0.7.1 \ parking_lot-0.9.0 \ parking_lot_core-0.4.0 \ parking_lot_core-0.6.2 \ percent-encoding-2.1.0 \ pkg-config-0.3.14 \ png-0.12.0 \ proc-macro2-0.4.24 \ quote-0.6.10 \ rand-0.6.0 \ rand_chacha-0.1.0 \ rand_core-0.3.0 \ rand_hc-0.1.0 \ rand_isaac-0.1.0 \ rand_pcg-0.1.1 \ rand_xorshift-0.1.0 \ raw-window-handle-0.3.1 \ rayon-1.0.3 \ rayon-core-1.4.1 \ redox_syscall-0.1.42 \ redox_termios-0.1.1 \ regex-1.3.1 \ regex-syntax-0.6.12 \ rustc-demangle-0.1.13 \ rustc_version-0.2.3 \ rusttype-0.7.3 \ ryu-0.2.7 \ same-file-1.0.4 \ scoped_threadpool-0.1.9 \ scopeguard-0.3.3 \ scopeguard-1.0.0 \ sdl2-0.32.2 \ sdl2-sys-0.32.6 \ semver-0.9.0 \ semver-parser-0.7.0 \ serde-1.0.80 \ serde_derive-1.0.80 \ serde_json-1.0.33 \ shared_library-0.1.9 \ simplelog-0.5.3 \ smallvec-0.6.6 \ smithay-client-toolkit-0.4.5 \ stable_deref_trait-1.1.1 \ stb_truetype-0.2.4 \ strsim-0.7.0 \ syn-0.15.21 \ tar-0.4.26 \ termion-1.5.1 \ textwrap-0.10.0 \ thread_local-0.3.6 \ tiff-0.2.1 \ time-0.1.40 \ toml-0.2.1 \ toml-0.4.10 \ toml_edit-0.1.5 \ unicode-width-0.1.5 \ unicode-xid-0.1.0 \ unidiff-0.3.1 \ unreachable-1.0.0 \ vec_map-0.8.1 \ void-1.0.2 \ walkdir-2.2.7 \ wayland-client-0.21.4 \ wayland-commons-0.21.4 \ wayland-protocols-0.21.4 \ wayland-scanner-0.21.4 \ wayland-sys-0.21.4 \ winapi-0.3.6 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-util-0.1.1 \ winapi-x86_64-pc-windows-gnu-0.4.0 \ winit-0.19.4 \ winres-0.1.8 \ x11-dl-2.18.3 \ xattr-0.2.2 \ xdg-2.2.0 \ xml-rs-0.7.0 \ xml-rs-0.8.0 \ zmq-0.8.2 \ zmq-sys-0.8.2 PLIST_FILES= bin/${PORTNAME} .for size in 16 32 48 64 256 PLIST_FILES+= share/icons/hicolor/${size}x${size}/apps/${PORTNAME}.png .endfor PORTDOCS= CHANGELOG.md DEVELOPER-NOTES.md README.md DESKTOP_ENTRIES= "Dose Response" \ "${COMMENT}" \ "${PORTNAME}" \ "${PORTNAME}" \ "Games;" \ false OPTIONS_DEFINE= DOCS post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/${PORTNAME} .for size in 16 32 48 64 256 @${MKDIR} ${STAGEDIR}${LOCALBASE}/share/icons/hicolor/${size}x${size}/apps ${INSTALL_DATA} ${WRKSRC}/assets/icon_${size}x${size}.png \ ${STAGEDIR}${LOCALBASE}/share/icons/hicolor/${size}x${size}/apps/${PORTNAME}.png .endfor post-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} .for f in ${PORTDOCS} ${INSTALL_DATA} ${WRKSRC}/${f} ${STAGEDIR}${DOCSDIR} .endfor .include diff --git a/games/genact/Makefile b/games/genact/Makefile index 916e4b055168..5cb3a11bb681 100644 --- a/games/genact/Makefile +++ b/games/genact/Makefile @@ -1,168 +1,168 @@ PORTNAME= genact DISTVERSIONPREFIX= v DISTVERSION= 0.11.0 -PORTREVISION= 12 +PORTREVISION= 13 CATEGORIES= games MAINTAINER= 0mp@FreeBSD.org COMMENT= Nonsense activity generator LICENSE= APACHE20 BSD3CLAUSE ISCL MIT UNLICENSE LICENSE_COMB= multi LICENSE_FILE_MIT= ${WRKSRC}/LICENSE USES= cargo USE_GITHUB= yes GH_ACCOUNT= svenstaro PLIST_FILES= bin/genact CARGO_CRATES= aho-corasick-0.7.15 \ ansi_term-0.11.0 \ anyhow-1.0.38 \ async-attributes-1.1.2 \ async-channel-1.6.1 \ async-executor-1.4.0 \ async-global-executor-2.0.2 \ async-io-1.3.1 \ async-lock-2.3.0 \ async-mutex-1.4.0 \ async-std-1.9.0 \ async-task-4.0.3 \ async-trait-0.1.48 \ atomic-waker-1.0.0 \ atty-0.2.14 \ autocfg-1.0.1 \ base-x-0.2.8 \ bitflags-1.2.1 \ blocking-1.0.2 \ bumpalo-3.6.1 \ cache-padded-1.1.1 \ cc-1.0.67 \ cfg-if-0.1.10 \ cfg-if-1.0.0 \ chrono-0.4.19 \ clap-2.33.3 \ concurrent-queue-1.2.2 \ console_error_panic_hook-0.1.6 \ const_fn-0.4.5 \ crossbeam-utils-0.8.3 \ ctor-0.1.19 \ ctrlc-3.1.8 \ discard-1.0.4 \ event-listener-2.5.1 \ fake-2.4.0 \ fastrand-1.4.0 \ form_urlencoded-1.0.1 \ futures-0.3.13 \ futures-channel-0.3.13 \ futures-core-0.3.13 \ futures-executor-0.3.13 \ futures-io-0.3.13 \ futures-lite-1.11.3 \ futures-macro-0.3.13 \ futures-sink-0.3.13 \ futures-task-0.3.13 \ futures-util-0.3.13 \ getrandom-0.2.2 \ gloo-timers-0.2.1 \ heck-0.3.2 \ hermit-abi-0.1.18 \ humansize-1.1.0 \ humantime-2.1.0 \ idna-0.2.2 \ instant-0.1.9 \ itoa-0.4.7 \ js-sys-0.3.49 \ kernel32-sys-0.2.2 \ kv-log-macro-1.0.7 \ lazy_static-1.4.0 \ libc-0.2.90 \ libm-0.2.1 \ log-0.4.14 \ matches-0.1.8 \ memchr-2.3.4 \ nb-connect-1.0.3 \ nix-0.20.0 \ num-integer-0.1.44 \ num-traits-0.2.14 \ num_cpus-1.13.0 \ once_cell-1.7.2 \ parking-2.0.0 \ percent-encoding-2.1.0 \ pin-project-lite-0.2.6 \ pin-utils-0.1.0 \ polling-2.0.2 \ ppv-lite86-0.2.10 \ proc-macro-error-1.0.4 \ proc-macro-error-attr-1.0.4 \ proc-macro-hack-0.5.19 \ proc-macro-nested-0.1.7 \ proc-macro2-1.0.24 \ progress_string-0.1.1 \ quote-1.0.9 \ rand-0.8.3 \ rand_chacha-0.3.0 \ rand_core-0.6.2 \ rand_distr-0.4.0 \ rand_hc-0.3.0 \ regex-1.4.5 \ regex-syntax-0.6.23 \ rustc_version-0.2.3 \ ryu-1.0.5 \ semver-0.9.0 \ semver-parser-0.7.0 \ serde-1.0.124 \ serde_derive-1.0.124 \ serde_json-1.0.64 \ sha1-0.6.0 \ slab-0.4.2 \ socket2-0.3.19 \ standback-0.2.15 \ stdweb-0.4.20 \ stdweb-derive-0.5.3 \ stdweb-internal-macros-0.2.9 \ stdweb-internal-runtime-0.1.5 \ strsim-0.8.0 \ structopt-0.3.21 \ structopt-derive-0.4.14 \ syn-1.0.64 \ term_size-1.0.0-beta1 \ textwrap-0.11.0 \ time-0.1.43 \ time-0.2.26 \ time-macros-0.1.1 \ time-macros-impl-0.1.1 \ tinyvec-1.1.1 \ tinyvec_macros-0.1.0 \ unicode-bidi-0.3.4 \ unicode-normalization-0.1.17 \ unicode-segmentation-1.7.1 \ unicode-width-0.1.8 \ unicode-xid-0.2.1 \ url-2.2.1 \ value-bag-1.0.0-alpha.6 \ vec-arena-1.0.0 \ vec_map-0.8.2 \ version_check-0.9.3 \ waker-fn-1.1.0 \ wasi-0.10.2+wasi-snapshot-preview1 \ wasm-bindgen-0.2.72 \ wasm-bindgen-backend-0.2.72 \ wasm-bindgen-futures-0.4.22 \ wasm-bindgen-macro-0.2.72 \ wasm-bindgen-macro-support-0.2.72 \ wasm-bindgen-shared-0.2.72 \ web-sys-0.3.49 \ wepoll-sys-3.0.1 \ winapi-0.2.8 \ winapi-0.3.9 \ winapi-build-0.1.1 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-x86_64-pc-windows-gnu-0.4.0 \ yansi-0.5.0 post-install: @${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/genact .include diff --git a/games/jaggedalliance2/Makefile b/games/jaggedalliance2/Makefile index 2547510fed91..7fb8b7e056ce 100644 --- a/games/jaggedalliance2/Makefile +++ b/games/jaggedalliance2/Makefile @@ -1,162 +1,162 @@ PORTNAME= ja2 DISTVERSIONPREFIX= v DISTVERSION= 0.19.1 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= games MAINTAINER= timp87@gmail.com COMMENT= Port of "Jagged Alliance 2" using SDL LICENSE= PD SFI-SCLA LICENSE_COMB= multi LICENSE_NAME_SFI-SCLA= Strategy First Inc. Source Code License Agreement LICENSE_FILE_SFI-SCLA= ${WRKSRC}/SFI\ Source\ Code\ license\ agreement.txt LICENSE_PERMS_SFI-SCLA= dist-mirror no-dist-sell pkg-mirror no-pkg-sell \ auto-accept # Ignore this if you feel adventurous ONLY_FOR_ARCHS= aarch64 amd64 arm armv6 armv7 i386 powerpc64le ONLY_FOR_ARCHS_REASON= requires little endian environment BUILD_DEPENDS= string_theory>=3.1:devel/string_theory \ rapidjson>=1.1.0:devel/rapidjson \ sol2>=3.2.2:devel/sol2 \ miniaudio>=0.10.36,1<0.11,1:audio/miniaudio LIB_DEPENDS= libfltk.so:x11-toolkits/fltk USES= cargo cmake compiler:c++17-lang pkgconfig sdl xorg gl lua:53 USE_GITHUB= yes GH_ACCOUNT= ja2-stracciatella GH_PROJECT= ja2-stracciatella USE_SDL= sdl2 USE_GL= gl USE_XORG= ice sm x11 xext CMAKE_ARGS= -DEXTRA_DATA_DIR:PATH="${DATADIR}" -DMINIAUDIO_INCLUDE_DIR="${PREFIX}/include/miniaudio" CMAKE_OFF= LOCAL_STRING_THEORY_LIB WITH_UNITTESTS LOCAL_RAPIDJSON_LIB LOCAL_LUA_LIB LOCAL_SOL_LIB LOCAL_MINIAUDIO_LIB CARGO_CRATES= ahash-0.7.6 \ aho-corasick-0.7.18 \ ansi_term-0.11.0 \ atty-0.2.14 \ autocfg-1.1.0 \ bitflags-1.3.2 \ block-buffer-0.9.0 \ byteorder-1.4.3 \ caseless-0.2.1 \ cbindgen-0.20.0 \ cfg-if-1.0.0 \ chrono-0.4.19 \ clap-2.33.4 \ crossbeam-channel-0.5.4 \ crossbeam-deque-0.8.1 \ crossbeam-epoch-0.9.8 \ crossbeam-utils-0.8.8 \ deunicode-0.4.3 \ digest-0.9.0 \ dirs-4.0.0 \ dirs-sys-0.3.7 \ dunce-1.0.2 \ either-1.6.1 \ fastrand-1.7.0 \ generic-array-0.14.5 \ getopts-0.2.21 \ getrandom-0.2.6 \ hashbrown-0.11.2 \ heck-0.3.3 \ hermit-abi-0.1.19 \ hex-0.4.3 \ indexmap-1.8.1 \ instant-0.1.12 \ itoa-1.0.1 \ json_comments-0.2.1 \ lazy_static-1.4.0 \ libc-0.2.121 \ linked-hash-map-0.5.4 \ log-0.4.16 \ lru-0.7.5 \ md-5-0.9.1 \ memchr-2.4.1 \ memoffset-0.6.5 \ num-integer-0.1.44 \ num-traits-0.2.14 \ num_cpus-1.13.1 \ once_cell-1.10.0 \ opaque-debug-0.3.0 \ proc-macro2-1.0.37 \ quote-1.0.17 \ rayon-1.5.1 \ rayon-core-1.9.1 \ redox_syscall-0.2.13 \ redox_users-0.4.3 \ regex-1.5.5 \ regex-syntax-0.6.25 \ remove_dir_all-0.5.3 \ remove_dir_all-0.7.0 \ ryu-1.0.9 \ scopeguard-1.1.0 \ serde-1.0.136 \ serde_derive-1.0.136 \ serde_json-1.0.79 \ serde_yaml-0.8.23 \ simplelog-0.10.2 \ slug-0.1.4 \ strsim-0.8.0 \ syn-1.0.91 \ tempfile-3.3.0 \ termcolor-1.1.3 \ textwrap-0.11.0 \ thiserror-1.0.30 \ thiserror-impl-1.0.30 \ time-0.1.43 \ tinyvec-1.5.1 \ tinyvec_macros-0.1.0 \ toml-0.5.8 \ typenum-1.15.0 \ unicode-normalization-0.1.19 \ unicode-segmentation-1.9.0 \ unicode-width-0.1.9 \ unicode-xid-0.2.2 \ vec_map-0.8.2 \ version_check-0.9.4 \ wasi-0.10.2+wasi-snapshot-preview1 \ winapi-0.3.9 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-util-0.1.5 \ winapi-x86_64-pc-windows-gnu-0.4.0 \ yaml-rust-0.4.5 CARGO_CARGOLOCK= ${WRKSRC}/rust/Cargo.lock CARGO_CARGOTOML= ${WRKSRC}/rust/Cargo.toml CARGO_BUILD= no CARGO_INSTALL= no CARGO_TEST= no MAKE_ENV= ${CARGO_ENV:NCARGO_TARGET_DIR=*} LDFLAGS+= -Wl,--as-needed post-patch: @${REINPLACE_CMD} -e 's|/some/place/where/the/data/is|${DATADIR}|' \ ${WRKSRC}/rust/stracciatella/src/stracciatella.rs post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/ja2 \ ${STAGEDIR}${PREFIX}/bin/ja2-launcher \ ${STAGEDIR}${PREFIX}/bin/ja2-resource-pack .include # Compilation with clang's broken in 14-CURRENT .if ${OSVERSION} >= 1400000 # See https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=236344 # Copy-pasted gcc-c++11-lib from Mk/Uses/compiler.mk USE_GCC= yes CHOSEN_COMPILER_TYPE= gcc CXXFLAGS+= -nostdinc++ -isystem /usr/include/c++/v1 LDFLAGS+= -L${WRKDIR} _USES_configure+= 200:gcc-libc++-configure gcc-libc++-configure: @${LN} -fs /usr/lib/libc++.so ${WRKDIR}/libstdc++.so .endif .include diff --git a/games/jumpy/Makefile b/games/jumpy/Makefile index 15fdc96aacd1..24b8fb48d35b 100644 --- a/games/jumpy/Makefile +++ b/games/jumpy/Makefile @@ -1,139 +1,140 @@ PORTNAME= jumpy DISTVERSIONPREFIX= v DISTVERSION= 0.4.3 +PORTREVISION= 1 CATEGORIES= games MAINTAINER= jbeich@FreeBSD.org COMMENT= Tactical 2D shooter in fishy pixels style LICENSE= CC-BY-NC-4.0 MIT LICENSE_COMB= multi LICENSE_FILE_MIT= ${WRKSRC}/licenses/LICENSE-MIT LIB_DEPENDS= libasound.so:audio/alsa-lib \ libudev.so:devel/libudev-devd RUN_DEPENDS= ${LOCALBASE}/lib/alsa-lib/libasound_module_pcm_oss.so:audio/alsa-plugins USES= cargo gl localbase:ldflags xorg USE_GITHUB= yes USE_GL= gl USE_XORG= x11 xi GH_ACCOUNT= fishfolks PLIST_FILES= bin/${PORTNAME} PORTDATA= * CARGO_CRATES= adler32-1.2.0 \ ahash-0.4.7 \ ahash-0.7.6 \ async-trait-0.1.52 \ audir-sles-0.1.0 \ audrey-0.3.0 \ autocfg-1.1.0 \ base-x-0.2.8 \ bitflags-1.3.2 \ bumpalo-3.9.1 \ bytemuck-1.7.3 \ byteorder-1.4.3 \ cc-1.0.73 \ cfg-if-1.0.0 \ color_quant-1.1.0 \ core-foundation-0.6.4 \ core-foundation-sys-0.6.2 \ crc32fast-1.3.2 \ dasp_frame-0.11.0 \ dasp_sample-0.11.0 \ deflate-0.8.6 \ discard-1.0.4 \ ff-particles-0.1.2 \ fnv-1.0.7 \ fontdue-0.5.2 \ getrandom-0.2.4 \ gilrs-0.8.2 \ gilrs-core-0.3.2 \ glam-0.14.0 \ hashbrown-0.9.1 \ hashbrown-0.12.0 \ hecs-0.7.6 \ hound-3.4.0 \ image-0.23.14 \ io-kit-sys-0.1.0 \ itoa-1.0.1 \ js-sys-0.3.56 \ lazy_static-1.4.0 \ lewton-0.9.4 \ libc-0.2.118 \ libudev-sys-0.1.4 \ log-0.4.14 \ mach-0.2.3 \ macroquad-0.3.13 \ macroquad-platformer-0.1.2 \ macroquad_macro-0.1.7 \ maybe-uninit-2.0.0 \ memoffset-0.6.5 \ miniquad-0.3.0-alpha.42 \ miniz_oxide-0.3.7 \ ndk-sys-0.2.2 \ nix-0.23.1 \ num-integer-0.1.44 \ num-iter-0.1.42 \ num-rational-0.3.2 \ num-traits-0.2.14 \ ogg-0.7.1 \ once_cell-1.9.0 \ pkg-config-0.3.24 \ png-0.16.8 \ proc-macro2-1.0.36 \ quad-alsa-sys-0.3.2 \ quad-rand-0.2.1 \ quad-snd-0.2.3 \ quote-1.0.15 \ rustc_version-0.2.3 \ rusty-xinput-1.2.0 \ ryu-1.0.9 \ sapp-android-0.1.14 \ sapp-darwin-0.1.6 \ sapp-dummy-0.1.5 \ sapp-ios-0.1.2 \ sapp-linux-0.1.13 \ sapp-wasm-0.1.26 \ sapp-windows-0.2.19 \ semver-0.9.0 \ semver-parser-0.7.0 \ serde-1.0.136 \ serde_derive-1.0.136 \ serde_json-1.0.79 \ sha1-0.6.1 \ sha1_smol-1.0.0 \ smallvec-0.6.14 \ spin-0.9.2 \ stdweb-0.4.20 \ stdweb-derive-0.5.3 \ stdweb-internal-macros-0.2.9 \ stdweb-internal-runtime-0.1.5 \ syn-1.0.86 \ toml-0.5.8 \ ttf-parser-0.12.3 \ unicode-xid-0.2.2 \ uuid-0.8.2 \ vec_map-0.8.2 \ version_check-0.9.4 \ wasi-0.10.2+wasi-snapshot-preview1 \ wasm-bindgen-0.2.79 \ wasm-bindgen-backend-0.2.79 \ wasm-bindgen-macro-0.2.79 \ wasm-bindgen-macro-support-0.2.79 \ wasm-bindgen-shared-0.2.79 \ web-sys-0.3.56 \ winapi-0.3.9 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-x86_64-pc-windows-gnu-0.4.0 \ fishsticks@git+https://github.com/fishfight/fishsticks\#95b45b717e427fb5fa1671f3bdf686d7270ad8a1 post-patch: # Search assets under PREFIX instead of current directory @${REINPLACE_CMD} '/_dir/s,"\.,"${DATADIR},' ${WRKSRC}/src/main.rs post-install: (cd ${WRKSRC} && ${COPYTREE_SHARE} "assets mods" ${STAGEDIR}${DATADIR}) .include diff --git a/games/rpg-cli/Makefile b/games/rpg-cli/Makefile index f69aef4ac2c1..e19e00ae1098 100644 --- a/games/rpg-cli/Makefile +++ b/games/rpg-cli/Makefile @@ -1,94 +1,94 @@ PORTNAME= rpg-cli DISTVERSION= 1.0.1 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= games MAINTAINER= lcook@FreeBSD.org COMMENT= Your filesystem as a dungeon LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= cargo USE_GITHUB= yes GH_ACCOUNT= facundoolano CARGO_CRATES= anyhow-1.0.43 \ atty-0.2.14 \ autocfg-1.0.1 \ bincode-1.3.3 \ bitflags-1.3.2 \ cfg-if-1.0.0 \ clap-3.0.0-beta.4 \ clap_derive-3.0.0-beta.4 \ colored-2.0.0 \ ctor-0.1.20 \ dirs-3.0.2 \ dirs-sys-0.3.6 \ dtoa-0.4.8 \ dunce-1.0.2 \ erased-serde-0.3.16 \ getrandom-0.2.3 \ ghost-0.1.2 \ hashbrown-0.11.2 \ heck-0.3.3 \ hermit-abi-0.1.19 \ indexmap-1.7.0 \ inventory-0.1.10 \ inventory-impl-0.1.10 \ itoa-0.4.7 \ lazy_static-1.4.0 \ libc-0.2.99 \ linked-hash-map-0.5.4 \ once_cell-1.8.0 \ os_str_bytes-3.1.0 \ ppv-lite86-0.2.10 \ proc-macro-error-1.0.4 \ proc-macro-error-attr-1.0.4 \ proc-macro2-1.0.28 \ quote-1.0.9 \ rand-0.8.4 \ rand_chacha-0.3.1 \ rand_core-0.6.3 \ rand_hc-0.3.1 \ redox_syscall-0.2.10 \ redox_users-0.4.0 \ ryu-1.0.5 \ serde-1.0.127 \ serde_derive-1.0.127 \ serde_json-1.0.66 \ serde_yaml-0.8.18 \ strsim-0.10.0 \ strum-0.21.0 \ strum_macros-0.21.1 \ syn-1.0.75 \ termcolor-1.1.2 \ textwrap-0.14.2 \ typetag-0.1.7 \ typetag-impl-0.1.7 \ unicode-segmentation-1.8.0 \ unicode-width-0.1.8 \ unicode-xid-0.2.2 \ vec_map-0.8.2 \ version_check-0.9.3 \ wasi-0.10.2+wasi-snapshot-preview1 \ winapi-0.3.9 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-util-0.1.5 \ winapi-x86_64-pc-windows-gnu-0.4.0 \ yaml-rust-0.4.5 PLIST_FILES= bin/${PORTNAME} PORTDOCS= README.md OPTIONS_DEFINE= DOCS post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/${PORTNAME} post-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/${PORTDOCS} \ ${STAGEDIR}${DOCSDIR} .include diff --git a/games/veloren/Makefile b/games/veloren/Makefile index 4badfde39818..5c1d5d15dcd1 100644 --- a/games/veloren/Makefile +++ b/games/veloren/Makefile @@ -1,776 +1,777 @@ PORTNAME= veloren DISTVERSIONPREFIX= v DISTVERSION= 0.13.0 +PORTREVISION= 1 CATEGORIES= games .if !make(makesum) MASTER_SITES= LOCAL/jbeich .endif MAINTAINER= jbeich@FreeBSD.org COMMENT= Multiplayer voxel RPG written in Rust LICENSE= GPLv3 LICENSE_FILE= ${WRKSRC}/LICENSE ONLY_FOR_ARCHS= aarch64 amd64 # https://gitlab.com/veloren/veloren/-/issues/1006 ONLY_FOR_ARCHS_REASON= unsupported platform by https://github.com/wasmerio/wasmer LIB_DEPENDS= libasound.so:audio/alsa-lib \ libudev.so:devel/libudev-devd \ libshaderc_shared.so:graphics/shaderc RUN_DEPENDS= ${LOCALBASE}/lib/alsa-lib/libasound_module_pcm_oss.so:audio/alsa-plugins \ ${LOCALBASE}/lib/libvulkan.so:graphics/vulkan-loader USES= cargo python:3.4+,build xorg USE_XORG= xcb USE_GITLAB= yes GL_COMMIT= 34ae5b9df73f367fa34350337ebba71711f48b86 CARGO_ENV= VELOREN_USERDATA_STRATEGY=system SHADERC_LIB_DIR="${LOCALBASE}/lib" PLIST_FILES= bin/${PORTNAME}-server-cli \ bin/${PORTNAME}-voxygen \ share/applications/net.veloren.veloren.desktop \ share/pixmaps/net.veloren.veloren.png PORTDATA= * CARGO_CRATES= ab_glyph-0.2.15 \ ab_glyph_rasterizer-0.1.5 \ addr2line-0.17.0 \ adler-1.0.2 \ adler32-1.2.0 \ ahash-0.3.8 \ ahash-0.4.7 \ ahash-0.7.6 \ aho-corasick-0.7.18 \ alsa-0.6.0 \ alsa-sys-0.3.1 \ andrew-0.3.1 \ ansi-parser-0.8.0 \ ansi_term-0.12.1 \ approx-0.3.2 \ approx-0.4.0 \ approx-0.5.1 \ arr_macro-0.1.3 \ arr_macro_impl-0.1.3 \ arrayref-0.3.6 \ arrayvec-0.5.2 \ arrayvec-0.7.2 \ as-slice-0.1.5 \ ash-0.32.1 \ assets_manager-0.8.1 \ async-channel-1.6.1 \ async-trait-0.1.53 \ atom-0.3.6 \ atomic_refcell-0.1.8 \ atomicwrites-0.3.1 \ atty-0.2.14 \ autocfg-1.1.0 \ backtrace-0.3.65 \ base-x-0.2.8 \ base64-0.13.0 \ bincode-1.3.3 \ bindgen-0.56.0 \ bit-set-0.5.2 \ bit-vec-0.6.3 \ bitflags-1.3.2 \ bitvec-0.22.3 \ blake2b_simd-0.5.11 \ block-0.1.6 \ block-buffer-0.10.2 \ bstr-0.2.17 \ bumpalo-3.9.1 \ bytecheck-0.6.7 \ bytecheck_derive-0.6.7 \ bytemuck-1.9.1 \ bytemuck_derive-1.1.0 \ byteorder-1.4.3 \ bytes-1.1.0 \ cache-padded-1.2.0 \ calloop-0.6.5 \ cassowary-0.3.0 \ cast-0.2.7 \ cc-1.0.73 \ cesu8-1.1.0 \ cexpr-0.4.0 \ cfg-if-0.1.10 \ cfg-if-1.0.0 \ cfg_aliases-0.1.1 \ chrono-0.4.19 \ chrono-tz-0.6.1 \ chrono-tz-build-0.0.2 \ chumsky-0.8.0 \ clang-sys-1.3.1 \ clap-2.34.0 \ clap-3.1.10 \ clap_derive-3.1.7 \ clap_lex-0.1.1 \ clipboard-win-3.1.1 \ clipboard-win-4.4.1 \ clipboard_macos-0.1.0 \ clipboard_wayland-0.2.0 \ clipboard_x11-0.3.1 \ cloudabi-0.0.3 \ cmake-0.1.45 \ cocoa-0.24.0 \ cocoa-foundation-0.1.0 \ codespan-reporting-0.11.1 \ color_quant-1.1.0 \ combine-4.6.3 \ concurrent-queue-1.2.2 \ const-random-0.1.13 \ const-random-macro-0.1.13 \ constant_time_eq-0.1.5 \ copy_dir-0.1.2 \ copyless-0.1.5 \ copypasta-0.7.1 \ core-foundation-0.6.4 \ core-foundation-0.7.0 \ core-foundation-0.9.3 \ core-foundation-sys-0.6.2 \ core-foundation-sys-0.7.0 \ core-foundation-sys-0.8.3 \ core-graphics-0.19.2 \ core-graphics-0.22.3 \ core-graphics-types-0.1.1 \ core-video-sys-0.1.4 \ coreaudio-rs-0.10.0 \ coreaudio-sys-0.2.9 \ cpal-0.13.5 \ cpufeatures-0.2.2 \ cranelift-bforest-0.76.0 \ cranelift-codegen-0.76.0 \ cranelift-codegen-meta-0.76.0 \ cranelift-codegen-shared-0.76.0 \ cranelift-entity-0.76.0 \ cranelift-frontend-0.76.0 \ crc32fast-1.3.2 \ criterion-0.3.4 \ criterion-plot-0.4.4 \ crossbeam-0.8.1 \ crossbeam-channel-0.5.4 \ crossbeam-deque-0.7.4 \ crossbeam-deque-0.8.1 \ crossbeam-epoch-0.8.2 \ crossbeam-epoch-0.9.8 \ crossbeam-queue-0.3.5 \ crossbeam-utils-0.7.2 \ crossbeam-utils-0.8.8 \ crossterm-0.17.7 \ crossterm-0.23.2 \ crossterm_winapi-0.6.2 \ crossterm_winapi-0.9.0 \ crunchy-0.2.2 \ crypto-common-0.1.3 \ csv-1.1.6 \ csv-core-0.1.10 \ ct-logs-0.8.0 \ cty-0.2.2 \ d3d12-0.4.1 \ daggy-0.5.0 \ darling-0.10.2 \ darling-0.13.2 \ darling_core-0.10.2 \ darling_core-0.13.2 \ darling_macro-0.10.2 \ darling_macro-0.13.2 \ deflate-1.0.0 \ deunicode-1.3.1 \ digest-0.10.3 \ directories-next-2.0.0 \ dirs-4.0.0 \ dirs-next-2.0.0 \ dirs-sys-0.3.7 \ dirs-sys-next-0.1.2 \ discard-1.0.4 \ dispatch-0.1.4 \ dispatch-0.2.0 \ dlib-0.4.2 \ dlib-0.5.0 \ dot_vox-4.1.0 \ downcast-rs-1.2.0 \ egui-0.12.0 \ egui_winit_platform-0.8.0 \ either-1.6.1 \ emath-0.12.0 \ endian-type-0.1.2 \ enum-iterator-0.7.0 \ enum-iterator-derive-0.7.0 \ enumset-1.0.9 \ enumset_derive-0.5.6 \ env_logger-0.8.4 \ epaint-0.12.0 \ epi-0.12.0 \ errno-0.2.8 \ errno-dragonfly-0.1.2 \ error-code-2.3.1 \ etagere-0.2.7 \ euc-0.5.3 \ euclid-0.22.7 \ event-listener-2.5.2 \ fallible-iterator-0.2.0 \ fallible-streaming-iterator-0.1.9 \ fastrand-1.7.0 \ fd-lock-3.0.5 \ fehler-1.0.0 \ fehler-macros-1.0.0 \ filetime-0.2.15 \ find_folder-0.3.0 \ fixedbitset-0.1.9 \ fixedbitset-0.2.0 \ fixedbitset-0.4.1 \ flate2-1.0.24 \ float-cmp-0.9.0 \ fnv-1.0.7 \ foreign-types-0.3.2 \ foreign-types-shared-0.1.1 \ form_urlencoded-1.0.1 \ fsevent-sys-4.1.0 \ funty-1.2.0 \ futures-0.3.21 \ futures-channel-0.3.21 \ futures-core-0.3.21 \ futures-executor-0.3.21 \ futures-io-0.3.21 \ futures-macro-0.3.21 \ futures-sink-0.3.21 \ futures-task-0.3.21 \ futures-util-0.3.21 \ fxhash-0.2.1 \ generator-0.7.0 \ generic-array-0.12.4 \ generic-array-0.13.3 \ generic-array-0.14.5 \ gethostname-0.2.3 \ getrandom-0.1.16 \ getrandom-0.2.6 \ gilrs-0.8.2 \ gilrs-core-0.3.2 \ gimli-0.25.0 \ gimli-0.26.1 \ git2-0.14.2 \ glam-0.10.2 \ glob-0.3.0 \ glow-0.9.0 \ glyph_brush-0.7.3 \ glyph_brush_draw_cache-0.1.5 \ glyph_brush_layout-0.2.3 \ gpu-alloc-0.4.7 \ gpu-alloc-types-0.2.0 \ gpu-descriptor-0.1.1 \ gpu-descriptor-types-0.1.1 \ guillotiere-0.6.2 \ h2-0.3.13 \ half-1.8.2 \ hash32-0.1.1 \ hashbrown-0.9.1 \ hashbrown-0.11.2 \ hashbrown-0.12.0 \ hashlink-0.6.0 \ heapless-0.5.6 \ heapless-0.6.1 \ heck-0.3.3 \ heck-0.4.0 \ hermit-abi-0.1.19 \ hex-0.3.2 \ hibitset-0.6.3 \ http-0.2.6 \ http-body-0.4.4 \ httparse-1.6.0 \ httpdate-1.0.2 \ humantime-2.1.0 \ hyper-0.14.18 \ hyper-rustls-0.22.1 \ ident_case-1.0.1 \ idna-0.2.3 \ image-0.24.2 \ indexmap-1.8.1 \ inline_tweak-1.0.8 \ inotify-0.9.6 \ inotify-sys-0.1.5 \ inplace_it-0.3.3 \ instant-0.1.12 \ io-kit-sys-0.1.0 \ io-lifetimes-0.6.1 \ itertools-0.10.3 \ itoa-0.4.8 \ itoa-1.0.1 \ jni-0.19.0 \ jni-sys-0.3.0 \ jobserver-0.1.24 \ jpeg-decoder-0.2.6 \ js-sys-0.3.56 \ kernel32-sys-0.2.2 \ khronos-egl-4.1.0 \ kiddo-0.1.7 \ kiddo-0.2.4 \ kqueue-1.0.4 \ kqueue-sys-1.0.3 \ lazy-bytes-cast-5.0.1 \ lazy_static-1.4.0 \ lazycell-1.3.0 \ leb128-0.2.5 \ lewton-0.10.2 \ libc-0.2.121 \ libgit2-sys-0.13.2+1.4.2 \ libloading-0.6.7 \ libloading-0.7.3 \ libm-0.1.4 \ libm-0.2.2 \ libmimalloc-sys-0.1.25 \ libsqlite3-sys-0.20.1 \ libudev-sys-0.1.4 \ libz-sys-1.1.5 \ linked-hash-map-0.5.4 \ linux-raw-sys-0.0.42 \ lock_api-0.3.4 \ lock_api-0.4.7 \ log-0.4.16 \ loom-0.5.4 \ loupe-0.1.3 \ loupe-derive-0.1.3 \ lz-fear-0.1.1 \ mach-0.2.3 \ mach-0.3.2 \ malloc_buf-0.0.6 \ matchers-0.1.0 \ matches-0.1.9 \ maybe-uninit-2.0.0 \ memchr-2.4.1 \ memmap-0.7.0 \ memmap2-0.1.0 \ memmap2-0.3.1 \ memmap2-0.5.3 \ memoffset-0.5.6 \ memoffset-0.6.5 \ metal-0.22.0 \ mimalloc-0.1.29 \ minifb-0.22.0 \ minimal-lexical-0.2.1 \ miniz_oxide-0.5.1 \ mio-0.7.14 \ mio-0.8.2 \ mio-misc-1.2.2 \ miow-0.3.7 \ mopa-0.2.2 \ more-asserts-0.2.2 \ mumble-link-0.1.0 \ native-dialog-0.6.3 \ ndk-0.3.0 \ ndk-0.6.0 \ ndk-context-0.1.0 \ ndk-glue-0.3.0 \ ndk-glue-0.6.1 \ ndk-macro-0.2.0 \ ndk-macro-0.3.0 \ ndk-sys-0.2.2 \ ndk-sys-0.3.0 \ nibble_vec-0.1.0 \ nix-0.18.0 \ nix-0.20.0 \ nix-0.22.3 \ nix-0.23.1 \ noise-0.7.0 \ nom-4.2.3 \ nom-5.1.2 \ nom-7.1.1 \ notify-5.0.0-pre.15 \ ntapi-0.3.7 \ num-0.2.1 \ num-0.4.0 \ num-bigint-0.2.6 \ num-bigint-0.4.3 \ num-complex-0.2.4 \ num-complex-0.4.0 \ num-derive-0.3.3 \ num-integer-0.1.44 \ num-iter-0.1.42 \ num-rational-0.2.4 \ num-rational-0.4.0 \ num-traits-0.2.14 \ num_cpus-1.13.1 \ num_enum-0.5.7 \ num_enum_derive-0.5.7 \ num_threads-0.1.5 \ objc-0.2.7 \ objc-foundation-0.1.1 \ objc_exception-0.1.2 \ objc_id-0.1.1 \ object-0.28.3 \ oboe-0.4.5 \ oboe-sys-0.4.5 \ ogg-0.8.0 \ once_cell-1.10.0 \ oorandom-11.1.3 \ openssl-probe-0.1.5 \ orbclient-0.3.32 \ ordered-float-1.1.1 \ ordered-float-2.10.0 \ ordered-float-3.0.0 \ os_str_bytes-6.0.0 \ owned_ttf_parser-0.6.0 \ owned_ttf_parser-0.15.0 \ - packed_simd_2-0.3.7 \ + packed_simd_2-0.3.8 \ parking_lot-0.10.2 \ parking_lot-0.11.2 \ parking_lot-0.12.0 \ parking_lot_core-0.7.2 \ parking_lot_core-0.8.5 \ parking_lot_core-0.9.2 \ parse-zoneinfo-0.3.0 \ pdqselect-0.1.0 \ peeking_take_while-0.1.2 \ pem-1.0.2 \ percent-encoding-2.1.0 \ petgraph-0.4.13 \ petgraph-0.5.1 \ petgraph-0.6.0 \ phf-0.10.1 \ phf_codegen-0.10.0 \ phf_generator-0.10.0 \ phf_shared-0.10.0 \ pin-project-lite-0.2.8 \ pin-utils-0.1.0 \ piston-float-0.3.0 \ piston-viewport-0.5.0 \ pistoncore-input-0.24.0 \ pkg-config-0.3.25 \ plotters-0.3.0 \ plotters-backend-0.3.2 \ plotters-svg-0.3.1 \ png-0.17.5 \ ppv-lite86-0.2.16 \ proc-macro-crate-0.1.5 \ proc-macro-crate-1.1.3 \ proc-macro-error-1.0.4 \ proc-macro-error-attr-1.0.4 \ proc-macro-hack-0.5.19 \ proc-macro2-0.4.30 \ proc-macro2-1.0.40 \ profiling-1.0.6 \ profiling-procmacros-1.0.6 \ prometheus-0.13.0 \ prometheus-hyper-0.1.4 \ ptr_meta-0.1.4 \ ptr_meta_derive-0.1.4 \ quick-xml-0.22.0 \ quinn-0.8.2 \ quinn-proto-0.8.2 \ quinn-udp-0.1.1 \ quote-0.6.13 \ quote-1.0.20 \ radium-0.6.2 \ radix_trie-0.2.1 \ rand-0.7.3 \ rand-0.8.5 \ rand_chacha-0.2.2 \ rand_chacha-0.3.1 \ rand_core-0.5.1 \ rand_core-0.6.3 \ rand_distr-0.4.3 \ rand_hc-0.2.0 \ rand_xorshift-0.2.0 \ raw-window-handle-0.3.4 \ raw-window-handle-0.4.3 \ rayon-1.5.1 \ rayon-core-1.9.1 \ rcgen-0.9.2 \ redox_syscall-0.1.57 \ redox_syscall-0.2.13 \ redox_users-0.4.3 \ regalloc-0.0.31 \ regex-1.5.5 \ regex-automata-0.1.10 \ regex-syntax-0.6.25 \ region-3.0.0 \ remove_dir_all-0.5.3 \ rend-0.3.6 \ renderdoc-sys-0.7.1 \ ring-0.16.20 \ rkyv-0.7.37 \ rkyv_derive-0.7.37 \ rodio-0.15.0 \ ron-0.6.6 \ ron-0.7.0 \ roots-0.0.6 \ rose_tree-0.2.0 \ roxmltree-0.14.1 \ rstar-0.9.2 \ rusqlite-0.24.2 \ rust-argon2-0.8.3 \ rustc-demangle-0.1.21 \ rustc-hash-1.1.0 \ rustc_version-0.2.3 \ rustc_version-0.4.0 \ rustix-0.34.1 \ rustls-0.19.1 \ rustls-0.20.4 \ rustls-native-certs-0.5.0 \ rustls-native-certs-0.6.1 \ rustls-pemfile-0.2.1 \ rustls-pemfile-1.0.0 \ rusttype-0.7.9 \ rusttype-0.8.3 \ rusttype-0.9.2 \ rustversion-1.0.6 \ rusty-xinput-1.2.0 \ rustyline-9.1.2 \ ryu-1.0.9 \ same-file-1.0.6 \ schannel-0.1.19 \ scoped-tls-1.0.0 \ scopeguard-1.1.0 \ sct-0.6.1 \ sct-0.7.0 \ sdl2-0.35.2 \ sdl2-sys-0.35.2 \ seahash-4.1.0 \ security-framework-2.6.1 \ security-framework-sys-2.6.1 \ semver-0.9.0 \ semver-1.0.7 \ semver-parser-0.7.0 \ serde-1.0.136 \ serde_bytes-0.11.5 \ serde_cbor-0.11.2 \ serde_derive-1.0.136 \ serde_json-1.0.79 \ serde_repr-0.1.7 \ sha1-0.6.1 \ sha1_smol-1.0.0 \ sha2-0.10.2 \ shaderc-0.8.0 \ shaderc-sys-0.8.0 \ sharded-slab-0.1.4 \ shell-words-1.1.0 \ shellexpand-2.1.0 \ shlex-0.1.1 \ shred-0.13.0 \ shred-derive-0.6.3 \ shrev-1.1.1 \ signal-hook-0.1.17 \ signal-hook-0.3.13 \ signal-hook-mio-0.2.3 \ signal-hook-registry-1.4.0 \ siphasher-0.3.10 \ slab-0.4.6 \ slotmap-0.4.3 \ slotmap-1.0.6 \ smallvec-1.8.0 \ smithay-client-toolkit-0.12.3 \ smithay-client-toolkit-0.15.3 \ smithay-clipboard-0.6.5 \ socket2-0.4.4 \ specs-0.18.0 \ specs-derive-0.4.1 \ spin-0.5.2 \ spin_sleep-1.1.1 \ spirv_cross-0.23.1 \ spirv_headers-1.5.0 \ stable_deref_trait-1.2.0 \ static_assertions-1.1.0 \ stb_truetype-0.3.1 \ stdweb-0.1.3 \ stdweb-0.4.20 \ stdweb-derive-0.5.3 \ stdweb-internal-macros-0.2.9 \ stdweb-internal-runtime-0.1.5 \ storage-map-0.3.0 \ str-buf-1.0.5 \ strsim-0.8.0 \ strsim-0.9.3 \ strsim-0.10.0 \ structopt-0.3.26 \ structopt-derive-0.4.18 \ strum-0.24.0 \ strum_macros-0.24.0 \ sum_type-0.2.0 \ svg_fmt-0.4.1 \ syn-0.15.44 \ syn-1.0.98 \ tap-1.0.1 \ tar-0.4.38 \ target-lexicon-0.12.3 \ tempfile-3.3.0 \ termcolor-1.1.3 \ textwrap-0.11.0 \ textwrap-0.15.0 \ thiserror-1.0.30 \ thiserror-impl-1.0.30 \ thread_local-1.1.4 \ thunderdome-0.4.2 \ time-0.1.44 \ time-0.3.9 \ tiny-keccak-2.0.2 \ tinytemplate-1.2.1 \ tinyvec-1.5.1 \ tinyvec_macros-0.1.0 \ tokio-1.17.0 \ tokio-macros-1.7.0 \ tokio-rustls-0.22.0 \ tokio-stream-0.1.8 \ tokio-util-0.7.1 \ toml-0.5.8 \ tower-service-0.3.1 \ tracing-0.1.32 \ tracing-appender-0.2.2 \ tracing-attributes-0.1.20 \ tracing-core-0.1.24 \ tracing-log-0.1.2 \ tracing-subscriber-0.3.10 \ tracing-tracy-0.9.0 \ tracy-client-0.13.2 \ tracy-client-sys-0.17.0 \ treeculler-0.2.0 \ try-lock-0.2.3 \ ttf-parser-0.6.2 \ ttf-parser-0.15.0 \ tuple_utils-0.4.0 \ twox-hash-1.6.2 \ tynm-0.1.6 \ typenum-1.15.0 \ uncased-0.9.6 \ unicode-bidi-0.3.7 \ unicode-ident-1.0.1 \ unicode-normalization-0.1.19 \ unicode-segmentation-1.9.0 \ unicode-width-0.1.9 \ unicode-xid-0.1.0 \ untrusted-0.7.1 \ url-2.2.2 \ utf8parse-0.2.0 \ uuid-0.8.2 \ valuable-0.1.0 \ vcpkg-0.2.15 \ vec_map-0.8.2 \ vek-0.14.1 \ version-compare-0.1.0 \ version_check-0.1.5 \ version_check-0.9.4 \ walkdir-0.1.8 \ walkdir-2.3.2 \ want-0.3.0 \ wasi-0.9.0+wasi-snapshot-preview1 \ wasi-0.10.0+wasi-snapshot-preview1 \ wasi-0.11.0+wasi-snapshot-preview1 \ wasm-bindgen-0.2.79 \ wasm-bindgen-backend-0.2.79 \ wasm-bindgen-futures-0.4.29 \ wasm-bindgen-macro-0.2.79 \ wasm-bindgen-macro-support-0.2.79 \ wasm-bindgen-shared-0.2.79 \ wasmer-2.2.1 \ wasmer-compiler-2.2.1 \ wasmer-compiler-cranelift-2.2.1 \ wasmer-derive-2.2.1 \ wasmer-engine-2.2.1 \ wasmer-engine-dylib-2.2.1 \ wasmer-engine-universal-2.2.1 \ wasmer-object-2.2.1 \ wasmer-types-2.2.1 \ wasmer-vm-2.2.1 \ wasmparser-0.78.2 \ wast-39.0.0 \ wat-1.0.41 \ wavefront-0.2.2 \ wayland-client-0.28.6 \ wayland-client-0.29.4 \ wayland-commons-0.28.6 \ wayland-commons-0.29.4 \ wayland-cursor-0.28.6 \ wayland-cursor-0.29.4 \ wayland-protocols-0.28.6 \ wayland-protocols-0.29.4 \ wayland-scanner-0.28.6 \ wayland-scanner-0.29.4 \ wayland-sys-0.28.6 \ wayland-sys-0.29.4 \ web-sys-0.3.50 \ webpki-0.21.4 \ webpki-0.22.0 \ wfd-0.1.7 \ which-3.1.1 \ which-4.2.5 \ winapi-0.2.8 \ winapi-0.3.9 \ winapi-build-0.1.1 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-util-0.1.5 \ winapi-wsapoll-0.1.1 \ winapi-x86_64-pc-windows-gnu-0.4.0 \ window_clipboard-0.2.2 \ windows-sys-0.30.0 \ windows-sys-0.34.0 \ windows_aarch64_msvc-0.30.0 \ windows_aarch64_msvc-0.34.0 \ windows_i686_gnu-0.30.0 \ windows_i686_gnu-0.34.0 \ windows_i686_msvc-0.30.0 \ windows_i686_msvc-0.34.0 \ windows_x86_64_gnu-0.30.0 \ windows_x86_64_gnu-0.34.0 \ windows_x86_64_msvc-0.30.0 \ windows_x86_64_msvc-0.34.0 \ winit-0.25.0 \ winres-0.1.12 \ wio-0.2.2 \ wyz-0.4.0 \ x11-clipboard-0.5.3 \ x11-dl-2.19.1 \ x11rb-0.8.1 \ xattr-0.2.2 \ xcb-0.9.0 \ xcb-0.10.1 \ xcursor-0.3.4 \ xdg-2.4.1 \ xi-unicode-0.3.0 \ xkb-0.2.1 \ xkbcommon-sys-0.7.5 \ xml-rs-0.8.4 \ xmlparser-0.13.3 \ yasna-0.5.0 \ wgpu-profiler@git+https://github.com/Imberflur/wgpu-profiler?tag=wgpu-0.8\#b156eb145bc223386ef344860d9b33b3c181650c \ tui@git+https://github.com/fdehau/tui-rs.git?branch=paragraph-scroll\#54b841fab6cfdb38e8dc1382176e965787964b4c \ xkbcommon-sys@git+https://github.com/Frinksy/rust-xkbcommon-sys.git?rev=8f615dd6cd90a4ab77c45627830dde49b592b9b5\#8f615dd6cd90a4ab77c45627830dde49b592b9b5 \ conrod_core,conrod_derive,conrod_winit@git+https://gitlab.com/veloren/conrod.git?branch=copypasta_0.7\#ca9fd429ca7db854e018acc6dcb2cd8abd9e070d \ auth-common,authc@git+https://gitlab.com/veloren/auth.git?rev=fb3dcbc4962b367253f8f2f92760ef44d2679c9a\#fb3dcbc4962b367253f8f2f92760ef44d2679c9a \ iced_core,iced_futures,iced_graphics,iced_native,iced_style,iced_winit@git+https://github.com/Imberflur/iced?tag=winit-0.25\#18a48a5eeefd2aa6e50f5dd0751ac2e94c88a9eb \ specs-idvs@git+https://gitlab.com/veloren/specs-idvs.git?rev=c17abc638f23ef221ce7384c7dd77eef757b82f4\#c17abc638f23ef221ce7384c7dd77eef757b82f4 \ naga@git+https://github.com/gfx-rs/naga?tag=gfx-25\#057d03ad86f18e3bb3866b20901d8d4e892dd3d6 \ gfx-auxil,gfx-backend-dx11,gfx-backend-dx12,gfx-backend-empty,gfx-backend-gl,gfx-backend-metal,gfx-backend-vulkan,gfx-hal,range-alloc@git+https://github.com/gfx-rs/gfx?rev=27a1dae3796d33d23812f2bb8c7e3b5aea18b521\#27a1dae3796d33d23812f2bb8c7e3b5aea18b521 \ wgpu,wgpu-core,wgpu-types@git+https://github.com/gfx-rs/wgpu.git?rev=a92b8549a8e2cb9dac781bafc5ed32828f3caf46\#a92b8549a8e2cb9dac781bafc5ed32828f3caf46 \ refinery,refinery-core,refinery-macros@git+https://gitlab.com/veloren/refinery.git?rev=8ecf4b4772d791e6c8c0a3f9b66a7530fad1af3e\#8ecf4b4772d791e6c8c0a3f9b66a7530fad1af3e \ portpicker@git+https://github.com/xMAC94x/portpicker-rs?rev=df6b37872f3586ac3b21d08b56c8ec7cd92fb172\#df6b37872f3586ac3b21d08b56c8ec7cd92fb172 \ egui_wgpu_backend@git+https://github.com/hasenbanck/egui_wgpu_backend.git?rev=63a002c6a9b6c016e45806dd065864431caab621\#63a002c6a9b6c016e45806dd065864431caab621 \ vek@git+https://github.com/yoanlcq/vek.git?rev=84d5cb65841d46599a986c5477341bea4456be26\#84d5cb65841d46599a986c5477341bea4456be26 \ keyboard-keynames@git+https://gitlab.com/Frinksy/keyboard-keynames.git?branch=develop\#1ae010ca032a57dfe0ba01d4346a3b03bde36de0 # https://gitlab.com/veloren/veloren/issues/264 CARGO_ENV+= RUSTC_BOOTSTRAP=1 # XXX https://github.com/rust-lang/cargo/issues/4101 CARGO_INSTALL_PATH= server-cli voxygen post-patch: # .git/ directory is missing, so don't abort if git binary is also missing @${REINPLACE_CMD} -e 's/"git"/"${TRUE}"/' \ ${WRKSRC}/common/build.rs # Extract (snapshot) version from the port instead of empty file @${REINPLACE_CMD} -e '/GIT_HASH/s/=.*/= "${DISTVERSIONFULL}";/' \ -e "/GIT_DATE.*static/s/=.*/= \"$$(date -r $$(${AWK} '/TIMESTAMP/ { print $$3 }' \ ${DISTINFO_FILE}) +'%Y-%m-%d-%H:%M')\";/" \ ${WRKSRC}/common/src/util/mod.rs # Respect PREFIX != /usr/local for system assets @${REINPLACE_CMD} -e 's,/usr/share,${DATADIR:H},' \ ${WRKSRC}/common/assets/src/lib.rs # lang/python3 cannot be used as a dependency @${REINPLACE_CMD} -e 's/"python3"/"${PYTHON_CMD:T}"/' \ ${WRKSRC}/cargo-crates/xcb-*/build.rs post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/* (cd ${WRKSRC} && ${COPYTREE_SHARE} assets ${STAGEDIR}${DATADIR}) ${RLN} ${STAGEDIR}${DATADIR}/assets/voxygen/*.desktop \ ${STAGEDIR}${PREFIX}/share/applications ${RLN} ${STAGEDIR}${DATADIR}/assets/voxygen/*.png \ ${STAGEDIR}${PREFIX}/share/pixmaps .include diff --git a/games/veloren/distinfo b/games/veloren/distinfo index 566198c1e6d4..52400ab98f49 100644 --- a/games/veloren/distinfo +++ b/games/veloren/distinfo @@ -1,1423 +1,1423 @@ -TIMESTAMP = 1658582101 +TIMESTAMP = 1660732539 SHA256 (rust/crates/ab_glyph-0.2.15.crate) = 24606928a235e73cdef55a0c909719cadd72fce573e5713d58cb2952d8f5794c SIZE (rust/crates/ab_glyph-0.2.15.crate) = 15906 SHA256 (rust/crates/ab_glyph_rasterizer-0.1.5.crate) = a13739d7177fbd22bb0ed28badfff9f372f8bef46c863db4e1c6248f6b223b6e SIZE (rust/crates/ab_glyph_rasterizer-0.1.5.crate) = 10380 SHA256 (rust/crates/addr2line-0.17.0.crate) = b9ecd88a8c8378ca913a680cd98f0f13ac67383d35993f86c90a70e3f137816b SIZE (rust/crates/addr2line-0.17.0.crate) = 32260 SHA256 (rust/crates/adler-1.0.2.crate) = f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe SIZE (rust/crates/adler-1.0.2.crate) = 12778 SHA256 (rust/crates/adler32-1.2.0.crate) = aae1277d39aeec15cb388266ecc24b11c80469deae6067e17a1a7aa9e5c1f234 SIZE (rust/crates/adler32-1.2.0.crate) = 6411 SHA256 (rust/crates/ahash-0.3.8.crate) = e8fd72866655d1904d6b0997d0b07ba561047d070fbe29de039031c641b61217 SIZE (rust/crates/ahash-0.3.8.crate) = 28650 SHA256 (rust/crates/ahash-0.4.7.crate) = 739f4a8db6605981345c5654f3a85b056ce52f37a39d34da03f25bf2151ea16e SIZE (rust/crates/ahash-0.4.7.crate) = 51474 SHA256 (rust/crates/ahash-0.7.6.crate) = fcb51a0695d8f838b1ee009b3fbf66bda078cd64590202a864a8f3e8c4315c47 SIZE (rust/crates/ahash-0.7.6.crate) = 38030 SHA256 (rust/crates/aho-corasick-0.7.18.crate) = 1e37cfd5e7657ada45f742d6e99ca5788580b5c529dc78faf11ece6dc702656f SIZE (rust/crates/aho-corasick-0.7.18.crate) = 112923 SHA256 (rust/crates/alsa-0.6.0.crate) = 5915f52fe2cf65e83924d037b6c5290b7cee097c6b5c8700746e6168a343fd6b SIZE (rust/crates/alsa-0.6.0.crate) = 68171 SHA256 (rust/crates/alsa-sys-0.3.1.crate) = db8fee663d06c4e303404ef5f40488a53e062f89ba8bfed81f42325aafad1527 SIZE (rust/crates/alsa-sys-0.3.1.crate) = 32748 SHA256 (rust/crates/andrew-0.3.1.crate) = 8c4afb09dd642feec8408e33f92f3ffc4052946f6b20f32fb99c1f58cd4fa7cf SIZE (rust/crates/andrew-0.3.1.crate) = 14030 SHA256 (rust/crates/ansi-parser-0.8.0.crate) = bcb2392079bf27198570d6af79ecbd9ec7d8f16d3ec6b60933922fdb66287127 SIZE (rust/crates/ansi-parser-0.8.0.crate) = 11752 SHA256 (rust/crates/ansi_term-0.12.1.crate) = d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2 SIZE (rust/crates/ansi_term-0.12.1.crate) = 24838 SHA256 (rust/crates/approx-0.3.2.crate) = f0e60b75072ecd4168020818c0107f2857bb6c4e64252d8d3983f6263b40a5c3 SIZE (rust/crates/approx-0.3.2.crate) = 14288 SHA256 (rust/crates/approx-0.4.0.crate) = 3f2a05fd1bd10b2527e20a2cd32d8873d115b8b39fe219ee25f42a8aca6ba278 SIZE (rust/crates/approx-0.4.0.crate) = 14280 SHA256 (rust/crates/approx-0.5.1.crate) = cab112f0a86d568ea0e627cc1d6be74a1e9cd55214684db5561995f6dad897c6 SIZE (rust/crates/approx-0.5.1.crate) = 15100 SHA256 (rust/crates/arr_macro-0.1.3.crate) = 6a105bfda48707cf19220129e78fca01e9639433ffaef4163546ed8fb04120a5 SIZE (rust/crates/arr_macro-0.1.3.crate) = 6494 SHA256 (rust/crates/arr_macro_impl-0.1.3.crate) = 0609c78bd572f4edc74310dfb63a01f5609d53fa8b4dd7c4d98aef3b3e8d72d1 SIZE (rust/crates/arr_macro_impl-0.1.3.crate) = 5721 SHA256 (rust/crates/arrayref-0.3.6.crate) = a4c527152e37cf757a3f78aae5a06fbeefdb07ccc535c980a3208ee3060dd544 SIZE (rust/crates/arrayref-0.3.6.crate) = 10035 SHA256 (rust/crates/arrayvec-0.5.2.crate) = 23b62fc65de8e4e7f52534fb52b0f3ed04746ae267519eef2a83941e8085068b SIZE (rust/crates/arrayvec-0.5.2.crate) = 27838 SHA256 (rust/crates/arrayvec-0.7.2.crate) = 8da52d66c7071e2e3fa2a1e5c6d088fec47b593032b254f5e980de8ea54454d6 SIZE (rust/crates/arrayvec-0.7.2.crate) = 29341 SHA256 (rust/crates/as-slice-0.1.5.crate) = 45403b49e3954a4b8428a0ac21a4b7afadccf92bfd96273f1a58cd4812496ae0 SIZE (rust/crates/as-slice-0.1.5.crate) = 7986 SHA256 (rust/crates/ash-0.32.1.crate) = 06063a002a77d2734631db74e8f4ce7148b77fe522e6bca46f2ae7774fd48112 SIZE (rust/crates/ash-0.32.1.crate) = 312815 SHA256 (rust/crates/assets_manager-0.8.1.crate) = c53a8477ada5edbd6ba3b0698aabaa76b352454aedc8c8dca0c6328fc8313b7e SIZE (rust/crates/assets_manager-0.8.1.crate) = 129835 SHA256 (rust/crates/async-channel-1.6.1.crate) = 2114d64672151c0c5eaa5e131ec84a74f06e1e559830dabba01ca30605d66319 SIZE (rust/crates/async-channel-1.6.1.crate) = 12574 SHA256 (rust/crates/async-trait-0.1.53.crate) = ed6aa3524a2dfcf9fe180c51eae2b58738348d819517ceadf95789c51fff7600 SIZE (rust/crates/async-trait-0.1.53.crate) = 26210 SHA256 (rust/crates/atom-0.3.6.crate) = c9ff149ed9780025acfdb36862d35b28856bb693ceb451259a7164442f22fdc3 SIZE (rust/crates/atom-0.3.6.crate) = 73550 SHA256 (rust/crates/atomic_refcell-0.1.8.crate) = 73b5e5f48b927f04e952dedc932f31995a65a0bf65ec971c74436e51bf6e970d SIZE (rust/crates/atomic_refcell-0.1.8.crate) = 5887 SHA256 (rust/crates/atomicwrites-0.3.1.crate) = eb8f2cd6962fa53c0e2a9d3f97eaa7dbd1e3cbbeeb4745403515b42ae07b3ff6 SIZE (rust/crates/atomicwrites-0.3.1.crate) = 5574 SHA256 (rust/crates/atty-0.2.14.crate) = d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8 SIZE (rust/crates/atty-0.2.14.crate) = 5470 SHA256 (rust/crates/autocfg-1.1.0.crate) = d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa SIZE (rust/crates/autocfg-1.1.0.crate) = 13272 SHA256 (rust/crates/backtrace-0.3.65.crate) = 11a17d453482a265fd5f8479f2a3f405566e6ca627837aaddb85af8b1ab8ef61 SIZE (rust/crates/backtrace-0.3.65.crate) = 74129 SHA256 (rust/crates/base-x-0.2.8.crate) = a4521f3e3d031370679b3b140beb36dfe4801b09ac77e30c61941f97df3ef28b SIZE (rust/crates/base-x-0.2.8.crate) = 10614 SHA256 (rust/crates/base64-0.13.0.crate) = 904dfeac50f3cdaba28fc6f57fdcddb75f49ed61346676a78c4ffe55877802fd SIZE (rust/crates/base64-0.13.0.crate) = 62070 SHA256 (rust/crates/bincode-1.3.3.crate) = b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad SIZE (rust/crates/bincode-1.3.3.crate) = 28958 SHA256 (rust/crates/bindgen-0.56.0.crate) = 2da379dbebc0b76ef63ca68d8fc6e71c0f13e59432e0987e508c1820e6ab5239 SIZE (rust/crates/bindgen-0.56.0.crate) = 198300 SHA256 (rust/crates/bit-set-0.5.2.crate) = 6e11e16035ea35e4e5997b393eacbf6f63983188f7a2ad25bfb13465f5ad59de SIZE (rust/crates/bit-set-0.5.2.crate) = 14093 SHA256 (rust/crates/bit-vec-0.6.3.crate) = 349f9b6a179ed607305526ca489b34ad0a41aed5f7980fa90eb03160b69598fb SIZE (rust/crates/bit-vec-0.6.3.crate) = 19927 SHA256 (rust/crates/bitflags-1.3.2.crate) = bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a SIZE (rust/crates/bitflags-1.3.2.crate) = 23021 SHA256 (rust/crates/bitvec-0.22.3.crate) = 5237f00a8c86130a0cc317830e558b966dd7850d48a953d998c813f01a41b527 SIZE (rust/crates/bitvec-0.22.3.crate) = 210351 SHA256 (rust/crates/blake2b_simd-0.5.11.crate) = afa748e348ad3be8263be728124b24a24f268266f6f5d58af9d75f6a40b5c587 SIZE (rust/crates/blake2b_simd-0.5.11.crate) = 34096 SHA256 (rust/crates/block-0.1.6.crate) = 0d8c1fef690941d3e7788d328517591fecc684c084084702d6ff1641e993699a SIZE (rust/crates/block-0.1.6.crate) = 4077 SHA256 (rust/crates/block-buffer-0.10.2.crate) = 0bf7fe51849ea569fd452f37822f606a5cabb684dc918707a0193fd4664ff324 SIZE (rust/crates/block-buffer-0.10.2.crate) = 10258 SHA256 (rust/crates/bstr-0.2.17.crate) = ba3569f383e8f1598449f1a423e72e99569137b47740b1da11ef19af3d5c3223 SIZE (rust/crates/bstr-0.2.17.crate) = 330350 SHA256 (rust/crates/bumpalo-3.9.1.crate) = a4a45a46ab1f2412e53d3a0ade76ffad2025804294569aae387231a0cd6e0899 SIZE (rust/crates/bumpalo-3.9.1.crate) = 77507 SHA256 (rust/crates/bytecheck-0.6.7.crate) = 314889ea31cda264cb7c3d6e6e5c9415a987ecb0e72c17c00d36fbb881d34abe SIZE (rust/crates/bytecheck-0.6.7.crate) = 7929 SHA256 (rust/crates/bytecheck_derive-0.6.7.crate) = 4a2b3b92c135dae665a6f760205b89187638e83bed17ef3e44e83c712cf30600 SIZE (rust/crates/bytecheck_derive-0.6.7.crate) = 4998 SHA256 (rust/crates/bytemuck-1.9.1.crate) = cdead85bdec19c194affaeeb670c0e41fe23de31459efd1c174d049269cf02cc SIZE (rust/crates/bytemuck-1.9.1.crate) = 34517 SHA256 (rust/crates/bytemuck_derive-1.1.0.crate) = 562e382481975bc61d11275ac5e62a19abd00b0547d99516a415336f183dcd0e SIZE (rust/crates/bytemuck_derive-1.1.0.crate) = 7397 SHA256 (rust/crates/byteorder-1.4.3.crate) = 14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610 SIZE (rust/crates/byteorder-1.4.3.crate) = 22512 SHA256 (rust/crates/bytes-1.1.0.crate) = c4872d67bab6358e59559027aa3b9157c53d9358c51423c17554809a8858e0f8 SIZE (rust/crates/bytes-1.1.0.crate) = 49640 SHA256 (rust/crates/cache-padded-1.2.0.crate) = c1db59621ec70f09c5e9b597b220c7a2b43611f4710dc03ceb8748637775692c SIZE (rust/crates/cache-padded-1.2.0.crate) = 9125 SHA256 (rust/crates/calloop-0.6.5.crate) = 0b036167e76041694579972c28cf4877b4f92da222560ddb49008937b6a6727c SIZE (rust/crates/calloop-0.6.5.crate) = 25180 SHA256 (rust/crates/cassowary-0.3.0.crate) = df8670b8c7b9dae1793364eafadf7239c40d669904660c5960d74cfd80b46a53 SIZE (rust/crates/cassowary-0.3.0.crate) = 22876 SHA256 (rust/crates/cast-0.2.7.crate) = 4c24dab4283a142afa2fdca129b80ad2c6284e073930f964c3a1293c225ee39a SIZE (rust/crates/cast-0.2.7.crate) = 11222 SHA256 (rust/crates/cc-1.0.73.crate) = 2fff2a6927b3bb87f9595d67196a70493f627687a71d87a0d692242c33f58c11 SIZE (rust/crates/cc-1.0.73.crate) = 57880 SHA256 (rust/crates/cesu8-1.1.0.crate) = 6d43a04d8753f35258c91f8ec639f792891f748a1edbd759cf1dcea3382ad83c SIZE (rust/crates/cesu8-1.1.0.crate) = 10555 SHA256 (rust/crates/cexpr-0.4.0.crate) = f4aedb84272dbe89af497cf81375129abda4fc0a9e7c5d317498c15cc30c0d27 SIZE (rust/crates/cexpr-0.4.0.crate) = 18023 SHA256 (rust/crates/cfg-if-0.1.10.crate) = 4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822 SIZE (rust/crates/cfg-if-0.1.10.crate) = 7933 SHA256 (rust/crates/cfg-if-1.0.0.crate) = baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd SIZE (rust/crates/cfg-if-1.0.0.crate) = 7934 SHA256 (rust/crates/cfg_aliases-0.1.1.crate) = fd16c4719339c4530435d38e511904438d07cce7950afa3718a84ac36c10e89e SIZE (rust/crates/cfg_aliases-0.1.1.crate) = 6009 SHA256 (rust/crates/chrono-0.4.19.crate) = 670ad68c9088c2a963aaa298cb369688cf3f9465ce5e2d4ca10e6e0098a1ce73 SIZE (rust/crates/chrono-0.4.19.crate) = 155663 SHA256 (rust/crates/chrono-tz-0.6.1.crate) = 58549f1842da3080ce63002102d5bc954c7bc843d4f47818e642abdc36253552 SIZE (rust/crates/chrono-tz-0.6.1.crate) = 585749 SHA256 (rust/crates/chrono-tz-build-0.0.2.crate) = db058d493fb2f65f41861bfed7e3fe6335264a9f0f92710cab5bdf01fef09069 SIZE (rust/crates/chrono-tz-build-0.0.2.crate) = 5840 SHA256 (rust/crates/chumsky-0.8.0.crate) = 8d02796e4586c6c41aeb68eae9bfb4558a522c35f1430c14b40136c3706e09e4 SIZE (rust/crates/chumsky-0.8.0.crate) = 65390 SHA256 (rust/crates/clang-sys-1.3.1.crate) = 4cc00842eed744b858222c4c9faf7243aafc6d33f92f96935263ef4d8a41ce21 SIZE (rust/crates/clang-sys-1.3.1.crate) = 37840 SHA256 (rust/crates/clap-2.34.0.crate) = a0610544180c38b88101fecf2dd634b174a62eef6946f84dfc6a7127512b381c SIZE (rust/crates/clap-2.34.0.crate) = 202210 SHA256 (rust/crates/clap-3.1.10.crate) = 3124f3f75ce09e22d1410043e1e24f2ecc44fad3afe4f08408f1f7663d68da2b SIZE (rust/crates/clap-3.1.10.crate) = 206697 SHA256 (rust/crates/clap_derive-3.1.7.crate) = a3aab4734e083b809aaf5794e14e756d1c798d2c69c7f7de7a09a2f5214993c1 SIZE (rust/crates/clap_derive-3.1.7.crate) = 25363 SHA256 (rust/crates/clap_lex-0.1.1.crate) = 189ddd3b5d32a70b35e7686054371742a937b0d99128e76dde6340210e966669 SIZE (rust/crates/clap_lex-0.1.1.crate) = 9603 SHA256 (rust/crates/clipboard-win-3.1.1.crate) = 9fdf5e01086b6be750428ba4a40619f847eb2e95756eee84b18e06e5f0b50342 SIZE (rust/crates/clipboard-win-3.1.1.crate) = 11964 SHA256 (rust/crates/clipboard-win-4.4.1.crate) = 2f3e1238132dc01f081e1cbb9dace14e5ef4c3a51ee244bd982275fb514605db SIZE (rust/crates/clipboard-win-4.4.1.crate) = 12561 SHA256 (rust/crates/clipboard_macos-0.1.0.crate) = 145a7f9e9b89453bc0a5e32d166456405d389cea5b578f57f1274b1397588a95 SIZE (rust/crates/clipboard_macos-0.1.0.crate) = 5958 SHA256 (rust/crates/clipboard_wayland-0.2.0.crate) = 6f6364a9f7a66f2ac1a1a098aa1c7f6b686f2496c6ac5e5c0d773445df912747 SIZE (rust/crates/clipboard_wayland-0.2.0.crate) = 5182 SHA256 (rust/crates/clipboard_x11-0.3.1.crate) = 64240d63f1883d87e5637bfcaf9d77e5c8bd24e30fd440ea2dff5c48c0bf0b7a SIZE (rust/crates/clipboard_x11-0.3.1.crate) = 4801 SHA256 (rust/crates/cloudabi-0.0.3.crate) = ddfc5b9aa5d4507acaf872de71051dfd0e309860e88966e1051e462a077aac4f SIZE (rust/crates/cloudabi-0.0.3.crate) = 22156 SHA256 (rust/crates/cmake-0.1.45.crate) = eb6210b637171dfba4cda12e579ac6dc73f5165ad56133e5d72ef3131f320855 SIZE (rust/crates/cmake-0.1.45.crate) = 14375 SHA256 (rust/crates/cocoa-0.24.0.crate) = 6f63902e9223530efb4e26ccd0cf55ec30d592d3b42e21a28defc42a9586e832 SIZE (rust/crates/cocoa-0.24.0.crate) = 39235 SHA256 (rust/crates/cocoa-foundation-0.1.0.crate) = 7ade49b65d560ca58c403a479bb396592b155c0185eada742ee323d1d68d6318 SIZE (rust/crates/cocoa-foundation-0.1.0.crate) = 10645 SHA256 (rust/crates/codespan-reporting-0.11.1.crate) = 3538270d33cc669650c4b093848450d380def10c331d38c768e34cac80576e6e SIZE (rust/crates/codespan-reporting-0.11.1.crate) = 48963 SHA256 (rust/crates/color_quant-1.1.0.crate) = 3d7b894f5411737b7867f4827955924d7c254fc9f4d91a6aad6b097804b1018b SIZE (rust/crates/color_quant-1.1.0.crate) = 6649 SHA256 (rust/crates/combine-4.6.3.crate) = 50b727aacc797f9fc28e355d21f34709ac4fc9adecfe470ad07b8f4464f53062 SIZE (rust/crates/combine-4.6.3.crate) = 132015 SHA256 (rust/crates/concurrent-queue-1.2.2.crate) = 30ed07550be01594c6026cff2a1d7fe9c8f683caa798e12b68694ac9e88286a3 SIZE (rust/crates/concurrent-queue-1.2.2.crate) = 15859 SHA256 (rust/crates/const-random-0.1.13.crate) = f590d95d011aa80b063ffe3253422ed5aa462af4e9867d43ce8337562bac77c4 SIZE (rust/crates/const-random-0.1.13.crate) = 6646 SHA256 (rust/crates/const-random-macro-0.1.13.crate) = 615f6e27d000a2bffbc7f2f6a8669179378fa27ee4d0a509e985dfc0a7defb40 SIZE (rust/crates/const-random-macro-0.1.13.crate) = 6359 SHA256 (rust/crates/constant_time_eq-0.1.5.crate) = 245097e9a4535ee1e3e3931fcfcd55a796a44c643e8596ff6566d68f09b87bbc SIZE (rust/crates/constant_time_eq-0.1.5.crate) = 4936 SHA256 (rust/crates/copy_dir-0.1.2.crate) = 6e4281031634644843bd2f5aa9c48cf98fc48d6b083bd90bb11becf10deaf8b0 SIZE (rust/crates/copy_dir-0.1.2.crate) = 5041 SHA256 (rust/crates/copyless-0.1.5.crate) = a2df960f5d869b2dd8532793fde43eb5427cceb126c929747a26823ab0eeb536 SIZE (rust/crates/copyless-0.1.5.crate) = 8264 SHA256 (rust/crates/copypasta-0.7.1.crate) = 4423d79fed83ebd9ab81ec21fa97144300a961782158287dc9bf7eddac37ff0b SIZE (rust/crates/copypasta-0.7.1.crate) = 12882 SHA256 (rust/crates/core-foundation-0.6.4.crate) = 25b9e03f145fd4f2bf705e07b900cd41fc636598fe5dc452fd0db1441c3f496d SIZE (rust/crates/core-foundation-0.6.4.crate) = 25233 SHA256 (rust/crates/core-foundation-0.7.0.crate) = 57d24c7a13c43e870e37c1556b74555437870a04514f7685f5b354e090567171 SIZE (rust/crates/core-foundation-0.7.0.crate) = 25384 SHA256 (rust/crates/core-foundation-0.9.3.crate) = 194a7a9e6de53fa55116934067c844d9d749312f75c6f6d0980e8c252f8c2146 SIZE (rust/crates/core-foundation-0.9.3.crate) = 27059 SHA256 (rust/crates/core-foundation-sys-0.6.2.crate) = e7ca8a5221364ef15ce201e8ed2f609fc312682a8f4e0e3d4aa5879764e0fa3b SIZE (rust/crates/core-foundation-sys-0.6.2.crate) = 16204 SHA256 (rust/crates/core-foundation-sys-0.7.0.crate) = b3a71ab494c0b5b860bdc8407ae08978052417070c2ced38573a9157ad75b8ac SIZE (rust/crates/core-foundation-sys-0.7.0.crate) = 17033 SHA256 (rust/crates/core-foundation-sys-0.8.3.crate) = 5827cebf4670468b8772dd191856768aedcb1b0278a04f989f7766351917b9dc SIZE (rust/crates/core-foundation-sys-0.8.3.crate) = 17519 SHA256 (rust/crates/core-graphics-0.19.2.crate) = b3889374e6ea6ab25dba90bb5d96202f61108058361f6dc72e8b03e6f8bbe923 SIZE (rust/crates/core-graphics-0.19.2.crate) = 28995 SHA256 (rust/crates/core-graphics-0.22.3.crate) = 2581bbab3b8ffc6fcbd550bf46c355135d16e9ff2a6ea032ad6b9bf1d7efe4fb SIZE (rust/crates/core-graphics-0.22.3.crate) = 29514 SHA256 (rust/crates/core-graphics-types-0.1.1.crate) = 3a68b68b3446082644c91ac778bf50cd4104bfb002b5a6a7c44cca5a2c70788b SIZE (rust/crates/core-graphics-types-0.1.1.crate) = 2530 SHA256 (rust/crates/core-video-sys-0.1.4.crate) = 34ecad23610ad9757664d644e369246edde1803fcb43ed72876565098a5d3828 SIZE (rust/crates/core-video-sys-0.1.4.crate) = 10568 SHA256 (rust/crates/coreaudio-rs-0.10.0.crate) = 11894b20ebfe1ff903cbdc52259693389eea03b94918a2def2c30c3bf227ad88 SIZE (rust/crates/coreaudio-rs-0.10.0.crate) = 34487 SHA256 (rust/crates/coreaudio-sys-0.2.9.crate) = ca4679a59dbd8c15f064c012dfe8c1163b9453224238b59bb9328c142b8b248b SIZE (rust/crates/coreaudio-sys-0.2.9.crate) = 5082 SHA256 (rust/crates/cpal-0.13.5.crate) = 74117836a5124f3629e4b474eed03e479abaf98988b4bb317e29f08cfe0e4116 SIZE (rust/crates/cpal-0.13.5.crate) = 93790 SHA256 (rust/crates/cpufeatures-0.2.2.crate) = 59a6001667ab124aebae2a495118e11d30984c3a653e99d86d58971708cf5e4b SIZE (rust/crates/cpufeatures-0.2.2.crate) = 10655 SHA256 (rust/crates/cranelift-bforest-0.76.0.crate) = 7e6bea67967505247f54fa2c85cf4f6e0e31c4e5692c9b70e4ae58e339067333 SIZE (rust/crates/cranelift-bforest-0.76.0.crate) = 30816 SHA256 (rust/crates/cranelift-codegen-0.76.0.crate) = 48194035d2752bdd5bdae429e3ab88676e95f52a2b1355a5d4e809f9e39b1d74 SIZE (rust/crates/cranelift-codegen-0.76.0.crate) = 835601 SHA256 (rust/crates/cranelift-codegen-meta-0.76.0.crate) = 976efb22fcab4f2cd6bd4e9913764616a54d895c1a23530128d04e03633c555f SIZE (rust/crates/cranelift-codegen-meta-0.76.0.crate) = 179689 SHA256 (rust/crates/cranelift-codegen-shared-0.76.0.crate) = 9dabb5fe66e04d4652e434195b45ae65b5c8172d520247b8f66d8df42b2b45dc SIZE (rust/crates/cranelift-codegen-shared-0.76.0.crate) = 12583 SHA256 (rust/crates/cranelift-entity-0.76.0.crate) = 3329733e4d4b8e91c809efcaa4faee80bf66f20164e3dd16d707346bd3494799 SIZE (rust/crates/cranelift-entity-0.76.0.crate) = 25261 SHA256 (rust/crates/cranelift-frontend-0.76.0.crate) = 279afcc0d3e651b773f94837c3d581177b348c8d69e928104b2e9fccb226f921 SIZE (rust/crates/cranelift-frontend-0.76.0.crate) = 31953 SHA256 (rust/crates/crc32fast-1.3.2.crate) = b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d SIZE (rust/crates/crc32fast-1.3.2.crate) = 38661 SHA256 (rust/crates/criterion-0.3.4.crate) = ab327ed7354547cc2ef43cbe20ef68b988e70b4b593cbd66a2a61733123a3d23 SIZE (rust/crates/criterion-0.3.4.crate) = 111110 SHA256 (rust/crates/criterion-plot-0.4.4.crate) = d00996de9f2f7559f7f4dc286073197f83e92256a59ed395f9aac01fe717da57 SIZE (rust/crates/criterion-plot-0.4.4.crate) = 22546 SHA256 (rust/crates/crossbeam-0.8.1.crate) = 4ae5588f6b3c3cb05239e90bd110f257254aecd01e4635400391aeae07497845 SIZE (rust/crates/crossbeam-0.8.1.crate) = 10429 SHA256 (rust/crates/crossbeam-channel-0.5.4.crate) = 5aaa7bd5fb665c6864b5f963dd9097905c54125909c7aa94c9e18507cdbe6c53 SIZE (rust/crates/crossbeam-channel-0.5.4.crate) = 88237 SHA256 (rust/crates/crossbeam-deque-0.7.4.crate) = c20ff29ded3204c5106278a81a38f4b482636ed4fa1e6cfbeef193291beb29ed SIZE (rust/crates/crossbeam-deque-0.7.4.crate) = 19868 SHA256 (rust/crates/crossbeam-deque-0.8.1.crate) = 6455c0ca19f0d2fbf751b908d5c55c1f5cbc65e03c4225427254b46890bdde1e SIZE (rust/crates/crossbeam-deque-0.8.1.crate) = 20852 SHA256 (rust/crates/crossbeam-epoch-0.8.2.crate) = 058ed274caafc1f60c4997b5fc07bf7dc7cca454af7c6e81edffe5f33f70dace SIZE (rust/crates/crossbeam-epoch-0.8.2.crate) = 39283 SHA256 (rust/crates/crossbeam-epoch-0.9.8.crate) = 1145cf131a2c6ba0615079ab6a638f7e1973ac9c2634fcbeaaad6114246efe8c SIZE (rust/crates/crossbeam-epoch-0.9.8.crate) = 46012 SHA256 (rust/crates/crossbeam-queue-0.3.5.crate) = 1f25d8400f4a7a5778f0e4e52384a48cbd9b5c495d110786187fc750075277a2 SIZE (rust/crates/crossbeam-queue-0.3.5.crate) = 16341 SHA256 (rust/crates/crossbeam-utils-0.7.2.crate) = c3c7c73a2d1e9fc0886a08b93e98eb643461230d5f1925e4036204d5f2e261a8 SIZE (rust/crates/crossbeam-utils-0.7.2.crate) = 34338 SHA256 (rust/crates/crossbeam-utils-0.8.8.crate) = 0bf124c720b7686e3c2663cf54062ab0f68a88af2fb6a030e87e30bf721fcb38 SIZE (rust/crates/crossbeam-utils-0.8.8.crate) = 39681 SHA256 (rust/crates/crossterm-0.17.7.crate) = 6f4919d60f26ae233e14233cc39746c8c8bb8cd7b05840ace83604917b51b6c7 SIZE (rust/crates/crossterm-0.17.7.crate) = 105242 SHA256 (rust/crates/crossterm-0.23.2.crate) = a2102ea4f781910f8a5b98dd061f4c2023f479ce7bb1236330099ceb5a93cf17 SIZE (rust/crates/crossterm-0.23.2.crate) = 106712 SHA256 (rust/crates/crossterm_winapi-0.6.2.crate) = c2265c3f8e080075d9b6417aa72293fc71662f34b4af2612d8d1b074d29510db SIZE (rust/crates/crossterm_winapi-0.6.2.crate) = 14962 SHA256 (rust/crates/crossterm_winapi-0.9.0.crate) = 2ae1b35a484aa10e07fe0638d02301c5ad24de82d310ccbd2f3693da5f09bf1c SIZE (rust/crates/crossterm_winapi-0.9.0.crate) = 15561 SHA256 (rust/crates/crunchy-0.2.2.crate) = 7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7 SIZE (rust/crates/crunchy-0.2.2.crate) = 2995 SHA256 (rust/crates/crypto-common-0.1.3.crate) = 57952ca27b5e3606ff4dd79b0020231aaf9d6aa76dc05fd30137538c50bd3ce8 SIZE (rust/crates/crypto-common-0.1.3.crate) = 8556 SHA256 (rust/crates/csv-1.1.6.crate) = 22813a6dc45b335f9bade10bf7271dc477e81113e89eb251a0bc2a8a81c536e1 SIZE (rust/crates/csv-1.1.6.crate) = 886999 SHA256 (rust/crates/csv-core-0.1.10.crate) = 2b2466559f260f48ad25fe6317b3c8dac77b5bdb5763ac7d9d6103530663bc90 SIZE (rust/crates/csv-core-0.1.10.crate) = 25668 SHA256 (rust/crates/ct-logs-0.8.0.crate) = c1a816186fa68d9e426e3cb4ae4dff1fcd8e4a2c34b781bf7a822574a0d0aac8 SIZE (rust/crates/ct-logs-0.8.0.crate) = 19766 SHA256 (rust/crates/cty-0.2.2.crate) = b365fabc795046672053e29c954733ec3b05e4be654ab130fe8f1f94d7051f35 SIZE (rust/crates/cty-0.2.2.crate) = 7230 SHA256 (rust/crates/d3d12-0.4.1.crate) = 2daefd788d1e96e0a9d66dee4b828b883509bc3ea9ce30665f04c3246372690c SIZE (rust/crates/d3d12-0.4.1.crate) = 14224 SHA256 (rust/crates/daggy-0.5.0.crate) = 9293a0da7d1bc1f30090ece4d9f9de79a07be7302ddb00e5eb1fefb6ee6409e2 SIZE (rust/crates/daggy-0.5.0.crate) = 17832 SHA256 (rust/crates/darling-0.10.2.crate) = 0d706e75d87e35569db781a9b5e2416cff1236a47ed380831f959382ccd5f858 SIZE (rust/crates/darling-0.10.2.crate) = 17620 SHA256 (rust/crates/darling-0.13.2.crate) = 4e92cb285610dd935f60ee8b4d62dd1988bd12b7ea50579bd6a138201525318e SIZE (rust/crates/darling-0.13.2.crate) = 20817 SHA256 (rust/crates/darling_core-0.10.2.crate) = f0c960ae2da4de88a91b2d920c2a7233b400bc33cb28453a2987822d8392519b SIZE (rust/crates/darling_core-0.10.2.crate) = 44339 SHA256 (rust/crates/darling_core-0.13.2.crate) = 5c29e95ab498b18131ea460b2c0baa18cbf041231d122b0b7bfebef8c8e88989 SIZE (rust/crates/darling_core-0.13.2.crate) = 51056 SHA256 (rust/crates/darling_macro-0.10.2.crate) = d9b5a2f4ac4969822c62224815d069952656cadc7084fdca9751e6d959189b72 SIZE (rust/crates/darling_macro-0.10.2.crate) = 1919 SHA256 (rust/crates/darling_macro-0.13.2.crate) = b21dd6b221dd547528bd6fb15f1a3b7ab03b9a06f76bff288a8c629bcfbe7f0e SIZE (rust/crates/darling_macro-0.13.2.crate) = 1910 SHA256 (rust/crates/deflate-1.0.0.crate) = c86f7e25f518f4b81808a2cf1c50996a61f5c2eb394b2393bd87f2a4780a432f SIZE (rust/crates/deflate-1.0.0.crate) = 62722 SHA256 (rust/crates/deunicode-1.3.1.crate) = f2c9736e15e7df1638a7f6eee92a6511615c738246a052af5ba86f039b65aede SIZE (rust/crates/deunicode-1.3.1.crate) = 162668 SHA256 (rust/crates/digest-0.10.3.crate) = f2fb860ca6fafa5552fb6d0e816a69c8e49f0908bf524e30a90d97c85892d506 SIZE (rust/crates/digest-0.10.3.crate) = 18990 SHA256 (rust/crates/directories-next-2.0.0.crate) = 339ee130d97a610ea5a5872d2bbb130fdf68884ff09d3028b81bec8a1ac23bbc SIZE (rust/crates/directories-next-2.0.0.crate) = 15153 SHA256 (rust/crates/dirs-4.0.0.crate) = ca3aa72a6f96ea37bbc5aa912f6788242832f75369bdfdadcb0e38423f100059 SIZE (rust/crates/dirs-4.0.0.crate) = 12503 SHA256 (rust/crates/dirs-next-2.0.0.crate) = b98cf8ebf19c3d1b223e151f99a4f9f0690dca41414773390fc824184ac833e1 SIZE (rust/crates/dirs-next-2.0.0.crate) = 11689 SHA256 (rust/crates/dirs-sys-0.3.7.crate) = 1b1d1d91c932ef41c0f2663aa8b0ca0342d444d842c06914aa0a7e352d0bada6 SIZE (rust/crates/dirs-sys-0.3.7.crate) = 10597 SHA256 (rust/crates/dirs-sys-next-0.1.2.crate) = 4ebda144c4fe02d1f7ea1a7d9641b6fc6b580adcfa024ae48797ecdeb6825b4d SIZE (rust/crates/dirs-sys-next-0.1.2.crate) = 10681 SHA256 (rust/crates/discard-1.0.4.crate) = 212d0f5754cb6769937f4501cc0e67f4f4483c8d2c3e1e922ee9edbe4ab4c7c0 SIZE (rust/crates/discard-1.0.4.crate) = 4700 SHA256 (rust/crates/dispatch-0.1.4.crate) = 04e93ca78226c51902d7aa8c12c988338aadd9e85ed9c6be8aaac39192ff3605 SIZE (rust/crates/dispatch-0.1.4.crate) = 8826 SHA256 (rust/crates/dispatch-0.2.0.crate) = bd0c93bb4b0c6d9b77f4435b0ae98c24d17f1c45b2ff844c6151a07256ca923b SIZE (rust/crates/dispatch-0.2.0.crate) = 10229 SHA256 (rust/crates/dlib-0.4.2.crate) = b11f15d1e3268f140f68d390637d5e76d849782d971ae7063e0da69fe9709a76 SIZE (rust/crates/dlib-0.4.2.crate) = 3853 SHA256 (rust/crates/dlib-0.5.0.crate) = ac1b7517328c04c2aa68422fc60a41b92208182142ed04a25879c26c8f878794 SIZE (rust/crates/dlib-0.5.0.crate) = 5788 SHA256 (rust/crates/dot_vox-4.1.0.crate) = 83c18405ef54de0398b77a3ec8394d3a1639e7bf060e1385201e8db40c44ab41 SIZE (rust/crates/dot_vox-4.1.0.crate) = 16060 SHA256 (rust/crates/downcast-rs-1.2.0.crate) = 9ea835d29036a4087793836fa931b08837ad5e957da9e23886b29586fb9b6650 SIZE (rust/crates/downcast-rs-1.2.0.crate) = 11670 SHA256 (rust/crates/egui-0.12.0.crate) = 788148861d80b87d28d64440a3d31cae190e50ccc3ea585597466d38428365d7 SIZE (rust/crates/egui-0.12.0.crate) = 142030 SHA256 (rust/crates/egui_winit_platform-0.8.0.crate) = cd4cf17c0cd4dbcf2f8fef55a3592b9b7cfd970576c7302d8ba5c521b8560371 SIZE (rust/crates/egui_winit_platform-0.8.0.crate) = 8875 SHA256 (rust/crates/either-1.6.1.crate) = e78d4f1cc4ae33bbfc157ed5d5a5ef3bc29227303d595861deb238fcec4e9457 SIZE (rust/crates/either-1.6.1.crate) = 13641 SHA256 (rust/crates/emath-0.12.0.crate) = 3e73d6c8c70eadb71756fbbc3c303ab25e163b46b656886dd250de5636efea12 SIZE (rust/crates/emath-0.12.0.crate) = 14010 SHA256 (rust/crates/endian-type-0.1.2.crate) = c34f04666d835ff5d62e058c3995147c06f42fe86ff053337632bca83e42702d SIZE (rust/crates/endian-type-0.1.2.crate) = 2340 SHA256 (rust/crates/enum-iterator-0.7.0.crate) = 4eeac5c5edb79e4e39fe8439ef35207780a11f69c52cbe424ce3dfad4cb78de6 SIZE (rust/crates/enum-iterator-0.7.0.crate) = 1783 SHA256 (rust/crates/enum-iterator-derive-0.7.0.crate) = c134c37760b27a871ba422106eedbb8247da973a09e82558bf26d619c882b159 SIZE (rust/crates/enum-iterator-derive-0.7.0.crate) = 2431 SHA256 (rust/crates/enumset-1.0.9.crate) = 42f0ae74db31a8ba0093a411d594a1d6d65c207611816ebf4e75381f3f72b1fe SIZE (rust/crates/enumset-1.0.9.crate) = 18471 SHA256 (rust/crates/enumset_derive-0.5.6.crate) = 5c594871f94ab3a00434cb09f03067c92fa2ece4cc657d58ba402e8377cd85a3 SIZE (rust/crates/enumset_derive-0.5.6.crate) = 10447 SHA256 (rust/crates/env_logger-0.8.4.crate) = a19187fea3ac7e84da7dacf48de0c45d63c6a76f9490dae389aead16c243fce3 SIZE (rust/crates/env_logger-0.8.4.crate) = 33342 SHA256 (rust/crates/epaint-0.12.0.crate) = 80e2db640801230bdda80629bc3a063927a462f5eaf38a98da676954e78ccb99 SIZE (rust/crates/epaint-0.12.0.crate) = 672262 SHA256 (rust/crates/epi-0.12.0.crate) = 59c4f6cbede1fc8f836384f85295a59199a4825940abcc3a8a29cfe2e3c37583 SIZE (rust/crates/epi-0.12.0.crate) = 6678 SHA256 (rust/crates/errno-0.2.8.crate) = f639046355ee4f37944e44f60642c6f3a7efa3cf6b78c78a0d989a8ce6c396a1 SIZE (rust/crates/errno-0.2.8.crate) = 9276 SHA256 (rust/crates/errno-dragonfly-0.1.2.crate) = aa68f1b12764fab894d2755d2518754e71b4fd80ecfb822714a1206c2aab39bf SIZE (rust/crates/errno-dragonfly-0.1.2.crate) = 1810 SHA256 (rust/crates/error-code-2.3.1.crate) = 64f18991e7bf11e7ffee451b5318b5c1a73c52d0d0ada6e5a3017c8c1ced6a21 SIZE (rust/crates/error-code-2.3.1.crate) = 5324 SHA256 (rust/crates/etagere-0.2.7.crate) = 6301151a318f367f392c31395beb1cfba5ccd9abc44d1db0db3a4b27b9601c89 SIZE (rust/crates/etagere-0.2.7.crate) = 17144 SHA256 (rust/crates/euc-0.5.3.crate) = 0947d06646d28a4ac2862ac5eadc1062704d61ee398b3baba8b4a21e2f1ef5ed SIZE (rust/crates/euc-0.5.3.crate) = 70369 SHA256 (rust/crates/euclid-0.22.7.crate) = b52c2ef4a78da0ba68fbe1fd920627411096d2ac478f7f4c9f3a54ba6705bade SIZE (rust/crates/euclid-0.22.7.crate) = 75976 SHA256 (rust/crates/event-listener-2.5.2.crate) = 77f3309417938f28bf8228fcff79a4a37103981e3e186d2ccd19c74b38f4eb71 SIZE (rust/crates/event-listener-2.5.2.crate) = 15225 SHA256 (rust/crates/fallible-iterator-0.2.0.crate) = 4443176a9f2c162692bd3d352d745ef9413eec5782a80d8fd6f8a1ac692a07f7 SIZE (rust/crates/fallible-iterator-0.2.0.crate) = 18509 SHA256 (rust/crates/fallible-streaming-iterator-0.1.9.crate) = 7360491ce676a36bf9bb3c56c1aa791658183a54d2744120f27285738d90465a SIZE (rust/crates/fallible-streaming-iterator-0.1.9.crate) = 9249 SHA256 (rust/crates/fastrand-1.7.0.crate) = c3fcf0cee53519c866c09b5de1f6c56ff9d647101f81c1964fa632e148896cdf SIZE (rust/crates/fastrand-1.7.0.crate) = 11265 SHA256 (rust/crates/fd-lock-3.0.5.crate) = 46e245f4c8ec30c6415c56cb132c07e69e74f1942f6b4a4061da748b49f486ca SIZE (rust/crates/fd-lock-3.0.5.crate) = 13383 SHA256 (rust/crates/fehler-1.0.0.crate) = d5729fe49ba028cd550747b6e62cd3d841beccab5390aa398538c31a2d983635 SIZE (rust/crates/fehler-1.0.0.crate) = 9032 SHA256 (rust/crates/fehler-macros-1.0.0.crate) = ccb5acb1045ebbfa222e2c50679e392a71dd77030b78fb0189f2d9c5974400f9 SIZE (rust/crates/fehler-macros-1.0.0.crate) = 3271 SHA256 (rust/crates/filetime-0.2.15.crate) = 975ccf83d8d9d0d84682850a38c8169027be83368805971cc4f238c2b245bc98 SIZE (rust/crates/filetime-0.2.15.crate) = 14511 SHA256 (rust/crates/find_folder-0.3.0.crate) = 9f6d018fb95a0b59f854aed68ecd96ce2b80af7911b92b1fed3c4b1fa516b91b SIZE (rust/crates/find_folder-0.3.0.crate) = 2617 SHA256 (rust/crates/fixedbitset-0.1.9.crate) = 86d4de0081402f5e88cdac65c8dcdcc73118c1a7a465e2a05f0da05843a8ea33 SIZE (rust/crates/fixedbitset-0.1.9.crate) = 11974 SHA256 (rust/crates/fixedbitset-0.2.0.crate) = 37ab347416e802de484e4d03c7316c48f1ecb56574dfd4a46a80f173ce1de04d SIZE (rust/crates/fixedbitset-0.2.0.crate) = 13597 SHA256 (rust/crates/fixedbitset-0.4.1.crate) = 279fb028e20b3c4c320317955b77c5e0c9701f05a1d309905d6fc702cdc5053e SIZE (rust/crates/fixedbitset-0.4.1.crate) = 15551 SHA256 (rust/crates/flate2-1.0.24.crate) = f82b0f4c27ad9f8bfd1f3208d882da2b09c301bc1c828fd3a00d0216d2fbbff6 SIZE (rust/crates/flate2-1.0.24.crate) = 70191 SHA256 (rust/crates/float-cmp-0.9.0.crate) = 98de4bbd547a563b716d8dfa9aad1cb19bfab00f4fa09a6a4ed21dbcf44ce9c4 SIZE (rust/crates/float-cmp-0.9.0.crate) = 10102 SHA256 (rust/crates/fnv-1.0.7.crate) = 3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1 SIZE (rust/crates/fnv-1.0.7.crate) = 11266 SHA256 (rust/crates/foreign-types-0.3.2.crate) = f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1 SIZE (rust/crates/foreign-types-0.3.2.crate) = 7504 SHA256 (rust/crates/foreign-types-shared-0.1.1.crate) = 00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b SIZE (rust/crates/foreign-types-shared-0.1.1.crate) = 5672 SHA256 (rust/crates/form_urlencoded-1.0.1.crate) = 5fc25a87fa4fd2094bffb06925852034d90a17f0d1e05197d4956d3555752191 SIZE (rust/crates/form_urlencoded-1.0.1.crate) = 8773 SHA256 (rust/crates/fsevent-sys-4.1.0.crate) = 76ee7a02da4d231650c7cea31349b889be2f45ddb3ef3032d2ec8185f6313fd2 SIZE (rust/crates/fsevent-sys-4.1.0.crate) = 4620 SHA256 (rust/crates/funty-1.2.0.crate) = 1847abb9cb65d566acd5942e94aea9c8f547ad02c98e1649326fc0e8910b8b1e SIZE (rust/crates/funty-1.2.0.crate) = 12413 SHA256 (rust/crates/futures-0.3.21.crate) = f73fe65f54d1e12b726f517d3e2135ca3125a437b6d998caf1962961f7172d9e SIZE (rust/crates/futures-0.3.21.crate) = 49935 SHA256 (rust/crates/futures-channel-0.3.21.crate) = c3083ce4b914124575708913bca19bfe887522d6e2e6d0952943f5eac4a74010 SIZE (rust/crates/futures-channel-0.3.21.crate) = 31961 SHA256 (rust/crates/futures-core-0.3.21.crate) = 0c09fd04b7e4073ac7156a9539b57a484a8ea920f79c7c675d05d289ab6110d3 SIZE (rust/crates/futures-core-0.3.21.crate) = 14601 SHA256 (rust/crates/futures-executor-0.3.21.crate) = 9420b90cfa29e327d0429f19be13e7ddb68fa1cccb09d65e5706b8c7a749b8a6 SIZE (rust/crates/futures-executor-0.3.21.crate) = 17306 SHA256 (rust/crates/futures-io-0.3.21.crate) = fc4045962a5a5e935ee2fdedaa4e08284547402885ab326734432bed5d12966b SIZE (rust/crates/futures-io-0.3.21.crate) = 8902 SHA256 (rust/crates/futures-macro-0.3.21.crate) = 33c1e13800337f4d4d7a316bf45a567dbcb6ffe087f16424852d97e97a91f512 SIZE (rust/crates/futures-macro-0.3.21.crate) = 11250 SHA256 (rust/crates/futures-sink-0.3.21.crate) = 21163e139fa306126e6eedaf49ecdb4588f939600f0b1e770f4205ee4b7fa868 SIZE (rust/crates/futures-sink-0.3.21.crate) = 7843 SHA256 (rust/crates/futures-task-0.3.21.crate) = 57c66a976bf5909d801bbef33416c41372779507e7a6b3a5e25e4749c58f776a SIZE (rust/crates/futures-task-0.3.21.crate) = 11815 SHA256 (rust/crates/futures-util-0.3.21.crate) = d8b7abd5d659d9b90c8cba917f6ec750a74e2dc23902ef9cd4cc8c8b22e6036a SIZE (rust/crates/futures-util-0.3.21.crate) = 153768 SHA256 (rust/crates/fxhash-0.2.1.crate) = c31b6d751ae2c7f11320402d34e41349dd1016f8d5d45e48c4312bc8625af50c SIZE (rust/crates/fxhash-0.2.1.crate) = 4102 SHA256 (rust/crates/generator-0.7.0.crate) = c1d9279ca822891c1a4dae06d185612cf8fc6acfe5dff37781b41297811b12ee SIZE (rust/crates/generator-0.7.0.crate) = 28814 SHA256 (rust/crates/generic-array-0.12.4.crate) = ffdf9f34f1447443d37393cc6c2b8313aebddcd96906caf34e54c68d8e57d7bd SIZE (rust/crates/generic-array-0.12.4.crate) = 18212 SHA256 (rust/crates/generic-array-0.13.3.crate) = f797e67af32588215eaaab8327027ee8e71b9dd0b2b26996aedf20c030fce309 SIZE (rust/crates/generic-array-0.13.3.crate) = 26956 SHA256 (rust/crates/generic-array-0.14.5.crate) = fd48d33ec7f05fbfa152300fdad764757cbded343c1aa1cff2fbaf4134851803 SIZE (rust/crates/generic-array-0.14.5.crate) = 28915 SHA256 (rust/crates/gethostname-0.2.3.crate) = c1ebd34e35c46e00bb73e81363248d627782724609fe1b6396f553f68fe3862e SIZE (rust/crates/gethostname-0.2.3.crate) = 8174 SHA256 (rust/crates/getrandom-0.1.16.crate) = 8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce SIZE (rust/crates/getrandom-0.1.16.crate) = 25077 SHA256 (rust/crates/getrandom-0.2.6.crate) = 9be70c98951c83b8d2f8f60d7065fa6d5146873094452a1008da8c2f1e4205ad SIZE (rust/crates/getrandom-0.2.6.crate) = 28043 SHA256 (rust/crates/gilrs-0.8.2.crate) = 1550c8bdebc993576e343d600a954654708a9a1182396ee1e805d6fe60c72909 SIZE (rust/crates/gilrs-0.8.2.crate) = 97156 SHA256 (rust/crates/gilrs-core-0.3.2.crate) = 84c7262ce1e88429c9b1d847820c9d2ba00adafc955218393d9c0861d5aaab88 SIZE (rust/crates/gilrs-core-0.3.2.crate) = 33958 SHA256 (rust/crates/gimli-0.25.0.crate) = f0a01e0497841a3b2db4f8afa483cce65f7e96a3498bd6c541734792aeac8fe7 SIZE (rust/crates/gimli-0.25.0.crate) = 705238 SHA256 (rust/crates/gimli-0.26.1.crate) = 78cc372d058dcf6d5ecd98510e7fbc9e5aec4d21de70f65fea8fecebcd881bd4 SIZE (rust/crates/gimli-0.26.1.crate) = 716168 SHA256 (rust/crates/git2-0.14.2.crate) = 3826a6e0e2215d7a41c2bfc7c9244123969273f3476b939a226aac0ab56e9e3c SIZE (rust/crates/git2-0.14.2.crate) = 196856 SHA256 (rust/crates/glam-0.10.2.crate) = 579160312273c954cc51bd440f059dde741029ac8daf8c84fece76cb77f62c15 SIZE (rust/crates/glam-0.10.2.crate) = 91890 SHA256 (rust/crates/glob-0.3.0.crate) = 9b919933a397b79c37e33b77bb2aa3dc8eb6e165ad809e58ff75bc7db2e34574 SIZE (rust/crates/glob-0.3.0.crate) = 18724 SHA256 (rust/crates/glow-0.9.0.crate) = 4b80b98efaa8a34fce11d60dd2ce2760d5d83c373cbcc73bb87c2a3a84a54108 SIZE (rust/crates/glow-0.9.0.crate) = 136585 SHA256 (rust/crates/glyph_brush-0.7.3.crate) = 21932fbf719272848eec4583740d978203c6e7da4c4e203358f5b95946c97409 SIZE (rust/crates/glyph_brush-0.7.3.crate) = 62263 SHA256 (rust/crates/glyph_brush_draw_cache-0.1.5.crate) = 6010675390f6889e09a21e2c8b575b3ee25667ea8237a8d59423f73cb8c28610 SIZE (rust/crates/glyph_brush_draw_cache-0.1.5.crate) = 64513 SHA256 (rust/crates/glyph_brush_layout-0.2.3.crate) = cc32c2334f00ca5ac3695c5009ae35da21da8c62d255b5b96d56e2597a637a38 SIZE (rust/crates/glyph_brush_layout-0.2.3.crate) = 18500 SHA256 (rust/crates/gpu-alloc-0.4.7.crate) = cbc1b6ca374e81862526786d9cb42357ce03706ed1b8761730caafd02ab91f3a SIZE (rust/crates/gpu-alloc-0.4.7.crate) = 19201 SHA256 (rust/crates/gpu-alloc-types-0.2.0.crate) = 54804d0d6bc9d7f26db4eaec1ad10def69b599315f487d32c334a80d1efe67a5 SIZE (rust/crates/gpu-alloc-types-0.2.0.crate) = 3073 SHA256 (rust/crates/gpu-descriptor-0.1.1.crate) = e8a70f1e87a3840ed6a3e99e02c2b861e4dbdf26f0d07e38f42ea5aff46cfce2 SIZE (rust/crates/gpu-descriptor-0.1.1.crate) = 5598 SHA256 (rust/crates/gpu-descriptor-types-0.1.1.crate) = 363e3677e55ad168fef68cf9de3a4a310b53124c5e784c53a1d70e92d23f2126 SIZE (rust/crates/gpu-descriptor-types-0.1.1.crate) = 1956 SHA256 (rust/crates/guillotiere-0.6.2.crate) = b62d5865c036cb1393e23c50693df631d3f5d7bcca4c04fe4cc0fd592e74a782 SIZE (rust/crates/guillotiere-0.6.2.crate) = 18116 SHA256 (rust/crates/h2-0.3.13.crate) = 37a82c6d637fc9515a4694bbf1cb2457b79d81ce52b3108bdeea58b07dd34a57 SIZE (rust/crates/h2-0.3.13.crate) = 161962 SHA256 (rust/crates/half-1.8.2.crate) = eabb4a44450da02c90444cf74558da904edde8fb4e9035a9a6a4e15445af0bd7 SIZE (rust/crates/half-1.8.2.crate) = 41874 SHA256 (rust/crates/hash32-0.1.1.crate) = d4041af86e63ac4298ce40e5cca669066e75b6f1aa3390fe2561ffa5e1d9f4cc SIZE (rust/crates/hash32-0.1.1.crate) = 10967 SHA256 (rust/crates/hashbrown-0.9.1.crate) = d7afe4a420e3fe79967a00898cc1f4db7c8a49a9333a29f8a4bd76a253d5cd04 SIZE (rust/crates/hashbrown-0.9.1.crate) = 77734 SHA256 (rust/crates/hashbrown-0.11.2.crate) = ab5ef0d4909ef3724cc8cce6ccc8572c5c817592e9285f5464f8e86f8bd3726e SIZE (rust/crates/hashbrown-0.11.2.crate) = 85713 SHA256 (rust/crates/hashbrown-0.12.0.crate) = 8c21d40587b92fa6a6c6e3c1bdbf87d75511db5672f9c93175574b3a00df1758 SIZE (rust/crates/hashbrown-0.12.0.crate) = 90663 SHA256 (rust/crates/hashlink-0.6.0.crate) = d99cf782f0dc4372d26846bec3de7804ceb5df083c2d4462c0b8d2330e894fa8 SIZE (rust/crates/hashlink-0.6.0.crate) = 24952 SHA256 (rust/crates/heapless-0.5.6.crate) = 74911a68a1658cfcfb61bc0ccfbd536e3b6e906f8c2f7883ee50157e3e2184f1 SIZE (rust/crates/heapless-0.5.6.crate) = 59214 SHA256 (rust/crates/heapless-0.6.1.crate) = 634bd4d29cbf24424d0a4bfcbf80c6960129dc24424752a7d1d1390607023422 SIZE (rust/crates/heapless-0.6.1.crate) = 61144 SHA256 (rust/crates/heck-0.3.3.crate) = 6d621efb26863f0e9924c6ac577e8275e5e6b77455db64ffa6c65c904e9e132c SIZE (rust/crates/heck-0.3.3.crate) = 10260 SHA256 (rust/crates/heck-0.4.0.crate) = 2540771e65fc8cb83cd6e8a237f70c319bd5c29f78ed1084ba5d50eeac86f7f9 SIZE (rust/crates/heck-0.4.0.crate) = 11161 SHA256 (rust/crates/hermit-abi-0.1.19.crate) = 62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33 SIZE (rust/crates/hermit-abi-0.1.19.crate) = 9979 SHA256 (rust/crates/hex-0.3.2.crate) = 805026a5d0141ffc30abb3be3173848ad46a1b1664fe632428479619a3644d77 SIZE (rust/crates/hex-0.3.2.crate) = 9053 SHA256 (rust/crates/hibitset-0.6.3.crate) = 93a1bb8316a44459a7d14253c4d28dd7395cbd23cc04a68c46e851b8e46d64b1 SIZE (rust/crates/hibitset-0.6.3.crate) = 22642 SHA256 (rust/crates/http-0.2.6.crate) = 31f4c6746584866f0feabcc69893c5b51beef3831656a968ed7ae254cdc4fd03 SIZE (rust/crates/http-0.2.6.crate) = 106384 SHA256 (rust/crates/http-body-0.4.4.crate) = 1ff4f84919677303da5f147645dbea6b1881f368d03ac84e1dc09031ebd7b2c6 SIZE (rust/crates/http-body-0.4.4.crate) = 7836 SHA256 (rust/crates/httparse-1.6.0.crate) = 9100414882e15fb7feccb4897e5f0ff0ff1ca7d1a86a23208ada4d7a18e6c6c4 SIZE (rust/crates/httparse-1.6.0.crate) = 28175 SHA256 (rust/crates/httpdate-1.0.2.crate) = c4a1e36c821dbe04574f602848a19f742f4fb3c98d40449f11bcad18d6b17421 SIZE (rust/crates/httpdate-1.0.2.crate) = 10673 SHA256 (rust/crates/humantime-2.1.0.crate) = 9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4 SIZE (rust/crates/humantime-2.1.0.crate) = 16749 SHA256 (rust/crates/hyper-0.14.18.crate) = b26ae0a80afebe130861d90abf98e3814a4f28a4c6ffeb5ab8ebb2be311e0ef2 SIZE (rust/crates/hyper-0.14.18.crate) = 179660 SHA256 (rust/crates/hyper-rustls-0.22.1.crate) = 5f9f7a97316d44c0af9b0301e65010573a853a9fc97046d7331d7f6bc0fd5a64 SIZE (rust/crates/hyper-rustls-0.22.1.crate) = 26718 SHA256 (rust/crates/ident_case-1.0.1.crate) = b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39 SIZE (rust/crates/ident_case-1.0.1.crate) = 3492 SHA256 (rust/crates/idna-0.2.3.crate) = 418a0a6fab821475f634efe3ccc45c013f742efe03d853e8d3355d5cb850ecf8 SIZE (rust/crates/idna-0.2.3.crate) = 271023 SHA256 (rust/crates/image-0.24.2.crate) = 28edd9d7bc256be2502e325ac0628bde30b7001b9b52e0abe31a1a9dc2701212 SIZE (rust/crates/image-0.24.2.crate) = 264112 SHA256 (rust/crates/indexmap-1.8.1.crate) = 0f647032dfaa1f8b6dc29bd3edb7bbef4861b8b8007ebb118d6db284fd59f6ee SIZE (rust/crates/indexmap-1.8.1.crate) = 53220 SHA256 (rust/crates/inline_tweak-1.0.8.crate) = 7033e97b20277cc0d043226d1940fa7719ff08d2305d1fc7421e53066d00eb4b SIZE (rust/crates/inline_tweak-1.0.8.crate) = 8109 SHA256 (rust/crates/inotify-0.9.6.crate) = f8069d3ec154eb856955c1c0fbffefbf5f3c40a104ec912d4797314c1801abff SIZE (rust/crates/inotify-0.9.6.crate) = 22971 SHA256 (rust/crates/inotify-sys-0.1.5.crate) = e05c02b5e89bff3b946cedeca278abc628fe811e604f027c45a8aa3cf793d0eb SIZE (rust/crates/inotify-sys-0.1.5.crate) = 6965 SHA256 (rust/crates/inplace_it-0.3.3.crate) = 90953f308a79fe6d62a4643e51f848fbfddcd05975a38e69fdf4ab86a7baf7ca SIZE (rust/crates/inplace_it-0.3.3.crate) = 13145 SHA256 (rust/crates/instant-0.1.12.crate) = 7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c SIZE (rust/crates/instant-0.1.12.crate) = 6128 SHA256 (rust/crates/io-kit-sys-0.1.0.crate) = f21dcc74995dd4cd090b147e79789f8d65959cbfb5f0b118002db869ea3bd0a0 SIZE (rust/crates/io-kit-sys-0.1.0.crate) = 33069 SHA256 (rust/crates/io-lifetimes-0.6.1.crate) = 9448015e586b611e5d322f6703812bbca2f1e709d5773ecd38ddb4e3bb649504 SIZE (rust/crates/io-lifetimes-0.6.1.crate) = 37632 SHA256 (rust/crates/itertools-0.10.3.crate) = a9a9d19fa1e79b6215ff29b9d6880b706147f16e9b1dbb1e4e5947b5b02bc5e3 SIZE (rust/crates/itertools-0.10.3.crate) = 118661 SHA256 (rust/crates/itoa-0.4.8.crate) = b71991ff56294aa922b450139ee08b3bfc70982c6b2c7562771375cf73542dd4 SIZE (rust/crates/itoa-0.4.8.crate) = 11926 SHA256 (rust/crates/itoa-1.0.1.crate) = 1aab8fc367588b89dcee83ab0fd66b72b50b72fa1904d7095045ace2b0c81c35 SIZE (rust/crates/itoa-1.0.1.crate) = 11059 SHA256 (rust/crates/jni-0.19.0.crate) = c6df18c2e3db7e453d3c6ac5b3e9d5182664d28788126d39b91f2d1e22b017ec SIZE (rust/crates/jni-0.19.0.crate) = 65890 SHA256 (rust/crates/jni-sys-0.3.0.crate) = 8eaf4bc02d17cbdd7ff4c7438cafcdf7fb9a4613313ad11b4f8fefe7d3fa0130 SIZE (rust/crates/jni-sys-0.3.0.crate) = 10232 SHA256 (rust/crates/jobserver-0.1.24.crate) = af25a77299a7f711a01975c35a6a424eb6862092cc2d6c72c4ed6cbc56dfc1fa SIZE (rust/crates/jobserver-0.1.24.crate) = 21303 SHA256 (rust/crates/jpeg-decoder-0.2.6.crate) = 9478aa10f73e7528198d75109c8be5cd7d15fb530238040148d5f9a22d4c5b3b SIZE (rust/crates/jpeg-decoder-0.2.6.crate) = 741477 SHA256 (rust/crates/js-sys-0.3.56.crate) = a38fc24e30fd564ce974c02bf1d337caddff65be6cc4735a1f7eab22a7440f04 SIZE (rust/crates/js-sys-0.3.56.crate) = 70520 SHA256 (rust/crates/kernel32-sys-0.2.2.crate) = 7507624b29483431c0ba2d82aece8ca6cdba9382bff4ddd0f7490560c056098d SIZE (rust/crates/kernel32-sys-0.2.2.crate) = 24537 SHA256 (rust/crates/khronos-egl-4.1.0.crate) = 8c2352bd1d0bceb871cb9d40f24360c8133c11d7486b68b5381c1dd1a32015e3 SIZE (rust/crates/khronos-egl-4.1.0.crate) = 27810 SHA256 (rust/crates/kiddo-0.1.7.crate) = 8d9d9b46f84e6d21fda457c8d7a5ed0e50382355194a47f28a3747ce6b5351d4 SIZE (rust/crates/kiddo-0.1.7.crate) = 720854 SHA256 (rust/crates/kiddo-0.2.4.crate) = fc0a5c92307668140bf7d63a03a23e2da0b0453801fd54888c903cb7f723c293 SIZE (rust/crates/kiddo-0.2.4.crate) = 721938 SHA256 (rust/crates/kqueue-1.0.4.crate) = 058a107a784f8be94c7d35c1300f4facced2e93d2fbe5b1452b44e905ddca4a9 SIZE (rust/crates/kqueue-1.0.4.crate) = 11771 SHA256 (rust/crates/kqueue-sys-1.0.3.crate) = 8367585489f01bc55dd27404dcf56b95e6da061a256a666ab23be9ba96a2e587 SIZE (rust/crates/kqueue-sys-1.0.3.crate) = 6673 SHA256 (rust/crates/lazy-bytes-cast-5.0.1.crate) = 10257499f089cd156ad82d0a9cd57d9501fa2c989068992a97eb3c27836f206b SIZE (rust/crates/lazy-bytes-cast-5.0.1.crate) = 4354 SHA256 (rust/crates/lazy_static-1.4.0.crate) = e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646 SIZE (rust/crates/lazy_static-1.4.0.crate) = 10443 SHA256 (rust/crates/lazycell-1.3.0.crate) = 830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55 SIZE (rust/crates/lazycell-1.3.0.crate) = 12502 SHA256 (rust/crates/leb128-0.2.5.crate) = 884e2677b40cc8c339eaefcb701c32ef1fd2493d71118dc0ca4b6a736c93bd67 SIZE (rust/crates/leb128-0.2.5.crate) = 11843 SHA256 (rust/crates/lewton-0.10.2.crate) = 777b48df9aaab155475a83a7df3070395ea1ac6902f5cd062b8f2b028075c030 SIZE (rust/crates/lewton-0.10.2.crate) = 68807 SHA256 (rust/crates/libc-0.2.121.crate) = efaa7b300f3b5fe8eb6bf21ce3895e1751d9665086af2d64b42f19701015ff4f SIZE (rust/crates/libc-0.2.121.crate) = 574702 SHA256 (rust/crates/libgit2-sys-0.13.2+1.4.2.crate) = 3a42de9a51a5c12e00fc0e4ca6bc2ea43582fc6418488e8f615e905d886f258b SIZE (rust/crates/libgit2-sys-0.13.2+1.4.2.crate) = 1492799 SHA256 (rust/crates/libloading-0.6.7.crate) = 351a32417a12d5f7e82c368a66781e307834dae04c6ce0cd4456d52989229883 SIZE (rust/crates/libloading-0.6.7.crate) = 25037 SHA256 (rust/crates/libloading-0.7.3.crate) = efbc0f03f9a775e9f6aed295c6a1ba2253c5757a9e03d55c6caa46a681abcddd SIZE (rust/crates/libloading-0.7.3.crate) = 27378 SHA256 (rust/crates/libm-0.1.4.crate) = 7fc7aa29613bd6a620df431842069224d8bc9011086b1db4c0e0cd47fa03ec9a SIZE (rust/crates/libm-0.1.4.crate) = 110593 SHA256 (rust/crates/libm-0.2.2.crate) = 33a33a362ce288760ec6a508b94caaec573ae7d3bbbd91b87aa0bad4456839db SIZE (rust/crates/libm-0.2.2.crate) = 113226 SHA256 (rust/crates/libmimalloc-sys-0.1.25.crate) = 11ca136052550448f55df7898c6dbe651c6b574fe38a0d9ea687a9f8088a2e2c SIZE (rust/crates/libmimalloc-sys-0.1.25.crate) = 1131254 SHA256 (rust/crates/libsqlite3-sys-0.20.1.crate) = 64d31059f22935e6c31830db5249ba2b7ecd54fd73a9909286f0a67aa55c2fbd SIZE (rust/crates/libsqlite3-sys-0.20.1.crate) = 2306064 SHA256 (rust/crates/libudev-sys-0.1.4.crate) = 3c8469b4a23b962c1396b9b451dda50ef5b283e8dd309d69033475fa9b334324 SIZE (rust/crates/libudev-sys-0.1.4.crate) = 6177 SHA256 (rust/crates/libz-sys-1.1.5.crate) = 6f35facd4a5673cb5a48822be2be1d4236c1c99cb4113cab7061ac720d5bf859 SIZE (rust/crates/libz-sys-1.1.5.crate) = 1494933 SHA256 (rust/crates/linked-hash-map-0.5.4.crate) = 7fb9b38af92608140b86b693604b9ffcc5824240a484d1ecd4795bacb2fe88f3 SIZE (rust/crates/linked-hash-map-0.5.4.crate) = 16166 SHA256 (rust/crates/linux-raw-sys-0.0.42.crate) = 5284f00d480e1c39af34e72f8ad60b94f47007e3481cd3b731c1d67190ddc7b7 SIZE (rust/crates/linux-raw-sys-0.0.42.crate) = 756837 SHA256 (rust/crates/lock_api-0.3.4.crate) = c4da24a77a3d8a6d4862d95f72e6fdb9c09a643ecdb402d754004a557f2bec75 SIZE (rust/crates/lock_api-0.3.4.crate) = 18750 SHA256 (rust/crates/lock_api-0.4.7.crate) = 327fa5b6a6940e4699ec49a9beae1ea4845c6bab9314e4f84ac68742139d8c53 SIZE (rust/crates/lock_api-0.4.7.crate) = 25371 SHA256 (rust/crates/log-0.4.16.crate) = 6389c490849ff5bc16be905ae24bc913a9c8892e19b2341dbc175e14c341c2b8 SIZE (rust/crates/log-0.4.16.crate) = 37758 SHA256 (rust/crates/loom-0.5.4.crate) = edc5c7d328e32cc4954e8e01193d7f0ef5ab257b5090b70a964e099a36034309 SIZE (rust/crates/loom-0.5.4.crate) = 68124 SHA256 (rust/crates/loupe-0.1.3.crate) = 9b6a72dfa44fe15b5e76b94307eeb2ff995a8c5b283b55008940c02e0c5b634d SIZE (rust/crates/loupe-0.1.3.crate) = 9650 SHA256 (rust/crates/loupe-derive-0.1.3.crate) = c0fbfc88337168279f2e9ae06e157cfed4efd3316e14dc96ed074d4f2e6c5952 SIZE (rust/crates/loupe-derive-0.1.3.crate) = 3127 SHA256 (rust/crates/lz-fear-0.1.1.crate) = 06aad1ce45e4ccf7a8d7d43e0c3ad38dc5d2255174a5f29a3c39d961fbc6181d SIZE (rust/crates/lz-fear-0.1.1.crate) = 24214 SHA256 (rust/crates/mach-0.2.3.crate) = 86dd2487cdfea56def77b88438a2c915fb45113c5319bfe7e14306ca4cd0b0e1 SIZE (rust/crates/mach-0.2.3.crate) = 18940 SHA256 (rust/crates/mach-0.3.2.crate) = b823e83b2affd8f40a9ee8c29dbc56404c1e34cd2710921f2801e2cf29527afa SIZE (rust/crates/mach-0.3.2.crate) = 19611 SHA256 (rust/crates/malloc_buf-0.0.6.crate) = 62bb907fe88d54d8d9ce32a3cceab4218ed2f6b7d35617cafe9adf84e43919cb SIZE (rust/crates/malloc_buf-0.0.6.crate) = 1239 SHA256 (rust/crates/matchers-0.1.0.crate) = 8263075bb86c5a1b1427b5ae862e8889656f126e9f77c484496e8b47cf5c5558 SIZE (rust/crates/matchers-0.1.0.crate) = 6948 SHA256 (rust/crates/matches-0.1.9.crate) = a3e378b66a060d48947b590737b30a1be76706c8dd7b8ba0f2fe3989c68a853f SIZE (rust/crates/matches-0.1.9.crate) = 2246 SHA256 (rust/crates/maybe-uninit-2.0.0.crate) = 60302e4db3a61da70c0cb7991976248362f30319e88850c487b9b95bbf059e00 SIZE (rust/crates/maybe-uninit-2.0.0.crate) = 11809 SHA256 (rust/crates/memchr-2.4.1.crate) = 308cc39be01b73d0d18f82a0e7b2a3df85245f84af96fdddc5d202d27e47b86a SIZE (rust/crates/memchr-2.4.1.crate) = 64977 SHA256 (rust/crates/memmap-0.7.0.crate) = 6585fd95e7bb50d6cc31e20d4cf9afb4e2ba16c5846fc76793f11218da9c475b SIZE (rust/crates/memmap-0.7.0.crate) = 15214 SHA256 (rust/crates/memmap2-0.1.0.crate) = d9b70ca2a6103ac8b665dc150b142ef0e4e89df640c9e6cf295d189c3caebe5a SIZE (rust/crates/memmap2-0.1.0.crate) = 17685 SHA256 (rust/crates/memmap2-0.3.1.crate) = 00b6c2ebff6180198788f5db08d7ce3bc1d0b617176678831a7510825973e357 SIZE (rust/crates/memmap2-0.3.1.crate) = 18393 SHA256 (rust/crates/memmap2-0.5.3.crate) = 057a3db23999c867821a7a59feb06a578fcb03685e983dff90daf9e7d24ac08f SIZE (rust/crates/memmap2-0.5.3.crate) = 24967 SHA256 (rust/crates/memoffset-0.5.6.crate) = 043175f069eda7b85febe4a74abbaeff828d9f8b448515d3151a14a3542811aa SIZE (rust/crates/memoffset-0.5.6.crate) = 7382 SHA256 (rust/crates/memoffset-0.6.5.crate) = 5aa361d4faea93603064a027415f07bd8e1d5c88c9fbf68bf56a285428fd79ce SIZE (rust/crates/memoffset-0.6.5.crate) = 7686 SHA256 (rust/crates/metal-0.22.0.crate) = 1c12e48c737ee9a55e8bb2352bcde588f79ae308d3529ee888f7cc0f469b5777 SIZE (rust/crates/metal-0.22.0.crate) = 679289 SHA256 (rust/crates/mimalloc-0.1.29.crate) = 2f64ad83c969af2e732e907564deb0d0ed393cec4af80776f77dd77a1a427698 SIZE (rust/crates/mimalloc-0.1.29.crate) = 4988 SHA256 (rust/crates/minifb-0.22.0.crate) = 6e52abe7ff0cb18cd88a6e9d7a91ca1ff74876587e7b6b1f30d1aeee9aa89aed SIZE (rust/crates/minifb-0.22.0.crate) = 85533 SHA256 (rust/crates/minimal-lexical-0.2.1.crate) = 68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a SIZE (rust/crates/minimal-lexical-0.2.1.crate) = 94841 SHA256 (rust/crates/miniz_oxide-0.5.1.crate) = d2b29bd4bc3f33391105ebee3589c19197c4271e3e5a9ec9bfe8127eeff8f082 SIZE (rust/crates/miniz_oxide-0.5.1.crate) = 52418 SHA256 (rust/crates/mio-0.7.14.crate) = 8067b404fe97c70829f082dec8bcf4f71225d7eaea1d8645349cb76fa06205cc SIZE (rust/crates/mio-0.7.14.crate) = 87429 SHA256 (rust/crates/mio-0.8.2.crate) = 52da4364ffb0e4fe33a9841a98a3f3014fb964045ce4f7a45a398243c8d6b0c9 SIZE (rust/crates/mio-0.8.2.crate) = 88272 SHA256 (rust/crates/mio-misc-1.2.2.crate) = b47412f3a52115b936ff2a229b803498c7b4d332adeb87c2f1498c9da54c398c SIZE (rust/crates/mio-misc-1.2.2.crate) = 11898 SHA256 (rust/crates/miow-0.3.7.crate) = b9f1c5b025cda876f66ef43a113f91ebc9f4ccef34843000e0adf6ebbab84e21 SIZE (rust/crates/miow-0.3.7.crate) = 24563 SHA256 (rust/crates/mopa-0.2.2.crate) = a785740271256c230f57462d3b83e52f998433a7062fc18f96d5999474a9f915 SIZE (rust/crates/mopa-0.2.2.crate) = 10773 SHA256 (rust/crates/more-asserts-0.2.2.crate) = 7843ec2de400bcbc6a6328c958dc38e5359da6e93e72e37bc5246bf1ae776389 SIZE (rust/crates/more-asserts-0.2.2.crate) = 7033 SHA256 (rust/crates/mumble-link-0.1.0.crate) = 7a92ff7d87d3ca752fda7a1ccfcde284ea3de84fc8b8a0c43bf434652226bd95 SIZE (rust/crates/mumble-link-0.1.0.crate) = 10346 SHA256 (rust/crates/native-dialog-0.6.3.crate) = 0ab637f328b31bd0855c43bd38a4a4455e74324d9e74e0aac6a803422f43abc6 SIZE (rust/crates/native-dialog-0.6.3.crate) = 18812 SHA256 (rust/crates/ndk-0.3.0.crate) = 8794322172319b972f528bf90c6b467be0079f1fa82780ffb431088e741a73ab SIZE (rust/crates/ndk-0.3.0.crate) = 39011 SHA256 (rust/crates/ndk-0.6.0.crate) = 2032c77e030ddee34a6787a64166008da93f6a352b629261d0fee232b8742dd4 SIZE (rust/crates/ndk-0.6.0.crate) = 39828 SHA256 (rust/crates/ndk-context-0.1.0.crate) = 4e3c5cc68637e21fe8f077f6a1c9e0b9ca495bb74895226b476310f613325884 SIZE (rust/crates/ndk-context-0.1.0.crate) = 2029 SHA256 (rust/crates/ndk-glue-0.3.0.crate) = c5caf0c24d51ac1c905c27d4eda4fa0635bbe0de596b8f79235e0b17a4d29385 SIZE (rust/crates/ndk-glue-0.3.0.crate) = 4026 SHA256 (rust/crates/ndk-glue-0.6.1.crate) = d9ffb7443daba48349d545028777ca98853b018b4c16624aa01223bc29e078da SIZE (rust/crates/ndk-glue-0.6.1.crate) = 5112 SHA256 (rust/crates/ndk-macro-0.2.0.crate) = 05d1c6307dc424d0f65b9b06e94f88248e6305726b14729fd67a5e47b2dc481d SIZE (rust/crates/ndk-macro-0.2.0.crate) = 4949 SHA256 (rust/crates/ndk-macro-0.3.0.crate) = 0df7ac00c4672f9d5aece54ee3347520b7e20f158656c7db2e6de01902eb7a6c SIZE (rust/crates/ndk-macro-0.3.0.crate) = 4884 SHA256 (rust/crates/ndk-sys-0.2.2.crate) = e1bcdd74c20ad5d95aacd60ef9ba40fdf77f767051040541df557b7a9b2a2121 SIZE (rust/crates/ndk-sys-0.2.2.crate) = 279365 SHA256 (rust/crates/ndk-sys-0.3.0.crate) = 6e5a6ae77c8ee183dcbbba6150e2e6b9f3f4196a7666c02a715a95692ec1fa97 SIZE (rust/crates/ndk-sys-0.3.0.crate) = 282815 SHA256 (rust/crates/nibble_vec-0.1.0.crate) = 77a5d83df9f36fe23f0c3648c6bbb8b0298bb5f1939c8f2704431371f4b84d43 SIZE (rust/crates/nibble_vec-0.1.0.crate) = 11796 SHA256 (rust/crates/nix-0.18.0.crate) = 83450fe6a6142ddd95fb064b746083fc4ef1705fe81f64a64e1d4b39f54a1055 SIZE (rust/crates/nix-0.18.0.crate) = 209962 SHA256 (rust/crates/nix-0.20.0.crate) = fa9b4819da1bc61c0ea48b63b7bc8604064dd43013e7cc325df098d49cd7c18a SIZE (rust/crates/nix-0.20.0.crate) = 216983 SHA256 (rust/crates/nix-0.22.3.crate) = e4916f159ed8e5de0082076562152a76b7a1f64a01fd9d1e0fea002c37624faf SIZE (rust/crates/nix-0.22.3.crate) = 230252 SHA256 (rust/crates/nix-0.23.1.crate) = 9f866317acbd3a240710c63f065ffb1e4fd466259045ccb504130b7f668f35c6 SIZE (rust/crates/nix-0.23.1.crate) = 240531 SHA256 (rust/crates/noise-0.7.0.crate) = 82051dd6745d5184c6efb7bc8be14892a7f6d4f3ad6dbf754d1c7d7d5fe24b43 SIZE (rust/crates/noise-0.7.0.crate) = 68306 SHA256 (rust/crates/nom-4.2.3.crate) = 2ad2a91a8e869eeb30b9cb3119ae87773a8f4ae617f41b1eb9c154b2905f7bd6 SIZE (rust/crates/nom-4.2.3.crate) = 115343 SHA256 (rust/crates/nom-5.1.2.crate) = ffb4262d26ed83a1c0a33a38fe2bb15797329c85770da05e6b828ddb782627af SIZE (rust/crates/nom-5.1.2.crate) = 136174 SHA256 (rust/crates/nom-7.1.1.crate) = a8903e5a29a317527874d0402f867152a3d21c908bb0b933e416c65e301d4c36 SIZE (rust/crates/nom-7.1.1.crate) = 115818 SHA256 (rust/crates/notify-5.0.0-pre.15.crate) = 553f9844ad0b0824605c20fb55a661679782680410abfb1a8144c2e7e437e7a7 SIZE (rust/crates/notify-5.0.0-pre.15.crate) = 57624 SHA256 (rust/crates/ntapi-0.3.7.crate) = c28774a7fd2fbb4f0babd8237ce554b73af68021b5f695a3cebd6c59bac0980f SIZE (rust/crates/ntapi-0.3.7.crate) = 126994 SHA256 (rust/crates/num-0.2.1.crate) = b8536030f9fea7127f841b45bb6243b27255787fb4eb83958aa1ef9d2fdc0c36 SIZE (rust/crates/num-0.2.1.crate) = 9082 SHA256 (rust/crates/num-0.4.0.crate) = 43db66d1170d347f9a065114077f7dccb00c1b9478c89384490a3425279a4606 SIZE (rust/crates/num-0.4.0.crate) = 9490 SHA256 (rust/crates/num-bigint-0.2.6.crate) = 090c7f9998ee0ff65aa5b723e4009f7b217707f1fb5ea551329cc4d6231fb304 SIZE (rust/crates/num-bigint-0.2.6.crate) = 87275 SHA256 (rust/crates/num-bigint-0.4.3.crate) = f93ab6289c7b344a8a9f60f88d80aa20032336fe78da341afc91c8a2341fc75f SIZE (rust/crates/num-bigint-0.4.3.crate) = 97799 SHA256 (rust/crates/num-complex-0.2.4.crate) = b6b19411a9719e753aff12e5187b74d60d3dc449ec3f4dc21e3989c3f554bc95 SIZE (rust/crates/num-complex-0.2.4.crate) = 24679 SHA256 (rust/crates/num-complex-0.4.0.crate) = 26873667bbbb7c5182d4a37c1add32cdf09f841af72da53318fdb81543c15085 SIZE (rust/crates/num-complex-0.4.0.crate) = 24805 SHA256 (rust/crates/num-derive-0.3.3.crate) = 876a53fff98e03a936a674b29568b0e605f06b29372c2489ff4de23f1949743d SIZE (rust/crates/num-derive-0.3.3.crate) = 14545 SHA256 (rust/crates/num-integer-0.1.44.crate) = d2cc698a63b549a70bc047073d2949cce27cd1c7b0a4a862d08a8031bc2801db SIZE (rust/crates/num-integer-0.1.44.crate) = 22216 SHA256 (rust/crates/num-iter-0.1.42.crate) = b2021c8337a54d21aca0d59a92577a029af9431cb59b909b03252b9c164fad59 SIZE (rust/crates/num-iter-0.1.42.crate) = 10450 SHA256 (rust/crates/num-rational-0.2.4.crate) = 5c000134b5dbf44adc5cb772486d335293351644b801551abe8f75c84cfa4aef SIZE (rust/crates/num-rational-0.2.4.crate) = 21694 SHA256 (rust/crates/num-rational-0.4.0.crate) = d41702bd167c2df5520b384281bc111a4b5efcf7fbc4c9c222c815b07e0a6a6a SIZE (rust/crates/num-rational-0.4.0.crate) = 26428 SHA256 (rust/crates/num-traits-0.2.14.crate) = 9a64b1ec5cda2586e284722486d802acf1f7dbdc623e2bfc57e65ca1cd099290 SIZE (rust/crates/num-traits-0.2.14.crate) = 45476 SHA256 (rust/crates/num_cpus-1.13.1.crate) = 19e64526ebdee182341572e50e9ad03965aa510cd94427a4549448f285e957a1 SIZE (rust/crates/num_cpus-1.13.1.crate) = 14752 SHA256 (rust/crates/num_enum-0.5.7.crate) = cf5395665662ef45796a4ff5486c5d41d29e0c09640af4c5f17fd94ee2c119c9 SIZE (rust/crates/num_enum-0.5.7.crate) = 15199 SHA256 (rust/crates/num_enum_derive-0.5.7.crate) = 3b0498641e53dd6ac1a4f22547548caa6864cc4933784319cd1775271c5a46ce SIZE (rust/crates/num_enum_derive-0.5.7.crate) = 12225 SHA256 (rust/crates/num_threads-0.1.5.crate) = aba1801fb138d8e85e11d0fc70baf4fe1cdfffda7c6cd34a854905df588e5ed0 SIZE (rust/crates/num_threads-0.1.5.crate) = 7109 SHA256 (rust/crates/objc-0.2.7.crate) = 915b1b472bc21c53464d6c8461c9d3af805ba1ef837e1cac254428f4a77177b1 SIZE (rust/crates/objc-0.2.7.crate) = 22036 SHA256 (rust/crates/objc-foundation-0.1.1.crate) = 1add1b659e36c9607c7aab864a76c7a4c2760cd0cd2e120f3fb8b952c7e22bf9 SIZE (rust/crates/objc-foundation-0.1.1.crate) = 9063 SHA256 (rust/crates/objc_exception-0.1.2.crate) = ad970fb455818ad6cba4c122ad012fae53ae8b4795f86378bce65e4f6bab2ca4 SIZE (rust/crates/objc_exception-0.1.2.crate) = 2251 SHA256 (rust/crates/objc_id-0.1.1.crate) = c92d4ddb4bd7b50d730c215ff871754d0da6b2178849f8a2a2ab69712d0c073b SIZE (rust/crates/objc_id-0.1.1.crate) = 3258 SHA256 (rust/crates/object-0.28.3.crate) = 40bec70ba014595f99f7aa110b84331ffe1ee9aece7fe6f387cc7e3ecda4d456 SIZE (rust/crates/object-0.28.3.crate) = 233545 SHA256 (rust/crates/oboe-0.4.5.crate) = 2463c8f2e19b4e0d0710a21f8e4011501ff28db1c95d7a5482a553b2100502d2 SIZE (rust/crates/oboe-0.4.5.crate) = 23850 SHA256 (rust/crates/oboe-sys-0.4.5.crate) = 3370abb7372ed744232c12954d920d1a40f1c4686de9e79e800021ef492294bd SIZE (rust/crates/oboe-sys-0.4.5.crate) = 140656 SHA256 (rust/crates/ogg-0.8.0.crate) = 6951b4e8bf21c8193da321bcce9c9dd2e13c858fe078bf9054a288b419ae5d6e SIZE (rust/crates/ogg-0.8.0.crate) = 27128 SHA256 (rust/crates/once_cell-1.10.0.crate) = 87f3e037eac156d1775da914196f0f37741a274155e34a0b7e427c35d2a2ecb9 SIZE (rust/crates/once_cell-1.10.0.crate) = 30414 SHA256 (rust/crates/oorandom-11.1.3.crate) = 0ab1bc2a289d34bd04a330323ac98a1b4bc82c9d9fcb1e66b63caa84da26b575 SIZE (rust/crates/oorandom-11.1.3.crate) = 10068 SHA256 (rust/crates/openssl-probe-0.1.5.crate) = ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf SIZE (rust/crates/openssl-probe-0.1.5.crate) = 7227 SHA256 (rust/crates/orbclient-0.3.32.crate) = 2d3aa1482d3a9cb7547932f54a20910090073e81b3b7b236277c91698a10f83e SIZE (rust/crates/orbclient-0.3.32.crate) = 1326505 SHA256 (rust/crates/ordered-float-1.1.1.crate) = 3305af35278dd29f46fcdd139e0b1fbfae2153f0e5928b39b035542dd31e37b7 SIZE (rust/crates/ordered-float-1.1.1.crate) = 9983 SHA256 (rust/crates/ordered-float-2.10.0.crate) = 7940cf2ca942593318d07fcf2596cdca60a85c9e7fab408a5e21a4f9dcd40d87 SIZE (rust/crates/ordered-float-2.10.0.crate) = 15589 SHA256 (rust/crates/ordered-float-3.0.0.crate) = 96bcbab4bfea7a59c2c0fe47211a1ac4e3e96bea6eb446d704f310bc5c732ae2 SIZE (rust/crates/ordered-float-3.0.0.crate) = 15900 SHA256 (rust/crates/os_str_bytes-6.0.0.crate) = 8e22443d1643a904602595ba1cd8f7d896afe56d26712531c5ff73a15b2fbf64 SIZE (rust/crates/os_str_bytes-6.0.0.crate) = 21046 SHA256 (rust/crates/owned_ttf_parser-0.6.0.crate) = 9f923fb806c46266c02ab4a5b239735c144bdeda724a50ed058e5226f594cde3 SIZE (rust/crates/owned_ttf_parser-0.6.0.crate) = 20574 SHA256 (rust/crates/owned_ttf_parser-0.15.0.crate) = 4fb1e509cfe7a12db2a90bfa057dfcdbc55a347f5da677c506b53dd099cfec9d SIZE (rust/crates/owned_ttf_parser-0.15.0.crate) = 23088 -SHA256 (rust/crates/packed_simd_2-0.3.7.crate) = defdcfef86dcc44ad208f71d9ff4ce28df6537a4e0d6b0e8e845cb8ca10059a6 -SIZE (rust/crates/packed_simd_2-0.3.7.crate) = 97413 +SHA256 (rust/crates/packed_simd_2-0.3.8.crate) = a1914cd452d8fccd6f9db48147b29fd4ae05bea9dc5d9ad578509f72415de282 +SIZE (rust/crates/packed_simd_2-0.3.8.crate) = 97388 SHA256 (rust/crates/parking_lot-0.10.2.crate) = d3a704eb390aafdc107b0e392f56a82b668e3a71366993b5340f5833fd62505e SIZE (rust/crates/parking_lot-0.10.2.crate) = 39536 SHA256 (rust/crates/parking_lot-0.11.2.crate) = 7d17b78036a60663b797adeaee46f5c9dfebb86948d1255007a1d6be0271ff99 SIZE (rust/crates/parking_lot-0.11.2.crate) = 39869 SHA256 (rust/crates/parking_lot-0.12.0.crate) = 87f5ec2493a61ac0506c0f4199f99070cbe83857b0337006a30f3e6719b8ef58 SIZE (rust/crates/parking_lot-0.12.0.crate) = 39761 SHA256 (rust/crates/parking_lot_core-0.7.2.crate) = d58c7c768d4ba344e3e8d72518ac13e259d7c7ade24167003b8488e10b6740a3 SIZE (rust/crates/parking_lot_core-0.7.2.crate) = 33875 SHA256 (rust/crates/parking_lot_core-0.8.5.crate) = d76e8e1493bcac0d2766c42737f34458f1c8c50c0d23bcb24ea953affb273216 SIZE (rust/crates/parking_lot_core-0.8.5.crate) = 32466 SHA256 (rust/crates/parking_lot_core-0.9.2.crate) = 995f667a6c822200b0433ac218e05582f0e2efa1b922a3fd2fbaadc5f87bab37 SIZE (rust/crates/parking_lot_core-0.9.2.crate) = 32254 SHA256 (rust/crates/parse-zoneinfo-0.3.0.crate) = c705f256449c60da65e11ff6626e0c16a0a0b96aaa348de61376b249bc340f41 SIZE (rust/crates/parse-zoneinfo-0.3.0.crate) = 76590 SHA256 (rust/crates/pdqselect-0.1.0.crate) = 4ec91767ecc0a0bbe558ce8c9da33c068066c57ecc8bb8477ef8c1ad3ef77c27 SIZE (rust/crates/pdqselect-0.1.0.crate) = 9653 SHA256 (rust/crates/peeking_take_while-0.1.2.crate) = 19b17cddbe7ec3f8bc800887bab5e717348c95ea2ca0b1bf0837fb964dc67099 SIZE (rust/crates/peeking_take_while-0.1.2.crate) = 6697 SHA256 (rust/crates/pem-1.0.2.crate) = e9a3b09a20e374558580a4914d3b7d89bd61b954a5a5e1dcbea98753addb1947 SIZE (rust/crates/pem-1.0.2.crate) = 10305 SHA256 (rust/crates/percent-encoding-2.1.0.crate) = d4fd5641d01c8f18a23da7b6fe29298ff4b55afcccdf78973b24cf3175fee32e SIZE (rust/crates/percent-encoding-2.1.0.crate) = 9748 SHA256 (rust/crates/petgraph-0.4.13.crate) = 9c3659d1ee90221741f65dd128d9998311b0e40c5d3c23a62445938214abce4f SIZE (rust/crates/petgraph-0.4.13.crate) = 111936 SHA256 (rust/crates/petgraph-0.5.1.crate) = 467d164a6de56270bd7c4d070df81d07beace25012d5103ced4e9ff08d6afdb7 SIZE (rust/crates/petgraph-0.5.1.crate) = 147173 SHA256 (rust/crates/petgraph-0.6.0.crate) = 4a13a2fa9d0b63e5f22328828741e523766fff0ee9e779316902290dff3f824f SIZE (rust/crates/petgraph-0.6.0.crate) = 182063 SHA256 (rust/crates/phf-0.10.1.crate) = fabbf1ead8a5bcbc20f5f8b939ee3f5b0f6f281b6ad3468b84656b658b455259 SIZE (rust/crates/phf-0.10.1.crate) = 5406 SHA256 (rust/crates/phf_codegen-0.10.0.crate) = 4fb1c3a8bc4dd4e5cfce29b44ffc14bedd2ee294559a294e2a4d4c9e9a6a13cd SIZE (rust/crates/phf_codegen-0.10.0.crate) = 3402 SHA256 (rust/crates/phf_generator-0.10.0.crate) = 5d5285893bb5eb82e6aaf5d59ee909a06a16737a8970984dd7746ba9283498d6 SIZE (rust/crates/phf_generator-0.10.0.crate) = 7525 SHA256 (rust/crates/phf_shared-0.10.0.crate) = b6796ad771acdc0123d2a88dc428b5e38ef24456743ddb1744ed628f9815c096 SIZE (rust/crates/phf_shared-0.10.0.crate) = 4095 SHA256 (rust/crates/pin-project-lite-0.2.8.crate) = e280fbe77cc62c91527259e9442153f4688736748d24660126286329742b4c6c SIZE (rust/crates/pin-project-lite-0.2.8.crate) = 27847 SHA256 (rust/crates/pin-utils-0.1.0.crate) = 8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184 SIZE (rust/crates/pin-utils-0.1.0.crate) = 7580 SHA256 (rust/crates/piston-float-0.3.0.crate) = b058c3a640efd4bcf63266512e4bb03187192c1b29edd38b16d5a014613e3199 SIZE (rust/crates/piston-float-0.3.0.crate) = 3110 SHA256 (rust/crates/piston-viewport-0.5.0.crate) = 7d96dd995f7dabe6d57cda668ec0fda39d6fe6e1e0b23f772582f383f2013611 SIZE (rust/crates/piston-viewport-0.5.0.crate) = 2747 SHA256 (rust/crates/pistoncore-input-0.24.0.crate) = 0c612ce242c7bac8e96426a0ca34275fd980af440f0cca7c6c0e840ef8a4052f SIZE (rust/crates/pistoncore-input-0.24.0.crate) = 17859 SHA256 (rust/crates/pkg-config-0.3.25.crate) = 1df8c4ec4b0627e53bdf214615ad287367e482558cf84b109250b37464dc03ae SIZE (rust/crates/pkg-config-0.3.25.crate) = 16838 SHA256 (rust/crates/plotters-0.3.0.crate) = 45ca0ae5f169d0917a7c7f5a9c1a3d3d9598f18f529dd2b8373ed988efea307a SIZE (rust/crates/plotters-0.3.0.crate) = 3242931 SHA256 (rust/crates/plotters-backend-0.3.2.crate) = d88417318da0eaf0fdcdb51a0ee6c3bed624333bff8f946733049380be67ac1c SIZE (rust/crates/plotters-backend-0.3.2.crate) = 13524 SHA256 (rust/crates/plotters-svg-0.3.1.crate) = 521fa9638fa597e1dc53e9412a4f9cefb01187ee1f7413076f9e6749e2885ba9 SIZE (rust/crates/plotters-svg-0.3.1.crate) = 7596 SHA256 (rust/crates/png-0.17.5.crate) = dc38c0ad57efb786dd57b9864e5b18bae478c00c824dc55a38bbc9da95dde3ba SIZE (rust/crates/png-0.17.5.crate) = 80450 SHA256 (rust/crates/ppv-lite86-0.2.16.crate) = eb9f9e6e233e5c4a35559a617bf40a4ec447db2e84c20b55a6f83167b7e57872 SIZE (rust/crates/ppv-lite86-0.2.16.crate) = 22245 SHA256 (rust/crates/proc-macro-crate-0.1.5.crate) = 1d6ea3c4595b96363c13943497db34af4460fb474a95c43f4446ad341b8c9785 SIZE (rust/crates/proc-macro-crate-0.1.5.crate) = 8096 SHA256 (rust/crates/proc-macro-crate-1.1.3.crate) = e17d47ce914bf4de440332250b0edd23ce48c005f59fab39d3335866b114f11a SIZE (rust/crates/proc-macro-crate-1.1.3.crate) = 8758 SHA256 (rust/crates/proc-macro-error-1.0.4.crate) = da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c SIZE (rust/crates/proc-macro-error-1.0.4.crate) = 25293 SHA256 (rust/crates/proc-macro-error-attr-1.0.4.crate) = a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869 SIZE (rust/crates/proc-macro-error-attr-1.0.4.crate) = 7971 SHA256 (rust/crates/proc-macro-hack-0.5.19.crate) = dbf0c48bc1d91375ae5c3cd81e3722dff1abcf81a30960240640d223f59fe0e5 SIZE (rust/crates/proc-macro-hack-0.5.19.crate) = 15556 SHA256 (rust/crates/proc-macro2-0.4.30.crate) = cf3d2011ab5c909338f7887f4fc896d35932e29146c12c8d01da6b22a80ba759 SIZE (rust/crates/proc-macro2-0.4.30.crate) = 34731 SHA256 (rust/crates/proc-macro2-1.0.40.crate) = dd96a1e8ed2596c337f8eae5f24924ec83f5ad5ab21ea8e455d3566c69fbcaf7 SIZE (rust/crates/proc-macro2-1.0.40.crate) = 40559 SHA256 (rust/crates/profiling-1.0.6.crate) = 2f61dcf0b917cd75d4521d7343d1ffff3d1583054133c9b5cbea3375c703c40d SIZE (rust/crates/profiling-1.0.6.crate) = 1689290 SHA256 (rust/crates/profiling-procmacros-1.0.6.crate) = 98eee3c112f2a6f784b6713fe1d7fb7d6506e066121c0a49371fdb976f72bae5 SIZE (rust/crates/profiling-procmacros-1.0.6.crate) = 1651 SHA256 (rust/crates/prometheus-0.13.0.crate) = b7f64969ffd5dd8f39bd57a68ac53c163a095ed9d0fb707146da1b27025a3504 SIZE (rust/crates/prometheus-0.13.0.crate) = 81774 SHA256 (rust/crates/prometheus-hyper-0.1.4.crate) = 8726fd64f2941cc80d6739a7d001d756a22b660737839fd7b15202f5cb7f4bf6 SIZE (rust/crates/prometheus-hyper-0.1.4.crate) = 14649 SHA256 (rust/crates/ptr_meta-0.1.4.crate) = 0738ccf7ea06b608c10564b31debd4f5bc5e197fc8bfe088f68ae5ce81e7a4f1 SIZE (rust/crates/ptr_meta-0.1.4.crate) = 5754 SHA256 (rust/crates/ptr_meta_derive-0.1.4.crate) = 16b845dbfca988fa33db069c0e230574d15a3088f147a87b64c7589eb662c9ac SIZE (rust/crates/ptr_meta_derive-0.1.4.crate) = 2302 SHA256 (rust/crates/quick-xml-0.22.0.crate) = 8533f14c8382aaad0d592c812ac3b826162128b65662331e1127b45c3d18536b SIZE (rust/crates/quick-xml-0.22.0.crate) = 132066 SHA256 (rust/crates/quinn-0.8.2.crate) = d147472bc9a09f13b06c044787b6683cdffa02e2865b7f0fb53d67c49ed2988e SIZE (rust/crates/quinn-0.8.2.crate) = 51438 SHA256 (rust/crates/quinn-proto-0.8.2.crate) = 359c5eb33845f3ee05c229e65f87cdbc503eea394964b8f1330833d460b4ff3e SIZE (rust/crates/quinn-proto-0.8.2.crate) = 148676 SHA256 (rust/crates/quinn-udp-0.1.1.crate) = df185e5e5f7611fa6e628ed8f9633df10114b03bbaecab186ec55822c44ac727 SIZE (rust/crates/quinn-udp-0.1.1.crate) = 8494 SHA256 (rust/crates/quote-0.6.13.crate) = 6ce23b6b870e8f94f81fb0a363d65d86675884b34a09043c81e5562f11c1f8e1 SIZE (rust/crates/quote-0.6.13.crate) = 17475 SHA256 (rust/crates/quote-1.0.20.crate) = 3bcdf212e9776fbcb2d23ab029360416bb1706b1aea2d1a5ba002727cbcab804 SIZE (rust/crates/quote-1.0.20.crate) = 28160 SHA256 (rust/crates/radium-0.6.2.crate) = 643f8f41a8ebc4c5dc4515c82bb8abd397b527fc20fd681b7c011c2aee5d44fb SIZE (rust/crates/radium-0.6.2.crate) = 9930 SHA256 (rust/crates/radix_trie-0.2.1.crate) = c069c179fcdc6a2fe24d8d18305cf085fdbd4f922c041943e203685d6a1c58fd SIZE (rust/crates/radix_trie-0.2.1.crate) = 251366 SHA256 (rust/crates/rand-0.7.3.crate) = 6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03 SIZE (rust/crates/rand-0.7.3.crate) = 112246 SHA256 (rust/crates/rand-0.8.5.crate) = 34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404 SIZE (rust/crates/rand-0.8.5.crate) = 87113 SHA256 (rust/crates/rand_chacha-0.2.2.crate) = f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402 SIZE (rust/crates/rand_chacha-0.2.2.crate) = 13267 SHA256 (rust/crates/rand_chacha-0.3.1.crate) = e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88 SIZE (rust/crates/rand_chacha-0.3.1.crate) = 15251 SHA256 (rust/crates/rand_core-0.5.1.crate) = 90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19 SIZE (rust/crates/rand_core-0.5.1.crate) = 21116 SHA256 (rust/crates/rand_core-0.6.3.crate) = d34f1408f55294453790c48b2f1ebbb1c5b4b7563eb1f418bcfcfdbb06ebb4e7 SIZE (rust/crates/rand_core-0.6.3.crate) = 21938 SHA256 (rust/crates/rand_distr-0.4.3.crate) = 32cb0b9bc82b0a0876c2dd994a7e7a2683d3e7390ca40e6886785ef0c7e3ee31 SIZE (rust/crates/rand_distr-0.4.3.crate) = 58255 SHA256 (rust/crates/rand_hc-0.2.0.crate) = ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c SIZE (rust/crates/rand_hc-0.2.0.crate) = 11670 SHA256 (rust/crates/rand_xorshift-0.2.0.crate) = 77d416b86801d23dde1aa643023b775c3a462efc0ed96443add11546cdf1dca8 SIZE (rust/crates/rand_xorshift-0.2.0.crate) = 9098 SHA256 (rust/crates/raw-window-handle-0.3.4.crate) = e28f55143d0548dad60bb4fbdc835a3d7ac6acc3324506450c5fdd6e42903a76 SIZE (rust/crates/raw-window-handle-0.3.4.crate) = 6536 SHA256 (rust/crates/raw-window-handle-0.4.3.crate) = b800beb9b6e7d2df1fe337c9e3d04e3af22a124460fb4c30fcc22c9117cefb41 SIZE (rust/crates/raw-window-handle-0.4.3.crate) = 10636 SHA256 (rust/crates/rayon-1.5.1.crate) = c06aca804d41dbc8ba42dfd964f0d01334eceb64314b9ecf7c5fad5188a06d90 SIZE (rust/crates/rayon-1.5.1.crate) = 160424 SHA256 (rust/crates/rayon-core-1.9.1.crate) = d78120e2c850279833f1dd3582f730c4ab53ed95aeaaaa862a2a5c71b1656d8e SIZE (rust/crates/rayon-core-1.9.1.crate) = 64961 SHA256 (rust/crates/rcgen-0.9.2.crate) = d7fa2d386df8533b02184941c76ae2e0d0c1d053f5d43339169d80f21275fc5e SIZE (rust/crates/rcgen-0.9.2.crate) = 39976 SHA256 (rust/crates/redox_syscall-0.1.57.crate) = 41cc0f7e4d5d4544e8861606a285bb08d3e70712ccc7d2b84d7c0ccfaf4b05ce SIZE (rust/crates/redox_syscall-0.1.57.crate) = 17087 SHA256 (rust/crates/redox_syscall-0.2.13.crate) = 62f25bc4c7e55e0b0b7a1d43fb893f4fa1361d0abe38b9ce4f323c2adfe6ef42 SIZE (rust/crates/redox_syscall-0.2.13.crate) = 23759 SHA256 (rust/crates/redox_users-0.4.3.crate) = b033d837a7cf162d7993aded9304e30a83213c648b6e389db233191f891e5c2b SIZE (rust/crates/redox_users-0.4.3.crate) = 15353 SHA256 (rust/crates/regalloc-0.0.31.crate) = 571f7f397d61c4755285cd37853fe8e03271c243424a907415909379659381c5 SIZE (rust/crates/regalloc-0.0.31.crate) = 170781 SHA256 (rust/crates/regex-1.5.5.crate) = 1a11647b6b25ff05a515cb92c365cec08801e83423a235b51e231e1808747286 SIZE (rust/crates/regex-1.5.5.crate) = 238119 SHA256 (rust/crates/regex-automata-0.1.10.crate) = 6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132 SIZE (rust/crates/regex-automata-0.1.10.crate) = 114533 SHA256 (rust/crates/regex-syntax-0.6.25.crate) = f497285884f3fcff424ffc933e56d7cbca511def0c9831a7f9b5f6153e3cc89b SIZE (rust/crates/regex-syntax-0.6.25.crate) = 293293 SHA256 (rust/crates/region-3.0.0.crate) = 76e189c2369884dce920945e2ddf79b3dff49e071a167dd1817fa9c4c00d512e SIZE (rust/crates/region-3.0.0.crate) = 21488 SHA256 (rust/crates/remove_dir_all-0.5.3.crate) = 3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7 SIZE (rust/crates/remove_dir_all-0.5.3.crate) = 9184 SHA256 (rust/crates/rend-0.3.6.crate) = 79af64b4b6362ffba04eef3a4e10829718a4896dac19daa741851c86781edf95 SIZE (rust/crates/rend-0.3.6.crate) = 8574 SHA256 (rust/crates/renderdoc-sys-0.7.1.crate) = f1382d1f0a252c4bf97dc20d979a2fdd05b024acd7c2ed0f7595d7817666a157 SIZE (rust/crates/renderdoc-sys-0.7.1.crate) = 4592 SHA256 (rust/crates/ring-0.16.20.crate) = 3053cf52e236a3ed746dfc745aa9cacf1b791d846bdaf412f60a8d7d6e17c8fc SIZE (rust/crates/ring-0.16.20.crate) = 5082615 SHA256 (rust/crates/rkyv-0.7.37.crate) = 1f08c8062c1fe1253064043b8fc07bfea1b9702b71b4a86c11ea3588183b12e1 SIZE (rust/crates/rkyv-0.7.37.crate) = 104442 SHA256 (rust/crates/rkyv_derive-0.7.37.crate) = e289706df51226e84814bf6ba1a9e1013112ae29bc7a9878f73fce360520c403 SIZE (rust/crates/rkyv_derive-0.7.37.crate) = 18818 SHA256 (rust/crates/rodio-0.15.0.crate) = ec0939e9f626e6c6f1989adb6226a039c855ca483053f0ee7c98b90e41cf731e SIZE (rust/crates/rodio-0.15.0.crate) = 7414161 SHA256 (rust/crates/ron-0.6.6.crate) = 86018df177b1beef6c7c8ef949969c4f7cb9a9344181b92486b23c79995bdaa4 SIZE (rust/crates/ron-0.6.6.crate) = 45107 SHA256 (rust/crates/ron-0.7.0.crate) = 1b861ecaade43ac97886a512b360d01d66be9f41f3c61088b42cedf92e03d678 SIZE (rust/crates/ron-0.7.0.crate) = 45492 SHA256 (rust/crates/roots-0.0.6.crate) = 84348444bd7ad45729d0c49a4240d7cdc11c9d512c06c5ad1835c1ad4acda6db SIZE (rust/crates/roots-0.0.6.crate) = 29110 SHA256 (rust/crates/rose_tree-0.2.0.crate) = 284de9dae38774e2813aaabd7e947b4a6fe9b8c58c2309f754a487cdd50de1c2 SIZE (rust/crates/rose_tree-0.2.0.crate) = 11244 SHA256 (rust/crates/roxmltree-0.14.1.crate) = 921904a62e410e37e215c40381b7117f830d9d89ba60ab5236170541dd25646b SIZE (rust/crates/roxmltree-0.14.1.crate) = 39163 SHA256 (rust/crates/rstar-0.9.2.crate) = 1fc6fc513b8c3853e43a0c3f909ded14ffa82e5170c9c5f6fb175f9c85c8a433 SIZE (rust/crates/rstar-0.9.2.crate) = 38326 SHA256 (rust/crates/rusqlite-0.24.2.crate) = d5f38ee71cbab2c827ec0ac24e76f82eca723cee92c509a65f67dee393c25112 SIZE (rust/crates/rusqlite-0.24.2.crate) = 120103 SHA256 (rust/crates/rust-argon2-0.8.3.crate) = 4b18820d944b33caa75a71378964ac46f58517c92b6ae5f762636247c09e78fb SIZE (rust/crates/rust-argon2-0.8.3.crate) = 28313 SHA256 (rust/crates/rustc-demangle-0.1.21.crate) = 7ef03e0a2b150c7a90d01faf6254c9c48a41e95fb2a8c2ac1c6f0d2b9aefc342 SIZE (rust/crates/rustc-demangle-0.1.21.crate) = 27920 SHA256 (rust/crates/rustc-hash-1.1.0.crate) = 08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2 SIZE (rust/crates/rustc-hash-1.1.0.crate) = 9331 SHA256 (rust/crates/rustc_version-0.2.3.crate) = 138e3e0acb6c9fb258b19b67cb8abd63c00679d2851805ea151465464fe9030a SIZE (rust/crates/rustc_version-0.2.3.crate) = 10210 SHA256 (rust/crates/rustc_version-0.4.0.crate) = bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366 SIZE (rust/crates/rustc_version-0.4.0.crate) = 12175 SHA256 (rust/crates/rustix-0.34.1.crate) = cd3cc851a13d30a34cb747ba2a0c5101a4b2e8b1677a29b213ee465365ea495e SIZE (rust/crates/rustix-0.34.1.crate) = 264362 SHA256 (rust/crates/rustls-0.19.1.crate) = 35edb675feee39aec9c99fa5ff985081995a06d594114ae14cbe797ad7b7a6d7 SIZE (rust/crates/rustls-0.19.1.crate) = 208143 SHA256 (rust/crates/rustls-0.20.4.crate) = 4fbfeb8d0ddb84706bc597a5574ab8912817c52a397f819e5b614e2265206921 SIZE (rust/crates/rustls-0.20.4.crate) = 256347 SHA256 (rust/crates/rustls-native-certs-0.5.0.crate) = 5a07b7c1885bd8ed3831c289b7870b13ef46fe0e856d288c30d9cc17d75a2092 SIZE (rust/crates/rustls-native-certs-0.5.0.crate) = 18482 SHA256 (rust/crates/rustls-native-certs-0.6.1.crate) = 5ca9ebdfa27d3fc180e42879037b5338ab1c040c06affd00d8338598e7800943 SIZE (rust/crates/rustls-native-certs-0.6.1.crate) = 21762 SHA256 (rust/crates/rustls-pemfile-0.2.1.crate) = 5eebeaeb360c87bfb72e84abdb3447159c0eaececf1bef2aecd65a8be949d1c9 SIZE (rust/crates/rustls-pemfile-0.2.1.crate) = 14278 SHA256 (rust/crates/rustls-pemfile-1.0.0.crate) = e7522c9de787ff061458fe9a829dc790a3f5b22dc571694fc5883f448b94d9a9 SIZE (rust/crates/rustls-pemfile-1.0.0.crate) = 14559 SHA256 (rust/crates/rusttype-0.7.9.crate) = 310942406a39981bed7e12b09182a221a29e0990f3e7e0c971f131922ed135d5 SIZE (rust/crates/rusttype-0.7.9.crate) = 42732 SHA256 (rust/crates/rusttype-0.8.3.crate) = 9f61411055101f7b60ecf1041d87fb74205fb20b0c7a723f07ef39174cf6b4c0 SIZE (rust/crates/rusttype-0.8.3.crate) = 37327 SHA256 (rust/crates/rusttype-0.9.2.crate) = dc7c727aded0be18c5b80c1640eae0ac8e396abf6fa8477d96cb37d18ee5ec59 SIZE (rust/crates/rusttype-0.9.2.crate) = 31314 SHA256 (rust/crates/rustversion-1.0.6.crate) = f2cc38e8fa666e2de3c4aba7edeb5ffc5246c1c2ed0e3d17e560aeeba736b23f SIZE (rust/crates/rustversion-1.0.6.crate) = 18380 SHA256 (rust/crates/rusty-xinput-1.2.0.crate) = d2aa654bc32eb9ca14cce1a084abc9dfe43949a4547c35269a094c39272db3bb SIZE (rust/crates/rusty-xinput-1.2.0.crate) = 11998 SHA256 (rust/crates/rustyline-9.1.2.crate) = db7826789c0e25614b03e5a54a0717a86f9ff6e6e5247f92b369472869320039 SIZE (rust/crates/rustyline-9.1.2.crate) = 100566 SHA256 (rust/crates/ryu-1.0.9.crate) = 73b4b750c782965c211b42f022f59af1fbceabdd026623714f104152f1ec149f SIZE (rust/crates/ryu-1.0.9.crate) = 48391 SHA256 (rust/crates/same-file-1.0.6.crate) = 93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502 SIZE (rust/crates/same-file-1.0.6.crate) = 10183 SHA256 (rust/crates/schannel-0.1.19.crate) = 8f05ba609c234e60bee0d547fe94a4c7e9da733d1c962cf6e59efa4cd9c8bc75 SIZE (rust/crates/schannel-0.1.19.crate) = 42755 SHA256 (rust/crates/scoped-tls-1.0.0.crate) = ea6a9290e3c9cf0f18145ef7ffa62d68ee0bf5fcd651017e586dc7fd5da448c2 SIZE (rust/crates/scoped-tls-1.0.0.crate) = 9146 SHA256 (rust/crates/scopeguard-1.1.0.crate) = d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd SIZE (rust/crates/scopeguard-1.1.0.crate) = 11470 SHA256 (rust/crates/sct-0.6.1.crate) = b362b83898e0e69f38515b82ee15aa80636befe47c3b6d3d89a911e78fc228ce SIZE (rust/crates/sct-0.6.1.crate) = 26825 SHA256 (rust/crates/sct-0.7.0.crate) = d53dcdb7c9f8158937a7981b48accfd39a43af418591a5d008c7b22b5e1b7ca4 SIZE (rust/crates/sct-0.7.0.crate) = 27502 SHA256 (rust/crates/sdl2-0.35.2.crate) = f7959277b623f1fb9e04aea73686c3ca52f01b2145f8ea16f4ff30d8b7623b1a SIZE (rust/crates/sdl2-0.35.2.crate) = 177570 SHA256 (rust/crates/sdl2-sys-0.35.2.crate) = e3586be2cf6c0a8099a79a12b4084357aa9b3e0b0d7980e3b67aaf7a9d55f9f0 SIZE (rust/crates/sdl2-sys-0.35.2.crate) = 7425816 SHA256 (rust/crates/seahash-4.1.0.crate) = 1c107b6f4780854c8b126e228ea8869f4d7b71260f962fefb57b996b8959ba6b SIZE (rust/crates/seahash-4.1.0.crate) = 31976 SHA256 (rust/crates/security-framework-2.6.1.crate) = 2dc14f172faf8a0194a3aded622712b0de276821addc574fa54fc0a1167e10dc SIZE (rust/crates/security-framework-2.6.1.crate) = 71688 SHA256 (rust/crates/security-framework-sys-2.6.1.crate) = 0160a13a177a45bfb43ce71c01580998474f556ad854dcbca936dd2841a5c556 SIZE (rust/crates/security-framework-sys-2.6.1.crate) = 17717 SHA256 (rust/crates/semver-0.9.0.crate) = 1d7eb9ef2c18661902cc47e535f9bc51b78acd254da71d375c2f6720d9a40403 SIZE (rust/crates/semver-0.9.0.crate) = 17344 SHA256 (rust/crates/semver-1.0.7.crate) = d65bd28f48be7196d222d95b9243287f48d27aca604e08497513019ff0502cc4 SIZE (rust/crates/semver-1.0.7.crate) = 30064 SHA256 (rust/crates/semver-parser-0.7.0.crate) = 388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3 SIZE (rust/crates/semver-parser-0.7.0.crate) = 10268 SHA256 (rust/crates/serde-1.0.136.crate) = ce31e24b01e1e524df96f1c2fdd054405f8d7376249a5110886fb4b658484789 SIZE (rust/crates/serde-1.0.136.crate) = 76158 SHA256 (rust/crates/serde_bytes-0.11.5.crate) = 16ae07dd2f88a366f15bd0632ba725227018c69a1c8550a927324f8eb8368bb9 SIZE (rust/crates/serde_bytes-0.11.5.crate) = 11067 SHA256 (rust/crates/serde_cbor-0.11.2.crate) = 2bef2ebfde456fb76bbcf9f59315333decc4fda0b2b44b420243c11e0f5ec1f5 SIZE (rust/crates/serde_cbor-0.11.2.crate) = 44570 SHA256 (rust/crates/serde_derive-1.0.136.crate) = 08597e7152fcd306f41838ed3e37be9eaeed2b61c42e2117266a554fab4662f9 SIZE (rust/crates/serde_derive-1.0.136.crate) = 54776 SHA256 (rust/crates/serde_json-1.0.79.crate) = 8e8d9fa5c3b304765ce1fd9c4c8a3de2c8db365a5b91be52f186efc675681d95 SIZE (rust/crates/serde_json-1.0.79.crate) = 144451 SHA256 (rust/crates/serde_repr-0.1.7.crate) = 98d0516900518c29efa217c298fa1f4e6c6ffc85ae29fd7f4ee48f176e1a9ed5 SIZE (rust/crates/serde_repr-0.1.7.crate) = 10173 SHA256 (rust/crates/sha1-0.6.1.crate) = c1da05c97445caa12d05e848c4a4fcbbea29e748ac28f7e80e9b010392063770 SIZE (rust/crates/sha1-0.6.1.crate) = 2931 SHA256 (rust/crates/sha1_smol-1.0.0.crate) = ae1a47186c03a32177042e55dbc5fd5aee900b8e0069a8d70fba96a9375cd012 SIZE (rust/crates/sha1_smol-1.0.0.crate) = 9782 SHA256 (rust/crates/sha2-0.10.2.crate) = 55deaec60f81eefe3cce0dc50bda92d6d8e88f2a27df7c5033b42afeb1ed2676 SIZE (rust/crates/sha2-0.10.2.crate) = 20213 SHA256 (rust/crates/shaderc-0.8.0.crate) = 80e6fe602a861622769530a23bc40bfba31adbf186d0c8412e83f5519c5d6bee SIZE (rust/crates/shaderc-0.8.0.crate) = 14343 SHA256 (rust/crates/shaderc-sys-0.8.0.crate) = 3794498651f8173d0afbc0bb8aca45ced111098227e755dde4c0ef2888c8d0bf SIZE (rust/crates/shaderc-sys-0.8.0.crate) = 6778860 SHA256 (rust/crates/sharded-slab-0.1.4.crate) = 900fba806f70c630b0a382d0d825e17a0f19fcd059a2ade1ff237bcddf446b31 SIZE (rust/crates/sharded-slab-0.1.4.crate) = 52479 SHA256 (rust/crates/shell-words-1.1.0.crate) = 24188a676b6ae68c3b2cb3a01be17fbf7240ce009799bb56d5b1409051e78fde SIZE (rust/crates/shell-words-1.1.0.crate) = 9871 SHA256 (rust/crates/shellexpand-2.1.0.crate) = 83bdb7831b2d85ddf4a7b148aa19d0587eddbe8671a436b7bd1182eaad0f2829 SIZE (rust/crates/shellexpand-2.1.0.crate) = 14697 SHA256 (rust/crates/shlex-0.1.1.crate) = 7fdf1b9db47230893d76faad238fd6097fd6d6a9245cd7a4d90dbd639536bbd2 SIZE (rust/crates/shlex-0.1.1.crate) = 5687 SHA256 (rust/crates/shred-0.13.0.crate) = 102269e720bb814df57e136161cad841f2b6f411e003ac748fc48aaf2363bea3 SIZE (rust/crates/shred-0.13.0.crate) = 52170 SHA256 (rust/crates/shred-derive-0.6.3.crate) = d5404c36bd155e41a54276ab6aafedad2fb627e5e5849d36ec439c9ddc044a2f SIZE (rust/crates/shred-derive-0.6.3.crate) = 2327 SHA256 (rust/crates/shrev-1.1.1.crate) = b5752e017e03af9d735b4b069f53b7a7fd90fefafa04d8bd0c25581b0bff437f SIZE (rust/crates/shrev-1.1.1.crate) = 11402 SHA256 (rust/crates/signal-hook-0.1.17.crate) = 7e31d442c16f047a671b5a71e2161d6e68814012b7f5379d269ebd915fac2729 SIZE (rust/crates/signal-hook-0.1.17.crate) = 27085 SHA256 (rust/crates/signal-hook-0.3.13.crate) = 647c97df271007dcea485bb74ffdb57f2e683f1306c854f468a0c244badabf2d SIZE (rust/crates/signal-hook-0.3.13.crate) = 49252 SHA256 (rust/crates/signal-hook-mio-0.2.3.crate) = 29ad2e15f37ec9a6cc544097b78a1ec90001e9f71b81338ca39f430adaca99af SIZE (rust/crates/signal-hook-mio-0.2.3.crate) = 9064 SHA256 (rust/crates/signal-hook-registry-1.4.0.crate) = e51e73328dc4ac0c7ccbda3a494dfa03df1de2f46018127f60c693f2648455b0 SIZE (rust/crates/signal-hook-registry-1.4.0.crate) = 17912 SHA256 (rust/crates/siphasher-0.3.10.crate) = 7bd3e3206899af3f8b12af284fafc038cc1dc2b41d1b89dd17297221c5d225de SIZE (rust/crates/siphasher-0.3.10.crate) = 9889 SHA256 (rust/crates/slab-0.4.6.crate) = eb703cfe953bccee95685111adeedb76fabe4e97549a58d16f03ea7b9367bb32 SIZE (rust/crates/slab-0.4.6.crate) = 16067 SHA256 (rust/crates/slotmap-0.4.3.crate) = 6bf34684c5767b87de9119790e92e9a1d60056be2ceeaf16a8e6ef13082aeab1 SIZE (rust/crates/slotmap-0.4.3.crate) = 47133 SHA256 (rust/crates/slotmap-1.0.6.crate) = e1e08e261d0e8f5c43123b7adf3e4ca1690d655377ac93a03b2c9d3e98de1342 SIZE (rust/crates/slotmap-1.0.6.crate) = 58954 SHA256 (rust/crates/smallvec-1.8.0.crate) = f2dd574626839106c320a323308629dcb1acfc96e32a8cba364ddc61ac23ee83 SIZE (rust/crates/smallvec-1.8.0.crate) = 27992 SHA256 (rust/crates/smithay-client-toolkit-0.12.3.crate) = 4750c76fd5d3ac95fa3ed80fe667d6a3d8590a960e5b575b98eea93339a80b80 SIZE (rust/crates/smithay-client-toolkit-0.12.3.crate) = 128701 SHA256 (rust/crates/smithay-client-toolkit-0.15.3.crate) = 1325f292209cee78d5035530932422a30aa4c8fda1a16593ac083c1de211e68a SIZE (rust/crates/smithay-client-toolkit-0.15.3.crate) = 129366 SHA256 (rust/crates/smithay-clipboard-0.6.5.crate) = 610b551bd25378bfd2b8e7a0fcbd83d427e8f2f6a40c47ae0f70688e9949dd55 SIZE (rust/crates/smithay-clipboard-0.6.5.crate) = 16331 SHA256 (rust/crates/socket2-0.4.4.crate) = 66d72b759436ae32898a2af0a14218dbf55efde3feeb170eb623637db85ee1e0 SIZE (rust/crates/socket2-0.4.4.crate) = 44048 SHA256 (rust/crates/specs-0.18.0.crate) = 4ea85dac2880f84d4025ff5ace80cda6d8bc43bc88b6a389b9277fcf894b51e9 SIZE (rust/crates/specs-0.18.0.crate) = 125902 SHA256 (rust/crates/specs-derive-0.4.1.crate) = 3e23e09360f3d2190fec4222cd9e19d3158d5da948c0d1ea362df617dd103511 SIZE (rust/crates/specs-derive-0.4.1.crate) = 5224 SHA256 (rust/crates/spin-0.5.2.crate) = 6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d SIZE (rust/crates/spin-0.5.2.crate) = 12004 SHA256 (rust/crates/spin_sleep-1.1.1.crate) = cafa7900db085f4354dbc7025e25d7a839a14360ea13b5fc4fd717f2d3b23134 SIZE (rust/crates/spin_sleep-1.1.1.crate) = 11504 SHA256 (rust/crates/spirv_cross-0.23.1.crate) = 60647fadbf83c4a72f0d7ea67a7ca3a81835cf442b8deae5c134c3e0055b2e14 SIZE (rust/crates/spirv_cross-0.23.1.crate) = 531233 SHA256 (rust/crates/spirv_headers-1.5.0.crate) = 1f5b132530b1ac069df335577e3581765995cba5a13995cdbbdbc8fb057c532c SIZE (rust/crates/spirv_headers-1.5.0.crate) = 28010 SHA256 (rust/crates/stable_deref_trait-1.2.0.crate) = a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3 SIZE (rust/crates/stable_deref_trait-1.2.0.crate) = 8054 SHA256 (rust/crates/static_assertions-1.1.0.crate) = a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f SIZE (rust/crates/static_assertions-1.1.0.crate) = 18480 SHA256 (rust/crates/stb_truetype-0.3.1.crate) = f77b6b07e862c66a9f3e62a07588fee67cd90a9135a2b942409f195507b4fb51 SIZE (rust/crates/stb_truetype-0.3.1.crate) = 22111 SHA256 (rust/crates/stdweb-0.1.3.crate) = ef5430c8e36b713e13b48a9f709cc21e046723fe44ce34587b73a830203b533e SIZE (rust/crates/stdweb-0.1.3.crate) = 90221 SHA256 (rust/crates/stdweb-0.4.20.crate) = d022496b16281348b52d0e30ae99e01a73d737b2f45d38fed4edf79f9325a1d5 SIZE (rust/crates/stdweb-0.4.20.crate) = 194102 SHA256 (rust/crates/stdweb-derive-0.5.3.crate) = c87a60a40fccc84bef0652345bbbbbe20a605bf5d0ce81719fc476f5c03b50ef SIZE (rust/crates/stdweb-derive-0.5.3.crate) = 3894 SHA256 (rust/crates/stdweb-internal-macros-0.2.9.crate) = 58fa5ff6ad0d98d1ffa8cb115892b6e69d67799f6763e162a1c9db421dc22e11 SIZE (rust/crates/stdweb-internal-macros-0.2.9.crate) = 11828 SHA256 (rust/crates/stdweb-internal-runtime-0.1.5.crate) = 213701ba3370744dcd1a12960caa4843b3d68b4d1c0a5d575e0d65b2ee9d16c0 SIZE (rust/crates/stdweb-internal-runtime-0.1.5.crate) = 5445 SHA256 (rust/crates/storage-map-0.3.0.crate) = 418bb14643aa55a7841d5303f72cf512cfb323b8cc221d51580500a1ca75206c SIZE (rust/crates/storage-map-0.3.0.crate) = 6890 SHA256 (rust/crates/str-buf-1.0.5.crate) = d44a3643b4ff9caf57abcee9c2c621d6c03d9135e0d8b589bd9afb5992cb176a SIZE (rust/crates/str-buf-1.0.5.crate) = 3852 SHA256 (rust/crates/strsim-0.8.0.crate) = 8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a SIZE (rust/crates/strsim-0.8.0.crate) = 9309 SHA256 (rust/crates/strsim-0.9.3.crate) = 6446ced80d6c486436db5c078dde11a9f73d42b57fb273121e160b84f63d894c SIZE (rust/crates/strsim-0.9.3.crate) = 10266 SHA256 (rust/crates/strsim-0.10.0.crate) = 73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623 SIZE (rust/crates/strsim-0.10.0.crate) = 11355 SHA256 (rust/crates/structopt-0.3.26.crate) = 0c6b5c64445ba8094a6ab0c3cd2ad323e07171012d9c98b0b15651daf1787a10 SIZE (rust/crates/structopt-0.3.26.crate) = 53798 SHA256 (rust/crates/structopt-derive-0.4.18.crate) = dcb5ae327f9cc13b68763b5749770cb9e048a99bd9dfdfa58d0cf05d5f64afe0 SIZE (rust/crates/structopt-derive-0.4.18.crate) = 20996 SHA256 (rust/crates/strum-0.24.0.crate) = e96acfc1b70604b8b2f1ffa4c57e59176c7dbb05d556c71ecd2f5498a1dee7f8 SIZE (rust/crates/strum-0.24.0.crate) = 5524 SHA256 (rust/crates/strum_macros-0.24.0.crate) = 6878079b17446e4d3eba6192bb0a2950d5b14f0ed8424b852310e5a94345d0ef SIZE (rust/crates/strum_macros-0.24.0.crate) = 18785 SHA256 (rust/crates/sum_type-0.2.0.crate) = da5b4a0c9f3c7c8e891e445a7c776627e208e8bba23ab680798066dd283e6a15 SIZE (rust/crates/sum_type-0.2.0.crate) = 5586 SHA256 (rust/crates/svg_fmt-0.4.1.crate) = 8fb1df15f412ee2e9dfc1c504260fa695c1c3f10fe9f4a6ee2d2184d7d6450e2 SIZE (rust/crates/svg_fmt-0.4.1.crate) = 4052 SHA256 (rust/crates/syn-0.15.44.crate) = 9ca4b3b69a77cbe1ffc9e198781b7acb0c7365a883670e8f1c1bc66fba79a5c5 SIZE (rust/crates/syn-0.15.44.crate) = 184212 SHA256 (rust/crates/syn-1.0.98.crate) = c50aef8a904de4c23c788f104b7dddc7d6f79c647c7c8ce4cc8f73eb0ca773dd SIZE (rust/crates/syn-1.0.98.crate) = 235451 SHA256 (rust/crates/tap-1.0.1.crate) = 55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369 SIZE (rust/crates/tap-1.0.1.crate) = 11316 SHA256 (rust/crates/tar-0.4.38.crate) = 4b55807c0344e1e6c04d7c965f5289c39a8d94ae23ed5c0b57aabac549f871c6 SIZE (rust/crates/tar-0.4.38.crate) = 49158 SHA256 (rust/crates/target-lexicon-0.12.3.crate) = d7fa7e55043acb85fca6b3c01485a2eeb6b69c5d21002e273c79e465f43b7ac1 SIZE (rust/crates/target-lexicon-0.12.3.crate) = 22990 SHA256 (rust/crates/tempfile-3.3.0.crate) = 5cdb1ef4eaeeaddc8fbd371e5017057064af0911902ef36b39801f67cc6d79e4 SIZE (rust/crates/tempfile-3.3.0.crate) = 27578 SHA256 (rust/crates/termcolor-1.1.3.crate) = bab24d30b911b2376f3a13cc2cd443142f0c81dda04c118693e35b3835757755 SIZE (rust/crates/termcolor-1.1.3.crate) = 17242 SHA256 (rust/crates/textwrap-0.11.0.crate) = d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060 SIZE (rust/crates/textwrap-0.11.0.crate) = 17322 SHA256 (rust/crates/textwrap-0.15.0.crate) = b1141d4d61095b28419e22cb0bbf02755f5e54e0526f97f1e3d1d160e60885fb SIZE (rust/crates/textwrap-0.15.0.crate) = 52998 SHA256 (rust/crates/thiserror-1.0.30.crate) = 854babe52e4df1653706b98fcfc05843010039b406875930a70e4d9644e5c417 SIZE (rust/crates/thiserror-1.0.30.crate) = 17748 SHA256 (rust/crates/thiserror-impl-1.0.30.crate) = aa32fd3f627f367fe16f893e2597ae3c05020f8bba2666a4e6ea73d377e5714b SIZE (rust/crates/thiserror-impl-1.0.30.crate) = 15230 SHA256 (rust/crates/thread_local-1.1.4.crate) = 5516c27b78311c50bf42c071425c560ac799b11c30b31f87e3081965fe5e0180 SIZE (rust/crates/thread_local-1.1.4.crate) = 13106 SHA256 (rust/crates/thunderdome-0.4.2.crate) = f685624f172cd0bde6f3363412455e81c018f2379fdf5a218e0be003f1bba642 SIZE (rust/crates/thunderdome-0.4.2.crate) = 18009 SHA256 (rust/crates/time-0.1.44.crate) = 6db9e6914ab8b1ae1c260a4ae7a49b6c5611b40328a735b21862567685e73255 SIZE (rust/crates/time-0.1.44.crate) = 28885 SHA256 (rust/crates/time-0.3.9.crate) = c2702e08a7a860f005826c6815dcac101b19b5eb330c27fe4a5928fec1d20ddd SIZE (rust/crates/time-0.3.9.crate) = 81412 SHA256 (rust/crates/tiny-keccak-2.0.2.crate) = 2c9d3793400a45f954c52e73d068316d76b6f4e36977e3fcebb13a2721e80237 SIZE (rust/crates/tiny-keccak-2.0.2.crate) = 20129 SHA256 (rust/crates/tinytemplate-1.2.1.crate) = be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc SIZE (rust/crates/tinytemplate-1.2.1.crate) = 26490 SHA256 (rust/crates/tinyvec-1.5.1.crate) = 2c1c1d5a42b6245520c249549ec267180beaffcc0615401ac8e31853d4b6d8d2 SIZE (rust/crates/tinyvec-1.5.1.crate) = 44942 SHA256 (rust/crates/tinyvec_macros-0.1.0.crate) = cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c SIZE (rust/crates/tinyvec_macros-0.1.0.crate) = 1817 SHA256 (rust/crates/tokio-1.17.0.crate) = 2af73ac49756f3f7c01172e34a23e5d0216f6c32333757c2c61feb2bbff5a5ee SIZE (rust/crates/tokio-1.17.0.crate) = 562425 SHA256 (rust/crates/tokio-macros-1.7.0.crate) = b557f72f448c511a979e2564e55d74e6c4432fc96ff4f6241bc6bded342643b7 SIZE (rust/crates/tokio-macros-1.7.0.crate) = 9261 SHA256 (rust/crates/tokio-rustls-0.22.0.crate) = bc6844de72e57df1980054b38be3a9f4702aba4858be64dd700181a8a6d0e1b6 SIZE (rust/crates/tokio-rustls-0.22.0.crate) = 22706 SHA256 (rust/crates/tokio-stream-0.1.8.crate) = 50145484efff8818b5ccd256697f36863f587da82cf8b409c53adf1e840798e3 SIZE (rust/crates/tokio-stream-0.1.8.crate) = 30537 SHA256 (rust/crates/tokio-util-0.7.1.crate) = 0edfdeb067411dba2044da6d1cb2df793dd35add7888d73c16e3381ded401764 SIZE (rust/crates/tokio-util-0.7.1.crate) = 87364 SHA256 (rust/crates/toml-0.5.8.crate) = a31142970826733df8241ef35dc040ef98c679ab14d7c3e54d827099b3acecaa SIZE (rust/crates/toml-0.5.8.crate) = 54219 SHA256 (rust/crates/tower-service-0.3.1.crate) = 360dfd1d6d30e05fda32ace2c8c70e9c0a9da713275777f5a4dbb8a1893930c6 SIZE (rust/crates/tower-service-0.3.1.crate) = 6299 SHA256 (rust/crates/tracing-0.1.32.crate) = 4a1bdf54a7c28a2bbf701e1d2233f6c77f473486b94bee4f9678da5a148dca7f SIZE (rust/crates/tracing-0.1.32.crate) = 77985 SHA256 (rust/crates/tracing-appender-0.2.2.crate) = 09d48f71a791638519505cefafe162606f706c25592e4bde4d97600c0195312e SIZE (rust/crates/tracing-appender-0.2.2.crate) = 17208 SHA256 (rust/crates/tracing-attributes-0.1.20.crate) = 2e65ce065b4b5c53e73bb28912318cb8c9e9ad3921f1d669eb0e68b4c8143a2b SIZE (rust/crates/tracing-attributes-0.1.20.crate) = 26316 SHA256 (rust/crates/tracing-core-0.1.24.crate) = 90442985ee2f57c9e1b548ee72ae842f4a9a20e3f417cc38dbc5dc684d9bb4ee SIZE (rust/crates/tracing-core-0.1.24.crate) = 53469 SHA256 (rust/crates/tracing-log-0.1.2.crate) = a6923477a48e41c1951f1999ef8bb5a3023eb723ceadafe78ffb65dc366761e3 SIZE (rust/crates/tracing-log-0.1.2.crate) = 14915 SHA256 (rust/crates/tracing-subscriber-0.3.10.crate) = b9df98b037d039d03400d9dd06b0f8ce05486b5f25e9a2d7d36196e142ebbc52 SIZE (rust/crates/tracing-subscriber-0.3.10.crate) = 183724 SHA256 (rust/crates/tracing-tracy-0.9.0.crate) = 23a42311a35ed976d72f359de43e9fe028ec9d9f1051c4c52bd05a4f66ff3cbf SIZE (rust/crates/tracing-tracy-0.9.0.crate) = 9235 SHA256 (rust/crates/tracy-client-0.13.2.crate) = 42ebfe7a24c18b5ba86d8920c124b41b942352f863fbe0c84d3d63428fa1860f SIZE (rust/crates/tracy-client-0.13.2.crate) = 13841 SHA256 (rust/crates/tracy-client-sys-0.17.0.crate) = 9012b9dfeccaff16e93f5a8b02336125113a80a769902e679d334cbdd4d83f3b SIZE (rust/crates/tracy-client-sys-0.17.0.crate) = 231477 SHA256 (rust/crates/treeculler-0.2.0.crate) = 82449b48a3494420dd1b11081f198c542f795a036246da4a9c5845b7d7427226 SIZE (rust/crates/treeculler-0.2.0.crate) = 4576 SHA256 (rust/crates/try-lock-0.2.3.crate) = 59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642 SIZE (rust/crates/try-lock-0.2.3.crate) = 4158 SHA256 (rust/crates/ttf-parser-0.6.2.crate) = 3e5d7cd7ab3e47dda6e56542f4bbf3824c15234958c6e1bd6aaa347e93499fdc SIZE (rust/crates/ttf-parser-0.6.2.crate) = 106052 SHA256 (rust/crates/ttf-parser-0.15.0.crate) = c74c96594835e10fa545e2a51e8709f30b173a092bfd6036ef2cec53376244f3 SIZE (rust/crates/ttf-parser-0.15.0.crate) = 136109 SHA256 (rust/crates/tuple_utils-0.4.0.crate) = cffaaf9392ef73cd30828797152476aaa2fa37a17856934fa63d4843f34290e9 SIZE (rust/crates/tuple_utils-0.4.0.crate) = 2893 SHA256 (rust/crates/twox-hash-1.6.2.crate) = 4ee73e6e4924fe940354b8d4d98cad5231175d615cd855b758adc658c0aac6a0 SIZE (rust/crates/twox-hash-1.6.2.crate) = 21880 SHA256 (rust/crates/tynm-0.1.6.crate) = a4df2caa2dc9c3d1f7641ba981f4cd40ab229775aa7aeb834c9ab2850d50623d SIZE (rust/crates/tynm-0.1.6.crate) = 15237 SHA256 (rust/crates/typenum-1.15.0.crate) = dcf81ac59edc17cc8697ff311e8f5ef2d99fcbd9817b34cec66f90b6c3dfd987 SIZE (rust/crates/typenum-1.15.0.crate) = 40741 SHA256 (rust/crates/uncased-0.9.6.crate) = 5baeed7327e25054889b9bd4f975f32e5f4c5d434042d59ab6cd4142c0a76ed0 SIZE (rust/crates/uncased-0.9.6.crate) = 10413 SHA256 (rust/crates/unicode-bidi-0.3.7.crate) = 1a01404663e3db436ed2746d9fefef640d868edae3cceb81c3b8d5732fda678f SIZE (rust/crates/unicode-bidi-0.3.7.crate) = 33759 SHA256 (rust/crates/unicode-ident-1.0.1.crate) = 5bd2fe26506023ed7b5e1e315add59d6f584c621d037f9368fea9cfb988f368c SIZE (rust/crates/unicode-ident-1.0.1.crate) = 33770 SHA256 (rust/crates/unicode-normalization-0.1.19.crate) = d54590932941a9e9266f0832deed84ebe1bf2e4c9e4a3554d393d18f5e854bf9 SIZE (rust/crates/unicode-normalization-0.1.19.crate) = 107353 SHA256 (rust/crates/unicode-segmentation-1.9.0.crate) = 7e8820f5d777f6224dc4be3632222971ac30164d4a258d595640799554ebfd99 SIZE (rust/crates/unicode-segmentation-1.9.0.crate) = 93241 SHA256 (rust/crates/unicode-width-0.1.9.crate) = 3ed742d4ea2bd1176e236172c8429aaf54486e7ac098db29ffe6529e0ce50973 SIZE (rust/crates/unicode-width-0.1.9.crate) = 16745 SHA256 (rust/crates/unicode-xid-0.1.0.crate) = fc72304796d0818e357ead4e000d19c9c174ab23dc11093ac919054d20a6a7fc SIZE (rust/crates/unicode-xid-0.1.0.crate) = 16000 SHA256 (rust/crates/untrusted-0.7.1.crate) = a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a SIZE (rust/crates/untrusted-0.7.1.crate) = 7924 SHA256 (rust/crates/url-2.2.2.crate) = a507c383b2d33b5fc35d1861e77e6b383d158b2da5e14fe51b83dfedf6fd578c SIZE (rust/crates/url-2.2.2.crate) = 68555 SHA256 (rust/crates/utf8parse-0.2.0.crate) = 936e4b492acfd135421d8dca4b1aa80a7bfc26e702ef3af710e0752684df5372 SIZE (rust/crates/utf8parse-0.2.0.crate) = 13392 SHA256 (rust/crates/uuid-0.8.2.crate) = bc5cf98d8186244414c848017f0e2676b3fcb46807f6668a97dfe67359a3c4b7 SIZE (rust/crates/uuid-0.8.2.crate) = 37909 SHA256 (rust/crates/valuable-0.1.0.crate) = 830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d SIZE (rust/crates/valuable-0.1.0.crate) = 27718 SHA256 (rust/crates/vcpkg-0.2.15.crate) = accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426 SIZE (rust/crates/vcpkg-0.2.15.crate) = 228735 SHA256 (rust/crates/vec_map-0.8.2.crate) = f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191 SIZE (rust/crates/vec_map-0.8.2.crate) = 14466 SHA256 (rust/crates/vek-0.14.1.crate) = 04d6626f32b226e2c5b35f23ea87eaf683f3d93eaeb16b4084d0683479616f0f SIZE (rust/crates/vek-0.14.1.crate) = 82642 SHA256 (rust/crates/version-compare-0.1.0.crate) = fe88247b92c1df6b6de80ddc290f3976dbdf2f5f5d3fd049a9fb598c6dd5ca73 SIZE (rust/crates/version-compare-0.1.0.crate) = 14169 SHA256 (rust/crates/version_check-0.1.5.crate) = 914b1a6776c4c929a602fafd8bc742e06365d4bcbe48c30f9cca5824f70dc9dd SIZE (rust/crates/version_check-0.1.5.crate) = 8173 SHA256 (rust/crates/version_check-0.9.4.crate) = 49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f SIZE (rust/crates/version_check-0.9.4.crate) = 14895 SHA256 (rust/crates/walkdir-0.1.8.crate) = c66c0b9792f0a765345452775f3adbd28dde9d33f30d13e5dcc5ae17cf6f3780 SIZE (rust/crates/walkdir-0.1.8.crate) = 19807 SHA256 (rust/crates/walkdir-2.3.2.crate) = 808cf2735cd4b6866113f648b791c6adc5714537bc222d9347bb203386ffda56 SIZE (rust/crates/walkdir-2.3.2.crate) = 23516 SHA256 (rust/crates/want-0.3.0.crate) = 1ce8a968cb1cd110d136ff8b819a556d6fb6d919363c61534f6860c7eb172ba0 SIZE (rust/crates/want-0.3.0.crate) = 6550 SHA256 (rust/crates/wasi-0.9.0+wasi-snapshot-preview1.crate) = cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519 SIZE (rust/crates/wasi-0.9.0+wasi-snapshot-preview1.crate) = 31521 SHA256 (rust/crates/wasi-0.10.0+wasi-snapshot-preview1.crate) = 1a143597ca7c7793eff794def352d41792a93c481eb1042423ff7ff72ba2c31f SIZE (rust/crates/wasi-0.10.0+wasi-snapshot-preview1.crate) = 26964 SHA256 (rust/crates/wasi-0.11.0+wasi-snapshot-preview1.crate) = 9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423 SIZE (rust/crates/wasi-0.11.0+wasi-snapshot-preview1.crate) = 28131 SHA256 (rust/crates/wasm-bindgen-0.2.79.crate) = 25f1af7423d8588a3d840681122e72e6a24ddbcb3f0ec385cac0d12d24256c06 SIZE (rust/crates/wasm-bindgen-0.2.79.crate) = 164276 SHA256 (rust/crates/wasm-bindgen-backend-0.2.79.crate) = 8b21c0df030f5a177f3cba22e9bc4322695ec43e7257d865302900290bcdedca SIZE (rust/crates/wasm-bindgen-backend-0.2.79.crate) = 25776 SHA256 (rust/crates/wasm-bindgen-futures-0.4.29.crate) = 2eb6ec270a31b1d3c7e266b999739109abce8b6c87e4b31fcfcd788b65267395 SIZE (rust/crates/wasm-bindgen-futures-0.4.29.crate) = 14730 SHA256 (rust/crates/wasm-bindgen-macro-0.2.79.crate) = 2f4203d69e40a52ee523b2529a773d5ffc1dc0071801c87b3d270b471b80ed01 SIZE (rust/crates/wasm-bindgen-macro-0.2.79.crate) = 11806 SHA256 (rust/crates/wasm-bindgen-macro-support-0.2.79.crate) = bfa8a30d46208db204854cadbb5d4baf5fcf8071ba5bf48190c3e59937962ebc SIZE (rust/crates/wasm-bindgen-macro-support-0.2.79.crate) = 17861 SHA256 (rust/crates/wasm-bindgen-shared-0.2.79.crate) = 3d958d035c4438e28c70e4321a2911302f10135ce78a9c7834c0cab4123d06a2 SIZE (rust/crates/wasm-bindgen-shared-0.2.79.crate) = 7204 SHA256 (rust/crates/wasmer-2.2.1.crate) = f727a39e7161f7438ddb8eafe571b67c576a8c2fb459f666d9053b5bba4afdea SIZE (rust/crates/wasmer-2.2.1.crate) = 104871 SHA256 (rust/crates/wasmer-compiler-2.2.1.crate) = 4e9951599222eb12bd13d4d91bcded0a880e4c22c2dfdabdf5dc7e5e803b7bf3 SIZE (rust/crates/wasmer-compiler-2.2.1.crate) = 23725 SHA256 (rust/crates/wasmer-compiler-cranelift-2.2.1.crate) = 44c83273bce44e668f3a2b9ccb7f1193db918b1d6806f64acc5ff71f6ece5f20 SIZE (rust/crates/wasmer-compiler-cranelift-2.2.1.crate) = 55516 SHA256 (rust/crates/wasmer-derive-2.2.1.crate) = 458dbd9718a837e6dbc52003aef84487d79eedef5fa28c7d28b6784be98ac08e SIZE (rust/crates/wasmer-derive-2.2.1.crate) = 5964 SHA256 (rust/crates/wasmer-engine-2.2.1.crate) = 6ed603a6d037ebbb14014d7f739ae996a78455a4b86c41cfa4e81c590a1253b9 SIZE (rust/crates/wasmer-engine-2.2.1.crate) = 18756 SHA256 (rust/crates/wasmer-engine-dylib-2.2.1.crate) = ccd7fdc60e252a795c849b3f78a81a134783051407e7e279c10b7019139ef8dc SIZE (rust/crates/wasmer-engine-dylib-2.2.1.crate) = 16861 SHA256 (rust/crates/wasmer-engine-universal-2.2.1.crate) = dcff0cd2c01a8de6009fd863b14ea883132a468a24f2d2ee59dc34453d3a31b5 SIZE (rust/crates/wasmer-engine-universal-2.2.1.crate) = 15873 SHA256 (rust/crates/wasmer-object-2.2.1.crate) = 24ce18ac2877050e59580d27ee1a88f3192d7a31e77fbba0852abc7888d6e0b5 SIZE (rust/crates/wasmer-object-2.2.1.crate) = 4726 SHA256 (rust/crates/wasmer-types-2.2.1.crate) = 659fa3dd6c76f62630deff4ac8c7657b07f0b1e4d7e0f8243a552b9d9b448e24 SIZE (rust/crates/wasmer-types-2.2.1.crate) = 30518 SHA256 (rust/crates/wasmer-vm-2.2.1.crate) = afdc46158517c2769f9938bc222a7d41b3bb330824196279d8aa2d667cd40641 SIZE (rust/crates/wasmer-vm-2.2.1.crate) = 59342 SHA256 (rust/crates/wasmparser-0.78.2.crate) = 52144d4c78e5cf8b055ceab8e5fa22814ce4315d6002ad32cfd914f37c12fd65 SIZE (rust/crates/wasmparser-0.78.2.crate) = 80388 SHA256 (rust/crates/wast-39.0.0.crate) = e9bbbd53432b267421186feee3e52436531fa69a7cfee9403f5204352df3dd05 SIZE (rust/crates/wast-39.0.0.crate) = 101366 SHA256 (rust/crates/wat-1.0.41.crate) = ab98ed25494f97c69f28758617f27c3e92e5336040b5c3a14634f2dd3fe61830 SIZE (rust/crates/wat-1.0.41.crate) = 9185 SHA256 (rust/crates/wavefront-0.2.2.crate) = 249b7e6cd5bd1cc78a61d0475e5790c98bebabf2dc644a94a51ad58b39298652 SIZE (rust/crates/wavefront-0.2.2.crate) = 13949 SHA256 (rust/crates/wayland-client-0.28.6.crate) = e3ab332350e502f159382201394a78e3cc12d0f04db863429260164ea40e0355 SIZE (rust/crates/wayland-client-0.28.6.crate) = 69347 SHA256 (rust/crates/wayland-client-0.29.4.crate) = 91223460e73257f697d9e23d401279123d36039a3f7a449e983f123292d4458f SIZE (rust/crates/wayland-client-0.29.4.crate) = 71383 SHA256 (rust/crates/wayland-commons-0.28.6.crate) = a21817947c7011bbd0a27e11b17b337bfd022e8544b071a2641232047966fbda SIZE (rust/crates/wayland-commons-0.28.6.crate) = 20581 SHA256 (rust/crates/wayland-commons-0.29.4.crate) = 94f6e5e340d7c13490eca867898c4cec5af56c27a5ffe5c80c6fc4708e22d33e SIZE (rust/crates/wayland-commons-0.29.4.crate) = 20757 SHA256 (rust/crates/wayland-cursor-0.28.6.crate) = be610084edd1586d45e7bdd275fe345c7c1873598caa464c4fb835dee70fa65a SIZE (rust/crates/wayland-cursor-0.28.6.crate) = 6176 SHA256 (rust/crates/wayland-cursor-0.29.4.crate) = c52758f13d5e7861fc83d942d3d99bf270c83269575e52ac29e5b73cb956a6bd SIZE (rust/crates/wayland-cursor-0.29.4.crate) = 6136 SHA256 (rust/crates/wayland-protocols-0.28.6.crate) = 286620ea4d803bacf61fa087a4242ee316693099ee5a140796aaba02b29f861f SIZE (rust/crates/wayland-protocols-0.28.6.crate) = 125975 SHA256 (rust/crates/wayland-protocols-0.29.4.crate) = 60147ae23303402e41fe034f74fb2c35ad0780ee88a1c40ac09a3be1e7465741 SIZE (rust/crates/wayland-protocols-0.29.4.crate) = 140842 SHA256 (rust/crates/wayland-scanner-0.28.6.crate) = ce923eb2deb61de332d1f356ec7b6bf37094dc5573952e1c8936db03b54c03f1 SIZE (rust/crates/wayland-scanner-0.28.6.crate) = 17226 SHA256 (rust/crates/wayland-scanner-0.29.4.crate) = 39a1ed3143f7a143187156a2ab52742e89dac33245ba505c17224df48939f9e0 SIZE (rust/crates/wayland-scanner-0.29.4.crate) = 17231 SHA256 (rust/crates/wayland-sys-0.28.6.crate) = d841fca9aed7febf9bed2e9796c49bf58d4152ceda8ac949ebe00868d8f0feb8 SIZE (rust/crates/wayland-sys-0.28.6.crate) = 7937 SHA256 (rust/crates/wayland-sys-0.29.4.crate) = d9341df79a8975679188e37dab3889bfa57c44ac2cb6da166f519a81cbe452d4 SIZE (rust/crates/wayland-sys-0.29.4.crate) = 7919 SHA256 (rust/crates/web-sys-0.3.50.crate) = a905d57e488fec8861446d3393670fb50d27a262344013181c2cdf9fff5481be SIZE (rust/crates/web-sys-0.3.50.crate) = 650100 SHA256 (rust/crates/webpki-0.21.4.crate) = b8e38c0608262c46d4a56202ebabdeb094cef7e560ca7a226c6bf055188aa4ea SIZE (rust/crates/webpki-0.21.4.crate) = 58505 SHA256 (rust/crates/webpki-0.22.0.crate) = f095d78192e208183081cc07bc5515ef55216397af48b873e5edcd72637fa1bd SIZE (rust/crates/webpki-0.22.0.crate) = 58663 SHA256 (rust/crates/wfd-0.1.7.crate) = e713040b67aae5bf1a0ae3e1ebba8cc29ab2b90da9aa1bff6e09031a8a41d7a8 SIZE (rust/crates/wfd-0.1.7.crate) = 8825 SHA256 (rust/crates/which-3.1.1.crate) = d011071ae14a2f6671d0b74080ae0cd8ebf3a6f8c9589a2cd45f23126fe29724 SIZE (rust/crates/which-3.1.1.crate) = 8071 SHA256 (rust/crates/which-4.2.5.crate) = 5c4fb54e6113b6a8772ee41c3404fb0301ac79604489467e0a9ce1f3e97c24ae SIZE (rust/crates/which-4.2.5.crate) = 9326 SHA256 (rust/crates/winapi-0.2.8.crate) = 167dc9d6949a9b857f3451275e911c3f44255842c1f7a76f33c55103a909087a SIZE (rust/crates/winapi-0.2.8.crate) = 455145 SHA256 (rust/crates/winapi-0.3.9.crate) = 5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419 SIZE (rust/crates/winapi-0.3.9.crate) = 1200382 SHA256 (rust/crates/winapi-build-0.1.1.crate) = 2d315eee3b34aca4797b2da6b13ed88266e6d612562a0c46390af8299fc699bc SIZE (rust/crates/winapi-build-0.1.1.crate) = 669 SHA256 (rust/crates/winapi-i686-pc-windows-gnu-0.4.0.crate) = ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6 SIZE (rust/crates/winapi-i686-pc-windows-gnu-0.4.0.crate) = 2918815 SHA256 (rust/crates/winapi-util-0.1.5.crate) = 70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178 SIZE (rust/crates/winapi-util-0.1.5.crate) = 10164 SHA256 (rust/crates/winapi-wsapoll-0.1.1.crate) = 44c17110f57155602a80dca10be03852116403c9ff3cd25b079d666f2aa3df6e SIZE (rust/crates/winapi-wsapoll-0.1.1.crate) = 2881 SHA256 (rust/crates/winapi-x86_64-pc-windows-gnu-0.4.0.crate) = 712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f SIZE (rust/crates/winapi-x86_64-pc-windows-gnu-0.4.0.crate) = 2947998 SHA256 (rust/crates/window_clipboard-0.2.2.crate) = 086ed826cc4468377b6b995300d5f7f852a2fe1eb02e6cd1ccd4a574deb9d310 SIZE (rust/crates/window_clipboard-0.2.2.crate) = 13409 SHA256 (rust/crates/windows-sys-0.30.0.crate) = 030b7ff91626e57a05ca64a07c481973cbb2db774e4852c9c7ca342408c6a99a SIZE (rust/crates/windows-sys-0.30.0.crate) = 3256610 SHA256 (rust/crates/windows-sys-0.34.0.crate) = 5acdd78cb4ba54c0045ac14f62d8f94a03d10047904ae2a40afa1e99d8f70825 SIZE (rust/crates/windows-sys-0.34.0.crate) = 3369228 SHA256 (rust/crates/windows_aarch64_msvc-0.30.0.crate) = 29277a4435d642f775f63c7d1faeb927adba532886ce0287bd985bffb16b6bca SIZE (rust/crates/windows_aarch64_msvc-0.30.0.crate) = 669666 SHA256 (rust/crates/windows_aarch64_msvc-0.34.0.crate) = 17cffbe740121affb56fad0fc0e421804adf0ae00891205213b5cecd30db881d SIZE (rust/crates/windows_aarch64_msvc-0.34.0.crate) = 674445 SHA256 (rust/crates/windows_i686_gnu-0.30.0.crate) = 1145e1989da93956c68d1864f32fb97c8f561a8f89a5125f6a2b7ea75524e4b8 SIZE (rust/crates/windows_i686_gnu-0.30.0.crate) = 774464 SHA256 (rust/crates/windows_i686_gnu-0.34.0.crate) = 2564fde759adb79129d9b4f54be42b32c89970c18ebf93124ca8870a498688ed SIZE (rust/crates/windows_i686_gnu-0.34.0.crate) = 772343 SHA256 (rust/crates/windows_i686_msvc-0.30.0.crate) = d4a09e3a0d4753b73019db171c1339cd4362c8c44baf1bcea336235e955954a6 SIZE (rust/crates/windows_i686_msvc-0.30.0.crate) = 732295 SHA256 (rust/crates/windows_i686_msvc-0.34.0.crate) = 9cd9d32ba70453522332c14d38814bceeb747d80b3958676007acadd7e166956 SIZE (rust/crates/windows_i686_msvc-0.34.0.crate) = 733497 SHA256 (rust/crates/windows_x86_64_gnu-0.30.0.crate) = 8ca64fcb0220d58db4c119e050e7af03c69e6f4f415ef69ec1773d9aab422d5a SIZE (rust/crates/windows_x86_64_gnu-0.30.0.crate) = 743236 SHA256 (rust/crates/windows_x86_64_gnu-0.34.0.crate) = cfce6deae227ee8d356d19effc141a509cc503dfd1f850622ec4b0f84428e1f4 SIZE (rust/crates/windows_x86_64_gnu-0.34.0.crate) = 744301 SHA256 (rust/crates/windows_x86_64_msvc-0.30.0.crate) = 08cabc9f0066848fef4bc6a1c1668e6efce38b661d2aeec75d18d8617eebb5f1 SIZE (rust/crates/windows_x86_64_msvc-0.30.0.crate) = 668972 SHA256 (rust/crates/windows_x86_64_msvc-0.34.0.crate) = d19538ccc21819d01deaf88d6a17eae6596a12e9aafdbb97916fb49896d89de9 SIZE (rust/crates/windows_x86_64_msvc-0.34.0.crate) = 669900 SHA256 (rust/crates/winit-0.25.0.crate) = 79610794594d5e86be473ef7763f604f2159cbac8c94debd00df8fb41e86c2f8 SIZE (rust/crates/winit-0.25.0.crate) = 338220 SHA256 (rust/crates/winres-0.1.12.crate) = b68db261ef59e9e52806f688020631e987592bd83619edccda9c47d42cde4f6c SIZE (rust/crates/winres-0.1.12.crate) = 19772 SHA256 (rust/crates/wio-0.2.2.crate) = 5d129932f4644ac2396cb456385cbf9e63b5b30c6e8dc4820bdca4eb082037a5 SIZE (rust/crates/wio-0.2.2.crate) = 11214 SHA256 (rust/crates/wyz-0.4.0.crate) = 129e027ad65ce1453680623c3fb5163cbf7107bfe1aa32257e7d0e63f9ced188 SIZE (rust/crates/wyz-0.4.0.crate) = 14002 SHA256 (rust/crates/x11-clipboard-0.5.3.crate) = 473068b7b80ac86a18328824f1054e5e007898c47b5bbc281bd7abe32bc3653c SIZE (rust/crates/x11-clipboard-0.5.3.crate) = 7789 SHA256 (rust/crates/x11-dl-2.19.1.crate) = ea26926b4ce81a6f5d9d0f3a0bc401e5a37c6ae14a1bfaa8ff6099ca80038c59 SIZE (rust/crates/x11-dl-2.19.1.crate) = 64664 SHA256 (rust/crates/x11rb-0.8.1.crate) = 6ffb080b3f2f616242a4eb8e7d325035312127901025b0052bc3154a282d0f19 SIZE (rust/crates/x11rb-0.8.1.crate) = 611888 SHA256 (rust/crates/xattr-0.2.2.crate) = 244c3741f4240ef46274860397c7c74e50eb23624996930e484c16679633a54c SIZE (rust/crates/xattr-0.2.2.crate) = 11750 SHA256 (rust/crates/xcb-0.9.0.crate) = 62056f63138b39116f82a540c983cc11f1c90cd70b3d492a70c25eaa50bd22a6 SIZE (rust/crates/xcb-0.9.0.crate) = 129744 SHA256 (rust/crates/xcb-0.10.1.crate) = 771e2b996df720cd1c6dd9ff90f62d91698fd3610cc078388d0564bdd6622a9c SIZE (rust/crates/xcb-0.10.1.crate) = 141048 SHA256 (rust/crates/xcursor-0.3.4.crate) = 463705a63313cd4301184381c5e8042f0a7e9b4bb63653f216311d4ae74690b7 SIZE (rust/crates/xcursor-0.3.4.crate) = 6069 SHA256 (rust/crates/xdg-2.4.1.crate) = 0c4583db5cbd4c4c0303df2d15af80f0539db703fa1c68802d4cbbd2dd0f88f6 SIZE (rust/crates/xdg-2.4.1.crate) = 14034 SHA256 (rust/crates/xi-unicode-0.3.0.crate) = a67300977d3dc3f8034dae89778f502b6ba20b269527b3223ba59c0cf393bb8a SIZE (rust/crates/xi-unicode-0.3.0.crate) = 87001 SHA256 (rust/crates/xkb-0.2.1.crate) = aec02bc5de902aa579f3d2f2c522edaf40fa42963cbaffe645b058ddcc68fdb2 SIZE (rust/crates/xkb-0.2.1.crate) = 26470 SHA256 (rust/crates/xkbcommon-sys-0.7.5.crate) = 59a001b79d45b0b4541c228a501177f2b35db976bf7ee3f7fce8fa2381554ab5 SIZE (rust/crates/xkbcommon-sys-0.7.5.crate) = 20988 SHA256 (rust/crates/xml-rs-0.8.4.crate) = d2d7d3948613f75c98fd9328cfdcc45acc4d360655289d0a7d4ec931392200a3 SIZE (rust/crates/xml-rs-0.8.4.crate) = 52690 SHA256 (rust/crates/xmlparser-0.13.3.crate) = 114ba2b24d2167ef6d67d7d04c8cc86522b87f490025f39f0303b7db5bf5e3d8 SIZE (rust/crates/xmlparser-0.13.3.crate) = 25732 SHA256 (rust/crates/yasna-0.5.0.crate) = 346d34a236c9d3e5f3b9b74563f238f955bbd05fa0b8b4efa53c130c43982f4c SIZE (rust/crates/yasna-0.5.0.crate) = 32857 SHA256 (Imberflur-wgpu-profiler-wgpu-0.8_GH0.tar.gz) = e30fa6d177db9c77c8f938a0bef7189d022229b483251a3c082b876c0db812db SIZE (Imberflur-wgpu-profiler-wgpu-0.8_GH0.tar.gz) = 14759 SHA256 (fdehau-tui-rs-54b841fab6cfdb38e8dc1382176e965787964b4c_GH0.tar.gz) = 920e26b3816975b77f9111206aec5859560141e222bef2d539c05894798ac4ba SIZE (fdehau-tui-rs-54b841fab6cfdb38e8dc1382176e965787964b4c_GH0.tar.gz) = 1531288 SHA256 (Frinksy-rust-xkbcommon-sys-8f615dd6cd90a4ab77c45627830dde49b592b9b5_GH0.tar.gz) = 58bb45ab6a5ff5a492449a0fce318f6a33d2caee9e8ba5f5a34e2ff143f9a7b0 SIZE (Frinksy-rust-xkbcommon-sys-8f615dd6cd90a4ab77c45627830dde49b592b9b5_GH0.tar.gz) = 21949 SHA256 (veloren-conrod-ca9fd429ca7db854e018acc6dcb2cd8abd9e070d_GL0.tar.gz) = 26fafb4d05a0f47fd66a4350d664ed63bc3a7ac00aed289d50f8f9e3dc12a877 SIZE (veloren-conrod-ca9fd429ca7db854e018acc6dcb2cd8abd9e070d_GL0.tar.gz) = 808460 SHA256 (veloren-auth-fb3dcbc4962b367253f8f2f92760ef44d2679c9a_GL0.tar.gz) = b2d4945ddb39ad719985b189fb720350ab86df94332f362a0e4477d7a2a774a3 SIZE (veloren-auth-fb3dcbc4962b367253f8f2f92760ef44d2679c9a_GL0.tar.gz) = 34375 SHA256 (Imberflur-iced-winit-0.25_GH0.tar.gz) = 28a51922c4a44a17619ad18211004358b818cb4294e87b0369891d1f55a58b7a SIZE (Imberflur-iced-winit-0.25_GH0.tar.gz) = 1130464 SHA256 (veloren-specs-idvs-c17abc638f23ef221ce7384c7dd77eef757b82f4_GL0.tar.gz) = 7d3734a464bb8458d7f1b0cb8506c69c6af24027f889697e861613d278d177bb SIZE (veloren-specs-idvs-c17abc638f23ef221ce7384c7dd77eef757b82f4_GL0.tar.gz) = 2547 SHA256 (gfx-rs-naga-gfx-25_GH0.tar.gz) = cfbb7b2b3d2b06770278e599b1af9bbf82d6193a5340215bf5f204bfd2367644 SIZE (gfx-rs-naga-gfx-25_GH0.tar.gz) = 263802 SHA256 (gfx-rs-gfx-27a1dae3796d33d23812f2bb8c7e3b5aea18b521_GH0.tar.gz) = 0e3578dae85a52adba9cb75e583d4a73c1f50491d3021c80610e2cebca223191 SIZE (gfx-rs-gfx-27a1dae3796d33d23812f2bb8c7e3b5aea18b521_GH0.tar.gz) = 751311 SHA256 (gfx-rs-wgpu-a92b8549a8e2cb9dac781bafc5ed32828f3caf46_GH0.tar.gz) = c33f2d7640bdb420b3cf104f873649e83888e2a3c7d7f2dd1a4be29510861b8c SIZE (gfx-rs-wgpu-a92b8549a8e2cb9dac781bafc5ed32828f3caf46_GH0.tar.gz) = 4008917 SHA256 (veloren-refinery-8ecf4b4772d791e6c8c0a3f9b66a7530fad1af3e_GL0.tar.gz) = 5b66f3a324504b64edf02806953fa5228578b5ab70837fba10736dab2ac60df0 SIZE (veloren-refinery-8ecf4b4772d791e6c8c0a3f9b66a7530fad1af3e_GL0.tar.gz) = 38520 SHA256 (xMAC94x-portpicker-rs-df6b37872f3586ac3b21d08b56c8ec7cd92fb172_GH0.tar.gz) = 29252101e189bbe067f0bacba18181afc69a2fb9bc031bbba8dcbade45dec02f SIZE (xMAC94x-portpicker-rs-df6b37872f3586ac3b21d08b56c8ec7cd92fb172_GH0.tar.gz) = 2210 SHA256 (hasenbanck-egui_wgpu_backend-63a002c6a9b6c016e45806dd065864431caab621_GH0.tar.gz) = 0adea0f9f167886d2bc7535c09d8f543a7c1c9a6524ca6981f9d39525c6830a6 SIZE (hasenbanck-egui_wgpu_backend-63a002c6a9b6c016e45806dd065864431caab621_GH0.tar.gz) = 11500 SHA256 (yoanlcq-vek-84d5cb65841d46599a986c5477341bea4456be26_GH0.tar.gz) = f6fc0b8e9b1290729ea94865be84a8c47846e49e3c193dab700940e1452d2fed SIZE (yoanlcq-vek-84d5cb65841d46599a986c5477341bea4456be26_GH0.tar.gz) = 90485 SHA256 (Frinksy-keyboard-keynames-1ae010ca032a57dfe0ba01d4346a3b03bde36de0_GL0.tar.gz) = 245e62c05484f0d1e2b7d7dfcd37e32ae4739d955e2e0a915ecf1bdcddfec86f SIZE (Frinksy-keyboard-keynames-1ae010ca032a57dfe0ba01d4346a3b03bde36de0_GL0.tar.gz) = 5315 SHA256 (veloren-veloren-34ae5b9df73f367fa34350337ebba71711f48b86_GL0.tar.gz) = 9a4573d67057be319c5225be096137d1e246c0314f93717f43a021fde12355a6 SIZE (veloren-veloren-34ae5b9df73f367fa34350337ebba71711f48b86_GL0.tar.gz) = 214360499 diff --git a/games/veloren/files/patch-rust-1.63 b/games/veloren/files/patch-rust-1.63 new file mode 100644 index 000000000000..5050354349f1 --- /dev/null +++ b/games/veloren/files/patch-rust-1.63 @@ -0,0 +1,36 @@ +--- Cargo.lock.orig 2022-08-17 12:36:05 UTC ++++ Cargo.lock +@@ -4025,9 +4025,9 @@ name = "packed_simd_2" + + [[package]] + name = "packed_simd_2" +-version = "0.3.7" ++version = "0.3.8" + source = "registry+https://github.com/rust-lang/crates.io-index" +-checksum = "defdcfef86dcc44ad208f71d9ff4ce28df6537a4e0d6b0e8e845cb8ca10059a6" ++checksum = "a1914cd452d8fccd6f9db48147b29fd4ae05bea9dc5d9ad578509f72415de282" + dependencies = [ + "cfg-if 1.0.0", + "libm 0.1.4", +@@ -6241,7 +6241,7 @@ dependencies = [ + source = "registry+https://github.com/rust-lang/crates.io-index" + checksum = "4ee73e6e4924fe940354b8d4d98cad5231175d615cd855b758adc658c0aac6a0" + dependencies = [ +- "cfg-if 1.0.0", ++ "cfg-if 0.1.10", + "rand 0.8.5", + "static_assertions", + ] + + +--- voxygen/src/scene/terrain.rs.orig 2022-08-17 11:42:07.587067000 +0000 ++++ voxygen/src/scene/terrain.rs 2022-08-17 11:43:10.451160000 +0000 +@@ -555,7 +557,7 @@ impl SpriteRenderContext { + } + }); + +- let init = core::lazy::OnceCell::new(); ++ let init = core::cell::OnceCell::new(); + let mut join_handle = Some(join_handle); + let mut closure = move |renderer: &mut Renderer| { + // The second unwrap can only fail if the sprite meshing thread panics, which diff --git a/graphics/dssim/Makefile b/graphics/dssim/Makefile index 9d3cdd01ef6d..61a4ae9ff598 100644 --- a/graphics/dssim/Makefile +++ b/graphics/dssim/Makefile @@ -1,93 +1,93 @@ PORTNAME= dssim DISTVERSION= 3.2.0 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= graphics MASTER_SITES= CRATESIO # XXX Teach USES=cargo to have proper default DISTFILES= ${CARGO_DIST_SUBDIR}/${DISTNAME}${CARGO_CRATE_EXT} MAINTAINER= jbeich@FreeBSD.org COMMENT= Image similarity comparison simulating human perception LICENSE= AGPLv3+ LICENSE_FILE= ${WRKSRC}/LICENSE USES= cargo PLIST_FILES= bin/${PORTNAME} CARGO_CRATES= adler-1.0.2 \ ahash-0.7.6 \ aom-decode-0.2.1 \ arrayvec-0.7.2 \ autocfg-1.1.0 \ avif-parse-0.13.2 \ bitreader-0.3.5 \ bytemuck-1.7.3 \ byteorder-1.4.3 \ cc-1.0.72 \ cfg-if-0.1.10 \ cfg-if-1.0.0 \ cmake-0.1.48 \ crc32fast-1.3.2 \ crossbeam-channel-0.5.2 \ crossbeam-deque-0.8.1 \ crossbeam-epoch-0.9.7 \ crossbeam-utils-0.8.7 \ dssim-core-3.2.0 \ dunce-1.0.2 \ either-1.6.1 \ fallible_collections-0.4.4 \ flate2-1.0.22 \ foreign-types-0.5.0 \ foreign-types-macros-0.2.1 \ foreign-types-shared-0.3.0 \ getopts-0.2.21 \ getrandom-0.2.4 \ hashbrown-0.11.2 \ hermit-abi-0.1.19 \ imgref-1.9.1 \ itertools-0.10.3 \ jobserver-0.1.24 \ lazy_static-1.4.0 \ lcms2-5.4.1 \ lcms2-sys-3.1.9 \ libaom-sys-0.11.0 \ libc-0.2.117 \ libwebp-0.1.2 \ libwebp-sys2-0.1.2 \ load_image-2.16.2 \ lodepng-3.6.0 \ log-0.4.14 \ memoffset-0.6.5 \ miniz_oxide-0.4.4 \ mozjpeg-0.9.1 \ mozjpeg-sys-1.0.1 \ nasm-rs-0.2.4 \ num-0.4.0 \ num-bigint-0.4.3 \ num-complex-0.4.0 \ num-integer-0.1.44 \ num-iter-0.1.42 \ num-rational-0.4.0 \ num-traits-0.2.14 \ num_cpus-1.13.1 \ once_cell-1.9.0 \ pkg-config-0.3.24 \ proc-macro2-1.0.36 \ quick-error-2.0.1 \ quote-1.0.15 \ rayon-1.5.1 \ rayon-core-1.9.1 \ rexif-0.7.3 \ rgb-0.8.31 \ scopeguard-1.1.0 \ static_assertions-1.1.0 \ syn-1.0.86 \ unicode-width-0.1.9 \ unicode-xid-0.2.2 \ vcpkg-0.2.15 \ version_check-0.9.4 \ wasi-0.10.2+wasi-snapshot-preview1 \ yuv-0.1.4 .include diff --git a/graphics/gifski/Makefile b/graphics/gifski/Makefile index f74f13f48709..e3db08dbd4e0 100644 --- a/graphics/gifski/Makefile +++ b/graphics/gifski/Makefile @@ -1,106 +1,106 @@ PORTNAME= gifski DISTVERSION= 1.7.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= graphics MAINTAINER= yuri@FreeBSD.org COMMENT= Highest-quality GIF encoder based on pngquant LICENSE= AGPLv3 LICENSE_FILE= ${WRKSRC}/LICENSE USES= cargo USE_GITHUB= yes GH_ACCOUNT= ImageOptim CARGO_CRATES= adler-1.0.2 \ ahash-0.7.6 \ arrayvec-0.7.2 \ atty-0.2.14 \ autocfg-1.1.0 \ bindgen-0.59.2 \ bitflags-1.3.2 \ bytemuck-1.9.1 \ cc-1.0.73 \ cexpr-0.6.0 \ cfg-if-1.0.0 \ clang-sys-1.3.3 \ clap-3.1.18 \ clap_lex-0.2.0 \ color_quant-1.1.0 \ crc32fast-1.3.2 \ crossbeam-channel-0.5.4 \ crossbeam-deque-0.8.1 \ crossbeam-epoch-0.9.8 \ crossbeam-utils-0.8.8 \ dunce-1.0.2 \ either-1.6.1 \ fallible_collections-0.4.4 \ ffmpeg-next-4.4.0 \ flate2-1.0.24 \ getrandom-0.2.6 \ gif-0.11.3 \ gif-dispose-3.1.1 \ gifsicle-1.92.5 \ glob-0.3.0 \ hashbrown-0.11.2 \ hermit-abi-0.1.19 \ imagequant-4.0.0 \ imgref-1.9.1 \ indexmap-1.8.2 \ lazy_static-1.4.0 \ lazycell-1.3.0 \ libc-0.2.126 \ libloading-0.7.3 \ lodepng-3.6.2 \ loop9-0.1.3 \ memchr-2.5.0 \ memoffset-0.6.5 \ minimal-lexical-0.2.1 \ miniz_oxide-0.5.3 \ natord-1.0.9 \ noisy_float-0.2.0 \ nom-7.1.1 \ num-traits-0.2.15 \ num_cpus-1.13.1 \ once_cell-1.12.0 \ os_str_bytes-6.1.0 \ pbr-1.0.4 \ peeking_take_while-0.1.2 \ pkg-config-0.3.25 \ proc-macro2-1.0.39 \ quick-error-2.0.1 \ quote-1.0.18 \ rayon-1.5.3 \ rayon-core-1.9.3 \ regex-1.5.6 \ regex-syntax-0.6.26 \ resize-0.7.3 \ rgb-0.8.32 \ rustc-hash-1.1.0 \ scopeguard-1.1.0 \ shlex-1.1.0 \ strsim-0.10.0 \ termcolor-1.1.3 \ textwrap-0.15.0 \ thread_local-1.1.4 \ time-0.1.43 \ unicode-ident-1.0.0 \ vcpkg-0.2.15 \ version_check-0.9.4 \ wasi-0.10.2+wasi-snapshot-preview1 \ weezl-0.1.6 \ wild-2.0.4 \ winapi-0.3.9 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-util-0.1.5 \ winapi-x86_64-pc-windows-gnu-0.4.0 \ ffmpeg-sys-next@git+https://github.com/kornelski/rust-ffmpeg-sys-1?rev=78458039d5fac99354f9cb078869f3be3f3af5fb\#78458039d5fac99354f9cb078869f3be3f3af5fb PLIST_FILES= bin/${PORTNAME} post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/${PORTNAME} .include diff --git a/graphics/ikona/Makefile b/graphics/ikona/Makefile index 361557709fef..29cd4f608d08 100644 --- a/graphics/ikona/Makefile +++ b/graphics/ikona/Makefile @@ -1,29 +1,29 @@ PORTNAME= ikona DISTVERSION= 1.0 -PORTREVISION= 25 +PORTREVISION= 26 CATEGORIES= graphics kde MASTER_SITES= KDE/stable/${PORTNAME}/${DISTVERSION}/ DISTFILES= ${DISTNAME}${EXTRACT_SUFX} \ ${DISTNAME}.cargo.vendor${EXTRACT_SUFX} EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX} MAINTAINER= kde@FreeBSD.org COMMENT= Icon editing companion LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/LICENSE BUILD_DEPENDS= rustc:lang/${RUST_DEFAULT} USES= cmake:noninja compiler:c++11-lang desktop-file-utils \ gmake gnome iconv kde:5 pkgconfig qt:5 tar:xz USE_GNOME= cairo gdkpixbuf2 glib20 libxml2 pango USE_KDE= auth codecs config configwidgets coreaddons i18n \ kirigami2 widgetsaddons USE_QT= core declarative gui network widgets xml \ buildtools_build qmake_build pre-configure: ${CP} ${DISTDIR}/${DISTNAME}.cargo.vendor${EXTRACT_SUFX} ${WRKSRC}/ikona.cargo.vendor.tar.xz .include diff --git a/graphics/libopenraw/Makefile b/graphics/libopenraw/Makefile index 0c035fc1e67b..c3e69375f4f8 100644 --- a/graphics/libopenraw/Makefile +++ b/graphics/libopenraw/Makefile @@ -1,115 +1,115 @@ PORTNAME= libopenraw PORTVERSION= 0.3.1 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= graphics MASTER_SITES= http://libopenraw.freedesktop.org/download/ DISTFILES= ${DISTNAME}${EXTRACT_SUFX} MAINTAINER= jhale@FreeBSD.org COMMENT= Library for camera RAW files decoding LICENSE= LGPL3+ LICENSE_FILE= ${WRKSRC}/COPYING.LESSER BUILD_DEPENDS= ${LOCALBASE}/include/boost/variant.hpp:devel/boost-libs TEST_DEPENDS= curl:ftp/curl USES= cargo compiler:c++14-lang gnome jpeg libtool localbase pkgconfig \ tar:bz2 USE_GNOME= libxml2 USE_LDCONFIG= yes GNU_CONFIGURE= yes CONFIGURE_ARGS= --with-boost=${LOCALBASE}/include \ --disable-silent-rules INSTALL_TARGET= install-strip TEST_TARGET= check CARGO_CRATES= ahash-0.3.8 \ aho-corasick-0.7.15 \ ansi_term-0.11.0 \ atty-0.2.14 \ autocfg-1.0.1 \ bitflags-1.2.1 \ bitreader-0.3.2 \ byteorder-1.3.4 \ cbindgen-0.14.3 \ cfg-if-0.1.10 \ clap-2.33.3 \ env_logger-0.7.1 \ getrandom-0.1.15 \ hashbrown-0.7.2 \ heck-0.3.1 \ hermit-abi-0.1.17 \ humantime-1.3.0 \ itoa-0.4.6 \ lazy_static-1.4.0 \ libc-0.2.81 \ log-0.4.11 \ memchr-2.3.4 \ num-traits-0.2.14 \ ppv-lite86-0.2.10 \ proc-macro2-1.0.24 \ quick-error-1.2.3 \ quote-1.0.7 \ rand-0.7.3 \ rand_chacha-0.2.2 \ rand_core-0.5.1 \ rand_hc-0.2.0 \ redox_syscall-0.1.57 \ regex-1.4.2 \ regex-syntax-0.6.21 \ remove_dir_all-0.5.3 \ ryu-1.0.5 \ serde-1.0.118 \ serde_derive-1.0.118 \ serde_json-1.0.60 \ static_assertions-1.1.0 \ strsim-0.8.0 \ syn-1.0.54 \ tempfile-3.1.0 \ termcolor-1.1.2 \ textwrap-0.11.0 \ thread_local-1.0.1 \ toml-0.5.7 \ unicode-segmentation-1.7.1 \ unicode-width-0.1.8 \ unicode-xid-0.2.1 \ vec_map-0.8.2 \ wasi-0.9.0+wasi-snapshot-preview1 \ winapi-0.3.9 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-util-0.1.5 \ winapi-x86_64-pc-windows-gnu-0.4.0 CARGO_CARGOTOML=${WRKSRC}/lib/mp4/Cargo.toml CARGO_CARGOLOCK=${WRKSRC}/lib/mp4/mp4parse_capi/Cargo.lock CARGO_BUILD= no CARGO_INSTALL= no CARGO_TEST= no PLIST_SUB= VER=${PORTVERSION:R} OPTIONS_DEFINE= GNOME TEST OPTIONS_DEFAULT= GNOME OPTIONS_SUB= yes GNOME_CONFIGURE_ENABLE= gnome GNOME_USES= gettext-runtime GNOME_USE= GNOME=glib20,gdkpixbuf2 TEST_BUILD_DEPENDS= curl:ftp/curl post-patch: @${REINPLACE_CMD} -E \ -e 's|\{libdir\}/pkgconfig|{prefix}/libdata/pkgconfig|g' \ ${WRKSRC}/configure post-patch-TEST-off: @${REINPLACE_CMD} -e 's|testsuite ||' ${WRKSRC}/Makefile.in pre-configure: @${CARGO_CARGO_RUN} update \ --manifest-path ${WRKSRC}/lib/mp4/mp4parse_capi/Cargo.toml \ --verbose .include diff --git a/graphics/librsvg2-rust/Makefile b/graphics/librsvg2-rust/Makefile index 72889216a352..7e653daf823d 100644 --- a/graphics/librsvg2-rust/Makefile +++ b/graphics/librsvg2-rust/Makefile @@ -1,54 +1,54 @@ PORTNAME= librsvg PORTVERSION= 2.54.1 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= graphics gnome MASTER_SITES= GNOME PKGNAMESUFFIX= 2-rust DIST_SUBDIR= gnome2 MAINTAINER= desktop@FreeBSD.org COMMENT= Library for parsing and rendering SVG vector-graphic files LICENSE= LGPL20 BUILD_DEPENDS= ${RUST_DEFAULT}>=1.39.0:lang/${RUST_DEFAULT} \ valac:lang/vala \ gi-docgen:textproc/py-gi-docgen \ rst2man:textproc/py-docutils LIB_DEPENDS= libfontconfig.so:x11-fonts/fontconfig \ libfreetype.so:print/freetype2 \ libharfbuzz.so:print/harfbuzz \ libpng.so:graphics/png USES= compiler:c11 cpe gettext gmake gnome libtool pkgconfig tar:xz CPE_VENDOR= gnome USE_GNOME= cairo gdkpixbuf2 gnomeprefix libxml2 pango introspection:build USE_LDCONFIG= yes PORTSCOUT= limitw:1,even GNU_CONFIGURE= yes CONFIGURE_ARGS= --disable-Bsymbolic \ --disable-dependency-tracking \ --disable-static \ --enable-vala # Make sure it uses the Rust toolchain from ports. CONFIGURE_ENV= CARGO=${LOCALBASE}/bin/cargo \ RUSTC=${LOCALBASE}/bin/rustc \ RUSTFLAGS="${RUSTFLAGS} -C linker=${CC:Q} ${LDFLAGS:C/.+/-C link-arg=&/}" MAKE_ENV= CARGO_BUILD_JOBS=${MAKE_JOBS_NUMBER} \ RUSTC=${LOCALBASE}/bin/rustc \ RUSTFLAGS="${RUSTFLAGS} -C linker=${CC:Q} ${LDFLAGS:C/.+/-C link-arg=&/}" INSTALL_TARGET= install-strip TEST_TARGET= check CONFLICTS_INSTALL= librsvg2 post-patch: # Disable vendor checksums @${REINPLACE_CMD} -e 's/"files":{[^}]*}/"files":{}/' \ ${WRKSRC}/vendor/*/.cargo-checksum.json pre-configure: @cd ${WRKSRC} && ${SETENV} ${CONFIGURE_ENV} ${LOCALBASE}/bin/cargo update .include diff --git a/graphics/pastel/Makefile b/graphics/pastel/Makefile index da2b2ea848ea..4968c685be5b 100644 --- a/graphics/pastel/Makefile +++ b/graphics/pastel/Makefile @@ -1,131 +1,131 @@ PORTNAME= pastel DISTVERSIONPREFIX= v DISTVERSION= 0.8.1 -PORTREVISION= 10 +PORTREVISION= 11 CATEGORIES= graphics MAINTAINER= lcook@FreeBSD.org COMMENT= Command-line tool to generate, analyze, convert and manipulate colors LICENSE= APACHE20 MIT LICENSE_COMB= dual LICENSE_FILE_APACHE20= ${WRKSRC}/LICENSE-APACHE LICENSE_FILE_MIT= ${WRKSRC}/LICENSE-MIT USES= cargo shebangfix USE_GITHUB= yes GH_ACCOUNT= sharkdp SHEBANG_FILES= doc/demo-scripts/gradient.sh CARGO_CRATES= aho-corasick-0.7.18 \ ansi_term-0.11.0 \ approx-0.3.2 \ arrayvec-0.5.2 \ assert_cmd-0.12.2 \ atty-0.2.14 \ autocfg-1.0.1 \ bitflags-1.2.1 \ bstr-0.2.16 \ bumpalo-3.7.0 \ cast-0.2.7 \ cfg-if-1.0.0 \ clap-2.33.3 \ criterion-0.3.4 \ criterion-plot-0.4.3 \ crossbeam-channel-0.5.1 \ crossbeam-deque-0.8.0 \ crossbeam-epoch-0.9.5 \ crossbeam-utils-0.8.5 \ csv-1.1.6 \ csv-core-0.1.10 \ difference-2.0.0 \ doc-comment-0.3.3 \ either-1.6.1 \ escargot-0.5.2 \ getrandom-0.1.16 \ half-1.7.1 \ hermit-abi-0.1.19 \ itertools-0.9.0 \ itertools-0.10.1 \ itoa-0.4.7 \ js-sys-0.3.51 \ lazy_static-1.4.0 \ lexical-core-0.7.6 \ libc-0.2.97 \ log-0.4.14 \ memchr-2.4.0 \ memoffset-0.6.4 \ nom-5.1.2 \ num-traits-0.2.14 \ num_cpus-1.13.0 \ once_cell-1.8.0 \ oorandom-11.1.3 \ output_vt100-0.1.2 \ plotters-0.3.1 \ plotters-backend-0.3.2 \ plotters-svg-0.3.1 \ ppv-lite86-0.2.10 \ predicates-1.0.8 \ predicates-core-1.0.2 \ predicates-tree-1.0.2 \ proc-macro2-1.0.27 \ quote-1.0.9 \ rand-0.7.3 \ rand_chacha-0.2.2 \ rand_core-0.5.1 \ rand_hc-0.2.0 \ rand_xoshiro-0.4.0 \ rayon-1.5.1 \ rayon-core-1.9.1 \ regex-1.5.4 \ regex-automata-0.1.10 \ regex-syntax-0.6.25 \ rustc_version-0.4.0 \ ryu-1.0.5 \ same-file-1.0.6 \ scopeguard-1.1.0 \ semver-1.0.3 \ serde-1.0.126 \ serde_cbor-0.11.1 \ serde_derive-1.0.126 \ serde_json-1.0.64 \ static_assertions-1.1.0 \ strsim-0.8.0 \ syn-1.0.73 \ term_size-0.3.2 \ textwrap-0.11.0 \ tinytemplate-1.2.1 \ treeline-0.1.0 \ unicode-width-0.1.8 \ unicode-xid-0.2.2 \ vec_map-0.8.2 \ version_check-0.9.3 \ wait-timeout-0.2.0 \ walkdir-2.3.2 \ wasi-0.9.0+wasi-snapshot-preview1 \ wasm-bindgen-0.2.74 \ wasm-bindgen-backend-0.2.74 \ wasm-bindgen-macro-0.2.74 \ wasm-bindgen-macro-support-0.2.74 \ wasm-bindgen-shared-0.2.74 \ web-sys-0.3.51 \ winapi-0.3.9 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-util-0.1.5 \ winapi-x86_64-pc-windows-gnu-0.4.0 PLIST_FILES= bin/${PORTNAME} DOCS= doc/colorcheck.md doc/colorcheck.png \ doc/demo-scripts/gradient.sh doc/pastel.gif README.md PORTDOCS= ${DOCS:T} OPTIONS_DEFINE= DOCS post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/${PORTNAME} post-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} cd ${WRKSRC} && ${INSTALL_DATA} ${DOCS} ${STAGEDIR}${DOCSDIR} .include diff --git a/graphics/rx/Makefile b/graphics/rx/Makefile index e7ce952c69ff..053bc867d7f2 100644 --- a/graphics/rx/Makefile +++ b/graphics/rx/Makefile @@ -1,113 +1,113 @@ PORTNAME= rx DISTVERSIONPREFIX= v DISTVERSION= 0.5.2 -PORTREVISION= 10 +PORTREVISION= 11 CATEGORIES= graphics PKGNAMESUFFIX= -editor MAINTAINER= yuri@FreeBSD.org COMMENT= Modern and minimalist pixel editor implemented in rust LICENSE= GPLv3 LICENSE_FILE= ${WRKSRC}/LICENSE ONLY_FOR_ARCHS= amd64 ONLY_FOR_ARCHS_REASON= meowhash crate only supports x86_64, see https://github.com/bodil/meowhash-rs/issues/5 USES= cargo xorg USE_GITHUB= yes GH_ACCOUNT= cloudhead USE_XORG= x11 xcursor xext xi xinerama xrandr CARGO_CRATES= adler32-1.0.4 \ arrayref-0.3.6 \ arrayvec-0.5.1 \ autocfg-1.0.0 \ base64-0.11.0 \ bitflags-1.2.1 \ blake2b_simd-0.5.10 \ byteorder-1.3.4 \ c2-chacha-0.2.3 \ cc-1.0.50 \ cfg-if-0.1.10 \ cfg-if-1.0.0 \ chrono-0.4.19 \ cmake-0.1.42 \ color_quant-1.0.1 \ constant_time_eq-0.1.5 \ crc32fast-1.2.0 \ crossbeam-utils-0.7.2 \ deflate-0.8.6 \ digest-0.8.1 \ directories-2.0.2 \ dirs-sys-0.3.4 \ flate2-1.0.14 \ generic-array-0.12.3 \ getrandom-0.1.14 \ gif-0.10.3 \ gl-0.14.0 \ gl_generator-0.14.0 \ glfw-0.41.0 \ glfw-sys-3.3.2 \ itoa-0.4.6 \ khronos_api-3.1.0 \ lazy_static-1.4.0 \ libc-0.2.92 \ log-0.4.14 \ luminance-0.43.2 \ luminance-derive-0.6.3 \ luminance-gl-0.16.1 \ lzw-0.10.0 \ malloc_buf-0.0.6 \ memoir-0.2.1 \ mini-internal-0.1.13 \ miniserde-0.1.13 \ miniz_oxide-0.3.6 \ nonempty-0.1.5 \ num-integer-0.1.44 \ num-traits-0.2.11 \ objc-0.2.7 \ pico-args-0.3.1 \ png-0.16.6 \ podio-0.1.6 \ ppv-lite86-0.2.6 \ proc-macro2-1.0.24 \ quote-1.0.8 \ rand-0.7.3 \ rand_chacha-0.2.1 \ rand_core-0.5.1 \ rand_hc-0.2.0 \ raw-window-handle-0.3.3 \ redox_syscall-0.1.56 \ redox_users-0.3.4 \ remove_dir_all-0.5.2 \ rgx-0.8.1 \ rust-argon2-0.7.0 \ ryu-1.0.5 \ seahash-4.0.0 \ semver-0.9.0 \ semver-parser-0.7.0 \ serde-1.0.114 \ serde_derive-1.0.113 \ snap-0.2.5 \ syn-1.0.16 \ tempfile-3.1.0 \ time-0.1.44 \ toml-0.5.6 \ typenum-1.11.2 \ unicode-xid-0.2.0 \ wasi-0.9.0+wasi-snapshot-preview1 \ wasi-0.10.0+wasi-snapshot-preview1 \ winapi-0.3.8 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-x86_64-pc-windows-gnu-0.4.0 \ xml-rs-0.8.0 \ zip-0.5.5 PLIST_FILES= bin/rx LDFLAGS+= -L${PREFIX}/lib post-install: @${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/${PORTNAME} .include diff --git a/graphics/svgbob/Makefile b/graphics/svgbob/Makefile index d0bff7552010..be3cc5e98dfc 100644 --- a/graphics/svgbob/Makefile +++ b/graphics/svgbob/Makefile @@ -1,65 +1,65 @@ PORTNAME= svgbob DISTVERSION= g20190412 -PORTREVISION= 30 +PORTREVISION= 31 CATEGORIES= graphics MAINTAINER= mikael@FreeBSD.org COMMENT= Convert ASCII diagrams to SVG LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC:H}/LICENSE USES= cargo USE_GITHUB= yes GH_ACCOUNT= ivanceras GH_TAGNAME= c3e84c87094550d8cdc6fc48b40a00712b2951cb CARGO_CRATES= ansi_term-0.11.0 \ atty-0.2.11 \ bitflags-1.0.4 \ cfg-if-0.1.5 \ clap-2.32.0 \ handlebars-0.21.1 \ libc-0.2.60 \ log-0.3.9 \ log-0.4.5 \ pest-0.3.3 \ pom-1.1.0 \ quick-error-1.2.2 \ redox_syscall-0.1.40 \ redox_termios-0.1.1 \ rustc-serialize-0.3.24 \ strsim-0.7.0 \ svg-0.5.11 \ svgbob-0.4.1 \ termion-1.5.1 \ textwrap-0.10.0 \ unicode-width-0.1.5 \ vec_map-0.8.1 \ winapi-0.3.6 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-x86_64-pc-windows-gnu-0.4.0 # ignore #![deny(warnings)] RUSTFLAGS+= --cap-lints warn WRKSRC_SUBDIR= svgbob_cli PLIST_FILES= bin/svgbob PORTDOCS= README.md spec.md PORTEXAMPLES= * OPTIONS_DEFINE= DOCS EXAMPLES post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/svgbob post-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} cd ${WRKSRC:H} && ${INSTALL_MAN} ${PORTDOCS} ${STAGEDIR}${DOCSDIR} post-install-EXAMPLES-on: @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} cd ${WRKSRC}/examples && ${COPYTREE_SHARE} . ${STAGEDIR}${EXAMPLESDIR} .include diff --git a/graphics/viu/Makefile b/graphics/viu/Makefile index 2740ae3b2ad4..611703a84378 100644 --- a/graphics/viu/Makefile +++ b/graphics/viu/Makefile @@ -1,127 +1,127 @@ PORTNAME= viu DISTVERSIONPREFIX= v DISTVERSION= 1.4.0 -PORTREVISION= 6 +PORTREVISION= 7 CATEGORIES= graphics MAINTAINER= lcook@FreeBSD.org COMMENT= Simple terminal image viewer written in Rust LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE-MIT USES= cargo USE_GITHUB= yes GH_ACCOUNT= atanunq CARGO_CRATES= adler-1.0.2 \ adler32-1.2.0 \ aho-corasick-0.5.3 \ ansi_colours-1.0.4 \ ansi_term-0.12.1 \ atty-0.2.14 \ autocfg-1.0.1 \ base64-0.13.0 \ bitflags-1.3.2 \ bytemuck-1.7.3 \ byteorder-1.4.3 \ cc-1.0.72 \ cfg-if-1.0.0 \ clap-2.34.0 \ color_quant-1.1.0 \ console-0.15.0 \ crc32fast-1.3.0 \ crossbeam-channel-0.5.1 \ crossbeam-deque-0.8.1 \ crossbeam-epoch-0.9.5 \ crossbeam-utils-0.8.5 \ crossterm-0.22.1 \ crossterm_winapi-0.9.0 \ ctrlc-3.2.1 \ deflate-0.8.6 \ either-1.6.1 \ encode_unicode-0.3.6 \ getrandom-0.2.3 \ gif-0.11.3 \ hermit-abi-0.1.19 \ image-0.23.14 \ instant-0.1.12 \ jpeg-decoder-0.1.22 \ kernel32-sys-0.2.2 \ lazy_static-0.2.11 \ lazy_static-1.4.0 \ libc-0.2.112 \ lock_api-0.4.5 \ log-0.4.14 \ make-cmd-0.1.0 \ memchr-0.1.11 \ memoffset-0.6.5 \ miniz_oxide-0.3.7 \ miniz_oxide-0.4.4 \ mio-0.7.14 \ miow-0.3.7 \ nix-0.23.1 \ ntapi-0.3.6 \ num-integer-0.1.44 \ num-iter-0.1.42 \ num-rational-0.3.2 \ num-traits-0.2.14 \ num_cpus-1.13.0 \ once_cell-1.9.0 \ parking_lot-0.11.2 \ parking_lot_core-0.8.5 \ png-0.16.8 \ ppv-lite86-0.2.15 \ rand-0.8.4 \ rand_chacha-0.3.1 \ rand_core-0.6.3 \ rand_hc-0.3.1 \ rayon-1.5.1 \ rayon-core-1.9.1 \ redox_syscall-0.2.10 \ regex-0.1.80 \ regex-syntax-0.3.9 \ remove_dir_all-0.5.3 \ scoped_threadpool-0.1.9 \ scopeguard-1.1.0 \ semver-parser-0.6.2 \ signal-hook-0.3.12 \ signal-hook-mio-0.2.1 \ signal-hook-registry-1.4.0 \ sixel-0.3.2 \ sixel-sys-0.3.1 \ smallvec-1.7.0 \ strsim-0.8.0 \ tempfile-3.2.0 \ termcolor-1.1.2 \ terminal_size-0.1.17 \ textwrap-0.11.0 \ thread-id-2.0.0 \ thread_local-0.2.7 \ tiff-0.6.1 \ unicode-width-0.1.9 \ utf8-ranges-0.1.3 \ vec_map-0.8.2 \ viuer-0.5.3 \ wasi-0.10.2+wasi-snapshot-preview1 \ weezl-0.1.5 \ winapi-0.2.8 \ winapi-0.3.9 \ winapi-build-0.1.1 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-util-0.1.5 \ winapi-x86_64-pc-windows-gnu-0.4.0 PLIST_FILES= bin/${PORTNAME} PORTDOCS= README.md OPTIONS_DEFINE= DOCS post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/${PORTNAME} post-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/${PORTDOCS} ${STAGEDIR}${DOCSDIR} .include diff --git a/java/icedtea-web/Makefile b/java/icedtea-web/Makefile index 6e3f54bbca34..e02024a09e6b 100644 --- a/java/icedtea-web/Makefile +++ b/java/icedtea-web/Makefile @@ -1,126 +1,126 @@ PORTNAME= icedtea-web PORTVERSION= 1.8.4 DISTVERSIONPREFIX= icedtea-web- -PORTREVISION= 21 +PORTREVISION= 22 CATEGORIES= java www DISTFILES= ${DISTNAME}${EXTRACT_SUFX} MAINTAINER= java@FreeBSD.org COMMENT= Free Java plug-in and Java Web Start for OpenJDK LICENSE= GPLv2 BUILD_DEPENDS= zip:archivers/zip \ bash:shells/bash \ gsed:textproc/gsed \ ${HAMCREST_JAR}:java/hamcrest \ ${JUNIT_JAR}:java/junit RUN_DEPENDS= bash:shells/bash MAKE_JOBS_UNSAFE=yes GNU_CONFIGURE= yes USE_JAVA= yes JAVA_VERSION= 8 JAVA_OS= native JAVA_VENDOR= openjdk USE_PERL5= build USE_XORG= x11 USES= autoreconf compiler:c++11-lang desktop-file-utils gmake perl5 \ pkgconfig shebangfix xorg USE_GITHUB= yes GH_ACCOUNT= AdoptOpenJDK GH_PROJECT= IcedTea-Web SHEBANG_FILES= jrunscript.in shell-launcher/launchers.sh.in CONFIGURE_ARGS= --with-hamcrest="${HAMCREST_JAR}" CONFIGURE_ARGS+= --with-jdk-home="${JAVA_HOME}" CONFIGURE_ARGS+= --with-junit="${JUNIT_JAR}" CONFIGURE_ARGS+= --with-rhino="${RHINO_JAR}" CONFIGURE_ARGS+= --with-tagsoup="${TAGSOUP_JAR}" CONFIGURE_ARGS+= --with-itw-libs="DISTRIBUTION" CONFIGURE_ARGS+= --enable-shell-launchers .for opt in asm chrome chromium ecj epiphany firefox jacoco midori opera CONFIGURE_ARGS+= --without-${opt} .endfor CONFIGURE_ENV= BIN_BASH=${bash_CMD} CONFIGURE_ENV+= bashcompdir=${PREFIX}/etc/bash_completion.d CONFIGURE_SHELL= ${bash_CMD} TEST_TARGET= check # Upstream archive contains files with UTF-8 names EXTRACT_CMD= ${SETENV} LC_ALL=en_US.UTF-8 /usr/bin/bsdtar OPTIONS_DEFINE= DOCS PLUGIN RHINO RUST TAGSOUP OPTIONS_DEFAULT=PLUGIN RUST OPTIONS_SUB= yes PLUGIN_DESC= Enable the browser plug-in RHINO_DESC= Add support for Proxy Auto Config files RUST_DESC= Build modern launchers written in Rust TAGSOUP_DESC= Enable cleaning up of malformed JNLP files DOCS_CONFIGURE_ENABLE= docs DOCS_PORTDOCS= netx RHINO_BUILD_DEPENDS= ${JAVASHAREDIR}/rhino/rhino.jar:lang/rhino RHINO_RUN_DEPENDS= ${RHINO_BUILD_DEPENDS} RHINO_VARS= RHINO_JAR="${JAVASHAREDIR}/rhino/rhino.jar" RHINO_VARS_OFF= RHINO_JAR=no RUST_BUILD_DEPENDS= rustc:lang/${RUST_DEFAULT} TAGSOUP_BUILD_DEPENDS= ${JAVALIBDIR}/tagsoup.jar:textproc/tagsoup TAGSOUP_RUN_DEPENDS= ${TAGSOUP_BUILD_DEPENDS} TAGSOUP_VARS= TAGSOUP_JAR="${JAVALIBDIR}/tagsoup.jar" TAGSOUP_VARS_OFF= TAGSOUP_JAR=no PLUGIN_CONFIGURE_ENABLE=native-plugin pluginjar PLUGIN_CONFIGURE_ENV= MOZILLA_CFLAGS="-I${WRKDIR}/npapi-headers -DXP_UNIX" \ MOZILLA_LIBS=" " # needs to be set and non-empty! PLUGIN_DISTFILES= libxul-npapi-headers-45.9.0${EXTRACT_SUFX}:npapi PLUGIN_MASTER_SITES= LOCAL/tobik:npapi PLUGIN_PORTDOCS= plugin PLUGIN_TEST_TARGET= plugin-tests PLUGIN_USE= GNOME=glib20 PLUGIN_USES= webplugin:native gnome PLUGIN_VARS= WEBPLUGIN_DIR=${PREFIX}/lib \ WEBPLUGIN_FILES=IcedTeaPlugin.so HAMCREST_JAR= ${JAVALIBDIR}/hamcrest.jar JUNIT_JAR= ${JAVALIBDIR}/junit.jar .include .if ${JAVA_PORT_VERSION:M*6*} pre-extract: @${ECHO_MSG} @${ECHO_MSG} "IMPORTANT: To build IcedTea-Web ${PORTVERSION}, you have to turn on 'ICEDTEA' option" @${ECHO_MSG} "for ${JAVA_PORT} (default). Otherwise, it will neither build nor work." @${ECHO_MSG} . if !(defined(PACKAGE_BUILDING) || defined(BATCH)) @sleep 5 . endif .endif post-patch: ${REINPLACE_CMD} -e 's|^sed\([[:space:]]\)|gsed\1|' \ -e 's|\([[:space:]]\)sed\([[:space:]]\)|\1gsed\2|g' \ ${WRKSRC}/Makefile.am ${WRKSRC}/html-gen.sh ${REINPLACE_CMD} -e 's|^Icon=javaws|Icon=itweb-javaws|' \ ${WRKSRC}/*.desktop.in post-install: ${INSTALL_DATA} ${WRKSRC}/*.desktop ${STAGEDIR}${DESKTOPDIR} .for lang in cs de en pl .for man in javaws policyeditor ${MV} ${STAGEDIR}${MANPREFIX}/man/${lang:Nen}/man1/${man}.1 \ ${STAGEDIR}${MANPREFIX}/man/${lang:Nen}/man1/itweb-${man}.1 .endfor .endfor @${ECHO_MSG} @${ECHO_MSG} "Run \"make test\" to execute regression test." @${ECHO_MSG} .include diff --git a/lang/gleam/Makefile b/lang/gleam/Makefile index 4361d543ecfd..d8bbe8b99832 100644 --- a/lang/gleam/Makefile +++ b/lang/gleam/Makefile @@ -1,44 +1,44 @@ PORTNAME= gleam DISTVERSIONPREFIX= v DISTVERSION= 0.22.1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= lang MAINTAINER= dch@FreeBSD.org COMMENT= ML-flavoured type-safe language using Erlang's BEAM runtime LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/compiler-core/LICENCE USES= cargo ssl USE_GITHUB= yes GH_ACCOUNT= gleam-lang .include "Makefile.deps" RUSTFLAGS+= --cap-lints=warn PLIST_FILES= bin/gleam PORTDOCS= README.md OPTIONS_DEFINE= DOCS do-build: (cd ${WRKSRC} && cargo build --release) (cd ${WRKSRC}/compiler-cli && env HOME=${WRKDIR} cargo install --path . --force --locked) do-install: ${MKDIR} ${STAGEDIR}${PREFIX}/bin/ ${MV} ${WRKSRC}/target/release/gleam ${STAGEDIR}${PREFIX}/bin/ post-install: @${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/gleam post-install-DOCS-on: (cd ${WRKSRC} && ${COPYTREE_SHARE} README.md ${STAGEDIR}${DOCSDIR}) do-test: (cd ${WRKSRC} && gleam new hello && cd hello && gleam test) .include diff --git a/lang/rust-bootstrap/Makefile b/lang/rust-bootstrap/Makefile index 15eb5696dde9..45d0358fc877 100644 --- a/lang/rust-bootstrap/Makefile +++ b/lang/rust-bootstrap/Makefile @@ -1,170 +1,170 @@ # Once the bootstraps are available on pkg.FreeBSD.org run sync.sh # to upload them to ~/public_distfiles on freefall in preparation # for the next lang/rust update. PORTNAME= rust -PORTVERSION= 1.62.0 +PORTVERSION= 1.63.0 CATEGORIES= lang MASTER_SITES= https://static.rust-lang.org/dist/ PKGNAMEPREFIX= ${FLAVOR:S/_/-/g}- PKGNAMESUFFIX= -bootstrap DISTNAME= ${PORTNAME}c-${PORTVERSION}-src DIST_SUBDIR= rust MAINTAINER= rust@FreeBSD.org COMMENT= Create bootstrap compilers for building lang/rust LICENSE= APACHE20 MIT LICENSE_COMB= dual LICENSE_FILE_APACHE20= ${WRKSRC}/LICENSE-APACHE LICENSE_FILE_MIT= ${WRKSRC}/LICENSE-MIT ONLY_FOR_ARCHS= amd64 powerpc64le ONLY_FOR_ARCHS_REASON= untested on other architectures BUILD_DEPENDS= ${FLAVOR:S/_/-/g}-freebsd-sysroot>=a2021.09.14:devel/freebsd-sysroot@${FLAVOR} \ cmake:devel/cmake \ gmake:devel/gmake \ rust>=${PORTVERSION}:lang/rust FLAVORS= aarch64 amd64 armv6 armv7 i386 powerpc64_elfv1 powerpc64_elfv2 \ powerpc64le powerpc riscv64 FLAVOR?= ${FLAVORS:[1]} USES= cpe ninja:build perl5 python:3.6+,build tar:xz CPE_VENDOR= ${PORTNAME}-lang .if ${FLAVOR} == powerpc64_elfv1 USE_GCC= 9:build .endif # for openssl-src crate USE_PERL5= build PATCHDIR= ${.CURDIR}/../rust/files # rustc stashes intermediary files in TMPDIR (default /tmp) which # might cause issues for users that for some reason space limit # their /tmp. WRKDIR should have plenty of space. # ?= to allow users to still overwrite it in make.conf. TMPDIR?= ${WRKDIR} # Resulting packages are not specific to amd64 NO_ARCH= yes _CARGO_VENDOR_DIR= ${WRKSRC}/vendor _RUST_ARCH_amd64= x86_64 _RUST_ARCH_i386= i686 _RUST_ARCH_powerpc64_elfv1= powerpc64 _RUST_ARCH_powerpc64_elfv2= powerpc64 _RUST_ARCH_riscv64= riscv64gc _RUST_HOST= ${_RUST_ARCH_${ARCH}:U${ARCH}}-unknown-${OPSYS:tl} _RUST_TARGET= ${_RUST_ARCH_${FLAVOR}:U${FLAVOR}}-unknown-${OPSYS:tl} _RUST_LLVM_TARGET= ${_RUST_LLVM_TARGET_${FLAVOR}} _RUST_LLVM_TARGET_aarch64= AArch64 _RUST_LLVM_TARGET_amd64= X86 _RUST_LLVM_TARGET_armv6= ARM _RUST_LLVM_TARGET_armv7= ARM _RUST_LLVM_TARGET_i386= X86 _RUST_LLVM_TARGET_powerpc64_elfv1= PowerPC _RUST_LLVM_TARGET_powerpc64_elfv2= PowerPC _RUST_LLVM_TARGET_powerpc64le= PowerPC _RUST_LLVM_TARGET_powerpc= PowerPC _RUST_LLVM_TARGET_riscv64= RISCV .include .if ${OPSYS} != FreeBSD IGNORE= is only for FreeBSD .endif .if (${FLAVOR} == powerpc64le || ${FLAVOR} == riscv64) && ${OSVERSION} < 1300116 IGNORE= will not build on 12.x due to old system .endif .if exists(${PATCHDIR}/${FLAVOR:S/_/-/}) EXTRA_PATCHES+= ${PATCHDIR}/${FLAVOR:S/_/-/} .endif post-patch: # Disable vendor checksums @${REINPLACE_CMD} 's,"files":{[^}]*},"files":{},' \ ${_CARGO_VENDOR_DIR}/*/.cargo-checksum.json .if ${FLAVOR} == powerpc64_elfv1 @${REINPLACE_CMD} -e 's,"c++","stdc++",g' \ ${WRKSRC}/compiler/rustc_llvm/build.rs @${REINPLACE_CMD} -e 's,%CC%,${CC},g' \ -e 's,%WRKDIR%,${LOCALBASE}/freebsd-sysroot/powerpc64-elfv1,g' \ ${WRKSRC}/compiler/rustc_llvm/build.rs \ ${WRKSRC}/src/bootstrap/native.rs .endif do-configure: # Check that the running kernel has COMPAT_FREEBSD11 required by lang/rust post-ino64 @${SETENV} CC="${CC}" OPSYS="${OPSYS}" OSVERSION="${OSVERSION}" WRKDIR="${WRKDIR}" \ ${SH} ${SCRIPTSDIR}/rust-compat11-canary.sh @${ECHO_CMD} 'changelog-seen=2' > ${WRKSRC}/config.toml @${ECHO_CMD} '[build]' >> ${WRKSRC}/config.toml @${ECHO_CMD} 'build-dir="${WRKDIR}/_build"' >> ${WRKSRC}/config.toml @${ECHO_CMD} 'vendor=true' >> ${WRKSRC}/config.toml @${ECHO_CMD} 'extended=false' >> ${WRKSRC}/config.toml @${ECHO_CMD} 'python="${PYTHON_CMD}"' >> ${WRKSRC}/config.toml @${ECHO_CMD} 'docs=false' >> ${WRKSRC}/config.toml @${ECHO_CMD} 'verbose=2' >> ${WRKSRC}/config.toml @${ECHO_CMD} 'cargo-native-static=true' >> ${WRKSRC}/config.toml @${ECHO_CMD} 'cargo="${LOCALBASE}/bin/cargo"' >> ${WRKSRC}/config.toml @${ECHO_CMD} 'rustc="${LOCALBASE}/bin/rustc"' >> ${WRKSRC}/config.toml .if ${_RUST_HOST} != ${_RUST_TARGET} @${ECHO_CMD} 'host=["${_RUST_HOST}","${_RUST_TARGET}"]' >> ${WRKSRC}/config.toml @${ECHO_CMD} 'target=["${_RUST_TARGET}"]' >> ${WRKSRC}/config.toml .endif @${ECHO_CMD} '[rust]' >> ${WRKSRC}/config.toml @${ECHO_CMD} 'channel="stable"' >> ${WRKSRC}/config.toml @${ECHO_CMD} 'default-linker="${CC}"' >> ${WRKSRC}/config.toml .if ${FLAVOR} == riscv64 @${ECHO_CMD} 'debug=true' >> ${WRKSRC}/config.toml .endif @${ECHO_CMD} 'deny-warnings=false' >> ${WRKSRC}/config.toml @${ECHO_CMD} '[llvm]' >> ${WRKSRC}/config.toml @${ECHO_CMD} 'link-shared=false' >> ${WRKSRC}/config.toml .if ${FLAVOR} == powerpc64_elfv1 @${ECHO_CMD} 'static-libstdcpp=true' >> ${WRKSRC}/config.toml .endif .if defined(WITH_CCACHE_BUILD) && !defined(NO_CCACHE) @${ECHO_CMD} 'ccache="${CCACHE_BIN}"' >> ${WRKSRC}/config.toml .else @${ECHO_CMD} 'ccache=false' >> ${WRKSRC}/config.toml .endif # https://github.com/rust-lang/rust/pull/72696#issuecomment-641517185 @${ECHO_CMD} 'ldflags="-lz"' >> ${WRKSRC}/config.toml # we need to make sure to always build llvm with host arch support to get a # host compiler that can build the host->target compiler @${ECHO_CMD} 'targets="${_RUST_LLVM_TARGET};${_RUST_LLVM_TARGET_${ARCH}}"' >> ${WRKSRC}/config.toml @${ECHO_CMD} '[target.${_RUST_TARGET}]' >> ${WRKSRC}/config.toml @${ECHO_CMD} 'cc="${LOCALBASE}/freebsd-sysroot/${FLAVOR:S/_/-/g}/bin/cc"' >> ${WRKSRC}/config.toml @${ECHO_CMD} 'cxx="${LOCALBASE}/freebsd-sysroot/${FLAVOR:S/_/-/g}/bin/c++"' >> ${WRKSRC}/config.toml @${ECHO_CMD} 'linker="${LOCALBASE}/freebsd-sysroot/${FLAVOR:S/_/-/g}/bin/cc"' >> ${WRKSRC}/config.toml .for _key _util in ar ${AR} ranlib ${RANLIB} @bin="$$(which ${_util})"; \ ${ECHO_CMD} "${_key}=\"$$bin\"" >> ${WRKSRC}/config.toml .endfor .if ${_RUST_HOST} != ${_RUST_TARGET} @${ECHO_CMD} '[target.${_RUST_HOST}]' >> ${WRKSRC}/config.toml @${ECHO_CMD} 'cc="${CC}"' >> ${WRKSRC}/config.toml @${ECHO_CMD} 'cxx="${CXX}"' >> ${WRKSRC}/config.toml @${ECHO_CMD} 'linker="${CC}"' >> ${WRKSRC}/config.toml .endif @${ECHO_CMD} '[dist]' >> ${WRKSRC}/config.toml @${ECHO_CMD} 'src-tarball=false' >> ${WRKSRC}/config.toml do-build: @cd ${WRKSRC} && \ ${SETENV} ${MAKE_ENV} ${PYTHON_CMD} x.py dist --jobs=${MAKE_JOBS_NUMBER} \ cargo rustc rust-std do-install: @${MKDIR} ${STAGEDIR}${PREFIX}/rust-bootstrap/${FLAVOR} ${INSTALL_DATA} ${WRKDIR}/_build/dist/*-${_RUST_ARCH_${FLAVOR}:U${FLAVOR}}-unknown-${OPSYS:tl}${EXTRACT_SUFX} \ ${STAGEDIR}${PREFIX}/rust-bootstrap/${FLAVOR} .if ${FLAVOR:Mpowerpc64_*} @cd ${STAGEDIR}${PREFIX}/rust-bootstrap/${FLAVOR} && for f in *${EXTRACT_SUFX}; do \ ${MV} $$f $${f%%${EXTRACT_SUFX}}-${FLAVOR:S/_/ /:[2]}${EXTRACT_SUFX}; \ done .endif @cd ${STAGEDIR}${PREFIX} && \ ${FIND} rust-bootstrap -type f >> ${TMPPLIST} .include diff --git a/lang/rust-bootstrap/distinfo b/lang/rust-bootstrap/distinfo index 16c3bdd739b4..26b57a90a332 100644 --- a/lang/rust-bootstrap/distinfo +++ b/lang/rust-bootstrap/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1656497768 -SHA256 (rust/rustc-1.62.0-src.tar.xz) = 6c00ef115c894c2645e60b5049a4f5dacf1dc0c993f3074f7ae4fdf4c755dd5e -SIZE (rust/rustc-1.62.0-src.tar.xz) = 135644992 +TIMESTAMP = 1660646335 +SHA256 (rust/rustc-1.63.0-src.tar.xz) = 8f44af6dc44cc4146634a4dd5e4cc5470b3052a2337019b870c0e025e8987e0c +SIZE (rust/rustc-1.63.0-src.tar.xz) = 136597192 diff --git a/lang/rust/Makefile b/lang/rust/Makefile index 10d8809ccdc7..919e33e6b29d 100644 --- a/lang/rust/Makefile +++ b/lang/rust/Makefile @@ -1,314 +1,314 @@ PORTNAME= rust -PORTVERSION?= 1.62.1 +PORTVERSION?= 1.63.0 PORTREVISION?= 0 CATEGORIES= lang MASTER_SITES= https://static.rust-lang.org/dist/:src \ https://dev-static.rust-lang.org/dist/:src \ LOCAL/rust:bootstrap \ https://static.rust-lang.org/dist/:bootstrap DISTNAME?= ${PORTNAME}c-${PORTVERSION}-src DISTFILES?= ${NIGHTLY_DATE:D${NIGHTLY_DATE}/}${DISTNAME}${EXTRACT_SUFX}:src \ ${_RUSTC_BOOTSTRAP}${BOOTSTRAPS_SUFFIX}${EXTRACT_SUFX}:bootstrap \ ${_RUST_STD_BOOTSTRAP}${BOOTSTRAPS_SUFFIX}${EXTRACT_SUFX}:bootstrap \ ${_CARGO_BOOTSTRAP}${BOOTSTRAPS_SUFFIX}${EXTRACT_SUFX}:bootstrap DIST_SUBDIR?= rust MAINTAINER= rust@FreeBSD.org COMMENT= Language with a focus on memory safety and concurrency LICENSE= APACHE20 MIT LICENSE_COMB= dual LICENSE_FILE_APACHE20= ${WRKSRC}/LICENSE-APACHE LICENSE_FILE_MIT= ${WRKSRC}/LICENSE-MIT IGNORE_FreeBSD_12_powerpc= is missing a bootstrap for FreeBSD 12.x powerpc ONLY_FOR_ARCHS?= aarch64 amd64 armv6 armv7 i386 powerpc64 powerpc64le \ powerpc riscv64 ONLY_FOR_ARCHS_REASON?= requires prebuilt bootstrap compiler BUILD_DEPENDS= cmake:devel/cmake LIB_DEPENDS= libcurl.so:ftp/curl USES= cpe ninja:build pkgconfig python:3.7+,build shebangfix ssl tar:xz CPE_VENDOR= rust-lang MAKE_ENV= DESTDIR=${STAGEDIR} \ LIBGIT2_NO_PKG_CONFIG=1 \ OPENSSL_DIR="${OPENSSLBASE}" TEST_ENV= ${MAKE_ENV} \ ALLOW_NONZERO_RLIMIT_CORE=1 CONFLICTS_INSTALL?= rust-nightly # rustc stashes intermediary files in TMPDIR (default /tmp) which # might cause issues for users that for some reason space limit # their /tmp. WRKDIR should have plenty of space. # ?= to allow users to still overwrite it in make.conf. TMPDIR?= ${WRKDIR} OPTIONS_DEFINE= DOCS GDB SOURCES WASM OPTIONS_DEFAULT= SOURCES WASM .if !defined(NIGHTLY_DATE) OPTIONS_EXCLUDE= DOCS # https://github.com/rust-lang/rust/issues/76526 .endif GDB_DESC= Install ports gdb (necessary for debugging rust programs) SOURCES_DESC= Install source files WASM_DESC= Build the WebAssembly target (wasm32-unknown-unknown) DOCS_VARS= _RUST_BUILD_DOCS=true DOCS_VARS_OFF= _RUST_BUILD_DOCS=false GDB_RUN_DEPENDS= ${LOCALBASE}/bin/gdb:devel/gdb SOURCES_VARS= _COMPONENTS+=rust-src-${_PACKAGE_VERS} \ _RUST_TOOLS+=src WASM_VARS= _COMPONENTS+="rust-analysis-${_PACKAGE_VERS}-wasm32-unknown-unknown rust-std-${_PACKAGE_VERS}-wasm32-unknown-unknown" \ _RUST_BUILD_WASM=true \ _RUST_TARGETS+=wasm32-unknown-unknown WASM_VARS_OFF= _RUST_BUILD_WASM=false # See WRKSRC/src/stage0.json for the date and version values -BOOTSTRAPS_DATE?= 2022-05-19 -RUST_BOOTSTRAP_VERSION?= 1.61.0 +BOOTSTRAPS_DATE?= 2022-08-11 +RUST_BOOTSTRAP_VERSION?= 1.62.0 BOOTSTRAPS_SUFFIX?= ${BOOTSTRAPS_SUFFIX_${ARCH}} BOOTSTRAPS_SUFFIX_powerpc64?= -${PPC_ABI:tl} CARGO_VENDOR_DIR?= ${WRKSRC}/vendor # Rust's target arch string might be different from *BSD arch strings _RUST_ARCH_amd64= x86_64 _RUST_ARCH_i386= i686 _RUST_ARCH_riscv64= riscv64gc _RUST_TARGET= ${_RUST_ARCH_${ARCH}:U${ARCH}}-unknown-${OPSYS:tl} _RUST_TARGETS= ${_RUST_TARGET} _RUST_TOOLS= analysis cargo clippy rustfmt _RUSTC_BOOTSTRAP= ${BOOTSTRAPS_DATE_${ARCH}:U${BOOTSTRAPS_DATE}}/rustc-${RUST_BOOTSTRAP_VERSION_${ARCH}:U${RUST_BOOTSTRAP_VERSION}}-${_RUST_TARGET} _RUST_STD_BOOTSTRAP= ${BOOTSTRAPS_DATE_${ARCH}:U${BOOTSTRAPS_DATE}}/rust-std-${RUST_BOOTSTRAP_VERSION_${ARCH}:U${RUST_BOOTSTRAP_VERSION}}-${_RUST_TARGET} _CARGO_BOOTSTRAP= ${BOOTSTRAPS_DATE_${ARCH}:U${BOOTSTRAPS_DATE}}/cargo-${RUST_BOOTSTRAP_VERSION_${ARCH}:U${RUST_BOOTSTRAP_VERSION}}-${_RUST_TARGET} _PACKAGE_VERS= ${NIGHTLY_DATE:?nightly:${PORTVERSION}} _COMPONENTS+= cargo-${_PACKAGE_VERS}-${_RUST_TARGET} \ clippy-${_PACKAGE_VERS}-${_RUST_TARGET} \ rustc-${_PACKAGE_VERS}-${_RUST_TARGET} \ rustfmt-${_PACKAGE_VERS}-${_RUST_TARGET} \ rust-analysis-${_PACKAGE_VERS}-${_RUST_TARGET} \ rust-std-${_PACKAGE_VERS}-${_RUST_TARGET} # https://github.com/bjorn3/rustc_codegen_cranelift/commit/83d470d91c15d0cb5890705291e6ee9e5be8a842 # https://github.com/rust-lang/rustc_codegen_gcc/pull/160 SHEBANG_FILES= compiler/rustc_codegen_cranelift/scripts/* \ compiler/rustc_codegen_gcc/*.sh compiler/rustc_codegen_gcc/build_sysroot/*.sh .include .if ${OPSYS} != FreeBSD IGNORE= is only for FreeBSD .endif .if ${ARCH} == powerpc # bfd to link rustc_driver; lld currently can't BUILD_DEPENDS+= ld.bfd:devel/binutils .else MAKE_ENV+= RUST_BACKTRACE=1 .endif # rls doesn't build on rust nightly # rls needs 64-bit atomics: it doesn't build on powerpc .if !defined(NIGHTLY_DATE) && ${ARCH} != powerpc _RUST_TOOLS+= rls _COMPONENTS+= rls-${_PACKAGE_VERS}-${_RUST_TARGET} .endif # per https://rust-lang.github.io/rustup/concepts/components.html # rustc-dev is only usefull on nightly .if defined(NIGHTLY_DATE) _COMPONENTS+= rustc-dev-${_PACKAGE_VERS}-${_RUST_TARGET} .endif .if exists(${PATCHDIR}/${ARCH}${BOOTSTRAPS_SUFFIX}) EXTRA_PATCHES+= ${PATCHDIR}/${ARCH}${BOOTSTRAPS_SUFFIX} .endif # If the kernel does not return sane kern.proc.pathname values # for hardlinks then disable hardlinks in the build to avoid # intermittent "can't find crate for `std`" build failures, # c.f. PR248184 # # XXX: Avoiding OSVERSION since it is derived from userland but # the running kernel might still be newer with sane behavior # anyway... .if exists(${PATCHDIR}/no-hardlinks) _KERN_OSRELDATE!= ${SYSCTL} -n kern.osreldate 2>/dev/null || echo 0 . if ${_KERN_OSRELDATE} >= 1400040 . elif ${_KERN_OSRELDATE} >= 1300521 . else EXTRA_PATCHES+= ${PATCHDIR}/no-hardlinks . endif .endif .if defined(PPC_ABI) && ${PPC_ABI} == ELFv1 # The bootstrap is hardcoded to use gcc9 # but we can build with a newer or older compiler as provided by USE_GCC=yes BUILD_DEPENDS+= gcc9:lang/gcc9 USE_GCC= yes STRIP_CMD= ${LOCALBASE}/bin/strip # unsupported e_type with base strip .endif .ifdef QEMU_EMULATING IGNORE= fails to build with qemu-user-static .endif .if make(makesum) DISTFILES:= ${DISTFILES:M*\:src} \ ${ONLY_FOR_ARCHS:O:@_arch@${:!${MAKE} ARCH=${_arch} PPC_ABI=ELFv1 -V'DISTFILES:N*\:src'!}@} \ ${ONLY_FOR_ARCHS:Mpowerpc64:@_arch@${:!${MAKE} ARCH=${_arch} PPC_ABI=ELFv2 -V'DISTFILES:N*\:src'!}@} .endif post-patch: @${REINPLACE_CMD} 's,gdb,${LOCALBASE}/bin/gdb,' ${WRKSRC}/src/etc/rust-gdb .if defined(NIGHTLY_DATE) @${REINPLACE_CMD} 's/"rustfmt"/"nothx"/' ${WRKSRC}/src/stage0.json .endif # Disable vendor checksums @${REINPLACE_CMD} 's,"files":{[^}]*},"files":{},' \ ${CARGO_VENDOR_DIR}/*/.cargo-checksum.json .if defined(PPC_ABI) && ${PPC_ABI} == ELFv1 @${REINPLACE_CMD} 's,%CC%,${CC},g' \ ${WRKSRC}/compiler/rustc_llvm/build.rs \ ${WRKSRC}/src/bootstrap/native.rs .if ${LOCALBASE} != /usr/local @${REINPLACE_CMD} 's,/usr/local/,${LOCALBASE}/,g' \ ${WRKSRC}/compiler/rustc_llvm/build.rs \ ${WRKSRC}/src/bootstrap/native.rs .endif .endif do-configure: # Check that the running kernel has COMPAT_FREEBSD11 required by lang/rust post-ino64 @${SETENV} CC="${CC}" OPSYS="${OPSYS}" OSVERSION="${OSVERSION}" WRKDIR="${WRKDIR}" \ ${SH} ${SCRIPTSDIR}/rust-compat11-canary.sh .for _component in cargo rust-std rustc @cd ${WRKDIR}/${_component}-*-${OPSYS:tl} && \ ${SH} install.sh --prefix=${WRKDIR}/bootstrap --verbose .endfor @${ECHO_CMD} 'changelog-seen=2' > ${WRKSRC}/config.toml @${ECHO_CMD} '[build]' >> ${WRKSRC}/config.toml @${ECHO_CMD} 'build-dir="${WRKDIR}/_build"' >> ${WRKSRC}/config.toml @${ECHO_CMD} 'build-stage=2' >> ${WRKSRC}/config.toml @${ECHO_CMD} 'doc-stage=2' >> ${WRKSRC}/config.toml @${ECHO_CMD} 'test-stage=2' >> ${WRKSRC}/config.toml @${ECHO_CMD} 'vendor=true' >> ${WRKSRC}/config.toml @${ECHO_CMD} 'extended=true' >> ${WRKSRC}/config.toml @${ECHO_CMD} 'python="${PYTHON_CMD}"' >> ${WRKSRC}/config.toml @${ECHO_CMD} 'docs=${_RUST_BUILD_DOCS}' >> ${WRKSRC}/config.toml @${ECHO_CMD} 'verbose=2' >> ${WRKSRC}/config.toml .if defined(NIGHTLY_DATE) @${ECHO_CMD} 'profiler=true' >> ${WRKSRC}/config.toml .endif @${ECHO_CMD} 'target=[${_RUST_TARGETS:@.target.@"${.target.}"@:ts,}]' >> ${WRKSRC}/config.toml @${ECHO_CMD} 'cargo="${WRKDIR}/bootstrap/bin/cargo"' >> ${WRKSRC}/config.toml @${ECHO_CMD} 'rustc="${WRKDIR}/bootstrap/bin/rustc"' >> ${WRKSRC}/config.toml @${ECHO_CMD} 'tools=[${_RUST_TOOLS:@.tool.@"${.tool.}"@:ts,}]' >> ${WRKSRC}/config.toml @${ECHO_CMD} '[install]' >> ${WRKSRC}/config.toml @${ECHO_CMD} 'prefix="${PREFIX}"' >> ${WRKSRC}/config.toml @${ECHO_CMD} 'sysconfdir="${PREFIX}/etc"' >> ${WRKSRC}/config.toml @${ECHO_CMD} '[rust]' >> ${WRKSRC}/config.toml @${ECHO_CMD} 'channel="${PKGNAMESUFFIX:Ustable:S/^-//}"' >> ${WRKSRC}/config.toml @${ECHO_CMD} 'default-linker="${CC}"' >> ${WRKSRC}/config.toml @${ECHO_CMD} 'deny-warnings=false' >> ${WRKSRC}/config.toml @${ECHO_CMD} 'verbose-tests=true' >> ${WRKSRC}/config.toml @${ECHO_CMD} 'lld=${_RUST_BUILD_WASM}' >> ${WRKSRC}/config.toml @${ECHO_CMD} '[llvm]' >> ${WRKSRC}/config.toml .if defined(WITH_CCACHE_BUILD) && !defined(NO_CCACHE) @${ECHO_CMD} 'ccache="${CCACHE_BIN}"' >> ${WRKSRC}/config.toml .else @${ECHO_CMD} 'ccache=false' >> ${WRKSRC}/config.toml .endif @${ECHO_CMD} 'ninja=true' >> ${WRKSRC}/config.toml .if ${ARCH} == powerpc # Rust doesn't call the system compiler with the full version of the target. # This makes powerpc miscompile due to the secure-plt ABI change. # Additionally, force using ld.bfd to work around a linking problem in rustc_mir @${PRINTF} '#!/bin/sh\nexec ${CC} "$$@" --target=powerpc-unknown-freebsd13.0' > ${WRKDIR}/cc-wrapper @${CHMOD} +x ${WRKDIR}/cc-wrapper @${PRINTF} '#!/bin/sh\nexec ${CXX} "$$@" --target=powerpc-unknown-freebsd13.0' > ${WRKDIR}/cxx-wrapper @${CHMOD} +x ${WRKDIR}/cxx-wrapper @${PRINTF} '#!/bin/sh\nexec ${CC} -fuse-ld=bfd "$$@" --target=powerpc-unknown-freebsd13.0' > ${WRKDIR}/ld-wrapper @${CHMOD} +x ${WRKDIR}/ld-wrapper .endif .for _target in ${_RUST_TARGETS} @${ECHO_CMD} '[target.${_target}]' >> ${WRKSRC}/config.toml @${ECHO_CMD} 'ar="${AR}"' >> ${WRKSRC}/config.toml .if ${ARCH} == powerpc @${ECHO_CMD} 'cc="${WRKDIR}/cc-wrapper"' >> ${WRKSRC}/config.toml @${ECHO_CMD} 'cxx="${WRKDIR}/cxx-wrapper"' >> ${WRKSRC}/config.toml .else @${ECHO_CMD} 'cc="${CC}"' >> ${WRKSRC}/config.toml @${ECHO_CMD} 'cxx="${CXX}"' >> ${WRKSRC}/config.toml .endif .if ${ARCH} == powerpc @${ECHO_CMD} 'linker="${WRKDIR}/ld-wrapper"' >> ${WRKSRC}/config.toml .else @${ECHO_CMD} 'linker="${CC}"' >> ${WRKSRC}/config.toml .endif .endfor @${ECHO_CMD} '[dist]' >> ${WRKSRC}/config.toml @${ECHO_CMD} 'src-tarball=false' >> ${WRKSRC}/config.toml .if defined(NIGHTLY_DATE) # Don't abort if optional tools fail to build @${ECHO_CMD} 'missing-tools=true' >> ${WRKSRC}/config.toml .endif do-build: @cd ${WRKSRC} && \ ${SETENV} ${MAKE_ENV} ${PYTHON_CMD} x.py dist --jobs=${MAKE_JOBS_NUMBER} do-install: ${RM} -r ${WRKDIR}/_extractdist .for _c in ${_COMPONENTS} ${MKDIR} ${WRKDIR}/_extractdist ${TAR} xf ${WRKDIR}/_build/dist/${_c}.tar.xz -C ${WRKDIR}/_extractdist cd ${WRKDIR}/_extractdist/${_c} && \ ${SH} install.sh \ --docdir="${STAGEDIR}${DOCSDIR}" \ --mandir="${STAGEDIR}${PREFIX}/share/man" \ --prefix="${STAGEDIR}${PREFIX}" ${RM} -r ${WRKDIR}/_extractdist .endfor # We autogenerate the plist file. We do that, instead of the # regular pkg-plist, because several libraries have a computed # filename based on the absolute path of the source files. As it # is user-specific, we cannot know their filename in advance. @${RM} ${STAGEDIR}${DOCSDIR}/*.old \ ${STAGEDIR}${PREFIX}/lib/rustlib/components \ ${STAGEDIR}${PREFIX}/lib/rustlib/install.log \ ${STAGEDIR}${PREFIX}/lib/rustlib/manifest-* \ ${STAGEDIR}${PREFIX}/lib/rustlib/rust-installer-version \ ${STAGEDIR}${PREFIX}/lib/rustlib/uninstall.sh @${FIND} ${STAGEDIR}${PREFIX}/bin ${STAGEDIR}${PREFIX}/lib \ ${STAGEDIR}${PREFIX}/libexec -exec ${FILE} -i {} + | \ ${AWK} -F: '/executable|sharedlib/ { print $$1 }' | ${XARGS} ${STRIP_CMD} @${FIND} ${STAGEDIR}${PREFIX} -not -type d | \ ${SED} -E -e 's,^${STAGEDIR}${PREFIX}/,,' \ -e 's,(share/man/man[1-9]/.*\.[0-9]),\1.gz,' >> ${TMPPLIST} post-install-DOCS-on: # Ignore any left behind empty directories in case some docs fail # to build (failures are ignored due to deny-warnings=false). @${FIND} ${STAGEDIR}${DOCSDIR}/html -empty -type d | \ ${SED} 's,^${STAGEDIR},@comment @dir ,' >> ${TMPPLIST} post-install-SOURCES-on: # Silence stage-qa warnings by sanitizing permissions on sources @${FIND} ${STAGEDIR}${PREFIX}/lib/rustlib/src -type f -exec ${CHMOD} \ ${SHAREMODE} {} + # Note that make test does not work when rust is already installed. do-test: @cd ${WRKSRC} && \ ${SETENV} ${TEST_ENV} ${PYTHON_CMD} x.py test --jobs=${MAKE_JOBS_NUMBER} .include diff --git a/lang/rust/distinfo b/lang/rust/distinfo index 7dcf1e29859a..62c1950596d0 100644 --- a/lang/rust/distinfo +++ b/lang/rust/distinfo @@ -1,63 +1,63 @@ -TIMESTAMP = 1658240928 -SHA256 (rust/rustc-1.62.1-src.tar.xz) = 02066a93c2f6596cc046a897d5716c86e3607c1cd0f54db9a867ae8c8265072e -SIZE (rust/rustc-1.62.1-src.tar.xz) = 135644156 -SHA256 (rust/2022-05-19/rustc-1.61.0-aarch64-unknown-freebsd.tar.xz) = 042eec2e8a6eff9bf754594e989f4d82b9a45bd86e32c8782146ccb55b1845b0 -SIZE (rust/2022-05-19/rustc-1.61.0-aarch64-unknown-freebsd.tar.xz) = 41988500 -SHA256 (rust/2022-05-19/rust-std-1.61.0-aarch64-unknown-freebsd.tar.xz) = 518aa33a3fad35cf65f91b9816664c82f6e421d57389a45193f3e032b03d4e73 -SIZE (rust/2022-05-19/rust-std-1.61.0-aarch64-unknown-freebsd.tar.xz) = 23570368 -SHA256 (rust/2022-05-19/cargo-1.61.0-aarch64-unknown-freebsd.tar.xz) = 3f294d64552351f159885868ffeac107fd1dbc62c550506ad4b8b595747a8c1e -SIZE (rust/2022-05-19/cargo-1.61.0-aarch64-unknown-freebsd.tar.xz) = 4794716 -SHA256 (rust/2022-05-19/rustc-1.61.0-x86_64-unknown-freebsd.tar.xz) = e3ec7b3e7913e1613e973202a915539922cda424fe0e22f17a0106f075158152 -SIZE (rust/2022-05-19/rustc-1.61.0-x86_64-unknown-freebsd.tar.xz) = 37986400 -SHA256 (rust/2022-05-19/rust-std-1.61.0-x86_64-unknown-freebsd.tar.xz) = a35bd8f17d2141e1c5384b02f0775838c08e6c4e8b5d74c5d42681f80268cab5 -SIZE (rust/2022-05-19/rust-std-1.61.0-x86_64-unknown-freebsd.tar.xz) = 23842720 -SHA256 (rust/2022-05-19/cargo-1.61.0-x86_64-unknown-freebsd.tar.xz) = 70e78458896f94ed172ac4e3caf3f54eddb2a9bcca81c42800117383ba988c95 -SIZE (rust/2022-05-19/cargo-1.61.0-x86_64-unknown-freebsd.tar.xz) = 5502300 -SHA256 (rust/2022-05-19/rustc-1.61.0-armv6-unknown-freebsd.tar.xz) = 9268265126c7ae989c03d1f8710ed29182a6d1a9c5217fd7ee6558e5b8b29076 -SIZE (rust/2022-05-19/rustc-1.61.0-armv6-unknown-freebsd.tar.xz) = 42901832 -SHA256 (rust/2022-05-19/rust-std-1.61.0-armv6-unknown-freebsd.tar.xz) = a0f00fc1b3dca64e4fe32ea7ef96409519cced71e58841425cb444b7189e09a6 -SIZE (rust/2022-05-19/rust-std-1.61.0-armv6-unknown-freebsd.tar.xz) = 21817044 -SHA256 (rust/2022-05-19/cargo-1.61.0-armv6-unknown-freebsd.tar.xz) = 6593e951345c557fa90c7732130bddfb89a6df7dc4b5d79e701740e7fc48d98a -SIZE (rust/2022-05-19/cargo-1.61.0-armv6-unknown-freebsd.tar.xz) = 4747396 -SHA256 (rust/2022-05-19/rustc-1.61.0-armv7-unknown-freebsd.tar.xz) = d83086bf4355cc92baf908b313c3f83821ab7407a59edc2e99a234b6f56db71c -SIZE (rust/2022-05-19/rustc-1.61.0-armv7-unknown-freebsd.tar.xz) = 42713712 -SHA256 (rust/2022-05-19/rust-std-1.61.0-armv7-unknown-freebsd.tar.xz) = 5bbdccac7a91bcbdeea3295f12e10a86515f550ece6118383f90657a247e022e -SIZE (rust/2022-05-19/rust-std-1.61.0-armv7-unknown-freebsd.tar.xz) = 22793208 -SHA256 (rust/2022-05-19/cargo-1.61.0-armv7-unknown-freebsd.tar.xz) = 24814d99e7811cfac6a51848d6a63fd6f38f9b845b29dbad550585067d6beb8d -SIZE (rust/2022-05-19/cargo-1.61.0-armv7-unknown-freebsd.tar.xz) = 4733024 -SHA256 (rust/2022-05-19/rustc-1.61.0-i686-unknown-freebsd.tar.xz) = 9aef4d35438a70b8239976364b6b7266f6f15e64b40463f81329938cda167576 -SIZE (rust/2022-05-19/rustc-1.61.0-i686-unknown-freebsd.tar.xz) = 47040012 -SHA256 (rust/2022-05-19/rust-std-1.61.0-i686-unknown-freebsd.tar.xz) = 2f4b31a12a46cf4d778b6ff44503c0b4f5019870a8f27472b6c26cd387aabbf0 -SIZE (rust/2022-05-19/rust-std-1.61.0-i686-unknown-freebsd.tar.xz) = 23667232 -SHA256 (rust/2022-05-19/cargo-1.61.0-i686-unknown-freebsd.tar.xz) = c3cc0f5e0b57fa220fb0d44813409584ad1d6352c2a5dc77ffe9211338c412ae -SIZE (rust/2022-05-19/cargo-1.61.0-i686-unknown-freebsd.tar.xz) = 5650840 -SHA256 (rust/2022-05-19/rustc-1.61.0-powerpc-unknown-freebsd.tar.xz) = 0ca81deb0faa343ff420b7f9e6f325eac366a15128b1e096eb3062516e48e36b -SIZE (rust/2022-05-19/rustc-1.61.0-powerpc-unknown-freebsd.tar.xz) = 44567188 -SHA256 (rust/2022-05-19/rust-std-1.61.0-powerpc-unknown-freebsd.tar.xz) = a3a26ab34a9f62d1b9a0dba45f4d63c25994d222ddabdf909be9217b93ce6415 -SIZE (rust/2022-05-19/rust-std-1.61.0-powerpc-unknown-freebsd.tar.xz) = 21657860 -SHA256 (rust/2022-05-19/cargo-1.61.0-powerpc-unknown-freebsd.tar.xz) = 4d3f3da61d993e8698d9bb13aa6eb75f00e0567b23a4e2809adde47b0e8372f0 -SIZE (rust/2022-05-19/cargo-1.61.0-powerpc-unknown-freebsd.tar.xz) = 5232608 -SHA256 (rust/2022-05-19/rustc-1.61.0-powerpc64-unknown-freebsd-elfv1.tar.xz) = 5f8878946c10350ce2ed4751baa1dd467cbbce223899086c631dc4e714bad09f -SIZE (rust/2022-05-19/rustc-1.61.0-powerpc64-unknown-freebsd-elfv1.tar.xz) = 51265100 -SHA256 (rust/2022-05-19/rust-std-1.61.0-powerpc64-unknown-freebsd-elfv1.tar.xz) = 45eea66649936ccc789309381a0e2cb82ee63bf7fc902262eab664cd40d373a8 -SIZE (rust/2022-05-19/rust-std-1.61.0-powerpc64-unknown-freebsd-elfv1.tar.xz) = 21767000 -SHA256 (rust/2022-05-19/cargo-1.61.0-powerpc64-unknown-freebsd-elfv1.tar.xz) = 91dfca32008126f8f526cd4913e487341c968b82b6e094df15a4760dfca400ea -SIZE (rust/2022-05-19/cargo-1.61.0-powerpc64-unknown-freebsd-elfv1.tar.xz) = 5345408 -SHA256 (rust/2022-05-19/rustc-1.61.0-powerpc64le-unknown-freebsd.tar.xz) = 0f22827e20c6aed0b67450f228bfdc44b5b83abbffd9bb8bf1d529ee94aa9b95 -SIZE (rust/2022-05-19/rustc-1.61.0-powerpc64le-unknown-freebsd.tar.xz) = 44874472 -SHA256 (rust/2022-05-19/rust-std-1.61.0-powerpc64le-unknown-freebsd.tar.xz) = bae7067eac67fede90defecb5250985fc8b7fdcd22435acb795901e8a75f1f96 -SIZE (rust/2022-05-19/rust-std-1.61.0-powerpc64le-unknown-freebsd.tar.xz) = 21828580 -SHA256 (rust/2022-05-19/cargo-1.61.0-powerpc64le-unknown-freebsd.tar.xz) = 2fe81b4ee62a5370f6e5a6dc5a46d00871a9c77513eb165664e871cd66f8adac -SIZE (rust/2022-05-19/cargo-1.61.0-powerpc64le-unknown-freebsd.tar.xz) = 5265304 -SHA256 (rust/2022-05-19/rustc-1.61.0-riscv64gc-unknown-freebsd.tar.xz) = d2d371908a8dcd49db81bd2db048c57a968e0ec8a00918ad2f80fcd306862855 -SIZE (rust/2022-05-19/rustc-1.61.0-riscv64gc-unknown-freebsd.tar.xz) = 139529684 -SHA256 (rust/2022-05-19/rust-std-1.61.0-riscv64gc-unknown-freebsd.tar.xz) = 0ee3a580304386a75ec500f0c9f1e853a9922c4b9521d4577a559b120e865795 -SIZE (rust/2022-05-19/rust-std-1.61.0-riscv64gc-unknown-freebsd.tar.xz) = 29642992 -SHA256 (rust/2022-05-19/cargo-1.61.0-riscv64gc-unknown-freebsd.tar.xz) = 89522660fbc8718ab394566fb7daf5ce95fdbabec49e7a322d561f8d81c53e1f -SIZE (rust/2022-05-19/cargo-1.61.0-riscv64gc-unknown-freebsd.tar.xz) = 26543872 -SHA256 (rust/2022-05-19/rustc-1.61.0-powerpc64-unknown-freebsd-elfv2.tar.xz) = 16d5a9a0b8f7b75ad76efcdf4bf3b7ad51d5ffae21cf04c64696803879081ffb -SIZE (rust/2022-05-19/rustc-1.61.0-powerpc64-unknown-freebsd-elfv2.tar.xz) = 42802348 -SHA256 (rust/2022-05-19/rust-std-1.61.0-powerpc64-unknown-freebsd-elfv2.tar.xz) = 5526d0f46a2829a3b4ce5147f8ce9cdc5144a811e7362cbe5666df0a35420fe0 -SIZE (rust/2022-05-19/rust-std-1.61.0-powerpc64-unknown-freebsd-elfv2.tar.xz) = 21712780 -SHA256 (rust/2022-05-19/cargo-1.61.0-powerpc64-unknown-freebsd-elfv2.tar.xz) = 5b6fc2baa3647abee442373006da6cbccbe16b6720520bdc7ecc3b998e003538 -SIZE (rust/2022-05-19/cargo-1.61.0-powerpc64-unknown-freebsd-elfv2.tar.xz) = 4966568 +TIMESTAMP = 1660637971 +SHA256 (rust/rustc-1.63.0-src.tar.xz) = 8f44af6dc44cc4146634a4dd5e4cc5470b3052a2337019b870c0e025e8987e0c +SIZE (rust/rustc-1.63.0-src.tar.xz) = 136597192 +SHA256 (rust/2022-08-11/rustc-1.62.0-aarch64-unknown-freebsd.tar.xz) = cc389cc6054c2761b55329f996107d02453187149b3597cbebdc4c7a994e4b9f +SIZE (rust/2022-08-11/rustc-1.62.0-aarch64-unknown-freebsd.tar.xz) = 43229728 +SHA256 (rust/2022-08-11/rust-std-1.62.0-aarch64-unknown-freebsd.tar.xz) = 18264b1c019d89f564e3583fae40667eb26a4b918ede59632f7bbb8eb5901ae6 +SIZE (rust/2022-08-11/rust-std-1.62.0-aarch64-unknown-freebsd.tar.xz) = 22683064 +SHA256 (rust/2022-08-11/cargo-1.62.0-aarch64-unknown-freebsd.tar.xz) = be972aa3d1ced03ee216e6d366b46f505ba83cbac682f116ea5cdef5f10963d4 +SIZE (rust/2022-08-11/cargo-1.62.0-aarch64-unknown-freebsd.tar.xz) = 4884760 +SHA256 (rust/2022-08-11/rustc-1.62.0-x86_64-unknown-freebsd.tar.xz) = 2de14a9ca4307453111a82d8733b0d986284d8e78b5bb2d0c5f6a483794502bc +SIZE (rust/2022-08-11/rustc-1.62.0-x86_64-unknown-freebsd.tar.xz) = 36186780 +SHA256 (rust/2022-08-11/rust-std-1.62.0-x86_64-unknown-freebsd.tar.xz) = 0b2a78ec3636a90cab0923612c6ef4f68fe05e788306c33065425093de2846c7 +SIZE (rust/2022-08-11/rust-std-1.62.0-x86_64-unknown-freebsd.tar.xz) = 22828324 +SHA256 (rust/2022-08-11/cargo-1.62.0-x86_64-unknown-freebsd.tar.xz) = b8e36aa5a71d645a0c41eaf2ddeab96d244a6427a05c664a86090cc3d1dc93fd +SIZE (rust/2022-08-11/cargo-1.62.0-x86_64-unknown-freebsd.tar.xz) = 5581840 +SHA256 (rust/2022-08-11/rustc-1.62.0-armv6-unknown-freebsd.tar.xz) = 31112bc0634e805c3dc9ce5cfb7fb8de76610ec75c31f3d8db6d6539600e506a +SIZE (rust/2022-08-11/rustc-1.62.0-armv6-unknown-freebsd.tar.xz) = 44097768 +SHA256 (rust/2022-08-11/rust-std-1.62.0-armv6-unknown-freebsd.tar.xz) = 704d095ef94d0f3ecb27decee036a908c4eeabf9833bec88d7061151c0660dd9 +SIZE (rust/2022-08-11/rust-std-1.62.0-armv6-unknown-freebsd.tar.xz) = 21001436 +SHA256 (rust/2022-08-11/cargo-1.62.0-armv6-unknown-freebsd.tar.xz) = 9eeeea39fac336f4c91563fdb0c1c89052d76095553d7bddc1ca1f14c506a1f8 +SIZE (rust/2022-08-11/cargo-1.62.0-armv6-unknown-freebsd.tar.xz) = 4835312 +SHA256 (rust/2022-08-11/rustc-1.62.0-armv7-unknown-freebsd.tar.xz) = 26b902e38d7f4d98cb5756d821d3917c204d161b47c43d90cbc1b98714392d01 +SIZE (rust/2022-08-11/rustc-1.62.0-armv7-unknown-freebsd.tar.xz) = 43670920 +SHA256 (rust/2022-08-11/rust-std-1.62.0-armv7-unknown-freebsd.tar.xz) = abe9b2841781330618888ff97e0d8cc7e2891ec6e205cbad0ec947c37d415ecc +SIZE (rust/2022-08-11/rust-std-1.62.0-armv7-unknown-freebsd.tar.xz) = 21926488 +SHA256 (rust/2022-08-11/cargo-1.62.0-armv7-unknown-freebsd.tar.xz) = 1c1d0099bac23d31b1f5a9754b10316cce9afacd49c581dc6cb822a0249e95ad +SIZE (rust/2022-08-11/cargo-1.62.0-armv7-unknown-freebsd.tar.xz) = 4823300 +SHA256 (rust/2022-08-11/rustc-1.62.0-i686-unknown-freebsd.tar.xz) = 0fee2caf1ffc5c5769dfac6affcbe7fc77f22fdf9af61f9c6b4e24cae9a846cd +SIZE (rust/2022-08-11/rustc-1.62.0-i686-unknown-freebsd.tar.xz) = 49032044 +SHA256 (rust/2022-08-11/rust-std-1.62.0-i686-unknown-freebsd.tar.xz) = f50746696a7141f279c3dad031e9a26240eb6a831e150758df117063536aa2f2 +SIZE (rust/2022-08-11/rust-std-1.62.0-i686-unknown-freebsd.tar.xz) = 22732580 +SHA256 (rust/2022-08-11/cargo-1.62.0-i686-unknown-freebsd.tar.xz) = 4308d5097b754d09b4124b4f5b461d835a1929ece5195931bd853d1aea8c4123 +SIZE (rust/2022-08-11/cargo-1.62.0-i686-unknown-freebsd.tar.xz) = 5744176 +SHA256 (rust/2022-08-11/rustc-1.62.0-powerpc-unknown-freebsd.tar.xz) = 3de22d8843ce97bf04d606c7731e7fcf35feae5c17871df5f7bd7568a5dac1ca +SIZE (rust/2022-08-11/rustc-1.62.0-powerpc-unknown-freebsd.tar.xz) = 46413824 +SHA256 (rust/2022-08-11/rust-std-1.62.0-powerpc-unknown-freebsd.tar.xz) = a7c0ea9c3163a1375ac268a34ef85bafc1173ce31082b76e7ce82a7b74d38614 +SIZE (rust/2022-08-11/rust-std-1.62.0-powerpc-unknown-freebsd.tar.xz) = 20653544 +SHA256 (rust/2022-08-11/cargo-1.62.0-powerpc-unknown-freebsd.tar.xz) = e37fab0dfd028fac8c530aa685c47aa12ba2d89ffb34d72e403f457f05b040d9 +SIZE (rust/2022-08-11/cargo-1.62.0-powerpc-unknown-freebsd.tar.xz) = 5318004 +SHA256 (rust/2022-08-11/rustc-1.62.0-powerpc64-unknown-freebsd-elfv1.tar.xz) = 1e2b2fdde88775c872b3b0c6b7df48c0edbe4334ac859997123ad272c6ef6028 +SIZE (rust/2022-08-11/rustc-1.62.0-powerpc64-unknown-freebsd-elfv1.tar.xz) = 52646328 +SHA256 (rust/2022-08-11/rust-std-1.62.0-powerpc64-unknown-freebsd-elfv1.tar.xz) = 4a65020427f638a6e948040676934eedcaa416e183db8139f83d83b06eebafd8 +SIZE (rust/2022-08-11/rust-std-1.62.0-powerpc64-unknown-freebsd-elfv1.tar.xz) = 20886148 +SHA256 (rust/2022-08-11/cargo-1.62.0-powerpc64-unknown-freebsd-elfv1.tar.xz) = 73047a7b498f5a7403f7c722e6ced16639538e6ef1040eca6fe80911eca20380 +SIZE (rust/2022-08-11/cargo-1.62.0-powerpc64-unknown-freebsd-elfv1.tar.xz) = 5421660 +SHA256 (rust/2022-08-11/rustc-1.62.0-powerpc64le-unknown-freebsd.tar.xz) = a0a990c2e459f06cdc16d509e2a7046528d870df0974eff3eacad11654f0a990 +SIZE (rust/2022-08-11/rustc-1.62.0-powerpc64le-unknown-freebsd.tar.xz) = 46361760 +SHA256 (rust/2022-08-11/rust-std-1.62.0-powerpc64le-unknown-freebsd.tar.xz) = 510b7ae43543acffc27ea788725ab7e683236323652296fb117443bdb87e4bca +SIZE (rust/2022-08-11/rust-std-1.62.0-powerpc64le-unknown-freebsd.tar.xz) = 21088000 +SHA256 (rust/2022-08-11/cargo-1.62.0-powerpc64le-unknown-freebsd.tar.xz) = 007e4c54449cf95ae5bbc86c559767feaae543a129b3a4d4dbc99822697765ab +SIZE (rust/2022-08-11/cargo-1.62.0-powerpc64le-unknown-freebsd.tar.xz) = 5354032 +SHA256 (rust/2022-08-11/rustc-1.62.0-riscv64gc-unknown-freebsd.tar.xz) = fe0551721b4a4e0c17236a7527eb5c8006d3dcbba1e18bfd997bba1aff7320f3 +SIZE (rust/2022-08-11/rustc-1.62.0-riscv64gc-unknown-freebsd.tar.xz) = 151000056 +SHA256 (rust/2022-08-11/rust-std-1.62.0-riscv64gc-unknown-freebsd.tar.xz) = 26e3296d3e665a0049c638216c5da194dc500ae94942f5bd37c41d7512b95202 +SIZE (rust/2022-08-11/rust-std-1.62.0-riscv64gc-unknown-freebsd.tar.xz) = 28966484 +SHA256 (rust/2022-08-11/cargo-1.62.0-riscv64gc-unknown-freebsd.tar.xz) = 4f72f54faebca015d674a53394eda4ec7b07bc70547186dbefca45b71a9c00ea +SIZE (rust/2022-08-11/cargo-1.62.0-riscv64gc-unknown-freebsd.tar.xz) = 27235120 +SHA256 (rust/2022-08-11/rustc-1.62.0-powerpc64-unknown-freebsd-elfv2.tar.xz) = 85282443cc7972af82999c24093a792143a642fb5f32a636c900019e0df30109 +SIZE (rust/2022-08-11/rustc-1.62.0-powerpc64-unknown-freebsd-elfv2.tar.xz) = 44366840 +SHA256 (rust/2022-08-11/rust-std-1.62.0-powerpc64-unknown-freebsd-elfv2.tar.xz) = eea977e6cbffdb226056091c3ab565c2b3c933d37ab1a30a2baa5eccc47e2c9b +SIZE (rust/2022-08-11/rust-std-1.62.0-powerpc64-unknown-freebsd-elfv2.tar.xz) = 20893088 +SHA256 (rust/2022-08-11/cargo-1.62.0-powerpc64-unknown-freebsd-elfv2.tar.xz) = a36cd48122c84601cf2610d0cb381e3482bc25ef3f37d6d790eaa6a1a5a1e500 +SIZE (rust/2022-08-11/cargo-1.62.0-powerpc64-unknown-freebsd-elfv2.tar.xz) = 5048488 diff --git a/lang/rust/files/no-hardlinks/patch-src_bootstrap_lib.rs b/lang/rust/files/no-hardlinks/patch-src_bootstrap_lib.rs index 081c2056ad2c..03a24563bf05 100644 --- a/lang/rust/files/no-hardlinks/patch-src_bootstrap_lib.rs +++ b/lang/rust/files/no-hardlinks/patch-src_bootstrap_lib.rs @@ -1,28 +1,43 @@ Attempt to fix intermittent "can't find crate for `std`" build failures The location of rustc (found via env::current_exe()) is used to find the right libstd. However it might have been "copied" by creating a hard link to the new location instead. Like /proc/curproc/file, KERN_PROC_PATHNAME (used internally by current_exe()) can return any of the file's multiple paths. Most of the time it returns the right rustc path and the build will succeed but occasionally it will return the "wrong" path and the build fails with: error[E0463]: can't find crate for `std` If this is right a viable workaround should be to never create hard links during the build, so let's try that. --- src/bootstrap/lib.rs.orig 2020-07-23 20:16:43 UTC +++ src/bootstrap/lib.rs -@@ -1173,10 +1173,6 @@ impl Build { - if metadata.file_type().is_symlink() { - let link = t!(fs::read_link(src)); - t!(symlink_file(link, dst)); -- } else if let Ok(()) = fs::hard_link(src, dst) { +@@ -1450,19 +1450,13 @@ impl Build { + return; + } + } +- if let Ok(()) = fs::hard_link(&src, dst) { - // Attempt to "easy copy" by creating a hard link - // (symlinks don't work on windows), but if that fails - // just fall back to a slow `copy` operation. - } else { - if let Err(e) = fs::copy(src, dst) { - panic!("failed to copy `{}` to `{}`: {}", src.display(), dst.display(), e) +- } else { +- if let Err(e) = fs::copy(&src, dst) { +- panic!("failed to copy `{}` to `{}`: {}", src.display(), dst.display(), e) +- } +- t!(fs::set_permissions(dst, metadata.permissions())); +- let atime = FileTime::from_last_access_time(&metadata); +- let mtime = FileTime::from_last_modification_time(&metadata); +- t!(filetime::set_file_times(dst, atime, mtime)); ++ if let Err(e) = fs::copy(&src, dst) { ++ panic!("failed to copy `{}` to `{}`: {}", src.display(), dst.display(), e) + } ++ t!(fs::set_permissions(dst, metadata.permissions())); ++ let atime = FileTime::from_last_access_time(&metadata); ++ let mtime = FileTime::from_last_modification_time(&metadata); ++ t!(filetime::set_file_times(dst, atime, mtime)); + } + + /// Copies the `src` directory recursively to `dst`. Both are assumed to exist diff --git a/lang/spidermonkey78/Makefile b/lang/spidermonkey78/Makefile index 73602a1f431f..d76fd9838a01 100644 --- a/lang/spidermonkey78/Makefile +++ b/lang/spidermonkey78/Makefile @@ -1,89 +1,89 @@ PORTNAME= spidermonkey DISTVERSION= 78.15.0 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= lang MASTER_SITES= MOZILLA/firefox/releases/${DISTVERSION}esr/source PKGNAMESUFFIX= ${SP_VER} DISTNAME= firefox-${DISTVERSION}esr.source MAINTAINER= swills@FreeBSD.org COMMENT= Standalone JavaScript based from Mozilla 78-esr LICENSE= MPL20 LICENSE_FILE= ${WRKSRC}/LICENSE BUILD_DEPENDS= ${LOCALBASE}/bin/python${PYTHON3_DEFAULT}:lang/python${PYTHON3_DEFAULT:S/.//g} \ ${RUST_DEFAULT}>=1.35:lang/${RUST_DEFAULT} \ autoconf2.13:devel/autoconf2.13 \ rust-cbindgen>=0.8.7:devel/rust-cbindgen LIB_DEPENDS= libffi.so:devel/libffi \ libicudata.so:devel/icu \ libnspr4.so:devel/nspr USES= compiler:c++17-lang gmake localbase pathfix pkgconfig python:build \ readline tar:xz USE_LDCONFIG= yes SP_VER= 78 HAS_CONFIGURE= yes WRKSRC= ${WRKDIR}/firefox-${DISTVERSION} PATCH_WRKSRC= ${WRKDIR}/firefox-${DISTVERSION}/ CONFIGURE_OUTSOURCE= yes CONFIGURE_SCRIPT= ../firefox-${DISTVERSION}/js/src/configure CONFIGURE_ARGS= --disable-debug \ --disable-debug-symbols \ --disable-gold \ --disable-jemalloc \ --disable-tests \ --enable-optimize \ --enable-readline \ --enable-shared-js \ --prefix=${PREFIX:Q} \ --target=${CONFIGURE_TARGET} \ --with-intl-api \ --with-system-icu \ --with-system-nspr \ --with-system-zlib CONFIGURE_ENV= HOST_CC=${CC} \ HOST_CXX=${CXX} BINARY_ALIAS= python3=${PYTHON_CMD} PLIST_SUB= SP_VER=${SP_VER} .include .if ${ARCH} == amd64 CONFIGURE_TARGET= x86_64-portbld-freebsd${OSREL} .elif ${ARCH} == powerpc EXTRA_PATCHES= ${FILESDIR}/extra-patch-config_makefiles_rust.mk .endif # Require newer Clang than what's in base system unless user opted out # or the base system is new enough. .if ${CHOSEN_COMPILER_TYPE} == gcc CONFIGURE_ENV+= LLVM_CONFIG=llvm-config${LLVM_DEFAULT} \ LLVM_OBJDUMP=llvm-objdump${LLVM_DEFAULT} BUILD_DEPENDS+= ${LOCALBASE}/bin/llvm-objdump${LLVM_DEFAULT}:devel/llvm${LLVM_DEFAULT} USE_GCC= yes .elif ${CC} == cc && ${CXX} == c++ && exists(/usr/lib/libc++.so) && \ ${COMPILER_VERSION} < 80 CPP= ${LOCALBASE}/bin/clang-cpp${LLVM_DEFAULT} CC= ${LOCALBASE}/bin/clang${LLVM_DEFAULT} CXX= ${LOCALBASE}/bin/clang++${LLVM_DEFAULT} CONFIGURE_ENV+= LLVM_CONFIG=llvm-config${LLVM_DEFAULT} \ LLVM_OBJDUMP=llvm-objdump${LLVM_DEFAULT} BUILD_DEPENDS+= ${LOCALBASE}/bin/clang${LLVM_DEFAULT}:devel/llvm${LLVM_DEFAULT} .endif post-patch: @${REINPLACE_CMD} -e 's|%%LOCALBASE%%|${LOCALBASE}|g' ${WRKSRC}/js/moz.configure post-install: ${RM} ${STAGEDIR}${PREFIX}/lib/libjs_static.ajs ${LN} -fs libmozjs-${SP_VER}.so ${STAGEDIR}${PREFIX}/lib/libmozjs-${SP_VER}.so.1 ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/js${SP_VER} ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libmozjs-${SP_VER}.* .include diff --git a/lang/spidermonkey91/Makefile b/lang/spidermonkey91/Makefile index eae788498e2f..3b50f49bb236 100644 --- a/lang/spidermonkey91/Makefile +++ b/lang/spidermonkey91/Makefile @@ -1,90 +1,91 @@ PORTNAME= spidermonkey DISTVERSION= 91.12.0 +PORTREVISION= 1 CATEGORIES= lang MASTER_SITES= MOZILLA/firefox/releases/${DISTVERSION}esr/source PKGNAMESUFFIX= ${SP_VER} DISTNAME= firefox-${DISTVERSION}esr.source MAINTAINER= nc@FreeBSD.org COMMENT= Standalone JavaScript based from Mozilla 91-esr LICENSE= MPL20 LICENSE_FILE= ${WRKSRC}/LICENSE BUILD_DEPENDS= ${LOCALBASE}/bin/python${PYTHON3_DEFAULT}:lang/python${PYTHON3_DEFAULT:S/.//g} \ ${RUST_DEFAULT}>=1.35:lang/${RUST_DEFAULT} \ autoconf2.13:devel/autoconf2.13 \ rust-cbindgen>=0.8.7:devel/rust-cbindgen LIB_DEPENDS= libffi.so:devel/libffi \ libicudata.so:devel/icu \ libnspr4.so:devel/nspr USES= compiler:c++17-lang gmake localbase pathfix pkgconfig \ python:build readline tar:xz USE_LDCONFIG= yes SP_VER= 91 HAS_CONFIGURE= yes WRKSRC= ${WRKDIR}/firefox-${DISTVERSION}/ PATCH_WRKSRC= ${WRKDIR}/firefox-${DISTVERSION}/ CONFIGURE_OUTSOURCE= yes CONFIGURE_SCRIPT= ../firefox-${DISTVERSION}/js/src/configure CONFIGURE_ARGS= --disable-debug \ --disable-debug-symbols \ --disable-gold \ --disable-jemalloc \ --disable-tests \ --enable-optimize \ --enable-readline \ --enable-shared-js \ --prefix=${PREFIX:Q} \ --target=${CONFIGURE_TARGET} \ --with-intl-api \ --with-system-icu \ --with-system-nspr \ --with-system-zlib CONFIGURE_ENV= HOST_CC=${CC} \ HOST_CXX=${CXX} BINARY_ALIAS= python3=${PYTHON_CMD} PLIST_SUB= SP_VER=${SP_VER} .include .if ${ARCH} == amd64 CONFIGURE_TARGET= x86_64-portbld-freebsd${OSREL} .elif ${ARCH} == powerpc EXTRA_PATCHES= ${FILESDIR}/extra-patch-config_makefiles_rust.mk .endif # Require newer Clang than what's in base system unless user opted out # or the base system is new enough. .if ${CHOSEN_COMPILER_TYPE} == gcc CONFIGURE_ENV+= LLVM_CONFIG=llvm-config${LLVM_DEFAULT} \ LLVM_OBJDUMP=llvm-objdump${LLVM_DEFAULT} BUILD_DEPENDS+= ${LOCALBASE}/bin/llvm-objdump${LLVM_DEFAULT}:devel/llvm${LLVM_DEFAULT} USE_GCC= yes .elif ${CC} == cc && ${CXX} == c++ && exists(/usr/lib/libc++.so) && \ ${COMPILER_VERSION} < 80 CPP= ${LOCALBASE}/bin/clang-cpp${LLVM_DEFAULT} CC= ${LOCALBASE}/bin/clang${LLVM_DEFAULT} CXX= ${LOCALBASE}/bin/clang++${LLVM_DEFAULT} CONFIGURE_ENV+= LLVM_CONFIG=llvm-config${LLVM_DEFAULT} \ LLVM_OBJDUMP=llvm-objdump${LLVM_DEFAULT} BUILD_DEPENDS+= ${LOCALBASE}/bin/clang${LLVM_DEFAULT}:devel/llvm${LLVM_DEFAULT} .endif pre-configure: (cd ${WRKSRC}/js/src/ && ${LOCALBASE}/bin/autoconf2.13) post-patch: @${REINPLACE_CMD} -e 's|%%LOCALBASE%%|${LOCALBASE}|g' ${WRKSRC}/js/moz.configure post-install: ${RM} ${STAGEDIR}${PREFIX}/lib/libjs_static.ajs ${LN} -fs libmozjs-${SP_VER}.so ${STAGEDIR}${PREFIX}/lib/libmozjs-${SP_VER}.so.1 ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libmozjs-${SP_VER}.* .include diff --git a/mail/thunderbird/Makefile b/mail/thunderbird/Makefile index 926c651926d4..2b34a4ed6b76 100644 --- a/mail/thunderbird/Makefile +++ b/mail/thunderbird/Makefile @@ -1,71 +1,72 @@ PORTNAME= thunderbird DISTVERSION= 91.13.0 +PORTREVISION= 1 CATEGORIES= mail news net-im wayland MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}/source \ MOZILLA/${PORTNAME}/candidates/${DISTVERSION}-candidates/build1/source DISTFILES= ${DISTNAME}.source${EXTRACT_SUFX} MAINTAINER= gecko@FreeBSD.org COMMENT= Mozilla Thunderbird is standalone mail and news that stands above BUILD_DEPENDS= nspr>=4.32:devel/nspr \ nss>=3.68:security/nss \ icu>=67.1,1:devel/icu \ libevent>=2.1.8:devel/libevent \ harfbuzz>=2.8.1:print/harfbuzz \ graphite2>=1.3.14:graphics/graphite2 \ png>=1.6.37:graphics/png \ dav1d>=1.0.0:multimedia/dav1d \ libvpx>=1.8.2:multimedia/libvpx \ ${PYTHON_PKGNAMEPREFIX}sqlite3>0:databases/py-sqlite3@${PY_FLAVOR} \ v4l_compat>0:multimedia/v4l_compat \ autoconf2.13:devel/autoconf2.13 \ nasm:devel/nasm \ yasm:devel/yasm \ zip:archivers/zip LIB_DEPENDS= libjson-c.so:devel/json-c \ libbotan-2.so:security/botan2 SSP_UNSAFE= yes USE_GECKO= gecko USE_MOZILLA= -sqlite CFLAGS_powerpc64le= -DSQLITE_BYTEORDER=1234 USES= tar:xz MOZ_OPTIONS= --enable-application=comm/mail --enable-official-branding MOZ_OPTIONS+= --with-system-bz2 --with-system-jsonc --with-system-botan MOZ_MK_OPTIONS= MOZ_THUNDERBIRD=1 MAIL_PKG_SHARED=1 MOZ_EXPORT= MOZ_THUNDERBIRD=1 MAIL_PKG_SHARED=1 PORTNAME_ICON= ${MOZILLA}.png PORTNAME_ICON_SRC= ${PREFIX}/lib/${MOZILLA}/chrome/icons/default/default48.png SYSTEM_PREFS= ${FAKEDIR}/lib/${PORTNAME}/defaults/pref/${PORTNAME}.js OPTIONS_DEFAULT=CANBERRA .include "${.CURDIR}/../../www/firefox/Makefile.options" .include post-extract: @${SED} -e 's|@PORTNAME_ICON@|${PORTNAME_ICON:R}|;s|@MOZILLA@|${MOZILLA}|' \ <${FILESDIR}/thunderbird.desktop.in >${WRKDIR}/${MOZILLA_EXEC_NAME}.desktop post-patch: @${REINPLACE_CMD} -e 's|%%LOCALBASE%%|${LOCALBASE}|g' \ ${WRKSRC}/comm/mail/app/nsMailApp.cpp pre-configure: (cd ${WRKSRC} && ${LOCALBASE}/bin/autoconf2.13) (cd ${MOZSRC} && ${LOCALBASE}/bin/autoconf2.13) (cd ${MOZSRC}/js/src/ && ${LOCALBASE}/bin/autoconf2.13) port-pre-install: ${MKDIR} ${STAGEDIR}${PREFIX}/lib/${PORTNAME}/defaults post-install: ${INSTALL_DATA} ${WRKDIR}/${MOZILLA_EXEC_NAME}.desktop ${STAGEDIR}${PREFIX}/share/applications ${LN} -sf ${PORTNAME_ICON_SRC} ${STAGEDIR}${PREFIX}/share/pixmaps/${PORTNAME_ICON} .include diff --git a/mail/thunderbird/files/patch-rust-1.63 b/mail/thunderbird/files/patch-rust-1.63 new file mode 100644 index 000000000000..15c50810edfe --- /dev/null +++ b/mail/thunderbird/files/patch-rust-1.63 @@ -0,0 +1,767 @@ +Backport of https://hg.mozilla.org/releases/mozilla-beta/raw-rev/c37c77a20f96 +Only the rust code is present (not the .toml, .json and .lock files) + + +diff --git a/third_party/rust/packed_simd/build.rs b/third_party/rust/packed_simd/build.rs +--- third_party/rust/packed_simd/build.rs ++++ third_party/rust/packed_simd/build.rs +@@ -1,6 +1,11 @@ ++use rustc_version::{version, Version}; ++ + fn main() { + let target = std::env::var("TARGET").expect("TARGET environment variable not defined"); + if target.contains("neon") { + println!("cargo:rustc-cfg=libcore_neon"); + } ++ if version().unwrap() < Version::parse("1.61.0-alpha").unwrap() { ++ println!("cargo:rustc-cfg=aarch64_target_feature"); ++ } + } +diff --git a/third_party/rust/packed_simd/src/api.rs b/third_party/rust/packed_simd/src/api.rs +--- third_party/rust/packed_simd/src/api.rs ++++ third_party/rust/packed_simd/src/api.rs +@@ -1,13 +1,13 @@ + //! Implements the Simd<[T; N]> APIs + + #[macro_use] + mod bitmask; +-crate mod cast; ++pub(crate) mod cast; + #[macro_use] + mod cmp; + #[macro_use] + mod default; + #[macro_use] + mod fmt; + #[macro_use] + mod from; +@@ -32,17 +32,17 @@ mod shuffle1_dyn; + #[macro_use] + mod slice; + #[macro_use] + mod swap_bytes; + #[macro_use] + mod bit_manip; + + #[cfg(feature = "into_bits")] +-crate mod into_bits; ++pub(crate) mod into_bits; + + macro_rules! impl_i { + ([$elem_ty:ident; $elem_n:expr]: $tuple_id:ident, $mask_ty:ident + | $ielem_ty:ident, $ibitmask_ty:ident | $test_tt:tt | $($elem_ids:ident),* + | From: $($from_vec_ty:ident),* | $(#[$doc:meta])*) => { + impl_minimal_iuf!([$elem_ty; $elem_n]: $tuple_id | $ielem_ty | $test_tt + | $($elem_ids),* | $(#[$doc])*); + impl_ops_vector_arithmetic!([$elem_ty; $elem_n]: $tuple_id | $test_tt); +diff --git a/third_party/rust/packed_simd/src/codegen.rs b/third_party/rust/packed_simd/src/codegen.rs +--- third_party/rust/packed_simd/src/codegen.rs ++++ third_party/rust/packed_simd/src/codegen.rs +@@ -1,24 +1,24 @@ + //! Code-generation utilities + +-crate mod bit_manip; +-crate mod llvm; +-crate mod math; +-crate mod reductions; +-crate mod shuffle; +-crate mod shuffle1_dyn; +-crate mod swap_bytes; ++pub(crate) mod bit_manip; ++pub(crate) mod llvm; ++pub(crate) mod math; ++pub(crate) mod reductions; ++pub(crate) mod shuffle; ++pub(crate) mod shuffle1_dyn; ++pub(crate) mod swap_bytes; + + macro_rules! impl_simd_array { + ([$elem_ty:ident; $elem_count:expr]: + $tuple_id:ident | $($elem_tys:ident),*) => { + #[derive(Copy, Clone)] + #[repr(simd)] +- pub struct $tuple_id($(crate $elem_tys),*); ++ pub struct $tuple_id($(pub(crate) $elem_tys),*); + //^^^^^^^ leaked through SimdArray + + impl crate::sealed::Seal for [$elem_ty; $elem_count] {} + + impl crate::sealed::SimdArray for [$elem_ty; $elem_count] { + type Tuple = $tuple_id; + type T = $elem_ty; + const N: usize = $elem_count; +@@ -30,33 +30,33 @@ macro_rules! impl_simd_array { + type Element = $elem_ty; + const LANES: usize = $elem_count; + type LanesType = [u32; $elem_count]; + } + + } + } + +-crate mod pointer_sized_int; ++pub(crate) mod pointer_sized_int; + +-crate mod v16; +-crate use self::v16::*; ++pub(crate) mod v16; ++pub(crate) use self::v16::*; + +-crate mod v32; +-crate use self::v32::*; ++pub(crate) mod v32; ++pub(crate) use self::v32::*; + +-crate mod v64; +-crate use self::v64::*; ++pub(crate) mod v64; ++pub(crate) use self::v64::*; + +-crate mod v128; +-crate use self::v128::*; ++pub(crate) mod v128; ++pub(crate) use self::v128::*; + +-crate mod v256; +-crate use self::v256::*; ++pub(crate) mod v256; ++pub(crate) use self::v256::*; + +-crate mod v512; +-crate use self::v512::*; ++pub(crate) mod v512; ++pub(crate) use self::v512::*; + +-crate mod vSize; +-crate use self::vSize::*; ++pub(crate) mod vSize; ++pub(crate) use self::vSize::*; + +-crate mod vPtr; +-crate use self::vPtr::*; ++pub(crate) mod vPtr; ++pub(crate) use self::vPtr::*; +diff --git a/third_party/rust/packed_simd/src/codegen/bit_manip.rs b/third_party/rust/packed_simd/src/codegen/bit_manip.rs +--- third_party/rust/packed_simd/src/codegen/bit_manip.rs ++++ third_party/rust/packed_simd/src/codegen/bit_manip.rs +@@ -1,12 +1,12 @@ + //! LLVM bit manipulation intrinsics. + #[rustfmt::skip] + +-use crate::*; ++pub(crate) use crate::*; + + #[allow(improper_ctypes, dead_code)] + extern "C" { + #[link_name = "llvm.ctlz.v2i8"] + fn ctlz_u8x2(x: u8x2, is_zero_undef: bool) -> u8x2; + #[link_name = "llvm.ctlz.v4i8"] + fn ctlz_u8x4(x: u8x4, is_zero_undef: bool) -> u8x4; + #[link_name = "llvm.ctlz.v8i8"] +@@ -142,17 +142,17 @@ extern "C" { + #[link_name = "llvm.ctpop.v1i128"] + fn ctpop_u128x1(x: u128x1) -> u128x1; + #[link_name = "llvm.ctpop.v2i128"] + fn ctpop_u128x2(x: u128x2) -> u128x2; + #[link_name = "llvm.ctpop.v4i128"] + fn ctpop_u128x4(x: u128x4) -> u128x4; + } + +-crate trait BitManip { ++pub(crate) trait BitManip { + fn ctpop(self) -> Self; + fn ctlz(self) -> Self; + fn cttz(self) -> Self; + } + + macro_rules! impl_bit_manip { + (inner: $ty:ident, $scalar:ty, $uty:ident, + $ctpop:ident, $ctlz:ident, $cttz:ident) => { +diff --git a/third_party/rust/packed_simd/src/codegen/llvm.rs b/third_party/rust/packed_simd/src/codegen/llvm.rs +--- third_party/rust/packed_simd/src/codegen/llvm.rs ++++ third_party/rust/packed_simd/src/codegen/llvm.rs +@@ -71,58 +71,58 @@ pub unsafe fn __shuffle_vector64::Element: Shuffle<[u32; 64], Output = U>, + { + simd_shuffle64(x, y, IDX) + } + + extern "platform-intrinsic" { +- crate fn simd_eq(x: T, y: T) -> U; +- crate fn simd_ne(x: T, y: T) -> U; +- crate fn simd_lt(x: T, y: T) -> U; +- crate fn simd_le(x: T, y: T) -> U; +- crate fn simd_gt(x: T, y: T) -> U; +- crate fn simd_ge(x: T, y: T) -> U; ++ pub(crate) fn simd_eq(x: T, y: T) -> U; ++ pub(crate) fn simd_ne(x: T, y: T) -> U; ++ pub(crate) fn simd_lt(x: T, y: T) -> U; ++ pub(crate) fn simd_le(x: T, y: T) -> U; ++ pub(crate) fn simd_gt(x: T, y: T) -> U; ++ pub(crate) fn simd_ge(x: T, y: T) -> U; + +- crate fn simd_insert(x: T, idx: u32, val: U) -> T; +- crate fn simd_extract(x: T, idx: u32) -> U; ++ pub(crate) fn simd_insert(x: T, idx: u32, val: U) -> T; ++ pub(crate) fn simd_extract(x: T, idx: u32) -> U; + +- crate fn simd_cast(x: T) -> U; ++ pub(crate) fn simd_cast(x: T) -> U; + +- crate fn simd_add(x: T, y: T) -> T; +- crate fn simd_sub(x: T, y: T) -> T; +- crate fn simd_mul(x: T, y: T) -> T; +- crate fn simd_div(x: T, y: T) -> T; +- crate fn simd_rem(x: T, y: T) -> T; +- crate fn simd_shl(x: T, y: T) -> T; +- crate fn simd_shr(x: T, y: T) -> T; +- crate fn simd_and(x: T, y: T) -> T; +- crate fn simd_or(x: T, y: T) -> T; +- crate fn simd_xor(x: T, y: T) -> T; ++ pub(crate) fn simd_add(x: T, y: T) -> T; ++ pub(crate) fn simd_sub(x: T, y: T) -> T; ++ pub(crate) fn simd_mul(x: T, y: T) -> T; ++ pub(crate) fn simd_div(x: T, y: T) -> T; ++ pub(crate) fn simd_rem(x: T, y: T) -> T; ++ pub(crate) fn simd_shl(x: T, y: T) -> T; ++ pub(crate) fn simd_shr(x: T, y: T) -> T; ++ pub(crate) fn simd_and(x: T, y: T) -> T; ++ pub(crate) fn simd_or(x: T, y: T) -> T; ++ pub(crate) fn simd_xor(x: T, y: T) -> T; + +- crate fn simd_reduce_add_unordered(x: T) -> U; +- crate fn simd_reduce_mul_unordered(x: T) -> U; +- crate fn simd_reduce_add_ordered(x: T, acc: U) -> U; +- crate fn simd_reduce_mul_ordered(x: T, acc: U) -> U; +- crate fn simd_reduce_min(x: T) -> U; +- crate fn simd_reduce_max(x: T) -> U; +- crate fn simd_reduce_min_nanless(x: T) -> U; +- crate fn simd_reduce_max_nanless(x: T) -> U; +- crate fn simd_reduce_and(x: T) -> U; +- crate fn simd_reduce_or(x: T) -> U; +- crate fn simd_reduce_xor(x: T) -> U; +- crate fn simd_reduce_all(x: T) -> bool; +- crate fn simd_reduce_any(x: T) -> bool; ++ pub(crate) fn simd_reduce_add_unordered(x: T) -> U; ++ pub(crate) fn simd_reduce_mul_unordered(x: T) -> U; ++ pub(crate) fn simd_reduce_add_ordered(x: T, acc: U) -> U; ++ pub(crate) fn simd_reduce_mul_ordered(x: T, acc: U) -> U; ++ pub(crate) fn simd_reduce_min(x: T) -> U; ++ pub(crate) fn simd_reduce_max(x: T) -> U; ++ pub(crate) fn simd_reduce_min_nanless(x: T) -> U; ++ pub(crate) fn simd_reduce_max_nanless(x: T) -> U; ++ pub(crate) fn simd_reduce_and(x: T) -> U; ++ pub(crate) fn simd_reduce_or(x: T) -> U; ++ pub(crate) fn simd_reduce_xor(x: T) -> U; ++ pub(crate) fn simd_reduce_all(x: T) -> bool; ++ pub(crate) fn simd_reduce_any(x: T) -> bool; + +- crate fn simd_select(m: M, a: T, b: T) -> T; ++ pub(crate) fn simd_select(m: M, a: T, b: T) -> T; + +- crate fn simd_fmin(a: T, b: T) -> T; +- crate fn simd_fmax(a: T, b: T) -> T; ++ pub(crate) fn simd_fmin(a: T, b: T) -> T; ++ pub(crate) fn simd_fmax(a: T, b: T) -> T; + +- crate fn simd_fsqrt(a: T) -> T; +- crate fn simd_fma(a: T, b: T, c: T) -> T; ++ pub(crate) fn simd_fsqrt(a: T) -> T; ++ pub(crate) fn simd_fma(a: T, b: T, c: T) -> T; + +- crate fn simd_gather(value: T, pointers: P, mask: M) -> T; +- crate fn simd_scatter(value: T, pointers: P, mask: M); ++ pub(crate) fn simd_gather(value: T, pointers: P, mask: M) -> T; ++ pub(crate) fn simd_scatter(value: T, pointers: P, mask: M); + +- crate fn simd_bitmask(value: T) -> U; ++ pub(crate) fn simd_bitmask(value: T) -> U; + } +diff --git a/third_party/rust/packed_simd/src/codegen/math.rs b/third_party/rust/packed_simd/src/codegen/math.rs +--- third_party/rust/packed_simd/src/codegen/math.rs ++++ third_party/rust/packed_simd/src/codegen/math.rs +@@ -1,3 +1,3 @@ + //! Vertical math operations + +-crate mod float; ++pub(crate) mod float; +diff --git a/third_party/rust/packed_simd/src/codegen/math/float.rs b/third_party/rust/packed_simd/src/codegen/math/float.rs +--- third_party/rust/packed_simd/src/codegen/math/float.rs ++++ third_party/rust/packed_simd/src/codegen/math/float.rs +@@ -1,18 +1,18 @@ + //! Vertical floating-point math operations. + #![allow(clippy::useless_transmute)] + + #[macro_use] +-crate mod macros; +-crate mod abs; +-crate mod cos; +-crate mod cos_pi; +-crate mod exp; +-crate mod ln; +-crate mod mul_add; +-crate mod mul_adde; +-crate mod powf; +-crate mod sin; +-crate mod sin_cos_pi; +-crate mod sin_pi; +-crate mod sqrt; +-crate mod sqrte; ++pub(crate) mod macros; ++pub(crate) mod abs; ++pub(crate) mod cos; ++pub(crate) mod cos_pi; ++pub(crate) mod exp; ++pub(crate) mod ln; ++pub(crate) mod mul_add; ++pub(crate) mod mul_adde; ++pub(crate) mod powf; ++pub(crate) mod sin; ++pub(crate) mod sin_cos_pi; ++pub(crate) mod sin_pi; ++pub(crate) mod sqrt; ++pub(crate) mod sqrte; +diff --git a/third_party/rust/packed_simd/src/codegen/math/float/abs.rs b/third_party/rust/packed_simd/src/codegen/math/float/abs.rs +--- third_party/rust/packed_simd/src/codegen/math/float/abs.rs ++++ third_party/rust/packed_simd/src/codegen/math/float/abs.rs +@@ -1,16 +1,16 @@ + //! Vertical floating-point `fabs` + #![allow(unused)] + + // FIXME 64-bit 1 elem vectors fabs + + use crate::*; + +-crate trait Abs { ++pub(crate) trait Abs { + fn abs(self) -> Self; + } + + #[allow(improper_ctypes)] + extern "C" { + #[link_name = "llvm.fabs.v2f32"] + fn fabs_v2f32(x: f32x2) -> f32x2; + #[link_name = "llvm.fabs.v4f32"] +diff --git a/third_party/rust/packed_simd/src/codegen/math/float/cos.rs b/third_party/rust/packed_simd/src/codegen/math/float/cos.rs +--- third_party/rust/packed_simd/src/codegen/math/float/cos.rs ++++ third_party/rust/packed_simd/src/codegen/math/float/cos.rs +@@ -1,16 +1,16 @@ + //! Vertical floating-point `cos` + #![allow(unused)] + + // FIXME 64-bit 1 elem vector cos + + use crate::*; + +-crate trait Cos { ++pub(crate) trait Cos { + fn cos(self) -> Self; + } + + #[allow(improper_ctypes)] + extern "C" { + #[link_name = "llvm.cos.v2f32"] + fn cos_v2f32(x: f32x2) -> f32x2; + #[link_name = "llvm.cos.v4f32"] +diff --git a/third_party/rust/packed_simd/src/codegen/math/float/cos_pi.rs b/third_party/rust/packed_simd/src/codegen/math/float/cos_pi.rs +--- third_party/rust/packed_simd/src/codegen/math/float/cos_pi.rs ++++ third_party/rust/packed_simd/src/codegen/math/float/cos_pi.rs +@@ -1,16 +1,16 @@ + //! Vertical floating-point `cos` + #![allow(unused)] + + // FIXME 64-bit 1 elem vectors cos_pi + + use crate::*; + +-crate trait CosPi { ++pub(crate) trait CosPi { + fn cos_pi(self) -> Self; + } + + gen_unary_impl_table!(CosPi, cos_pi); + + macro_rules! impl_def { + ($vid:ident, $PI:path) => { + impl CosPi for $vid { +diff --git a/third_party/rust/packed_simd/src/codegen/math/float/exp.rs b/third_party/rust/packed_simd/src/codegen/math/float/exp.rs +--- third_party/rust/packed_simd/src/codegen/math/float/exp.rs ++++ third_party/rust/packed_simd/src/codegen/math/float/exp.rs +@@ -1,16 +1,16 @@ + //! Vertical floating-point `exp` + #![allow(unused)] + + // FIXME 64-bit expgle elem vectors misexpg + + use crate::*; + +-crate trait Exp { ++pub(crate) trait Exp { + fn exp(self) -> Self; + } + + #[allow(improper_ctypes)] + extern "C" { + #[link_name = "llvm.exp.v2f32"] + fn exp_v2f32(x: f32x2) -> f32x2; + #[link_name = "llvm.exp.v4f32"] +diff --git a/third_party/rust/packed_simd/src/codegen/math/float/ln.rs b/third_party/rust/packed_simd/src/codegen/math/float/ln.rs +--- third_party/rust/packed_simd/src/codegen/math/float/ln.rs ++++ third_party/rust/packed_simd/src/codegen/math/float/ln.rs +@@ -1,16 +1,16 @@ + //! Vertical floating-point `ln` + #![allow(unused)] + + // FIXME 64-bit lngle elem vectors mislng + + use crate::*; + +-crate trait Ln { ++pub(crate) trait Ln { + fn ln(self) -> Self; + } + + #[allow(improper_ctypes)] + extern "C" { + #[link_name = "llvm.log.v2f32"] + fn ln_v2f32(x: f32x2) -> f32x2; + #[link_name = "llvm.log.v4f32"] +diff --git a/third_party/rust/packed_simd/src/codegen/math/float/mul_add.rs b/third_party/rust/packed_simd/src/codegen/math/float/mul_add.rs +--- third_party/rust/packed_simd/src/codegen/math/float/mul_add.rs ++++ third_party/rust/packed_simd/src/codegen/math/float/mul_add.rs +@@ -1,15 +1,15 @@ + //! Vertical floating-point `mul_add` + #![allow(unused)] + use crate::*; + + // FIXME: 64-bit 1 element mul_add + +-crate trait MulAdd { ++pub(crate) trait MulAdd { + fn mul_add(self, y: Self, z: Self) -> Self; + } + + #[cfg(not(target_arch = "s390x"))] + #[allow(improper_ctypes)] + extern "C" { + #[link_name = "llvm.fma.v2f32"] + fn fma_v2f32(x: f32x2, y: f32x2, z: f32x2) -> f32x2; +diff --git a/third_party/rust/packed_simd/src/codegen/math/float/mul_adde.rs b/third_party/rust/packed_simd/src/codegen/math/float/mul_adde.rs +--- third_party/rust/packed_simd/src/codegen/math/float/mul_adde.rs ++++ third_party/rust/packed_simd/src/codegen/math/float/mul_adde.rs +@@ -1,14 +1,14 @@ + //! Approximation for floating-point `mul_add` + use crate::*; + + // FIXME: 64-bit 1 element mul_adde + +-crate trait MulAddE { ++pub(crate) trait MulAddE { + fn mul_adde(self, y: Self, z: Self) -> Self; + } + + #[cfg(not(target_arch = "s390x"))] + #[allow(improper_ctypes)] + extern "C" { + #[link_name = "llvm.fmuladd.v2f32"] + fn fmuladd_v2f32(x: f32x2, y: f32x2, z: f32x2) -> f32x2; +diff --git a/third_party/rust/packed_simd/src/codegen/math/float/powf.rs b/third_party/rust/packed_simd/src/codegen/math/float/powf.rs +--- third_party/rust/packed_simd/src/codegen/math/float/powf.rs ++++ third_party/rust/packed_simd/src/codegen/math/float/powf.rs +@@ -1,16 +1,16 @@ + //! Vertical floating-point `powf` + #![allow(unused)] + + // FIXME 64-bit powfgle elem vectors mispowfg + + use crate::*; + +-crate trait Powf { ++pub(crate) trait Powf { + fn powf(self, x: Self) -> Self; + } + + #[allow(improper_ctypes)] + extern "C" { + #[link_name = "llvm.pow.v2f32"] + fn powf_v2f32(x: f32x2, y: f32x2) -> f32x2; + #[link_name = "llvm.pow.v4f32"] +diff --git a/third_party/rust/packed_simd/src/codegen/math/float/sin.rs b/third_party/rust/packed_simd/src/codegen/math/float/sin.rs +--- third_party/rust/packed_simd/src/codegen/math/float/sin.rs ++++ third_party/rust/packed_simd/src/codegen/math/float/sin.rs +@@ -1,16 +1,16 @@ + //! Vertical floating-point `sin` + #![allow(unused)] + + // FIXME 64-bit 1 elem vectors sin + + use crate::*; + +-crate trait Sin { ++pub(crate) trait Sin { + fn sin(self) -> Self; + } + + #[allow(improper_ctypes)] + extern "C" { + #[link_name = "llvm.sin.v2f32"] + fn sin_v2f32(x: f32x2) -> f32x2; + #[link_name = "llvm.sin.v4f32"] +diff --git a/third_party/rust/packed_simd/src/codegen/math/float/sin_cos_pi.rs b/third_party/rust/packed_simd/src/codegen/math/float/sin_cos_pi.rs +--- third_party/rust/packed_simd/src/codegen/math/float/sin_cos_pi.rs ++++ third_party/rust/packed_simd/src/codegen/math/float/sin_cos_pi.rs +@@ -1,16 +1,16 @@ + //! Vertical floating-point `sin_cos` + #![allow(unused)] + + // FIXME 64-bit 1 elem vectors sin_cos + + use crate::*; + +-crate trait SinCosPi: Sized { ++pub(crate) trait SinCosPi: Sized { + type Output; + fn sin_cos_pi(self) -> Self::Output; + } + + macro_rules! impl_def { + ($vid:ident, $PI:path) => { + impl SinCosPi for $vid { + type Output = (Self, Self); +diff --git a/third_party/rust/packed_simd/src/codegen/math/float/sin_pi.rs b/third_party/rust/packed_simd/src/codegen/math/float/sin_pi.rs +--- third_party/rust/packed_simd/src/codegen/math/float/sin_pi.rs ++++ third_party/rust/packed_simd/src/codegen/math/float/sin_pi.rs +@@ -1,16 +1,16 @@ + //! Vertical floating-point `sin_pi` + #![allow(unused)] + + // FIXME 64-bit 1 elem vectors sin_pi + + use crate::*; + +-crate trait SinPi { ++pub(crate) trait SinPi { + fn sin_pi(self) -> Self; + } + + gen_unary_impl_table!(SinPi, sin_pi); + + macro_rules! impl_def { + ($vid:ident, $PI:path) => { + impl SinPi for $vid { +diff --git a/third_party/rust/packed_simd/src/codegen/math/float/sqrt.rs b/third_party/rust/packed_simd/src/codegen/math/float/sqrt.rs +--- third_party/rust/packed_simd/src/codegen/math/float/sqrt.rs ++++ third_party/rust/packed_simd/src/codegen/math/float/sqrt.rs +@@ -1,16 +1,16 @@ + //! Vertical floating-point `sqrt` + #![allow(unused)] + + // FIXME 64-bit 1 elem vectors sqrt + + use crate::*; + +-crate trait Sqrt { ++pub(crate) trait Sqrt { + fn sqrt(self) -> Self; + } + + #[allow(improper_ctypes)] + extern "C" { + #[link_name = "llvm.sqrt.v2f32"] + fn sqrt_v2f32(x: f32x2) -> f32x2; + #[link_name = "llvm.sqrt.v4f32"] +diff --git a/third_party/rust/packed_simd/src/codegen/math/float/sqrte.rs b/third_party/rust/packed_simd/src/codegen/math/float/sqrte.rs +--- third_party/rust/packed_simd/src/codegen/math/float/sqrte.rs ++++ third_party/rust/packed_simd/src/codegen/math/float/sqrte.rs +@@ -1,17 +1,17 @@ + //! Vertical floating-point `sqrt` + #![allow(unused)] + + // FIXME 64-bit 1 elem vectors sqrte + + use crate::llvm::simd_fsqrt; + use crate::*; + +-crate trait Sqrte { ++pub(crate) trait Sqrte { + fn sqrte(self) -> Self; + } + + gen_unary_impl_table!(Sqrte, sqrte); + + cfg_if! { + if #[cfg(all(target_arch = "x86_64", feature = "sleef-sys"))] { + use sleef_sys::*; +diff --git a/third_party/rust/packed_simd/src/codegen/pointer_sized_int.rs b/third_party/rust/packed_simd/src/codegen/pointer_sized_int.rs +--- third_party/rust/packed_simd/src/codegen/pointer_sized_int.rs ++++ third_party/rust/packed_simd/src/codegen/pointer_sized_int.rs +@@ -1,28 +1,28 @@ + //! Provides `isize` and `usize` + + use cfg_if::cfg_if; + + cfg_if! { + if #[cfg(target_pointer_width = "8")] { +- crate type isize_ = i8; +- crate type usize_ = u8; ++ pub(crate) type isize_ = i8; ++ pub(crate) type usize_ = u8; + } else if #[cfg(target_pointer_width = "16")] { +- crate type isize_ = i16; +- crate type usize_ = u16; ++ pub(crate) type isize_ = i16; ++ pub(crate) type usize_ = u16; + } else if #[cfg(target_pointer_width = "32")] { +- crate type isize_ = i32; +- crate type usize_ = u32; ++ pub(crate) type isize_ = i32; ++ pub(crate) type usize_ = u32; + + } else if #[cfg(target_pointer_width = "64")] { +- crate type isize_ = i64; +- crate type usize_ = u64; ++ pub(crate) type isize_ = i64; ++ pub(crate) type usize_ = u64; + } else if #[cfg(target_pointer_width = "64")] { +- crate type isize_ = i64; +- crate type usize_ = u64; ++ pub(crate) type isize_ = i64; ++ pub(crate) type usize_ = u64; + } else if #[cfg(target_pointer_width = "128")] { +- crate type isize_ = i128; +- crate type usize_ = u128; ++ pub(crate) type isize_ = i128; ++ pub(crate) type usize_ = u128; + } else { + compile_error!("unsupported target_pointer_width"); + } + } +diff --git a/third_party/rust/packed_simd/src/codegen/reductions.rs b/third_party/rust/packed_simd/src/codegen/reductions.rs +--- third_party/rust/packed_simd/src/codegen/reductions.rs ++++ third_party/rust/packed_simd/src/codegen/reductions.rs +@@ -1,1 +1,1 @@ +-crate mod mask; ++pub(crate) mod mask; +diff --git a/third_party/rust/packed_simd/src/codegen/reductions/mask.rs b/third_party/rust/packed_simd/src/codegen/reductions/mask.rs +--- third_party/rust/packed_simd/src/codegen/reductions/mask.rs ++++ third_party/rust/packed_simd/src/codegen/reductions/mask.rs +@@ -2,21 +2,21 @@ + //! + //! Works around [LLVM bug 36702]. + //! + //! [LLVM bug 36702]: https://bugs.llvm.org/show_bug.cgi?id=36702 + #![allow(unused_macros)] + + use crate::*; + +-crate trait All: crate::marker::Sized { ++pub(crate) trait All: crate::marker::Sized { + unsafe fn all(self) -> bool; + } + +-crate trait Any: crate::marker::Sized { ++pub(crate) trait Any: crate::marker::Sized { + unsafe fn any(self) -> bool; + } + + #[macro_use] + mod fallback_impl; + + cfg_if! { + if #[cfg(any(target_arch = "x86", target_arch = "x86_64"))] { +diff --git a/third_party/rust/packed_simd/src/codegen/swap_bytes.rs b/third_party/rust/packed_simd/src/codegen/swap_bytes.rs +--- third_party/rust/packed_simd/src/codegen/swap_bytes.rs ++++ third_party/rust/packed_simd/src/codegen/swap_bytes.rs +@@ -1,26 +1,26 @@ + //! Horizontal swap bytes reductions. + + // FIXME: investigate using `llvm.bswap` + // https://github.com/rust-lang-nursery/packed_simd/issues/19 + + use crate::*; + +-crate trait SwapBytes { ++pub(crate) trait SwapBytes { + fn swap_bytes(self) -> Self; + } + + macro_rules! impl_swap_bytes { + (v16: $($id:ident,)+) => { + $( + impl SwapBytes for $id { + #[inline] + fn swap_bytes(self) -> Self { +- unsafe { shuffle!(self, [1, 0]) } ++ shuffle!(self, [1, 0]) + } + } + )+ + }; + (v32: $($id:ident,)+) => { + $( + impl SwapBytes for $id { + #[inline] +diff --git a/third_party/rust/packed_simd/src/codegen/vPtr.rs b/third_party/rust/packed_simd/src/codegen/vPtr.rs +--- third_party/rust/packed_simd/src/codegen/vPtr.rs ++++ third_party/rust/packed_simd/src/codegen/vPtr.rs +@@ -1,16 +1,16 @@ + //! Pointer vector types + + macro_rules! impl_simd_ptr { + ([$ptr_ty:ty; $elem_count:expr]: $tuple_id:ident | $ty:ident + | $($tys:ty),*) => { + #[derive(Copy, Clone)] + #[repr(simd)] +- pub struct $tuple_id<$ty>($(crate $tys),*); ++ pub struct $tuple_id<$ty>($(pub(crate) $tys),*); + //^^^^^^^ leaked through SimdArray + + impl<$ty> crate::sealed::Seal for [$ptr_ty; $elem_count] {} + impl<$ty> crate::sealed::SimdArray for [$ptr_ty; $elem_count] { + type Tuple = $tuple_id<$ptr_ty>; + type T = $ptr_ty; + const N: usize = $elem_count; + type NT = [u32; $elem_count]; +diff --git a/third_party/rust/packed_simd/src/lib.rs b/third_party/rust/packed_simd/src/lib.rs +--- third_party/rust/packed_simd/src/lib.rs ++++ third_party/rust/packed_simd/src/lib.rs +@@ -206,14 +206,13 @@ + rustc_attrs, + platform_intrinsics, + stdsimd, +- aarch64_target_feature, + arm_target_feature, + link_llvm_intrinsics, + core_intrinsics, + stmt_expr_attributes, +- crate_visibility_modifier, + custom_inner_attributes + )] ++#![cfg_attr(aarch64_target_feature, feature(aarch64_target_feature))] + #![allow(non_camel_case_types, non_snake_case, + // FIXME: these types are unsound in C FFI already + // See https://github.com/rust-lang/rust/issues/53346 +@@ -334,6 +333,6 @@ pub use self::codegen::llvm::{ + __shuffle_vector4, __shuffle_vector64, __shuffle_vector8, + }; + +-crate mod llvm { +- crate use crate::codegen::llvm::*; ++pub(crate) mod llvm { ++ pub(crate) use crate::codegen::llvm::*; + } +diff --git a/third_party/rust/packed_simd/src/testing.rs b/third_party/rust/packed_simd/src/testing.rs +--- third_party/rust/packed_simd/src/testing.rs ++++ third_party/rust/packed_simd/src/testing.rs +@@ -1,8 +1,8 @@ + //! Testing macros and other utilities. + + #[macro_use] + mod macros; + + #[cfg(test)] + #[macro_use] +-crate mod utils; ++pub(crate) mod utils; diff --git a/math/kalker/Makefile b/math/kalker/Makefile index d7ed085fd8d3..14b7a480b937 100644 --- a/math/kalker/Makefile +++ b/math/kalker/Makefile @@ -1,89 +1,89 @@ PORTNAME= kalker DISTVERSIONPREFIX= v DISTVERSION= 2.0.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= math MAINTAINER= ashish@FreeBSD.org COMMENT= Scientific calculator that supports math-like syntax LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE LIB_DEPENDS= libgmp.so:math/gmp \ libmpc.so:math/mpc USES= cargo USE_GITHUB= yes GH_ACCOUNT= PaddiM8 CARGO_CRATES= aho-corasick-0.7.15 \ ansi_term-0.12.1 \ atty-0.2.14 \ az-1.0.0 \ bitflags-1.2.1 \ bumpalo-3.4.0 \ cc-1.0.66 \ cfg-if-0.1.10 \ cfg-if-1.0.0 \ console_error_panic_hook-0.1.6 \ dirs-3.0.2 \ dirs-next-2.0.0 \ dirs-sys-0.3.6 \ dirs-sys-next-0.1.1 \ fs2-0.4.3 \ getrandom-0.1.15 \ getrandom-0.2.3 \ hermit-abi-0.1.18 \ js-sys-0.3.46 \ lazy_static-1.4.0 \ libc-0.2.81 \ log-0.4.11 \ memchr-2.3.4 \ nix-0.19.1 \ proc-macro2-1.0.24 \ quote-1.0.7 \ redox_syscall-0.1.57 \ redox_syscall-0.2.10 \ redox_users-0.3.5 \ redox_users-0.4.0 \ regex-1.4.2 \ regex-syntax-0.6.21 \ rug-1.11.0 \ rustyline-7.1.0 \ scoped-tls-1.0.0 \ scopeguard-1.1.0 \ seahorse-1.1.1 \ serde-1.0.118 \ syn-1.0.54 \ test-case-1.0.0 \ thread_local-1.0.1 \ toml-0.5.7 \ unicode-segmentation-1.7.1 \ unicode-width-0.1.8 \ unicode-xid-0.2.1 \ utf8parse-0.2.0 \ version_check-0.9.2 \ wasi-0.9.0+wasi-snapshot-preview1 \ wasi-0.10.2+wasi-snapshot-preview1 \ wasm-bindgen-0.2.69 \ wasm-bindgen-backend-0.2.69 \ wasm-bindgen-futures-0.4.19 \ wasm-bindgen-macro-0.2.69 \ wasm-bindgen-macro-support-0.2.69 \ wasm-bindgen-shared-0.2.69 \ wasm-bindgen-test-0.3.19 \ wasm-bindgen-test-macro-0.3.19 \ web-sys-0.3.46 \ winapi-0.3.9 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-x86_64-pc-windows-gnu-0.4.0 \ winres-0.1.11 \ gmp-mpfr-sys@git+https://gitlab.com/tspiteri/gmp-mpfr-sys.git\#21966f4bfb56c87d407eb14c72e92ef4e55856aa CARGO_CARGOTOML= ${WRKSRC}/cli/Cargo.toml CARGO_INSTALL_PATH= ./cli PLIST_FILES= bin/kalker post-patch: ${REINPLACE_CMD} -e 's,%%LOCALBASE%%,${LOCALBASE},g' ${WRKSRC_crate_gmp-mpfr-sys}/build.rs .include diff --git a/math/py-rustworkx/Makefile b/math/py-rustworkx/Makefile index 2bcaf77c819d..06281ca4b15b 100644 --- a/math/py-rustworkx/Makefile +++ b/math/py-rustworkx/Makefile @@ -1,107 +1,108 @@ PORTNAME= rustworkx DISTVERSION= 0.11.0-51 DISTVERSIONSUFFIX= -ge9edfdc +PORTREVISION= 1 CATEGORIES= math python #MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= yuri@FreeBSD.org COMMENT= High performance Python graph library implemented in Rust LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}setuptools-rust>0:devel/py-setuptools-rust@${PY_FLAVOR} RUN_DEPENDS= ${PYNUMPY} USES= cargo python:3.7+ USE_PYTHON= autoplist distutils pytest # all tests fail to run, see https://github.com/Qiskit/rustworkx/issues/655 USE_GITHUB= yes GH_ACCOUNT= Qiskit CARGO_CRATES= ahash-0.7.6 \ autocfg-1.1.0 \ bitflags-1.3.2 \ cfg-if-1.0.0 \ crossbeam-channel-0.5.4 \ crossbeam-deque-0.8.1 \ crossbeam-epoch-0.9.8 \ crossbeam-utils-0.8.8 \ either-1.6.1 \ fixedbitset-0.4.2 \ getrandom-0.2.6 \ hashbrown-0.11.2 \ hermit-abi-0.1.19 \ indexmap-1.7.0 \ indoc-1.0.6 \ instant-0.1.12 \ itoa-1.0.2 \ lazy_static-1.4.0 \ libc-0.2.126 \ lock_api-0.4.7 \ matrixmultiply-0.2.4 \ memchr-2.5.0 \ memoffset-0.6.5 \ ndarray-0.13.1 \ num-bigint-0.4.3 \ num-complex-0.2.4 \ num-complex-0.4.1 \ num-integer-0.1.45 \ num-traits-0.2.15 \ num_cpus-1.13.1 \ numpy-0.16.2 \ once_cell-1.12.0 \ parking_lot-0.11.2 \ parking_lot_core-0.8.5 \ petgraph-0.6.2 \ ppv-lite86-0.2.16 \ proc-macro2-1.0.39 \ pyo3-0.16.5 \ pyo3-build-config-0.16.5 \ pyo3-ffi-0.16.5 \ pyo3-macros-0.16.5 \ pyo3-macros-backend-0.16.5 \ quick-xml-0.22.0 \ quote-1.0.18 \ rand-0.8.5 \ rand_chacha-0.3.1 \ rand_core-0.6.3 \ rand_pcg-0.3.1 \ rawpointer-0.2.1 \ rayon-1.5.3 \ rayon-core-1.9.3 \ redox_syscall-0.2.13 \ ryu-1.0.10 \ scopeguard-1.1.0 \ serde-1.0.142 \ serde_derive-1.0.142 \ serde_json-1.0.83 \ smallvec-1.8.0 \ syn-1.0.96 \ target-lexicon-0.12.4 \ unicode-ident-1.0.0 \ unindent-0.1.9 \ version_check-0.9.4 \ wasi-0.10.2+wasi-snapshot-preview1 \ winapi-0.3.9 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-x86_64-pc-windows-gnu-0.4.0 CARGO_BUILD= no CARGO_INSTALL= no CARGO_TEST= no CARGO_TARGET_DIR= ${WRKSRC}/target MAKE_ENV= ${CARGO_ENV} TEST_ENV= ${MAKE_ENV} PYTHONPATH=${STAGEDIR}${PYTHONPREFIX_SITELIBDIR} TEST_WRKSRC= ${BUILD_WRKDIR} PLIST_FILES= ${PYTHON_SITELIBDIR}/rustworkx/rustworkx${PYTHON_EXT_SUFFIX}.so # workaround for https://github.com/Qiskit/rustworkx/issues/654 BINARY_ALIAS= python3=${PYTHON_CMD} post-install: @${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/rustworkx/rustworkx.cpython-${PYTHON_SUFFIX}.so .include diff --git a/math/savage/Makefile b/math/savage/Makefile index 38eba176e3d6..eb702af7e4a1 100644 --- a/math/savage/Makefile +++ b/math/savage/Makefile @@ -1,113 +1,113 @@ PORTNAME= savage DISTVERSIONPREFIX= v DISTVERSION= 0.2.0 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= math MAINTAINER= ashish@FreeBSD.org COMMENT= Primitive computer algebra system LICENSE= AGPLv3+ LICENSE_FILE= ${WRKSRC}/LICENSE USES= cargo USE_GITHUB= yes GH_ACCOUNT= p-e-w CARGO_CARGOTOML= ${WRKSRC}/savage/Cargo.toml CARGO_INSTALL_PATH= ./savage CARGO_CRATES= ahash-0.3.8 \ aho-corasick-0.7.18 \ ansi_term-0.12.1 \ approx-0.5.0 \ autocfg-1.0.1 \ bitflags-1.2.1 \ bytemuck-1.7.2 \ cc-1.0.72 \ cfg-if-1.0.0 \ chumsky-0.8.0 \ clipboard-win-4.2.2 \ const-random-0.1.13 \ const-random-macro-0.1.13 \ crunchy-0.2.2 \ darling-0.13.1 \ darling_core-0.13.1 \ darling_macro-0.13.1 \ derivative-2.2.0 \ directories-4.0.1 \ dirs-next-2.0.0 \ dirs-sys-0.3.6 \ dirs-sys-next-0.1.2 \ endian-type-0.1.2 \ error-code-2.3.0 \ fd-lock-3.0.1 \ fnv-1.0.7 \ getrandom-0.2.3 \ hamming-0.1.3 \ ident_case-1.0.1 \ lazy_static-1.4.0 \ libc-0.2.107 \ log-0.4.14 \ matrixmultiply-0.3.1 \ memchr-2.4.1 \ memoffset-0.6.4 \ nalgebra-0.29.0 \ nalgebra-macros-0.1.0 \ nibble_vec-0.1.0 \ nix-0.22.2 \ num-0.4.0 \ num-bigint-0.4.3 \ num-complex-0.4.0 \ num-integer-0.1.44 \ num-iter-0.1.42 \ num-rational-0.4.0 \ num-traits-0.2.14 \ paste-1.0.6 \ permutohedron-0.2.4 \ primal-0.3.0 \ primal-bit-0.3.0 \ primal-check-0.3.1 \ primal-estimate-0.3.1 \ primal-sieve-0.3.2 \ proc-macro-hack-0.5.19 \ proc-macro2-1.0.36 \ quote-1.0.14 \ radix_trie-0.2.1 \ rawpointer-0.2.1 \ redox_syscall-0.2.10 \ redox_users-0.4.0 \ regex-1.5.4 \ regex-syntax-0.6.25 \ rustyline-9.0.0 \ rustyline-derive-0.6.0 \ safe_arch-0.6.0 \ scopeguard-1.1.0 \ simba-0.6.0 \ smallvec-1.7.0 \ str-buf-1.0.5 \ strsim-0.10.0 \ syn-1.0.85 \ tiny-keccak-2.0.2 \ typenum-1.14.0 \ unicode-segmentation-1.8.0 \ unicode-width-0.1.9 \ unicode-xid-0.2.2 \ utf8parse-0.2.0 \ wasi-0.10.2+wasi-snapshot-preview1 \ wide-0.7.1 \ winapi-0.3.9 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-x86_64-pc-windows-gnu-0.4.0 \ windows-sys-0.28.0 \ windows_aarch64_msvc-0.28.0 \ windows_i686_gnu-0.28.0 \ windows_i686_msvc-0.28.0 \ windows_x86_64_gnu-0.28.0 \ windows_x86_64_msvc-0.28.0 PLIST_FILES= bin/savage \ ${DOCSDIR_REL}/README.md post-install: @${MKDIR} ${STAGEDIR}${DOCSDIR} (cd ${WRKSRC} && ${INSTALL_DATA} README.md ${STAGEDIR}${DOCSDIR}) .include diff --git a/misc/broot/Makefile b/misc/broot/Makefile index 1992f43bcf2d..9e8496d7ed93 100644 --- a/misc/broot/Makefile +++ b/misc/broot/Makefile @@ -1,295 +1,296 @@ PORTNAME= broot DISTVERSIONPREFIX= v DISTVERSION= 1.14.2 +PORTREVISION= 1 CATEGORIES= misc MAINTAINER= lcook@FreeBSD.org COMMENT= Quick and easy new way to see and navigate directory trees LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE LIB_DEPENDS= libgit2.so:devel/libgit2 \ libonig.so:devel/oniguruma RUN_DEPENDS= git:devel/git USES= cargo USE_GITHUB= yes GH_ACCOUNT= canop CARGO_CRATES= adler-1.0.2 \ adler32-1.2.0 \ ahash-0.4.7 \ ahash-0.7.6 \ aho-corasick-0.7.18 \ ansi_colours-1.1.1 \ anyhow-1.0.58 \ argh-0.1.8 \ argh_derive-0.1.8 \ argh_shared-0.1.8 \ atty-0.2.14 \ autocfg-1.1.0 \ base64-0.13.0 \ bet-1.0.1 \ bincode-1.3.3 \ bit_field-0.10.1 \ bitflags-1.3.2 \ bstr-0.2.17 \ bumpalo-3.10.0 \ bytemuck-1.10.0 \ byteorder-1.4.3 \ cc-1.0.73 \ cfg-if-1.0.0 \ char_reader-0.1.1 \ chrono-0.4.19 \ clap-3.2.8 \ clap_complete-3.2.3 \ clap_derive-3.2.7 \ clap_lex-0.2.4 \ cli-log-0.1.0 \ cli-log-2.0.0 \ clipboard-win-4.4.1 \ color_quant-1.1.0 \ coolor-0.5.0 \ crc32fast-1.3.2 \ crokey-0.4.1 \ crokey-proc_macros-0.4.0 \ crossbeam-0.8.1 \ crossbeam-channel-0.5.5 \ crossbeam-deque-0.8.1 \ crossbeam-epoch-0.9.9 \ crossbeam-queue-0.3.5 \ crossbeam-utils-0.8.10 \ crossterm-0.23.2 \ crossterm_winapi-0.9.0 \ csv-1.1.6 \ csv-core-0.1.10 \ csv2svg-0.1.7 \ custom_error-1.9.2 \ deflate-1.0.0 \ deser-hjson-1.0.2 \ directories-4.0.1 \ directories-next-2.0.0 \ dirs-sys-0.3.7 \ dirs-sys-next-0.1.2 \ doc-comment-0.3.3 \ either-1.7.0 \ error-code-2.3.1 \ exr-1.4.2 \ fallible-iterator-0.2.0 \ fallible-streaming-iterator-0.1.9 \ fastrand-1.7.0 \ file-size-1.0.3 \ flate2-1.0.24 \ flume-0.10.13 \ fnv-1.0.7 \ form_urlencoded-1.0.1 \ futures-core-0.3.21 \ futures-sink-0.3.21 \ getrandom-0.2.7 \ gif-0.11.4 \ git2-0.14.4 \ glassbench-0.3.3 \ glob-0.3.0 \ half-1.8.2 \ hashbrown-0.9.1 \ hashbrown-0.12.1 \ hashlink-0.6.0 \ heck-0.3.3 \ heck-0.4.0 \ hermit-abi-0.1.19 \ id-arena-2.2.1 \ idna-0.2.3 \ image-0.24.2 \ include_dir-0.7.2 \ include_dir_macros-0.7.2 \ indexmap-1.9.1 \ inflate-0.4.5 \ instant-0.1.12 \ is_executable-1.0.1 \ itoa-0.4.8 \ itoa-1.0.2 \ jobserver-0.1.24 \ jpeg-decoder-0.2.6 \ js-sys-0.3.58 \ lazy-regex-2.3.0 \ lazy-regex-proc_macros-2.3.0 \ lazy_static-1.4.0 \ lebe-0.5.1 \ lfs-core-0.11.0 \ libc-0.2.126 \ libgit2-sys-0.13.4+1.4.2 \ libsqlite3-sys-0.20.1 \ libz-sys-1.1.8 \ line-wrap-0.1.1 \ linked-hash-map-0.5.6 \ lock_api-0.4.7 \ log-0.4.17 \ matches-0.1.9 \ memchr-2.5.0 \ memmap-0.7.0 \ memoffset-0.6.5 \ minimad-0.9.0 \ miniz_oxide-0.5.3 \ mio-0.8.4 \ nanorand-0.7.0 \ nix-0.22.3 \ num-integer-0.1.45 \ num-iter-0.1.43 \ num-rational-0.4.1 \ num-traits-0.2.15 \ num_cpus-1.13.1 \ num_threads-0.1.6 \ once_cell-1.13.0 \ onig-6.3.2 \ onig_sys-69.8.0 \ open-1.7.1 \ opener-0.5.0 \ os_str_bytes-6.1.0 \ parking_lot-0.12.1 \ parking_lot_core-0.9.3 \ pathdiff-0.2.1 \ percent-encoding-2.1.0 \ phf-0.10.1 \ phf_generator-0.10.0 \ phf_macros-0.10.0 \ phf_shared-0.10.0 \ pin-project-1.0.11 \ pin-project-internal-1.0.11 \ pkg-config-0.3.25 \ plist-1.3.1 \ png-0.17.5 \ ppv-lite86-0.2.16 \ proc-macro-error-1.0.4 \ proc-macro-error-attr-1.0.4 \ proc-macro-hack-0.5.19 \ proc-macro2-1.0.40 \ proc-status-0.1.1 \ quick-xml-0.22.0 \ quote-1.0.20 \ rand-0.8.5 \ rand_chacha-0.3.1 \ rand_core-0.6.3 \ rayon-1.5.3 \ rayon-core-1.9.3 \ redox_syscall-0.2.13 \ redox_users-0.4.3 \ regex-1.5.6 \ regex-automata-0.1.10 \ regex-syntax-0.6.26 \ remove_dir_all-0.5.3 \ rgb-0.8.33 \ rusqlite-0.24.2 \ ryu-1.0.10 \ safemem-0.3.3 \ same-file-1.0.6 \ scoped_threadpool-0.1.9 \ scopeguard-1.1.0 \ secular-1.0.1 \ serde-1.0.138 \ serde_derive-1.0.138 \ serde_json-1.0.82 \ signal-hook-0.3.14 \ signal-hook-mio-0.2.3 \ signal-hook-registry-1.4.0 \ siphasher-0.3.10 \ smallvec-1.9.0 \ snafu-0.7.1 \ snafu-derive-0.7.1 \ spin-0.9.3 \ splitty-0.1.0 \ str-buf-1.0.6 \ strict-0.1.4 \ strsim-0.10.0 \ svg-0.8.2 \ syn-1.0.98 \ syntect-no-panic-4.6.1 \ tempfile-3.3.0 \ termcolor-1.1.3 \ termimad-0.20.2 \ terminal-clipboard-0.3.1 \ terminal-light-1.0.0 \ termux-clipboard-0.1.0 \ textwrap-0.15.0 \ thiserror-1.0.31 \ thiserror-impl-1.0.31 \ threadpool-1.8.1 \ tiff-0.7.2 \ time-0.1.44 \ time-0.3.11 \ tinyvec-1.6.0 \ tinyvec_macros-0.1.0 \ toml-0.5.9 \ umask-2.0.0 \ unicode-bidi-0.3.8 \ unicode-ident-1.0.1 \ unicode-normalization-0.1.21 \ unicode-segmentation-1.9.0 \ unicode-width-0.1.9 \ url-2.2.2 \ users-0.11.0 \ vcpkg-0.2.15 \ version_check-0.9.4 \ walkdir-2.3.2 \ wasi-0.10.0+wasi-snapshot-preview1 \ wasi-0.11.0+wasi-snapshot-preview1 \ wasm-bindgen-0.2.81 \ wasm-bindgen-backend-0.2.81 \ wasm-bindgen-macro-0.2.81 \ wasm-bindgen-macro-support-0.2.81 \ wasm-bindgen-shared-0.2.81 \ weezl-0.1.6 \ winapi-0.3.9 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-util-0.1.5 \ winapi-x86_64-pc-windows-gnu-0.4.0 \ windows-sys-0.36.1 \ windows_aarch64_msvc-0.36.1 \ windows_i686_gnu-0.36.1 \ windows_i686_msvc-0.36.1 \ windows_x86_64_gnu-0.36.1 \ windows_x86_64_msvc-0.36.1 \ x11-clipboard-0.5.3 \ xcb-0.10.1 \ xml-rs-0.8.4 \ xterm-query-0.1.0 \ xterm-query-0.2.0 \ yaml-rust-0.4.5 CARGO_FEATURES= --no-default-features SUB_FILES= pkg-message PLIST_FILES= bin/${PORTNAME} \ man/man1/${PORTNAME}.1.gz PORTDOCS= CHANGELOG.md README.md documentation.md features.md OPTIONS_DEFINE= CLIPBOARD DOCS OPTIONS_DEFAULT= CLIPBOARD CLIPBOARD_DESC= Enable terminal X11 clipboard support CLIPBOARD_USES= python:3.6+,build xorg CLIPBOARD_USE= XORG=xcb CLIPBOARD_BINARY_ALIAS= python3=${PYTHON_CMD} CLIPBOARD_VARS= CARGO_FEATURES+=clipboard _BUILD_VERSION= ${DISTVERSION} _BUILD_DATE= $$(date +'%Y/%m/%d') pre-build: @${MV} ${WRKSRC}/man/page \ ${WRKSRC}/man/${PORTNAME}.1 @${REINPLACE_CMD} -e 's|#version|${_BUILD_VERSION}|g' \ -e "s|#date|${_BUILD_DATE}|g" \ ${WRKSRC}/man/${PORTNAME}.1 post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/${PORTNAME} ${INSTALL_MAN} ${WRKSRC}/man/${PORTNAME}.1 \ ${STAGEDIR}${MAN1PREFIX}/man/man1 post-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} \ ${STAGEDIR}${DOCSDIR} .include diff --git a/misc/ruut/Makefile b/misc/ruut/Makefile index dac569431d39..a825754fd85c 100644 --- a/misc/ruut/Makefile +++ b/misc/ruut/Makefile @@ -1,71 +1,72 @@ PORTNAME= ruut DISTVERSIONPREFIX= v DISTVERSION= 0.7.0 +PORTREVISION= 1 CATEGORIES= misc MAINTAINER= yuri@FreeBSD.org COMMENT= Print arbitrary trees on the command line LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= cargo USE_GITHUB= yes GH_ACCOUNT= HarrisonB CARGO_CRATES= ansi_term-0.11.0 \ atty-0.2.14 \ bitflags-1.2.1 \ block-buffer-0.7.3 \ block-padding-0.1.5 \ byte-tools-0.3.1 \ byteorder-1.3.4 \ clap-2.33.0 \ digest-0.8.1 \ either-1.5.3 \ exitcode-1.1.2 \ fake-simd-0.1.2 \ generic-array-0.12.3 \ heck-0.3.1 \ hermit-abi-0.1.6 \ itertools-0.8.2 \ itoa-0.4.5 \ json5-0.2.5 \ libc-0.2.66 \ maplit-1.0.2 \ opaque-debug-0.2.3 \ pest-2.1.3 \ pest_derive-2.1.0 \ pest_generator-2.1.2 \ pest_meta-2.1.3 \ proc-macro2-0.4.30 \ proc-macro2-1.0.9 \ quote-0.6.13 \ quote-1.0.3 \ ryu-1.0.2 \ serde-1.0.104 \ serde_json-1.0.47 \ sha-1-0.8.2 \ strsim-0.8.0 \ structopt-0.2.18 \ structopt-derive-0.2.18 \ syn-0.15.44 \ syn-1.0.16 \ textwrap-0.11.0 \ typenum-1.11.2 \ ucd-trie-0.1.2 \ unicode-segmentation-1.6.0 \ unicode-width-0.1.7 \ unicode-xid-0.1.0 \ unicode-xid-0.2.0 \ vec_map-0.8.1 \ winapi-0.3.8 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-x86_64-pc-windows-gnu-0.4.0 PLIST_FILES= bin/${PORTNAME} post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/${PORTNAME} .include diff --git a/misc/xd-rust/Makefile b/misc/xd-rust/Makefile index 323efa8e540e..b06ec9a1a8cb 100644 --- a/misc/xd-rust/Makefile +++ b/misc/xd-rust/Makefile @@ -1,108 +1,108 @@ PORTNAME= xd DISTVERSION= 0.0.4 -PORTREVISION= 15 +PORTREVISION= 16 CATEGORIES= misc MASTER_SITES= https://bitbucket.org/${BB_ACCOUNT}/${BB_PROJECT}/get/${BB_COMMIT}.tar.gz?dummy=/:main DISTFILES= ${PORTNAME}-${DISTVERSION}${EXTRACT_SUFX}:main MAINTAINER= yuri@FreeBSD.org COMMENT= Tool that dumps binary input in a variety of formats LICENSE= ISCL LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= cargo CARGO_CRATES= addr2line-0.14.0 \ adler-0.2.3 \ aho-corasick-0.7.15 \ ansi_term-0.11.0 \ atty-0.2.14 \ autocfg-0.1.7 \ autocfg-1.0.1 \ backtrace-0.3.54 \ bitflags-1.2.1 \ cc-1.0.62 \ cfg-if-0.1.10 \ cfg-if-1.0.0 \ clap-2.33.3 \ cloudabi-0.0.3 \ color-eyre-0.5.7 \ color-spantrace-0.1.4 \ eyre-0.6.3 \ fuchsia-cprng-0.1.1 \ generator-0.6.23 \ gimli-0.23.0 \ hermit-abi-0.1.17 \ indenter-0.3.0 \ itoa-0.4.6 \ jane-eyre-0.3.0 \ lazy_static-1.4.0 \ libc-0.2.80 \ log-0.4.11 \ loom-0.3.6 \ memchr-2.3.4 \ miniz_oxide-0.4.3 \ mktemp-0.4.0 \ nix-0.19.1 \ object-0.22.0 \ once_cell-1.5.2 \ owo-colors-1.1.3 \ pin-project-lite-0.1.11 \ pledge-0.4.0 \ proc-macro2-1.0.24 \ quote-1.0.7 \ rand-0.6.5 \ rand_chacha-0.1.1 \ rand_core-0.3.1 \ rand_core-0.4.2 \ rand_hc-0.1.0 \ rand_isaac-0.1.1 \ rand_jitter-0.1.4 \ rand_os-0.1.3 \ rand_pcg-0.1.2 \ rand_xorshift-0.1.1 \ rdrand-0.4.0 \ regex-1.4.2 \ regex-syntax-0.6.21 \ rustc-demangle-0.1.18 \ rustc_version-0.2.3 \ ryu-1.0.5 \ scoped-tls-1.0.0 \ semver-0.9.0 \ semver-parser-0.7.0 \ serde-1.0.117 \ serde_derive-1.0.117 \ serde_json-1.0.59 \ sharded-slab-0.1.0 \ strsim-0.8.0 \ syn-1.0.48 \ textwrap-0.11.0 \ thread_local-1.0.1 \ tracing-0.1.21 \ tracing-attributes-0.1.11 \ tracing-core-0.1.17 \ tracing-error-0.1.2 \ tracing-subscriber-0.2.15 \ unicode-width-0.1.8 \ unicode-xid-0.2.1 \ unveil-0.2.1 \ uuid-0.7.4 \ vec_map-0.8.2 \ winapi-0.3.9 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-util-0.1.5 \ winapi-x86_64-pc-windows-gnu-0.4.0 BB_ACCOUNT= delan BB_PROJECT= ${PORTNAME} BB_COMMIT= 4bdbb191ed6d WRKSRC= ${WRKDIR}/${BB_ACCOUNT}-${BB_PROJECT}-${BB_COMMIT} PLIST_FILES= bin/${PORTNAME} post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/${PORTNAME} .include diff --git a/misc/xplr/Makefile b/misc/xplr/Makefile index d948dc9823ac..de136e7ef4bd 100644 --- a/misc/xplr/Makefile +++ b/misc/xplr/Makefile @@ -1,199 +1,199 @@ PORTNAME= xplr DISTVERSIONPREFIX= v DISTVERSION= 0.19.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= misc MAINTAINER= lcook@FreeBSD.org COMMENT= Hackable, minimal, fast TUI file explorer LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= cargo desktop-file-utils gmake USE_GITHUB= yes GH_ACCOUNT= sayanarijit CARGO_CRATES= aho-corasick-0.7.18 \ ansi-to-tui-forked-0.5.2-fix.offset \ anyhow-1.0.57 \ assert_cmd-2.0.4 \ atty-0.2.14 \ autocfg-1.1.0 \ bitflags-1.3.2 \ bstr-0.2.17 \ bumpalo-3.10.0 \ cassowary-0.3.0 \ cast-0.2.7 \ cc-1.0.73 \ cfg-if-1.0.0 \ chrono-0.4.19 \ clap-2.34.0 \ criterion-0.3.5 \ criterion-plot-0.4.4 \ crossbeam-channel-0.5.4 \ crossbeam-deque-0.8.1 \ crossbeam-epoch-0.9.8 \ crossbeam-utils-0.8.8 \ crossterm-0.23.2 \ crossterm_winapi-0.9.0 \ csv-1.1.6 \ csv-core-0.1.10 \ difflib-0.4.0 \ dirs-4.0.0 \ dirs-sys-0.3.6 \ dirs-sys-0.3.7 \ doc-comment-0.3.3 \ either-1.6.1 \ erased-serde-0.3.20 \ gethostname-0.2.3 \ getrandom-0.2.6 \ half-1.8.2 \ hashbrown-0.11.2 \ hermit-abi-0.1.16 \ humansize-1.1.1 \ indexmap-1.8.2 \ itertools-0.10.3 \ itoa-0.4.8 \ itoa-1.0.2 \ js-sys-0.3.57 \ lazy_static-1.4.0 \ libc-0.2.126 \ linked-hash-map-0.5.4 \ lock_api-0.4.7 \ log-0.4.16 \ lua-src-544.0.1 \ luajit-src-210.4.0+resty124ff8d \ memchr-2.5.0 \ memoffset-0.6.5 \ mime-0.3.16 \ mime_guess-2.0.4 \ mio-0.8.3 \ mlua-0.7.4 \ natord-1.0.9 \ num_cpus-1.13.1 \ num-integer-0.1.45 \ num-traits-0.2.15 \ once_cell-1.12.0 \ oorandom-11.1.3 \ parking_lot-0.12.1 \ parking_lot_core-0.9.3 \ pkg-config-0.3.25 \ plotters-0.3.1 \ plotters-backend-0.3.2 \ plotters-svg-0.3.1 \ predicates-2.1.1 \ predicates-core-1.0.3 \ predicates-tree-1.0.5 \ proc-macro2-1.0.39 \ quote-1.0.18 \ rayon-1.5.3 \ rayon-core-1.9.3 \ redox_users-0.4.3 \ redox_syscall-0.2.13 \ regex-1.5.6 \ regex-automata-0.1.10 \ regex-syntax-0.6.26 \ rustc_version-0.4.0 \ rustc-hash-1.1.0 \ ryu-1.0.10 \ same-file-1.0.6 \ scopeguard-1.1.0 \ semver-1.0.9 \ serde-1.0.137 \ serde_cbor-0.11.2 \ serde_derive-1.0.137 \ serde_json-1.0.81 \ serde_yaml-0.8.24 \ signal-hook-0.3.14 \ signal-hook-mio-0.2.3 \ signal-hook-registry-1.4.0 \ smallvec-1.8.0 \ syn-1.0.96 \ termtree-0.2.4 \ textwrap-0.11.0 \ thiserror-1.0.31 \ thiserror-impl-1.0.31 \ time-0.1.44 \ tinytemplate-1.2.1 \ tui-0.18.0 \ tui-input-0.4.2 \ unicase-2.6.0 \ unicode-ident-1.0.0 \ unicode-segmentation-1.9.0 \ unicode-width-0.1.9 \ version_check-0.9.4 \ wait-timeout-0.2.0 \ walkdir-2.3.2 \ wasi-0.10.0+wasi-snapshot-preview1 \ wasi-0.11.0+wasi-snapshot-preview1 \ wasm-bindgen-0.2.80 \ wasm-bindgen-backend-0.2.80 \ wasm-bindgen-macro-0.2.80 \ wasm-bindgen-macro-support-0.2.80 \ wasm-bindgen-shared-0.2.80 \ web-sys-0.3.57 \ winapi-0.3.9 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-util-0.1.5 \ winapi-x86_64-pc-windows-gnu-0.4.0 \ windows_aarch64_msvc-0.36.1 \ windows_i686_gnu-0.36.1 \ windows_i686_msvc-0.36.1 \ windows_x86_64_gnu-0.36.1 \ windows_x86_64_msvc-0.36.1 \ windows-sys-0.36.1 \ yaml-rust-0.4.5 BINARY_ALIAS= make=gmake PORTDOCS= CODE_OF_CONDUCT.md README.md RELEASE.md _EXAMPLES= ${WRKSRC}/src/init.lua PORTEXAMPLES= ${_EXAMPLES:T} OPTIONS_DEFINE= DOCS EXAMPLES _ASSETS= ${WRKSRC}/assets _ICONS= ${STAGEDIR}${PREFIX}/share/icons/hicolor .include .if ${ARCH:Mpowerpc64*} EXTRA_PATCHES= ${FILESDIR}/extra-patch-Cargo.toml LIB_DEPENDS= libluajit-5.1.so:lang/luajit-openresty .endif .if ${ARCH} == powerpc EXTRA_PATCHES= ${FILESDIR}/extra-patch-Cargo.toml LIB_DEPENDS= libluajit-5.1.so:lang/luajit .endif post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/${PORTNAME} ${INSTALL_DATA} ${_ASSETS}/desktop/${PORTNAME}.desktop \ ${STAGEDIR}${PREFIX}/share/applications/${PORTNAME}.desktop @${MKDIR} ${_ICONS}/scalable/apps ${INSTALL_DATA} ${_ASSETS}/icon/${PORTNAME}.svg \ ${_ICONS}/scalable/apps .for res in 16 32 64 128 @${MKDIR} ${_ICONS}/${res}x${res}/apps .for icon in ico png ${INSTALL_DATA} ${_ASSETS}/icon/${PORTNAME}${res}.${icon} \ ${_ICONS}/${res}x${res}/apps/${PORTNAME}.${icon} .endfor .endfor post-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} \ ${STAGEDIR}${DOCSDIR} post-install-EXAMPLES-on: @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} cd ${WRKSRC} && \ ${INSTALL_DATA} ${_EXAMPLES} \ ${STAGEDIR}${EXAMPLESDIR} .include diff --git a/multimedia/ab-av1/Makefile b/multimedia/ab-av1/Makefile index 1769b98acb7b..d20b804e40ec 100644 --- a/multimedia/ab-av1/Makefile +++ b/multimedia/ab-av1/Makefile @@ -1,117 +1,118 @@ PORTNAME= ab-av1 DISTVERSIONPREFIX= v DISTVERSION= 0.4.2 +PORTREVISION= 1 CATEGORIES= multimedia MAINTAINER= jbeich@FreeBSD.org COMMENT= AV1 re-encoding using ffmpeg, svt-av1 & vmaf LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= ffmpeg:multimedia/ffmpeg \ SvtAv1EncApp:multimedia/svt-av1 USES= cargo USE_GITHUB= yes GH_ACCOUNT= alexheretic PLIST_FILES= bin/${PORTNAME} \ share/bash-completion/completions/${PORTNAME} \ share/fish/vendor_completions.d/${PORTNAME}.fish \ share/zsh/site-functions/_${PORTNAME} CARGO_CRATES= anyhow-1.0.61 \ atty-0.2.14 \ autocfg-1.1.0 \ bitflags-1.3.2 \ bytes-1.2.1 \ cc-1.0.73 \ cfg-if-1.0.0 \ clap-3.2.17 \ clap_complete-3.2.4 \ clap_derive-3.2.17 \ clap_lex-0.2.4 \ console-0.15.1 \ encode_unicode-0.3.6 \ errno-0.2.8 \ errno-dragonfly-0.1.2 \ ffprobe-0.3.2 \ futures-0.3.21 \ futures-channel-0.3.21 \ futures-core-0.3.21 \ futures-executor-0.3.21 \ futures-io-0.3.21 \ futures-macro-0.3.21 \ futures-sink-0.3.21 \ futures-task-0.3.21 \ futures-util-0.3.21 \ getrandom-0.2.7 \ hashbrown-0.12.3 \ heck-0.4.0 \ hermit-abi-0.1.19 \ humantime-2.1.0 \ indexmap-1.9.1 \ indicatif-0.17.0 \ itoa-1.0.3 \ libc-0.2.131 \ log-0.4.17 \ memchr-2.5.0 \ mio-0.8.4 \ num_cpus-1.13.1 \ num_threads-0.1.6 \ number_prefix-0.4.0 \ once_cell-1.13.0 \ os_str_bytes-6.2.0 \ pin-project-lite-0.2.9 \ pin-utils-0.1.0 \ ppv-lite86-0.2.16 \ proc-macro-error-1.0.4 \ proc-macro-error-attr-1.0.4 \ proc-macro2-1.0.43 \ quote-1.0.21 \ rand-0.8.5 \ rand_chacha-0.3.1 \ rand_core-0.6.3 \ ryu-1.0.11 \ serde-1.0.143 \ serde_derive-1.0.143 \ serde_json-1.0.83 \ shell-escape-0.1.5 \ signal-hook-registry-1.4.0 \ slab-0.4.7 \ strsim-0.10.0 \ syn-1.0.99 \ termcolor-1.1.3 \ terminal_size-0.1.17 \ textwrap-0.15.0 \ time-0.3.13 \ time-macros-0.2.4 \ tokio-1.20.1 \ tokio-macros-1.8.0 \ tokio-process-stream-0.3.0 \ tokio-stream-0.1.9 \ tokio-util-0.7.3 \ unicode-ident-1.0.3 \ unicode-width-0.1.9 \ unix-named-pipe-0.2.0 \ version_check-0.9.4 \ wasi-0.11.0+wasi-snapshot-preview1 \ winapi-0.3.9 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-util-0.1.5 \ winapi-x86_64-pc-windows-gnu-0.4.0 \ windows-sys-0.36.1 \ windows_aarch64_msvc-0.36.1 \ windows_i686_gnu-0.36.1 \ windows_i686_msvc-0.36.1 \ windows_x86_64_gnu-0.36.1 \ windows_x86_64_msvc-0.36.1 post-install: .for _shell in bash fish zsh @${ECHO_MSG} "Generating ${STAGEDIR}${PREFIX}/${PLIST_FILES:M*${_shell}*}" @${CARGO_CARGO_RUN} run ${CARGO_BUILD_ARGS} -- print-completions ${_shell} \ >${STAGEDIR}${PREFIX}/${PLIST_FILES:M*${_shell}*} .endfor .include diff --git a/multimedia/av1an/Makefile b/multimedia/av1an/Makefile index cab4e78be97e..d66c06394bbd 100644 --- a/multimedia/av1an/Makefile +++ b/multimedia/av1an/Makefile @@ -1,233 +1,233 @@ PORTNAME= av1an DISTVERSION= 0.3.1 -PORTREVISION= 6 +PORTREVISION= 7 CATEGORIES= multimedia PATCH_SITES= https://github.com/${GH_ACCOUNT}/${GH_PROJECT}/commit/ PATCHFILES+= 2fc2ea51f2b6.patch:-p1 # https://github.com/master-of-zen/Av1an/pull/557 MAINTAINER= jbeich@FreeBSD.org COMMENT= Command-line encoding framework with per scene quality LICENSE= GPLv3 LICENSE_FILE= ${WRKSRC}/LICENSE.md BUILD_DEPENDS= llvm${LLVM_DEFAULT}>0:devel/llvm${LLVM_DEFAULT} \ ${BUILD_DEPENDS_${ARCH}} BUILD_DEPENDS_amd64= nasm:devel/nasm LIB_DEPENDS= libavformat.so:multimedia/ffmpeg \ libvapoursynth-script.so:multimedia/vapoursynth USES= cargo USE_GITHUB= yes GH_ACCOUNT= master-of-zen GH_PROJECT= Av1an PLIST_FILES= bin/${PORTNAME} CARGO_CRATES= addr2line-0.17.0 \ adler-1.0.2 \ affinity-0.1.2 \ aho-corasick-0.7.18 \ ansi_term-0.12.1 \ anyhow-1.0.52 \ arbitrary-0.4.7 \ arg_enum_proc_macro-0.3.2 \ arrayvec-0.7.2 \ atty-0.2.14 \ autocfg-1.0.1 \ av-bitstream-0.1.2 \ av-data-0.3.0 \ av-format-0.3.1 \ av-ivf-0.2.3 \ av-scenechange-0.7.2 \ backtrace-0.3.63 \ bindgen-0.54.0 \ bitflags-1.3.2 \ bitstream-io-1.2.0 \ bumpalo-3.9.1 \ byte-slice-cast-1.2.0 \ bytes-1.1.0 \ cc-1.0.72 \ cexpr-0.4.0 \ cfg-expr-0.7.4 \ cfg-if-0.1.10 \ cfg-if-1.0.0 \ chrono-0.4.19 \ clang-sys-0.29.3 \ clap-3.0.7 \ clap_derive-3.0.6 \ console-0.15.0 \ core-foundation-sys-0.8.3 \ crossbeam-channel-0.5.2 \ crossbeam-deque-0.8.1 \ crossbeam-epoch-0.9.6 \ crossbeam-utils-0.8.6 \ dashmap-5.0.0 \ either-1.6.1 \ encode_unicode-0.3.6 \ enum-iterator-0.7.0 \ enum-iterator-derive-0.7.0 \ err-derive-0.2.4 \ errno-0.2.8 \ errno-dragonfly-0.1.2 \ failure-0.1.8 \ failure_derive-0.1.8 \ ffmpeg-next-4.4.0 \ ffmpeg-sys-next-4.4.0 \ flexi_logger-0.22.2 \ form_urlencoded-1.0.1 \ getrandom-0.2.4 \ getset-0.1.2 \ gimli-0.26.1 \ git2-0.13.25 \ glob-0.3.0 \ hashbrown-0.11.2 \ heck-0.3.3 \ heck-0.4.0 \ hermit-abi-0.1.19 \ idna-0.2.3 \ indexmap-1.8.0 \ indicatif-0.17.0-rc.1 \ instant-0.1.12 \ interpolate_name-0.2.3 \ itertools-0.10.3 \ itoa-0.4.8 \ itoa-1.0.1 \ jobserver-0.1.24 \ js-sys-0.3.55 \ lazy_static-1.4.0 \ lazycell-1.3.0 \ libc-0.2.112 \ libfuzzer-sys-0.3.5 \ libgit2-sys-0.12.26+1.3.0 \ libloading-0.5.2 \ libz-sys-1.1.3 \ lock_api-0.4.5 \ log-0.4.14 \ matches-0.1.9 \ memchr-2.4.1 \ memoffset-0.6.5 \ minimal-lexical-0.2.1 \ miniz_oxide-0.4.4 \ mio-0.7.14 \ miow-0.3.7 \ nasm-rs-0.2.3 \ nom-5.1.2 \ nom-7.1.0 \ noop_proc_macro-0.3.0 \ ntapi-0.3.6 \ num-bigint-0.3.3 \ num-derive-0.3.3 \ num-integer-0.1.44 \ num-rational-0.3.2 \ num-traits-0.2.14 \ num_cpus-1.13.1 \ number_prefix-0.4.0 \ object-0.27.1 \ once_cell-1.9.0 \ os_str_bytes-6.0.0 \ parking_lot-0.11.2 \ parking_lot_core-0.8.5 \ paste-1.0.6 \ path_abs-0.5.1 \ peeking_take_while-0.1.2 \ percent-encoding-2.1.0 \ pin-project-lite-0.2.8 \ pkg-config-0.3.24 \ plotters-0.3.1 \ plotters-backend-0.3.2 \ plotters-svg-0.3.1 \ ppv-lite86-0.2.16 \ proc-macro-error-1.0.4 \ proc-macro-error-attr-1.0.4 \ proc-macro2-1.0.36 \ quote-1.0.14 \ rand-0.8.4 \ rand_chacha-0.3.1 \ rand_core-0.6.3 \ rand_hc-0.3.1 \ rav1e-0.5.1 \ rayon-1.5.1 \ rayon-core-1.9.1 \ redox_syscall-0.2.10 \ regex-1.5.4 \ regex-syntax-0.6.25 \ rust_hawktracer-0.7.0 \ rust_hawktracer_normal_macro-0.4.1 \ rust_hawktracer_proc_macro-0.4.1 \ rustc-demangle-0.1.21 \ rustc-hash-1.1.0 \ rustc_version-0.4.0 \ rustversion-1.0.6 \ ryu-1.0.9 \ scopeguard-1.1.0 \ semver-1.0.4 \ serde-1.0.133 \ serde_derive-1.0.133 \ serde_json-1.0.75 \ shlex-0.1.1 \ shlex-1.1.0 \ signal-hook-registry-1.4.0 \ simd_helpers-0.1.0 \ simdutf8-0.1.3 \ smallvec-1.8.0 \ smawk-0.3.1 \ splines-4.0.3 \ std_prelude-0.2.12 \ stfu8-0.2.4 \ strsim-0.10.0 \ strum-0.21.0 \ strum-0.23.0 \ strum_macros-0.21.1 \ strum_macros-0.23.1 \ syn-1.0.85 \ synstructure-0.12.6 \ sysinfo-0.22.5 \ system-deps-3.1.2 \ termcolor-1.1.2 \ terminal_size-0.1.17 \ textwrap-0.14.2 \ thiserror-1.0.30 \ thiserror-impl-1.0.30 \ time-0.1.44 \ time-0.3.5 \ time-macros-0.2.3 \ tinyvec-1.5.1 \ tinyvec_macros-0.1.0 \ tokio-1.15.0 \ toml-0.5.8 \ unicode-bidi-0.3.7 \ unicode-linebreak-0.1.2 \ unicode-normalization-0.1.19 \ unicode-segmentation-1.8.0 \ unicode-width-0.1.9 \ unicode-xid-0.2.2 \ url-2.2.2 \ v_frame-0.2.5 \ vapoursynth-0.3.0 \ vapoursynth-sys-0.3.0 \ vcpkg-0.2.15 \ vergen-3.2.0 \ vergen-6.0.0 \ version-compare-0.0.11 \ version_check-0.9.4 \ wasi-0.10.0+wasi-snapshot-preview1 \ wasm-bindgen-0.2.78 \ wasm-bindgen-backend-0.2.78 \ wasm-bindgen-macro-0.2.78 \ wasm-bindgen-macro-support-0.2.78 \ wasm-bindgen-shared-0.2.78 \ web-sys-0.3.55 \ which-4.2.2 \ winapi-0.3.9 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-util-0.1.5 \ winapi-x86_64-pc-windows-gnu-0.4.0 \ y4m-0.7.0 post-patch: @${REINPLACE_CMD} -e 's,"llvm-config,&${LLVM_DEFAULT},' \ ${WRKSRC}/cargo-crates/clang-sys-*/build/common.rs \ ${WRKSRC}/cargo-crates/clang-sys-*/src/support.rs .include diff --git a/multimedia/gstreamer1-plugins-rust/Makefile b/multimedia/gstreamer1-plugins-rust/Makefile index 1e3968995371..723e3ee795f7 100644 --- a/multimedia/gstreamer1-plugins-rust/Makefile +++ b/multimedia/gstreamer1-plugins-rust/Makefile @@ -1,438 +1,438 @@ PORTNAME= gstreamer1-plugins-rust DISTVERSION= 0.7.2 -PORTREVISION= 10 +PORTREVISION= 11 CATEGORIES= multimedia MAINTAINER= jbeich@FreeBSD.org COMMENT= Various GStreamer plugins written in Rust LICENSE= LGPL21+ MIT LICENSE_COMB= multi LICENSE_FILE_MIT= ${WRKSRC}/LICENSE-MIT LICENSE_FILE_LGPL21+ = ${WRKSRC}/LICENSE-LGPLv2 BUILD_DEPENDS= cargo-cbuild:devel/cargo-c USES= cargo gnome gstreamer meson pkgconfig ssl USE_GITLAB= yes USE_GNOME= glib20 GL_SITE= https://gitlab.freedesktop.org GL_ACCOUNT= gstreamer GL_PROJECT= gst-plugins-rs GL_COMMIT= d0466b3eee114207f851b37cae0015c0e718f021 MAKE_ENV= ${CARGO_ENV} CARGO_CRATES= adler-1.0.2 \ adler32-1.2.0 \ aho-corasick-0.7.18 \ ansi_term-0.11.0 \ ansi_term-0.12.1 \ anyhow-1.0.43 \ arbitrary-0.4.7 \ arg_enum_proc_macro-0.3.1 \ array-init-2.0.0 \ arrayvec-0.5.2 \ async-compression-0.3.8 \ async-trait-0.1.51 \ async-tungstenite-0.14.0 \ atk-0.14.0 \ atk-sys-0.14.0 \ atomic_refcell-0.1.7 \ atty-0.2.14 \ autocfg-1.0.1 \ base-x-0.2.8 \ base64-0.13.0 \ bincode-1.3.3 \ bindgen-0.58.1 \ bitflags-1.3.2 \ bitstream-io-1.2.0 \ bitvec-0.19.5 \ block-buffer-0.9.0 \ bumpalo-3.7.0 \ byte-slice-cast-1.0.0 \ bytemuck-1.7.2 \ byteorder-1.4.3 \ bytes-0.5.6 \ bytes-1.1.0 \ cairo-rs-0.14.3 \ cairo-sys-rs-0.14.0 \ cc-1.0.69 \ cdg-0.1.0 \ cdg_renderer-0.6.0 \ cexpr-0.4.0 \ cfg-expr-0.7.4 \ cfg-if-0.1.10 \ cfg-if-1.0.0 \ chrono-0.4.19 \ clang-sys-1.2.1 \ clap-2.33.3 \ claxon-0.4.3 \ color_quant-1.1.0 \ const_fn-0.4.8 \ cookie-0.14.4 \ cookie_store-0.12.0 \ core-foundation-0.9.1 \ core-foundation-sys-0.8.2 \ cpufeatures-0.2.1 \ crc-2.0.0 \ crc-catalog-1.1.1 \ crc32fast-1.2.1 \ crossbeam-channel-0.5.1 \ crossbeam-deque-0.8.1 \ crossbeam-epoch-0.9.5 \ crossbeam-utils-0.8.5 \ crypto-mac-0.11.1 \ csound-0.1.8 \ csound-sys-0.1.2 \ ctor-0.1.20 \ dasp_frame-0.11.0 \ dasp_sample-0.11.0 \ dav1d-0.6.0 \ dav1d-sys-0.3.4 \ deflate-0.9.1 \ diff-0.1.12 \ digest-0.9.0 \ dirs-next-2.0.0 \ dirs-sys-next-0.1.2 \ discard-1.0.4 \ ebur128-0.1.6 \ ed25519-1.2.0 \ either-1.6.1 \ encoding_rs-0.8.28 \ env_logger-0.8.4 \ field-offset-0.3.4 \ flate2-1.0.20 \ fnv-1.0.7 \ foreign-types-0.3.2 \ foreign-types-shared-0.1.1 \ form_urlencoded-1.0.1 \ fst-0.4.7 \ fuchsia-zircon-0.3.3 \ fuchsia-zircon-sys-0.3.3 \ funty-1.1.0 \ futures-0.3.16 \ futures-channel-0.3.16 \ futures-core-0.3.16 \ futures-executor-0.3.16 \ futures-io-0.3.16 \ futures-macro-0.3.16 \ futures-sink-0.3.16 \ futures-task-0.3.16 \ futures-util-0.3.16 \ gdk-0.14.0 \ gdk-pixbuf-0.14.0 \ gdk-pixbuf-sys-0.14.0 \ gdk-sys-0.14.0 \ generic-array-0.14.4 \ getrandom-0.2.3 \ gif-0.11.2 \ gio-0.14.3 \ gio-sys-0.14.0 \ glib-0.14.4 \ glib-macros-0.14.1 \ glib-sys-0.14.0 \ glob-0.3.0 \ gobject-sys-0.14.0 \ gstreamer-0.17.3 \ gstreamer-app-0.17.2 \ gstreamer-app-sys-0.17.0 \ gstreamer-audio-0.17.2 \ gstreamer-audio-sys-0.17.0 \ gstreamer-base-0.17.2 \ gstreamer-base-sys-0.17.0 \ gstreamer-check-0.17.0 \ gstreamer-check-sys-0.17.0 \ gstreamer-net-0.17.0 \ gstreamer-net-sys-0.17.0 \ gstreamer-rtp-0.17.0 \ gstreamer-rtp-sys-0.17.0 \ gstreamer-sys-0.17.3 \ gstreamer-video-0.17.2 \ gstreamer-video-sys-0.17.0 \ gtk-0.14.1 \ gtk-sys-0.14.0 \ gtk3-macros-0.14.0 \ h2-0.3.4 \ hashbrown-0.11.2 \ headers-0.3.4 \ headers-core-0.2.0 \ heck-0.3.3 \ hermit-abi-0.1.19 \ hex-0.4.3 \ hmac-0.11.0 \ http-0.2.4 \ http-body-0.4.3 \ httparse-1.5.1 \ httpdate-1.0.1 \ humantime-2.1.0 \ hyper-0.14.12 \ hyper-tls-0.5.0 \ hyphenation-0.8.4 \ hyphenation_commons-0.8.4 \ idna-0.2.3 \ image-0.23.14 \ indexmap-1.7.0 \ input_buffer-0.4.0 \ instant-0.1.10 \ interpolate_name-0.2.3 \ iovec-0.1.4 \ ipnet-2.3.1 \ itertools-0.10.1 \ itoa-0.4.8 \ js-sys-0.3.53 \ kernel32-sys-0.2.2 \ lazy_static-1.4.0 \ lazycell-1.3.0 \ lewton-0.10.2 \ lexical-core-0.7.6 \ libc-0.2.101 \ libfuzzer-sys-0.3.5 \ libloading-0.7.0 \ libsodium-sys-0.2.7 \ libwebp-sys2-0.1.2 \ lock_api-0.4.5 \ log-0.4.14 \ matches-0.1.9 \ md-5-0.9.1 \ memchr-2.4.1 \ memoffset-0.6.4 \ mime-0.3.16 \ minimal-lexical-0.1.2 \ miniz_oxide-0.4.4 \ mio-0.6.23 \ mio-0.7.13 \ miow-0.2.2 \ miow-0.3.7 \ muldiv-1.0.0 \ native-tls-0.2.8 \ net2-0.2.37 \ nnnoiseless-0.3.2 \ nom-5.1.2 \ nom-6.1.2 \ nom-7.0.0 \ noop_proc_macro-0.3.0 \ ntapi-0.3.6 \ num-0.4.0 \ num-bigint-0.4.1 \ num-complex-0.3.1 \ num-complex-0.4.0 \ num-derive-0.3.3 \ num-integer-0.1.44 \ num-iter-0.1.42 \ num-rational-0.3.2 \ num-rational-0.4.0 \ num-traits-0.2.14 \ num_cpus-1.13.0 \ once_cell-1.8.0 \ opaque-debug-0.3.0 \ openssl-0.10.36 \ openssl-probe-0.1.4 \ openssl-sys-0.9.66 \ output_vt100-0.1.2 \ pango-0.14.3 \ pango-sys-0.14.0 \ pangocairo-0.14.0 \ pangocairo-sys-0.14.0 \ parking_lot-0.11.2 \ parking_lot_core-0.8.5 \ paste-1.0.5 \ peeking_take_while-0.1.2 \ percent-encoding-2.1.0 \ pest-2.1.3 \ pin-project-1.0.8 \ pin-project-internal-1.0.8 \ pin-project-lite-0.1.12 \ pin-project-lite-0.2.7 \ pin-utils-0.1.0 \ pkg-config-0.3.19 \ png-0.17.1 \ pocket-resources-0.3.2 \ ppv-lite86-0.2.10 \ pretty-hex-0.2.1 \ pretty_assertions-0.7.2 \ primal-check-0.3.1 \ proc-macro-crate-1.0.0 \ proc-macro-error-1.0.4 \ proc-macro-error-attr-1.0.4 \ proc-macro-hack-0.5.19 \ proc-macro-nested-0.1.7 \ proc-macro2-1.0.28 \ publicsuffix-1.5.6 \ quote-1.0.9 \ radium-0.5.3 \ rand-0.8.4 \ rand_chacha-0.3.1 \ rand_core-0.6.3 \ rand_hc-0.3.1 \ rav1e-0.4.1 \ rayon-1.5.1 \ rayon-core-1.9.1 \ redox_syscall-0.2.10 \ redox_users-0.4.0 \ regex-1.5.4 \ regex-syntax-0.6.25 \ remove_dir_all-0.5.3 \ reqwest-0.11.4 \ rusoto_core-0.47.0 \ rusoto_credential-0.47.0 \ rusoto_s3-0.47.0 \ rusoto_signature-0.47.0 \ rust_hawktracer-0.7.0 \ rust_hawktracer_normal_macro-0.4.1 \ rust_hawktracer_proc_macro-0.4.1 \ rustc-hash-1.1.0 \ rustc_version-0.2.3 \ rustc_version-0.3.3 \ rustc_version-0.4.0 \ rustfft-5.1.1 \ ryu-1.0.5 \ same-file-1.0.6 \ schannel-0.1.19 \ scopeguard-1.1.0 \ security-framework-2.4.1 \ security-framework-sys-2.4.1 \ semver-0.9.0 \ semver-0.11.0 \ semver-1.0.4 \ semver-parser-0.7.0 \ semver-parser-0.10.2 \ serde-1.0.130 \ serde_bytes-0.11.5 \ serde_derive-1.0.130 \ serde_json-1.0.67 \ serde_urlencoded-0.7.0 \ sha-1-0.9.8 \ sha1-0.6.0 \ sha2-0.9.6 \ shlex-1.1.0 \ signal-hook-registry-1.4.0 \ signature-1.3.1 \ simd_helpers-0.1.0 \ slab-0.4.4 \ smallvec-1.6.1 \ smawk-0.3.1 \ socket2-0.4.1 \ sodiumoxide-0.2.7 \ standback-0.2.17 \ static_assertions-1.1.0 \ stdweb-0.4.20 \ stdweb-derive-0.5.3 \ stdweb-internal-macros-0.2.9 \ stdweb-internal-runtime-0.1.5 \ strength_reduce-0.2.3 \ strsim-0.8.0 \ strum-0.21.0 \ strum_macros-0.21.1 \ subtle-2.4.1 \ syn-1.0.75 \ system-deps-3.1.2 \ tap-1.0.1 \ tempfile-3.2.0 \ termcolor-1.1.2 \ textwrap-0.11.0 \ textwrap-0.14.2 \ thiserror-1.0.28 \ thiserror-impl-1.0.28 \ time-0.1.43 \ time-0.2.27 \ time-macros-0.1.1 \ time-macros-impl-0.1.2 \ tinyvec-1.3.1 \ tinyvec_macros-0.1.0 \ tokio-1.10.1 \ tokio-macros-1.3.0 \ tokio-native-tls-0.3.0 \ tokio-util-0.6.7 \ toml-0.5.8 \ tower-service-0.3.1 \ tracing-0.1.26 \ tracing-core-0.1.19 \ transpose-0.2.1 \ try-lock-0.2.3 \ tungstenite-0.13.0 \ typenum-1.13.0 \ ucd-trie-0.1.3 \ unicode-bidi-0.3.6 \ unicode-linebreak-0.1.2 \ unicode-normalization-0.1.19 \ unicode-segmentation-1.8.0 \ unicode-width-0.1.8 \ unicode-xid-0.2.2 \ url-2.2.2 \ utf-8-0.7.6 \ uuid-0.8.2 \ v_frame-0.2.2 \ va_list-0.1.3 \ vcpkg-0.2.15 \ vec_map-0.8.2 \ vergen-3.2.0 \ version-compare-0.0.11 \ version_check-0.9.3 \ walkdir-2.3.2 \ want-0.3.0 \ wasi-0.10.2+wasi-snapshot-preview1 \ wasm-bindgen-0.2.76 \ wasm-bindgen-backend-0.2.76 \ wasm-bindgen-futures-0.4.26 \ wasm-bindgen-macro-0.2.76 \ wasm-bindgen-macro-support-0.2.76 \ wasm-bindgen-shared-0.2.76 \ web-sys-0.3.53 \ weezl-0.1.5 \ which-3.1.1 \ winapi-0.2.8 \ winapi-0.3.9 \ winapi-build-0.1.1 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-util-0.1.5 \ winapi-x86_64-pc-windows-gnu-0.4.0 \ winreg-0.7.0 \ ws2_32-sys-0.2.1 \ wyz-0.2.0 \ xml-rs-0.8.4 \ zeroize-1.4.1 \ tokio,tokio-macros@git+https://github.com/fengalin/tokio\#2fd1551867c145cabe4548da2e37adc3bdf457a4 \ flavors@git+https://github.com/rust-av/flavors\#ceb65b8ce94e183c4cf4011da0a40e3a4892c2c0 CARGO_BUILD= no CARGO_INSTALL= no CARGO_TEST= no OPTIONS_DEFINE= CSOUND DAV1D PANGO SODIUM OPTIONS_DEFAULT=CSOUND DAV1D PANGO SODIUM OPTIONS_EXCLUDE_aarch64= CSOUND # https://github.com/neithanmo/csound-rs/commit/8962b89d7bda OPTIONS_EXCLUDE_armv7= CSOUND # https://github.com/neithanmo/csound-rs/commit/8962b89d7bda OPTIONS_EXCLUDE_powerpc64le= CSOUND OPTIONS_EXCLUDE_powerpc64= CSOUND OPTIONS_EXCLUDE_powerpc= CSOUND DAV1D OPTIONS_SUB= yes CSOUND_DESC= Audio filtering via Csound CSOUND_LIB_DEPENDS= libcsound64.so:audio/csound CSOUND_CONFIGURE_ENV= CSOUND_LIB_DIR="${LOCALBASE}/lib" CSOUND_MESON_ENABLED= csound DAV1D_DESC= AV1 video decoding via libdav1d DAV1D_BUILD_DEPENDS= llvm${LLVM_DEFAULT}>0:devel/llvm${LLVM_DEFAULT} DAV1D_LIB_DEPENDS= libdav1d.so:multimedia/dav1d DAV1D_MESON_ENABLED= dav1d PANGO_USE= GNOME=cairo,pango PANGO_MESON_ENABLED= closedcaption SODIUM_DESC= File encryption and decryption via libsodium SODIUM_LIB_DEPENDS= libsodium.so:security/libsodium SODIUM_MESON_ON= -Dsodium=system SODIUM_MESON_OFF= -Dsodium=disabled post-patch: @${REINPLACE_CMD} -e 's,"llvm-config,&${LLVM_DEFAULT},' \ ${WRKSRC}/cargo-crates/clang-sys-*/build/common.rs \ ${WRKSRC}/cargo-crates/clang-sys-*/src/support.rs # Make each cargo subcommand very verbose @${REINPLACE_CMD} -e "/'cargo'/s/, '--/&verbose'&verbose'&/" \ ${WRKSRC}/cargo_wrapper.py post-install: @${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/gstreamer-1.0/*.so .include diff --git a/multimedia/helvum/Makefile b/multimedia/helvum/Makefile index 3cf4c2600d62..51daf66a90db 100644 --- a/multimedia/helvum/Makefile +++ b/multimedia/helvum/Makefile @@ -1,166 +1,166 @@ PORTNAME= helvum DISTVERSION= 0.3.4 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= multimedia MAINTAINER= jbeich@FreeBSD.org COMMENT= GTK patchbay for PipeWire LICENSE= GPLv3 LICENSE_FILE= ${WRKSRC}/LICENSE BUILD_DEPENDS= llvm${LLVM_DEFAULT}>0:devel/llvm${LLVM_DEFAULT} LIB_DEPENDS= libgraphene-1.0.so:graphics/graphene \ libpipewire-0.3.so:multimedia/pipewire USES= cargo desktop-file-utils gnome meson pkgconfig USE_GITLAB= yes USE_GNOME= cairo gtk40 GL_SITE= https://gitlab.freedesktop.org GL_ACCOUNT= ryuukyu GL_COMMIT= 094681637ec8f9f2acdb993230e10da88aa3fedb MAKE_ENV= ${CARGO_ENV} PLIST_FILES= bin/${PORTNAME} CARGO_CRATES= aho-corasick-0.7.15 \ ansi_term-0.12.1 \ anyhow-1.0.53 \ arrayvec-0.5.2 \ atty-0.2.14 \ autocfg-1.0.1 \ bindgen-0.59.2 \ bitflags-1.3.2 \ bitvec-0.19.6 \ cairo-rs-0.15.1 \ cairo-sys-rs-0.15.1 \ cc-1.0.72 \ cexpr-0.6.0 \ cfg-expr-0.8.1 \ cfg-expr-0.9.1 \ cfg-if-0.1.10 \ cfg-if-1.0.0 \ clang-sys-1.3.0 \ clap-2.34.0 \ cookie-factory-0.3.2 \ either-1.6.1 \ env_logger-0.9.0 \ errno-0.2.8 \ errno-dragonfly-0.1.2 \ field-offset-0.3.4 \ funty-1.1.0 \ futures-channel-0.3.19 \ futures-core-0.3.19 \ futures-executor-0.3.19 \ futures-io-0.3.19 \ futures-task-0.3.19 \ futures-util-0.3.19 \ gdk-pixbuf-0.15.4 \ gdk-pixbuf-sys-0.15.1 \ gdk4-0.4.6 \ gdk4-sys-0.4.2 \ gio-0.15.4 \ gio-sys-0.15.4 \ glib-0.15.4 \ glib-macros-0.15.3 \ glib-sys-0.15.4 \ glob-0.3.0 \ gobject-sys-0.15.1 \ graphene-rs-0.15.1 \ graphene-sys-0.15.1 \ gsk4-0.4.6 \ gsk4-sys-0.4.2 \ gtk4-0.4.6 \ gtk4-macros-0.4.3 \ gtk4-sys-0.4.5 \ heck-0.3.3 \ heck-0.4.0 \ hermit-abi-0.1.19 \ humantime-2.1.0 \ itertools-0.10.3 \ lazy_static-1.4.0 \ lazycell-1.3.0 \ lexical-core-0.7.6 \ libc-0.2.116 \ libloading-0.7.3 \ libspa-0.4.1 \ libspa-sys-0.4.1 \ log-0.4.14 \ memchr-2.3.4 \ memoffset-0.6.5 \ minimal-lexical-0.2.1 \ nix-0.14.1 \ nom-6.2.1 \ nom-7.1.0 \ once_cell-1.9.0 \ pango-0.15.2 \ pango-sys-0.15.1 \ peeking_take_while-0.1.2 \ pest-2.1.3 \ pin-project-lite-0.2.8 \ pin-utils-0.1.0 \ pipewire-0.4.1 \ pipewire-sys-0.4.1 \ pkg-config-0.3.24 \ proc-macro-crate-1.1.0 \ proc-macro-error-1.0.4 \ proc-macro-error-attr-1.0.4 \ proc-macro2-1.0.36 \ quote-1.0.15 \ radium-0.5.3 \ regex-1.4.6 \ regex-syntax-0.6.25 \ rustc-hash-1.1.0 \ rustc_version-0.3.3 \ ryu-1.0.9 \ semver-0.11.0 \ semver-parser-0.10.2 \ serde-1.0.136 \ shlex-1.1.0 \ signal-0.7.0 \ slab-0.4.5 \ smallvec-1.8.0 \ static_assertions-1.1.0 \ strsim-0.8.0 \ strum-0.21.0 \ strum_macros-0.21.1 \ syn-1.0.86 \ system-deps-3.2.0 \ system-deps-6.0.1 \ tap-1.0.1 \ termcolor-1.1.2 \ textwrap-0.11.0 \ thiserror-1.0.30 \ thiserror-impl-1.0.30 \ toml-0.5.8 \ ucd-trie-0.1.3 \ unicode-segmentation-1.8.0 \ unicode-width-0.1.9 \ unicode-xid-0.2.2 \ vec_map-0.8.2 \ version-compare-0.0.11 \ version-compare-0.1.0 \ version_check-0.9.4 \ void-1.0.2 \ which-4.2.4 \ winapi-0.3.9 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-util-0.1.5 \ winapi-x86_64-pc-windows-gnu-0.4.0 \ wyz-0.2.0 post-patch: @${REINPLACE_CMD} -e 's,"llvm-config,&${LLVM_DEFAULT},' \ ${WRKSRC}/cargo-crates/clang-sys-*/build/common.rs \ ${WRKSRC}/cargo-crates/clang-sys-*/src/support.rs # Make each cargo subcommand very verbose @${REINPLACE_CMD} -e "/cargo_options =/s/ '--/&verbose', &verbose', &/" \ ${WRKSRC}/src/meson.build .include .if ${OPSYS} != FreeBSD || ${OSVERSION} < 1300134 LIB_DEPENDS+= libepoll-shim.so:devel/libepoll-shim LDFLAGS+= -lepoll-shim .endif .include diff --git a/multimedia/kooha/Makefile b/multimedia/kooha/Makefile index b2fbfdb9d5fe..42bad8daafd2 100644 --- a/multimedia/kooha/Makefile +++ b/multimedia/kooha/Makefile @@ -1,223 +1,223 @@ PORTNAME= kooha DISTVERSIONPREFIX= v DISTVERSION= 2.0.1 -PORTREVISION= 9 +PORTREVISION= 10 CATEGORIES= multimedia wayland MAINTAINER= jbeich@FreeBSD.org COMMENT= Elegantly record your screen LICENSE= GPLv3+ LICENSE_FILE= ${WRKSRC}/COPYING LIB_DEPENDS= libpulse.so:audio/pulseaudio \ libgraphene-1.0.so:graphics/graphene USES= cargo gettext gnome gstreamer meson pkgconfig python:build shebangfix USE_GITHUB= yes USE_GNOME= gtk40 libadwaita USE_GSTREAMER= good opus pulse vpx GH_ACCOUNT= SeaDve GH_PROJECT= Kooha SHEBANG_FILES= build-aux/meson_post_install.py MAKE_ENV= ${CARGO_ENV} GLIB_SCHEMAS= io.github.seadve.Kooha.gschema.xml CARGO_CRATES= aho-corasick-0.7.18 \ anyhow-1.0.44 \ approx-0.5.0 \ ashpd-0.2.0-alpha-4 \ async-broadcast-0.3.4 \ async-channel-1.6.1 \ async-executor-1.4.1 \ async-io-1.6.0 \ async-lock-2.4.0 \ async-recursion-0.3.2 \ async-task-4.0.3 \ atomic_refcell-0.1.7 \ atty-0.2.14 \ autocfg-1.0.1 \ bitflags-1.2.1 \ block-0.1.6 \ byteorder-1.4.3 \ cache-padded-1.1.1 \ cairo-rs-0.14.7 \ cairo-sys-rs-0.14.0 \ cc-1.0.70 \ cfg-expr-0.8.1 \ cfg-expr-0.9.0 \ cfg-if-1.0.0 \ chrono-0.4.19 \ color_quant-1.1.0 \ concurrent-queue-1.2.2 \ derivative-2.2.0 \ dlib-0.5.0 \ downcast-rs-1.2.0 \ easy-parallel-3.1.0 \ either-1.6.1 \ enumflags2-0.6.4 \ enumflags2_derive-0.6.4 \ env_logger-0.7.1 \ event-listener-2.5.1 \ fastrand-1.5.0 \ field-offset-0.3.4 \ futures-0.3.17 \ futures-channel-0.3.17 \ futures-core-0.3.17 \ futures-executor-0.3.17 \ futures-io-0.3.17 \ futures-lite-1.12.0 \ futures-macro-0.3.17 \ futures-sink-0.3.17 \ futures-task-0.3.17 \ futures-util-0.3.17 \ gdk-pixbuf-0.14.0 \ gdk-pixbuf-sys-0.14.0 \ gdk4-0.3.0 \ gdk4-sys-0.3.0 \ gdk4-wayland-0.3.0 \ gdk4-wayland-sys-0.3.0 \ gdk4-x11-0.3.0 \ gdk4-x11-sys-0.3.0 \ getrandom-0.2.3 \ gettext-rs-0.7.0 \ gettext-sys-0.21.2 \ gif-0.11.2 \ gio-0.14.6 \ gio-sys-0.14.0 \ glib-0.14.5 \ glib-macros-0.14.1 \ glib-sys-0.14.0 \ gobject-sys-0.14.0 \ graphene-rs-0.14.0 \ graphene-sys-0.14.0 \ gsk4-0.3.0 \ gsk4-sys-0.3.0 \ gst-plugin-gif-0.7.2 \ gst-plugin-version-helper-0.7.1 \ gstreamer-0.17.4 \ gstreamer-base-0.17.2 \ gstreamer-base-sys-0.17.0 \ gstreamer-sys-0.17.3 \ gstreamer-video-0.17.2 \ gstreamer-video-sys-0.17.0 \ gtk4-0.3.0 \ gtk4-macros-0.3.0 \ gtk4-sys-0.3.0 \ heck-0.3.3 \ hermit-abi-0.1.19 \ hex-0.4.3 \ humantime-1.3.0 \ instant-0.1.10 \ itertools-0.10.1 \ lazy_static-1.4.0 \ libadwaita-0.1.0-alpha-5 \ libadwaita-sys-0.1.0-alpha-5 \ libc-0.2.102 \ libloading-0.7.0 \ libpulse-binding-2.25.0 \ libpulse-sys-1.19.2 \ locale_config-0.3.0 \ log-0.4.14 \ malloc_buf-0.0.6 \ memchr-2.4.1 \ memoffset-0.6.4 \ muldiv-1.0.0 \ nix-0.20.1 \ nix-0.21.1 \ num-derive-0.3.3 \ num-integer-0.1.44 \ num-rational-0.4.0 \ num-traits-0.2.14 \ objc-0.2.7 \ objc-foundation-0.1.1 \ objc_id-0.1.1 \ once_cell-1.8.0 \ pango-0.14.3 \ pango-sys-0.14.0 \ parking-2.0.0 \ paste-1.0.5 \ pest-2.1.3 \ pin-project-lite-0.2.7 \ pin-utils-0.1.0 \ pkg-config-0.3.19 \ polling-2.1.0 \ ppv-lite86-0.2.10 \ pretty-hex-0.2.1 \ pretty_env_logger-0.4.0 \ proc-macro-crate-1.1.0 \ proc-macro-error-1.0.4 \ proc-macro-error-attr-1.0.4 \ proc-macro-hack-0.5.19 \ proc-macro-nested-0.1.7 \ proc-macro2-1.0.29 \ pulsectl-rs-0.3.2 \ quick-error-1.2.3 \ quote-1.0.9 \ rand-0.8.4 \ rand_chacha-0.3.1 \ rand_core-0.6.3 \ rand_hc-0.3.1 \ regex-1.5.4 \ regex-syntax-0.6.25 \ rustc_version-0.3.3 \ scoped-tls-1.0.0 \ semver-0.11.0 \ semver-parser-0.10.2 \ serde-1.0.130 \ serde_derive-1.0.130 \ serde_repr-0.1.7 \ sha1-0.6.0 \ slab-0.4.4 \ slotmap-1.0.6 \ smallvec-1.6.1 \ socket2-0.4.2 \ static_assertions-1.1.0 \ strum-0.21.0 \ strum_macros-0.21.1 \ syn-1.0.76 \ system-deps-3.2.0 \ system-deps-4.0.0 \ temp-dir-0.1.11 \ termcolor-1.1.2 \ thiserror-1.0.29 \ thiserror-impl-1.0.29 \ time-0.1.43 \ toml-0.5.8 \ tracing-0.1.28 \ tracing-attributes-0.1.16 \ tracing-core-0.1.20 \ ucd-trie-0.1.3 \ unicode-segmentation-1.8.0 \ unicode-xid-0.2.2 \ version-compare-0.0.11 \ version_check-0.9.3 \ waker-fn-1.1.0 \ wasi-0.10.2+wasi-snapshot-preview1 \ wayland-client-0.28.6 \ wayland-commons-0.28.6 \ wayland-scanner-0.28.6 \ wayland-sys-0.28.6 \ weezl-0.1.5 \ wepoll-ffi-0.1.2 \ winapi-0.3.9 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-util-0.1.5 \ winapi-x86_64-pc-windows-gnu-0.4.0 \ x11-2.19.0 \ xml-rs-0.8.4 \ zbus-2.0.0-beta.6 \ zbus_macros-2.0.0-beta.6 \ zbus_names-1.0.0 \ zvariant-2.8.0 \ zvariant_derive-2.8.0 CARGO_BUILD= no CARGO_INSTALL= no CARGO_TEST= no post-patch: # Make each cargo subcommand very verbose @${REINPLACE_CMD} -e '/cargo/s/ --/&verbose&verbose&/' \ ${WRKSRC}/build-aux/cargo.sh .include diff --git a/multimedia/librav1e/Makefile b/multimedia/librav1e/Makefile index 0be608af1a39..7411e1ec8f8e 100644 --- a/multimedia/librav1e/Makefile +++ b/multimedia/librav1e/Makefile @@ -1,29 +1,29 @@ -PORTREVISION= 6 +PORTREVISION= 7 PKGNAMEPREFIX= lib MASTERDIR= ${.CURDIR}/../rav1e PLIST= ${.CURDIR}/pkg-plist BUILD_DEPENDS= cargo-cbuild:devel/cargo-c PLIST_FILES= # empty PLIST_SUB= VERSION=${DISTVERSION:C/-.*//} do-build: @${CARGO_CARGO_RUN} cbuild \ --verbose \ --verbose \ ${CARGO_BUILD_ARGS} do-install: @${CARGO_CARGO_RUN} cinstall \ --verbose \ --verbose \ --destdir "${STAGEDIR}" \ --prefix "${PREFIX}" \ ${CARGO_INSTALL_ARGS} post-install: @${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/*.so .include "${MASTERDIR}/Makefile" diff --git a/multimedia/librespot/Makefile b/multimedia/librespot/Makefile index ae9e7b98122b..1ce3bc3dae1e 100644 --- a/multimedia/librespot/Makefile +++ b/multimedia/librespot/Makefile @@ -1,44 +1,45 @@ PORTNAME= librespot DISTVERSIONPREFIX= v DISTVERSION= 0.4.2 +PORTREVISION= 1 CATEGORIES= multimedia MAINTAINER= driesm@FreeBSD.org COMMENT= Open Source Spotify client library LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= cargo USE_GITHUB= yes GH_ACCOUNT= librespot-org CARGO_FEATURES= --no-default-features PLIST_FILES= bin/librespot OPTIONS_DEFAULT= PORTAUDIO OPTIONS_MULTI= BACKEND OPTIONS_MULTI_BACKEND= ALSA GSTREAMER JACK PORTAUDIO PULSEAUDIO SDL ALSA_DESC= Rodio audio backend using ALSA ALSA_LIB_DEPENDS= libasound.so:audio/alsa-lib ALSA_VARS= CARGO_FEATURES+=rodio-backend GSTREAMER_USES= gnome gstreamer GSTREAMER_USE= GNOME=glib20 GSTREAMER_VARS= CARGO_FEATURES+=gstreamer-backend JACK_LIB_DEPENDS= libjack.so:audio/jack JACK_VARS= CARGO_FEATURES+=jackaudio-backend PORTAUDIO_LIB_DEPENDS= libportaudio.so:audio/portaudio PORTAUDIO_VARS= CARGO_FEATURES+=portaudio-backend PULSEAUDIO_LIB_DEPENDS= libpulse-simple.so:audio/pulseaudio PULSEAUDIO_VARS= CARGO_FEATURES+=pulseaudio-backend SDL_USES= sdl SDL_USE= SDL=sdl2 SDL_VARS= CARGO_FEATURES+=sdl-backend post-install: @${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/librespot .include diff --git a/multimedia/neolink/Makefile b/multimedia/neolink/Makefile index cfe7c5683ed7..cb64bf935c73 100644 --- a/multimedia/neolink/Makefile +++ b/multimedia/neolink/Makefile @@ -1,201 +1,201 @@ PORTNAME= neolink PORTVERSION= 0.3.0 DISTVERSIONPREFIX= v DISTVERSIONSUFFIX= g20210903 -PORTREVISION= 8 +PORTREVISION= 9 CATEGORIES= multimedia MAINTAINER= kevans@FreeBSD.org COMMENT= RTSP bridge to Reolink IP cameras LICENSE= AGPLv3 LICENSE_FILE= ${WRKSRC}/LICENSE LIB_DEPENDS= libgstrtspserver-1.0.so:multimedia/gstreamer1-rtsp-server USES= cargo gnome gstreamer USE_GNOME= glib20 USE_RC_SUBR= neolink USERS= ${PORTNAME} GROUPS= ${PORTNAME} USE_GITHUB= yes GH_ACCOUNT= thirtythreeforty GH_TAGNAME= cf54129 CARGO_CRATES= aes-0.6.0 \ aes-soft-0.6.4 \ aesni-0.10.0 \ aho-corasick-0.7.15 \ ansi_term-0.11.0 \ anyhow-1.0.42 \ arrayvec-0.5.2 \ assert_matches-1.5.0 \ atty-0.2.14 \ autocfg-1.0.1 \ base-x-0.2.8 \ bitflags-1.2.1 \ bitvec-0.19.5 \ bumpalo-3.7.0 \ byte-slice-cast-1.0.0 \ cfb-mode-0.6.0 \ cfg-expr-0.8.0 \ cfg-if-0.1.10 \ cfg-if-1.0.0 \ cipher-0.2.5 \ clap-2.33.3 \ const_fn-0.4.8 \ cookie-factory-0.3.2 \ crossbeam-0.7.3 \ crossbeam-channel-0.4.4 \ crossbeam-deque-0.7.4 \ crossbeam-epoch-0.8.2 \ crossbeam-queue-0.2.3 \ crossbeam-utils-0.7.2 \ discard-1.0.4 \ either-1.6.1 \ env_logger-0.9.0 \ err-derive-0.2.4 \ form_urlencoded-1.0.1 \ funty-1.1.0 \ futures-channel-0.3.16 \ futures-core-0.3.16 \ futures-executor-0.3.16 \ futures-io-0.3.16 \ futures-sink-0.3.16 \ futures-task-0.3.16 \ futures-util-0.3.16 \ generic-array-0.14.4 \ gio-0.14.0 \ gio-sys-0.14.0 \ glib-0.14.2 \ glib-macros-0.14.1 \ glib-sys-0.14.0 \ gobject-sys-0.14.0 \ gstreamer-0.17.1 \ gstreamer-app-0.17.0 \ gstreamer-app-sys-0.17.0 \ gstreamer-base-0.17.0 \ gstreamer-base-sys-0.17.0 \ gstreamer-net-0.17.0 \ gstreamer-net-sys-0.17.0 \ gstreamer-rtsp-0.17.0 \ gstreamer-rtsp-server-0.17.0 \ gstreamer-rtsp-server-sys-0.17.0 \ gstreamer-rtsp-sys-0.17.0 \ gstreamer-sdp-0.17.0 \ gstreamer-sdp-sys-0.17.0 \ gstreamer-sys-0.17.0 \ heck-0.3.3 \ hermit-abi-0.1.19 \ humantime-2.1.0 \ idna-0.2.3 \ if_chain-1.0.1 \ indoc-0.3.6 \ indoc-impl-0.3.6 \ itertools-0.9.0 \ itertools-0.10.1 \ itoa-0.4.7 \ lazy_static-1.4.0 \ lexical-core-0.7.6 \ libc-0.2.98 \ log-0.4.14 \ matches-0.1.8 \ maybe-uninit-2.0.0 \ md5-0.7.0 \ memchr-2.3.4 \ memoffset-0.5.6 \ muldiv-1.0.0 \ nom-6.2.1 \ num-integer-0.1.44 \ num-rational-0.4.0 \ num-traits-0.2.14 \ once_cell-1.8.0 \ opaque-debug-0.3.0 \ paste-1.0.5 \ percent-encoding-2.1.0 \ pin-project-lite-0.2.7 \ pin-utils-0.1.0 \ pkg-config-0.3.19 \ pretty-hex-0.2.1 \ proc-macro-crate-1.0.0 \ proc-macro-error-1.0.4 \ proc-macro-error-attr-1.0.4 \ proc-macro-hack-0.5.19 \ proc-macro2-1.0.28 \ quote-1.0.9 \ radium-0.5.3 \ regex-1.4.6 \ regex-syntax-0.6.25 \ rustc_version-0.2.3 \ rustversion-1.0.5 \ ryu-1.0.5 \ scopeguard-1.1.0 \ semver-0.9.0 \ semver-parser-0.7.0 \ serde-1.0.127 \ serde_derive-1.0.127 \ serde_json-1.0.66 \ sha1-0.6.0 \ slab-0.4.3 \ smallvec-1.6.1 \ socket2-0.3.19 \ standback-0.2.17 \ static_assertions-1.1.0 \ stdweb-0.4.20 \ stdweb-derive-0.5.3 \ stdweb-internal-macros-0.2.9 \ stdweb-internal-runtime-0.1.5 \ strsim-0.8.0 \ structopt-0.3.22 \ structopt-derive-0.4.15 \ strum-0.21.0 \ strum_macros-0.21.1 \ syn-1.0.74 \ synstructure-0.12.5 \ system-deps-3.2.0 \ tap-1.0.1 \ termcolor-1.1.2 \ textwrap-0.11.0 \ thiserror-1.0.26 \ thiserror-impl-1.0.26 \ time-0.2.27 \ time-macros-0.1.1 \ time-macros-impl-0.1.2 \ tinyvec-1.3.1 \ tinyvec_macros-0.1.0 \ toml-0.5.8 \ typenum-1.13.0 \ unicode-bidi-0.3.5 \ unicode-normalization-0.1.19 \ unicode-segmentation-1.8.0 \ unicode-width-0.1.8 \ unicode-xid-0.2.2 \ unindent-0.1.7 \ url-2.2.2 \ validator-0.10.1 \ validator_derive-0.10.1 \ vec_map-0.8.2 \ version-compare-0.0.11 \ version_check-0.9.3 \ wasm-bindgen-0.2.74 \ wasm-bindgen-backend-0.2.74 \ wasm-bindgen-macro-0.2.74 \ wasm-bindgen-macro-support-0.2.74 \ wasm-bindgen-shared-0.2.74 \ winapi-0.3.9 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-util-0.1.5 \ winapi-x86_64-pc-windows-gnu-0.4.0 \ wyz-0.2.0 \ xml-rs-0.8.4 \ yaserde-0.3.16 \ yaserde_derive-0.3.17 post-install: ${MKDIR} ${STAGEDIR}${ETCDIR} ${INSTALL_DATA} ${WRKSRC}/sample_config.toml \ ${STAGEDIR}${ETCDIR}/config.toml.sample .include diff --git a/multimedia/rav1e/Makefile b/multimedia/rav1e/Makefile index d1fe23edc918..0e8c2588449a 100644 --- a/multimedia/rav1e/Makefile +++ b/multimedia/rav1e/Makefile @@ -1,202 +1,202 @@ PORTNAME= rav1e DISTVERSIONPREFIX= v DISTVERSION= 0.5.1 -PORTREVISION?= 6 +PORTREVISION?= 7 CATEGORIES= multimedia MAINTAINER= jbeich@FreeBSD.org COMMENT= Fast and safe AV1 encoder LICENSE= BSD2CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE BUILD_DEPENDS+= ${BUILD_DEPENDS_${ARCH}} BUILD_DEPENDS_amd64= nasm:devel/nasm USES= cargo USE_GITHUB= yes GH_ACCOUNT= xiph PLIST_FILES?= bin/${PORTNAME} CARGO_CRATES= addr2line-0.17.0 \ adler-1.0.2 \ adler32-1.2.0 \ aho-corasick-0.7.18 \ ansi_term-0.12.1 \ anyhow-1.0.51 \ aom-sys-0.3.0 \ arbitrary-0.4.7 \ arg_enum_proc_macro-0.3.2 \ arrayvec-0.7.2 \ assert_cmd-2.0.2 \ atty-0.2.14 \ autocfg-1.0.1 \ av-metrics-0.7.2 \ backtrace-0.3.63 \ bindgen-0.58.1 \ bitflags-1.3.2 \ bitstream-io-1.2.0 \ bstr-0.2.17 \ bumpalo-3.8.0 \ bytemuck-1.7.2 \ byteorder-1.4.3 \ cast-0.2.7 \ cc-1.0.72 \ cexpr-0.4.0 \ cfg-expr-0.7.4 \ cfg-if-1.0.0 \ chrono-0.4.19 \ clang-sys-1.3.0 \ clap-2.34.0 \ cmake-0.1.46 \ color_quant-1.1.0 \ console-0.14.1 \ crc32fast-1.3.0 \ criterion-0.3.5 \ criterion-plot-0.4.4 \ crossbeam-0.8.1 \ crossbeam-channel-0.5.1 \ crossbeam-deque-0.8.1 \ crossbeam-epoch-0.9.5 \ crossbeam-queue-0.3.2 \ crossbeam-utils-0.8.5 \ csv-1.1.6 \ csv-core-0.1.10 \ ctor-0.1.21 \ dav1d-sys-0.3.4 \ deflate-0.8.6 \ diff-0.1.12 \ difflib-0.4.0 \ doc-comment-0.3.3 \ either-1.6.1 \ encode_unicode-0.3.6 \ env_logger-0.8.4 \ fern-0.6.0 \ getrandom-0.2.3 \ gimli-0.26.1 \ glob-0.3.0 \ half-1.8.2 \ heck-0.3.3 \ hermit-abi-0.1.19 \ humantime-2.1.0 \ image-0.23.14 \ interpolate_name-0.2.3 \ itertools-0.8.2 \ itertools-0.10.3 \ itoa-0.4.8 \ jobserver-0.1.24 \ js-sys-0.3.55 \ lab-0.11.0 \ lazy_static-1.4.0 \ lazycell-1.3.0 \ libc-0.2.112 \ libfuzzer-sys-0.3.5 \ libloading-0.7.2 \ log-0.4.14 \ memchr-2.4.1 \ memoffset-0.6.5 \ miniz_oxide-0.3.7 \ miniz_oxide-0.4.4 \ nasm-rs-0.2.2 \ nom-5.1.2 \ noop_proc_macro-0.3.0 \ num-derive-0.3.3 \ num-integer-0.1.44 \ num-iter-0.1.42 \ num-rational-0.3.2 \ num-traits-0.2.14 \ num_cpus-1.13.0 \ object-0.27.1 \ oorandom-11.1.3 \ output_vt100-0.1.2 \ paste-1.0.6 \ peeking_take_while-0.1.2 \ pkg-config-0.3.24 \ plotters-0.3.1 \ plotters-backend-0.3.2 \ plotters-svg-0.3.1 \ png-0.16.8 \ ppv-lite86-0.2.15 \ predicates-2.1.0 \ predicates-core-1.0.2 \ predicates-tree-1.0.4 \ pretty_assertions-0.7.2 \ proc-macro2-1.0.33 \ quote-1.0.10 \ rand-0.8.4 \ rand_chacha-0.3.1 \ rand_core-0.6.3 \ rand_hc-0.3.1 \ rayon-1.5.1 \ rayon-core-1.9.1 \ regex-1.5.4 \ regex-automata-0.1.10 \ regex-syntax-0.6.25 \ rust_hawktracer-0.7.0 \ rust_hawktracer_normal_macro-0.4.1 \ rust_hawktracer_proc_macro-0.4.1 \ rust_hawktracer_sys-0.4.2 \ rustc-demangle-0.1.21 \ rustc-hash-1.1.0 \ rustc_version-0.4.0 \ ryu-1.0.9 \ same-file-1.0.6 \ scan_fmt-0.2.6 \ scopeguard-1.1.0 \ semver-1.0.4 \ serde-1.0.131 \ serde_cbor-0.11.2 \ serde_derive-1.0.131 \ serde_json-1.0.72 \ shlex-1.1.0 \ signal-hook-0.3.12 \ signal-hook-registry-1.4.0 \ simd_helpers-0.1.0 \ smallvec-1.7.0 \ strsim-0.8.0 \ strum-0.21.0 \ strum_macros-0.21.1 \ syn-1.0.82 \ system-deps-3.1.2 \ termcolor-1.1.2 \ terminal_size-0.1.17 \ termtree-0.2.3 \ textwrap-0.11.0 \ thiserror-1.0.30 \ thiserror-impl-1.0.30 \ time-0.1.43 \ tinytemplate-1.2.1 \ toml-0.5.8 \ unicode-segmentation-1.8.0 \ unicode-width-0.1.9 \ unicode-xid-0.2.2 \ vec_map-0.8.2 \ version-compare-0.0.11 \ version_check-0.9.3 \ wait-timeout-0.2.0 \ walkdir-2.3.2 \ wasi-0.10.2+wasi-snapshot-preview1 \ wasm-bindgen-0.2.78 \ wasm-bindgen-backend-0.2.78 \ wasm-bindgen-macro-0.2.78 \ wasm-bindgen-macro-support-0.2.78 \ wasm-bindgen-shared-0.2.78 \ web-sys-0.3.55 \ which-3.1.1 \ winapi-0.3.9 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-util-0.1.5 \ winapi-x86_64-pc-windows-gnu-0.4.0 \ y4m-0.7.0 post-patch: # Extract (snapshot) version from the port instead of CARGO_PKG_VERSION @${REINPLACE_CMD} 's/env!("VERGEN_SEMVER_LIGHTWEIGHT")/"${DISTVERSIONFULL}"/' \ ${WRKSRC}/src/capi.rs ${WRKSRC}/src/lib.rs .if !target(post-install) post-install: @${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/${PORTNAME} .endif .include diff --git a/multimedia/ringrtc/Makefile b/multimedia/ringrtc/Makefile index 8a8b3587997c..bcafed30bf21 100644 --- a/multimedia/ringrtc/Makefile +++ b/multimedia/ringrtc/Makefile @@ -1,298 +1,299 @@ PORTNAME= ringrtc DISTVERSIONPREFIX= v DISTVERSION= 2.20.13 +PORTREVISION= 1 CATEGORIES= multimedia MASTER_SITES= LOCAL/mikael/ringrtc/:base \ LOCAL/mikael/ringrtc/:boringssl \ LOCAL/mikael/ringrtc/:build \ LOCAL/mikael/ringrtc/:buildtools \ LOCAL/mikael/ringrtc/:catapult \ LOCAL/mikael/ringrtc/:icu \ LOCAL/mikael/ringrtc/:nasm \ LOCAL/mikael/ringrtc/:libjpeg_turbo \ LOCAL/mikael/ringrtc/:libsrtp \ LOCAL/mikael/ringrtc/:libvpx \ LOCAL/mikael/ringrtc/:libyuv \ LOCAL/mikael/ringrtc/:third_party \ LOCAL/mikael/ringrtc/:testing DISTFILES= base-${BASE_REV}.tar.gz:base \ boringssl-${BORINGSSL_REV}.tar.gz:boringssl \ build-${BUILD_REV}.tar.gz:build \ buildtools-${BUILDTOOLS_REV}.tar.gz:buildtools \ catapult-${CATAPULT_REV}.tar.gz:catapult \ icu-${ICU_REV}.tar.gz:icu \ nasm-${NASM_REV}.tar.gz:nasm \ libjpeg_turbo-${LIBJPEG_TURBO_REV}.tar.gz:libjpeg_turbo \ libsrtp-${LIBSRTP_REV}.tar.gz:libsrtp \ libvpx-${LIBVPX_REV}.tar.gz:libvpx \ libyuv-${LIBYUV_REV}.tar.gz:libyuv \ third_party-${THIRD_PARTY_REV}.tar.gz:third_party \ testing-${TESTING_REV}.tar.gz:testing MAINTAINER= mikael@FreeBSD.org COMMENT= Middleware library for Signal-Desktop LICENSE= AGPLv3 LICENSE_FILE= ${WRKSRC}/../../LICENSE BUILD_DEPENDS= gn:devel/gn \ protoc:devel/protobuf LIB_DEPENDS= libasound.so:audio/alsa-lib \ libfreetype.so:print/freetype2 \ libpulse.so:audio/pulseaudio USES= cargo gnome localbase:ldflags ninja pkgconfig python:3.7+,build \ tar:xz USE_GNOME= glib20 USE_GITHUB= yes GH_ACCOUNT= signalapp GH_TUPLE= signalapp:ringrtc:${DISTVERSIONPREFIX}${DISTVERSION} \ signalapp:webrtc:${WEBRTC_REV}:webrtc # Add extra-patch-no-mempcpy-nasm only when there's no mempcpy() in base. # Nested variable expansion avoids executing the test when not needed for # expanding EXTRA_PATCHES. EXTRA_PATCHES+= ${"${:!${GREP} mempcpy ${CROSS_SYSROOT}/usr/include/string.h \ || ${TRUE}!}" == "":?${PATCHDIR}/extra-patch-no-mempcpy-nasm:} # sh net-im/signal-desktop/get_deps.sh WEBRTC_REV= 4896f # modify webrtc_fetch.sh, then sh webrtc_fetch.sh BASE_REV= bee216d6736d6a471879c5fcd32c8aba863d4755 BORINGSSL_REV= 4d955d20d27bcf3ae71df091ad17d95229a7eb56 BUILD_REV= b42b2033819f95b3e43f24e541938c671110966d BUILDTOOLS_REV= d8c375426d8f7f4147f7d4109bb63c12655fb8d6 CATAPULT_REV= 389f33bb40a3345b73a68613178c789476ceaecf ICU_REV= a9359a84a3969b3019db7d62899afb19642eefcd LIBJPEG_TURBO_REV= 22f1a22c99e9dde8cd3c72ead333f425c5a7aa77 LIBSRTP_REV= 5b7c744eb8310250ccc534f3f86a2015b3887a0a LIBVPX_REV= df0d06de6d3b64e35b9e75ad72c571af061bc7b3 LIBYUV_REV= 3aebf69d668177e7ee6dbbe0025e5c3dbb525ff2 NASM_REV= 9215e8e1d0fe474ffd3e16c1a07a0f97089e6224 TESTING_REV= c4769e51cb122096ea4cdc5ed6f7e57aa2315447 THIRD_PARTY_REV= 7835795588c74a353beb1e03b74d45fabfdf295f BINARY_ALIAS= python3=${PYTHON_CMD} # Keep in sync with https://github.com/signalapp/ringrtc/blob/${DISTVERSION}/bin/build-electron#L96 # Run "gn args out/Release --list" for all variables. # Some parts don't have use_system_* flag, and can be turned on/off by using # replace_gn_files.py script, some parts just turned on/off for target host # OS "target_os == is_bsd", like libusb, libpci. GN_ARGS+= rtc_build_examples=false \ rtc_build_tools=false \ rtc_include_tests=false \ rtc_enable_protobuf=false \ rtc_use_x11=false \ rtc_enable_sctp=false \ rtc_libvpx_build_vp9=false \ rtc_include_ilbc=false \ use_custom_libcxx=false \ is_debug=false \ is_clang=true \ clang_use_chrome_plugins=false \ extra_cxxflags="${CXXFLAGS}" \ extra_ldflags="${LDFLAGS}" MAKE_ARGS= -C out/${BUILDTYPE} WRKSRC= ${WRKDIR}/${PORTNAME}-${DISTVERSION}/src/rust WEBRTCDIR= ${WRKDIR}/${PORTNAME}-${DISTVERSION}/src/webrtc/src # fetch -qo - https://raw.githubusercontent.com/signalapp/ringrtc/v2.20.13/src/rust/Cargo.lock | awk -f /usr/ports/Mk/Scripts/cargo-crates.awk | portedit merge -i Makefile CARGO_CRATES= aes-0.7.5 \ aho-corasick-0.7.18 \ anyhow-1.0.53 \ atty-0.2.14 \ autocfg-1.1.0 \ base64-0.13.0 \ bitflags-1.3.2 \ block-buffer-0.9.0 \ bumpalo-3.9.1 \ byteorder-1.4.3 \ bytes-1.1.0 \ cc-1.0.72 \ cesu8-1.1.0 \ cfg-if-1.0.0 \ chunked_transfer-1.4.0 \ cipher-0.3.0 \ combine-4.6.3 \ cpufeatures-0.2.1 \ crypto-mac-0.11.1 \ cslice-0.2.0 \ ctr-0.8.0 \ curve25519-dalek-3.2.0 \ digest-0.9.0 \ either-1.6.1 \ env_logger-0.8.4 \ fastrand-1.7.0 \ fixedbitset-0.2.0 \ form_urlencoded-1.0.1 \ futures-0.3.21 \ futures-channel-0.3.21 \ futures-core-0.3.21 \ futures-executor-0.3.21 \ futures-io-0.3.21 \ futures-macro-0.3.21 \ futures-sink-0.3.21 \ futures-task-0.3.21 \ futures-util-0.3.21 \ generic-array-0.14.5 \ getrandom-0.1.16 \ hashbrown-0.11.2 \ heck-0.3.3 \ hermit-abi-0.1.19 \ hex-0.4.3 \ hkdf-0.11.0 \ hmac-0.11.0 \ humantime-2.1.0 \ idna-0.2.3 \ indexmap-1.8.0 \ instant-0.1.12 \ itertools-0.10.3 \ itoa-1.0.1 \ jni-0.19.0 \ jni-sys-0.3.0 \ js-sys-0.3.56 \ lazy_static-1.4.0 \ libc-0.2.117 \ libloading-0.6.7 \ log-0.4.14 \ matches-0.1.9 \ memchr-2.4.1 \ multimap-0.8.3 \ neon-0.9.1 \ neon-build-0.9.1 \ neon-macros-0.9.1 \ neon-runtime-0.9.1 \ num_cpus-1.13.1 \ num_enum-0.5.6 \ num_enum_derive-0.5.6 \ once_cell-1.9.0 \ opaque-debug-0.3.0 \ percent-encoding-2.1.0 \ petgraph-0.5.1 \ pin-project-lite-0.2.8 \ pin-utils-0.1.0 \ ppv-lite86-0.2.16 \ proc-macro-crate-1.1.0 \ proc-macro2-1.0.36 \ prost-0.8.0 \ prost-build-0.8.0 \ prost-derive-0.8.0 \ prost-types-0.8.0 \ quote-1.0.15 \ rand-0.7.3 \ rand_chacha-0.2.2 \ rand_core-0.5.1 \ rand_hc-0.2.0 \ redox_syscall-0.2.10 \ regex-1.5.5 \ regex-automata-0.1.10 \ regex-syntax-0.6.27 \ remove_dir_all-0.5.3 \ ring-0.16.20 \ rustls-0.19.1 \ ryu-1.0.9 \ same-file-1.0.6 \ sct-0.6.1 \ semver-0.9.0 \ semver-parser-0.7.0 \ serde-1.0.136 \ serde_derive-1.0.136 \ serde_json-1.0.78 \ sha2-0.9.9 \ slab-0.4.5 \ smallvec-1.8.0 \ spin-0.5.2 \ static_assertions-1.1.0 \ subtle-2.4.1 \ syn-1.0.86 \ synstructure-0.12.6 \ tempfile-3.3.0 \ termcolor-1.1.2 \ thiserror-1.0.30 \ thiserror-impl-1.0.30 \ tinyvec-1.5.1 \ tinyvec_macros-0.1.0 \ tokio-1.16.1 \ toml-0.5.8 \ typenum-1.15.0 \ unicode-bidi-0.3.7 \ unicode-normalization-0.1.19 \ unicode-segmentation-1.9.0 \ unicode-xid-0.2.2 \ untrusted-0.7.1 \ ureq-2.2.0 \ url-2.2.2 \ version_check-0.9.4 \ walkdir-2.3.2 \ wasi-0.9.0+wasi-snapshot-preview1 \ wasm-bindgen-0.2.79 \ wasm-bindgen-backend-0.2.79 \ wasm-bindgen-macro-0.2.79 \ wasm-bindgen-macro-support-0.2.79 \ wasm-bindgen-shared-0.2.79 \ web-sys-0.3.56 \ webpki-0.21.4 \ webpki-roots-0.21.1 \ which-4.2.4 \ winapi-0.3.9 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-util-0.1.5 \ winapi-x86_64-pc-windows-gnu-0.4.0 \ x25519-dalek-1.2.0 \ zeroize-1.3.0 \ zeroize_derive-1.3.2 CARGO_BUILD_ARGS= --features electron CARGO_INSTALL= no USE_LDCONFIG= yes MAKE_ENV= OUTPUT_DIR=${WEBRTCDIR}/out PLIST_FILES= lib/libringrtc.so post-extract: ${MKDIR} ${WRKDIR}/${PORTNAME}-${DISTVERSION}/src/webrtc ${MV} ${WRKDIR}/webrtc-${WEBRTC_REV} ${WEBRTCDIR} ${MV} ${WRKDIR}/base ${WEBRTCDIR} ${MV} ${WRKDIR}/build ${WEBRTCDIR} ${MV} ${WRKDIR}/buildtools ${WEBRTCDIR} ${MV} ${WRKDIR}/testing ${WEBRTCDIR} ${MV} ${WRKDIR}/third_party ${WEBRTCDIR} ${MV} ${WRKDIR}/catapult ${WEBRTCDIR}/third_party ${MV} ${WRKDIR}/boringssl ${WEBRTCDIR}/third_party/boringssl/src ${MV} ${WRKDIR}/icu ${WEBRTCDIR}/third_party ${MV} ${WRKDIR}/libjpeg_turbo ${WEBRTCDIR}/third_party ${MV} ${WRKDIR}/libsrtp ${WEBRTCDIR}/third_party ${MV} ${WRKDIR}/libvpx ${WEBRTCDIR}/third_party/libvpx/source ${MV} ${WRKDIR}/libyuv ${WEBRTCDIR}/third_party ${MV} ${WRKDIR}/nasm ${WEBRTCDIR}/third_party post-patch: ${REINPLACE_CMD} "s|LOCALBASE|${LOCALBASE}|" \ ${WEBRTCDIR}/build/toolchain/gcc_toolchain.gni \ ${WEBRTCDIR}/buildtools/third_party/libc++/BUILD.gn ${ECHO_CMD} "# Generated from 'DEPS'" > ${WEBRTCDIR}/build/config/gclient_args.gni ${ECHO_CMD} 1591703586 > ${WEBRTCDIR}/build/util/LASTCHANGE.committime ${ECHO_CMD} "qqchose " > ${WEBRTCDIR}/build/util/LASTCHANGE pre-build: cd ${WEBRTCDIR} && \ ${SETENV} ${CONFIGURE_ENV} gn gen out/release --args='${GN_ARGS}' # build webrtc first, ringrtc needs libwebrtc.a cd ${WEBRTCDIR} \ && ${MAKE_ENV} CC=ccache CXX=ccache ninja -C out/release # it's not intended to be used outside of signal-desktop, put that in # /usr/local/share/ringrtc instead? do-install: ${INSTALL_LIB} ${CARGO_TARGET_DIR}/${CARGO_BUILD_TARGET}/release/libringrtc.so \ ${STAGEDIR}${PREFIX}/lib/ .include diff --git a/multimedia/scte35dump/Makefile b/multimedia/scte35dump/Makefile index 8b761a7cfb1f..081eadc57a69 100644 --- a/multimedia/scte35dump/Makefile +++ b/multimedia/scte35dump/Makefile @@ -1,92 +1,92 @@ PORTNAME= scte35dump DISTVERSION= 0.1.6 -PORTREVISION= 12 +PORTREVISION= 13 CATEGORIES= multimedia MAINTAINER= rodrigo@FreeBSD.org COMMENT= Dump SCTE-35 data from a Transport Stream LICENSE= MIT USES= cargo ssl:build USE_GITHUB= yes GH_ACCOUNT= m2amedia CARGO_CRATES= aho-corasick-0.7.4 \ ansi_term-0.11.0 \ arrayvec-0.3.25 \ arrayvec-0.4.11 \ atty-0.2.13 \ base64-0.10.1 \ bitflags-1.1.0 \ bitreader-0.3.1 \ byteorder-1.3.2 \ cfg-if-0.1.9 \ clap-2.33.0 \ encoding-0.2.33 \ encoding-index-japanese-1.20141219.5 \ encoding-index-korean-1.20141219.5 \ encoding-index-simpchinese-1.20141219.5 \ encoding-index-singlebyte-1.20141219.5 \ encoding-index-tradchinese-1.20141219.5 \ encoding_index_tests-0.1.4 \ env_logger-0.6.2 \ fixedbitset-0.1.9 \ fuchsia-zircon-0.3.3 \ fuchsia-zircon-sys-0.3.3 \ hex-0.3.2 \ hexdump-0.1.0 \ humantime-1.2.0 \ iovec-0.1.2 \ itertools-0.4.19 \ kernel32-sys-0.2.2 \ lazy_static-1.3.0 \ libc-0.2.60 \ log-0.4.7 \ memchr-2.2.1 \ mio-0.6.19 \ miow-0.2.1 \ mpeg2ts-reader-0.13.0 \ net2-0.2.33 \ nodrop-0.1.13 \ odds-0.2.26 \ proc-macro2-0.4.30 \ quick-error-1.2.2 \ quote-0.6.13 \ regex-1.1.9 \ regex-syntax-0.6.8 \ rtp-rs-0.3.0 \ rustc_version-0.2.3 \ scte35-reader-0.11.0 \ semver-0.9.0 \ semver-parser-0.7.0 \ serde-1.0.97 \ serde_derive-1.0.97 \ serdebug-1.0.5 \ serdebug_derive-1.0.0 \ slab-0.4.2 \ smpte2022-1-fec-0.2.0 \ smpte2022-1-packet-0.4.0 \ strsim-0.8.0 \ syn-0.14.9 \ syn-0.15.39 \ termcolor-1.0.5 \ textwrap-0.11.0 \ thread_local-0.3.6 \ ucd-util-0.1.3 \ unicode-width-0.1.5 \ unicode-xid-0.1.0 \ utf8-ranges-1.0.3 \ vec_map-0.8.1 \ winapi-0.2.8 \ winapi-0.3.7 \ winapi-build-0.1.1 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-util-0.1.2 \ winapi-x86_64-pc-windows-gnu-0.4.0 \ wincolor-1.0.1 \ ws2_32-sys-0.2.1 PLIST_FILES= bin/scte35dump .include diff --git a/multimedia/termplay/Makefile b/multimedia/termplay/Makefile index 7934dd638390..d9cbb8fd5c35 100644 --- a/multimedia/termplay/Makefile +++ b/multimedia/termplay/Makefile @@ -1,116 +1,116 @@ PORTNAME= termplay DISTVERSION= 2.0.6 -PORTREVISION= 18 +PORTREVISION= 19 CATEGORIES= multimedia MASTER_SITES= CRATESIO DISTFILES= ${CARGO_DIST_SUBDIR}/${DISTNAME}${CARGO_CRATE_EXT} MAINTAINER= yuri@FreeBSD.org COMMENT= Tool that converts images to ANSI sequences, plays videos in terminals LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE LIB_DEPENDS= libsixel.so:graphics/libsixel USES= cargo gnome gstreamer USE_GNOME= glib20 CARGO_FEATURES= bin CARGO_CRATES= \ adler32-1.0.4 \ ansi_term-0.11.0 \ atty-0.2.14 \ autocfg-0.1.7 \ backtrace-0.3.40 \ backtrace-sys-0.1.32 \ bitflags-1.2.1 \ byteorder-1.3.2 \ cc-1.0.49 \ cfg-if-0.1.10 \ clap-2.33.0 \ color_quant-1.0.1 \ crc32fast-1.2.0 \ crossbeam-deque-0.7.2 \ crossbeam-epoch-0.8.0 \ crossbeam-queue-0.2.1 \ crossbeam-utils-0.7.0 \ deflate-0.7.20 \ either-1.5.3 \ failure-0.1.6 \ failure_derive-0.1.6 \ futures-channel-0.3.1 \ futures-core-0.3.1 \ futures-executor-0.3.1 \ futures-macro-0.3.1 \ futures-task-0.3.1 \ futures-util-0.3.1 \ gif-0.10.3 \ glib-0.9.0 \ glib-sys-0.9.1 \ gobject-sys-0.9.1 \ gstreamer-0.15.0 \ gstreamer-app-0.15.0 \ gstreamer-app-sys-0.8.1 \ gstreamer-base-0.15.0 \ gstreamer-base-sys-0.8.1 \ gstreamer-sys-0.8.1 \ hermit-abi-0.1.6 \ image-0.22.3 \ inflate-0.4.5 \ jpeg-decoder-0.1.18 \ lazy_static-1.4.0 \ libc-0.2.66 \ lzw-0.10.0 \ memoffset-0.5.3 \ muldiv-0.2.1 \ num-derive-0.2.5 \ num-integer-0.1.41 \ num-iter-0.1.39 \ num-rational-0.2.2 \ num-traits-0.2.10 \ num_cpus-1.11.1 \ numtoa-0.1.0 \ paste-0.1.6 \ paste-impl-0.1.6 \ pin-utils-0.1.0-alpha.4 \ pkg-config-0.3.17 \ png-0.15.2 \ proc-macro-hack-0.5.11 \ proc-macro-nested-0.1.3 \ proc-macro2-0.4.30 \ proc-macro2-1.0.7 \ quote-0.6.13 \ quote-1.0.2 \ rayon-1.3.0 \ rayon-core-1.7.0 \ redox_syscall-0.1.56 \ redox_termios-0.1.1 \ rustc-demangle-0.1.16 \ rustc_version-0.2.3 \ scoped_threadpool-0.1.9 \ scopeguard-1.0.0 \ semver-0.9.0 \ semver-parser-0.7.0 \ slab-0.4.2 \ strsim-0.8.0 \ syn-0.15.44 \ syn-1.0.13 \ synstructure-0.12.3 \ termion-1.5.4 \ textwrap-0.11.0 \ tiff-0.3.1 \ unicode-width-0.1.7 \ unicode-xid-0.1.0 \ unicode-xid-0.2.0 \ vec_map-0.8.1 \ winapi-0.3.8 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-x86_64-pc-windows-gnu-0.4.0 PLIST_FILES= bin/${PORTNAME} post-install: @${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/${PORTNAME} .include diff --git a/net-im/conduit/Makefile b/net-im/conduit/Makefile index 576f75d777fd..116aae95084f 100644 --- a/net-im/conduit/Makefile +++ b/net-im/conduit/Makefile @@ -1,371 +1,371 @@ PORTNAME= conduit DISTVERSIONPREFIX= v DISTVERSION= 0.4.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= net-im PKGNAMEPREFIX= matrix- MAINTAINER= ashish@FreeBSD.org COMMENT= Simple, fast and reliable chat server powered by Matrix LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE BUILD_DEPENDS= ${LOCALBASE}/llvm${LLVM_DEFAULT}/lib/libclang.so:devel/llvm${LLVM_DEFAULT} USES= cargo gmake USE_RC_SUBR= ${PORTNAME} USERS= ${PORTNAME} GROUPS= ${USERS} SUBS= DBDIR=${DBDIR} \ USERS=${USERS} \ GROUPS=${GROUPS} \ PORTNAME=${PORTNAME} PLIST_SUB= ${SUBS} SUB_LIST= ${SUBS} SUB_FILES= pkg-message pkg-install DBDIR= /var/db/${PORTNAME} USE_GITLAB= yes GL_ACCOUNT= famedly GL_COMMIT= e8cd85fee41c5f0d92b674fd30f62b6485dd146f CARGO_CRATES= adler-1.0.2 \ adler32-1.2.0 \ ahash-0.7.6 \ aho-corasick-0.7.18 \ alloc-no-stdlib-2.0.3 \ alloc-stdlib-0.2.1 \ ansi_term-0.12.1 \ arc-swap-1.5.0 \ arrayref-0.3.6 \ arrayvec-0.5.2 \ assign-1.1.1 \ async-compression-0.3.14 \ async-trait-0.1.56 \ atomic-0.5.1 \ autocfg-1.1.0 \ axum-0.5.8 \ axum-core-0.2.6 \ axum-server-0.4.0 \ base64-0.12.3 \ base64-0.13.0 \ bincode-1.3.3 \ bindgen-0.59.2 \ bitflags-1.3.2 \ blake2b_simd-0.5.11 \ block-buffer-0.9.0 \ block-buffer-0.10.2 \ brotli-3.3.4 \ brotli-decompressor-2.3.2 \ bumpalo-3.10.0 \ bytemuck-1.9.1 \ byteorder-1.4.3 \ bytes-1.1.0 \ cc-1.0.73 \ cexpr-0.6.0 \ cfg-if-0.1.10 \ cfg-if-1.0.0 \ chrono-0.4.19 \ clang-sys-1.3.3 \ clap-3.2.5 \ clap_derive-3.2.5 \ clap_lex-0.2.2 \ color_quant-1.1.0 \ const-oid-0.6.2 \ constant_time_eq-0.1.5 \ core-foundation-0.9.3 \ core-foundation-sys-0.8.3 \ cpufeatures-0.2.2 \ crc-2.1.0 \ crc-catalog-1.1.1 \ crc32fast-1.3.2 \ crossbeam-0.8.1 \ crossbeam-channel-0.5.5 \ crossbeam-deque-0.8.1 \ crossbeam-epoch-0.9.9 \ crossbeam-queue-0.1.2 \ crossbeam-queue-0.3.5 \ crossbeam-utils-0.6.6 \ crossbeam-utils-0.8.9 \ crypto-common-0.1.3 \ crypto-mac-0.11.1 \ curve25519-dalek-3.2.1 \ data-encoding-2.3.2 \ deflate-0.8.6 \ der-0.4.5 \ digest-0.9.0 \ digest-0.10.3 \ directories-4.0.1 \ dirs-sys-0.3.7 \ ed25519-1.5.2 \ ed25519-dalek-1.0.1 \ either-1.6.1 \ encoding_rs-0.8.31 \ enum-as-inner-0.3.4 \ fallible-iterator-0.2.0 \ fallible-streaming-iterator-0.1.9 \ figment-0.10.6 \ flate2-1.0.24 \ fnv-1.0.7 \ form_urlencoded-1.0.1 \ fs2-0.4.3 \ fs_extra-1.2.0 \ futures-0.3.21 \ futures-channel-0.3.21 \ futures-core-0.3.21 \ futures-executor-0.3.21 \ futures-io-0.3.21 \ futures-macro-0.3.21 \ futures-sink-0.3.21 \ futures-task-0.3.21 \ futures-util-0.3.21 \ fxhash-0.2.1 \ generic-array-0.14.5 \ getrandom-0.1.16 \ getrandom-0.2.7 \ gif-0.11.3 \ glob-0.3.0 \ h2-0.3.13 \ hashbrown-0.11.2 \ hashbrown-0.12.1 \ hashlink-0.7.0 \ headers-0.3.7 \ headers-core-0.2.0 \ heck-0.4.0 \ hermit-abi-0.1.19 \ hmac-0.11.0 \ hostname-0.3.1 \ http-0.2.8 \ http-body-0.4.5 \ http-range-header-0.3.0 \ httparse-1.7.1 \ httpdate-1.0.2 \ hyper-0.14.19 \ hyper-rustls-0.23.0 \ idna-0.2.3 \ image-0.23.14 \ indexmap-1.9.0 \ indoc-1.0.6 \ inlinable_string-0.1.15 \ instant-0.1.12 \ integer-encoding-1.1.7 \ ipconfig-0.2.2 \ ipnet-2.5.0 \ itertools-0.10.3 \ itoa-1.0.2 \ jobserver-0.1.24 \ jpeg-decoder-0.1.22 \ js-sys-0.3.58 \ js_int-0.2.2 \ jsonwebtoken-7.2.0 \ lazy_static-1.4.0 \ lazycell-1.3.0 \ libc-0.2.126 \ libloading-0.7.3 \ librocksdb-sys-6.20.3 \ libsqlite3-sys-0.22.2 \ linked-hash-map-0.5.4 \ lmdb-rkv-sys-0.11.2 \ lock_api-0.4.7 \ log-0.4.17 \ lru-cache-0.1.2 \ maplit-1.0.2 \ match_cfg-0.1.0 \ matchers-0.0.1 \ matches-0.1.9 \ matchit-0.5.0 \ memchr-2.5.0 \ memoffset-0.6.5 \ mime-0.3.16 \ minimal-lexical-0.2.1 \ miniz_oxide-0.3.7 \ miniz_oxide-0.5.3 \ mio-0.8.3 \ nom-7.1.1 \ num-bigint-0.2.6 \ num-integer-0.1.45 \ num-iter-0.1.43 \ num-rational-0.3.2 \ num-traits-0.2.15 \ num_cpus-1.13.1 \ once_cell-1.12.0 \ opaque-debug-0.3.0 \ openssl-probe-0.1.5 \ opentelemetry-0.16.0 \ opentelemetry-jaeger-0.15.0 \ opentelemetry-semantic-conventions-0.8.0 \ ordered-float-1.1.1 \ os_str_bytes-6.1.0 \ page_size-0.4.2 \ parking_lot-0.11.2 \ parking_lot_core-0.8.5 \ paste-1.0.7 \ pear-0.2.3 \ pear_codegen-0.2.3 \ peeking_take_while-0.1.2 \ pem-0.8.3 \ percent-encoding-2.1.0 \ persy-1.2.6 \ pin-project-1.0.10 \ pin-project-internal-1.0.10 \ pin-project-lite-0.2.9 \ pin-utils-0.1.0 \ pkcs8-0.7.6 \ pkg-config-0.3.25 \ png-0.16.8 \ ppv-lite86-0.2.16 \ proc-macro-crate-1.1.3 \ proc-macro-error-1.0.4 \ proc-macro-error-attr-1.0.4 \ proc-macro2-1.0.39 \ proc-macro2-diagnostics-0.9.1 \ quick-error-1.2.3 \ quote-1.0.19 \ rand-0.7.3 \ rand-0.8.5 \ rand_chacha-0.2.2 \ rand_chacha-0.3.1 \ rand_core-0.5.1 \ rand_core-0.6.3 \ rand_hc-0.2.0 \ redox_syscall-0.2.13 \ redox_users-0.4.3 \ regex-1.5.6 \ regex-automata-0.1.10 \ regex-syntax-0.6.26 \ resolv-conf-0.7.0 \ ring-0.16.20 \ rocksdb-0.17.0 \ rusqlite-0.25.4 \ rust-argon2-0.8.3 \ rustc-hash-1.1.0 \ rustls-0.20.6 \ rustls-native-certs-0.6.2 \ rustls-pemfile-0.2.1 \ rustls-pemfile-1.0.0 \ ryu-1.0.10 \ schannel-0.1.20 \ scopeguard-1.1.0 \ sct-0.7.0 \ security-framework-2.6.1 \ security-framework-sys-2.6.1 \ serde-1.0.137 \ serde_derive-1.0.137 \ serde_json-1.0.81 \ serde_urlencoded-0.7.1 \ serde_yaml-0.8.24 \ sha-1-0.9.8 \ sha-1-0.10.0 \ sha2-0.9.9 \ sharded-slab-0.1.4 \ shlex-1.1.0 \ signal-hook-registry-1.4.0 \ signature-1.5.0 \ simple_asn1-0.4.1 \ slab-0.4.6 \ sled-0.34.7 \ smallvec-1.8.0 \ socket2-0.3.19 \ socket2-0.4.4 \ spin-0.5.2 \ spki-0.4.1 \ subtle-2.4.1 \ syn-1.0.98 \ sync_wrapper-0.1.1 \ synchronoise-1.0.0 \ synstructure-0.12.6 \ textwrap-0.15.0 \ thiserror-1.0.31 \ thiserror-impl-1.0.31 \ thread_local-1.1.4 \ threadpool-1.8.1 \ thrift-0.13.0 \ tikv-jemalloc-ctl-0.4.2 \ tikv-jemalloc-sys-0.4.3+5.2.1-patched.2 \ tikv-jemallocator-0.4.3 \ time-0.1.44 \ tinyvec-1.6.0 \ tinyvec_macros-0.1.0 \ tokio-1.19.2 \ tokio-macros-1.8.0 \ tokio-rustls-0.23.4 \ tokio-socks-0.5.1 \ tokio-stream-0.1.9 \ tokio-util-0.7.3 \ toml-0.5.9 \ tower-0.4.13 \ tower-http-0.3.4 \ tower-layer-0.3.1 \ tower-service-0.3.2 \ tracing-0.1.35 \ tracing-attributes-0.1.21 \ tracing-core-0.1.27 \ tracing-flame-0.1.0 \ tracing-log-0.1.3 \ tracing-serde-0.1.3 \ tracing-subscriber-0.2.25 \ trust-dns-proto-0.20.4 \ trust-dns-resolver-0.20.4 \ try-lock-0.2.3 \ typenum-1.15.0 \ uncased-0.9.7 \ unicode-bidi-0.3.8 \ unicode-ident-1.0.1 \ unicode-normalization-0.1.19 \ unicode-xid-0.2.3 \ unsigned-varint-0.7.1 \ untrusted-0.7.1 \ url-2.2.2 \ uuid-0.8.2 \ valuable-0.1.0 \ vcpkg-0.2.15 \ version_check-0.9.4 \ want-0.3.0 \ wasi-0.9.0+wasi-snapshot-preview1 \ wasi-0.10.0+wasi-snapshot-preview1 \ wasi-0.11.0+wasi-snapshot-preview1 \ wasm-bindgen-0.2.81 \ wasm-bindgen-backend-0.2.81 \ wasm-bindgen-futures-0.4.31 \ wasm-bindgen-macro-0.2.81 \ wasm-bindgen-macro-support-0.2.81 \ wasm-bindgen-shared-0.2.81 \ web-sys-0.3.58 \ webpki-0.22.0 \ weezl-0.1.6 \ widestring-0.4.3 \ wildmatch-2.1.0 \ winapi-0.3.9 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-x86_64-pc-windows-gnu-0.4.0 \ windows-sys-0.36.1 \ windows_aarch64_msvc-0.36.1 \ windows_i686_gnu-0.36.1 \ windows_i686_msvc-0.36.1 \ windows_x86_64_gnu-0.36.1 \ windows_x86_64_msvc-0.36.1 \ winreg-0.6.2 \ winreg-0.7.0 \ yaml-rust-0.4.5 \ yansi-0.5.1 \ zeroize-1.3.0 \ zeroize_derive-1.3.2 \ zigzag-0.1.0 \ zstd-0.9.2+zstd.1.5.1 \ zstd-safe-4.1.3+zstd.1.5.1 \ zstd-sys-1.6.2+zstd.1.5.1 \ heed,heed-traits,heed-types@git+https://github.com/timokoesters/heed.git?rev=f6f825da7fb2c758867e05ad973ef800a6fe1d5d\#f6f825da7fb2c758867e05ad973ef800a6fe1d5d \ reqwest@git+https://github.com/timokoesters/reqwest?rev=57b7cf4feb921573dfafad7d34b9ac6e44ead0bd\#57b7cf4feb921573dfafad7d34b9ac6e44ead0bd \ ruma,ruma-appservice-api,ruma-client-api,ruma-common,ruma-federation-api,ruma-identifiers-validation,ruma-identity-service-api,ruma-macros,ruma-push-gateway-api,ruma-signatures,ruma-state-res@git+https://github.com/ruma/ruma?rev=d614ad1422d6c4b3437ebc318ca8514ae338fd6d\#d614ad1422d6c4b3437ebc318ca8514ae338fd6d post-patch: @${REINPLACE_CMD} -e 's,/etc/conduit.toml,${PREFIX}/etc/conduit.toml,' \ ${WRKSRC}/src/main.rs @${REINPLACE_CMD} -e 's,/var/lib/conduit,${DBDIR},' \ ${WRKSRC}/conduit-example.toml post-install: ${INSTALL_DATA} ${WRKSRC}/conduit-example.toml ${STAGEDIR}${PREFIX}/etc/${PORTNAME}.toml.sample @${MKDIR} ${STAGEDIR}${DBDIR} .include diff --git a/net-im/fractal/Makefile b/net-im/fractal/Makefile index 7a2739ea637d..ad89badbd7aa 100644 --- a/net-im/fractal/Makefile +++ b/net-im/fractal/Makefile @@ -1,47 +1,47 @@ PORTNAME= fractal DISTVERSION= 4.4.0 -PORTREVISION= 10 +PORTREVISION= 11 CATEGORIES= net-im MASTER_SITES= https://gitlab.gnome.org/World/fractal/uploads/${GL_HASH}/ PATCH_SITES= https://gitlab.gnome.org/GNOME/${PORTNAME}/-/commit/ PATCHFILES+= 6fa1a23596d6.patch:-p1 # https://gitlab.gnome.org/GNOME/fractal/-/merge_requests/867 MAINTAINER= greg@unrelenting.technology COMMENT= GTK+ Matrix IM client LICENSE= GPLv3+ LICENSE_FILE= ${WRKSRC}/LICENSE.txt # gmake for the gettext-sys crate BUILD_DEPENDS= cargo:lang/${RUST_DEFAULT} \ gmake:devel/gmake LIB_DEPENDS= libdbus-1.so:devel/dbus \ libgmp.so:math/gmp \ libgspell-1.so:textproc/gspell \ libhandy-0.0.so:x11-toolkits/libhandy0 USES= cpe gettext gnome gstreamer meson pkgconfig python:3.5+,build ssl tar:xz CPE_VENDOR= gnome USE_GNOME= cairo gtk30 gtksourceview4 USE_GSTREAMER= bad editing-services GL_HASH= d4168ac40fd681240964705e000dd353 BINARY_ALIAS= python3=${PYTHON_CMD} GLIB_SCHEMAS= org.gnome.Fractal.gschema.xml # for the gettext-sys crate MAKE_ENV+= GETTEXT_BIN_DIR=${LOCALBASE}/bin \ GETTEXT_LIB_DIR=${LOCALBASE}/lib \ GETTEXT_INCLUDE_DIR=${LOCALBASE}/include \ RUSTFLAGS="${RUSTFLAGS} -C linker=${CC:Q} ${LDFLAGS:C/.+/-C link-arg=&/}" post-patch: # Disable vendor checksums @${REINPLACE_CMD} -e 's/"files":{[^}]*}/"files":{}/' \ ${WRKSRC}/vendor/*/.cargo-checksum.json post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/fractal .include diff --git a/net-im/libsignal-client/Makefile b/net-im/libsignal-client/Makefile index 88985f7d4398..3abf4afc0318 100644 --- a/net-im/libsignal-client/Makefile +++ b/net-im/libsignal-client/Makefile @@ -1,252 +1,252 @@ PORTNAME= libsignal-client DISTVERSIONPREFIX= v DISTVERSION= 0.9.6 -PORTREVISION= 8 +PORTREVISION= 9 PORTEPOCH= 1 CATEGORIES= net-im java MAINTAINER= 0mp@FreeBSD.org COMMENT= Implementation of the Signal client protocol LICENSE= AGPLv3 LICENSE_FILE= ${WRKSRC}/LICENSE BROKEN_aarch64= fails to compile: could not compile `polyval`: the feature named `crypto` is not valid for this target BUILD_DEPENDS= protoc:devel/protobuf USES= cargo ssl USE_GITHUB= yes GH_ACCOUNT= signalapp USE_LDCONFIG= yes CARGO_CRATES= addr2line-0.14.1 \ adler-1.0.2 \ aead-0.4.1 \ aes-0.7.4 \ aes-gcm-0.9.2 \ aes-gcm-siv-0.10.1 \ aho-corasick-0.7.15 \ anyhow-1.0.38 \ arrayref-0.3.6 \ async-trait-0.1.42 \ atty-0.2.14 \ autocfg-0.1.7 \ autocfg-1.0.1 \ backtrace-0.3.56 \ base64-0.12.3 \ bitflags-1.2.1 \ blake2-0.9.2 \ block-buffer-0.9.0 \ block-modes-0.8.1 \ block-padding-0.2.1 \ bstr-0.2.15 \ bumpalo-3.6.1 \ byteorder-1.4.2 \ bytes-1.0.1 \ cast-0.2.3 \ cc-1.0.67 \ cesu8-1.1.0 \ cfg-if-1.0.0 \ chacha20-0.7.2 \ chacha20poly1305-0.8.2 \ chrono-0.4.19 \ cipher-0.3.0 \ clap-2.33.3 \ combine-4.5.2 \ cpufeatures-0.1.5 \ cpuid-bool-0.1.2 \ criterion-0.3.4 \ criterion-plot-0.4.3 \ crossbeam-channel-0.5.0 \ crossbeam-deque-0.8.0 \ crossbeam-epoch-0.9.2 \ crossbeam-utils-0.8.2 \ crypto-mac-0.8.0 \ crypto-mac-0.9.1 \ cslice-0.2.0 \ csv-1.1.5 \ csv-core-0.1.10 \ ctr-0.7.0 \ derivative-2.2.0 \ digest-0.9.0 \ either-1.6.1 \ fixedbitset-0.2.0 \ foreign-types-0.3.2 \ foreign-types-shared-0.1.1 \ futures-core-0.3.13 \ futures-macro-0.3.13 \ futures-task-0.3.13 \ futures-util-0.3.13 \ generator-0.6.24 \ generic-array-0.14.4 \ getrandom-0.1.16 \ getrandom-0.2.2 \ ghash-0.4.2 \ gimli-0.23.0 \ half-1.7.1 \ hashbrown-0.9.1 \ heck-0.3.2 \ hermit-abi-0.1.18 \ hex-0.4.2 \ hmac-0.9.0 \ indexmap-1.6.1 \ itertools-0.9.0 \ itertools-0.10.1 \ itoa-0.4.7 \ jni-0.19.0 \ jni-sys-0.3.0 \ js-sys-0.3.47 \ keccak-0.1.0 \ lazy_static-1.4.0 \ libc-0.2.97 \ libloading-0.6.7 \ libm-0.2.1 \ linkme-0.2.4 \ linkme-impl-0.2.4 \ log-0.4.14 \ log-panics-2.0.0 \ loom-0.4.0 \ memchr-2.3.4 \ memoffset-0.6.1 \ miniz_oxide-0.4.4 \ multimap-0.8.2 \ neon-0.9.1 \ neon-build-0.9.1 \ neon-macros-0.9.1 \ neon-runtime-0.9.1 \ num-bigint-0.2.6 \ num-bigint-dig-0.6.1 \ num-integer-0.1.44 \ num-iter-0.1.42 \ num-traits-0.2.14 \ num_cpus-1.13.0 \ num_enum-0.5.1 \ num_enum_derive-0.5.1 \ object-0.23.0 \ oid-0.1.1 \ once_cell-1.7.2 \ oorandom-11.1.3 \ opaque-debug-0.3.0 \ openssl-0.10.32 \ openssl-sys-0.9.60 \ paste-1.0.4 \ pem-0.8.1 \ pest-2.1.3 \ petgraph-0.5.1 \ picky-6.2.0 \ picky-asn1-0.3.1 \ picky-asn1-der-0.2.4 \ picky-asn1-x509-0.5.0 \ pin-project-lite-0.2.4 \ pin-utils-0.1.0 \ pkg-config-0.3.19 \ plotters-0.3.0 \ plotters-backend-0.3.0 \ plotters-svg-0.3.0 \ poly1305-0.7.1 \ polyval-0.5.1 \ ppv-lite86-0.2.10 \ proc-macro-crate-0.1.5 \ proc-macro-hack-0.5.19 \ proc-macro-nested-0.1.7 \ proc-macro2-1.0.24 \ prost-0.8.0 \ prost-build-0.8.0 \ prost-derive-0.8.0 \ prost-types-0.8.0 \ quote-1.0.9 \ rand-0.7.3 \ rand-0.8.3 \ rand_chacha-0.2.2 \ rand_chacha-0.3.0 \ rand_core-0.5.1 \ rand_core-0.6.2 \ rand_hc-0.2.0 \ rand_hc-0.3.0 \ rayon-1.5.0 \ rayon-core-1.9.0 \ redox_syscall-0.2.5 \ regex-1.4.3 \ regex-automata-0.1.9 \ regex-syntax-0.6.22 \ remove_dir_all-0.5.3 \ rsa-0.3.0 \ rustc-demangle-0.1.18 \ rustc_version-0.2.3 \ rustc_version-0.3.3 \ rustversion-1.0.4 \ ryu-1.0.5 \ same-file-1.0.6 \ scoped-tls-1.0.0 \ scopeguard-1.1.0 \ semver-0.9.0 \ semver-0.11.0 \ semver-parser-0.7.0 \ semver-parser-0.10.2 \ serde-1.0.123 \ serde_bytes-0.11.5 \ serde_cbor-0.11.1 \ serde_derive-1.0.123 \ serde_json-1.0.62 \ sha-1-0.9.4 \ sha2-0.9.3 \ sha3-0.9.1 \ simple_asn1-0.4.1 \ slab-0.4.2 \ smallvec-1.6.1 \ snow-0.8.0 \ spin-0.5.2 \ static_assertions-1.1.0 \ subtle-2.4.0 \ syn-1.0.60 \ syn-mid-0.5.3 \ synstructure-0.12.4 \ tempfile-3.2.0 \ textwrap-0.11.0 \ thiserror-1.0.24 \ thiserror-impl-1.0.24 \ thread_local-1.1.3 \ time-0.1.43 \ tinytemplate-1.2.0 \ toml-0.5.8 \ typenum-1.12.0 \ ucd-trie-0.1.3 \ unicode-segmentation-1.7.1 \ unicode-width-0.1.8 \ unicode-xid-0.2.1 \ universal-hash-0.4.0 \ unzip3-1.0.0 \ uuid-0.8.2 \ vcpkg-0.2.11 \ version_check-0.9.2 \ walkdir-2.3.1 \ wasi-0.9.0+wasi-snapshot-preview1 \ wasi-0.10.2+wasi-snapshot-preview1 \ wasm-bindgen-0.2.70 \ wasm-bindgen-backend-0.2.70 \ wasm-bindgen-macro-0.2.70 \ wasm-bindgen-macro-support-0.2.70 \ wasm-bindgen-shared-0.2.70 \ web-sys-0.3.47 \ which-4.0.2 \ winapi-0.3.9 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-util-0.1.5 \ winapi-x86_64-pc-windows-gnu-0.4.0 \ x25519-dalek-1.1.0 \ zeroize-1.3.0 \ zeroize_derive-1.0.1 \ curve25519-dalek@git+https://github.com/signalapp/curve25519-dalek?branch=3.0.0-lizard2\#2694ad3b789635f90f941648ae952f58d59ffc73 CARGO_BUILD_ARGS= --package libsignal-jni MAKE_ENV= CARGO_PROFILE_RELEASE_LTO=thin \ OPENSSL_INCLUDE_DIR=${OPENSSLINC} \ OPENSSL_LIB_DIR=${OPENSSLLIB} \ RUSTC_BOOTSTRAP=aes,polyval PLIST_FILES= lib/libsignal_jni.so do-install: ${INSTALL_LIB} ${CARGO_TARGET_DIR}/${CARGO_BUILD_TARGET}/*/libsignal_jni.so \ ${STAGEDIR}${PREFIX}/lib/ .include diff --git a/net-im/libsignal-node/Makefile b/net-im/libsignal-node/Makefile index 799a57f715d6..261293262727 100644 --- a/net-im/libsignal-node/Makefile +++ b/net-im/libsignal-node/Makefile @@ -1,284 +1,285 @@ PORTNAME= libsignal DISTVERSIONPREFIX= v DISTVERSION= 0.19.2 +PORTREVISION= 1 CATEGORIES= net-im MASTER_SITES= LOCAL/mikael/signal-desktop/:yarn PKGNAMESUFFIX= -node DISTFILES= libsignal-node-${DISTVERSION}-yarn-cache.tar.gz:yarn MAINTAINER= mikael@FreeBSD.org COMMENT= Platform-agnostic APIs used by the official Signal clients and servers LICENSE= AGPLv3 LICENSE_FILE= ${WRKSRC}/LICENSE BUILD_DEPENDS= llvm-config${LLVM_DEFAULT}:devel/llvm${LLVM_DEFAULT} \ protoc:devel/protobuf \ yarn:www/yarn-node16 USES= cargo gmake python:3.7+,build USE_GITHUB= yes GH_ACCOUNT= signalapp GH_TUPLE= google:boringssl:f1c75347daa2ea81a941e953f2263e0a4d970c8d:boringssl \ google:boringssl:ae223d6138807a13006342edfeef32e813246b39:boringssl_fips CARGO_CRATES= addr2line-0.17.0 \ adler-1.0.2 \ aead-0.4.3 \ aes-0.7.5 \ aes-gcm-0.9.4 \ aes-gcm-siv-0.10.3 \ aho-corasick-0.7.18 \ anyhow-1.0.56 \ arrayref-0.3.6 \ asn1-0.9.1 \ asn1_derive-0.9.1 \ async-trait-0.1.52 \ atty-0.2.14 \ autocfg-1.1.0 \ backtrace-0.3.64 \ base64-0.13.0 \ bincode-1.3.3 \ bindgen-0.60.1 \ bitflags-1.3.2 \ blake2-0.9.2 \ block-buffer-0.9.0 \ block-modes-0.8.1 \ block-padding-0.2.1 \ bstr-0.2.17 \ bumpalo-3.7.1 \ byteorder-1.4.3 \ bytes-1.1.0 \ cast-0.2.7 \ cc-1.0.73 \ cesu8-1.1.0 \ cexpr-0.6.0 \ cfg-if-1.0.0 \ chacha20-0.7.3 \ chacha20poly1305-0.8.2 \ chrono-0.4.19 \ cipher-0.3.0 \ clang-sys-1.3.2 \ clap-2.34.0 \ cmake-0.1.48 \ combine-4.6.3 \ cpufeatures-0.2.2 \ criterion-0.3.5 \ criterion-plot-0.4.4 \ crossbeam-channel-0.5.4 \ crossbeam-deque-0.8.1 \ crossbeam-epoch-0.9.8 \ crossbeam-utils-0.8.8 \ crypto-mac-0.8.0 \ crypto-mac-0.11.1 \ csv-1.1.6 \ csv-core-0.1.10 \ ctr-0.8.0 \ digest-0.9.0 \ displaydoc-0.2.3 \ either-1.6.1 \ fastrand-1.7.0 \ fixedbitset-0.4.1 \ foreign-types-0.5.0 \ foreign-types-macros-0.2.2 \ foreign-types-shared-0.3.1 \ futures-core-0.3.21 \ futures-macro-0.3.21 \ futures-task-0.3.21 \ futures-util-0.3.21 \ generic-array-0.14.5 \ getrandom-0.1.16 \ getrandom-0.2.5 \ ghash-0.4.4 \ gimli-0.26.1 \ glob-0.3.0 \ half-1.8.2 \ hashbrown-0.11.2 \ heck-0.3.3 \ hermit-abi-0.1.19 \ hex-0.4.3 \ hex-literal-0.3.4 \ hkdf-0.11.0 \ hmac-0.11.0 \ indexmap-1.8.0 \ instant-0.1.12 \ itertools-0.10.3 \ itoa-0.4.8 \ itoa-1.0.1 \ jni-0.19.0 \ jni-sys-0.3.0 \ js-sys-0.3.56 \ lazy_static-1.4.0 \ lazycell-1.3.0 \ libc-0.2.121 \ libloading-0.6.7 \ libloading-0.7.3 \ linkme-0.2.10 \ linkme-impl-0.2.10 \ log-0.4.14 \ log-panics-2.1.0 \ memchr-2.4.1 \ memoffset-0.6.5 \ minimal-lexical-0.2.1 \ miniz_oxide-0.4.4 \ multimap-0.8.3 \ neon-0.10.0 \ neon-build-0.10.0 \ neon-macros-0.10.0 \ neon-runtime-0.10.0 \ nom-7.1.1 \ num-integer-0.1.45 \ num-traits-0.2.14 \ num_cpus-1.13.1 \ num_enum-0.5.7 \ num_enum_derive-0.5.7 \ object-0.27.1 \ oorandom-11.1.3 \ opaque-debug-0.3.0 \ paste-1.0.6 \ peeking_take_while-0.1.2 \ pest-2.1.3 \ petgraph-0.6.0 \ pin-project-lite-0.2.8 \ pin-utils-0.1.0 \ plotters-0.3.1 \ plotters-backend-0.3.2 \ plotters-svg-0.3.1 \ poly1305-0.7.2 \ polyval-0.5.3 \ ppv-lite86-0.2.16 \ proc-macro-crate-1.1.3 \ proc-macro2-1.0.29 \ prost-0.9.0 \ prost-build-0.9.0 \ prost-derive-0.9.0 \ prost-types-0.9.0 \ quote-1.0.10 \ rand-0.7.3 \ rand-0.8.5 \ rand_chacha-0.2.2 \ rand_chacha-0.3.1 \ rand_core-0.5.1 \ rand_core-0.6.3 \ rand_hc-0.2.0 \ rayon-1.5.1 \ rayon-core-1.9.1 \ redox_syscall-0.2.11 \ regex-1.5.5 \ regex-automata-0.1.10 \ regex-syntax-0.6.25 \ remove_dir_all-0.5.3 \ rustc-demangle-0.1.21 \ rustc-hash-1.1.0 \ rustc_version-0.3.3 \ rustc_version-0.4.0 \ ryu-1.0.9 \ same-file-1.0.6 \ scopeguard-1.1.0 \ semver-0.9.0 \ semver-0.11.0 \ semver-1.0.6 \ semver-parser-0.7.0 \ semver-parser-0.10.2 \ serde-1.0.136 \ serde_cbor-0.11.2 \ serde_derive-1.0.136 \ serde_json-1.0.79 \ sha-1-0.9.8 \ sha2-0.9.9 \ shlex-1.1.0 \ slab-0.4.5 \ smallvec-1.8.0 \ snow-0.8.0 \ static_assertions-1.1.0 \ subtle-2.4.1 \ syn-1.0.80 \ syn-mid-0.5.3 \ synstructure-0.12.6 \ tempfile-3.3.0 \ textwrap-0.11.0 \ thiserror-1.0.30 \ thiserror-impl-1.0.30 \ time-0.1.44 \ tinytemplate-1.2.1 \ toml-0.5.8 \ typenum-1.15.0 \ ucd-trie-0.1.3 \ unicode-segmentation-1.9.0 \ unicode-width-0.1.9 \ unicode-xid-0.2.2 \ universal-hash-0.4.1 \ unzip3-1.0.0 \ uuid-1.1.2 \ variant_count-1.1.0 \ version_check-0.9.4 \ walkdir-2.3.2 \ wasi-0.9.0+wasi-snapshot-preview1 \ wasi-0.10.0+wasi-snapshot-preview1 \ wasm-bindgen-0.2.79 \ wasm-bindgen-backend-0.2.79 \ wasm-bindgen-macro-0.2.79 \ wasm-bindgen-macro-support-0.2.79 \ wasm-bindgen-shared-0.2.79 \ web-sys-0.3.56 \ which-4.2.4 \ winapi-0.3.9 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-util-0.1.5 \ winapi-x86_64-pc-windows-gnu-0.4.0 \ x25519-dalek-1.1.1 \ zeroize-1.3.0 \ zeroize_derive-1.3.2 \ boring,boring-sys@git+https://github.com/signalapp/boring?branch=libsignal\#e1c719c0964ba37e6935355e9bf19821b072797e \ curve25519-dalek@git+https://github.com/signalapp/curve25519-dalek?branch=lizard2\#4f0aa6653c51598daa0a2f53b8ba54ce0eedfbdd MAKE_ENV= ELECTRON_OVERRIDE_DIST_PATH=${LOCALBASE}/share/electron18 \ ELECTRON_SKIP_BINARY_DOWNLOAD=1 \ HOME=${WRKDIR} \ PYTHON=${PYTHON_CMD} \ XDG_CACHE_HOME=${WRKDIR}/.cache MAKE_ENV+= RUSTC_BOOTSTRAP=aes,polyval USE_LDCONFIG= yes PLIST_FILES= lib/libsignal_node.so NODE_ARCH= ${ARCH:S/aarch64/arm64/:S/amd64/x64/:S/i386/ia32/:C/powerpc64.*/ppc64/} RUST_ARCH= ${ARCH:S/amd64/x86_64/:S/i386/i686/} .include .if ${ARCH:Mpowerpc64*} EXTRA_PATCHES= ${FILESDIR}/${ARCH}-patch-node_binding.gyp .endif post-patch: ${REINPLACE_CMD} "s#python3#${PYTHON_CMD}#" \ ${WRKSRC}/node/binding.gyp # Check hash here: https://github.com/signalapp/boring/tree/libsignal/boring-sys/deps post-extract: ${MV} ${WRKDIR}/boringssl-f1c75347daa2ea81a941e953f2263e0a4d970c8d/* ${WRKDIR}/boring-e1c719c0964ba37e6935355e9bf19821b072797e/boring-sys/deps/boringssl ${MV} ${WRKDIR}/boringssl-ae223d6138807a13006342edfeef32e813246b39/* ${WRKDIR}/boring-e1c719c0964ba37e6935355e9bf19821b072797e/boring-sys/deps/boringssl-fips do-build: ${ECHO_CMD} 'yarn-offline-mirror "../yarn-cache"' > ${WRKSRC}/.yarnrc cd ${WRKSRC}/node && \ ${SETENV} ${MAKE_ENV} yarn install --frozen-lockfile --ignore-optional #--offline cd ${WRKSRC}/node && \ ${SETENV} ${MAKE_ENV} yarn tsc do-install: ${INSTALL_DATA} ${WRKSRC}/node/build/Release/obj.target/libsignal_client_freebsd_${NODE_ARCH}.node/geni/rust/${RUST_ARCH}-unknown-freebsd/release/libsignal_node.so \ ${STAGEDIR}${PREFIX}/lib/ create-caches-tarball: # do some cleanup first ${RM} -r ${WRKDIR}/.cache/yarn/v6/.tmp ${FIND} ${WRKDIR}/.cache -type f -perm 755 -exec file {} \; | ${EGREP} "ELF|PE32+|Mach-O" | ${AWK} -F ':' '{print $$1}' | ${XARGS} ${RM} cd ${WRKDIR} && \ ${TAR} czf libsignal-node-${DISTVERSION}-yarn-cache.tar.gz .cache yarn-cache .include diff --git a/net-im/yume/Makefile b/net-im/yume/Makefile index 2ac657bf2409..5dc94ad982f9 100644 --- a/net-im/yume/Makefile +++ b/net-im/yume/Makefile @@ -1,151 +1,151 @@ PORTNAME= yume DISTVERSIONPREFIX= v DISTVERSION= 0.2.0 -PORTREVISION= 15 +PORTREVISION= 16 CATEGORIES= net-im MAINTAINER= yuri@FreeBSD.org COMMENT= Encrypted peer-to-peer IPv6 UDP messaging terminal LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE-MIT USES= cargo USE_GITHUB= yes GH_ACCOUNT= yamafaktory CARGO_CRATES= aead-0.2.0 \ ansi_term-0.11.0 \ arc-swap-0.4.4 \ async-attributes-1.1.1 \ async-std-1.6.0 \ async-task-3.0.0 \ atty-0.2.13 \ autocfg-0.1.7 \ autocfg-1.0.0 \ base64-0.12.1 \ bitflags-1.2.1 \ bumpalo-3.2.1 \ cc-1.0.52 \ cfg-if-0.1.10 \ chacha20-0.3.3 \ chacha20poly1305-0.4.1 \ clap-2.33.0 \ cloudabi-0.0.3 \ crossbeam-0.7.3 \ crossbeam-channel-0.4.0 \ crossbeam-deque-0.7.2 \ crossbeam-epoch-0.8.0 \ crossbeam-queue-0.2.1 \ crossbeam-utils-0.7.2 \ crossterm-0.17.5 \ crossterm_winapi-0.6.1 \ fuchsia-zircon-0.3.3 \ fuchsia-zircon-sys-0.3.3 \ futures-0.3.5 \ futures-channel-0.3.5 \ futures-core-0.3.5 \ futures-executor-0.3.5 \ futures-io-0.3.5 \ futures-macro-0.3.5 \ futures-sink-0.3.5 \ futures-task-0.3.5 \ futures-timer-3.0.2 \ futures-util-0.3.5 \ generic-array-0.12.3 \ gloo-timers-0.2.1 \ heck-0.3.1 \ hermit-abi-0.1.3 \ iovec-0.1.4 \ itoa-0.4.4 \ js-sys-0.3.39 \ kernel32-sys-0.2.2 \ kv-log-macro-1.0.4 \ lazy_static-1.4.0 \ libc-0.2.69 \ lock_api-0.3.3 \ log-0.4.8 \ memchr-2.3.3 \ memoffset-0.5.1 \ mio-0.6.21 \ miow-0.2.1 \ net2-0.2.33 \ nix-0.17.0 \ num_cpus-1.13.0 \ once_cell-1.3.1 \ parking_lot-0.10.0 \ parking_lot_core-0.7.0 \ pin-project-0.4.16 \ pin-project-internal-0.4.16 \ pin-project-lite-0.1.4 \ pin-utils-0.1.0 \ piper-0.1.2 \ poly1305-0.5.2 \ proc-macro-error-1.0.2 \ proc-macro-error-attr-1.0.2 \ proc-macro-hack-0.5.11 \ proc-macro-nested-0.1.3 \ proc-macro2-1.0.13 \ quote-1.0.2 \ redox_syscall-0.1.56 \ ring-0.16.13 \ rustc_version-0.2.3 \ ryu-1.0.2 \ scoped-tls-hkt-0.1.2 \ scopeguard-1.0.0 \ semver-0.9.0 \ semver-parser-0.7.0 \ send_wrapper-0.4.0 \ serde-1.0.110 \ serde_derive-1.0.110 \ serde_json-1.0.53 \ signal-hook-0.1.15 \ signal-hook-registry-1.2.0 \ slab-0.4.2 \ smallvec-1.1.0 \ smol-0.1.10 \ socket2-0.3.12 \ spin-0.5.2 \ stream-cipher-0.3.2 \ strsim-0.8.0 \ structopt-0.3.14 \ structopt-derive-0.4.7 \ subtle-2.2.2 \ syn-1.0.22 \ syn-mid-0.5.0 \ textwrap-0.11.0 \ thiserror-1.0.19 \ thiserror-impl-1.0.19 \ typenum-1.11.2 \ unicode-segmentation-1.6.0 \ unicode-width-0.1.7 \ unicode-xid-0.2.0 \ universal-hash-0.3.0 \ untrusted-0.7.1 \ vec_map-0.8.2 \ version_check-0.9.1 \ void-1.0.2 \ wasm-bindgen-0.2.62 \ wasm-bindgen-backend-0.2.62 \ wasm-bindgen-futures-0.4.12 \ wasm-bindgen-macro-0.2.62 \ wasm-bindgen-macro-support-0.2.62 \ wasm-bindgen-shared-0.2.62 \ web-sys-0.3.39 \ wepoll-binding-2.0.2 \ wepoll-sys-2.0.0 \ winapi-0.2.8 \ winapi-0.3.8 \ winapi-build-0.1.1 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-x86_64-pc-windows-gnu-0.4.0 \ ws2_32-sys-0.2.1 \ zeroize-1.1.0 PLIST_FILES= bin/${PORTNAME} post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/${PORTNAME} .include diff --git a/net-im/zkgroup/Makefile b/net-im/zkgroup/Makefile index d143a96ce5d5..70ff41e9dc2b 100644 --- a/net-im/zkgroup/Makefile +++ b/net-im/zkgroup/Makefile @@ -1,140 +1,140 @@ PORTNAME= zkgroup DISTVERSIONPREFIX= v DISTVERSION= 0.7.4 -PORTREVISION= 8 +PORTREVISION= 9 PORTEPOCH= 1 CATEGORIES= net-im MAINTAINER= 0mp@FreeBSD.org COMMENT= Library for the Signal Private Group System LICENSE= GPLv3 LICENSE_FILE= ${WRKSRC}/LICENSE USES= cargo USE_GITHUB= yes GH_ACCOUNT= signalapp USE_JAVA= yes JAVA_VERSION= 11+ USE_LDCONFIG= yes CARGO_CRATES= aead-0.4.1 \ aes-0.7.4 \ aes-gcm-siv-0.10.0 \ ascii-0.9.3 \ atty-0.2.14 \ autocfg-1.0.1 \ bincode-1.3.3 \ bitflags-1.2.1 \ block-buffer-0.7.3 \ block-padding-0.1.5 \ bstr-0.2.16 \ bumpalo-3.7.0 \ byte-tools-0.3.1 \ byteorder-1.4.3 \ cast-0.2.6 \ cesu8-1.1.0 \ cfg-if-0.1.10 \ cfg-if-1.0.0 \ cipher-0.3.0 \ clap-2.33.3 \ combine-3.8.1 \ cpufeatures-0.1.4 \ criterion-0.3.4 \ criterion-plot-0.4.3 \ crossbeam-channel-0.5.1 \ crossbeam-deque-0.8.0 \ crossbeam-epoch-0.9.5 \ crossbeam-utils-0.8.5 \ crypto-mac-0.7.0 \ csv-1.1.6 \ csv-core-0.1.10 \ ctr-0.7.0 \ digest-0.8.1 \ either-1.6.1 \ error-chain-0.12.4 \ fake-simd-0.1.2 \ generic-array-0.12.4 \ generic-array-0.14.4 \ getrandom-0.1.16 \ half-1.7.1 \ hermit-abi-0.1.18 \ hex-0.4.3 \ hmac-0.7.1 \ itertools-0.9.0 \ itertools-0.10.0 \ itoa-0.4.7 \ jni-0.16.0 \ jni-sys-0.3.0 \ js-sys-0.3.51 \ lazy_static-1.4.0 \ libc-0.2.95 \ log-0.4.14 \ memchr-2.4.0 \ memoffset-0.6.4 \ num-traits-0.2.14 \ num_cpus-1.13.0 \ oorandom-11.1.3 \ opaque-debug-0.2.3 \ opaque-debug-0.3.0 \ packed_simd-0.3.3 \ pest-2.1.3 \ plotters-0.3.1 \ plotters-backend-0.3.0 \ plotters-svg-0.3.0 \ polyval-0.5.1 \ proc-macro2-1.0.27 \ quote-1.0.9 \ rand_core-0.5.1 \ rayon-1.5.1 \ rayon-core-1.9.1 \ regex-1.5.4 \ regex-automata-0.1.10 \ regex-syntax-0.6.25 \ rustc_version-0.3.3 \ ryu-1.0.5 \ same-file-1.0.6 \ scopeguard-1.1.0 \ semver-0.11.0 \ semver-parser-0.10.2 \ serde-1.0.126 \ serde_cbor-0.11.1 \ serde_derive-1.0.126 \ serde_json-1.0.64 \ sha2-0.8.2 \ subtle-1.0.0 \ subtle-2.4.0 \ syn-1.0.72 \ textwrap-0.11.0 \ tinytemplate-1.2.1 \ typenum-1.13.0 \ ucd-trie-0.1.3 \ unicode-width-0.1.8 \ unicode-xid-0.2.2 \ universal-hash-0.4.0 \ unreachable-1.0.0 \ version_check-0.9.3 \ void-1.0.2 \ walkdir-2.3.2 \ wasi-0.9.0+wasi-snapshot-preview1 \ wasm-bindgen-0.2.74 \ wasm-bindgen-backend-0.2.74 \ wasm-bindgen-macro-0.2.74 \ wasm-bindgen-macro-support-0.2.74 \ wasm-bindgen-shared-0.2.74 \ web-sys-0.3.51 \ winapi-0.3.9 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-util-0.1.5 \ winapi-x86_64-pc-windows-gnu-0.4.0 \ zeroize-1.3.0 \ poksho@git+https://github.com/signalapp/poksho.git\#8bb8c61c18e7bbe93c094ed91be52b9f96c1c5cd \ curve25519-dalek@git+https://github.com/signalapp/curve25519-dalek.git?branch=lizard2\#477356e017c7cc2aa168f956786b34690870768f PLIST_FILES= lib/lib${PORTNAME}.so do-install: ${INSTALL_LIB} ${CARGO_TARGET_DIR}/${CARGO_BUILD_TARGET}/*/lib${PORTNAME}.so \ ${STAGEDIR}${PREFIX}/lib/ .include diff --git a/net-mgmt/bandwhich/Makefile b/net-mgmt/bandwhich/Makefile index 0a6a5062dae3..634212a00b5d 100644 --- a/net-mgmt/bandwhich/Makefile +++ b/net-mgmt/bandwhich/Makefile @@ -1,269 +1,269 @@ PORTNAME= bandwhich DISTVERSION= 0.20.0 -PORTREVISION= 17 +PORTREVISION= 18 CATEGORIES= net-mgmt MAINTAINER= petteri.valkonen@iki.fi COMMENT= Terminal bandwidth utilization tool LICENSE= MIT RUN_DEPENDS= lsof:sysutils/lsof USES= cargo USE_GITHUB= yes GH_ACCOUNT= imsnif CARGO_CRATES= adler-0.2.3 \ adler32-1.2.0 \ aho-corasick-0.7.6 \ ansi_term-0.11.0 \ arc-swap-0.4.3 \ async-trait-0.1.21 \ atty-0.2.13 \ autocfg-0.1.7 \ autocfg-1.0.1 \ backtrace-0.3.40 \ backtrace-sys-0.1.32 \ bitflags-0.5.0 \ bitflags-1.2.1 \ block-buffer-0.7.3 \ block-padding-0.1.5 \ byte-tools-0.3.1 \ byteorder-1.3.2 \ bytes-0.5.0 \ bzip2-0.3.3 \ bzip2-sys-0.1.9+1.0.8 \ c2-chacha-0.2.3 \ cargo-insta-0.11.0 \ cassowary-0.3.0 \ cc-1.0.47 \ cfg-if-0.1.9 \ chrono-0.4.9 \ clap-2.33.0 \ clicolors-control-1.0.1 \ cloudabi-0.0.3 \ console-0.7.7 \ console-0.8.0 \ console-0.9.1 \ core-foundation-0.7.0 \ core-foundation-sys-0.7.0 \ crc32fast-1.2.0 \ crossbeam-channel-0.4.2 \ crossbeam-deque-0.7.3 \ crossbeam-epoch-0.8.2 \ crossbeam-utils-0.7.2 \ crossterm-0.17.7 \ crossterm_winapi-0.6.1 \ derive-new-0.5.8 \ difference-2.0.0 \ digest-0.8.1 \ doc-comment-0.3.3 \ dtoa-0.4.4 \ either-1.5.3 \ encode_unicode-0.3.6 \ enum-as-inner-0.3.0 \ failure-0.1.6 \ failure_derive-0.1.6 \ fake-simd-0.1.2 \ flate2-1.0.17 \ fnv-1.0.6 \ foreign-types-0.3.2 \ foreign-types-shared-0.1.1 \ fuchsia-cprng-0.1.1 \ fuchsia-zircon-0.3.3 \ fuchsia-zircon-sys-0.3.3 \ futures-0.3.1 \ futures-channel-0.3.1 \ futures-core-0.3.1 \ futures-executor-0.3.1 \ futures-io-0.3.1 \ futures-macro-0.3.1 \ futures-sink-0.3.1 \ futures-task-0.3.1 \ futures-util-0.3.1 \ generic-array-0.12.3 \ getrandom-0.1.13 \ glob-0.2.11 \ heck-0.3.1 \ hermit-abi-0.1.15 \ hex-0.4.2 \ hostname-0.3.1 \ http_req-0.7.0 \ idna-0.2.0 \ insta-0.11.0 \ insta-0.12.0 \ iovec-0.1.4 \ ipconfig-0.2.1 \ ipnetwork-0.12.8 \ ipnetwork-0.16.0 \ itoa-0.4.4 \ kernel32-sys-0.2.2 \ lazy_static-1.4.0 \ libc-0.2.76 \ libflate-1.0.2 \ libflate_lz77-1.0.0 \ linked-hash-map-0.5.4 \ lock_api-0.3.4 \ log-0.3.9 \ log-0.4.8 \ lru-cache-0.1.2 \ maplit-1.0.2 \ match_cfg-0.1.0 \ matches-0.1.8 \ maybe-uninit-2.0.0 \ memchr-2.2.1 \ memoffset-0.5.5 \ miniz_oxide-0.4.1 \ mio-0.6.21 \ mio-0.7.0 \ miow-0.2.1 \ miow-0.3.5 \ native-tls-0.2.4 \ net2-0.2.33 \ netstat2-0.9.0 \ ntapi-0.3.4 \ num-derive-0.3.2 \ num-integer-0.1.41 \ num-traits-0.2.8 \ num_cpus-1.13.0 \ once_cell-1.4.1 \ opaque-debug-0.2.3 \ openssl-0.10.30 \ openssl-probe-0.1.2 \ openssl-sys-0.9.58 \ packet-builder-0.5.0 \ parking_lot-0.10.2 \ parking_lot_core-0.7.2 \ percent-encoding-2.1.0 \ pest-2.1.2 \ pest_derive-2.1.0 \ pest_generator-2.1.1 \ pest_meta-2.1.2 \ pin-project-lite-0.1.1 \ pin-utils-0.1.0-alpha.4 \ pkg-config-0.3.18 \ pnet-0.26.0 \ pnet_base-0.26.0 \ pnet_datalink-0.26.0 \ pnet_macros-0.26.0 \ pnet_macros_support-0.26.0 \ pnet_packet-0.26.0 \ pnet_sys-0.26.0 \ pnet_transport-0.26.0 \ podio-0.1.7 \ ppv-lite86-0.2.6 \ proc-macro-error-0.2.6 \ proc-macro-hack-0.5.11 \ proc-macro-nested-0.1.3 \ proc-macro2-0.4.30 \ proc-macro2-1.0.6 \ procfs-0.7.9 \ quick-error-1.2.2 \ quote-0.6.13 \ quote-1.0.2 \ rand-0.6.5 \ rand-0.7.2 \ rand_chacha-0.1.1 \ rand_chacha-0.2.1 \ rand_core-0.3.1 \ rand_core-0.4.2 \ rand_core-0.5.1 \ rand_hc-0.1.0 \ rand_hc-0.2.0 \ rand_isaac-0.1.1 \ rand_jitter-0.1.4 \ rand_os-0.1.3 \ rand_pcg-0.1.2 \ rand_xorshift-0.1.1 \ rayon-1.4.0 \ rayon-core-1.8.0 \ rdrand-0.4.0 \ redox_syscall-0.1.56 \ regex-1.3.1 \ regex-syntax-0.6.12 \ remove_dir_all-0.5.3 \ rle-decode-fast-1.0.1 \ rustc-demangle-0.1.16 \ rustc-serialize-0.3.24 \ ryu-1.0.2 \ same-file-1.0.5 \ schannel-0.1.19 \ scopeguard-1.0.0 \ security-framework-0.4.4 \ security-framework-sys-0.4.3 \ serde-1.0.102 \ serde_derive-1.0.102 \ serde_json-1.0.41 \ serde_yaml-0.8.11 \ sha-1-0.8.1 \ signal-hook-0.1.16 \ signal-hook-registry-1.2.1 \ slab-0.4.2 \ smallvec-0.6.13 \ smallvec-1.0.0 \ socket2-0.3.11 \ strsim-0.8.0 \ structopt-0.2.18 \ structopt-0.3.4 \ structopt-derive-0.2.18 \ structopt-derive-0.3.4 \ syn-0.15.44 \ syn-1.0.11 \ synstructure-0.12.3 \ syntex-0.42.2 \ syntex_errors-0.42.0 \ syntex_pos-0.42.0 \ syntex_syntax-0.42.0 \ sysinfo-0.15.1 \ tempfile-3.1.0 \ term-0.4.6 \ termios-0.3.1 \ textwrap-0.11.0 \ thiserror-1.0.20 \ thiserror-impl-1.0.20 \ thread_local-0.3.6 \ time-0.1.42 \ tokio-0.2.2 \ trust-dns-proto-0.18.1 \ trust-dns-resolver-0.18.1 \ tui-0.12.0 \ typenum-1.11.2 \ ucd-trie-0.1.2 \ unicase-2.6.0 \ unicode-bidi-0.3.4 \ unicode-normalization-0.1.9 \ unicode-segmentation-1.6.0 \ unicode-width-0.1.8 \ unicode-xid-0.0.3 \ unicode-xid-0.1.0 \ unicode-xid-0.2.0 \ url-2.1.0 \ uuid-0.7.4 \ uuid-0.8.1 \ vcpkg-0.2.10 \ vec_map-0.8.1 \ version_check-0.9.2 \ walkdir-2.2.9 \ wasi-0.7.0 \ widestring-0.4.0 \ winapi-0.2.8 \ winapi-0.3.8 \ winapi-build-0.1.1 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-util-0.1.2 \ winapi-x86_64-pc-windows-gnu-0.4.0 \ winreg-0.6.2 \ ws2_32-sys-0.2.1 \ yaml-rust-0.4.3 \ zip-0.5.6 \ resolv-conf@git+https://github.com/tailhook/resolv-conf?rev=83c0f25ebcb0615550488692c5213ca1ae4acd8f\#83c0f25ebcb0615550488692c5213ca1ae4acd8f PLIST_FILES= bin/bandwhich \ man/man1/bandwhich.1.gz post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/bandwhich ${INSTALL_MAN} ${WRKSRC}/docs/bandwhich.1 ${STAGEDIR}${MAN1PREFIX}/man/man1 .include diff --git a/net-mgmt/nfs-exporter/Makefile b/net-mgmt/nfs-exporter/Makefile index 54c19b2febca..528928b56380 100644 --- a/net-mgmt/nfs-exporter/Makefile +++ b/net-mgmt/nfs-exporter/Makefile @@ -1,105 +1,105 @@ PORTNAME= nfs-exporter DISTVERSIONPREFIX= v DISTVERSION= 0.3.1 -PORTREVISION= 10 +PORTREVISION= 11 CATEGORIES= net-mgmt MAINTAINER= asomers@FreeBSD.org COMMENT= Prometheus exporter for NFS statistics LICENSE= APACHE20 MIT LICENSE_COMB= dual LICENSE_FILE_APACHE20= ${WRKSRC}/LICENSE-APACHE LICENSE_FILE_MIT= ${WRKSRC}/LICENSE-MIT BUILD_DEPENDS= llvm-config${LLVM_DEFAULT}:devel/llvm${LLVM_DEFAULT} USES= cargo USE_GITHUB= yes GH_ACCOUNT= Axcient GH_PROJECT= freebsd-nfs-exporter USE_RC_SUBR= nfs_exporter CARGO_CRATES= aho-corasick-0.7.18 \ ansi_term-0.11.0 \ ascii-1.0.0 \ atty-0.2.14 \ autocfg-1.0.1 \ bindgen-0.59.1 \ bitflags-1.3.2 \ bitvec-0.19.5 \ cexpr-0.5.0 \ cfg-if-1.0.0 \ chrono-0.4.19 \ chunked_transfer-1.4.0 \ clang-sys-1.2.0 \ clap-2.33.3 \ env_logger-0.7.1 \ env_logger-0.8.4 \ fnv-1.0.7 \ form_urlencoded-1.0.1 \ funty-1.1.0 \ glob-0.3.0 \ hermit-abi-0.1.19 \ humantime-1.3.0 \ humantime-2.1.0 \ idna-0.2.3 \ instant-0.1.10 \ lazy_static-1.4.0 \ lazycell-1.3.0 \ libc-0.2.99 \ libloading-0.7.0 \ lock_api-0.4.4 \ log-0.4.14 \ matches-0.1.9 \ memchr-2.4.0 \ nom-6.1.2 \ num-integer-0.1.44 \ num-traits-0.2.14 \ parking_lot-0.11.1 \ parking_lot_core-0.8.3 \ peeking_take_while-0.1.2 \ percent-encoding-2.1.0 \ proc-macro2-1.0.28 \ prometheus-0.12.0 \ prometheus_exporter-0.8.2 \ quick-error-1.2.3 \ quote-1.0.9 \ radium-0.5.3 \ redox_syscall-0.2.10 \ regex-1.5.4 \ regex-syntax-0.6.25 \ rustc-hash-1.1.0 \ scopeguard-1.1.0 \ shlex-1.0.0 \ smallvec-1.6.1 \ strsim-0.8.0 \ syn-1.0.74 \ tap-1.0.1 \ termcolor-1.1.2 \ textwrap-0.11.0 \ thiserror-1.0.26 \ thiserror-impl-1.0.26 \ tiny_http-0.8.2 \ tinyvec-1.3.1 \ tinyvec_macros-0.1.0 \ unicode-bidi-0.3.6 \ unicode-normalization-0.1.19 \ unicode-width-0.1.8 \ unicode-xid-0.2.2 \ url-2.2.2 \ vec_map-0.8.2 \ version_check-0.9.3 \ which-3.1.1 \ winapi-0.3.9 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-util-0.1.5 \ winapi-x86_64-pc-windows-gnu-0.4.0 \ wyz-0.2.0 PLIST_FILES= bin/nfs-exporter post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/nfs-exporter .include diff --git a/net-p2p/cncli/Makefile b/net-p2p/cncli/Makefile index d46545f3e41a..f0a0dac1a886 100644 --- a/net-p2p/cncli/Makefile +++ b/net-p2p/cncli/Makefile @@ -1,259 +1,260 @@ PORTNAME= cncli DISTVERSIONPREFIX= v DISTVERSION= 5.1.0 +PORTREVISION= 1 CATEGORIES= net-p2p MAINTAINER= boris@zfs.ninja COMMENT= A community-based cardano-node CLI tool LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE NOT_FOR_ARCHS= i386 NOT_FOR_ARCHS_REASON= cryptoxide Rust crate uses AVX2 instructions USES= autoreconf:build cargo gmake libtool pkgconfig ssl USE_GITHUB= yes GH_ACCOUNT= cardano-community input-output-hk:sodium GH_PROJECT= ${PORTNAME} libsodium:sodium GH_TAGNAME= ${LIBSODIUM_HASH}:sodium LIBSODIUM_HASH= 66f017f16633f2060db25e17c170c2afa0f2a8a1 LIBS_PREFIX= ${WRKDIR}/libs_install CARGO_ENV= SODIUM_LIB_DIR=${LIBS_PREFIX}${PREFIX}/lib SODIUM_INCLUDE_DIR=${LIBS_PREFIX}${PREFIX}/include \ OPENSSL_LIB_DIR=${OPENSSLLIB} OPENSSL_INCLUDE_DIR=${OPENSSLINC} CARGO_CRATES= ahash-0.7.6 \ aho-corasick-0.7.18 \ ansi_term-0.12.1 \ arrayref-0.3.6 \ arrayvec-0.7.2 \ async-channel-1.6.1 \ async-executor-1.4.1 \ async-global-executor-2.2.0 \ async-io-1.7.0 \ async-lock-2.5.0 \ async-std-1.12.0 \ async-task-4.3.0 \ atomic-waker-1.0.0 \ atty-0.2.14 \ autocfg-1.1.0 \ autotools-0.2.5 \ az-1.2.1 \ base58-0.2.0 \ base64-0.13.0 \ bech32-0.8.1 \ bech32-0.9.0 \ bigdecimal-0.3.0 \ bitflags-1.3.2 \ blake2b_simd-1.0.0 \ blocking-1.2.0 \ bumpalo-3.10.0 \ byteorder-1.4.3 \ bytes-1.2.1 \ cache-padded-1.2.0 \ cc-1.0.73 \ cfg-if-0.1.10 \ cfg-if-1.0.0 \ chrono-0.4.20 \ chrono-tz-0.6.3 \ chrono-tz-build-0.0.3 \ clap-2.34.0 \ concurrent-queue-1.2.4 \ constant_time_eq-0.1.5 \ core-foundation-0.9.3 \ core-foundation-sys-0.8.3 \ crossbeam-channel-0.5.6 \ crossbeam-deque-0.8.2 \ crossbeam-epoch-0.9.10 \ crossbeam-utils-0.8.11 \ cryptoxide-0.4.2 \ ctor-0.1.23 \ either-1.7.0 \ encoding_rs-0.8.31 \ env_logger-0.7.1 \ env_logger-0.9.0 \ event-listener-2.5.3 \ fallible-iterator-0.2.0 \ fallible-streaming-iterator-0.1.9 \ fastrand-1.8.0 \ fnv-1.0.7 \ foreign-types-0.3.2 \ foreign-types-shared-0.1.1 \ form_urlencoded-1.0.1 \ futures-0.3.21 \ futures-channel-0.3.21 \ futures-core-0.3.21 \ futures-executor-0.3.21 \ futures-io-0.3.21 \ futures-lite-1.12.0 \ futures-macro-0.3.21 \ futures-sink-0.3.21 \ futures-task-0.3.21 \ futures-util-0.3.21 \ getrandom-0.2.7 \ gloo-timers-0.2.4 \ gmp-mpfr-sys-1.4.10 \ h2-0.3.13 \ half-1.8.2 \ hashbrown-0.12.3 \ hashlink-0.8.0 \ heck-0.3.3 \ hermit-abi-0.1.19 \ hex-0.4.3 \ http-0.2.8 \ http-body-0.4.5 \ httparse-1.7.1 \ httpdate-1.0.2 \ humantime-1.3.0 \ humantime-2.1.0 \ hyper-0.14.20 \ hyper-tls-0.5.0 \ idna-0.2.3 \ indexmap-1.9.1 \ instant-0.1.12 \ ipnet-2.5.0 \ itertools-0.10.3 \ itoa-1.0.3 \ js-sys-0.3.59 \ kv-log-macro-1.0.7 \ lazy_static-1.4.0 \ libc-0.2.127 \ libsqlite3-sys-0.25.1 \ log-0.4.17 \ matches-0.1.9 \ memchr-2.5.0 \ memoffset-0.6.5 \ mime-0.3.16 \ minicbor-0.17.1 \ minicbor-derive-0.11.0 \ mio-0.8.4 \ native-tls-0.2.10 \ net2-0.2.37 \ num-bigint-0.4.3 \ num-integer-0.1.45 \ num-traits-0.2.15 \ num_cpus-1.13.1 \ once_cell-1.13.0 \ openssl-0.10.41 \ openssl-macros-0.1.0 \ openssl-probe-0.1.5 \ openssl-sys-0.9.75 \ pallas-addresses-0.13.0 \ pallas-codec-0.13.0 \ pallas-crypto-0.13.0 \ pallas-miniprotocols-0.13.0 \ pallas-multiplexer-0.13.0 \ pallas-primitives-0.13.0 \ pallas-traverse-0.13.0 \ parking-2.0.0 \ parse-zoneinfo-0.3.0 \ percent-encoding-2.1.0 \ phf-0.11.0 \ phf_codegen-0.11.0 \ phf_generator-0.11.0 \ phf_shared-0.11.0 \ pin-project-lite-0.2.9 \ pin-utils-0.1.0 \ pkg-config-0.3.25 \ polling-2.2.0 \ ppv-lite86-0.2.16 \ pretty_env_logger-0.4.0 \ proc-macro-error-1.0.4 \ proc-macro-error-attr-1.0.4 \ proc-macro2-1.0.43 \ quick-error-1.2.3 \ quote-1.0.21 \ rand-0.8.5 \ rand_chacha-0.3.1 \ rand_core-0.6.3 \ rayon-1.5.3 \ rayon-core-1.9.3 \ redox_syscall-0.2.16 \ regex-1.6.0 \ regex-syntax-0.6.27 \ remove_dir_all-0.5.3 \ reqwest-0.11.11 \ rug-1.17.0 \ rusqlite-0.28.0 \ ryu-1.0.11 \ schannel-0.1.20 \ scopeguard-1.1.0 \ security-framework-2.6.1 \ security-framework-sys-2.6.1 \ serde-1.0.142 \ serde-aux-3.1.0 \ serde_cbor-0.11.2 \ serde_derive-1.0.142 \ serde_json-1.0.83 \ serde_urlencoded-0.7.1 \ siphasher-0.3.10 \ slab-0.4.7 \ smallvec-1.9.0 \ socket2-0.4.4 \ strsim-0.8.0 \ structopt-0.3.26 \ structopt-derive-0.4.18 \ syn-1.0.99 \ tempfile-3.3.0 \ termcolor-1.1.3 \ textwrap-0.11.0 \ thiserror-1.0.32 \ thiserror-impl-1.0.32 \ time-0.1.44 \ tinyvec-1.6.0 \ tinyvec_macros-0.1.0 \ tokio-1.20.1 \ tokio-native-tls-0.3.0 \ tokio-util-0.7.3 \ tower-service-0.3.2 \ tracing-0.1.36 \ tracing-core-0.1.29 \ try-lock-0.2.3 \ uncased-0.9.7 \ unicode-bidi-0.3.8 \ unicode-ident-1.0.3 \ unicode-normalization-0.1.21 \ unicode-segmentation-1.9.0 \ unicode-width-0.1.9 \ url-2.2.2 \ value-bag-1.0.0-alpha.9 \ vcpkg-0.2.15 \ vec_map-0.8.2 \ version_check-0.9.4 \ waker-fn-1.1.0 \ want-0.3.0 \ wasi-0.10.0+wasi-snapshot-preview1 \ wasi-0.11.0+wasi-snapshot-preview1 \ wasm-bindgen-0.2.82 \ wasm-bindgen-backend-0.2.82 \ wasm-bindgen-futures-0.4.32 \ wasm-bindgen-macro-0.2.82 \ wasm-bindgen-macro-support-0.2.82 \ wasm-bindgen-shared-0.2.82 \ web-sys-0.3.59 \ wepoll-ffi-0.1.2 \ winapi-0.3.9 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-util-0.1.5 \ winapi-x86_64-pc-windows-gnu-0.4.0 \ windows-sys-0.36.1 \ windows_aarch64_msvc-0.36.1 \ windows_i686_gnu-0.36.1 \ windows_i686_msvc-0.36.1 \ windows_x86_64_gnu-0.36.1 \ windows_x86_64_msvc-0.36.1 \ winreg-0.10.1 PLIST_FILES= bin/cncli pre-build: cd ${WRKSRC_sodium} && ./autogen.sh cd ${WRKSRC_sodium} && ./configure --prefix=${PREFIX} --with-pthreads --disable-shared cd ${WRKSRC_sodium} && gmake -j${MAKE_JOBS_NUMBER} && gmake DESTDIR=${LIBS_PREFIX} install ${MKDIR} ${LIBS_PREFIX}${PREFIX}/libdata/pkgconfig ${MV} ${LIBS_PREFIX}${PREFIX}/lib/pkgconfig/libsodium.pc ${LIBS_PREFIX}${PREFIX}/libdata/pkgconfig/libsodium.pc .include diff --git a/net-p2p/openethereum/Makefile b/net-p2p/openethereum/Makefile index 0388c3d015f1..16fe0d40220a 100644 --- a/net-p2p/openethereum/Makefile +++ b/net-p2p/openethereum/Makefile @@ -1,25 +1,25 @@ PORTNAME= openethereum DISTVERSIONPREFIX= v DISTVERSION= 3.2.6 -PORTREVISION= 11 +PORTREVISION= 12 CATEGORIES= net-p2p MAINTAINER= ale@FreeBSD.org COMMENT= Fast and feature-rich multi-network Ethereum client LICENSE= GPLv3 LICENSE_FILE= ${WRKSRC}/LICENSE USES= cargo USE_GITHUB= yes PLIST_FILES= bin/${PORTNAME} CARGO_FEATURES= final CARGO_TEST= yes post-install: @${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/${PORTNAME} .include diff --git a/net-p2p/oura/Makefile b/net-p2p/oura/Makefile index e18c4aacccb0..29ca1c65e585 100644 --- a/net-p2p/oura/Makefile +++ b/net-p2p/oura/Makefile @@ -1,317 +1,318 @@ PORTNAME= oura DISTVERSIONPREFIX= v DISTVERSION= 1.5.3 +PORTREVISION= 1 CATEGORIES= net-p2p MAINTAINER= boris@zfs.ninja COMMENT= A pipeline that connects to the tip of a Cardano node LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE USES= cargo USE_GITHUB= yes GH_ACCOUNT= txpipe USE_RC_SUBR= oura CARGO_CRATES= addr2line-0.17.0 \ adler-1.0.2 \ aho-corasick-0.7.18 \ arc-swap-1.5.0 \ ascii-1.0.0 \ async-compression-0.3.12 \ async-trait-0.1.52 \ atty-0.2.14 \ autocfg-1.1.0 \ aws-config-0.12.0 \ aws-endpoint-0.12.0 \ aws-http-0.12.0 \ aws-sdk-lambda-0.12.0 \ aws-sdk-s3-0.12.0 \ aws-sdk-sqs-0.12.0 \ aws-sdk-sso-0.12.0 \ aws-sdk-sts-0.12.0 \ aws-sig-auth-0.12.0 \ aws-sigv4-0.12.0 \ aws-smithy-async-0.42.0 \ aws-smithy-client-0.42.0 \ aws-smithy-eventstream-0.42.0 \ aws-smithy-http-0.42.0 \ aws-smithy-http-tower-0.42.0 \ aws-smithy-json-0.42.0 \ aws-smithy-query-0.42.0 \ aws-smithy-types-0.42.0 \ aws-smithy-xml-0.42.0 \ aws-types-0.12.0 \ backtrace-0.3.64 \ base-x-0.2.8 \ base58-0.2.0 \ base64-0.11.0 \ base64-0.13.0 \ bech32-0.8.1 \ bech32-0.9.0 \ bitflags-1.3.2 \ build_const-0.2.2 \ bumpalo-3.9.1 \ byteorder-0.5.3 \ byteorder-1.4.3 \ bytes-1.1.0 \ bytes-utils-0.1.1 \ cc-1.0.72 \ cfg-if-0.1.10 \ cfg-if-1.0.0 \ chrono-0.4.19 \ chunked_transfer-1.4.0 \ clap-3.1.18 \ clap_lex-0.2.0 \ cloud-pubsub-0.8.0 \ combine-4.6.4 \ config-0.13.1 \ const_fn-0.4.9 \ core-foundation-0.9.3 \ core-foundation-sys-0.8.3 \ crc-1.8.1 \ crc32fast-1.3.2 \ crossterm-0.23.2 \ crossterm_winapi-0.9.0 \ cryptoxide-0.4.2 \ ct-logs-0.8.0 \ darling-0.13.1 \ darling_core-0.13.1 \ darling_macro-0.13.1 \ discard-1.0.4 \ dtoa-0.4.8 \ dyn-clone-1.0.4 \ either-1.6.1 \ elasticsearch-7.14.0-alpha.1 \ encoding_rs-0.8.30 \ env_logger-0.9.0 \ error-chain-0.10.0 \ fastrand-1.7.0 \ file-rotate-0.6.0 \ flate2-0.2.20 \ flate2-1.0.22 \ fnv-1.0.7 \ foreign-types-0.3.2 \ foreign-types-shared-0.1.1 \ form_urlencoded-1.0.1 \ futures-0.3.21 \ futures-channel-0.3.21 \ futures-core-0.3.21 \ futures-executor-0.3.21 \ futures-io-0.3.21 \ futures-macro-0.3.21 \ futures-sink-0.3.21 \ futures-task-0.3.21 \ futures-util-0.3.21 \ getrandom-0.2.4 \ gimli-0.26.1 \ goauth-0.9.0 \ h2-0.3.11 \ half-1.8.2 \ hashbrown-0.11.2 \ heck-0.4.0 \ hermit-abi-0.1.19 \ hex-0.4.3 \ http-0.2.6 \ http-body-0.4.4 \ httparse-1.6.0 \ httpdate-1.0.2 \ humantime-2.1.0 \ hyper-0.14.17 \ hyper-rustls-0.22.1 \ hyper-tls-0.5.0 \ ident_case-1.0.1 \ idna-0.2.3 \ indexmap-1.8.0 \ instant-0.1.12 \ ipnet-2.3.1 \ itertools-0.10.3 \ itoa-0.4.8 \ itoa-1.0.1 \ js-sys-0.3.56 \ kafka-0.8.0 \ lazy_static-1.4.0 \ libc-0.2.121 \ lock_api-0.4.6 \ log-0.3.9 \ log-0.4.17 \ matches-0.1.9 \ md5-0.7.0 \ memchr-2.4.1 \ merge-0.1.0 \ merge_derive-0.1.0 \ mime-0.3.16 \ minicbor-0.17.1 \ minicbor-derive-0.11.0 \ minimal-lexical-0.2.1 \ miniz-sys-0.1.12 \ miniz_oxide-0.4.4 \ mio-0.8.2 \ miow-0.3.7 \ murmur3-0.5.1 \ native-tls-0.2.8 \ net2-0.2.37 \ nom-7.1.0 \ ntapi-0.3.6 \ num-integer-0.1.44 \ num-traits-0.2.14 \ num_cpus-1.13.1 \ num_threads-0.1.3 \ object-0.27.1 \ once_cell-1.10.0 \ openssl-0.10.40 \ openssl-macros-0.1.0 \ openssl-probe-0.1.5 \ openssl-src-111.17.0+1.1.1m \ openssl-sys-0.9.73 \ os_str_bytes-6.0.0 \ pallas-0.13.1 \ pallas-addresses-0.13.1 \ pallas-codec-0.13.1 \ pallas-crypto-0.13.1 \ pallas-miniprotocols-0.13.1 \ pallas-multiplexer-0.13.1 \ pallas-primitives-0.13.1 \ pallas-traverse-0.13.1 \ parking_lot-0.11.2 \ parking_lot-0.12.0 \ parking_lot_core-0.8.5 \ parking_lot_core-0.9.1 \ pathdiff-0.2.1 \ percent-encoding-2.1.0 \ pin-project-1.0.10 \ pin-project-internal-1.0.10 \ pin-project-lite-0.2.8 \ pin-utils-0.1.0 \ pkg-config-0.3.24 \ ppv-lite86-0.2.16 \ proc-macro-error-1.0.4 \ proc-macro-error-attr-1.0.4 \ proc-macro-hack-0.5.19 \ proc-macro2-1.0.36 \ prometheus-0.13.0 \ prometheus_exporter-0.8.4 \ quote-1.0.15 \ rand-0.8.4 \ rand_chacha-0.3.1 \ rand_core-0.6.3 \ rand_hc-0.3.1 \ redis-0.21.5 \ redox_syscall-0.2.10 \ ref_slice-1.2.1 \ regex-1.5.6 \ regex-syntax-0.6.26 \ remove_dir_all-0.5.3 \ reqwest-0.11.10 \ ring-0.16.20 \ rustc-demangle-0.1.21 \ rustc_version-0.2.3 \ rustc_version-0.4.0 \ rustls-0.19.1 \ rustls-native-certs-0.5.0 \ rustversion-1.0.6 \ ryu-1.0.9 \ schannel-0.1.19 \ scopeguard-1.1.0 \ sct-0.6.1 \ security-framework-2.6.1 \ security-framework-sys-2.6.1 \ semver-0.9.0 \ semver-1.0.6 \ semver-parser-0.7.0 \ serde-1.0.137 \ serde_derive-1.0.137 \ serde_json-1.0.81 \ serde_urlencoded-0.7.1 \ serde_with-1.12.0 \ serde_with_macros-1.5.1 \ sha1-0.6.1 \ sha1_smol-1.0.0 \ signal-hook-0.3.13 \ signal-hook-mio-0.2.3 \ signal-hook-registry-1.4.0 \ simpl-0.1.0 \ slab-0.4.5 \ smallvec-1.8.0 \ smpl_jwt-0.6.1 \ snap-0.2.5 \ socket2-0.4.4 \ spin-0.5.2 \ standback-0.2.17 \ static_assertions-1.1.0 \ stdweb-0.4.20 \ stdweb-derive-0.5.3 \ stdweb-internal-macros-0.2.9 \ stdweb-internal-runtime-0.1.5 \ strsim-0.10.0 \ strum-0.24.0 \ strum_macros-0.24.0 \ syn-1.0.92 \ tempfile-3.3.0 \ termcolor-1.1.2 \ textwrap-0.15.0 \ thiserror-1.0.31 \ thiserror-impl-1.0.31 \ time-0.1.44 \ time-0.2.27 \ time-0.3.7 \ time-macros-0.1.1 \ time-macros-0.2.3 \ time-macros-impl-0.1.2 \ tiny_http-0.10.0 \ tinyvec-1.5.1 \ tinyvec_macros-0.1.0 \ tokio-1.18.2 \ tokio-native-tls-0.3.0 \ tokio-rustls-0.22.0 \ tokio-stream-0.1.8 \ tokio-util-0.6.9 \ tokio-util-0.7.2 \ toml-0.5.8 \ tower-0.4.12 \ tower-layer-0.3.1 \ tower-service-0.3.1 \ tracing-0.1.30 \ tracing-attributes-0.1.20 \ tracing-core-0.1.22 \ try-lock-0.2.3 \ twox-hash-1.6.2 \ unicode-bidi-0.3.7 \ unicode-normalization-0.1.19 \ unicode-xid-0.2.2 \ untrusted-0.7.1 \ url-2.2.2 \ urlencoding-2.1.0 \ vcpkg-0.2.15 \ version_check-0.9.4 \ void-1.0.2 \ want-0.3.0 \ wasi-0.10.0+wasi-snapshot-preview1 \ wasi-0.11.0+wasi-snapshot-preview1 \ wasm-bindgen-0.2.79 \ wasm-bindgen-backend-0.2.79 \ wasm-bindgen-futures-0.4.29 \ wasm-bindgen-macro-0.2.79 \ wasm-bindgen-macro-support-0.2.79 \ wasm-bindgen-shared-0.2.79 \ web-sys-0.3.56 \ webpki-0.21.4 \ winapi-0.3.9 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-util-0.1.5 \ winapi-x86_64-pc-windows-gnu-0.4.0 \ windows-sys-0.32.0 \ windows_aarch64_msvc-0.32.0 \ windows_i686_gnu-0.32.0 \ windows_i686_msvc-0.32.0 \ windows_x86_64_gnu-0.32.0 \ windows_x86_64_msvc-0.32.0 \ winreg-0.10.1 \ xmlparser-0.13.3 \ zeroize-1.5.3 PLIST_FILES= bin/oura .include diff --git a/net/findomain/Makefile b/net/findomain/Makefile index 14bc2878a268..46c50dc46e52 100644 --- a/net/findomain/Makefile +++ b/net/findomain/Makefile @@ -1,289 +1,289 @@ PORTNAME= findomain DISTVERSION= 5.0.0 -PORTREVISION= 10 +PORTREVISION= 11 CATEGORIES= net security MAINTAINER= lcook@FreeBSD.org COMMENT= Cross-platform subdomain enumerator LICENSE= GPLv3 LICENSE_FILE= ${WRKSRC}/LICENSE USES= cargo ssl USE_GITHUB= yes GH_ACCOUNT= Findomain CARGO_CRATES= addr2line-0.16.0 \ adler-1.0.2 \ aho-corasick-0.7.18 \ ansi_term-0.11.0 \ arrayvec-0.5.2 \ async-compression-0.3.8 \ async-trait-0.1.51 \ atty-0.2.14 \ autocfg-0.1.7 \ autocfg-1.0.1 \ backtrace-0.3.61 \ base64-0.9.3 \ base64-0.10.1 \ base64-0.13.0 \ bitflags-1.2.1 \ block-buffer-0.9.0 \ bumpalo-3.7.0 \ byteorder-1.4.3 \ bytes-1.0.1 \ cc-1.0.69 \ cfg-if-1.0.0 \ clap-2.33.3 \ cloudabi-0.0.3 \ config-0.11.0 \ core-foundation-0.9.1 \ core-foundation-sys-0.8.2 \ cpufeatures-0.1.5 \ crc32fast-1.2.1 \ crossbeam-channel-0.5.1 \ crossbeam-deque-0.8.1 \ crossbeam-epoch-0.9.5 \ crossbeam-utils-0.8.5 \ crypto-mac-0.10.1 \ darling-0.10.2 \ darling_core-0.10.2 \ darling_macro-0.10.2 \ data-encoding-2.3.2 \ derive_builder-0.8.1 \ derive_builder_core-0.8.1 \ digest-0.9.0 \ either-1.6.1 \ encoding_rs-0.8.28 \ enum-as-inner-0.3.3 \ failure-0.1.8 \ failure_derive-0.1.8 \ fallible-iterator-0.2.0 \ flate2-1.0.20 \ fnv-1.0.7 \ foreign-types-0.3.2 \ foreign-types-shared-0.1.1 \ form_urlencoded-1.0.1 \ fuchsia-cprng-0.1.1 \ futures-0.3.16 \ futures-channel-0.3.16 \ futures-core-0.3.16 \ futures-executor-0.3.16 \ futures-io-0.3.16 \ futures-macro-0.3.16 \ futures-sink-0.3.16 \ futures-task-0.3.16 \ futures-util-0.3.16 \ generic-array-0.14.4 \ getrandom-0.1.16 \ getrandom-0.2.3 \ gimli-0.25.0 \ h2-0.3.3 \ hashbrown-0.11.2 \ heck-0.3.3 \ hermit-abi-0.1.19 \ hmac-0.10.1 \ hostname-0.3.1 \ http-0.2.4 \ http-body-0.4.3 \ httparse-1.4.1 \ httpdate-1.0.1 \ hyper-0.10.16 \ hyper-0.14.11 \ hyper-tls-0.5.0 \ ident_case-1.0.1 \ idna-0.1.5 \ idna-0.2.3 \ indexmap-1.7.0 \ instant-0.1.10 \ ipconfig-0.2.2 \ ipnet-2.3.1 \ itoa-0.4.7 \ js-sys-0.3.52 \ language-tags-0.2.2 \ lazy_static-1.4.0 \ lexical-core-0.7.6 \ libc-0.2.98 \ linked-hash-map-0.5.4 \ lock_api-0.4.4 \ log-0.3.9 \ log-0.4.14 \ lru-cache-0.1.2 \ match_cfg-0.1.0 \ matches-0.1.8 \ md-5-0.9.1 \ memchr-2.4.0 \ memoffset-0.6.4 \ mime-0.2.6 \ mime-0.3.16 \ miniz_oxide-0.4.4 \ mio-0.7.13 \ miow-0.3.7 \ native-tls-0.2.7 \ nom-5.1.2 \ ntapi-0.3.6 \ num-traits-0.1.43 \ num-traits-0.2.14 \ num_cpus-1.13.0 \ object-0.26.0 \ once_cell-1.8.0 \ opaque-debug-0.3.0 \ openssl-0.10.35 \ openssl-probe-0.1.4 \ openssl-sys-0.9.65 \ parking_lot-0.11.1 \ parking_lot_core-0.8.3 \ percent-encoding-1.0.1 \ percent-encoding-2.1.0 \ phf-0.8.0 \ phf_shared-0.8.0 \ pin-project-lite-0.2.7 \ pin-utils-0.1.0 \ pkg-config-0.3.19 \ postgres-0.19.1 \ postgres-protocol-0.6.1 \ postgres-types-0.2.1 \ ppv-lite86-0.2.10 \ proc-macro-hack-0.5.19 \ proc-macro-nested-0.1.7 \ proc-macro2-1.0.28 \ quick-error-1.2.3 \ quote-1.0.9 \ rand-0.6.5 \ rand-0.7.3 \ rand-0.8.4 \ rand_chacha-0.1.1 \ rand_chacha-0.2.2 \ rand_chacha-0.3.1 \ rand_core-0.3.1 \ rand_core-0.4.2 \ rand_core-0.5.1 \ rand_core-0.6.3 \ rand_hc-0.1.0 \ rand_hc-0.2.0 \ rand_hc-0.3.1 \ rand_isaac-0.1.1 \ rand_jitter-0.1.4 \ rand_os-0.1.3 \ rand_pcg-0.1.2 \ rand_xorshift-0.1.1 \ rayon-1.5.1 \ rayon-core-1.9.1 \ rdrand-0.4.0 \ redox_syscall-0.2.10 \ regex-1.5.4 \ regex-syntax-0.6.25 \ remove_dir_all-0.5.3 \ reqwest-0.11.4 \ resolv-conf-0.7.0 \ rust-ini-0.13.0 \ rustc-demangle-0.1.20 \ ryu-1.0.5 \ safemem-0.3.3 \ schannel-0.1.19 \ scopeguard-1.1.0 \ security-framework-2.3.1 \ security-framework-sys-2.3.0 \ serde-0.8.23 \ serde-1.0.127 \ serde-hjson-0.9.1 \ serde_derive-1.0.127 \ serde_json-1.0.66 \ serde_urlencoded-0.7.0 \ sha1-0.6.0 \ sha2-0.9.5 \ siphasher-0.3.6 \ slab-0.4.4 \ smallvec-1.6.1 \ socket2-0.3.19 \ socket2-0.4.1 \ static_assertions-1.1.0 \ stringprep-0.1.2 \ strsim-0.8.0 \ strsim-0.9.3 \ subtle-2.4.1 \ syn-1.0.74 \ synstructure-0.12.5 \ tempfile-3.2.0 \ textwrap-0.11.0 \ thiserror-1.0.26 \ thiserror-impl-1.0.26 \ time-0.1.43 \ tinyvec-1.3.1 \ tinyvec_macros-0.1.0 \ tokio-1.9.0 \ tokio-native-tls-0.3.0 \ tokio-postgres-0.7.2 \ tokio-util-0.6.7 \ toml-0.5.8 \ tower-service-0.3.1 \ tracing-0.1.26 \ tracing-core-0.1.18 \ traitobject-0.1.0 \ try-lock-0.2.3 \ typeable-0.1.2 \ typenum-1.13.0 \ unicase-1.4.2 \ unicode-bidi-0.3.5 \ unicode-normalization-0.1.19 \ unicode-segmentation-1.8.0 \ unicode-width-0.1.8 \ unicode-xid-0.2.2 \ url-1.7.2 \ url-2.2.2 \ vcpkg-0.2.15 \ vec_map-0.8.2 \ version_check-0.1.5 \ version_check-0.9.3 \ want-0.3.0 \ wasi-0.9.0+wasi-snapshot-preview1 \ wasi-0.10.2+wasi-snapshot-preview1 \ wasm-bindgen-0.2.75 \ wasm-bindgen-backend-0.2.75 \ wasm-bindgen-futures-0.4.25 \ wasm-bindgen-macro-0.2.75 \ wasm-bindgen-macro-support-0.2.75 \ wasm-bindgen-shared-0.2.75 \ web-sys-0.3.52 \ websocket-0.23.0 \ which-3.1.1 \ widestring-0.4.3 \ winapi-0.3.9 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-x86_64-pc-windows-gnu-0.4.0 \ winreg-0.6.2 \ winreg-0.7.0 \ yaml-rust-0.3.5 \ yaml-rust-0.4.5 \ trust-dns-proto,trust-dns-resolver@git+https://github.com/Edu4rdSHL/trust-dns?branch=main\#451a00fbe3c0972adb4cdbd9d2e2f2a39a44da0e \ headless_chrome@git+https://github.com/Edu4rdSHL/rust-headless-chrome\#54ae12d9d33ed41f9f4b60b489e706d501d4f58a WRKSRC= ${WRKDIR}/Findomain-${DISTVERSION} PLIST_FILES= bin/${PORTNAME} \ man/man1/${PORTNAME}.1.gz _DOCS= docs/create_telegram_webhook.md README.md PORTDOCS= ${_DOCS:T} OPTIONS_DEFINE= DOCS PGSQL SCREENSHOT PGSQL_DESC= Enable subdomain monitoring support SCREENSHOT_DESC= Enable website screenshot support (uses headless chrome) PGSQL_USES= pgsql PGSQL_VARS= WANT_PGSQL=server SCREENSHOT_RUN_DEPENDS= chrome:www/chromium post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/${PORTNAME} ${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.1 \ ${STAGEDIR}${MAN1PREFIX}/man/man1 post-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} cd ${WRKSRC} && \ ${INSTALL_DATA} ${_DOCS} \ ${STAGEDIR}${DOCSDIR} .include diff --git a/net/gemserv/Makefile b/net/gemserv/Makefile index 23c41609ed2a..bb9179684e54 100644 --- a/net/gemserv/Makefile +++ b/net/gemserv/Makefile @@ -1,130 +1,130 @@ PORTNAME= gemserv DISTVERSIONPREFIX= v DISTVERSION= 0.4.5 -PORTREVISION= 12 +PORTREVISION= 13 CATEGORIES= net MASTER_SITES= https://git.sr.ht/~int80h/${PORTNAME}/archive/${DISTVERSIONFULL}${EXTRACT_SUFX}?dummy=/ DISTFILES= ${PORTNAME}-${DISTVERSIONPREFIX}${PORTVERSION}${EXTRACT_SUFX} MAINTAINER= ea@uoga.net COMMENT= Gemini server written in Rust LICENSE= APACHE20 BSD3CLAUSE MIT MPL20 LICENSE_COMB= multi LICENSE_FILE_MIT= ${WRKSRC}/LICENSE USES= cargo ssl USE_RC_SUBR= gemserv CARGO_CRATES= atty-0.2.14 \ autocfg-1.0.1 \ bitflags-1.2.1 \ bytes-0.5.6 \ cc-1.0.66 \ cfg-if-0.1.10 \ cfg-if-1.0.0 \ chrono-0.4.19 \ colored-1.9.3 \ foreign-types-0.3.2 \ foreign-types-shared-0.1.1 \ form_urlencoded-1.0.0 \ futures-core-0.3.8 \ futures-macro-0.3.8 \ futures-task-0.3.8 \ futures-util-0.3.8 \ idna-0.2.0 \ iovec-0.1.4 \ lazy_static-1.4.0 \ libc-0.2.81 \ log-0.4.11 \ matches-0.1.8 \ memchr-2.3.4 \ mime-0.3.16 \ mime_guess-2.0.3 \ mio-0.6.23 \ mio-uds-0.6.8 \ net2-0.2.37 \ num-integer-0.1.44 \ num-traits-0.2.14 \ num_cpus-1.13.0 \ once_cell-1.5.2 \ openssl-0.10.32 \ percent-encoding-2.1.0 \ pin-project-1.0.2 \ pin-project-internal-1.0.2 \ pin-project-lite-0.1.11 \ pin-utils-0.1.0 \ pkg-config-0.3.19 \ proc-macro-hack-0.5.19 \ proc-macro-nested-0.1.6 \ proc-macro2-1.0.24 \ quote-1.0.8 \ serde-1.0.118 \ serde_derive-1.0.118 \ signal-hook-registry-1.3.0 \ simple_logger-1.11.0 \ slab-0.4.2 \ syn-1.0.55 \ time-0.1.44 \ tinyvec-1.1.0 \ tinyvec_macros-0.1.0 \ tokio-0.2.24 \ tokio-openssl-0.4.0 \ toml-0.5.8 \ unicase-2.6.0 \ unicode-bidi-0.3.4 \ unicode-normalization-0.1.16 \ unicode-xid-0.2.1 \ url-2.2.0 \ version_check-0.9.2 \ winapi-0.2.8 \ winapi-0.3.9 \ mio-named-pipes-0.1.7 \ openssl-sys-0.9.61 \ hermit-abi-0.1.18 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-x86_64-pc-windows-gnu-0.4.0 \ fuchsia-zircon-0.3.3 \ fuchsia-zircon-sys-0.3.3 \ kernel32-sys-0.2.2 \ miow-0.2.2 \ miow-0.3.7 \ wasi-0.10.0+wasi-snapshot-preview1 \ winapi-build-0.1.1 \ ws2_32-sys-0.2.1 \ vcpkg-0.2.12 CARGO_FEATURES= SUB_FILES= config.toml.sample index.gmi.sample SUB_LIST= GEMSERV_GROUP=${GEMSERV_GROUP} \ GEMSERV_USER=${GEMSERV_USER} USERS= ${GEMSERV_USER} GROUPS= ${GEMSERV_GROUP} PLIST_SUB= GEMSERV_DATADIR=${PREFIX}/gemini/gemserv-dist OPTIONS_DEFINE= STATICONLY OPTIONS_DEFAULT= STATICONLY_DESC= Only serve static files, no additional features (CGI..) STATICONLY_VARS= CARGO_FEATURES+=--no-default-features GEMSERV_GROUP?= gemserv GEMSERV_USER?= gemserv post-install: ${MKDIR} ${STAGEDIR}${ETCDIR} ${INSTALL_DATA} ${WRKSRC}/config.toml ${STAGEDIR}${ETCDIR}/config.toml-dist ${INSTALL_DATA} ${WRKDIR}/config.toml.sample ${STAGEDIR}${ETCDIR} ${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_MAN} ${WRKSRC}/README ${WRKSRC}/UPDATING ${STAGEDIR}${DOCSDIR} ${MKDIR} ${STAGEDIR}${EXAMPLESDIR} (cd ${WRKSRC}/cgi-scripts && ${COPYTREE_SHARE} . ${STAGEDIR}${EXAMPLESDIR}) ${MKDIR} ${STAGEDIR}${PREFIX}/gemini/gemserv-dist ${INSTALL_DATA} ${WRKDIR}/index.gmi.sample ${STAGEDIR}${EXAMPLESDIR} .include diff --git a/net/krill/Makefile b/net/krill/Makefile index 33a63094d120..1091f0faceab 100644 --- a/net/krill/Makefile +++ b/net/krill/Makefile @@ -1,277 +1,277 @@ PORTNAME= krill DISTVERSIONPREFIX= v DISTVERSION= 0.9.6 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= net MAINTAINER= jaap@NLnetLabs.nl COMMENT= RPKI daemon, Certificate Authority and Publication Server LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE ONLY_FOR_ARCHS= amd64 i386 ONLY_FOR_ARCHS_REASON= ring crate not ported to other architectures USES= cargo ssl USE_GITHUB= yes GH_ACCOUNT= NLnetLabs USE_RC_SUBR= ${PORTNAME} # SUB_FILES= pkg-message USERS= ${PORTNAME} GROUPS= ${PORTNAME} CARGO_CRATES= addr2line-0.17.0 \ adler-1.0.2 \ adler32-1.2.0 \ aho-corasick-0.7.18 \ ansi_term-0.12.1 \ ascii-1.0.0 \ ascii-canvas-3.0.0 \ atty-0.2.14 \ autocfg-1.1.0 \ backtrace-0.3.64 \ base64-0.13.0 \ basic-cookies-0.1.4 \ bcder-0.6.1 \ bit-set-0.5.2 \ bit-vec-0.6.3 \ bitflags-1.3.2 \ block-buffer-0.9.0 \ bumpalo-3.9.1 \ bytes-1.1.0 \ cc-1.0.73 \ cfg-if-1.0.0 \ chrono-0.4.19 \ chunked_transfer-1.4.0 \ cipher-0.2.5 \ clap-2.34.0 \ core-foundation-0.9.3 \ core-foundation-sys-0.8.3 \ cpufeatures-0.2.1 \ crc32fast-1.3.2 \ crunchy-0.2.2 \ crypto-mac-0.10.1 \ ctrlc-3.2.1 \ deunicode-0.4.3 \ diff-0.1.12 \ digest-0.9.0 \ dirs-next-2.0.0 \ dirs-sys-next-0.1.2 \ either-1.6.1 \ ena-0.14.0 \ encoding_rs-0.8.30 \ error-chain-0.11.0 \ fastrand-1.7.0 \ fern-0.5.9 \ fixedbitset-0.2.0 \ fnv-1.0.7 \ foreign-types-0.3.2 \ foreign-types-shared-0.1.1 \ form_urlencoded-1.0.1 \ fslock-0.2.1 \ futures-0.3.21 \ futures-channel-0.3.21 \ futures-core-0.3.21 \ futures-executor-0.3.21 \ futures-io-0.3.21 \ futures-macro-0.3.21 \ futures-sink-0.3.21 \ futures-task-0.3.21 \ futures-util-0.3.21 \ generic-array-0.14.5 \ getrandom-0.2.4 \ gimli-0.26.1 \ h2-0.3.11 \ hashbrown-0.11.2 \ hermit-abi-0.1.19 \ hex-0.4.3 \ hmac-0.10.1 \ http-0.2.6 \ http-body-0.4.4 \ httparse-1.6.0 \ httpdate-1.0.2 \ hyper-0.14.17 \ hyper-tls-0.5.0 \ idna-0.2.3 \ impl-trait-for-tuples-0.2.2 \ indexmap-1.8.0 \ instant-0.1.12 \ intervaltree-0.2.7 \ ipnet-2.3.1 \ itertools-0.9.0 \ itertools-0.10.3 \ itoa-1.0.1 \ jmespatch-0.3.0 \ js-sys-0.3.56 \ lalrpop-0.19.7 \ lalrpop-util-0.19.7 \ lazy_static-1.4.0 \ libc-0.2.119 \ libflate-1.1.2 \ libflate_lz77-1.1.0 \ lock_api-0.4.6 \ log-0.4.14 \ maplit-1.0.2 \ matchers-0.0.1 \ matches-0.1.9 \ memchr-2.4.1 \ memoffset-0.6.5 \ mime-0.3.16 \ miniz_oxide-0.4.4 \ mio-0.8.0 \ miow-0.3.7 \ native-tls-0.2.8 \ new_debug_unreachable-1.0.4 \ nix-0.23.1 \ ntapi-0.3.7 \ num-bigint-0.4.3 \ num-integer-0.1.44 \ num-traits-0.2.14 \ num_cpus-1.13.1 \ oauth2-4.1.0 \ object-0.27.1 \ once_cell-1.9.0 \ opaque-debug-0.3.0 \ openidconnect-2.2.0 \ openssl-0.10.38 \ openssl-probe-0.1.5 \ openssl-src-111.17.0+1.1.1m \ openssl-sys-0.9.72 \ ordered-float-1.1.1 \ oso-0.12.4 \ parking_lot-0.11.2 \ parking_lot_core-0.8.5 \ pbkdf2-0.7.5 \ percent-encoding-2.1.0 \ petgraph-0.5.1 \ phf_shared-0.10.0 \ pico-args-0.4.2 \ pin-project-lite-0.2.8 \ pin-utils-0.1.0 \ pkg-config-0.3.24 \ polar-core-0.12.4 \ ppv-lite86-0.2.16 \ precomputed-hash-0.1.1 \ priority-queue-1.2.1 \ proc-macro2-1.0.36 \ quick-xml-0.22.0 \ quote-1.0.15 \ rand-0.8.5 \ rand_chacha-0.3.1 \ rand_core-0.6.3 \ redox_syscall-0.2.10 \ redox_users-0.4.0 \ regex-1.5.5 \ regex-automata-0.1.10 \ regex-syntax-0.6.25 \ remove_dir_all-0.5.3 \ reqwest-0.11.9 \ ring-0.16.20 \ rle-decode-fast-1.0.3 \ rpassword-5.0.1 \ rpki-0.13.2 \ rustc-demangle-0.1.21 \ rustc_version-0.2.3 \ rustls-0.19.1 \ rustversion-1.0.6 \ ryu-1.0.9 \ salsa20-0.7.2 \ schannel-0.1.19 \ scopeguard-1.1.0 \ scrypt-0.6.5 \ sct-0.6.1 \ security-framework-2.6.1 \ security-framework-sys-2.6.1 \ semver-0.9.0 \ semver-parser-0.7.0 \ serde-1.0.136 \ serde-value-0.6.0 \ serde_derive-1.0.136 \ serde_json-1.0.79 \ serde_path_to_error-0.1.7 \ serde_urlencoded-0.7.1 \ sha2-0.9.9 \ sharded-slab-0.1.4 \ siphasher-0.3.9 \ slab-0.4.5 \ slug-0.1.4 \ smallvec-1.8.0 \ socket2-0.4.4 \ spin-0.5.2 \ string_cache-0.8.3 \ strsim-0.8.0 \ subtle-2.4.1 \ syn-1.0.86 \ syslog-4.0.1 \ tempfile-3.3.0 \ term-0.7.0 \ textwrap-0.11.0 \ thiserror-1.0.30 \ thiserror-impl-1.0.30 \ thread_local-1.1.4 \ time-0.1.43 \ tiny-keccak-2.0.2 \ tiny_http-0.8.2 \ tinyvec-1.5.1 \ tinyvec_macros-0.1.0 \ tokio-1.17.0 \ tokio-macros-1.7.0 \ tokio-native-tls-0.3.0 \ tokio-rustls-0.22.0 \ tokio-util-0.6.9 \ toml-0.5.8 \ tower-service-0.3.1 \ tracing-0.1.31 \ tracing-attributes-0.1.19 \ tracing-core-0.1.22 \ tracing-log-0.1.2 \ tracing-serde-0.1.3 \ tracing-subscriber-0.2.25 \ try-lock-0.2.3 \ typenum-1.15.0 \ unicode-bidi-0.3.7 \ unicode-normalization-0.1.19 \ unicode-width-0.1.9 \ unicode-xid-0.2.2 \ untrusted-0.7.1 \ url-2.2.2 \ urlparse-0.7.3 \ uuid-0.8.2 \ valuable-0.1.0 \ vcpkg-0.2.15 \ vec_map-0.8.2 \ version_check-0.9.4 \ want-0.3.0 \ wasi-0.10.2+wasi-snapshot-preview1 \ wasm-bindgen-0.2.79 \ wasm-bindgen-backend-0.2.79 \ wasm-bindgen-futures-0.4.29 \ wasm-bindgen-macro-0.2.79 \ wasm-bindgen-macro-support-0.2.79 \ wasm-bindgen-shared-0.2.79 \ web-sys-0.3.56 \ webpki-0.21.4 \ winapi-0.3.9 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-x86_64-pc-windows-gnu-0.4.0 \ winreg-0.7.0 \ xml-rs-0.8.4 post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/krill ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/krillc ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/krillup @${MKDIR} ${STAGEDIR}/${PREFIX}/etc/krill ${INSTALL_DATA} ${WRKSRC}/defaults/krill.conf \ ${STAGEDIR}${PREFIX}/etc/krill/krill.conf.sample ${INSTALL_MAN} ${WRKSRC}/doc/krill.1 ${STAGEDIR}${PREFIX}/man/man1/ ${INSTALL_MAN} ${WRKSRC}/doc/krillc.1 ${STAGEDIR}${PREFIX}/man/man1/ ${INSTALL_MAN} ${WRKSRC}/doc/krillup.1 ${STAGEDIR}${PREFIX}/man/man1/ ${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/defaults/krill.conf ${STAGEDIR}${DOCSDIR} ${MKDIR} ${STAGEDIR}/var/krill .include diff --git a/net/oha/Makefile b/net/oha/Makefile index ff99ae366fe7..301b4eb6a29d 100644 --- a/net/oha/Makefile +++ b/net/oha/Makefile @@ -1,239 +1,239 @@ PORTNAME= oha DISTVERSIONPREFIX= v DISTVERSION= 0.5.2 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= net MAINTAINER= otis@FreeBSD.org COMMENT= Web load generator LICENSE= MIT USES= cargo ssl USE_GITHUB= yes GH_ACCOUNT= hatoo CARGO_CRATES= anyhow-1.0.56 \ assert_cmd-2.0.4 \ async-trait-0.1.53 \ atty-0.2.14 \ autocfg-1.1.0 \ average-0.13.1 \ base64-0.13.0 \ bitflags-1.3.2 \ block-buffer-0.9.0 \ block-buffer-0.10.2 \ bstr-0.2.17 \ buf_redux-0.8.4 \ bumpalo-3.9.1 \ byte-unit-4.0.14 \ byteorder-1.4.3 \ bytes-1.1.0 \ cassowary-0.3.0 \ cc-1.0.73 \ cfg-if-1.0.0 \ clap-3.1.6 \ clap_derive-3.1.4 \ core-foundation-0.9.3 \ core-foundation-sys-0.8.3 \ cpufeatures-0.2.2 \ crossterm-0.22.1 \ crossterm_winapi-0.9.0 \ crypto-common-0.1.3 \ data-encoding-2.3.2 \ difflib-0.4.0 \ digest-0.9.0 \ digest-0.10.3 \ doc-comment-0.3.3 \ easy-cast-0.4.4 \ either-1.6.1 \ enum-as-inner-0.4.0 \ fastrand-1.7.0 \ float-ord-0.3.2 \ flume-0.10.12 \ fnv-1.0.7 \ foreign-types-0.3.2 \ foreign-types-shared-0.1.1 \ form_urlencoded-1.0.1 \ futures-0.3.21 \ futures-channel-0.3.21 \ futures-core-0.3.21 \ futures-executor-0.3.21 \ futures-io-0.3.21 \ futures-macro-0.3.21 \ futures-sink-0.3.21 \ futures-task-0.3.21 \ futures-util-0.3.21 \ generic-array-0.14.5 \ get-port-4.0.0 \ getrandom-0.2.6 \ h2-0.3.12 \ hashbrown-0.11.2 \ headers-0.3.7 \ headers-core-0.2.0 \ heck-0.4.0 \ hermit-abi-0.1.19 \ hostname-0.3.1 \ http-0.2.6 \ http-body-0.4.4 \ httparse-1.6.0 \ httpdate-1.0.2 \ humantime-2.1.0 \ hyper-0.14.18 \ idna-0.2.3 \ indexmap-1.8.0 \ instant-0.1.12 \ ipconfig-0.3.0 \ ipnet-2.4.0 \ itertools-0.10.3 \ itoa-1.0.1 \ js-sys-0.3.56 \ lazy_static-1.4.0 \ libc-0.2.121 \ libm-0.2.2 \ linked-hash-map-0.5.4 \ lock_api-0.4.6 \ log-0.4.16 \ lru-cache-0.1.2 \ match_cfg-0.1.0 \ matches-0.1.9 \ memchr-2.4.1 \ mime-0.3.16 \ mime_guess-2.0.4 \ mio-0.7.14 \ mio-0.8.2 \ miow-0.3.7 \ multipart-0.18.0 \ nanorand-0.7.0 \ native-tls-0.2.10 \ ntapi-0.3.7 \ num-traits-0.2.14 \ num_cpus-1.13.1 \ once_cell-1.10.0 \ opaque-debug-0.3.0 \ openssl-0.10.38 \ openssl-probe-0.1.5 \ openssl-sys-0.9.72 \ os_str_bytes-6.0.0 \ parking_lot-0.11.2 \ parking_lot-0.12.0 \ parking_lot_core-0.8.5 \ parking_lot_core-0.9.1 \ percent-encoding-2.1.0 \ pin-project-1.0.10 \ pin-project-internal-1.0.10 \ pin-project-lite-0.2.8 \ pin-utils-0.1.0 \ pkg-config-0.3.24 \ ppv-lite86-0.2.16 \ predicates-2.1.1 \ predicates-core-1.0.3 \ predicates-tree-1.0.5 \ proc-macro-error-1.0.4 \ proc-macro-error-attr-1.0.4 \ proc-macro2-1.0.36 \ quick-error-1.2.3 \ quote-1.0.17 \ rand-0.8.5 \ rand_chacha-0.3.1 \ rand_core-0.6.3 \ redox_syscall-0.2.12 \ regex-automata-0.1.10 \ remove_dir_all-0.5.3 \ resolv-conf-0.7.0 \ ring-0.16.20 \ rlimit-0.7.0 \ rustls-0.20.4 \ rustls-native-certs-0.6.2 \ rustls-pemfile-1.0.0 \ ryu-1.0.9 \ safemem-0.3.3 \ schannel-0.1.19 \ scoped-tls-1.0.0 \ scopeguard-1.1.0 \ sct-0.7.0 \ security-framework-2.6.1 \ security-framework-sys-2.6.1 \ serde-1.0.136 \ serde_json-1.0.79 \ serde_urlencoded-0.7.1 \ sha-1-0.9.8 \ sha-1-0.10.0 \ signal-hook-0.3.13 \ signal-hook-mio-0.2.3 \ signal-hook-registry-1.4.0 \ slab-0.4.5 \ smallvec-1.8.0 \ socket2-0.4.4 \ spin-0.5.2 \ spin-0.9.2 \ strsim-0.10.0 \ syn-1.0.90 \ tempfile-3.3.0 \ termcolor-1.1.3 \ termtree-0.2.4 \ textwrap-0.15.0 \ thiserror-1.0.30 \ thiserror-impl-1.0.30 \ tinyvec-1.5.1 \ tinyvec_macros-0.1.0 \ tokio-1.17.0 \ tokio-macros-1.7.0 \ tokio-native-tls-0.3.0 \ tokio-rustls-0.23.3 \ tokio-stream-0.1.8 \ tokio-tungstenite-0.15.0 \ tokio-util-0.6.9 \ tower-service-0.3.1 \ tracing-0.1.32 \ tracing-core-0.1.23 \ trust-dns-proto-0.21.1 \ trust-dns-resolver-0.21.1 \ try-lock-0.2.3 \ tui-0.17.0 \ tungstenite-0.14.0 \ twoway-0.1.8 \ typenum-1.15.0 \ unicase-2.6.0 \ unicode-bidi-0.3.7 \ unicode-normalization-0.1.19 \ unicode-segmentation-1.9.0 \ unicode-width-0.1.9 \ unicode-xid-0.2.2 \ untrusted-0.7.1 \ url-2.2.2 \ utf-8-0.7.6 \ utf8-width-0.1.6 \ vcpkg-0.2.15 \ version_check-0.9.4 \ wait-timeout-0.2.0 \ want-0.3.0 \ warp-0.3.2 \ wasi-0.10.2+wasi-snapshot-preview1 \ wasi-0.11.0+wasi-snapshot-preview1 \ wasm-bindgen-0.2.79 \ wasm-bindgen-backend-0.2.79 \ wasm-bindgen-macro-0.2.79 \ wasm-bindgen-macro-support-0.2.79 \ wasm-bindgen-shared-0.2.79 \ web-sys-0.3.56 \ webpki-0.22.0 \ widestring-0.5.1 \ winapi-0.3.9 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-util-0.1.5 \ winapi-x86_64-pc-windows-gnu-0.4.0 \ windows-sys-0.32.0 \ windows_aarch64_msvc-0.32.0 \ windows_i686_gnu-0.32.0 \ windows_i686_msvc-0.32.0 \ windows_x86_64_gnu-0.32.0 \ windows_x86_64_msvc-0.32.0 \ winreg-0.7.0 PLIST_FILES= bin/oha post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/oha .include diff --git a/net/proby/Makefile b/net/proby/Makefile index cf545e25566b..8eff742bb8c9 100644 --- a/net/proby/Makefile +++ b/net/proby/Makefile @@ -1,236 +1,236 @@ PORTNAME= proby DISTVERSIONPREFIX= v DISTVERSION= 1.0.2 -PORTREVISION= 18 +PORTREVISION= 19 CATEGORIES= net MAINTAINER= yuri@FreeBSD.org COMMENT= Check whether hosts are reachable on certain ports LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= cargo USE_GITHUB= yes GH_ACCOUNT= svenstaro CARGO_CRATES= actix-codec-0.2.0 \ actix-connect-1.0.2 \ actix-http-1.0.1 \ actix-macros-0.1.2 \ actix-router-0.2.4 \ actix-rt-1.1.1 \ actix-server-1.0.3 \ actix-service-1.0.6 \ actix-testing-1.0.1 \ actix-threadpool-0.3.3 \ actix-tls-1.0.0 \ actix-utils-1.0.6 \ actix-web-2.0.0 \ actix-web-codegen-0.2.2 \ addr2line-0.13.0 \ adler-0.2.3 \ aho-corasick-0.7.13 \ ansi_term-0.11.0 \ anyhow-1.0.32 \ arc-swap-0.4.7 \ assert_cmd-1.0.1 \ async-trait-0.1.36 \ atty-0.2.14 \ autocfg-1.0.0 \ awc-1.0.1 \ backtrace-0.3.50 \ base64-0.11.0 \ bitflags-1.2.1 \ brotli-sys-0.3.2 \ brotli2-0.3.2 \ bumpalo-3.4.0 \ byteorder-1.3.4 \ bytes-0.4.12 \ bytes-0.5.6 \ bytestring-0.1.5 \ cc-1.0.58 \ cfg-if-0.1.10 \ chrono-0.4.13 \ clap-2.33.2 \ cloudabi-0.1.0 \ copyless-0.1.5 \ crc32fast-1.2.0 \ crossbeam-channel-0.3.9 \ crossbeam-utils-0.6.6 \ curl-0.4.31 \ curl-sys-0.4.34+curl-7.71.1 \ derive_more-0.99.9 \ difference-2.0.0 \ doc-comment-0.3.3 \ dtoa-0.4.6 \ either-1.5.3 \ encoding_rs-0.8.23 \ enum-as-inner-0.3.3 \ failure-0.1.8 \ failure_derive-0.1.8 \ flate2-1.0.16 \ fnv-1.0.7 \ fuchsia-zircon-0.3.3 \ fuchsia-zircon-sys-0.3.3 \ futures-0.1.29 \ futures-0.3.5 \ futures-channel-0.3.5 \ futures-channel-preview-0.3.0-alpha.19 \ futures-core-0.3.5 \ futures-core-preview-0.3.0-alpha.19 \ futures-executor-0.3.5 \ futures-executor-preview-0.3.0-alpha.19 \ futures-io-0.3.5 \ futures-io-preview-0.3.0-alpha.19 \ futures-macro-0.3.5 \ futures-preview-0.3.0-alpha.19 \ futures-sink-0.3.5 \ futures-sink-preview-0.3.0-alpha.19 \ futures-task-0.3.5 \ futures-util-0.3.5 \ futures-util-preview-0.3.0-alpha.19 \ fxhash-0.2.1 \ getrandom-0.1.14 \ gimli-0.22.0 \ h2-0.2.6 \ hashbrown-0.8.2 \ heck-0.3.1 \ hermit-abi-0.1.15 \ hostname-0.3.1 \ http-0.1.21 \ http-0.2.1 \ httparse-1.3.4 \ idna-0.2.0 \ indexmap-1.5.1 \ instant-0.1.6 \ iovec-0.1.4 \ ipconfig-0.2.2 \ isahc-0.7.6 \ itoa-0.4.6 \ js-sys-0.3.44 \ kernel32-sys-0.2.2 \ language-tags-0.2.2 \ lazy_static-1.4.0 \ libc-0.2.74 \ libnghttp2-sys-0.1.4+1.41.0 \ libz-sys-1.0.25 \ linked-hash-map-0.5.3 \ lock_api-0.4.1 \ log-0.4.11 \ lru-cache-0.1.2 \ match_cfg-0.1.0 \ matches-0.1.8 \ memchr-2.3.3 \ mime-0.3.16 \ mime_guess-2.0.3 \ miniz_oxide-0.4.0 \ mio-0.6.22 \ mio-uds-0.6.8 \ miow-0.2.1 \ net2-0.2.34 \ num-integer-0.1.43 \ num-traits-0.2.12 \ num_cpus-1.13.0 \ object-0.20.0 \ once_cell-1.4.0 \ openssl-probe-0.1.2 \ openssl-sys-0.9.58 \ parking_lot-0.11.0 \ parking_lot_core-0.8.0 \ percent-encoding-2.1.0 \ pin-project-0.4.23 \ pin-project-internal-0.4.23 \ pin-project-lite-0.1.7 \ pin-utils-0.1.0 \ pkg-config-0.3.18 \ port_check-0.1.5 \ ppv-lite86-0.2.8 \ predicates-1.0.5 \ predicates-core-1.0.0 \ predicates-tree-1.0.0 \ proc-macro-error-1.0.4 \ proc-macro-error-attr-1.0.4 \ proc-macro-hack-0.5.18 \ proc-macro-nested-0.1.6 \ proc-macro2-1.0.19 \ quick-error-1.2.3 \ quote-1.0.7 \ rand-0.7.3 \ rand_chacha-0.2.2 \ rand_core-0.5.1 \ rand_hc-0.2.0 \ redox_syscall-0.1.57 \ regex-1.3.9 \ regex-syntax-0.6.18 \ resolv-conf-0.6.3 \ rustc-demangle-0.1.16 \ ryu-1.0.5 \ schannel-0.1.19 \ scopeguard-1.1.0 \ serde-1.0.114 \ serde_derive-1.0.114 \ serde_json-1.0.57 \ serde_urlencoded-0.6.1 \ serde_with-1.4.0 \ serde_with_macros-1.1.0 \ sha1-0.6.0 \ signal-hook-registry-1.2.1 \ simplelog-0.8.0 \ slab-0.4.2 \ sluice-0.4.2 \ smallvec-1.4.1 \ socket2-0.3.12 \ strsim-0.8.0 \ structopt-0.3.16 \ structopt-derive-0.4.9 \ surf-1.0.3 \ syn-1.0.38 \ synstructure-0.12.4 \ termcolor-1.1.0 \ textwrap-0.11.0 \ thread_local-1.0.1 \ threadpool-1.8.1 \ time-0.1.43 \ tinyvec-0.3.3 \ tokio-0.2.22 \ tokio-io-0.1.13 \ tokio-util-0.2.0 \ tokio-util-0.3.1 \ tracing-0.1.18 \ tracing-core-0.1.13 \ treeline-0.1.0 \ trust-dns-proto-0.18.0-alpha.2 \ trust-dns-resolver-0.18.0-alpha.2 \ unicase-2.6.0 \ unicode-bidi-0.3.4 \ unicode-normalization-0.1.13 \ unicode-segmentation-1.6.0 \ unicode-width-0.1.8 \ unicode-xid-0.2.1 \ url-2.1.1 \ vcpkg-0.2.10 \ vec_map-0.8.2 \ version_check-0.9.2 \ wait-timeout-0.2.0 \ wasi-0.9.0+wasi-snapshot-preview1 \ wasm-bindgen-0.2.67 \ wasm-bindgen-backend-0.2.67 \ wasm-bindgen-futures-0.3.27 \ wasm-bindgen-macro-0.2.67 \ wasm-bindgen-macro-support-0.2.67 \ wasm-bindgen-shared-0.2.67 \ web-sys-0.3.44 \ widestring-0.4.2 \ winapi-0.2.8 \ winapi-0.3.9 \ winapi-build-0.1.1 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-util-0.1.5 \ winapi-x86_64-pc-windows-gnu-0.4.0 \ winreg-0.6.2 \ ws2_32-sys-0.2.1 PLIST_FILES= bin/${PORTNAME} .include diff --git a/net/quiche/Makefile b/net/quiche/Makefile index 8107f36f7c62..6fd38287eb30 100644 --- a/net/quiche/Makefile +++ b/net/quiche/Makefile @@ -1,147 +1,147 @@ PORTNAME= quiche PORTVERSION= 0.12.0 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= net MAINTAINER= junho.choi@gmail.com COMMENT= Savoury implementation of the QUIC transport protocol and HTTP/3 LICENSE= BSD2CLAUSE LICENSE_FILE= ${WRKSRC}/COPYING USES= cargo USE_GITHUB= yes USE_LDCONFIG= yes GH_ACCOUNT= cloudflare GH_TAGNAME= ${PORTVERSION} GH_TUPLE= google:boringssl:f1c75347d:boringssl/quiche/deps/boringssl CARGO_CRATES= aho-corasick-0.7.18 \ atty-0.2.14 \ autocfg-1.1.0 \ bindgen-0.59.2 \ bitflags-1.3.2 \ boring-sys-2.0.0 \ bumpalo-3.9.1 \ cc-1.0.72 \ cexpr-0.6.0 \ cfg-if-0.1.10 \ cfg-if-1.0.0 \ clang-sys-1.3.1 \ cmake-0.1.48 \ darling-0.13.1 \ darling_core-0.13.1 \ darling_macro-0.13.1 \ docopt-1.1.1 \ env_logger-0.6.2 \ fnv-1.0.7 \ fuchsia-zircon-0.3.3 \ fuchsia-zircon-sys-0.3.3 \ glob-0.3.0 \ hashbrown-0.11.2 \ hermit-abi-0.1.19 \ humantime-1.3.0 \ ident_case-1.0.1 \ idna-0.1.5 \ indexmap-1.8.0 \ iovec-0.1.4 \ itoa-1.0.1 \ js-sys-0.3.56 \ kernel32-sys-0.2.2 \ lazy_static-1.4.0 \ lazycell-1.3.0 \ libc-0.2.117 \ libloading-0.7.3 \ libm-0.2.2 \ log-0.4.14 \ matches-0.1.9 \ memchr-2.4.1 \ minimal-lexical-0.2.1 \ mio-0.6.23 \ miow-0.2.2 \ net2-0.2.37 \ nom-7.1.0 \ once_cell-1.9.0 \ peeking_take_while-0.1.2 \ percent-encoding-1.0.1 \ proc-macro2-1.0.36 \ quick-error-1.2.3 \ quote-1.0.15 \ regex-1.5.4 \ regex-syntax-0.6.25 \ ring-0.16.20 \ rustc-hash-1.1.0 \ rustversion-1.0.6 \ ryu-1.0.9 \ serde-1.0.136 \ serde_derive-1.0.136 \ serde_json-1.0.78 \ serde_with-1.12.0 \ serde_with_macros-1.5.1 \ shlex-1.1.0 \ slab-0.4.5 \ spin-0.5.2 \ strsim-0.10.0 \ syn-1.0.86 \ termcolor-1.1.2 \ tinyvec-1.5.1 \ tinyvec_macros-0.1.0 \ unicode-bidi-0.3.7 \ unicode-normalization-0.1.19 \ unicode-xid-0.2.2 \ untrusted-0.7.1 \ url-1.7.2 \ version_check-0.9.4 \ wasm-bindgen-0.2.79 \ wasm-bindgen-backend-0.2.79 \ wasm-bindgen-macro-0.2.79 \ wasm-bindgen-macro-support-0.2.79 \ wasm-bindgen-shared-0.2.79 \ web-sys-0.3.56 \ winapi-0.2.8 \ winapi-0.3.9 \ winapi-build-0.1.1 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-util-0.1.5 \ winapi-x86_64-pc-windows-gnu-0.4.0 \ ws2_32-sys-0.2.1 CARGO_FEATURES= --no-default-features PLIST_FILES= bin/quiche-client \ bin/quiche-server \ include/quiche.h \ lib/libquiche.a \ lib/libquiche.so PORTDOCS= README.md OPTIONS_DEFINE= DOCS QLOG OPTIONS_DEFAULT=DOCS QLOG QLOG_DESC= Enable qlog support QLOG_VARS= CARGO_FEATURES+=qlog post-patch: @${GREP} -FRl -- '-D_XOPEN_SOURCE=700' ${WRKSRC}/quiche/deps/boringssl | \ ${XARGS} ${REINPLACE_CMD} -e 's,-D_XOPEN_SOURCE=700,,' # build libquiche and apps do-build: @${CARGO_CARGO_RUN} build \ --verbose \ --workspace \ ${CARGO_BUILD_ARGS} # install quiche apps and libquiche do-install: ${INSTALL_DATA} ${WRKSRC}/quiche/include/quiche.h ${STAGEDIR}${PREFIX}/include ${INSTALL_LIB} ${CARGO_TARGET_DIR}/${CARGO_BUILD_TARGET}/*/libquiche.so ${STAGEDIR}${PREFIX}/lib ${INSTALL_LIB} ${CARGO_TARGET_DIR}/${CARGO_BUILD_TARGET}/*/libquiche.a ${STAGEDIR}${PREFIX}/lib ${INSTALL_PROGRAM} ${CARGO_TARGET_DIR}/${CARGO_BUILD_TARGET}/*/quiche-server ${STAGEDIR}${PREFIX}/bin ${INSTALL_PROGRAM} ${CARGO_TARGET_DIR}/${CARGO_BUILD_TARGET}/*/quiche-client ${STAGEDIR}${PREFIX}/bin do-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/README.md ${STAGEDIR}${DOCSDIR} .include diff --git a/net/rabbiteer/Makefile b/net/rabbiteer/Makefile index 7099e1351f49..3610efc3b782 100644 --- a/net/rabbiteer/Makefile +++ b/net/rabbiteer/Makefile @@ -1,86 +1,86 @@ PORTNAME= rabbiteer DISTVERSION= 1.4.1 -PORTREVISION= 40 +PORTREVISION= 41 CATEGORIES= net MAINTAINER= dch@FreeBSD.org COMMENT= AMQP & RabbitMQ command-line tool LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENCE-MIT USES= cargo USE_GITHUB= yes GH_ACCOUNT= algesten GH_PROJECT= ${PORTNAME}-rs GH_TAGNAME= c881238 CARGO_CRATES= aho-corasick-0.5.3 \ amq-proto-0.1.0 \ amqp-0.1.1 \ ansi_term-0.11.0 \ atty-0.2.11 \ backtrace-0.3.9 \ backtrace-sys-0.1.24 \ bit-vec-0.4.4 \ bitflags-1.0.4 \ byteorder-0.5.3 \ cc-1.0.24 \ cfg-if-0.1.5 \ clap-2.32.0 \ cloudabi-0.0.3 \ conduit-mime-types-0.7.3 \ enum_primitive-0.1.1 \ env_logger-0.3.5 \ error-chain-0.10.0 \ fuchsia-zircon-0.3.3 \ fuchsia-zircon-sys-0.3.3 \ idna-0.1.5 \ kernel32-sys-0.2.2 \ libc-0.2.49 \ log-0.3.9 \ log-0.4.5 \ matches-0.1.8 \ memchr-0.1.11 \ num-traits-0.1.43 \ num-traits-0.2.5 \ percent-encoding-1.0.1 \ rand-0.5.5 \ rand_core-0.2.1 \ redox_syscall-0.1.40 \ redox_termios-0.1.1 \ regex-0.1.80 \ regex-syntax-0.3.9 \ rustc-demangle-0.1.9 \ rustc-serialize-0.3.24 \ strsim-0.7.0 \ termion-1.5.1 \ textwrap-0.10.0 \ thread-id-2.0.0 \ thread_local-0.2.7 \ unicode-bidi-0.3.4 \ unicode-normalization-0.1.7 \ unicode-width-0.1.5 \ url-1.7.1 \ utf8-ranges-0.1.3 \ vec_map-0.8.1 \ winapi-0.2.8 \ winapi-0.3.5 \ winapi-build-0.1.1 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-x86_64-pc-windows-gnu-0.4.0 PLIST_FILES= bin/rabbiteer PORTDOCS= README.md OPTIONS_DEFINE= DOCS post-install: @${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/rabbiteer post-install-DOCS-on: (cd ${WRKSRC} && ${COPYTREE_SHARE} README.md ${STAGEDIR}${DOCSDIR}) .include diff --git a/net/routinator/Makefile b/net/routinator/Makefile index 1cc2997865d3..0dc3d60a259d 100644 --- a/net/routinator/Makefile +++ b/net/routinator/Makefile @@ -1,226 +1,226 @@ PORTNAME= routinator DISTVERSIONPREFIX= v DISTVERSION= 0.11.2 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= net MASTER_SITES= ${ROUTINATOR_UI_URL}/v${ROUTINATOR_UI_VERSION}/:0 DISTFILES+= routinator-ui-build.tar.gz:0 MAINTAINER= jaap@NLnetLabs.nl COMMENT= RPKI signed route collector and validator LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE ONLY_FOR_ARCHS= amd64 i386 ONLY_FOR_ARCHS_REASON= ring crate not ported to other architectures RUN_DEPENDS= rsync:net/rsync USES= cargo cpe CPE_VENDOR= nlnetlabs USE_GITHUB= yes GH_ACCOUNT= NLnetLabs USE_RC_SUBR= routinator CARGO_CRATES= addr2line-0.17.0 \ adler-1.0.2 \ ansi_term-0.12.1 \ arc-swap-1.5.0 \ atty-0.2.14 \ autocfg-1.1.0 \ backtrace-0.3.64 \ base64-0.13.0 \ bcder-0.6.1 \ bitflags-1.3.2 \ bumpalo-3.9.1 \ bytes-1.1.0 \ cc-1.0.73 \ cfg-if-1.0.0 \ chrono-0.4.19 \ clap-2.34.0 \ core-foundation-0.9.3 \ core-foundation-sys-0.8.3 \ crc32fast-1.3.2 \ crossbeam-queue-0.3.5 \ crossbeam-utils-0.8.8 \ dirs-4.0.0 \ dirs-sys-0.3.7 \ either-1.6.1 \ encoding_rs-0.8.30 \ error-chain-0.12.4 \ fastrand-1.7.0 \ fern-0.6.0 \ filetime-0.2.15 \ flate2-1.0.22 \ fnv-1.0.7 \ foreign-types-0.3.2 \ foreign-types-shared-0.1.1 \ form_urlencoded-1.0.1 \ futures-0.3.21 \ futures-channel-0.3.21 \ futures-core-0.3.21 \ futures-executor-0.3.21 \ futures-io-0.3.21 \ futures-macro-0.3.21 \ futures-sink-0.3.21 \ futures-task-0.3.21 \ futures-util-0.3.21 \ getrandom-0.2.6 \ gimli-0.26.1 \ h2-0.3.13 \ hashbrown-0.11.2 \ hermit-abi-0.1.19 \ http-0.2.6 \ http-body-0.4.4 \ httparse-1.6.0 \ httpdate-1.0.2 \ hyper-0.14.18 \ hyper-rustls-0.23.0 \ hyper-tls-0.5.0 \ idna-0.2.3 \ indexmap-1.8.1 \ instant-0.1.12 \ ipnet-2.4.0 \ itoa-1.0.1 \ js-sys-0.3.56 \ lazy_static-1.4.0 \ libc-0.2.121 \ listenfd-0.5.0 \ log-0.4.16 \ log-reroute-0.1.8 \ matches-0.1.9 \ memchr-2.4.1 \ memoffset-0.6.5 \ mime-0.3.16 \ miniz_oxide-0.4.4 \ mio-0.8.2 \ miow-0.3.7 \ native-tls-0.2.10 \ nix-0.23.1 \ ntapi-0.3.7 \ num-integer-0.1.44 \ num-traits-0.2.14 \ num_cpus-1.13.1 \ object-0.27.1 \ once_cell-1.10.0 \ openssl-0.10.38 \ openssl-probe-0.1.5 \ openssl-sys-0.9.72 \ percent-encoding-2.1.0 \ pin-project-lite-0.2.8 \ pin-utils-0.1.0 \ pkg-config-0.3.25 \ ppv-lite86-0.2.16 \ proc-macro2-1.0.36 \ quick-xml-0.22.0 \ quote-1.0.17 \ rand-0.8.5 \ rand_chacha-0.3.1 \ rand_core-0.6.3 \ redox_syscall-0.2.13 \ redox_users-0.4.3 \ remove_dir_all-0.5.3 \ reqwest-0.11.10 \ ring-0.16.20 \ routecore-0.1.1 \ routinator-ui-0.3.4 \ rpki-0.14.2 \ rustc-demangle-0.1.21 \ rustc_version-0.4.0 \ rustls-0.20.4 \ rustls-pemfile-0.3.0 \ ryu-1.0.9 \ schannel-0.1.19 \ sct-0.7.0 \ security-framework-2.6.1 \ security-framework-sys-2.6.1 \ semver-1.0.7 \ serde-1.0.136 \ serde_derive-1.0.136 \ serde_json-1.0.79 \ serde_urlencoded-0.7.1 \ signal-hook-registry-1.4.0 \ slab-0.4.6 \ smallvec-1.8.0 \ socket2-0.4.4 \ spin-0.5.2 \ strsim-0.8.0 \ syn-1.0.90 \ syslog-5.0.0 \ tar-0.4.38 \ tempfile-3.3.0 \ term_size-0.3.2 \ textwrap-0.11.0 \ thiserror-1.0.30 \ thiserror-impl-1.0.30 \ time-0.1.43 \ tinyvec-1.5.1 \ tinyvec_macros-0.1.0 \ tokio-1.17.0 \ tokio-macros-1.7.0 \ tokio-native-tls-0.3.0 \ tokio-rustls-0.23.3 \ tokio-socks-0.5.1 \ tokio-stream-0.1.8 \ tokio-util-0.7.1 \ toml-0.5.8 \ tower-service-0.3.1 \ tracing-0.1.32 \ tracing-attributes-0.1.20 \ tracing-core-0.1.24 \ try-lock-0.2.3 \ unicode-bidi-0.3.7 \ unicode-normalization-0.1.19 \ unicode-width-0.1.9 \ unicode-xid-0.2.2 \ untrusted-0.7.1 \ url-2.2.2 \ uuid-0.8.2 \ vcpkg-0.2.15 \ vec_map-0.8.2 \ version_check-0.9.4 \ want-0.3.0 \ wasi-0.10.2+wasi-snapshot-preview1 \ wasi-0.11.0+wasi-snapshot-preview1 \ wasm-bindgen-0.2.79 \ wasm-bindgen-backend-0.2.79 \ wasm-bindgen-futures-0.4.29 \ wasm-bindgen-macro-0.2.79 \ wasm-bindgen-macro-support-0.2.79 \ wasm-bindgen-shared-0.2.79 \ web-sys-0.3.56 \ webpki-0.22.0 \ webpki-roots-0.22.2 \ winapi-0.3.9 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-x86_64-pc-windows-gnu-0.4.0 \ winreg-0.10.1 \ xattr-0.2.2 SUB_FILES= pkg-message SUB_LIST+= GROUPS=${GROUPS} \ USERS=${USERS} USERS= ${PORTNAME} GROUPS= ${PORTNAME} ROUTINATOR_UI_VERSION= 0.3.4 ROUTINATOR_UI_URL= https://github.com/NLnetLabs/routinator-ui/releases/download/ OPTIONS_SUB= yes post-patch: ${REINPLACE_CMD} \ -e "s|DISTDIR|${DISTDIR}|" \ ${WRKSRC}/cargo-crates/routinator-ui-${ROUTINATOR_UI_VERSION}/build.rs post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/routinator ${INSTALL_MAN} ${WRKSRC}/doc/routinator.1 ${STAGEDIR}${PREFIX}/man/man1/ @${MKDIR} ${STAGEDIR}/${PREFIX}/etc/routinator ${INSTALL_DATA} ${WRKSRC}/etc/routinator.conf.example \ ${STAGEDIR}${PREFIX}/etc/routinator/routinator.conf.example .include diff --git a/ports-mgmt/pkg-graph/Makefile b/ports-mgmt/pkg-graph/Makefile index 2534f6cfdf67..8ac988ff5334 100644 --- a/ports-mgmt/pkg-graph/Makefile +++ b/ports-mgmt/pkg-graph/Makefile @@ -1,28 +1,28 @@ PORTNAME= pkg-graph DISTVERSION= g20180614 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= ports-mgmt MAINTAINER= gnn@FreeBSD.org COMMENT= Graphviz generator for pkg LICENSE= BSD2CLAUSE USES= cargo USE_GITHUB= yes GH_ACCOUNT= neosmart GH_TAGNAME= 3b16898 CARGO_CRATES= dtoa-0.4.2 \ itoa-0.4.1 \ proc-macro2-0.4.6 \ quote-0.6.3 \ serde-1.0.66 \ serde_derive-1.0.66 \ serde_json-1.0.20 \ syn-0.14.2 \ unicode-xid-0.1.0 PLIST_FILES= bin/pkg-graph .include diff --git a/ports-mgmt/sccache-overlay/Makefile b/ports-mgmt/sccache-overlay/Makefile index e6dde3e97030..367d7acc275c 100644 --- a/ports-mgmt/sccache-overlay/Makefile +++ b/ports-mgmt/sccache-overlay/Makefile @@ -1,425 +1,425 @@ PORTNAME= sccache DISTVERSIONPREFIX= v DISTVERSION= 0.2.15 -PORTREVISION= 9 +PORTREVISION= 10 CATEGORIES= ports-mgmt PKGNAMESUFFIX= -overlay MAINTAINER= rust@FreeBSD.org COMMENT= Ports overlay for sccache LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE USES= cargo ssl:build USE_GITHUB= yes GH_ACCOUNT= mozilla CARGO_CRATES= addr2line-0.14.1 \ adler-0.2.3 \ aho-corasick-0.7.15 \ ansi_term-0.11.0 \ anyhow-1.0.37 \ ar-0.8.0 \ arrayref-0.3.6 \ arrayvec-0.5.2 \ ascii-0.8.7 \ assert_cmd-1.0.2 \ async-channel-1.5.1 \ async-executor-1.4.0 \ async-global-executor-1.4.3 \ async-io-1.3.1 \ async-mutex-1.4.0 \ async-std-1.8.0 \ async-task-4.0.3 \ async-trait-0.1.42 \ atomic-waker-1.0.0 \ atty-0.2.14 \ autocfg-0.1.7 \ autocfg-1.0.1 \ backtrace-0.3.55 \ base64-0.9.3 \ base64-0.10.1 \ base64-0.12.3 \ base64-0.13.0 \ bincode-0.8.0 \ bincode-1.3.1 \ bitflags-1.2.1 \ blake2b_simd-0.5.11 \ blake3-0.3.7 \ block-buffer-0.9.0 \ blocking-1.0.2 \ boxfnonce-0.1.1 \ buf_redux-0.8.4 \ bufstream-0.1.4 \ bumpalo-3.4.0 \ byteorder-1.3.4 \ bytes-0.4.12 \ bytes-0.5.6 \ bytes-1.0.0 \ cache-padded-1.1.1 \ case-0.1.0 \ cc-1.0.66 \ cfg-if-0.1.10 \ cfg-if-1.0.0 \ chrono-0.4.19 \ chunked_transfer-0.3.1 \ clap-2.33.3 \ cloudabi-0.0.3 \ combine-4.5.2 \ concurrent-queue-1.2.2 \ conhash-0.4.0 \ constant_time_eq-0.1.5 \ cookie-0.12.0 \ cookie_store-0.7.0 \ core-foundation-0.9.1 \ core-foundation-sys-0.8.2 \ counted-array-0.1.2 \ cpuid-bool-0.1.2 \ crc32fast-1.2.1 \ crossbeam-deque-0.7.3 \ crossbeam-epoch-0.8.2 \ crossbeam-queue-0.1.2 \ crossbeam-queue-0.2.3 \ crossbeam-utils-0.6.6 \ crossbeam-utils-0.7.2 \ crossbeam-utils-0.8.1 \ crypto-mac-0.8.0 \ crypto-mac-0.10.0 \ daemonize-0.4.1 \ derive-error-0.0.3 \ difference-2.0.0 \ digest-0.9.0 \ directories-3.0.1 \ dirs-1.0.5 \ dirs-sys-0.3.5 \ doc-comment-0.3.3 \ dtoa-0.4.7 \ either-1.6.1 \ encoding_rs-0.8.26 \ env_logger-0.8.2 \ error-chain-0.12.4 \ event-listener-2.5.1 \ failure-0.1.8 \ failure_derive-0.1.8 \ fastrand-1.4.0 \ filetime-0.2.13 \ flate2-1.0.19 \ float-cmp-0.8.0 \ fnv-1.0.7 \ foreign-types-0.3.2 \ foreign-types-shared-0.1.1 \ form_urlencoded-1.0.0 \ fuchsia-cprng-0.1.1 \ fuchsia-zircon-0.3.3 \ fuchsia-zircon-sys-0.3.3 \ futures-0.1.30 \ futures-0.3.9 \ futures-channel-0.3.9 \ futures-core-0.3.9 \ futures-cpupool-0.1.8 \ futures-executor-0.3.9 \ futures-io-0.3.9 \ futures-lite-1.11.3 \ futures-macro-0.3.9 \ futures-sink-0.3.9 \ futures-task-0.3.9 \ futures-util-0.3.9 \ generic-array-0.14.4 \ getopts-0.2.21 \ getrandom-0.1.16 \ gimli-0.23.0 \ glob-0.3.0 \ gloo-timers-0.2.1 \ h2-0.1.26 \ hashbrown-0.9.1 \ hermit-abi-0.1.17 \ hmac-0.10.1 \ http-0.1.21 \ http-body-0.1.0 \ httparse-1.3.4 \ humantime-2.0.1 \ hyper-0.12.35 \ hyper-tls-0.3.2 \ hyperx-0.12.0 \ idna-0.1.5 \ idna-0.2.0 \ indexmap-1.6.1 \ instant-0.1.9 \ iovec-0.1.4 \ itertools-0.9.0 \ itertools-0.10.0 \ itoa-0.4.7 \ jobserver-0.1.21 \ js-sys-0.3.46 \ jsonwebtoken-7.2.0 \ kernel32-sys-0.2.2 \ kv-log-macro-1.0.7 \ language-tags-0.2.2 \ lazy_static-1.4.0 \ libc-0.2.82 \ libmount-0.1.15 \ linked-hash-map-0.5.3 \ local-encoding-0.2.0 \ lock_api-0.3.4 \ log-0.3.9 \ log-0.4.11 \ matches-0.1.8 \ maybe-uninit-2.0.0 \ md-5-0.9.1 \ md5-0.3.8 \ memcached-rs-0.4.2 \ memchr-2.3.4 \ memoffset-0.5.6 \ mime-0.2.6 \ mime-0.3.16 \ mime_guess-1.8.8 \ mime_guess-2.0.3 \ miniz_oxide-0.4.3 \ mio-0.6.23 \ mio-named-pipes-0.1.7 \ mio-uds-0.6.8 \ miow-0.2.2 \ miow-0.3.6 \ multipart-0.15.4 \ native-tls-0.2.7 \ nb-connect-1.0.2 \ net2-0.2.37 \ nix-0.14.1 \ nix-0.19.1 \ normalize-line-endings-0.3.0 \ num-bigint-0.2.6 \ num-integer-0.1.44 \ num-traits-0.1.43 \ num-traits-0.2.14 \ num_cpus-1.13.0 \ number_prefix-0.4.0 \ object-0.22.0 \ once_cell-1.5.2 \ opaque-debug-0.3.0 \ openssl-0.10.32 \ openssl-probe-0.1.2 \ openssl-sys-0.9.60 \ parking-2.0.0 \ parking_lot-0.9.0 \ parking_lot_core-0.6.2 \ pem-0.8.2 \ percent-encoding-1.0.1 \ percent-encoding-2.1.0 \ phf-0.7.24 \ phf_codegen-0.7.24 \ phf_generator-0.7.24 \ phf_shared-0.7.24 \ pin-project-lite-0.1.11 \ pin-project-lite-0.2.1 \ pin-utils-0.1.0 \ pkg-config-0.3.19 \ polling-2.0.2 \ ppv-lite86-0.2.10 \ predicates-1.0.6 \ predicates-core-1.0.1 \ predicates-tree-1.0.1 \ proc-macro-hack-0.5.19 \ proc-macro-nested-0.1.6 \ proc-macro2-1.0.24 \ publicsuffix-1.5.4 \ pulldown-cmark-0.0.3 \ quick-error-1.2.3 \ quote-0.3.15 \ quote-1.0.8 \ rand-0.4.6 \ rand-0.5.6 \ rand-0.6.5 \ rand-0.7.3 \ rand_chacha-0.1.1 \ rand_chacha-0.2.2 \ rand_core-0.3.1 \ rand_core-0.4.2 \ rand_core-0.5.1 \ rand_hc-0.1.0 \ rand_hc-0.2.0 \ rand_isaac-0.1.1 \ rand_jitter-0.1.4 \ rand_os-0.1.3 \ rand_pcg-0.1.2 \ rand_xorshift-0.1.1 \ rdrand-0.4.0 \ redis-0.17.0 \ redox_syscall-0.1.57 \ redox_users-0.3.5 \ regex-1.4.2 \ regex-syntax-0.6.21 \ remove_dir_all-0.5.3 \ reqwest-0.9.24 \ retry-1.2.0 \ ring-0.16.19 \ rouille-3.0.0 \ rust-argon2-0.8.3 \ rustc-demangle-0.1.18 \ rustc_version-0.2.3 \ ryu-1.0.5 \ safemem-0.3.3 \ same-file-1.0.6 \ schannel-0.1.19 \ scopeguard-1.1.0 \ security-framework-2.0.0 \ security-framework-sys-2.0.0 \ selenium-rs-0.1.2 \ semver-0.9.0 \ semver-parser-0.7.0 \ serde-1.0.118 \ serde_derive-1.0.118 \ serde_json-1.0.61 \ serde_urlencoded-0.5.5 \ sha-1-0.9.2 \ sha1-0.6.0 \ sha2-0.9.2 \ signal-hook-registry-1.3.0 \ simple_asn1-0.4.1 \ siphasher-0.2.3 \ skeptic-0.4.0 \ slab-0.4.2 \ smallvec-0.6.13 \ socket2-0.3.19 \ spin-0.5.2 \ string-0.2.1 \ strip-ansi-escapes-0.1.0 \ strsim-0.8.0 \ subtle-2.4.0 \ syn-0.11.11 \ syn-1.0.58 \ synom-0.11.3 \ synstructure-0.12.4 \ syslog-5.0.0 \ tar-0.4.30 \ tempdir-0.3.7 \ tempfile-3.1.0 \ term-0.5.2 \ termcolor-1.1.2 \ textwrap-0.11.0 \ thiserror-1.0.23 \ thiserror-impl-1.0.23 \ thread_local-1.1.0 \ threadpool-1.8.1 \ time-0.1.44 \ tiny_http-0.6.2 \ tinyvec-1.1.0 \ tinyvec_macros-0.1.0 \ tokio-0.1.22 \ tokio-0.2.24 \ tokio-buf-0.1.1 \ tokio-codec-0.1.2 \ tokio-compat-0.1.6 \ tokio-current-thread-0.1.7 \ tokio-executor-0.1.10 \ tokio-fs-0.1.7 \ tokio-io-0.1.13 \ tokio-named-pipes-0.1.0 \ tokio-process-0.2.5 \ tokio-reactor-0.1.12 \ tokio-serde-0.1.0 \ tokio-serde-bincode-0.1.1 \ tokio-signal-0.2.9 \ tokio-sync-0.1.8 \ tokio-tcp-0.1.4 \ tokio-threadpool-0.1.18 \ tokio-timer-0.2.13 \ tokio-udp-0.1.6 \ tokio-uds-0.2.7 \ tokio-util-0.3.1 \ toml-0.5.8 \ tower-0.1.1 \ tower-buffer-0.1.2 \ tower-discover-0.1.0 \ tower-layer-0.1.0 \ tower-limit-0.1.3 \ tower-load-shed-0.1.0 \ tower-retry-0.1.0 \ tower-service-0.2.0 \ tower-timeout-0.1.1 \ tower-util-0.1.0 \ tracing-0.1.22 \ tracing-attributes-0.1.11 \ tracing-core-0.1.17 \ treeline-0.1.0 \ try-lock-0.2.3 \ try_from-0.3.2 \ twoway-0.1.8 \ typenum-1.12.0 \ unicase-1.4.2 \ unicase-2.6.0 \ unicode-bidi-0.3.4 \ unicode-normalization-0.1.16 \ unicode-width-0.1.8 \ unicode-xid-0.0.4 \ unicode-xid-0.2.1 \ unix_socket-0.5.0 \ untrusted-0.7.1 \ url-1.7.2 \ url-2.2.0 \ utf8parse-0.1.1 \ uuid-0.7.4 \ uuid-0.8.1 \ vcpkg-0.2.11 \ vec-arena-1.0.0 \ vec_map-0.8.2 \ version-compare-0.0.11 \ version_check-0.1.5 \ version_check-0.9.2 \ void-1.0.2 \ vte-0.3.3 \ wait-timeout-0.2.0 \ waker-fn-1.1.0 \ walkdir-2.3.1 \ want-0.2.0 \ wasi-0.9.0+wasi-snapshot-preview1 \ wasi-0.10.0+wasi-snapshot-preview1 \ wasm-bindgen-0.2.69 \ wasm-bindgen-backend-0.2.69 \ wasm-bindgen-futures-0.4.19 \ wasm-bindgen-macro-0.2.69 \ wasm-bindgen-macro-support-0.2.69 \ wasm-bindgen-shared-0.2.69 \ web-sys-0.3.46 \ wepoll-sys-3.0.1 \ which-4.0.2 \ winapi-0.2.8 \ winapi-0.3.9 \ winapi-build-0.1.1 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-util-0.1.5 \ winapi-x86_64-pc-windows-gnu-0.4.0 \ winreg-0.6.2 \ ws2_32-sys-0.2.1 \ xattr-0.2.2 \ zip-0.5.9 \ zstd-0.6.0+zstd.1.4.8 \ zstd-safe-3.0.0+zstd.1.4.8 \ zstd-sys-1.4.19+zstd.1.4.8 CARGO_FEATURES= --no-default-features QA_ENV= IGNORE_QA_proxydeps=1 LDFLAGS+= -Wl,-rpath=\$$ORIGIN/../lib \ -Wl,-dynamic-linker,/tmp/sccache-overlay/ld-elf.so.1 SUB_FILES= pkg-message post-install: @${MKDIR} ${STAGEDIR}${DATADIR}/overlay/Mk \ ${STAGEDIR}${DATADIR}/overlay/bin \ ${STAGEDIR}${DATADIR}/overlay/lib @${MV} ${STAGEDIR}${PREFIX}/bin/sccache \ ${STAGEDIR}${DATADIR}/overlay/bin @${STRIP_CMD} ${STAGEDIR}${DATADIR}/overlay/bin/sccache ${INSTALL_DATA} ${FILESDIR}/Mk/bsd.overlay.mk \ ${STAGEDIR}${DATADIR}/overlay/Mk # rustc seems to have no support for fully static binaries on # FreeBSD, so we package up the required base libraries together # with -Wl,-rpath and -Wl,-dynamic-linker in LDFLAGS to be able # to run the binary in non-native Poudriere jails. ${INSTALL_PROGRAM} /libexec/ld-elf.so.1 \ ${STAGEDIR}${DATADIR}/overlay/lib @${LN} -Fs ${STAGEDIR}${DATADIR}/overlay/lib /tmp/sccache-overlay ldd -f '%p\n' ${STAGEDIR}${DATADIR}/overlay/bin/sccache | ${GREP} -v '^[ ]*\[' | \ ${XARGS} -J% ${INSTALL_LIB} % ${STAGEDIR}${DATADIR}/overlay/lib cd ${STAGEDIR}${PREFIX}; \ ${FIND} ${DATADIR_REL} -type f >>${TMPPLIST} .include diff --git a/science/py-qiskit-terra/Makefile b/science/py-qiskit-terra/Makefile index e16bfe58a993..5aaef529441b 100644 --- a/science/py-qiskit-terra/Makefile +++ b/science/py-qiskit-terra/Makefile @@ -1,112 +1,112 @@ PORTNAME= qiskit-terra DISTVERSION= 0.21.1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= science python # quantum-computing #MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= yuri@FreeBSD.org COMMENT= Terra submodule of the Quiskit framework for quantum computing LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt PY_DEPENDS= ${PYNUMPY} \ ${PYTHON_PKGNAMEPREFIX}ply>=3.10:devel/py-ply@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}psutil>=5:sysutils/py-psutil@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}rustworkx>=0.11.0:math/py-rustworkx@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}scipy>=1.5:science/py-scipy@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}sympy>=1.3:math/py-sympy@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}dill>=0.3:devel/py-dill@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}dateutil>=2.8.0:devel/py-dateutil@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}stevedore>=3.0.0:devel/py-stevedore@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}symengine>=0.9:math/py-symengine@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}tweedledum>=1.1:science/py-tweedledum@${PY_FLAVOR} BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}setuptools-rust>0:devel/py-setuptools-rust@${PY_FLAVOR} \ ${PY_DEPENDS} RUN_DEPENDS= ${PY_DEPENDS} TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}ddt>0:devel/py-ddt@${PY_FLAVOR} # no test requirements are listed in setup.py, see https://github.com/Qiskit/qiskit-terra/issues/8498 USES= cargo python:3.8+ USE_PYTHON= distutils autoplist pytest # tests fail to run through pytest, see https://github.com/Qiskit/qiskit-terra/issues/8500 USE_GITHUB= yes GH_ACCOUNT= Qiskit CARGO_CRATES= ahash-0.7.6 \ autocfg-1.1.0 \ bitflags-1.3.2 \ cfg-if-1.0.0 \ crossbeam-channel-0.5.5 \ crossbeam-deque-0.8.1 \ crossbeam-epoch-0.9.9 \ crossbeam-utils-0.8.10 \ either-1.7.0 \ getrandom-0.2.7 \ hashbrown-0.12.3 \ hermit-abi-0.1.19 \ indexmap-1.9.1 \ indoc-1.0.6 \ libc-0.2.126 \ libm-0.2.2 \ lock_api-0.4.7 \ matrixmultiply-0.3.2 \ memoffset-0.6.5 \ ndarray-0.15.6 \ num-bigint-0.4.3 \ num-complex-0.4.2 \ num-integer-0.1.45 \ num-traits-0.2.15 \ num_cpus-1.13.1 \ numpy-0.16.2 \ once_cell-1.13.0 \ parking_lot-0.12.1 \ parking_lot_core-0.9.3 \ ppv-lite86-0.2.16 \ proc-macro2-1.0.40 \ pyo3-0.16.5 \ pyo3-build-config-0.16.5 \ pyo3-ffi-0.16.5 \ pyo3-macros-0.16.5 \ pyo3-macros-backend-0.16.5 \ quote-1.0.20 \ rand-0.8.5 \ rand_chacha-0.3.1 \ rand_core-0.6.3 \ rand_distr-0.4.3 \ rand_pcg-0.3.1 \ rawpointer-0.2.1 \ rayon-1.5.3 \ rayon-core-1.9.3 \ redox_syscall-0.2.13 \ scopeguard-1.1.0 \ smallvec-1.9.0 \ syn-1.0.98 \ target-lexicon-0.12.4 \ unicode-ident-1.0.2 \ unindent-0.1.9 \ version_check-0.9.4 \ wasi-0.11.0+wasi-snapshot-preview1 \ windows-sys-0.36.1 \ windows_aarch64_msvc-0.36.1 \ windows_i686_gnu-0.36.1 \ windows_i686_msvc-0.36.1 \ windows_x86_64_gnu-0.36.1 \ windows_x86_64_msvc-0.36.1 CARGO_BUILD= no CARGO_INSTALL= no CARGO_TEST= no CARGO_TARGET_DIR= ${WRKSRC}/target TEST_ENV= ${MAKE_ENV} PYTHONPATH=${STAGEDIR}${PYTHONPREFIX_SITELIBDIR} PLIST_FILES= ${PYTHON_SITELIBDIR}/qiskit/_accelerate${PYTHON_EXT_SUFFIX}.so post-patch: # project was renamed, see https://github.com/Qiskit/rustworkx/issues/656 @${FIND} ${WRKSRC} -name "*.py" | ${XARGS} ${REINPLACE_CMD} -i '' -e 's|retworkx|rustworkx|' post-install: @${STRIP_CMD} ${STAGEDIR}${PYTHON_SITELIBDIR}/qiskit/_accelerate.cpython-${PYTHON_SUFFIX}.so .include diff --git a/security/acmed/Makefile b/security/acmed/Makefile index ac7ffd9ad69e..07a3f89279c2 100644 --- a/security/acmed/Makefile +++ b/security/acmed/Makefile @@ -1,124 +1,124 @@ PORTNAME= acmed DISTVERSIONPREFIX= v DISTVERSION= 0.18.0 -PORTREVISION= 7 +PORTREVISION= 8 CATEGORIES= security MAINTAINER= greg@unrelenting.technology COMMENT= ACME (RFC 8555) client daemon written in Rust LICENSE= APACHE20 MIT LICENSE_COMB= dual LICENSE_FILE_APACHE20= ${WRKSRC}/LICENSE-APACHE-2.0.txt LICENSE_FILE_MIT= ${WRKSRC}/LICENSE-MIT.txt USES= cargo ssl USE_GITHUB= yes GH_ACCOUNT= breard-r CARGO_ENV= VARLIBDIR="/var/db" SYSCONFDIR="$(PREFIX)/etc" RUNSTATEDIR="/var/run" CARGO_FEATURES= openssl_dyn CARGO_INSTALL_PATH= ./acmed ./tacd CARGO_CRATES= aho-corasick-0.7.15 \ ansi_term-0.11.0 \ attohttpc-0.17.0 \ atty-0.2.14 \ autocfg-1.0.1 \ base64-0.13.0 \ bincode-1.3.3 \ bitflags-1.2.1 \ boxfnonce-0.1.1 \ bytes-1.1.0 \ cc-1.0.72 \ cfg-if-1.0.0 \ clap-2.33.3 \ core-foundation-0.9.2 \ core-foundation-sys-0.8.3 \ daemonize-0.4.1 \ encoding_rs-0.8.29 \ encoding_rs_io-0.1.7 \ env_logger-0.8.4 \ error-chain-0.12.4 \ fnv-1.0.7 \ foreign-types-0.3.2 \ foreign-types-shared-0.1.1 \ form_urlencoded-1.0.1 \ getrandom-0.2.3 \ glob-0.3.0 \ hermit-abi-0.1.19 \ http-0.2.5 \ humantime-2.1.0 \ idna-0.2.3 \ itoa-0.4.8 \ lazy_static-1.4.0 \ libc-0.2.108 \ log-0.4.14 \ matches-0.1.9 \ memchr-2.3.4 \ memoffset-0.6.4 \ native-tls-0.2.8 \ nix-0.21.2 \ nom-6.2.1 \ once_cell-1.8.0 \ openssl-0.10.38 \ openssl-probe-0.1.4 \ openssl-src-300.0.2+3.0.0 \ openssl-sys-0.9.71 \ percent-encoding-2.1.0 \ pkg-config-0.3.22 \ ppv-lite86-0.2.15 \ proc-macro2-1.0.32 \ punycode-0.4.1 \ quote-1.0.10 \ rand-0.8.4 \ rand_chacha-0.3.1 \ rand_core-0.6.3 \ rand_hc-0.3.1 \ redox_syscall-0.2.10 \ regex-1.4.6 \ regex-syntax-0.6.25 \ remove_dir_all-0.5.3 \ ryu-1.0.5 \ schannel-0.1.19 \ security-framework-2.3.1 \ security-framework-sys-2.4.2 \ serde-1.0.130 \ serde_derive-1.0.130 \ serde_json-1.0.71 \ strsim-0.8.0 \ syn-1.0.81 \ syslog-5.0.0 \ tempfile-3.2.0 \ termcolor-1.1.2 \ textwrap-0.11.0 \ time-0.1.43 \ tinytemplate-1.2.1 \ tinyvec-1.5.1 \ tinyvec_macros-0.1.0 \ toml-0.5.8 \ unicode-bidi-0.3.7 \ unicode-normalization-0.1.19 \ unicode-width-0.1.9 \ unicode-xid-0.2.2 \ url-2.2.2 \ vcpkg-0.2.15 \ vec_map-0.8.2 \ version_check-0.9.3 \ wasi-0.10.2+wasi-snapshot-preview1 \ wildmatch-1.1.0 \ winapi-0.3.9 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-util-0.1.5 \ winapi-x86_64-pc-windows-gnu-0.4.0 post-install: ${INSTALL_MAN} ${WRKSRC}/man/en/acmed.8 ${STAGEDIR}${MAN8PREFIX}/man/man8/ ${INSTALL_MAN} ${WRKSRC}/man/en/acmed.toml.5 ${STAGEDIR}${MAN5PREFIX}/man/man5/ ${INSTALL_MAN} ${WRKSRC}/man/en/tacd.8 ${STAGEDIR}${MAN8PREFIX}/man/man8/ ${MKDIR} ${STAGEDIR}${PREFIX}/etc/acmed ${INSTALL_DATA} ${WRKSRC}/acmed/config/acmed.toml ${STAGEDIR}${PREFIX}/etc/acmed/acmed.toml.sample ${INSTALL_DATA} ${WRKSRC}/acmed/config/default_hooks.toml ${STAGEDIR}${PREFIX}/etc/acmed/default_hooks.toml.sample ${MKDIR} ${STAGEDIR}${PREFIX}/etc/acmed/accounts ${MKDIR} ${STAGEDIR}${PREFIX}/etc/acmed/certs .include diff --git a/security/arti/Makefile b/security/arti/Makefile index 8bac97ea04ee..73f62291abfc 100644 --- a/security/arti/Makefile +++ b/security/arti/Makefile @@ -1,414 +1,414 @@ PORTNAME= arti DISTVERSION= 0.4.0 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= security MAINTAINER= cs@FreeBSD.org COMMENT= Implementation of Tor, in Rust LICENSE= MIT USES= cargo sqlite ssl USE_RC_SUBR= arti #GROUPS= _arti #USERS= _arti #SUB_LIST= USER="${USERS}" GROUP="${GROUPS}" #PLIST_SUB= USER="${USERS}" GROUP="${GROUPS}" USE_GITLAB= yes GL_SITE= https://gitlab.torproject.org GL_ACCOUNT= tpo/core GL_COMMIT= 4326aa1de9875ea399c3a608c0320bbe4b214a42 CARGO_FEATURES= tokio rustls CARGO_INSTALL= no CARGO_CRATES= addr2line-0.17.0 \ adler-1.0.2 \ aes-0.8.1 \ ahash-0.7.6 \ aho-corasick-0.7.18 \ ansi_term-0.12.1 \ anyhow-1.0.57 \ arrayref-0.3.6 \ async-broadcast-0.4.0 \ async-channel-1.6.1 \ async-compression-0.3.14 \ async-ctrlc-1.2.0 \ async-executor-1.4.1 \ async-global-executor-2.0.4 \ async-io-1.7.0 \ async-lock-2.5.0 \ async-mutex-1.4.0 \ async-native-tls-0.4.0 \ async-process-1.4.0 \ async-rustls-0.2.0 \ async-std-1.11.0 \ async-task-4.2.0 \ async-trait-0.1.53 \ async_executors-0.6.0 \ asynchronous-codec-0.6.0 \ atomic-0.5.1 \ atomic-waker-1.0.0 \ atty-0.2.14 \ autocfg-0.1.8 \ autocfg-1.1.0 \ backtrace-0.3.65 \ base64-0.13.0 \ base64ct-1.1.1 \ bitflags-1.3.2 \ blanket-0.2.0 \ block-buffer-0.9.0 \ block-buffer-0.10.2 \ blocking-1.2.0 \ bounded-vec-deque-0.1.1 \ bumpalo-3.9.1 \ byteorder-1.4.3 \ bytes-1.1.0 \ cache-padded-1.2.0 \ cc-1.0.73 \ cfg-if-0.1.10 \ cfg-if-1.0.0 \ cipher-0.4.3 \ clap-2.34.0 \ coarsetime-0.1.22 \ concurrent-queue-1.2.2 \ config-0.13.1 \ const-oid-0.6.2 \ convert_case-0.4.0 \ core-foundation-0.9.3 \ core-foundation-sys-0.8.3 \ cpufeatures-0.2.2 \ crc32fast-1.3.2 \ crossbeam-channel-0.5.4 \ crossbeam-queue-0.3.5 \ crossbeam-utils-0.8.8 \ crypto-bigint-0.2.11 \ crypto-common-0.1.3 \ ctor-0.1.22 \ ctr-0.9.1 \ ctrlc-3.2.2 \ curve25519-dalek-3.2.1 \ darling-0.14.1 \ darling_core-0.14.1 \ darling_macro-0.14.1 \ data-encoding-2.3.2 \ der-0.4.5 \ derive_builder_core_fork_arti-0.11.2 \ derive_builder_fork_arti-0.11.2 \ derive_builder_macro_fork_arti-0.11.2 \ derive_more-0.99.17 \ digest-0.9.0 \ digest-0.10.3 \ directories-4.0.1 \ dirs-4.0.0 \ dirs-next-2.0.0 \ dirs-sys-0.3.7 \ dirs-sys-next-0.1.2 \ displaydoc-0.2.3 \ downcast-rs-1.2.0 \ dyn-clone-1.0.5 \ easy-parallel-3.2.0 \ ed25519-1.5.2 \ ed25519-dalek-1.0.1 \ educe-0.4.19 \ either-1.6.1 \ enum-as-inner-0.4.0 \ enum-ordinalize-3.1.11 \ env_logger-0.5.13 \ event-listener-2.5.2 \ fallible-iterator-0.2.0 \ fallible-streaming-iterator-0.1.9 \ fastrand-1.7.0 \ filetime-0.2.16 \ flate2-1.0.23 \ float-cmp-0.9.0 \ float-ord-0.3.2 \ float_eq-0.7.0 \ fluid-let-1.0.0 \ fnv-1.0.7 \ foreign-types-0.3.2 \ foreign-types-shared-0.1.1 \ form_urlencoded-1.0.1 \ fsevent-0.4.0 \ fsevent-sys-2.0.1 \ fslock-0.2.1 \ fuchsia-zircon-0.3.3 \ fuchsia-zircon-sys-0.3.3 \ futures-0.3.21 \ futures-await-test-0.3.0 \ futures-await-test-macro-0.3.0 \ futures-channel-0.3.21 \ futures-core-0.3.21 \ futures-executor-0.3.21 \ futures-io-0.3.21 \ futures-lite-1.12.0 \ futures-macro-0.3.21 \ futures-sink-0.3.21 \ futures-task-0.3.21 \ futures-util-0.3.21 \ generic-array-0.14.5 \ getrandom-0.1.16 \ getrandom-0.2.6 \ gimli-0.26.1 \ gloo-timers-0.2.4 \ hashbrown-0.11.2 \ hashlink-0.7.0 \ heck-0.4.0 \ hermit-abi-0.1.19 \ hex-0.4.3 \ hex-literal-0.3.4 \ hkdf-0.12.3 \ hmac-0.12.1 \ http-0.2.7 \ http-body-0.4.5 \ httparse-1.7.1 \ httpdate-1.0.2 \ humantime-1.3.0 \ humantime-2.1.0 \ humantime-serde-1.1.1 \ hyper-0.14.18 \ ident_case-1.0.1 \ idna-0.2.3 \ inotify-0.7.1 \ inotify-sys-0.1.5 \ inout-0.1.3 \ instant-0.1.12 \ iovec-0.1.4 \ ipnet-2.5.0 \ itertools-0.10.3 \ itoa-1.0.2 \ jobserver-0.1.24 \ js-sys-0.3.57 \ keccak-0.1.2 \ kernel32-sys-0.2.2 \ kv-log-macro-1.0.7 \ lazy_static-1.4.0 \ lazycell-1.3.0 \ libc-0.2.126 \ libm-0.2.2 \ libsqlite3-sys-0.24.2 \ lock_api-0.4.7 \ log-0.4.17 \ lzma-sys-0.1.17 \ matchers-0.1.0 \ matches-0.1.9 \ memchr-2.5.0 \ memmap2-0.5.3 \ merlin-2.0.1 \ minimal-lexical-0.2.1 \ miniz_oxide-0.5.1 \ mio-0.6.23 \ mio-0.8.3 \ mio-extras-2.0.6 \ miow-0.2.2 \ native-tls-0.2.10 \ net2-0.2.37 \ nix-0.24.1 \ nom-7.1.1 \ notify-4.0.17 \ num-bigint-0.4.3 \ num-bigint-dig-0.7.0 \ num-integer-0.1.45 \ num-iter-0.1.43 \ num-traits-0.2.15 \ num_cpus-1.13.1 \ num_threads-0.1.6 \ object-0.28.4 \ once_cell-1.12.0 \ opaque-debug-0.3.0 \ openssl-0.10.40 \ openssl-macros-0.1.0 \ openssl-probe-0.1.5 \ openssl-src-111.20.0+1.1.1o \ openssl-sys-0.9.73 \ parking-2.0.0 \ parking_lot-0.11.2 \ parking_lot-0.12.0 \ parking_lot_core-0.8.5 \ parking_lot_core-0.9.3 \ paste-1.0.7 \ pathdiff-0.2.1 \ pem-0.8.3 \ pem-rfc7468-0.2.4 \ percent-encoding-2.1.0 \ phf-0.10.1 \ phf_generator-0.10.0 \ phf_macros-0.10.0 \ phf_shared-0.10.0 \ pin-project-1.0.10 \ pin-project-internal-1.0.10 \ pin-project-lite-0.2.9 \ pin-utils-0.1.0 \ pkcs1-0.2.4 \ pkcs8-0.7.6 \ pkg-config-0.3.25 \ polling-2.2.0 \ postage-0.5.0 \ ppv-lite86-0.2.16 \ proc-macro-error-1.0.4 \ proc-macro-error-attr-1.0.4 \ proc-macro-hack-0.5.19 \ proc-macro2-1.0.39 \ quick-error-1.2.3 \ quickcheck-1.0.3 \ quote-1.0.18 \ rand-0.7.3 \ rand-0.8.5 \ rand_chacha-0.2.2 \ rand_chacha-0.3.1 \ rand_core-0.5.1 \ rand_core-0.6.3 \ rand_hc-0.2.0 \ redox_syscall-0.2.13 \ redox_users-0.4.3 \ regex-1.5.6 \ regex-automata-0.1.10 \ regex-syntax-0.6.26 \ remove_dir_all-0.5.3 \ retain_mut-0.1.9 \ ring-0.16.20 \ rlimit-0.8.3 \ rmp-0.8.11 \ rmp-serde-1.1.0 \ rsa-0.5.0 \ rusqlite-0.27.0 \ rustc-demangle-0.1.21 \ rustc_version-0.4.0 \ rustls-0.19.1 \ rustversion-1.0.6 \ ryu-1.0.10 \ same-file-1.0.6 \ sanitize-filename-0.4.0 \ schannel-0.1.20 \ scopeguard-1.1.0 \ sct-0.6.1 \ security-framework-2.6.1 \ security-framework-sys-2.6.1 \ semver-1.0.9 \ serde-1.0.137 \ serde_derive-1.0.137 \ serde_ignored-0.1.3 \ serde_json-1.0.81 \ serde_test-1.0.137 \ serial_test-0.6.0 \ serial_test_derive-0.6.0 \ sha-1-0.10.0 \ sha2-0.9.9 \ sha2-0.10.2 \ sha3-0.10.1 \ sharded-slab-0.1.4 \ shellexpand-fork-2.1.1 \ signal-hook-0.3.14 \ signal-hook-registry-1.4.0 \ signature-1.5.0 \ simple_asn1-0.6.1 \ siphasher-0.3.10 \ slab-0.4.6 \ smallvec-1.8.0 \ socket2-0.4.4 \ spin-0.5.2 \ spki-0.4.1 \ static_assertions-1.1.0 \ strsim-0.8.0 \ strsim-0.10.0 \ strum-0.24.0 \ strum_macros-0.24.0 \ subtle-2.4.1 \ syn-1.0.95 \ synstructure-0.12.6 \ tempfile-3.3.0 \ termcolor-1.1.3 \ test-cert-gen-0.8.0 \ textwrap-0.11.0 \ thiserror-1.0.31 \ thiserror-impl-1.0.31 \ thread_local-1.1.4 \ time-0.3.9 \ time-macros-0.2.4 \ tinystr-0.6.0 \ tinyvec-1.6.0 \ tinyvec_macros-0.1.0 \ tls-api-0.8.0 \ tls-api-native-tls-0.8.0 \ tls-api-test-0.8.0 \ tokio-1.18.2 \ tokio-macros-1.7.0 \ tokio-socks-0.5.1 \ tokio-util-0.7.2 \ toml-0.5.9 \ tower-service-0.3.1 \ tracing-0.1.34 \ tracing-appender-0.2.2 \ tracing-attributes-0.1.21 \ tracing-core-0.1.26 \ tracing-journald-0.3.0 \ tracing-log-0.1.3 \ tracing-subscriber-0.3.11 \ tracing-test-0.2.1 \ tracing-test-macro-0.2.1 \ trust-dns-proto-0.21.2 \ try-lock-0.2.3 \ typenum-1.15.0 \ unicode-bidi-0.3.8 \ unicode-ident-1.0.0 \ unicode-normalization-0.1.19 \ unicode-width-0.1.9 \ unicode-xid-0.2.3 \ untrusted-0.6.2 \ untrusted-0.7.1 \ url-2.2.2 \ users-0.11.0 \ valuable-0.1.0 \ value-bag-1.0.0-alpha.9 \ vcpkg-0.2.15 \ vec_map-0.8.2 \ version_check-0.9.4 \ visibility-0.0.1 \ visible-0.0.1 \ void-1.0.2 \ waker-fn-1.1.0 \ walkdir-2.3.2 \ want-0.3.0 \ wasi-0.9.0+wasi-snapshot-preview1 \ wasi-0.10.2+wasi-snapshot-preview1 \ wasi-0.11.0+wasi-snapshot-preview1 \ wasm-bindgen-0.2.80 \ wasm-bindgen-backend-0.2.80 \ wasm-bindgen-futures-0.4.30 \ wasm-bindgen-macro-0.2.80 \ wasm-bindgen-macro-support-0.2.80 \ wasm-bindgen-shared-0.2.80 \ weak-table-0.3.2 \ web-sys-0.3.57 \ webpki-0.21.4 \ webpki-0.22.0 \ wepoll-ffi-0.1.2 \ winapi-0.2.8 \ winapi-0.3.9 \ winapi-build-0.1.1 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-util-0.1.5 \ winapi-x86_64-pc-windows-gnu-0.4.0 \ windows-sys-0.36.1 \ windows_aarch64_msvc-0.36.1 \ windows_i686_gnu-0.36.1 \ windows_i686_msvc-0.36.1 \ windows_x86_64_gnu-0.36.1 \ windows_x86_64_msvc-0.36.1 \ ws2_32-sys-0.2.1 \ x25519-dalek-1.2.0 \ x509-signature-0.5.0 \ xz2-0.1.6 \ zeroize-1.3.0 \ zeroize_derive-1.3.2 \ zstd-0.11.2+zstd.1.5.2 \ zstd-safe-5.0.2+zstd.1.5.2 \ zstd-sys-2.0.1+zstd.1.5.2 do-install: ${INSTALL_SCRIPT} ${CARGO_TARGET_DIR}/${CARGO_BUILD_TARGET}/*/arti ${STAGEDIR}${PREFIX}/bin/arti post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/arti @${MKDIR} ${STAGEDIR}${ETCDIR} ${STAGEDIR}/var/log/arti ${STAGEDIR}/var/run/arti ${STAGEDIR}/var/db/arti ${INSTALL_DATA} ${WRKSRC}/crates/arti/src/arti-example-config.toml ${STAGEDIR}${ETCDIR}/arti.toml.sample .include diff --git a/security/authenticator/Makefile b/security/authenticator/Makefile index 8749e9609a1a..a4f9d1d8fa57 100644 --- a/security/authenticator/Makefile +++ b/security/authenticator/Makefile @@ -1,365 +1,365 @@ PORTNAME= authenticator DISTVERSION= 4.0.3 -PORTREVISION= 11 +PORTREVISION= 12 CATEGORIES= security PATCH_SITES= ${GL_SITE}/${GL_ACCOUNT}/${GL_PROJECT}/-/commit/ PATCHFILES+= 5d68dae3c878.patch:-p1 # https://gitlab.gnome.org/World/Authenticator/-/merge_requests/211 PATCHFILES+= 76e7c31709a2.patch:-p1 # https://gitlab.gnome.org/World/Authenticator/-/merge_requests/215 MAINTAINER= jbeich@FreeBSD.org COMMENT= Generate Two-Factor Codes LICENSE= GPLv3+ LICENSE_FILE= ${WRKSRC}/LICENSE IGNORE= crashes with libadwaita >= 1.0 LIB_DEPENDS= libcurl.so:ftp/curl \ libgraphene-1.0.so:graphics/graphene \ libzbar.so:graphics/zbar USES= cargo gettext gnome gstreamer meson pkgconfig python:build shebangfix sqlite ssl USE_GITLAB= yes USE_GNOME= gtk40 libadwaita USE_GSTREAMER= gl gtk4 zbar GL_SITE= https://gitlab.gnome.org GL_ACCOUNT= World GL_PROJECT= Authenticator GL_COMMIT= ba1894159358275be2765bc42ef89782a2d1d45d SHEBANG_FILES= build-aux/meson_post_install.py CARGO_ENV= ZBAR_INCLUDE_DIRS="${LOCALBASE}/include" ZBAR_LIB_DIRS="${LOCALBASE}/lib" MAKE_ENV= ${CARGO_ENV} GLIB_SCHEMAS= com.belmoussaoui.Authenticator.gschema.xml CARGO_CRATES= adler-1.0.2 \ adler32-1.2.0 \ aead-0.3.2 \ aes-0.6.0 \ aes-gcm-0.8.0 \ aes-soft-0.6.4 \ aesni-0.10.0 \ aho-corasick-0.7.15 \ anyhow-1.0.39 \ arrayref-0.3.6 \ arrayvec-0.5.2 \ async-channel-1.6.1 \ async-executor-1.4.0 \ async-global-executor-2.0.2 \ async-io-1.3.1 \ async-lock-2.3.0 \ async-mutex-1.4.0 \ async-std-1.9.0 \ async-task-4.0.3 \ async-trait-0.1.48 \ atomic-waker-1.0.0 \ atty-0.2.14 \ autocfg-1.0.1 \ base-x-0.2.8 \ base64-0.13.0 \ binascii-0.1.4 \ bitflags-1.2.1 \ blake2b_simd-0.5.11 \ block-0.1.6 \ block-buffer-0.9.0 \ block-modes-0.7.0 \ block-padding-0.2.1 \ blocking-1.0.2 \ bumpalo-3.6.1 \ bytemuck-1.5.1 \ byteorder-1.4.3 \ bytes-0.5.6 \ bytes-1.0.1 \ cache-padded-1.1.1 \ cc-1.0.67 \ cfg-expr-0.7.4 \ cfg-if-1.0.0 \ checked_int_cast-1.0.0 \ cipher-0.2.5 \ cmake-0.1.45 \ color_quant-1.1.0 \ concurrent-queue-1.2.2 \ const_fn-0.4.5 \ constant_time_eq-0.1.5 \ cookie-0.14.4 \ cpuid-bool-0.1.2 \ cpuid-bool-0.2.0 \ crc32fast-1.2.1 \ crossbeam-channel-0.5.0 \ crossbeam-deque-0.8.0 \ crossbeam-epoch-0.9.3 \ crossbeam-utils-0.8.3 \ crypto-mac-0.10.0 \ ctor-0.1.20 \ ctr-0.6.0 \ curl-0.4.35 \ curl-sys-0.4.41+curl-7.75.0 \ dashmap-4.0.2 \ data-encoding-2.3.2 \ deflate-0.8.6 \ derivative-2.2.0 \ diesel-1.4.6 \ diesel_derives-1.4.1 \ diesel_migrations-1.4.0 \ digest-0.9.0 \ discard-1.0.4 \ dlib-0.5.0 \ doc-comment-0.3.3 \ downcast-rs-1.2.0 \ either-1.6.1 \ encoding_rs-0.8.28 \ enum-ordinalize-3.1.9 \ enumflags2-0.6.4 \ enumflags2_derive-0.6.4 \ env_logger-0.7.1 \ event-listener-2.5.1 \ fastrand-1.4.0 \ field-offset-0.3.3 \ flume-0.9.2 \ fnv-1.0.7 \ form_urlencoded-1.0.1 \ freetype-0.7.0 \ freetype-sys-0.13.1 \ futures-0.3.13 \ futures-channel-0.3.13 \ futures-core-0.3.13 \ futures-executor-0.3.13 \ futures-io-0.3.13 \ futures-lite-1.11.3 \ futures-macro-0.3.13 \ futures-sink-0.3.13 \ futures-task-0.3.13 \ futures-util-0.3.13 \ generic-array-0.14.4 \ getrandom-0.1.16 \ getrandom-0.2.2 \ gettext-rs-0.6.0 \ gettext-sys-0.21.0 \ ghash-0.3.1 \ gif-0.11.2 \ gloo-timers-0.2.1 \ gtk-macros-0.2.0 \ heck-0.3.2 \ hermit-abi-0.1.18 \ hex-0.4.3 \ hkdf-0.10.0 \ hmac-0.10.1 \ http-0.2.3 \ http-client-6.3.5 \ http-types-2.10.0 \ humantime-1.3.0 \ idna-0.2.2 \ image-0.23.14 \ infer-0.2.3 \ instant-0.1.9 \ isahc-0.9.14 \ itertools-0.9.0 \ itertools-0.10.0 \ itoa-0.4.7 \ jpeg-decoder-0.1.22 \ js-sys-0.3.49 \ kv-log-macro-1.0.7 \ lazy_static-1.4.0 \ libc-0.2.91 \ libloading-0.7.0 \ libnghttp2-sys-0.1.6+1.43.0 \ libsqlite3-sys-0.20.1 \ libz-sys-1.1.2 \ locale_config-0.3.0 \ lock_api-0.4.2 \ log-0.4.14 \ malloc_buf-0.0.6 \ matches-0.1.8 \ memchr-2.3.4 \ memoffset-0.6.1 \ migrations_internals-1.4.1 \ migrations_macros-1.4.2 \ mime-0.3.16 \ mime_guess-2.0.3 \ miniz_oxide-0.3.7 \ miniz_oxide-0.4.4 \ muldiv-1.0.0 \ nb-connect-1.1.0 \ nix-0.20.0 \ num-0.3.1 \ num-bigint-0.3.2 \ num-complex-0.3.1 \ num-integer-0.1.44 \ num-iter-0.1.42 \ num-rational-0.3.2 \ num-rational-0.4.0 \ num-traits-0.2.14 \ num_cpus-1.13.0 \ objc-0.2.7 \ objc-foundation-0.1.1 \ objc_id-0.1.1 \ once_cell-1.7.2 \ opaque-debug-0.3.0 \ openssl-probe-0.1.2 \ openssl-sys-0.9.61 \ parking-2.0.0 \ parking_lot-0.11.1 \ parking_lot_core-0.8.3 \ paste-1.0.5 \ percent-encoding-2.1.0 \ pest-2.1.3 \ pin-project-1.0.6 \ pin-project-internal-1.0.6 \ pin-project-lite-0.2.6 \ pin-utils-0.1.0 \ pkg-config-0.3.19 \ png-0.16.8 \ polling-2.0.3 \ polyval-0.4.5 \ ppv-lite86-0.2.10 \ pretty-hex-0.2.1 \ pretty_env_logger-0.4.0 \ proc-macro-crate-0.1.5 \ proc-macro-error-1.0.4 \ proc-macro-error-attr-1.0.4 \ proc-macro-hack-0.5.19 \ proc-macro-nested-0.1.7 \ proc-macro2-1.0.24 \ qrcode-0.12.0 \ quick-error-1.2.3 \ quick-xml-0.22.0 \ quote-1.0.9 \ r2d2-0.8.9 \ rand-0.7.3 \ rand-0.8.3 \ rand_chacha-0.2.2 \ rand_chacha-0.3.0 \ rand_core-0.5.1 \ rand_core-0.6.2 \ rand_hc-0.2.0 \ rand_hc-0.3.0 \ rayon-1.5.0 \ rayon-core-1.9.0 \ redox_syscall-0.2.5 \ regex-1.4.5 \ regex-syntax-0.6.23 \ remove_dir_all-0.5.3 \ ring-0.16.20 \ roxmltree-0.13.1 \ rust-argon2-0.8.3 \ rustc_version-0.2.3 \ rustc_version-0.3.3 \ ryu-1.0.5 \ schannel-0.1.19 \ scheduled-thread-pool-0.2.5 \ scoped-tls-1.0.0 \ scoped_threadpool-0.1.9 \ scopeguard-1.1.0 \ secret-service-2.0.1 \ semver-0.9.0 \ semver-0.11.0 \ semver-parser-0.7.0 \ semver-parser-0.10.2 \ serde-1.0.125 \ serde_derive-1.0.125 \ serde_json-1.0.64 \ serde_qs-0.7.2 \ serde_repr-0.1.6 \ serde_urlencoded-0.7.0 \ sha1-0.6.0 \ sha2-0.9.3 \ slab-0.4.2 \ sluice-0.5.4 \ smallvec-1.6.1 \ socket2-0.3.19 \ socket2-0.4.0 \ spin-0.5.2 \ spinning_top-0.2.2 \ standback-0.2.17 \ stdweb-0.4.20 \ stdweb-derive-0.5.3 \ stdweb-internal-macros-0.2.9 \ stdweb-internal-runtime-0.1.5 \ strum-0.20.0 \ strum_macros-0.20.1 \ subtle-2.4.0 \ surf-2.2.0 \ svg_metadata-0.4.2 \ syn-1.0.64 \ system-deps-3.1.0 \ tempfile-3.2.0 \ termcolor-1.1.2 \ thiserror-1.0.24 \ thiserror-impl-1.0.24 \ tiff-0.6.1 \ time-0.2.26 \ time-macros-0.1.1 \ time-macros-impl-0.1.1 \ tinyvec-1.1.1 \ tinyvec_macros-0.1.0 \ toml-0.5.8 \ tracing-0.1.25 \ tracing-attributes-0.1.15 \ tracing-core-0.1.17 \ tracing-futures-0.2.5 \ typenum-1.13.0 \ ucd-trie-0.1.3 \ unicase-2.6.0 \ unicode-bidi-0.3.4 \ unicode-normalization-0.1.17 \ unicode-segmentation-1.7.1 \ unicode-xid-0.2.1 \ universal-hash-0.4.0 \ untrusted-0.7.1 \ url-2.2.1 \ value-bag-1.0.0-alpha.6 \ vcpkg-0.2.11 \ vec-arena-1.1.0 \ version-compare-0.0.11 \ version_check-0.9.3 \ waker-fn-1.1.0 \ wasi-0.9.0+wasi-snapshot-preview1 \ wasi-0.10.2+wasi-snapshot-preview1 \ wasm-bindgen-0.2.72 \ wasm-bindgen-backend-0.2.72 \ wasm-bindgen-futures-0.4.22 \ wasm-bindgen-macro-0.2.72 \ wasm-bindgen-macro-support-0.2.72 \ wasm-bindgen-shared-0.2.72 \ wayland-client-0.28.5 \ wayland-commons-0.28.5 \ wayland-scanner-0.28.5 \ wayland-sys-0.28.5 \ web-sys-0.3.49 \ weezl-0.1.4 \ wepoll-sys-3.0.1 \ winapi-0.3.9 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-util-0.1.5 \ winapi-x86_64-pc-windows-gnu-0.4.0 \ x11-2.18.2 \ xml-rs-0.8.3 \ xmlparser-0.13.3 \ zbar-rust-0.0.16 \ zbus-1.8.0 \ zbus_macros-1.8.0 \ zvariant-2.6.0 \ zvariant_derive-2.6.0 \ gstreamer,gstreamer-base,gstreamer-base-sys,gstreamer-sys@git+https://gitlab.freedesktop.org/gstreamer/gstreamer-rs\#762450bb5335d8c79cc29a6111874d89bd3b5c00 \ gdk4,gdk4-sys,gdk4-wayland,gdk4-wayland-sys,gdk4-x11,gdk4-x11-sys,gsk4,gsk4-sys,gtk4,gtk4-macros,gtk4-sys@git+https://github.com/gtk-rs/gtk4-rs\#13a8317a2ef8738362b9fa7f55a29dd5d3dbc459 \ libadwaita,libadwaita-sys@git+https://gitlab.gnome.org/bilelmoussaoui/libadwaita-rs\#6ae4d3670565064acc9da2f51434eca0a0c51ac9 \ ashpd@git+https://github.com/bilelmoussaoui/ashpd\#d7ec2103565301b8476d6706ef34090e197b021c \ cairo-rs,cairo-sys-rs,gdk-pixbuf,gdk-pixbuf-sys,gio,gio-sys,glib,glib-macros,glib-sys,gobject-sys,graphene-rs,graphene-sys,pango,pango-sys@git+https://github.com/gtk-rs/gtk3-rs\#6e3c8739f9f5b8dc0a234f4a485e254574af5953 CARGO_BUILD= no CARGO_INSTALL= no CARGO_TEST= no pre-patch: # Chase gtk-rs -> gtk3-rs rename for USES=cargo patching @${GREP} --include='*/Cargo.toml' -lr 'git.*gtk-rs' ${WRKDIR} | ${XARGS} ${REINPLACE_CMD} \ 's,\(gtk-rs\)/gtk-rs,\1/gtk3-rs,' post-patch: @${REINPLACE_CMD} -e '/gstreamer/s/1\.18/1.16/' \ -e '/gstreamer.*bad/d' \ ${WRKSRC}/meson.build # Make each cargo subcommand very verbose @${REINPLACE_CMD} -e '/cargo/s/ --/&verbose&verbose&/' \ ${WRKSRC}/build-aux/cargo.sh .include diff --git a/security/cargo-audit/Makefile b/security/cargo-audit/Makefile index d2eb8ccc85cc..b1e44798ba46 100644 --- a/security/cargo-audit/Makefile +++ b/security/cargo-audit/Makefile @@ -1,301 +1,301 @@ PORTNAME= cargo-audit DISTVERSIONPREFIX= v DISTVERSION= 0.17.0 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= security MAINTAINER= mikael@FreeBSD.org COMMENT= Audit Cargo.lock for crates with security vulnerabilities LICENSE= APACHE20 MIT LICENSE_COMB= dual LICENSE_FILE_APACHE20= ${WRKSRC}/LICENSE-APACHE LICENSE_FILE_MIT= ${WRKSRC}/LICENSE-MIT LIB_DEPENDS= libgit2.so:devel/libgit2 \ libssh2.so:security/libssh2 USES= cargo localbase ssl USE_GITHUB= yes GH_ACCOUNT= RustSec GH_PROJECT= rustsec GH_TAGNAME= ${PORTNAME}/v${DISTVERSION} CARGO_CRATES= abscissa_core-0.6.0 \ abscissa_derive-0.6.0 \ addr2line-0.17.0 \ adler-1.0.2 \ aho-corasick-0.7.18 \ ansi_term-0.12.1 \ anyhow-1.0.57 \ arc-swap-1.5.0 \ askama-0.11.1 \ askama_derive-0.11.2 \ askama_escape-0.10.3 \ askama_shared-0.12.2 \ atom_syndication-0.11.0 \ atty-0.2.14 \ autocfg-1.1.0 \ backtrace-0.3.65 \ base64-0.13.0 \ bincode-1.3.3 \ bitflags-1.3.2 \ block-buffer-0.7.3 \ block-buffer-0.9.0 \ block-padding-0.1.5 \ bumpalo-3.9.1 \ byte-tools-0.3.1 \ byteorder-1.4.3 \ bytes-1.1.0 \ camino-1.0.9 \ canonical-path-2.0.2 \ cargo-edit-0.9.1 \ cargo-platform-0.1.2 \ cargo_metadata-0.14.2 \ cc-1.0.73 \ cfg-if-1.0.0 \ chrono-0.4.19 \ chunked_transfer-1.4.0 \ clap-2.34.0 \ clap-3.1.18 \ clap_derive-3.1.18 \ clap_lex-0.2.0 \ color-eyre-0.6.1 \ combine-4.6.4 \ comrak-0.12.1 \ concolor-control-0.0.7 \ concolor-query-0.0.4 \ core-foundation-0.9.3 \ core-foundation-sys-0.8.3 \ cpufeatures-0.2.2 \ crates-index-0.18.8 \ crc32fast-1.3.2 \ crossbeam-channel-0.5.4 \ crossbeam-deque-0.8.1 \ crossbeam-epoch-0.9.8 \ crossbeam-utils-0.8.8 \ darling-0.12.4 \ darling_core-0.12.4 \ darling_macro-0.12.4 \ derive_builder-0.10.2 \ derive_builder_core-0.10.2 \ derive_builder_macro-0.10.2 \ digest-0.8.1 \ digest-0.9.0 \ diligent-date-parser-0.1.3 \ dirs-4.0.0 \ dirs-next-2.0.0 \ dirs-sys-0.3.7 \ dirs-sys-next-0.1.2 \ dunce-1.0.2 \ either-1.6.1 \ encoding_rs-0.8.31 \ entities-1.0.1 \ env_proxy-0.4.1 \ eyre-0.6.8 \ fake-simd-0.1.2 \ fastrand-1.7.0 \ fixedbitset-0.4.1 \ flate2-1.0.23 \ fnv-1.0.7 \ foreign-types-0.3.2 \ foreign-types-shared-0.1.1 \ form_urlencoded-1.0.1 \ fs-err-2.7.0 \ generic-array-0.12.4 \ generic-array-0.14.5 \ getrandom-0.2.6 \ gimli-0.26.1 \ git2-0.14.4 \ gumdrop-0.8.1 \ gumdrop_derive-0.8.1 \ hashbrown-0.11.2 \ heck-0.4.0 \ hermit-abi-0.1.19 \ hex-0.4.3 \ home-0.5.3 \ humansize-1.1.1 \ humantime-2.1.0 \ humantime-serde-1.1.1 \ ident_case-1.0.1 \ idna-0.2.3 \ indenter-0.3.3 \ indexmap-1.7.0 \ instant-0.1.12 \ itertools-0.10.3 \ itoa-1.0.2 \ jobserver-0.1.24 \ js-sys-0.3.57 \ kstring-1.0.6 \ lazy_static-1.4.0 \ lazycell-1.3.0 \ libc-0.2.126 \ libgit2-sys-0.13.4+1.4.2 \ libssh2-sys-0.2.23 \ libz-sys-1.1.6 \ line-wrap-0.1.1 \ linked-hash-map-0.5.4 \ log-0.4.17 \ maplit-1.0.2 \ matchers-0.1.0 \ matches-0.1.9 \ memchr-2.5.0 \ memoffset-0.6.5 \ mime-0.3.16 \ mime_guess-2.0.4 \ minimal-lexical-0.2.1 \ miniz_oxide-0.5.1 \ native-tls-0.2.10 \ never-0.1.0 \ nom-7.1.1 \ num-integer-0.1.45 \ num-traits-0.2.15 \ num_cpus-1.13.1 \ num_threads-0.1.6 \ object-0.28.4 \ once_cell-1.12.0 \ onig-6.3.1 \ onig_sys-69.7.1 \ opaque-debug-0.2.3 \ opaque-debug-0.3.0 \ openssl-0.10.40 \ openssl-macros-0.1.0 \ openssl-probe-0.1.5 \ openssl-src-111.20.0+1.1.1o \ openssl-sys-0.9.73 \ os_str_bytes-6.0.1 \ owo-colors-3.4.0 \ pathdiff-0.2.1 \ percent-encoding-2.1.0 \ pest-2.1.3 \ pest_derive-2.1.0 \ pest_generator-2.1.3 \ pest_meta-2.1.3 \ petgraph-0.6.1 \ pin-project-lite-0.2.9 \ pkg-config-0.3.25 \ plist-1.3.1 \ proc-macro-error-1.0.4 \ proc-macro-error-attr-1.0.4 \ proc-macro2-1.0.39 \ quick-xml-0.22.0 \ quote-1.0.18 \ rayon-1.5.3 \ rayon-core-1.9.3 \ redox_syscall-0.2.13 \ redox_users-0.4.3 \ regex-1.5.6 \ regex-automata-0.1.10 \ regex-syntax-0.6.26 \ remove_dir_all-0.5.3 \ ring-0.16.20 \ rust-embed-6.4.0 \ rust-embed-impl-6.2.0 \ rust-embed-utils-7.2.0 \ rustc-demangle-0.1.21 \ rustc-hash-1.1.0 \ rustls-0.20.6 \ ryu-1.0.10 \ safemem-0.3.3 \ same-file-1.0.6 \ schannel-0.1.20 \ scopeguard-1.1.0 \ sct-0.7.0 \ secrecy-0.8.0 \ security-framework-2.6.1 \ security-framework-sys-2.6.1 \ semver-1.0.9 \ serde-1.0.137 \ serde_derive-1.0.137 \ serde_json-1.0.81 \ sha-1-0.8.2 \ sha2-0.9.9 \ sharded-slab-0.1.4 \ shell-words-1.1.0 \ smallvec-1.8.0 \ smartstring-1.0.1 \ socks-0.3.4 \ spin-0.5.2 \ static_assertions-1.1.0 \ strsim-0.8.0 \ strsim-0.10.0 \ subprocess-0.2.9 \ syn-1.0.95 \ synstructure-0.12.6 \ syntect-4.6.0 \ tempfile-3.3.0 \ termcolor-1.1.3 \ terminal_size-0.1.17 \ textwrap-0.11.0 \ textwrap-0.15.0 \ thiserror-1.0.31 \ thiserror-impl-1.0.31 \ thread_local-1.1.4 \ time-0.1.43 \ time-0.3.9 \ tinyvec-1.6.0 \ tinyvec_macros-0.1.0 \ toml-0.5.9 \ toml_edit-0.13.4 \ tracing-0.1.34 \ tracing-attributes-0.1.21 \ tracing-core-0.1.26 \ tracing-log-0.1.3 \ tracing-subscriber-0.3.11 \ twoway-0.2.2 \ typed-arena-1.7.0 \ typenum-1.15.0 \ ucd-trie-0.1.3 \ unchecked-index-0.2.2 \ unicase-2.6.0 \ unicode-bidi-0.3.8 \ unicode-ident-1.0.0 \ unicode-normalization-0.1.19 \ unicode-width-0.1.9 \ unicode-xid-0.2.3 \ unicode_categories-0.1.1 \ untrusted-0.7.1 \ ureq-2.4.0 \ url-2.2.2 \ valuable-0.1.0 \ vcpkg-0.2.15 \ vec_map-0.8.2 \ version_check-0.9.4 \ wait-timeout-0.2.0 \ walkdir-2.3.2 \ wasi-0.10.2+wasi-snapshot-preview1 \ wasm-bindgen-0.2.80 \ wasm-bindgen-backend-0.2.80 \ wasm-bindgen-macro-0.2.80 \ wasm-bindgen-macro-support-0.2.80 \ wasm-bindgen-shared-0.2.80 \ web-sys-0.3.57 \ webpki-0.22.0 \ webpki-roots-0.22.3 \ winapi-0.3.9 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-util-0.1.5 \ winapi-x86_64-pc-windows-gnu-0.4.0 \ windows-sys-0.36.1 \ windows_aarch64_msvc-0.36.1 \ windows_i686_gnu-0.36.1 \ windows_i686_msvc-0.36.1 \ windows_x86_64_gnu-0.36.1 \ windows_x86_64_msvc-0.36.1 \ xdg-2.4.1 \ xml-rs-0.8.4 \ yaml-rust-0.4.5 \ zeroize-1.5.5 \ base64-0.5.1 \ byteorder-1.3.1 NO_TEST= yes PLIST_FILES= bin/cargo-audit WRKSRC_SUBDIR= cargo-audit post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/cargo-audit .include diff --git a/security/clamav/Makefile b/security/clamav/Makefile index 1cb845d8e798..f221e815020a 100644 --- a/security/clamav/Makefile +++ b/security/clamav/Makefile @@ -1,135 +1,136 @@ PORTNAME= clamav DISTVERSION= 0.105.1 +PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= security MASTER_SITES= https://www.clamav.net/downloads/production/ MAINTAINER= yasu@FreeBSD.org COMMENT= Open-source (GPL) anti-virus engine (Regular Feature Release) LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/COPYING.txt BUILD_DEPENDS= ${RUST_DEFAULT}>=1.56.0:lang/${RUST_DEFAULT} \ tomsfastmath>0:math/tomsfastmath LIB_DEPENDS= libcurl.so:ftp/curl \ libjson-c.so:devel/json-c \ libmspack.so:archivers/libmspack \ libpcre2-8.so:devel/pcre2 USES= cmake cpe gnome iconv ncurses pkgconfig ssl USE_GNOME= libxml2 USE_LDCONFIG= yes USE_RC_SUBR= clamav-clamd clamav-freshclam CMAKE_ARGS= -DDATABASE_DIRECTORY:STRING=${_DBDIR} CMAKE_ON= ENABLE_EXTERNAL_MSPACK ENABLE_EXTERNAL_TOMSFASTMATH TEST_TARGET= check CONFLICTS_INSTALL= clamav-lts SUB_FILES= pkg-message SUB_LIST+= CHMOD=${CHMOD} \ CHOWN=${CHOWN} \ CLAMAV_CLAMD_PIDFILE=${_CLAMAV_CLAMD_PIDFILE} \ CLAMAV_CLAMD_SOCKET=${_CLAMAV_CLAMD_SOCKET} \ CLAMAV_MILTER_SOCKET=${_CLAMAV_MILTER_SOCKET} \ CLAMAVGROUP=${_CLAMAVGROUP} \ CLAMAVUSER=${_CLAMAVUSER} \ DBDIR=${_DBDIR} \ LOGDIR=${_LOGDIR} \ RUNDIR=${_RUNDIR} USERS= ${_CLAMAVUSER} GROUPS= ${_CLAMAVGROUP} mail PLIST_SUB+= CLAMAVGROUP=${_CLAMAVGROUP} \ CLAMAVUSER=${_CLAMAVUSER} \ DBDIR=${_DBDIR} \ LOGDIR=${_LOGDIR} \ RUNDIR=${_RUNDIR} OPTIONS_DEFINE= ARC ARJ DOCS EXPERIMENTAL LHA MILTER STDERR TESTS UNRAR UNZOO OPTIONS_DEFAULT= ARC ARJ MILTER UNRAR UNZOO OPTIONS_SUB= yes ARC_DESC= Enable arch archives support ARJ_DESC= Enable arj archives support EXPERIMENTAL_DESC= Build experimental code LHA_DESC= Enable lha archives support MILTER_DESC= Compile the milter interface STDERR_DESC= Print logs to stderr instead of stdout TESTS_DESC= Build with test enabled (`make test` requires it) UNZOO_DESC= Enable zoo archives support ARC_RUN_DEPENDS= arc:archivers/arc ARJ_RUN_DEPENDS= arj:archivers/arj EXPERIMENTAL_CMAKE_BOOL= ENABLE_EXPERIMENTAL LHA_RUN_DEPENDS= lha:archivers/lha .if !exists(/usr/lib/libmilter.so) MILTER_LIB_DEPENDS= libmilter.so:mail/libmilter .endif MILTER_USE= RC_SUBR=clamav-milter .if !exists(/usr/lib/libmilter.so) MILTER_USE+= localbase .endif MILTER_CMAKE_BOOL= ENABLE_MILTER STDERR_EXTRA_PATCHES= ${FILESDIR}/extra-patch-common_output.c TESTS_BUILD_DEPENDS= ${LOCALBASE}/include/check.h:devel/check TESTS_USES= python:build TESTS_CMAKE_BOOL= ENABLE_TESTS UNRAR_CMAKE_BOOL= ENABLE_UNRAR UNZOO_RUN_DEPENDS= unzoo:archivers/unzoo _CLAMAVUSER?= clamav _CLAMAVGROUP?= clamav _CLAMAV_CLAMD_SOCKET?= ${_RUNDIR}/clamd.sock _CLAMAV_CLAMD_PIDFILE?= ${_RUNDIR}/clamd.pid _CLAMAV_MILTER_SOCKET?= ${_RUNDIR}/clmilter.sock _DBDIR= /var/db/clamav _LOGDIR= /var/log/clamav _RUNDIR= /var/run/clamav _SED_CONF= -E -e 's|^\#?(Example)$$|\#\1|' -e \ 's|^\#?((Update)?LogFile) .*/([a-z]+\.log)$$|\1 ${_LOGDIR}/\3|' \ -e 's|^\#?(PidFile) .*/([a-z\-]+\.pid)$$|\1 ${_RUNDIR}/\2|' -e \ 's|^\#?(LocalSocket) .*$$|\1 ${_CLAMAV_CLAMD_SOCKET}|' -e \ 's|^\#?(User) .*$$|\1 ${_CLAMAVUSER}|' -e \ 's|^\#?(AllowSupplementaryGroups).*$$|\1 yes|' -e \ 's|^\#?(ScanMail).*$$|\1 yes|' -e \ 's|^\#?(DatabaseDirectory) .*$$|\1 ${_DBDIR}|' -e \ 's|^\#?(DatabaseOwner) .*$$|\1 ${_CLAMAVUSER}|' -e \ 's|^\#?(FixStaleSocket).*$$|\1 yes|' -e \ 's|^\#?(NotifyClamd) .*$$|\1 ${PREFIX}/etc/clamd.conf|' -e \ 's|^\#?(MilterSocket) */tmp.*$$|\1 ${_CLAMAV_MILTER_SOCKET}|' \ -e 's|^\#?(ClamdSocket).*$$|\1 unix:${_CLAMAV_CLAMD_SOCKET}|' post-patch: @${REINPLACE_CMD} ${_SED_CONF} \ ${WRKSRC}/etc/clamd.conf.sample \ ${WRKSRC}/etc/freshclam.conf.sample \ ${WRKSRC}/etc/clamav-milter.conf.sample post-install: ${INSTALL_DATA} ${INSTALL_WRKSRC}/clamav-config.h ${STAGEDIR}${PREFIX}/include @${MKDIR} ${STAGEDIR}${_DBDIR} \ ${STAGEDIR}${_LOGDIR} \ ${STAGEDIR}${_RUNDIR} post-install-DOCS-on: ${MV} ${STAGEDIR}${PREFIX}/share/doc/ClamAV ${STAGEDIR}${DOCSDIR} post-install-DOCS-off: ${RM} -r ${STAGEDIR}${PREFIX}/share/doc/ClamAV pre-test-TESTS-off: @${ECHO_MSG} '******************************************************************' && \ ${ECHO_MSG} '***** You need to enable TESTS option to execute `make test` *****' && \ ${ECHO_MSG} '******************************************************************' && \ ${FALSE} .include diff --git a/security/cloak/Makefile b/security/cloak/Makefile index 2d9b7b79af15..bb24fe2b8997 100644 --- a/security/cloak/Makefile +++ b/security/cloak/Makefile @@ -1,108 +1,108 @@ PORTNAME= cloak DISTVERSIONPREFIX= v DISTVERSION= 0.3.0 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= security MAINTAINER= mikael@FreeBSD.org COMMENT= Command line OTP Authenticator application LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= cargo USE_GITHUB= yes GH_ACCOUNT= evansmurithi CARGO_CRATES= aho-corasick-0.7.18 \ assert_cmd-2.0.4 \ assert_fs-1.0.7 \ atty-0.2.14 \ autocfg-1.0.1 \ bitflags-1.3.2 \ bstr-0.2.17 \ bumpalo-3.9.1 \ cc-1.0.72 \ cfg-if-1.0.0 \ clap-3.0.13 \ crossbeam-utils-0.8.6 \ data-encoding-2.3.2 \ difflib-0.4.0 \ dirs-next-2.0.0 \ dirs-sys-next-0.1.2 \ doc-comment-0.3.3 \ either-1.6.1 \ escargot-0.5.7 \ fastrand-1.7.0 \ float-cmp-0.9.0 \ fnv-1.0.7 \ getrandom-0.2.4 \ globset-0.4.8 \ globwalk-0.8.1 \ hashbrown-0.11.2 \ hermit-abi-0.1.19 \ ignore-0.4.18 \ indexmap-1.8.0 \ instant-0.1.12 \ itertools-0.10.3 \ itoa-1.0.1 \ js-sys-0.3.56 \ lazy_static-1.4.0 \ libc-0.2.116 \ log-0.4.14 \ memchr-2.4.1 \ normalize-line-endings-0.3.0 \ num-traits-0.2.14 \ once_cell-1.9.0 \ os_str_bytes-6.0.0 \ predicates-2.1.1 \ predicates-core-1.0.3 \ predicates-tree-1.0.5 \ proc-macro2-1.0.36 \ quote-1.0.15 \ redox_syscall-0.2.10 \ redox_users-0.4.0 \ regex-1.5.4 \ regex-automata-0.1.10 \ regex-syntax-0.6.25 \ remove_dir_all-0.5.3 \ ring-0.16.20 \ ryu-1.0.9 \ same-file-1.0.6 \ serde-1.0.136 \ serde_derive-1.0.136 \ serde_json-1.0.78 \ spin-0.5.2 \ strsim-0.10.0 \ syn-1.0.86 \ tempfile-3.3.0 \ termcolor-1.1.2 \ terminal_size-0.1.17 \ termtree-0.2.4 \ textwrap-0.14.2 \ thiserror-1.0.30 \ thiserror-impl-1.0.30 \ thread_local-1.1.4 \ toml-0.5.8 \ unicode-xid-0.2.2 \ untrusted-0.7.1 \ wait-timeout-0.2.0 \ walkdir-2.3.2 \ wasi-0.10.2+wasi-snapshot-preview1 \ wasm-bindgen-0.2.79 \ wasm-bindgen-backend-0.2.79 \ wasm-bindgen-macro-0.2.79 \ wasm-bindgen-macro-support-0.2.79 \ wasm-bindgen-shared-0.2.79 \ web-sys-0.3.56 \ winapi-0.3.9 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-util-0.1.5 \ winapi-x86_64-pc-windows-gnu-0.4.0 PLIST_FILES= bin/cloak post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/cloak .include diff --git a/security/gpg-tui/Makefile b/security/gpg-tui/Makefile index 207b104bf122..22d7ca7e1682 100644 --- a/security/gpg-tui/Makefile +++ b/security/gpg-tui/Makefile @@ -1,35 +1,36 @@ PORTNAME= gpg-tui DISTVERSIONPREFIX= v DISTVERSION= 0.9.1 +PORTREVISION= 1 CATEGORIES= security MAINTAINER= se@FreeBSD.org COMMENT= Terminal User Interface for GnuPG LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE BUILD_DEPENDS= gpgme>=1.7.0:security/gpgme LIB_DEPENDS= libassuan.so:security/libassuan \ libgpg-error.so:security/libgpg-error \ libxcb.so:x11/libxcb \ libxkbcommon.so:x11/libxkbcommon RUN_DEPENDS= gpg:security/gnupg \ gpgme>=1.7.0:security/gpgme USES= cargo python:build USE_GITHUB= yes GH_ACCOUNT= orhun BINARY_ALIAS= python3=${PYTHON_CMD} PLIST_FILES= bin/gpg-tui \ bin/gpg-tui-completions \ man/man1/gpg-tui.1.gz post-install: ${INSTALL_DATA} ${WRKSRC}/man/gpg-tui.1 ${STAGEDIR}${MANPREFIX}/man/man1/ ${STRIP_CMD} ${STAGEDIR}${MANPREFIX}/bin/gpg-tui-completions ${STRIP_CMD} ${STAGEDIR}${MANPREFIX}/bin/gpg-tui .include diff --git a/security/rustscan/Makefile b/security/rustscan/Makefile index 1b1b0996d461..4827fdbb426b 100644 --- a/security/rustscan/Makefile +++ b/security/rustscan/Makefile @@ -1,202 +1,202 @@ PORTNAME= rustscan PORTVERSION= 2.1.0 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= security MAINTAINER= mikael@FreeBSD.org COMMENT= Faster Nmap Scanning with Rust LICENSE= GPLv3 LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= nmap>0:security/nmap USES= cargo USE_GITHUB= yes GH_ACCOUNT= RustScan GH_PROJECT= RustScan CARGO_CRATES= addr2line-0.17.0 \ adler-1.0.2 \ aho-corasick-0.7.18 \ ansi_term-0.12.1 \ anyhow-1.0.56 \ async-channel-1.6.1 \ async-executor-1.4.1 \ async-global-executor-2.0.4 \ async-io-1.6.0 \ async-lock-2.5.0 \ async-mutex-1.4.0 \ async-std-1.11.0 \ async-task-4.2.0 \ async-trait-0.1.53 \ atomic-waker-1.0.0 \ atty-0.2.14 \ autocfg-1.1.0 \ backtrace-0.3.65 \ base64-0.11.0 \ bitflags-1.3.2 \ blocking-1.2.0 \ bumpalo-3.9.1 \ bytes-0.5.6 \ cache-padded-1.2.0 \ cc-1.0.73 \ cfg-if-0.1.10 \ cfg-if-1.0.0 \ cidr-utils-0.5.6 \ clap-2.34.0 \ colored-2.0.0 \ colorful-0.2.1 \ concurrent-queue-1.2.2 \ crossbeam-utils-0.8.8 \ ctor-0.1.22 \ debug-helper-0.3.13 \ dirs-3.0.2 \ dirs-sys-0.3.7 \ either-1.6.1 \ enum-as-inner-0.3.4 \ env_logger-0.8.4 \ event-listener-2.5.2 \ fastrand-1.7.0 \ form_urlencoded-1.0.1 \ fuchsia-zircon-0.3.3 \ fuchsia-zircon-sys-0.3.3 \ futures-0.3.21 \ futures-channel-0.3.21 \ futures-core-0.3.21 \ futures-executor-0.3.21 \ futures-io-0.3.21 \ futures-lite-1.12.0 \ futures-macro-0.3.21 \ futures-sink-0.3.21 \ futures-task-0.3.21 \ futures-util-0.3.21 \ gcd-2.1.0 \ getrandom-0.1.16 \ getrandom-0.2.6 \ gimli-0.26.1 \ gloo-timers-0.2.4 \ heck-0.3.3 \ heck-0.4.0 \ hermit-abi-0.1.19 \ hostname-0.3.1 \ humantime-2.1.0 \ idna-0.2.3 \ instant-0.1.12 \ iovec-0.1.4 \ ipconfig-0.2.2 \ itertools-0.9.0 \ itoa-1.0.1 \ js-sys-0.3.57 \ kernel32-sys-0.2.2 \ kv-log-macro-1.0.7 \ lazy_static-1.4.0 \ libc-0.2.124 \ linked-hash-map-0.5.4 \ log-0.4.16 \ lru-cache-0.1.2 \ match_cfg-0.1.0 \ matches-0.1.9 \ memchr-2.4.1 \ miniz_oxide-0.5.1 \ mio-0.6.23 \ miow-0.2.2 \ net2-0.2.37 \ num-bigint-0.4.3 \ num-integer-0.1.44 \ num-traits-0.2.14 \ num_cpus-1.13.1 \ object-0.28.3 \ once_cell-1.10.0 \ parking-2.0.0 \ paste-1.0.7 \ percent-encoding-2.1.0 \ pin-project-lite-0.1.12 \ pin-project-lite-0.2.8 \ pin-utils-0.1.0 \ polling-2.2.0 \ ppv-lite86-0.2.16 \ proc-macro-error-1.0.4 \ proc-macro-error-attr-1.0.4 \ proc-macro2-1.0.37 \ quick-error-1.2.3 \ quote-1.0.18 \ rand-0.7.3 \ rand_chacha-0.2.2 \ rand_core-0.5.1 \ rand_hc-0.2.0 \ redox_syscall-0.2.13 \ redox_users-0.4.3 \ regex-1.5.5 \ regex-syntax-0.6.25 \ resolv-conf-0.7.0 \ ring-0.16.20 \ rlimit-0.5.4 \ rustc-demangle-0.1.21 \ rustls-0.17.0 \ ryu-1.0.9 \ sct-0.6.1 \ serde-1.0.136 \ serde_derive-1.0.136 \ serde_json-1.0.79 \ shell-words-1.1.0 \ slab-0.4.6 \ smallvec-1.8.0 \ socket2-0.3.19 \ socket2-0.4.4 \ spin-0.5.2 \ strsim-0.8.0 \ structopt-0.3.26 \ structopt-derive-0.4.18 \ subprocess-0.2.8 \ syn-1.0.91 \ termcolor-1.1.3 \ text_placeholder-0.4.0 \ textwrap-0.11.0 \ thiserror-1.0.30 \ thiserror-impl-1.0.30 \ tinyvec-1.5.1 \ tinyvec_macros-0.1.0 \ tokio-0.2.25 \ tokio-rustls-0.13.1 \ toml-0.5.9 \ trust-dns-proto-0.19.7 \ trust-dns-resolver-0.19.7 \ trust-dns-rustls-0.19.7 \ unicode-bidi-0.3.7 \ unicode-normalization-0.1.19 \ unicode-segmentation-1.9.0 \ unicode-width-0.1.9 \ unicode-xid-0.2.2 \ untrusted-0.7.1 \ url-2.2.2 \ value-bag-1.0.0-alpha.8 \ vec_map-0.8.2 \ version_check-0.9.4 \ wait-timeout-0.2.0 \ waker-fn-1.1.0 \ wasi-0.9.0+wasi-snapshot-preview1 \ wasi-0.10.2+wasi-snapshot-preview1 \ wasm-bindgen-0.2.80 \ wasm-bindgen-backend-0.2.80 \ wasm-bindgen-futures-0.4.30 \ wasm-bindgen-macro-0.2.80 \ wasm-bindgen-macro-support-0.2.80 \ wasm-bindgen-shared-0.2.80 \ web-sys-0.3.57 \ webpki-0.21.4 \ webpki-roots-0.19.0 \ wepoll-ffi-0.1.2 \ widestring-0.4.3 \ winapi-0.2.8 \ winapi-0.3.9 \ winapi-build-0.1.1 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-util-0.1.5 \ winapi-x86_64-pc-windows-gnu-0.4.0 \ winreg-0.6.2 \ ws2_32-sys-0.2.1 PLIST_FILES= bin/rustscan .include diff --git a/security/sequoia/Makefile b/security/sequoia/Makefile index 3581621a4490..26d0355f034d 100644 --- a/security/sequoia/Makefile +++ b/security/sequoia/Makefile @@ -1,336 +1,336 @@ PORTNAME= sequoia PORTVERSION= 0.19.0 DISTVERSIONPREFIX= v -PORTREVISION= 17 +PORTREVISION= 18 CATEGORIES= security MAINTAINER= phryk-ports@wzff.de COMMENT= Modern PGP implementation, written in rust LICENSE= GPLv2+ LICENSE_FILE= ${WRKSRC}/LICENSE.txt BUILD_DEPENDS+= llvm${LLVM_DEFAULT}>0:devel/llvm${LLVM_DEFAULT} LIB_DEPENDS+= libcapnp.so:devel/capnproto LIB_DEPENDS+= libgmp.so:math/gmp LIB_DEPENDS+= libnettle.so:security/nettle USES= cargo ssl USE_LDCONFIG= yes USE_GITLAB= yes GL_ACCOUNT= sequoia-pgp GL_PROJECT= sequoia GL_COMMIT= 383133f6be990237044900a4df676488bf8dd71e CARGO_BUILD_ARGS+= --all SOVERS= ${PORTVERSION} SUB_LIST= VERSION=${SOVERS} SUB_FILES= sequoia-openpgp.pc SUB_FILES+= sequoia.pc # autogenerated by make cargo-crates CARGO_CRATES= adler32-1.2.0 \ aho-corasick-0.7.13 \ ansi_term-0.11.0 \ anyhow-1.0.32 \ arrayref-0.3.6 \ arrayvec-0.5.1 \ ascii-canvas-2.0.0 \ assert_cli-0.6.3 \ atty-0.2.14 \ autocfg-0.1.7 \ autocfg-1.0.1 \ backtrace-0.3.46 \ backtrace-sys-0.1.37 \ base64-0.11.0 \ base64-0.12.3 \ bindgen-0.51.1 \ bit-set-0.5.2 \ bit-vec-0.6.2 \ bitflags-1.2.1 \ blake2b_simd-0.5.10 \ block-buffer-0.7.3 \ block-buffer-0.9.0 \ block-padding-0.1.5 \ bstr-0.2.13 \ byte-tools-0.3.1 \ byteorder-1.3.4 \ bytes-0.4.12 \ bzip2-0.3.3 \ bzip2-sys-0.1.9+1.0.8 \ capnp-0.10.3 \ capnp-futures-0.10.1 \ capnp-rpc-0.10.0 \ capnpc-0.10.2 \ cc-1.0.59 \ cexpr-0.3.6 \ cfg-if-0.1.10 \ chrono-0.4.15 \ clang-sys-0.28.1 \ clap-2.33.3 \ cloudabi-0.0.3 \ colored-1.9.1 \ constant_time_eq-0.1.5 \ core-foundation-0.7.0 \ core-foundation-sys-0.7.0 \ cpuid-bool-0.1.2 \ crc32fast-1.2.0 \ crossbeam-deque-0.7.3 \ crossbeam-epoch-0.8.2 \ crossbeam-queue-0.2.3 \ crossbeam-utils-0.7.2 \ crossterm-0.13.3 \ crossterm_winapi-0.4.0 \ csv-1.1.3 \ csv-core-0.1.10 \ ctor-0.1.15 \ curve25519-dalek-3.0.0 \ diff-0.1.12 \ difference-2.0.0 \ digest-0.8.1 \ digest-0.9.0 \ dirs-1.0.5 \ dirs-2.0.2 \ dirs-sys-0.3.5 \ doc-comment-0.3.3 \ docopt-1.1.0 \ dyn-clone-1.0.1 \ ed25519-1.0.1 \ ed25519-dalek-1.0.0 \ either-1.6.0 \ ena-0.13.1 \ encode_unicode-0.3.6 \ environment-0.1.1 \ failure-0.1.8 \ failure_derive-0.1.8 \ fake-simd-0.1.2 \ fallible-iterator-0.2.0 \ fallible-streaming-iterator-0.1.9 \ filetime-0.2.12 \ fixedbitset-0.1.9 \ flate2-1.0.14 \ fnv-1.0.7 \ foreign-types-0.3.2 \ foreign-types-shared-0.1.1 \ fs2-0.4.3 \ fuchsia-cprng-0.1.1 \ fuchsia-zircon-0.3.3 \ fuchsia-zircon-sys-0.3.3 \ futures-0.1.29 \ futures-cpupool-0.1.8 \ generic-array-0.12.3 \ generic-array-0.14.4 \ getrandom-0.1.14 \ glob-0.3.0 \ h2-0.1.26 \ hashbrown-0.8.2 \ heck-0.3.1 \ hermit-abi-0.1.15 \ http-0.1.21 \ http-body-0.1.0 \ httparse-1.3.4 \ hyper-0.12.35 \ hyper-tls-0.3.2 \ idna-0.2.0 \ indexmap-1.5.1 \ iovec-0.1.4 \ itertools-0.8.2 \ itoa-0.4.6 \ kernel32-sys-0.2.2 \ lalrpop-0.17.2 \ lalrpop-util-0.17.2 \ lazy_static-1.4.0 \ libc-0.2.76 \ libloading-0.5.2 \ libm-0.2.1 \ libsqlite3-sys-0.15.0 \ linked-hash-map-0.5.3 \ lock_api-0.3.4 \ log-0.4.11 \ lru-cache-0.1.2 \ mach_o_sys-0.1.1 \ matches-0.1.8 \ maybe-uninit-2.0.0 \ memchr-2.3.3 \ memoffset-0.5.5 \ memsec-0.5.7 \ miniz_oxide-0.3.7 \ mio-0.6.22 \ mio-named-pipes-0.1.7 \ mio-uds-0.6.8 \ miow-0.2.1 \ miow-0.3.5 \ native-tls-0.2.4 \ net2-0.2.34 \ nettle-7.0.0 \ nettle-src-3.5.1-2 \ nettle-sys-2.0.4 \ new_debug_unreachable-1.0.4 \ nom-4.2.3 \ num-bigint-dig-0.6.0 \ num-integer-0.1.43 \ num-iter-0.1.41 \ num-traits-0.2.12 \ num_cpus-1.13.0 \ opaque-debug-0.2.3 \ opaque-debug-0.3.0 \ openssl-0.10.30 \ openssl-probe-0.1.2 \ openssl-sys-0.9.58 \ ordermap-0.3.5 \ parity-tokio-ipc-0.4.0 \ parking_lot-0.9.0 \ parking_lot_core-0.6.2 \ peeking_take_while-0.1.2 \ percent-encoding-2.1.0 \ petgraph-0.4.13 \ phf_generator-0.7.24 \ phf_shared-0.7.24 \ pkg-config-0.3.18 \ ppv-lite86-0.2.9 \ precomputed-hash-0.1.1 \ prettytable-rs-0.8.0 \ proc-macro-error-1.0.4 \ proc-macro-error-attr-1.0.4 \ proc-macro2-1.0.19 \ quickcheck-0.9.2 \ quote-1.0.7 \ rand-0.6.5 \ rand-0.7.3 \ rand_chacha-0.1.1 \ rand_chacha-0.2.2 \ rand_core-0.3.1 \ rand_core-0.4.2 \ rand_core-0.5.1 \ rand_hc-0.1.0 \ rand_hc-0.2.0 \ rand_isaac-0.1.1 \ rand_jitter-0.1.4 \ rand_os-0.1.3 \ rand_pcg-0.1.2 \ rand_xorshift-0.1.1 \ rdrand-0.4.0 \ redox_syscall-0.1.57 \ redox_users-0.3.4 \ regex-1.3.9 \ regex-automata-0.1.9 \ regex-syntax-0.6.18 \ remove_dir_all-0.5.3 \ rpassword-4.0.3 \ rusqlite-0.19.0 \ rust-argon2-0.7.0 \ rustc-demangle-0.1.16 \ rustc-hash-1.1.0 \ rustc_version-0.2.3 \ ryu-1.0.5 \ schannel-0.1.19 \ scoped-tls-0.1.2 \ scopeguard-1.1.0 \ security-framework-0.4.4 \ security-framework-sys-0.4.3 \ semver-0.9.0 \ semver-parser-0.7.0 \ serde-1.0.115 \ serde_derive-1.0.115 \ serde_json-1.0.57 \ sha2-0.8.2 \ sha2-0.9.1 \ shlex-0.1.1 \ signature-1.2.2 \ siphasher-0.2.3 \ slab-0.4.2 \ smallvec-0.6.13 \ smallvec-1.4.2 \ socket2-0.3.11 \ spin-0.5.2 \ string-0.2.1 \ string_cache-0.7.5 \ string_cache_codegen-0.4.4 \ string_cache_shared-0.3.0 \ strsim-0.8.0 \ strsim-0.9.3 \ structopt-0.3.16 \ structopt-derive-0.4.9 \ subtle-2.2.3 \ syn-1.0.38 \ synstructure-0.12.4 \ tempfile-3.1.0 \ term-0.5.2 \ textwrap-0.11.0 \ thiserror-1.0.20 \ thiserror-impl-1.0.20 \ thread_local-1.0.1 \ time-0.1.43 \ tokio-0.1.22 \ tokio-buf-0.1.1 \ tokio-codec-0.1.2 \ tokio-core-0.1.17 \ tokio-current-thread-0.1.7 \ tokio-executor-0.1.10 \ tokio-fs-0.1.7 \ tokio-io-0.1.13 \ tokio-named-pipes-0.1.0 \ tokio-reactor-0.1.12 \ tokio-sync-0.1.8 \ tokio-tcp-0.1.4 \ tokio-threadpool-0.1.18 \ tokio-timer-0.2.13 \ tokio-udp-0.1.6 \ tokio-uds-0.2.7 \ try-lock-0.2.3 \ typenum-1.12.0 \ unicode-bidi-0.3.4 \ unicode-normalization-0.1.9 \ unicode-segmentation-1.6.0 \ unicode-width-0.1.8 \ unicode-xid-0.1.0 \ unicode-xid-0.2.1 \ url-2.1.1 \ vcpkg-0.2.10 \ vec_map-0.8.2 \ version_check-0.1.5 \ version_check-0.9.2 \ want-0.2.0 \ wasi-0.9.0+wasi-snapshot-preview1 \ win-crypto-ng-0.2.0 \ winapi-0.2.8 \ winapi-0.3.9 \ winapi-build-0.1.1 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-x86_64-pc-windows-gnu-0.4.0 \ ws2_32-sys-0.2.1 \ zbase32-0.1.2 \ zeroize-1.1.0 \ zeroize_derive-1.0.0 do-install: ${MKDIR} ${STAGEDIR}${PREFIX}/lib/sequoia \ ${STAGEDIR}${PREFIX}/etc/bash_completion.d \ ${STAGEDIR}${PREFIX}/share/fish/completions \ ${STAGEDIR}${PREFIX}/share/zsh/site-functions .for f in ffi openpgp_ffi ${INSTALL_LIB} ${CARGO_TARGET_DIR}/${CARGO_BUILD_TARGET}/*/libsequoia_${f}.so ${STAGEDIR}${PREFIX}/lib/libsequoia_${f}.so.${SOVERS} ${LN} -sf libsequoia_${f}.so.${SOVERS} ${STAGEDIR}${PREFIX}/lib/libsequoia_${f}.so .endfor ${INSTALL_LIB} ${CARGO_TARGET_DIR}/*/libsequoia_ffi_macros.so ${STAGEDIR}${PREFIX}/lib/libsequoia_ffi_macros.so.${SOVERS} ${LN} -sf libsequoia_ffi_macros.so.${SOVERS} ${STAGEDIR}${PREFIX}/lib/libsequoia_ffi_macros.so .for f in sq sqop sqv ${INSTALL_PROGRAM} ${CARGO_TARGET_DIR}/${CARGO_BUILD_TARGET}/*/${f} ${STAGEDIR}${PREFIX}/bin .endfor ${INSTALL_PROGRAM} ${CARGO_TARGET_DIR}/${CARGO_BUILD_TARGET}/*/sequoia-public-key-store ${STAGEDIR}${PREFIX}/lib/sequoia/sequoia-public-key-store (cd ${WRKSRC}/ffi/include && ${COPYTREE_SHARE} . ${STAGEDIR}${PREFIX}/include) (cd ${WRKSRC}/openpgp-ffi/include/sequoia && ${COPYTREE_SHARE} . ${STAGEDIR}${PREFIX}/include/sequoia) ${INSTALL_DATA} ${CARGO_TARGET_DIR}/sq.bash ${STAGEDIR}${PREFIX}/etc/bash_completion.d/sq ${INSTALL_DATA} ${CARGO_TARGET_DIR}/sqv.bash ${STAGEDIR}${PREFIX}/etc/bash_completion.d/sqv ${INSTALL_DATA} ${CARGO_TARGET_DIR}/sq.fish ${STAGEDIR}${PREFIX}/share/fish/completions ${INSTALL_DATA} ${CARGO_TARGET_DIR}/sqv.fish ${STAGEDIR}${PREFIX}/share/fish/completions ${INSTALL_DATA} ${CARGO_TARGET_DIR}/_sq ${STAGEDIR}${PREFIX}/share/zsh/site-functions ${INSTALL_DATA} ${CARGO_TARGET_DIR}/_sqv ${STAGEDIR}${PREFIX}/share/zsh/site-functions ${INSTALL_DATA} ${WRKDIR}/sequoia.pc ${STAGEDIR}${PREFIX}/libdata/pkgconfig/ ${INSTALL_DATA} ${WRKDIR}/sequoia-openpgp.pc ${STAGEDIR}${PREFIX}/libdata/pkgconfig/ .include diff --git a/security/sniffglue/Makefile b/security/sniffglue/Makefile index ad7f289c7f8a..0bdb46ed48ca 100644 --- a/security/sniffglue/Makefile +++ b/security/sniffglue/Makefile @@ -1,339 +1,339 @@ PORTNAME= sniffglue DISTVERSIONPREFIX= v DISTVERSION= 0.15.0 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= security MAINTAINER= freebsd@sysctl.cz COMMENT= Secure multithreaded packet sniffer LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/LICENSE BUILD_DEPENDS= cargo-cbuild:devel/cargo-c LIB_DEPENDS= libpcap.so:net/libpcap USES= cargo USE_GITHUB= yes GH_ACCOUNT= kpcyrd GH_PROJECT= sniffglue CARGO_CRATES= addr2line-0.14.1 \ adler-1.0.2 \ aho-corasick-0.7.15 \ ansi_term-0.11.0 \ ansi_term-0.12.1 \ anyhow-1.0.39 \ arrayref-0.3.6 \ arrayvec-0.5.2 \ atty-0.2.14 \ autocfg-1.0.1 \ bstr-0.2.16 \ backtrace-0.3.56 \ base64-0.10.1 \ base64-0.13.0 \ bitflags-1.2.1 \ bitflags-1.3.2 \ bitvec-0.19.5 \ blake2b_simd-0.5.11 \ block-buffer-0.7.3 \ block-buffer-0.8.0 \ block-buffer-0.9.0 \ block-buffer-0.10.0 \ block-padding-0.1.5 \ boxxy-0.11.0 \ boxxy-0.12.0 \ bufstream-0.1.4 \ bumpalo-3.6.1 \ byte-tools-0.3.1 \ byteorder-1.4.3 \ bytes-0.4.12 \ caps-0.3.4 \ caps-0.5.0 \ cc-1.0.67 \ cc-1.0.73 \ cfg-if-0.1.10 \ cfg-if-1.0.0 \ clap-2.33.0 \ clap-2.33.3 \ clipboard-win-4.4.1 \ cloudabi-0.0.3 \ constant_time_eq-0.1.5 \ cpufeatures-0.2.2 \ cpuid-bool-0.1.2 \ crossbeam-deque-0.7.3 \ crossbeam-epoch-0.8.2 \ crossbeam-queue-0.2.3 \ crossbeam-utils-0.7.2 \ crossbeam-utils-0.8.3 \ ct-logs-0.6.0 \ crypto-common-0.1.3 \ dhcp4r-0.2.2 \ digest-0.10.3 \ digest-0.8.1 \ digest-0.9.0 \ dirs-2.0.2 \ dirs-next-2.0.0 \ dirs-sys-0.3.5 \ dirs-sys-next-0.1.2 \ dns-parser-0.8.0 \ either-1.6.1 \ enum-primitive-derive-0.2.1 \ enum-primitive-derive-0.2.2 \ enum_primitive-0.1.1 \ env_logger-0.8.0 \ env_logger-0.8.3 \ env_logger-0.9.0 \ errno-0.2.7 \ errno-0.2.8 \ errno-dragonfly-0.1.1 \ error-chain-0.12.4 \ error-code-2.3.1 \ endian-type-0.1.2 \ fake-simd-0.1.2 \ fd-lock-3.0.5 \ fnv-1.0.7 \ form_urlencoded-1.0.1 \ fuchsia-zircon-0.3.3 \ fuchsia-zircon-sys-0.3.3 \ funty-1.1.0 \ futures-0.1.31 \ futures-cpupool-0.1.8 \ gcc-0.3.55 \ generic-array-0.12.4 \ generic-array-0.14.4 \ getrandom-0.1.16 \ getrandom-0.2.2 \ gimli-0.23.0 \ h2-0.1.26 \ hashbrown-0.9.1 \ heck-0.3.2 \ hermit-abi-0.1.18 \ hermit-abi-0.1.6 \ http-0.1.21 \ http-body-0.1.0 \ httparse-1.3.5 \ humantime-2.1.0 \ hyper-0.12.36 \ hyper-rustls-0.17.1 \ idna-0.2.2 \ indexmap-1.6.2 \ iovec-0.1.4 \ itoa-0.4.7 \ itoa-1.0.1 \ io-lifetimes-0.6.1 \ js-sys-0.3.49 \ kernel32-sys-0.2.2 \ lazy_static-1.4.0 \ lexical-core-0.7.5 \ libc-0.2.121 \ libc-0.2.90 \ linux-raw-sys-0.0.42 \ lock_api-0.3.4 \ log-0.4.14 \ log-0.4.16 \ matches-0.1.8 \ maybe-uninit-2.0.0 \ memchr-2.3.4 \ memchr-2.4.1 \ memoffset-0.5.6 \ memoffset-0.6.5 \ minimal-lexical-0.2.1 \ minimal-lexical-0.1.2 \ miniz_oxide-0.4.4 \ mio-0.6.23 \ mio-uds-0.6.8 \ miow-0.2.2 \ net2-0.2.37 \ nix-0.14.1 \ nix-0.15.0 \ nix-0.20.0 \ nix-0.22.0 \ nix-0.23.0 \ nibble_vec-0.1.0 \ nom-5.1.2 \ nom-6.1.2 \ nom-7.0.0 \ nom-derive-0.10.0 \ nom-derive-0.7.1 \ nom-derive-0.7.2 \ num-traits-0.1.43 \ num-traits-0.2.14 \ num_cpus-1.13.0 \ num_cpus-1.13.1 \ nom-derive-impl-0.10.0 \ object-0.23.0 \ once_cell-1.7.2 \ opaque-debug-0.2.3 \ opaque-debug-0.3.0 \ parking_lot-0.9.0 \ parking_lot_core-0.6.2 \ pcap-sys-0.1.3 \ percent-encoding-2.1.0 \ phf-0.10.1 \ phf-0.8.0 \ phf_codegen-0.10.0 \ phf_codegen-0.8.0 \ phf_generator-0.8.0 \ phf_generator-0.10.0 \ phf_shared-0.8.0 \ phf_shared-0.10.0 \ pkg-config-0.3.19 \ pkg-config-0.3.24 \ pktparse-0.5.0 \ pktparse-0.7.1 \ pledge-0.3.1 \ pledge-0.4.0 \ ppv-lite86-0.2.10 \ proc-macro-error-1.0.4 \ proc-macro-error-attr-1.0.4 \ proc-macro2-1.0.24 \ proc-macro2-1.0.36 \ quick-error-1.0.0 \ quick-error-1.2.3 \ quote-1.0.17 \ quote-1.0.9 \ radium-0.5.3 \ rand-0.7.3 \ rand-0.8.0 \ rand_chacha-0.2.2 \ rand_chacha-0.3.0 \ rand_core-0.5.1 \ rand_core-0.6.1 \ rand_hc-0.2.0 \ rand_hc-0.3.0 \ rand_pcg-0.2.1 \ radix_trie-0.2.1 \ redox_syscall-0.1.57 \ redox_syscall-0.2.5 \ redox_users-0.3.5 \ redox_users-0.4.0 \ reduce-0.1.4 \ regex-1.4.5 \ regex-1.5.5 \ regex-automata-0.1.5 \ regex-syntax-0.6.23 \ ring-0.16.20 \ rust-argon2-0.8.3 \ rustc-demangle-0.1.18 \ rustc_version-0.2.3 \ rustversion-1.0.6 \ rusticata-macros-3.0.1 \ rusticata-macros-4.1.0 \ rustls-0.16.0 \ rustyline-5.0.6 \ rustyline-9.0.0 \ rustix-0.34.1 \ ryu-1.0.5 \ ryu-1.0.9 \ scoped-tls-0.1.2 \ scopeguard-1.1.0 \ sct-0.6.0 \ seccomp-sys-0.1.3 \ semver-0.9.0 \ semver-parser-0.7.0 \ serde-1.0.124 \ serde-1.0.136 \ serde_derive-1.0.124 \ serde_derive-1.0.136 \ serde_json-1.0.64 \ serde_json-1.0.79 \ sha2-0.8.2 \ sha2-0.9.0 \ sha2-0.9.3 \ sha2-0.10.0 \ siphasher-0.3.5 \ slab-0.4.2 \ smallvec-0.6.14 \ smallvec-1.6.1 \ spin-0.5.2 \ static_assertions-1.1.0 \ string-0.2.1 \ strsim-0.8.0 \ str-buf-1.0.0 \ structopt-0.3.21 \ structopt-0.3.26 \ structopt-derive-0.4.14 \ structopt-derive-0.4.18 \ strum-0.19.5 \ strum-0.21.0 \ strum_macros-0.19.4 \ strum_macros-0.21.0 \ syn-1.0.64 \ syn-1.0.89 \ syscallz-0.15.0 \ syscallz-0.16.0 \ tap-1.0.1 \ termcolor-1.1.2 \ termcolor-1.1.3 \ textwrap-0.11.0 \ time-0.1.43 \ tinyvec-1.1.1 \ tinyvec_macros-0.1.0 \ tls-parser-0.10.0 \ tls-parser-0.11.0 \ thiserror-1.0.30 \ thiserror-impl-1.0.30 \ tokio-0.1.22 \ tokio-buf-0.1.1 \ tokio-codec-0.1.2 \ tokio-core-0.1.18 \ tokio-core-0.1.8 \ tokio-current-thread-0.1.7 \ tokio-executor-0.1.10 \ tokio-fs-0.1.7 \ tokio-io-0.1.13 \ tokio-reactor-0.1.12 \ tokio-rustls-0.10.3 \ tokio-sync-0.1.8 \ tokio-tcp-0.1.4 \ tokio-threadpool-0.1.18 \ tokio-timer-0.2.13 \ tokio-udp-0.1.6 \ tokio-uds-0.2.7 \ toml-0.5.8 \ try-lock-0.2.3 \ typenum-1.13.0 \ typenum-1.14.0 \ unicode-bidi-0.3.4 \ unicode-normalization-0.1.17 \ unicode-segmentation-1.7.1 \ unicode-width-0.1.8 \ unicode-xid-0.2.1 \ untrusted-0.7.1 \ url-2.2.1 \ users-0.11.0 \ utf8parse-0.1.1 \ utf8parse-0.2.0 \ vec_map-0.8.2 \ version_check-0.9.3 \ void-1.0.2 \ want-0.2.0 \ wasi-0.10.2+wasi-snapshot-preview1 \ wasi-0.9.0+wasi-snapshot-preview1 \ wasm-bindgen-0.2.72 \ wasm-bindgen-backend-0.2.72 \ wasm-bindgen-macro-0.2.72 \ wasm-bindgen-macro-support-0.2.72 \ wasm-bindgen-shared-0.2.72 \ web-sys-0.3.49 \ webpki-0.21.4 \ webpki-roots-0.17.0 \ winapi-0.2.8 \ winapi-0.3.9 \ winapi-build-0.1.1 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-util-0.1.5 \ winapi-x86_64-pc-windows-gnu-0.4.0 \ windows-sys-0.30.0 \ windows_aarch64_msvc-0.30.0 \ windows_i686_gnu-0.30.0 \ windows_i686_msvc-0.30.0 \ windows_x86_64_gnu-0.30.0 \ windows_x86_64_msvc-0.30.0 \ ws2_32-sys-0.2.1 \ wyz-0.2.0 PLIST_FILES= bin/sniffglue .include diff --git a/security/solana/Makefile b/security/solana/Makefile index 2f0f94a8612e..e4bbd4831171 100644 --- a/security/solana/Makefile +++ b/security/solana/Makefile @@ -1,626 +1,626 @@ PORTNAME= solana DISTVERSIONPREFIX= v DISTVERSION= 1.9.4 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= security MAINTAINER= yuri@FreeBSD.org COMMENT= Web-scale blockchain for decentralized apps and marketplaces LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE BROKEN= Fails to build with rust 1.61.0+, see https://github.com/quinn-rs/quinn/issues/1142 BROKEN_i386= Fails on 32-bit systems: https://github.com/solana-labs/solana/issues/16811 BUILD_DEPENDS= llvm-config${LLVM_VERSION}:devel/llvm${LLVM_VERSION} \ protoc:devel/protobuf \ gmake:devel/gmake LIB_DEPENDS= libhidapi.so:comms/hidapi USES= cargo pkgconfig ssl USE_GITHUB= yes GH_ACCOUNT= solana-labs CARGO_CRATES= Inflector-0.11.4 \ addr2line-0.16.0 \ adler-1.0.2 \ ahash-0.4.7 \ ahash-0.7.6 \ aho-corasick-0.7.18 \ aliasable-0.1.3 \ ansi_term-0.11.0 \ anyhow-1.0.51 \ arc-swap-1.5.0 \ arrayref-0.3.6 \ arrayvec-0.5.2 \ arrayvec-0.7.2 \ ascii-0.9.3 \ assert_cmd-2.0.2 \ assert_matches-1.5.0 \ async-stream-0.3.2 \ async-stream-impl-0.3.2 \ async-trait-0.1.51 \ atty-0.2.14 \ autocfg-0.1.7 \ autocfg-1.0.1 \ backoff-0.3.0 \ backtrace-0.3.62 \ base-x-0.2.8 \ base32-0.4.0 \ base64-0.9.3 \ base64-0.10.1 \ base64-0.12.3 \ base64-0.13.0 \ bincode-1.3.3 \ bindgen-0.59.1 \ bit-set-0.5.2 \ bit-vec-0.6.3 \ bitflags-1.3.2 \ bitvec-0.19.5 \ blake3-0.3.8 \ blake3-1.2.0 \ block-buffer-0.7.3 \ block-buffer-0.9.0 \ block-padding-0.1.5 \ block-padding-0.2.1 \ borsh-0.9.1 \ borsh-derive-0.9.1 \ borsh-derive-internal-0.9.1 \ borsh-schema-derive-internal-0.9.1 \ bs58-0.3.1 \ bs58-0.4.0 \ bstr-0.2.17 \ bumpalo-3.8.0 \ bv-0.11.1 \ byte-tools-0.3.1 \ byte-unit-4.0.13 \ bytecount-0.6.2 \ bytemuck-1.7.2 \ bytemuck_derive-1.0.1 \ byteorder-1.4.3 \ bytes-0.4.12 \ bytes-1.1.0 \ bytesize-1.1.0 \ bzip2-0.4.3 \ bzip2-sys-0.1.11+1.0.8 \ camino-1.0.5 \ caps-0.5.3 \ cargo-platform-0.1.2 \ cargo_metadata-0.14.1 \ cast-0.2.7 \ cc-1.0.71 \ cexpr-0.5.0 \ cfg-if-0.1.10 \ cfg-if-1.0.0 \ chrono-0.4.19 \ chrono-humanize-0.2.1 \ clang-sys-1.2.2 \ clap-2.33.3 \ clap-3.0.0-beta.5 \ clap_derive-3.0.0-beta.5 \ cloudabi-0.0.3 \ combine-3.8.1 \ console-0.15.0 \ console_error_panic_hook-0.1.7 \ console_log-0.2.0 \ const_fn-0.4.8 \ const_format-0.2.22 \ const_format_proc_macros-0.2.22 \ constant_time_eq-0.1.5 \ convert_case-0.4.0 \ core-foundation-0.9.2 \ core-foundation-sys-0.8.3 \ core_affinity-0.5.10 \ cpufeatures-0.2.1 \ crc32fast-1.2.1 \ criterion-stats-0.3.0 \ crossbeam-channel-0.5.1 \ crossbeam-deque-0.8.1 \ crossbeam-epoch-0.9.5 \ crossbeam-utils-0.7.2 \ crossbeam-utils-0.8.5 \ crunchy-0.2.2 \ crypto-mac-0.8.0 \ crypto-mac-0.9.1 \ crypto-mac-0.11.1 \ csv-1.1.6 \ csv-core-0.1.10 \ ctrlc-3.2.1 \ curve25519-dalek-2.1.3 \ curve25519-dalek-3.2.0 \ dashmap-4.0.2 \ derivation-path-0.1.3 \ derivative-2.2.0 \ derive_more-0.99.16 \ dialoguer-0.9.0 \ difflib-0.4.0 \ digest-0.8.1 \ digest-0.9.0 \ dir-diff-0.3.2 \ dirs-next-2.0.0 \ dirs-sys-next-0.1.2 \ discard-1.0.4 \ dlopen-0.1.8 \ dlopen_derive-0.1.4 \ doc-comment-0.3.3 \ dtoa-0.4.8 \ ed25519-1.2.0 \ ed25519-dalek-1.0.1 \ ed25519-dalek-bip32-0.1.1 \ educe-0.4.18 \ either-1.6.1 \ encode_unicode-0.3.6 \ encoding_rs-0.8.29 \ enum-iterator-0.7.0 \ enum-iterator-derive-0.7.0 \ enum-ordinalize-3.1.10 \ env_logger-0.8.4 \ env_logger-0.9.0 \ errno-0.2.8 \ errno-dragonfly-0.1.2 \ etcd-client-0.8.1 \ failure-0.1.8 \ failure_derive-0.1.8 \ fake-simd-0.1.2 \ fallible-iterator-0.2.0 \ fast-math-0.1.1 \ fd-lock-3.0.1 \ feature-probe-0.1.1 \ filedescriptor-0.8.1 \ filetime-0.2.15 \ fixedbitset-0.4.0 \ flate2-1.0.22 \ fnv-1.0.7 \ foreign-types-0.3.2 \ foreign-types-shared-0.1.1 \ form_urlencoded-1.0.1 \ fs_extra-1.2.0 \ fuchsia-cprng-0.1.1 \ fuchsia-zircon-0.3.3 \ fuchsia-zircon-sys-0.3.3 \ funty-1.1.0 \ futures-0.1.31 \ futures-0.3.18 \ futures-channel-0.3.18 \ futures-core-0.3.18 \ futures-executor-0.3.18 \ futures-io-0.3.18 \ futures-macro-0.3.18 \ futures-sink-0.3.18 \ futures-task-0.3.18 \ futures-util-0.3.18 \ gag-1.0.0 \ generic-array-0.12.4 \ generic-array-0.14.4 \ gethostname-0.2.1 \ getrandom-0.1.16 \ getrandom-0.2.3 \ gimli-0.25.0 \ glob-0.3.0 \ globset-0.4.8 \ goauth-0.10.0 \ goblin-0.4.3 \ h2-0.3.7 \ half-1.8.2 \ hash32-0.1.1 \ hashbrown-0.9.1 \ hashbrown-0.11.2 \ heck-0.3.3 \ hermit-abi-0.1.19 \ hex-0.4.3 \ hidapi-1.3.0 \ histogram-0.6.9 \ hmac-0.8.1 \ hmac-0.9.0 \ hmac-0.11.0 \ hmac-drbg-0.3.0 \ http-0.2.5 \ http-body-0.4.4 \ httparse-1.5.1 \ httpdate-1.0.1 \ humantime-2.1.0 \ hyper-0.10.16 \ hyper-0.14.14 \ hyper-rustls-0.22.1 \ hyper-timeout-0.4.1 \ hyper-tls-0.5.0 \ idna-0.1.5 \ idna-0.2.3 \ ieee754-0.2.6 \ indexmap-1.7.0 \ indicatif-0.16.2 \ instant-0.1.12 \ iovec-0.1.4 \ ipnet-2.3.1 \ itertools-0.9.0 \ itertools-0.10.1 \ itoa-0.4.8 \ jobserver-0.1.24 \ js-sys-0.3.55 \ jsonrpc-client-transports-18.0.0 \ jsonrpc-core-18.0.0 \ jsonrpc-core-client-18.0.0 \ jsonrpc-derive-18.0.0 \ jsonrpc-http-server-18.0.0 \ jsonrpc-ipc-server-18.0.0 \ jsonrpc-pubsub-18.0.0 \ jsonrpc-server-utils-18.0.0 \ jsonrpc-ws-server-18.0.0 \ keccak-0.1.0 \ kernel32-sys-0.2.2 \ language-tags-0.2.2 \ lazy_static-1.4.0 \ lazycell-1.3.0 \ libc-0.2.108 \ libloading-0.7.2 \ libm-0.2.1 \ librocksdb-sys-6.20.3 \ libsecp256k1-0.5.0 \ libsecp256k1-0.6.0 \ libsecp256k1-core-0.2.2 \ libsecp256k1-gen-ecmult-0.2.1 \ libsecp256k1-gen-genmult-0.2.1 \ linked-hash-map-0.5.4 \ lock_api-0.3.4 \ lock_api-0.4.5 \ log-0.3.9 \ log-0.4.14 \ lru-0.7.1 \ matches-0.1.9 \ maybe-uninit-2.0.0 \ md-5-0.9.1 \ memchr-2.4.1 \ memmap2-0.1.0 \ memmap2-0.5.0 \ memoffset-0.6.4 \ mime-0.2.6 \ mime-0.3.16 \ minimal-lexical-0.1.4 \ miniz_oxide-0.4.4 \ mio-0.6.23 \ mio-0.7.14 \ mio-extras-2.0.6 \ miow-0.2.2 \ miow-0.3.7 \ multimap-0.8.3 \ native-tls-0.2.8 \ net2-0.2.37 \ nix-0.23.0 \ nom-6.1.2 \ nom-7.0.0 \ ntapi-0.3.6 \ num-bigint-0.4.2 \ num-derive-0.3.3 \ num-integer-0.1.44 \ num-traits-0.2.14 \ num_cpus-1.13.0 \ num_enum-0.5.4 \ num_enum_derive-0.5.4 \ number_prefix-0.4.0 \ object-0.27.1 \ once_cell-1.8.0 \ opaque-debug-0.2.3 \ opaque-debug-0.3.0 \ openssl-0.10.38 \ openssl-probe-0.1.4 \ openssl-src-300.0.4+3.0.1 \ openssl-sys-0.9.70 \ opentelemetry-0.16.0 \ os_str_bytes-4.2.0 \ ouroboros-0.13.0 \ ouroboros_macro-0.13.0 \ parity-tokio-ipc-0.9.0 \ parity-ws-0.11.1 \ parking_lot-0.9.0 \ parking_lot-0.11.2 \ parking_lot_core-0.6.2 \ parking_lot_core-0.8.5 \ pbkdf2-0.4.0 \ pbkdf2-0.9.0 \ peeking_take_while-0.1.2 \ percent-encoding-1.0.1 \ percent-encoding-2.1.0 \ pest-2.1.3 \ petgraph-0.6.0 \ phf-0.10.0 \ phf_shared-0.10.0 \ pickledb-0.4.1 \ pin-project-1.0.8 \ pin-project-internal-1.0.8 \ pin-project-lite-0.2.7 \ pin-utils-0.1.0 \ pkg-config-0.3.22 \ plain-0.2.3 \ postgres-0.19.2 \ postgres-derive-0.4.0 \ postgres-protocol-0.6.2 \ postgres-types-0.2.2 \ ppv-lite86-0.2.15 \ predicates-2.0.3 \ predicates-core-1.0.2 \ predicates-tree-1.0.4 \ pretty-hex-0.2.1 \ proc-macro-crate-0.1.5 \ proc-macro-crate-1.1.0 \ proc-macro-error-1.0.4 \ proc-macro-error-attr-1.0.4 \ proc-macro-hack-0.5.19 \ proc-macro2-0.4.30 \ proc-macro2-1.0.32 \ proptest-1.0.0 \ prost-0.9.0 \ prost-build-0.9.0 \ prost-derive-0.9.0 \ prost-types-0.9.0 \ qstring-0.7.2 \ quick-error-1.2.3 \ quick-error-2.0.1 \ quote-0.6.13 \ quote-1.0.10 \ radium-0.5.3 \ rand-0.4.6 \ rand-0.6.5 \ rand-0.7.3 \ rand-0.8.4 \ rand_chacha-0.1.1 \ rand_chacha-0.2.2 \ rand_chacha-0.3.1 \ rand_core-0.3.1 \ rand_core-0.4.2 \ rand_core-0.5.1 \ rand_core-0.6.3 \ rand_hc-0.1.0 \ rand_hc-0.2.0 \ rand_hc-0.3.1 \ rand_isaac-0.1.1 \ rand_jitter-0.1.4 \ rand_os-0.1.3 \ rand_pcg-0.1.2 \ rand_pcg-0.2.1 \ rand_xorshift-0.1.1 \ rand_xorshift-0.3.0 \ raptorq-1.6.4 \ rayon-1.5.1 \ rayon-core-1.9.1 \ rdrand-0.4.0 \ redox_syscall-0.1.57 \ redox_syscall-0.2.10 \ redox_users-0.4.0 \ reed-solomon-erasure-5.0.1 \ regex-1.5.4 \ regex-automata-0.1.10 \ regex-syntax-0.6.25 \ remove_dir_all-0.5.3 \ reqwest-0.11.6 \ retain_mut-0.1.5 \ ring-0.16.20 \ rocksdb-0.17.0 \ rpassword-5.0.1 \ rustc-demangle-0.1.21 \ rustc-hash-1.1.0 \ rustc_version-0.2.3 \ rustc_version-0.3.3 \ rustc_version-0.4.0 \ rustls-0.19.1 \ rustls-0.20.0 \ rustversion-1.0.5 \ rusty-fork-0.3.0 \ ryu-1.0.5 \ safemem-0.3.3 \ same-file-1.0.6 \ schannel-0.1.19 \ scopeguard-1.1.0 \ scroll-0.10.2 \ scroll_derive-0.10.5 \ sct-0.6.1 \ sct-0.7.0 \ security-framework-2.4.2 \ security-framework-sys-2.4.2 \ semver-0.9.0 \ semver-0.11.0 \ semver-1.0.4 \ semver-parser-0.7.0 \ semver-parser-0.10.2 \ serde-1.0.130 \ serde_bytes-0.11.5 \ serde_cbor-0.11.2 \ serde_derive-1.0.130 \ serde_json-1.0.72 \ serde_urlencoded-0.7.0 \ serde_yaml-0.8.21 \ serial_test-0.5.1 \ serial_test_derive-0.5.1 \ sha-1-0.8.2 \ sha-1-0.9.8 \ sha1-0.6.0 \ sha2-0.9.8 \ sha3-0.9.1 \ sharded-slab-0.1.4 \ shlex-1.1.0 \ signal-hook-0.3.10 \ signal-hook-registry-1.4.0 \ signature-1.4.0 \ simpl-0.1.0 \ siphasher-0.3.7 \ slab-0.4.5 \ smallvec-0.6.14 \ smallvec-1.7.0 \ smpl_jwt-0.6.1 \ socket2-0.4.2 \ soketto-0.7.1 \ solana-frozen-abi-1.8.2 \ solana-frozen-abi-macro-1.8.2 \ solana-logger-1.8.2 \ solana-program-1.8.2 \ solana-sdk-macro-1.8.2 \ solana_rbpf-0.2.21 \ spin-0.5.2 \ spin-0.9.2 \ spl-associated-token-account-1.0.3 \ spl-memo-3.0.1 \ spl-token-3.2.0 \ stable_deref_trait-1.2.0 \ standback-0.2.17 \ static_assertions-1.1.0 \ stdweb-0.4.20 \ stdweb-derive-0.5.3 \ stdweb-internal-macros-0.2.9 \ stdweb-internal-runtime-0.1.5 \ stream-cancel-0.8.1 \ stringprep-0.1.2 \ strsim-0.8.0 \ strsim-0.10.0 \ subtle-2.4.1 \ symlink-0.1.0 \ syn-0.15.44 \ syn-1.0.81 \ synstructure-0.12.6 \ sys-info-0.9.1 \ sysctl-0.4.3 \ systemstat-0.1.10 \ tap-1.0.1 \ tar-0.4.37 \ tarpc-0.27.2 \ tarpc-plugins-0.12.0 \ tempfile-3.2.0 \ termcolor-1.1.2 \ terminal_size-0.1.17 \ termtree-0.2.3 \ textwrap-0.11.0 \ textwrap-0.14.2 \ thiserror-1.0.30 \ thiserror-impl-1.0.30 \ thread-scoped-1.0.2 \ thread_local-1.1.3 \ tikv-jemalloc-sys-0.4.2+5.2.1-patched.2 \ tikv-jemallocator-0.4.1 \ time-0.1.43 \ time-0.2.27 \ time-0.3.5 \ time-macros-0.1.1 \ time-macros-impl-0.1.2 \ tiny-bip39-0.8.2 \ tinyvec-1.5.0 \ tinyvec_macros-0.1.0 \ tokio-1.14.0 \ tokio-codec-0.1.2 \ tokio-executor-0.1.10 \ tokio-io-0.1.13 \ tokio-io-timeout-1.1.1 \ tokio-macros-1.6.0 \ tokio-native-tls-0.3.0 \ tokio-postgres-0.7.5 \ tokio-reactor-0.1.12 \ tokio-rustls-0.22.0 \ tokio-serde-0.8.0 \ tokio-stream-0.1.8 \ tokio-sync-0.1.8 \ tokio-tcp-0.1.4 \ tokio-tls-0.2.1 \ tokio-util-0.6.9 \ toml-0.5.8 \ tonic-0.6.1 \ tonic-build-0.6.0 \ tower-0.4.10 \ tower-layer-0.3.1 \ tower-service-0.3.1 \ tracing-0.1.29 \ tracing-attributes-0.1.18 \ tracing-core-0.1.21 \ tracing-futures-0.2.5 \ tracing-opentelemetry-0.15.0 \ tracing-subscriber-0.2.25 \ traitobject-0.1.0 \ trees-0.4.2 \ try-lock-0.2.3 \ tungstenite-0.16.0 \ typeable-0.1.2 \ typenum-1.14.0 \ ucd-trie-0.1.3 \ unicase-1.4.2 \ unicase-2.6.0 \ unicode-bidi-0.3.7 \ unicode-normalization-0.1.19 \ unicode-segmentation-1.8.0 \ unicode-width-0.1.9 \ unicode-xid-0.1.0 \ unicode-xid-0.2.2 \ unix_socket2-0.5.4 \ unreachable-1.0.0 \ untrusted-0.7.1 \ uriparse-0.6.3 \ url-1.7.2 \ url-2.2.2 \ users-0.10.0 \ utf-8-0.7.6 \ utf8-width-0.1.5 \ vcpkg-0.2.15 \ vec_map-0.8.2 \ version_check-0.1.5 \ version_check-0.9.3 \ void-1.0.2 \ wait-timeout-0.2.0 \ walkdir-2.3.2 \ want-0.3.0 \ wasi-0.9.0+wasi-snapshot-preview1 \ wasi-0.10.2+wasi-snapshot-preview1 \ wasm-bindgen-0.2.78 \ wasm-bindgen-backend-0.2.78 \ wasm-bindgen-futures-0.4.28 \ wasm-bindgen-macro-0.2.78 \ wasm-bindgen-macro-support-0.2.78 \ wasm-bindgen-shared-0.2.78 \ web-sys-0.3.55 \ webpki-0.21.4 \ webpki-0.22.0 \ webpki-roots-0.21.1 \ webpki-roots-0.22.1 \ websocket-0.24.0 \ websocket-base-0.24.0 \ which-4.2.2 \ winapi-0.2.8 \ winapi-0.3.9 \ winapi-build-0.1.1 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-util-0.1.5 \ winapi-x86_64-pc-windows-gnu-0.4.0 \ windows-sys-0.28.0 \ windows_aarch64_msvc-0.28.0 \ windows_i686_gnu-0.28.0 \ windows_i686_msvc-0.28.0 \ windows_x86_64_gnu-0.28.0 \ windows_x86_64_msvc-0.28.0 \ winreg-0.7.0 \ winreg-0.10.1 \ ws2_32-sys-0.2.1 \ wyz-0.2.0 \ xattr-0.2.2 \ yaml-rust-0.4.5 \ zeroize-1.4.2 \ zeroize_derive-1.2.0 \ zstd-0.9.0+zstd.1.5.0 \ zstd-safe-4.1.1+zstd.1.5.0 \ zstd-sys-1.6.1+zstd.1.5.0 XARCH= ${ARCH:S/amd64/x86_64/:tu} MAKE_ENV= ${XARCH}_UNKNOWN_FREEBSD_OPENSSL_INCLUDE_DIR=${OPENSSLINC} \ ${XARCH}_UNKNOWN_FREEBSD_OPENSSL_LIB_DIR=${OPENSSLLIB} LLVM_VERSION= 12 BINARY_ALIAS= llvm-config=${PREFIX}/bin/llvm-config${LLVM_VERSION} do-install: for f in ${CARGO_TARGET_DIR}/${CARGO_BUILD_TARGET}/*/${PORTNAME}*; do \ if [ -f $$f -a -x $$f ]; then \ ${INSTALL_PROGRAM} $$f ${STAGEDIR}${PREFIX}/bin; \ fi \ done do-test: @${CARGO_CARGO_RUN} test .include diff --git a/security/suricata/Makefile b/security/suricata/Makefile index 826b2ded7795..24f0073c925b 100644 --- a/security/suricata/Makefile +++ b/security/suricata/Makefile @@ -1,134 +1,134 @@ PORTNAME= suricata DISTVERSION= 6.0.6 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= security MASTER_SITES= https://www.openinfosecfoundation.org/download/ MAINTAINER= franco@opnsense.org COMMENT= High Performance Network IDS, IPS and Security Monitoring engine LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/LICENSE BUILD_DEPENDS= rustc:lang/${RUST_DEFAULT} LIB_DEPENDS= libjansson.so:devel/jansson \ liblz4.so:archivers/liblz4 \ libnet.so:net/libnet \ libpcre.so:devel/pcre \ libyaml.so:textproc/libyaml USES= autoreconf cpe gmake iconv:translit libtool localbase pathfix \ pkgconfig CPE_VENDOR= openinfosecfoundation USE_LDCONFIG= yes USE_RC_SUBR= ${PORTNAME} GNU_CONFIGURE= yes CONFIGURE_ARGS+= --disable-gccmarch-native \ --enable-bundled-htp \ --enable-gccprotect MAKE_ENV= RUSTFLAGS="${RUSTFLAGS} -C linker=${CC:Q} ${LDFLAGS:C/.+/-C link-arg=&/}" INSTALL_TARGET= install-strip TEST_TARGET= check CONFLICTS_INSTALL= libhtp SUB_FILES= pkg-message PLIST_SUB= PORTVERSION=${DISTVERSION:C/-/_/g} UPDATEVERSION=1.2.4 OPTIONS_DEFINE= GEOIP IPFW NETMAP NSS PORTS_PCAP PRELUDE PYTHON REDIS \ TESTS OPTIONS_DEFINE_amd64= HYPERSCAN OPTIONS_DEFAULT= IPFW NETMAP PYTHON OPTIONS_RADIO= SCRIPTS OPTIONS_RADIO_SCRIPTS= LUA LUAJIT OPTIONS_SUB= yes PRELUDE_BROKEN= Compilation broken, see https://redmine.openinfosecfoundation.org/issues/4065 GEOIP_DESC= GeoIP support HYPERSCAN_DESC= Hyperscan support IPFW_DESC= IPFW and IP Divert support for inline IDP LUAJIT_DESC= LuaJIT scripting support LUA_DESC= LUA scripting support NETMAP_DESC= Netmap support for inline IDP NSS_DESC= File checksums and SSL/TLS fingerprinting PORTS_PCAP_DESC= Use libpcap from ports PRELUDE_DESC= Prelude support for NIDS alerts PYTHON_DESC= Python-based update and control utilities REDIS_DESC= Redis output support SCRIPTS_DESC= Scripting TESTS_DESC= Unit tests in suricata binary GEOIP_LIB_DEPENDS= libmaxminddb.so:net/libmaxminddb GEOIP_CONFIGURE_ON= --enable-geoip HYPERSCAN_LIB_DEPENDS= libhs.so:devel/hyperscan IPFW_CONFIGURE_ON= --enable-ipfw LUAJIT_LIB_DEPENDS= libluajit-5.1.so:lang/luajit-openresty LUAJIT_CONFIGURE_ON= --enable-luajit LUA_USES= lua:51 LUA_CONFIGURE_ON= --enable-lua NETMAP_CONFIGURE_ENABLE= netmap NSS_LIB_DEPENDS= libnspr4.so:devel/nspr \ libnss3.so:security/nss NSS_CONFIGURE_OFF= --disable-nspr \ --disable-nss PORTS_PCAP_LIB_DEPENDS= libpcap.so.1:net/libpcap PRELUDE_LIB_DEPENDS= libgcrypt.so:security/libgcrypt \ libgnutls.so:security/gnutls \ libgpg-error.so:security/libgpg-error \ libltdl.so:devel/libltdl \ libprelude.so:security/libprelude PRELUDE_CONFIGURE_ON= --with-libprelude-prefix=${LOCALBASE} PRELUDE_CONFIGURE_ENABLE= prelude PYTHON_BUILD_DEPENDS= ${PYTHON_RUN_DEPENDS} PYTHON_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}yaml>0:devel/py-yaml@${PY_FLAVOR} PYTHON_USES= python PYTHON_CONFIGURE_ENABLE= python REDIS_LIB_DEPENDS= libevent_pthreads.so:devel/libevent \ libhiredis.so:databases/hiredis REDIS_CONFIGURE_ON= --enable-hiredis TESTS_CONFIGURE_ENABLE= unittests pre-patch: @${CP} ${FILESDIR}/ax_check_compile_flag.m4 ${WRKSRC}/m4 post-patch: # Disable vendor checksums @${REINPLACE_CMD} 's,"files":{[^}]*},"files":{},' \ ${WRKSRC}/rust/vendor/*/.cargo-checksum.json post-patch-PYTHON-on: @${REINPLACE_CMD} -e "/AC_PATH_PROGS.*HAVE_PYTHON/ s/python[^,]*,/${PYTHON_VERSION},/g" \ ${WRKSRC}/configure.ac post-install: @${MKDIR} ${STAGEDIR}${ETCDIR} ${STAGEDIR}/var/log/suricata .for f in classification.config reference.config @${MV} ${STAGEDIR}${DATADIR}/${f} ${STAGEDIR}${ETCDIR}/${f}.sample .endfor .for f in suricata.yaml threshold.config ${INSTALL_DATA} ${WRKSRC}/${f} ${STAGEDIR}${ETCDIR}/${f}.sample .endfor post-install-PYTHON-on: (cd ${STAGEDIR}${PREFIX} \ && ${PYTHON_CMD} ${PYTHON_LIBDIR}/compileall.py \ -d ${PYTHONPREFIX_SITELIBDIR} -f ${PYTHONPREFIX_SITELIBDIR:S;${PREFIX}/;;}) .include diff --git a/security/vaultwarden/Makefile b/security/vaultwarden/Makefile index 59fe11f65c7a..89aeccd6fc97 100644 --- a/security/vaultwarden/Makefile +++ b/security/vaultwarden/Makefile @@ -1,394 +1,395 @@ PORTNAME= vaultwarden DISTVERSION= 1.25.2 +PORTREVISION= 1 #PORTREVISION= 1 CATEGORIES= security MASTER_SITES= https://github.com/dani-garcia/bw_web_builds/releases/download/v${DISTVERSION_WV}/:web DISTFILES= ${WV_DISTFILE}:web MAINTAINER= mr@FreeBSD.org COMMENT= Bitwarden compatible backend server LICENSE= GPLv3 LICENSE_FILE= ${WRKSRC}/LICENSE.txt LIB_DEPENDS+= libcapnp.so:devel/capnproto \ libgmp.so:math/gmp \ libnettle.so:security/nettle USES= cargo mysql:client pgsql ssl DISTVERSION_WV= 2022.6.2 WV_DISTFILE= bw_web_v${DISTVERSION_WV}.tar.gz # make makeplist > pkg-plist #One has to edit/review the generated plist # make generate-plist && make check-plist USE_GITHUB= yes GH_ACCOUNT= dani-garcia USE_RC_SUBR= ${PORTNAME} # make cargo-crates CARGO_CRATES= addr2line-0.17.0 \ adler-1.0.2 \ aead-0.4.3 \ aes-0.7.5 \ aes-gcm-0.9.4 \ aho-corasick-0.7.18 \ alloc-no-stdlib-2.0.3 \ alloc-stdlib-0.2.1 \ ansi_term-0.12.1 \ async-compression-0.3.14 \ async-stream-0.3.3 \ async-stream-impl-0.3.3 \ async-trait-0.1.56 \ async_once-0.2.6 \ atomic-0.5.1 \ atty-0.2.14 \ autocfg-1.1.0 \ backtrace-0.3.66 \ base64-0.13.0 \ binascii-0.1.4 \ bitflags-1.3.2 \ block-buffer-0.7.3 \ block-buffer-0.10.2 \ block-padding-0.1.5 \ brotli-3.3.4 \ brotli-decompressor-2.3.2 \ bumpalo-3.10.0 \ byte-tools-0.3.1 \ byteorder-1.4.3 \ bytes-1.1.0 \ cached-0.36.0 \ cached_proc_macro-0.13.0 \ cached_proc_macro_types-0.1.0 \ cc-1.0.73 \ cfg-if-1.0.0 \ chrono-0.4.19 \ chrono-tz-0.6.1 \ chrono-tz-build-0.0.2 \ cipher-0.3.0 \ cookie-0.16.0 \ cookie_store-0.16.1 \ core-foundation-0.9.3 \ core-foundation-sys-0.8.3 \ cpufeatures-0.2.2 \ crc32fast-1.3.2 \ cron-0.11.0 \ crossbeam-utils-0.8.10 \ crypto-common-0.1.5 \ ctr-0.8.0 \ ctrlc-3.2.2 \ darling-0.13.4 \ darling_core-0.13.4 \ darling_macro-0.13.4 \ dashmap-5.3.4 \ data-encoding-2.3.2 \ data-url-0.1.1 \ devise-0.3.1 \ devise_codegen-0.3.1 \ devise_core-0.3.1 \ diesel-1.4.8 \ diesel_derives-1.4.1 \ diesel_migrations-1.4.0 \ digest-0.8.1 \ digest-0.10.3 \ dirs-4.0.0 \ dirs-sys-0.3.7 \ dotenvy-0.15.1 \ either-1.7.0 \ email-encoding-0.1.3 \ email_address-0.2.1 \ encoding_rs-0.8.31 \ enum-as-inner-0.4.0 \ error-chain-0.12.4 \ fake-simd-0.1.2 \ fastrand-1.7.0 \ fern-0.6.1 \ figment-0.10.6 \ flate2-1.0.24 \ fnv-1.0.7 \ foreign-types-0.3.2 \ foreign-types-shared-0.1.1 \ form_urlencoded-1.0.1 \ futures-0.3.21 \ futures-channel-0.3.21 \ futures-core-0.3.21 \ futures-executor-0.3.21 \ futures-io-0.3.21 \ futures-macro-0.3.21 \ futures-sink-0.3.21 \ futures-task-0.3.21 \ futures-timer-3.0.2 \ futures-util-0.3.21 \ generator-0.7.0 \ generic-array-0.12.4 \ generic-array-0.14.5 \ getrandom-0.2.7 \ ghash-0.4.4 \ gimli-0.26.1 \ glob-0.3.0 \ governor-0.4.2 \ h2-0.3.13 \ half-1.8.2 \ handlebars-4.3.2 \ hashbrown-0.11.2 \ hashbrown-0.12.2 \ heck-0.4.0 \ hermit-abi-0.1.19 \ hkdf-0.12.3 \ hmac-0.12.1 \ hostname-0.3.1 \ html5gum-0.5.2 \ http-0.2.8 \ http-body-0.4.5 \ httparse-1.7.1 \ httpdate-1.0.2 \ hyper-0.14.20 \ hyper-tls-0.5.0 \ ident_case-1.0.1 \ idna-0.1.5 \ idna-0.2.3 \ indexmap-1.9.1 \ inlinable_string-0.1.15 \ instant-0.1.12 \ ipconfig-0.3.0 \ ipnet-2.5.0 \ itoa-1.0.2 \ jetscii-0.5.3 \ job_scheduler_ng-2.0.1 \ js-sys-0.3.58 \ jsonwebtoken-8.1.1 \ lazy_static-1.4.0 \ lettre-0.10.0 \ libc-0.2.126 \ libmimalloc-sys-0.1.25 \ libsqlite3-sys-0.22.2 \ linked-hash-map-0.5.6 \ lock_api-0.4.7 \ log-0.4.17 \ loom-0.5.6 \ lru-cache-0.1.2 \ mach-0.3.2 \ maplit-1.0.2 \ match_cfg-0.1.0 \ matchers-0.1.0 \ matches-0.1.9 \ memchr-2.5.0 \ migrations_internals-1.4.1 \ migrations_macros-1.4.2 \ mimalloc-0.1.29 \ mime-0.3.16 \ minimal-lexical-0.2.1 \ miniz_oxide-0.5.3 \ mio-0.8.4 \ multer-2.0.3 \ mysqlclient-sys-0.2.5 \ native-tls-0.2.10 \ nix-0.24.1 \ no-std-compat-0.4.1 \ nom-7.1.1 \ nonzero_ext-0.3.0 \ num-bigint-0.4.3 \ num-derive-0.3.3 \ num-integer-0.1.45 \ num-traits-0.2.15 \ num_cpus-1.13.1 \ num_threads-0.1.6 \ object-0.29.0 \ once_cell-1.13.0 \ opaque-debug-0.2.3 \ opaque-debug-0.3.0 \ openssl-0.10.41 \ openssl-macros-0.1.0 \ openssl-probe-0.1.5 \ openssl-src-111.22.0+1.1.1q \ openssl-sys-0.9.75 \ parking_lot-0.12.1 \ parking_lot_core-0.9.3 \ parse-zoneinfo-0.3.0 \ paste-1.0.7 \ pear-0.2.3 \ pear_codegen-0.2.3 \ pem-1.1.0 \ percent-encoding-1.0.1 \ percent-encoding-2.1.0 \ pest-2.1.3 \ pest_derive-2.1.0 \ pest_generator-2.1.3 \ pest_meta-2.1.3 \ phf-0.10.1 \ phf_codegen-0.10.0 \ phf_generator-0.10.0 \ phf_shared-0.10.0 \ pico-args-0.5.0 \ pin-project-lite-0.2.9 \ pin-utils-0.1.0 \ pkg-config-0.3.25 \ polyval-0.5.3 \ ppv-lite86-0.2.16 \ pq-sys-0.4.6 \ proc-macro-hack-0.5.19 \ proc-macro2-1.0.40 \ proc-macro2-diagnostics-0.9.1 \ psl-types-2.0.10 \ publicsuffix-2.1.1 \ quanta-0.9.3 \ quick-error-1.2.3 \ quote-1.0.20 \ quoted_printable-0.4.5 \ r2d2-0.8.10 \ rand-0.8.5 \ rand_chacha-0.3.1 \ rand_core-0.6.3 \ raw-cpuid-10.3.0 \ redox_syscall-0.2.13 \ redox_users-0.4.3 \ ref-cast-1.0.7 \ ref-cast-impl-1.0.7 \ regex-1.6.0 \ regex-automata-0.1.10 \ regex-syntax-0.6.27 \ remove_dir_all-0.5.3 \ reqwest-0.11.11 \ resolv-conf-0.7.0 \ ring-0.16.20 \ rmp-0.8.11 \ rmpv-1.0.0 \ rocket-0.5.0-rc.2 \ rocket_codegen-0.5.0-rc.2 \ rocket_http-0.5.0-rc.2 \ rustc-demangle-0.1.21 \ rustls-0.20.6 \ rustls-pemfile-1.0.0 \ rustversion-1.0.7 \ ryu-1.0.10 \ same-file-1.0.6 \ schannel-0.1.20 \ scheduled-thread-pool-0.2.6 \ scoped-tls-1.0.0 \ scopeguard-1.1.0 \ sct-0.7.0 \ security-framework-2.6.1 \ security-framework-sys-2.6.1 \ serde-1.0.139 \ serde_cbor-0.11.2 \ serde_derive-1.0.139 \ serde_json-1.0.82 \ serde_urlencoded-0.7.1 \ sha-1-0.8.2 \ sha-1-0.10.0 \ sha1-0.10.1 \ sha2-0.10.2 \ sharded-slab-0.1.4 \ signal-hook-registry-1.4.0 \ simple_asn1-0.6.2 \ siphasher-0.3.10 \ slab-0.4.6 \ smallvec-1.9.0 \ socket2-0.4.4 \ spin-0.5.2 \ spin-0.9.4 \ stable-pattern-0.1.0 \ state-0.5.3 \ strsim-0.10.0 \ subtle-2.4.1 \ syn-1.0.98 \ syslog-6.0.1 \ tempfile-3.3.0 \ thiserror-1.0.31 \ thiserror-impl-1.0.31 \ thread_local-1.1.4 \ threadpool-1.8.1 \ time-0.1.43 \ time-0.3.11 \ time-macros-0.2.4 \ tinyvec-1.6.0 \ tinyvec_macros-0.1.0 \ tokio-1.20.0 \ tokio-macros-1.8.0 \ tokio-native-tls-0.3.0 \ tokio-rustls-0.23.4 \ tokio-socks-0.5.1 \ tokio-stream-0.1.9 \ tokio-tungstenite-0.17.2 \ tokio-util-0.7.3 \ toml-0.5.9 \ totp-lite-2.0.0 \ tower-service-0.3.2 \ tracing-0.1.35 \ tracing-attributes-0.1.22 \ tracing-core-0.1.28 \ tracing-log-0.1.3 \ tracing-subscriber-0.3.14 \ trust-dns-proto-0.21.2 \ trust-dns-resolver-0.21.2 \ try-lock-0.2.3 \ tungstenite-0.17.3 \ typenum-1.15.0 \ ubyte-0.10.2 \ ucd-trie-0.1.4 \ uncased-0.9.7 \ unicode-bidi-0.3.8 \ unicode-ident-1.0.1 \ unicode-normalization-0.1.21 \ unicode-xid-0.2.3 \ universal-hash-0.4.1 \ untrusted-0.7.1 \ url-1.7.2 \ url-2.2.2 \ utf-8-0.7.6 \ uuid-1.1.2 \ valuable-0.1.0 \ vcpkg-0.2.15 \ version_check-0.9.4 \ walkdir-2.3.2 \ want-0.3.0 \ wasi-0.10.2+wasi-snapshot-preview1 \ wasi-0.11.0+wasi-snapshot-preview1 \ wasm-bindgen-0.2.81 \ wasm-bindgen-backend-0.2.81 \ wasm-bindgen-futures-0.4.31 \ wasm-bindgen-macro-0.2.81 \ wasm-bindgen-macro-support-0.2.81 \ wasm-bindgen-shared-0.2.81 \ web-sys-0.3.58 \ webauthn-rs-0.3.2 \ webpki-0.22.0 \ widestring-0.5.1 \ winapi-0.3.9 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-util-0.1.5 \ winapi-x86_64-pc-windows-gnu-0.4.0 \ windows-sys-0.36.1 \ windows_aarch64_msvc-0.36.1 \ windows_i686_gnu-0.36.1 \ windows_i686_msvc-0.36.1 \ windows_x86_64_gnu-0.36.1 \ windows_x86_64_msvc-0.36.1 \ winreg-0.7.0 \ winreg-0.10.1 \ yansi-0.5.1 \ yubico-0.11.0 CARGO_FEATURES= mysql postgresql sqlite #vendored_openssl CARGO_ENV+= RUSTC_BOOTSTRAP=1 INSTALL_TARGET= install-strip SUB_FILES= pkg-message SUB_LIST= WWWGRP=${WWWGRP} \ WWWOWN=${WWWOWN} #post-patch: # ${REINPLACE_CMD} 's/^rust-version = "1.60"/rust-version = "1.59"/' \ # ${WRKSRC}/Cargo.toml post-install: ${MKDIR} ${STAGEDIR}/${ETCDIR}/rc.conf.d ${INSTALL} -m0600 ${FILESDIR}/${PORTNAME}_conf.in ${STAGEDIR}/${LOCALBASE}/etc/rc.conf.d/${PORTNAME}.sample ${MKDIR} ${STAGEDIR}/${WWWDIR}/data (cd ${WRKDIR} && ${COPYTREE_SHARE} web-vault ${STAGEDIR}/${WWWDIR}) ${ECHO_CMD} \ '@postexec chown -R ${WWWOWN}:${WWWGRP} %D/${WWWDIR_REL}/data' \ >> ${TMPPLIST} .include diff --git a/security/weggli/Makefile b/security/weggli/Makefile index 272ba119f5c8..22df17806c23 100644 --- a/security/weggli/Makefile +++ b/security/weggli/Makefile @@ -1,134 +1,134 @@ PORTNAME= weggli DISTVERSIONPREFIX= v DISTVERSION= 0.2.3 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= security MAINTAINER= 0mp@FreeBSD.org COMMENT= Semantic search tool for C and C++ codebases LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE USES= cargo USE_GITHUB= yes GH_ACCOUNT= googleprojectzero CARGO_CRATES= aho-corasick-0.7.18 \ ansi_term-0.11.0 \ assert_cmd-2.0.2 \ atty-0.2.14 \ autocfg-1.0.1 \ bitflags-1.3.2 \ bstr-0.2.17 \ bumpalo-3.8.0 \ cast-0.2.7 \ cc-1.0.72 \ cfg-if-0.1.10 \ cfg-if-1.0.0 \ chrono-0.4.19 \ clap-2.33.3 \ colored-2.0.0 \ criterion-0.3.5 \ criterion-plot-0.4.4 \ crossbeam-channel-0.5.1 \ crossbeam-deque-0.8.1 \ crossbeam-epoch-0.9.5 \ crossbeam-utils-0.8.5 \ csv-1.1.6 \ csv-core-0.1.10 \ ctor-0.1.21 \ difference-2.0.0 \ difflib-0.4.0 \ doc-comment-0.3.3 \ either-1.6.1 \ float-cmp-0.8.0 \ ghost-0.1.2 \ half-1.8.2 \ hermit-abi-0.1.19 \ indoc-0.3.6 \ indoc-impl-0.3.6 \ instant-0.1.12 \ inventory-0.1.11 \ inventory-impl-0.1.11 \ itertools-0.10.1 \ itoa-0.4.8 \ js-sys-0.3.55 \ lazy_static-1.4.0 \ libc-0.2.107 \ lock_api-0.4.5 \ log-0.4.14 \ memchr-2.4.1 \ memoffset-0.6.4 \ nix-0.17.0 \ normalize-line-endings-0.3.0 \ num-integer-0.1.44 \ num-traits-0.2.14 \ num_cpus-1.13.0 \ oorandom-11.1.3 \ parking_lot-0.11.2 \ parking_lot_core-0.8.5 \ paste-0.1.18 \ paste-impl-0.1.18 \ plotters-0.3.1 \ plotters-backend-0.3.2 \ plotters-svg-0.3.1 \ predicates-1.0.8 \ predicates-2.0.3 \ predicates-core-1.0.2 \ predicates-tree-1.0.4 \ proc-macro-hack-0.5.19 \ proc-macro2-1.0.32 \ pyo3-0.13.2 \ pyo3-macros-0.13.2 \ pyo3-macros-backend-0.13.2 \ quote-1.0.10 \ rayon-1.5.1 \ rayon-core-1.9.1 \ redox_syscall-0.2.10 \ regex-1.5.4 \ regex-automata-0.1.10 \ regex-syntax-0.6.25 \ rustc-hash-1.1.0 \ rustc_version-0.4.0 \ ryu-1.0.5 \ same-file-1.0.6 \ scopeguard-1.1.0 \ semver-1.0.4 \ serde-1.0.130 \ serde_cbor-0.11.2 \ serde_derive-1.0.130 \ serde_json-1.0.69 \ simplelog-0.10.2 \ smallvec-1.7.0 \ strsim-0.8.0 \ syn-1.0.81 \ termcolor-1.1.2 \ termtree-0.2.3 \ textwrap-0.11.0 \ time-0.1.44 \ tinytemplate-1.2.1 \ tree-sitter-0.19.5 \ unicode-width-0.1.9 \ unicode-xid-0.2.2 \ unindent-0.1.7 \ vec_map-0.8.2 \ void-1.0.2 \ wait-timeout-0.2.0 \ walkdir-2.3.2 \ wasi-0.10.0+wasi-snapshot-preview1 \ wasm-bindgen-0.2.78 \ wasm-bindgen-backend-0.2.78 \ wasm-bindgen-macro-0.2.78 \ wasm-bindgen-macro-support-0.2.78 \ wasm-bindgen-shared-0.2.78 \ web-sys-0.3.55 \ winapi-0.3.9 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-util-0.1.5 \ winapi-x86_64-pc-windows-gnu-0.4.0 PLIST_FILES= bin/${PORTNAME} post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/${PORTNAME} .include diff --git a/shells/ion/Makefile b/shells/ion/Makefile index 8e6a45081251..cbf08e3c6ae6 100644 --- a/shells/ion/Makefile +++ b/shells/ion/Makefile @@ -1,276 +1,276 @@ PORTNAME= ion DISTVERSION= 1.0.5-1355 -PORTREVISION= 31 +PORTREVISION= 32 CATEGORIES= shells PKGNAMESUFFIX= -shell MAINTAINER= mikael@FreeBSD.org COMMENT= Modern system shell written in Rust LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= cargo USE_GITLAB= yes GL_SITE= https://gitlab.redox-os.org GL_ACCOUNT= redox-os GL_COMMIT= a8872014dbce730ccd00aaa722397dc394a52bf4 CARGO_CRATES= adler32-1.0.3 \ aho-corasick-0.7.4 \ andrew-0.2.1 \ android_glue-0.2.3 \ ansi_term-0.11.0 \ approx-0.3.2 \ arrayvec-0.4.11 \ atty-0.2.13 \ auto_enums-0.5.9 \ auto_enums_core-0.5.9 \ auto_enums_derive-0.5.9 \ autocfg-0.1.5 \ backtrace-0.3.33 \ backtrace-sys-0.1.31 \ bitflags-1.1.0 \ block-0.1.6 \ bstr-0.2.4 \ bytecount-0.1.7 \ bytecount-0.3.2 \ byteorder-1.3.2 \ c2-chacha-0.2.2 \ cast-0.2.2 \ cc-1.0.37 \ cfg-if-0.1.9 \ cgl-0.2.3 \ clap-2.33.0 \ cloudabi-0.0.3 \ cocoa-0.18.4 \ color_quant-1.0.1 \ core-foundation-0.6.4 \ core-foundation-sys-0.6.2 \ core-graphics-0.17.3 \ criterion-0.2.11 \ criterion-plot-0.3.1 \ crossbeam-deque-0.6.3 \ crossbeam-epoch-0.7.1 \ crossbeam-queue-0.1.2 \ crossbeam-utils-0.6.5 \ csv-1.1.1 \ csv-core-0.1.6 \ darling-0.9.0 \ darling_core-0.9.0 \ darling_macro-0.9.0 \ deflate-0.7.20 \ derivative-1.0.2 \ derive_utils-0.7.2 \ dlib-0.4.1 \ downcast-rs-1.0.4 \ draw_state-0.8.0 \ either-1.5.2 \ err-derive-0.1.5 \ errno-dragonfly-0.1.1 \ failure-0.1.5 \ failure_derive-0.1.5 \ fnv-1.0.6 \ foreign-types-0.3.2 \ foreign-types-shared-0.1.1 \ fuchsia-cprng-0.1.1 \ gcc-0.3.55 \ getrandom-0.1.6 \ gfx-0.17.1 \ gfx_core-0.8.3 \ gfx_device_gl-0.15.5 \ gfx_gl-0.5.0 \ gif-0.10.2 \ gl-0.11.0 \ gl_generator-0.10.0 \ gl_generator-0.11.0 \ gl_generator-0.9.0 \ gleam-0.6.18 \ glob-0.3.0 \ glutin-0.21.0 \ glutin_egl_sys-0.1.3 \ glutin_emscripten_sys-0.1.0 \ glutin_gles2_sys-0.1.3 \ glutin_glx_sys-0.1.5 \ glutin_wgl_sys-0.1.3 \ hashbrown-0.5.0 \ heck-0.3.1 \ ident_case-1.0.1 \ image-0.21.2 \ inflate-0.4.5 \ interpolation-0.2.0 \ itertools-0.8.0 \ itoa-0.4.4 \ jpeg-decoder-0.1.15 \ khronos_api-2.2.0 \ khronos_api-3.1.0 \ lazy_static-1.3.0 \ lexical-2.2.1 \ lexical-core-0.4.2 \ libc-0.2.60 \ libloading-0.5.2 \ line_drawing-0.7.0 \ lock_api-0.1.5 \ log-0.4.7 \ lzw-0.10.0 \ malloc_buf-0.0.6 \ memchr-2.2.1 \ memmap-0.7.0 \ memoffset-0.2.1 \ nix-0.14.1 \ nodrop-0.1.13 \ num-0.2.0 \ num-bigint-0.2.2 \ num-complex-0.2.3 \ num-derive-0.2.5 \ num-integer-0.1.41 \ num-iter-0.1.39 \ num-rational-0.2.2 \ num-traits-0.2.8 \ num_cpus-1.10.1 \ numtoa-0.1.0 \ objc-0.2.6 \ object-pool-0.3.1 \ ordered-float-1.0.2 \ osmesa-sys-0.1.2 \ owning_ref-0.4.0 \ parking_lot-0.7.1 \ parking_lot_core-0.4.0 \ percent-encoding-1.0.1 \ permutate-0.3.2 \ piston-0.49.0 \ piston-ai_behavior-0.31.0 \ piston-float-1.0.0 \ piston-gfx_texture-0.36.0 \ piston-graphics_api_version-0.2.0 \ piston-shaders_graphics2d-0.3.1 \ piston-texture-0.6.0 \ piston-viewport-1.0.0 \ piston2d-gfx_graphics-0.61.0 \ piston2d-graphics-0.32.0 \ piston2d-sprite-0.55.0 \ piston_window-0.100.0 \ pistoncore-event_loop-0.49.0 \ pistoncore-glutin_window-0.63.0 \ pistoncore-input-0.28.0 \ pistoncore-window-0.44.0 \ pkg-config-0.3.14 \ png-0.14.1 \ ppv-lite86-0.2.5 \ proc-macro2-0.4.30 \ quote-0.6.13 \ rand-0.4.6 \ rand-0.6.5 \ rand-0.7.0 \ rand_chacha-0.1.1 \ rand_chacha-0.2.0 \ rand_core-0.3.1 \ rand_core-0.4.0 \ rand_core-0.5.0 \ rand_hc-0.1.0 \ rand_hc-0.2.0 \ rand_isaac-0.1.1 \ rand_jitter-0.1.4 \ rand_os-0.1.3 \ rand_pcg-0.1.2 \ rand_xorshift-0.1.1 \ rand_xoshiro-0.1.0 \ rayon-1.1.0 \ rayon-core-1.5.0 \ rdrand-0.4.0 \ read_color-1.0.0 \ redox_syscall-0.1.56 \ redox_termios-0.1.1 \ regex-1.2.0 \ regex-automata-0.1.8 \ regex-syntax-0.6.10 \ rustc-demangle-0.1.15 \ rustc_version-0.2.3 \ rusttype-0.7.7 \ ryu-0.2.8 \ ryu-1.0.0 \ same-file-1.0.5 \ scoped_threadpool-0.1.9 \ scopeguard-0.3.3 \ semver-0.9.0 \ semver-parser-0.7.0 \ serde-1.0.97 \ serde_derive-1.0.97 \ serde_json-1.0.40 \ serial_test-0.2.0 \ serial_test_derive-0.2.0 \ shader_version-0.6.0 \ shared_library-0.1.9 \ smallvec-0.6.10 \ smithay-client-toolkit-0.4.6 \ spin-0.5.0 \ stable_deref_trait-1.1.1 \ stackvector-1.0.6 \ static_assertions-0.2.5 \ stb_truetype-0.2.6 \ strsim-0.7.0 \ strsim-0.8.0 \ structopt-0.2.18 \ structopt-derive-0.2.18 \ syn-0.15.40 \ synstructure-0.10.2 \ textwrap-0.11.0 \ thread_local-0.3.6 \ tiff-0.2.2 \ tinytemplate-1.0.2 \ ucd-util-0.1.5 \ unicode-segmentation-1.3.0 \ unicode-width-0.1.5 \ unicode-xid-0.1.0 \ unreachable-1.0.0 \ users-0.9.1 \ utf8-ranges-1.0.3 \ uuid-0.6.5 \ vec_map-0.8.1 \ vecmath-1.0.0 \ version_check-0.9.1 \ void-1.0.2 \ walkdir-2.2.9 \ wayland-client-0.21.13 \ wayland-commons-0.21.13 \ wayland-protocols-0.21.13 \ wayland-scanner-0.21.13 \ wayland-sys-0.21.13 \ winapi-0.3.7 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-util-0.1.2 \ winapi-x86_64-pc-windows-gnu-0.4.0 \ winit-0.19.1 \ x11-dl-2.18.3 \ xdg-2.2.0 \ xml-rs-0.7.0 \ xml-rs-0.8.0 \ small@git+https://gitlab.redox-os.org/redox-os/small\#022635fcb0b0b631b3a06c79c45fa8ebaf4f64f5 \ liner@git+https://gitlab.redox-os.org/redox-os/liner\#3f3d1d4e6058067e9d03a9b1510d8f2edac073c7 \ termion@git+https://gitlab.redox-os.org/redox-os/termion\#c27678efc2ed14576361c7ce6d806a6bb576f1a9 \ calculate@git+https://gitlab.redox-os.org/redox-os/calc\#afba9c5d184ddb9db5e4e71dc357da0499e212cf \ decimal@git+https://github.com/alkis/decimal.git\#972c8547a0a76c7ad9a314e28a335aa57d46a543 CONFLICTS_INSTALL= ion OPTIONS_DEFINE= DOCS EXAMPLES # liner-0.4.4 does not build with Rust 1.40.0. Use the newer copy # that is also already available. post-patch: @${REINPLACE_CMD} 's,^liner = .*,liner = \{ git = "https://gitlab.redox-os.org/redox-os/liner" \},' \ ${WRKSRC_crate_calculate}/Cargo.toml post-configure: ${ECHO_CMD} ${GL_COMMIT} > ${WRKSRC}/git_revision.txt post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/ion post-install-DOCS-on: @cd ${WRKSRC}/manual/src && ${COPYTREE_SHARE} . ${STAGEDIR}${DOCSDIR} post-install-EXAMPLES-on: @cd ${WRKSRC}/tests && ${COPYTREE_SHARE} . ${STAGEDIR}${EXAMPLESDIR} .include diff --git a/shells/nsh/Makefile b/shells/nsh/Makefile index 461a347b1861..9ddf12265dad 100644 --- a/shells/nsh/Makefile +++ b/shells/nsh/Makefile @@ -1,126 +1,126 @@ PORTNAME= nsh DISTVERSION= 0.4.2 -PORTREVISION= 7 +PORTREVISION= 8 CATEGORIES= shells MASTER_SITES= CRATESIO DISTFILES= ${CARGO_DIST_SUBDIR}/${DISTNAME}${CARGO_CRATE_EXT} MAINTAINER= cs@FreeBSD.org COMMENT= Command-line shell like fish, but POSIX compatible LICENSE= MIT USES= cargo CARGO_INSTALL= yes CARGO_CRATES= addr2line-0.15.2 \ adler-1.0.2 \ ansi_term-0.11.0 \ ansi_term-0.12.1 \ arrayref-0.3.6 \ arrayvec-0.5.2 \ atty-0.2.14 \ autocfg-1.0.1 \ backtrace-0.3.60 \ base64-0.13.0 \ bitflags-1.2.1 \ blake2b_simd-0.5.11 \ block-buffer-0.7.3 \ block-padding-0.1.5 \ byte-tools-0.3.1 \ byteorder-1.4.3 \ cc-1.0.69 \ cfg-if-1.0.0 \ clap-2.33.3 \ colored-1.9.3 \ constant_time_eq-0.1.5 \ crossbeam-utils-0.8.5 \ crossterm-0.18.2 \ crossterm_winapi-0.6.2 \ ctor-0.1.20 \ diff-0.1.12 \ digest-0.8.1 \ dirs-1.0.5 \ failure-0.1.8 \ failure_derive-0.1.8 \ fake-simd-0.1.2 \ fern-0.6.0 \ generic-array-0.12.4 \ getrandom-0.1.16 \ getrandom-0.2.3 \ gimli-0.24.0 \ glob-0.3.0 \ heck-0.3.3 \ hermit-abi-0.1.19 \ instant-0.1.10 \ lazy_static-1.4.0 \ libc-0.2.98 \ lock_api-0.4.4 \ log-0.4.14 \ maplit-1.0.2 \ memchr-2.4.0 \ memoffset-0.6.4 \ miniz_oxide-0.4.4 \ mio-0.7.13 \ miow-0.3.7 \ nix-0.22.0 \ ntapi-0.3.6 \ object-0.25.3 \ opaque-debug-0.2.3 \ output_vt100-0.1.2 \ parking_lot-0.11.1 \ parking_lot_core-0.8.3 \ pest-2.1.3 \ pest_derive-2.1.0 \ pest_generator-2.1.3 \ pest_meta-2.1.3 \ phf-0.9.0 \ phf_generator-0.9.0 \ phf_macros-0.9.0 \ phf_shared-0.9.0 \ ppv-lite86-0.2.10 \ pretty_assertions-0.7.2 \ proc-macro-error-1.0.4 \ proc-macro-error-attr-1.0.4 \ proc-macro-hack-0.5.19 \ proc-macro2-1.0.27 \ quote-1.0.9 \ rand-0.8.4 \ rand_chacha-0.3.1 \ rand_core-0.6.3 \ rand_hc-0.3.1 \ redox_syscall-0.1.57 \ redox_syscall-0.2.9 \ redox_users-0.3.5 \ remove_dir_all-0.5.3 \ rust-argon2-0.8.3 \ rustc-demangle-0.1.20 \ scopeguard-1.1.0 \ sha-1-0.8.2 \ signal-hook-0.1.17 \ signal-hook-0.2.3 \ signal-hook-registry-1.4.0 \ siphasher-0.3.5 \ smallvec-1.6.1 \ strsim-0.8.0 \ structopt-0.3.22 \ structopt-derive-0.4.15 \ syn-1.0.73 \ synstructure-0.12.5 \ tempfile-3.2.0 \ textwrap-0.11.0 \ typenum-1.13.0 \ ucd-trie-0.1.3 \ unicode-segmentation-1.8.0 \ unicode-width-0.1.8 \ unicode-xid-0.2.2 \ vec_map-0.8.2 \ version_check-0.9.3 \ wasi-0.9.0+wasi-snapshot-preview1 \ wasi-0.10.2+wasi-snapshot-preview1 \ winapi-0.3.9 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-x86_64-pc-windows-gnu-0.4.0 PLIST_FILES= bin/nsh .include diff --git a/shells/starship/Makefile b/shells/starship/Makefile index c7f2a6afbe5a..59aa14f028a9 100644 --- a/shells/starship/Makefile +++ b/shells/starship/Makefile @@ -1,404 +1,405 @@ PORTNAME= starship DISTVERSION= 1.10.2 +PORTREVISION= 1 CATEGORIES= shells MASTER_SITES= CRATESIO DISTFILES= ${CARGO_DIST_SUBDIR}/${DISTNAME}${CARGO_CRATE_EXT} MAINTAINER= yuri@FreeBSD.org COMMENT= Cross-shell prompt for astronauts LICENSE= ISCL LICENSE_FILE= ${WRKSRC}/LICENSE BROKEN_i386= conflicting types for 'get_cpu_speed' in the sys-info-rs crate, see https://github.com/FillZpp/sys-info-rs/issues/80 BROKEN_powerpc= conflicting types for 'get_cpu_speed' in the sys-info-rs crate, see https://github.com/FillZpp/sys-info-rs/issues/80 LIB_DEPENDS= libgit2.so:devel/libgit2 \ libssh2.so:security/libssh2 USES= cargo ssl CARGO_CRATES= adler-1.0.2 \ ahash-0.7.6 \ aho-corasick-0.7.18 \ android_system_properties-0.1.4 \ ansi_term-0.12.1 \ anyhow-1.0.58 \ arc-swap-1.5.1 \ arrayvec-0.7.2 \ async-broadcast-0.4.0 \ async-channel-1.6.1 \ async-executor-1.4.1 \ async-io-1.7.0 \ async-lock-2.5.0 \ async-recursion-0.3.2 \ async-task-4.2.0 \ async-trait-0.1.56 \ atoi-1.0.0 \ atty-0.2.14 \ autocfg-1.1.0 \ base64-0.13.0 \ bitflags-1.3.2 \ block-0.1.6 \ block-buffer-0.9.0 \ block-buffer-0.10.2 \ bstr-0.2.17 \ btoi-0.4.2 \ bumpalo-3.10.0 \ byte-unit-4.0.14 \ byteorder-1.4.3 \ bytes-1.1.0 \ bytesize-1.1.0 \ cache-padded-1.2.0 \ castaway-0.2.2 \ cc-1.0.73 \ cfg-if-0.1.10 \ cfg-if-1.0.0 \ chrono-0.4.22 \ clap-3.2.17 \ clap_complete-3.2.4 \ clap_derive-3.2.17 \ clap_lex-0.2.3 \ clru-0.5.0 \ cmake-0.1.48 \ combine-4.6.4 \ compact_str-0.4.1 \ concurrent-queue-1.2.2 \ const_fn-0.4.9 \ const_format-0.2.25 \ const_format_proc_macros-0.2.22 \ core-foundation-0.7.0 \ core-foundation-sys-0.7.0 \ core-foundation-sys-0.8.3 \ cpufeatures-0.2.2 \ crc32fast-1.3.2 \ crossbeam-0.8.2 \ crossbeam-channel-0.5.5 \ crossbeam-deque-0.8.1 \ crossbeam-epoch-0.9.9 \ crossbeam-queue-0.3.6 \ crossbeam-utils-0.8.10 \ crypto-common-0.1.3 \ dashmap-5.3.4 \ deelevate-0.2.0 \ derivative-2.2.0 \ difflib-0.4.0 \ digest-0.9.0 \ digest-0.10.3 \ dirs-2.0.2 \ dirs-4.0.0 \ dirs-next-2.0.0 \ dirs-sys-0.3.7 \ dirs-sys-next-0.1.2 \ dlv-list-0.3.0 \ downcast-0.11.0 \ dunce-1.0.2 \ dyn-clone-1.0.6 \ easy-parallel-3.2.0 \ either-1.6.1 \ enumflags2-0.7.5 \ enumflags2_derive-0.7.4 \ errno-0.2.8 \ errno-dragonfly-0.1.2 \ event-listener-2.5.2 \ fastrand-1.7.0 \ filedescriptor-0.8.2 \ filetime-0.2.17 \ flate2-1.0.24 \ float-cmp-0.9.0 \ fnv-1.0.7 \ form_urlencoded-1.0.1 \ fragile-1.2.1 \ futures-core-0.3.21 \ futures-io-0.3.21 \ futures-lite-1.12.0 \ futures-sink-0.3.21 \ futures-task-0.3.21 \ futures-util-0.3.21 \ generic-array-0.14.5 \ gethostname-0.2.3 \ getrandom-0.1.16 \ getrandom-0.2.7 \ git-actor-0.11.1 \ git-attributes-0.3.1 \ git-bitmap-0.1.1 \ git-chunk-0.3.0 \ git-config-0.6.1 \ git-date-0.0.3 \ git-diff-0.17.1 \ git-discover-0.4.0 \ git-features-0.22.1 \ git-glob-0.3.1 \ git-hash-0.9.7 \ git-index-0.4.1 \ git-lock-2.1.0 \ git-object-0.20.1 \ git-odb-0.31.1 \ git-pack-0.21.1 \ git-path-0.4.0 \ git-quote-0.2.0 \ git-ref-0.15.1 \ git-repository-0.21.0 \ git-revision-0.4.0 \ git-sec-0.3.0 \ git-tempfile-2.0.2 \ git-traverse-0.16.1 \ git-url-0.7.1 \ git-validate-0.5.4 \ git-worktree-0.4.1 \ guess_host_triple-0.1.3 \ hash_hasher-2.0.3 \ hashbrown-0.12.1 \ heck-0.3.3 \ heck-0.4.0 \ hermit-abi-0.1.19 \ hex-0.4.3 \ home-0.5.3 \ human_format-1.0.3 \ iana-time-zone-0.1.44 \ idna-0.2.3 \ indexmap-1.9.1 \ instant-0.1.12 \ io-close-0.3.7 \ io-lifetimes-0.7.2 \ is_debug-1.0.1 \ itertools-0.10.3 \ itoa-1.0.3 \ js-sys-0.3.58 \ jwalk-0.6.0 \ lazy_static-1.4.0 \ lazycell-1.3.0 \ libc-0.2.131 \ libz-sys-1.1.8 \ linked-hash-map-0.5.6 \ linux-raw-sys-0.0.46 \ local_ipaddress-0.1.3 \ lock_api-0.4.7 \ log-0.4.17 \ mac-notification-sys-0.5.2 \ mach-0.3.2 \ malloc_buf-0.0.6 \ matches-0.1.9 \ memchr-2.5.0 \ memmap2-0.5.5 \ memmem-0.1.1 \ memoffset-0.6.5 \ minimal-lexical-0.2.1 \ miniz_oxide-0.5.3 \ mockall-0.11.2 \ mockall_derive-0.11.2 \ nix-0.23.1 \ nix-0.25.0 \ nom-5.1.2 \ nom-7.1.1 \ normalize-line-endings-0.3.0 \ notify-rust-4.5.8 \ num-derive-0.3.3 \ num-integer-0.1.45 \ num-traits-0.2.15 \ num_cpus-1.13.1 \ num_threads-0.1.6 \ objc-0.2.7 \ objc-foundation-0.1.1 \ objc_id-0.1.1 \ once_cell-1.13.1 \ opaque-debug-0.3.0 \ open-3.0.2 \ ordered-float-2.10.0 \ ordered-multimap-0.4.3 \ ordered-stream-0.0.1 \ os_info-3.5.0 \ os_str_bytes-6.1.0 \ parking-2.0.0 \ parking_lot-0.11.2 \ parking_lot-0.12.1 \ parking_lot_core-0.8.5 \ parking_lot_core-0.9.3 \ path-slash-0.2.1 \ pathdiff-0.2.1 \ pathsearch-0.2.0 \ percent-encoding-2.1.0 \ pest-2.2.1 \ pest_derive-2.2.1 \ pest_generator-2.2.1 \ pest_meta-2.2.1 \ phf-0.8.0 \ phf-0.11.1 \ phf_codegen-0.8.0 \ phf_generator-0.8.0 \ phf_shared-0.8.0 \ phf_shared-0.11.1 \ pin-project-lite-0.2.9 \ pin-utils-0.1.0 \ pkg-config-0.3.25 \ polling-2.2.0 \ ppv-lite86-0.2.16 \ predicates-2.1.1 \ predicates-core-1.0.3 \ predicates-tree-1.0.5 \ proc-macro-crate-1.1.3 \ proc-macro-error-1.0.4 \ proc-macro-error-attr-1.0.4 \ proc-macro2-1.0.40 \ process_control-3.5.1 \ prodash-19.0.1 \ quick-error-2.0.1 \ quick-xml-0.23.0 \ quote-1.0.20 \ rand-0.7.3 \ rand-0.8.5 \ rand_chacha-0.2.2 \ rand_chacha-0.3.1 \ rand_core-0.5.1 \ rand_core-0.6.3 \ rand_hc-0.2.0 \ rand_pcg-0.2.1 \ rayon-1.5.3 \ rayon-core-1.9.3 \ redox_syscall-0.2.13 \ redox_users-0.4.3 \ regex-1.6.0 \ regex-automata-0.1.10 \ regex-syntax-0.6.27 \ remove_dir_all-0.5.3 \ rust-ini-0.18.0 \ rustix-0.35.7 \ rustversion-1.0.8 \ ryu-1.0.10 \ same-file-1.0.6 \ schemars-0.8.10 \ schemars_derive-0.8.10 \ scopeguard-1.1.0 \ semver-0.11.0 \ semver-1.0.13 \ semver-parser-0.10.2 \ serde-1.0.143 \ serde_derive-1.0.143 \ serde_derive_internals-0.26.0 \ serde_json-1.0.83 \ serde_repr-0.1.8 \ sha-1-0.10.0 \ sha1-0.6.1 \ sha1-asm-0.5.1 \ sha1_smol-1.0.0 \ sha2-0.9.9 \ shadow-rs-0.16.2 \ shared_library-0.1.9 \ shell-words-1.1.0 \ signal-hook-0.1.17 \ signal-hook-0.3.14 \ signal-hook-registry-1.4.0 \ siphasher-0.3.10 \ slab-0.4.6 \ smallvec-1.9.0 \ socket2-0.4.4 \ starship-battery-0.7.9 \ static_assertions-1.1.0 \ strsim-0.10.0 \ strum-0.22.0 \ strum_macros-0.22.0 \ syn-1.0.98 \ systemstat-0.1.11 \ tempfile-3.3.0 \ termcolor-1.1.3 \ terminal_size-0.2.1 \ terminfo-0.7.3 \ termios-0.3.3 \ termtree-0.2.4 \ termwiz-0.15.0 \ textwrap-0.15.0 \ thiserror-1.0.32 \ thiserror-impl-1.0.32 \ time-0.1.44 \ time-0.3.11 \ time-macros-0.2.4 \ tinyvec-1.6.0 \ tinyvec_macros-0.1.0 \ toml-0.5.9 \ toml_edit-0.14.4 \ tracing-0.1.35 \ tracing-attributes-0.1.21 \ tracing-core-0.1.28 \ typenum-1.15.0 \ tz-rs-0.6.12 \ tzdb-0.4.3 \ ucd-trie-0.1.3 \ uds_windows-1.0.2 \ uluru-3.0.0 \ unicase-2.6.0 \ unicode-bidi-0.3.8 \ unicode-bom-1.1.4 \ unicode-ident-1.0.1 \ unicode-normalization-0.1.20 \ unicode-segmentation-1.9.0 \ unicode-width-0.1.9 \ unicode-xid-0.2.3 \ uom-0.30.0 \ url-2.2.2 \ urlencoding-2.1.0 \ utcnow-0.2.0 \ utf8-width-0.1.6 \ utf8parse-0.2.0 \ vcpkg-0.2.15 \ version_check-0.9.4 \ versions-4.1.0 \ vtparse-0.6.1 \ waker-fn-1.1.0 \ walkdir-2.3.2 \ wasi-0.9.0+wasi-snapshot-preview1 \ wasi-0.10.0+wasi-snapshot-preview1 \ wasi-0.11.0+wasi-snapshot-preview1 \ wasm-bindgen-0.2.81 \ wasm-bindgen-backend-0.2.81 \ wasm-bindgen-macro-0.2.81 \ wasm-bindgen-macro-support-0.2.81 \ wasm-bindgen-shared-0.2.81 \ wepoll-ffi-0.1.2 \ which-4.2.5 \ winapi-0.3.9 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-util-0.1.5 \ winapi-x86_64-pc-windows-gnu-0.4.0 \ windows-0.24.0 \ windows-0.37.0 \ windows-0.39.0 \ windows-sys-0.36.1 \ windows_aarch64_msvc-0.36.1 \ windows_aarch64_msvc-0.37.0 \ windows_aarch64_msvc-0.39.0 \ windows_i686_gnu-0.24.0 \ windows_i686_gnu-0.36.1 \ windows_i686_gnu-0.37.0 \ windows_i686_gnu-0.39.0 \ windows_i686_msvc-0.24.0 \ windows_i686_msvc-0.36.1 \ windows_i686_msvc-0.37.0 \ windows_i686_msvc-0.39.0 \ windows_x86_64_gnu-0.24.0 \ windows_x86_64_gnu-0.36.1 \ windows_x86_64_gnu-0.37.0 \ windows_x86_64_gnu-0.39.0 \ windows_x86_64_msvc-0.24.0 \ windows_x86_64_msvc-0.36.1 \ windows_x86_64_msvc-0.37.0 \ windows_x86_64_msvc-0.39.0 \ winres-0.1.12 \ winrt-notification-0.5.1 \ xml-rs-0.8.4 \ yaml-rust-0.4.5 \ zbus-2.3.2 \ zbus_macros-2.3.2 \ zbus_names-2.1.0 \ zvariant-3.4.1 \ zvariant_derive-3.4.1 #CARGO_FEATURES= notify-rust PLIST_FILES= bin/${PORTNAME} OPTIONS_DEFINE= FONTS FONTS_DESC= Install fonts FONTS_RUN_DEPENDS= nerd-fonts>0:x11-fonts/nerd-fonts post-install: @${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/${PORTNAME} .include diff --git a/sysutils/b3sum/Makefile b/sysutils/b3sum/Makefile index 4b5e62b99401..d3f1eee5b480 100644 --- a/sysutils/b3sum/Makefile +++ b/sysutils/b3sum/Makefile @@ -1,87 +1,87 @@ PORTNAME= b3sum DISTVERSION= 1.3.1 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= sysutils MAINTAINER= sec.research.2005@gmail.com COMMENT= Command line implementation of the BLAKE3 hash function LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/../LICENSE USES= cargo USE_GITHUB= yes GH_ACCOUNT= blake3-team GH_PROJECT= BLAKE3 OPTIONS_DEFINE= DOCS OPTIONS_DEFAULT= DOCS WRKSRC_SUBDIR= ${PORTNAME} CARGO_CRATES= anyhow-1.0.53 \ arrayref-0.3.6 \ arrayvec-0.7.2 \ atty-0.2.14 \ autocfg-1.0.1 \ bitflags-1.3.2 \ block-buffer-0.10.0 \ cc-1.0.72 \ cfg-if-1.0.0 \ clap-3.0.12 \ constant_time_eq-0.1.5 \ crossbeam-channel-0.5.2 \ crossbeam-deque-0.8.1 \ crossbeam-epoch-0.9.6 \ crossbeam-utils-0.8.6 \ crypto-common-0.1.1 \ digest-0.10.1 \ duct-0.13.5 \ either-1.6.1 \ fastrand-1.7.0 \ generic-array-0.14.5 \ glob-0.3.0 \ hashbrown-0.11.2 \ hermit-abi-0.1.19 \ hex-0.4.3 \ indexmap-1.8.0 \ instant-0.1.12 \ lazy_static-1.4.0 \ libc-0.2.114 \ memchr-2.4.1 \ memmap-0.7.0 \ memoffset-0.6.5 \ num_cpus-1.13.1 \ once_cell-1.9.0 \ os_pipe-0.9.2 \ os_str_bytes-6.0.0 \ rayon-1.5.1 \ rayon-core-1.9.1 \ redox_syscall-0.2.10 \ remove_dir_all-0.5.3 \ scopeguard-1.1.0 \ shared_child-0.3.5 \ strsim-0.10.0 \ subtle-2.4.1 \ tempfile-3.3.0 \ termcolor-1.1.2 \ textwrap-0.14.2 \ typenum-1.15.0 \ version_check-0.9.4 \ wild-2.0.4 \ winapi-0.3.9 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-util-0.1.5 \ winapi-x86_64-pc-windows-gnu-0.4.0 PORTDOCS= *.md PLIST_FILES= bin/${PORTNAME} post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/${PORTNAME} post-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} (cd ${WRKSRC}/.. && ${INSTALL_DATA} ${PORTDOCS} ${STAGEDIR}${DOCSDIR}) .include diff --git a/sysutils/bkt/Makefile b/sysutils/bkt/Makefile index 3f74b166d0c8..cebc7f0df51f 100644 --- a/sysutils/bkt/Makefile +++ b/sysutils/bkt/Makefile @@ -1,21 +1,21 @@ PORTNAME= bkt PORTVERSION= 0.5.4 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= sysutils MAINTAINER= ehaupt@FreeBSD.org COMMENT= Subprocess caching utility LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= cargo USE_GITHUB= yes GH_ACCOUNT= dimo414 PLIST_FILES= bin/bkt post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/bkt .include diff --git a/sysutils/bupstash/Makefile b/sysutils/bupstash/Makefile index ff91a65cb009..8c84858c433b 100644 --- a/sysutils/bupstash/Makefile +++ b/sysutils/bupstash/Makefile @@ -1,132 +1,132 @@ PORTNAME= bupstash DISTVERSIONPREFIX= v DISTVERSION= 0.11.0 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= sysutils MAINTAINER= felix@userspace.com.au COMMENT= Easy and efficient encrypted backups LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE LIB_DEPENDS= libsodium.so:security/libsodium USES= cargo USE_GITHUB= yes GH_ACCOUNT= andrewchambers CARGO_CRATES= ahash-0.7.6 \ aho-corasick-0.7.18 \ anyhow-1.0.56 \ arrayref-0.3.6 \ arrayvec-0.7.2 \ atty-0.2.14 \ autocfg-1.1.0 \ bitflags-1.3.2 \ blake3-1.3.1 \ block-buffer-0.10.2 \ bstr-0.2.17 \ cc-1.0.73 \ cfg-if-0.1.10 \ cfg-if-1.0.0 \ chrono-0.4.19 \ codemap-0.1.3 \ codemap-diagnostic-0.1.1 \ console-0.15.0 \ constant_time_eq-0.1.5 \ crossbeam-channel-0.5.3 \ crossbeam-utils-0.8.8 \ crypto-common-0.1.3 \ digest-0.10.3 \ either-1.6.1 \ encode_unicode-0.3.6 \ fallible-iterator-0.2.0 \ fallible-streaming-iterator-0.1.9 \ fastrand-1.7.0 \ filetime-0.2.15 \ fnv-1.0.7 \ generic-array-0.14.5 \ getopts-0.2.21 \ getrandom-0.2.5 \ globset-0.4.8 \ hashbrown-0.11.2 \ hashlink-0.7.0 \ hermit-abi-0.1.19 \ humantime-2.1.0 \ indicatif-0.16.2 \ instant-0.1.12 \ itertools-0.10.3 \ itoa-1.0.1 \ jobserver-0.1.24 \ lazy_static-1.4.0 \ libc-0.2.120 \ libsqlite3-sys-0.22.2 \ lock_api-0.4.6 \ log-0.4.14 \ lz4-1.23.3 \ lz4-sys-1.9.3 \ memchr-2.4.1 \ memoffset-0.6.5 \ nix-0.23.1 \ num-integer-0.1.44 \ num-traits-0.2.14 \ number_prefix-0.4.0 \ once_cell-1.10.0 \ openat-0.1.21 \ parking_lot-0.11.2 \ parking_lot_core-0.8.5 \ path-clean-0.1.0 \ pkg-config-0.3.24 \ ppv-lite86-0.2.16 \ proc-macro2-1.0.36 \ quote-1.0.15 \ rand-0.8.5 \ rand_chacha-0.3.1 \ rand_core-0.6.3 \ rangemap-0.1.14 \ redox_syscall-0.2.11 \ regex-1.5.5 \ regex-syntax-0.6.25 \ remove_dir_all-0.5.3 \ rusqlite-0.25.4 \ ryu-1.0.9 \ same-file-1.0.6 \ scopeguard-1.1.0 \ serde-1.0.136 \ serde_bare-0.4.0 \ serde_derive-1.0.136 \ serde_json-1.0.79 \ serial_test-0.5.1 \ serial_test_derive-0.5.1 \ shlex-0.1.1 \ smallvec-1.8.0 \ subtle-2.4.1 \ syn-1.0.88 \ tar-0.4.38 \ tempfile-3.3.0 \ termcolor-1.1.3 \ terminal_size-0.1.17 \ thiserror-1.0.30 \ thiserror-impl-1.0.30 \ time-0.1.43 \ typenum-1.15.0 \ unicode-width-0.1.9 \ unicode-xid-0.2.2 \ vcpkg-0.2.15 \ version_check-0.9.4 \ walkdir-2.3.2 \ wasi-0.10.2+wasi-snapshot-preview1 \ winapi-0.3.9 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-util-0.1.5 \ winapi-x86_64-pc-windows-gnu-0.4.0 \ xattr-0.2.2 \ zstd-safe-4.1.4+zstd.1.5.2 \ zstd-sys-1.6.3+zstd.1.5.2 CARGO_FEATURES= --no-default-features PLIST_FILES= bin/bupstash .include diff --git a/sysutils/czkawka/Makefile b/sysutils/czkawka/Makefile index 076d30ebed9a..2e901dda7288 100644 --- a/sysutils/czkawka/Makefile +++ b/sysutils/czkawka/Makefile @@ -1,362 +1,363 @@ PORTNAME= czkawka DISTVERSION= 5.0.1 +PORTREVISION= 1 CATEGORIES= sysutils MAINTAINER= jbeich@FreeBSD.org COMMENT= Multi functional app to find duplicates, empty folders, similar images etc. LICENSE= CC-BY-4.0 MIT LICENSE_COMB= multi LICENSE_FILE= ${WRKSRC}/LICENSE USES= cargo gnome USE_GITHUB= yes USE_GNOME= gdkpixbuf2 gtk40 GH_ACCOUNT= qarmin PLIST_FILES= bin/${PORTNAME}_cli \ bin/${PORTNAME}_gui \ share/applications/com.github.qarmin.czkawka.desktop \ share/icons/hicolor/scalable/apps/com.github.qarmin.czkawka-symbolic.svg \ share/icons/hicolor/scalable/apps/com.github.qarmin.czkawka.Devel.svg \ share/icons/hicolor/scalable/apps/com.github.qarmin.czkawka.svg \ share/metainfo/com.github.qarmin.czkawka.metainfo.xml \ ${NULL} CARGO_CRATES= adler-1.0.2 \ adler32-1.2.0 \ aes-0.6.0 \ aes-0.7.5 \ aes-soft-0.6.4 \ aesni-0.10.0 \ aho-corasick-0.7.18 \ anyhow-1.0.58 \ arrayref-0.3.6 \ arrayvec-0.7.2 \ atty-0.2.14 \ audio_checker-0.1.0 \ autocfg-1.1.0 \ base64-0.13.0 \ base64-0.20.0-alpha.1 \ base64ct-1.0.1 \ bincode-1.3.3 \ bit_field-0.10.1 \ bitflags-1.3.2 \ bk-tree-0.4.0 \ blake3-1.3.1 \ block-0.1.6 \ block-buffer-0.9.0 \ block-buffer-0.10.2 \ block-modes-0.7.0 \ block-padding-0.2.1 \ bumpalo-3.10.0 \ bytemuck-1.11.0 \ byteorder-1.4.3 \ bzip2-0.4.3 \ bzip2-sys-0.1.11+1.0.8 \ cairo-rs-0.15.12 \ cairo-sys-rs-0.15.1 \ cc-1.0.73 \ cfb-0.7.3 \ cfg-expr-0.10.3 \ cfg-if-1.0.0 \ chrono-0.4.19 \ cipher-0.2.5 \ cipher-0.3.0 \ clap-3.2.15 \ clap_derive-3.2.15 \ clap_lex-0.2.4 \ color_quant-1.1.0 \ constant_time_eq-0.1.5 \ cpufeatures-0.2.2 \ crc32fast-1.3.2 \ crossbeam-channel-0.5.6 \ crossbeam-deque-0.8.2 \ crossbeam-epoch-0.9.10 \ crossbeam-utils-0.8.11 \ crypto-common-0.1.6 \ dashmap-5.3.4 \ deflate-0.8.6 \ deflate-0.9.1 \ deflate-1.0.0 \ digest-0.9.0 \ digest-0.10.3 \ directories-next-2.0.0 \ dirs-sys-next-0.1.2 \ doc-comment-0.3.3 \ either-1.7.0 \ encoding_rs-0.8.31 \ enumn-0.1.4 \ exr-1.4.2 \ fastrand-1.8.0 \ fax-0.1.1 \ fax_derive-0.1.0 \ ffmpeg_cmdline_utils-0.1.1 \ field-offset-0.3.4 \ find-crate-0.6.3 \ flate2-1.0.24 \ fluent-0.16.0 \ fluent-bundle-0.15.2 \ fluent-langneg-0.13.0 \ fluent-syntax-0.11.0 \ flume-0.10.14 \ fnv-1.0.7 \ form_urlencoded-1.0.1 \ fs_extra-1.2.0 \ futures-0.3.21 \ futures-channel-0.3.21 \ futures-core-0.3.21 \ futures-executor-0.3.21 \ futures-io-0.3.21 \ futures-macro-0.3.21 \ futures-sink-0.3.21 \ futures-task-0.3.21 \ futures-util-0.3.21 \ gdk-pixbuf-0.15.11 \ gdk-pixbuf-sys-0.15.10 \ gdk4-0.4.8 \ gdk4-sys-0.4.8 \ generic-array-0.14.5 \ getrandom-0.2.7 \ gif-0.11.4 \ gio-0.15.12 \ gio-sys-0.15.10 \ glib-0.15.12 \ glib-macros-0.15.11 \ glib-sys-0.15.10 \ glob-0.3.0 \ gobject-sys-0.15.10 \ graphene-rs-0.15.1 \ graphene-sys-0.15.10 \ gsk4-0.4.8 \ gsk4-sys-0.4.8 \ gtk4-0.4.8 \ gtk4-macros-0.4.8 \ gtk4-sys-0.4.8 \ half-1.8.2 \ hamming-0.1.3 \ hashbrown-0.12.3 \ heck-0.4.0 \ hermit-abi-0.1.19 \ hmac-0.12.1 \ humansize-1.1.1 \ i18n-config-0.4.2 \ i18n-embed-0.13.4 \ i18n-embed-fl-0.6.4 \ i18n-embed-impl-0.8.0 \ idna-0.2.3 \ image-0.23.14 \ image-0.24.3 \ image_hasher-1.0.0 \ imagepipe-0.5.0 \ indexmap-1.9.1 \ infer-0.9.0 \ inflate-0.4.5 \ instant-0.1.12 \ intl-memoizer-0.5.1 \ intl_pluralrules-7.0.1 \ itertools-0.10.3 \ itoa-1.0.2 \ jpeg-decoder-0.1.22 \ jpeg-decoder-0.2.6 \ js-sys-0.3.59 \ lazy_static-1.4.0 \ lebe-0.5.1 \ libc-0.2.126 \ libheif-rs-0.15.0 \ libheif-sys-1.12.0 \ linked-hash-map-0.5.6 \ locale_config-0.3.0 \ lock_api-0.4.7 \ lofty-0.7.3 \ log-0.4.17 \ malloc_buf-0.0.6 \ matches-0.1.9 \ md5-0.7.0 \ memchr-2.5.0 \ memoffset-0.6.5 \ mime-0.3.16 \ mime_guess-2.0.4 \ miniz_oxide-0.3.7 \ miniz_oxide-0.4.4 \ miniz_oxide-0.5.3 \ multicache-0.6.1 \ nanorand-0.7.0 \ num-complex-0.3.1 \ num-integer-0.1.45 \ num-iter-0.1.43 \ num-rational-0.3.2 \ num-rational-0.4.1 \ num-traits-0.2.15 \ num_cpus-1.13.1 \ num_threads-0.1.6 \ objc-0.2.7 \ objc-foundation-0.1.1 \ objc_id-0.1.1 \ ogg_pager-0.3.2 \ once_cell-1.13.0 \ opaque-debug-0.3.0 \ open-3.0.2 \ ordermap-0.4.2 \ os_str_bytes-6.2.0 \ pango-0.15.10 \ pango-sys-0.15.10 \ parking_lot-0.12.1 \ parking_lot_core-0.9.3 \ password-hash-0.3.2 \ paste-1.0.7 \ pathdiff-0.2.1 \ pbkdf2-0.10.1 \ pdf-0.7.2 \ pdf_derive-0.1.22 \ percent-encoding-2.1.0 \ pest-2.1.3 \ pin-project-1.0.11 \ pin-project-internal-1.0.11 \ pin-project-lite-0.2.9 \ pin-utils-0.1.0 \ pkg-config-0.3.25 \ png-0.16.8 \ png-0.17.5 \ ppv-lite86-0.2.16 \ primal-check-0.3.1 \ proc-macro-crate-1.1.3 \ proc-macro-error-1.0.4 \ proc-macro-error-attr-1.0.4 \ proc-macro2-1.0.42 \ quick-xml-0.22.0 \ quote-1.0.20 \ rand-0.8.5 \ rand_chacha-0.3.1 \ rand_core-0.6.3 \ rawloader-0.37.1 \ rayon-1.5.3 \ rayon-core-1.9.3 \ redox_syscall-0.2.16 \ redox_users-0.4.3 \ regex-1.6.0 \ regex-syntax-0.6.27 \ remove_dir_all-0.5.3 \ rust-embed-6.4.0 \ rust-embed-impl-6.2.0 \ rust-embed-utils-7.2.0 \ rustc-hash-1.1.0 \ rustc_version-0.3.3 \ rustc_version-0.4.0 \ rustdct-0.5.1 \ rustdct-0.6.0 \ rustfft-4.1.0 \ rustfft-5.1.1 \ ryu-1.0.10 \ same-file-1.0.6 \ scoped_threadpool-0.1.9 \ scopeguard-1.1.0 \ self_cell-0.10.2 \ semver-0.11.0 \ semver-1.0.12 \ semver-parser-0.10.2 \ serde-1.0.140 \ serde_derive-1.0.140 \ serde_json-1.0.82 \ serde_yaml-0.8.26 \ sha1-0.10.1 \ sha2-0.9.9 \ sha2-0.10.2 \ slab-0.4.7 \ smallvec-1.9.0 \ snafu-0.6.10 \ snafu-derive-0.6.10 \ spin-0.9.4 \ strength_reduce-0.2.3 \ stringprep-0.1.2 \ strsim-0.10.0 \ subtle-2.4.1 \ symphonia-0.5.1 \ symphonia-bundle-flac-0.5.1 \ symphonia-bundle-mp3-0.5.1 \ symphonia-codec-aac-0.5.1 \ symphonia-codec-alac-0.5.1 \ symphonia-codec-pcm-0.5.1 \ symphonia-codec-vorbis-0.5.1 \ symphonia-core-0.5.1 \ symphonia-format-isomp4-0.5.1 \ symphonia-format-mkv-0.5.1 \ symphonia-format-ogg-0.5.1 \ symphonia-format-wav-0.5.1 \ symphonia-metadata-0.5.1 \ symphonia-utils-xiph-0.5.1 \ syn-1.0.98 \ system-deps-6.0.2 \ tempfile-3.3.0 \ termcolor-1.1.3 \ textwrap-0.15.0 \ thiserror-1.0.31 \ thiserror-impl-1.0.31 \ threadpool-1.8.1 \ tiff-0.6.1 \ tiff-0.7.3 \ time-0.1.44 \ time-0.3.11 \ time-macros-0.2.4 \ tinystr-0.3.4 \ tinyvec-1.6.0 \ tinyvec_macros-0.1.0 \ toml-0.5.9 \ transpose-0.2.1 \ trash-2.1.5 \ triple_accel-0.3.4 \ type-map-0.4.0 \ typenum-1.15.0 \ ucd-trie-0.1.4 \ unic-langid-0.9.0 \ unic-langid-impl-0.9.0 \ unicase-2.6.0 \ unicode-bidi-0.3.8 \ unicode-ident-1.0.2 \ unicode-normalization-0.1.21 \ url-2.2.2 \ uuid-1.1.2 \ version-compare-0.1.0 \ version_check-0.9.4 \ vid_dup_finder_lib-0.1.0 \ walkdir-2.3.2 \ wasi-0.10.0+wasi-snapshot-preview1 \ wasi-0.11.0+wasi-snapshot-preview1 \ wasm-bindgen-0.2.82 \ wasm-bindgen-backend-0.2.82 \ wasm-bindgen-macro-0.2.82 \ wasm-bindgen-macro-support-0.2.82 \ wasm-bindgen-shared-0.2.82 \ weezl-0.1.7 \ winapi-0.3.9 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-util-0.1.5 \ winapi-x86_64-pc-windows-gnu-0.4.0 \ windows-0.37.0 \ windows-sys-0.36.1 \ windows_aarch64_msvc-0.36.1 \ windows_aarch64_msvc-0.37.0 \ windows_i686_gnu-0.36.1 \ windows_i686_gnu-0.37.0 \ windows_i686_msvc-0.36.1 \ windows_i686_msvc-0.37.0 \ windows_x86_64_gnu-0.36.1 \ windows_x86_64_gnu-0.37.0 \ windows_x86_64_msvc-0.36.1 \ windows_x86_64_msvc-0.37.0 \ xxhash-rust-0.8.5 \ yaml-rust-0.4.5 \ zip-0.6.2 # XXX https://github.com/rust-lang/cargo/issues/4101 CARGO_INSTALL_PATH= ${PLIST_FILES:Mbin/*:T} post-install: ${INSTALL_DATA} ${WRKSRC}/data/*.desktop \ ${STAGEDIR}${PREFIX}/share/applications ${MKDIR} ${STAGEDIR}${PREFIX}/share/icons/hicolor/scalable/apps ${INSTALL_DATA} ${WRKSRC}/data/icons/*.svg \ ${STAGEDIR}${PREFIX}/share/icons/hicolor/scalable/apps ${MKDIR} ${STAGEDIR}${PREFIX}/share/metainfo ${INSTALL_DATA} ${WRKSRC}/data/*.metainfo.xml \ ${STAGEDIR}${PREFIX}/share/metainfo .include diff --git a/sysutils/diskonaut/Makefile b/sysutils/diskonaut/Makefile index ee5dde3e10bb..f6f2503c114a 100644 --- a/sysutils/diskonaut/Makefile +++ b/sysutils/diskonaut/Makefile @@ -1,112 +1,112 @@ PORTNAME= diskonaut PORTVERSION= 0.11.0 -PORTREVISION= 17 +PORTREVISION= 18 CATEGORIES= sysutils MAINTAINER= yuri@FreeBSD.org COMMENT= Terminal disk space navigator LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= cargo USE_GITHUB= yes GH_ACCOUNT= imsnif CARGO_CRATES= addr2line-0.12.1 \ adler32-1.1.0 \ ansi_term-0.11.0 \ arc-swap-0.4.7 \ atty-0.2.14 \ autocfg-1.0.0 \ backtrace-0.3.49 \ bitflags-1.2.1 \ cassowary-0.3.0 \ cc-1.0.55 \ cfg-if-0.1.10 \ clap-2.33.1 \ clicolors-control-1.0.1 \ cloudabi-0.0.3 \ console-0.10.3 \ crossbeam-0.7.3 \ crossbeam-channel-0.4.2 \ crossbeam-deque-0.7.3 \ crossbeam-epoch-0.8.2 \ crossbeam-queue-0.2.3 \ crossbeam-utils-0.7.2 \ crossterm-0.17.7 \ crossterm_winapi-0.6.1 \ difference-2.0.0 \ dtoa-0.4.6 \ either-1.5.3 \ encode_unicode-0.3.6 \ failure-0.1.8 \ failure_derive-0.1.8 \ filesize-0.2.0 \ gimli-0.21.0 \ heck-0.3.1 \ hermit-abi-0.1.14 \ insta-0.16.0 \ itoa-0.4.6 \ jwalk-0.5.1 \ lazy_static-1.4.0 \ libc-0.2.71 \ linked-hash-map-0.5.3 \ lock_api-0.3.4 \ log-0.4.11 \ maybe-uninit-2.0.0 \ memoffset-0.5.4 \ miniz_oxide-0.3.7 \ mio-0.7.0 \ miow-0.3.5 \ nix-0.17.0 \ ntapi-0.3.4 \ num_cpus-1.13.0 \ object-0.20.0 \ parking_lot-0.10.2 \ parking_lot_core-0.7.2 \ proc-macro-error-1.0.2 \ proc-macro-error-attr-1.0.2 \ proc-macro2-1.0.18 \ quote-1.0.7 \ rayon-1.3.1 \ rayon-core-1.7.1 \ redox_syscall-0.1.56 \ rustc-demangle-0.1.16 \ ryu-1.0.5 \ scopeguard-1.1.0 \ serde-1.0.112 \ serde_derive-1.0.112 \ serde_json-1.0.55 \ serde_yaml-0.8.13 \ signal-hook-0.1.16 \ signal-hook-registry-1.2.0 \ smallvec-1.4.2 \ socket2-0.3.15 \ strsim-0.8.0 \ structopt-0.3.15 \ structopt-derive-0.4.8 \ syn-1.0.31 \ syn-mid-0.5.0 \ synstructure-0.12.4 \ terminal_size-0.1.12 \ termios-0.3.2 \ textwrap-0.11.0 \ tui-0.11.0 \ unicode-segmentation-1.6.0 \ unicode-width-0.1.7 \ unicode-xid-0.2.0 \ vec_map-0.8.2 \ version_check-0.9.2 \ void-1.0.2 \ winapi-0.3.8 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-x86_64-pc-windows-gnu-0.4.0 \ yaml-rust-0.4.4 PLIST_FILES= bin/${PORTNAME} post-install: @${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/${PORTNAME} .include diff --git a/sysutils/diskus/Makefile b/sysutils/diskus/Makefile index 038bf19d98fd..c503226ce44f 100644 --- a/sysutils/diskus/Makefile +++ b/sysutils/diskus/Makefile @@ -1,71 +1,71 @@ PORTNAME= diskus DISTVERSIONPREFIX= v DISTVERSION= 0.7.0 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= sysutils MAINTAINER= sec.research.2005@gmail.com COMMENT= Mminimal, fast alternative to 'du -sh' LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE-MIT USES= cargo USE_GITHUB= yes GH_ACCOUNT= sharkdp CARGO_CRATES= ansi_term-0.11.0 \ arrayvec-0.4.12 \ atty-0.2.14 \ autocfg-1.0.1 \ bitflags-1.3.2 \ cfg-if-1.0.0 \ clap-2.33.3 \ crossbeam-channel-0.5.1 \ crossbeam-deque-0.8.1 \ crossbeam-epoch-0.9.5 \ crossbeam-utils-0.8.5 \ either-1.6.1 \ fuchsia-cprng-0.1.1 \ hermit-abi-0.1.19 \ humansize-1.1.1 \ itoa-0.4.8 \ lazy_static-1.4.0 \ libc-0.2.107 \ memoffset-0.6.4 \ nodrop-0.1.14 \ num-format-0.4.0 \ num_cpus-1.13.0 \ rand-0.4.6 \ rand_core-0.3.1 \ rand_core-0.4.2 \ rayon-1.5.1 \ rayon-core-1.9.1 \ rdrand-0.4.0 \ remove_dir_all-0.5.3 \ scopeguard-1.1.0 \ strsim-0.8.0 \ tempdir-0.3.7 \ term_size-0.3.2 \ textwrap-0.11.0 \ unicode-width-0.1.9 \ vec_map-0.8.2 \ winapi-0.3.9 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-x86_64-pc-windows-gnu-0.4.0 PLIST_FILES= bin/diskus \ man/man1/${PORTNAME}.1.gz PORTDOCS= *.md OPTIONS_DEFINE= DOCS post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/diskus ${INSTALL_MAN} ${WRKSRC}/doc/${PORTNAME}.1 ${STAGEDIR}${MAN1PREFIX}/man/man1 post-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} @${MKDIR} ${STAGEDIR}${MAN1PREFIX}/man/man1 (cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${STAGEDIR}${DOCSDIR}) .include diff --git a/sysutils/dua-cli/Makefile b/sysutils/dua-cli/Makefile index f13f3162be65..c5f92a53f22b 100644 --- a/sysutils/dua-cli/Makefile +++ b/sysutils/dua-cli/Makefile @@ -1,138 +1,138 @@ PORTNAME= dua-cli DISTVERSIONPREFIX= v DISTVERSION= 2.17.1 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= sysutils MAINTAINER= lcook@FreeBSD.org COMMENT= Conveniently learn about the disk usage of directories LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= cargo USE_GITHUB= yes GH_ACCOUNT= Byron CARGO_CRATES= ansi_term-0.12.1 \ anyhow-1.0.56 \ atty-0.2.14 \ autocfg-1.1.0 \ bitflags-1.3.2 \ byte-unit-4.0.14 \ cassowary-0.3.0 \ cfg-if-1.0.0 \ chrono-0.4.19 \ clap-3.1.6 \ clap_derive-3.1.4 \ colored-2.0.0 \ const-sha1-0.2.0 \ core-foundation-sys-0.8.3 \ crossbeam-0.8.1 \ crossbeam-channel-0.5.2 \ crossbeam-deque-0.8.1 \ crossbeam-epoch-0.9.7 \ crossbeam-queue-0.3.4 \ crossbeam-utils-0.8.7 \ crossterm-0.22.1 \ crossterm_winapi-0.9.0 \ crosstermion-0.9.0 \ ctor-0.1.21 \ diff-0.1.12 \ either-1.6.1 \ filesize-0.2.0 \ fixedbitset-0.4.1 \ form_urlencoded-1.0.1 \ glob-0.3.0 \ hashbrown-0.11.2 \ heck-0.4.0 \ hermit-abi-0.1.19 \ idna-0.2.3 \ indexmap-1.8.0 \ instant-0.1.12 \ itertools-0.10.3 \ jwalk-0.6.0 \ lazy_static-1.4.0 \ libc-0.2.120 \ lock_api-0.4.6 \ log-0.4.14 \ malloc_buf-0.0.6 \ matches-0.1.9 \ memchr-2.4.1 \ memoffset-0.6.5 \ mio-0.7.14 \ miow-0.3.7 \ ntapi-0.3.7 \ num-integer-0.1.44 \ num-traits-0.2.14 \ num_cpus-1.13.1 \ numtoa-0.1.0 \ objc-0.2.7 \ once_cell-1.10.0 \ open-2.1.1 \ os_str_bytes-6.0.0 \ output_vt100-0.1.3 \ parking_lot-0.11.2 \ parking_lot_core-0.8.5 \ pathdiff-0.2.1 \ percent-encoding-2.1.0 \ petgraph-0.6.0 \ pretty_assertions-1.2.0 \ proc-macro-error-1.0.4 \ proc-macro-error-attr-1.0.4 \ proc-macro2-1.0.36 \ quote-1.0.15 \ rayon-1.5.1 \ rayon-core-1.9.1 \ redox_syscall-0.2.11 \ redox_termios-0.1.2 \ scopeguard-1.1.0 \ signal-hook-0.3.13 \ signal-hook-mio-0.2.1 \ signal-hook-registry-1.4.0 \ smallvec-1.8.0 \ strsim-0.10.0 \ syn-1.0.88 \ sysinfo-0.23.5 \ termcolor-1.1.3 \ termion-1.5.6 \ textwrap-0.15.0 \ time-0.1.44 \ tinyvec-1.5.1 \ tinyvec_macros-0.1.0 \ trash-2.0.4 \ tui-0.17.0 \ tui-react-0.17.0 \ unicode-bidi-0.3.7 \ unicode-normalization-0.1.19 \ unicode-segmentation-1.9.0 \ unicode-width-0.1.9 \ unicode-xid-0.2.2 \ url-2.2.2 \ utf8-width-0.1.5 \ version_check-0.9.4 \ wasi-0.10.0+wasi-snapshot-preview1 \ wild-2.0.4 \ winapi-0.3.9 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-util-0.1.5 \ winapi-x86_64-pc-windows-gnu-0.4.0 \ windows-0.9.1 \ windows_gen-0.9.1 \ windows_macros-0.9.1 CARGO_FEATURES= --no-default-features tui-crossplatform PLIST_FILES= bin/dua PORTDOCS= README.md OPTIONS_DEFINE= DOCS post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/dua post-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/${PORTDOCS} \ ${STAGEDIR}${DOCSDIR} .include diff --git a/sysutils/dust/Makefile b/sysutils/dust/Makefile index c5f7c27576b7..e1cc05abff61 100644 --- a/sysutils/dust/Makefile +++ b/sysutils/dust/Makefile @@ -1,21 +1,22 @@ PORTNAME= dust DISTVERSIONPREFIX= v DISTVERSION= 0.8.1 +PORTREVISION= 1 CATEGORIES= sysutils MAINTAINER= antranigv@freebsd.am COMMENT= More intuitive version of du LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE USES= cargo USE_GITHUB= yes GH_ACCOUNT= bootandy PLIST_FILES= bin/${PORTNAME} post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/${PORTNAME} .include diff --git a/sysutils/exa/Makefile b/sysutils/exa/Makefile index 38d2f4e34cdc..12486ce634a0 100644 --- a/sysutils/exa/Makefile +++ b/sysutils/exa/Makefile @@ -1,78 +1,78 @@ PORTNAME= exa DISTVERSIONPREFIX= v DISTVERSION= 0.10.1 -PORTREVISION= 13 +PORTREVISION= 14 CATEGORIES= sysutils MAINTAINER= mikael@FreeBSD.org COMMENT= Modern replacement for ls LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENCE LIB_DEPENDS= libgit2.so:devel/libgit2 USES= cargo USE_GITHUB= yes GH_ACCOUNT= ogham CARGO_CRATES= ansi_term-0.12.1 \ autocfg-1.0.1 \ bitflags-1.2.1 \ byteorder-1.4.3 \ cc-1.0.67 \ cfg-if-1.0.0 \ datetime-0.5.2 \ form_urlencoded-1.0.1 \ git2-0.13.17 \ glob-0.3.0 \ hermit-abi-0.1.18 \ idna-0.2.2 \ jobserver-0.1.21 \ lazy_static-1.4.0 \ libc-0.2.93 \ libgit2-sys-0.12.18+1.1.0 \ libz-sys-1.1.2 \ locale-0.2.2 \ log-0.4.14 \ matches-0.1.8 \ natord-1.0.9 \ num_cpus-1.13.0 \ number_prefix-0.4.0 \ openssl-src-111.15.0+1.1.1k \ openssl-sys-0.9.61 \ pad-0.1.6 \ percent-encoding-2.1.0 \ pkg-config-0.3.19 \ redox_syscall-0.1.57 \ scoped_threadpool-0.1.9 \ term_grid-0.1.7 \ term_size-0.3.2 \ tinyvec-1.2.0 \ tinyvec_macros-0.1.0 \ unicode-bidi-0.3.5 \ unicode-normalization-0.1.17 \ unicode-width-0.1.8 \ url-2.2.1 \ users-0.11.0 \ vcpkg-0.2.11 \ winapi-0.3.9 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-x86_64-pc-windows-gnu-0.4.0 \ zoneinfo_compiled-0.5.1 PLIST_FILES= bin/exa \ etc/bash_completion.d/exa.bash \ share/fish/completions/exa.fish \ share/zsh/site-functions/_exa post-install: @${MKDIR} ${STAGEDIR}${PREFIX}/etc/bash_completion.d ${INSTALL_DATA} ${WRKSRC}/completions/completions.bash ${STAGEDIR}${PREFIX}/etc/bash_completion.d/exa.bash @${MKDIR} ${STAGEDIR}${PREFIX}/share/fish/completions ${INSTALL_DATA} ${WRKSRC}/completions/completions.fish ${STAGEDIR}${PREFIX}/share/fish/completions/exa.fish @${MKDIR} ${STAGEDIR}${PREFIX}/share/zsh/site-functions ${INSTALL_DATA} ${WRKSRC}/completions/completions.zsh ${STAGEDIR}${PREFIX}/share/zsh/site-functions/_exa ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/exa .include diff --git a/sysutils/fd/Makefile b/sysutils/fd/Makefile index 647b87dd287d..e58c77141e6b 100644 --- a/sysutils/fd/Makefile +++ b/sysutils/fd/Makefile @@ -1,126 +1,126 @@ PORTNAME= fd DISTVERSIONPREFIX= v DISTVERSION= 8.4.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= sysutils PKGNAMESUFFIX= -find MAINTAINER= mikael@FreeBSD.org COMMENT= Simple, fast and user-friendly alternative to find LICENSE= APACHE20 MIT LICENSE_COMB= dual LICENSE_FILE_APACHE20= ${WRKSRC}/LICENSE-APACHE LICENSE_FILE_MIT= ${WRKSRC}/LICENSE-MIT USES= cargo USE_GITHUB= yes GH_ACCOUNT= sharkdp CARGO_CRATES= aho-corasick-0.7.18 \ ansi_term-0.12.1 \ anyhow-1.0.57 \ argmax-0.3.0 \ atty-0.2.14 \ autocfg-1.1.0 \ bitflags-1.3.2 \ bstr-0.2.17 \ cc-1.0.73 \ cfg-if-1.0.0 \ chrono-0.4.19 \ clap-3.1.18 \ clap_complete-3.1.4 \ clap_lex-0.2.0 \ crossbeam-utils-0.8.8 \ ctrlc-3.2.2 \ diff-0.1.12 \ dirs-next-2.0.0 \ dirs-sys-next-0.1.2 \ filetime-0.2.16 \ fnv-1.0.7 \ fs_extra-1.2.0 \ fuchsia-cprng-0.1.1 \ getrandom-0.2.6 \ globset-0.4.8 \ hashbrown-0.11.2 \ hermit-abi-0.1.19 \ humantime-2.1.0 \ ignore-0.4.18 \ indexmap-1.8.2 \ jemalloc-sys-0.5.0+5.3.0 \ jemallocator-0.5.0 \ lazy_static-1.4.0 \ libc-0.2.126 \ log-0.4.17 \ lscolors-0.10.0 \ memchr-2.5.0 \ memoffset-0.6.5 \ nix-0.23.1 \ nix-0.24.1 \ normpath-0.3.2 \ num-integer-0.1.45 \ num-traits-0.2.15 \ num_cpus-1.13.1 \ once_cell-1.12.0 \ os_str_bytes-6.1.0 \ proc-macro-error-1.0.4 \ proc-macro-error-attr-1.0.4 \ proc-macro2-1.0.39 \ quote-1.0.18 \ rand-0.4.6 \ rand_core-0.3.1 \ rand_core-0.4.2 \ rdrand-0.4.0 \ redox_syscall-0.2.13 \ redox_users-0.4.3 \ regex-1.5.6 \ regex-syntax-0.6.26 \ remove_dir_all-0.5.3 \ same-file-1.0.6 \ strsim-0.10.0 \ syn-1.0.95 \ tempdir-0.3.7 \ termcolor-1.1.3 \ terminal_size-0.1.17 \ test-case-2.1.0 \ test-case-macros-2.1.0 \ textwrap-0.15.0 \ thiserror-1.0.31 \ thiserror-impl-1.0.31 \ thread_local-1.1.4 \ time-0.1.43 \ unicode-ident-1.0.0 \ users-0.11.0 \ version_check-0.9.4 \ walkdir-2.3.2 \ wasi-0.10.2+wasi-snapshot-preview1 \ winapi-0.3.9 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-util-0.1.5 \ winapi-x86_64-pc-windows-gnu-0.4.0 MAKE_ENV= SHELL_COMPLETIONS_DIR=${WRKDIR}/completions CONFLICTS_INSTALL= fd PLIST_FILES= bin/fd \ etc/bash_completion.d/fd.bash \ share/fish/completions/fd.fish \ share/man/man1/fd.1.gz \ share/zsh/site-functions/_fd post-install: @${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/fd ${INSTALL_MAN} ${WRKSRC}/doc/fd.1 \ ${STAGEDIR}${PREFIX}/share/man/man1 @${MKDIR} ${STAGEDIR}${PREFIX}/etc/bash_completion.d ${INSTALL_DATA} ${WRKDIR}/completions/fd.bash \ ${STAGEDIR}${PREFIX}/etc/bash_completion.d @${MKDIR} ${STAGEDIR}${PREFIX}/share/fish/completions ${INSTALL_DATA} ${WRKDIR}/completions/fd.fish \ ${STAGEDIR}${PREFIX}/share/fish/completions @${MKDIR} ${STAGEDIR}${PREFIX}/share/zsh/site-functions ${INSTALL_DATA} ${WRKSRC}/contrib/completion/_fd \ ${STAGEDIR}${PREFIX}/share/zsh/site-functions .include diff --git a/sysutils/flowgger/Makefile b/sysutils/flowgger/Makefile index a6f66f8865cb..67586bbd9e55 100644 --- a/sysutils/flowgger/Makefile +++ b/sysutils/flowgger/Makefile @@ -1,183 +1,183 @@ PORTNAME= flowgger DISTVERSION= 0.2.10 -PORTREVISION= 16 +PORTREVISION= 17 CATEGORIES= sysutils MASTER_SITES= CRATESIO DISTFILES= ${CARGO_DIST_SUBDIR}/${DISTNAME}${CARGO_CRATE_EXT} MAINTAINER= mikael@FreeBSD.org COMMENT= Fast data collector LICENSE= BSD2CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE BUILD_DEPENDS= capnp:devel/capnproto USES= cargo ssl CARGO_CRATES= adler32-1.0.4 \ ansi_term-0.11.0 \ ascii-0.9.3 \ atty-0.2.13 \ autocfg-0.1.6 \ autocfg-1.0.0 \ backtrace-0.3.38 \ backtrace-sys-0.1.31 \ bitflags-1.2.0 \ build_const-0.2.1 \ byteorder-0.5.3 \ byteorder-1.3.2 \ bytes-0.4.12 \ c2-chacha-0.2.2 \ capnp-0.10.3 \ capnpc-0.10.2 \ cc-1.0.45 \ cfg-if-0.1.10 \ chrono-0.4.9 \ chrono-tz-0.5.1 \ clap-2.33.0 \ cloudabi-0.0.3 \ combine-3.8.1 \ crc-1.8.1 \ crc32fast-1.2.0 \ crossbeam-0.7.3 \ crossbeam-channel-0.4.2 \ crossbeam-deque-0.7.3 \ crossbeam-epoch-0.8.2 \ crossbeam-queue-0.2.1 \ crossbeam-utils-0.6.6 \ crossbeam-utils-0.7.2 \ dtoa-0.2.2 \ either-1.5.3 \ error-chain-0.10.0 \ filetime-0.2.7 \ flate2-0.2.20 \ flate2-1.0.11 \ fnv-1.0.6 \ foreign-types-0.3.2 \ foreign-types-shared-0.1.1 \ fsevent-0.4.0 \ fsevent-sys-2.0.1 \ fuchsia-cprng-0.1.1 \ fuchsia-zircon-0.3.3 \ fuchsia-zircon-sys-0.3.3 \ futures-0.1.29 \ generator-0.6.20 \ getrandom-0.1.12 \ glob-0.3.0 \ idna-0.1.5 \ inotify-0.6.1 \ inotify-sys-0.1.3 \ iovec-0.1.2 \ itoa-0.1.1 \ kafka-0.8.0 \ kernel32-sys-0.2.2 \ lazy_static-1.4.0 \ lazycell-1.2.1 \ libc-0.2.62 \ lock_api-0.1.5 \ log-0.3.9 \ log-0.4.8 \ matches-0.1.8 \ may-0.3.17 \ may_queue-0.1.7 \ maybe-uninit-2.0.0 \ memchr-2.2.1 \ memoffset-0.5.4 \ miniz-sys-0.1.12 \ miniz_oxide-0.3.2 \ mio-0.6.19 \ mio-extras-2.0.5 \ miow-0.2.1 \ miow-0.3.3 \ net2-0.2.33 \ nix-0.17.0 \ notify-4.0.13 \ num-integer-0.1.41 \ num-traits-0.1.43 \ num-traits-0.2.8 \ num_cpus-1.10.1 \ openssl-0.10.28 \ openssl-sys-0.9.54 \ owning_ref-0.4.0 \ parking_lot-0.7.1 \ parking_lot_core-0.4.0 \ parse-zoneinfo-0.2.1 \ percent-encoding-1.0.1 \ pkg-config-0.3.16 \ ppv-lite86-0.2.5 \ rand-0.4.6 \ rand-0.5.6 \ rand-0.6.5 \ rand-0.7.2 \ rand_chacha-0.1.1 \ rand_chacha-0.2.1 \ rand_core-0.3.1 \ rand_core-0.4.2 \ rand_core-0.5.1 \ rand_hc-0.1.0 \ rand_hc-0.2.0 \ rand_isaac-0.1.1 \ rand_jitter-0.1.4 \ rand_os-0.1.3 \ rand_pcg-0.1.2 \ rand_xorshift-0.1.1 \ rdrand-0.4.0 \ redis-0.10.0 \ redox_syscall-0.1.56 \ ref_slice-1.2.0 \ regex-1.3.6 \ regex-syntax-0.6.17 \ remove_dir_all-0.5.2 \ rustc-demangle-0.1.16 \ rustc_version-0.2.3 \ same-file-1.0.5 \ scopeguard-0.3.3 \ scopeguard-1.1.0 \ semver-0.9.0 \ semver-parser-0.7.0 \ serde-0.8.23 \ serde-1.0.101 \ serde_json-0.8.6 \ sha1-0.6.0 \ slab-0.4.2 \ smallvec-0.6.10 \ smallvec-1.2.0 \ snap-0.2.5 \ socket2-0.3.11 \ stable_deref_trait-1.1.1 \ strsim-0.8.0 \ tempdir-0.3.7 \ textwrap-0.11.0 \ time-0.1.42 \ tokio-codec-0.1.1 \ tokio-executor-0.1.8 \ tokio-io-0.1.12 \ tokio-reactor-0.1.9 \ tokio-sync-0.1.6 \ tokio-tcp-0.1.3 \ toml-0.5.3 \ twox-hash-1.5.0 \ unicode-bidi-0.3.4 \ unicode-normalization-0.1.8 \ unicode-width-0.1.6 \ unreachable-1.0.0 \ url-1.7.2 \ vcpkg-0.2.7 \ vec_map-0.8.1 \ void-1.0.2 \ walkdir-2.2.9 \ wasi-0.7.0 \ winapi-0.2.8 \ winapi-0.3.8 \ winapi-build-0.1.1 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-util-0.1.2 \ winapi-x86_64-pc-windows-gnu-0.4.0 \ ws2_32-sys-0.2.1 post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/flowgger ${INSTALL_DATA} ${WRKSRC}/flowgger.toml \ ${STAGEDIR}${PREFIX}/etc/flowgger.toml.sample .include diff --git a/sysutils/fselect/Makefile b/sysutils/fselect/Makefile index 9d3a7b9bafe0..d76ff4e6eb32 100644 --- a/sysutils/fselect/Makefile +++ b/sysutils/fselect/Makefile @@ -1,186 +1,186 @@ PORTNAME= fselect DISTVERSION= 0.8.0 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= sysutils MAINTAINER= lcook@FreeBSD.org COMMENT= Find files with SQL-like queries LICENSE= APACHE20 MIT LICENSE_COMB= dual LICENSE_FILE_APACHE20= ${WRKSRC}/LICENSE-APACHE LICENSE_FILE_MIT= ${WRKSRC}/LICENSE-MIT USES= cargo USE_GITHUB= yes GH_ACCOUNT= jhspetersson CARGO_CRATES= adler-1.0.2 \ ahash-0.7.6 \ aho-corasick-0.7.18 \ ansi_term-0.12.1 \ atty-0.2.14 \ autocfg-1.1.0 \ base64-0.13.0 \ bitflags-1.3.2 \ bitreader-0.3.5 \ bitstream-io-1.2.0 \ block-buffer-0.10.2 \ bstr-0.2.17 \ bytecount-0.6.2 \ byteorder-1.4.3 \ bzip2-0.4.3 \ bzip2-sys-0.1.11+1.0.8 \ cc-1.0.73 \ cfg-if-0.1.10 \ cfg-if-1.0.0 \ chrono-0.4.19 \ chrono-english-0.1.7 \ clipboard-win-4.4.1 \ cloudabi-0.0.3 \ cpufeatures-0.2.1 \ crc32fast-1.3.2 \ crypto-common-0.1.3 \ csv-1.1.6 \ csv-core-0.1.10 \ digest-0.10.3 \ directories-4.0.1 \ dirs-next-2.0.0 \ dirs-sys-0.3.6 \ dirs-sys-next-0.1.2 \ either-1.6.1 \ endian-type-0.1.2 \ env_logger-0.8.4 \ errno-0.2.8 \ errno-dragonfly-0.1.2 \ error-code-2.3.1 \ fallible_collections-0.4.4 \ fd-lock-3.0.3 \ fixedbitset-0.2.0 \ flate2-1.0.22 \ fnv-1.0.7 \ generic-array-0.14.5 \ getrandom-0.2.4 \ hashbrown-0.11.2 \ hermit-abi-0.1.19 \ humansize-1.1.1 \ humantime-2.1.0 \ imagesize-0.9.0 \ indexmap-1.8.0 \ io-lifetimes-0.4.4 \ itertools-0.8.2 \ itoa-0.4.8 \ itoa-1.0.1 \ kamadak-exif-0.5.4 \ keccak-0.1.0 \ lazy_static-1.4.0 \ libc-0.2.119 \ linux-raw-sys-0.0.37 \ lock_api-0.3.4 \ log-0.4.14 \ lscolors-0.9.0 \ matroska-0.10.0 \ memchr-1.0.2 \ memchr-2.4.1 \ memoffset-0.6.5 \ miniz_oxide-0.4.4 \ mp3-metadata-0.3.3 \ mp4parse-0.12.0 \ mutate_once-0.1.1 \ nibble_vec-0.1.0 \ nix-0.23.1 \ nom-3.2.1 \ num-integer-0.1.44 \ num-traits-0.2.14 \ num_threads-0.1.3 \ once_cell-1.9.0 \ parking_lot-0.10.2 \ parking_lot_core-0.7.2 \ petgraph-0.5.1 \ phf-0.10.1 \ phf_generator-0.10.0 \ phf_macros-0.10.0 \ phf_shared-0.10.0 \ pkg-config-0.3.24 \ ppv-lite86-0.2.16 \ proc-macro-hack-0.5.19 \ proc-macro2-1.0.36 \ quote-1.0.15 \ radix_trie-0.2.1 \ rand-0.8.5 \ rand_chacha-0.3.1 \ rand_core-0.6.3 \ redox_syscall-0.1.57 \ redox_syscall-0.2.10 \ redox_users-0.4.0 \ regex-1.5.4 \ regex-automata-0.1.10 \ regex-syntax-0.6.25 \ rustix-0.32.1 \ rustyline-9.1.2 \ ryu-1.0.9 \ scanlex-0.1.4 \ scopeguard-1.1.0 \ serde-1.0.136 \ serde_derive-1.0.136 \ serde_json-1.0.79 \ sha-1-0.10.0 \ sha2-0.10.2 \ sha3-0.10.1 \ siphasher-0.3.9 \ smallvec-1.8.0 \ static_assertions-1.1.0 \ str-buf-1.0.5 \ svg-0.10.0 \ syn-1.0.86 \ termcolor-1.1.2 \ thiserror-1.0.30 \ thiserror-impl-1.0.30 \ time-0.1.43 \ time-0.3.7 \ time-macros-0.2.3 \ toml-0.5.8 \ tree_magic-0.2.3 \ typenum-1.15.0 \ unicode-segmentation-1.9.0 \ unicode-width-0.1.9 \ unicode-xid-0.2.2 \ users-0.11.0 \ utf8parse-0.2.0 \ version_check-0.9.4 \ wana_kana-2.1.0 \ wasi-0.10.2+wasi-snapshot-preview1 \ winapi-0.3.9 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-util-0.1.5 \ winapi-x86_64-pc-windows-gnu-0.4.0 \ windows-sys-0.30.0 \ windows_aarch64_msvc-0.30.0 \ windows_i686_gnu-0.30.0 \ windows_i686_msvc-0.30.0 \ windows_x86_64_gnu-0.30.0 \ windows_x86_64_msvc-0.30.0 \ xattr-0.2.2 \ zip-0.5.13 CARGO_FEATURES= --no-default-features PLIST_FILES= bin/${PORTNAME} \ man/man1/${PORTNAME}.1.gz _DOCS= docs/usage.md README.md PORTDOCS= ${_DOCS:T} OPTIONS_DEFINE= DOCS USERS OPTIONS_DEFAULT= USERS USERS_DESC= Query with 'user' and 'group' fields USERS_VARS= CARGO_FEATURES+=users post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/${PORTNAME} ${INSTALL_MAN} ${WRKSRC}/docs/${PORTNAME}.1 ${STAGEDIR}${MAN1PREFIX}/man/man1 post-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} cd ${WRKSRC} && ${INSTALL_DATA} ${_DOCS} ${STAGEDIR}${DOCSDIR} .include diff --git a/sysutils/fusefs-sandboxfs/Makefile b/sysutils/fusefs-sandboxfs/Makefile index ccd754045001..cefe86685a33 100644 --- a/sysutils/fusefs-sandboxfs/Makefile +++ b/sysutils/fusefs-sandboxfs/Makefile @@ -1,91 +1,91 @@ PORTNAME= sandboxfs DISTVERSIONPREFIX= sandboxfs- DISTVERSION= 0.2.0 -PORTREVISION= 22 +PORTREVISION= 23 CATEGORIES= sysutils PKGNAMEPREFIX= fusefs- MAINTAINER= mikael@FreeBSD.org COMMENT= Virtual file system for sandboxing LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE USES= cargo fuse USE_GITHUB= yes GH_ACCOUNT= bazelbuild CARGO_CRATES= aho-corasick-0.7.10 \ arc-swap-0.4.5 \ atty-0.2.14 \ backtrace-0.3.46 \ backtrace-sys-0.1.35 \ bitflags-1.2.1 \ cc-1.0.50 \ cfg-if-0.1.10 \ cpuprofiler-0.0.4 \ env_logger-0.5.13 \ error-chain-0.12.2 \ failure-0.1.7 \ failure_derive-0.1.7 \ fuse-0.3.1 \ getopts-0.2.21 \ getrandom-0.1.14 \ hermit-abi-0.1.11 \ humantime-1.3.0 \ itoa-0.4.5 \ lazy_static-1.4.0 \ libc-0.2.69 \ log-0.3.9 \ log-0.4.8 \ memchr-2.3.3 \ nix-0.12.1 \ num_cpus-1.13.0 \ pkg-config-0.3.17 \ ppv-lite86-0.2.6 \ proc-macro2-1.0.10 \ quick-error-1.2.3 \ quote-1.0.3 \ rand-0.7.3 \ rand_chacha-0.2.2 \ rand_core-0.5.1 \ rand_hc-0.2.0 \ redox_syscall-0.1.56 \ regex-1.3.7 \ regex-syntax-0.6.17 \ remove_dir_all-0.5.2 \ rustc-demangle-0.1.16 \ ryu-1.0.3 \ serde-1.0.106 \ serde_derive-1.0.106 \ serde_json-1.0.51 \ signal-hook-0.1.13 \ signal-hook-registry-1.2.0 \ syn-1.0.17 \ synstructure-0.12.3 \ tempfile-3.1.0 \ termcolor-1.1.0 \ thread-scoped-1.0.2 \ thread_local-1.0.1 \ threadpool-1.7.1 \ time-0.1.43 \ unicode-width-0.1.7 \ unicode-xid-0.2.0 \ users-0.9.1 \ version_check-0.9.1 \ void-1.0.2 \ wasi-0.9.0+wasi-snapshot-preview1 \ winapi-0.3.8 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-util-0.1.5 \ winapi-x86_64-pc-windows-gnu-0.4.0 \ xattr-0.2.2 PLIST_FILES= bin/sandboxfs \ share/man/man1/sandboxfs.1.gz post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/sandboxfs ${INSTALL_MAN} ${WRKSRC}/man/sandboxfs.1 ${STAGEDIR}${PREFIX}/share/man/man1 .include diff --git a/sysutils/fusefs-xfuse/Makefile b/sysutils/fusefs-xfuse/Makefile index ab0df9bdf66d..498615ebbcf8 100644 --- a/sysutils/fusefs-xfuse/Makefile +++ b/sysutils/fusefs-xfuse/Makefile @@ -1,60 +1,60 @@ PORTNAME= xfuse DISTVERSIONPREFIX= v DISTVERSION= 0.1.0-alpha -PORTREVISION= 10 +PORTREVISION= 11 CATEGORIES= sysutils PKGNAMEPREFIX= fusefs- MAINTAINER= mail@KhaledEmara.dev COMMENT= Read-only FUSE server implementing XFS LICENSE= BSD2CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE.md USES= cargo fuse USE_GITHUB= yes GH_ACCOUNT= KhaledEmaraDev GH_TAGNAME= 9c8824 CARGO_CRATES= ansi_term-0.11.0 \ atty-0.2.14 \ autocfg-1.0.1 \ bitflags-1.2.1 \ byteorder-1.4.3 \ cfg-if-1.0.0 \ clap-2.33.3 \ crc-2.0.0 \ crc-catalog-1.1.1 \ fuse-0.3.1 \ hermit-abi-0.1.18 \ libc-0.2.97 \ log-0.3.9 \ log-0.4.14 \ num-derive-0.3.3 \ num-traits-0.2.14 \ pkg-config-0.3.19 \ proc-macro2-1.0.27 \ quote-1.0.9 \ strsim-0.8.0 \ syn-1.0.73 \ term_size-0.3.2 \ textwrap-0.11.0 \ thread-scoped-1.0.2 \ time-0.1.44 \ unicode-width-0.1.8 \ unicode-xid-0.2.2 \ uuid-0.8.2 \ wasi-0.10.0+wasi-snapshot-preview1 \ winapi-0.3.9 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-x86_64-pc-windows-gnu-0.4.0 PLIST_FILES= bin/xfs-fuse \ man/man1/xfs-fuse.1.gz post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/xfs-fuse ${INSTALL_MAN} ${WRKSRC}/doc/xfs-fuse.1 ${STAGEDIR}${MAN1PREFIX}/man/man1 .include diff --git a/sysutils/gstat-rs/Makefile b/sysutils/gstat-rs/Makefile index 65444e1a535f..429339765795 100644 --- a/sysutils/gstat-rs/Makefile +++ b/sysutils/gstat-rs/Makefile @@ -1,106 +1,106 @@ PORTNAME= gstat-rs DISTVERSIONPREFIX= gstat-v DISTVERSION= 0.1.2 -PORTREVISION= 8 +PORTREVISION= 9 CATEGORIES= sysutils MAINTAINER= asomers@FreeBSD.org COMMENT= Replacement for gstat(8) LICENSE= BSD2CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE BUILD_DEPENDS= llvm-config${LLVM_DEFAULT}:devel/llvm${LLVM_DEFAULT} USES= cargo USE_GITHUB= yes GH_ACCOUNT= asomers SUB_FILES= pkg-message CARGO_CRATES= aho-corasick-0.7.18 \ ansi_term-0.11.0 \ approx-0.5.0 \ atty-0.2.14 \ autocfg-1.0.1 \ bindgen-0.53.3 \ bitfield-0.13.2 \ bitflags-1.2.1 \ cassowary-0.3.0 \ cc-1.0.69 \ cexpr-0.4.0 \ cfg-if-0.1.10 \ cfg-if-1.0.0 \ clang-sys-0.29.3 \ clap-2.33.3 \ confy-0.4.0 \ directories-2.0.2 \ dirs-sys-0.3.6 \ env_logger-0.7.1 \ getrandom-0.2.3 \ glob-0.3.0 \ heck-0.3.3 \ hermit-abi-0.1.19 \ humanize-rs-0.1.5 \ humantime-1.3.0 \ lazy_static-1.4.0 \ lazycell-1.3.0 \ libc-0.2.98 \ libloading-0.5.2 \ log-0.4.14 \ memchr-2.4.0 \ memoffset-0.6.4 \ nix-0.22.0 \ nom-5.1.2 \ nonzero_ext-0.2.0 \ num-traits-0.2.14 \ numtoa-0.1.0 \ peeking_take_while-0.1.2 \ proc-macro-error-1.0.4 \ proc-macro-error-attr-1.0.4 \ proc-macro2-1.0.27 \ quick-error-1.2.3 \ quote-1.0.9 \ redox_syscall-0.2.9 \ redox_termios-0.1.2 \ redox_users-0.4.0 \ regex-1.5.4 \ regex-syntax-0.6.25 \ rustc-hash-1.1.0 \ serde-1.0.126 \ serde_derive-1.0.126 \ shlex-0.1.1 \ strsim-0.8.0 \ structopt-0.3.22 \ structopt-derive-0.4.15 \ syn-1.0.73 \ term_size-0.3.2 \ termcolor-1.1.2 \ termion-1.5.6 \ textwrap-0.11.0 \ toml-0.5.8 \ tui-0.15.0 \ unicode-segmentation-1.8.0 \ unicode-width-0.1.8 \ unicode-xid-0.2.2 \ vec_map-0.8.2 \ version_check-0.9.3 \ wasi-0.10.2+wasi-snapshot-preview1 \ which-3.1.1 \ winapi-0.3.9 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-util-0.1.5 \ winapi-x86_64-pc-windows-gnu-0.4.0 CARGO_INSTALL_PATH= gstat CARGO_CARGOTOML= ${WRKSRC}/gstat/Cargo.toml CARGO_TEST_ARGS= --all CARGO_ENV+= LLVM_CONFIG_PATH=${LOCALBASE}/bin/llvm-config${LLVM_DEFAULT} PLIST_FILES= sbin/gstat-rs \ share/man/man8/gstat-rs.8.gz post-install: ${INSTALL_PROGRAM} ${STAGEDIR}${PREFIX}/bin/gstat ${STAGEDIR}${PREFIX}/sbin/gstat-rs ${RM} ${STAGEDIR}${PREFIX}/bin/gstat ${INSTALL_MAN} ${WRKSRC}/gstat/doc/gstat.8 ${STAGEDIR}${MAN8PREFIX}/share/man/man8/gstat-rs.8 .include diff --git a/sysutils/handlr/Makefile b/sysutils/handlr/Makefile index 5cee59960ad7..983d4834c9c9 100644 --- a/sysutils/handlr/Makefile +++ b/sysutils/handlr/Makefile @@ -1,199 +1,199 @@ PORTNAME= handlr DISTVERSIONPREFIX= v DISTVERSION= 0.7.1 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= sysutils MAINTAINER= sec.research.2005@gmail.com COMMENT= Manage mimeapps.list and default applications with ease LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= cargo USE_GITHUB= yes GH_ACCOUNT= Anomalocaridid GH_PROJECT= ${PORTNAME}-regex CARGO_CRATES= aho-corasick-0.7.18 \ arrayvec-0.5.2 \ ascii_table-3.0.2 \ atty-0.2.14 \ autocfg-1.1.0 \ base64-0.13.0 \ bitflags-1.3.2 \ block-buffer-0.7.3 \ block-padding-0.1.5 \ bumpalo-3.9.1 \ byte-tools-0.3.1 \ byteorder-1.4.3 \ bytes-1.1.0 \ cc-1.0.73 \ cfg-if-0.1.10 \ cfg-if-1.0.0 \ clap-3.1.1 \ clap_derive-3.1.0 \ confy-0.4.0 \ core-foundation-0.9.3 \ core-foundation-sys-0.8.3 \ digest-0.8.1 \ directories-2.0.2 \ dirs-4.0.0 \ dirs-next-2.0.0 \ dirs-sys-0.3.6 \ dirs-sys-next-0.1.2 \ either-1.6.1 \ encoding_rs-0.8.30 \ fake-simd-0.1.2 \ fastrand-1.7.0 \ fnv-1.0.7 \ foreign-types-0.3.2 \ foreign-types-shared-0.1.1 \ form_urlencoded-1.0.1 \ freedesktop_entry_parser-1.3.0 \ futures-channel-0.3.21 \ futures-core-0.3.21 \ futures-sink-0.3.21 \ futures-task-0.3.21 \ futures-util-0.3.21 \ generic-array-0.12.4 \ getrandom-0.2.5 \ glob-0.3.0 \ h2-0.3.11 \ hashbrown-0.11.2 \ heck-0.4.0 \ hermit-abi-0.1.19 \ http-0.2.6 \ http-body-0.4.4 \ httparse-1.6.0 \ httpdate-1.0.2 \ hyper-0.14.17 \ hyper-tls-0.5.0 \ idna-0.2.3 \ indexmap-1.8.0 \ instant-0.1.12 \ ipnet-2.3.1 \ itertools-0.10.3 \ itoa-1.0.1 \ js-sys-0.3.56 \ json-0.12.4 \ lazy_static-1.4.0 \ lexical-core-0.7.6 \ libc-0.2.119 \ log-0.4.14 \ maplit-1.0.2 \ matches-0.1.9 \ memchr-2.4.1 \ mime-0.3.16 \ mime-db-1.6.0 \ minimal-lexical-0.2.1 \ mio-0.8.0 \ miow-0.3.7 \ native-tls-0.2.8 \ nom-5.1.2 \ nom-7.1.0 \ ntapi-0.3.7 \ once_cell-1.9.0 \ opaque-debug-0.2.3 \ openssl-0.10.38 \ openssl-probe-0.1.5 \ openssl-sys-0.9.72 \ os_str_bytes-6.0.0 \ percent-encoding-2.1.0 \ pest-2.1.3 \ pest_derive-2.1.0 \ pest_generator-2.1.3 \ pest_meta-2.1.3 \ pin-project-lite-0.2.8 \ pin-utils-0.1.0 \ pkg-config-0.3.24 \ proc-macro-error-1.0.4 \ proc-macro-error-attr-1.0.4 \ proc-macro2-1.0.36 \ quote-1.0.15 \ redox_syscall-0.2.10 \ redox_users-0.4.0 \ regex-1.5.4 \ regex-syntax-0.6.25 \ remove_dir_all-0.5.3 \ reqwest-0.11.9 \ ryu-1.0.9 \ schannel-0.1.19 \ security-framework-2.6.1 \ security-framework-sys-2.6.1 \ serde-1.0.136 \ serde_derive-1.0.136 \ serde_json-1.0.79 \ serde_urlencoded-0.7.1 \ sha-1-0.8.2 \ shlex-1.1.0 \ slab-0.4.5 \ socket2-0.4.4 \ static_assertions-1.1.0 \ strsim-0.10.0 \ syn-1.0.86 \ tempfile-3.3.0 \ termcolor-1.1.2 \ textwrap-0.14.2 \ thiserror-1.0.30 \ thiserror-impl-1.0.30 \ tinyvec-1.5.1 \ tinyvec_macros-0.1.0 \ tokio-1.17.0 \ tokio-macros-1.7.0 \ tokio-native-tls-0.3.0 \ tokio-util-0.6.9 \ toml-0.5.8 \ tower-service-0.3.1 \ tracing-0.1.31 \ tracing-core-0.1.22 \ try-lock-0.2.3 \ typenum-1.15.0 \ ucd-trie-0.1.3 \ unicase-2.6.0 \ unicode-bidi-0.3.7 \ unicode-normalization-0.1.19 \ unicode-xid-0.2.2 \ url-2.2.2 \ vcpkg-0.2.15 \ version_check-0.9.4 \ want-0.3.0 \ wasi-0.10.2+wasi-snapshot-preview1 \ wasm-bindgen-0.2.79 \ wasm-bindgen-backend-0.2.79 \ wasm-bindgen-futures-0.4.29 \ wasm-bindgen-macro-0.2.79 \ wasm-bindgen-macro-support-0.2.79 \ wasm-bindgen-shared-0.2.79 \ web-sys-0.3.56 \ winapi-0.3.9 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-util-0.1.5 \ winapi-x86_64-pc-windows-gnu-0.4.0 \ winreg-0.7.0 \ xdg-2.4.1 \ xdg-mime-0.3.3 PLIST_FILES= bin/handlr OPTIONS_DEFINE= COMPLETIONS OPTIONS_DEFAULT= COMPLETIONS COMPLETIONS_DESC= Install bash, zsh, and fish shell completions COMPLETIONS_PLIST_FILES= share/bash-completion/completions/${PORTNAME} \ share/fish/vendor_completions.d/${PORTNAME}.fish \ share/zsh/site-functions/_${PORTNAME} post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/handlr post-install-COMPLETIONS-on: ${INSTALL_DATA} ${WRKSRC}/completions/${PORTNAME} \ ${STAGEDIR}${PREFIX}/share/bash-completion/completions/${PORTNAME} ${INSTALL_DATA} ${WRKSRC}/completions/${PORTNAME}.fish \ ${STAGEDIR}${PREFIX}/share/fish/vendor_completions.d/${PORTNAME}.fish ${INSTALL_DATA} ${WRKSRC}/completions/_${PORTNAME} \ ${STAGEDIR}${PREFIX}/share/zsh/site-functions/_${PORTNAME} .include diff --git a/sysutils/hexyl/Makefile b/sysutils/hexyl/Makefile index e70af7622be3..ad12fe6c7aa6 100644 --- a/sysutils/hexyl/Makefile +++ b/sysutils/hexyl/Makefile @@ -1,74 +1,74 @@ PORTNAME= hexyl DISTVERSIONPREFIX= v DISTVERSION= 0.10.0 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= sysutils MAINTAINER= mikael@FreeBSD.org COMMENT= Command-line hex viewer LICENSE= APACHE20 MIT LICENSE_COMB= dual LICENSE_FILE_APACHE20= ${WRKSRC}/LICENSE-APACHE LICENSE_FILE_MIT= ${WRKSRC}/LICENSE-MIT USES= cargo USE_GITHUB= yes GH_ACCOUNT= sharkdp CARGO_CRATES= aho-corasick-0.7.18 \ ansi_term-0.12.1 \ anyhow-1.0.57 \ assert_cmd-2.0.4 \ atty-0.2.14 \ autocfg-1.1.0 \ bitflags-1.3.2 \ bstr-0.2.17 \ clap-3.1.18 \ clap_lex-0.2.0 \ const_format-0.2.23 \ const_format_proc_macros-0.2.22 \ difflib-0.4.0 \ doc-comment-0.3.3 \ either-1.6.1 \ float-cmp-0.9.0 \ hashbrown-0.11.2 \ hermit-abi-0.1.19 \ indexmap-1.8.1 \ itertools-0.10.3 \ lazy_static-1.4.0 \ libc-0.2.126 \ memchr-2.5.0 \ normalize-line-endings-0.3.0 \ num-traits-0.2.15 \ os_str_bytes-6.0.1 \ predicates-2.1.1 \ predicates-core-1.0.3 \ predicates-tree-1.0.5 \ proc-macro2-1.0.39 \ quote-1.0.18 \ regex-1.5.6 \ regex-automata-0.1.10 \ regex-syntax-0.6.26 \ strsim-0.10.0 \ syn-1.0.95 \ termcolor-1.1.3 \ terminal_size-0.1.17 \ termtree-0.2.4 \ textwrap-0.15.0 \ thiserror-1.0.31 \ thiserror-impl-1.0.31 \ unicode-ident-1.0.0 \ unicode-xid-0.2.3 \ wait-timeout-0.2.0 \ winapi-0.3.9 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-util-0.1.5 \ winapi-x86_64-pc-windows-gnu-0.4.0 PLIST_FILES= bin/hexyl post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/hexyl .include diff --git a/sysutils/jail_exporter/Makefile b/sysutils/jail_exporter/Makefile index 444a8928f478..7a5da3d6a8ea 100644 --- a/sysutils/jail_exporter/Makefile +++ b/sysutils/jail_exporter/Makefile @@ -1,33 +1,33 @@ PORTNAME= jail_exporter DISTVERSIONPREFIX= v DISTVERSION= 0.15.1 -PORTREVISION= 8 +PORTREVISION= 9 CATEGORIES= sysutils MAINTAINER= dor.bsd@xm0.uk COMMENT= Prometheus exporter for FreeBSD jail metrics LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= cargo USE_GITHUB= yes GH_ACCOUNT= phyber USE_RC_SUBR= jail_exporter OPTIONS_DEFINE= DOCS post-install: ${INSTALL_MAN} ${WRKSRC}/man/${PORTNAME}.8 \ ${STAGEDIR}${MANPREFIX}/man/man8 ${MV} ${STAGEDIR}${PREFIX}/bin/${PORTNAME} \ ${STAGEDIR}${PREFIX}/sbin/${PORTNAME} ${STRIP_CMD} ${STAGEDIR}${PREFIX}/sbin/${PORTNAME} post-install-DOCS-on: ${MKDIR} ${STAGEDIR}${DOCSDIR} .for doc in CHANGELOG.md README.md ${INSTALL_DATA} ${WRKSRC}/${doc} ${STAGEDIR}${DOCSDIR} .endfor .include diff --git a/sysutils/lsd/Makefile b/sysutils/lsd/Makefile index f4b9e6bd7382..f45940e0445d 100644 --- a/sysutils/lsd/Makefile +++ b/sysutils/lsd/Makefile @@ -1,119 +1,119 @@ PORTNAME= lsd DISTVERSION= 0.20.1 -PORTREVISION= 12 +PORTREVISION= 13 CATEGORIES= sysutils MAINTAINER= andoriyu@gmail.com COMMENT= Pretty ls alternative with support for icons LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= cargo USE_GITHUB= yes GH_ACCOUNT= Peltoche CARGO_CRATES= aho-corasick-0.7.13 \ ansi_term-0.11.0 \ ansi_term-0.12.1 \ arrayref-0.3.6 \ arrayvec-0.5.1 \ assert_cmd-1.0.1 \ assert_fs-1.0.0 \ atty-0.2.14 \ autocfg-1.0.1 \ base64-0.12.3 \ bitflags-1.2.1 \ blake2b_simd-0.5.10 \ bstr-0.2.13 \ cfg-if-0.1.10 \ cfg-if-1.0.0 \ chrono-0.4.15 \ chrono-humanize-0.1.1 \ clap-2.33.3 \ constant_time_eq-0.1.5 \ crossbeam-utils-0.7.2 \ difference-2.0.0 \ dirs-3.0.1 \ dirs-sys-0.3.5 \ doc-comment-0.3.3 \ dtoa-0.4.6 \ float-cmp-0.8.0 \ fnv-1.0.7 \ getrandom-0.1.15 \ glob-0.3.0 \ globset-0.4.5 \ globwalk-0.7.3 \ hermit-abi-0.1.16 \ human-sort-0.2.2 \ ignore-0.4.16 \ instant-0.1.9 \ lazy_static-1.4.0 \ libc-0.2.77 \ linked-hash-map-0.5.3 \ lock_api-0.4.2 \ log-0.4.11 \ lscolors-0.7.1 \ memchr-2.3.3 \ normalize-line-endings-0.3.0 \ num-integer-0.1.43 \ num-traits-0.2.12 \ parking_lot-0.11.1 \ parking_lot_core-0.8.2 \ ppv-lite86-0.2.9 \ predicates-1.0.5 \ predicates-core-1.0.0 \ predicates-tree-1.0.0 \ proc-macro2-1.0.24 \ quote-1.0.7 \ rand-0.7.3 \ rand_chacha-0.2.2 \ rand_core-0.5.1 \ rand_hc-0.2.0 \ redox_syscall-0.1.57 \ redox_users-0.3.5 \ regex-1.3.9 \ regex-syntax-0.6.18 \ remove_dir_all-0.5.3 \ rust-argon2-0.8.2 \ same-file-1.0.6 \ scopeguard-1.1.0 \ serde-1.0.117 \ serde_derive-1.0.117 \ serde_yaml-0.8.13 \ serial_test-0.5.1 \ serial_test_derive-0.5.1 \ smallvec-1.6.1 \ strsim-0.8.0 \ syn-1.0.48 \ tempfile-3.1.0 \ term_grid-0.1.7 \ term_size-0.3.2 \ terminal_size-0.1.13 \ textwrap-0.11.0 \ thread_local-1.0.1 \ time-0.1.44 \ treeline-0.1.0 \ unicode-width-0.1.8 \ unicode-xid-0.2.1 \ users-0.11.0 \ vec_map-0.8.2 \ version_check-0.9.2 \ wait-timeout-0.2.0 \ walkdir-2.3.1 \ wasi-0.9.0+wasi-snapshot-preview1 \ wasi-0.10.0+wasi-snapshot-preview1 \ wild-2.0.4 \ winapi-0.3.9 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-util-0.1.5 \ winapi-x86_64-pc-windows-gnu-0.4.0 \ xdg-2.1.0 \ yaml-rust-0.4.4 PLIST_FILES= bin/lsd post-install: @${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/lsd .include diff --git a/sysutils/mcfly/Makefile b/sysutils/mcfly/Makefile index c33e29103980..625ea6be6e7b 100644 --- a/sysutils/mcfly/Makefile +++ b/sysutils/mcfly/Makefile @@ -1,107 +1,108 @@ PORTNAME= mcfly DISTVERSIONPREFIX= v DISTVERSION= 0.6.1 +PORTREVISION= 1 CATEGORIES= sysutils MAINTAINER= yuri@FreeBSD.org COMMENT= Fly through your shell history LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= cargo USE_GITHUB= yes GH_ACCOUNT= cantino CARGO_CRATES= ahash-0.7.6 \ aho-corasick-0.7.18 \ ansi_term-0.12.1 \ atty-0.2.14 \ autocfg-1.1.0 \ bitflags-1.3.2 \ bstr-0.2.17 \ cc-1.0.73 \ cfg-if-1.0.0 \ chrono-0.4.19 \ clap-2.34.0 \ csv-1.1.6 \ csv-core-0.1.10 \ directories-next-2.0.0 \ dirs-next-2.0.0 \ dirs-sys-next-0.1.2 \ either-1.7.0 \ fallible-iterator-0.2.0 \ fallible-streaming-iterator-0.1.9 \ getrandom-0.2.7 \ hashbrown-0.12.2 \ hashlink-0.8.0 \ hermit-abi-0.1.19 \ humantime-2.1.0 \ itertools-0.10.3 \ itoa-0.4.8 \ lazy_static-1.4.0 \ libc-0.2.126 \ libsqlite3-sys-0.25.0 \ memchr-2.5.0 \ num-integer-0.1.45 \ num-traits-0.2.15 \ numtoa-0.1.0 \ once_cell-1.13.0 \ pkg-config-0.3.25 \ ppv-lite86-0.2.16 \ proc-macro2-1.0.40 \ quote-1.0.20 \ rand-0.8.5 \ rand_chacha-0.3.1 \ rand_core-0.6.3 \ redox_syscall-0.2.13 \ redox_termios-0.1.2 \ redox_users-0.4.3 \ regex-1.6.0 \ regex-automata-0.1.10 \ regex-syntax-0.6.27 \ relative-path-1.7.2 \ rusqlite-0.28.0 \ ryu-1.0.10 \ serde-1.0.139 \ shellexpand-2.1.0 \ smallvec-1.9.0 \ strsim-0.8.0 \ syn-1.0.98 \ termion-1.5.6 \ textwrap-0.11.0 \ thiserror-1.0.31 \ thiserror-impl-1.0.31 \ time-0.1.44 \ unicode-ident-1.0.2 \ unicode-segmentation-1.9.0 \ unicode-width-0.1.9 \ vcpkg-0.2.15 \ vec_map-0.8.2 \ version_check-0.9.4 \ wasi-0.10.0+wasi-snapshot-preview1 \ wasi-0.11.0+wasi-snapshot-preview1 \ winapi-0.3.9 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-x86_64-pc-windows-gnu-0.4.0 PLIST_FILES= bin/${PORTNAME} \ etc/bash_completion.d/${PORTNAME}.bash \ share/fish/vendor_completions.d/${PORTNAME}.fish \ share/zsh/site-functions/_${PORTNAME} post-install: # install shell completion files # strip ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/mcfly # bash ${MKDIR} ${STAGEDIR}${PREFIX}/etc/bash_completion.d/ ${INSTALL_DATA} ${WRKSRC}/${PORTNAME}.bash ${STAGEDIR}${PREFIX}/etc/bash_completion.d # fish ${MKDIR} ${STAGEDIR}${PREFIX}/share/fish/vendor_completions.d ${INSTALL_DATA} ${WRKSRC}/${PORTNAME}.fish ${STAGEDIR}${PREFIX}/share/fish/vendor_completions.d # zsh ${MKDIR} ${STAGEDIR}${PREFIX}/share/zsh/site-functions ${INSTALL_DATA} ${WRKSRC}/${PORTNAME}.zsh ${STAGEDIR}${PREFIX}/share/zsh/site-functions/_${PORTNAME} .include diff --git a/sysutils/onefetch/Makefile b/sysutils/onefetch/Makefile index bdc4f51d1bcf..111a72112ad3 100644 --- a/sysutils/onefetch/Makefile +++ b/sysutils/onefetch/Makefile @@ -1,239 +1,239 @@ PORTNAME= onefetch DISTVERSIONPREFIX= v DISTVERSION= 2.12.0 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= sysutils devel MAINTAINER= lcook@FreeBSD.org COMMENT= Git repository summary on your terminal LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.md LIB_DEPENDS= libgit2.so:devel/libgit2 RUN_DEPENDS= git:devel/git USES= cargo USE_GITHUB= yes GH_ACCOUNT= o2sh CARGO_CRATES= adler-1.0.2 \ adler32-1.2.0 \ aho-corasick-0.7.18 \ ansi_term-0.12.1 \ anyhow-1.0.56 \ arrayvec-0.4.12 \ askalono-0.4.4 \ atty-0.2.14 \ autocfg-1.0.1 \ base64-0.13.0 \ bit_field-0.10.1 \ bitflags-1.2.1 \ block-buffer-0.7.3 \ block-padding-0.1.5 \ bstr-0.2.16 \ bumpalo-3.9.1 \ byte-tools-0.3.1 \ byte-unit-4.0.14 \ bytecount-0.6.2 \ bytemuck-1.7.0 \ byteorder-1.4.3 \ cc-1.0.68 \ cfg-if-1.0.0 \ chrono-0.4.19 \ chrono-tz-0.5.3 \ clap-2.34.0 \ clap-3.1.6 \ color_quant-1.1.0 \ crc32fast-1.2.1 \ crossbeam-channel-0.5.1 \ crossbeam-deque-0.8.0 \ crossbeam-epoch-0.9.5 \ crossbeam-utils-0.8.5 \ dashmap-4.0.2 \ deflate-1.0.0 \ deunicode-0.4.3 \ digest-0.8.1 \ dirs-3.0.2 \ dirs-sys-0.3.6 \ either-1.6.1 \ encoding_rs-0.8.28 \ encoding_rs_io-0.1.7 \ env_logger-0.8.4 \ exr-1.4.1 \ fake-simd-0.1.2 \ flate2-1.0.20 \ flume-0.10.11 \ fnv-1.0.7 \ form_urlencoded-1.0.1 \ futures-core-0.3.21 \ futures-sink-0.3.21 \ generic-array-0.12.4 \ getrandom-0.2.3 \ gif-0.11.2 \ git2-0.14.2 \ globset-0.4.8 \ globwalk-0.8.1 \ grep-matcher-0.1.5 \ grep-searcher-0.1.8 \ half-1.8.2 \ hashbrown-0.11.2 \ heck-0.4.0 \ hermit-abi-0.1.19 \ humansize-1.1.1 \ humantime-2.1.0 \ idna-0.2.3 \ ignore-0.4.18 \ image-0.24.1 \ indexmap-1.7.0 \ inflate-0.4.5 \ instant-0.1.9 \ itoa-0.4.7 \ itoa-1.0.1 \ jobserver-0.1.22 \ jpeg-decoder-0.1.22 \ jpeg-decoder-0.2.2 \ js-sys-0.3.56 \ lazy_static-1.4.0 \ lebe-0.5.1 \ libc-0.2.121 \ libgit2-sys-0.13.2+1.4.2 \ libz-sys-1.1.3 \ linked-hash-map-0.5.4 \ lock_api-0.4.4 \ log-0.4.14 \ maplit-1.0.2 \ matches-0.1.8 \ memchr-2.4.0 \ memmap2-0.3.0 \ memoffset-0.6.4 \ miniz_oxide-0.4.4 \ miniz_oxide-0.5.1 \ more-asserts-0.2.2 \ nanorand-0.6.1 \ nodrop-0.1.14 \ num-format-0.4.0 \ num-integer-0.1.44 \ num-iter-0.1.42 \ num-rational-0.4.0 \ num-traits-0.2.14 \ num_cpus-1.13.0 \ num_threads-0.1.3 \ once_cell-1.8.0 \ opaque-debug-0.2.3 \ os_str_bytes-6.0.0 \ owo-colors-3.3.0 \ parking_lot-0.11.1 \ parking_lot_core-0.8.3 \ parse-zoneinfo-0.3.0 \ paste-1.0.7 \ percent-encoding-2.1.0 \ pest-2.1.3 \ pest_derive-2.1.0 \ pest_generator-2.1.3 \ pest_meta-2.1.3 \ pin-project-1.0.10 \ pin-project-internal-1.0.10 \ pkg-config-0.3.19 \ png-0.17.5 \ ppv-lite86-0.2.10 \ proc-macro2-1.0.27 \ quote-1.0.9 \ rand-0.8.4 \ rand_chacha-0.3.1 \ rand_core-0.6.3 \ rand_hc-0.3.1 \ rayon-1.5.1 \ rayon-core-1.9.1 \ redox_syscall-0.2.9 \ redox_users-0.4.0 \ regex-1.5.5 \ regex-syntax-0.6.25 \ rmp-0.8.10 \ rmp-serde-0.14.4 \ rustversion-1.0.5 \ ryu-1.0.5 \ same-file-1.0.6 \ scoped_threadpool-0.1.9 \ scopeguard-1.1.0 \ serde-1.0.136 \ serde_derive-1.0.136 \ serde_json-1.0.79 \ serde_yaml-0.8.23 \ sha-1-0.8.2 \ slug-0.1.4 \ smallvec-1.8.0 \ spin-0.9.2 \ strsim-0.8.0 \ strsim-0.10.0 \ strum-0.24.0 \ strum_macros-0.24.0 \ syn-1.0.73 \ tera-1.12.0 \ term_size-0.3.2 \ termcolor-1.1.2 \ terminal_size-0.1.17 \ textwrap-0.11.0 \ textwrap-0.15.0 \ thread_local-1.1.3 \ threadpool-1.8.1 \ tiff-0.7.1 \ time-0.1.43 \ time-0.3.7 \ time-humanize-0.1.3 \ tinyvec-1.2.0 \ tinyvec_macros-0.1.0 \ tokei-12.1.2 \ toml-0.5.8 \ typenum-1.13.0 \ ucd-trie-0.1.3 \ unic-char-property-0.9.0 \ unic-char-range-0.9.0 \ unic-common-0.9.0 \ unic-segment-0.9.0 \ unic-ucd-segment-0.9.0 \ unic-ucd-version-0.9.0 \ unicode-bidi-0.3.5 \ unicode-normalization-0.1.19 \ unicode-width-0.1.8 \ unicode-xid-0.2.2 \ url-2.2.2 \ utf8-width-0.1.5 \ vcpkg-0.2.15 \ vec_map-0.8.2 \ walkdir-2.3.2 \ wasi-0.10.2+wasi-snapshot-preview1 \ wasm-bindgen-0.2.79 \ wasm-bindgen-backend-0.2.79 \ wasm-bindgen-macro-0.2.79 \ wasm-bindgen-macro-support-0.2.79 \ wasm-bindgen-shared-0.2.79 \ weezl-0.1.5 \ winapi-0.3.9 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-util-0.1.5 \ winapi-x86_64-pc-windows-gnu-0.4.0 \ yaml-rust-0.4.5 \ zstd-0.8.3+zstd.1.5.0 \ zstd-safe-4.1.0+zstd.1.5.0 \ zstd-sys-1.6.0+zstd.1.5.0 PLIST_FILES= bin/${PORTNAME} PORTDOCS= CONTRIBUTING.md README.md OPTIONS_DEFINE= DOCS MANPAGES OPTIONS_DEFAULT= MANPAGES MANPAGES_PLIST_FILES= man/man1/${PORTNAME}.1.gz post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/${PORTNAME} post-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR} post-install-MANPAGES-on: ${INSTALL_MAN} ${WRKSRC}/docs/${PORTNAME}.1 ${STAGEDIR}${MAN1PREFIX}/man/man1 .include diff --git a/sysutils/potnet/Makefile b/sysutils/potnet/Makefile index 46757799d25a..6eafa4a52044 100644 --- a/sysutils/potnet/Makefile +++ b/sysutils/potnet/Makefile @@ -1,108 +1,108 @@ PORTNAME= potnet DISTVERSION= 0.4.4 -PORTREVISION= 23 +PORTREVISION= 24 CATEGORIES= sysutils MAINTAINER= pizzamig@FreeBSD.org COMMENT= Utility to help sysutils/pot to manage the internal network LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE USES= cargo USE_GITHUB= yes GH_ACCOUNT= pizzamig PLIST_FILES= bin/potcpu bin/potnet CARGO_CRATES= ansi_term-0.11.0 \ arrayref-0.3.5 \ arrayvec-0.4.11 \ atty-0.2.13 \ autocfg-0.1.6 \ backtrace-0.3.38 \ backtrace-sys-0.1.31 \ base64-0.10.1 \ bitflags-1.1.0 \ blake2b_simd-0.5.8 \ bytecount-0.4.0 \ byteorder-1.3.2 \ cargo_metadata-0.6.4 \ cc-1.0.45 \ cfg-if-0.1.9 \ chrono-0.4.9 \ clap-2.33.0 \ cloudabi-0.0.3 \ constant_time_eq-0.1.4 \ crossbeam-utils-0.6.6 \ dirs-2.0.2 \ dirs-sys-0.3.4 \ either-1.5.3 \ error-chain-0.12.1 \ failure-0.1.5 \ failure_derive-0.1.5 \ fuchsia-cprng-0.1.1 \ glob-0.2.11 \ heck-0.3.1 \ ipnet-2.0.0 \ itertools-0.8.0 \ itoa-0.4.4 \ lazy_static-1.4.0 \ libc-0.2.62 \ log-0.4.8 \ nodrop-0.1.13 \ num-integer-0.1.41 \ num-traits-0.2.8 \ proc-macro-error-0.2.6 \ proc-macro2-0.4.30 \ proc-macro2-1.0.4 \ pulldown-cmark-0.2.0 \ quote-0.6.13 \ quote-1.0.2 \ rand-0.4.6 \ rand_core-0.3.1 \ rand_core-0.4.2 \ rand_os-0.1.3 \ rdrand-0.4.0 \ redox_syscall-0.1.56 \ redox_users-0.3.1 \ remove_dir_all-0.5.2 \ rust-argon2-0.5.1 \ rustc-demangle-0.1.16 \ ryu-1.0.0 \ same-file-1.0.5 \ semver-0.9.0 \ semver-parser-0.7.0 \ serde-1.0.101 \ serde_derive-1.0.101 \ serde_json-1.0.40 \ simplelog-0.7.3 \ skeptic-0.13.4 \ strsim-0.8.0 \ structopt-0.3.2 \ structopt-derive-0.3.2 \ structopt-flags-0.3.5 \ syn-0.15.44 \ syn-1.0.5 \ synstructure-0.10.2 \ tempdir-0.3.7 \ term-0.6.1 \ textwrap-0.11.0 \ time-0.1.42 \ unicode-segmentation-1.3.0 \ unicode-width-0.1.6 \ unicode-xid-0.1.0 \ unicode-xid-0.2.0 \ vec_map-0.8.1 \ version_check-0.1.5 \ walkdir-2.2.9 \ winapi-0.3.8 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-util-0.1.2 \ winapi-x86_64-pc-windows-gnu-0.4.0 post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/potnet ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/potcpu .include diff --git a/sysutils/rsfetch/Makefile b/sysutils/rsfetch/Makefile index 692827694749..7e9e1675d848 100644 --- a/sysutils/rsfetch/Makefile +++ b/sysutils/rsfetch/Makefile @@ -1,219 +1,219 @@ PORTNAME= rsfetch DISTVERSION= 2.0.0 -PORTREVISION= 24 +PORTREVISION= 25 CATEGORIES= sysutils MAINTAINER= lcook@FreeBSD.org COMMENT= Minimal fetch program written in Rust LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= cargo ssl USE_GITHUB= yes GH_ACCOUNT= ${PORTNAME} CARGO_CRATES= adler32-1.0.4 \ aho-corasick-0.7.10 \ ansi_term-0.11.0 \ arrayref-0.3.6 \ arrayvec-0.5.1 \ atty-0.2.14 \ autocfg-0.1.7 \ autocfg-1.0.0 \ backtrace-0.3.45 \ backtrace-sys-0.1.34 \ base64-0.10.1 \ base64-0.11.0 \ bitflags-1.2.1 \ blake2b_simd-0.5.10 \ bstr-0.2.12 \ byteorder-1.3.4 \ bytes-0.4.12 \ cc-1.0.50 \ cfg-if-0.1.10 \ chrono-0.4.11 \ clap-2.33.0 \ cloudabi-0.0.3 \ constant_time_eq-0.1.5 \ cookie-0.12.0 \ cookie_store-0.7.0 \ core-foundation-0.7.0 \ core-foundation-sys-0.7.0 \ crc32fast-1.2.0 \ crossbeam-deque-0.7.3 \ crossbeam-epoch-0.8.2 \ crossbeam-queue-0.2.1 \ crossbeam-utils-0.7.2 \ csv-1.1.3 \ csv-core-0.1.10 \ dirs-1.0.5 \ dtoa-0.4.5 \ either-1.5.3 \ encode_unicode-0.3.6 \ encoding_rs-0.8.22 \ env_logger-0.6.2 \ error-chain-0.12.2 \ failure-0.1.7 \ failure_derive-0.1.7 \ flate2-1.0.13 \ fnv-1.0.6 \ foreign-types-0.3.2 \ foreign-types-shared-0.1.1 \ fuchsia-cprng-0.1.1 \ fuchsia-zircon-0.3.3 \ fuchsia-zircon-sys-0.3.3 \ futures-0.1.29 \ futures-cpupool-0.1.8 \ getrandom-0.1.14 \ h2-0.1.26 \ hermit-abi-0.1.8 \ http-0.1.21 \ http-body-0.1.0 \ httparse-1.3.4 \ humantime-1.3.0 \ hyper-0.12.35 \ hyper-tls-0.3.2 \ idna-0.1.5 \ idna-0.2.0 \ indexmap-1.3.2 \ iovec-0.1.4 \ itoa-0.4.5 \ kernel32-sys-0.2.2 \ lazy_static-1.4.0 \ libc-0.2.67 \ lock_api-0.3.3 \ log-0.4.8 \ matches-0.1.8 \ maybe-uninit-2.0.0 \ memchr-2.3.3 \ memoffset-0.5.3 \ mime-0.3.16 \ mime_guess-2.0.3 \ miniz_oxide-0.3.6 \ mio-0.6.21 \ miow-0.2.1 \ native-tls-0.2.4 \ net2-0.2.33 \ num-integer-0.1.42 \ num-traits-0.2.11 \ num_cpus-1.12.0 \ openssl-0.10.28 \ openssl-probe-0.1.2 \ openssl-sys-0.9.54 \ parking_lot-0.9.0 \ parking_lot_core-0.6.2 \ percent-encoding-1.0.1 \ percent-encoding-2.1.0 \ pkg-config-0.3.17 \ ppv-lite86-0.2.6 \ pretty_env_logger-0.3.1 \ prettytable-rs-0.8.0 \ proc-macro2-0.4.30 \ proc-macro2-1.0.9 \ publicsuffix-1.5.4 \ quick-error-1.2.3 \ quote-0.6.13 \ quote-1.0.3 \ rand-0.6.5 \ rand-0.7.3 \ rand_chacha-0.1.1 \ rand_chacha-0.2.2 \ rand_core-0.3.1 \ rand_core-0.4.2 \ rand_core-0.5.1 \ rand_hc-0.1.0 \ rand_hc-0.2.0 \ rand_isaac-0.1.1 \ rand_jitter-0.1.4 \ rand_os-0.1.3 \ rand_pcg-0.1.2 \ rand_xorshift-0.1.1 \ rdrand-0.4.0 \ redox_syscall-0.1.56 \ redox_users-0.3.4 \ regex-1.3.5 \ regex-automata-0.1.9 \ regex-syntax-0.6.17 \ remove_dir_all-0.5.2 \ reqwest-0.9.24 \ rust-argon2-0.7.0 \ rustc-demangle-0.1.16 \ rustc_version-0.2.3 \ ryu-1.0.3 \ schannel-0.1.17 \ scopeguard-1.1.0 \ security-framework-0.4.1 \ security-framework-sys-0.4.1 \ semver-0.9.0 \ semver-parser-0.7.0 \ serde-1.0.104 \ serde_derive-1.0.104 \ serde_json-1.0.48 \ serde_urlencoded-0.5.5 \ slab-0.4.2 \ smallvec-0.6.13 \ smallvec-1.2.0 \ snafu-0.3.1 \ snafu-derive-0.3.1 \ string-0.2.1 \ strsim-0.8.0 \ syn-0.15.44 \ syn-1.0.16 \ synstructure-0.12.3 \ tempfile-3.1.0 \ term-0.5.2 \ termcolor-1.1.0 \ textwrap-0.11.0 \ thread_local-1.0.1 \ time-0.1.42 \ tokio-0.1.22 \ tokio-buf-0.1.1 \ tokio-current-thread-0.1.7 \ tokio-executor-0.1.10 \ tokio-io-0.1.13 \ tokio-reactor-0.1.12 \ tokio-sync-0.1.8 \ tokio-tcp-0.1.4 \ tokio-threadpool-0.1.18 \ tokio-timer-0.2.13 \ try-lock-0.2.2 \ try_from-0.3.2 \ unicase-2.6.0 \ unicode-bidi-0.3.4 \ unicode-normalization-0.1.12 \ unicode-width-0.1.7 \ unicode-xid-0.1.0 \ unicode-xid-0.2.0 \ url-1.7.2 \ url-2.1.1 \ uuid-0.7.4 \ vcpkg-0.2.8 \ vec_map-0.8.1 \ version_check-0.9.1 \ want-0.2.0 \ wasi-0.9.0+wasi-snapshot-preview1 \ winapi-0.2.8 \ winapi-0.3.8 \ winapi-build-0.1.1 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-util-0.1.3 \ winapi-x86_64-pc-windows-gnu-0.4.0 \ winreg-0.6.2 \ ws2_32-sys-0.2.1 PLIST_FILES= bin/${PORTNAME} \ man/man1/${PORTNAME}.1.gz PORTDOCS= CHANGELOG.md README.md OPTIONS_DEFINE= DOCS post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/${PORTNAME} ${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.1 ${STAGEDIR}${MAN1PREFIX}/man/man1 post-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR} .include diff --git a/sysutils/tealdeer/Makefile b/sysutils/tealdeer/Makefile index cd40359282aa..e9eeaf9be0c5 100644 --- a/sysutils/tealdeer/Makefile +++ b/sysutils/tealdeer/Makefile @@ -1,228 +1,228 @@ PORTNAME= tealdeer DISTVERSIONPREFIX= v DISTVERSION= 1.5.0 -PORTREVISION= 6 +PORTREVISION= 7 CATEGORIES= sysutils MAINTAINER= lcook@FreeBSD.org COMMENT= Fast tldr client written in Rust LICENSE= APACHE20 MIT LICENSE_COMB= dual LICENSE_FILE_APACHE20= ${WRKSRC}/LICENSE-APACHE LICENSE_FILE_MIT= ${WRKSRC}/LICENSE-MIT USES= cargo ssl USE_GITHUB= yes GH_ACCOUNT= dbrgn CARGO_CRATES= adler-1.0.2 \ aho-corasick-0.7.18 \ ansi_term-0.12.1 \ app_dirs2-2.3.3 \ assert_cmd-2.0.2 \ atty-0.2.14 \ autocfg-1.0.1 \ base64-0.13.0 \ bitflags-1.3.2 \ bstr-0.2.17 \ bumpalo-3.8.0 \ byteorder-1.4.3 \ bytes-1.1.0 \ cc-1.0.72 \ cesu8-1.1.0 \ cfg-if-1.0.0 \ clap-3.0.0-rc.11 \ clap_derive-3.0.0-rc.11 \ combine-4.6.2 \ core-foundation-0.9.2 \ core-foundation-sys-0.8.3 \ crc32fast-1.3.0 \ darling-0.10.2 \ darling_core-0.10.2 \ darling_macro-0.10.2 \ difflib-0.4.0 \ dirs-3.0.2 \ dirs-sys-0.3.6 \ doc-comment-0.3.3 \ either-1.6.1 \ encoding_rs-0.8.30 \ env_logger-0.9.0 \ errno-0.2.8 \ errno-dragonfly-0.1.2 \ escargot-0.5.7 \ filetime-0.2.15 \ flate2-1.0.22 \ float-cmp-0.9.0 \ fnv-1.0.7 \ form_urlencoded-1.0.1 \ futures-channel-0.3.19 \ futures-core-0.3.19 \ futures-io-0.3.19 \ futures-sink-0.3.19 \ futures-task-0.3.19 \ futures-util-0.3.19 \ getrandom-0.2.3 \ h2-0.3.9 \ hashbrown-0.11.2 \ heck-0.3.3 \ hermit-abi-0.1.19 \ http-0.2.6 \ http-body-0.4.4 \ httparse-1.5.1 \ httpdate-1.0.2 \ humantime-2.1.0 \ hyper-0.14.16 \ hyper-rustls-0.23.0 \ ident_case-1.0.1 \ idna-0.2.3 \ indexmap-1.7.0 \ ipnet-2.3.1 \ itertools-0.10.3 \ itoa-0.4.8 \ itoa-1.0.1 \ jni-0.19.0 \ jni-sys-0.3.0 \ js-sys-0.3.55 \ lazy_static-1.4.0 \ libc-0.2.112 \ log-0.4.14 \ matches-0.1.9 \ memchr-2.4.1 \ mime-0.3.16 \ miniz_oxide-0.4.4 \ mio-0.7.14 \ miow-0.3.7 \ ndk-0.4.0 \ ndk-glue-0.4.0 \ ndk-macro-0.2.0 \ ndk-sys-0.2.2 \ normalize-line-endings-0.3.0 \ ntapi-0.3.6 \ num-traits-0.2.14 \ num_cpus-1.13.1 \ num_enum-0.5.6 \ num_enum_derive-0.5.6 \ once_cell-1.9.0 \ openssl-probe-0.1.4 \ os_str_bytes-6.0.0 \ pager-0.16.0 \ percent-encoding-2.1.0 \ pin-project-lite-0.2.8 \ pin-utils-0.1.0 \ ppv-lite86-0.2.16 \ predicates-2.1.0 \ predicates-core-1.0.2 \ predicates-tree-1.0.4 \ proc-macro-crate-0.1.5 \ proc-macro-crate-1.1.0 \ proc-macro-error-1.0.4 \ proc-macro-error-attr-1.0.4 \ proc-macro2-1.0.36 \ quote-1.0.14 \ rand-0.8.4 \ rand_chacha-0.3.1 \ rand_core-0.6.3 \ rand_hc-0.3.1 \ redox_syscall-0.2.10 \ redox_users-0.4.0 \ regex-1.5.4 \ regex-automata-0.1.10 \ regex-syntax-0.6.25 \ remove_dir_all-0.5.3 \ reqwest-0.11.8 \ ring-0.16.20 \ rustls-0.20.2 \ rustls-native-certs-0.6.1 \ rustls-pemfile-0.2.1 \ ryu-1.0.9 \ same-file-1.0.6 \ schannel-0.1.19 \ sct-0.7.0 \ security-framework-2.4.2 \ security-framework-sys-2.4.2 \ serde-1.0.132 \ serde_derive-1.0.132 \ serde_json-1.0.73 \ serde_urlencoded-0.7.0 \ slab-0.4.5 \ socket2-0.4.2 \ spin-0.5.2 \ strsim-0.9.3 \ strsim-0.10.0 \ syn-1.0.84 \ tempfile-3.2.0 \ termcolor-1.1.2 \ termtree-0.2.3 \ textwrap-0.14.2 \ thiserror-1.0.30 \ thiserror-impl-1.0.30 \ tinyvec-1.5.1 \ tinyvec_macros-0.1.0 \ tokio-1.15.0 \ tokio-rustls-0.23.2 \ tokio-util-0.6.9 \ toml-0.5.8 \ tower-service-0.3.1 \ tracing-0.1.29 \ tracing-core-0.1.21 \ try-lock-0.2.3 \ unicode-bidi-0.3.7 \ unicode-normalization-0.1.19 \ unicode-segmentation-1.8.0 \ unicode-xid-0.2.2 \ untrusted-0.7.1 \ url-2.2.2 \ version_check-0.9.4 \ wait-timeout-0.2.0 \ walkdir-2.3.2 \ want-0.3.0 \ wasi-0.10.2+wasi-snapshot-preview1 \ wasm-bindgen-0.2.78 \ wasm-bindgen-backend-0.2.78 \ wasm-bindgen-futures-0.4.28 \ wasm-bindgen-macro-0.2.78 \ wasm-bindgen-macro-support-0.2.78 \ wasm-bindgen-shared-0.2.78 \ web-sys-0.3.55 \ webpki-0.22.0 \ webpki-roots-0.22.2 \ winapi-0.3.9 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-util-0.1.5 \ winapi-x86_64-pc-windows-gnu-0.4.0 \ winreg-0.7.0 \ xdg-2.4.0 \ zip-0.5.13 CARGO_FEATURES= --no-default-features PLIST_FILES= bin/tldr \ etc/bash_completion.d/tldr.bash \ share/fish/completions/tldr.fish \ share/zsh/site-functions/_tldr PORTDOCS= CHANGELOG.md README.md OPTIONS_DEFINE= DOCS LOGGER LOGGER_DESC= Debug build with logging enabled LOGGER_VARS= CARGO_FEATURES+=logging post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/tldr @${MKDIR} ${STAGEDIR}${PREFIX}/etc/bash_completion.d \ ${STAGEDIR}${PREFIX}/share/fish/completions \ ${STAGEDIR}${PREFIX}/share/zsh/site-functions ${INSTALL_DATA} ${WRKSRC}/bash_${PORTNAME} \ ${STAGEDIR}${PREFIX}/etc/bash_completion.d/tldr.bash ${INSTALL_DATA} ${WRKSRC}/fish_${PORTNAME} \ ${STAGEDIR}${PREFIX}/share/fish/completions/tldr.fish ${INSTALL_DATA} ${WRKSRC}/zsh_${PORTNAME} \ ${STAGEDIR}${PREFIX}/share/zsh/site-functions/_tldr post-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} \ ${STAGEDIR}${DOCSDIR} .include diff --git a/sysutils/topgrade/Makefile b/sysutils/topgrade/Makefile index 30cfd17120bd..1ca3a08c7a99 100644 --- a/sysutils/topgrade/Makefile +++ b/sysutils/topgrade/Makefile @@ -1,32 +1,33 @@ PORTNAME= topgrade DISTVERSIONPREFIX= v DISTVERSION= 9.0.1 +PORTREVISION= 1 CATEGORIES= sysutils MAINTAINER= freebsd@scd-systems.net COMMENT= Tool for upgrade everything LICENSE= GPLv3 NOT_FOR_ARCHS= i386 NOT_FOR_ARCHS_REASON= failed to run custom build command for `sys-info v0.9.1` USES= cargo USE_GITHUB= yes GH_ACCOUNT= r-darwish PLIST_FILES= bin/topgrade \ man/man8/topgrade.8.gz PORTEXAMPLES= config.example.toml OPTIONS_DEFINE= EXAMPLES post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/${PORTNAME} ${INSTALL_MAN} ${WRKSRC}/topgrade.8 ${STAGEDIR}${PREFIX}/man/man8/ post-install-EXAMPLES-on: ${MKDIR} ${STAGEDIR}${EXAMPLESDIR} ${INSTALL_DATA} ${WRKSRC}/${PORTEXAMPLES} ${STAGEDIR}${EXAMPLESDIR} .include diff --git a/sysutils/vector/Makefile b/sysutils/vector/Makefile index fb7d39c52611..17d5ed24856c 100644 --- a/sysutils/vector/Makefile +++ b/sysutils/vector/Makefile @@ -1,575 +1,575 @@ PORTNAME= vector DISTVERSIONPREFIX= v DISTVERSION= 0.10.0 -PORTREVISION= 17 +PORTREVISION= 18 CATEGORIES= sysutils MAINTAINER= greg@unrelenting.technology COMMENT= High performance logs, metrics, and events router LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE BROKEN_FreeBSD_12_powerpc64= fails to link: /usr/local/bin/ld: cannot find -lc++ BUILD_DEPENDS= protoc:devel/protobuf LIB_DEPENDS= libonig.so:devel/oniguruma \ librdkafka.so:net/librdkafka USES= cargo lua:53 ssl USE_GITHUB= yes GH_ACCOUNT= timberio GH_TUPLE= bytecodealliance:wasmtime:3de418630a263ca214931d69f796879be50d4f72:wasmtime \ bytecodealliance:sightglass:b409ba75a7a89cbf4cbf9ec44880e4ae6509a85c:sightglass \ WebAssembly:WASI:3fd0abd12c1f53772eeff46d3cf21d7e2475c885:wasi_lucet \ WebAssembly:WASI:2b027d91c29e6141a3768e638076daa23f51621c:wasi_wasmtime PLIST_FILES= bin/vector CARGO_CRATES= adler-0.2.3 \ ahash-0.2.18 \ aho-corasick-0.7.7 \ ansi_term-0.11.0 \ antidote-1.0.0 \ anyhow-1.0.28 \ approx-0.3.2 \ arc-swap-0.3.11 \ arc-swap-0.4.4 \ arrayref-0.3.6 \ arrayvec-0.5.1 \ assert_cmd-1.0.1 \ async-stream-0.2.1 \ async-stream-impl-0.2.1 \ async-trait-0.1.33 \ atty-0.2.14 \ autocfg-0.1.7 \ autocfg-1.0.0 \ backtrace-0.3.43 \ backtrace-sys-0.1.32 \ base-x-0.2.6 \ base64-0.10.1 \ base64-0.11.0 \ base64-0.12.0 \ bimap-0.2.0 \ bincode-1.2.1 \ bindgen-0.51.1 \ bit-vec-0.4.4 \ bit-vec-0.6.1 \ bitflags-1.2.1 \ blake2b_simd-0.5.10 \ block-buffer-0.7.3 \ block-padding-0.1.5 \ bloom-0.3.2 \ bollard-0.7.1 \ bollard-stubs-1.40.1 \ bstr-0.2.10 \ build_const-0.2.1 \ built-0.4.2 \ bumpalo-3.2.1 \ byte-tools-0.3.1 \ byteorder-1.3.2 \ bytes-0.4.12 \ bytes-0.5.4 \ bytesize-1.0.1 \ c2-chacha-0.2.3 \ cargo-lock-4.0.1 \ cast-0.2.3 \ cc-1.0.50 \ cexpr-0.3.6 \ cfg-if-0.1.10 \ cfg-if-1.0.0 \ chrono-0.4.11 \ cidr-utils-0.4.2 \ clang-sys-0.28.1 \ clap-2.33.0 \ cloudabi-0.0.3 \ cmake-0.1.42 \ colored-1.9.2 \ const-random-0.1.8 \ const-random-macro-0.1.8 \ constant_time_eq-0.1.5 \ core-foundation-0.7.0 \ core-foundation-sys-0.7.0 \ cpu-time-1.0.0 \ crc-1.8.1 \ crc32fast-1.2.0 \ criterion-0.3.2 \ criterion-plot-0.4.2 \ crossbeam-deque-0.7.2 \ crossbeam-epoch-0.8.0 \ crossbeam-queue-0.1.2 \ crossbeam-queue-0.2.1 \ crossbeam-utils-0.6.6 \ crossbeam-utils-0.7.0 \ crypto-mac-0.7.0 \ csv-1.1.3 \ csv-core-0.1.6 \ ctor-0.1.12 \ cvt-0.1.1 \ db-key-0.0.5 \ debug-helper-0.3.8 \ derivative-1.0.3 \ derivative-2.1.1 \ derive_is_enum_variant-0.1.1 \ difference-2.0.0 \ digest-0.8.1 \ dirs-2.0.2 \ dirs-sys-0.3.4 \ discard-1.0.4 \ doc-comment-0.3.1 \ dtoa-0.4.5 \ duct-0.13.4 \ either-1.5.3 \ elastic_responses-0.21.0-pre.4 \ encoding_rs-0.8.22 \ enum-ordinalize-3.1.7 \ env_logger-0.5.13 \ env_logger-0.6.2 \ env_logger-0.7.1 \ erased-serde-0.3.10 \ error-chain-0.12.1 \ evmap-7.1.3 \ exitcode-1.1.2 \ failure-0.1.8 \ failure_derive-0.1.8 \ fake-simd-0.1.2 \ filetime-0.2.8 \ fixedbitset-0.2.0 \ flate2-1.0.16 \ fnv-1.0.6 \ foreign-types-0.3.2 \ foreign-types-shared-0.1.1 \ fs_extra-1.1.0 \ fsevent-0.4.0 \ fsevent-sys-2.0.1 \ fuchsia-cprng-0.1.1 \ fuchsia-zircon-0.3.3 \ fuchsia-zircon-sys-0.3.3 \ futures-0.1.29 \ futures-0.3.5 \ futures-channel-0.3.5 \ futures-core-0.3.5 \ futures-executor-0.3.5 \ futures-io-0.3.5 \ futures-macro-0.3.5 \ futures-sink-0.3.5 \ futures-task-0.3.5 \ futures-timer-3.0.2 \ futures-util-0.3.5 \ generic-array-0.12.3 \ getrandom-0.1.3 \ getset-0.1.0 \ ghost-0.1.1 \ gimli-0.20.0 \ git2-0.13.6 \ glob-0.2.11 \ glob-0.3.0 \ goauth-0.7.1 \ grok-1.0.1 \ h2-0.2.4 \ hashbrown-0.6.3 \ hdrhistogram-6.3.4 \ headers-0.3.2 \ headers-core-0.2.0 \ heck-0.3.1 \ hermit-abi-0.1.6 \ hex-0.4.2 \ hmac-0.7.1 \ hostname-0.1.5 \ http-0.1.21 \ http-0.2.1 \ http-body-0.3.1 \ httparse-1.3.4 \ human-size-0.4.1 \ humantime-1.3.0 \ hyper-0.13.6 \ hyper-openssl-0.8.0 \ hyper-tls-0.4.1 \ hyper-unix-connector-0.1.4 \ idna-0.1.5 \ idna-0.2.0 \ im-12.3.4 \ indexmap-1.3.1 \ inotify-0.7.0 \ inotify-sys-0.1.3 \ inventory-0.1.7 \ inventory-impl-0.1.7 \ iovec-0.1.4 \ itertools-0.8.2 \ itertools-0.9.0 \ itoa-0.4.5 \ jemalloc-sys-0.3.2 \ jemallocator-0.3.2 \ jobserver-0.1.21 \ js-sys-0.3.35 \ kernel32-sys-0.2.2 \ krb5-src-0.2.4+1.18.2 \ lazy_static-0.2.11 \ lazy_static-1.4.0 \ lazycell-1.2.1 \ leb128-0.2.4 \ leveldb-sys-2.0.5 \ lexical-core-0.7.6 \ libc-0.2.69 \ libgit2-sys-0.12.7+1.0.0 \ libloading-0.5.2 \ libloading-0.6.2 \ libz-sys-1.0.25 \ linked-hash-map-0.5.2 \ linked_hash_set-0.1.3 \ listenfd-0.3.3 \ lock_api-0.3.3 \ log-0.3.9 \ log-0.4.8 \ logfmt-0.0.2 \ lru-0.4.3 \ matchers-0.0.1 \ matches-0.1.8 \ maxminddb-0.14.0 \ maybe-uninit-2.0.0 \ md5-0.7.0 \ memchr-2.3.0 \ memoffset-0.5.3 \ metrics-0.12.1 \ metrics-core-0.5.2 \ metrics-exporter-http-0.3.0 \ metrics-exporter-log-0.4.0 \ metrics-observer-json-0.1.1 \ metrics-observer-prometheus-0.1.3 \ metrics-observer-yaml-0.1.1 \ metrics-runtime-0.13.0 \ metrics-util-0.3.1 \ mime-0.3.16 \ mime_guess-2.0.1 \ minisign-0.5.19 \ miniz_oxide-0.4.0 \ mio-0.6.21 \ mio-extras-2.0.6 \ mio-named-pipes-0.1.6 \ mio-uds-0.6.7 \ miow-0.2.1 \ miow-0.3.3 \ multimap-0.8.1 \ native-tls-0.2.4 \ net2-0.2.33 \ new_debug_unreachable-1.0.4 \ nix-0.16.1 \ nix-0.17.0 \ nom-4.2.3 \ nom-5.1.2 \ notify-4.0.15 \ num-bigint-0.3.0 \ num-derive-0.3.0 \ num-integer-0.1.42 \ num-traits-0.2.11 \ num_cpus-1.13.0 \ num_enum-0.5.0 \ num_enum_derive-0.5.0 \ object-0.18.0 \ once_cell-1.4.0 \ onig-4.3.3 \ onig_sys-69.1.0 \ oorandom-11.1.0 \ opaque-debug-0.2.3 \ openssl-0.10.30 \ openssl-probe-0.1.2 \ openssl-src-111.9.0+1.1.1g \ openssl-sys-0.9.58 \ os_pipe-0.9.2 \ output_vt100-0.1.2 \ parking_lot-0.9.0 \ parking_lot_core-0.6.2 \ pbkdf2-0.3.0 \ peeking_take_while-0.1.2 \ pem-0.8.1 \ percent-encoding-1.0.1 \ percent-encoding-2.1.0 \ petgraph-0.5.1 \ phf_generator-0.7.24 \ phf_shared-0.7.24 \ pin-project-0.4.22 \ pin-project-internal-0.4.22 \ pin-project-lite-0.1.4 \ pin-utils-0.1.0 \ pkg-config-0.3.17 \ plotters-0.2.12 \ ppv-lite86-0.2.6 \ precomputed-hash-0.1.1 \ predicates-1.0.4 \ predicates-core-1.0.0 \ predicates-tree-1.0.0 \ pretty_assertions-0.6.1 \ proc-macro-crate-0.1.4 \ proc-macro-error-0.4.9 \ proc-macro-error-1.0.2 \ proc-macro-error-attr-0.4.9 \ proc-macro-error-attr-1.0.2 \ proc-macro-hack-0.5.11 \ proc-macro-nested-0.1.3 \ proc-macro2-0.4.30 \ proc-macro2-1.0.18 \ prost-0.6.1 \ prost-build-0.6.1 \ prost-derive-0.6.1 \ prost-types-0.6.1 \ pulsar-1.0.0 \ quanta-0.3.1 \ quick-error-1.2.3 \ quickcheck-0.6.2 \ quote-0.3.15 \ quote-0.6.13 \ quote-1.0.2 \ rand-0.4.6 \ rand-0.5.6 \ rand-0.6.5 \ rand-0.7.3 \ rand_chacha-0.1.1 \ rand_chacha-0.2.1 \ rand_core-0.3.1 \ rand_core-0.4.2 \ rand_core-0.5.1 \ rand_hc-0.1.0 \ rand_hc-0.2.0 \ rand_isaac-0.1.1 \ rand_jitter-0.1.4 \ rand_os-0.1.3 \ rand_pcg-0.1.2 \ rand_xorshift-0.1.1 \ raw-cpuid-6.1.0 \ raw-cpuid-7.0.3 \ rayon-1.3.0 \ rayon-core-1.7.0 \ rdkafka-0.24.0 \ rdkafka-sys-2.0.0+1.4.2 \ rdrand-0.4.0 \ redox_syscall-0.1.56 \ redox_users-0.3.4 \ regalloc-0.0.25 \ regex-1.3.9 \ regex-automata-0.1.8 \ regex-syntax-0.6.18 \ remove_dir_all-0.5.2 \ reqwest-0.10.6 \ rpassword-4.0.5 \ rusoto_cloudwatch-0.44.0 \ rusoto_core-0.44.0 \ rusoto_credential-0.44.0 \ rusoto_firehose-0.44.0 \ rusoto_kinesis-0.44.0 \ rusoto_logs-0.44.0 \ rusoto_s3-0.44.0 \ rusoto_signature-0.44.0 \ rusoto_sts-0.44.0 \ rust-argon2-0.7.0 \ rustc-demangle-0.1.16 \ rustc-hash-1.1.0 \ rustc_version-0.2.3 \ rustversion-1.0.2 \ ryu-1.0.2 \ same-file-1.0.6 \ sasl2-sys-0.1.12 \ scan_fmt-0.2.5 \ schannel-0.1.16 \ scoped-tls-1.0.0 \ scopeguard-1.0.0 \ scrypt-0.2.0 \ seahash-3.0.7 \ security-framework-0.4.3 \ security-framework-sys-0.4.3 \ semver-0.9.0 \ semver-parser-0.7.0 \ serde-1.0.114 \ serde-big-array-0.2.0 \ serde_derive-1.0.114 \ serde_json-1.0.56 \ serde_urlencoded-0.6.1 \ serde_with-1.4.0 \ serde_with_macros-1.1.0 \ serde_yaml-0.8.11 \ sha-1-0.8.2 \ sha1-0.6.0 \ sha2-0.8.1 \ sharded-slab-0.0.8 \ shared_child-0.3.4 \ shlex-0.1.1 \ signal-hook-0.1.13 \ signal-hook-registry-1.2.0 \ simpl-0.1.0 \ siphasher-0.2.3 \ sized-chunks-0.1.3 \ slab-0.4.2 \ smallvec-0.6.13 \ smallvec-1.2.0 \ smpl_jwt-0.5.0 \ snafu-0.6.6 \ snafu-derive-0.6.6 \ socket2-0.3.11 \ sourcefile-0.1.4 \ standback-0.2.8 \ static_assertions-1.1.0 \ stdweb-0.4.20 \ stdweb-derive-0.5.3 \ stdweb-internal-macros-0.2.9 \ stdweb-internal-runtime-0.1.5 \ stream-cancel-0.4.4 \ string_cache-0.7.5 \ string_cache_codegen-0.4.4 \ string_cache_shared-0.3.0 \ strip-ansi-escapes-0.1.0 \ strsim-0.8.0 \ structopt-0.3.13 \ structopt-derive-0.4.6 \ subtle-1.0.0 \ syn-0.11.11 \ syn-0.15.44 \ syn-1.0.33 \ syn-mid-0.5.0 \ synom-0.11.3 \ synstructure-0.12.3 \ syslog-5.0.0 \ syslog_loose-0.3.0 \ target-lexicon-0.10.0 \ task-compat-0.1.0 \ tempfile-3.1.0 \ termcolor-1.1.0 \ textwrap-0.11.0 \ thiserror-1.0.16 \ thiserror-impl-1.0.16 \ thread_local-1.0.1 \ time-0.1.42 \ time-0.2.16 \ time-macros-0.1.0 \ time-macros-impl-0.1.1 \ tinytemplate-1.0.3 \ tokio-0.1.22 \ tokio-0.2.21 \ tokio-codec-0.1.2 \ tokio-compat-0.1.5 \ tokio-current-thread-0.1.6 \ tokio-executor-0.1.10 \ tokio-fs-0.1.6 \ tokio-io-0.1.12 \ tokio-macros-0.2.5 \ tokio-native-tls-0.1.0 \ tokio-openssl-0.3.0 \ tokio-openssl-0.4.0 \ tokio-reactor-0.1.11 \ tokio-retry-0.2.0 \ tokio-signal-0.2.7 \ tokio-sync-0.1.7 \ tokio-tcp-0.1.3 \ tokio-test-0.2.1 \ tokio-threadpool-0.1.17 \ tokio-timer-0.2.12 \ tokio-tls-0.3.1 \ tokio-udp-0.1.5 \ tokio-uds-0.2.7 \ tokio-util-0.3.1 \ tokio01-test-0.1.1 \ toml-0.4.10 \ toml-0.5.6 \ tower-0.1.1 \ tower-buffer-0.1.2 \ tower-discover-0.1.0 \ tower-layer-0.1.0 \ tower-layer-0.3.0 \ tower-limit-0.1.3 \ tower-load-shed-0.1.0 \ tower-retry-0.1.0 \ tower-service-0.2.0 \ tower-service-0.3.0 \ tower-test-0.1.0 \ tower-test-0.3.0 \ tower-timeout-0.1.1 \ tower-util-0.1.0 \ tracing-0.1.15 \ tracing-attributes-0.1.8 \ tracing-core-0.1.10 \ tracing-futures-0.2.1 \ tracing-log-0.1.1 \ tracing-serde-0.1.1 \ tracing-subscriber-0.2.2 \ treeline-0.1.0 \ try-lock-0.2.2 \ typenum-1.11.2 \ typetag-0.1.5 \ typetag-impl-0.1.5 \ unicase-2.6.0 \ unicode-bidi-0.3.4 \ unicode-normalization-0.1.12 \ unicode-segmentation-1.6.0 \ unicode-width-0.1.7 \ unicode-xid-0.0.4 \ unicode-xid-0.1.0 \ unicode-xid-0.2.0 \ url-1.7.2 \ url-2.1.1 \ urlencoding-1.0.0 \ userfaultfd-0.2.0 \ userfaultfd-sys-0.2.0 \ utf8-ranges-1.0.4 \ utf8parse-0.1.1 \ uuid-0.6.5 \ uuid-0.7.4 \ vcpkg-0.2.8 \ vec_map-0.8.1 \ version_check-0.1.5 \ version_check-0.9.1 \ void-1.0.2 \ vte-0.3.3 \ wabt-0.9.2 \ wabt-sys-0.7.1 \ wait-timeout-0.2.0 \ walkdir-2.3.1 \ want-0.3.0 \ warp-0.2.3 \ wasm-bindgen-0.2.58 \ wasm-bindgen-backend-0.2.58 \ wasm-bindgen-futures-0.4.8 \ wasm-bindgen-macro-0.2.58 \ wasm-bindgen-macro-support-0.2.58 \ wasm-bindgen-shared-0.2.58 \ wasm-bindgen-webidl-0.2.58 \ wasmparser-0.51.4 \ wasmparser-0.52.2 \ wasmparser-0.57.0 \ wast-11.0.0 \ web-sys-0.3.35 \ weedle-0.10.0 \ which-3.1.1 \ winapi-0.2.8 \ winapi-0.3.8 \ winapi-build-0.1.1 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-util-0.1.3 \ winapi-x86_64-pc-windows-gnu-0.4.0 \ winreg-0.7.0 \ winutil-0.1.1 \ ws2_32-sys-0.2.1 \ xml-rs-0.8.0 \ yaml-rust-0.4.3 \ zeroize-1.1.0 \ zstd-sys-1.4.15+zstd.1.4.4 \ leveldb-sys@git+https://github.com/timberio/leveldb-sys?branch=v3.0.0\#bbdd99a6fab0a7444a8c6eb0cc86a1a5a75f7fa1 \ leveldb@git+https://github.com/timberio/leveldb\#64265815bcf1b69f30e6cb35bf687fbd6dd64afb \ cranelift-bforest,cranelift-codegen,cranelift-codegen-meta,cranelift-codegen-shared,cranelift-entity,cranelift-frontend,cranelift-module,cranelift-native,cranelift-object,cranelift-wasm,lucet-module,lucet-runtime,lucet-runtime-internals,lucet-runtime-macros,lucet-validate,lucet-wasi,lucet-wasi-generate,lucet-wiggle,lucet-wiggle-generate,lucet-wiggle-macro,lucetc,wasi-common,wig,wiggle,wiggle-generate,wiggle-macro,winx,witx,yanix@git+https://github.com/bytecodealliance/lucet.git?rev=d4fc14a03bdb99ac83173d27fddf1aca48412a86\#d4fc14a03bdb99ac83173d27fddf1aca48412a86 \ tower@git+https://github.com/tower-rs/tower\#c87fdd9c1e4c0728fdaa87d3fafe3e48da9b498a \ rlua@git+https://github.com/kyren/rlua\#25bd7e6bffef9597466a98bfca80a3056c9e6320 \ tracing-futures,tracing-tower@git+https://github.com/tokio-rs/tracing?rev=65547d8809fcc726b8187db85b23c42e32ef5dce\#65547d8809fcc726b8187db85b23c42e32ef5dce post-extract: ${RMDIR} ${WRKSRC_wasmtime}/crates/wasi-common/WASI ${MV} ${WRKSRC_wasi_wasmtime} ${WRKSRC_wasmtime}/crates/wasi-common/WASI ${RMDIR} ${WRKSRC_crate_lucet-runtime}/wasmtime ${WRKSRC_crate_lucet-runtime}/sightglass ${WRKSRC_crate_lucet-runtime}/wasi ${MV} ${WRKSRC_wasmtime} ${WRKSRC_crate_lucet-runtime}/wasmtime ${MV} ${WRKSRC_sightglass} ${WRKSRC_crate_lucet-runtime}/sightglass ${MV} ${WRKSRC_wasi_lucet} ${WRKSRC_crate_lucet-runtime}/wasi post-patch: ${REINPLACE_CMD} -e 's|.probe("lua")|.probe("lua-5.3")|' \ ${WRKSRC_crate_rlua}/build.rs post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/vector .include diff --git a/sysutils/vivid/Makefile b/sysutils/vivid/Makefile index bc77c29cfac7..b4b1fc8a3b2f 100644 --- a/sysutils/vivid/Makefile +++ b/sysutils/vivid/Makefile @@ -1,66 +1,66 @@ PORTNAME= vivid DISTVERSIONPREFIX= v DISTVERSION= 0.8.0 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= sysutils MAINTAINER= 0mp@FreeBSD.org COMMENT= Themeable LS_COLORS generator with a rich filetype datebase LICENSE= APACHE20 MIT LICENSE_COMB= dual LICENSE_FILE_APACHE20= ${WRKSRC}/LICENSE-APACHE LICENSE_FILE_MIT= ${WRKSRC}/LICENSE-MIT USES= cargo USE_GITHUB= yes GH_ACCOUNT= sharkdp CARGO_CRATES= ansi_colours-1.0.4 \ ansi_term-0.12.1 \ atty-0.2.14 \ bitflags-1.3.2 \ block-buffer-0.9.0 \ cc-1.0.72 \ cfg-if-1.0.0 \ clap-2.34.0 \ cpufeatures-0.2.1 \ digest-0.9.0 \ dirs-4.0.0 \ dirs-sys-0.3.6 \ generic-array-0.14.5 \ getrandom-0.2.4 \ hermit-abi-0.1.19 \ lazy_static-1.4.0 \ libc-0.2.116 \ linked-hash-map-0.5.4 \ opaque-debug-0.3.0 \ proc-macro2-1.0.36 \ quote-1.0.15 \ redox_syscall-0.2.10 \ redox_users-0.4.0 \ rust-embed-6.3.0 \ rust-embed-impl-6.2.0 \ rust-embed-utils-7.1.0 \ same-file-1.0.6 \ sha2-0.9.9 \ strsim-0.8.0 \ syn-1.0.86 \ term_size-0.3.2 \ textwrap-0.11.0 \ typenum-1.15.0 \ unicode-width-0.1.9 \ unicode-xid-0.2.2 \ vec_map-0.8.2 \ version_check-0.9.4 \ walkdir-2.3.2 \ wasi-0.10.2+wasi-snapshot-preview1 \ winapi-0.3.9 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-util-0.1.5 \ winapi-x86_64-pc-windows-gnu-0.4.0 \ yaml-rust-0.4.5 PLIST_FILES= bin/vivid .include diff --git a/sysutils/yadf/Makefile b/sysutils/yadf/Makefile index 03a8a8ecd446..1387c57ed943 100644 --- a/sysutils/yadf/Makefile +++ b/sysutils/yadf/Makefile @@ -1,134 +1,134 @@ PORTNAME= yadf DISTVERSIONPREFIX= v DISTVERSION= 1.0.0 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= sysutils MAINTAINER= sec.research.2005@gmail.com COMMENT= Yet Another Duplicate files finder LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= cargo USE_GITHUB= yes GH_ACCOUNT= jrimbault CARGO_CRATES= addr2line-0.17.0 \ adler-1.0.2 \ ahash-0.7.6 \ aho-corasick-0.7.18 \ anyhow-1.0.53 \ assert_cmd-2.0.4 \ atty-0.2.14 \ autocfg-1.0.1 \ backtrace-0.3.63 \ bitflags-1.3.2 \ bstr-0.2.17 \ byte-unit-4.0.13 \ cc-1.0.72 \ cfg-if-1.0.0 \ clap-3.0.10 \ clap-verbosity-flag-0.4.0 \ clap_derive-3.0.6 \ core-foundation-sys-0.8.3 \ crossbeam-channel-0.5.2 \ crossbeam-deque-0.8.1 \ crossbeam-epoch-0.9.6 \ crossbeam-utils-0.8.6 \ csv-1.1.6 \ csv-core-0.1.10 \ difflib-0.4.0 \ dirs-4.0.0 \ dirs-sys-0.3.6 \ doc-comment-0.3.3 \ dunce-1.0.2 \ either-1.6.1 \ env_logger-0.9.0 \ float-cmp-0.9.0 \ fnv-1.0.7 \ getrandom-0.2.4 \ gimli-0.26.1 \ globset-0.4.8 \ hashbrown-0.11.2 \ heck-0.4.0 \ hermit-abi-0.1.19 \ highway-0.7.0 \ human-panic-1.0.3 \ humantime-2.1.0 \ ignore-0.4.18 \ indexmap-1.8.0 \ itertools-0.10.3 \ itoa-0.4.8 \ itoa-1.0.1 \ lazy_static-1.4.0 \ libc-0.2.113 \ log-0.4.14 \ memchr-2.4.1 \ memoffset-0.6.5 \ metrohash-1.0.6 \ miniz_oxide-0.4.4 \ normalize-line-endings-0.3.0 \ ntapi-0.3.6 \ num-traits-0.2.14 \ num_cpus-1.13.1 \ object-0.27.1 \ once_cell-1.9.0 \ os_str_bytes-6.0.0 \ os_type-2.4.0 \ ppv-lite86-0.2.16 \ predicates-2.1.1 \ predicates-core-1.0.3 \ predicates-tree-1.0.5 \ proc-macro-error-1.0.4 \ proc-macro-error-attr-1.0.4 \ proc-macro2-1.0.36 \ quote-1.0.15 \ rand-0.8.4 \ rand_chacha-0.3.1 \ rand_core-0.6.3 \ rand_hc-0.3.1 \ rayon-1.5.1 \ rayon-core-1.9.1 \ redox_syscall-0.2.10 \ redox_users-0.4.0 \ regex-1.5.4 \ regex-automata-0.1.10 \ regex-syntax-0.6.25 \ rustc-demangle-0.1.21 \ ryu-1.0.9 \ same-file-1.0.6 \ scopeguard-1.1.0 \ seahash-4.1.0 \ serde-1.0.135 \ serde_derive-1.0.135 \ serde_json-1.0.78 \ static_assertions-1.1.0 \ strsim-0.10.0 \ syn-1.0.86 \ sysinfo-0.23.0 \ termcolor-1.1.2 \ termtree-0.2.4 \ textwrap-0.14.2 \ thread_local-1.1.3 \ toml-0.5.8 \ twox-hash-1.6.2 \ typed-builder-0.9.1 \ unicode-xid-0.2.2 \ utf8-width-0.1.5 \ uuid-0.8.2 \ version_check-0.9.4 \ wait-timeout-0.2.0 \ walkdir-2.3.2 \ wasi-0.10.2+wasi-snapshot-preview1 \ winapi-0.3.9 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-util-0.1.5 \ winapi-x86_64-pc-windows-gnu-0.4.0 PLIST_FILES= bin/${PORTNAME} post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/${PORTNAME} .include diff --git a/sysutils/zellij/Makefile b/sysutils/zellij/Makefile index 32234bc2902e..cba74e294be8 100644 --- a/sysutils/zellij/Makefile +++ b/sysutils/zellij/Makefile @@ -1,362 +1,363 @@ PORTNAME= zellij DISTVERSIONPREFIX= v DISTVERSION= 0.31.3 +PORTREVISION= 1 CATEGORIES= sysutils MAINTAINER= riggs@FreeBSD.org COMMENT= Versatile, extensible terminal multiplexer LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.md ONLY_FOR_ARCHS= aarch64 amd64 ONLY_FOR_ARCHS_REASON= wasmer-vm crate currently only supports aarch64 and amd64 USES= cargo USE_GITHUB= yes GH_ACCOUNT= zellij-org PLIST_FILES= bin/zellij CARGO_CRATES= addr2line-0.17.0 \ adler-1.0.2 \ aho-corasick-0.7.18 \ ansi_term-0.12.1 \ anyhow-1.0.57 \ arc-swap-1.5.0 \ arrayvec-0.5.2 \ arrayvec-0.7.2 \ async-channel-1.6.1 \ async-executor-1.4.1 \ async-global-executor-2.1.0 \ async-io-1.7.0 \ async-lock-2.5.0 \ async-process-1.4.0 \ async-std-1.11.0 \ async-task-4.2.0 \ async-trait-0.1.56 \ atomic-waker-1.0.0 \ atty-0.2.14 \ autocfg-1.1.0 \ backtrace-0.3.65 \ base64-0.13.0 \ bincode-1.3.3 \ bitflags-1.3.2 \ block-buffer-0.7.3 \ block-buffer-0.9.0 \ block-padding-0.1.5 \ blocking-1.2.0 \ boxfnonce-0.1.1 \ bumpalo-3.10.0 \ byte-tools-0.3.1 \ byteorder-1.4.3 \ cache-padded-1.2.0 \ cassowary-0.3.0 \ cc-1.0.73 \ cfg-if-0.1.10 \ cfg-if-1.0.0 \ chrono-0.4.19 \ clap-3.2.4 \ clap_complete-3.2.1 \ clap_derive-3.2.4 \ clap_lex-0.2.2 \ close_fds-0.3.2 \ colored-2.0.0 \ colorsys-0.6.5 \ concurrent-queue-1.2.2 \ console-0.15.0 \ core-foundation-sys-0.8.3 \ cpufeatures-0.2.2 \ cranelift-bforest-0.68.0 \ cranelift-codegen-0.68.0 \ cranelift-codegen-meta-0.68.0 \ cranelift-codegen-shared-0.68.0 \ cranelift-entity-0.68.0 \ cranelift-frontend-0.68.0 \ crc32fast-1.3.2 \ crossbeam-0.8.1 \ crossbeam-channel-0.5.4 \ crossbeam-deque-0.8.1 \ crossbeam-epoch-0.9.8 \ crossbeam-queue-0.3.5 \ crossbeam-utils-0.8.8 \ csscolorparser-0.5.0 \ ctor-0.1.22 \ daemonize-0.4.1 \ darling-0.13.4 \ darling_core-0.13.4 \ darling_macro-0.13.4 \ derivative-2.2.0 \ dialoguer-0.10.1 \ digest-0.8.1 \ digest-0.9.0 \ directories-next-2.0.0 \ dirs-2.0.2 \ dirs-sys-0.3.7 \ dirs-sys-next-0.1.2 \ either-1.6.1 \ encode_unicode-0.3.6 \ enumset-1.0.11 \ enumset_derive-0.6.0 \ erased-serde-0.3.20 \ event-listener-2.5.2 \ fake-simd-0.1.2 \ fallible-iterator-0.2.0 \ fastrand-1.7.0 \ filedescriptor-0.8.2 \ fnv-1.0.7 \ form_urlencoded-1.0.1 \ futures-0.3.21 \ futures-channel-0.3.21 \ futures-core-0.3.21 \ futures-executor-0.3.21 \ futures-io-0.3.21 \ futures-lite-1.12.0 \ futures-macro-0.3.21 \ futures-sink-0.3.21 \ futures-task-0.3.21 \ futures-util-0.3.21 \ generational-arena-0.2.8 \ generic-array-0.12.4 \ generic-array-0.14.5 \ getopts-0.2.21 \ getrandom-0.1.16 \ getrandom-0.2.7 \ ghost-0.1.4 \ gimli-0.22.0 \ gimli-0.26.1 \ gloo-timers-0.2.4 \ hashbrown-0.11.2 \ heck-0.3.3 \ heck-0.4.0 \ hermit-abi-0.1.19 \ hex-0.4.3 \ highway-0.6.4 \ humantime-2.1.0 \ ident_case-1.0.1 \ idna-0.2.3 \ indexmap-1.8.2 \ insta-1.14.0 \ instant-0.1.12 \ interprocess-1.1.1 \ intmap-0.7.1 \ inventory-0.2.3 \ is_ci-1.1.1 \ itoa-1.0.2 \ js-sys-0.3.58 \ kv-log-macro-1.0.7 \ lazy_static-1.4.0 \ leb128-0.2.5 \ lev_distance-0.1.1 \ libc-0.2.126 \ libloading-0.6.7 \ libssh2-sys-0.2.23 \ libz-sys-1.1.8 \ linked-hash-map-0.5.4 \ lock_api-0.4.7 \ log-0.4.17 \ log-mdc-0.1.0 \ log4rs-1.1.1 \ mach-0.3.2 \ maplit-1.0.2 \ matches-0.1.9 \ memchr-2.5.0 \ memmap2-0.2.3 \ memmem-0.1.1 \ memoffset-0.6.5 \ miette-3.3.0 \ miette-derive-3.3.0 \ miniz_oxide-0.5.3 \ mio-0.7.14 \ miow-0.3.7 \ more-asserts-0.2.2 \ names-0.13.0 \ nix-0.23.1 \ nom-5.1.2 \ ntapi-0.3.7 \ num-derive-0.3.3 \ num-integer-0.1.45 \ num-traits-0.2.15 \ num_cpus-1.13.1 \ object-0.22.0 \ object-0.28.4 \ once_cell-1.12.0 \ opaque-debug-0.2.3 \ opaque-debug-0.3.0 \ openssl-sys-0.9.74 \ ordered-float-2.10.0 \ os_str_bytes-6.1.0 \ owo-colors-3.4.0 \ parking-2.0.0 \ parking_lot-0.11.2 \ parking_lot-0.12.1 \ parking_lot_core-0.8.5 \ parking_lot_core-0.9.3 \ paste-1.0.7 \ percent-encoding-2.1.0 \ pest-2.1.3 \ pest_derive-2.1.0 \ pest_generator-2.1.3 \ pest_meta-2.1.3 \ phf-0.8.0 \ phf_codegen-0.8.0 \ phf_generator-0.8.0 \ phf_macros-0.8.0 \ phf_shared-0.8.0 \ pin-project-lite-0.2.9 \ pin-utils-0.1.0 \ pkg-config-0.3.25 \ polling-2.2.0 \ ppv-lite86-0.2.16 \ pretty-bytes-0.2.2 \ proc-macro-error-1.0.4 \ proc-macro-error-attr-1.0.4 \ proc-macro-hack-0.5.19 \ proc-macro2-1.0.39 \ quote-1.0.18 \ rand-0.7.3 \ rand-0.8.5 \ rand_chacha-0.2.2 \ rand_chacha-0.3.1 \ rand_core-0.5.1 \ rand_core-0.6.3 \ rand_hc-0.2.0 \ rand_pcg-0.2.1 \ rayon-1.5.3 \ rayon-core-1.9.3 \ redox_syscall-0.2.13 \ redox_users-0.4.3 \ regalloc-0.0.31 \ regex-1.5.6 \ regex-syntax-0.6.26 \ region-2.2.0 \ remove_dir_all-0.5.3 \ rmp-0.8.11 \ rmp-serde-1.1.0 \ rustc-demangle-0.1.21 \ rustc-hash-1.1.0 \ ryu-1.0.10 \ scopeguard-1.1.0 \ semver-0.11.0 \ semver-parser-0.10.2 \ serde-1.0.137 \ serde-value-0.7.0 \ serde_bytes-0.11.6 \ serde_derive-1.0.137 \ serde_json-1.0.81 \ serde_yaml-0.8.24 \ sha-1-0.8.2 \ sha2-0.9.9 \ signal-hook-0.1.17 \ signal-hook-0.3.14 \ signal-hook-registry-1.4.0 \ similar-2.1.0 \ siphasher-0.3.10 \ sixel-image-0.1.0 \ sixel-tokenizer-0.1.0 \ slab-0.4.6 \ smallvec-1.8.0 \ smawk-0.3.1 \ socket2-0.4.4 \ spinning-0.1.0 \ ssh2-0.9.3 \ stable_deref_trait-1.2.0 \ strip-ansi-escapes-0.1.1 \ strsim-0.10.0 \ strum-0.20.0 \ strum_macros-0.20.1 \ suggest-0.4.0 \ supports-color-1.3.0 \ supports-hyperlinks-1.2.0 \ supports-unicode-1.0.2 \ syn-1.0.96 \ sysinfo-0.22.5 \ target-lexicon-0.11.2 \ tempfile-3.3.0 \ termcolor-1.1.3 \ terminal_size-0.1.17 \ terminfo-0.7.3 \ termios-0.3.3 \ termwiz-0.16.0 \ textwrap-0.14.2 \ textwrap-0.15.0 \ thiserror-1.0.31 \ thiserror-impl-1.0.31 \ thread-id-4.0.0 \ time-0.1.44 \ tinyvec-1.6.0 \ tinyvec_macros-0.1.0 \ tracing-0.1.35 \ tracing-attributes-0.1.21 \ tracing-core-0.1.27 \ traitobject-0.1.0 \ typemap-0.3.3 \ typenum-1.15.0 \ typetag-0.1.8 \ typetag-impl-0.1.8 \ ucd-trie-0.1.3 \ unicode-bidi-0.3.8 \ unicode-ident-1.0.1 \ unicode-linebreak-0.1.2 \ unicode-normalization-0.1.19 \ unicode-segmentation-1.9.0 \ unicode-width-0.1.9 \ unsafe-any-0.4.2 \ url-2.2.2 \ utf8parse-0.2.0 \ uuid-0.8.2 \ value-bag-1.0.0-alpha.9 \ vcpkg-0.2.15 \ version_check-0.9.4 \ vte-0.10.1 \ vte_generate_state_changes-0.1.1 \ vtparse-0.6.1 \ waker-fn-1.1.0 \ wasi-0.9.0+wasi-snapshot-preview1 \ wasi-0.10.0+wasi-snapshot-preview1 \ wasi-0.11.0+wasi-snapshot-preview1 \ wasm-bindgen-0.2.81 \ wasm-bindgen-backend-0.2.81 \ wasm-bindgen-futures-0.4.31 \ wasm-bindgen-macro-0.2.81 \ wasm-bindgen-macro-support-0.2.81 \ wasm-bindgen-shared-0.2.81 \ wasm-encoder-0.13.0 \ wasmer-1.0.2 \ wasmer-compiler-1.0.2 \ wasmer-compiler-cranelift-1.0.2 \ wasmer-derive-1.0.2 \ wasmer-engine-1.0.2 \ wasmer-engine-jit-1.0.2 \ wasmer-engine-native-1.0.2 \ wasmer-object-1.0.2 \ wasmer-types-1.0.2 \ wasmer-vm-1.0.2 \ wasmer-wasi-1.0.2 \ wasmparser-0.65.0 \ wast-42.0.0 \ wat-1.0.44 \ web-sys-0.3.58 \ wepoll-ffi-0.1.2 \ wezterm-bidi-0.1.0 \ wezterm-color-types-0.1.0 \ which-4.2.5 \ winapi-0.3.9 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-util-0.1.5 \ winapi-x86_64-pc-windows-gnu-0.4.0 \ windows-sys-0.36.1 \ windows_aarch64_msvc-0.36.1 \ windows_i686_gnu-0.36.1 \ windows_i686_msvc-0.36.1 \ windows_x86_64_gnu-0.36.1 \ windows_x86_64_msvc-0.36.1 \ yaml-rust-0.4.5 \ zeroize-1.5.5 post-configure: ${REINPLACE_CMD} -e 's|macos|freebsd|g' \ ${CARGO_VENDOR_DIR}/interprocess-1.1.1/src/os/unix/*.rs .include diff --git a/sysutils/zoxide/Makefile b/sysutils/zoxide/Makefile index 3448531e3552..c8ad20c4a9f1 100644 --- a/sysutils/zoxide/Makefile +++ b/sysutils/zoxide/Makefile @@ -1,107 +1,107 @@ PORTNAME= zoxide DISTVERSIONPREFIX= v DISTVERSION= 0.6.0 -PORTREVISION= 12 +PORTREVISION= 13 CATEGORIES= sysutils MAINTAINER= andoriyu@gmail.com COMMENT= Fast cd alternative that learns your habits LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= cargo USE_GITHUB= yes GH_ACCOUNT= ajeetdsouza CARGO_CRATES= anyhow-1.0.40 \ arrayvec-0.5.2 \ askama-0.10.5 \ askama_derive-0.10.5 \ askama_escape-0.10.1 \ askama_shared-0.11.1 \ assert_cmd-1.0.3 \ atty-0.2.14 \ autocfg-1.0.1 \ bincode-1.3.2 \ bitflags-1.2.1 \ bitvec-0.19.5 \ bstr-0.2.15 \ byteorder-1.3.4 \ cfg-if-1.0.0 \ clap-3.0.0-beta.2 \ clap_derive-3.0.0-beta.2 \ difference-2.0.0 \ dirs-next-2.0.0 \ dirs-sys-next-0.1.2 \ doc-comment-0.3.3 \ dunce-1.0.1 \ funty-1.1.0 \ getrandom-0.1.16 \ getrandom-0.2.2 \ glob-0.3.0 \ hashbrown-0.9.1 \ heck-0.3.2 \ hermit-abi-0.1.18 \ indexmap-1.6.2 \ lazy_static-1.4.0 \ lexical-core-0.7.5 \ libc-0.2.93 \ memchr-2.3.4 \ nom-6.1.2 \ num-traits-0.2.14 \ once_cell-1.7.2 \ ordered-float-2.1.1 \ os_str_bytes-2.4.0 \ ppv-lite86-0.2.10 \ predicates-1.0.7 \ predicates-core-1.0.2 \ predicates-tree-1.0.2 \ proc-macro-error-1.0.4 \ proc-macro-error-attr-1.0.4 \ proc-macro2-1.0.26 \ quote-1.0.9 \ radium-0.5.3 \ rand-0.7.3 \ rand-0.8.3 \ rand_chacha-0.2.2 \ rand_chacha-0.3.0 \ rand_core-0.5.1 \ rand_core-0.6.2 \ rand_hc-0.2.0 \ rand_hc-0.3.0 \ redox_syscall-0.2.5 \ redox_users-0.4.0 \ regex-automata-0.1.9 \ remove_dir_all-0.5.3 \ ryu-1.0.5 \ seq-macro-0.2.1 \ serde-1.0.125 \ serde_derive-1.0.125 \ static_assertions-1.1.0 \ strsim-0.10.0 \ syn-1.0.69 \ tap-1.0.1 \ tempfile-3.2.0 \ termcolor-1.1.2 \ textwrap-0.12.1 \ treeline-0.1.0 \ unicode-segmentation-1.7.1 \ unicode-width-0.1.8 \ unicode-xid-0.2.1 \ vec_map-0.8.2 \ version_check-0.9.3 \ wait-timeout-0.2.0 \ wasi-0.9.0+wasi-snapshot-preview1 \ wasi-0.10.2+wasi-snapshot-preview1 \ winapi-0.3.9 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-util-0.1.5 \ winapi-x86_64-pc-windows-gnu-0.4.0 \ wyz-0.2.0 PLIST_FILES= bin/zoxide post-install: @${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/zoxide .include diff --git a/sysutils/ztop/Makefile b/sysutils/ztop/Makefile index a325cf09b4c5..67162692afde 100644 --- a/sysutils/ztop/Makefile +++ b/sysutils/ztop/Makefile @@ -1,73 +1,73 @@ PORTNAME= ztop DISTVERSIONPREFIX= v DISTVERSION= 0.2.0 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= sysutils MAINTAINER= asomers@FreeBSD.org COMMENT= Display ZFS dataset I/O in real time LICENSE= BSD2CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE USES= cargo USE_GITHUB= yes GH_ACCOUNT= asomers CARGO_CRATES= aho-corasick-0.7.18 \ ansi_term-0.11.0 \ atty-0.2.14 \ autocfg-1.0.1 \ bitflags-1.3.2 \ byteorder-1.4.3 \ cassowary-0.3.0 \ cc-1.0.69 \ cfg-if-1.0.0 \ clap-2.33.3 \ heck-0.3.3 \ hermit-abi-0.1.19 \ humanize-rs-0.1.5 \ ieee754-0.2.6 \ lazy_static-1.4.0 \ libc-0.2.103 \ memchr-2.4.0 \ memoffset-0.6.4 \ nix-0.23.0 \ numtoa-0.1.0 \ proc-macro-error-1.0.4 \ proc-macro-error-attr-1.0.4 \ proc-macro2-1.0.27 \ quote-1.0.9 \ redox_syscall-0.2.9 \ redox_termios-0.1.2 \ regex-1.5.4 \ regex-syntax-0.6.25 \ same-file-1.0.6 \ strsim-0.8.0 \ structopt-0.3.22 \ structopt-derive-0.4.15 \ syn-1.0.74 \ sysctl-0.4.2 \ termion-1.5.6 \ textwrap-0.11.0 \ thiserror-1.0.26 \ thiserror-impl-1.0.26 \ tui-0.15.0 \ unicode-segmentation-1.8.0 \ unicode-width-0.1.8 \ unicode-xid-0.2.2 \ vec_map-0.8.2 \ version_check-0.9.3 \ walkdir-2.3.2 \ winapi-0.3.9 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-util-0.1.5 \ winapi-x86_64-pc-windows-gnu-0.4.0 PLIST_FILES= bin/${PORTNAME} \ man/man1/${PORTNAME}.1.gz post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/${PORTNAME} ${INSTALL_MAN} ${WRKSRC}/doc/${PORTNAME}.1 ${STAGEDIR}${MAN1PREFIX}/man/man1 .include diff --git a/textproc/angle-grinder/Makefile b/textproc/angle-grinder/Makefile index 4bbb0850a2f3..71471adda8f0 100644 --- a/textproc/angle-grinder/Makefile +++ b/textproc/angle-grinder/Makefile @@ -1,306 +1,306 @@ PORTNAME= angle-grinder DISTVERSIONPREFIX= v DISTVERSION= 0.18.0 -PORTREVISION= 8 +PORTREVISION= 9 CATEGORIES= textproc MAINTAINER= lcook@FreeBSD.org COMMENT= Slice and dice logs on the command line LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= cargo ssl USE_GITHUB= yes GH_ACCOUNT= rcoh CARGO_CRATES= addr2line-0.15.1 \ adler-1.0.2 \ aho-corasick-0.7.18 \ annotate-snippets-0.9.0 \ ansi_term-0.11.0 \ anyhow-1.0.42 \ arrayvec-0.5.2 \ assert_cmd-1.0.4 \ atty-0.2.14 \ autocfg-1.0.1 \ backtrace-0.3.59 \ base64-0.9.3 \ base64-0.12.3 \ base64-0.13.0 \ bitflags-1.2.1 \ bitvec-0.19.5 \ bstr-0.2.16 \ bumpalo-3.6.1 \ bytecount-0.6.2 \ byteorder-1.4.3 \ bytes-0.4.12 \ bytes-0.5.6 \ bytes-1.0.1 \ cargo-husky-1.5.0 \ cascade-1.0.0 \ cast-0.2.6 \ cc-1.0.67 \ cfg-if-0.1.10 \ cfg-if-1.0.0 \ chrono-0.4.19 \ chrono-tz-0.5.3 \ clap-2.33.3 \ clap-verbosity-flag-0.2.0 \ console-0.14.1 \ cool_asserts-1.1.0 \ criterion-0.3.4 \ criterion-plot-0.4.3 \ crossbeam-channel-0.3.9 \ crossbeam-channel-0.5.1 \ crossbeam-deque-0.8.0 \ crossbeam-epoch-0.9.4 \ crossbeam-utils-0.6.6 \ crossbeam-utils-0.8.4 \ csv-1.1.6 \ csv-core-0.1.10 \ difference-2.0.0 \ dissimilar-1.0.2 \ doc-comment-0.3.3 \ dtparse-1.2.0 \ either-1.6.1 \ encode_unicode-0.3.6 \ encoding_rs-0.8.28 \ env_logger-0.5.13 \ exitfailure-0.5.1 \ expect-test-1.1.0 \ failure-0.1.8 \ failure_derive-0.1.8 \ float-cmp-0.8.0 \ fnv-1.0.7 \ form_urlencoded-1.0.1 \ fs_extra-1.2.0 \ fuchsia-zircon-0.3.3 \ fuchsia-zircon-sys-0.3.3 \ funty-1.1.0 \ futures-channel-0.3.15 \ futures-core-0.3.15 \ futures-io-0.3.15 \ futures-macro-0.3.15 \ futures-sink-0.3.15 \ futures-task-0.3.15 \ futures-util-0.3.15 \ getopts-0.2.21 \ getrandom-0.2.2 \ gimli-0.24.0 \ glob-0.3.0 \ globset-0.4.6 \ globwalk-0.3.1 \ h2-0.2.7 \ half-1.7.1 \ hashbrown-0.9.1 \ heck-0.3.2 \ hermit-abi-0.1.18 \ http-0.2.4 \ http-body-0.3.1 \ httparse-1.4.1 \ httpdate-0.3.2 \ human-panic-1.0.3 \ humantime-1.3.0 \ hyper-0.13.10 \ hyper-old-types-0.11.0 \ hyper-rustls-0.21.0 \ idna-0.2.3 \ ignore-0.4.17 \ im-13.0.0 \ include_dir-0.6.1 \ include_dir_impl-0.6.1 \ indent_write-2.2.0 \ indexmap-1.6.2 \ indicatif-0.13.0 \ iovec-0.1.4 \ ipnet-2.3.0 \ itertools-0.8.2 \ itertools-0.9.0 \ itertools-0.10.0 \ itoa-0.4.7 \ jemalloc-sys-0.3.2 \ jemallocator-0.3.2 \ joinery-2.1.0 \ js-sys-0.3.51 \ kernel32-sys-0.2.2 \ language-tags-0.2.2 \ lazy_static-1.4.0 \ lexical-core-0.7.6 \ libc-0.2.94 \ log-0.4.14 \ logfmt-0.0.2 \ maplit-1.0.2 \ matches-0.1.8 \ memchr-2.4.0 \ memoffset-0.6.3 \ mime-0.3.16 \ mime_guess-2.0.3 \ miniz_oxide-0.4.4 \ mio-0.6.23 \ miow-0.2.2 \ net2-0.2.37 \ nom-6.1.2 \ nom-supreme-0.4.4 \ nom_locate-3.0.1 \ normalize-line-endings-0.3.0 \ num-0.2.1 \ num-bigint-0.2.6 \ num-complex-0.2.4 \ num-integer-0.1.44 \ num-iter-0.1.42 \ num-rational-0.2.4 \ num-traits-0.2.14 \ num_cpus-1.13.0 \ number_prefix-0.3.0 \ object-0.24.0 \ once_cell-1.7.2 \ oorandom-11.1.3 \ ordered-float-2.2.0 \ os_type-2.2.0 \ parse-zoneinfo-0.3.0 \ percent-encoding-1.0.1 \ percent-encoding-2.1.0 \ pest-2.1.3 \ pin-project-1.0.7 \ pin-project-internal-1.0.7 \ pin-project-lite-0.1.12 \ pin-project-lite-0.2.6 \ pin-utils-0.1.0 \ plotters-0.3.0 \ plotters-backend-0.3.0 \ plotters-svg-0.3.0 \ ppv-lite86-0.2.10 \ predicates-1.0.8 \ predicates-core-1.0.2 \ predicates-tree-1.0.2 \ proc-macro-hack-0.5.19 \ proc-macro-nested-0.1.7 \ proc-macro2-0.4.30 \ proc-macro2-1.0.26 \ pulldown-cmark-0.2.0 \ quantiles-0.7.1 \ quick-error-1.2.3 \ quick-xml-0.17.2 \ quicli-0.4.0 \ quote-0.6.13 \ quote-1.0.9 \ radium-0.5.3 \ rand-0.8.3 \ rand_chacha-0.3.0 \ rand_core-0.6.2 \ rand_hc-0.3.0 \ rayon-1.5.0 \ rayon-core-1.9.0 \ redox_syscall-0.2.8 \ regex-1.5.4 \ regex-automata-0.1.9 \ regex-syntax-0.6.25 \ remove_dir_all-0.5.3 \ reqwest-0.10.10 \ ring-0.16.20 \ rust_decimal-0.10.2 \ rustc-demangle-0.1.19 \ rustc_version-0.2.3 \ rustc_version-0.3.3 \ rustls-0.18.1 \ ryu-1.0.5 \ safemem-0.3.3 \ same-file-1.0.6 \ scopeguard-1.1.0 \ sct-0.6.1 \ self_update-0.19.0 \ semver-0.9.0 \ semver-0.11.0 \ semver-parser-0.7.0 \ semver-parser-0.10.2 \ serde-1.0.126 \ serde_cbor-0.11.1 \ serde_derive-1.0.126 \ serde_json-1.0.64 \ serde_urlencoded-0.7.0 \ sized-chunks-0.3.1 \ slab-0.4.3 \ socket2-0.3.19 \ spin-0.5.2 \ static_assertions-1.1.0 \ strfmt-0.1.6 \ strsim-0.8.0 \ structopt-0.2.18 \ structopt-derive-0.2.18 \ syn-0.15.44 \ syn-1.0.72 \ synstructure-0.12.4 \ tap-1.0.1 \ tempfile-3.2.0 \ termcolor-1.1.2 \ terminal_size-0.1.17 \ test-generator-0.3.0 \ textwrap-0.11.0 \ thread_local-1.1.3 \ time-0.1.43 \ tinytemplate-1.2.1 \ tinyvec-1.2.0 \ tinyvec_macros-0.1.0 \ tokio-0.2.25 \ tokio-rustls-0.14.1 \ tokio-util-0.3.1 \ toml-0.4.10 \ toml-0.5.8 \ tower-service-0.3.1 \ tracing-0.1.26 \ tracing-core-0.1.18 \ tracing-futures-0.2.5 \ treeline-0.1.0 \ try-lock-0.2.3 \ typenum-1.13.0 \ ucd-trie-0.1.3 \ unicase-2.6.0 \ unicode-bidi-0.3.5 \ unicode-normalization-0.1.17 \ unicode-segmentation-1.7.1 \ unicode-width-0.1.8 \ unicode-xid-0.1.0 \ unicode-xid-0.2.2 \ untrusted-0.7.1 \ url-2.2.2 \ uuid-0.8.2 \ vec_map-0.8.2 \ version_check-0.9.3 \ wait-timeout-0.2.0 \ walkdir-2.3.2 \ want-0.3.0 \ wasi-0.10.2+wasi-snapshot-preview1 \ wasm-bindgen-0.2.74 \ wasm-bindgen-backend-0.2.74 \ wasm-bindgen-futures-0.4.24 \ wasm-bindgen-macro-0.2.74 \ wasm-bindgen-macro-support-0.2.74 \ wasm-bindgen-shared-0.2.74 \ web-sys-0.3.51 \ webpki-0.21.4 \ webpki-roots-0.20.0 \ winapi-0.2.8 \ winapi-0.3.9 \ winapi-build-0.1.1 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-util-0.1.5 \ winapi-x86_64-pc-windows-gnu-0.4.0 \ winreg-0.7.0 \ ws2_32-sys-0.2.1 \ wyz-0.2.0 \ yansi-term-0.1.2 PLIST_FILES= bin/agrind PORTDOCS= README.md OPTIONS_DEFINE= DOCS post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/agrind post-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/${PORTDOCS} ${STAGEDIR}${DOCSDIR} .include diff --git a/textproc/bat/Makefile b/textproc/bat/Makefile index 21f2307b375d..0d0d6cfe6e2a 100644 --- a/textproc/bat/Makefile +++ b/textproc/bat/Makefile @@ -1,177 +1,178 @@ PORTNAME= bat DISTVERSIONPREFIX= v DISTVERSION= 0.21.0 +PORTREVISION= 1 CATEGORIES= textproc MAINTAINER= pizzamig@FreeBSD.org COMMENT= Clone of cat with syntax highlighting LICENSE= APACHE20 LIB_DEPENDS= libgit2.so:devel/libgit2 \ libonig.so:devel/oniguruma USES= cargo cpe CPE_VENDOR= ${PORTNAME}_project USE_GITHUB= yes GH_ACCOUNT= sharkdp PLIST_FILES= bin/bat \ share/zsh/site-functions/_bat \ man/man1/bat.1.gz CARGO_CRATES= adler-1.0.2 \ aho-corasick-0.7.18 \ ansi_colours-1.1.1 \ ansi_term-0.12.1 \ assert_cmd-2.0.4 \ atty-0.2.14 \ autocfg-1.0.1 \ base64-0.13.0 \ bincode-1.3.3 \ bit-set-0.5.2 \ bit-vec-0.6.3 \ bitflags-1.3.2 \ bstr-0.2.17 \ bugreport-0.5.0 \ bytemuck-1.7.3 \ bytesize-1.1.0 \ cc-1.0.72 \ cfg-if-1.0.0 \ clap-2.34.0 \ clircle-0.3.0 \ console-0.15.0 \ content_inspector-0.2.4 \ crc32fast-1.3.0 \ difflib-0.4.0 \ dirs-next-2.0.0 \ dirs-sys-next-0.1.2 \ doc-comment-0.3.3 \ either-1.6.1 \ encode_unicode-0.3.6 \ encoding-0.2.33 \ encoding-index-japanese-1.20141219.5 \ encoding-index-korean-1.20141219.5 \ encoding-index-simpchinese-1.20141219.5 \ encoding-index-singlebyte-1.20141219.5 \ encoding-index-tradchinese-1.20141219.5 \ encoding_index_tests-0.1.4 \ fancy-regex-0.7.1 \ fastrand-1.7.0 \ flate2-1.0.24 \ float-cmp-0.9.0 \ fnv-1.0.7 \ form_urlencoded-1.0.1 \ getrandom-0.2.3 \ git-version-0.3.5 \ git-version-macro-0.3.5 \ git2-0.14.1 \ glob-0.3.0 \ globset-0.4.8 \ grep-cli-0.1.6 \ hashbrown-0.11.2 \ hermit-abi-0.1.19 \ idna-0.2.3 \ indexmap-1.7.0 \ instant-0.1.12 \ itertools-0.10.3 \ itoa-0.4.8 \ itoa-1.0.1 \ jobserver-0.1.24 \ lazy_static-1.4.0 \ libc-0.2.121 \ libgit2-sys-0.13.2+1.4.2 \ libz-sys-1.1.3 \ line-wrap-0.1.1 \ linked-hash-map-0.5.4 \ lock_api-0.4.5 \ log-0.4.14 \ matches-0.1.9 \ memchr-2.4.1 \ miniz_oxide-0.5.1 \ nix-0.24.1 \ normalize-line-endings-0.3.0 \ num-traits-0.2.14 \ once_cell-1.12.0 \ onig-6.3.1 \ onig_sys-69.7.1 \ parking_lot-0.11.2 \ parking_lot_core-0.8.5 \ path_abs-0.5.1 \ percent-encoding-2.1.0 \ pkg-config-0.3.24 \ plist-1.3.1 \ predicates-2.1.1 \ predicates-core-1.0.2 \ predicates-tree-1.0.4 \ proc-macro-error-1.0.4 \ proc-macro-error-attr-1.0.4 \ proc-macro-hack-0.5.19 \ proc-macro2-1.0.39 \ quote-1.0.14 \ redox_syscall-0.2.10 \ redox_users-0.4.0 \ regex-1.5.6 \ regex-automata-0.1.10 \ regex-syntax-0.6.26 \ remove_dir_all-0.5.3 \ rgb-0.8.31 \ rustversion-1.0.6 \ ryu-1.0.9 \ safemem-0.3.3 \ same-file-1.0.6 \ scopeguard-1.1.0 \ semver-1.0.11 \ serde-1.0.137 \ serde_derive-1.0.137 \ serde_json-1.0.74 \ serde_yaml-0.8.24 \ serial_test-0.6.0 \ serial_test_derive-0.6.0 \ shell-escape-0.1.5 \ shell-words-1.1.0 \ smallvec-1.7.0 \ std_prelude-0.2.12 \ strsim-0.8.0 \ syn-1.0.95 \ syntect-5.0.0 \ sys-info-0.9.1 \ tempfile-3.3.0 \ term_size-0.3.2 \ termcolor-1.1.2 \ terminal_size-0.1.17 \ termtree-0.2.3 \ textwrap-0.11.0 \ thiserror-1.0.31 \ thiserror-impl-1.0.31 \ time-0.3.5 \ tinyvec-1.5.1 \ tinyvec_macros-0.1.0 \ unicode-bidi-0.3.7 \ unicode-ident-1.0.0 \ unicode-normalization-0.1.19 \ unicode-width-0.1.9 \ url-2.2.2 \ vcpkg-0.2.15 \ vec_map-0.8.2 \ version_check-0.9.4 \ wait-timeout-0.2.0 \ walkdir-2.3.2 \ wasi-0.10.2+wasi-snapshot-preview1 \ wild-2.0.4 \ winapi-0.3.9 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-util-0.1.5 \ winapi-x86_64-pc-windows-gnu-0.4.0 \ xml-rs-0.8.4 \ yaml-rust-0.4.5 post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/bat ${FIND} ${WRKDIR}/target -name "bat.1" -exec ${CP} {} ${WRKSRC}/doc/bat.1 \; ${FIND} ${WRKDIR}/target -name "bat.zsh" -exec ${CP} {} ${WRKSRC}/doc/bat.zsh \; ${INSTALL_MAN} ${WRKSRC}/doc/bat.1 ${STAGEDIR}${MAN1PREFIX}/man/man1 ${MKDIR} ${STAGEDIR}${PREFIX}/share/zsh/site-functions ${INSTALL_DATA} ${WRKSRC}/doc/bat.zsh ${STAGEDIR}${PREFIX}/share/zsh/site-functions/_bat .include diff --git a/textproc/cast2gif/Makefile b/textproc/cast2gif/Makefile index 35d3c3137113..f861fa752472 100644 --- a/textproc/cast2gif/Makefile +++ b/textproc/cast2gif/Makefile @@ -1,237 +1,237 @@ PORTNAME= cast2gif DISTVERSIONPREFIX= v DISTVERSION= 0.1.0 -PORTREVISION= 15 +PORTREVISION= 16 CATEGORIES= textproc MAINTAINER= eduardo@FreeBSD.org COMMENT= Tool to render Asciinema cast files to GIFs LICENSE= AGPLv3 LICENSE_FILE= ${WRKSRC}/LICENSE LIB_DEPENDS= libfreetype.so:print/freetype2 USES= cargo gmake USE_GITHUB= yes GH_ACCOUNT= katharostech CARGO_CRATES= adler32-1.0.4 \ aho-corasick-0.7.10 \ ansi_colours-1.0.1 \ ansi_term-0.11.0 \ anyhow-1.0.28 \ approx-0.3.2 \ arrayref-0.3.6 \ arrayvec-0.5.1 \ atty-0.2.14 \ autocfg-1.0.0 \ backtrace-0.3.46 \ backtrace-sys-0.1.35 \ base16-0.2.1 \ base64-0.11.0 \ better-panic-0.2.0 \ bitflags-1.2.1 \ blake2b_simd-0.5.10 \ byteorder-1.3.4 \ cc-1.0.50 \ cfg-if-0.1.10 \ clap-2.33.0 \ clicolors-control-1.0.1 \ cmake-0.1.42 \ color_quant-1.0.1 \ colored-1.9.3 \ console-0.9.2 \ console-0.10.0 \ constant_time_eq-0.1.5 \ core-foundation-0.6.4 \ core-foundation-0.7.0 \ core-foundation-sys-0.6.2 \ core-foundation-sys-0.7.0 \ core-graphics-0.17.3 \ core-graphics-0.19.0 \ core-text-13.3.2 \ core-text-15.0.0 \ crc32fast-1.2.0 \ crossbeam-deque-0.7.3 \ crossbeam-epoch-0.8.2 \ crossbeam-queue-0.2.1 \ crossbeam-utils-0.7.2 \ darling-0.10.2 \ darling_core-0.10.2 \ darling_macro-0.10.2 \ data-url-0.1.0 \ deflate-0.7.20 \ dirs-2.0.2 \ dirs-sys-0.3.4 \ dwrote-0.10.0 \ either-1.5.3 \ encode_unicode-0.3.6 \ enumset-0.4.5 \ enumset_derive-0.4.4 \ env_logger-0.7.1 \ euclid-0.20.10 \ expat-sys-2.1.6 \ flame-0.2.2 \ flate2-1.0.14 \ float-cmp-0.5.3 \ float-ord-0.2.0 \ flume-0.5.1 \ fnv-1.0.6 \ font-kit-0.6.0 \ foreign-types-0.3.2 \ foreign-types-shared-0.1.1 \ freetype-0.4.1 \ getrandom-0.1.14 \ gif-0.10.3 \ gif-dispose-2.3.0 \ gifski-0.10.4 \ glob-0.3.0 \ harfbuzz-sys-0.3.4 \ harfbuzz_rs-1.0.1 \ hermit-abi-0.1.11 \ humantime-1.3.0 \ ident_case-1.0.1 \ imagequant-2.12.5 \ imagequant-sys-2.12.5 \ imgref-1.4.3 \ indicatif-0.14.0 \ inflate-0.4.5 \ itoa-0.4.5 \ jpeg-decoder-0.1.18 \ kernel32-sys-0.2.2 \ kurbo-0.5.11 \ lazy_static-0.2.11 \ lazy_static-1.4.0 \ libc-0.2.69 \ lodepng-2.5.0 \ log-0.4.8 \ lyon_geom-0.15.2 \ lzw-0.10.0 \ matches-0.1.8 \ maybe-uninit-2.0.0 \ memchr-2.3.3 \ memmap2-0.1.0 \ memoffset-0.5.4 \ miniz_oxide-0.3.6 \ natord-1.0.9 \ num-traits-0.2.11 \ num_cpus-1.13.0 \ number_prefix-0.3.0 \ numtoa-0.1.0 \ palette-0.5.0 \ palette_derive-0.5.0 \ pathfinder_geometry-0.5.1 \ pathfinder_simd-0.5.0 \ pbr-1.0.2 \ phf-0.8.0 \ phf_codegen-0.8.0 \ phf_generator-0.8.0 \ phf_shared-0.8.0 \ pkg-config-0.3.17 \ png-0.15.3 \ ppv-lite86-0.2.6 \ proc-macro2-1.0.10 \ quick-error-1.2.3 \ quote-1.0.3 \ rand-0.7.3 \ rand_chacha-0.2.2 \ rand_core-0.5.1 \ rand_hc-0.2.0 \ rand_pcg-0.2.1 \ raqote-0.7.14 \ rayon-1.3.0 \ rayon-core-1.7.0 \ rctree-0.3.3 \ redox_syscall-0.1.56 \ redox_termios-0.1.1 \ redox_users-0.3.4 \ regex-1.3.7 \ regex-syntax-0.6.17 \ resize-0.4.0 \ resvg-0.9.0 \ rgb-0.8.16 \ roxmltree-0.9.1 \ rust-argon2-0.7.0 \ rustc-demangle-0.1.16 \ rustc_version-0.2.3 \ ryu-1.0.3 \ same-file-1.0.6 \ scopeguard-1.1.0 \ semver-0.9.0 \ semver-parser-0.7.0 \ serde-1.0.106 \ serde_derive-1.0.106 \ serde_json-1.0.51 \ servo-fontconfig-0.4.0 \ servo-fontconfig-sys-4.0.9 \ servo-freetype-sys-4.0.5 \ simplecss-0.2.0 \ siphasher-0.2.3 \ siphasher-0.3.2 \ spin-0.5.2 \ strsim-0.8.0 \ strsim-0.9.3 \ svg-0.7.2 \ svgfilters-0.1.0 \ svgtypes-0.5.0 \ sw-composite-0.7.7 \ syn-1.0.17 \ term_size-0.3.1 \ termcolor-1.1.0 \ termion-1.5.5 \ termios-0.3.2 \ textwrap-0.11.0 \ thiserror-1.0.15 \ thiserror-impl-1.0.15 \ thread-id-3.3.0 \ thread_local-1.0.1 \ time-0.1.42 \ ttf-parser-0.3.0 \ typed-arena-2.0.1 \ unicode-bidi-0.3.4 \ unicode-script-0.5.0 \ unicode-vo-0.1.0 \ unicode-width-0.1.7 \ unicode-xid-0.2.0 \ usvg-0.9.0 \ utf8parse-0.2.0 \ vec_map-0.8.1 \ vt100-0.8.1 \ vte-0.6.0 \ vte_generate_state_changes-0.1.1 \ walkdir-2.3.1 \ wasi-0.9.0+wasi-snapshot-preview1 \ wild-2.0.2 \ winapi-0.2.8 \ winapi-0.3.8 \ winapi-build-0.1.1 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-util-0.1.4 \ winapi-x86_64-pc-windows-gnu-0.4.0 \ wio-0.2.2 \ xmlparser-0.13.1 \ xmlwriter-0.1.0 PLIST_FILES= bin/cast2gif EXAMPLES_PLIST_FILES= \ ${EXAMPLESDIR}/example1.gif \ ${EXAMPLESDIR}/tutorial.gif PORTDOCS= README.md PORTEXAMPLES= doc/*.gif OPTIONS_DEFINE= DOCS EXAMPLES post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/${PORTNAME} do-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/${PORTDOCS} ${STAGEDIR}${DOCSDIR} do-install-EXAMPLES-on: @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} (cd ${WRKSRC}/doc && ${COPYTREE_SHARE} . ${STAGEDIR}${EXAMPLESDIR}) .include diff --git a/textproc/difftastic/Makefile b/textproc/difftastic/Makefile index ecf9139a337f..bb7a1bbf5be5 100644 --- a/textproc/difftastic/Makefile +++ b/textproc/difftastic/Makefile @@ -1,108 +1,109 @@ PORTNAME= difftastic DISTVERSION= 0.32.0 +PORTREVISION= 1 CATEGORIES= textproc MAINTAINER= amdmi3@FreeBSD.org COMMENT= Diff tool that compares files based on their syntax LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= cargo USE_GITHUB= yes GH_ACCOUNT= Wilfred PLIST_FILES= bin/difft CARGO_CRATES= aho-corasick-0.7.18 \ ansi_term-0.12.1 \ archery-0.4.0 \ atty-0.2.14 \ autocfg-1.1.0 \ bitflags-1.3.2 \ bumpalo-3.9.1 \ bytecount-0.6.2 \ cc-1.0.73 \ cfg-if-1.0.0 \ clap-3.1.18 \ clap_lex-0.2.0 \ const_format-0.2.23 \ const_format_proc_macros-0.2.22 \ crossbeam-channel-0.5.4 \ crossbeam-deque-0.8.1 \ crossbeam-epoch-0.9.8 \ crossbeam-utils-0.8.8 \ ctor-0.1.22 \ diff-0.1.12 \ either-1.6.1 \ env_logger-0.7.1 \ fixedbitset-0.4.1 \ fnv-1.0.7 \ hashbrown-0.11.2 \ hermit-abi-0.1.19 \ humantime-1.3.0 \ indexmap-1.7.0 \ itertools-0.10.3 \ lazy_static-1.4.0 \ libc-0.2.126 \ libmimalloc-sys-0.1.24 \ log-0.4.17 \ memchr-2.5.0 \ memoffset-0.6.5 \ mimalloc-0.1.28 \ minimal-lexical-0.2.1 \ nom-7.1.1 \ num_cpus-1.13.1 \ once_cell-1.12.0 \ os_str_bytes-6.0.1 \ output_vt100-0.1.3 \ owo-colors-3.4.0 \ petgraph-0.6.1 \ pretty_assertions-1.2.1 \ pretty_env_logger-0.4.0 \ proc-macro2-1.0.39 \ quick-error-1.2.3 \ quote-1.0.18 \ radix-heap-0.4.2 \ rayon-1.5.3 \ rayon-core-1.9.3 \ regex-1.5.6 \ regex-syntax-0.6.26 \ rpds-0.10.0 \ rustc-hash-1.1.0 \ same-file-1.0.6 \ scopeguard-1.1.0 \ static_assertions-1.1.0 \ strsim-0.10.0 \ syn-1.0.95 \ term_size-0.3.2 \ termcolor-1.1.3 \ terminal_size-0.1.17 \ textwrap-0.15.0 \ tree-sitter-0.20.6 \ tree_magic_mini-3.0.3 \ typed-arena-2.0.1 \ unicode-ident-1.0.0 \ unicode-width-0.1.9 \ unicode-xid-0.2.3 \ walkdir-2.3.2 \ winapi-0.3.9 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-util-0.1.5 \ winapi-x86_64-pc-windows-gnu-0.4.0 \ wu-diff-0.1.2 PORTDOCS= * OPTIONS_DEFINE= DOCS post-install: @${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/difft post-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/README.md ${STAGEDIR}${DOCSDIR}/ ${INSTALL_DATA} ${WRKSRC}/CHANGELOG.md ${STAGEDIR}${DOCSDIR}/ @cd ${WRKSRC}/manual/src && ${COPYTREE_SHARE} . ${STAGEDIR}${DOCSDIR}/manual .include diff --git a/textproc/htmlq/Makefile b/textproc/htmlq/Makefile index a7992652b841..ac2290f4fd2a 100644 --- a/textproc/htmlq/Makefile +++ b/textproc/htmlq/Makefile @@ -1,99 +1,99 @@ PORTNAME= htmlq DISTVERSIONPREFIX= v DISTVERSION= 0.4.0 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= textproc MAINTAINER= 0mp@FreeBSD.org COMMENT= Command-line HTML processor, similar to jq LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.md USES= cargo USE_GITHUB= yes GH_ACCOUNT= mgdm CARGO_CRATES= ansi_term-0.11.0 \ atty-0.2.14 \ bitflags-1.3.2 \ byteorder-1.4.3 \ cfg-if-1.0.0 \ clap-2.33.3 \ convert_case-0.4.0 \ cssparser-0.27.2 \ cssparser-macros-0.6.0 \ derive_more-0.99.16 \ dtoa-0.4.8 \ dtoa-short-0.3.3 \ form_urlencoded-1.0.1 \ futf-0.1.4 \ fxhash-0.2.1 \ getrandom-0.1.16 \ hermit-abi-0.1.19 \ html5ever-0.25.1 \ idna-0.2.3 \ itoa-0.4.8 \ kuchiki-0.8.1 \ lazy_static-1.4.0 \ libc-0.2.101 \ log-0.4.14 \ mac-0.1.1 \ markup5ever-0.10.1 \ matches-0.1.9 \ new_debug_unreachable-1.0.4 \ nodrop-0.1.14 \ percent-encoding-2.1.0 \ pest-2.1.3 \ phf-0.8.0 \ phf_codegen-0.8.0 \ phf_generator-0.8.0 \ phf_macros-0.8.0 \ phf_shared-0.8.0 \ ppv-lite86-0.2.10 \ precomputed-hash-0.1.1 \ proc-macro-hack-0.5.19 \ proc-macro2-1.0.29 \ quote-1.0.9 \ rand-0.7.3 \ rand_chacha-0.2.2 \ rand_core-0.5.1 \ rand_hc-0.2.0 \ rand_pcg-0.2.1 \ rustc_version-0.3.3 \ selectors-0.22.0 \ semver-0.11.0 \ semver-parser-0.10.2 \ serde-1.0.130 \ servo_arc-0.1.1 \ siphasher-0.3.7 \ smallvec-1.6.1 \ stable_deref_trait-1.2.0 \ string_cache-0.8.1 \ string_cache_codegen-0.5.1 \ strsim-0.8.0 \ syn-1.0.76 \ tendril-0.4.2 \ textwrap-0.11.0 \ thin-slice-0.1.1 \ tinyvec-1.3.1 \ tinyvec_macros-0.1.0 \ ucd-trie-0.1.3 \ unicode-bidi-0.3.6 \ unicode-normalization-0.1.19 \ unicode-width-0.1.8 \ unicode-xid-0.2.2 \ url-2.2.2 \ utf-8-0.7.6 \ vec_map-0.8.2 \ wasi-0.9.0+wasi-snapshot-preview1 \ winapi-0.3.9 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-x86_64-pc-windows-gnu-0.4.0 PLIST_FILES= bin/${PORTNAME} post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/${PORTNAME} .include diff --git a/textproc/jless/Makefile b/textproc/jless/Makefile index 739385a5d321..a8ca4dcbb0b9 100644 --- a/textproc/jless/Makefile +++ b/textproc/jless/Makefile @@ -1,92 +1,92 @@ PORTNAME= jless DISTVERSIONPREFIX= v DISTVERSION= 0.7.2 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= textproc MAINTAINER= lwhsu@FreeBSD.org COMMENT= Command-line JSON viewer LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= cargo USE_GITHUB= yes GH_ACCOUNT= PaulJuliusMartinez CARGO_CRATES= aho-corasick-0.7.18 \ atty-0.2.14 \ autocfg-1.0.1 \ beef-0.5.1 \ bitflags-1.2.1 \ cc-1.0.69 \ cfg-if-0.1.10 \ cfg-if-1.0.0 \ clap-3.0.14 \ clap_derive-3.0.14 \ clipboard-win-4.2.1 \ dirs-next-2.0.0 \ dirs-sys-next-0.1.2 \ endian-type-0.1.2 \ error-code-2.3.0 \ fd-lock-3.0.0 \ fnv-1.0.7 \ getrandom-0.2.3 \ hashbrown-0.11.2 \ heck-0.4.0 \ hermit-abi-0.1.18 \ indexmap-1.8.0 \ isatty-0.1.9 \ lazy_static-1.4.0 \ libc-0.2.99 \ libc-stdhandle-0.1.0 \ log-0.4.14 \ logos-0.12.0 \ logos-derive-0.12.0 \ memchr-2.4.1 \ memoffset-0.6.4 \ nibble_vec-0.1.0 \ nix-0.22.1 \ numtoa-0.1.0 \ os_str_bytes-6.0.0 \ proc-macro-error-1.0.4 \ proc-macro-error-attr-1.0.4 \ proc-macro2-1.0.36 \ quote-1.0.9 \ radix_trie-0.2.1 \ redox_syscall-0.1.57 \ redox_syscall-0.2.6 \ redox_termios-0.1.2 \ redox_users-0.4.0 \ regex-1.5.4 \ regex-syntax-0.6.25 \ rustyline-9.0.0 \ scopeguard-1.1.0 \ signal-hook-0.3.8 \ signal-hook-registry-1.3.0 \ smallvec-1.6.1 \ str-buf-1.0.5 \ strsim-0.10.0 \ syn-1.0.86 \ termcolor-1.1.2 \ termion-1.5.6 \ textwrap-0.14.2 \ unicode-segmentation-1.7.1 \ unicode-width-0.1.8 \ unicode-xid-0.2.1 \ utf8-ranges-1.0.4 \ utf8parse-0.2.0 \ version_check-0.9.3 \ wasi-0.10.2+wasi-snapshot-preview1 \ winapi-0.3.9 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-util-0.1.5 \ winapi-x86_64-pc-windows-gnu-0.4.0 PLIST_FILES= bin/jless post-install: @${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/jless .include diff --git a/textproc/jql/Makefile b/textproc/jql/Makefile index 9210c930b7aa..a3207aacae61 100644 --- a/textproc/jql/Makefile +++ b/textproc/jql/Makefile @@ -1,154 +1,155 @@ PORTNAME= jql DISTVERSIONPREFIX= v DISTVERSION= 5.0.0 +PORTREVISION= 1 CATEGORIES= textproc MAINTAINER= yuri@FreeBSD.org COMMENT= JSON Query Language CLI tool built with Rust LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE-MIT USES= cargo USE_GITHUB= yes GH_ACCOUNT= yamafaktory CARGO_CRATES= ansi_term-0.12.1 \ anyhow-1.0.61 \ async-attributes-1.1.2 \ async-channel-1.6.1 \ async-executor-1.4.1 \ async-global-executor-2.0.3 \ async-io-1.6.0 \ async-lock-2.5.0 \ async-mutex-1.4.0 \ async-process-1.3.0 \ async-std-1.12.0 \ async-task-4.2.0 \ atomic-waker-1.0.0 \ atty-0.2.14 \ autocfg-1.1.0 \ bitflags-1.3.2 \ block-buffer-0.10.2 \ blocking-1.2.0 \ bstr-0.2.17 \ bumpalo-3.9.1 \ cache-padded-1.2.0 \ cast-0.2.7 \ cast-0.3.0 \ cc-1.0.73 \ cfg-if-1.0.0 \ clap-2.34.0 \ clap-3.2.17 \ clap_lex-0.2.3 \ colored_json-2.1.0 \ concurrent-queue-1.2.2 \ cpufeatures-0.2.2 \ criterion-0.3.6 \ criterion-plot-0.4.4 \ crossbeam-channel-0.5.4 \ crossbeam-deque-0.8.1 \ crossbeam-epoch-0.9.8 \ crossbeam-utils-0.8.8 \ crypto-common-0.1.6 \ csv-1.1.6 \ csv-core-0.1.10 \ ctor-0.1.22 \ digest-0.10.3 \ either-1.6.1 \ event-listener-2.5.2 \ fastrand-1.7.0 \ futures-channel-0.3.21 \ futures-core-0.3.21 \ futures-io-0.3.21 \ futures-lite-1.12.0 \ generic-array-0.14.6 \ gloo-timers-0.2.3 \ half-1.8.2 \ hashbrown-0.11.2 \ hermit-abi-0.1.19 \ indexmap-1.8.1 \ instant-0.1.12 \ itertools-0.10.3 \ itoa-0.4.8 \ itoa-1.0.1 \ js-sys-0.3.56 \ kv-log-macro-1.0.7 \ lazy_static-1.4.0 \ libc-0.2.121 \ log-0.4.16 \ memchr-2.4.1 \ memoffset-0.6.5 \ num-traits-0.2.14 \ num_cpus-1.13.1 \ once_cell-1.12.0 \ oorandom-11.1.3 \ os_str_bytes-6.0.0 \ parking-2.0.0 \ pest-2.2.1 \ pest_derive-2.2.1 \ pest_generator-2.2.1 \ pest_meta-2.2.1 \ pin-project-lite-0.2.8 \ pin-utils-0.1.0 \ plotters-0.3.1 \ plotters-backend-0.3.2 \ plotters-svg-0.3.1 \ polling-2.2.0 \ proc-macro2-1.0.36 \ quote-1.0.17 \ rayon-1.5.3 \ rayon-core-1.9.2 \ regex-1.5.5 \ regex-automata-0.1.10 \ regex-syntax-0.6.25 \ rustc_version-0.4.0 \ ryu-1.0.9 \ same-file-1.0.6 \ scopeguard-1.1.0 \ semver-1.0.7 \ serde-1.0.136 \ serde_cbor-0.11.2 \ serde_derive-1.0.136 \ serde_json-1.0.83 \ sha-1-0.10.0 \ signal-hook-0.3.13 \ signal-hook-registry-1.4.0 \ slab-0.4.5 \ socket2-0.4.4 \ strsim-0.10.0 \ syn-1.0.90 \ termcolor-1.1.3 \ textwrap-0.11.0 \ textwrap-0.15.0 \ thiserror-1.0.32 \ thiserror-impl-1.0.32 \ tinytemplate-1.2.1 \ typenum-1.15.0 \ ucd-trie-0.1.3 \ unicode-width-0.1.9 \ unicode-xid-0.2.2 \ value-bag-1.0.0-alpha.8 \ version_check-0.9.4 \ waker-fn-1.1.0 \ walkdir-2.3.2 \ wasm-bindgen-0.2.79 \ wasm-bindgen-backend-0.2.79 \ wasm-bindgen-futures-0.4.29 \ wasm-bindgen-macro-0.2.79 \ wasm-bindgen-macro-support-0.2.79 \ wasm-bindgen-shared-0.2.79 \ web-sys-0.3.56 \ wepoll-ffi-0.1.2 \ winapi-0.3.9 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-util-0.1.5 \ winapi-x86_64-pc-windows-gnu-0.4.0 PLIST_FILES= bin/${PORTNAME} post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/${PORTNAME} .include diff --git a/textproc/mdbook-linkcheck/Makefile b/textproc/mdbook-linkcheck/Makefile index 39ef292530d8..670dac017cda 100644 --- a/textproc/mdbook-linkcheck/Makefile +++ b/textproc/mdbook-linkcheck/Makefile @@ -1,234 +1,234 @@ PORTNAME= mdbook-linkcheck DISTVERSIONPREFIX= v DISTVERSION= 0.7.6 -PORTREVISION= 7 +PORTREVISION= 8 CATEGORIES= textproc MAINTAINER= jbeich@FreeBSD.org COMMENT= mdBook backend to check links LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= cargo ssl USE_GITHUB= yes GH_ACCOUNT= Michael-F-Bryan PLIST_FILES= bin/${PORTNAME} CARGO_CRATES= adler-1.0.2 \ aho-corasick-0.7.18 \ ansi_term-0.11.0 \ ansi_term-0.12.1 \ anyhow-1.0.45 \ atty-0.2.14 \ autocfg-1.0.1 \ base64-0.13.0 \ bincode-1.3.3 \ bitflags-1.3.2 \ block-buffer-0.7.3 \ block-padding-0.1.5 \ bstr-0.2.17 \ build-info-0.0.21 \ build-info-build-0.0.21 \ build-info-common-0.0.21 \ build-info-proc-0.0.21 \ bumpalo-3.8.0 \ byte-tools-0.3.1 \ byteorder-1.4.3 \ bytes-1.1.0 \ bzip2-0.4.3 \ bzip2-sys-0.1.11+1.0.8 \ cargo-platform-0.1.2 \ cargo_metadata-0.12.3 \ cc-1.0.72 \ cfg-if-1.0.0 \ chrono-0.4.19 \ clap-2.33.3 \ codespan-0.11.1 \ codespan-reporting-0.11.1 \ convert_case-0.4.0 \ core-foundation-0.9.2 \ core-foundation-sys-0.8.3 \ crc32fast-1.2.1 \ ctor-0.1.21 \ derive_more-0.99.16 \ diff-0.1.12 \ difference-2.0.0 \ digest-0.8.1 \ dunce-1.0.2 \ encoding_rs-0.8.29 \ env_logger-0.7.1 \ env_logger-0.8.4 \ env_logger-0.9.0 \ fake-simd-0.1.2 \ flate2-1.0.22 \ fnv-1.0.7 \ foreign-types-0.3.2 \ foreign-types-shared-0.1.1 \ form_urlencoded-1.0.1 \ format-buf-1.0.0 \ futures-0.3.17 \ futures-channel-0.3.17 \ futures-core-0.3.17 \ futures-executor-0.3.17 \ futures-io-0.3.17 \ futures-macro-0.3.17 \ futures-sink-0.3.17 \ futures-task-0.3.17 \ futures-util-0.3.17 \ generic-array-0.12.4 \ getopts-0.2.21 \ getrandom-0.2.3 \ git2-0.13.23 \ glob-0.3.0 \ h2-0.3.7 \ handlebars-4.1.4 \ hashbrown-0.11.2 \ heck-0.3.3 \ hermit-abi-0.1.19 \ http-0.2.5 \ http-body-0.4.4 \ httparse-1.5.1 \ httpdate-1.0.1 \ humantime-1.3.0 \ humantime-2.1.0 \ hyper-0.14.14 \ hyper-tls-0.5.0 \ idna-0.2.3 \ indexmap-1.7.0 \ ipnet-2.3.1 \ itoa-0.4.8 \ jobserver-0.1.24 \ js-sys-0.3.55 \ lazy_static-1.4.0 \ libc-0.2.107 \ libgit2-sys-0.12.24+1.3.0 \ libz-sys-1.1.3 \ linkcheck-0.4.1 \ linkify-0.7.0 \ log-0.4.14 \ lzma-sys-0.1.17 \ maplit-1.0.2 \ matches-0.1.9 \ mdbook-0.4.13 \ memchr-2.4.1 \ mime-0.3.16 \ miniz_oxide-0.4.4 \ mio-0.7.14 \ miow-0.3.7 \ native-tls-0.2.8 \ ntapi-0.3.6 \ num-bigint-0.3.3 \ num-integer-0.1.44 \ num-traits-0.2.14 \ num_cpus-1.13.0 \ once_cell-1.8.0 \ opaque-debug-0.2.3 \ opener-0.5.0 \ openssl-0.10.38 \ openssl-probe-0.1.4 \ openssl-src-300.0.2+3.0.0 \ openssl-sys-0.9.70 \ output_vt100-0.1.2 \ percent-encoding-2.1.0 \ pest-2.1.3 \ pest_derive-2.1.0 \ pest_generator-2.1.3 \ pest_meta-2.1.3 \ pin-project-lite-0.2.7 \ pin-utils-0.1.0 \ pkg-config-0.3.22 \ ppv-lite86-0.2.15 \ pretty_assertions-0.6.1 \ pretty_assertions-1.0.0 \ proc-macro-error-1.0.4 \ proc-macro-error-attr-1.0.4 \ proc-macro-hack-0.5.19 \ proc-macro-nested-0.1.7 \ proc-macro2-1.0.32 \ pulldown-cmark-0.7.2 \ pulldown-cmark-0.8.0 \ quick-error-1.2.3 \ quick-error-2.0.1 \ quote-1.0.10 \ rand-0.8.4 \ rand_chacha-0.3.1 \ rand_core-0.6.3 \ rand_hc-0.3.1 \ redox_syscall-0.2.10 \ regex-1.5.4 \ regex-automata-0.1.10 \ regex-syntax-0.6.25 \ remove_dir_all-0.5.3 \ reqwest-0.11.6 \ rustc_version-0.3.3 \ ryu-1.0.5 \ schannel-0.1.19 \ security-framework-2.4.2 \ security-framework-sys-2.4.2 \ semver-0.11.0 \ semver-1.0.4 \ semver-parser-0.10.2 \ serde-1.0.130 \ serde_derive-1.0.130 \ serde_json-1.0.69 \ serde_urlencoded-0.7.0 \ sha-1-0.8.2 \ shlex-1.1.0 \ slab-0.4.5 \ socket2-0.4.2 \ strsim-0.8.0 \ structopt-0.3.25 \ structopt-derive-0.4.18 \ syn-1.0.81 \ tempfile-3.2.0 \ termcolor-1.1.2 \ textwrap-0.11.0 \ thiserror-1.0.30 \ thiserror-impl-1.0.30 \ time-0.1.43 \ tinyvec-1.5.1 \ tinyvec_macros-0.1.0 \ tokio-1.13.0 \ tokio-native-tls-0.3.0 \ tokio-util-0.6.9 \ toml-0.5.8 \ topological-sort-0.1.0 \ tower-service-0.3.1 \ tracing-0.1.29 \ tracing-core-0.1.21 \ try-lock-0.2.3 \ typenum-1.14.0 \ ucd-trie-0.1.3 \ unicase-2.6.0 \ unicode-bidi-0.3.7 \ unicode-normalization-0.1.19 \ unicode-segmentation-1.8.0 \ unicode-width-0.1.9 \ unicode-xid-0.2.2 \ url-2.2.2 \ vcpkg-0.2.15 \ vec_map-0.8.2 \ version_check-0.9.3 \ want-0.3.0 \ wasi-0.10.2+wasi-snapshot-preview1 \ wasm-bindgen-0.2.78 \ wasm-bindgen-backend-0.2.78 \ wasm-bindgen-futures-0.4.28 \ wasm-bindgen-macro-0.2.78 \ wasm-bindgen-macro-support-0.2.78 \ wasm-bindgen-shared-0.2.78 \ web-sys-0.3.55 \ winapi-0.3.9 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-util-0.1.5 \ winapi-x86_64-pc-windows-gnu-0.4.0 \ winreg-0.7.0 \ xz2-0.1.6 \ zip-0.5.13 post-patch: @${REINPLACE_CMD} -e '/native-tls/s/-vendored//' \ ${WRKSRC}/Cargo.toml .include diff --git a/textproc/mdbook-mermaid/Makefile b/textproc/mdbook-mermaid/Makefile index 851ec9db8d60..cff5a23d1f51 100644 --- a/textproc/mdbook-mermaid/Makefile +++ b/textproc/mdbook-mermaid/Makefile @@ -1,114 +1,115 @@ PORTNAME= mdbook-mermaid DISTVERSIONPREFIX= v DISTVERSION= 0.11.2 +PORTREVISION= 1 CATEGORIES= textproc MAINTAINER= jbeich@FreeBSD.org COMMENT= Preprocessor for mdBook to add mermaid.js support LICENSE= MPL20 LICENSE_FILE= ${WRKSRC}/LICENSE USES= cargo USE_GITHUB= yes GH_ACCOUNT= badboy PLIST_FILES= bin/${PORTNAME} CARGO_CRATES= aho-corasick-0.7.18 \ ansi_term-0.12.1 \ anyhow-1.0.57 \ assert_cmd-2.0.4 \ atty-0.2.14 \ autocfg-1.1.0 \ bitflags-1.3.2 \ block-buffer-0.7.3 \ block-padding-0.1.5 \ bstr-0.2.17 \ byte-tools-0.3.1 \ byteorder-1.4.3 \ bytes-1.1.0 \ cfg-if-1.0.0 \ chrono-0.4.19 \ clap-3.1.18 \ clap_complete-3.1.4 \ clap_lex-0.2.0 \ combine-4.6.4 \ ctor-0.1.22 \ diff-0.1.12 \ difflib-0.4.0 \ digest-0.8.1 \ doc-comment-0.3.3 \ either-1.6.1 \ env_logger-0.7.1 \ env_logger-0.9.0 \ fake-simd-0.1.2 \ fastrand-1.7.0 \ generic-array-0.12.4 \ handlebars-4.3.0 \ hashbrown-0.11.2 \ hermit-abi-0.1.19 \ humantime-1.3.0 \ humantime-2.1.0 \ indexmap-1.8.1 \ instant-0.1.12 \ itertools-0.10.3 \ itoa-1.0.2 \ lazy_static-1.4.0 \ libc-0.2.126 \ log-0.4.17 \ maplit-1.0.2 \ mdbook-0.4.18 \ memchr-2.5.0 \ num-integer-0.1.45 \ num-traits-0.2.15 \ opaque-debug-0.2.3 \ opener-0.5.0 \ os_str_bytes-6.1.0 \ output_vt100-0.1.3 \ pest-2.1.3 \ pest_derive-2.1.0 \ pest_generator-2.1.3 \ pest_meta-2.1.3 \ predicates-2.1.1 \ predicates-core-1.0.3 \ predicates-tree-1.0.5 \ pretty_assertions-1.2.1 \ proc-macro2-1.0.39 \ pulldown-cmark-0.9.1 \ quick-error-1.2.3 \ quote-1.0.18 \ redox_syscall-0.2.13 \ regex-1.5.6 \ regex-automata-0.1.10 \ regex-syntax-0.6.26 \ remove_dir_all-0.5.3 \ ryu-1.0.10 \ serde-1.0.137 \ serde_derive-1.0.137 \ serde_json-1.0.81 \ sha-1-0.8.2 \ shlex-1.1.0 \ strsim-0.10.0 \ syn-1.0.95 \ tempfile-3.3.0 \ termcolor-1.1.3 \ termtree-0.2.4 \ textwrap-0.15.0 \ thiserror-1.0.31 \ thiserror-impl-1.0.31 \ time-0.1.43 \ toml-0.5.9 \ toml_edit-0.14.4 \ topological-sort-0.1.0 \ typenum-1.15.0 \ ucd-trie-0.1.3 \ unicase-2.6.0 \ unicode-ident-1.0.0 \ version_check-0.9.4 \ wait-timeout-0.2.0 \ winapi-0.3.9 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-util-0.1.5 \ winapi-x86_64-pc-windows-gnu-0.4.0 .include diff --git a/textproc/mdbook/Makefile b/textproc/mdbook/Makefile index a0ef5663ead7..107cc15e9b01 100644 --- a/textproc/mdbook/Makefile +++ b/textproc/mdbook/Makefile @@ -1,242 +1,242 @@ PORTNAME= mdbook DISTVERSIONPREFIX= v DISTVERSION= 0.4.15 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= textproc MAINTAINER= 0mp@FreeBSD.org COMMENT= Create book from Markdown files (like GitBook but implemented in Rust) LICENSE= MPL20 LICENSE_FILE= ${WRKSRC}/LICENSE USES= cargo cpe CPE_VENDOR= rust-lang USE_GITHUB= yes GH_ACCOUNT= rust-lang GH_PROJECT= mdBook CARGO_CRATES= aho-corasick-0.7.18 \ ammonia-3.1.2 \ ansi_term-0.11.0 \ anyhow-1.0.43 \ assert_cmd-1.0.7 \ atty-0.2.14 \ autocfg-1.0.1 \ base64-0.13.0 \ bit-set-0.5.2 \ bit-vec-0.6.3 \ bitflags-1.3.2 \ block-buffer-0.7.3 \ block-buffer-0.9.0 \ block-padding-0.1.5 \ bstr-0.2.17 \ byte-tools-0.3.1 \ byteorder-1.4.3 \ bytes-1.0.1 \ cfg-if-0.1.10 \ cfg-if-1.0.0 \ chrono-0.4.19 \ clap-2.33.3 \ cpufeatures-0.1.5 \ ctor-0.1.20 \ difference-2.0.0 \ difflib-0.4.0 \ digest-0.8.1 \ digest-0.9.0 \ doc-comment-0.3.3 \ either-1.6.1 \ elasticlunr-rs-2.3.13 \ env_logger-0.7.1 \ fake-simd-0.1.2 \ filetime-0.2.15 \ float-cmp-0.9.0 \ fnv-1.0.7 \ form_urlencoded-1.0.1 \ fsevent-0.4.0 \ fsevent-sys-2.0.1 \ fuchsia-zircon-0.3.3 \ fuchsia-zircon-sys-0.3.3 \ futf-0.1.4 \ futures-0.3.16 \ futures-channel-0.3.16 \ futures-core-0.3.16 \ futures-io-0.3.16 \ futures-macro-0.3.16 \ futures-sink-0.3.16 \ futures-task-0.3.16 \ futures-util-0.3.16 \ generic-array-0.12.4 \ generic-array-0.14.4 \ getopts-0.2.21 \ getrandom-0.1.16 \ getrandom-0.2.3 \ gitignore-1.0.7 \ glob-0.3.0 \ h2-0.3.4 \ handlebars-4.1.2 \ hashbrown-0.11.2 \ headers-0.3.4 \ headers-core-0.2.0 \ heck-0.3.3 \ hermit-abi-0.1.19 \ html5ever-0.25.1 \ http-0.2.4 \ http-body-0.4.3 \ httparse-1.5.1 \ httpdate-1.0.1 \ humantime-1.3.0 \ hyper-0.14.11 \ idna-0.2.3 \ indexmap-1.7.0 \ inotify-0.7.1 \ inotify-sys-0.1.5 \ input_buffer-0.4.0 \ iovec-0.1.4 \ itertools-0.10.1 \ itoa-0.4.8 \ kernel32-sys-0.2.2 \ lazy_static-1.4.0 \ lazycell-1.3.0 \ libc-0.2.100 \ log-0.4.14 \ mac-0.1.1 \ maplit-1.0.2 \ markup5ever-0.10.1 \ markup5ever_rcdom-0.1.0 \ matches-0.1.9 \ memchr-2.4.1 \ mime-0.3.16 \ mime_guess-2.0.3 \ mio-0.6.23 \ mio-0.7.13 \ mio-extras-2.0.6 \ miow-0.2.2 \ miow-0.3.7 \ net2-0.2.37 \ new_debug_unreachable-1.0.4 \ normalize-line-endings-0.3.0 \ notify-4.0.17 \ ntapi-0.3.6 \ num-integer-0.1.44 \ num-traits-0.2.14 \ num_cpus-1.13.0 \ opaque-debug-0.2.3 \ opaque-debug-0.3.0 \ opener-0.5.0 \ output_vt100-0.1.2 \ percent-encoding-2.1.0 \ pest-2.1.3 \ pest_derive-2.1.0 \ pest_generator-2.1.3 \ pest_meta-2.1.3 \ phf-0.8.0 \ phf_codegen-0.8.0 \ phf_generator-0.8.0 \ phf_shared-0.8.0 \ pin-project-1.0.8 \ pin-project-internal-1.0.8 \ pin-project-lite-0.2.7 \ pin-utils-0.1.0 \ ppv-lite86-0.2.10 \ precomputed-hash-0.1.1 \ predicates-2.0.1 \ predicates-core-1.0.2 \ predicates-tree-1.0.2 \ pretty_assertions-0.6.1 \ proc-macro-hack-0.5.19 \ proc-macro-nested-0.1.7 \ proc-macro2-1.0.28 \ pulldown-cmark-0.9.0 \ quick-error-1.2.3 \ quick-error-2.0.1 \ quote-1.0.9 \ rand-0.7.3 \ rand-0.8.4 \ rand_chacha-0.2.2 \ rand_chacha-0.3.1 \ rand_core-0.5.1 \ rand_core-0.6.3 \ rand_hc-0.2.0 \ rand_hc-0.3.1 \ rand_pcg-0.2.1 \ redox_syscall-0.2.10 \ regex-1.5.4 \ regex-automata-0.1.10 \ regex-syntax-0.6.25 \ remove_dir_all-0.5.3 \ ryu-1.0.5 \ same-file-1.0.6 \ scoped-tls-1.0.0 \ select-0.5.0 \ semver-0.11.0 \ semver-parser-0.10.2 \ serde-1.0.129 \ serde_derive-1.0.129 \ serde_json-1.0.66 \ serde_urlencoded-0.7.0 \ sha-1-0.8.2 \ sha-1-0.9.7 \ shlex-1.0.0 \ siphasher-0.3.6 \ slab-0.4.4 \ socket2-0.4.1 \ string_cache-0.8.1 \ string_cache_codegen-0.5.1 \ strsim-0.8.0 \ strum-0.21.0 \ strum_macros-0.21.1 \ syn-1.0.75 \ tempfile-3.2.0 \ tendril-0.4.2 \ termcolor-1.1.2 \ textwrap-0.11.0 \ time-0.1.43 \ tinyvec-1.3.1 \ tinyvec_macros-0.1.0 \ tokio-1.10.0 \ tokio-macros-1.3.0 \ tokio-stream-0.1.7 \ tokio-tungstenite-0.13.0 \ tokio-util-0.6.7 \ toml-0.5.8 \ topological-sort-0.1.0 \ tower-service-0.3.1 \ tracing-0.1.26 \ tracing-core-0.1.19 \ treeline-0.1.0 \ try-lock-0.2.3 \ tungstenite-0.12.0 \ typenum-1.13.0 \ ucd-trie-0.1.3 \ unicase-2.6.0 \ unicode-bidi-0.3.6 \ unicode-normalization-0.1.19 \ unicode-segmentation-1.8.0 \ unicode-width-0.1.8 \ unicode-xid-0.2.2 \ url-2.2.2 \ utf-8-0.7.6 \ vec_map-0.8.2 \ version_check-0.9.3 \ wait-timeout-0.2.0 \ walkdir-2.3.2 \ want-0.3.0 \ warp-0.3.1 \ wasi-0.9.0+wasi-snapshot-preview1 \ wasi-0.10.2+wasi-snapshot-preview1 \ winapi-0.2.8 \ winapi-0.3.9 \ winapi-build-0.1.1 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-util-0.1.5 \ winapi-x86_64-pc-windows-gnu-0.4.0 \ ws2_32-sys-0.2.1 \ xml5ever-0.16.1 PLIST_FILES= bin/mdbook post-install: @${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/mdbook .include diff --git a/textproc/meilisearch/Makefile b/textproc/meilisearch/Makefile index 157b55a76380..3dd3621d82e6 100644 --- a/textproc/meilisearch/Makefile +++ b/textproc/meilisearch/Makefile @@ -1,421 +1,421 @@ PORTNAME= meilisearch DISTVERSIONPREFIX= v DISTVERSION= 0.27.2 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= textproc MASTER_SITES= https://github.com/meilisearch/mini-dashboard/releases/download/v${DASHBOARD_VERSION}/build.zip?dummy=/:mini_dashboard_assets \ SF/mecab/mecab-ipadic/2.7.0-20070801/:mecab_ipadic DISTFILES= ${MINIDASHBOARDFILE}:mini_dashboard_assets \ mecab-ipadic-2.7.0-20070801.tar.gz:mecab_ipadic MAINTAINER= ashish@FreeBSD.org COMMENT= Powerful, fast, and an easy to use search engine LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE LIB_DEPENDS= liblmdb.so:databases/lmdb USES= cargo pkgconfig USE_GITHUB= yes DASHBOARD_VERSION= 0.1.10 MINIDASHBOARDFILE= meilisearch-mini-dashboard-build-${DASHBOARD_VERSION}.zip CARGO_INSTALL_PATH= meilisearch-http CARGO_CRATES= actix-codec-0.5.0 \ actix-cors-0.6.1 \ actix-http-3.0.4 \ actix-macros-0.2.3 \ actix-router-0.5.0 \ actix-rt-2.7.0 \ actix-server-2.1.1 \ actix-service-2.0.2 \ actix-tls-3.0.3 \ actix-utils-3.0.0 \ actix-web-4.0.1 \ actix-web-codegen-4.0.0 \ addr2line-0.17.0 \ adler-1.0.2 \ ahash-0.3.8 \ ahash-0.7.6 \ aho-corasick-0.7.18 \ alloc-no-stdlib-2.0.3 \ alloc-stdlib-0.2.1 \ anyhow-1.0.56 \ assert-json-diff-2.0.1 \ async-stream-0.3.3 \ async-stream-impl-0.3.3 \ async-trait-0.1.53 \ atomic-polyfill-0.1.7 \ atomic_refcell-0.1.8 \ atty-0.2.14 \ autocfg-1.1.0 \ backtrace-0.3.64 \ bare-metal-0.2.5 \ bare-metal-1.0.0 \ base64-0.13.0 \ big_s-1.0.2 \ bimap-0.6.2 \ bincode-1.3.3 \ bit-set-0.5.2 \ bit-vec-0.6.3 \ bit_field-0.10.1 \ bitfield-0.13.2 \ bitflags-1.3.2 \ block-buffer-0.10.2 \ brotli-3.3.4 \ brotli-decompressor-2.3.2 \ bstr-0.2.17 \ build_const-0.2.2 \ bumpalo-3.9.1 \ byte-unit-4.0.14 \ bytecount-0.6.2 \ bytemuck-1.9.1 \ bytemuck_derive-1.1.0 \ byteorder-1.4.3 \ bytes-1.1.0 \ bytestring-1.0.0 \ bzip2-0.4.3 \ bzip2-sys-0.1.11+1.0.8 \ cargo_toml-0.11.5 \ cc-1.0.73 \ cedarwood-0.4.5 \ cfg-if-0.1.10 \ cfg-if-1.0.0 \ change-detection-1.2.0 \ character_converter-1.0.0 \ chunked_transfer-1.4.0 \ clap-3.1.8 \ clap_derive-3.1.7 \ concat-arrays-0.1.2 \ convert_case-0.4.0 \ cookie-0.16.0 \ core-foundation-sys-0.8.3 \ cortex-m-0.7.4 \ cow-utils-0.1.2 \ cpufeatures-0.2.2 \ crc-1.8.1 \ crc32fast-1.3.2 \ critical-section-0.2.6 \ crossbeam-channel-0.5.4 \ crossbeam-deque-0.8.1 \ crossbeam-epoch-0.9.8 \ crossbeam-queue-0.1.2 \ crossbeam-utils-0.6.6 \ crossbeam-utils-0.8.8 \ crypto-common-0.1.3 \ csv-1.1.6 \ csv-core-0.1.10 \ derivative-2.2.0 \ derive_more-0.99.17 \ deunicode-1.3.1 \ difflib-0.4.0 \ digest-0.10.3 \ dirs-next-1.0.2 \ dirs-sys-next-0.1.2 \ downcast-0.11.0 \ either-1.6.1 \ embedded-hal-0.2.7 \ encoding-0.2.33 \ encoding-index-japanese-1.20141219.5 \ encoding-index-korean-1.20141219.5 \ encoding-index-simpchinese-1.20141219.5 \ encoding-index-singlebyte-1.20141219.5 \ encoding-index-tradchinese-1.20141219.5 \ encoding_index_tests-0.1.4 \ encoding_rs-0.8.31 \ enum-iterator-0.7.0 \ enum-iterator-derive-0.7.0 \ env_logger-0.9.0 \ fastrand-1.7.0 \ filetime-0.2.15 \ firestorm-0.5.0 \ flate2-1.0.22 \ float-cmp-0.9.0 \ fnv-1.0.7 \ form_urlencoded-1.0.1 \ fragile-1.2.0 \ fs_extra-1.2.0 \ fst-0.4.7 \ futures-0.3.21 \ futures-channel-0.3.21 \ futures-core-0.3.21 \ futures-executor-0.3.21 \ futures-io-0.3.21 \ futures-macro-0.3.21 \ futures-sink-0.3.21 \ futures-task-0.3.21 \ futures-util-0.3.21 \ fxhash-0.2.1 \ generic-array-0.14.5 \ geoutils-0.4.1 \ getrandom-0.2.6 \ getset-0.1.2 \ gimli-0.26.1 \ git2-0.14.2 \ glob-0.3.0 \ grenad-0.4.1 \ h2-0.3.13 \ hash32-0.2.1 \ hashbrown-0.7.2 \ hashbrown-0.11.2 \ heapless-0.7.10 \ heck-0.4.0 \ hermit-abi-0.1.19 \ hex-0.4.3 \ http-0.2.6 \ http-body-0.4.4 \ httparse-1.6.0 \ httpdate-1.0.2 \ humantime-2.1.0 \ hyper-0.14.18 \ hyper-rustls-0.23.0 \ idna-0.2.3 \ indexmap-1.8.1 \ instant-0.1.12 \ ipnet-2.4.0 \ itertools-0.10.3 \ itoa-0.4.8 \ itoa-1.0.1 \ jieba-rs-0.6.6 \ jobserver-0.1.24 \ js-sys-0.3.56 \ jsonwebtoken-8.0.1 \ language-tags-0.3.2 \ lazy_static-1.4.0 \ levenshtein_automata-0.2.1 \ libc-0.2.122 \ libgit2-sys-0.13.2+1.4.2 \ libm-0.2.2 \ libz-sys-1.1.5 \ lindera-0.12.6 \ lindera-cc-cedict-builder-0.12.6 \ lindera-core-0.12.6 \ lindera-decompress-0.12.6 \ lindera-dictionary-0.12.6 \ lindera-ipadic-0.12.6 \ lindera-ipadic-builder-0.12.6 \ lindera-ko-dic-builder-0.12.6 \ lindera-unidic-builder-0.12.6 \ local-channel-0.1.2 \ local-waker-0.1.2 \ lock_api-0.4.7 \ log-0.4.16 \ logging_timer-1.1.0 \ logging_timer_proc_macros-1.1.0 \ lzma-rs-0.2.0 \ maplit-1.0.2 \ matches-0.1.9 \ memchr-2.4.1 \ memmap2-0.5.3 \ memoffset-0.6.5 \ mime-0.3.16 \ mime_guess-2.0.4 \ minimal-lexical-0.2.1 \ miniz_oxide-0.4.4 \ mio-0.8.2 \ miow-0.3.7 \ mockall-0.11.0 \ mockall_derive-0.11.0 \ nb-0.1.3 \ nb-1.0.0 \ nom-7.1.1 \ nom_locate-4.0.0 \ normalize-line-endings-0.3.0 \ ntapi-0.3.7 \ num-bigint-0.4.3 \ num-integer-0.1.44 \ num-traits-0.2.14 \ num_cpus-1.13.1 \ num_threads-0.1.5 \ object-0.27.1 \ obkv-0.2.0 \ once_cell-1.10.0 \ ordered-float-2.10.0 \ os_str_bytes-6.0.0 \ page_size-0.4.2 \ parking_lot-0.12.0 \ parking_lot_core-0.9.2 \ paste-1.0.7 \ path-matchers-1.0.2 \ path-slash-0.1.4 \ pem-1.0.2 \ percent-encoding-2.1.0 \ phf-0.10.1 \ phf_codegen-0.10.0 \ phf_generator-0.10.0 \ phf_shared-0.10.0 \ pin-project-lite-0.2.8 \ pin-utils-0.1.0 \ pkg-config-0.3.25 \ platform-dirs-0.3.0 \ ppv-lite86-0.2.16 \ predicates-2.1.1 \ predicates-core-1.0.3 \ predicates-tree-1.0.5 \ proc-macro-error-1.0.4 \ proc-macro-error-attr-1.0.4 \ proc-macro2-0.4.30 \ proc-macro2-1.0.37 \ proptest-1.0.0 \ proptest-derive-0.3.0 \ quick-error-1.2.3 \ quick-error-2.0.1 \ quickcheck-1.0.3 \ quote-0.6.13 \ quote-1.0.17 \ rand-0.8.5 \ rand_chacha-0.3.1 \ rand_core-0.6.3 \ rand_xorshift-0.3.0 \ rayon-1.5.1 \ rayon-core-1.9.1 \ redox_syscall-0.2.13 \ redox_users-0.4.3 \ regex-1.5.5 \ regex-automata-0.1.10 \ regex-syntax-0.6.25 \ remove_dir_all-0.5.3 \ reqwest-0.11.10 \ retain_mut-0.1.7 \ ring-0.16.20 \ riscv-0.7.0 \ riscv-target-0.1.2 \ roaring-0.9.0 \ rstar-0.9.3 \ rustc-demangle-0.1.21 \ rustc_version-0.2.3 \ rustc_version-0.4.0 \ rustls-0.20.4 \ rustls-pemfile-0.3.0 \ rustversion-1.0.6 \ rusty-fork-0.3.0 \ ryu-1.0.9 \ same-file-1.0.6 \ scopeguard-1.1.0 \ sct-0.7.0 \ segment-0.2.0 \ semver-0.9.0 \ semver-1.0.7 \ semver-parser-0.7.0 \ serde-1.0.136 \ serde_derive-1.0.136 \ serde_json-1.0.79 \ serde_url_params-0.2.1 \ serde_urlencoded-0.7.1 \ sha-1-0.10.0 \ sha2-0.10.2 \ signal-hook-registry-1.4.0 \ simple_asn1-0.6.1 \ siphasher-0.3.10 \ slab-0.4.6 \ slice-group-by-0.3.0 \ smallstr-0.3.0 \ smallvec-1.8.0 \ smartstring-1.0.1 \ socket2-0.4.4 \ spin-0.5.2 \ spin-0.9.2 \ stable_deref_trait-1.2.0 \ static-files-0.2.3 \ static_assertions-1.1.0 \ strsim-0.10.0 \ syn-0.15.44 \ syn-1.0.91 \ synchronoise-1.0.0 \ synstructure-0.12.6 \ sysinfo-0.23.8 \ tar-0.4.38 \ tempfile-3.3.0 \ termcolor-1.1.3 \ termtree-0.2.4 \ textwrap-0.15.0 \ thiserror-1.0.30 \ thiserror-impl-1.0.30 \ tikv-jemalloc-sys-0.4.3+5.2.1-patched.2 \ tikv-jemallocator-0.4.3 \ time-0.1.43 \ time-0.3.9 \ time-macros-0.2.4 \ tinyvec-1.5.1 \ tinyvec_macros-0.1.0 \ tokio-1.17.0 \ tokio-macros-1.7.0 \ tokio-rustls-0.23.3 \ tokio-stream-0.1.8 \ tokio-util-0.7.1 \ toml-0.5.8 \ tower-service-0.3.1 \ tracing-0.1.32 \ tracing-attributes-0.1.20 \ tracing-core-0.1.24 \ try-lock-0.2.3 \ typenum-1.15.0 \ unicase-2.6.0 \ unicode-bidi-0.3.7 \ unicode-normalization-0.1.19 \ unicode-segmentation-1.9.0 \ unicode-xid-0.1.0 \ unicode-xid-0.2.2 \ untrusted-0.7.1 \ ureq-2.4.0 \ url-2.2.2 \ urlencoding-2.1.0 \ utf8-width-0.1.6 \ uuid-0.8.2 \ vcell-0.1.3 \ vcpkg-0.2.15 \ vergen-7.0.0 \ version_check-0.9.4 \ void-1.0.2 \ volatile-register-0.2.1 \ wait-timeout-0.2.0 \ walkdir-2.3.2 \ want-0.3.0 \ wasi-0.10.2+wasi-snapshot-preview1 \ wasi-0.11.0+wasi-snapshot-preview1 \ wasm-bindgen-0.2.79 \ wasm-bindgen-backend-0.2.79 \ wasm-bindgen-futures-0.4.29 \ wasm-bindgen-macro-0.2.79 \ wasm-bindgen-macro-support-0.2.79 \ wasm-bindgen-shared-0.2.79 \ web-sys-0.3.56 \ webpki-0.22.0 \ webpki-roots-0.22.3 \ whatlang-0.13.0 \ whoami-1.2.1 \ winapi-0.3.9 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-util-0.1.5 \ winapi-x86_64-pc-windows-gnu-0.4.0 \ windows-sys-0.34.0 \ windows_aarch64_msvc-0.34.0 \ windows_i686_gnu-0.34.0 \ windows_i686_msvc-0.34.0 \ windows_x86_64_gnu-0.34.0 \ windows_x86_64_msvc-0.34.0 \ winreg-0.10.1 \ xattr-0.2.2 \ yada-0.5.0 \ zerocopy-0.3.0 \ zerocopy-derive-0.2.0 \ zip-0.5.13 \ heed,heed-traits,heed-types@git+https://github.com/meilisearch/heed?tag=v0.12.1\#fc017cf3394af737f92fd71e16f0499a78b79d65 \ actix-web-static-files@git+https://github.com/kilork/actix-web-static-files.git?rev=2d3b6160\#2d3b6160f0de4ba061c5d76b5704f34fb677f6df \ nelson@git+https://github.com/MarinPostma/nelson.git?rev=675f13885548fb415ead8fbb447e9e6d9314000a\#675f13885548fb415ead8fbb447e9e6d9314000a \ meilisearch-tokenizer@git+https://github.com/meilisearch/tokenizer?tag=v0.2.9\#1dfc8ad9f5b338c39c3bc5fd5b2d0c1328314ddc \ filter-parser,flatten-serde-json,json-depth-checker,milli@git+https://github.com/meilisearch/milli.git?tag=v0.26.6\#955aff48853c6032c75970dc710929f08b4f711a \ lmdb-rkv-sys@git+https://github.com/meilisearch/lmdb-rs\#d0b50d02938ee84e4e4372697ea991fe2a4cae3b PLIST_FILES= bin/${PORTNAME} post-extract: # repository is renamed to charabia upstream ${MV} ${WRKDIR}/charabia-0.2.9 ${WRKDIR}/tokenizer-0.2.9 post-patch: ${REINPLACE_CMD} -e 's,%%MINIDASHBOARDFILE%%,${DISTDIR}/${MINIDASHBOARDFILE},' \ ${WRKSRC}/meilisearch-http/build.rs ${GREP} -F -R -l %%WRKDIR%% ${WRKSRC} | ${XARGS} ${REINPLACE_CMD} -e \ 's,%%WRKDIR%%,${WRKDIR},' .include diff --git a/textproc/ripgrep-all/Makefile b/textproc/ripgrep-all/Makefile index 873f51b6f299..ac774392ff9a 100644 --- a/textproc/ripgrep-all/Makefile +++ b/textproc/ripgrep-all/Makefile @@ -1,185 +1,185 @@ PORTNAME= ripgrep-all DISTVERSIONPREFIX= v DISTVERSION= 0.9.6 -PORTREVISION= 10 +PORTREVISION= 11 CATEGORIES= textproc MAINTAINER= alexis.praga@free.fr COMMENT= Improved search capacities of ripgrep LICENSE= AGPLv3 LICENSE_FILE= ${WRKSRC}/LICENSE.md USES= cargo USE_GITHUB= yes GH_ACCOUNT= phiresky CARGO_CRATES= addr2line-0.12.0 \ adler32-1.0.4 \ aho-corasick-0.7.10 \ ansi_term-0.11.0 \ arrayref-0.3.6 \ atty-0.2.14 \ autocfg-0.1.7 \ autocfg-1.0.0 \ backtrace-0.3.48 \ bincode-1.2.1 \ bitflags-1.2.1 \ byteorder-1.3.4 \ bzip2-0.3.3 \ bzip2-sys-0.1.8+1.0.8 \ cachedir-0.1.1 \ cc-1.0.53 \ cfg-if-0.1.10 \ chrono-0.4.11 \ clap-2.33.1 \ cloudabi-0.0.3 \ crc32fast-1.2.0 \ crossbeam-0.7.3 \ crossbeam-channel-0.4.2 \ crossbeam-deque-0.7.3 \ crossbeam-epoch-0.8.2 \ crossbeam-queue-0.2.1 \ crossbeam-utils-0.7.2 \ encoding_rs-0.8.23 \ encoding_rs_io-0.1.7 \ env_logger-0.7.1 \ exitfailure-0.5.1 \ failure-0.1.8 \ failure_derive-0.1.8 \ fallible-iterator-0.2.0 \ fallible-streaming-iterator-0.1.9 \ filetime-0.2.10 \ fixedbitset-0.1.9 \ flate2-1.0.14 \ fnv-1.0.7 \ fuchsia-cprng-0.1.1 \ generic-array-0.12.3 \ getrandom-0.1.14 \ gimli-0.21.0 \ glob-0.3.0 \ heck-0.3.1 \ hermit-abi-0.1.13 \ humantime-1.3.0 \ idna-0.2.0 \ itoa-0.4.5 \ jobserver-0.1.21 \ lazy_static-1.4.0 \ libc-0.2.70 \ libsqlite3-sys-0.18.0 \ linked-hash-map-0.5.3 \ lmdb-rkv-0.14.0 \ lmdb-rkv-sys-0.11.0 \ lock_api-0.2.0 \ log-0.4.8 \ lru-cache-0.1.2 \ lzma-sys-0.1.16 \ matches-0.1.8 \ maybe-uninit-2.0.0 \ memchr-2.3.3 \ memoffset-0.5.4 \ miniz_oxide-0.3.6 \ nom-2.2.1 \ num-0.2.1 \ num-complex-0.2.4 \ num-integer-0.1.42 \ num-iter-0.1.40 \ num-rational-0.2.4 \ num-traits-0.2.11 \ object-0.19.0 \ ordered-float-1.0.2 \ ordermap-0.3.5 \ parking_lot-0.8.0 \ parking_lot_core-0.5.0 \ paste-0.1.12 \ paste-impl-0.1.12 \ path-clean-0.1.0 \ percent-encoding-2.1.0 \ petgraph-0.4.13 \ pkg-config-0.3.17 \ podio-0.1.6 \ ppv-lite86-0.2.8 \ proc-macro-error-1.0.2 \ proc-macro-error-attr-1.0.2 \ proc-macro-hack-0.5.15 \ proc-macro2-1.0.13 \ quick-error-1.2.3 \ quote-1.0.6 \ rand-0.6.5 \ rand-0.7.3 \ rand_chacha-0.1.1 \ rand_chacha-0.2.2 \ rand_core-0.3.1 \ rand_core-0.4.2 \ rand_core-0.5.1 \ rand_hc-0.1.0 \ rand_hc-0.2.0 \ rand_isaac-0.1.1 \ rand_jitter-0.1.4 \ rand_os-0.1.3 \ rand_pcg-0.1.2 \ rand_xorshift-0.1.1 \ rdrand-0.4.0 \ redox_syscall-0.1.56 \ regex-1.3.7 \ regex-syntax-0.6.17 \ remove_dir_all-0.5.2 \ rkv-0.10.4 \ rusqlite-0.23.1 \ rustc-demangle-0.1.16 \ rustc_version-0.2.3 \ ryu-1.0.4 \ scopeguard-1.1.0 \ semver-0.9.0 \ semver-parser-0.7.0 \ serde-1.0.110 \ serde_derive-1.0.110 \ serde_json-1.0.53 \ size_format-1.0.2 \ smallvec-0.6.13 \ smallvec-1.4.0 \ strsim-0.8.0 \ structopt-0.3.14 \ structopt-derive-0.4.7 \ syn-1.0.22 \ syn-mid-0.5.0 \ synstructure-0.12.3 \ tar-0.4.26 \ tempfile-3.1.0 \ term_size-0.3.2 \ termcolor-1.1.0 \ textwrap-0.11.0 \ thread_local-1.0.1 \ time-0.1.43 \ tree_magic_fork-0.2.2 \ typenum-1.12.0 \ unicode-bidi-0.3.4 \ unicode-normalization-0.1.12 \ unicode-segmentation-1.6.0 \ unicode-width-0.1.7 \ unicode-xid-0.2.0 \ url-2.1.1 \ uuid-0.8.1 \ vcpkg-0.2.8 \ vec_map-0.8.2 \ version_check-0.9.1 \ wasi-0.9.0+wasi-snapshot-preview1 \ winapi-0.3.8 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-util-0.1.5 \ winapi-x86_64-pc-windows-gnu-0.4.0 \ xattr-0.2.2 \ xz2-0.1.6 \ zip-0.5.5 \ zstd-0.5.1+zstd.1.4.4 \ zstd-safe-2.0.3+zstd.1.4.4 \ zstd-sys-1.4.15+zstd.1.4.4 PLIST_FILES= bin/rga \ bin/rga-preproc post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/rga ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/rga-preproc .include diff --git a/textproc/ripgrep/Makefile b/textproc/ripgrep/Makefile index aa8db07629b3..7a1eb63b7df5 100644 --- a/textproc/ripgrep/Makefile +++ b/textproc/ripgrep/Makefile @@ -1,133 +1,133 @@ PORTNAME= ripgrep DISTVERSION= 13.0.0 -PORTREVISION= 12 +PORTREVISION= 13 CATEGORIES= textproc MAINTAINER= petteri.valkonen@iki.fi COMMENT= Command line search tool LICENSE= MIT UNLICENSE LICENSE_COMB= dual LICENSE_FILE_MIT= ${WRKSRC}/LICENSE-MIT LICENSE_FILE_UNLICENSE= ${WRKSRC}/UNLICENSE BUILD_DEPENDS= asciidoctor:textproc/rubygem-asciidoctor USES= cargo cpe CPE_VENDOR= ${PORTNAME}_project USE_GITHUB= yes GH_ACCOUNT= BurntSushi CARGO_CRATES= aho-corasick-0.7.18 \ atty-0.2.14 \ base64-0.13.0 \ bitflags-1.2.1 \ bstr-0.2.16 \ bytecount-0.6.2 \ cc-1.0.68 \ cfg-if-0.1.10 \ cfg-if-1.0.0 \ clap-2.33.3 \ crossbeam-channel-0.5.1 \ crossbeam-utils-0.8.5 \ encoding_rs-0.8.28 \ encoding_rs_io-0.1.7 \ fnv-1.0.7 \ fs_extra-1.2.0 \ glob-0.3.0 \ globset-0.4.7 \ grep-0.2.8 \ grep-cli-0.1.6 \ grep-matcher-0.1.5 \ grep-pcre2-0.1.5 \ grep-printer-0.1.6 \ grep-regex-0.1.9 \ grep-searcher-0.1.8 \ hermit-abi-0.1.18 \ ignore-0.4.18 \ itoa-0.4.7 \ jemalloc-sys-0.3.2 \ jemallocator-0.3.2 \ jobserver-0.1.22 \ lazy_static-1.4.0 \ libc-0.2.97 \ libm-0.1.4 \ log-0.4.14 \ memchr-2.4.0 \ memmap2-0.3.0 \ num_cpus-1.13.0 \ once_cell-1.7.2 \ - packed_simd_2-0.3.7 \ + packed_simd_2-0.3.8 \ pcre2-0.2.3 \ pcre2-sys-0.2.5 \ pkg-config-0.3.19 \ proc-macro2-1.0.27 \ quote-1.0.9 \ regex-1.5.4 \ regex-automata-0.1.10 \ regex-syntax-0.6.25 \ ryu-1.0.5 \ same-file-1.0.6 \ serde-1.0.126 \ serde_derive-1.0.126 \ serde_json-1.0.64 \ strsim-0.8.0 \ syn-1.0.73 \ termcolor-1.1.2 \ textwrap-0.11.0 \ thread_local-1.1.3 \ unicode-width-0.1.8 \ unicode-xid-0.2.2 \ walkdir-2.3.2 \ winapi-0.3.9 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-util-0.1.5 \ winapi-x86_64-pc-windows-gnu-0.4.0 RIPGREP_OUTDIR= ${WRKDIR}/cargo-out CARGO_ENV= RIPGREP_OUTDIR=${RIPGREP_OUTDIR} PLIST_FILES= bin/rg \ etc/bash_completion.d/rg.bash \ man/man1/rg.1.gz \ share/fish/vendor_completions.d/rg.fish \ share/zsh/site-functions/_rg PORTDOCS= CHANGELOG.md FAQ.md GUIDE.md OPTIONS_DEFINE= DOCS PCRE2 SIMD OPTIONS_DEFAULT=PCRE2 OPTIONS_DEFAULT_aarch64=SIMD OPTIONS_DEFAULT_amd64= ${OPTIONS_DEFAULT_i386} OPTIONS_DEFAULT_i386= ${MACHINE_CPU:tu:S/SSE2/SIMD/} PCRE2_DESC= ${PCRE_DESC} version 2 PCRE2_LIB_DEPENDS= libpcre2-8.so:devel/pcre2 PCRE2_VARS= CARGO_FEATURES+=pcre2 SIMD_MAKE_ENV= RUSTC_BOOTSTRAP=encoding_rs,packed_simd_2 SIMD_VARS= CARGO_FEATURES+=simd-accel ${SIMD_VARS_${ARCH}} SIMD_VARS_i386= RUSTFLAGS+="-C target-feature=+sse2" post-patch: @${REINPLACE_CMD} -e 's|OUT_DIR|RIPGREP_OUTDIR|' ${WRKSRC}/build.rs post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/rg ${INSTALL_MAN} ${RIPGREP_OUTDIR}/rg.1 ${STAGEDIR}${MAN1PREFIX}/man/man1 @${MKDIR} ${STAGEDIR}${PREFIX}/etc/bash_completion.d/ ${INSTALL_DATA} ${RIPGREP_OUTDIR}/rg.bash \ ${STAGEDIR}${PREFIX}/etc/bash_completion.d/ @${MKDIR} ${STAGEDIR}${PREFIX}/share/fish/vendor_completions.d/ ${INSTALL_DATA} ${RIPGREP_OUTDIR}/rg.fish \ ${STAGEDIR}${PREFIX}/share/fish/vendor_completions.d/ @${MKDIR} ${STAGEDIR}${PREFIX}/share/zsh/site-functions/ ${INSTALL_DATA} ${WRKSRC}/complete/_rg \ ${STAGEDIR}${PREFIX}/share/zsh/site-functions/ post-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${STAGEDIR}${DOCSDIR} .include diff --git a/textproc/ripgrep/distinfo b/textproc/ripgrep/distinfo index e679a2224575..9e307d9b2ea0 100644 --- a/textproc/ripgrep/distinfo +++ b/textproc/ripgrep/distinfo @@ -1,133 +1,133 @@ -TIMESTAMP = 1649425059 +TIMESTAMP = 1660728123 SHA256 (rust/crates/aho-corasick-0.7.18.crate) = 1e37cfd5e7657ada45f742d6e99ca5788580b5c529dc78faf11ece6dc702656f SIZE (rust/crates/aho-corasick-0.7.18.crate) = 112923 SHA256 (rust/crates/atty-0.2.14.crate) = d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8 SIZE (rust/crates/atty-0.2.14.crate) = 5470 SHA256 (rust/crates/base64-0.13.0.crate) = 904dfeac50f3cdaba28fc6f57fdcddb75f49ed61346676a78c4ffe55877802fd SIZE (rust/crates/base64-0.13.0.crate) = 62070 SHA256 (rust/crates/bitflags-1.2.1.crate) = cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693 SIZE (rust/crates/bitflags-1.2.1.crate) = 16745 SHA256 (rust/crates/bstr-0.2.16.crate) = 90682c8d613ad3373e66de8c6411e0ae2ab2571e879d2efbf73558cc66f21279 SIZE (rust/crates/bstr-0.2.16.crate) = 330346 SHA256 (rust/crates/bytecount-0.6.2.crate) = 72feb31ffc86498dacdbd0fcebb56138e7177a8cc5cea4516031d15ae85a742e SIZE (rust/crates/bytecount-0.6.2.crate) = 12347 SHA256 (rust/crates/cc-1.0.68.crate) = 4a72c244c1ff497a746a7e1fb3d14bd08420ecda70c8f25c7112f2781652d787 SIZE (rust/crates/cc-1.0.68.crate) = 55936 SHA256 (rust/crates/cfg-if-0.1.10.crate) = 4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822 SIZE (rust/crates/cfg-if-0.1.10.crate) = 7933 SHA256 (rust/crates/cfg-if-1.0.0.crate) = baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd SIZE (rust/crates/cfg-if-1.0.0.crate) = 7934 SHA256 (rust/crates/clap-2.33.3.crate) = 37e58ac78573c40708d45522f0d80fa2f01cc4f9b4e2bf749807255454312002 SIZE (rust/crates/clap-2.33.3.crate) = 201925 SHA256 (rust/crates/crossbeam-channel-0.5.1.crate) = 06ed27e177f16d65f0f0c22a213e17c696ace5dd64b14258b52f9417ccb52db4 SIZE (rust/crates/crossbeam-channel-0.5.1.crate) = 86919 SHA256 (rust/crates/crossbeam-utils-0.8.5.crate) = d82cfc11ce7f2c3faef78d8a684447b40d503d9681acebed6cb728d45940c4db SIZE (rust/crates/crossbeam-utils-0.8.5.crate) = 38414 SHA256 (rust/crates/encoding_rs-0.8.28.crate) = 80df024fbc5ac80f87dfef0d9f5209a252f2a497f7f42944cff24d8253cac065 SIZE (rust/crates/encoding_rs-0.8.28.crate) = 1368577 SHA256 (rust/crates/encoding_rs_io-0.1.7.crate) = 1cc3c5651fb62ab8aa3103998dade57efdd028544bd300516baa31840c252a83 SIZE (rust/crates/encoding_rs_io-0.1.7.crate) = 16969 SHA256 (rust/crates/fnv-1.0.7.crate) = 3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1 SIZE (rust/crates/fnv-1.0.7.crate) = 11266 SHA256 (rust/crates/fs_extra-1.2.0.crate) = 2022715d62ab30faffd124d40b76f4134a550a87792276512b18d63272333394 SIZE (rust/crates/fs_extra-1.2.0.crate) = 29918 SHA256 (rust/crates/glob-0.3.0.crate) = 9b919933a397b79c37e33b77bb2aa3dc8eb6e165ad809e58ff75bc7db2e34574 SIZE (rust/crates/glob-0.3.0.crate) = 18724 SHA256 (rust/crates/globset-0.4.7.crate) = f0fc1b9fa0e64ffb1aa5b95daa0f0f167734fd528b7c02eabc581d9d843649b1 SIZE (rust/crates/globset-0.4.7.crate) = 22885 SHA256 (rust/crates/grep-0.2.8.crate) = 51cb840c560b45a2ffd8abf00190382789d3f596663d5ffeb2e05931c20e8657 SIZE (rust/crates/grep-0.2.8.crate) = 7208 SHA256 (rust/crates/grep-cli-0.1.6.crate) = 2dd110c34bb4460d0de5062413b773e385cbf8a85a63fc535590110a09e79e8a SIZE (rust/crates/grep-cli-0.1.6.crate) = 18949 SHA256 (rust/crates/grep-matcher-0.1.5.crate) = 6d27563c33062cd33003b166ade2bb4fd82db1fd6a86db764dfdad132d46c1cc SIZE (rust/crates/grep-matcher-0.1.5.crate) = 15677 SHA256 (rust/crates/grep-pcre2-0.1.5.crate) = c6ecedbb372bd549ae8db02418f82e87e38622844409b6cbcac47dbc95eede41 SIZE (rust/crates/grep-pcre2-0.1.5.crate) = 7710 SHA256 (rust/crates/grep-printer-0.1.6.crate) = 05c271a24daedf5675b61a275a1d0af06e03312ab7856d15433ae6cde044dc72 SIZE (rust/crates/grep-printer-0.1.6.crate) = 46786 SHA256 (rust/crates/grep-regex-0.1.9.crate) = 121553c9768c363839b92fc2d7cdbbad44a3b70e8d6e7b1b72b05c977527bd06 SIZE (rust/crates/grep-regex-0.1.9.crate) = 28945 SHA256 (rust/crates/grep-searcher-0.1.8.crate) = 7fbdbde90ba52adc240d2deef7b6ad1f99f53142d074b771fe9b7bede6c4c23d SIZE (rust/crates/grep-searcher-0.1.8.crate) = 44569 SHA256 (rust/crates/hermit-abi-0.1.18.crate) = 322f4de77956e22ed0e5032c359a0f1273f1f7f0d79bfa3b8ffbc730d7fbcc5c SIZE (rust/crates/hermit-abi-0.1.18.crate) = 9936 SHA256 (rust/crates/ignore-0.4.18.crate) = 713f1b139373f96a2e0ce3ac931cd01ee973c3c5dd7c40c0c2efe96ad2b6751d SIZE (rust/crates/ignore-0.4.18.crate) = 53174 SHA256 (rust/crates/itoa-0.4.7.crate) = dd25036021b0de88a0aff6b850051563c6516d0bf53f8638938edbb9de732736 SIZE (rust/crates/itoa-0.4.7.crate) = 12099 SHA256 (rust/crates/jemalloc-sys-0.3.2.crate) = 0d3b9f3f5c9b31aa0f5ed3260385ac205db665baa41d49bb8338008ae94ede45 SIZE (rust/crates/jemalloc-sys-0.3.2.crate) = 1344660 SHA256 (rust/crates/jemallocator-0.3.2.crate) = 43ae63fcfc45e99ab3d1b29a46782ad679e98436c3169d15a167a1108a724b69 SIZE (rust/crates/jemallocator-0.3.2.crate) = 16393 SHA256 (rust/crates/jobserver-0.1.22.crate) = 972f5ae5d1cb9c6ae417789196c803205313edde988685da5e3aae0827b9e7fd SIZE (rust/crates/jobserver-0.1.22.crate) = 21175 SHA256 (rust/crates/lazy_static-1.4.0.crate) = e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646 SIZE (rust/crates/lazy_static-1.4.0.crate) = 10443 SHA256 (rust/crates/libc-0.2.97.crate) = 12b8adadd720df158f4d70dfe7ccc6adb0472d7c55ca83445f6a5ab3e36f8fb6 SIZE (rust/crates/libc-0.2.97.crate) = 517712 SHA256 (rust/crates/libm-0.1.4.crate) = 7fc7aa29613bd6a620df431842069224d8bc9011086b1db4c0e0cd47fa03ec9a SIZE (rust/crates/libm-0.1.4.crate) = 110593 SHA256 (rust/crates/log-0.4.14.crate) = 51b9bbe6c47d51fc3e1a9b945965946b4c44142ab8792c50835a980d362c2710 SIZE (rust/crates/log-0.4.14.crate) = 34582 SHA256 (rust/crates/memchr-2.4.0.crate) = b16bd47d9e329435e309c58469fe0791c2d0d1ba96ec0954152a5ae2b04387dc SIZE (rust/crates/memchr-2.4.0.crate) = 63392 SHA256 (rust/crates/memmap2-0.3.0.crate) = 20ff203f7bdc401350b1dbaa0355135777d25f41c0bbc601851bbd6cf61e8ff5 SIZE (rust/crates/memmap2-0.3.0.crate) = 18045 SHA256 (rust/crates/num_cpus-1.13.0.crate) = 05499f3756671c15885fee9034446956fff3f243d6077b91e5767df161f766b3 SIZE (rust/crates/num_cpus-1.13.0.crate) = 14704 SHA256 (rust/crates/once_cell-1.7.2.crate) = af8b08b04175473088b46763e51ee54da5f9a164bc162f615b91bc179dbf15a3 SIZE (rust/crates/once_cell-1.7.2.crate) = 28250 -SHA256 (rust/crates/packed_simd_2-0.3.7.crate) = defdcfef86dcc44ad208f71d9ff4ce28df6537a4e0d6b0e8e845cb8ca10059a6 -SIZE (rust/crates/packed_simd_2-0.3.7.crate) = 97413 +SHA256 (rust/crates/packed_simd_2-0.3.8.crate) = a1914cd452d8fccd6f9db48147b29fd4ae05bea9dc5d9ad578509f72415de282 +SIZE (rust/crates/packed_simd_2-0.3.8.crate) = 97388 SHA256 (rust/crates/pcre2-0.2.3.crate) = 85b30f2f69903b439dd9dc9e824119b82a55bf113b29af8d70948a03c1b11ab1 SIZE (rust/crates/pcre2-0.2.3.crate) = 19605 SHA256 (rust/crates/pcre2-sys-0.2.5.crate) = dec30e5e9ec37eb8fbf1dea5989bc957fd3df56fbee5061aa7b7a99dbb37b722 SIZE (rust/crates/pcre2-sys-0.2.5.crate) = 2184907 SHA256 (rust/crates/pkg-config-0.3.19.crate) = 3831453b3449ceb48b6d9c7ad7c96d5ea673e9b470a1dc578c2ce6521230884c SIZE (rust/crates/pkg-config-0.3.19.crate) = 15451 SHA256 (rust/crates/proc-macro2-1.0.27.crate) = f0d8caf72986c1a598726adc988bb5984792ef84f5ee5aa50209145ee8077038 SIZE (rust/crates/proc-macro2-1.0.27.crate) = 38625 SHA256 (rust/crates/quote-1.0.9.crate) = c3d0b9745dc2debf507c8422de05d7226cc1f0644216dfdfead988f9b1ab32a7 SIZE (rust/crates/quote-1.0.9.crate) = 25042 SHA256 (rust/crates/regex-1.5.4.crate) = d07a8629359eb56f1e2fb1652bb04212c072a87ba68546a04065d525673ac461 SIZE (rust/crates/regex-1.5.4.crate) = 236581 SHA256 (rust/crates/regex-automata-0.1.10.crate) = 6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132 SIZE (rust/crates/regex-automata-0.1.10.crate) = 114533 SHA256 (rust/crates/regex-syntax-0.6.25.crate) = f497285884f3fcff424ffc933e56d7cbca511def0c9831a7f9b5f6153e3cc89b SIZE (rust/crates/regex-syntax-0.6.25.crate) = 293293 SHA256 (rust/crates/ryu-1.0.5.crate) = 71d301d4193d031abdd79ff7e3dd721168a9572ef3fe51a1517aba235bd8f86e SIZE (rust/crates/ryu-1.0.5.crate) = 49570 SHA256 (rust/crates/same-file-1.0.6.crate) = 93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502 SIZE (rust/crates/same-file-1.0.6.crate) = 10183 SHA256 (rust/crates/serde-1.0.126.crate) = ec7505abeacaec74ae4778d9d9328fe5a5d04253220a85c4ee022239fc996d03 SIZE (rust/crates/serde-1.0.126.crate) = 75138 SHA256 (rust/crates/serde_derive-1.0.126.crate) = 963a7dbc9895aeac7ac90e74f34a5d5261828f79df35cbed41e10189d3804d43 SIZE (rust/crates/serde_derive-1.0.126.crate) = 54189 SHA256 (rust/crates/serde_json-1.0.64.crate) = 799e97dc9fdae36a5c8b8f2cae9ce2ee9fdce2058c57a93e6099d919fd982f79 SIZE (rust/crates/serde_json-1.0.64.crate) = 115138 SHA256 (rust/crates/strsim-0.8.0.crate) = 8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a SIZE (rust/crates/strsim-0.8.0.crate) = 9309 SHA256 (rust/crates/syn-1.0.73.crate) = f71489ff30030d2ae598524f61326b902466f72a0fb1a8564c001cc63425bcc7 SIZE (rust/crates/syn-1.0.73.crate) = 232706 SHA256 (rust/crates/termcolor-1.1.2.crate) = 2dfed899f0eb03f32ee8c6a0aabdb8a7949659e3466561fc0adf54e26d88c5f4 SIZE (rust/crates/termcolor-1.1.2.crate) = 17287 SHA256 (rust/crates/textwrap-0.11.0.crate) = d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060 SIZE (rust/crates/textwrap-0.11.0.crate) = 17322 SHA256 (rust/crates/thread_local-1.1.3.crate) = 8018d24e04c95ac8790716a5987d0fec4f8b27249ffa0f7d33f1369bdfb88cbd SIZE (rust/crates/thread_local-1.1.3.crate) = 13111 SHA256 (rust/crates/unicode-width-0.1.8.crate) = 9337591893a19b88d8d87f2cec1e73fad5cdfd10e5a6f349f498ad6ea2ffb1e3 SIZE (rust/crates/unicode-width-0.1.8.crate) = 16732 SHA256 (rust/crates/unicode-xid-0.2.2.crate) = 8ccb82d61f80a663efe1f787a51b16b5a51e3314d6ac365b08639f52387b33f3 SIZE (rust/crates/unicode-xid-0.2.2.crate) = 14955 SHA256 (rust/crates/walkdir-2.3.2.crate) = 808cf2735cd4b6866113f648b791c6adc5714537bc222d9347bb203386ffda56 SIZE (rust/crates/walkdir-2.3.2.crate) = 23516 SHA256 (rust/crates/winapi-0.3.9.crate) = 5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419 SIZE (rust/crates/winapi-0.3.9.crate) = 1200382 SHA256 (rust/crates/winapi-i686-pc-windows-gnu-0.4.0.crate) = ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6 SIZE (rust/crates/winapi-i686-pc-windows-gnu-0.4.0.crate) = 2918815 SHA256 (rust/crates/winapi-util-0.1.5.crate) = 70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178 SIZE (rust/crates/winapi-util-0.1.5.crate) = 10164 SHA256 (rust/crates/winapi-x86_64-pc-windows-gnu-0.4.0.crate) = 712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f SIZE (rust/crates/winapi-x86_64-pc-windows-gnu-0.4.0.crate) = 2947998 SHA256 (BurntSushi-ripgrep-13.0.0_GH0.tar.gz) = 0fb17aaf285b3eee8ddab17b833af1e190d73de317ff9648751ab0660d763ed2 SIZE (BurntSushi-ripgrep-13.0.0_GH0.tar.gz) = 505536 diff --git a/textproc/ripgrep/files/patch-rust-1.60 b/textproc/ripgrep/files/patch-rust-1.63 similarity index 92% rename from textproc/ripgrep/files/patch-rust-1.60 rename to textproc/ripgrep/files/patch-rust-1.63 index f0010da169ba..2d7ce8f19d61 100644 --- a/textproc/ripgrep/files/patch-rust-1.60 +++ b/textproc/ripgrep/files/patch-rust-1.63 @@ -1,66 +1,66 @@ ---- Cargo.lock.orig 2022-04-08 15:28:37 UTC +--- Cargo.lock.orig 2021-06-12 14:12:24 UTC +++ Cargo.lock @@ -62,12 +62,6 @@ name = "cfg-if" [[package]] name = "cfg-if" -version = "0.1.10" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822" - -[[package]] -name = "cfg-if" version = "1.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" @@ -90,7 +84,7 @@ dependencies = [ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "06ed27e177f16d65f0f0c22a213e17c696ace5dd64b14258b52f9417ccb52db4" dependencies = [ - "cfg-if 1.0.0", + "cfg-if", "crossbeam-utils", ] @@ -100,7 +94,7 @@ dependencies = [ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d82cfc11ce7f2c3faef78d8a684447b40d503d9681acebed6cb728d45940c4db" dependencies = [ - "cfg-if 1.0.0", + "cfg-if", "lazy_static", ] @@ -110,7 +104,7 @@ dependencies = [ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "80df024fbc5ac80f87dfef0d9f5209a252f2a497f7f42944cff24d8253cac065" dependencies = [ - "cfg-if 1.0.0", + "cfg-if", "packed_simd_2", ] @@ -329,7 +323,7 @@ dependencies = [ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "51b9bbe6c47d51fc3e1a9b945965946b4c44142ab8792c50835a980d362c2710" dependencies = [ - "cfg-if 1.0.0", + "cfg-if", ] [[package]] @@ -365,11 +359,11 @@ name = "packed_simd_2" [[package]] name = "packed_simd_2" -version = "0.3.5" -+version = "0.3.7" ++version = "0.3.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0e64858a2d3733fdd61adfdd6da89aa202f7ff0e741d2fc7ed1e452ba9dc99d7" -+checksum = "defdcfef86dcc44ad208f71d9ff4ce28df6537a4e0d6b0e8e845cb8ca10059a6" ++checksum = "a1914cd452d8fccd6f9db48147b29fd4ae05bea9dc5d9ad578509f72415de282" dependencies = [ - "cfg-if 0.1.10", + "cfg-if", "libm", ] diff --git a/textproc/sd/Makefile b/textproc/sd/Makefile index d86843f2d048..98b423606a1e 100644 --- a/textproc/sd/Makefile +++ b/textproc/sd/Makefile @@ -1,119 +1,119 @@ PORTNAME= sd DISTVERSIONPREFIX= v DISTVERSION= 0.7.6 -PORTREVISION= 19 +PORTREVISION= 20 CATEGORIES= textproc MAINTAINER= mikael@FreeBSD.org COMMENT= Intuitive find and replace tool LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= cargo USE_GITHUB= yes GH_ACCOUNT= chmln CARGO_CRATES= aho-corasick-0.7.10 \ ansi_term-0.11.0 \ anyhow-1.0.32 \ assert_cmd-1.0.1 \ atty-0.2.14 \ autocfg-1.0.0 \ bitflags-1.2.1 \ cfg-if-0.1.10 \ clap-2.33.0 \ crossbeam-deque-0.7.3 \ crossbeam-epoch-0.8.2 \ crossbeam-queue-0.2.1 \ crossbeam-utils-0.7.2 \ difference-2.0.0 \ doc-comment-0.3.3 \ either-1.5.3 \ getrandom-0.1.14 \ heck-0.3.1 \ hermit-abi-0.1.11 \ lazy_static-1.4.0 \ libc-0.2.69 \ man-0.3.0 \ maybe-uninit-2.0.0 \ memchr-2.3.3 \ memmap-0.7.0 \ memoffset-0.5.4 \ num_cpus-1.13.0 \ ppv-lite86-0.2.6 \ predicates-1.0.4 \ predicates-core-1.0.0 \ predicates-tree-1.0.0 \ proc-macro-error-1.0.2 \ proc-macro-error-attr-1.0.2 \ proc-macro2-1.0.10 \ quote-1.0.3 \ rand-0.7.3 \ rand_chacha-0.2.2 \ rand_core-0.5.1 \ rand_hc-0.2.0 \ rayon-1.3.1 \ rayon-core-1.7.1 \ redox_syscall-0.1.56 \ regex-1.3.9 \ regex-syntax-0.6.18 \ remove_dir_all-0.5.2 \ roff-0.1.0 \ scopeguard-1.1.0 \ strsim-0.8.0 \ structopt-0.3.15 \ structopt-derive-0.4.8 \ syn-1.0.17 \ syn-mid-0.5.0 \ tempfile-3.1.0 \ textwrap-0.11.0 \ thiserror-1.0.20 \ thiserror-impl-1.0.20 \ thread_local-1.0.1 \ treeline-0.1.0 \ unescape-0.1.0 \ unicode-segmentation-1.6.0 \ unicode-width-0.1.7 \ unicode-xid-0.2.0 \ vec_map-0.8.1 \ version_check-0.9.1 \ wait-timeout-0.2.0 \ wasi-0.9.0+wasi-snapshot-preview1 \ winapi-0.3.8 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-x86_64-pc-windows-gnu-0.4.0 _SD_OUT_DIR= ${WRKDIR}/cargo-out MAKE_ENV= SD_OUT_DIR=${_SD_OUT_DIR} PLIST_FILES= bin/sd \ etc/bash_completion.d/sd.bash \ man/man1/sd.1.gz \ share/fish/completions/sd.fish \ share/zsh/site-functions/_sd PORTDOCS= README.md OPTIONS_DEFINE= DOCS post-patch: @${REINPLACE_CMD} 's,"OUT_DIR","SD_OUT_DIR",g' ${WRKSRC}/build.rs post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/sd ${INSTALL_MAN} ${_SD_OUT_DIR}/sd.1 \ ${STAGEDIR}${PREFIX}/man/man1 @${MKDIR} ${STAGEDIR}${PREFIX}/etc/bash_completion.d ${INSTALL_DATA} ${_SD_OUT_DIR}/sd.bash \ ${STAGEDIR}${PREFIX}/etc/bash_completion.d @${MKDIR} ${STAGEDIR}${PREFIX}/share/fish/completions ${INSTALL_DATA} ${_SD_OUT_DIR}/sd.fish \ ${STAGEDIR}${PREFIX}/share/fish/completions @${MKDIR} ${STAGEDIR}${PREFIX}/share/zsh/site-functions ${INSTALL_DATA} ${_SD_OUT_DIR}/_sd \ ${STAGEDIR}${PREFIX}/share/zsh/site-functions post-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_MAN} ${WRKSRC}/README.md ${STAGEDIR}${DOCSDIR} .include diff --git a/textproc/sonic/Makefile b/textproc/sonic/Makefile index e64c4af8fe93..5cd666b55260 100644 --- a/textproc/sonic/Makefile +++ b/textproc/sonic/Makefile @@ -1,121 +1,122 @@ PORTNAME= sonic DISTVERSIONPREFIX= v DISTVERSION= 1.3.5 +PORTREVISION= 1 CATEGORIES= textproc MAINTAINER= mikael@FreeBSD.org COMMENT= Fast, lightweight, and schema-less search backend LICENSE= MPL20 LICENSE_FILE= ${WRKSRC}/LICENSE.md BUILD_DEPENDS= llvm${LLVM_DEFAULT}>0:devel/llvm${LLVM_DEFAULT} USES= cargo compiler:c++11-lang gmake USE_GITHUB= yes GH_ACCOUNT= valeriansaliou USE_RC_SUBR= sonic CARGO_CRATES= ahash-0.7.6 \ aho-corasick-0.7.18 \ atty-0.2.14 \ autocfg-1.1.0 \ bindgen-0.59.2 \ bitflags-1.3.2 \ byteorder-1.4.3 \ cc-1.0.73 \ cedarwood-0.4.5 \ cexpr-0.6.0 \ cfg-if-0.1.10 \ cfg-if-1.0.0 \ clang-sys-1.3.3 \ clap-3.2.8 \ clap_lex-0.2.4 \ fs_extra-1.2.0 \ fst-0.3.5 \ fst-levenshtein-0.3.0 \ fst-regex-0.3.0 \ fxhash-0.2.1 \ getrandom-0.2.7 \ glob-0.3.0 \ hashbrown-0.11.2 \ hashbrown-0.12.2 \ hermit-abi-0.1.19 \ indexmap-1.9.1 \ jieba-rs-0.6.6 \ jobserver-0.1.24 \ lazy_static-1.4.0 \ lazycell-1.3.0 \ libc-0.2.126 \ libloading-0.7.3 \ librocksdb-sys-6.20.3 \ linked-hash-map-0.5.6 \ linked_hash_set-0.1.4 \ log-0.4.17 \ memchr-2.5.0 \ memmap-0.6.2 \ minimal-lexical-0.2.1 \ nix-0.18.0 \ nom-7.1.1 \ once_cell-1.13.0 \ os_str_bytes-6.1.0 \ peeking_take_while-0.1.2 \ phf-0.10.1 \ phf_codegen-0.10.0 \ phf_generator-0.10.0 \ phf_shared-0.10.0 \ ppv-lite86-0.2.16 \ proc-macro2-1.0.40 \ quote-1.0.20 \ radix-0.6.0 \ rand-0.8.5 \ rand_chacha-0.3.1 \ rand_core-0.6.3 \ regex-1.6.0 \ regex-syntax-0.3.9 \ regex-syntax-0.6.27 \ rocksdb-0.17.0 \ rustc-hash-1.1.0 \ serde-1.0.138 \ serde_derive-1.0.138 \ shlex-1.1.0 \ siphasher-0.3.10 \ smallvec-1.9.0 \ static_assertions-1.1.0 \ strsim-0.10.0 \ syn-1.0.98 \ termcolor-1.1.3 \ textwrap-0.15.0 \ tikv-jemalloc-sys-0.4.3+5.2.1-patched.2 \ tikv-jemallocator-0.4.3 \ toml-0.5.9 \ twox-hash-1.6.3 \ unicode-ident-1.0.1 \ unicode-segmentation-1.9.0 \ utf8-ranges-1.0.5 \ version_check-0.9.4 \ wasi-0.11.0+wasi-snapshot-preview1 \ whatlang-0.16.0 \ winapi-0.3.9 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-util-0.1.5 \ winapi-x86_64-pc-windows-gnu-0.4.0 USERS= sonic GROUPS= sonic PLIST_FILES= bin/sonic \ "@sample ${ETCDIR}/config.cfg.sample" PORTDOCS= CONFIGURATION.md PROTOCOL.md README.md OPTIONS_DEFINE= DOCS post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/sonic @${MKDIR} ${STAGEDIR}${ETCDIR} ${INSTALL_DATA} ${WRKSRC}/config.cfg ${STAGEDIR}${ETCDIR}/config.cfg.sample post-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} cd ${WRKSRC} && ${INSTALL_MAN} ${PORTDOCS} ${STAGEDIR}${DOCSDIR} .include diff --git a/textproc/xsv-rs/Makefile b/textproc/xsv-rs/Makefile index 9e808ad6a8e0..eb8ad727ca7c 100644 --- a/textproc/xsv-rs/Makefile +++ b/textproc/xsv-rs/Makefile @@ -1,75 +1,75 @@ PORTNAME= xsv DISTVERSION= 0.13.0 -PORTREVISION= 41 +PORTREVISION= 42 CATEGORIES= textproc PKGNAMESUFFIX= -rs MAINTAINER= mikael@FreeBSD.org COMMENT= Fast CSV toolkit LICENSE= MIT UNLICENSE LICENSE_COMB= dual LICENSE_FILE_MIT= ${WRKSRC}/LICENSE-MIT LICENSE_FILE_UNLICENSE= ${WRKSRC}/UNLICENSE USES= cargo USE_GITHUB= yes GH_ACCOUNT= BurntSushi CARGO_CRATES= aho-corasick-0.6.4 \ bitflags-1.0.3 \ byteorder-1.2.2 \ cfg-if-0.1.3 \ chan-0.1.21 \ csv-1.0.0 \ csv-core-0.1.4 \ csv-index-0.1.5 \ docopt-1.0.0 \ filetime-0.1.15 \ fuchsia-zircon-0.3.3 \ fuchsia-zircon-sys-0.3.3 \ lazy_static-1.0.0 \ libc-0.2.49 \ log-0.4.1 \ memchr-2.0.1 \ num-traits-0.2.4 \ num_cpus-1.8.0 \ proc-macro2-0.3.8 \ quickcheck-0.6.2 \ quote-0.5.2 \ rand-0.3.22 \ rand-0.4.2 \ redox_syscall-0.1.37 \ regex-1.0.0 \ regex-syntax-0.6.0 \ serde-1.0.54 \ serde_derive-1.0.54 \ streaming-stats-0.2.0 \ strsim-0.7.0 \ syn-0.13.9 \ tabwriter-1.0.4 \ thread_local-0.3.5 \ threadpool-1.7.1 \ ucd-util-0.1.1 \ unicode-width-0.1.4 \ unicode-xid-0.1.0 \ unreachable-1.0.0 \ utf8-ranges-1.0.0 \ void-1.0.2 \ winapi-0.3.4 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-x86_64-pc-windows-gnu-0.4.0 PLIST_FILES= bin/xsv PORTDOCS= README.md OPTIONS_DEFINE= DOCS post-install: @${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/xsv post-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/README.md ${STAGEDIR}${DOCSDIR} .include diff --git a/www/castor/Makefile b/www/castor/Makefile index ac718a050228..f3d29a29536b 100644 --- a/www/castor/Makefile +++ b/www/castor/Makefile @@ -1,136 +1,136 @@ PORTNAME= castor DISTVERSION= 0.8.16 -PORTREVISION= 16 +PORTREVISION= 17 CATEGORIES= www MASTER_SITES= https://git.sr.ht/~julienxx/${PORTNAME}/archive/${DISTVERSIONFULL}${EXTRACT_SUFX}?dummy=/ DISTFILES= ${DISTNAME}${EXTRACT_SUFX} MAINTAINER= kraileth@elderlinux.org COMMENT= Browser for text-based protocols like Gemini and Gopher using GTK+ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= cargo desktop-file-utils gnome ssl USE_GNOME= cairo gdkpixbuf2 glib20 gtk30 CARGO_CRATES= aho-corasick-0.7.13 \ ansi-parser-0.6.5 \ arrayref-0.3.6 \ arrayvec-0.5.1 \ atk-0.8.0 \ atk-sys-0.9.1 \ autocfg-1.0.1 \ base64-0.12.3 \ bitflags-1.2.1 \ blake2b_simd-0.5.10 \ cairo-rs-0.8.1 \ cairo-sys-rs-0.9.2 \ cc-1.0.60 \ cfg-if-0.1.10 \ constant_time_eq-0.1.5 \ core-foundation-0.7.1 \ core-foundation-sys-0.7.2 \ crossbeam-utils-0.7.2 \ dirs-3.0.1 \ dirs-sys-0.3.5 \ foreign-types-0.3.2 \ foreign-types-shared-0.1.1 \ futures-0.3.6 \ futures-channel-0.3.6 \ futures-core-0.3.6 \ futures-executor-0.3.6 \ futures-io-0.3.6 \ futures-macro-0.3.6 \ futures-task-0.3.6 \ futures-util-0.3.6 \ gdk-0.12.1 \ gdk-pixbuf-0.8.0 \ gdk-pixbuf-sys-0.9.1 \ gdk-sys-0.9.1 \ getrandom-0.1.15 \ gio-0.8.1 \ gio-sys-0.9.1 \ glib-0.9.3 \ glib-macros-0.10.1 \ glib-sys-0.9.1 \ gobject-sys-0.9.1 \ gtk-0.8.0 \ gtk-sys-0.9.2 \ idna-0.2.0 \ lazy_static-1.4.0 \ libc-0.2.79 \ linkify-0.4.0 \ log-0.4.11 \ matches-0.1.8 \ memchr-2.3.3 \ native-tls-0.2.4 \ nom-4.2.3 \ once_cell-1.4.1 \ open-1.4.0 \ openssl-0.10.30 \ openssl-probe-0.1.2 \ openssl-sys-0.9.58 \ pango-0.8.0 \ pango-sys-0.9.1 \ percent-encoding-2.1.0 \ pkg-config-0.3.18 \ pin-project-0.4.26 \ pin-project-internal-0.4.26 \ pin-utils-0.1.0 \ proc-macro2-1.0.24 \ proc-macro-hack-0.5.18 \ proc-macro-nested-0.1.6 \ ppv-lite86-0.2.9 \ quote-1.0.7 \ rand-0.7.3 \ rand_chacha-0.2.2 \ rand_core-0.5.1 \ rand_hc-0.2.0 \ redox_syscall-0.1.57 \ redox_users-0.3.5 \ regex-1.3.9 \ regex-syntax-0.6.18 \ remove_dir_all-0.5.3 \ rust-argon2-0.8.2 \ schannel-0.1.19 \ security-framework-0.4.4 \ security-framework-sys-0.4.3 \ serde-1.0.116 \ serde_derive-1.0.116 \ slab-0.4.2 \ syn-1.0.42 \ system-deps-1.3.2 \ tempfile-3.1.0 \ textwrap-0.12.1 \ tinyvec-0.3.4 \ thiserror-1.0.21 \ thread_local-1.0.1 \ toml-0.5.6 \ unicode-bidi-0.3.4 \ unicode-normalization-0.1.13 \ unicode-width-0.1.8 \ unicode-xid-0.2.1 \ url-2.1.1 \ vcpkg-0.2.10 \ version_check-0.1.5 \ wasi-0.9.0+wasi-snapshot-preview1 \ winapi-0.3.9 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-x86_64-pc-windows-gnu-0.4.0 PLIST_FILES= bin/castor \ share/applications/Castor.desktop \ share/examples/castor/castor_settings.toml.example \ share/pixmaps/org.typed-hole.castor.svg SUB_FILES= pkg-message post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/castor ${MKDIR} ${STAGEDIR}${PREFIX}/share/examples/castor ${INSTALL_DATA} ${WRKSRC}/data/Castor.desktop ${STAGEDIR}${PREFIX}/share/applications ${INSTALL_DATA} ${WRKSRC}/data/castor_settings.toml.example ${STAGEDIR}${PREFIX}/share/examples/castor ${INSTALL_DATA} ${WRKSRC}/data/org.typed-hole.castor.svg ${STAGEDIR}${PREFIX}/share/pixmaps .include diff --git a/www/deno/Makefile b/www/deno/Makefile index b350942fa16c..666fc5644191 100644 --- a/www/deno/Makefile +++ b/www/deno/Makefile @@ -1,562 +1,563 @@ PORTNAME= deno DISTVERSIONPREFIX= v DISTVERSION= 1.24.3 +PORTREVISION= 1 CATEGORIES= www MAINTAINER= mikael@FreeBSD.org COMMENT= Secure JavaScript and TypeScript runtime LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.md BROKEN_i386= cargo:warning=c/freebsd.c:31:10: error: conflicting types for 'get_cpu_speed' BUILD_DEPENDS= gn:devel/gn \ libunwind>0:devel/libunwind USES= cargo cpe gmake gnome ninja:build pkgconfig:build python:3.9+,build USE_GITHUB= yes GH_ACCOUNT= denoland GH_TUPLE= tinycc:tinycc:afc136262e93a:deno/ext/ffi/tinycc USE_GNOME= glib20 V8_VERS= 0.47.1 CARGO_ENV+= CLANG_BASE_PATH=/usr \ GN=${PREFIX}/bin/gn \ NINJA=${NINJA_CMD} \ RUSTC_BOOTSTRAP=1 \ V8_FROM_SOURCE=1 PLIST_FILES= bin/${PORTNAME} BINARY_ALIAS= python=${PYTHON_CMD} CARGO_CRATES= Inflector-0.11.4 \ abort_on_panic-2.0.0 \ adler-1.0.2 \ aead-0.4.3 \ aes-0.8.1 \ aes-gcm-0.10.0-pre \ aes-kw-0.2.1 \ ahash-0.7.6 \ aho-corasick-0.7.18 \ alloc-no-stdlib-2.0.3 \ alloc-stdlib-0.2.1 \ android_system_properties-0.1.2 \ ansi_term-0.12.1 \ anyhow-1.0.58 \ arrayvec-0.7.2 \ ash-0.37.0+1.3.209 \ ast_node-0.8.1 \ async-compression-0.3.14 \ async-stream-0.3.3 \ async-stream-impl-0.3.3 \ async-trait-0.1.56 \ atty-0.2.14 \ auto_impl-0.5.0 \ autocfg-1.1.0 \ base16ct-0.1.1 \ base64-0.11.0 \ base64-0.13.0 \ base64-simd-0.6.2 \ base64ct-1.5.0 \ bencher-0.1.5 \ better_scoped_tls-0.1.0 \ bit-set-0.5.2 \ bit-vec-0.6.3 \ bitflags-1.3.2 \ bitflags_serde_shim-0.2.2 \ block-0.1.6 \ block-buffer-0.9.0 \ block-buffer-0.10.2 \ block-modes-0.9.1 \ block-padding-0.3.2 \ brotli-3.3.4 \ brotli-decompressor-2.3.2 \ bstr-0.2.17 \ bumpalo-3.10.0 \ byteorder-1.4.3 \ bytes-1.1.0 \ cache_control-0.2.0 \ cbc-0.1.2 \ cc-1.0.73 \ cfg-if-1.0.0 \ cfg_aliases-0.1.1 \ chrono-0.4.19 \ cipher-0.4.3 \ clap-3.1.12 \ clap_complete-3.1.2 \ clap_complete_fig-3.1.5 \ clap_lex-0.1.1 \ clipboard-win-4.4.1 \ codespan-reporting-0.11.1 \ const-oid-0.9.0 \ convert_case-0.4.0 \ copyless-0.1.5 \ core-foundation-0.9.3 \ core-foundation-sys-0.8.3 \ core-graphics-types-0.1.1 \ cpufeatures-0.2.2 \ crc-2.1.0 \ crc-catalog-1.1.1 \ crc32fast-1.3.2 \ crossbeam-channel-0.5.4 \ crossbeam-utils-0.8.8 \ crypto-bigint-0.4.7 \ crypto-common-0.1.3 \ csv-1.1.6 \ csv-core-0.1.10 \ ctor-0.1.22 \ ctr-0.9.1 \ cty-0.2.2 \ d3d12-0.5.0 \ darling-0.13.4 \ darling_core-0.13.4 \ darling_macro-0.13.4 \ dashmap-5.3.4 \ data-encoding-2.3.2 \ data-url-0.1.1 \ debug_unreachable-0.1.1 \ deno_ast-0.17.0 \ deno_doc-0.40.0 \ deno_emit-0.5.0 \ deno_graph-0.30.0 \ deno_lint-0.32.0 \ deno_task_shell-0.5.0 \ der-0.6.0 \ derive_more-0.99.17 \ diff-0.1.12 \ digest-0.9.0 \ digest-0.10.3 \ dissimilar-1.0.3 \ dlopen-0.1.8 \ dlopen_derive-0.1.4 \ dotenv-0.15.0 \ dprint-core-0.58.3 \ dprint-plugin-json-0.15.5 \ dprint-plugin-markdown-0.14.0 \ dprint-plugin-typescript-0.71.2 \ dprint-swc-ext-0.3.0 \ dyn-clone-1.0.5 \ ecdsa-0.14.1 \ either-1.6.1 \ elliptic-curve-0.12.1 \ encoding_rs-0.8.31 \ endian-type-0.1.2 \ enum-as-inner-0.4.0 \ enum_kind-0.2.1 \ env_logger-0.9.0 \ errno-0.1.8 \ errno-0.2.8 \ errno-dragonfly-0.1.2 \ error-code-2.3.1 \ eszip-0.23.0 \ fallible-iterator-0.2.0 \ fallible-streaming-iterator-0.1.9 \ fancy-regex-0.10.0 \ fastrand-1.7.0 \ fd-lock-3.0.5 \ ff-0.12.0 \ filetime-0.2.16 \ fixedbitset-0.4.1 \ flaky_test-0.1.0 \ flate2-1.0.24 \ fly-accept-encoding-0.2.0 \ fnv-1.0.7 \ foreign-types-0.3.2 \ foreign-types-shared-0.1.1 \ form_urlencoded-1.0.1 \ from_variant-0.1.3 \ fs3-0.5.0 \ fsevent-sys-4.1.0 \ fslock-0.1.8 \ futures-0.3.21 \ futures-channel-0.3.21 \ futures-core-0.3.21 \ futures-executor-0.3.21 \ futures-io-0.3.21 \ futures-macro-0.3.21 \ futures-sink-0.3.21 \ futures-task-0.3.21 \ futures-util-0.3.21 \ fwdansi-1.1.0 \ fxhash-0.2.1 \ generic-array-0.14.5 \ getrandom-0.2.7 \ ghash-0.4.4 \ glow-0.11.2 \ google-storage1-3.1.0+20220228 \ gpu-alloc-0.5.3 \ gpu-alloc-types-0.2.0 \ gpu-descriptor-0.2.2 \ gpu-descriptor-types-0.1.1 \ group-0.12.0 \ h2-0.3.13 \ hashbrown-0.11.2 \ hashbrown-0.12.1 \ hashlink-0.7.0 \ heck-0.4.0 \ hermit-abi-0.1.19 \ hexf-parse-0.2.1 \ hkdf-0.12.3 \ hmac-0.12.1 \ hostname-0.3.1 \ http-0.2.6 \ http-body-0.4.5 \ httparse-1.7.1 \ httpdate-1.0.2 \ humantime-2.1.0 \ hyper-0.14.19 \ hyper-rustls-0.23.0 \ ident_case-1.0.1 \ idna-0.1.5 \ idna-0.2.3 \ if_chain-1.0.2 \ import_map-0.12.1 \ indexmap-1.9.1 \ inotify-0.9.6 \ inotify-sys-0.1.5 \ inout-0.1.3 \ inplace_it-0.3.3 \ instant-0.1.12 \ io-lifetimes-0.6.1 \ ipconfig-0.3.0 \ ipnet-2.5.0 \ is-macro-0.2.1 \ itertools-0.10.3 \ itoa-0.4.8 \ itoa-1.0.2 \ jobserver-0.1.24 \ js-sys-0.3.58 \ jsonc-parser-0.21.0 \ kernel32-sys-0.2.2 \ khronos-egl-4.1.0 \ kqueue-1.0.6 \ kqueue-sys-1.0.3 \ lazy_static-1.4.0 \ lexical-6.1.1 \ lexical-core-0.8.5 \ lexical-parse-float-0.8.5 \ lexical-parse-integer-0.8.6 \ lexical-util-0.8.5 \ lexical-write-float-0.8.5 \ lexical-write-integer-0.8.5 \ libc-0.2.126 \ libffi-3.0.0 \ libffi-sys-2.0.0 \ libloading-0.7.3 \ libm-0.2.2 \ libsqlite3-sys-0.24.2 \ linked-hash-map-0.5.4 \ linux-raw-sys-0.0.46 \ lock_api-0.4.7 \ log-0.3.9 \ log-0.4.17 \ lru-cache-0.1.2 \ lsp-types-0.93.0 \ lzzzz-1.0.3 \ malloc_buf-0.0.6 \ match_cfg-0.1.0 \ matches-0.1.9 \ memchr-2.5.0 \ memoffset-0.6.5 \ metal-0.24.0 \ mime-0.2.6 \ mime-0.3.16 \ miniz_oxide-0.5.3 \ mio-0.8.3 \ mitata-0.0.7 \ naga-0.9.0 \ netif-0.1.3 \ new_debug_unreachable-1.0.4 \ nibble_vec-0.1.0 \ nix-0.24.2 \ node_resolver-0.1.1 \ notify-5.0.0-pre.15 \ num-bigint-0.4.3 \ num-bigint-dig-0.8.1 \ num-integer-0.1.45 \ num-iter-0.1.43 \ num-traits-0.2.15 \ num_cpus-1.13.1 \ num_threads-0.1.6 \ objc-0.2.7 \ objc_exception-0.1.2 \ once_cell-1.12.0 \ opaque-debug-0.3.0 \ openssl-probe-0.1.5 \ os_pipe-1.0.1 \ os_str_bytes-6.1.0 \ output_vt100-0.1.3 \ p256-0.11.1 \ p384-0.11.1 \ parking_lot-0.11.2 \ parking_lot-0.12.1 \ parking_lot_core-0.8.5 \ parking_lot_core-0.9.3 \ path-clean-0.1.0 \ path-dedot-3.0.17 \ pathdiff-0.2.1 \ pem-rfc7468-0.6.0 \ percent-encoding-1.0.1 \ percent-encoding-2.1.0 \ petgraph-0.6.2 \ phf-0.10.1 \ phf_generator-0.10.0 \ phf_macros-0.10.0 \ phf_shared-0.10.0 \ pin-project-1.0.11 \ pin-project-internal-1.0.11 \ pin-project-lite-0.2.9 \ pin-utils-0.1.0 \ pkcs1-0.4.0 \ pkcs8-0.9.0 \ pkg-config-0.3.25 \ pmutil-0.5.3 \ polyval-0.5.3 \ ppv-lite86-0.2.16 \ precomputed-hash-0.1.1 \ pretty_assertions-1.2.1 \ proc-macro-crate-1.1.3 \ proc-macro-error-1.0.4 \ proc-macro-error-attr-1.0.4 \ proc-macro-hack-0.5.19 \ proc-macro2-0.4.30 \ proc-macro2-1.0.39 \ profiling-1.0.6 \ pty-0.2.2 \ pulldown-cmark-0.9.2 \ quick-error-1.2.3 \ quote-0.6.13 \ quote-1.0.18 \ radix_fmt-1.0.0 \ radix_trie-0.2.1 \ rand-0.8.5 \ rand_chacha-0.3.1 \ rand_core-0.6.3 \ range-alloc-0.1.2 \ raw-window-handle-0.4.3 \ redox_syscall-0.2.13 \ regex-1.6.0 \ regex-automata-0.1.10 \ regex-syntax-0.6.27 \ relative-path-1.7.0 \ remove_dir_all-0.5.3 \ renderdoc-sys-0.7.1 \ reqwest-0.11.11 \ resolv-conf-0.7.0 \ retain_mut-0.1.9 \ rfc6979-0.2.0 \ ring-0.16.20 \ ron-0.7.1 \ rsa-0.7.0-pre \ rusqlite-0.27.0 \ rustc-hash-1.1.0 \ rustc_version-0.2.3 \ rustc_version-0.4.0 \ rustix-0.34.8 \ rustls-0.20.6 \ rustls-native-certs-0.6.2 \ rustls-pemfile-0.3.0 \ rustls-pemfile-1.0.0 \ rustyline-10.0.0 \ rustyline-derive-0.7.0 \ ryu-1.0.10 \ same-file-1.0.6 \ schannel-0.1.20 \ scoped-tls-1.0.0 \ scopeguard-1.1.0 \ sct-0.7.0 \ seahash-4.1.0 \ sec1-0.3.0 \ security-framework-2.6.1 \ security-framework-sys-2.6.1 \ semver-0.9.0 \ semver-1.0.13 \ semver-parser-0.7.0 \ serde-1.0.141 \ serde_bytes-0.11.6 \ serde_derive-1.0.141 \ serde_json-1.0.82 \ serde_repr-0.1.8 \ serde_urlencoded-0.7.1 \ sha-1-0.9.8 \ sha-1-0.10.0 \ sha2-0.10.2 \ shell-escape-0.1.5 \ signal-hook-registry-1.4.0 \ signature-1.5.0 \ simd-abstraction-0.6.2 \ siphasher-0.3.10 \ slab-0.4.6 \ slotmap-1.0.6 \ smallvec-1.8.0 \ socket2-0.4.4 \ sourcemap-6.0.1 \ spin-0.5.2 \ spirv-0.2.0+1.5.4 \ spki-0.6.0 \ static_assertions-1.1.0 \ str-buf-1.0.6 \ string_cache-0.8.4 \ string_cache_codegen-0.5.2 \ string_enum-0.3.1 \ strsim-0.10.0 \ subtle-2.4.1 \ swc_atoms-0.2.13 \ swc_bundler-0.169.0 \ swc_common-0.23.0 \ swc_config-0.1.1 \ swc_config_macro-0.1.0 \ swc_ecma_ast-0.84.0 \ swc_ecma_codegen-0.115.0 \ swc_ecma_codegen_macros-0.7.1 \ swc_ecma_dep_graph-0.83.0 \ swc_ecma_loader-0.35.0 \ swc_ecma_parser-0.111.0 \ swc_ecma_transforms_base-0.97.0 \ swc_ecma_transforms_classes-0.85.0 \ swc_ecma_transforms_macros-0.5.0 \ swc_ecma_transforms_optimization-0.144.0 \ swc_ecma_transforms_proposal-0.122.0 \ swc_ecma_transforms_react-0.133.0 \ swc_ecma_transforms_typescript-0.137.0 \ swc_ecma_utils-0.93.0 \ swc_ecma_visit-0.70.0 \ swc_eq_ignore_macros-0.1.0 \ swc_fast_graph-0.11.0 \ swc_graph_analyzer-0.12.0 \ swc_macros_common-0.3.5 \ swc_visit-0.4.0 \ swc_visit_macros-0.4.0 \ syn-0.15.44 \ syn-1.0.96 \ sys-info-0.9.1 \ tar-0.4.38 \ tempfile-3.3.0 \ termcolor-1.1.3 \ text-size-1.1.0 \ text_lines-0.4.1 \ text_lines-0.6.0 \ textwrap-0.15.0 \ thiserror-1.0.31 \ thiserror-impl-1.0.31 \ time-0.1.44 \ time-0.3.9 \ tinyvec-1.6.0 \ tinyvec_macros-0.1.0 \ tokio-1.19.2 \ tokio-macros-1.8.0 \ tokio-rustls-0.23.4 \ tokio-socks-0.5.1 \ tokio-stream-0.1.9 \ tokio-tungstenite-0.16.1 \ tokio-util-0.7.2 \ toml-0.5.9 \ tower-0.4.12 \ tower-layer-0.3.1 \ tower-lsp-0.17.0 \ tower-lsp-macros-0.6.0 \ tower-service-0.3.1 \ tracing-0.1.35 \ tracing-attributes-0.1.21 \ tracing-core-0.1.27 \ trust-dns-client-0.21.2 \ trust-dns-proto-0.21.2 \ trust-dns-resolver-0.21.2 \ trust-dns-server-0.21.2 \ try-lock-0.2.3 \ tungstenite-0.16.0 \ twox-hash-1.6.2 \ typed-arena-2.0.1 \ typenum-1.15.0 \ unic-char-property-0.9.0 \ unic-char-range-0.9.0 \ unic-common-0.9.0 \ unic-ucd-ident-0.9.0 \ unic-ucd-version-0.9.0 \ unicase-2.6.0 \ unicode-bidi-0.3.8 \ unicode-id-0.3.2 \ unicode-ident-1.0.1 \ unicode-normalization-0.1.19 \ unicode-segmentation-1.9.0 \ unicode-width-0.1.9 \ unicode-xid-0.1.0 \ unicode-xid-0.2.3 \ universal-hash-0.4.1 \ unreachable-0.1.1 \ untrusted-0.7.1 \ url-1.7.2 \ url-2.2.2 \ urlpattern-0.2.0 \ utf-8-0.7.6 \ utf8parse-0.2.0 \ uuid-1.0.0 \ v8-0.47.1 \ vcpkg-0.2.15 \ version_check-0.9.4 \ void-1.0.2 \ walkdir-2.3.2 \ want-0.3.0 \ wasi-0.10.0+wasi-snapshot-preview1 \ wasi-0.11.0+wasi-snapshot-preview1 \ wasm-bindgen-0.2.81 \ wasm-bindgen-backend-0.2.81 \ wasm-bindgen-futures-0.4.31 \ wasm-bindgen-macro-0.2.81 \ wasm-bindgen-macro-support-0.2.81 \ wasm-bindgen-shared-0.2.81 \ web-sys-0.3.58 \ webpki-0.22.0 \ webpki-roots-0.22.3 \ wgpu-core-0.13.1 \ wgpu-hal-0.13.1 \ wgpu-types-0.13.0 \ which-4.2.5 \ widestring-0.5.1 \ winapi-0.2.8 \ winapi-0.3.9 \ winapi-build-0.1.1 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-util-0.1.5 \ winapi-x86_64-pc-windows-gnu-0.4.0 \ windows-sys-0.30.0 \ windows-sys-0.36.1 \ windows_aarch64_msvc-0.30.0 \ windows_aarch64_msvc-0.36.1 \ windows_i686_gnu-0.30.0 \ windows_i686_gnu-0.36.1 \ windows_i686_msvc-0.30.0 \ windows_i686_msvc-0.36.1 \ windows_x86_64_gnu-0.30.0 \ windows_x86_64_gnu-0.36.1 \ windows_x86_64_msvc-0.30.0 \ windows_x86_64_msvc-0.36.1 \ winreg-0.7.0 \ winreg-0.10.1 \ winres-0.1.12 \ xattr-0.2.3 \ yup-oauth2-6.7.0 \ zeroize-1.5.5 \ zstd-0.11.1+zstd.1.5.2 \ zstd-safe-5.0.1+zstd.1.5.2 \ zstd-sys-2.0.1+zstd.1.5.2 post-patch: ${REINPLACE_CMD} "s|%%LOCALBASE%%|${LOCALBASE}|" \ ${WRKSRC}/cargo-crates/v8-${V8_VERS}/buildtools/third_party/libc++/BUILD.gn #pre-build: # cd ${WRKSRC}/ext/ffi/tinycc && \ # ./configure --enable-static --cc=cc --extra-cflags="-fPIC -O3 -g -static" # cd ${WRKSRC}/ext/ffi/tinycc && \ # gmake ONE_SOURCE=yes do-install: ${INSTALL_PROGRAM} ${CARGO_TARGET_DIR}/${CARGO_BUILD_TARGET}/*/deno ${STAGEDIR}${LOCALBASE}/bin .include diff --git a/www/dufs/Makefile b/www/dufs/Makefile index cb7d4fcb61df..83bb4b3da57e 100644 --- a/www/dufs/Makefile +++ b/www/dufs/Makefile @@ -1,228 +1,229 @@ PORTNAME= dufs DISTVERSIONPREFIX= v DISTVERSION= 0.29.0 +PORTREVISION= 1 CATEGORIES= www MAINTAINER= ashish@FreeBSD.org COMMENT= HTTP File Server LICENSE= MIT APACHE20 LICENSE_COMB= dual LICENSE_FILE_MIT= ${WRKSRC}/LICENSE-MIT LICENSE_FILE_APACHE20= ${WRKSRC}/LICENSE-APACHE USES= cargo USE_GITHUB= yes GH_ACCOUNT= sigoden CARGO_CRATES= adler-1.0.2 \ aho-corasick-0.7.18 \ assert_cmd-2.0.4 \ assert_fs-1.0.7 \ async-compression-0.3.14 \ async-stream-0.3.3 \ async-stream-impl-0.3.3 \ async-trait-0.1.57 \ async_io_utilities-0.1.3 \ async_zip-0.0.8 \ autocfg-1.1.0 \ base64-0.13.0 \ bitflags-1.3.2 \ block-buffer-0.9.0 \ block-buffer-0.10.2 \ bstr-0.2.17 \ bumpalo-3.10.0 \ bytes-1.2.1 \ cc-1.0.73 \ cfg-if-1.0.0 \ chrono-0.4.19 \ clap-3.2.16 \ clap_complete-3.2.3 \ clap_lex-0.2.4 \ core-foundation-0.9.3 \ core-foundation-sys-0.8.3 \ cpufeatures-0.2.2 \ crc32fast-1.3.2 \ crossbeam-utils-0.8.11 \ crypto-common-0.1.6 \ difflib-0.4.0 \ digest-0.9.0 \ digest-0.10.3 \ digest_auth-0.3.0 \ diqwest-1.0.1 \ doc-comment-0.3.3 \ either-1.7.0 \ encoding_rs-0.8.31 \ fastrand-1.8.0 \ flate2-1.0.24 \ float-cmp-0.9.0 \ fnv-1.0.7 \ foreign-types-0.3.2 \ foreign-types-shared-0.1.1 \ form_urlencoded-1.0.1 \ futures-0.3.21 \ futures-channel-0.3.21 \ futures-core-0.3.21 \ futures-executor-0.3.21 \ futures-io-0.3.21 \ futures-macro-0.3.21 \ futures-sink-0.3.21 \ futures-task-0.3.21 \ futures-timer-3.0.2 \ futures-util-0.3.21 \ generic-array-0.14.6 \ getrandom-0.2.7 \ globset-0.4.9 \ globwalk-0.8.1 \ h2-0.3.13 \ hashbrown-0.12.3 \ headers-0.3.7 \ headers-core-0.2.0 \ hermit-abi-0.1.19 \ hex-0.4.3 \ http-0.2.8 \ http-body-0.4.5 \ httparse-1.7.1 \ httpdate-1.0.2 \ hyper-0.14.20 \ hyper-rustls-0.23.0 \ hyper-tls-0.5.0 \ idna-0.2.3 \ if-addrs-0.7.0 \ ignore-0.4.18 \ indexmap-1.9.1 \ instant-0.1.12 \ ipnet-2.5.0 \ itertools-0.10.3 \ itoa-1.0.2 \ js-sys-0.3.59 \ lazy_static-1.4.0 \ libc-0.2.126 \ log-0.4.17 \ matches-0.1.9 \ md-5-0.9.1 \ md5-0.7.0 \ memchr-2.5.0 \ mime-0.3.16 \ mime_guess-2.0.4 \ miniz_oxide-0.5.3 \ mio-0.8.4 \ native-tls-0.2.10 \ normalize-line-endings-0.3.0 \ num-integer-0.1.45 \ num-traits-0.2.15 \ num_cpus-1.13.1 \ once_cell-1.13.0 \ opaque-debug-0.3.0 \ openssl-0.10.41 \ openssl-macros-0.1.0 \ openssl-probe-0.1.5 \ openssl-sys-0.9.75 \ os_str_bytes-6.2.0 \ percent-encoding-2.1.0 \ pin-project-lite-0.2.9 \ pin-utils-0.1.0 \ pkg-config-0.3.25 \ port_check-0.1.5 \ ppv-lite86-0.2.16 \ predicates-2.1.1 \ predicates-core-1.0.3 \ predicates-tree-1.0.5 \ proc-macro2-1.0.42 \ quote-1.0.20 \ rand-0.8.5 \ rand_chacha-0.3.1 \ rand_core-0.6.3 \ redox_syscall-0.2.16 \ regex-1.6.0 \ regex-automata-0.1.10 \ regex-syntax-0.6.27 \ remove_dir_all-0.5.3 \ reqwest-0.11.11 \ ring-0.16.20 \ rstest-0.15.0 \ rstest_macros-0.14.0 \ rustc_version-0.4.0 \ rustls-0.20.6 \ rustls-pemfile-1.0.1 \ ryu-1.0.10 \ same-file-1.0.6 \ schannel-0.1.20 \ sct-0.7.0 \ security-framework-2.6.1 \ security-framework-sys-2.6.1 \ semver-1.0.12 \ serde-1.0.141 \ serde_derive-1.0.141 \ serde_json-1.0.82 \ serde_urlencoded-0.7.1 \ sha-1-0.10.0 \ sha2-0.9.9 \ signal-hook-registry-1.4.0 \ slab-0.4.7 \ socket2-0.4.4 \ spin-0.5.2 \ syn-1.0.98 \ tempfile-3.3.0 \ terminal_size-0.1.17 \ termtree-0.2.4 \ textwrap-0.15.0 \ thiserror-1.0.31 \ thiserror-impl-1.0.31 \ thread_local-1.1.4 \ time-0.1.44 \ tinyvec-1.6.0 \ tinyvec_macros-0.1.0 \ tokio-1.20.1 \ tokio-macros-1.8.0 \ tokio-native-tls-0.3.0 \ tokio-rustls-0.23.4 \ tokio-util-0.7.3 \ tower-service-0.3.2 \ tracing-0.1.36 \ tracing-core-0.1.29 \ try-lock-0.2.3 \ typenum-1.15.0 \ unicase-2.6.0 \ unicode-bidi-0.3.8 \ unicode-ident-1.0.2 \ unicode-normalization-0.1.21 \ untrusted-0.7.1 \ url-2.2.2 \ urlencoding-2.1.0 \ uuid-1.1.2 \ vcpkg-0.2.15 \ version_check-0.9.4 \ wait-timeout-0.2.0 \ walkdir-2.3.2 \ want-0.3.0 \ wasi-0.10.0+wasi-snapshot-preview1 \ wasi-0.11.0+wasi-snapshot-preview1 \ wasm-bindgen-0.2.82 \ wasm-bindgen-backend-0.2.82 \ wasm-bindgen-futures-0.4.32 \ wasm-bindgen-macro-0.2.82 \ wasm-bindgen-macro-support-0.2.82 \ wasm-bindgen-shared-0.2.82 \ web-sys-0.3.59 \ webpki-0.22.0 \ webpki-roots-0.22.4 \ winapi-0.3.9 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-util-0.1.5 \ winapi-x86_64-pc-windows-gnu-0.4.0 \ windows-sys-0.36.1 \ windows_aarch64_msvc-0.36.1 \ windows_i686_gnu-0.36.1 \ windows_i686_msvc-0.36.1 \ windows_x86_64_gnu-0.36.1 \ windows_x86_64_msvc-0.36.1 \ winreg-0.10.1 \ xml-rs-0.8.4 PLIST_FILES= bin/${PORTNAME} \ ${DOCSDIR_REL}/README.md post-install: ${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/README.md ${STAGEDIR}${DOCSDIR} .include diff --git a/www/ffsend/Makefile b/www/ffsend/Makefile index 3f8a7aafe263..d08705905220 100644 --- a/www/ffsend/Makefile +++ b/www/ffsend/Makefile @@ -1,372 +1,372 @@ PORTNAME= ffsend DISTVERSIONPREFIX= v DISTVERSION= 0.2.74 -PORTREVISION= 8 +PORTREVISION= 9 CATEGORIES= www MAINTAINER= ports@FreeBSD.org COMMENT= Easily and securely share files from the command line via Firefox Send LICENSE= APACHE20 BSD2CLAUSE BSD3CLAUSE CC0-1.0 FUCHSIACPRNG GPLv3 ISCL \ MIT MPL20 UNLICENSE ZLIB LICENSE_COMB= multi LICENSE_NAME_FUCHSIACPRNG= BSD-like license + patent clause LICENSE_FILE_FUCHSIACPRNG= ${WRKSRC}/cargo-crates/fuchsia-cprng-0.1.1/LICENSE # Main license. LICENSE_FILE_GPLv3= ${WRKSRC}/LICENSE LICENSE_PERMS_FUCHSIACPRNG= dist-mirror dist-sell pkg-mirror pkg-sell \ auto-accept RUN_DEPENDS= ca_root_nss>0:security/ca_root_nss \ xclip:x11/xclip \ xsel:x11/xsel-conrad USES= cargo localbase:ldflags python:build,3.5+ ssl xorg USE_GITLAB= yes GL_ACCOUNT= timvisee GL_COMMIT= ccd489ce2e75b91c0f17fbf13dbd91fe84f5ad98 USE_XORG= xcb CARGO_CRATES= addr2line-0.16.0 \ adler-1.0.2 \ aho-corasick-0.7.18 \ ansi_term-0.11.0 \ anyhow-1.0.44 \ arrayref-0.3.6 \ arrayvec-0.5.2 \ atty-0.2.14 \ autocfg-0.1.7 \ autocfg-1.0.1 \ backtrace-0.3.61 \ base-x-0.2.8 \ base64-0.9.3 \ base64-0.10.1 \ base64-0.13.0 \ bitflags-1.3.2 \ blake2b_simd-0.5.11 \ block-0.1.6 \ block-buffer-0.7.3 \ block-buffer-0.9.0 \ block-padding-0.1.5 \ bstr-0.2.17 \ bumpalo-3.7.1 \ byte-tools-0.3.1 \ byteorder-1.4.3 \ bytes-0.4.12 \ bytes-0.5.6 \ bytes-1.1.0 \ cc-1.0.71 \ cfg-if-0.1.10 \ cfg-if-1.0.0 \ chbs-0.1.0 \ checked_int_cast-1.0.0 \ chrono-0.4.19 \ clap-2.33.3 \ clipboard-0.5.0 \ clipboard-win-2.2.0 \ cloudabi-0.0.3 \ colored-2.0.0 \ const_fn-0.4.8 \ constant_time_eq-0.1.5 \ core-foundation-0.9.1 \ core-foundation-sys-0.8.2 \ cpufeatures-0.2.1 \ crossbeam-channel-0.5.1 \ crossbeam-utils-0.7.2 \ crossbeam-utils-0.8.5 \ crossterm-0.19.0 \ crossterm_winapi-0.7.0 \ crypto-mac-0.11.1 \ csv-1.1.6 \ csv-core-0.1.10 \ darling-0.10.2 \ darling-0.12.4 \ darling_core-0.10.2 \ darling_core-0.12.4 \ darling_macro-0.10.2 \ darling_macro-0.12.4 \ derive_builder-0.9.0 \ derive_builder-0.10.2 \ derive_builder_core-0.9.0 \ derive_builder_core-0.10.2 \ derive_builder_macro-0.10.2 \ digest-0.8.1 \ digest-0.9.0 \ directories-4.0.1 \ dirs-1.0.5 \ dirs-sys-0.3.6 \ discard-1.0.4 \ either-1.6.1 \ encode_unicode-0.3.6 \ encoding_rs-0.8.28 \ failure-0.1.8 \ failure_derive-0.1.8 \ fake-simd-0.1.2 \ ffsend-api-0.7.3 \ filetime-0.2.15 \ fnv-1.0.7 \ foreign-types-0.3.2 \ foreign-types-shared-0.1.1 \ form_urlencoded-1.0.1 \ fs2-0.4.3 \ fuchsia-cprng-0.1.1 \ fuchsia-zircon-0.3.3 \ fuchsia-zircon-sys-0.3.3 \ futures-0.1.31 \ futures-channel-0.3.17 \ futures-core-0.3.17 \ futures-io-0.3.17 \ futures-macro-0.3.17 \ futures-sink-0.3.17 \ futures-task-0.3.17 \ futures-util-0.3.17 \ generic-array-0.12.4 \ generic-array-0.14.4 \ getrandom-0.1.16 \ getrandom-0.2.3 \ gimli-0.25.0 \ h2-0.2.7 \ h2-0.3.6 \ hashbrown-0.11.2 \ hermit-abi-0.1.19 \ hkdf-0.11.0 \ hmac-0.11.0 \ http-0.2.5 \ http-body-0.3.1 \ http-body-0.4.3 \ httparse-1.5.1 \ httpdate-0.3.2 \ httpdate-1.0.1 \ hyper-0.10.16 \ hyper-0.13.10 \ hyper-0.14.13 \ hyper-rustls-0.22.1 \ hyper-tls-0.4.3 \ hyper-tls-0.5.0 \ ident_case-1.0.1 \ idna-0.1.5 \ idna-0.2.3 \ indexmap-1.7.0 \ instant-0.1.11 \ iovec-0.1.4 \ ipnet-2.3.1 \ itoa-0.4.8 \ js-sys-0.3.55 \ kernel32-sys-0.2.2 \ language-tags-0.2.2 \ lazy_static-1.4.0 \ libc-0.2.103 \ lock_api-0.3.4 \ lock_api-0.4.5 \ log-0.3.9 \ log-0.4.14 \ malloc_buf-0.0.6 \ matches-0.1.9 \ maybe-uninit-2.0.0 \ memchr-2.4.1 \ mime-0.2.6 \ mime-0.3.16 \ mime_guess-2.0.3 \ miniz_oxide-0.4.4 \ mio-0.6.23 \ mio-0.7.13 \ miow-0.2.2 \ miow-0.3.7 \ native-tls-0.2.8 \ net2-0.2.37 \ ntapi-0.3.6 \ num-integer-0.1.44 \ num-traits-0.2.14 \ num_cpus-1.13.0 \ objc-0.2.7 \ objc-foundation-0.1.1 \ objc_id-0.1.1 \ object-0.26.2 \ once_cell-1.8.0 \ opaque-debug-0.2.3 \ opaque-debug-0.3.0 \ open-2.0.1 \ openssl-0.10.36 \ openssl-probe-0.1.4 \ openssl-sys-0.9.67 \ parking_lot-0.9.0 \ parking_lot-0.11.2 \ parking_lot_core-0.6.2 \ parking_lot_core-0.8.5 \ pathdiff-0.2.1 \ pbr-1.0.4 \ percent-encoding-1.0.1 \ percent-encoding-2.1.0 \ pin-project-1.0.8 \ pin-project-internal-1.0.8 \ pin-project-lite-0.1.12 \ pin-project-lite-0.2.7 \ pin-utils-0.1.0 \ pkg-config-0.3.20 \ ppv-lite86-0.2.10 \ prettytable-rs-0.8.0 \ proc-macro-hack-0.5.19 \ proc-macro-nested-0.1.7 \ proc-macro2-1.0.29 \ qr2term-0.2.2 \ qrcode-0.12.0 \ quote-1.0.10 \ rand-0.6.5 \ rand-0.8.4 \ rand_chacha-0.1.1 \ rand_chacha-0.3.1 \ rand_core-0.3.1 \ rand_core-0.4.2 \ rand_core-0.6.3 \ rand_hc-0.1.0 \ rand_hc-0.3.1 \ rand_isaac-0.1.1 \ rand_jitter-0.1.4 \ rand_os-0.1.3 \ rand_pcg-0.1.2 \ rand_xorshift-0.1.1 \ rdrand-0.4.0 \ redox_syscall-0.1.57 \ redox_syscall-0.2.10 \ redox_users-0.3.5 \ redox_users-0.4.0 \ regex-1.5.4 \ regex-automata-0.1.10 \ regex-syntax-0.6.25 \ remove_dir_all-0.5.3 \ reqwest-0.10.10 \ reqwest-0.11.4 \ ring-0.16.20 \ rpassword-5.0.1 \ rust-argon2-0.8.3 \ rustc-demangle-0.1.21 \ rustc_version-0.2.3 \ rustls-0.19.1 \ ryu-1.0.5 \ safemem-0.3.3 \ schannel-0.1.19 \ scopeguard-1.1.0 \ sct-0.6.1 \ security-framework-2.4.2 \ security-framework-sys-2.4.2 \ semver-0.9.0 \ semver-parser-0.7.0 \ serde-1.0.130 \ serde_derive-1.0.130 \ serde_json-1.0.68 \ serde_urlencoded-0.7.0 \ sha-1-0.8.2 \ sha1-0.6.0 \ sha2-0.9.8 \ signal-hook-0.1.17 \ signal-hook-registry-1.4.0 \ slab-0.4.4 \ smallvec-0.6.14 \ smallvec-1.7.0 \ socket2-0.3.19 \ socket2-0.4.2 \ spin-0.5.2 \ standback-0.2.17 \ stdweb-0.4.20 \ stdweb-derive-0.5.3 \ stdweb-internal-macros-0.2.9 \ stdweb-internal-runtime-0.1.5 \ strsim-0.8.0 \ strsim-0.9.3 \ strsim-0.10.0 \ subtle-2.4.1 \ syn-1.0.80 \ synstructure-0.12.5 \ tar-0.4.37 \ tempfile-3.2.0 \ term-0.5.2 \ textwrap-0.11.0 \ thiserror-1.0.29 \ thiserror-impl-1.0.29 \ time-0.1.43 \ time-0.2.27 \ time-macros-0.1.1 \ time-macros-impl-0.1.2 \ tinyvec-1.5.0 \ tinyvec_macros-0.1.0 \ tokio-0.2.25 \ tokio-1.12.0 \ tokio-codec-0.1.2 \ tokio-executor-0.1.10 \ tokio-io-0.1.13 \ tokio-native-tls-0.3.0 \ tokio-reactor-0.1.12 \ tokio-rustls-0.22.0 \ tokio-sync-0.1.8 \ tokio-tcp-0.1.4 \ tokio-tls-0.2.1 \ tokio-tls-0.3.1 \ tokio-util-0.3.1 \ tokio-util-0.6.8 \ toml-0.5.8 \ tower-service-0.3.1 \ tracing-0.1.29 \ tracing-core-0.1.21 \ tracing-futures-0.2.5 \ traitobject-0.1.0 \ try-lock-0.2.3 \ typeable-0.1.2 \ typenum-1.14.0 \ unicase-1.4.2 \ unicase-2.6.0 \ unicode-bidi-0.3.6 \ unicode-normalization-0.1.19 \ unicode-width-0.1.9 \ unicode-xid-0.2.2 \ untrusted-0.7.1 \ url-1.7.2 \ url-2.2.2 \ urlshortener-3.0.0 \ vcpkg-0.2.15 \ vec_map-0.8.2 \ version-compare-0.0.11 \ version-compare-0.0.13 \ version_check-0.1.5 \ version_check-0.9.3 \ want-0.3.0 \ wasi-0.9.0+wasi-snapshot-preview1 \ wasi-0.10.2+wasi-snapshot-preview1 \ wasm-bindgen-0.2.78 \ wasm-bindgen-backend-0.2.78 \ wasm-bindgen-futures-0.4.28 \ wasm-bindgen-macro-0.2.78 \ wasm-bindgen-macro-support-0.2.78 \ wasm-bindgen-shared-0.2.78 \ web-sys-0.3.55 \ webpki-0.21.4 \ webpki-roots-0.21.1 \ websocket-0.26.2 \ websocket-base-0.26.2 \ which-4.2.2 \ winapi-0.2.8 \ winapi-0.3.9 \ winapi-build-0.1.1 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-x86_64-pc-windows-gnu-0.4.0 \ winreg-0.7.0 \ ws2_32-sys-0.2.1 \ x11-clipboard-0.3.3 \ xattr-0.2.2 \ xcb-0.8.2 MAKE_ENV= XCLIP_PATH=${LOCALBASE}/bin/xclip \ XSEL_PATH=${LOCALBASE}/bin/xsel BINARY_ALIAS= python3=${PYTHON_CMD} PLIST_FILES= bin/${PORTNAME} \ bin/ffdel \ bin/ffget \ bin/ffput post-install: @${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/${PORTNAME} .for f in ffdel ffget ffput cd ${STAGEDIR}${PREFIX}/bin && ${RLN} ${PORTNAME} ${f} .endfor .include diff --git a/www/firefox-esr/Makefile b/www/firefox-esr/Makefile index 1d5737fdb00c..334e800c5d19 100644 --- a/www/firefox-esr/Makefile +++ b/www/firefox-esr/Makefile @@ -1,61 +1,62 @@ PORTNAME= firefox DISTVERSION= 91.13.0 +PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= www wayland MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}esr/source \ MOZILLA/${PORTNAME}/candidates/${DISTVERSION}esr-candidates/build1/source PKGNAMESUFFIX= -esr DISTFILES= ${DISTNAME}esr.source${EXTRACT_SUFX} MAINTAINER= gecko@FreeBSD.org COMMENT= Web browser based on the browser portion of Mozilla BUILD_DEPENDS= nspr>=4.32:devel/nspr \ nss>=3.68:security/nss \ icu>=67.1,1:devel/icu \ libevent>=2.1.8:devel/libevent \ harfbuzz>=2.8.1:print/harfbuzz \ graphite2>=1.3.14:graphics/graphite2 \ png>=1.6.37:graphics/png \ dav1d>=1.0.0:multimedia/dav1d \ libvpx>=1.8.2:multimedia/libvpx \ ${PYTHON_PKGNAMEPREFIX}sqlite3>0:databases/py-sqlite3@${PY_FLAVOR} \ v4l_compat>0:multimedia/v4l_compat \ autoconf2.13:devel/autoconf2.13 \ nasm:devel/nasm \ yasm:devel/yasm \ zip:archivers/zip USE_GECKO= gecko CPE_PRODUCT= ${PORTNAME}_esr CONFLICTS_INSTALL= firefox USE_MOZILLA= -sqlite CFLAGS_powerpc64le= -DSQLITE_BYTEORDER=1234 USES= tar:xz FIREFOX_ICON= ${MOZILLA}.png FIREFOX_ICON_SRC= ${PREFIX}/lib/${MOZILLA}/browser/chrome/icons/default/default48.png FIREFOX_DESKTOP= ${MOZSRC}/taskcluster/docker/${MOZILLA}-snap/${MOZILLA}.desktop MOZ_OPTIONS= --enable-application=browser \ --enable-official-branding .include "${.CURDIR}/../../www/firefox/Makefile.options" post-patch: @${REINPLACE_CMD} -e 's/%u/%U/' -e '/X-MultipleArgs/d' \ -e '/^Icon/s/=.*/=${FIREFOX_ICON:R}/' \ ${FIREFOX_DESKTOP} @${REINPLACE_CMD} -e 's|%%LOCALBASE%%|${LOCALBASE}|g' \ ${WRKSRC}/browser/app/nsBrowserApp.cpp pre-configure: (cd ${WRKSRC} && ${LOCALBASE}/bin/autoconf2.13) (cd ${WRKSRC}/js/src/ && ${LOCALBASE}/bin/autoconf2.13) post-install: ${INSTALL_DATA} ${FIREFOX_DESKTOP} ${STAGEDIR}${PREFIX}/share/applications/ ${MKDIR} ${STAGEDIR}${PREFIX}/share/pixmaps ${LN} -sf ${FIREFOX_ICON_SRC} ${STAGEDIR}${PREFIX}/share/pixmaps/${FIREFOX_ICON} .include diff --git a/www/firefox-esr/files/patch-rust-1.63 b/www/firefox-esr/files/patch-rust-1.63 new file mode 100644 index 000000000000..15c50810edfe --- /dev/null +++ b/www/firefox-esr/files/patch-rust-1.63 @@ -0,0 +1,767 @@ +Backport of https://hg.mozilla.org/releases/mozilla-beta/raw-rev/c37c77a20f96 +Only the rust code is present (not the .toml, .json and .lock files) + + +diff --git a/third_party/rust/packed_simd/build.rs b/third_party/rust/packed_simd/build.rs +--- third_party/rust/packed_simd/build.rs ++++ third_party/rust/packed_simd/build.rs +@@ -1,6 +1,11 @@ ++use rustc_version::{version, Version}; ++ + fn main() { + let target = std::env::var("TARGET").expect("TARGET environment variable not defined"); + if target.contains("neon") { + println!("cargo:rustc-cfg=libcore_neon"); + } ++ if version().unwrap() < Version::parse("1.61.0-alpha").unwrap() { ++ println!("cargo:rustc-cfg=aarch64_target_feature"); ++ } + } +diff --git a/third_party/rust/packed_simd/src/api.rs b/third_party/rust/packed_simd/src/api.rs +--- third_party/rust/packed_simd/src/api.rs ++++ third_party/rust/packed_simd/src/api.rs +@@ -1,13 +1,13 @@ + //! Implements the Simd<[T; N]> APIs + + #[macro_use] + mod bitmask; +-crate mod cast; ++pub(crate) mod cast; + #[macro_use] + mod cmp; + #[macro_use] + mod default; + #[macro_use] + mod fmt; + #[macro_use] + mod from; +@@ -32,17 +32,17 @@ mod shuffle1_dyn; + #[macro_use] + mod slice; + #[macro_use] + mod swap_bytes; + #[macro_use] + mod bit_manip; + + #[cfg(feature = "into_bits")] +-crate mod into_bits; ++pub(crate) mod into_bits; + + macro_rules! impl_i { + ([$elem_ty:ident; $elem_n:expr]: $tuple_id:ident, $mask_ty:ident + | $ielem_ty:ident, $ibitmask_ty:ident | $test_tt:tt | $($elem_ids:ident),* + | From: $($from_vec_ty:ident),* | $(#[$doc:meta])*) => { + impl_minimal_iuf!([$elem_ty; $elem_n]: $tuple_id | $ielem_ty | $test_tt + | $($elem_ids),* | $(#[$doc])*); + impl_ops_vector_arithmetic!([$elem_ty; $elem_n]: $tuple_id | $test_tt); +diff --git a/third_party/rust/packed_simd/src/codegen.rs b/third_party/rust/packed_simd/src/codegen.rs +--- third_party/rust/packed_simd/src/codegen.rs ++++ third_party/rust/packed_simd/src/codegen.rs +@@ -1,24 +1,24 @@ + //! Code-generation utilities + +-crate mod bit_manip; +-crate mod llvm; +-crate mod math; +-crate mod reductions; +-crate mod shuffle; +-crate mod shuffle1_dyn; +-crate mod swap_bytes; ++pub(crate) mod bit_manip; ++pub(crate) mod llvm; ++pub(crate) mod math; ++pub(crate) mod reductions; ++pub(crate) mod shuffle; ++pub(crate) mod shuffle1_dyn; ++pub(crate) mod swap_bytes; + + macro_rules! impl_simd_array { + ([$elem_ty:ident; $elem_count:expr]: + $tuple_id:ident | $($elem_tys:ident),*) => { + #[derive(Copy, Clone)] + #[repr(simd)] +- pub struct $tuple_id($(crate $elem_tys),*); ++ pub struct $tuple_id($(pub(crate) $elem_tys),*); + //^^^^^^^ leaked through SimdArray + + impl crate::sealed::Seal for [$elem_ty; $elem_count] {} + + impl crate::sealed::SimdArray for [$elem_ty; $elem_count] { + type Tuple = $tuple_id; + type T = $elem_ty; + const N: usize = $elem_count; +@@ -30,33 +30,33 @@ macro_rules! impl_simd_array { + type Element = $elem_ty; + const LANES: usize = $elem_count; + type LanesType = [u32; $elem_count]; + } + + } + } + +-crate mod pointer_sized_int; ++pub(crate) mod pointer_sized_int; + +-crate mod v16; +-crate use self::v16::*; ++pub(crate) mod v16; ++pub(crate) use self::v16::*; + +-crate mod v32; +-crate use self::v32::*; ++pub(crate) mod v32; ++pub(crate) use self::v32::*; + +-crate mod v64; +-crate use self::v64::*; ++pub(crate) mod v64; ++pub(crate) use self::v64::*; + +-crate mod v128; +-crate use self::v128::*; ++pub(crate) mod v128; ++pub(crate) use self::v128::*; + +-crate mod v256; +-crate use self::v256::*; ++pub(crate) mod v256; ++pub(crate) use self::v256::*; + +-crate mod v512; +-crate use self::v512::*; ++pub(crate) mod v512; ++pub(crate) use self::v512::*; + +-crate mod vSize; +-crate use self::vSize::*; ++pub(crate) mod vSize; ++pub(crate) use self::vSize::*; + +-crate mod vPtr; +-crate use self::vPtr::*; ++pub(crate) mod vPtr; ++pub(crate) use self::vPtr::*; +diff --git a/third_party/rust/packed_simd/src/codegen/bit_manip.rs b/third_party/rust/packed_simd/src/codegen/bit_manip.rs +--- third_party/rust/packed_simd/src/codegen/bit_manip.rs ++++ third_party/rust/packed_simd/src/codegen/bit_manip.rs +@@ -1,12 +1,12 @@ + //! LLVM bit manipulation intrinsics. + #[rustfmt::skip] + +-use crate::*; ++pub(crate) use crate::*; + + #[allow(improper_ctypes, dead_code)] + extern "C" { + #[link_name = "llvm.ctlz.v2i8"] + fn ctlz_u8x2(x: u8x2, is_zero_undef: bool) -> u8x2; + #[link_name = "llvm.ctlz.v4i8"] + fn ctlz_u8x4(x: u8x4, is_zero_undef: bool) -> u8x4; + #[link_name = "llvm.ctlz.v8i8"] +@@ -142,17 +142,17 @@ extern "C" { + #[link_name = "llvm.ctpop.v1i128"] + fn ctpop_u128x1(x: u128x1) -> u128x1; + #[link_name = "llvm.ctpop.v2i128"] + fn ctpop_u128x2(x: u128x2) -> u128x2; + #[link_name = "llvm.ctpop.v4i128"] + fn ctpop_u128x4(x: u128x4) -> u128x4; + } + +-crate trait BitManip { ++pub(crate) trait BitManip { + fn ctpop(self) -> Self; + fn ctlz(self) -> Self; + fn cttz(self) -> Self; + } + + macro_rules! impl_bit_manip { + (inner: $ty:ident, $scalar:ty, $uty:ident, + $ctpop:ident, $ctlz:ident, $cttz:ident) => { +diff --git a/third_party/rust/packed_simd/src/codegen/llvm.rs b/third_party/rust/packed_simd/src/codegen/llvm.rs +--- third_party/rust/packed_simd/src/codegen/llvm.rs ++++ third_party/rust/packed_simd/src/codegen/llvm.rs +@@ -71,58 +71,58 @@ pub unsafe fn __shuffle_vector64::Element: Shuffle<[u32; 64], Output = U>, + { + simd_shuffle64(x, y, IDX) + } + + extern "platform-intrinsic" { +- crate fn simd_eq(x: T, y: T) -> U; +- crate fn simd_ne(x: T, y: T) -> U; +- crate fn simd_lt(x: T, y: T) -> U; +- crate fn simd_le(x: T, y: T) -> U; +- crate fn simd_gt(x: T, y: T) -> U; +- crate fn simd_ge(x: T, y: T) -> U; ++ pub(crate) fn simd_eq(x: T, y: T) -> U; ++ pub(crate) fn simd_ne(x: T, y: T) -> U; ++ pub(crate) fn simd_lt(x: T, y: T) -> U; ++ pub(crate) fn simd_le(x: T, y: T) -> U; ++ pub(crate) fn simd_gt(x: T, y: T) -> U; ++ pub(crate) fn simd_ge(x: T, y: T) -> U; + +- crate fn simd_insert(x: T, idx: u32, val: U) -> T; +- crate fn simd_extract(x: T, idx: u32) -> U; ++ pub(crate) fn simd_insert(x: T, idx: u32, val: U) -> T; ++ pub(crate) fn simd_extract(x: T, idx: u32) -> U; + +- crate fn simd_cast(x: T) -> U; ++ pub(crate) fn simd_cast(x: T) -> U; + +- crate fn simd_add(x: T, y: T) -> T; +- crate fn simd_sub(x: T, y: T) -> T; +- crate fn simd_mul(x: T, y: T) -> T; +- crate fn simd_div(x: T, y: T) -> T; +- crate fn simd_rem(x: T, y: T) -> T; +- crate fn simd_shl(x: T, y: T) -> T; +- crate fn simd_shr(x: T, y: T) -> T; +- crate fn simd_and(x: T, y: T) -> T; +- crate fn simd_or(x: T, y: T) -> T; +- crate fn simd_xor(x: T, y: T) -> T; ++ pub(crate) fn simd_add(x: T, y: T) -> T; ++ pub(crate) fn simd_sub(x: T, y: T) -> T; ++ pub(crate) fn simd_mul(x: T, y: T) -> T; ++ pub(crate) fn simd_div(x: T, y: T) -> T; ++ pub(crate) fn simd_rem(x: T, y: T) -> T; ++ pub(crate) fn simd_shl(x: T, y: T) -> T; ++ pub(crate) fn simd_shr(x: T, y: T) -> T; ++ pub(crate) fn simd_and(x: T, y: T) -> T; ++ pub(crate) fn simd_or(x: T, y: T) -> T; ++ pub(crate) fn simd_xor(x: T, y: T) -> T; + +- crate fn simd_reduce_add_unordered(x: T) -> U; +- crate fn simd_reduce_mul_unordered(x: T) -> U; +- crate fn simd_reduce_add_ordered(x: T, acc: U) -> U; +- crate fn simd_reduce_mul_ordered(x: T, acc: U) -> U; +- crate fn simd_reduce_min(x: T) -> U; +- crate fn simd_reduce_max(x: T) -> U; +- crate fn simd_reduce_min_nanless(x: T) -> U; +- crate fn simd_reduce_max_nanless(x: T) -> U; +- crate fn simd_reduce_and(x: T) -> U; +- crate fn simd_reduce_or(x: T) -> U; +- crate fn simd_reduce_xor(x: T) -> U; +- crate fn simd_reduce_all(x: T) -> bool; +- crate fn simd_reduce_any(x: T) -> bool; ++ pub(crate) fn simd_reduce_add_unordered(x: T) -> U; ++ pub(crate) fn simd_reduce_mul_unordered(x: T) -> U; ++ pub(crate) fn simd_reduce_add_ordered(x: T, acc: U) -> U; ++ pub(crate) fn simd_reduce_mul_ordered(x: T, acc: U) -> U; ++ pub(crate) fn simd_reduce_min(x: T) -> U; ++ pub(crate) fn simd_reduce_max(x: T) -> U; ++ pub(crate) fn simd_reduce_min_nanless(x: T) -> U; ++ pub(crate) fn simd_reduce_max_nanless(x: T) -> U; ++ pub(crate) fn simd_reduce_and(x: T) -> U; ++ pub(crate) fn simd_reduce_or(x: T) -> U; ++ pub(crate) fn simd_reduce_xor(x: T) -> U; ++ pub(crate) fn simd_reduce_all(x: T) -> bool; ++ pub(crate) fn simd_reduce_any(x: T) -> bool; + +- crate fn simd_select(m: M, a: T, b: T) -> T; ++ pub(crate) fn simd_select(m: M, a: T, b: T) -> T; + +- crate fn simd_fmin(a: T, b: T) -> T; +- crate fn simd_fmax(a: T, b: T) -> T; ++ pub(crate) fn simd_fmin(a: T, b: T) -> T; ++ pub(crate) fn simd_fmax(a: T, b: T) -> T; + +- crate fn simd_fsqrt(a: T) -> T; +- crate fn simd_fma(a: T, b: T, c: T) -> T; ++ pub(crate) fn simd_fsqrt(a: T) -> T; ++ pub(crate) fn simd_fma(a: T, b: T, c: T) -> T; + +- crate fn simd_gather(value: T, pointers: P, mask: M) -> T; +- crate fn simd_scatter(value: T, pointers: P, mask: M); ++ pub(crate) fn simd_gather(value: T, pointers: P, mask: M) -> T; ++ pub(crate) fn simd_scatter(value: T, pointers: P, mask: M); + +- crate fn simd_bitmask(value: T) -> U; ++ pub(crate) fn simd_bitmask(value: T) -> U; + } +diff --git a/third_party/rust/packed_simd/src/codegen/math.rs b/third_party/rust/packed_simd/src/codegen/math.rs +--- third_party/rust/packed_simd/src/codegen/math.rs ++++ third_party/rust/packed_simd/src/codegen/math.rs +@@ -1,3 +1,3 @@ + //! Vertical math operations + +-crate mod float; ++pub(crate) mod float; +diff --git a/third_party/rust/packed_simd/src/codegen/math/float.rs b/third_party/rust/packed_simd/src/codegen/math/float.rs +--- third_party/rust/packed_simd/src/codegen/math/float.rs ++++ third_party/rust/packed_simd/src/codegen/math/float.rs +@@ -1,18 +1,18 @@ + //! Vertical floating-point math operations. + #![allow(clippy::useless_transmute)] + + #[macro_use] +-crate mod macros; +-crate mod abs; +-crate mod cos; +-crate mod cos_pi; +-crate mod exp; +-crate mod ln; +-crate mod mul_add; +-crate mod mul_adde; +-crate mod powf; +-crate mod sin; +-crate mod sin_cos_pi; +-crate mod sin_pi; +-crate mod sqrt; +-crate mod sqrte; ++pub(crate) mod macros; ++pub(crate) mod abs; ++pub(crate) mod cos; ++pub(crate) mod cos_pi; ++pub(crate) mod exp; ++pub(crate) mod ln; ++pub(crate) mod mul_add; ++pub(crate) mod mul_adde; ++pub(crate) mod powf; ++pub(crate) mod sin; ++pub(crate) mod sin_cos_pi; ++pub(crate) mod sin_pi; ++pub(crate) mod sqrt; ++pub(crate) mod sqrte; +diff --git a/third_party/rust/packed_simd/src/codegen/math/float/abs.rs b/third_party/rust/packed_simd/src/codegen/math/float/abs.rs +--- third_party/rust/packed_simd/src/codegen/math/float/abs.rs ++++ third_party/rust/packed_simd/src/codegen/math/float/abs.rs +@@ -1,16 +1,16 @@ + //! Vertical floating-point `fabs` + #![allow(unused)] + + // FIXME 64-bit 1 elem vectors fabs + + use crate::*; + +-crate trait Abs { ++pub(crate) trait Abs { + fn abs(self) -> Self; + } + + #[allow(improper_ctypes)] + extern "C" { + #[link_name = "llvm.fabs.v2f32"] + fn fabs_v2f32(x: f32x2) -> f32x2; + #[link_name = "llvm.fabs.v4f32"] +diff --git a/third_party/rust/packed_simd/src/codegen/math/float/cos.rs b/third_party/rust/packed_simd/src/codegen/math/float/cos.rs +--- third_party/rust/packed_simd/src/codegen/math/float/cos.rs ++++ third_party/rust/packed_simd/src/codegen/math/float/cos.rs +@@ -1,16 +1,16 @@ + //! Vertical floating-point `cos` + #![allow(unused)] + + // FIXME 64-bit 1 elem vector cos + + use crate::*; + +-crate trait Cos { ++pub(crate) trait Cos { + fn cos(self) -> Self; + } + + #[allow(improper_ctypes)] + extern "C" { + #[link_name = "llvm.cos.v2f32"] + fn cos_v2f32(x: f32x2) -> f32x2; + #[link_name = "llvm.cos.v4f32"] +diff --git a/third_party/rust/packed_simd/src/codegen/math/float/cos_pi.rs b/third_party/rust/packed_simd/src/codegen/math/float/cos_pi.rs +--- third_party/rust/packed_simd/src/codegen/math/float/cos_pi.rs ++++ third_party/rust/packed_simd/src/codegen/math/float/cos_pi.rs +@@ -1,16 +1,16 @@ + //! Vertical floating-point `cos` + #![allow(unused)] + + // FIXME 64-bit 1 elem vectors cos_pi + + use crate::*; + +-crate trait CosPi { ++pub(crate) trait CosPi { + fn cos_pi(self) -> Self; + } + + gen_unary_impl_table!(CosPi, cos_pi); + + macro_rules! impl_def { + ($vid:ident, $PI:path) => { + impl CosPi for $vid { +diff --git a/third_party/rust/packed_simd/src/codegen/math/float/exp.rs b/third_party/rust/packed_simd/src/codegen/math/float/exp.rs +--- third_party/rust/packed_simd/src/codegen/math/float/exp.rs ++++ third_party/rust/packed_simd/src/codegen/math/float/exp.rs +@@ -1,16 +1,16 @@ + //! Vertical floating-point `exp` + #![allow(unused)] + + // FIXME 64-bit expgle elem vectors misexpg + + use crate::*; + +-crate trait Exp { ++pub(crate) trait Exp { + fn exp(self) -> Self; + } + + #[allow(improper_ctypes)] + extern "C" { + #[link_name = "llvm.exp.v2f32"] + fn exp_v2f32(x: f32x2) -> f32x2; + #[link_name = "llvm.exp.v4f32"] +diff --git a/third_party/rust/packed_simd/src/codegen/math/float/ln.rs b/third_party/rust/packed_simd/src/codegen/math/float/ln.rs +--- third_party/rust/packed_simd/src/codegen/math/float/ln.rs ++++ third_party/rust/packed_simd/src/codegen/math/float/ln.rs +@@ -1,16 +1,16 @@ + //! Vertical floating-point `ln` + #![allow(unused)] + + // FIXME 64-bit lngle elem vectors mislng + + use crate::*; + +-crate trait Ln { ++pub(crate) trait Ln { + fn ln(self) -> Self; + } + + #[allow(improper_ctypes)] + extern "C" { + #[link_name = "llvm.log.v2f32"] + fn ln_v2f32(x: f32x2) -> f32x2; + #[link_name = "llvm.log.v4f32"] +diff --git a/third_party/rust/packed_simd/src/codegen/math/float/mul_add.rs b/third_party/rust/packed_simd/src/codegen/math/float/mul_add.rs +--- third_party/rust/packed_simd/src/codegen/math/float/mul_add.rs ++++ third_party/rust/packed_simd/src/codegen/math/float/mul_add.rs +@@ -1,15 +1,15 @@ + //! Vertical floating-point `mul_add` + #![allow(unused)] + use crate::*; + + // FIXME: 64-bit 1 element mul_add + +-crate trait MulAdd { ++pub(crate) trait MulAdd { + fn mul_add(self, y: Self, z: Self) -> Self; + } + + #[cfg(not(target_arch = "s390x"))] + #[allow(improper_ctypes)] + extern "C" { + #[link_name = "llvm.fma.v2f32"] + fn fma_v2f32(x: f32x2, y: f32x2, z: f32x2) -> f32x2; +diff --git a/third_party/rust/packed_simd/src/codegen/math/float/mul_adde.rs b/third_party/rust/packed_simd/src/codegen/math/float/mul_adde.rs +--- third_party/rust/packed_simd/src/codegen/math/float/mul_adde.rs ++++ third_party/rust/packed_simd/src/codegen/math/float/mul_adde.rs +@@ -1,14 +1,14 @@ + //! Approximation for floating-point `mul_add` + use crate::*; + + // FIXME: 64-bit 1 element mul_adde + +-crate trait MulAddE { ++pub(crate) trait MulAddE { + fn mul_adde(self, y: Self, z: Self) -> Self; + } + + #[cfg(not(target_arch = "s390x"))] + #[allow(improper_ctypes)] + extern "C" { + #[link_name = "llvm.fmuladd.v2f32"] + fn fmuladd_v2f32(x: f32x2, y: f32x2, z: f32x2) -> f32x2; +diff --git a/third_party/rust/packed_simd/src/codegen/math/float/powf.rs b/third_party/rust/packed_simd/src/codegen/math/float/powf.rs +--- third_party/rust/packed_simd/src/codegen/math/float/powf.rs ++++ third_party/rust/packed_simd/src/codegen/math/float/powf.rs +@@ -1,16 +1,16 @@ + //! Vertical floating-point `powf` + #![allow(unused)] + + // FIXME 64-bit powfgle elem vectors mispowfg + + use crate::*; + +-crate trait Powf { ++pub(crate) trait Powf { + fn powf(self, x: Self) -> Self; + } + + #[allow(improper_ctypes)] + extern "C" { + #[link_name = "llvm.pow.v2f32"] + fn powf_v2f32(x: f32x2, y: f32x2) -> f32x2; + #[link_name = "llvm.pow.v4f32"] +diff --git a/third_party/rust/packed_simd/src/codegen/math/float/sin.rs b/third_party/rust/packed_simd/src/codegen/math/float/sin.rs +--- third_party/rust/packed_simd/src/codegen/math/float/sin.rs ++++ third_party/rust/packed_simd/src/codegen/math/float/sin.rs +@@ -1,16 +1,16 @@ + //! Vertical floating-point `sin` + #![allow(unused)] + + // FIXME 64-bit 1 elem vectors sin + + use crate::*; + +-crate trait Sin { ++pub(crate) trait Sin { + fn sin(self) -> Self; + } + + #[allow(improper_ctypes)] + extern "C" { + #[link_name = "llvm.sin.v2f32"] + fn sin_v2f32(x: f32x2) -> f32x2; + #[link_name = "llvm.sin.v4f32"] +diff --git a/third_party/rust/packed_simd/src/codegen/math/float/sin_cos_pi.rs b/third_party/rust/packed_simd/src/codegen/math/float/sin_cos_pi.rs +--- third_party/rust/packed_simd/src/codegen/math/float/sin_cos_pi.rs ++++ third_party/rust/packed_simd/src/codegen/math/float/sin_cos_pi.rs +@@ -1,16 +1,16 @@ + //! Vertical floating-point `sin_cos` + #![allow(unused)] + + // FIXME 64-bit 1 elem vectors sin_cos + + use crate::*; + +-crate trait SinCosPi: Sized { ++pub(crate) trait SinCosPi: Sized { + type Output; + fn sin_cos_pi(self) -> Self::Output; + } + + macro_rules! impl_def { + ($vid:ident, $PI:path) => { + impl SinCosPi for $vid { + type Output = (Self, Self); +diff --git a/third_party/rust/packed_simd/src/codegen/math/float/sin_pi.rs b/third_party/rust/packed_simd/src/codegen/math/float/sin_pi.rs +--- third_party/rust/packed_simd/src/codegen/math/float/sin_pi.rs ++++ third_party/rust/packed_simd/src/codegen/math/float/sin_pi.rs +@@ -1,16 +1,16 @@ + //! Vertical floating-point `sin_pi` + #![allow(unused)] + + // FIXME 64-bit 1 elem vectors sin_pi + + use crate::*; + +-crate trait SinPi { ++pub(crate) trait SinPi { + fn sin_pi(self) -> Self; + } + + gen_unary_impl_table!(SinPi, sin_pi); + + macro_rules! impl_def { + ($vid:ident, $PI:path) => { + impl SinPi for $vid { +diff --git a/third_party/rust/packed_simd/src/codegen/math/float/sqrt.rs b/third_party/rust/packed_simd/src/codegen/math/float/sqrt.rs +--- third_party/rust/packed_simd/src/codegen/math/float/sqrt.rs ++++ third_party/rust/packed_simd/src/codegen/math/float/sqrt.rs +@@ -1,16 +1,16 @@ + //! Vertical floating-point `sqrt` + #![allow(unused)] + + // FIXME 64-bit 1 elem vectors sqrt + + use crate::*; + +-crate trait Sqrt { ++pub(crate) trait Sqrt { + fn sqrt(self) -> Self; + } + + #[allow(improper_ctypes)] + extern "C" { + #[link_name = "llvm.sqrt.v2f32"] + fn sqrt_v2f32(x: f32x2) -> f32x2; + #[link_name = "llvm.sqrt.v4f32"] +diff --git a/third_party/rust/packed_simd/src/codegen/math/float/sqrte.rs b/third_party/rust/packed_simd/src/codegen/math/float/sqrte.rs +--- third_party/rust/packed_simd/src/codegen/math/float/sqrte.rs ++++ third_party/rust/packed_simd/src/codegen/math/float/sqrte.rs +@@ -1,17 +1,17 @@ + //! Vertical floating-point `sqrt` + #![allow(unused)] + + // FIXME 64-bit 1 elem vectors sqrte + + use crate::llvm::simd_fsqrt; + use crate::*; + +-crate trait Sqrte { ++pub(crate) trait Sqrte { + fn sqrte(self) -> Self; + } + + gen_unary_impl_table!(Sqrte, sqrte); + + cfg_if! { + if #[cfg(all(target_arch = "x86_64", feature = "sleef-sys"))] { + use sleef_sys::*; +diff --git a/third_party/rust/packed_simd/src/codegen/pointer_sized_int.rs b/third_party/rust/packed_simd/src/codegen/pointer_sized_int.rs +--- third_party/rust/packed_simd/src/codegen/pointer_sized_int.rs ++++ third_party/rust/packed_simd/src/codegen/pointer_sized_int.rs +@@ -1,28 +1,28 @@ + //! Provides `isize` and `usize` + + use cfg_if::cfg_if; + + cfg_if! { + if #[cfg(target_pointer_width = "8")] { +- crate type isize_ = i8; +- crate type usize_ = u8; ++ pub(crate) type isize_ = i8; ++ pub(crate) type usize_ = u8; + } else if #[cfg(target_pointer_width = "16")] { +- crate type isize_ = i16; +- crate type usize_ = u16; ++ pub(crate) type isize_ = i16; ++ pub(crate) type usize_ = u16; + } else if #[cfg(target_pointer_width = "32")] { +- crate type isize_ = i32; +- crate type usize_ = u32; ++ pub(crate) type isize_ = i32; ++ pub(crate) type usize_ = u32; + + } else if #[cfg(target_pointer_width = "64")] { +- crate type isize_ = i64; +- crate type usize_ = u64; ++ pub(crate) type isize_ = i64; ++ pub(crate) type usize_ = u64; + } else if #[cfg(target_pointer_width = "64")] { +- crate type isize_ = i64; +- crate type usize_ = u64; ++ pub(crate) type isize_ = i64; ++ pub(crate) type usize_ = u64; + } else if #[cfg(target_pointer_width = "128")] { +- crate type isize_ = i128; +- crate type usize_ = u128; ++ pub(crate) type isize_ = i128; ++ pub(crate) type usize_ = u128; + } else { + compile_error!("unsupported target_pointer_width"); + } + } +diff --git a/third_party/rust/packed_simd/src/codegen/reductions.rs b/third_party/rust/packed_simd/src/codegen/reductions.rs +--- third_party/rust/packed_simd/src/codegen/reductions.rs ++++ third_party/rust/packed_simd/src/codegen/reductions.rs +@@ -1,1 +1,1 @@ +-crate mod mask; ++pub(crate) mod mask; +diff --git a/third_party/rust/packed_simd/src/codegen/reductions/mask.rs b/third_party/rust/packed_simd/src/codegen/reductions/mask.rs +--- third_party/rust/packed_simd/src/codegen/reductions/mask.rs ++++ third_party/rust/packed_simd/src/codegen/reductions/mask.rs +@@ -2,21 +2,21 @@ + //! + //! Works around [LLVM bug 36702]. + //! + //! [LLVM bug 36702]: https://bugs.llvm.org/show_bug.cgi?id=36702 + #![allow(unused_macros)] + + use crate::*; + +-crate trait All: crate::marker::Sized { ++pub(crate) trait All: crate::marker::Sized { + unsafe fn all(self) -> bool; + } + +-crate trait Any: crate::marker::Sized { ++pub(crate) trait Any: crate::marker::Sized { + unsafe fn any(self) -> bool; + } + + #[macro_use] + mod fallback_impl; + + cfg_if! { + if #[cfg(any(target_arch = "x86", target_arch = "x86_64"))] { +diff --git a/third_party/rust/packed_simd/src/codegen/swap_bytes.rs b/third_party/rust/packed_simd/src/codegen/swap_bytes.rs +--- third_party/rust/packed_simd/src/codegen/swap_bytes.rs ++++ third_party/rust/packed_simd/src/codegen/swap_bytes.rs +@@ -1,26 +1,26 @@ + //! Horizontal swap bytes reductions. + + // FIXME: investigate using `llvm.bswap` + // https://github.com/rust-lang-nursery/packed_simd/issues/19 + + use crate::*; + +-crate trait SwapBytes { ++pub(crate) trait SwapBytes { + fn swap_bytes(self) -> Self; + } + + macro_rules! impl_swap_bytes { + (v16: $($id:ident,)+) => { + $( + impl SwapBytes for $id { + #[inline] + fn swap_bytes(self) -> Self { +- unsafe { shuffle!(self, [1, 0]) } ++ shuffle!(self, [1, 0]) + } + } + )+ + }; + (v32: $($id:ident,)+) => { + $( + impl SwapBytes for $id { + #[inline] +diff --git a/third_party/rust/packed_simd/src/codegen/vPtr.rs b/third_party/rust/packed_simd/src/codegen/vPtr.rs +--- third_party/rust/packed_simd/src/codegen/vPtr.rs ++++ third_party/rust/packed_simd/src/codegen/vPtr.rs +@@ -1,16 +1,16 @@ + //! Pointer vector types + + macro_rules! impl_simd_ptr { + ([$ptr_ty:ty; $elem_count:expr]: $tuple_id:ident | $ty:ident + | $($tys:ty),*) => { + #[derive(Copy, Clone)] + #[repr(simd)] +- pub struct $tuple_id<$ty>($(crate $tys),*); ++ pub struct $tuple_id<$ty>($(pub(crate) $tys),*); + //^^^^^^^ leaked through SimdArray + + impl<$ty> crate::sealed::Seal for [$ptr_ty; $elem_count] {} + impl<$ty> crate::sealed::SimdArray for [$ptr_ty; $elem_count] { + type Tuple = $tuple_id<$ptr_ty>; + type T = $ptr_ty; + const N: usize = $elem_count; + type NT = [u32; $elem_count]; +diff --git a/third_party/rust/packed_simd/src/lib.rs b/third_party/rust/packed_simd/src/lib.rs +--- third_party/rust/packed_simd/src/lib.rs ++++ third_party/rust/packed_simd/src/lib.rs +@@ -206,14 +206,13 @@ + rustc_attrs, + platform_intrinsics, + stdsimd, +- aarch64_target_feature, + arm_target_feature, + link_llvm_intrinsics, + core_intrinsics, + stmt_expr_attributes, +- crate_visibility_modifier, + custom_inner_attributes + )] ++#![cfg_attr(aarch64_target_feature, feature(aarch64_target_feature))] + #![allow(non_camel_case_types, non_snake_case, + // FIXME: these types are unsound in C FFI already + // See https://github.com/rust-lang/rust/issues/53346 +@@ -334,6 +333,6 @@ pub use self::codegen::llvm::{ + __shuffle_vector4, __shuffle_vector64, __shuffle_vector8, + }; + +-crate mod llvm { +- crate use crate::codegen::llvm::*; ++pub(crate) mod llvm { ++ pub(crate) use crate::codegen::llvm::*; + } +diff --git a/third_party/rust/packed_simd/src/testing.rs b/third_party/rust/packed_simd/src/testing.rs +--- third_party/rust/packed_simd/src/testing.rs ++++ third_party/rust/packed_simd/src/testing.rs +@@ -1,8 +1,8 @@ + //! Testing macros and other utilities. + + #[macro_use] + mod macros; + + #[cfg(test)] + #[macro_use] +-crate mod utils; ++pub(crate) mod utils; diff --git a/www/firefox/Makefile b/www/firefox/Makefile index 630e26472b54..a48af83ec0cb 100644 --- a/www/firefox/Makefile +++ b/www/firefox/Makefile @@ -1,76 +1,76 @@ PORTNAME= firefox DISTVERSION= 104.0 -PORTREVISION= 2 +PORTREVISION= 3 PORTEPOCH= 2 CATEGORIES= www wayland MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}${DISTVERSIONSUFFIX}/source \ MOZILLA/${PORTNAME}/candidates/${DISTVERSION}${DISTVERSIONSUFFIX}-candidates/build3/source DISTFILES= ${DISTNAME}.source${EXTRACT_SUFX} MAINTAINER= gecko@FreeBSD.org COMMENT= Web browser based on the browser portion of Mozilla BUILD_DEPENDS= nspr>=4.32:devel/nspr \ nss>=3.81:security/nss \ icu>=71.1:devel/icu \ libevent>=2.1.8:devel/libevent \ harfbuzz>=4.4.1:print/harfbuzz \ graphite2>=1.3.14:graphics/graphite2 \ png>=1.6.37:graphics/png \ dav1d>=1.0.0:multimedia/dav1d \ libvpx>=1.12.0:multimedia/libvpx \ ${PYTHON_PKGNAMEPREFIX}sqlite3>0:databases/py-sqlite3@${PY_FLAVOR} \ v4l_compat>0:multimedia/v4l_compat \ autoconf2.13:devel/autoconf2.13 \ nasm:devel/nasm \ yasm:devel/yasm \ zip:archivers/zip USE_GECKO= gecko CONFLICTS_INSTALL= firefox-esr USE_MOZILLA= -sqlite CFLAGS_powerpc64le= -DSQLITE_BYTEORDER=1234 # work around bindgen not finding ICU, e.g. # dist/include/mozilla/intl/ICU4CGlue.h:8:10: fatal error: 'unicode/uenum.h' file not found, err: true CONFIGURE_ENV+= BINDGEN_CFLAGS="-I${LOCALBASE}/include" USES= tar:xz # helpful when testing beta WRKSRC= ${WRKDIR}/${PORTNAME}-${DISTVERSION} FIREFOX_ICON= ${MOZILLA}.png FIREFOX_ICON_SRC= ${PREFIX}/lib/${MOZILLA}/browser/chrome/icons/default/default48.png FIREFOX_DESKTOP= ${MOZSRC}/taskcluster/docker/${MOZILLA}-snap/${MOZILLA}.desktop MOZ_OPTIONS= --enable-application=browser \ --enable-official-branding .include "${.CURDIR}/../../www/firefox/Makefile.options" .include .if ${ARCH} == powerpc64 MOZ_OPTIONS+= --disable-webrtc --without-wasm-sandboxed-libraries .else BUILD_DEPENDS+= ${LOCALBASE}/share/wasi-sysroot/lib/wasm32-wasi/libc++abi.a:devel/wasi-libcxx \ ${LOCALBASE}/share/wasi-sysroot/lib/wasm32-wasi/libc.a:devel/wasi-libc \ ${LOCALBASE}/llvm${LLVM_DEFAULT}/lib/clang/${LLVM_VERSION}/lib/wasi/libclang_rt.builtins-wasm32.a:devel/wasi-compiler-rt${LLVM_DEFAULT} MOZ_OPTIONS+= --with-wasi-sysroot=${LOCALBASE}/share/wasi-sysroot .endif post-patch: @${REINPLACE_CMD} -e 's/%u/%U/' -e '/X-MultipleArgs/d' \ -e '/^Icon/s/=.*/=${FIREFOX_ICON:R}/' \ ${FIREFOX_DESKTOP} @${REINPLACE_CMD} -e 's|%%LOCALBASE%%|${LOCALBASE}|g' \ ${WRKSRC}/browser/app/nsBrowserApp.cpp pre-configure: (cd ${WRKSRC} && ${LOCALBASE}/bin/autoconf2.13) (cd ${WRKSRC}/js/src/ && ${LOCALBASE}/bin/autoconf2.13) post-install: ${INSTALL_DATA} ${FIREFOX_DESKTOP} ${STAGEDIR}${PREFIX}/share/applications/ ${MKDIR} ${STAGEDIR}${PREFIX}/share/pixmaps ${LN} -sf ${FIREFOX_ICON_SRC} ${STAGEDIR}${PREFIX}/share/pixmaps/${FIREFOX_ICON} .include diff --git a/www/garage/Makefile b/www/garage/Makefile index b2a3ffa730bb..a02eb17f42d5 100644 --- a/www/garage/Makefile +++ b/www/garage/Makefile @@ -1,365 +1,365 @@ PORTNAME= garage DISTVERSION= 0.7.2 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= www MASTER_SITES= https://git.deuxfleurs.fr/Deuxfleurs/${PORTNAME}/archive/v${PORTVERSION}.tar.gz?dummy=/ DISTFILES= ${PORTNAME}-${DISTVERSION}${EXTRACT_SUFX} MAINTAINER= ashish@FreeBSD.org COMMENT= Open-source distributed storage service LICENSE= AGPLv3 LICENSE_FILE= ${WRKSRC}/LICENSE BUILD_DEPENDS= protoc:devel/protobuf LIB_DEPENDS= libsodium.so:security/libsodium USES= cargo pkgconfig CARGO_ENV+= SODIUM_USE_PKG_CONFIG=1 CARGO_INSTALL_PATH= src/garage CARGO_CRATES= aho-corasick-0.7.18 \ anyhow-1.0.56 \ arc-swap-1.5.0 \ arrayvec-0.5.2 \ assert-json-diff-2.0.1 \ async-stream-0.3.3 \ async-stream-impl-0.3.3 \ async-trait-0.1.52 \ atty-0.2.14 \ autocfg-1.1.0 \ aws-endpoint-0.8.0 \ aws-http-0.8.0 \ aws-sdk-s3-0.8.0 \ aws-sig-auth-0.8.0 \ aws-sigv4-0.8.0 \ aws-smithy-async-0.38.0 \ aws-smithy-client-0.38.0 \ aws-smithy-eventstream-0.38.0 \ aws-smithy-http-0.38.0 \ aws-smithy-http-tower-0.38.0 \ aws-smithy-types-0.38.0 \ aws-smithy-xml-0.38.0 \ aws-types-0.8.0 \ base64-0.13.0 \ bitflags-1.3.2 \ blake2-0.9.2 \ block-buffer-0.9.0 \ bumpalo-3.9.1 \ byteorder-1.4.3 \ bytes-0.6.0 \ bytes-1.1.0 \ bytes-utils-0.1.2 \ cc-1.0.73 \ cfg-if-1.0.0 \ cfg_aliases-0.1.1 \ chrono-0.4.19 \ clap-2.34.0 \ clap-3.1.18 \ clap_derive-3.1.18 \ clap_lex-0.2.0 \ cloudabi-0.0.3 \ core-foundation-0.9.3 \ core-foundation-sys-0.8.3 \ cpufeatures-0.2.2 \ crc32fast-1.3.2 \ crossbeam-channel-0.5.4 \ crossbeam-epoch-0.9.8 \ crossbeam-utils-0.8.8 \ crypto-mac-0.8.0 \ crypto-mac-0.10.1 \ crypto-mac-0.11.1 \ ct-logs-0.8.0 \ darling-0.13.1 \ darling_core-0.13.1 \ darling_macro-0.13.1 \ dashmap-4.0.2 \ derivative-2.2.0 \ digest-0.9.0 \ dirs-next-2.0.0 \ dirs-sys-next-0.1.2 \ doc-comment-0.3.3 \ dyn-clone-1.0.5 \ either-1.6.1 \ encoding_rs-0.8.30 \ env_logger-0.7.1 \ err-derive-0.2.4 \ err-derive-0.3.1 \ fastrand-1.7.0 \ fixedbitset-0.4.1 \ fnv-1.0.7 \ foreign-types-0.3.2 \ foreign-types-shared-0.1.1 \ form_urlencoded-1.0.1 \ fs2-0.4.3 \ fuchsia-cprng-0.1.1 \ futures-0.3.21 \ futures-channel-0.3.21 \ futures-core-0.3.21 \ futures-executor-0.3.21 \ futures-io-0.3.21 \ futures-macro-0.3.21 \ futures-sink-0.3.21 \ futures-task-0.3.21 \ futures-util-0.3.21 \ fxhash-0.2.1 \ garage_model-0.5.1 \ garage_rpc-0.5.1 \ garage_table-0.5.1 \ garage_util-0.5.1 \ generic-array-0.14.5 \ gethostname-0.2.3 \ getrandom-0.2.5 \ git-version-0.3.5 \ git-version-macro-0.3.5 \ h2-0.3.12 \ hashbrown-0.11.2 \ heck-0.3.3 \ heck-0.4.0 \ hermit-abi-0.1.19 \ hex-0.4.3 \ hexdump-0.1.1 \ hmac-0.10.1 \ hmac-0.11.0 \ http-0.2.6 \ http-body-0.4.4 \ http-range-0.1.5 \ httparse-1.6.0 \ httpdate-0.3.2 \ httpdate-1.0.2 \ humantime-1.3.0 \ hyper-0.14.18 \ hyper-rustls-0.22.1 \ hyper-timeout-0.4.1 \ hyper-tls-0.5.0 \ ident_case-1.0.1 \ idna-0.2.3 \ indexmap-1.8.0 \ instant-0.1.12 \ ipnetwork-0.18.0 \ itertools-0.4.19 \ itertools-0.10.3 \ itoa-1.0.1 \ jobserver-0.1.24 \ js-sys-0.3.56 \ json-patch-0.2.6 \ jsonpath_lib-0.3.0 \ k8s-openapi-0.13.1 \ kube-0.62.0 \ kube-client-0.62.0 \ kube-core-0.62.0 \ kube-derive-0.62.0 \ kube-runtime-0.62.0 \ kuska-handshake-0.2.0 \ kuska-sodiumoxide-0.2.5-0 \ lazy_static-1.4.0 \ libc-0.2.121 \ libsodium-sys-0.2.7 \ linked-hash-map-0.5.4 \ lock_api-0.4.6 \ log-0.4.16 \ matches-0.1.9 \ md-5-0.9.1 \ md5-0.7.0 \ memchr-2.4.1 \ memoffset-0.6.5 \ mime-0.3.16 \ minimal-lexical-0.2.1 \ mio-0.8.2 \ miow-0.3.7 \ multer-2.0.2 \ multimap-0.8.3 \ native-tls-0.2.8 \ netapp-0.3.1 \ netapp-0.4.4 \ nom-7.1.1 \ ntapi-0.3.7 \ num-integer-0.1.44 \ num-traits-0.2.14 \ num_cpus-1.13.1 \ num_threads-0.1.5 \ once_cell-1.10.0 \ opaque-debug-0.3.0 \ openssl-0.10.38 \ openssl-probe-0.1.5 \ openssl-src-111.18.0+1.1.1n \ openssl-sys-0.9.72 \ opentelemetry-0.17.0 \ opentelemetry-contrib-0.9.0 \ opentelemetry-otlp-0.10.0 \ opentelemetry-prometheus-0.10.0 \ ordered-float-2.10.0 \ os_str_bytes-6.0.1 \ parking_lot-0.11.2 \ parking_lot-0.12.0 \ parking_lot_core-0.8.5 \ parking_lot_core-0.9.1 \ pem-0.8.3 \ percent-encoding-2.1.0 \ petgraph-0.6.0 \ pin-project-0.4.29 \ pin-project-1.0.10 \ pin-project-internal-0.4.29 \ pin-project-internal-1.0.10 \ pin-project-lite-0.2.8 \ pin-utils-0.1.0 \ pkg-config-0.3.24 \ pnet_base-0.28.0 \ pnet_datalink-0.28.0 \ pnet_sys-0.28.0 \ ppv-lite86-0.2.16 \ pretty_env_logger-0.4.0 \ proc-macro-error-1.0.4 \ proc-macro-error-attr-1.0.4 \ proc-macro-hack-0.5.19 \ proc-macro2-1.0.36 \ prometheus-0.13.0 \ prost-0.9.0 \ prost-build-0.9.0 \ prost-derive-0.9.0 \ prost-types-0.9.0 \ protobuf-2.27.1 \ quick-error-1.2.3 \ quick-xml-0.21.0 \ quote-1.0.16 \ rand-0.5.6 \ rand-0.8.5 \ rand_chacha-0.3.1 \ rand_core-0.3.1 \ rand_core-0.4.2 \ rand_core-0.6.3 \ redox_syscall-0.2.11 \ redox_users-0.4.2 \ regex-1.5.5 \ regex-syntax-0.6.25 \ remove_dir_all-0.5.3 \ ring-0.16.20 \ rmp-0.8.10 \ rmp-serde-0.14.4 \ rmp-serde-0.15.5 \ roxmltree-0.14.1 \ rusoto_core-0.48.0 \ rusoto_credential-0.48.0 \ rusoto_signature-0.48.0 \ rustc_version-0.4.0 \ rustls-0.19.1 \ rustls-native-certs-0.5.0 \ rustversion-1.0.6 \ ryu-1.0.9 \ same-file-1.0.6 \ schannel-0.1.19 \ schemars-0.8.8 \ schemars_derive-0.8.8 \ scopeguard-1.1.0 \ sct-0.6.1 \ security-framework-2.6.1 \ security-framework-sys-2.6.1 \ semver-1.0.6 \ serde-1.0.137 \ serde-value-0.7.0 \ serde_bytes-0.11.5 \ serde_derive-1.0.137 \ serde_derive_internals-0.25.0 \ serde_json-1.0.81 \ serde_yaml-0.8.23 \ sha2-0.9.9 \ shlex-1.1.0 \ signal-hook-registry-1.4.0 \ slab-0.4.5 \ sled-0.34.7 \ smallvec-1.8.0 \ snafu-0.6.10 \ snafu-derive-0.6.10 \ socket2-0.4.4 \ spin-0.5.2 \ spin-0.9.2 \ static_init-1.0.2 \ static_init_macro-1.0.2 \ strsim-0.10.0 \ structopt-0.3.26 \ structopt-derive-0.4.18 \ subtle-2.4.1 \ syn-1.0.94 \ synstructure-0.12.6 \ tempfile-3.3.0 \ termcolor-1.1.3 \ textwrap-0.11.0 \ textwrap-0.15.0 \ thiserror-1.0.31 \ thiserror-impl-1.0.31 \ time-0.1.44 \ time-0.3.9 \ tinyvec-1.5.1 \ tinyvec_macros-0.1.0 \ tokio-1.17.0 \ tokio-io-timeout-1.2.0 \ tokio-macros-1.7.0 \ tokio-native-tls-0.3.0 \ tokio-rustls-0.22.0 \ tokio-stream-0.1.8 \ tokio-util-0.6.9 \ tokio-util-0.7.0 \ toml-0.5.8 \ tonic-0.6.2 \ tonic-build-0.6.2 \ tower-0.4.12 \ tower-http-0.1.3 \ tower-layer-0.3.1 \ tower-service-0.3.1 \ tracing-0.1.32 \ tracing-attributes-0.1.20 \ tracing-core-0.1.23 \ tracing-futures-0.2.5 \ treediff-3.0.2 \ try-lock-0.2.3 \ typenum-1.15.0 \ unicode-bidi-0.3.7 \ unicode-normalization-0.1.19 \ unicode-segmentation-1.9.0 \ unicode-width-0.1.9 \ unicode-xid-0.2.2 \ untrusted-0.7.1 \ url-2.2.2 \ vcpkg-0.2.15 \ version_check-0.9.4 \ walkdir-2.3.2 \ want-0.3.0 \ wasi-0.10.0+wasi-snapshot-preview1 \ wasi-0.11.0+wasi-snapshot-preview1 \ wasm-bindgen-0.2.79 \ wasm-bindgen-backend-0.2.79 \ wasm-bindgen-macro-0.2.79 \ wasm-bindgen-macro-support-0.2.79 \ wasm-bindgen-shared-0.2.79 \ web-sys-0.3.56 \ webpki-0.21.4 \ which-4.2.5 \ winapi-0.3.9 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-util-0.1.5 \ winapi-x86_64-pc-windows-gnu-0.4.0 \ windows-sys-0.32.0 \ windows_aarch64_msvc-0.32.0 \ windows_i686_gnu-0.32.0 \ windows_i686_msvc-0.32.0 \ windows_x86_64_gnu-0.32.0 \ windows_x86_64_msvc-0.32.0 \ xml-rs-0.8.4 \ xmlparser-0.13.3 \ xxhash-rust-0.8.4 \ yaml-rust-0.4.5 \ zeroize-1.5.4 \ zstd-0.9.2+zstd.1.5.1 \ zstd-safe-4.1.3+zstd.1.5.1 \ zstd-sys-1.6.2+zstd.1.5.1 SUB_FILES= pkg-message WRKSRC= ${WRKDIR}/${PORTNAME} post-patch: ${GREP} -F -Rl /etc/garage ${WRKSRC} | ${XARGS} ${REINPLACE_CMD} \ -e 's,/etc/garage,${ETCDIR},g' post-install: ${MKDIR} ${STAGEDIR}${DOCSDIR} cd ${WRKSRC}/doc && ${COPYTREE_SHARE} . ${STAGEDIR}${DOCSDIR} "! -name *\.bak" .include diff --git a/www/geckodriver/Makefile b/www/geckodriver/Makefile index 583022b9b5dd..3e3b1650c900 100644 --- a/www/geckodriver/Makefile +++ b/www/geckodriver/Makefile @@ -1,370 +1,370 @@ PORTNAME= geckodriver DISTVERSION= 0.26.0 -PORTREVISION= 26 +PORTREVISION= 27 CATEGORIES= www MASTER_SITES= https://hg.mozilla.org/mozilla-central/archive/${DISTNAME}.zip/testing/geckodriver/?dummy=/ DISTNAME= e9783a644016aa9b317887076618425586730d73 EXTRACT_SUFX= .zip DISTFILES= ${DISTNAME}${EXTRACT_SUFX} MAINTAINER= daniel@blodan.se COMMENT= Proxy for using WebDriver clients with Gecko-based browsers LICENSE= MPL20 USES= cargo cpe CPE_VENDOR= mozilla WRKSRC= ${WRKDIR}/mozilla-central-${DISTNAME}/testing/geckodriver PLIST_FILES= bin/geckodriver CARGO_CRATES= Inflector-0.11.4 \ adler32-1.0.4 \ aho-corasick-0.7.6 \ ansi_term-0.11.0 \ app_units-0.7.0 \ arrayref-0.3.5 \ arrayvec-0.4.11 \ atomic-0.4.5 \ atomic_refcell-0.1.0 \ atty-0.2.11 \ audio_thread_priority-0.19.1 \ authenticator-0.2.6 \ autocfg-0.1.6 \ backtrace-0.3.9 \ backtrace-sys-0.1.24 \ base64-0.10.1 \ binary-space-partition-0.1.2 \ bincode-1.0.0 \ bindgen-0.51.1 \ binjs_meta-0.5.2 \ bit-vec-0.5.1 \ bit_reverse-0.1.7 \ bitflags-1.0.4 \ bitreader-0.3.0 \ blake2b_simd-0.5.8 \ block-buffer-0.7.3 \ block-padding-0.1.2 \ boxfnonce-0.0.3 \ byte-tools-0.3.0 \ byteorder-1.3.1 \ bytes-0.4.9 \ cc-1.0.34 \ cexpr-0.3.3 \ cfg-if-0.1.6 \ chrono-0.4.6 \ clang-sys-0.28.1 \ clap-2.31.2 \ cloudabi-0.0.3 \ cmake-0.1.29 \ comedy-0.1.0 \ constant_time_eq-0.1.3 \ cookie-0.12.0 \ core-foundation-0.6.3 \ core-foundation-sys-0.6.2 \ core-graphics-0.17.1 \ core-text-13.0.0 \ coreaudio-sys-0.2.2 \ cose-0.1.4 \ cose-c-0.1.5 \ cranelift-bforest-0.44.0 \ cranelift-codegen-0.44.0 \ cranelift-codegen-meta-0.44.0 \ cranelift-codegen-shared-0.44.0 \ cranelift-entity-0.44.0 \ cranelift-frontend-0.44.0 \ cranelift-wasm-0.44.0 \ crc32fast-1.2.0 \ crossbeam-deque-0.7.1 \ crossbeam-epoch-0.7.2 \ crossbeam-queue-0.1.2 \ crossbeam-utils-0.6.5 \ cssparser-0.25.9 \ cssparser-macros-0.3.6 \ cstr-0.1.3 \ cstr-macros-0.1.6 \ cubeb-0.5.5 \ cubeb-backend-0.5.5 \ cubeb-core-0.5.5 \ cubeb-sys-0.5.5 \ darling-0.10.1 \ darling_core-0.10.1 \ darling_macro-0.10.1 \ dbus-0.6.4 \ deflate-0.7.19 \ derive_more-0.13.0 \ devd-rs-0.3.0 \ digest-0.8.0 \ dirs-1.0.5 \ dns-parser-0.8.0 \ dogear-0.4.0 \ dtoa-0.4.2 \ dtoa-short-0.3.1 \ dwrote-0.9.0 \ either-1.1.0 \ encoding_c-0.9.5 \ encoding_c_mem-0.2.4 \ encoding_rs-0.8.20 \ env_logger-0.6.2 \ error-chain-0.11.0 \ euclid-0.20.0 \ failure-0.1.3 \ failure_derive-0.1.3 \ fake-simd-0.1.2 \ filetime_win-0.1.0 \ flate2-1.0.11 \ fnv-1.0.6 \ foreign-types-0.3.0 \ freetype-0.4.0 \ fuchsia-cprng-0.1.1 \ fuchsia-zircon-0.3.3 \ fuchsia-zircon-sys-0.3.3 \ futures-0.1.23 \ futures-cpupool-0.1.8 \ fxhash-0.2.1 \ generic-array-0.12.0 \ gl_generator-0.11.0 \ gleam-0.6.17 \ glob-0.3.0 \ goblin-0.0.24 \ guid_win-0.1.0 \ h2-0.1.12 \ headers-0.2.1 \ headers-core-0.1.1 \ headers-derive-0.1.1 \ http-0.1.17 \ httparse-1.3.3 \ humantime-1.1.1 \ hyper-0.12.19 \ ident_case-1.0.0 \ idna-0.2.0 \ image-0.22.1 \ indexmap-1.1.0 \ inflate-0.4.5 \ iovec-0.1.2 \ itertools-0.8.0 \ itoa-0.4.1 \ kernel32-sys-0.2.2 \ khronos_api-3.1.0 \ lazy_static-1.2.0 \ lazycell-1.2.1 \ libc-0.2.60 \ libdbus-sys-0.1.5 \ libloading-0.5.0 \ libudev-0.2.0 \ libudev-sys-0.1.3 \ libz-sys-1.0.25 \ line-wrap-0.1.1 \ linked-hash-map-0.5.1 \ lmdb-rkv-0.12.3 \ lmdb-rkv-sys-0.9.5 \ lock_api-0.3.1 \ log-0.4.6 \ lzw-0.10.0 \ mach-0.3.2 \ malloc_size_of_derive-0.1.0 \ matches-0.1.6 \ memchr-2.2.0 \ memmap-0.7.0 \ memoffset-0.5.1 \ mime-0.3.13 \ mime_guess-2.0.1 \ miniz_oxide-0.3.2 \ mio-0.6.19 \ mio-extras-2.0.5 \ mio-named-pipes-0.1.6 \ mio-uds-0.6.7 \ miow-0.2.1 \ miow-0.3.3 \ moz_cbor-0.1.1 \ mozdevice-0.1.0 \ mozprofile-0.6.0 \ mozrunner-0.10.0 \ mozversion-0.2.1 \ mp4parse-0.11.2 \ mp4parse_capi-0.11.2 \ mp4parse_fallible-0.0.1 \ msdos_time-0.1.6 \ murmurhash3-0.0.5 \ net2-0.2.33 \ new_debug_unreachable-1.0.1 \ nodrop-0.1.12 \ nom-4.1.1 \ num-derive-0.3.0 \ num-integer-0.1.39 \ num-iter-0.1.37 \ num-rational-0.2.1 \ num-traits-0.2.6 \ num_cpus-1.7.0 \ object-0.14.0 \ opaque-debug-0.2.1 \ ordered-float-1.0.1 \ owning_ref-0.4.0 \ packed_simd-0.3.3 \ parking_lot-0.9.0 \ parking_lot_core-0.6.2 \ peeking_take_while-0.1.2 \ percent-encoding-2.1.0 \ phf-0.7.24 \ phf_codegen-0.7.24 \ phf_generator-0.7.24 \ phf_shared-0.7.24 \ pkg-config-0.3.9 \ plain-0.2.3 \ plane-split-0.15.0 \ plist-0.5.1 \ png-0.15.0 \ podio-0.1.5 \ precomputed-hash-0.1.1 \ proc-macro2-0.4.27 \ proc-macro2-1.0.5 \ procedural-masquerade-0.1.1 \ pulse-0.2.0 \ quick-error-1.2.1 \ quote-0.6.11 \ quote-1.0.2 \ rand-0.6.5 \ rand_chacha-0.1.1 \ rand_core-0.3.1 \ rand_core-0.4.0 \ rand_hc-0.1.0 \ rand_isaac-0.1.1 \ rand_jitter-0.1.4 \ rand_os-0.1.3 \ rand_pcg-0.1.2 \ rand_xorshift-0.1.1 \ rayon-1.2.0 \ rayon-core-1.6.0 \ rdrand-0.4.0 \ redox_syscall-0.1.56 \ redox_termios-0.1.1 \ redox_users-0.3.1 \ regex-1.1.9 \ regex-syntax-0.6.12 \ remove_dir_all-0.5.2 \ ringbuf-0.1.4 \ rkv-0.10.2 \ ron-0.1.7 \ runloop-0.1.0 \ rust-argon2-0.5.1 \ rust-ini-0.10.3 \ rust_cascade-0.3.4 \ rustc-demangle-0.1.8 \ rustc-hash-1.0.1 \ rustc_version-0.2.3 \ ryu-0.2.4 \ safemem-0.3.0 \ same-file-1.0.2 \ scoped-tls-0.1.0 \ scoped-tls-1.0.0 \ scopeguard-1.0.0 \ scroll-0.9.2 \ scroll_derive-0.9.5 \ selectors-0.21.0 \ semver-0.6.0 \ semver-0.9.0 \ semver-parser-0.7.0 \ serde-1.0.88 \ serde_bytes-0.11.2 \ serde_derive-1.0.88 \ serde_json-1.0.26 \ serde_repr-0.1.4 \ serde_urlencoded-0.6.1 \ serde_yaml-0.8.9 \ servo_arc-0.1.1 \ sha-1-0.8.1 \ sha2-0.8.0 \ shift_or_euc-0.1.0 \ shift_or_euc_c-0.1.0 \ shlex-0.1.1 \ siphasher-0.2.1 \ slab-0.3.0 \ slab-0.4.1 \ smallbitvec-2.3.0 \ smallvec-0.6.10 \ socket2-0.3.10 \ stable_deref_trait-1.0.0 \ storage-0.1.0 \ string-0.1.1 \ strsim-0.7.0 \ svg_fmt-0.4.0 \ syn-0.15.30 \ syn-1.0.5 \ synstructure-0.10.1 \ synstructure-0.12.1 \ target-lexicon-0.8.1 \ tempfile-3.0.5 \ term_size-0.3.0 \ termcolor-1.0.5 \ termion-1.5.1 \ textwrap-0.9.0 \ thin-slice-0.1.1 \ thin-vec-0.1.0 \ thread_local-0.3.6 \ thread_profiler-0.1.1 \ threadbound-0.1.0 \ time-0.1.40 \ tokio-0.1.11 \ tokio-codec-0.1.0 \ tokio-current-thread-0.1.6 \ tokio-executor-0.1.7 \ tokio-fs-0.1.3 \ tokio-io-0.1.7 \ tokio-named-pipes-0.1.0 \ tokio-reactor-0.1.3 \ tokio-tcp-0.1.1 \ tokio-threadpool-0.1.14 \ tokio-timer-0.2.11 \ tokio-udp-0.1.1 \ tokio-uds-0.2.5 \ toml-0.4.5 \ try-lock-0.2.2 \ typenum-1.10.0 \ uluru-0.3.0 \ unicase-2.4.0 \ unicode-bidi-0.3.4 \ unicode-normalization-0.1.5 \ unicode-segmentation-1.2.1 \ unicode-width-0.1.4 \ unicode-xid-0.1.0 \ unicode-xid-0.2.0 \ unreachable-1.0.0 \ url-2.1.0 \ urlencoding-1.0.0 \ utf8-ranges-1.0.4 \ uuid-0.7.4 \ vcpkg-0.2.2 \ vec_map-0.8.0 \ version_check-0.1.5 \ void-1.0.2 \ walkdir-2.1.4 \ want-0.0.6 \ warp-0.1.19 \ wasmparser-0.39.1 \ webdriver-0.40.2 \ webrender-0.60.0 \ webrender_api-0.60.0 \ webrender_build-0.0.1 \ webrtc-sdp-0.3.1 \ weedle-0.8.0 \ winapi-0.2.8 \ winapi-0.3.6 \ winapi-build-0.1.1 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-util-0.1.2 \ winapi-x86_64-pc-windows-gnu-0.4.0 \ wincolor-1.0.2 \ winreg-0.5.1 \ wr_malloc_size_of-0.0.1 \ ws-0.9.0 \ ws2_32-sys-0.2.1 \ xml-rs-0.8.0 \ yaml-rust-0.4.2 \ zip-0.4.2 post-install: @${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/geckodriver .include diff --git a/www/jwt-cli/Makefile b/www/jwt-cli/Makefile index ec1ef4901e3c..f57c78bc3f6b 100644 --- a/www/jwt-cli/Makefile +++ b/www/jwt-cli/Makefile @@ -1,92 +1,92 @@ PORTNAME= jwt-cli PORTVERSION= 5.0.3 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= www MAINTAINER= osa@FreeBSD.org COMMENT= Super fast CLI tool to decode and encode JWTs LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.md USES= cargo USE_GITHUB= yes GH_ACCOUNT= mike-engel CARGO_CRATES= aho-corasick-0.7.18 \ atty-0.2.14 \ autocfg-1.0.1 \ base64-0.12.3 \ base64-0.13.0 \ bitflags-1.3.2 \ bumpalo-3.9.1 \ bunt-0.2.6 \ bunt-macros-0.2.5 \ cc-1.0.72 \ cfg-if-1.0.0 \ chrono-0.4.19 \ clap-3.1.12 \ clap_derive-3.1.7 \ clap_lex-0.1.1 \ hashbrown-0.11.2 \ heck-0.4.0 \ hermit-abi-0.1.19 \ indexmap-1.8.0 \ itoa-1.0.1 \ js-sys-0.3.56 \ jsonwebtoken-7.2.0 \ lazy_static-1.4.0 \ libc-0.2.113 \ litrs-0.2.3 \ log-0.4.14 \ memchr-2.4.1 \ num-0.2.1 \ num-bigint-0.2.6 \ num-complex-0.2.4 \ num-integer-0.1.44 \ num-iter-0.1.42 \ num-rational-0.2.4 \ num-traits-0.2.14 \ once_cell-1.9.0 \ os_str_bytes-6.0.0 \ parse_duration-2.1.1 \ pem-0.8.3 \ proc-macro-error-1.0.4 \ proc-macro-error-attr-1.0.4 \ proc-macro2-1.0.36 \ quote-1.0.14 \ regex-1.5.4 \ regex-syntax-0.6.25 \ ring-0.16.20 \ ryu-1.0.9 \ serde-1.0.133 \ serde_derive-1.0.133 \ serde_json-1.0.79 \ simple_asn1-0.4.1 \ spin-0.5.2 \ strsim-0.10.0 \ syn-1.0.86 \ termcolor-1.1.2 \ textwrap-0.15.0 \ time-0.1.44 \ unicode-xid-0.2.2 \ untrusted-0.7.1 \ version_check-0.9.4 \ wasi-0.10.0+wasi-snapshot-preview1 \ wasm-bindgen-0.2.79 \ wasm-bindgen-backend-0.2.79 \ wasm-bindgen-macro-0.2.79 \ wasm-bindgen-macro-support-0.2.79 \ wasm-bindgen-shared-0.2.79 \ web-sys-0.3.56 \ winapi-0.3.9 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-util-0.1.5 \ winapi-x86_64-pc-windows-gnu-0.4.0 PLIST_FILES= bin/jwt post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/jwt .include diff --git a/www/lychee/Makefile b/www/lychee/Makefile index df59459e4459..1de7a3982934 100644 --- a/www/lychee/Makefile +++ b/www/lychee/Makefile @@ -1,320 +1,320 @@ PORTNAME= lychee DISTVERSIONPREFIX= v DISTVERSION= 0.7.1 -PORTREVISION= 8 +PORTREVISION= 9 CATEGORIES= www net MAINTAINER= pizzamig@FreeBSD.org COMMENT= Link checker LICENSE= APACHE20 MIT LICENSE_COMB= dual USES= cargo ssl USE_GITHUB= yes GH_ACCOUNT= lycheeverse PLIST_FILES= bin/lychee CARGO_INSTALL_PATH= lychee-bin CARGO_CRATES= adler-1.0.2 \ aho-corasick-0.7.15 \ ansi_term-0.11.0 \ ansi_term-0.12.1 \ anyhow-1.0.40 \ arrayvec-0.5.2 \ ascii_utils-0.9.3 \ assert_cmd-1.0.4 \ async-channel-1.6.1 \ async-compression-0.3.7 \ async-executor-1.4.0 \ async-global-executor-2.0.2 \ async-io-1.3.1 \ async-lock-2.3.0 \ async-mutex-1.4.0 \ async-native-tls-0.3.3 \ async-process-1.0.2 \ async-smtp-0.4.0 \ async-std-1.9.0 \ async-std-resolver-0.20.1 \ async-task-4.0.3 \ async-trait-0.1.48 \ atomic-waker-1.0.0 \ atty-0.2.14 \ autocfg-1.0.1 \ base64-0.12.3 \ base64-0.13.0 \ bitflags-1.2.1 \ block-buffer-0.9.0 \ blocking-1.0.2 \ bstr-0.2.15 \ bufstream-0.1.4 \ bumpalo-3.6.1 \ byteorder-1.4.3 \ bytes-1.0.1 \ cache-padded-1.1.1 \ cc-1.0.67 \ cfg-if-1.0.0 \ check-if-email-exists-0.8.21 \ chrono-0.4.19 \ clap-2.33.3 \ concurrent-queue-1.2.2 \ config-0.10.1 \ console-0.14.1 \ core-foundation-0.9.1 \ core-foundation-sys-0.8.2 \ cpuid-bool-0.1.2 \ crc32fast-1.2.1 \ crossbeam-queue-0.3.1 \ crossbeam-utils-0.8.3 \ ctor-0.1.20 \ data-encoding-2.3.2 \ deadpool-0.7.0 \ diff-0.1.12 \ difference-2.0.0 \ digest-0.9.0 \ dirs-next-2.0.0 \ dirs-sys-next-0.1.2 \ doc-comment-0.3.3 \ either-1.6.1 \ encode_unicode-0.3.6 \ encoding_rs-0.8.28 \ enum-as-inner-0.3.3 \ event-listener-2.5.1 \ fast-socks5-0.4.2 \ fast_chemail-0.9.6 \ fastrand-1.4.0 \ flate2-1.0.20 \ float-cmp-0.8.0 \ fnv-1.0.7 \ foreign-types-0.3.2 \ foreign-types-shared-0.1.1 \ form_urlencoded-1.0.1 \ futf-0.1.4 \ futures-0.3.14 \ futures-channel-0.3.14 \ futures-core-0.3.14 \ futures-executor-0.3.14 \ futures-io-0.3.14 \ futures-lite-1.11.3 \ futures-macro-0.3.14 \ futures-sink-0.3.14 \ futures-task-0.3.14 \ futures-timer-3.0.2 \ futures-util-0.3.14 \ generic-array-0.14.4 \ getopts-0.2.21 \ getrandom-0.1.16 \ getrandom-0.2.2 \ glob-0.3.0 \ gloo-timers-0.2.1 \ h2-0.3.2 \ hashbrown-0.9.1 \ headers-0.3.4 \ headers-core-0.2.0 \ heck-0.3.2 \ hermit-abi-0.1.18 \ hostname-0.1.5 \ hostname-0.3.1 \ html5ever-0.25.1 \ http-0.2.4 \ http-body-0.4.1 \ http-types-2.10.0 \ httparse-1.3.6 \ httpdate-0.3.2 \ hyper-0.14.5 \ hyper-tls-0.5.0 \ hyperx-1.3.0 \ idna-0.2.2 \ indexmap-1.6.2 \ indicatif-0.15.0 \ infer-0.2.3 \ instant-0.1.9 \ ipconfig-0.2.2 \ ipnet-2.3.0 \ itoa-0.4.7 \ js-sys-0.3.50 \ jsonwebtoken-7.2.0 \ kv-log-macro-1.0.7 \ language-tags-0.2.2 \ lazy_static-1.4.0 \ lexical-core-0.7.5 \ libc-0.2.93 \ linked-hash-map-0.5.4 \ linkify-0.7.0 \ lock_api-0.4.3 \ log-0.4.14 \ lru-cache-0.1.2 \ mac-0.1.1 \ mailchecker-4.0.6 \ markup5ever-0.10.0 \ markup5ever_rcdom-0.1.0 \ match_cfg-0.1.0 \ matches-0.1.8 \ memchr-2.3.4 \ mime-0.3.16 \ miniz_oxide-0.4.4 \ mio-0.7.11 \ miow-0.3.7 \ native-tls-0.2.7 \ nb-connect-1.1.0 \ new_debug_unreachable-1.0.4 \ nom-5.1.2 \ normalize-line-endings-0.3.0 \ ntapi-0.3.6 \ num-bigint-0.2.6 \ num-integer-0.1.44 \ num-traits-0.2.14 \ num_cpus-1.13.0 \ number_prefix-0.3.0 \ once_cell-1.7.2 \ opaque-debug-0.3.0 \ openssl-0.10.33 \ openssl-probe-0.1.2 \ openssl-sys-0.9.63 \ output_vt100-0.1.2 \ pad-0.1.6 \ parking-2.0.0 \ parking_lot-0.11.1 \ parking_lot_core-0.8.3 \ pem-0.8.3 \ percent-encoding-2.1.0 \ phf-0.8.0 \ phf_codegen-0.8.0 \ phf_generator-0.8.0 \ phf_shared-0.8.0 \ pin-project-1.0.6 \ pin-project-internal-1.0.6 \ pin-project-lite-0.2.6 \ pin-utils-0.1.0 \ pkg-config-0.3.19 \ polling-2.0.3 \ ppv-lite86-0.2.10 \ precomputed-hash-0.1.1 \ predicates-1.0.8 \ predicates-core-1.0.2 \ predicates-tree-1.0.2 \ pretty_assertions-0.7.2 \ proc-macro-error-1.0.4 \ proc-macro-error-attr-1.0.4 \ proc-macro-hack-0.5.19 \ proc-macro-nested-0.1.7 \ proc-macro2-1.0.26 \ pulldown-cmark-0.8.0 \ quick-error-1.2.3 \ quote-1.0.9 \ rand-0.7.3 \ rand-0.8.3 \ rand_chacha-0.2.2 \ rand_chacha-0.3.0 \ rand_core-0.5.1 \ rand_core-0.6.2 \ rand_hc-0.2.0 \ rand_hc-0.3.0 \ rand_pcg-0.2.1 \ redox_syscall-0.2.6 \ redox_users-0.4.0 \ regex-1.4.6 \ regex-automata-0.1.9 \ regex-syntax-0.6.23 \ remove_dir_all-0.5.3 \ reqwest-0.11.3 \ resolv-conf-0.7.0 \ ring-0.16.20 \ ryu-1.0.5 \ schannel-0.1.19 \ scopeguard-1.1.0 \ security-framework-2.2.0 \ security-framework-sys-2.2.0 \ serde-1.0.125 \ serde_derive-1.0.125 \ serde_json-1.0.64 \ serde_qs-0.7.2 \ serde_urlencoded-0.7.0 \ sha-1-0.9.4 \ shellexpand-2.1.0 \ signal-hook-0.3.8 \ signal-hook-registry-1.3.0 \ simple_asn1-0.4.1 \ siphasher-0.3.5 \ slab-0.4.2 \ smallvec-1.6.1 \ smawk-0.3.1 \ socket2-0.3.19 \ socket2-0.4.0 \ spin-0.5.2 \ static_assertions-1.1.0 \ string_cache-0.8.1 \ string_cache_codegen-0.5.1 \ strsim-0.8.0 \ structopt-0.3.21 \ structopt-derive-0.4.14 \ syn-1.0.69 \ tempfile-3.2.0 \ tendril-0.4.2 \ terminal_size-0.1.16 \ textwrap-0.11.0 \ textwrap-0.13.4 \ thiserror-1.0.24 \ thiserror-impl-1.0.24 \ time-0.1.43 \ tinyvec-1.2.0 \ tinyvec_macros-0.1.0 \ tokio-1.6.0 \ tokio-macros-1.1.0 \ tokio-native-tls-0.3.0 \ tokio-socks-0.5.1 \ tokio-util-0.6.6 \ toml-0.5.8 \ tower-service-0.3.1 \ tracing-0.1.25 \ tracing-core-0.1.17 \ treeline-0.1.0 \ trust-dns-proto-0.20.1 \ trust-dns-resolver-0.20.1 \ try-lock-0.2.3 \ typed-builder-0.9.0 \ typenum-1.13.0 \ unicase-2.6.0 \ unicode-bidi-0.3.5 \ unicode-normalization-0.1.17 \ unicode-segmentation-1.7.1 \ unicode-width-0.1.8 \ unicode-xid-0.2.1 \ untrusted-0.7.1 \ url-2.2.2 \ utf-8-0.7.5 \ uuid-0.8.2 \ value-bag-1.0.0-alpha.6 \ vcpkg-0.2.11 \ vec-arena-1.1.0 \ vec_map-0.8.2 \ version_check-0.9.3 \ wait-timeout-0.2.0 \ waker-fn-1.1.0 \ want-0.3.0 \ wasi-0.9.0+wasi-snapshot-preview1 \ wasi-0.10.2+wasi-snapshot-preview1 \ wasm-bindgen-0.2.73 \ wasm-bindgen-backend-0.2.73 \ wasm-bindgen-futures-0.4.23 \ wasm-bindgen-macro-0.2.73 \ wasm-bindgen-macro-support-0.2.73 \ wasm-bindgen-shared-0.2.73 \ web-sys-0.3.50 \ wepoll-sys-3.0.1 \ widestring-0.4.3 \ winapi-0.3.9 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-x86_64-pc-windows-gnu-0.4.0 \ winreg-0.6.2 \ winreg-0.7.0 \ winutil-0.1.1 \ wiremock-0.5.2 \ xml5ever-0.16.1 \ hubcaps@git+https://github.com/softprops/hubcaps.git\#a9e6616ecc7b8eef0ea0eaf6055d9610c8961500 post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/lychee .include diff --git a/www/miniserve/Makefile b/www/miniserve/Makefile index ab9494d65974..bea1bd6355f1 100644 --- a/www/miniserve/Makefile +++ b/www/miniserve/Makefile @@ -1,330 +1,330 @@ PORTNAME= miniserve DISTVERSIONPREFIX= v DISTVERSION= 0.20.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= www MAINTAINER= mikael@FreeBSD.org COMMENT= Ad-hoc HTTP server for file sharing LICENSE= APACHE20 BSD3CLAUSE CC0-1.0 ISCL MIT MPL20 UNLICENSE LICENSE_COMB= multi LICENSE_FILE_MIT= ${WRKSRC}/LICENSE USES= cargo ssl:build USE_GITHUB= yes GH_ACCOUNT= svenstaro CARGO_CRATES= actix-codec-0.5.0 \ actix-files-0.6.1 \ actix-http-3.1.0 \ actix-macros-0.2.3 \ actix-multipart-0.4.0 \ actix-router-0.5.0 \ actix-rt-2.7.0 \ actix-server-2.1.1 \ actix-service-2.0.2 \ actix-tls-3.0.3 \ actix-utils-3.0.0 \ actix-web-4.1.0 \ actix-web-codegen-4.0.1 \ actix-web-httpauth-0.6.0 \ adler-1.0.2 \ adler32-1.2.0 \ ahash-0.7.6 \ aho-corasick-0.7.18 \ alloc-no-stdlib-2.0.3 \ alloc-stdlib-0.2.1 \ alphanumeric-sort-1.4.4 \ ansi_term-0.12.1 \ anyhow-1.0.58 \ askama_escape-0.10.3 \ assert_cmd-2.0.4 \ assert_fs-1.0.7 \ atty-0.2.14 \ autocfg-1.1.0 \ base64-0.13.0 \ beef-0.5.2 \ bit-set-0.5.2 \ bit-vec-0.6.3 \ bitflags-1.3.2 \ block-buffer-0.10.2 \ brotli-3.3.4 \ brotli-decompressor-2.3.2 \ bstr-0.2.17 \ bumpalo-3.10.0 \ byteorder-1.4.3 \ bytes-1.1.0 \ bytesize-1.1.0 \ bytestring-1.1.0 \ c_linked_list-1.1.1 \ cc-1.0.73 \ cfg-if-1.0.0 \ chrono-0.4.19 \ chrono-humanize-0.2.1 \ clap-2.34.0 \ clap-3.2.6 \ clap_complete-3.2.2 \ clap_derive-3.2.6 \ clap_lex-0.2.3 \ clap_mangen-0.1.9 \ codemap-0.1.3 \ convert_case-0.4.0 \ cookie-0.16.0 \ cpufeatures-0.2.2 \ crc32fast-1.3.2 \ crossbeam-utils-0.8.10 \ crypto-common-0.1.3 \ ctor-0.1.22 \ derive_more-0.99.17 \ diff-0.1.12 \ difflib-0.4.0 \ digest-0.10.3 \ doc-comment-0.3.3 \ either-1.6.1 \ encoding_rs-0.8.31 \ fastrand-1.7.0 \ filetime-0.2.16 \ firestorm-0.5.1 \ flate2-1.0.24 \ float-cmp-0.9.0 \ fnv-1.0.7 \ form_urlencoded-1.0.1 \ futf-0.1.5 \ futures-0.3.21 \ futures-channel-0.3.21 \ futures-core-0.3.21 \ futures-executor-0.3.21 \ futures-io-0.3.21 \ futures-macro-0.3.21 \ futures-sink-0.3.21 \ futures-task-0.3.21 \ futures-timer-3.0.2 \ futures-util-0.3.21 \ gcc-0.3.55 \ generic-array-0.14.5 \ get_if_addrs-0.5.3 \ get_if_addrs-sys-0.1.1 \ getrandom-0.1.16 \ getrandom-0.2.7 \ globset-0.4.9 \ globwalk-0.8.1 \ grass-0.11.0 \ h2-0.3.13 \ hashbrown-0.11.2 \ hashbrown-0.12.1 \ heck-0.4.0 \ hermit-abi-0.1.19 \ hex-0.4.3 \ html5ever-0.25.2 \ http-0.2.8 \ http-body-0.4.5 \ http-range-0.1.5 \ httparse-1.7.1 \ httpdate-1.0.2 \ hyper-0.14.19 \ hyper-rustls-0.23.0 \ idna-0.2.3 \ ignore-0.4.18 \ indexmap-1.9.1 \ instant-0.1.12 \ ipnet-2.5.0 \ itertools-0.10.3 \ itoa-1.0.2 \ jobserver-0.1.24 \ js-sys-0.3.58 \ language-tags-0.3.2 \ lasso-0.5.1 \ lazy_static-1.4.0 \ libc-0.2.126 \ libflate-1.2.0 \ libflate_lz77-1.1.0 \ local-channel-0.1.3 \ local-waker-0.1.3 \ lock_api-0.4.7 \ log-0.4.17 \ mac-0.1.1 \ markup5ever-0.10.1 \ markup5ever_rcdom-0.1.0 \ matches-0.1.9 \ maud-0.23.0 \ maud_macros-0.23.0 \ memchr-2.5.0 \ mime-0.3.16 \ mime_guess-2.0.4 \ miniz_oxide-0.5.3 \ mio-0.8.4 \ nanoid-0.4.0 \ new_debug_unreachable-1.0.4 \ normalize-line-endings-0.3.0 \ num-bigint-0.4.3 \ num-integer-0.1.45 \ num-rational-0.4.1 \ num-traits-0.2.15 \ num_cpus-1.13.1 \ num_threads-0.1.6 \ once_cell-1.12.0 \ os_str_bytes-6.1.0 \ output_vt100-0.1.3 \ parking_lot-0.12.1 \ parking_lot_core-0.9.3 \ paste-1.0.7 \ percent-encoding-2.1.0 \ phf-0.8.0 \ phf-0.9.0 \ phf_codegen-0.8.0 \ phf_generator-0.8.0 \ phf_generator-0.9.1 \ phf_generator-0.10.0 \ phf_macros-0.9.0 \ phf_shared-0.8.0 \ phf_shared-0.9.0 \ phf_shared-0.10.0 \ pin-project-lite-0.2.9 \ pin-utils-0.1.0 \ port_check-0.1.5 \ ppv-lite86-0.2.16 \ precomputed-hash-0.1.1 \ predicates-2.1.1 \ predicates-core-1.0.3 \ predicates-tree-1.0.5 \ pretty_assertions-1.2.1 \ proc-macro-error-1.0.4 \ proc-macro-error-attr-1.0.4 \ proc-macro-hack-0.5.19 \ proc-macro2-1.0.40 \ qrcodegen-1.8.0 \ quote-1.0.20 \ rand-0.7.3 \ rand-0.8.5 \ rand_chacha-0.2.2 \ rand_chacha-0.3.1 \ rand_core-0.5.1 \ rand_core-0.6.3 \ rand_hc-0.2.0 \ rand_pcg-0.2.1 \ redox_syscall-0.2.13 \ regex-1.5.6 \ regex-automata-0.1.10 \ regex-syntax-0.6.26 \ remove_dir_all-0.5.3 \ reqwest-0.11.11 \ ring-0.16.20 \ rle-decode-fast-1.0.3 \ roff-0.2.1 \ rstest-0.14.0 \ rstest_macros-0.14.0 \ rustc_version-0.4.0 \ rustls-0.20.6 \ rustls-pemfile-1.0.0 \ rustversion-1.0.7 \ ryu-1.0.10 \ same-file-1.0.6 \ scopeguard-1.1.0 \ sct-0.7.0 \ select-0.5.0 \ semver-1.0.10 \ serde-1.0.137 \ serde_derive-1.0.137 \ serde_json-1.0.81 \ serde_urlencoded-0.7.1 \ sha1-0.10.1 \ sha2-0.10.2 \ signal-hook-registry-1.4.0 \ simplelog-0.12.0 \ siphasher-0.3.10 \ slab-0.4.6 \ smallvec-1.8.1 \ socket2-0.4.4 \ spin-0.5.2 \ string_cache-0.8.4 \ string_cache_codegen-0.5.2 \ strsim-0.8.0 \ strsim-0.10.0 \ strum-0.24.1 \ strum_macros-0.24.2 \ syn-1.0.98 \ tar-0.4.38 \ tempfile-3.3.0 \ tendril-0.4.3 \ termcolor-1.1.3 \ terminal_size-0.1.17 \ termtree-0.2.4 \ textwrap-0.11.0 \ textwrap-0.15.0 \ thiserror-1.0.31 \ thiserror-impl-1.0.31 \ thread_local-1.1.4 \ time-0.1.44 \ time-0.3.11 \ time-macros-0.2.4 \ tinyvec-1.6.0 \ tinyvec_macros-0.1.0 \ tokio-1.19.2 \ tokio-rustls-0.23.4 \ tokio-util-0.7.3 \ tower-service-0.3.2 \ tracing-0.1.35 \ tracing-core-0.1.28 \ try-lock-0.2.3 \ twoway-0.2.2 \ typenum-1.15.0 \ unchecked-index-0.2.2 \ unicase-2.6.0 \ unicode-bidi-0.3.8 \ unicode-ident-1.0.1 \ unicode-normalization-0.1.20 \ unicode-width-0.1.9 \ untrusted-0.7.1 \ url-2.2.2 \ utf-8-0.7.6 \ vec_map-0.8.2 \ version_check-0.9.4 \ wait-timeout-0.2.0 \ walkdir-2.3.2 \ want-0.3.0 \ wasi-0.9.0+wasi-snapshot-preview1 \ wasi-0.10.0+wasi-snapshot-preview1 \ wasi-0.11.0+wasi-snapshot-preview1 \ wasm-bindgen-0.2.81 \ wasm-bindgen-backend-0.2.81 \ wasm-bindgen-futures-0.4.31 \ wasm-bindgen-macro-0.2.81 \ wasm-bindgen-macro-support-0.2.81 \ wasm-bindgen-shared-0.2.81 \ web-sys-0.3.58 \ webpki-0.22.0 \ webpki-roots-0.22.3 \ winapi-0.2.8 \ winapi-0.3.9 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-util-0.1.5 \ winapi-x86_64-pc-windows-gnu-0.4.0 \ windows-sys-0.36.1 \ windows_aarch64_msvc-0.36.1 \ windows_i686_gnu-0.36.1 \ windows_i686_msvc-0.36.1 \ windows_x86_64_gnu-0.36.1 \ windows_x86_64_msvc-0.36.1 \ winreg-0.10.1 \ xattr-0.2.3 \ xml5ever-0.16.2 \ yansi-0.5.1 \ zip-0.6.2 \ zstd-0.11.2+zstd.1.5.2 \ zstd-safe-5.0.2+zstd.1.5.2 \ zstd-sys-2.0.1+zstd.1.5.2 PLIST_FILES= bin/miniserve PORTDOCS= README.md OPTIONS_DEFINE= DOCS post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/miniserve post-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_MAN} ${WRKSRC}/README.md ${STAGEDIR}${DOCSDIR} .include diff --git a/www/monolith/Makefile b/www/monolith/Makefile index 4365a30116d2..809a71aa4044 100644 --- a/www/monolith/Makefile +++ b/www/monolith/Makefile @@ -1,213 +1,213 @@ PORTNAME= monolith DISTVERSIONPREFIX= v DISTVERSION= 2.6.1 -PORTREVISION= 10 +PORTREVISION= 11 CATEGORIES= www MAINTAINER= lcook@FreeBSD.org COMMENT= CLI tool for saving complete web pages as a single HTML file LICENSE= CC0-1.0 LICENSE_FILE= ${WRKSRC}/LICENSE USES= cargo ssl USE_GITHUB= yes GH_ACCOUNT= Y2Z CARGO_CRATES= adler-1.0.2 \ aho-corasick-0.7.18 \ ansi_term-0.11.0 \ assert_cmd-1.0.7 \ async-compression-0.3.8 \ atty-0.2.14 \ autocfg-0.1.7 \ autocfg-1.0.1 \ base64-0.13.0 \ bitflags-1.2.1 \ block-buffer-0.9.0 \ bstr-0.2.16 \ bumpalo-3.7.0 \ bytes-1.0.1 \ cc-1.0.68 \ cfg-if-1.0.0 \ chrono-0.4.19 \ clap-2.33.3 \ cloudabi-0.0.3 \ core-foundation-0.9.1 \ core-foundation-sys-0.8.2 \ cpufeatures-0.1.5 \ crc32fast-1.2.1 \ cssparser-0.28.1 \ cssparser-macros-0.6.0 \ difflib-0.4.0 \ digest-0.9.0 \ doc-comment-0.3.3 \ dtoa-0.4.8 \ dtoa-short-0.3.3 \ either-1.6.1 \ encoding_rs-0.8.28 \ flate2-1.0.20 \ fnv-1.0.7 \ foreign-types-0.3.2 \ foreign-types-shared-0.1.1 \ form_urlencoded-1.0.1 \ fuchsia-cprng-0.1.1 \ futf-0.1.4 \ futures-channel-0.3.15 \ futures-core-0.3.15 \ futures-io-0.3.15 \ futures-sink-0.3.15 \ futures-task-0.3.15 \ futures-util-0.3.15 \ generic-array-0.14.4 \ getrandom-0.1.16 \ getrandom-0.2.3 \ h2-0.3.3 \ hashbrown-0.11.2 \ hermit-abi-0.1.19 \ html5ever-0.24.1 \ http-0.2.4 \ http-body-0.4.2 \ httparse-1.4.1 \ httpdate-1.0.1 \ hyper-0.14.9 \ hyper-tls-0.5.0 \ idna-0.2.3 \ indexmap-1.7.0 \ ipnet-2.3.1 \ itertools-0.10.1 \ itoa-0.4.7 \ js-sys-0.3.51 \ lazy_static-1.4.0 \ libc-0.2.97 \ log-0.4.14 \ mac-0.1.1 \ markup5ever-0.9.0 \ matches-0.1.8 \ memchr-2.4.0 \ mime-0.3.16 \ miniz_oxide-0.4.4 \ mio-0.7.13 \ miow-0.3.7 \ native-tls-0.2.7 \ new_debug_unreachable-1.0.4 \ ntapi-0.3.6 \ num-integer-0.1.44 \ num-traits-0.2.14 \ num_cpus-1.13.0 \ once_cell-1.8.0 \ opaque-debug-0.3.0 \ openssl-0.10.35 \ openssl-probe-0.1.4 \ openssl-sys-0.9.65 \ percent-encoding-2.1.0 \ phf-0.7.24 \ phf-0.8.0 \ phf_codegen-0.7.24 \ phf_generator-0.7.24 \ phf_generator-0.8.0 \ phf_macros-0.8.0 \ phf_shared-0.7.24 \ phf_shared-0.8.0 \ pin-project-lite-0.2.7 \ pin-utils-0.1.0 \ pkg-config-0.3.19 \ ppv-lite86-0.2.10 \ precomputed-hash-0.1.1 \ predicates-2.0.0 \ predicates-core-1.0.2 \ predicates-tree-1.0.2 \ proc-macro-hack-0.5.19 \ proc-macro2-1.0.27 \ quote-1.0.9 \ rand-0.6.5 \ rand-0.7.3 \ rand-0.8.4 \ rand_chacha-0.1.1 \ rand_chacha-0.2.2 \ rand_chacha-0.3.1 \ rand_core-0.3.1 \ rand_core-0.4.2 \ rand_core-0.5.1 \ rand_core-0.6.3 \ rand_hc-0.1.0 \ rand_hc-0.2.0 \ rand_hc-0.3.1 \ rand_isaac-0.1.1 \ rand_jitter-0.1.4 \ rand_os-0.1.3 \ rand_pcg-0.1.2 \ rand_pcg-0.2.1 \ rand_xorshift-0.1.1 \ rdrand-0.4.0 \ redox_syscall-0.2.9 \ regex-1.5.4 \ regex-automata-0.1.10 \ regex-syntax-0.6.25 \ remove_dir_all-0.5.3 \ reqwest-0.11.4 \ ryu-1.0.5 \ schannel-0.1.19 \ security-framework-2.3.1 \ security-framework-sys-2.3.0 \ serde-1.0.126 \ serde_derive-1.0.126 \ serde_json-1.0.64 \ serde_urlencoded-0.7.0 \ sha2-0.9.5 \ siphasher-0.2.3 \ siphasher-0.3.5 \ slab-0.4.3 \ smallvec-1.6.1 \ socket2-0.4.0 \ string_cache-0.7.5 \ string_cache_codegen-0.4.4 \ string_cache_shared-0.3.0 \ strsim-0.8.0 \ syn-1.0.73 \ tempfile-3.2.0 \ tendril-0.4.2 \ textwrap-0.11.0 \ time-0.1.44 \ tinyvec-1.2.0 \ tinyvec_macros-0.1.0 \ tokio-1.8.0 \ tokio-native-tls-0.3.0 \ tokio-util-0.6.7 \ tower-service-0.3.1 \ tracing-0.1.26 \ tracing-core-0.1.18 \ treeline-0.1.0 \ try-lock-0.2.3 \ typenum-1.13.0 \ unicode-bidi-0.3.5 \ unicode-normalization-0.1.19 \ unicode-width-0.1.8 \ unicode-xid-0.2.2 \ url-2.2.2 \ utf-8-0.7.6 \ vcpkg-0.2.15 \ vec_map-0.8.2 \ version_check-0.9.3 \ wait-timeout-0.2.0 \ want-0.3.0 \ wasi-0.9.0+wasi-snapshot-preview1 \ wasi-0.10.0+wasi-snapshot-preview1 \ wasm-bindgen-0.2.74 \ wasm-bindgen-backend-0.2.74 \ wasm-bindgen-futures-0.4.24 \ wasm-bindgen-macro-0.2.74 \ wasm-bindgen-macro-support-0.2.74 \ wasm-bindgen-shared-0.2.74 \ web-sys-0.3.51 \ winapi-0.3.9 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-x86_64-pc-windows-gnu-0.4.0 \ winreg-0.7.0 PLIST_FILES= bin/${PORTNAME} post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/${PORTNAME} .include diff --git a/www/newsboat/Makefile b/www/newsboat/Makefile index f394831c9af0..81c43f713341 100644 --- a/www/newsboat/Makefile +++ b/www/newsboat/Makefile @@ -1,137 +1,137 @@ PORTNAME= newsboat DISTVERSION= 2.27 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= www MASTER_SITES= https://newsboat.org/releases/${DISTVERSION}/ DISTFILES= ${DISTNAME}${EXTRACT_SUFX} MAINTAINER= mt-bugs@markoturk.info COMMENT= RSS feed reader for the text console LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE BUILD_DEPENDS= asciidoctor:textproc/rubygem-asciidoctor LIB_DEPENDS= libcurl.so:ftp/curl \ libjson-c.so:devel/json-c \ libstfl.so:devel/stfl USES= cargo compiler:c++11-lang gettext gmake gnome iconv:translit \ ncurses pkgconfig python:env shebangfix sqlite ssl tar:xz USE_GNOME= libxml2 SHEBANG_FILES= contrib/bookmark-evernote.sh contrib/exportOPMLWithTags.py \ contrib/feedgrabber.rb contrib/getpocket.com/send-to-pocket.sh \ contrib/heise.rb contrib/image-preview/nbparser \ contrib/slashdot.rb doc/examples/example-exec-script.py CARGO_CRATES= addr2line-0.17.0 \ adler-1.0.2 \ aho-corasick-0.7.18 \ autocfg-1.0.1 \ backtrace-0.3.63 \ bit-set-0.5.2 \ bit-vec-0.6.3 \ bitflags-1.3.2 \ block-0.1.6 \ byteorder-1.4.3 \ cc-1.0.72 \ cfg-if-1.0.0 \ chrono-0.4.19 \ codespan-reporting-0.11.1 \ curl-sys-0.4.52+curl-7.81.0 \ cxx-1.0.65 \ cxx-build-1.0.65 \ cxxbridge-flags-1.0.65 \ cxxbridge-macro-1.0.65 \ dirs-4.0.0 \ dirs-sys-0.3.6 \ fastrand-1.7.0 \ fnv-1.0.7 \ form_urlencoded-1.0.1 \ getrandom-0.2.3 \ gettext-rs-0.7.0 \ gettext-sys-0.21.2 \ gimli-0.26.1 \ idna-0.2.3 \ instant-0.1.12 \ lazy_static-1.4.0 \ lexopt-0.2.0 \ libc-0.2.119 \ libz-sys-1.1.3 \ link-cplusplus-1.0.6 \ locale_config-0.3.0 \ malloc_buf-0.0.6 \ matches-0.1.9 \ md5-0.7.0 \ memchr-2.4.1 \ minimal-lexical-0.2.1 \ miniz_oxide-0.4.4 \ natord-1.0.9 \ nom-7.1.0 \ num-integer-0.1.44 \ num-traits-0.2.14 \ objc-0.2.7 \ objc-foundation-0.1.1 \ objc_id-0.1.1 \ object-0.27.1 \ once_cell-1.10.0 \ percent-encoding-2.1.0 \ pkg-config-0.3.24 \ ppv-lite86-0.2.15 \ proc-macro2-1.0.35 \ proptest-1.0.0 \ quick-error-1.2.3 \ quick-error-2.0.1 \ quote-1.0.10 \ rand-0.8.4 \ rand_chacha-0.3.1 \ rand_core-0.6.3 \ rand_xorshift-0.3.0 \ redox_syscall-0.2.10 \ redox_users-0.4.0 \ regex-1.5.5 \ regex-syntax-0.6.25 \ remove_dir_all-0.5.3 \ rustc-demangle-0.1.21 \ rusty-fork-0.3.0 \ scratch-1.0.1 \ section_testing-0.0.5 \ syn-1.0.84 \ temp-dir-0.1.11 \ tempfile-3.3.0 \ termcolor-1.1.2 \ time-0.1.43 \ tinyvec-1.5.1 \ tinyvec_macros-0.1.0 \ unicode-bidi-0.3.7 \ unicode-normalization-0.1.19 \ unicode-width-0.1.9 \ unicode-xid-0.2.2 \ url-2.2.2 \ vcpkg-0.2.15 \ version_check-0.9.3 \ wait-timeout-0.2.0 \ wasi-0.10.2+wasi-snapshot-preview1 \ winapi-0.3.9 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-util-0.1.5 \ winapi-x86_64-pc-windows-gnu-0.4.0 \ xdg-2.4.1 CARGO_BUILD= no CARGO_INSTALL= no CARGO_TARGET_DIR= ${WRKSRC}/target OPTIONS_DEFINE= DOCS post-patch: @${REINPLACE_CMD} -e 's,fail "ncursesw",true,; s,fail "libcrypto",true,' \ -e 's,fail "libssl",true,' \ ${WRKSRC}/config.sh @${REINPLACE_CMD} -e 's|-liconv|${ICONV_LIB} -lcrypto ${NCURSESLIBS}|;s|-Werror||' \ ${WRKSRC}/Makefile post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/*boat .include diff --git a/www/py-adblock/Makefile b/www/py-adblock/Makefile index 4306dc2097ff..6abb068bc250 100644 --- a/www/py-adblock/Makefile +++ b/www/py-adblock/Makefile @@ -1,139 +1,139 @@ PORTNAME= adblock DISTVERSION= 0.5.0 -PORTREVISION= 23 +PORTREVISION= 24 CATEGORIES= www python PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= vendion@gmail.com COMMENT= Brave's adblock library in Python LICENSE= APACHE20 MIT LICENSE_COMB= dual LICENSE_FILE_APACHE20= ${WRKSRC}/LICENSE-APACHE LICENSE_FILE_MIT= ${WRKSRC}/LICENSE-MIT # Although the port builds fine on some 32-bit architectures (e.g. i386) it # doesn't support creating 32-bit Python wheels for FreeBSD. Thus save build # time and skip the port at a early stage. # SEE devel/py-maturin/Makefile NOT_FOR_ARCHS= armv6 armv7 i386 mips powerpc NOT_FOR_ARCHS_REASON= the creation of 32-bit Python wheels is not supported for FreeBSD BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}maturin>=0.8.3:devel/py-maturin@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}pip>=20.2.3:devel/py-pip@${PY_FLAVOR} \ public_suffix_list>0:dns/public_suffix_list USES= cargo python:3.6+ USE_GITHUB= yes GH_ACCOUNT= ArniDagur GH_PROJECT= python-adblock USE_PYTHON= autoplist concurrent cython distutils CARGO_CRATES= adblock-0.3.13 \ addr-0.14.0 \ adler-1.0.2 \ aho-corasick-0.7.18 \ autocfg-1.0.1 \ base64-0.13.0 \ bitflags-1.2.1 \ byteorder-1.4.3 \ cfg-if-1.0.0 \ crc32fast-1.2.1 \ ctor-0.1.20 \ either-1.6.1 \ flate2-1.0.20 \ form_urlencoded-1.0.1 \ ghost-0.1.2 \ idna-0.2.2 \ indoc-0.3.6 \ indoc-impl-0.3.6 \ instant-0.1.9 \ inventory-0.1.10 \ inventory-impl-0.1.10 \ itertools-0.9.0 \ libc-0.2.93 \ lock_api-0.4.3 \ matches-0.1.8 \ memchr-2.4.0 \ miniz_oxide-0.4.4 \ num-traits-0.2.14 \ once_cell-1.7.2 \ parking_lot-0.11.1 \ parking_lot_core-0.8.3 \ paste-0.1.18 \ paste-impl-0.1.18 \ percent-encoding-2.1.0 \ proc-macro-hack-0.5.19 \ proc-macro2-1.0.26 \ psl-2.0.18 \ psl-types-2.0.7 \ pyo3-0.13.2 \ pyo3-macros-0.13.2 \ pyo3-macros-backend-0.13.2 \ quote-1.0.9 \ redox_syscall-0.2.5 \ regex-1.5.4 \ regex-syntax-0.6.25 \ rmp-0.8.10 \ rmp-serde-0.13.7 \ scopeguard-1.1.0 \ seahash-3.0.7 \ serde-1.0.125 \ serde_derive-1.0.125 \ smallvec-1.6.1 \ syn-1.0.69 \ tinyvec-1.2.0 \ tinyvec_macros-0.1.0 \ twoway-0.2.1 \ unchecked-index-0.2.2 \ unicode-bidi-0.3.5 \ unicode-normalization-0.1.17 \ unicode-xid-0.2.1 \ unindent-0.1.7 \ url-2.2.1 \ winapi-0.3.9 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-x86_64-pc-windows-gnu-0.4.0 CARGO_BUILD= no CARGO_INSTALL= no CARGO_TARGET_DIR= ${WRKSRC}/target .include # This is to prevent Mk/Uses/python.mk do-configure target from firing. do-configure: do-build: @(cd ${BUILD_WRKSRC} ; \ PSL_PATH="${PREFIX}/share/public_suffix_list/public_suffix_list.dat" \ ${SETENV} ${MAKE_ENV} maturin build --release ${WITH_DEBUG:D:U--strip}) # Due to upstream not supplying a setup.py file or other way to install # using pip command for now... do-install: .if ${ARCH:Mpowerpc64*} @(cd ${INSTALL_WRKSRC}; \ ${FIND} . -name "*whl" -exec sh -c 'mv {} `echo {} | sed -E -e "s/powerpc.*/powerpc.whl/"`' \;) .endif @(cd ${INSTALL_WRKSRC} ; \ ${INSTALL_DATA} "target/release/libadblock.so" \ "${STAGEDIR}/${PREFIX}/lib" ; \ ${SETENV} ${MAKE_ENV} pip install --isolated --root=${STAGEDIR} \ --ignore-installed --no-deps target/wheels/*.whl) post-install: (cd ${STAGEDIR}${PREFIX} && \ ${PYTHON_CMD} ${PYTHON_LIBDIR}/compileall.py -d ${PREFIX} \ -f ${PYTHONPREFIX_SITELIBDIR:S;${PREFIX}/;;}) ${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/adblock/adblock*.so # Regenerate .PLIST.pymodtemp to get all installed files from # ${STAGEDIR} because the file that is generated in the first place # contains only the EGG files as a whole. # SEE devel/py-maturin/Makefile @${FIND} ${STAGEDIR} \ -type f -o -type l | \ ${SORT} | ${SED} -e 's|${STAGEDIR}||' > \ ${WRKDIR}/.PLIST.pymodtmp .include diff --git a/www/rearx/Makefile b/www/rearx/Makefile index 172645892cc7..e802e92312fe 100644 --- a/www/rearx/Makefile +++ b/www/rearx/Makefile @@ -1,180 +1,180 @@ PORTNAME= rearx DISTVERSIONPREFIX= v DISTVERSION= 0.1.4 -PORTREVISION= 13 +PORTREVISION= 14 CATEGORIES= www MAINTAINER= yuri@FreeBSD.org COMMENT= TUI client for the Searx meta-search engine, written in Rust LICENSE= GPLv3 LICENSE_FILE= ${WRKSRC}/LICENSE.md USES= cargo ssl USE_GITHUB= yes GH_ACCOUNT= garak92 CARGO_CRATES= \ arrayref-0.3.6 \ arrayvec-0.5.2 \ atty-0.2.14 \ autocfg-1.0.1 \ base64-0.13.0 \ bitflags-1.2.1 \ blake2b_simd-0.5.11 \ bstr-0.2.15 \ bumpalo-3.6.1 \ byteorder-1.4.3 \ bytes-1.0.1 \ cc-1.0.67 \ cfg-if-1.0.0 \ clap-2.33.3 \ constant_time_eq-0.1.5 \ core-foundation-0.9.1 \ core-foundation-sys-0.8.2 \ crossbeam-utils-0.8.3 \ csv-1.1.6 \ csv-core-0.1.10 \ dirs-1.0.5 \ dtoa-0.4.7 \ encode_unicode-0.3.6 \ encoding_rs-0.8.28 \ fnv-1.0.7 \ foreign-types-0.3.2 \ foreign-types-shared-0.1.1 \ form_urlencoded-1.0.1 \ futures-channel-0.3.13 \ futures-core-0.3.13 \ futures-sink-0.3.13 \ futures-task-0.3.13 \ futures-util-0.3.13 \ gag-0.1.10 \ getrandom-0.1.16 \ getrandom-0.2.2 \ h2-0.3.1 \ hashbrown-0.9.1 \ heck-0.3.2 \ hermit-abi-0.1.18 \ http-0.2.3 \ http-body-0.4.0 \ httparse-1.3.5 \ httpdate-0.3.2 \ hyper-0.14.4 \ hyper-tls-0.5.0 \ idna-0.2.2 \ indexmap-1.6.2 \ instant-0.1.9 \ ipnet-2.3.0 \ itoa-0.4.7 \ js-sys-0.3.48 \ lazy_static-1.4.0 \ libc-0.2.88 \ linked-hash-map-0.5.4 \ lock_api-0.4.2 \ log-0.4.14 \ matches-0.1.8 \ memchr-2.3.4 \ mime-0.3.16 \ mio-0.7.9 \ miow-0.3.6 \ native-tls-0.2.7 \ ntapi-0.3.6 \ num_cpus-1.13.0 \ numtoa-0.1.0 \ once_cell-1.7.2 \ openssl-0.10.32 \ openssl-probe-0.1.2 \ openssl-sys-0.9.60 \ parking_lot-0.11.1 \ parking_lot_core-0.8.3 \ percent-encoding-2.1.0 \ pin-project-1.0.5 \ pin-project-internal-1.0.5 \ pin-project-lite-0.2.6 \ pin-utils-0.1.0 \ pkg-config-0.3.19 \ ppv-lite86-0.2.10 \ prettytable-rs-0.8.0 \ proc-macro-error-1.0.4 \ proc-macro-error-attr-1.0.4 \ proc-macro2-1.0.24 \ quote-1.0.9 \ rand-0.8.3 \ rand_chacha-0.3.0 \ rand_core-0.6.2 \ rand_hc-0.3.0 \ redox_syscall-0.1.57 \ redox_syscall-0.2.5 \ redox_termios-0.1.2 \ redox_users-0.3.5 \ regex-automata-0.1.9 \ remove_dir_all-0.5.3 \ reqwest-0.11.2 \ rust-argon2-0.8.3 \ ryu-1.0.5 \ schannel-0.1.19 \ scopeguard-1.1.0 \ security-framework-2.1.2 \ security-framework-sys-2.1.1 \ serde-1.0.124 \ serde_derive-1.0.124 \ serde_json-1.0.64 \ serde_urlencoded-0.7.0 \ serde_yaml-0.8.17 \ signal-hook-registry-1.3.0 \ slab-0.4.2 \ smallvec-1.6.1 \ socket2-0.3.19 \ structopt-0.3.21 \ structopt-derive-0.4.14 \ syn-1.0.63 \ tempfile-3.2.0 \ term-0.5.2 \ termion-1.5.6 \ textwrap-0.11.0 \ tinyvec-1.1.1 \ tinyvec_macros-0.1.0 \ tokio-1.3.0 \ tokio-macros-1.1.0 \ tokio-native-tls-0.3.0 \ tokio-util-0.6.4 \ tower-service-0.3.1 \ tracing-0.1.25 \ tracing-core-0.1.17 \ try-lock-0.2.3 \ unicode-bidi-0.3.4 \ unicode-normalization-0.1.17 \ unicode-segmentation-1.7.1 \ unicode-width-0.1.8 \ unicode-xid-0.2.1 \ url-2.2.1 \ vcpkg-0.2.11 \ version_check-0.9.2 \ want-0.3.0 \ wasi-0.9.0+wasi-snapshot-preview1 \ wasi-0.10.2+wasi-snapshot-preview1 \ wasm-bindgen-0.2.71 \ wasm-bindgen-backend-0.2.71 \ wasm-bindgen-futures-0.4.21 \ wasm-bindgen-macro-0.2.71 \ wasm-bindgen-macro-support-0.2.71 \ wasm-bindgen-shared-0.2.71 \ web-sys-0.3.48 \ winapi-0.3.9 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-x86_64-pc-windows-gnu-0.4.0 \ winreg-0.7.0 \ yaml-rust-0.4.5 SUB_LIST= ETCDIR=${ETCDIR} SUB_FILES= pkg-message post-patch: ${REINPLACE_CMD} -e 's|/etc/rearx/rearx.yaml|${PREFIX}/etc/rearx/rearx.yaml|' ${WRKSRC}/src/request.rs post-install: ${MKDIR} ${STAGEDIR}${PREFIX}/etc/rearx ${INSTALL_DATA} ${WRKSRC}/rearx.yaml ${STAGEDIR}${PREFIX}/etc/rearx/rearx.yaml.sample .include diff --git a/www/so/Makefile b/www/so/Makefile index d5be06c6e1e3..c47cd9ab346b 100644 --- a/www/so/Makefile +++ b/www/so/Makefile @@ -1,32 +1,32 @@ PORTNAME= so DISTVERSIONPREFIX= v DISTVERSION= 0.4.6 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= www MAINTAINER= sec.research.2005@gmail.com COMMENT= Terminal interface for Stack Overflow LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= cargo ssl USE_GITHUB= yes GH_ACCOUNT= samtay PLIST_FILES= bin/so PORTDATA= themes/*.toml PORTDOCS= *.md OPTIONS_DEFINE= DOCS post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/so ${MKDIR} ${STAGEDIR}${DATADIR} (cd ${WRKSRC} && ${COPYTREE_SHARE} themes ${STAGEDIR}${DATADIR}) post-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} (cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${STAGEDIR}${DOCSDIR}) .include diff --git a/www/tuifeed/Makefile b/www/tuifeed/Makefile index 316b091dc24f..d7fa3a7fd6a3 100644 --- a/www/tuifeed/Makefile +++ b/www/tuifeed/Makefile @@ -1,148 +1,148 @@ PORTNAME= tuifeed DISTVERSIONPREFIX= v DISTVERSION= 0.1.1 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= www MAINTAINER= sec.research.2005@gmail.com COMMENT= Trminal feed reader with a fancy UI LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= cargo USE_GITHUB= yes GH_ACCOUNT= veeso CARGO_BUILD_ARGS= --locked CARGO_INSTALL_ARGS= --locked CARGO_UPDATE_ARGS= --locked CARGO_CRATES= aho-corasick-0.7.18 \ ansi_term-0.12.1 \ argh-0.1.6 \ argh_derive-0.1.6 \ argh_shared-0.1.6 \ autocfg-1.0.1 \ base64-0.13.0 \ bitflags-1.3.2 \ bumpalo-3.8.0 \ cassowary-0.3.0 \ cc-1.0.72 \ cfg-if-1.0.0 \ chrono-0.4.19 \ chunked_transfer-1.4.0 \ crossterm-0.20.0 \ crossterm_winapi-0.8.0 \ ctor-0.1.21 \ diff-0.1.12 \ dirs-4.0.0 \ dirs-sys-0.3.6 \ encoding_rs-0.8.29 \ feed-rs-1.0.0 \ form_urlencoded-1.0.1 \ getrandom-0.2.3 \ heck-0.3.3 \ idna-0.2.3 \ instant-0.1.12 \ itoa-0.4.8 \ js-sys-0.3.55 \ lazy_static-1.4.0 \ libc-0.2.107 \ lock_api-0.4.5 \ log-0.4.14 \ matches-0.1.9 \ memchr-2.4.1 \ mime-0.3.16 \ mio-0.7.14 \ miow-0.3.7 \ ntapi-0.3.6 \ num-integer-0.1.44 \ num-traits-0.2.14 \ once_cell-1.8.0 \ open-2.0.1 \ output_vt100-0.1.2 \ parking_lot-0.11.2 \ parking_lot_core-0.8.5 \ pathdiff-0.2.1 \ percent-encoding-2.1.0 \ ppv-lite86-0.2.15 \ pretty_assertions-0.7.2 \ proc-macro2-1.0.32 \ quick-xml-0.22.0 \ quote-1.0.10 \ rand-0.8.4 \ rand_chacha-0.3.1 \ rand_core-0.6.3 \ rand_hc-0.3.1 \ redox_syscall-0.2.10 \ redox_users-0.4.0 \ regex-1.5.4 \ regex-syntax-0.6.25 \ remove_dir_all-0.5.3 \ ring-0.16.20 \ rustls-0.20.1 \ ryu-1.0.5 \ scopeguard-1.1.0 \ sct-0.7.0 \ serde-1.0.130 \ serde_derive-1.0.130 \ serde_json-1.0.70 \ serial_test-0.5.1 \ serial_test_derive-0.5.1 \ signal-hook-0.3.10 \ signal-hook-mio-0.2.1 \ signal-hook-registry-1.4.0 \ siphasher-0.3.7 \ smallvec-1.7.0 \ smawk-0.3.1 \ spin-0.5.2 \ syn-1.0.81 \ tempfile-3.2.0 \ textwrap-0.14.2 \ thiserror-1.0.30 \ thiserror-impl-1.0.30 \ time-0.1.44 \ tinyvec-1.5.1 \ tinyvec_macros-0.1.0 \ toml-0.5.8 \ tui-0.16.0 \ tui-realm-stdlib-1.0.3 \ tuirealm-1.0.0 \ tuirealm_derive-1.0.0 \ unicode-bidi-0.3.7 \ unicode-linebreak-0.1.2 \ unicode-normalization-0.1.19 \ unicode-segmentation-1.8.0 \ unicode-truncate-0.2.0 \ unicode-width-0.1.9 \ unicode-xid-0.2.2 \ untrusted-0.7.1 \ ureq-2.3.1 \ url-2.2.2 \ uuid-0.8.2 \ wasi-0.10.0+wasi-snapshot-preview1 \ wasm-bindgen-0.2.78 \ wasm-bindgen-backend-0.2.78 \ wasm-bindgen-macro-0.2.78 \ wasm-bindgen-macro-support-0.2.78 \ wasm-bindgen-shared-0.2.78 \ web-sys-0.3.55 \ webpki-0.22.0 \ webpki-roots-0.22.1 \ winapi-0.3.9 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-x86_64-pc-windows-gnu-0.4.0 PLIST_FILES= bin/${PORTNAME} PORTDOCS= *md OPTIONS_DEFINE= DOCS post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/${PORTNAME} post-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} (cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${STAGEDIR}${DOCSDIR}) .include diff --git a/www/websocat/Makefile b/www/websocat/Makefile index e92d24a1a143..344319abdb7a 100644 --- a/www/websocat/Makefile +++ b/www/websocat/Makefile @@ -1,241 +1,241 @@ PORTNAME= websocat DISTVERSIONPREFIX= v DISTVERSION= 1.10.1 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= www MAINTAINER= osa@FreeBSD.org COMMENT= WebSockets tools LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= cargo ssl USE_GITHUB= yes GH_ACCOUNT= vi CARGO_FEATURES= --no-default-features CARGO_CARGOLOCK= ${WRKSRC}/Cargo.lock.freebsd OPTIONS_DEFINE= CRYPTO_PEER PROMETHEUS_PEER SEQPACKET SSL \ TOKIO_PROCESS UNIX_STDIO OPTIONS_DEFAULT= SEQPACKET SSL TOKIO_PROCESS UNIX_STDIO CRYPTO_PEER= CARGO_FEATURES+=crypto_peer PROMETHEUS_PEER= CARGO_FEATURES+=prometheus_peer SEQPACKET_VARS= CARGO_FEATURES+=seqpacket SSL_VARS= CARGO_FEATURES+=ssl TOKIO_PROCESS_VARS= CARGO_FEATURES+=tokio-process UNIX_STDIO_VARS= CARGO_FEATURES+=unix_stdio CRYPTO_PEER_DESC= Crypto peer PROMETHEUS_PEER_DESC= Prometheus peer SEQPACKET_DESC= Seqpacket SSL_DESC= SSL TOKIO_PROCESS_DESC= Tokio process UNIX_STDIO_DESC= UNIX stdio CARGO_CRATES= aead-0.4.3 \ anymap-0.12.1 \ argon2-0.4.0 \ atty-0.2.14 \ autocfg-0.1.8 \ autocfg-1.1.0 \ base64-0.9.3 \ base64-0.10.1 \ base64ct-1.5.0 \ bitflags-1.3.2 \ blake2-0.10.4 \ block-buffer-0.7.3 \ block-buffer-0.10.2 \ block-padding-0.1.5 \ byte-tools-0.3.1 \ byteorder-1.4.3 \ bytes-0.4.12 \ cc-1.0.73 \ cfg-if-0.1.10 \ cfg-if-1.0.0 \ chacha20-0.8.1 \ chacha20poly1305-0.9.0 \ cipher-0.3.0 \ clap-2.34.0 \ cloudabi-0.0.3 \ core-foundation-0.9.3 \ core-foundation-sys-0.8.3 \ cpufeatures-0.2.2 \ crossbeam-deque-0.7.4 \ crossbeam-epoch-0.8.2 \ crossbeam-queue-0.1.2 \ crossbeam-queue-0.2.3 \ crossbeam-utils-0.6.6 \ crossbeam-utils-0.7.2 \ crypto-common-0.1.3 \ derivative-1.0.4 \ digest-0.8.1 \ digest-0.10.3 \ env_logger-0.6.2 \ fake-simd-0.1.2 \ fastrand-1.7.0 \ fnv-1.0.7 \ foreign-types-0.3.2 \ foreign-types-shared-0.1.1 \ fuchsia-cprng-0.1.1 \ fuchsia-zircon-0.3.3 \ fuchsia-zircon-sys-0.3.3 \ futures-0.1.31 \ generic-array-0.12.4 \ generic-array-0.14.5 \ getrandom-0.2.6 \ heck-0.3.3 \ hermit-abi-0.1.19 \ hex-0.4.3 \ http-0.1.21 \ http-bytes-0.1.0 \ httparse-1.7.1 \ hyper-0.10.16 \ idna-0.1.5 \ instant-0.1.12 \ iovec-0.1.4 \ itoa-0.4.8 \ kernel32-sys-0.2.2 \ language-tags-0.2.2 \ lazy_static-1.4.0 \ libc-0.2.126 \ lock_api-0.3.4 \ lock_api-0.4.7 \ log-0.3.9 \ log-0.4.17 \ matches-0.1.9 \ maybe-uninit-2.0.0 \ memchr-2.5.0 \ memoffset-0.5.6 \ mime-0.2.6 \ mio-0.6.23 \ mio-named-pipes-0.1.7 \ mio-uds-0.6.8 \ miow-0.2.2 \ miow-0.3.7 \ native-tls-0.2.10 \ net2-0.2.37 \ num_cpus-1.13.1 \ once_cell-1.10.0 \ opaque-debug-0.2.3 \ opaque-debug-0.3.0 \ openssl-0.10.40 \ openssl-macros-0.1.0 \ openssl-probe-0.1.5 \ openssl-src-111.18.0+1.1.1n \ openssl-sys-0.9.73 \ parking_lot-0.9.0 \ parking_lot-0.11.2 \ parking_lot_core-0.6.2 \ parking_lot_core-0.8.5 \ password-hash-0.4.1 \ percent-encoding-1.0.1 \ pkg-config-0.3.25 \ poly1305-0.7.2 \ ppv-lite86-0.2.16 \ proc-macro2-0.4.30 \ proc-macro2-1.0.39 \ prometheus-0.13.0 \ prometheus-metric-storage-0.5.0 \ prometheus-metric-storage-derive-0.5.0 \ quote-0.6.13 \ quote-1.0.18 \ rand-0.6.5 \ rand-0.8.5 \ rand_chacha-0.1.1 \ rand_chacha-0.3.1 \ rand_core-0.3.1 \ rand_core-0.4.2 \ rand_core-0.6.3 \ rand_hc-0.1.0 \ rand_isaac-0.1.1 \ rand_jitter-0.1.4 \ rand_os-0.1.3 \ rand_pcg-0.1.2 \ rand_xorshift-0.1.1 \ rdrand-0.4.0 \ readwrite-0.1.2 \ redox_syscall-0.1.57 \ redox_syscall-0.2.13 \ remove_dir_all-0.5.3 \ rustc_version-0.2.3 \ safemem-0.3.3 \ schannel-0.1.19 \ scopeguard-1.1.0 \ security-framework-2.6.1 \ security-framework-sys-2.6.1 \ semver-0.9.0 \ semver-parser-0.7.0 \ sha-1-0.8.2 \ signal-hook-registry-1.4.0 \ slab-0.4.6 \ slab_typesafe-0.1.3 \ smallvec-0.6.14 \ smallvec-1.8.0 \ smart-default-0.3.0 \ structopt-0.2.16 \ structopt-derive-0.2.16 \ subtle-2.4.1 \ syn-0.15.44 \ syn-1.0.95 \ tempfile-3.3.0 \ textwrap-0.11.0 \ thiserror-1.0.31 \ thiserror-impl-1.0.31 \ time-0.1.43 \ tinyvec-1.6.0 \ tinyvec_macros-0.1.0 \ tk-listen-0.2.1 \ tokio-0.1.22 \ tokio-codec-0.1.2 \ tokio-current-thread-0.1.7 \ tokio-executor-0.1.10 \ tokio-file-unix-0.5.1 \ tokio-fs-0.1.7 \ tokio-io-0.1.13 \ tokio-named-pipes-0.1.0 \ tokio-process-0.2.5 \ tokio-reactor-0.1.12 \ tokio-signal-0.2.9 \ tokio-stdin-stdout-0.1.5 \ tokio-sync-0.1.8 \ tokio-tcp-0.1.4 \ tokio-threadpool-0.1.18 \ tokio-timer-0.2.13 \ tokio-tls-0.2.1 \ tokio-udp-0.1.6 \ tokio-uds-0.2.7 \ traitobject-0.1.0 \ typeable-0.1.2 \ typenum-1.15.0 \ unicase-1.4.2 \ unicode-bidi-0.3.8 \ unicode-ident-1.0.0 \ unicode-normalization-0.1.19 \ unicode-segmentation-1.9.0 \ unicode-width-0.1.9 \ unicode-xid-0.1.0 \ universal-hash-0.4.1 \ url-1.7.2 \ vcpkg-0.2.15 \ version_check-0.1.5 \ version_check-0.9.4 \ wasi-0.10.2+wasi-snapshot-preview1 \ websocket-0.26.4 \ websocket-base-0.26.2 \ winapi-0.2.8 \ winapi-0.3.9 \ winapi-build-0.1.1 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-x86_64-pc-windows-gnu-0.4.0 \ ws2_32-sys-0.2.1 \ zeroize-1.4.3 PLIST_FILES= bin/websocat post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/websocat .include diff --git a/www/xh/Makefile b/www/xh/Makefile index b064ab8913c9..b2e512d754e2 100644 --- a/www/xh/Makefile +++ b/www/xh/Makefile @@ -1,286 +1,286 @@ PORTNAME= xh DISTVERSIONPREFIX= v DISTVERSION= 0.15.0 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= www MAINTAINER= lcook@FreeBSD.org COMMENT= Friendly and fast tool for sending HTTP requests LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE LIB_DEPENDS= libonig.so:devel/oniguruma USES= cargo ssl USE_GITHUB= yes GH_ACCOUNT= ducaale CARGO_CRATES= adler-1.0.2 \ aho-corasick-0.7.18 \ alloc-no-stdlib-2.0.3 \ alloc-stdlib-0.2.1 \ ansi_term-0.11.0 \ anyhow-1.0.44 \ assert_cmd-2.0.2 \ assert_matches-1.5.0 \ async-compression-0.3.8 \ atty-0.2.14 \ autocfg-1.0.1 \ base-x-0.2.8 \ base64-0.13.0 \ bincode-1.3.3 \ bitflags-1.3.2 \ block-buffer-0.9.0 \ brotli-3.3.2 \ brotli-decompressor-2.3.2 \ bstr-0.2.16 \ bumpalo-3.7.0 \ byteorder-1.4.3 \ bytes-1.1.0 \ cc-1.0.70 \ cfg-if-1.0.0 \ chardetng-0.1.15 \ chrono-0.4.19 \ clap-2.33.3 \ console-0.14.1 \ const_fn-0.4.8 \ cookie-0.15.1 \ cookie_store-0.15.0 \ core-foundation-0.9.1 \ core-foundation-sys-0.8.2 \ cpufeatures-0.2.1 \ crc32fast-1.2.1 \ difference-2.0.0 \ difflib-0.4.0 \ digest-0.9.0 \ digest_auth-0.3.0 \ dirs-3.0.2 \ dirs-sys-0.3.6 \ discard-1.0.4 \ doc-comment-0.3.3 \ either-1.6.1 \ encode_unicode-0.3.6 \ encoding_rs-0.8.29 \ encoding_rs_io-0.1.7 \ flate2-1.0.21 \ float-cmp-0.8.0 \ fnv-1.0.7 \ foreign-types-0.3.2 \ foreign-types-shared-0.1.1 \ form_urlencoded-1.0.1 \ futures-channel-0.3.17 \ futures-core-0.3.17 \ futures-io-0.3.17 \ futures-macro-0.3.17 \ futures-sink-0.3.17 \ futures-task-0.3.17 \ futures-util-0.3.17 \ generic-array-0.14.4 \ getopts-0.2.21 \ getrandom-0.2.3 \ h2-0.3.4 \ hashbrown-0.11.2 \ heck-0.3.3 \ hermit-abi-0.1.19 \ hex-0.4.3 \ http-0.2.4 \ http-body-0.4.3 \ httparse-1.5.1 \ httpdate-1.0.1 \ humantime-2.1.0 \ hyper-0.14.12 \ hyper-rustls-0.22.1 \ hyper-tls-0.5.0 \ idna-0.2.3 \ indexmap-1.7.0 \ indicatif-0.16.2 \ indoc-1.0.3 \ ipnet-2.3.1 \ itertools-0.10.1 \ itoa-0.4.8 \ js-sys-0.3.54 \ jsonxf-1.1.1 \ lazy_static-1.4.0 \ lazycell-1.3.0 \ libc-0.2.101 \ line-wrap-0.1.1 \ linked-hash-map-0.5.4 \ log-0.4.14 \ matches-0.1.9 \ md-5-0.9.1 \ memchr-2.4.1 \ mime-0.3.16 \ mime2ext-0.1.49 \ mime_guess-2.0.3 \ miniz_oxide-0.4.4 \ mio-0.7.13 \ miow-0.3.7 \ native-tls-0.2.8 \ normalize-line-endings-0.3.0 \ ntapi-0.3.6 \ num-integer-0.1.44 \ num-traits-0.2.14 \ num_cpus-1.13.0 \ number_prefix-0.4.0 \ once_cell-1.8.0 \ onig-6.2.0 \ onig_sys-69.7.0 \ opaque-debug-0.3.0 \ openssl-0.10.36 \ openssl-probe-0.1.4 \ openssl-sys-0.9.66 \ os_display-0.1.3 \ pem-0.8.3 \ percent-encoding-2.1.0 \ pin-project-lite-0.2.7 \ pin-utils-0.1.0 \ pkg-config-0.3.19 \ plist-1.2.1 \ ppv-lite86-0.2.10 \ predicates-1.0.8 \ predicates-2.0.2 \ predicates-core-1.0.2 \ predicates-tree-1.0.3 \ proc-macro-error-1.0.4 \ proc-macro-error-attr-1.0.4 \ proc-macro-hack-0.5.19 \ proc-macro-nested-0.1.7 \ proc-macro2-1.0.29 \ psl-types-2.0.7 \ publicsuffix-2.1.1 \ quote-1.0.9 \ rand-0.8.4 \ rand_chacha-0.3.1 \ rand_core-0.6.3 \ rand_hc-0.3.1 \ redox_syscall-0.2.10 \ redox_users-0.4.0 \ regex-1.5.4 \ regex-automata-0.1.10 \ regex-syntax-0.6.25 \ remove_dir_all-0.5.3 \ reqwest-0.11.6 \ ring-0.16.20 \ rpassword-5.0.1 \ rustc_version-0.2.3 \ rustls-0.19.1 \ rustls-native-certs-0.5.0 \ ryu-1.0.5 \ safemem-0.3.3 \ same-file-1.0.6 \ schannel-0.1.19 \ sct-0.6.1 \ security-framework-2.4.2 \ security-framework-sys-2.4.2 \ semver-0.9.0 \ semver-parser-0.7.0 \ serde-1.0.130 \ serde_derive-1.0.130 \ serde_json-1.0.67 \ serde_urlencoded-0.7.0 \ sha1-0.6.0 \ sha2-0.9.8 \ slab-0.4.4 \ socket2-0.4.1 \ spin-0.5.2 \ standback-0.2.17 \ stdweb-0.4.20 \ stdweb-derive-0.5.3 \ stdweb-internal-macros-0.2.9 \ stdweb-internal-runtime-0.1.5 \ strsim-0.8.0 \ structopt-0.3.23 \ structopt-derive-0.4.16 \ syn-1.0.76 \ syntect-4.6.0 \ tempfile-3.2.0 \ term_size-0.3.2 \ termcolor-1.1.2 \ terminal_size-0.1.17 \ textwrap-0.11.0 \ thiserror-1.0.29 \ thiserror-impl-1.0.29 \ time-0.2.27 \ time-macros-0.1.1 \ time-macros-impl-0.1.2 \ tinyvec-1.4.0 \ tinyvec_macros-0.1.0 \ tokio-1.11.0 \ tokio-native-tls-0.3.0 \ tokio-rustls-0.22.0 \ tokio-socks-0.5.1 \ tokio-util-0.6.8 \ tower-service-0.3.1 \ tracing-0.1.26 \ tracing-core-0.1.19 \ treeline-0.1.0 \ try-lock-0.2.3 \ typenum-1.14.0 \ unicase-2.6.0 \ unicode-bidi-0.3.6 \ unicode-normalization-0.1.19 \ unicode-segmentation-1.8.0 \ unicode-width-0.1.9 \ unicode-xid-0.2.2 \ unindent-0.1.7 \ untrusted-0.7.1 \ url-2.2.2 \ vcpkg-0.2.15 \ vec_map-0.8.2 \ version_check-0.9.3 \ wait-timeout-0.2.0 \ walkdir-2.3.2 \ want-0.3.0 \ wasi-0.10.2+wasi-snapshot-preview1 \ wasm-bindgen-0.2.77 \ wasm-bindgen-backend-0.2.77 \ wasm-bindgen-futures-0.4.27 \ wasm-bindgen-macro-0.2.77 \ wasm-bindgen-macro-support-0.2.77 \ wasm-bindgen-shared-0.2.77 \ web-sys-0.3.54 \ webpki-0.21.4 \ webpki-roots-0.21.1 \ winapi-0.3.9 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-util-0.1.5 \ winapi-x86_64-pc-windows-gnu-0.4.0 \ winreg-0.7.0 \ xml-rs-0.8.4 \ yaml-rust-0.4.5 PLIST_FILES= bin/${PORTNAME} PORTDOCS= CHANGELOG.md README.md OPTIONS_DEFINE= COMPLETIONS DOCS MANPAGES OPTIONS_DEFAULT= COMPLETIONS MANPAGES OPTIONS_SUB= yes COMPLETIONS_DESC= Install shell completions for bash, fish and zsh COMPLETIONS_PLIST_FILES= share/bash-completion/completions/${PORTNAME} \ share/fish/vendor_completions.d/${PORTNAME}.fish \ share/zsh/site-functions/_${PORTNAME} MANPAGES_PLIST_FILES= man/man1/${PORTNAME}.1.gz post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/${PORTNAME} post-install-COMPLETIONS-on: ${INSTALL_DATA} ${WRKSRC}/completions/${PORTNAME}.bash \ ${STAGEDIR}${PREFIX}/share/bash-completion/completions/${PORTNAME} ${INSTALL_DATA} ${WRKSRC}/completions/${PORTNAME}.fish \ ${STAGEDIR}${PREFIX}/share/fish/vendor_completions.d/${PORTNAME}.fish ${INSTALL_DATA} ${WRKSRC}/completions/_${PORTNAME} \ ${STAGEDIR}${PREFIX}/share/zsh/site-functions/_${PORTNAME} post-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} \ ${STAGEDIR}${DOCSDIR} post-install-MANPAGES-on: ${INSTALL_MAN} ${WRKSRC}/doc/${PORTNAME}.1 \ ${STAGEDIR}${MAN1PREFIX}/man/man1 .include diff --git a/www/zola/Makefile b/www/zola/Makefile index 6a04a2e1d11f..f4d2360e6331 100644 --- a/www/zola/Makefile +++ b/www/zola/Makefile @@ -1,435 +1,436 @@ PORTNAME= zola DISTVERSIONPREFIX= v DISTVERSION= 0.16.0 +PORTREVISION= 1 CATEGORIES= www MAINTAINER= mikael@FreeBSD.org COMMENT= Fast static site generator LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE LIB_DEPENDS= libonig.so:devel/oniguruma \ libsass.so:textproc/libsass USES= cargo ssl USE_GITHUB= yes GH_ACCOUNT= getzola CARGO_CRATES= adler-1.0.2 \ adler32-1.2.0 \ ahash-0.7.6 \ aho-corasick-0.7.18 \ ammonia-3.2.0 \ any_ascii-0.1.7 \ anyhow-1.0.58 \ arrayvec-0.4.12 \ arrayvec-0.5.2 \ assert-json-diff-2.0.2 \ atty-0.2.14 \ autocfg-1.1.0 \ base64-0.13.0 \ bincode-1.3.3 \ bit_field-0.10.1 \ bitflags-1.3.2 \ bitvec-0.19.6 \ block-buffer-0.7.3 \ block-buffer-0.10.2 \ block-padding-0.1.5 \ bstr-0.2.17 \ build_const-0.2.2 \ bumpalo-3.10.0 \ byte-tools-0.3.1 \ bytecount-0.3.2 \ bytecount-0.6.3 \ bytemuck-1.10.0 \ byteorder-1.4.3 \ bytes-0.4.12 \ bytes-1.1.0 \ cc-1.0.73 \ cedarwood-0.4.5 \ cfg-if-0.1.10 \ cfg-if-1.0.0 \ chrono-0.4.19 \ chrono-tz-0.6.1 \ chrono-tz-build-0.0.2 \ clap-3.2.12 \ clap_complete-3.2.3 \ clap_derive-3.2.7 \ clap_lex-0.2.4 \ color_quant-1.1.0 \ colored-2.0.0 \ console-0.15.0 \ convert_case-0.4.0 \ core-foundation-0.9.3 \ core-foundation-sys-0.8.3 \ cpufeatures-0.2.2 \ crc-1.8.1 \ crc32fast-1.3.2 \ crossbeam-channel-0.5.5 \ crossbeam-deque-0.8.1 \ crossbeam-epoch-0.9.9 \ crossbeam-utils-0.8.10 \ crypto-common-0.1.5 \ css-minify-0.2.2 \ csv-1.1.6 \ csv-core-0.1.10 \ ctrlc-3.2.2 \ deflate-1.0.0 \ derive_more-0.99.17 \ deunicode-0.4.3 \ digest-0.8.1 \ digest-0.10.3 \ doc-comment-0.3.3 \ either-1.7.0 \ elasticlunr-rs-3.0.0 \ encode_unicode-0.3.6 \ encoding-0.2.33 \ encoding-index-japanese-1.20141219.5 \ encoding-index-korean-1.20141219.5 \ encoding-index-simpchinese-1.20141219.5 \ encoding-index-singlebyte-1.20141219.5 \ encoding-index-tradchinese-1.20141219.5 \ encoding_index_tests-0.1.4 \ encoding_rs-0.8.31 \ env_logger-0.9.0 \ exr-1.4.2 \ fake-simd-0.1.2 \ fastrand-1.7.0 \ filetime-0.2.17 \ flate2-1.0.24 \ flume-0.10.13 \ fnv-1.0.7 \ foreign-types-0.3.2 \ foreign-types-shared-0.1.1 \ form_urlencoded-1.0.1 \ fsevent-0.4.0 \ fsevent-sys-2.0.1 \ fuchsia-zircon-0.3.3 \ fuchsia-zircon-sys-0.3.3 \ funty-1.1.0 \ futf-0.1.5 \ futures-channel-0.3.21 \ futures-core-0.3.21 \ futures-io-0.3.21 \ futures-sink-0.3.21 \ futures-task-0.3.21 \ futures-util-0.3.21 \ fxhash-0.2.1 \ generic-array-0.12.4 \ generic-array-0.14.5 \ getrandom-0.1.16 \ getrandom-0.2.7 \ gh-emoji-1.0.6 \ gif-0.11.4 \ glob-0.3.0 \ globset-0.4.9 \ globwalk-0.8.1 \ h2-0.3.13 \ half-1.8.2 \ hashbrown-0.11.2 \ hashbrown-0.12.2 \ heck-0.4.0 \ hermit-abi-0.1.19 \ html5ever-0.26.0 \ http-0.2.8 \ http-body-0.4.5 \ httparse-1.7.1 \ httpdate-1.0.2 \ humansize-1.1.1 \ humantime-2.1.0 \ hyper-0.14.20 \ hyper-rustls-0.23.0 \ hyper-tls-0.5.0 \ idna-0.2.3 \ ignore-0.4.18 \ image-0.24.2 \ indexmap-1.9.1 \ inflate-0.4.5 \ inotify-0.7.1 \ inotify-sys-0.1.5 \ insta-1.15.0 \ instant-0.1.12 \ iovec-0.1.4 \ ipnet-2.5.0 \ itoa-0.4.8 \ itoa-1.0.2 \ jieba-rs-0.6.6 \ jobserver-0.1.24 \ jpeg-decoder-0.2.6 \ js-sys-0.3.58 \ kamadak-exif-0.5.4 \ kernel32-sys-0.2.2 \ lazy_static-1.4.0 \ lazycell-1.3.0 \ lebe-0.5.1 \ lexical-core-0.7.6 \ lexical-sort-0.3.1 \ libc-0.2.126 \ libwebp-sys-0.4.2 \ lindera-0.13.5 \ lindera-cc-cedict-builder-0.13.5 \ lindera-core-0.13.5 \ lindera-decompress-0.13.5 \ lindera-dictionary-0.13.5 \ lindera-ipadic-0.13.5 \ lindera-ipadic-builder-0.13.5 \ lindera-ko-dic-builder-0.13.5 \ lindera-unidic-builder-0.13.5 \ line-wrap-0.1.1 \ linked-hash-map-0.5.6 \ lock_api-0.4.7 \ log-0.4.17 \ lzma-rs-0.2.0 \ mac-0.1.1 \ maplit-1.0.2 \ markup5ever-0.11.0 \ matches-0.1.9 \ memchr-2.5.0 \ memoffset-0.6.5 \ mime-0.3.16 \ mime_guess-2.0.4 \ minidom-0.12.0 \ minify-html-0.9.2 \ minify-js-0.1.5 \ miniz_oxide-0.5.3 \ mio-0.6.23 \ mio-0.8.4 \ mio-extras-2.0.6 \ miow-0.2.2 \ mockito-0.31.0 \ mutate_once-0.1.1 \ nanorand-0.7.0 \ native-tls-0.2.10 \ net2-0.2.37 \ new_debug_unreachable-1.0.4 \ nix-0.24.1 \ nodrop-0.1.14 \ nom-5.1.2 \ nom-6.1.2 \ nom-bibtex-0.3.0 \ nom-tracable-0.5.2 \ nom-tracable-macros-0.5.2 \ nom_locate-1.0.0 \ nom_locate-2.1.0 \ notify-4.0.17 \ num-format-0.4.0 \ num-integer-0.1.45 \ num-iter-0.1.43 \ num-rational-0.4.1 \ num-traits-0.2.15 \ num_cpus-1.13.1 \ num_threads-0.1.6 \ once_cell-1.13.0 \ onig-6.3.2 \ onig_sys-69.8.0 \ opaque-debug-0.2.3 \ open-3.0.1 \ openssl-0.10.41 \ openssl-macros-0.1.0 \ openssl-probe-0.1.5 \ openssl-sys-0.9.75 \ os_str_bytes-6.1.0 \ parking_lot-0.12.1 \ parking_lot_core-0.9.3 \ parse-zoneinfo-0.3.0 \ path-slash-0.2.0 \ pathdiff-0.2.1 \ percent-encoding-2.1.0 \ pest-2.1.3 \ pest_derive-2.1.0 \ pest_generator-2.1.3 \ pest_meta-2.1.3 \ phf-0.10.1 \ phf_codegen-0.10.0 \ phf_generator-0.10.0 \ phf_shared-0.10.0 \ pin-project-1.0.11 \ pin-project-internal-1.0.11 \ pin-project-lite-0.2.9 \ pin-utils-0.1.0 \ pkg-config-0.3.25 \ plist-1.3.1 \ png-0.17.5 \ ppv-lite86-0.2.16 \ precomputed-hash-0.1.1 \ proc-macro-error-1.0.4 \ proc-macro-error-attr-1.0.4 \ proc-macro2-1.0.40 \ pulldown-cmark-0.9.1 \ quick-error-1.2.3 \ quick-xml-0.17.2 \ quickxml_to_serde-0.5.0 \ quote-1.0.20 \ radium-0.5.3 \ rand-0.7.3 \ rand-0.8.5 \ rand_chacha-0.2.2 \ rand_chacha-0.3.1 \ rand_core-0.5.1 \ rand_core-0.6.3 \ rand_hc-0.2.0 \ rayon-1.5.3 \ rayon-core-1.9.3 \ redox_syscall-0.2.13 \ regex-1.6.0 \ regex-automata-0.1.10 \ regex-syntax-0.6.27 \ relative-path-1.7.2 \ remove_dir_all-0.5.3 \ reqwest-0.11.11 \ ring-0.16.20 \ roxmltree-0.13.1 \ rust-stemmers-1.2.0 \ rustc_version-0.4.0 \ rustls-0.20.6 \ rustls-pemfile-1.0.0 \ ryu-1.0.10 \ safemem-0.3.3 \ same-file-1.0.6 \ sass-rs-0.2.2 \ sass-sys-0.4.22 \ schannel-0.1.20 \ scoped_threadpool-0.1.9 \ scopeguard-1.1.0 \ sct-0.7.0 \ security-framework-2.6.1 \ security-framework-sys-2.6.1 \ semver-1.0.12 \ serde-1.0.139 \ serde_derive-1.0.139 \ serde_json-1.0.82 \ serde_urlencoded-0.7.1 \ serde_yaml-0.8.26 \ sha-1-0.8.2 \ sha2-0.10.2 \ similar-2.1.0 \ siphasher-0.3.10 \ slab-0.4.6 \ slug-0.1.4 \ smallvec-1.9.0 \ socket2-0.4.4 \ spin-0.5.2 \ spin-0.9.4 \ static_assertions-1.1.0 \ string_cache-0.8.4 \ string_cache_codegen-0.5.2 \ strsim-0.10.0 \ svg_metadata-0.4.2 \ syn-1.0.98 \ syntect-5.0.0 \ tap-1.0.1 \ tar-0.4.38 \ tempfile-3.3.0 \ tendril-0.4.3 \ tera-1.16.0 \ termcolor-1.1.3 \ terminal_size-0.1.17 \ test-case-2.1.0 \ test-case-macros-2.1.0 \ textwrap-0.15.0 \ thiserror-1.0.31 \ thiserror-impl-1.0.31 \ thread_local-1.1.4 \ threadpool-1.8.1 \ tiff-0.7.2 \ time-0.3.11 \ time-macros-0.2.4 \ tinystr-0.3.4 \ tinyvec-1.6.0 \ tinyvec_macros-0.1.0 \ tokio-1.20.0 \ tokio-native-tls-0.3.0 \ tokio-rustls-0.23.4 \ tokio-util-0.7.3 \ toml-0.5.9 \ tower-service-0.3.2 \ tracing-0.1.35 \ tracing-core-0.1.28 \ try-lock-0.2.3 \ typenum-1.15.0 \ ucd-trie-0.1.4 \ uncased-0.9.7 \ unic-char-property-0.9.0 \ unic-char-range-0.9.0 \ unic-common-0.9.0 \ unic-langid-0.9.0 \ unic-langid-impl-0.9.0 \ unic-segment-0.9.0 \ unic-ucd-segment-0.9.0 \ unic-ucd-version-0.9.0 \ unicase-2.6.0 \ unicode-bidi-0.3.8 \ unicode-ident-1.0.2 \ unicode-normalization-0.1.21 \ unicode-segmentation-1.9.0 \ untrusted-0.7.1 \ url-2.2.2 \ utf-8-0.7.6 \ vcpkg-0.2.15 \ version_check-0.9.4 \ walkdir-2.3.2 \ want-0.3.0 \ wasi-0.9.0+wasi-snapshot-preview1 \ wasi-0.11.0+wasi-snapshot-preview1 \ wasm-bindgen-0.2.81 \ wasm-bindgen-backend-0.2.81 \ wasm-bindgen-futures-0.4.31 \ wasm-bindgen-macro-0.2.81 \ wasm-bindgen-macro-support-0.2.81 \ wasm-bindgen-shared-0.2.81 \ web-sys-0.3.58 \ webp-0.2.2 \ webpki-0.22.0 \ webpki-roots-0.22.4 \ weezl-0.1.7 \ winapi-0.2.8 \ winapi-0.3.9 \ winapi-build-0.1.1 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-util-0.1.5 \ winapi-x86_64-pc-windows-gnu-0.4.0 \ windows-sys-0.36.1 \ windows_aarch64_msvc-0.36.1 \ windows_i686_gnu-0.36.1 \ windows_i686_msvc-0.36.1 \ windows_x86_64_gnu-0.36.1 \ windows_x86_64_msvc-0.36.1 \ winreg-0.10.1 \ winres-0.1.12 \ ws-0.9.2 \ ws2_32-sys-0.2.1 \ wyz-0.2.0 \ xattr-0.2.3 \ xml-rs-0.8.4 \ xmlparser-0.13.3 \ yada-0.5.0 \ yaml-rust-0.4.5 MAKE_ENV= CARGO_PROFILE_RELEASE_LTO=off PLIST_FILES= bin/zola \ etc/bash_completion.d/zola.bash \ share/fish/completions/zola.fish \ share/zsh/site-functions/_zola PORTDOCS= * OPTIONS_DEFINE= DOCS post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/zola @${MKDIR} ${STAGEDIR}${PREFIX}/etc/bash_completion.d \ ${STAGEDIR}${PREFIX}/share/fish/completions \ ${STAGEDIR}${PREFIX}/share/zsh/site-functions ${INSTALL_DATA} ${WRKSRC}/completions/zola.bash \ ${STAGEDIR}${PREFIX}/etc/bash_completion.d ${INSTALL_DATA} ${WRKSRC}/completions/zola.fish \ ${STAGEDIR}${PREFIX}/share/fish/completions ${INSTALL_DATA} ${WRKSRC}/completions/_zola \ ${STAGEDIR}${PREFIX}/share/zsh/site-functions post-install-DOCS-on: @cd ${WRKSRC}/docs && \ ${COPYTREE_SHARE} . ${STAGEDIR}${DOCSDIR} .include diff --git a/x11-wm/leftwm/Makefile b/x11-wm/leftwm/Makefile index 701ae47cec9b..657cd435e866 100644 --- a/x11-wm/leftwm/Makefile +++ b/x11-wm/leftwm/Makefile @@ -1,183 +1,183 @@ PORTNAME= leftwm DISTVERSION= 0.3.0 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= x11-wm MAINTAINER= rigoletto@FreeBSD.org COMMENT= Tiling window manager for Adventurers LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.md USES= cargo xorg USE_XORG= xinerama xrandr USE_GITHUB= yes CARGO_CRATES= aho-corasick-0.7.18 \ ansi_term-0.12.1 \ anyhow-1.0.56 \ anymap2-0.13.0 \ arc-swap-1.5.0 \ atty-0.2.14 \ autocfg-1.1.0 \ bitflags-1.3.2 \ block-buffer-0.7.3 \ block-buffer-0.9.0 \ block-padding-0.1.5 \ byte-tools-0.3.1 \ byteorder-1.4.3 \ bytes-1.1.0 \ cc-1.0.73 \ cfg-if-1.0.0 \ clap-2.34.0 \ cpufeatures-0.2.1 \ crossbeam-channel-0.5.2 \ crossbeam-utils-0.8.7 \ crypto-mac-0.11.1 \ digest-0.8.1 \ digest-0.9.0 \ dirs-4.0.0 \ dirs-next-2.0.0 \ dirs-sys-0.3.6 \ dirs-sys-next-0.1.2 \ doc-comment-0.3.3 \ either-1.6.1 \ fake-simd-0.1.2 \ fastrand-1.7.0 \ futures-0.3.21 \ futures-channel-0.3.21 \ futures-core-0.3.21 \ futures-executor-0.3.21 \ futures-io-0.3.21 \ futures-macro-0.3.21 \ futures-sink-0.3.21 \ futures-task-0.3.21 \ futures-util-0.3.21 \ generic-array-0.12.4 \ generic-array-0.14.5 \ getrandom-0.2.5 \ git-version-0.3.5 \ git-version-macro-0.3.5 \ hermit-abi-0.1.19 \ hmac-0.11.0 \ instant-0.1.12 \ itertools-0.10.3 \ itoa-1.0.1 \ kstring-1.0.6 \ lazy_static-1.4.0 \ libc-0.2.119 \ libsystemd-0.4.1 \ liquid-0.24.0 \ liquid-core-0.24.0 \ liquid-derive-0.24.0 \ liquid-lib-0.24.0 \ log-0.4.14 \ maplit-1.0.2 \ memchr-2.4.1 \ memoffset-0.6.5 \ mio-0.8.0 \ miow-0.3.7 \ nix-0.23.1 \ ntapi-0.3.7 \ num-traits-0.2.14 \ num_cpus-1.13.1 \ num_threads-0.1.3 \ once_cell-1.10.0 \ opaque-debug-0.2.3 \ opaque-debug-0.3.0 \ percent-encoding-2.1.0 \ pest-2.1.3 \ pest_derive-2.1.0 \ pest_generator-2.1.3 \ pest_meta-2.1.3 \ pin-project-lite-0.2.8 \ pin-utils-0.1.0 \ pkg-config-0.3.24 \ proc-macro-hack-0.5.19 \ proc-macro2-1.0.36 \ proc-quote-0.4.0 \ proc-quote-impl-0.3.2 \ quote-1.0.15 \ redox_syscall-0.2.11 \ redox_users-0.4.0 \ regex-1.5.5 \ regex-syntax-0.6.25 \ remove_dir_all-0.5.3 \ rustversion-1.0.6 \ ryu-1.0.9 \ serde-1.0.136 \ serde_derive-1.0.136 \ serde_json-1.0.79 \ sha-1-0.8.2 \ sha2-0.9.9 \ shellexpand-2.1.0 \ signal-hook-0.3.13 \ signal-hook-registry-1.4.0 \ slab-0.4.5 \ slog-2.7.0 \ slog-async-2.7.0 \ slog-envlogger-2.2.0 \ slog-journald-2.2.0 \ slog-scope-4.4.0 \ slog-stdlog-4.1.0 \ slog-term-2.9.0 \ socket2-0.4.4 \ strsim-0.8.0 \ subtle-2.4.1 \ syn-1.0.86 \ take_mut-0.2.2 \ tempfile-3.3.0 \ term-0.7.0 \ textwrap-0.11.0 \ thiserror-1.0.30 \ thiserror-impl-1.0.30 \ thread_local-1.1.4 \ time-0.3.7 \ time-macros-0.2.3 \ tokio-1.17.0 \ tokio-macros-1.7.0 \ toml-0.5.8 \ typenum-1.15.0 \ ucd-trie-0.1.3 \ unicode-segmentation-1.9.0 \ unicode-width-0.1.9 \ unicode-xid-0.2.2 \ uuid-0.8.2 \ vec_map-0.8.2 \ version_check-0.9.4 \ wasi-0.10.2+wasi-snapshot-preview1 \ winapi-0.3.9 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-x86_64-pc-windows-gnu-0.4.0 \ x11-dl-2.19.1 \ xdg-2.4.1 OPTIONS_DEFINE= DOCS THEMES OPTIONS_DEFAULT= THEMES OPTIONS_SUB= yes THEMES_DESC= LeftWM Basic Themes CARGO_INSTALL_PATH= ./leftwm post-install-DOCS-on: ${MKDIR} ${STAGEDIR}${DOCSDIR} .for l in CHANGELOG CONTRIBUTING.md README.md ${INSTALL_MAN} ${WRKSRC}/${l} ${STAGEDIR}${DOCSDIR} .endfor post-install-THEMES-on: cd ${WRKSRC} && ${COPYTREE_SHARE} themes \ ${STAGEDIR}${DATADIR} post-install: .for l in leftwm-state leftwm-worker leftwm-check \ leftwm-command leftwm ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/${l} .endfor ${MKDIR} ${STAGEDIR}${LOCALBASE}/share/xsessions (cd ${WRKSRC} && ${INSTALL_DATA} leftwm.desktop \ ${STAGEDIR}${LOCALBASE}/share/xsessions/) .include diff --git a/x11/admiral/Makefile b/x11/admiral/Makefile index 166b7955f930..bd3bc43399a7 100644 --- a/x11/admiral/Makefile +++ b/x11/admiral/Makefile @@ -1,57 +1,57 @@ PORTNAME= admiral DISTVERSIONPREFIX= v DISTVERSION= 1.0.0-7 DISTVERSIONSUFFIX= -g5a9f33b -PORTREVISION= 41 +PORTREVISION= 42 CATEGORIES= x11 MAINTAINER= rigoletto@FreeBSD.org COMMENT= Merge concurrent outputs for a status bar LICENSE= BSD2CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE USES= cargo USE_GITHUB= yes GH_ACCOUNT= sector-f CARGO_CRATES= ansi_term-0.10.2 \ atty-0.2.6 \ bitflags-1.0.1 \ clap-2.29.2 \ libc-0.2.49 \ num_cpus-1.8.0 \ quote-0.3.15 \ redox_syscall-0.1.37 \ redox_termios-0.1.1 \ serde-1.0.27 \ serde_derive-1.0.27 \ serde_derive_internals-0.19.0 \ strsim-0.6.0 \ syn-0.11.11 \ synom-0.11.3 \ termion-1.5.1 \ textwrap-0.9.0 \ threadpool-1.7.1 \ toml-0.4.5 \ unicode-width-0.1.4 \ unicode-xid-0.0.4 \ vec_map-0.8.0 \ winapi-0.3.3 \ winapi-i686-pc-windows-gnu-0.3.2 \ winapi-x86_64-pc-windows-gnu-0.3.2 OPTIONS_DEFINE= EXAMPLES PORTEXAMPLES= * PLIST_FILES= bin/admiral post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/admiral post-install-EXAMPLES-on: ${MKDIR} ${STAGEDIR}${EXAMPLESDIR} (cd ${WRKSRC} && ${COPYTREE_SHARE} admiral.d ${STAGEDIR}${EXAMPLESDIR}/admiral.d) .include diff --git a/x11/alacritty/Makefile b/x11/alacritty/Makefile index e7639511ba3f..46d954788230 100644 --- a/x11/alacritty/Makefile +++ b/x11/alacritty/Makefile @@ -1,274 +1,274 @@ PORTNAME= alacritty DISTVERSIONPREFIX= v DISTVERSION= 0.10.1 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= x11 wayland MAINTAINER= mikael@FreeBSD.org COMMENT= GPU-accelerated terminal emulator LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE-APACHE LIB_DEPENDS= libfreetype.so:print/freetype2 \ libfontconfig.so:x11-fonts/fontconfig \ libxkbcommon.so:x11/libxkbcommon TEST_DEPENDS= dejavu>0:x11-fonts/dejavu USES= cargo localbase:ldflags python:3.6+,build ssl:build USE_GITHUB= yes CARGO_CRATES= adler32-1.2.0 \ android_glue-0.2.3 \ ansi_term-0.12.1 \ atty-0.2.14 \ autocfg-1.0.1 \ base64-0.13.0 \ bitflags-1.2.1 \ block-0.1.6 \ bumpalo-3.9.1 \ calloop-0.9.3 \ cc-1.0.72 \ cfg-if-0.1.10 \ cfg-if-1.0.0 \ cgl-0.3.2 \ clap-2.34.0 \ clipboard-win-3.1.1 \ cmake-0.1.48 \ cocoa-0.24.0 \ cocoa-foundation-0.1.0 \ copypasta-0.7.1 \ core-foundation-0.7.0 \ core-foundation-0.9.2 \ core-foundation-sys-0.7.0 \ core-foundation-sys-0.8.3 \ core-graphics-0.19.2 \ core-graphics-0.22.3 \ core-graphics-types-0.1.1 \ core-text-19.2.0 \ core-video-sys-0.1.4 \ crc32fast-1.3.0 \ crossfont-0.3.2 \ cty-0.2.2 \ darling-0.13.1 \ darling_core-0.13.1 \ darling_macro-0.13.1 \ dirs-3.0.2 \ dirs-sys-0.3.6 \ dispatch-0.2.0 \ dlib-0.5.0 \ downcast-rs-1.2.0 \ dwrote-0.11.0 \ embed-resource-1.6.5 \ expat-sys-2.1.6 \ filetime-0.2.15 \ fnv-1.0.7 \ foreign-types-0.3.2 \ foreign-types-0.5.0 \ foreign-types-macros-0.2.1 \ foreign-types-shared-0.1.1 \ foreign-types-shared-0.3.0 \ freetype-rs-0.26.0 \ freetype-sys-0.13.1 \ fsevent-0.4.0 \ fsevent-sys-2.0.1 \ fuchsia-zircon-0.3.3 \ fuchsia-zircon-sys-0.3.3 \ getrandom-0.2.3 \ gl_generator-0.14.0 \ glutin-0.28.0 \ glutin_egl_sys-0.1.5 \ glutin_emscripten_sys-0.1.1 \ glutin_gles2_sys-0.1.5 \ glutin_glx_sys-0.1.7 \ glutin_wgl_sys-0.1.5 \ hashbrown-0.11.2 \ heck-0.3.3 \ hermit-abi-0.1.19 \ ident_case-1.0.1 \ indexmap-1.8.0 \ inotify-0.7.1 \ inotify-sys-0.1.5 \ instant-0.1.12 \ iovec-0.1.4 \ itoa-1.0.1 \ jni-sys-0.3.0 \ js-sys-0.3.55 \ kernel32-sys-0.2.2 \ khronos_api-3.1.0 \ lazy-bytes-cast-5.0.1 \ lazy_static-1.4.0 \ lazycell-1.3.0 \ libc-0.2.112 \ libloading-0.7.2 \ linked-hash-map-0.5.4 \ lock_api-0.4.5 \ log-0.4.14 \ malloc_buf-0.0.6 \ memchr-2.4.1 \ memmap2-0.3.1 \ memoffset-0.6.5 \ minimal-lexical-0.2.1 \ miniz_oxide-0.3.7 \ mio-0.6.23 \ mio-0.8.0 \ mio-anonymous-pipes-0.2.0 \ mio-extras-2.0.6 \ mio-uds-0.6.8 \ miow-0.2.2 \ miow-0.3.7 \ ndk-0.5.0 \ ndk-glue-0.5.0 \ ndk-macro-0.3.0 \ ndk-sys-0.2.2 \ net2-0.2.37 \ nix-0.22.2 \ nom-7.1.0 \ notify-4.0.17 \ ntapi-0.3.6 \ num_enum-0.5.6 \ num_enum_derive-0.5.6 \ objc-0.2.7 \ objc-foundation-0.1.1 \ objc_id-0.1.1 \ once_cell-1.9.0 \ osmesa-sys-0.1.2 \ parking_lot-0.11.2 \ parking_lot_core-0.8.5 \ percent-encoding-2.1.0 \ pkg-config-0.3.24 \ png-0.16.8 \ proc-macro-crate-1.1.0 \ proc-macro-error-1.0.4 \ proc-macro-error-attr-1.0.4 \ proc-macro2-1.0.36 \ quick-xml-0.22.0 \ quote-1.0.14 \ raw-window-handle-0.4.2 \ redox_syscall-0.2.10 \ redox_users-0.4.0 \ regex-automata-0.1.10 \ regex-syntax-0.6.25 \ ryu-1.0.9 \ same-file-1.0.6 \ scoped-tls-1.0.0 \ scopeguard-1.1.0 \ serde-1.0.133 \ serde_derive-1.0.133 \ serde_json-1.0.74 \ serde_yaml-0.8.23 \ servo-fontconfig-0.5.1 \ servo-fontconfig-sys-5.1.0 \ shared_library-0.1.9 \ signal-hook-0.3.13 \ signal-hook-mio-0.2.1 \ signal-hook-registry-1.4.0 \ slab-0.4.5 \ smallvec-1.7.0 \ smithay-client-toolkit-0.15.3 \ smithay-clipboard-0.6.5 \ spsc-buffer-0.1.1 \ strsim-0.8.0 \ strsim-0.10.0 \ structopt-0.3.25 \ structopt-derive-0.4.18 \ syn-1.0.85 \ textwrap-0.11.0 \ thiserror-1.0.30 \ thiserror-impl-1.0.30 \ toml-0.5.8 \ unicode-segmentation-1.8.0 \ unicode-width-0.1.9 \ unicode-xid-0.2.2 \ utf8parse-0.2.0 \ vec_map-0.8.2 \ version_check-0.9.4 \ vswhom-0.1.0 \ vswhom-sys-0.1.0 \ vte-0.10.1 \ vte_generate_state_changes-0.1.1 \ walkdir-2.3.2 \ wasi-0.10.2+wasi-snapshot-preview1 \ wasm-bindgen-0.2.78 \ wasm-bindgen-backend-0.2.78 \ wasm-bindgen-macro-0.2.78 \ wasm-bindgen-macro-support-0.2.78 \ wasm-bindgen-shared-0.2.78 \ wayland-client-0.29.4 \ wayland-commons-0.29.4 \ wayland-cursor-0.29.4 \ wayland-egl-0.29.4 \ wayland-protocols-0.29.4 \ wayland-scanner-0.29.4 \ wayland-sys-0.29.4 \ web-sys-0.3.55 \ winapi-0.2.8 \ winapi-0.3.9 \ winapi-build-0.1.1 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-util-0.1.5 \ winapi-x86_64-pc-windows-gnu-0.4.0 \ winit-0.26.1 \ winreg-0.10.1 \ wio-0.2.2 \ ws2_32-sys-0.2.1 \ x11-clipboard-0.5.3 \ x11-dl-2.19.1 \ xcb-0.10.1 \ xcursor-0.3.4 \ xdg-2.4.0 \ xml-rs-0.8.4 \ yaml-rust-0.4.5 CARGO_INSTALL_PATH= alacritty CARGO_FEATURES+= --no-default-features CARGO_CARGOTOML= ${WRKSRC}/${PORTNAME}/Cargo.toml # For xcb crate BINARY_ALIAS= python3=${PYTHON_CMD} PLIST_FILES= bin/alacritty \ etc/bash_completion.d/alacritty.bash \ share/fish/completions/alacritty.fish \ share/man/man1/alacritty.1.gz \ share/pixmaps/Alacritty.svg \ share/zsh/site-functions/_alacritty \ ${DESKTOPDIR}/Alacritty.desktop PORTEXAMPLES= alacritty.yml OPTIONS_DEFINE= EXAMPLES BACKEND_DESC= Display backend OPTIONS_MULTI= BACKEND OPTIONS_MULTI_BACKEND= WAYLAND X11 OPTIONS_DEFAULT= WAYLAND X11 WAYLAND_VARS= CARGO_FEATURES+=wayland X11_USES= xorg X11_USE= XORG=xcb X11_VARS= CARGO_FEATURES+=x11 post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/alacritty ${INSTALL_DATA} ${WRKSRC}/extra/linux/Alacritty.desktop \ ${STAGEDIR}${DESKTOPDIR} ${INSTALL_DATA} ${WRKSRC}/extra/logo/alacritty-term.svg \ ${STAGEDIR}${PREFIX}/share/pixmaps/Alacritty.svg ${INSTALL_MAN} ${WRKSRC}/extra/alacritty.man \ ${STAGEDIR}${PREFIX}/share/man/man1/alacritty.1 @${MKDIR} ${STAGEDIR}${PREFIX}/etc/bash_completion.d ${INSTALL_DATA} ${WRKSRC}/extra/completions/alacritty.bash \ ${STAGEDIR}${PREFIX}/etc/bash_completion.d @${MKDIR} ${STAGEDIR}${PREFIX}/share/fish/completions ${INSTALL_DATA} ${WRKSRC}/extra/completions/alacritty.fish \ ${STAGEDIR}${PREFIX}/share/fish/completions @${MKDIR} ${STAGEDIR}${PREFIX}/share/zsh/site-functions ${INSTALL_DATA} ${WRKSRC}/extra/completions/_alacritty \ ${STAGEDIR}${PREFIX}/share/zsh/site-functions post-install-EXAMPLES-on: @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} ${INSTALL_DATA} ${WRKSRC}/${PORTEXAMPLES} ${STAGEDIR}${EXAMPLESDIR} .include diff --git a/x11/inputplug/Makefile b/x11/inputplug/Makefile index 4794bf041401..86aa0c603a13 100644 --- a/x11/inputplug/Makefile +++ b/x11/inputplug/Makefile @@ -1,59 +1,59 @@ PORTNAME= inputplug DISTVERSION= 0.4.0 -PORTREVISION= 8 +PORTREVISION= 9 CATEGORIES= x11 MAINTAINER= 0mp@FreeBSD.org COMMENT= XInput event monitor daemon LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= cargo xorg USE_GITHUB= yes GH_ACCOUNT= andrewshadura USE_XORG= x11 xcb xi CARGO_CRATES= anyhow-1.0.44 \ autocfg-1.0.1 \ bitflags-1.2.1 \ cc-1.0.70 \ cfg-if-1.0.0 \ clap-2.33.3 \ gethostname-0.2.1 \ heck-0.3.3 \ lazy_static-1.4.0 \ libc-0.2.103 \ log-0.4.14 \ memoffset-0.6.4 \ nix-0.20.2 \ nix-0.22.2 \ pidfile-rs-0.1.0 \ pkg-config-0.3.20 \ proc-macro-error-1.0.4 \ proc-macro-error-attr-1.0.4 \ proc-macro2-1.0.29 \ quote-1.0.9 \ structopt-0.3.23 \ structopt-derive-0.4.16 \ syn-1.0.78 \ textwrap-0.11.0 \ thiserror-1.0.29 \ thiserror-impl-1.0.29 \ unicode-segmentation-1.8.0 \ unicode-width-0.1.9 \ unicode-xid-0.2.2 \ version_check-0.9.3 \ winapi-0.3.9 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-wsapoll-0.1.1 \ winapi-x86_64-pc-windows-gnu-0.4.0 \ x11rb-0.8.1 PLIST_FILES= bin/inputplug \ share/man/man1/inputplug.1.gz post-install: ${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.1 ${STAGEDIR}${PREFIX}/share/man/man1 @${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/${PORTNAME} .include diff --git a/x11/kickoff/Makefile b/x11/kickoff/Makefile index 952282e95281..c456261433d2 100644 --- a/x11/kickoff/Makefile +++ b/x11/kickoff/Makefile @@ -1,239 +1,239 @@ PORTNAME= kickoff DISTVERSIONPREFIX= v DISTVERSION= 0.5.1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= x11 wayland MAINTAINER= jbeich@FreeBSD.org COMMENT= Minimalistic program launcher for Wayland LICENSE= GPLv3+ LICENSE_FILE= ${WRKSRC}/LICENSE BUILD_DEPENDS= libxkbcommon>0:x11/libxkbcommon LIB_DEPENDS= libfontconfig.so:x11-fonts/fontconfig USES= cargo USE_GITHUB= yes GH_ACCOUNT= j0ru PLIST_FILES= bin/${PORTNAME} CARGO_CRATES= adler-1.0.2 \ adler32-1.2.0 \ ahash-0.7.6 \ aho-corasick-0.7.18 \ async-broadcast-0.4.0 \ async-channel-1.6.1 \ async-executor-1.4.1 \ async-io-1.7.0 \ async-lock-2.5.0 \ async-recursion-0.3.2 \ async-task-4.2.0 \ async-trait-0.1.56 \ atty-0.2.14 \ autocfg-1.1.0 \ bit_field-0.10.1 \ bitflags-1.3.2 \ block-0.1.6 \ bumpalo-3.10.0 \ bytemuck-1.9.1 \ byteorder-1.4.3 \ bytes-1.1.0 \ cache-padded-1.2.0 \ calloop-0.9.3 \ cc-1.0.73 \ cfg-if-1.0.0 \ clap-3.2.1 \ clap_derive-3.2.1 \ clap_lex-0.2.2 \ color_quant-1.1.0 \ concurrent-queue-1.2.2 \ const-cstr-0.3.0 \ crc32fast-1.3.2 \ crossbeam-channel-0.5.4 \ crossbeam-deque-0.8.1 \ crossbeam-epoch-0.9.8 \ crossbeam-utils-0.8.8 \ css-color-0.2.4 \ deflate-1.0.0 \ derivative-2.2.0 \ dirs-4.0.0 \ dirs-next-2.0.0 \ dirs-sys-0.3.7 \ dirs-sys-next-0.1.2 \ dlib-0.5.0 \ downcast-rs-1.2.0 \ easy-parallel-3.2.0 \ either-1.6.1 \ enumflags2-0.7.5 \ enumflags2_derive-0.7.4 \ env_logger-0.9.0 \ errno-0.2.8 \ errno-dragonfly-0.1.2 \ event-listener-2.5.2 \ exec-0.3.1 \ exr-1.4.2 \ fastrand-1.7.0 \ flate2-1.0.24 \ flume-0.10.13 \ fontconfig-0.5.0 \ fontdue-0.7.2 \ futures-core-0.3.21 \ futures-io-0.3.21 \ futures-lite-1.12.0 \ futures-sink-0.3.21 \ futures-task-0.3.21 \ futures-util-0.3.21 \ fuzzy-matcher-0.3.7 \ getrandom-0.2.6 \ gif-0.11.3 \ half-1.8.2 \ hashbrown-0.11.2 \ heck-0.3.3 \ heck-0.4.0 \ hermit-abi-0.1.19 \ hex-0.4.3 \ humantime-2.1.0 \ image-0.24.2 \ indexmap-1.8.2 \ inflate-0.4.5 \ instant-0.1.12 \ itoa-1.0.2 \ jpeg-decoder-0.2.6 \ js-sys-0.3.57 \ lazy_static-1.4.0 \ lebe-0.5.1 \ libc-0.2.126 \ libloading-0.7.3 \ lock_api-0.4.7 \ log-0.4.17 \ mac-notification-sys-0.5.2 \ malloc_buf-0.0.6 \ memchr-2.5.0 \ memmap2-0.3.1 \ memoffset-0.6.5 \ minimal-lexical-0.2.1 \ miniz_oxide-0.5.3 \ nanorand-0.7.0 \ nix-0.22.3 \ nix-0.23.1 \ nix-0.24.1 \ nom-7.1.1 \ notify-rust-4.5.8 \ num-integer-0.1.45 \ num-iter-0.1.43 \ num-rational-0.4.0 \ num-traits-0.2.15 \ num_cpus-1.13.1 \ num_threads-0.1.6 \ objc-0.2.7 \ objc-foundation-0.1.1 \ objc_id-0.1.1 \ once_cell-1.12.0 \ ordered-stream-0.0.1 \ os_str_bytes-6.1.0 \ parking-2.0.0 \ parking_lot-0.11.2 \ parking_lot_core-0.8.5 \ pin-project-1.0.10 \ pin-project-internal-1.0.10 \ pin-project-lite-0.2.9 \ pin-utils-0.1.0 \ pkg-config-0.3.25 \ png-0.17.5 \ polling-2.2.0 \ ppv-lite86-0.2.16 \ proc-macro-crate-1.1.3 \ proc-macro-error-1.0.4 \ proc-macro-error-attr-1.0.4 \ proc-macro2-1.0.39 \ quote-1.0.18 \ rand-0.8.5 \ rand_chacha-0.3.1 \ rand_core-0.6.3 \ rayon-1.5.3 \ rayon-core-1.9.3 \ redox_syscall-0.2.13 \ redox_users-0.4.3 \ regex-1.5.6 \ regex-syntax-0.6.26 \ remove_dir_all-0.5.3 \ ryu-1.0.10 \ scoped-tls-1.0.0 \ scoped_threadpool-0.1.9 \ scopeguard-1.1.0 \ serde-1.0.137 \ serde_derive-1.0.137 \ serde_json-1.0.81 \ serde_repr-0.1.8 \ sha1-0.6.1 \ sha1_smol-1.0.0 \ shellwords-1.1.0 \ slab-0.4.6 \ smallvec-1.8.0 \ smithay-client-toolkit-0.15.4 \ smithay-clipboard-0.6.5 \ socket2-0.4.4 \ spin-0.9.3 \ static_assertions-1.1.0 \ strsim-0.10.0 \ strum-0.22.0 \ strum_macros-0.22.0 \ syn-1.0.96 \ tempfile-3.3.0 \ termcolor-1.1.3 \ textwrap-0.15.0 \ thiserror-1.0.31 \ thiserror-impl-1.0.31 \ thread_local-1.1.4 \ threadpool-1.8.1 \ tiff-0.7.2 \ time-0.3.9 \ tokio-1.19.2 \ tokio-macros-1.8.0 \ toml-0.5.9 \ tracing-0.1.35 \ tracing-attributes-0.1.21 \ tracing-core-0.1.27 \ ttf-parser-0.15.1 \ uds_windows-1.0.2 \ unicode-ident-1.0.0 \ unicode-segmentation-1.9.0 \ version_check-0.9.4 \ waker-fn-1.1.0 \ wasi-0.10.2+wasi-snapshot-preview1 \ wasm-bindgen-0.2.80 \ wasm-bindgen-backend-0.2.80 \ wasm-bindgen-macro-0.2.80 \ wasm-bindgen-macro-support-0.2.80 \ wasm-bindgen-shared-0.2.80 \ wayland-client-0.29.4 \ wayland-commons-0.29.4 \ wayland-cursor-0.29.4 \ wayland-protocols-0.29.4 \ wayland-scanner-0.29.4 \ wayland-sys-0.29.4 \ weezl-0.1.6 \ wepoll-ffi-0.1.2 \ winapi-0.3.9 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-util-0.1.5 \ winapi-x86_64-pc-windows-gnu-0.4.0 \ windows-0.24.0 \ windows_i686_gnu-0.24.0 \ windows_i686_msvc-0.24.0 \ windows_x86_64_gnu-0.24.0 \ windows_x86_64_msvc-0.24.0 \ winrt-notification-0.5.1 \ x11-keysymdef-0.2.0 \ xcursor-0.3.4 \ xdg-2.4.1 \ xml-rs-0.8.4 \ yeslogic-fontconfig-sys-3.0.1 \ zbus-2.3.0 \ zbus_macros-2.3.0 \ zbus_names-2.1.0 \ zvariant-3.3.0 \ zvariant_derive-3.3.0 .include diff --git a/x11/sirula/Makefile b/x11/sirula/Makefile index 5c93e176bc7a..c4faa03f57c3 100644 --- a/x11/sirula/Makefile +++ b/x11/sirula/Makefile @@ -1,136 +1,136 @@ PORTNAME= sirula DISTVERSIONPREFIX= v DISTVERSION= 1.0.0 -PORTREVISION= 6 +PORTREVISION= 7 CATEGORIES= x11 wayland MAINTAINER= jbeich@FreeBSD.org COMMENT= Simple app launcher for Wayland written in Rust LICENSE= GPLv3+ LICENSE_FILE= ${WRKSRC}/COPYING LIB_DEPENDS= libgtk-layer-shell.so:x11-toolkits/gtk-layer-shell USES= cargo gnome USE_GITHUB= yes USE_GNOME= cairo gdkpixbuf2 gtk30 GH_ACCOUNT= DorianRudolph PLIST_FILES= bin/${PORTNAME} CARGO_CRATES= aho-corasick-0.7.18 \ anyhow-1.0.44 \ arrayref-0.3.6 \ arrayvec-0.5.2 \ atk-0.14.0 \ atk-sys-0.14.0 \ autocfg-1.0.1 \ base64-0.13.0 \ bitflags-1.3.2 \ bitvec-0.19.5 \ blake2b_simd-0.5.11 \ cairo-rs-0.14.7 \ cairo-sys-rs-0.14.0 \ cfg-expr-0.8.1 \ cfg-if-1.0.0 \ constant_time_eq-0.1.5 \ crossbeam-utils-0.8.5 \ dirs-1.0.5 \ either-1.6.1 \ field-offset-0.3.4 \ freedesktop_entry_parser-1.2.0 \ funty-1.1.0 \ futures-0.3.17 \ futures-channel-0.3.17 \ futures-core-0.3.17 \ futures-executor-0.3.17 \ futures-io-0.3.17 \ futures-macro-0.3.17 \ futures-sink-0.3.17 \ futures-task-0.3.17 \ futures-util-0.3.17 \ fuzzy-matcher-0.3.7 \ gdk-0.14.3 \ gdk-pixbuf-0.14.0 \ gdk-pixbuf-sys-0.14.0 \ gdk-sys-0.14.0 \ getrandom-0.1.16 \ gio-0.14.8 \ gio-sys-0.14.0 \ glib-0.14.8 \ glib-macros-0.14.1 \ glib-sys-0.14.0 \ gobject-sys-0.14.0 \ gtk-0.14.3 \ gtk-layer-shell-0.2.2 \ gtk-layer-shell-sys-0.2.3 \ gtk-sys-0.14.0 \ gtk3-macros-0.14.0 \ heck-0.3.3 \ itertools-0.8.2 \ itertools-0.10.1 \ lazy_static-1.4.0 \ lexical-core-0.7.6 \ libc-0.2.103 \ locale-types-0.4.0 \ memchr-2.4.1 \ memoffset-0.6.4 \ nom-6.1.2 \ once_cell-1.8.0 \ osstrtools-0.2.2 \ pango-0.14.8 \ pango-sys-0.14.0 \ pest-2.1.3 \ pin-project-lite-0.2.7 \ pin-utils-0.1.0 \ pkg-config-0.3.20 \ proc-macro-crate-1.1.0 \ proc-macro-error-1.0.4 \ proc-macro-error-attr-1.0.4 \ proc-macro-hack-0.5.19 \ proc-macro-nested-0.1.7 \ proc-macro2-1.0.29 \ quote-1.0.10 \ radium-0.5.3 \ redox_syscall-0.1.57 \ redox_users-0.3.5 \ regex-1.5.4 \ regex-syntax-0.6.25 \ rust-argon2-0.8.3 \ rustc_version-0.3.3 \ ryu-1.0.5 \ semver-0.11.0 \ semver-parser-0.10.2 \ serde-1.0.130 \ serde_derive-1.0.130 \ slab-0.4.4 \ smallvec-1.7.0 \ static_assertions-1.1.0 \ strum-0.21.0 \ strum_macros-0.21.1 \ syn-1.0.80 \ system-deps-3.2.0 \ tap-1.0.1 \ thiserror-1.0.30 \ thiserror-impl-1.0.30 \ thread_local-1.1.3 \ toml-0.5.8 \ ucd-trie-0.1.3 \ unicode-segmentation-1.8.0 \ unicode-xid-0.2.2 \ version-compare-0.0.11 \ version_check-0.9.3 \ wasi-0.9.0+wasi-snapshot-preview1 \ winapi-0.3.9 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-x86_64-pc-windows-gnu-0.4.0 \ wyz-0.2.0 \ xdg-2.3.0 post-patch: # Respect PREFIX for system config @${REINPLACE_CMD} -e 's,/usr/share,${DATADIR:H},' \ -e 's,/etc,${PREFIX}&,' \ ${WRKSRC}/cargo-crates/xdg-*/src/lib.rs .include diff --git a/x11/squeekboard/Makefile b/x11/squeekboard/Makefile index 15add6efbae8..0f31d9cc3ce7 100644 --- a/x11/squeekboard/Makefile +++ b/x11/squeekboard/Makefile @@ -1,112 +1,112 @@ PORTNAME= squeekboard DISTVERSIONPREFIX= v DISTVERSION= 1.17.1 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= x11 wayland MAINTAINER= jbeich@FreeBSD.org COMMENT= On-screen keyboard for Wayland LICENSE= GPLv3 LICENSE_FILE= ${WRKSRC}/COPYING BROKEN_FreeBSD_12_powerpc64= fails to compile: rs.e2mg9us3-cgu.14:(.text.imservice_handle_commit_state+0x228): undefined reference to 'eekboard_context_service_show_keyboard' BROKEN_FreeBSD_13_powerpc64= fails to link: ld: error: undefined symbol: eekboard_context_service_get_overlay BUILD_DEPENDS= wayland-protocols>=1.12:graphics/wayland-protocols LIB_DEPENDS= libfeedback-0.0.so:accessibility/feedbackd \ libwayland-client.so:graphics/wayland \ libcroco-0.6.so:textproc/libcroco \ libxkbcommon.so:x11/libxkbcommon RUN_DEPENDS= gsettings-desktop-schemas>0:devel/gsettings-desktop-schemas USES= cargo compiler:c11 gettext-tools gnome meson pkgconfig python:build shebangfix USE_GITLAB= yes USE_GNOME= cairo gdkpixbuf2 gnomedesktop3 gtk30 GL_SITE= https://gitlab.gnome.org GL_ACCOUNT= World/Phosh GL_COMMIT= 2faa98d85f1142383ec8ad1487616c1a7ad1882f SHEBANG_FILES= tools/entry.py MAKE_ENV= ${CARGO_ENV} MESON_ARGS= -Dstrict=false MESON_ARGS+= -Donline=false # XXX Cargo.lock PLIST_FILES= bin/${PORTNAME} \ bin/${PORTNAME}-entry \ bin/${PORTNAME}-test-layout \ share/applications/sm.puri.Squeekboard.desktop \ share/locale/ca/LC_MESSAGES/${PORTNAME}.mo \ share/locale/de/LC_MESSAGES/${PORTNAME}.mo \ share/locale/fa/LC_MESSAGES/${PORTNAME}.mo \ share/locale/fi/LC_MESSAGES/${PORTNAME}.mo \ share/locale/fur/LC_MESSAGES/${PORTNAME}.mo \ share/locale/gl/LC_MESSAGES/${PORTNAME}.mo \ share/locale/he/LC_MESSAGES/${PORTNAME}.mo \ share/locale/nl/LC_MESSAGES/${PORTNAME}.mo \ share/locale/pt_BR/LC_MESSAGES/${PORTNAME}.mo \ share/locale/ro/LC_MESSAGES/${PORTNAME}.mo \ share/locale/sl/LC_MESSAGES/${PORTNAME}.mo \ share/locale/sv/LC_MESSAGES/${PORTNAME}.mo \ share/locale/uk/LC_MESSAGES/${PORTNAME}.mo \ ${NULL} CARGO_CRATES= atk-0.7.0 \ atk-sys-0.9.1 \ autocfg-1.1.0 \ bitflags-1.2.1 \ cairo-rs-0.7.1 \ cairo-sys-rs-0.9.2 \ cc-1.0.73 \ clap-2.33.4 \ fragile-0.3.0 \ gdk-0.11.0 \ gdk-pixbuf-0.7.0 \ gdk-pixbuf-sys-0.9.1 \ gdk-sys-0.9.1 \ gio-0.7.0 \ gio-sys-0.9.1 \ glib-0.8.2 \ glib-sys-0.9.1 \ gobject-sys-0.9.1 \ gtk-0.7.0 \ gtk-sys-0.9.2 \ hashbrown-0.11.2 \ indexmap-1.8.0 \ lazy_static-1.4.0 \ libc-0.2.119 \ linked-hash-map-0.5.4 \ maplit-1.0.2 \ memmap-0.7.0 \ pango-0.7.0 \ pango-sys-0.9.1 \ pkg-config-0.3.24 \ proc-macro2-1.0.36 \ quote-1.0.15 \ ryu-1.0.9 \ serde-1.0.136 \ serde_derive-1.0.136 \ serde_yaml-0.8.23 \ syn-1.0.86 \ textwrap-0.11.0 \ unicode-width-0.1.9 \ unicode-xid-0.2.2 \ winapi-0.3.9 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-x86_64-pc-windows-gnu-0.4.0 \ xkbcommon-0.4.0 \ yaml-rust-0.4.5 CARGO_BUILD= no CARGO_INSTALL= no CARGO_TEST= no TARGET_ORDER_OVERRIDE= 750:cargo-configure CARGO_CARGOTOML= ${BUILD_WRKSRC}/Cargo.toml post-patch: # Make each cargo subcommand very verbose @${REINPLACE_CMD} -e '/^cargo/s/"$$@"/--verbose --verbose &/' \ ${WRKSRC}/cargo.sh post-configure: # Provide preprocessed Cargo.toml for USES=cargo @${DO_MAKE_BUILD} -C ${BUILD_WRKSRC} Cargo.toml .include diff --git a/x11/swayr/Makefile b/x11/swayr/Makefile index b274b2677765..91a81f7e5228 100644 --- a/x11/swayr/Makefile +++ b/x11/swayr/Makefile @@ -1,124 +1,125 @@ PORTNAME= swayr DISTVERSIONPREFIX= ${PORTNAME}- DISTVERSION= 0.20.1 +PORTREVISION= 1 CATEGORIES= x11 MASTER_SITES= https://git.sr.ht/~tsdh/${PORTNAME}/archive/${DISTVERSIONFULL}${EXTRACT_SUFX}?dummy=/ # XXX Teach USES=cargo to not override default DISTFILES DISTFILES= ${DISTNAME}${EXTRACT_SUFX} MAINTAINER= jbeich@FreeBSD.org COMMENT= Urgent-first/LRU window switcher for sway LICENSE= GPLv3+ LICENSE_FILE= ${WRKSRC:H}/LICENSE USES= cargo WRKSRC_SUBDIR= ${PORTNAME} PLIST_FILES= bin/${PORTNAME} \ bin/${PORTNAME}d CARGO_CRATES= aho-corasick-0.7.18 \ atty-0.2.14 \ autocfg-1.1.0 \ battery-0.7.8 \ bitflags-1.3.2 \ bumpalo-3.10.0 \ cc-1.0.73 \ cfg-if-1.0.0 \ chrono-0.4.20 \ clap-3.2.16 \ clap_derive-3.2.15 \ clap_lex-0.2.4 \ core-foundation-0.7.0 \ core-foundation-sys-0.7.0 \ core-foundation-sys-0.8.3 \ crossbeam-channel-0.5.6 \ crossbeam-deque-0.8.2 \ crossbeam-epoch-0.9.10 \ crossbeam-utils-0.8.11 \ directories-4.0.1 \ dirs-sys-0.3.7 \ either-1.7.0 \ env_logger-0.9.0 \ getrandom-0.2.7 \ hashbrown-0.12.3 \ heck-0.4.0 \ hermit-abi-0.1.19 \ humantime-2.1.0 \ indexmap-1.9.1 \ itoa-1.0.3 \ js-sys-0.3.59 \ lazy_static-1.4.0 \ lazycell-1.3.0 \ libc-0.2.127 \ log-0.4.17 \ mach-0.3.2 \ memchr-2.5.0 \ memoffset-0.6.5 \ nix-0.19.1 \ ntapi-0.3.7 \ num-integer-0.1.45 \ num-traits-0.2.15 \ num_cpus-1.13.1 \ once_cell-1.13.0 \ os_str_bytes-6.2.0 \ peg-0.8.0 \ peg-macros-0.8.0 \ peg-runtime-0.8.0 \ ppv-lite86-0.2.16 \ proc-macro-error-1.0.4 \ proc-macro-error-attr-1.0.4 \ proc-macro2-1.0.43 \ quote-1.0.21 \ rand-0.8.5 \ rand_chacha-0.3.1 \ rand_core-0.6.3 \ rayon-1.5.3 \ rayon-core-1.9.3 \ redox_syscall-0.2.16 \ redox_users-0.4.3 \ regex-1.6.0 \ regex-syntax-0.6.27 \ rt-format-0.3.1 \ ryu-1.0.11 \ scopeguard-1.1.0 \ serde-1.0.143 \ serde_derive-1.0.143 \ serde_json-1.0.83 \ strsim-0.10.0 \ swaybar-types-3.0.0 \ swayipc-3.0.0 \ swayipc-types-1.1.0 \ syn-1.0.99 \ sysinfo-0.25.1 \ termcolor-1.1.3 \ textwrap-0.15.0 \ thiserror-1.0.32 \ thiserror-impl-1.0.32 \ time-0.1.44 \ toml-0.5.9 \ typenum-1.15.0 \ unicode-ident-1.0.3 \ uom-0.30.0 \ version_check-0.9.4 \ wasi-0.10.0+wasi-snapshot-preview1 \ wasi-0.11.0+wasi-snapshot-preview1 \ wasm-bindgen-0.2.82 \ wasm-bindgen-backend-0.2.82 \ wasm-bindgen-macro-0.2.82 \ wasm-bindgen-macro-support-0.2.82 \ wasm-bindgen-shared-0.2.82 \ winapi-0.3.9 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-util-0.1.5 \ winapi-x86_64-pc-windows-gnu-0.4.0 post-patch: # Respect PREFIX for config and icons @${REINPLACE_CMD} -e 's,/usr/share,${DATADIR:H},' \ -e 's,/etc,${PREFIX}&,' \ ${WRKSRC}/src/config.rs \ ${WRKSRC}/src/shared/cfg.rs \ ${WRKSRC}/src/util.rs .include diff --git a/x11/wezterm/Makefile b/x11/wezterm/Makefile index 4e90ca038c21..fc74a12f17ac 100644 --- a/x11/wezterm/Makefile +++ b/x11/wezterm/Makefile @@ -1,606 +1,607 @@ PORTNAME= wezterm DISTVERSION= 20220807-113146-c2fee766 +PORTREVISION= 1 CATEGORIES= x11 wayland MAINTAINER= jbeich@FreeBSD.org COMMENT= GPU-accelerated terminal emulator and multiplexer LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.md LIB_DEPENDS= libwayland-egl.so:graphics/wayland \ libssh2.so:security/libssh2 \ libfontconfig.so:x11-fonts/fontconfig \ libxkbcommon-x11.so:x11/libxkbcommon \ libxcb-util.so:x11/xcb-util \ libxcb-image.so:x11/xcb-util-image USES= cargo ssl xorg USE_GITHUB= yes USE_GITLAB= nodefault USE_XORG= x11 xcb GH_ACCOUNT= wez GH_TUPLE= harfbuzz:harfbuzz:5.1.0:harfbuzz/deps/harfbuzz/harfbuzz \ glennrp:libpng:v1.6.36-805-g8439534da:libpng/deps/freetype/libpng \ madler:zlib:v1.2.11:zlib/deps/freetype/zlib \ fcitx:xcb-imdkit:1.0.3:xcb_imdkit/../xcb-imdkit-rs-ede7c71b85fe2537efef6cf999a45690316211cf/deps/xcb-imdkit \ freetype:freetype:VER-2-10-2-605-g3f83daeec:freetype/deps/freetype/freetype2 GL_TUPLE= wez1:libssh-mirror:56e1b0a43a7601d3b2989299262a09db5d81eea0:libssh/../libssh-rs-d36e5648274063c187968fd5ce0b1a7aa350a025/libssh-rs-sys/vendored PLIST_FILES= bin/strip-ansi-escapes \ bin/${PORTNAME} \ bin/${PORTNAME}-gui \ bin/${PORTNAME}-mux-server \ etc/profile.d/${PORTNAME}.sh \ share/applications/org.wezfurlong.wezterm.desktop \ share/icons/hicolor/128x128/apps/org.wezfurlong.wezterm.png \ share/icons/hicolor/scalable/apps/org.wezfurlong.wezterm.svg \ share/metainfo/org.wezfurlong.wezterm.appdata.xml \ share/nautilus-python/extensions/${PORTNAME}-nautilus.py \ ${NULL} .if exists(/usr/bin/tic) PKGMESSAGE= ${NONEXISTENT} PLIST_FILES+= share/site-terminfo/${PORTNAME:C,^.,&/&,} .endif CARGO_CRATES= addr2line-0.17.0 \ adler-1.0.2 \ adler32-1.2.0 \ ahash-0.7.6 \ aho-corasick-0.7.18 \ anyhow-1.0.58 \ arrayref-0.3.6 \ arrayvec-0.5.2 \ assert_fs-1.0.7 \ async-broadcast-0.4.1 \ async-channel-1.6.1 \ async-executor-1.4.1 \ async-fs-1.5.0 \ async-global-executor-2.2.0 \ async-io-1.7.0 \ async-lock-2.5.0 \ async-net-1.6.1 \ async-process-1.4.0 \ async-recursion-0.3.2 \ async-std-1.12.0 \ async-task-4.3.0 \ async-trait-0.1.56 \ atomic-waker-1.0.0 \ atty-0.2.14 \ autocfg-1.1.0 \ backtrace-0.3.66 \ base64-0.13.0 \ benchmarking-0.4.11 \ bit_field-0.10.1 \ bitflags-1.3.2 \ block-0.1.6 \ block-buffer-0.9.0 \ block-buffer-0.10.2 \ blocking-1.2.0 \ bstr-0.1.4 \ bstr-0.2.17 \ bumpalo-3.10.0 \ bytemuck-1.11.0 \ byteorder-1.4.3 \ bytes-1.2.1 \ cache-padded-1.2.0 \ camino-1.0.9 \ cassowary-0.3.0 \ cast-0.3.0 \ cc-1.0.73 \ cfg-if-0.1.10 \ cfg-if-1.0.0 \ cgl-0.3.2 \ chrono-0.4.19 \ clap-2.34.0 \ clap-3.2.16 \ clap_complete-3.2.3 \ clap_derive-3.2.15 \ clap_lex-0.2.4 \ clipboard-win-2.2.0 \ clipboard_macos-0.1.0 \ cocoa-0.20.2 \ color_quant-1.1.0 \ colored-1.9.3 \ colorgrad-0.6.1 \ concurrent-queue-1.2.4 \ core-foundation-0.7.0 \ core-foundation-0.9.3 \ core-foundation-sys-0.7.0 \ core-foundation-sys-0.8.3 \ core-graphics-0.19.2 \ core-graphics-0.22.3 \ core-graphics-types-0.1.1 \ core-text-19.2.0 \ cpufeatures-0.2.2 \ crc32fast-1.3.2 \ criterion-0.3.6 \ criterion-plot-0.4.5 \ crossbeam-0.8.2 \ crossbeam-channel-0.5.6 \ crossbeam-deque-0.8.2 \ crossbeam-epoch-0.9.10 \ crossbeam-queue-0.3.6 \ crossbeam-utils-0.8.11 \ crypto-common-0.1.6 \ csscolorparser-0.6.2 \ csv-1.1.6 \ csv-core-0.1.10 \ ctor-0.1.23 \ cty-0.2.2 \ dashmap-5.3.4 \ data-encoding-2.3.2 \ deflate-1.0.0 \ deltae-0.3.0 \ derivative-2.2.0 \ diff-0.1.13 \ difflib-0.4.0 \ digest-0.9.0 \ digest-0.10.3 \ dirs-2.0.2 \ dirs-4.0.0 \ dirs-next-2.0.0 \ dirs-sys-0.3.7 \ dirs-sys-next-0.1.2 \ dlib-0.5.0 \ doc-comment-0.3.3 \ downcast-rs-1.2.0 \ dwrote-0.11.0 \ either-1.7.0 \ embed-resource-1.7.3 \ encoding_rs-0.8.31 \ enum-display-derive-0.1.1 \ enumflags2-0.7.5 \ enumflags2_derive-0.7.4 \ env_logger-0.9.0 \ euclid-0.22.7 \ event-listener-2.5.3 \ exr-1.4.2 \ fallible-iterator-0.2.0 \ fallible-streaming-iterator-0.1.9 \ fastrand-1.8.0 \ filenamegen-0.2.4 \ filetime-0.2.17 \ fixedbitset-0.4.2 \ flate2-1.0.24 \ float-cmp-0.9.0 \ flume-0.10.14 \ fnv-1.0.7 \ foreign-types-0.3.2 \ foreign-types-shared-0.1.1 \ form_urlencoded-1.0.1 \ fsevent-sys-4.1.0 \ futures-0.3.21 \ futures-channel-0.3.21 \ futures-core-0.3.21 \ futures-executor-0.3.21 \ futures-io-0.3.21 \ futures-lite-1.12.0 \ futures-macro-0.3.21 \ futures-sink-0.3.21 \ futures-task-0.3.21 \ futures-timer-3.0.2 \ futures-util-0.3.21 \ fuzzy-matcher-0.3.7 \ generic-array-0.14.5 \ getopts-0.2.21 \ getrandom-0.1.16 \ getrandom-0.2.7 \ gif-0.11.4 \ gimli-0.26.2 \ git2-0.14.4 \ gl_generator-0.14.0 \ glium-0.31.0 \ globset-0.4.9 \ globwalk-0.8.1 \ gloo-timers-0.2.4 \ governor-0.4.2 \ guillotiere-0.6.2 \ h2-0.3.13 \ half-1.8.2 \ hashbrown-0.11.2 \ hashbrown-0.12.3 \ hashlink-0.7.0 \ hdrhistogram-7.5.0 \ heck-0.4.0 \ hermit-abi-0.1.19 \ hex-0.4.3 \ hostname-0.3.1 \ http-0.2.8 \ http-body-0.4.5 \ http_req-0.8.1 \ httparse-1.7.1 \ httpdate-1.0.2 \ humantime-2.1.0 \ hyper-0.14.20 \ hyper-tls-0.5.0 \ idna-0.2.3 \ ignore-0.4.18 \ image-0.24.3 \ indexmap-1.9.1 \ inflate-0.4.5 \ inotify-0.9.6 \ inotify-sys-0.1.5 \ instant-0.1.12 \ ioctl-rs-0.1.6 \ ipnet-2.5.0 \ itertools-0.10.3 \ itoa-0.4.8 \ itoa-1.0.2 \ jobserver-0.1.24 \ jpeg-decoder-0.2.6 \ js-sys-0.3.59 \ k9-0.11.5 \ khronos_api-3.1.0 \ kqueue-1.0.6 \ kqueue-sys-1.0.3 \ kv-log-macro-1.0.7 \ lab-0.11.0 \ lazy_static-1.4.0 \ lazycell-1.3.0 \ leb128-0.2.5 \ lebe-0.5.1 \ libc-0.2.126 \ libflate-1.2.0 \ libflate_lz77-1.1.0 \ libgit2-sys-0.13.4+1.4.2 \ libloading-0.6.7 \ libloading-0.7.3 \ libsqlite3-sys-0.24.2 \ libssh2-sys-0.2.23 \ libz-sys-1.1.8 \ line-wrap-0.1.1 \ line_drawing-0.8.1 \ linked-hash-map-0.5.6 \ lock_api-0.4.7 \ log-0.4.17 \ lru-0.7.8 \ lua-src-544.0.1 \ luajit-src-210.4.0+resty124ff8d \ mach-0.3.2 \ malloc_buf-0.0.6 \ maplit-1.0.2 \ match_cfg-0.1.0 \ matches-0.1.9 \ memchr-2.5.0 \ memmap2-0.2.3 \ memmap2-0.3.1 \ memmap2-0.5.5 \ memmem-0.1.1 \ memoffset-0.6.5 \ metrics-0.17.1 \ metrics-macros-0.4.1 \ mime-0.3.16 \ minimal-lexical-0.2.1 \ miniz_oxide-0.4.4 \ miniz_oxide-0.5.3 \ mio-0.8.4 \ names-0.12.0 \ nanorand-0.7.0 \ native-tls-0.2.10 \ nix-0.22.3 \ nix-0.23.1 \ nix-0.24.2 \ no-std-compat-0.4.1 \ nom-5.1.2 \ nom-7.1.1 \ nonzero_ext-0.3.0 \ normalize-line-endings-0.3.0 \ notify-5.0.0-pre.15 \ ntapi-0.3.7 \ num-0.3.1 \ num-bigint-0.3.3 \ num-complex-0.3.1 \ num-derive-0.3.3 \ num-integer-0.1.45 \ num-iter-0.1.43 \ num-rational-0.3.2 \ num-rational-0.4.1 \ num-traits-0.2.15 \ num_cpus-1.13.1 \ num_threads-0.1.6 \ objc-0.2.7 \ objc-foundation-0.1.1 \ objc_id-0.1.1 \ object-0.29.0 \ once_cell-1.13.0 \ oorandom-11.1.3 \ opaque-debug-0.3.0 \ open-3.0.2 \ openssl-0.10.38 \ openssl-probe-0.1.5 \ openssl-src-300.0.9+3.0.5 \ openssl-sys-0.9.71 \ ordered-float-3.0.0 \ ordered-stream-0.0.1 \ os_str_bytes-6.2.0 \ parking-2.0.0 \ parking_lot-0.11.2 \ parking_lot-0.12.1 \ parking_lot_core-0.8.5 \ parking_lot_core-0.9.3 \ pathdiff-0.2.1 \ pem-1.1.0 \ percent-encoding-2.1.0 \ pest-2.2.1 \ pest_derive-2.2.1 \ pest_generator-2.2.1 \ pest_meta-2.2.1 \ phf-0.8.0 \ phf-0.10.1 \ phf-0.11.0 \ phf_codegen-0.8.0 \ phf_generator-0.8.0 \ phf_generator-0.11.0 \ phf_macros-0.11.0 \ phf_shared-0.8.0 \ phf_shared-0.10.0 \ phf_shared-0.11.0 \ pin-project-1.0.11 \ pin-project-internal-1.0.11 \ pin-project-lite-0.2.9 \ pin-utils-0.1.0 \ pkg-config-0.3.25 \ plist-1.3.1 \ plotters-0.3.2 \ plotters-backend-0.3.4 \ plotters-svg-0.3.2 \ png-0.17.5 \ polling-2.2.0 \ ppv-lite86-0.2.16 \ predicates-2.1.1 \ predicates-core-1.0.3 \ predicates-tree-1.0.5 \ proc-macro-crate-1.1.3 \ proc-macro-error-1.0.4 \ proc-macro-error-attr-1.0.4 \ proc-macro2-1.0.42 \ pulldown-cmark-0.9.2 \ pure-rust-locales-0.5.6 \ quanta-0.9.3 \ quick-xml-0.22.0 \ quote-1.0.20 \ rand-0.7.3 \ rand-0.8.5 \ rand_chacha-0.2.2 \ rand_chacha-0.3.1 \ rand_core-0.5.1 \ rand_core-0.6.3 \ rand_hc-0.2.0 \ rand_pcg-0.2.1 \ raw-cpuid-10.3.0 \ raw-window-handle-0.3.4 \ raw-window-handle-0.4.3 \ rayon-1.5.3 \ rayon-core-1.9.3 \ rcgen-0.9.3 \ redox_syscall-0.2.16 \ redox_users-0.4.3 \ regex-1.6.0 \ regex-automata-0.1.10 \ regex-syntax-0.6.27 \ remove_dir_all-0.5.3 \ reqwest-0.11.11 \ resize-0.5.5 \ rgb-0.8.33 \ ring-0.16.20 \ rle-decode-fast-1.0.3 \ rstest-0.15.0 \ rstest_macros-0.14.0 \ rusqlite-0.27.0 \ rustc-demangle-0.1.21 \ rustc-hash-1.1.0 \ rustc_version-0.4.0 \ ryu-1.0.10 \ safe_arch-0.5.2 \ safemem-0.3.3 \ same-file-1.0.6 \ schannel-0.1.20 \ scoped-tls-1.0.0 \ scoped_threadpool-0.1.9 \ scopeguard-1.1.0 \ security-framework-2.6.1 \ security-framework-sys-2.6.1 \ semver-0.11.0 \ semver-1.0.12 \ semver-parser-0.10.2 \ serde-1.0.140 \ serde_cbor-0.11.2 \ serde_derive-1.0.140 \ serde_json-1.0.82 \ serde_repr-0.1.8 \ serde_urlencoded-0.7.1 \ serde_yaml-0.9.2 \ serial-0.4.0 \ serial-core-0.4.0 \ serial-unix-0.4.0 \ serial-windows-0.4.0 \ sha-1-0.10.0 \ sha1-0.6.1 \ sha1_smol-1.0.0 \ sha2-0.9.9 \ shared_library-0.1.9 \ shell-words-1.1.0 \ shlex-1.1.0 \ signal-hook-0.1.17 \ signal-hook-0.3.14 \ signal-hook-registry-1.4.0 \ siphasher-0.3.10 \ slab-0.4.7 \ smallvec-1.9.0 \ smawk-0.3.1 \ smithay-client-toolkit-0.15.4 \ smol-1.2.5 \ smol-potat-1.1.2 \ smol-potat-macro-0.6.0 \ socket2-0.4.4 \ spa-0.3.0 \ spin-0.5.2 \ spin-0.9.4 \ sqlite-cache-0.1.3 \ ssh2-0.9.3 \ starship-battery-0.7.9 \ static_assertions-1.1.0 \ strsim-0.10.0 \ svg_fmt-0.4.1 \ syn-1.0.98 \ takeable-option-0.5.0 \ tar-0.4.38 \ tempfile-3.3.0 \ term_size-0.3.2 \ termcolor-1.1.3 \ terminfo-0.7.3 \ termios-0.2.2 \ termios-0.3.3 \ termtree-0.2.4 \ textwrap-0.11.0 \ textwrap-0.15.0 \ thiserror-1.0.31 \ thiserror-impl-1.0.31 \ thread_local-1.1.4 \ threadpool-1.8.1 \ tiff-0.7.3 \ time-0.1.43 \ time-0.3.11 \ tiny-skia-0.7.0 \ tiny-skia-path-0.7.0 \ tinytemplate-1.2.1 \ tinyvec-1.6.0 \ tinyvec_macros-0.1.0 \ tokio-1.20.1 \ tokio-macros-1.8.0 \ tokio-native-tls-0.3.0 \ tokio-util-0.7.3 \ toml-0.5.8 \ tower-service-0.3.2 \ tracing-0.1.36 \ tracing-attributes-0.1.22 \ tracing-core-0.1.29 \ try-lock-0.2.3 \ typenum-1.15.0 \ ucd-trie-0.1.4 \ uds_windows-1.0.2 \ unicase-2.6.0 \ unicode-bidi-0.3.8 \ unicode-ident-1.0.2 \ unicode-linebreak-0.1.2 \ unicode-normalization-0.1.21 \ unicode-segmentation-1.9.0 \ unicode-width-0.1.9 \ unsafe-libyaml-0.2.1 \ untrusted-0.7.1 \ uom-0.30.0 \ url-2.2.2 \ utf8parse-0.2.0 \ value-bag-1.0.0-alpha.9 \ varbincode-0.1.0 \ vcpkg-0.2.15 \ version_check-0.9.4 \ vswhom-0.1.0 \ vswhom-sys-0.1.1 \ waker-fn-1.1.0 \ walkdir-2.3.2 \ want-0.3.0 \ wasi-0.9.0+wasi-snapshot-preview1 \ wasi-0.10.2+wasi-snapshot-preview1 \ wasi-0.11.0+wasi-snapshot-preview1 \ wasm-bindgen-0.2.82 \ wasm-bindgen-backend-0.2.82 \ wasm-bindgen-futures-0.4.32 \ wasm-bindgen-macro-0.2.82 \ wasm-bindgen-macro-support-0.2.82 \ wasm-bindgen-shared-0.2.82 \ wayland-client-0.29.4 \ wayland-commons-0.29.4 \ wayland-cursor-0.29.4 \ wayland-egl-0.29.4 \ wayland-protocols-0.29.4 \ wayland-scanner-0.29.4 \ wayland-sys-0.29.4 \ web-sys-0.3.59 \ weezl-0.1.7 \ wepoll-ffi-0.1.2 \ whoami-1.2.1 \ winapi-0.3.9 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-util-0.1.5 \ winapi-x86_64-pc-windows-gnu-0.4.0 \ windows-0.33.0 \ windows-sys-0.36.1 \ windows_aarch64_msvc-0.33.0 \ windows_aarch64_msvc-0.36.1 \ windows_i686_gnu-0.33.0 \ windows_i686_gnu-0.36.1 \ windows_i686_msvc-0.33.0 \ windows_i686_msvc-0.36.1 \ windows_x86_64_gnu-0.33.0 \ windows_x86_64_gnu-0.36.1 \ windows_x86_64_msvc-0.33.0 \ windows_x86_64_msvc-0.36.1 \ winreg-0.10.1 \ wio-0.2.2 \ x11-2.19.1 \ xattr-0.2.3 \ xcursor-0.3.4 \ xml-rs-0.8.4 \ yaml-rust-0.4.5 \ yasna-0.5.0 \ zbus-2.3.2 \ zbus_macros-2.3.2 \ zbus_names-2.2.0 \ zstd-0.11.2+zstd.1.5.2 \ zstd-safe-5.0.2+zstd.1.5.2 \ zstd-sys-2.0.1+zstd.1.5.2 \ zvariant-3.6.0 \ zvariant_derive-3.6.0 \ xcb-imdkit@git+https://github.com/wez/xcb-imdkit-rs.git?rev=ede7c71b85fe2537efef6cf999a45690316211cf\#ede7c71b85fe2537efef6cf999a45690316211cf \ xcb@git+https://github.com/wez/rust-xcb?branch=ffi\#990a0212230acea2baf6f658e68e2f44bf7a8a1f \ mlua@git+https://github.com/khvzak/mlua?branch=master\#ab029b087d79e876e5e371be63c3cd96c734eeb5 \ xkbcommon@git+https://github.com/wez/xkbcommon-rs.git?branch=key-by-name\#546ba7dbf2ace214b9947fc4646a0f4afd70cb0a \ libssh-rs,libssh-rs-sys@git+https://github.com/wez/libssh-rs.git\#d36e5648274063c187968fd5ce0b1a7aa350a025 # XXX https://github.com/rust-lang/cargo/issues/4101 CARGO_INSTALL_PATH= ${PLIST_FILES:Mbin/*:T} OPTIONS_DEFINE= DOCS DOCS_USES= python:3.4+,build DOCS_BUILD_DEPENDS= mdbook:textproc/mdbook \ mdbook-linkcheck:textproc/mdbook-linkcheck \ mdbook-mermaid:textproc/mdbook-mermaid PORTDOCS= html post-patch: # Extract (snapshot) version from the port instead of .tag file @${ECHO_CMD} '${DISTVERSIONFULL}' >${WRKSRC}/.tag # Respect LOCALBASE for cursors @${REINPLACE_CMD} 's,/usr/share,${LOCALBASE}/share,' \ ${WRKSRC}/window/src/os/x11/cursor.rs do-build-DOCS-on: # Build HTML documentation similar to ci/build-docs.sh (cd ${WRKSRC} && ${PYTHON_CMD} ci/generate-docs.py) mdbook-mermaid install ${WRKSRC}/docs mdbook build ${WRKSRC}/docs ${CP} ${WRKSRC}/assets/icon/terminal.png \ ${WRKSRC}/gh_pages/html/favicon.png ${CP} ${WRKSRC}/assets/icon/${PORTNAME}-icon.svg \ ${WRKSRC}/gh_pages/html/favicon.svg do-install-DOCS-on: (cd ${WRKSRC}/gh_pages && ${COPYTREE_SHARE} \ "${PORTDOCS:Mhtml}" ${STAGEDIR}${DOCSDIR}) post-install: # Install assets similar to ci/deploy.sh .for f in ${PORTNAME}.desktop ${PORTNAME}.appdata.xml ${PORTNAME}-nautilus.py \ icon/terminal.png icon/${PORTNAME}-icon.svg shell-integration/${PORTNAME}.sh ${MKDIR} ${STAGEDIR}${PREFIX}/${PLIST_FILES:M*.${f:E}:H} ${INSTALL_DATA} ${WRKSRC}/assets/${f:R}.${f:E} \ ${STAGEDIR}${PREFIX}/${PLIST_FILES:M*.${f:E}} .endfor .if exists(/usr/bin/tic) tic -x -o ${STAGEDIR}${PREFIX}/${PLIST_FILES:M*terminfo*:[1]:H:H} \ ${WRKSRC}/termwiz/data/${PORTNAME}.terminfo .endif .include diff --git a/x11/wmfocus/Makefile b/x11/wmfocus/Makefile index 6bf63cfd979b..605e75ab6b59 100644 --- a/x11/wmfocus/Makefile +++ b/x11/wmfocus/Makefile @@ -1,127 +1,127 @@ PORTNAME= wmfocus DISTVERSIONPREFIX= v DISTVERSION= 1.2.0 -PORTREVISION= 9 +PORTREVISION= 10 CATEGORIES= x11 PATCH_SITES= https://github.com/${GH_ACCOUNT}/${GH_PROJECT}/commit/ PATCHFILES+= c646aa39614b.patch:-p1 # https://github.com/svenstaro/wmfocus/pull/72 MAINTAINER= jbeich@FreeBSD.org COMMENT= Visually focus windows by label LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE BUILD_DEPENDS= libxkbcommon>0:x11/libxkbcommon LIB_DEPENDS= libfontconfig.so:x11-fonts/fontconfig \ libxcb-keysyms.so:x11/xcb-util-keysyms USES= cargo gnome python:3.4+,build xorg USE_GITHUB= yes USE_GNOME= cairo USE_XORG= x11 xcb GH_ACCOUNT= svenstaro CARGO_FEATURES= i3 PLIST_FILES= bin/${PORTNAME} CARGO_CRATES= aho-corasick-0.7.18 \ ansi_term-0.11.0 \ anyhow-1.0.42 \ atty-0.2.14 \ autocfg-1.0.1 \ bitflags-1.2.1 \ cairo-rs-0.14.1 \ cairo-sys-rs-0.14.0 \ cc-1.0.68 \ cfg-expr-0.7.4 \ cfg-if-1.0.0 \ clap-2.33.3 \ cmake-0.1.45 \ core-foundation-0.9.1 \ core-foundation-sys-0.8.2 \ core-graphics-0.22.2 \ core-graphics-types-0.1.1 \ core-text-19.2.0 \ css-color-parser-0.1.2 \ either-1.6.1 \ env_logger-0.7.1 \ expat-sys-2.1.6 \ font-loader-0.11.0 \ foreign-types-0.3.2 \ foreign-types-shared-0.1.1 \ freetype-sys-0.13.1 \ futures-channel-0.3.15 \ futures-core-0.3.15 \ futures-executor-0.3.15 \ futures-task-0.3.15 \ futures-util-0.3.15 \ glib-0.14.2 \ glib-macros-0.14.1 \ glib-sys-0.14.0 \ gobject-sys-0.14.0 \ heck-0.3.3 \ hermit-abi-0.1.19 \ humantime-1.3.0 \ itertools-0.10.1 \ itoa-0.4.7 \ lazy_static-0.1.16 \ lazy_static-1.4.0 \ libc-0.2.98 \ log-0.4.14 \ memchr-2.4.0 \ once_cell-1.8.0 \ pin-project-lite-0.2.7 \ pin-utils-0.1.0 \ pkg-config-0.3.19 \ pretty_env_logger-0.4.0 \ proc-macro-crate-1.0.0 \ proc-macro-error-1.0.4 \ proc-macro-error-attr-1.0.4 \ proc-macro2-1.0.27 \ quick-error-1.2.3 \ quote-1.0.9 \ regex-1.5.4 \ regex-syntax-0.6.25 \ ryu-1.0.5 \ serde-1.0.126 \ serde_derive-1.0.126 \ serde_json-1.0.64 \ servo-fontconfig-0.5.1 \ servo-fontconfig-sys-5.1.0 \ slab-0.4.3 \ smallvec-1.6.1 \ strsim-0.8.0 \ structopt-0.3.22 \ structopt-derive-0.4.15 \ strum-0.21.0 \ strum_macros-0.21.1 \ syn-1.0.73 \ system-deps-3.1.2 \ termcolor-1.1.2 \ textwrap-0.11.0 \ thiserror-1.0.26 \ thiserror-impl-1.0.26 \ toml-0.5.8 \ unicode-segmentation-1.8.0 \ unicode-width-0.1.8 \ unicode-xid-0.2.2 \ vec_map-0.8.2 \ version-compare-0.0.11 \ version_check-0.9.3 \ winapi-0.3.9 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-util-0.1.5 \ winapi-x86_64-pc-windows-gnu-0.4.0 \ x11-2.18.2 \ xcb-0.9.0 \ xcb-util-0.3.0 \ xkbcommon-0.4.0 \ swayipc,swayipc-types@git+https://github.com/JayceFayne/swayipc-rs\#f6b045f6dff3b8135c74c996cb95a39c874e4939 post-patch: # lang/python3 cannot be used as a dependency @${REINPLACE_CMD} -e 's/"python3"/"${PYTHON_CMD:T}"/' \ ${WRKSRC}/cargo-crates/xcb-*/build.rs .include