*/*: sync with upstream
Taken from: FreeBSD
This commit is contained in:
parent
31b0d3f1d2
commit
5b75658019
437 changed files with 3671 additions and 3224 deletions
|
|
@ -1,12 +1,11 @@
|
|||
PORTNAME= ardour
|
||||
DISTVERSION= 8.4.0
|
||||
PORTREVISION= 1
|
||||
DISTVERSION= 8.6.0
|
||||
CATEGORIES= audio
|
||||
# Official source download is tailored to browsers, downloads from github are
|
||||
# deliberately made empty. Put the badly named distfile into a subdirectory.
|
||||
MASTER_SITES= https://community.ardour.org/download/release/
|
||||
DISTNAME= Ardour-${DISTVERSION}
|
||||
DISTFILES= 562
|
||||
DISTFILES= 574
|
||||
DIST_SUBDIR= ${DISTNAME}
|
||||
|
||||
MAINTAINER= dev@submerge.ch
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1708609514
|
||||
SHA256 (Ardour-8.4.0/562) = 7c64fd95808d94440639698e0f8ece30da8b5efde2777fff55c8bc21404e28cf
|
||||
SIZE (Ardour-8.4.0/562) = 17574218
|
||||
TIMESTAMP = 1713026350
|
||||
SHA256 (Ardour-8.6.0/574) = e19740e980b162ecd22379b735000741609f89c7553796b75f47b75e2f1e0a8e
|
||||
SIZE (Ardour-8.6.0/574) = 17588463
|
||||
|
|
|
|||
|
|
@ -1,11 +0,0 @@
|
|||
--- libs/aaf/aaf/LibCFB.h.orig 2023-12-14 15:52:18 UTC
|
||||
+++ libs/aaf/aaf/LibCFB.h
|
||||
@@ -28,6 +28,8 @@
|
||||
|
||||
#if defined(__linux__)
|
||||
#include <linux/limits.h>
|
||||
+#elif defined(__FreeBSD__)
|
||||
+#include <limits.h>
|
||||
#elif defined(__APPLE__)
|
||||
#include <sys/syslimits.h>
|
||||
#elif defined(_MSC_VER) // MSVC
|
||||
|
|
@ -1,6 +1,6 @@
|
|||
--- libs/aaf/AAFIAudioFiles.c.orig 2023-12-14 16:14:03 UTC
|
||||
+++ libs/aaf/AAFIAudioFiles.c
|
||||
@@ -39,6 +39,9 @@
|
||||
--- libs/aaf/utils.c.orig 2024-04-12 12:56:21 UTC
|
||||
+++ libs/aaf/utils.c
|
||||
@@ -32,6 +32,9 @@
|
||||
#include <arpa/inet.h>
|
||||
#include <mntent.h>
|
||||
#include <unistd.h> /* access() */
|
||||
|
|
@ -1,26 +0,0 @@
|
|||
--- libs/ardour/session.cc.orig 2024-02-21 00:37:39 UTC
|
||||
+++ libs/ardour/session.cc
|
||||
@@ -136,7 +136,10 @@
|
||||
#include "ardour/utils.h"
|
||||
#include "ardour/vca_manager.h"
|
||||
#include "ardour/vca.h"
|
||||
+
|
||||
+#ifdef VST3_SUPPORT
|
||||
#include "ardour/vst3_plugin.h"
|
||||
+#endif // VST3_SUPPORT
|
||||
|
||||
#include "midi++/port.h"
|
||||
#include "midi++/mmc.h"
|
||||
@@ -881,10 +884,12 @@ Session::destroy ()
|
||||
|
||||
_transport_fsm->stop ();
|
||||
|
||||
+#ifdef VST3_SUPPORT
|
||||
/* close VST3 Modules */
|
||||
for (auto const& nfo : PluginManager::instance().vst3_plugin_info()) {
|
||||
std::dynamic_pointer_cast<VST3PluginInfo> (nfo)->m.reset ();
|
||||
}
|
||||
+#endif // VST3_SUPPORT
|
||||
|
||||
DEBUG_TRACE (DEBUG::Destruction, "Session::destroy() done\n");
|
||||
|
||||
|
|
@ -1,9 +1,12 @@
|
|||
PORTNAME= audacity
|
||||
DISTVERSIONPREFIX= Audacity-
|
||||
DISTVERSION= 3.4.2
|
||||
PORTREVISION= 3
|
||||
DISTVERSION= 3.5.0
|
||||
CATEGORIES= audio
|
||||
|
||||
PATCH_SITES= https://github.com/audacity/audacity/commit/
|
||||
# FreeBSD compilation fixes: https://github.com/audacity/audacity/pull/6331
|
||||
PATCHFILES+= 4191cfb8376d19d044cadaf31214182375a9af55.patch:-p1
|
||||
|
||||
MAINTAINER= xxjack12xx@gmail.com
|
||||
COMMENT= GUI editor for digital audio waveforms
|
||||
WWW= https://www.audacityteam.org/
|
||||
|
|
@ -13,18 +16,14 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.txt
|
|||
|
||||
BUILD_DEPENDS= conan:sysutils/conan \
|
||||
rapidjson>0:devel/rapidjson
|
||||
LIB_DEPENDS= libasound.so:audio/alsa-lib \
|
||||
libcurl.so:ftp/curl \
|
||||
libexpat.so:textproc/expat2 \
|
||||
LIB_DEPENDS= libexpat.so:textproc/expat2 \
|
||||
liblilv-0.so:audio/lilv \
|
||||
libmp3lame.so:audio/lame \
|
||||
libmpg123.so:audio/mpg123 \
|
||||
libopenjp2.so:graphics/openjpeg \
|
||||
libopus.so:audio/opus \
|
||||
libopusfile.so:audio/opusfile \
|
||||
libportaudio.so:audio/portaudio \
|
||||
libportmidi.so:audio/portmidi \
|
||||
libpng.so:graphics/png \
|
||||
libserd-0.so:devel/serd \
|
||||
libsndfile.so:audio/libsndfile \
|
||||
libsord-0.so:devel/sord \
|
||||
|
|
@ -32,19 +31,17 @@ LIB_DEPENDS= libasound.so:audio/alsa-lib \
|
|||
libsratom-0.so:audio/sratom \
|
||||
libsqlite3.so:databases/sqlite3 \
|
||||
libsuil-0.so:audio/suil \
|
||||
libturbojpeg.so:graphics/libjpeg-turbo \
|
||||
libwavpack.so:audio/wavpack \
|
||||
libuuid.so:misc/e2fsprogs-libuuid
|
||||
|
||||
USES= cmake compiler:c++20-lang cpe desktop-file-utils gettext \
|
||||
gnome libtool python:build pkgconfig shared-mime-info
|
||||
CPE_VENDOR= audacityteam
|
||||
|
||||
USE_GITHUB= yes
|
||||
USE_GNOME= cairo gdkpixbuf2 gtk30
|
||||
USE_WX= 3.2+
|
||||
CPE_VENDOR= audacityteam
|
||||
WX_COMPS= wx
|
||||
PORTDOCS= README.md
|
||||
|
||||
CMAKE_ARGS= -DAUDACITY_BUILD_LEVEL=2 \
|
||||
-Daudacity_lib_preference:STRING=system \
|
||||
|
|
@ -74,12 +71,17 @@ CMAKE_OFF= audacity_has_audiocom_upload audacity_conan_enabled audacity_conan_fo
|
|||
audacity_has_crashreports audacity_has_networking audacity_has_updates_check audacity_has_url_schemes_support \
|
||||
audacity_has_tests audacity_has_vst3 audacity_perform_codesign audacity_use_pch
|
||||
|
||||
# TODO: fix NLS support properly
|
||||
PLIST_SUB+= NLS=""
|
||||
PORTDOCS= README.md
|
||||
|
||||
OPTIONS_DEFINE= DEBUG DOCS FFMPEG FLAC ID3TAG LADSPA MANUAL \
|
||||
OGG SBSMS SOUNDTOUCH TWOLAME VAMP \
|
||||
VORBIS VST
|
||||
OPTIONS_DEFAULT= FFMPEG FLAC ID3TAG LADSPA OGG SBSMS \
|
||||
SOUNDTOUCH TWOLAME VAMP VORBIS VST
|
||||
OPTIONS_EXCLUDE_i386= SBSMS
|
||||
OPTIONS_SUB= yes
|
||||
|
||||
MANUAL_DESC= Include manual
|
||||
SBSMS_DESC= Use libsbsms for pitch and tempo changing
|
||||
|
|
@ -94,51 +96,47 @@ DOCS_BUILD_DEPENDS= docbook-to-man:textproc/docbook-to-man \
|
|||
docbook2man:textproc/docbook-utils
|
||||
DOCS_LIB_DEPENDS= libharfbuzz.so:print/harfbuzz
|
||||
|
||||
FFMPEG_CMAKE_ON= -Daudacity_use_ffmpeg:STRING=loaded
|
||||
FFMPEG_CMAKE_OFF= -Daudacity_use_ffmpeg:STRING=off
|
||||
FFMPEG_BUILD_DEPENDS= ${LOCALBASE}/libdata/pkgconfig/libavcodec.pc:multimedia/ffmpeg
|
||||
FFMPEG_LIB_DEPENDS= libavcodec.so:multimedia/ffmpeg
|
||||
FFMPEG_CMAKE_ON= -Daudacity_use_ffmpeg:STRING=loaded
|
||||
FFMPEG_CMAKE_OFF= -Daudacity_use_ffmpeg:STRING=off
|
||||
|
||||
FLAC_LIB_DEPENDS= libFLAC.so:audio/flac
|
||||
FLAC_CMAKE_ON= -Daudacity_use_libflac:STRING=system
|
||||
FLAC_CMAKE_OFF= -Daudacity_use_libflac:STRING=off
|
||||
FLAC_LIB_DEPENDS= libFLAC.so:audio/flac
|
||||
|
||||
ID3TAG_LIB_DEPENDS= libid3tag.so:audio/libid3tag
|
||||
ID3TAG_CMAKE_ON= -Daudacity_use_libid3tag:STRING=system
|
||||
ID3TAG_CMAKE_OFF= -Daudacity_use_libid3tag:STRING=off
|
||||
ID3TAG_LIB_DEPENDS= libid3tag.so:audio/libid3tag
|
||||
|
||||
LADSPA_CMAKE_BOOL= audacity_use_ladspa
|
||||
LADSPA_RUN_DEPENDS= listplugins:audio/ladspa
|
||||
LADSPA_CMAKE_BOOL= audacity_use_ladspa
|
||||
|
||||
MANUAL_CMAKE_BOOL= audacity_package_manual
|
||||
|
||||
# TODO: fix NLS support properly
|
||||
PLIST_SUB+= NLS=""
|
||||
OPTIONS_SUB= yes
|
||||
|
||||
OGG_LIB_DEPENDS= libogg.so:audio/libogg
|
||||
OGG_CMAKE_ON= -Daudacity_use_libogg:STRING=system
|
||||
OGG_CMAKE_OFF= -Daudacity_use_libogg:STRING=off
|
||||
OGG_LIB_DEPENDS= libogg.so:audio/libogg
|
||||
|
||||
SBSMS_CMAKE_ON= -Daudacity_use_sbsms:STRING=local
|
||||
SBSMS_CMAKE_OFF= -Daudacity_use_sbsms:STRING=off
|
||||
|
||||
SOUNDTOUCH_LIB_DEPENDS= libSoundTouch.so:audio/soundtouch
|
||||
SOUNDTOUCH_CMAKE_ON= -Daudacity_use_soundtouch:STRING=system
|
||||
SOUNDTOUCH_CMAKE_OFF= -Daudacity_use_soundtouch:STRING=off
|
||||
SOUNDTOUCH_LIB_DEPENDS= libSoundTouch.so:audio/soundtouch
|
||||
|
||||
TWOLAME_LIB_DEPENDS= libtwolame.so:audio/twolame
|
||||
TWOLAME_CMAKE_ON= -Daudacity_use_twolame:STRING=system
|
||||
TWOLAME_CMAKE_OFF= -Daudacity_use_twolame:STRING=off
|
||||
TWOLAME_LIB_DEPENDS= libtwolame.so:audio/twolame
|
||||
|
||||
VAMP_LIB_DEPENDS= libvamp-hostsdk.so:audio/vamp-plugin-sdk
|
||||
VAMP_CMAKE_ON= -Daudacity_use_vamp:STRING=system
|
||||
VAMP_CMAKE_OFF= -Daudacity_use_vamp:STRING=off
|
||||
VAMP_LIB_DEPENDS= libvamp-hostsdk.so:audio/vamp-plugin-sdk
|
||||
|
||||
VORBIS_CMAKE_ON= -Daudacity_use_libvorbis:STRING=system
|
||||
VORBIS_CMAKE_OFF= -Daudacity_use_libvorbis:STRING=off
|
||||
VORBIS_LIB_DEPENDS= libogg.so:audio/libogg \
|
||||
libvorbis.so:audio/libvorbis
|
||||
VORBIS_CMAKE_ON= -Daudacity_use_libvorbis:STRING=system
|
||||
VORBIS_CMAKE_OFF= -Daudacity_use_libvorbis:STRING=off
|
||||
|
||||
VST_CMAKE_BOOL= audacity_use_vst
|
||||
|
||||
|
|
|
|||
|
|
@ -1,3 +1,5 @@
|
|||
TIMESTAMP = 1700366068
|
||||
SHA256 (audacity-audacity-Audacity-3.4.2_GH0.tar.gz) = 752cbe51fea0c143085d453eecbf024f5225891fd0118f1866d5964d892f1c25
|
||||
SIZE (audacity-audacity-Audacity-3.4.2_GH0.tar.gz) = 57368804
|
||||
TIMESTAMP = 1713915585
|
||||
SHA256 (audacity-audacity-Audacity-3.5.0_GH0.tar.gz) = ccdc68d86f082e532f64bbbcc35309d105fbf36da9e2b4cf19ee8e85d0b91f23
|
||||
SIZE (audacity-audacity-Audacity-3.5.0_GH0.tar.gz) = 57385696
|
||||
SHA256 (4191cfb8376d19d044cadaf31214182375a9af55.patch) = 3c0f1425930e0b07439282e879c48bff414c403c78f356847ea109e09bbcd314
|
||||
SIZE (4191cfb8376d19d044cadaf31214182375a9af55.patch) = 2015
|
||||
|
|
|
|||
|
|
@ -1,11 +0,0 @@
|
|||
--- lib-src/libnyquist/nyquist/cmt/cext.h.orig 2021-02-04 18:52:51 UTC
|
||||
+++ lib-src/libnyquist/nyquist/cmt/cext.h
|
||||
@@ -61,7 +61,7 @@ EXIT(n) -- calls exit(n) after shutting down/dealloca
|
||||
#include <malloc.h>
|
||||
#endif
|
||||
|
||||
-#if NEED_ULONG
|
||||
+#if NEED_ULONG || __FreeBSD__
|
||||
typedef unsigned long ulong;
|
||||
#endif
|
||||
|
||||
|
|
@ -1,18 +0,0 @@
|
|||
--- lib-src/libnyquist/nyquist/xlisp/xlisp.h.orig 2022-09-22 16:16:06 UTC
|
||||
+++ lib-src/libnyquist/nyquist/xlisp/xlisp.h
|
||||
@@ -181,6 +181,15 @@ extern long ptrtoabs();
|
||||
#endif
|
||||
#endif
|
||||
|
||||
+/* FreeBSD */
|
||||
+#ifdef __FreeBSD__
|
||||
+#if __BYTE_ORDER == __LITTLE_ENDIAN
|
||||
+#define XL_LITTLE_ENDIAN
|
||||
+#else
|
||||
+#define XL_BIG_ENDIAN
|
||||
+#endif
|
||||
+#endif
|
||||
+
|
||||
/* Apple CC (xcode, macOS, macintosh) */
|
||||
#ifdef __APPLE__
|
||||
#define NNODES 2000
|
||||
|
|
@ -1,10 +0,0 @@
|
|||
--- libraries/lib-basic-ui/BasicUI.cpp.orig 2022-09-28 03:57:45 UTC
|
||||
+++ libraries/lib-basic-ui/BasicUI.cpp
|
||||
@@ -29,6 +29,7 @@ Paul Licameli
|
||||
|
||||
#include <string>
|
||||
|
||||
+extern char** environ;
|
||||
namespace
|
||||
{
|
||||
|
||||
|
|
@ -1,11 +0,0 @@
|
|||
--- src/AboutDialog.cpp.orig 2022-09-22 16:16:06 UTC
|
||||
+++ src/AboutDialog.cpp
|
||||
@@ -55,7 +55,7 @@ hold information about one contributor to Audacity.
|
||||
// RevisionIdent.h may contain #defines like these ones:
|
||||
//#define REV_LONG "28864acb238cb3ca71dda190a2d93242591dd80e"
|
||||
//#define REV_TIME "Sun Apr 12 12:40:22 2015 +0100"
|
||||
-#include "RevisionIdent.h"
|
||||
+//#include "RevisionIdent.h"
|
||||
|
||||
#ifndef REV_TIME
|
||||
#define REV_TIME "unknown date and time"
|
||||
|
|
@ -1,11 +0,0 @@
|
|||
--- src/ListNavigationPanel.h.orig 2023-04-27 07:55:48 UTC
|
||||
+++ src/ListNavigationPanel.h
|
||||
@@ -13,7 +13,7 @@
|
||||
#include <wx/window.h>
|
||||
#include <wx/containr.h>
|
||||
|
||||
-extern template class WXDLLIMPEXP_CORE wxNavigationEnabled<wxWindow>;
|
||||
+//extern template class WXDLLIMPEXP_CORE wxNavigationEnabled<wxWindow>;
|
||||
|
||||
#include "ListNavigationEnabled.h"
|
||||
|
||||
|
|
@ -1,11 +0,0 @@
|
|||
--- src/MIDIPlay.cpp.orig 2022-09-27 05:35:02 UTC
|
||||
+++ src/MIDIPlay.cpp
|
||||
@@ -490,7 +490,7 @@ static double SystemTime(bool usingAlsa)
|
||||
if (usingAlsa) {
|
||||
struct timespec now;
|
||||
// CLOCK_MONOTONIC_RAW is unaffected by NTP or adj-time
|
||||
-#ifdef FreeBSD
|
||||
+#ifdef __FreeBSD__
|
||||
clock_gettime(CLOCK_REALTIME, &now);
|
||||
#else
|
||||
clock_gettime(CLOCK_MONOTONIC_RAW, &now);
|
||||
|
|
@ -6,10 +6,13 @@ lib/audacity/lib-basic-ui.so
|
|||
lib/audacity/lib-channel.so
|
||||
lib/audacity/lib-command-parameters.so
|
||||
lib/audacity/lib-components.so
|
||||
lib/audacity/lib-concurrency.so
|
||||
lib/audacity/lib-crypto.so
|
||||
lib/audacity/lib-effects.so
|
||||
lib/audacity/lib-exceptions.so
|
||||
lib/audacity/lib-export-ui.so
|
||||
%%FFMPEG%%lib/audacity/lib-ffmpeg-support.so
|
||||
lib/audacity/lib-fft.so
|
||||
lib/audacity/lib-file-formats.so
|
||||
lib/audacity/lib-files.so
|
||||
lib/audacity/lib-graphics.so
|
||||
|
|
@ -18,8 +21,11 @@ lib/audacity/lib-ipc.so
|
|||
%%LADSPA%%lib/audacity/lib-ladspa.so
|
||||
lib/audacity/lib-lv2.so
|
||||
lib/audacity/lib-math.so
|
||||
lib/audacity/lib-menus.so
|
||||
lib/audacity/lib-mixer.so
|
||||
lib/audacity/lib-module-manager.so
|
||||
lib/audacity/lib-music-information-retrieval.so
|
||||
lib/audacity/lib-note-track.so
|
||||
lib/audacity/lib-numeric-formats.so
|
||||
lib/audacity/lib-playable-track.so
|
||||
lib/audacity/lib-preferences.so
|
||||
|
|
@ -33,6 +39,7 @@ lib/audacity/lib-sample-track.so
|
|||
lib/audacity/lib-screen-geometry.so
|
||||
lib/audacity/lib-shuttlegui.so
|
||||
lib/audacity/lib-snapping.so
|
||||
lib/audacity/lib-sqlite-helpers.so
|
||||
lib/audacity/lib-stretching-sequence.so
|
||||
lib/audacity/lib-string-utils.so
|
||||
lib/audacity/lib-strings.so
|
||||
|
|
@ -47,6 +54,7 @@ lib/audacity/lib-track.so
|
|||
lib/audacity/lib-transactions.so
|
||||
lib/audacity/lib-utility.so
|
||||
lib/audacity/lib-uuid.so
|
||||
lib/audacity/lib-viewport.so
|
||||
lib/audacity/lib-vst.so
|
||||
lib/audacity/lib-wave-track.so
|
||||
lib/audacity/lib-wx-init.so
|
||||
|
|
@ -57,6 +65,7 @@ lib/audacity/modules/mod-cl.so
|
|||
%%FFMPEG%%lib/audacity/modules/mod-ffmpeg.so
|
||||
%%FLAC%%lib/audacity/modules/mod-flac.so
|
||||
lib/audacity/modules/mod-lof.so
|
||||
lib/audacity/modules/mod-midi-import-export.so
|
||||
%%TWOLAME%%lib/audacity/modules/mod-mp2.so
|
||||
lib/audacity/modules/mod-mp3.so
|
||||
lib/audacity/modules/mod-mpg123.so
|
||||
|
|
@ -1532,7 +1541,6 @@ share/applications/audacity.desktop
|
|||
%%DATADIR%%/plug-ins/crossfadeclips.ny
|
||||
%%DATADIR%%/plug-ins/crossfadetracks.ny
|
||||
%%DATADIR%%/plug-ins/delay.ny
|
||||
%%DATADIR%%/plug-ins/eq-xml-to-txt-converter.ny
|
||||
%%DATADIR%%/plug-ins/equalabel.ny
|
||||
%%DATADIR%%/plug-ins/highpass.ny
|
||||
%%DATADIR%%/plug-ins/label-sounds.ny
|
||||
|
|
@ -1549,7 +1557,6 @@ share/applications/audacity.desktop
|
|||
%%DATADIR%%/plug-ins/sample-data-import.ny
|
||||
%%DATADIR%%/plug-ins/spectral-delete.ny
|
||||
%%DATADIR%%/plug-ins/tremolo.ny
|
||||
%%DATADIR%%/plug-ins/vocalrediso.ny
|
||||
%%DATADIR%%/plug-ins/vocoder.ny
|
||||
share/icons/hicolor/16x16/audacity.png
|
||||
share/icons/hicolor/22x22/audacity.png
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
PORTNAME= moodbar
|
||||
PORTVERSION= 1.2.1
|
||||
PORTVERSION= 1.3.0
|
||||
CATEGORIES= audio
|
||||
MASTER_SITES= https://github.com/exaile/${PORTNAME}/releases/download/v${PORTVERSION}/
|
||||
|
||||
|
|
@ -13,12 +13,13 @@ LICENSE_FILE= ${WRKSRC}/COPYING
|
|||
LIB_DEPENDS= libfftw3.so:math/fftw3
|
||||
TEST_DEPENDS= ${PYNUMPY}
|
||||
|
||||
USES= compiler:c++14-lang gnome gstreamer meson pkgconfig python:test \
|
||||
USES= compiler:c++17-lang gnome gstreamer meson pkgconfig python:test \
|
||||
shebangfix tar:xz
|
||||
USE_GNOME= glib20
|
||||
USE_GSTREAMER= good ogg vorbis
|
||||
|
||||
PLIST_FILES= bin/moodbar
|
||||
SHEBANG_FILES= test.py
|
||||
|
||||
PLIST_FILES= bin/moodbar
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1593751181
|
||||
SHA256 (moodbar-1.2.1.tar.xz) = 799522bab211e109c7a51e9a4ddf1d18101bbd981df0b5d5c04069cfb201b63f
|
||||
SIZE (moodbar-1.2.1.tar.xz) = 26252
|
||||
TIMESTAMP = 1713854215
|
||||
SHA256 (moodbar-1.3.0.tar.xz) = 3fadae175c9986278da0f008a4d1c6df9387d6a0ed5056dd3927733e7b78363c
|
||||
SIZE (moodbar-1.3.0.tar.xz) = 26780
|
||||
|
|
|
|||
|
|
@ -39,6 +39,13 @@ LADSPA_CMAKE_BOOL= BUILD_LADSPA_PLUGIN
|
|||
VST3_CMAKE_BOOL= BUILD_VST3_PLUGIN
|
||||
VST3_BROKEN= fails to build with juce-7.0.6, see https://github.com/werman/noise-suppression-for-voice/issues/177
|
||||
|
||||
.include <bsd.port.pre.mk>
|
||||
|
||||
.if ${COMPILER_TYPE} == clang && ${COMPILER_VERSION} >= 180
|
||||
# Work around https://github.com/llvm/llvm-project/issues/88592
|
||||
CXXFLAGS+= -fclang-abi-compat=17
|
||||
.endif
|
||||
|
||||
post-extract: # remove bundled JUCE
|
||||
@${RM} -rf ${WRKSRC}/external/JUCE
|
||||
|
||||
|
|
@ -60,4 +67,4 @@ post-install-VST3-on:
|
|||
|
||||
# the LADSPA plugin can be used directly from PulseAudio's config file
|
||||
|
||||
.include <bsd.port.mk>
|
||||
.include <bsd.port.post.mk>
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
PORTNAME= vosk
|
||||
DISTVERSIONPREFIX= v
|
||||
DISTVERSION= 0.3.45-20231214
|
||||
DISTVERSION= 0.3.50
|
||||
CATEGORIES= audio # machine-learning
|
||||
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
||||
|
||||
|
|
@ -26,7 +26,6 @@ USE_PYTHON= distutils concurrent # autoplist is broken
|
|||
USE_GITHUB= yes
|
||||
GH_ACCOUNT= alphacep
|
||||
GH_PROJECT= vosk-api
|
||||
GH_TAGNAME= aba8497
|
||||
|
||||
WRKSRC_SUBDIR= python
|
||||
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1702708668
|
||||
SHA256 (alphacep-vosk-api-v0.3.45-20231214-aba8497_GH0.tar.gz) = 347bb5f0ec72c8f07dcd80ca4ebec76946845116f085328e016fd46ad3adce82
|
||||
SIZE (alphacep-vosk-api-v0.3.45-20231214-aba8497_GH0.tar.gz) = 660047
|
||||
TIMESTAMP = 1713859105
|
||||
SHA256 (alphacep-vosk-api-v0.3.50_GH0.tar.gz) = cc1067bcc599c9a2f5f38d4257caf2ac636ba244f7c965cee20293a41024f70f
|
||||
SIZE (alphacep-vosk-api-v0.3.50_GH0.tar.gz) = 661203
|
||||
|
|
|
|||
|
|
@ -1,11 +1,4 @@
|
|||
bin/vosk-transcriber
|
||||
%%PYTHON_SITELIBDIR%%/vosk-0.3.46-py%%PYTHON_VER%%.egg-info/PKG-INFO
|
||||
%%PYTHON_SITELIBDIR%%/vosk-0.3.46-py%%PYTHON_VER%%.egg-info/SOURCES.txt
|
||||
%%PYTHON_SITELIBDIR%%/vosk-0.3.46-py%%PYTHON_VER%%.egg-info/dependency_links.txt
|
||||
%%PYTHON_SITELIBDIR%%/vosk-0.3.46-py%%PYTHON_VER%%.egg-info/entry_points.txt
|
||||
%%PYTHON_SITELIBDIR%%/vosk-0.3.46-py%%PYTHON_VER%%.egg-info/not-zip-safe
|
||||
%%PYTHON_SITELIBDIR%%/vosk-0.3.46-py%%PYTHON_VER%%.egg-info/requires.txt
|
||||
%%PYTHON_SITELIBDIR%%/vosk-0.3.46-py%%PYTHON_VER%%.egg-info/top_level.txt
|
||||
%%PYTHON_SITELIBDIR%%/vosk/__init__.py
|
||||
%%PYTHON_SITELIBDIR%%/vosk/__pycache__/__init__%%PYTHON_EXT_SUFFIX%%.opt-1.pyc
|
||||
%%PYTHON_SITELIBDIR%%/vosk/__pycache__/__init__%%PYTHON_EXT_SUFFIX%%.pyc
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
PORTNAME= vosk-api
|
||||
DISTVERSIONPREFIX= v
|
||||
DISTVERSION= 0.3.45-20231214
|
||||
DISTVERSION= 0.3.50
|
||||
CATEGORIES= audio # machine-learning
|
||||
|
||||
MAINTAINER= yuri@FreeBSD.org
|
||||
|
|
@ -18,7 +18,6 @@ USE_LDCONFIG= yes
|
|||
|
||||
USE_GITHUB= yes
|
||||
GH_ACCOUNT= alphacep
|
||||
GH_TAGNAME= aba8497
|
||||
|
||||
CMAKE_ON= BUILD_SHARED_LIBS
|
||||
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1702708668
|
||||
SHA256 (alphacep-vosk-api-v0.3.45-20231214-aba8497_GH0.tar.gz) = 347bb5f0ec72c8f07dcd80ca4ebec76946845116f085328e016fd46ad3adce82
|
||||
SIZE (alphacep-vosk-api-v0.3.45-20231214-aba8497_GH0.tar.gz) = 660047
|
||||
TIMESTAMP = 1713858978
|
||||
SHA256 (alphacep-vosk-api-v0.3.50_GH0.tar.gz) = cc1067bcc599c9a2f5f38d4257caf2ac636ba244f7c965cee20293a41024f70f
|
||||
SIZE (alphacep-vosk-api-v0.3.50_GH0.tar.gz) = 661203
|
||||
|
|
|
|||
|
|
@ -1,7 +1,8 @@
|
|||
PORTNAME= pysam
|
||||
DISTVERSION= 0.22.0
|
||||
DISTVERSIONPREFIX= v
|
||||
DISTVERSION= 0.22.1
|
||||
CATEGORIES= biology python
|
||||
MASTER_SITES= PYPI
|
||||
#MASTER_SITES= PYPI # no tests
|
||||
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
||||
|
||||
MAINTAINER= yuri@FreeBSD.org
|
||||
|
|
@ -12,14 +13,21 @@ LICENSE= MIT
|
|||
LICENSE_FILE= ${WRKSRC}/COPYING
|
||||
|
||||
LIB_DEPENDS= libhts.so:biology/htslib
|
||||
RUN_DEPENDS= bcftools:biology/bcftools \
|
||||
samtools:biology/samtools
|
||||
|
||||
USES= gmake python
|
||||
USE_PYTHON= distutils autoplist cython cython_run
|
||||
USE_PYTHON= distutils autoplist cython cython_run pytest # 2 failed, 155 errors, see https://github.com/pysam-developers/pysam/issues/1284
|
||||
|
||||
USE_GITHUB= yes
|
||||
GH_ACCOUNT= pysam-developers
|
||||
|
||||
BINARY_ALIAS= make=${GMAKE}
|
||||
MAKE_ENV= HTSLIB_MODE=external \
|
||||
HTSLIB_LIBRARY_DIR=${LOCALBASE}/lib \
|
||||
HTSLIB_INCLUDE_DIR=${LOCALBASE}/include
|
||||
TEST_ENV= ${MAKE_ENV} PYTHONPATH=${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}
|
||||
TEST_WRKSRC= ${WRKSRC}/tests
|
||||
|
||||
post-install:
|
||||
@${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/pysam/lib*${PYTHON_EXT_SUFFIX}.so
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1696579895
|
||||
SHA256 (pysam-0.22.0.tar.gz) = ab7a46973cf0ab8c6ac327f4c3fb67698d7ccbeef8631a716898c6ba01ef3e45
|
||||
SIZE (pysam-0.22.0.tar.gz) = 4631254
|
||||
TIMESTAMP = 1714015094
|
||||
SHA256 (pysam-developers-pysam-v0.22.1_GH0.tar.gz) = e4981524d7627c53fa0d3f8cbec2bd65c2ea7520092f25e1029af12cb7b82ff6
|
||||
SIZE (pysam-developers-pysam-v0.22.1_GH0.tar.gz) = 3885851
|
||||
|
|
|
|||
|
|
@ -1,11 +0,0 @@
|
|||
--- setup.py.orig 2017-04-19 05:48:10 UTC
|
||||
+++ setup.py
|
||||
@@ -60,7 +60,7 @@ def run_configure(option):
|
||||
|
||||
|
||||
def run_make_print_config():
|
||||
- stdout = subprocess.check_output(["make", "-s", "print-config"])
|
||||
+ stdout = subprocess.check_output(["gmake", "-s", "print-config"])
|
||||
if IS_PYTHON3:
|
||||
stdout = stdout.decode("ascii")
|
||||
|
||||
|
|
@ -1,5 +1,5 @@
|
|||
PORTNAME= magic
|
||||
DISTVERSION= 8.3.459
|
||||
DISTVERSION= 8.3.474
|
||||
CATEGORIES= cad
|
||||
MASTER_SITES= http://opencircuitdesign.com/magic/archive/
|
||||
|
||||
|
|
@ -8,7 +8,7 @@ COMMENT= Interactive editor for VLSI layouts
|
|||
WWW= http://opencircuitdesign.com/magic/
|
||||
|
||||
LICENSE= MIT
|
||||
LICENSE_FILE= ${FILESDIR}/license.txt
|
||||
LICENSE_FILE= ${WRKSRC}/LICENSE
|
||||
|
||||
LIB_DEPENDS= libBLT25.so:x11-toolkits/blt \
|
||||
libfontconfig.so:x11-fonts/fontconfig \
|
||||
|
|
@ -28,8 +28,6 @@ CONFIGURE_WRKSRC= ${WRKSRC}/scripts
|
|||
|
||||
ALL_TARGET= tcllibrary
|
||||
|
||||
CFLAGS+= -Wno-return-type # workaround for https://github.com/RTimothyEdwards/magic/issues/67
|
||||
|
||||
DESKTOP_ENTRIES="Magic" "" "" "${PORTNAME}" "" ""
|
||||
|
||||
PORTSCOUT= limit:^8\.
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1706064662
|
||||
SHA256 (magic-8.3.459.tgz) = 12b34564766227e0b0f1039044463da6ce7ff16a196045308fc688bb8d9d4fd4
|
||||
SIZE (magic-8.3.459.tgz) = 4237442
|
||||
TIMESTAMP = 1713926449
|
||||
SHA256 (magic-8.3.474.tgz) = 36354f6737827226136159a32e552f506ca8c6ac170e7c923131986f096eccf8
|
||||
SIZE (magic-8.3.474.tgz) = 4239643
|
||||
|
|
|
|||
|
|
@ -1,10 +0,0 @@
|
|||
Copyright (C) 1985, 1990 Regents of the University of California.
|
||||
|
||||
Permission to use, copy, modify, and distribute this
|
||||
software and its documentation for any purpose and without
|
||||
fee is hereby granted, provided that the above copyright
|
||||
notice appear in all copies. The University of California
|
||||
makes no representations about the suitability of this
|
||||
software for any purpose. It is provided "as is" without
|
||||
express or implied warranty. Export of this software outside
|
||||
of the United States of America may require an export license.
|
||||
|
|
@ -2,5 +2,5 @@ Magic is an interactive editor for VLSI layouts that runs under BSD.
|
|||
|
||||
To run magic, users should set CAD_HOME to the base installation directory
|
||||
where magic was installed, e.g. /usr/local. Alternatively, the system
|
||||
administrator can create a dummy user named 'cad' with its home
|
||||
directory set to the installation directory.
|
||||
administrator can create a dummy user named 'cad' with its home directory
|
||||
set to the installation directory.
|
||||
|
|
|
|||
|
|
@ -1,6 +1,5 @@
|
|||
PORTNAME= fldigi
|
||||
DISTVERSION= 4.2.04
|
||||
PORTREVISION= 1
|
||||
DISTVERSION= 4.2.05
|
||||
CATEGORIES= comms hamradio
|
||||
MASTER_SITES= SF/fldigi/${PORTNAME} \
|
||||
http://www.w1hkj.com/files/fldigi/
|
||||
|
|
@ -17,13 +16,12 @@ BUILD_DEPENDS= asciidoc:textproc/asciidoc \
|
|||
xsltproc:textproc/libxslt
|
||||
LIB_DEPENDS= libfltk.so:x11-toolkits/fltk \
|
||||
libfontconfig.so:x11-fonts/fontconfig \
|
||||
libpng.so:graphics/png \
|
||||
libportaudio.so:audio/portaudio \
|
||||
libsamplerate.so:audio/libsamplerate \
|
||||
libsndfile.so:audio/libsndfile \
|
||||
libudev.so:devel/libudev-devd
|
||||
|
||||
USES= autoreconf compiler:c++11-lib desktop-file-utils gmake jpeg \
|
||||
USES= autoreconf:build compiler:c++11-lib desktop-file-utils gmake jpeg \
|
||||
perl5 pkgconfig shebangfix xorg
|
||||
USE_XORG= x11 xcursor xext xfixes xft xinerama xrender
|
||||
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1705508736
|
||||
SHA256 (fldigi-4.2.04.tar.gz) = 72b55e5fdbedbe7d4ee5a87575cef8e36e6a50a728cca94331578879f32992d6
|
||||
SIZE (fldigi-4.2.04.tar.gz) = 5118463
|
||||
TIMESTAMP = 1713875865
|
||||
SHA256 (fldigi-4.2.05.tar.gz) = ac1189fbadd2ce1cb7ecb430d0ba44dbf94bc8fe65c0aee1b33feeab8e778876
|
||||
SIZE (fldigi-4.2.05.tar.gz) = 5127250
|
||||
|
|
|
|||
|
|
@ -1,23 +1,23 @@
|
|||
%%FLARQ%%bin/flarq
|
||||
bin/fldigi
|
||||
%%FLARQ%%share/man/man1/flarq.1.gz
|
||||
share/man/man1/fldigi.1.gz
|
||||
%%FLARQ%%share/applications/flarq.desktop
|
||||
share/applications/fldigi.desktop
|
||||
%%PORTDOCS%%%%DOCSDIR%%/README
|
||||
%%PORTDOCS%%%%DOCSDIR%%/guide.html
|
||||
%%DATADIR%%/NAVTEX_Stations.csv
|
||||
%%DATADIR%%/ToR-Stats-SHIP.csv
|
||||
%%DATADIR%%/nsd_bbsss.txt
|
||||
%%DATADIR%%/station_table.txt
|
||||
%%NLS%%share/locale/ca/LC_MESSAGES/fldigi.mo
|
||||
%%NLS%%share/locale/de/LC_MESSAGES/fldigi.mo
|
||||
%%NLS%%share/locale/el/LC_MESSAGES/fldigi.mo
|
||||
%%NLS%%share/locale/es/LC_MESSAGES/fldigi.mo
|
||||
%%NLS%%share/locale/fr/LC_MESSAGES/fldigi.mo
|
||||
%%NLS%%share/locale/it/LC_MESSAGES/fldigi.mo
|
||||
%%NLS%%share/locale/pl/LC_MESSAGES/fldigi.mo
|
||||
%%NLS%%share/locale/nl/LC_MESSAGES/fldigi.mo
|
||||
%%NLS%%share/locale/pl/LC_MESSAGES/fldigi.mo
|
||||
%%NLS%%share/locale/ru/LC_MESSAGES/fldigi.mo
|
||||
share/pixmaps/fldigi.xpm
|
||||
%%DATADIR%%/NAVTEX_Stations.csv
|
||||
%%DATADIR%%/ToR-Stats-SHIP.csv
|
||||
%%DATADIR%%/nsd_bbsss.txt
|
||||
%%DATADIR%%/station_table.txt
|
||||
%%FLARQ%%share/man/man1/flarq.1.gz
|
||||
share/man/man1/fldigi.1.gz
|
||||
%%FLARQ%%share/pixmaps/flarq.xpm
|
||||
%%PORTDOCS%%%%DOCSDIR%%/README
|
||||
%%PORTDOCS%%%%DOCSDIR%%/guide.html
|
||||
share/pixmaps/fldigi.xpm
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
PORTNAME= mongodb
|
||||
DISTVERSIONPREFIX= r
|
||||
DISTVERSION= 5.0.26
|
||||
PORTREVISION= 1
|
||||
PORTREVISION= 2
|
||||
CATEGORIES= databases net
|
||||
MASTER_SITES= https://fastdl.mongodb.org/src/ \
|
||||
http://fastdl.mongodb.org/src/
|
||||
|
|
@ -63,7 +63,7 @@ USERS= mongodb
|
|||
GROUPS= mongodb
|
||||
|
||||
OPTIONS_DEFINE= LTO SASL SSL NOAVX
|
||||
OPTIONS_DEFAULT= SASL SSL
|
||||
OPTIONS_DEFAULT= SASL SSL NOAVX
|
||||
|
||||
NOAVX_DESC= "Disable AVX instructions on amd64 (Sandybridge+)"
|
||||
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
PORTNAME= mongodb
|
||||
DISTVERSIONPREFIX= r
|
||||
DISTVERSION= 6.0.14
|
||||
DISTVERSION= 6.0.15
|
||||
CATEGORIES= databases net
|
||||
PKGNAMESUFFIX= ${DISTVERSION:R:S/.//}
|
||||
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
TIMESTAMP = 1709336837
|
||||
SHA256 (mongodb-mongo-r6.0.14_GH0.tar.gz) = c4625d19c38036df4dd8ea474bdddb852d5e60b4df0563248f813f3a97235be2
|
||||
SIZE (mongodb-mongo-r6.0.14_GH0.tar.gz) = 91244689
|
||||
TIMESTAMP = 1713252905
|
||||
SHA256 (mongodb-mongo-r6.0.15_GH0.tar.gz) = 2e5ed9326182b9c1cfa8e85e0e67f35f840fd6e2390e88198a185e822eb29275
|
||||
SIZE (mongodb-mongo-r6.0.15_GH0.tar.gz) = 91274369
|
||||
SHA256 (mongodb-forks-spidermonkey-82aac6af18abcd5bf188afbc821779ccb0ca0902_GH0.tar.gz) = a365bf54ef4e4fd6a136cf6afa9c620ba0c8982402473b9bfac38928a688a9e0
|
||||
SIZE (mongodb-forks-spidermonkey-82aac6af18abcd5bf188afbc821779ccb0ca0902_GH0.tar.gz) = 141291901
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
PORTNAME= pg-gvm
|
||||
DISTVERSION= 22.6.4
|
||||
DISTVERSION= 22.6.5
|
||||
DISTVERSIONPREFIX=v
|
||||
CATEGORIES= databases devel
|
||||
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1706304450
|
||||
SHA256 (greenbone-pg-gvm-v22.6.4_GH0.tar.gz) = a39abbc320694502ec79e6c7a8c3c867affbae379fdf1bdc6055eba0e1242e31
|
||||
SIZE (greenbone-pg-gvm-v22.6.4_GH0.tar.gz) = 39702
|
||||
TIMESTAMP = 1713944764
|
||||
SHA256 (greenbone-pg-gvm-v22.6.5_GH0.tar.gz) = dad0de0d5358f2b71d570ed3dc7b9cf1949af33f7de26c23ced84c74f5b0bda5
|
||||
SIZE (greenbone-pg-gvm-v22.6.5_GH0.tar.gz) = 39709
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
PORTNAME= citus
|
||||
PORTVERSION= 12.1.2
|
||||
PORTVERSION= 12.1.3
|
||||
DISTVERSIONPREFIX= v
|
||||
CATEGORIES= databases
|
||||
PKGNAMEPREFIX= pg_
|
||||
|
|
@ -10,8 +10,7 @@ WWW= https://www.citusdata.com/
|
|||
|
||||
LICENSE= AGPLv3
|
||||
|
||||
USES= compiler:c11 gmake pgsql:14+ autoreconf readline ssl \
|
||||
gettext-runtime
|
||||
USES= compiler:c11 gmake pgsql:14+ autoreconf ssl
|
||||
|
||||
LIB_DEPENDS= liblz4.so:archivers/liblz4 \
|
||||
libzstd.so:archivers/zstd
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1709021068
|
||||
SHA256 (citusdata-citus-v12.1.2_GH0.tar.gz) = 61d959e8129df4613186841550ea29afb9348a7e6f871d5b5df4866777b82e24
|
||||
SIZE (citusdata-citus-v12.1.2_GH0.tar.gz) = 6897486
|
||||
TIMESTAMP = 1714117039
|
||||
SHA256 (citusdata-citus-v12.1.3_GH0.tar.gz) = 5b3b20b89ead1f97072088cb1ff275a053ded886e174f8ebe3288a2e7229d92c
|
||||
SIZE (citusdata-citus-v12.1.3_GH0.tar.gz) = 6905546
|
||||
|
|
|
|||
|
|
@ -82,7 +82,6 @@ include/postgresql/server/distributed/pg_dist_rebalance_strategy.h
|
|||
include/postgresql/server/distributed/pg_dist_schema.h
|
||||
include/postgresql/server/distributed/pg_dist_shard.h
|
||||
include/postgresql/server/distributed/pg_dist_transaction.h
|
||||
include/postgresql/server/distributed/pg_version_constants.h
|
||||
include/postgresql/server/distributed/placement_access.h
|
||||
include/postgresql/server/distributed/placement_connection.h
|
||||
include/postgresql/server/distributed/priority.h
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
PORTNAME= rqlite
|
||||
DISTVERSIONPREFIX= v
|
||||
DISTVERSION= 8.23.2
|
||||
DISTVERSION= 8.23.3
|
||||
CATEGORIES= databases
|
||||
|
||||
MAINTAINER= yuri@FreeBSD.org
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
TIMESTAMP = 1713844853
|
||||
SHA256 (go/databases_rqlite/rqlite-v8.23.2/v8.23.2.mod) = f4ab31411d1ced2f7114dfd00d9a2afa967b1f9b3bed8802ddb719546dae77d0
|
||||
SIZE (go/databases_rqlite/rqlite-v8.23.2/v8.23.2.mod) = 2591
|
||||
SHA256 (go/databases_rqlite/rqlite-v8.23.2/v8.23.2.zip) = 13d1c0b6ab619e59d9d65ef57e962cb02b28b7351bf03cc212702040da32b36c
|
||||
SIZE (go/databases_rqlite/rqlite-v8.23.2/v8.23.2.zip) = 711612
|
||||
TIMESTAMP = 1714103729
|
||||
SHA256 (go/databases_rqlite/rqlite-v8.23.3/v8.23.3.mod) = eedf9470516aa13b443771d5f4149f1704e2726fa14273afcff71a44f5ea4c34
|
||||
SIZE (go/databases_rqlite/rqlite-v8.23.3/v8.23.3.mod) = 2591
|
||||
SHA256 (go/databases_rqlite/rqlite-v8.23.3/v8.23.3.zip) = 9a70642e6d5afbb580c6da0d4326cbd0e0dc06e443c96ddc07cc0fa26f3fd431
|
||||
SIZE (go/databases_rqlite/rqlite-v8.23.3/v8.23.3.zip) = 711825
|
||||
|
|
|
|||
|
|
@ -27,6 +27,12 @@ CARGO_INSTALL= no
|
|||
CARGO_TEST= no
|
||||
GLIB_SCHEMAS= dev.Cogitri.Health.gschema.xml
|
||||
|
||||
.if ${MACHINE_ARCH} == i386
|
||||
# https://github.com/rust-lang/rust/issues/85598
|
||||
LTO_UNSAFE= yes
|
||||
CARGO_ENV+= CARGO_PROFILE_RELEASE_LTO=false
|
||||
.endif
|
||||
|
||||
post-patch:
|
||||
# Make each cargo subcommand very verbose
|
||||
# Add explicit <triple> subdir for --target from USES=cargo
|
||||
|
|
|
|||
|
|
@ -1,6 +1,7 @@
|
|||
PORTNAME= paperless-ngx
|
||||
PORTVERSION= 2.7.2
|
||||
DISTVERSIONPREFIX= v
|
||||
PORTREVISION= 1
|
||||
CATEGORIES= deskutils python
|
||||
MASTER_SITES= https://github.com/${PORTNAME}/${PORTNAME}/releases/download/${DISTVERSIONPREFIX}${DISTVERSION}/:webui \
|
||||
GH:gh
|
||||
|
|
|
|||
|
|
@ -11,11 +11,13 @@
|
|||
# paperless_beat_enable (bool): Set to "NO" by default.
|
||||
# Set it to "YES" to enable
|
||||
# paperless_beat
|
||||
# paperless_beat_log_facility(str): Set to "daemon" by default.
|
||||
# paperless_beat_user (str): Set to "paperless" by default.
|
||||
# User to run beat.
|
||||
# paperless_beat_log_facility (str): Set to "daemon" by default.
|
||||
# Beat logging syslog facility.
|
||||
# paperless_beat_log_priority(str): Set to "notice" by default.
|
||||
# paperless_beat_log_priority (str): Set to "notice" by default.
|
||||
# Beat logging syslog priority.
|
||||
# paperless_beat_log_tag(str): Set to "paperless-beat" by default.
|
||||
# paperless_beat_log_tag (str): Set to "paperless-beat" by default.
|
||||
# Beat logging syslog tag.
|
||||
|
||||
. /etc/rc.subr
|
||||
|
|
@ -23,7 +25,8 @@
|
|||
name="paperless_beat"
|
||||
rcvar="${name}_enable"
|
||||
|
||||
# Set defaults
|
||||
# read configuration and set defaults
|
||||
load_rc_config "$name"
|
||||
paperless_beat_enable=${paperless_beat_enable:-"NO"}
|
||||
paperless_beat_daemon_user=${paperless_beat_user:-"paperless"}
|
||||
paperless_beat_log_facility=${paperless_beat_log_facility:-"daemon"}
|
||||
|
|
@ -45,5 +48,4 @@ command_args="-cS -u ${paperless_beat_daemon_user} \
|
|||
%%PREFIX%%/bin/celery \
|
||||
--app paperless beat --loglevel INFO"
|
||||
|
||||
load_rc_config ${name}
|
||||
run_rc_command "$1"
|
||||
|
|
|
|||
|
|
@ -11,11 +11,13 @@
|
|||
# paperless_consumer_enable (bool): Set to "NO" by default.
|
||||
# Set it to "YES" to enable
|
||||
# paperless_consumer
|
||||
# paperless_consumer_user (str): Set to "paperless" by default.
|
||||
# User to run consumer.
|
||||
# paperless_consumer_log_facility(str): Set to "daemon" by default.
|
||||
# Consumer logging syslog facility.
|
||||
# paperless_consumer_log_priority(str): Set to "notice" by default.
|
||||
# Consumer logging syslog priority.
|
||||
# paperless_consumer_log_tag(str): Set to "paperless-consumer" by default.
|
||||
# paperless_consumer_log_tag (str): Set to "paperless-consumer" by default.
|
||||
# Consumer logging syslog tag.
|
||||
|
||||
. /etc/rc.subr
|
||||
|
|
@ -23,7 +25,8 @@
|
|||
name="paperless_consumer"
|
||||
rcvar="${name}_enable"
|
||||
|
||||
# Set defaults
|
||||
# read configuration and set defaults
|
||||
load_rc_config "$name"
|
||||
paperless_consumer_enable=${paperless_consumer_enable:-"NO"}
|
||||
paperless_consumer_daemon_user=${paperless_consumer_user:-"paperless"}
|
||||
paperless_consumer_log_facility=${paperless_consumer_log_facility:-"daemon"}
|
||||
|
|
@ -45,5 +48,4 @@ command_args="-cS -u ${paperless_consumer_daemon_user} \
|
|||
-T ${paperless_consumer_log_tag} \
|
||||
%%PREFIX%%/bin/paperless document_consumer"
|
||||
|
||||
load_rc_config ${name}
|
||||
run_rc_command "$1"
|
||||
|
|
|
|||
|
|
@ -10,11 +10,13 @@
|
|||
# paperless_flower_enable (bool): Set to "NO" by default.
|
||||
# Set it to "YES" to enable
|
||||
# paperless_flower
|
||||
# paperless_flower_log_facility(str): Set to "daemon" by default.
|
||||
# paperless_flower_user (str): Set to "paperless" by default.
|
||||
# User to run flower.
|
||||
# paperless_flower_log_facility (str): Set to "daemon" by default.
|
||||
# Flower logging syslog facility.
|
||||
# paperless_flower_log_priority(str): Set to "notice" by default.
|
||||
# paperless_flower_log_priority (str): Set to "notice" by default.
|
||||
# Flower logging syslog priority.
|
||||
# paperless_flower_log_tag(str): Set to "paperless-flower" by default.
|
||||
# paperless_flower_log_tag (str): Set to "paperless-flower" by default.
|
||||
# Flower logging syslog tag.
|
||||
|
||||
. /etc/rc.subr
|
||||
|
|
@ -22,7 +24,8 @@
|
|||
name="paperless_flower"
|
||||
rcvar="${name}_enable"
|
||||
|
||||
# Set defaults
|
||||
# read configuration and set defaults
|
||||
load_rc_config "$name"
|
||||
paperless_flower_enable=${paperless_flower_enable:-"NO"}
|
||||
paperless_flower_daemon_user=${paperless_flower_user:-"paperless"}
|
||||
paperless_flower_log_facility=${paperless_flower_log_facility:-"daemon"}
|
||||
|
|
@ -44,5 +47,4 @@ command_args="-cS -u ${paperless_flower_daemon_user} \
|
|||
%%PREFIX%%/bin/celery \
|
||||
--app paperless flower --url-prefix=flower --loglevel INFO"
|
||||
|
||||
load_rc_config ${name}
|
||||
run_rc_command "$1"
|
||||
|
|
|
|||
|
|
@ -11,11 +11,13 @@
|
|||
# paperless_migrate_enable (bool): Set to "NO" by default.
|
||||
# Set it to "YES" to enable
|
||||
# paperless_migrate
|
||||
# paperless_migrate_log_facility(str): Set to "daemon" by default.
|
||||
# paperless_migrate_user (str): Set to "paperless" by default.
|
||||
# User to run migrate.
|
||||
# paperless_migrate_log_facility (str): Set to "daemon" by default.
|
||||
# Migrate logging syslog facility.
|
||||
# paperless_migrate_log_priority(str): Set to "notice" by default.
|
||||
# paperless_migrate_log_priority (str): Set to "notice" by default.
|
||||
# Migrate logging syslog priority.
|
||||
# paperless_migrate_log_tag(str): Set to "paperless-migrate" by default.
|
||||
# paperless_migrate_log_tag (str): Set to "paperless-migrate" by default.
|
||||
# Migrate logging syslog tag.
|
||||
|
||||
. /etc/rc.subr
|
||||
|
|
@ -23,7 +25,8 @@
|
|||
name="paperless_migrate"
|
||||
rcvar="${name}_enable"
|
||||
|
||||
# Set defaults
|
||||
# read configuration and set defaults
|
||||
load_rc_config "$name"
|
||||
paperless_migrate_enable=${paperless_migrate_enable:-"NO"}
|
||||
paperless_migrate_user=${paperless_migrate_user:-"paperless"}
|
||||
paperless_migrate_log_facility=${paperless_migrate_log_facility:-"daemon"}
|
||||
|
|
@ -44,5 +47,4 @@ paperless_migrate_run()
|
|||
-c 'sh -c "%%PREFIX%%/bin/paperless migrate --no-color -v 0"'
|
||||
}
|
||||
|
||||
load_rc_config ${name}
|
||||
run_rc_command "$1"
|
||||
|
|
|
|||
|
|
@ -23,7 +23,7 @@
|
|||
.\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
||||
.\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
.\"
|
||||
.Dd February 22, 2024
|
||||
.Dd April 24, 2024
|
||||
.Dt PAPERLESS-NGX 7
|
||||
.Os
|
||||
.Sh NAME
|
||||
|
|
@ -120,6 +120,12 @@ Modify
|
|||
to match the configured credentials (when running on localhost,
|
||||
it is possible to use no special credentials).
|
||||
.Pp
|
||||
In case redis is not running on localhost, an ACL entry needs to
|
||||
be added to grant permissions to the user used to access the instance:
|
||||
.Bd -literal -offset indent
|
||||
user paperlessusername on +@all -@admin ~* &*
|
||||
.Ed
|
||||
.Pp
|
||||
The URL paperless is hosted on needs to be configued by setting
|
||||
.Va PAPERLESS_URL ,
|
||||
it is also possible to tune
|
||||
|
|
@ -159,8 +165,8 @@ In order to process scanned documents using machine learning,
|
|||
paperless-ngx requires NLTK (natural language toolkit) data.
|
||||
The required files can be downloaded by using these commands:
|
||||
.Bd -literal -offset indent
|
||||
%%PYTHON_CMD%% -m nltk.downloader \\
|
||||
stopwords punkt -d /var/db/paperless/nltkdata
|
||||
su -l paperless -c '%%PYTHON_CMD%% -m nltk.downloader \\
|
||||
stopwords snowball_data punkt -d /var/db/paperless/nltkdata'
|
||||
.Ed
|
||||
.Pp
|
||||
Normally, the document classifier is run automatically by
|
||||
|
|
@ -178,6 +184,18 @@ It can be enabled and started like this:
|
|||
service paperless-flower enable
|
||||
service paperless-flower start
|
||||
.Ed
|
||||
.Sh JBIG2 ENCODING
|
||||
In case a binary named `jbig2enc' is found in $PATH, textproc/py-ocrmypdf
|
||||
will automatically pick it up to encode PDFs with it.
|
||||
.Pp
|
||||
A patch to add a port skeleton for jbig2enc for manual building
|
||||
on a local ports tree can be found here:
|
||||
.Pa https://people.freebsd.org/~grembo/graphics-jbig2enc.patch
|
||||
.Pp
|
||||
There are various considerations to be made when using jbig2enc,
|
||||
including potential patent claims and regulatory requirements,
|
||||
see also
|
||||
.Pa https://en.wikipedia.org/wiki/JBIG2 .
|
||||
.Sh WEB UI SETUP
|
||||
Before using the web ui, make sure to create a super user and assign
|
||||
a password
|
||||
|
|
|
|||
|
|
@ -11,16 +11,22 @@
|
|||
# paperless_webui_enable (bool): Set to "NO" by default.
|
||||
# Set it to "YES" to enable
|
||||
# paperless_webui
|
||||
# paperless_webui_log_facility(str): Set to "daemon" by default.
|
||||
# paperless_webui_user (str): Set to "paperless" by default.
|
||||
# User to run webui.
|
||||
# paperless_webui_log_facility (str): Set to "daemon" by default.
|
||||
# WebUI logging syslog facility.
|
||||
# paperless_webui_log_priority(str): Set to "notice" by default.
|
||||
# paperless_webui_log_priority (str): Set to "notice" by default.
|
||||
# WebUI logging syslog priority.
|
||||
# paperless_webui_log_tag(str): Set to "paperless-webui" by default.
|
||||
# paperless_webui_log_tag (str): Set to "paperless-webui" by default.
|
||||
# WebUI logging syslog tag.
|
||||
# paperless_webui_restart_delay(int): Set to "5" by default.
|
||||
# paperless_webui_listen_address (str): Set to "127.0.0.1" by default.
|
||||
# IP address to listen on.
|
||||
# paperless_webui_listen_port (int): Set to "8000" by default.
|
||||
# Port to listen on.
|
||||
# paperless_webui_restart_delay (int): Set to "5" by default.
|
||||
# WebUI automatic restart delay in
|
||||
# seconds.
|
||||
# paperless_webui_secret_key(str): Set to
|
||||
# paperless_webui_secret_key (str): Set to
|
||||
# "%%PREFIX%%/etc/paperless_secret_key"
|
||||
# by default. Load PAPERLESS_SECRET_KEY
|
||||
# from this file from start, in case it
|
||||
|
|
@ -36,7 +42,8 @@
|
|||
name="paperless_webui"
|
||||
rcvar="${name}_enable"
|
||||
|
||||
# Set defaults
|
||||
# read configuration and set defaults
|
||||
load_rc_config "$name"
|
||||
paperless_webui_enable=${paperless_webui_enable:-"NO"}
|
||||
paperless_webui_daemon_user=${paperless_webui_user:-"paperless"}
|
||||
paperless_webui_log_facility=${paperless_webui_log_facility:-"daemon"}
|
||||
|
|
@ -87,5 +94,4 @@ paperless_webui_prestart()
|
|||
fi
|
||||
}
|
||||
|
||||
load_rc_config ${name}
|
||||
run_rc_command "$1"
|
||||
|
|
|
|||
|
|
@ -11,11 +11,13 @@
|
|||
# paperless_worker_enable (bool): Set to "NO" by default.
|
||||
# Set it to "YES" to enable
|
||||
# paperless_worker
|
||||
# paperless_worker_log_facility(str): Set to "daemon" by default.
|
||||
# paperless_worker_user (str): Set to "paperless" by default.
|
||||
# User to run worker.
|
||||
# paperless_worker_log_facility (str): Set to "daemon" by default.
|
||||
# Worker logging syslog facility.
|
||||
# paperless_worker_log_priority(str): Set to "notice" by default.
|
||||
# paperless_worker_log_priority (str): Set to "notice" by default.
|
||||
# Worker logging syslog priority.
|
||||
# paperless_worker_log_tag(str): Set to "paperless-worker" by default.
|
||||
# paperless_worker_log_tag (str): Set to "paperless-worker" by default.
|
||||
# Worker logging syslog tag.
|
||||
|
||||
. /etc/rc.subr
|
||||
|
|
@ -23,7 +25,8 @@
|
|||
name="paperless_worker"
|
||||
rcvar="${name}_enable"
|
||||
|
||||
# Set defaults
|
||||
# read configuration and set defaults
|
||||
load_rc_config "$name"
|
||||
paperless_worker_enable=${paperless_worker_enable:-"NO"}
|
||||
paperless_worker_daemon_user=${paperless_worker_user:-"paperless"}
|
||||
paperless_worker_log_facility=${paperless_worker_log_facility:-"daemon"}
|
||||
|
|
@ -45,5 +48,4 @@ command_args="-cS -u ${paperless_worker_daemon_user} \
|
|||
%%PREFIX%%/bin/celery \
|
||||
--app paperless worker --loglevel INFO --without-mingle --without-gossip"
|
||||
|
||||
load_rc_config ${name}
|
||||
run_rc_command "$1"
|
||||
|
|
|
|||
|
|
@ -50,13 +50,11 @@
|
|||
#PAPERLESS_TASK_WORKERS=1
|
||||
#PAPERLESS_THREADS_PER_WORKER=1
|
||||
#PAPERLESS_TIME_ZONE=UTC
|
||||
@@ -92,3 +106,9 @@
|
||||
@@ -92,3 +106,7 @@
|
||||
|
||||
#PAPERLESS_CONVERT_BINARY=/usr/bin/convert
|
||||
#PAPERLESS_GS_BINARY=/usr/bin/gs
|
||||
+
|
||||
+# NLTK settings
|
||||
+NLTK_DIR=/var/db/paperless/nltk_data
|
||||
+#NLTK_ENABLED=yes
|
||||
+# below defaults to OCR_LANGUAGE
|
||||
+#NLTK_LANGUAGE=
|
||||
+# NLTK settings - see `man 7 paperless`
|
||||
+PAPERLESS_NLTK_DIR=/var/db/paperless/nltkdata
|
||||
+PAPERLESS_ENABLE_NLTK=yes
|
||||
|
|
|
|||
|
|
@ -4,4 +4,25 @@
|
|||
Please see `man paperless-ngx' for details on how to configure paperless.
|
||||
EOM
|
||||
}
|
||||
{ type: upgrade
|
||||
message: <<EOM
|
||||
After each upgrade, please check for differences between your config and
|
||||
the sample configuration installed by the package:
|
||||
|
||||
diff -u %%PREFIX%%/etc/paperless.conf \
|
||||
%%PREFIX%%/etc/paperless.conf.sample
|
||||
|
||||
Then merge in changes as required by editing
|
||||
%%PREFIX%%/etc/paperless.conf.
|
||||
EOM
|
||||
}
|
||||
{ type: upgrade
|
||||
maximum_version: "2.7.2_1"
|
||||
message: <<EOM
|
||||
Configuration of NLTK data has been fixed in port version 2.7.2_1.
|
||||
|
||||
Please modify your %%PREFIX%%/etc/paperless.conf based on
|
||||
`*NLTK*` settings found in %%PREFIX%%/etc/paperless.conf.sample.
|
||||
EOM
|
||||
}
|
||||
]
|
||||
|
|
|
|||
|
|
@ -5094,6 +5094,7 @@
|
|||
SUBDIR += py-mypy_extensions
|
||||
SUBDIR += py-mystic
|
||||
SUBDIR += py-naiveBayesClassifier
|
||||
SUBDIR += py-nanobind
|
||||
SUBDIR += py-nanotime
|
||||
SUBDIR += py-natsort
|
||||
SUBDIR += py-natural
|
||||
|
|
@ -5209,6 +5210,7 @@
|
|||
SUBDIR += py-pbr
|
||||
SUBDIR += py-pbs-installer
|
||||
SUBDIR += py-pcodedmp
|
||||
SUBDIR += py-pcpp
|
||||
SUBDIR += py-pdm
|
||||
SUBDIR += py-pdm-autoexport
|
||||
SUBDIR += py-pdm-backend
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
PORTNAME= bacnet-stack
|
||||
PORTVERSION= 1.3.2
|
||||
PORTVERSION= 1.3.5
|
||||
CATEGORIES= devel
|
||||
|
||||
MAINTAINER= acm@FreeBSD.org
|
||||
|
|
@ -12,7 +12,7 @@ LICENSE_FILE= ${WRKSRC}/license/readme.txt
|
|||
USES= cmake compiler:c++11-lang
|
||||
USE_GITHUB= yes
|
||||
GH_ACCOUNT= bacnet-stack
|
||||
GH_TAGNAME= f64eab7
|
||||
GH_TAGNAME= 8a0a01c
|
||||
|
||||
LDFLAGS= -lm
|
||||
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1704490441
|
||||
SHA256 (bacnet-stack-bacnet-stack-1.3.2-f64eab7_GH0.tar.gz) = 98b9ce700ab52c41396a3e18cca8237537a8d454f531c489311a649cf4435b6f
|
||||
SIZE (bacnet-stack-bacnet-stack-1.3.2-f64eab7_GH0.tar.gz) = 31221176
|
||||
TIMESTAMP = 1713934346
|
||||
SHA256 (bacnet-stack-bacnet-stack-1.3.5-8a0a01c_GH0.tar.gz) = 12bb1b2d8aaa9ee2fbc7f2a703870d1fce6eee6e7ce9774b4822c34afa202fa4
|
||||
SIZE (bacnet-stack-bacnet-stack-1.3.5-8a0a01c_GH0.tar.gz) = 8045059
|
||||
|
|
|
|||
|
|
@ -1,19 +0,0 @@
|
|||
--- CMakeLists.txt.orig 2023-09-29 19:56:28.400665000 -0500
|
||||
+++ CMakeLists.txt 2023-09-29 19:57:28.695265000 -0500
|
||||
@@ -562,6 +562,16 @@
|
||||
ports/bsd/datetime-init.c
|
||||
ports/bsd/mstimer-init.c
|
||||
ports/bsd/stdbool.h)
|
||||
+elseif(${CMAKE_SYSTEM_NAME} STREQUAL "FreeBSD")
|
||||
+ message(STATUS "BACNET: building for FreeBSD")
|
||||
+ set(BACNET_PORT_DIRECTORY_PATH ${CMAKE_CURRENT_LIST_DIR}/ports/bsd)
|
||||
+
|
||||
+ target_sources(${PROJECT_NAME} PRIVATE
|
||||
+ ports/bsd/bacport.h
|
||||
+ ports/bsd/bip-init.c
|
||||
+ ports/bsd/datetime-init.c
|
||||
+ ports/bsd/mstimer-init.c
|
||||
+ ports/bsd/stdbool.h)
|
||||
endif()
|
||||
|
||||
target_include_directories(${PROJECT_NAME} PUBLIC
|
||||
|
|
@ -16,7 +16,6 @@ include/bacnet/bacdevobjpropref.h
|
|||
include/bacnet/bacenum.h
|
||||
include/bacnet/bacerror.h
|
||||
include/bacnet/bacint.h
|
||||
include/bacnet/bacnet_stack_exports.h
|
||||
include/bacnet/bacprop.h
|
||||
include/bacnet/bacpropstates.h
|
||||
include/bacnet/bacreal.h
|
||||
|
|
@ -28,6 +27,7 @@ include/bacnet/basic/bbmd6/h_bbmd6.h
|
|||
include/bacnet/basic/bbmd6/vmac.h
|
||||
include/bacnet/basic/binding/address.h
|
||||
include/bacnet/basic/client/bac-data.h
|
||||
include/bacnet/basic/client/bac-discover.h
|
||||
include/bacnet/basic/client/bac-rw.h
|
||||
include/bacnet/basic/client/bac-task.h
|
||||
include/bacnet/basic/npdu/h_npdu.h
|
||||
|
|
@ -45,8 +45,10 @@ include/bacnet/basic/object/ao.h
|
|||
include/bacnet/basic/object/av.h
|
||||
include/bacnet/basic/object/bacfile.h
|
||||
include/bacnet/basic/object/bi.h
|
||||
include/bacnet/basic/object/blo.h
|
||||
include/bacnet/basic/object/bo.h
|
||||
include/bacnet/basic/object/bv.h
|
||||
include/bacnet/basic/object/calendar.h
|
||||
include/bacnet/basic/object/channel.h
|
||||
include/bacnet/basic/object/color_object.h
|
||||
include/bacnet/basic/object/color_temperature.h
|
||||
|
|
@ -58,6 +60,7 @@ include/bacnet/basic/object/iv.h
|
|||
include/bacnet/basic/object/lc.h
|
||||
include/bacnet/basic/object/lo.h
|
||||
include/bacnet/basic/object/lsp.h
|
||||
include/bacnet/basic/object/lsz.h
|
||||
include/bacnet/basic/object/ms-input.h
|
||||
include/bacnet/basic/object/mso.h
|
||||
include/bacnet/basic/object/msv.h
|
||||
|
|
@ -67,6 +70,7 @@ include/bacnet/basic/object/objects.h
|
|||
include/bacnet/basic/object/osv.h
|
||||
include/bacnet/basic/object/piv.h
|
||||
include/bacnet/basic/object/schedule.h
|
||||
include/bacnet/basic/object/time_value.h
|
||||
include/bacnet/basic/object/trendlog.h
|
||||
include/bacnet/basic/service/h_alarm_ack.h
|
||||
include/bacnet/basic/service/h_apdu.h
|
||||
|
|
@ -130,7 +134,10 @@ include/bacnet/basic/service/s_whois.h
|
|||
include/bacnet/basic/service/s_wp.h
|
||||
include/bacnet/basic/service/s_wpm.h
|
||||
include/bacnet/basic/services.h
|
||||
include/bacnet/basic/sys/bacnet_stack_exports.h
|
||||
include/bacnet/basic/sys/bigend.h
|
||||
include/bacnet/basic/sys/bits.h
|
||||
include/bacnet/basic/sys/bytes.h
|
||||
include/bacnet/basic/sys/color_rgb.h
|
||||
include/bacnet/basic/sys/days.h
|
||||
include/bacnet/basic/sys/debug.h
|
||||
|
|
@ -145,14 +152,14 @@ include/bacnet/basic/sys/ringbuf.h
|
|||
include/bacnet/basic/sys/sbuf.h
|
||||
include/bacnet/basic/tsm/tsm.h
|
||||
include/bacnet/basic/ucix/ucix.h
|
||||
include/bacnet/bits.h
|
||||
include/bacnet/bytes.h
|
||||
include/bacnet/calendar_entry.h
|
||||
include/bacnet/config.h
|
||||
include/bacnet/cov.h
|
||||
include/bacnet/create_object.h
|
||||
include/bacnet/credential_authentication_factor.h
|
||||
include/bacnet/dailyschedule.h
|
||||
include/bacnet/datalink/arcnet.h
|
||||
include/bacnet/datalink/automac.h
|
||||
include/bacnet/datalink/bacsec.h
|
||||
include/bacnet/datalink/bip.h
|
||||
include/bacnet/datalink/bip6.h
|
||||
|
|
@ -190,6 +197,7 @@ include/bacnet/readrange.h
|
|||
include/bacnet/reject.h
|
||||
include/bacnet/rp.h
|
||||
include/bacnet/rpm.h
|
||||
include/bacnet/special_event.h
|
||||
include/bacnet/timestamp.h
|
||||
include/bacnet/timesync.h
|
||||
include/bacnet/version.h
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
PORTNAME= caliper
|
||||
DISTVERSIONPREFIX= v
|
||||
DISTVERSION= 2.10.0
|
||||
DISTVERSION= 2.11.0
|
||||
CATEGORIES= devel
|
||||
|
||||
MAINTAINER= yuri@FreeBSD.org
|
||||
|
|
@ -10,9 +10,12 @@ WWW= https://software.llnl.gov/Caliper/
|
|||
LICENSE= BSD3CLAUSE
|
||||
LICENSE_FILE= ${WRKSRC}/LICENSE
|
||||
|
||||
USES= cmake:testing compiler:c++11-lib
|
||||
USES= cmake:testing compiler:c++11-lib python shebangfix
|
||||
USE_LDCONFIG= yes
|
||||
|
||||
SHEBANG_FILES= python/cali2traceevent \
|
||||
python/cali2traceevent.py
|
||||
|
||||
USE_GITHUB= yes
|
||||
GH_ACCOUNT= LLNL
|
||||
GH_PROJECT= Caliper
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1690431304
|
||||
SHA256 (LLNL-Caliper-v2.10.0_GH0.tar.gz) = 14c4fb5edd5e67808d581523b4f8f05ace8549698c0e90d84b53171a77f58565
|
||||
SIZE (LLNL-Caliper-v2.10.0_GH0.tar.gz) = 2061047
|
||||
TIMESTAMP = 1713940220
|
||||
SHA256 (LLNL-Caliper-v2.11.0_GH0.tar.gz) = b86b733cbb73495d5f3fe06e6a9885ec77365c8aa9195e7654581180adc2217c
|
||||
SIZE (LLNL-Caliper-v2.11.0_GH0.tar.gz) = 2069525
|
||||
|
|
|
|||
|
|
@ -1,5 +1,7 @@
|
|||
bin/cali-query
|
||||
bin/cali-stat
|
||||
bin/cali2traceevent
|
||||
bin/cali2traceevent.py
|
||||
include/caliper/Annotation.h
|
||||
include/caliper/AnnotationBinding.h
|
||||
include/caliper/BufferedRegionProfile.h
|
||||
|
|
@ -21,37 +23,25 @@ include/caliper/cali_macros.h
|
|||
include/caliper/caliper-config.h
|
||||
include/caliper/common/Attribute.h
|
||||
include/caliper/common/CaliperMetadataAccessInterface.h
|
||||
include/caliper/common/CompressedSnapshotRecord.h
|
||||
include/caliper/common/Entry.h
|
||||
include/caliper/common/Log.h
|
||||
include/caliper/common/Node.h
|
||||
include/caliper/common/NodeBuffer.h
|
||||
include/caliper/common/OutputStream.h
|
||||
include/caliper/common/RuntimeConfig.h
|
||||
include/caliper/common/SnapshotBuffer.h
|
||||
include/caliper/common/SnapshotTextFormatter.h
|
||||
include/caliper/common/StringConverter.h
|
||||
include/caliper/common/Variant.h
|
||||
include/caliper/common/c-util/unitfmt.h
|
||||
include/caliper/common/c-util/vlenc.h
|
||||
include/caliper/common/cali_types.h
|
||||
include/caliper/common/cali_variant.h
|
||||
include/caliper/common/util/callback.hpp
|
||||
include/caliper/common/util/lockfree-tree.hpp
|
||||
include/caliper/common/util/spinlock.hpp
|
||||
include/caliper/common/util/split.hpp
|
||||
include/caliper/common/callback.hpp
|
||||
include/caliper/common/lockfree-tree.hpp
|
||||
include/caliper/reader/Aggregator.h
|
||||
include/caliper/reader/CalQLParser.h
|
||||
include/caliper/reader/CaliReader.h
|
||||
include/caliper/reader/CaliWriter.h
|
||||
include/caliper/reader/CaliperMetadataDB.h
|
||||
include/caliper/reader/Expand.h
|
||||
include/caliper/reader/FlatExclusiveRegionProfile.h
|
||||
include/caliper/reader/FlatInclusiveRegionProfile.h
|
||||
include/caliper/reader/FormatProcessor.h
|
||||
include/caliper/reader/Formatter.h
|
||||
include/caliper/reader/JsonFormatter.h
|
||||
include/caliper/reader/JsonSplitFormatter.h
|
||||
include/caliper/reader/NestedExclusiveRegionProfile.h
|
||||
include/caliper/reader/NestedInclusiveRegionProfile.h
|
||||
include/caliper/reader/Preprocessor.h
|
||||
|
|
@ -59,10 +49,6 @@ include/caliper/reader/QueryProcessor.h
|
|||
include/caliper/reader/QuerySpec.h
|
||||
include/caliper/reader/RecordProcessor.h
|
||||
include/caliper/reader/RecordSelector.h
|
||||
include/caliper/reader/SnapshotTree.h
|
||||
include/caliper/reader/TableFormatter.h
|
||||
include/caliper/reader/TreeFormatter.h
|
||||
include/caliper/reader/UserFormatter.h
|
||||
include/caliper/tools-util/Args.h
|
||||
include/caliper/typesCaliper.h
|
||||
include/caliper/wrapAnnotation.h
|
||||
|
|
@ -70,16 +56,20 @@ include/caliper/wrapBufferedRegionProfile.h
|
|||
include/caliper/wrapCaliper.h
|
||||
include/caliper/wrapConfigManager.h
|
||||
include/caliper/wrapScopeAnnotation.h
|
||||
lib/libcaliper-serial.so
|
||||
lib/libcaliper-serial.so.2
|
||||
lib/libcaliper-serial.so.2.10.0
|
||||
lib/caliper/caliperreader/__init__.py
|
||||
lib/caliper/caliperreader/caliperreader.py
|
||||
lib/caliper/caliperreader/caliperstreamreader.py
|
||||
lib/caliper/caliperreader/metadatadb.py
|
||||
lib/caliper/caliperreader/readererror.py
|
||||
lib/caliper/caliperreader/version.py
|
||||
lib/libcaliper-tools-util.so
|
||||
lib/libcaliper-tools-util.so.2
|
||||
lib/libcaliper-tools-util.so.2.10.0
|
||||
lib/libcaliper-tools-util.so.2.11.0
|
||||
lib/libcaliper.so
|
||||
lib/libcaliper.so.2
|
||||
lib/libcaliper.so.2.10.0
|
||||
lib/libcaliper.so.2.11.0
|
||||
libdata/pkgconfig/caliper.pc
|
||||
share/cmake/caliper/caliper-config-version.cmake
|
||||
share/cmake/caliper/caliper-config.cmake
|
||||
share/cmake/caliper/caliper-targets-%%CMAKE_BUILD_TYPE%%.cmake
|
||||
share/cmake/caliper/caliper-targets.cmake
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
--- CMakeLists.txt.orig 2024-04-04 17:50:01 UTC
|
||||
--- CMakeLists.txt.orig 2024-04-04 16:29:33 UTC
|
||||
+++ CMakeLists.txt
|
||||
@@ -102,7 +102,7 @@ unset(NATIVE_ARCH)
|
||||
check_type_size("long" SIZEOF_LONG)
|
||||
|
|
@ -9,3 +9,12 @@
|
|||
if(CMAKE_SIZEOF_VOID_P EQUAL 8)
|
||||
set(NATIVE_ARCH x86_64)
|
||||
set(HOST_X86_64 1)
|
||||
@@ -139,7 +139,7 @@ elseif(CMAKE_SYSTEM_PROCESSOR MATCHES "aarch64")
|
||||
set(NATIVE_ARCH arm8)
|
||||
set(HOST_ARM8 1)
|
||||
set(ARCH_FILE arm8)
|
||||
-elseif(CMAKE_SYSTEM_PROCESSOR MATCHES "ppc64le")
|
||||
+elseif(CMAKE_SYSTEM_PROCESSOR MATCHES "ppc64le|powerpc64le")
|
||||
set(NATIVE_ARCH ppc64le)
|
||||
set(HOST_PPC64LE 1)
|
||||
set(ARCH_FILE ppc64le)
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
PORTNAME= fossil
|
||||
PORTVERSION= 2.23
|
||||
PORTVERSION= 2.24
|
||||
DISTVERSIONPREFIX= src-
|
||||
PORTREVISION= 1
|
||||
PORTREVISION= 0
|
||||
PORTEPOCH= 2
|
||||
CATEGORIES= devel www
|
||||
MASTER_SITES= https://fossil-scm.org/home/tarball/version-${PORTVERSION}/
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1698915363
|
||||
SHA256 (fossil-src-2.23.tar.gz) = a94aec2609331cd6890c6725b55aea43041011863f3d84fdc380415af75233e4
|
||||
SIZE (fossil-src-2.23.tar.gz) = 6799177
|
||||
TIMESTAMP = 1713882963
|
||||
SHA256 (fossil-src-2.24.tar.gz) = e6f5a559369bf16baf539e69e6d0cea5a6410efa9a6e7f160c7a4932080413be
|
||||
SIZE (fossil-src-2.24.tar.gz) = 6904302
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
PORTNAME= gitaly
|
||||
DISTVERSIONPREFIX= v
|
||||
DISTVERSION= 16.11.0
|
||||
DISTVERSION= 16.11.1
|
||||
CATEGORIES= devel
|
||||
|
||||
MAINTAINER= mfechner@FreeBSD.org
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
TIMESTAMP = 1713634052
|
||||
SHA256 (go/devel_gitaly/gitaly-v16.11.0/go.mod) = 701cdacc7cfef68f40611c56a42b322cd4ddce5d2ad0508d51e43013adca7388
|
||||
SIZE (go/devel_gitaly/gitaly-v16.11.0/go.mod) = 11024
|
||||
SHA256 (go/devel_gitaly/gitaly-v16.11.0/gitaly-v16.11.0.tar.bz2) = 7e0eb6de98e855db4e455a5b6493f6bf26c475f740aa615ef79686a6d786cb57
|
||||
SIZE (go/devel_gitaly/gitaly-v16.11.0/gitaly-v16.11.0.tar.bz2) = 2607295
|
||||
TIMESTAMP = 1713982836
|
||||
SHA256 (go/devel_gitaly/gitaly-v16.11.1/go.mod) = 701cdacc7cfef68f40611c56a42b322cd4ddce5d2ad0508d51e43013adca7388
|
||||
SIZE (go/devel_gitaly/gitaly-v16.11.1/go.mod) = 11024
|
||||
SHA256 (go/devel_gitaly/gitaly-v16.11.1/gitaly-v16.11.1.tar.bz2) = 99d565a0ba2d819ec1e3a92ccff6b559fc15b1f58513cd0f3f49ffbb01d99ed4
|
||||
SIZE (go/devel_gitaly/gitaly-v16.11.1/gitaly-v16.11.1.tar.bz2) = 2607377
|
||||
|
|
|
|||
|
|
@ -1,6 +1,7 @@
|
|||
PORTNAME= gitlab-runner
|
||||
DISTVERSIONPREFIX= v
|
||||
DISTVERSION= 16.11.0
|
||||
PORTREVISION= 1
|
||||
CATEGORIES= devel
|
||||
MASTER_SITES= https://gitlab-runner-downloads.s3.amazonaws.com/master/docker/:dockerx64 \
|
||||
https://gitlab-runner-downloads.s3.amazonaws.com/master/docker/:dockerarm
|
||||
|
|
@ -27,7 +28,7 @@ USE_GITLAB= yes
|
|||
GL_ACCOUNT= gitlab-org
|
||||
USE_RC_SUBR= gitlab_runner
|
||||
|
||||
GITBRANCH= 16-10-stable
|
||||
GITBRANCH= 16-11-stable
|
||||
GO_MODULE= gitlab.com/gitlab-org/gitlab-runner
|
||||
|
||||
_BUILD_DATE= $$(date -u +%Y-%m-%dT%H:%M:%S%z)
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
PORTNAME= gitu
|
||||
DISTVERSIONPREFIX= v
|
||||
DISTVERSION= 0.19.1
|
||||
DISTVERSION= 0.19.2
|
||||
CATEGORIES= devel
|
||||
|
||||
MAINTAINER= yuri@FreeBSD.org
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
TIMESTAMP = 1713765935
|
||||
TIMESTAMP = 1714121462
|
||||
SHA256 (rust/crates/ahash-0.8.11.crate) = e89da841a80418a9b391ebaea17f5c112ffaaa96f621d2c285b5174da76b9011
|
||||
SIZE (rust/crates/ahash-0.8.11.crate) = 43607
|
||||
SHA256 (rust/crates/aho-corasick-1.1.3.crate) = 8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916
|
||||
|
|
@ -441,5 +441,5 @@ SHA256 (rust/crates/zerocopy-0.7.32.crate) = 74d4d3961e53fa4c9a25a8637fc2bfaf259
|
|||
SIZE (rust/crates/zerocopy-0.7.32.crate) = 151096
|
||||
SHA256 (rust/crates/zerocopy-derive-0.7.32.crate) = 9ce1b18ccd8e73a9321186f97e46f9f04b778851177567b1975109d26a08d2a6
|
||||
SIZE (rust/crates/zerocopy-derive-0.7.32.crate) = 37623
|
||||
SHA256 (altsem-gitu-v0.19.1_GH0.tar.gz) = b99cc5ed1b4293d6be77629629d173cdd3ad99aac9b022d55779ea96159cc152
|
||||
SIZE (altsem-gitu-v0.19.1_GH0.tar.gz) = 3911815
|
||||
SHA256 (altsem-gitu-v0.19.2_GH0.tar.gz) = e7d6f44410bc6cca77ee37afb00ad97c5e83018a62a9d6483ef3999b1f5d8799
|
||||
SIZE (altsem-gitu-v0.19.2_GH0.tar.gz) = 3910914
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
PORTNAME= glaze
|
||||
DISTVERSIONPREFIX= v
|
||||
DISTVERSION= 2.5.4
|
||||
DISTVERSION= 2.5.5
|
||||
CATEGORIES= devel textproc
|
||||
|
||||
MAINTAINER= yuri@FreeBSD.org
|
||||
|
|
@ -20,7 +20,8 @@ USES= cmake:testing compiler:c++11-lang eigen:3 localbase
|
|||
USE_GITHUB= yes
|
||||
GH_ACCOUNT= stephenberry
|
||||
|
||||
CMAKE_OFF= BUILD_TESTING
|
||||
CMAKE_OFF= BUILD_TESTING \
|
||||
glaze_DEVELOPER_MODE
|
||||
CMAKE_ARGS= -DFETCHCONTENT_TRY_FIND_PACKAGE_MODE=ALWAYS
|
||||
CMAKE_TESTING_ARGS= -DFREEBSD_STAGEDIR_PREFIX=${STAGEDIR}${DATADIR}
|
||||
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1713858854
|
||||
SHA256 (stephenberry-glaze-v2.5.4_GH0.tar.gz) = 0c10cfdbd92068c0cc1e99210a3eaa29bce9339261aaced60cb7e85398603346
|
||||
SIZE (stephenberry-glaze-v2.5.4_GH0.tar.gz) = 297065
|
||||
TIMESTAMP = 1713940282
|
||||
SHA256 (stephenberry-glaze-v2.5.5_GH0.tar.gz) = a7ce5c976afde4d2c09077d954b720a3af2adf0cb6742bb88605008b6887b971
|
||||
SIZE (stephenberry-glaze-v2.5.5_GH0.tar.gz) = 297881
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
PORTNAME= hyprwayland-scanner
|
||||
DISTVERSIONPREFIX= v
|
||||
DISTVERSION= 0.2.0
|
||||
DISTVERSION= 0.3.1
|
||||
CATEGORIES= devel
|
||||
|
||||
MAINTAINER= jbeich@FreeBSD.org
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1713777765
|
||||
SHA256 (hyprwm-hyprwayland-scanner-v0.2.0_GH0.tar.gz) = 67e9419ee8bfeb2a9658a4703fc3c20eb0e59232f3ce1451a4fe65c5d9212af5
|
||||
SIZE (hyprwm-hyprwayland-scanner-v0.2.0_GH0.tar.gz) = 8694
|
||||
TIMESTAMP = 1713989318
|
||||
SHA256 (hyprwm-hyprwayland-scanner-v0.3.1_GH0.tar.gz) = 22b4412d2023cf9987317dc25462d8bcd55a877c959b9e0a680247a2acd3dfee
|
||||
SIZE (hyprwm-hyprwayland-scanner-v0.3.1_GH0.tar.gz) = 8832
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
PORTNAME= jenkins
|
||||
PORTVERSION= 2.454
|
||||
PORTVERSION= 2.455
|
||||
CATEGORIES= devel java
|
||||
MASTER_SITES= https://get.jenkins.io/war/${PORTVERSION}/
|
||||
DISTNAME= jenkins
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1713278940
|
||||
SHA256 (jenkins/2.454/jenkins.war) = 42d86e0d8494ecb21aa2c115943078e6efb6787340bbcbda4f4c1733d59fc3c1
|
||||
SIZE (jenkins/2.454/jenkins.war) = 93687808
|
||||
TIMESTAMP = 1714090053
|
||||
SHA256 (jenkins/2.455/jenkins.war) = 74f7676f4b3213df1c9248151b3cce11ec8d2cd8419d7efd2e4e74b2361b193d
|
||||
SIZE (jenkins/2.455/jenkins.war) = 93326467
|
||||
|
|
|
|||
|
|
@ -1,5 +1,6 @@
|
|||
PORTNAME= solid
|
||||
DISTVERSION= ${KDE_FRAMEWORKS_VERSION}
|
||||
KDE_FRAMEWORKS_VERSION= 6.1.1
|
||||
CATEGORIES= devel kde kde-frameworks
|
||||
|
||||
COMMENT= Desktop hardware abstraction
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1713022595
|
||||
SHA256 (KDE/frameworks/6.1.0/solid-6.1.0.tar.xz) = 074a984b58ef51017ee767548bfce0ca00bb710e88a4ab00bc9020a46cfa4262
|
||||
SIZE (KDE/frameworks/6.1.0/solid-6.1.0.tar.xz) = 306472
|
||||
TIMESTAMP = 1713974734
|
||||
SHA256 (KDE/frameworks/6.1.1/solid-6.1.1.tar.xz) = 9c2bdbfb66af2171051840a790efdcf82b09ade013f62614c22b744ae748fe86
|
||||
SIZE (KDE/frameworks/6.1.1/solid-6.1.1.tar.xz) = 305916
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
PORTNAME= libphonenumber
|
||||
DISTVERSIONPREFIX= v
|
||||
DISTVERSION= 8.13.34
|
||||
DISTVERSION= 8.13.35
|
||||
CATEGORIES= devel
|
||||
|
||||
MAINTAINER= kde@FreeBSD.org
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1712770242
|
||||
SHA256 (google-libphonenumber-v8.13.34_GH0.tar.gz) = 812a36cd5c9349c01eb7f6daea836fe8f9829a6a4baa8299fae82140290f632b
|
||||
SIZE (google-libphonenumber-v8.13.34_GH0.tar.gz) = 13726733
|
||||
TIMESTAMP = 1713975126
|
||||
SHA256 (google-libphonenumber-v8.13.35_GH0.tar.gz) = dc3dc9aaa48510f424f8b9ec520c0451a7dafdc46c800d1ba3701f82e6dab078
|
||||
SIZE (google-libphonenumber-v8.13.35_GH0.tar.gz) = 13727464
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
PORTNAME= lib${GH_PROJECT}
|
||||
PORTVERSION= 19.0.2
|
||||
PORTVERSION= 20.0.0
|
||||
DISTVERSIONPREFIX= v
|
||||
CATEGORIES= devel
|
||||
|
||||
|
|
@ -53,7 +53,7 @@ CARGO_CRATES= addr2line-0.21.0 \
|
|||
bstr-1.6.0 \
|
||||
bumpalo-3.14.0 \
|
||||
byteorder-1.4.3 \
|
||||
bytes-1.4.0 \
|
||||
bytes-1.5.0 \
|
||||
bytesize-1.3.0 \
|
||||
camino-1.1.4 \
|
||||
cap-fs-ext-3.0.0 \
|
||||
|
|
@ -67,6 +67,7 @@ CARGO_CRATES= addr2line-0.21.0 \
|
|||
cargo-platform-0.1.2 \
|
||||
cargo_metadata-0.18.1 \
|
||||
cast-0.3.0 \
|
||||
castaway-0.2.2 \
|
||||
cc-1.0.83 \
|
||||
cfg-if-1.0.0 \
|
||||
ciborium-0.2.0 \
|
||||
|
|
@ -78,6 +79,7 @@ CARGO_CRATES= addr2line-0.21.0 \
|
|||
clap_lex-0.5.0 \
|
||||
codespan-reporting-0.11.1 \
|
||||
colorchoice-1.0.0 \
|
||||
compact_str-0.7.1 \
|
||||
console-0.15.0 \
|
||||
core-foundation-sys-0.8.6 \
|
||||
cpp_demangle-0.4.3 \
|
||||
|
|
@ -105,6 +107,7 @@ CARGO_CRATES= addr2line-0.21.0 \
|
|||
env_logger-0.10.0 \
|
||||
equivalent-1.0.1 \
|
||||
errno-0.3.8 \
|
||||
escape8259-0.5.2 \
|
||||
fallible-iterator-0.3.0 \
|
||||
fastrand-2.0.1 \
|
||||
fd-lock-4.0.2 \
|
||||
|
|
@ -112,10 +115,11 @@ CARGO_CRATES= addr2line-0.21.0 \
|
|||
filecheck-0.5.0 \
|
||||
filetime-0.2.16 \
|
||||
flagset-0.4.3 \
|
||||
flate2-1.0.28 \
|
||||
fnv-1.0.7 \
|
||||
form_urlencoded-1.1.0 \
|
||||
fs-set-times-0.20.1 \
|
||||
fslock-0.1.8 \
|
||||
fslock-0.2.1 \
|
||||
futures-0.3.27 \
|
||||
futures-channel-0.3.27 \
|
||||
futures-core-0.3.27 \
|
||||
|
|
@ -128,7 +132,6 @@ CARGO_CRATES= addr2line-0.21.0 \
|
|||
generic-array-0.14.5 \
|
||||
getrandom-0.2.9 \
|
||||
gimli-0.28.0 \
|
||||
glob-0.3.0 \
|
||||
h2-0.4.2 \
|
||||
half-1.8.2 \
|
||||
hashbrown-0.12.3 \
|
||||
|
|
@ -136,6 +139,7 @@ CARGO_CRATES= addr2line-0.21.0 \
|
|||
hashbrown-0.14.0 \
|
||||
heck-0.4.0 \
|
||||
hermit-abi-0.3.0 \
|
||||
home-0.5.9 \
|
||||
http-1.0.0 \
|
||||
http-body-1.0.0 \
|
||||
http-body-util-0.1.0 \
|
||||
|
|
@ -169,10 +173,12 @@ CARGO_CRATES= addr2line-0.21.0 \
|
|||
libfuzzer-sys-0.4.5 \
|
||||
libloading-0.8.1 \
|
||||
libm-0.2.7 \
|
||||
libtest-mimic-0.7.0 \
|
||||
linux-raw-sys-0.4.12 \
|
||||
listenfd-1.0.0 \
|
||||
log-0.4.17 \
|
||||
mach-0.3.2 \
|
||||
mach2-0.4.2 \
|
||||
matchers-0.1.0 \
|
||||
maybe-owned-0.3.4 \
|
||||
memchr-2.5.0 \
|
||||
|
|
@ -186,14 +192,17 @@ CARGO_CRATES= addr2line-0.21.0 \
|
|||
num_cpus-1.16.0 \
|
||||
number_prefix-0.3.0 \
|
||||
object-0.32.0 \
|
||||
object-0.33.0 \
|
||||
ocaml-boxroot-sys-0.2.0 \
|
||||
ocaml-interop-0.8.8 \
|
||||
ocaml-sys-0.22.3 \
|
||||
once_cell-1.18.0 \
|
||||
once_cell-1.19.0 \
|
||||
oorandom-11.1.3 \
|
||||
openvino-0.6.0 \
|
||||
openvino-finder-0.6.0 \
|
||||
openvino-sys-0.6.0 \
|
||||
ort-2.0.0-rc.0 \
|
||||
ort-sys-2.0.0-rc.0 \
|
||||
overload-0.1.1 \
|
||||
paste-1.0.7 \
|
||||
percent-encoding-2.2.0 \
|
||||
|
|
@ -227,17 +236,18 @@ CARGO_CRATES= addr2line-0.21.0 \
|
|||
regex-syntax-0.6.25 \
|
||||
regex-syntax-0.7.4 \
|
||||
region-2.2.0 \
|
||||
ring-0.16.20 \
|
||||
ring-0.17.3 \
|
||||
rustc-demangle-0.1.21 \
|
||||
rustc-hash-1.1.0 \
|
||||
rustix-0.38.31 \
|
||||
rustls-0.21.6 \
|
||||
rustls-webpki-0.101.4 \
|
||||
rustls-0.22.2 \
|
||||
rustls-pki-types-1.3.1 \
|
||||
rustls-webpki-0.102.2 \
|
||||
rustversion-1.0.14 \
|
||||
rusty-fork-0.3.0 \
|
||||
ryu-1.0.9 \
|
||||
same-file-1.0.6 \
|
||||
scopeguard-1.1.0 \
|
||||
sct-0.7.0 \
|
||||
semver-1.0.17 \
|
||||
serde-1.0.188 \
|
||||
serde_derive-1.0.188 \
|
||||
|
|
@ -255,16 +265,17 @@ CARGO_CRATES= addr2line-0.21.0 \
|
|||
socket2-0.4.9 \
|
||||
souper-ir-2.1.0 \
|
||||
spdx-0.10.1 \
|
||||
spin-0.5.2 \
|
||||
spin-0.9.4 \
|
||||
sptr-0.3.2 \
|
||||
stable_deref_trait-1.2.0 \
|
||||
static_assertions-1.1.0 \
|
||||
strsim-0.10.0 \
|
||||
subtle-2.5.0 \
|
||||
symbolic_expressions-5.0.3 \
|
||||
syn-1.0.92 \
|
||||
syn-2.0.32 \
|
||||
system-interface-0.27.1 \
|
||||
tar-0.4.40 \
|
||||
target-lexicon-0.12.13 \
|
||||
tempfile-3.8.0 \
|
||||
termcolor-1.1.3 \
|
||||
|
|
@ -273,12 +284,13 @@ CARGO_CRATES= addr2line-0.21.0 \
|
|||
thiserror-1.0.43 \
|
||||
thiserror-impl-1.0.43 \
|
||||
thread_local-1.1.4 \
|
||||
threadpool-1.8.1 \
|
||||
tinytemplate-1.2.1 \
|
||||
tinyvec-1.6.0 \
|
||||
tinyvec_macros-0.1.0 \
|
||||
tokio-1.29.1 \
|
||||
tokio-macros-2.1.0 \
|
||||
tokio-rustls-0.24.0 \
|
||||
tokio-rustls-0.25.0 \
|
||||
tokio-util-0.7.4 \
|
||||
toml-0.8.10 \
|
||||
toml_datetime-0.6.5 \
|
||||
|
|
@ -296,11 +308,12 @@ CARGO_CRATES= addr2line-0.21.0 \
|
|||
unicode-segmentation-1.10.1 \
|
||||
unicode-width-0.1.9 \
|
||||
unicode-xid-0.2.3 \
|
||||
untrusted-0.7.1 \
|
||||
untrusted-0.9.0 \
|
||||
ureq-2.9.6 \
|
||||
url-2.3.1 \
|
||||
utf8parse-0.2.1 \
|
||||
uuid-1.0.0 \
|
||||
v8-0.74.1 \
|
||||
v8-0.86.0 \
|
||||
valuable-0.1.0 \
|
||||
version_check-0.9.4 \
|
||||
wait-timeout-0.2.0 \
|
||||
|
|
@ -314,27 +327,29 @@ CARGO_CRATES= addr2line-0.21.0 \
|
|||
wasm-bindgen-macro-support-0.2.87 \
|
||||
wasm-bindgen-shared-0.2.87 \
|
||||
wasm-encoder-0.201.0 \
|
||||
wasm-encoder-0.202.0 \
|
||||
wasm-metadata-0.201.0 \
|
||||
wasm-mutate-0.201.0 \
|
||||
wasm-smith-0.201.0 \
|
||||
wasm-metadata-0.202.0 \
|
||||
wasm-mutate-0.202.0 \
|
||||
wasm-smith-0.202.0 \
|
||||
wasmi-0.31.1 \
|
||||
wasmi_arena-0.4.1 \
|
||||
wasmi_core-0.13.0 \
|
||||
wasmparser-0.201.0 \
|
||||
wasmparser-0.202.0 \
|
||||
wasmparser-nostd-0.100.1 \
|
||||
wasmprinter-0.201.0 \
|
||||
wasmprinter-0.202.0 \
|
||||
wast-35.0.2 \
|
||||
wast-201.0.0 \
|
||||
wat-1.201.0 \
|
||||
wast-202.0.0 \
|
||||
wat-1.202.0 \
|
||||
web-sys-0.3.57 \
|
||||
webpki-roots-0.25.2 \
|
||||
which-4.2.5 \
|
||||
webpki-roots-0.26.1 \
|
||||
which-5.0.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 \
|
||||
windows-0.52.0 \
|
||||
windows-core-0.51.1 \
|
||||
windows-core-0.52.0 \
|
||||
windows-sys-0.48.0 \
|
||||
windows-sys-0.52.0 \
|
||||
|
|
@ -356,28 +371,33 @@ CARGO_CRATES= addr2line-0.21.0 \
|
|||
windows_x86_64_msvc-0.52.0 \
|
||||
winnow-0.5.39 \
|
||||
winx-0.36.3 \
|
||||
wit-bindgen-0.20.0 \
|
||||
wit-bindgen-core-0.20.0 \
|
||||
wit-bindgen-rust-0.20.0 \
|
||||
wit-bindgen-rust-macro-0.20.0 \
|
||||
wit-bindgen-0.22.0 \
|
||||
wit-bindgen-core-0.22.0 \
|
||||
wit-bindgen-rt-0.22.0 \
|
||||
wit-bindgen-rust-0.22.0 \
|
||||
wit-bindgen-rust-macro-0.22.0 \
|
||||
wit-component-0.201.0 \
|
||||
wit-component-0.202.0 \
|
||||
wit-parser-0.201.0 \
|
||||
wit-parser-0.202.0 \
|
||||
witx-0.9.1 \
|
||||
xattr-1.2.0 \
|
||||
zerocopy-0.7.32 \
|
||||
zerocopy-derive-0.7.32 \
|
||||
zeroize-1.7.0 \
|
||||
zstd-0.13.0 \
|
||||
zstd-safe-7.0.0 \
|
||||
zstd-sys-2.0.9+zstd.1.5.5
|
||||
|
||||
GH_TUPLE= WebAssembly:wasm-c-api:c9d3128:wasm_c_api/crates/c-api/wasm-c-api \
|
||||
WebAssembly:wasi-nn:e2310b8:wasi_nn/crates/wasi-nn/spec \
|
||||
WebAssembly:testsuite:5a1a590:testsuite/tests/spec_testsuite \
|
||||
GH_TUPLE= WebAssembly:wasi-nn:e2310b8:wasi_nn/crates/wasi-nn/spec \
|
||||
WebAssembly:testsuite:16a839d:testsuite/tests/spec_testsuite \
|
||||
WebAssembly:wasi-testsuite:09517e5:wasi_testsuite/tests/wasi_testsuite/wasi-common \
|
||||
WebAssembly:wasi-threads:e1893c0:wasi_threads/tests/wasi_testsuite/wasi-threads
|
||||
|
||||
PLIST_FILES= include/doc-wasm.h \
|
||||
include/wasi.h \
|
||||
include/wasm.h \
|
||||
include/wasm.hh \
|
||||
include/wasmtime.h \
|
||||
include/wasmtime/async.h \
|
||||
include/wasmtime/config.h \
|
||||
|
|
@ -391,6 +411,7 @@ PLIST_FILES= include/doc-wasm.h \
|
|||
include/wasmtime/memory.h \
|
||||
include/wasmtime/module.h \
|
||||
include/wasmtime/profiling.h \
|
||||
include/wasmtime/sharedmemory.h \
|
||||
include/wasmtime/store.h \
|
||||
include/wasmtime/table.h \
|
||||
include/wasmtime/trap.h \
|
||||
|
|
@ -400,7 +421,7 @@ PLIST_FILES= include/doc-wasm.h \
|
|||
|
||||
do-install:
|
||||
${MKDIR} ${STAGEDIR}${PREFIX}/include/wasmtime
|
||||
${INSTALL_DATA} ${WRKSRC}/crates/c-api/wasm-c-api/include/wasm.h ${STAGEDIR}${PREFIX}/include
|
||||
${INSTALL_DATA} ${WRKSRC}/crates/c-api/include/wasm.h ${STAGEDIR}${PREFIX}/include
|
||||
(cd ${WRKSRC}/crates/c-api/include && ${COPYTREE_SHARE} . ${STAGEDIR}${PREFIX}/include)
|
||||
${INSTALL_LIB} ${WRKDIR}/target/*-unknown-freebsd/release/libwasmtime.a ${STAGEDIR}${PREFIX}/lib
|
||||
${INSTALL_LIB} ${WRKDIR}/target/*-unknown-freebsd/release/libwasmtime.so ${STAGEDIR}${PREFIX}/lib
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
TIMESTAMP = 1713017749
|
||||
TIMESTAMP = 1713907723
|
||||
SHA256 (rust/crates/addr2line-0.21.0.crate) = 8a30b2e23b9e17a9f90641c7ab1549cd9b44f296d3ccbf309d2863cfe398a0cb
|
||||
SIZE (rust/crates/addr2line-0.21.0.crate) = 40807
|
||||
SHA256 (rust/crates/adler-1.0.2.crate) = f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe
|
||||
|
|
@ -53,8 +53,8 @@ SHA256 (rust/crates/bumpalo-3.14.0.crate) = 7f30e7476521f6f8af1a1c4c0b8cc94f0bee
|
|||
SIZE (rust/crates/bumpalo-3.14.0.crate) = 82400
|
||||
SHA256 (rust/crates/byteorder-1.4.3.crate) = 14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610
|
||||
SIZE (rust/crates/byteorder-1.4.3.crate) = 22512
|
||||
SHA256 (rust/crates/bytes-1.4.0.crate) = 89b2fd2a0dcf38d7971e2194b6b6eebab45ae01067456a7fd93d5547a61b70be
|
||||
SIZE (rust/crates/bytes-1.4.0.crate) = 58080
|
||||
SHA256 (rust/crates/bytes-1.5.0.crate) = a2bd12c1caf447e69cd4528f47f94d203fd2582878ecb9e9465484c4148a8223
|
||||
SIZE (rust/crates/bytes-1.5.0.crate) = 58909
|
||||
SHA256 (rust/crates/bytesize-1.3.0.crate) = a3e368af43e418a04d52505cf3dbc23dda4e3407ae2fa99fd0e4f308ce546acc
|
||||
SIZE (rust/crates/bytesize-1.3.0.crate) = 10164
|
||||
SHA256 (rust/crates/camino-1.1.4.crate) = c530edf18f37068ac2d977409ed5cd50d53d73bc653c7647b48eb78976ac9ae2
|
||||
|
|
@ -81,6 +81,8 @@ SHA256 (rust/crates/cargo_metadata-0.18.1.crate) = 2d886547e41f740c616ae73108f6e
|
|||
SIZE (rust/crates/cargo_metadata-0.18.1.crate) = 24535
|
||||
SHA256 (rust/crates/cast-0.3.0.crate) = 37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5
|
||||
SIZE (rust/crates/cast-0.3.0.crate) = 11452
|
||||
SHA256 (rust/crates/castaway-0.2.2.crate) = 8a17ed5635fc8536268e5d4de1e22e81ac34419e5f052d4d51f4e01dcc263fcc
|
||||
SIZE (rust/crates/castaway-0.2.2.crate) = 11091
|
||||
SHA256 (rust/crates/cc-1.0.83.crate) = f1174fb0b6ec23863f8b971027804a42614e347eafb0a95bf0b12cdae21fc4d0
|
||||
SIZE (rust/crates/cc-1.0.83.crate) = 68343
|
||||
SHA256 (rust/crates/cfg-if-1.0.0.crate) = baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd
|
||||
|
|
@ -103,6 +105,8 @@ SHA256 (rust/crates/codespan-reporting-0.11.1.crate) = 3538270d33cc669650c4b0938
|
|||
SIZE (rust/crates/codespan-reporting-0.11.1.crate) = 48963
|
||||
SHA256 (rust/crates/colorchoice-1.0.0.crate) = acbf1af155f9b9ef647e42cdc158db4b64a1b61f743629225fde6f3e0be2a7c7
|
||||
SIZE (rust/crates/colorchoice-1.0.0.crate) = 6857
|
||||
SHA256 (rust/crates/compact_str-0.7.1.crate) = f86b9c4c00838774a6d902ef931eff7470720c51d90c2e32cfe15dc304737b3f
|
||||
SIZE (rust/crates/compact_str-0.7.1.crate) = 57246
|
||||
SHA256 (rust/crates/console-0.15.0.crate) = a28b32d32ca44b70c3e4acd7db1babf555fa026e385fb95f18028f88848b3c31
|
||||
SIZE (rust/crates/console-0.15.0.crate) = 23507
|
||||
SHA256 (rust/crates/core-foundation-sys-0.8.6.crate) = 06ea2b9bc92be3c2baa9334a323ebca2d6f074ff852cd1d7b11064035cd3868f
|
||||
|
|
@ -157,6 +161,8 @@ SHA256 (rust/crates/equivalent-1.0.1.crate) = 5443807d6dff69373d433ab9ef5378ad8d
|
|||
SIZE (rust/crates/equivalent-1.0.1.crate) = 6615
|
||||
SHA256 (rust/crates/errno-0.3.8.crate) = a258e46cdc063eb8519c00b9fc845fc47bcfca4130e2f08e88665ceda8474245
|
||||
SIZE (rust/crates/errno-0.3.8.crate) = 10645
|
||||
SHA256 (rust/crates/escape8259-0.5.2.crate) = ba4f4911e3666fcd7826997b4745c8224295a6f3072f1418c3067b97a67557ee
|
||||
SIZE (rust/crates/escape8259-0.5.2.crate) = 5462
|
||||
SHA256 (rust/crates/fallible-iterator-0.3.0.crate) = 2acce4a10f12dc2fb14a218589d4f1f62ef011b2d0cc4b3cb1bba8e94da14649
|
||||
SIZE (rust/crates/fallible-iterator-0.3.0.crate) = 19639
|
||||
SHA256 (rust/crates/fastrand-2.0.1.crate) = 25cbce373ec4653f1a01a31e8a5e5ec0c622dc27ff9c4e6606eefef5cbbed4a5
|
||||
|
|
@ -171,14 +177,16 @@ SHA256 (rust/crates/filetime-0.2.16.crate) = c0408e2626025178a6a7f7ffc05a25bc471
|
|||
SIZE (rust/crates/filetime-0.2.16.crate) = 14502
|
||||
SHA256 (rust/crates/flagset-0.4.3.crate) = cda653ca797810c02f7ca4b804b40b8b95ae046eb989d356bce17919a8c25499
|
||||
SIZE (rust/crates/flagset-0.4.3.crate) = 13054
|
||||
SHA256 (rust/crates/flate2-1.0.28.crate) = 46303f565772937ffe1d394a4fac6f411c6013172fadde9dcdb1e147a086940e
|
||||
SIZE (rust/crates/flate2-1.0.28.crate) = 73690
|
||||
SHA256 (rust/crates/fnv-1.0.7.crate) = 3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1
|
||||
SIZE (rust/crates/fnv-1.0.7.crate) = 11266
|
||||
SHA256 (rust/crates/form_urlencoded-1.1.0.crate) = a9c384f161156f5260c24a097c56119f9be8c798586aecc13afbcbe7b7e26bf8
|
||||
SIZE (rust/crates/form_urlencoded-1.1.0.crate) = 8734
|
||||
SHA256 (rust/crates/fs-set-times-0.20.1.crate) = 033b337d725b97690d86893f9de22b67b80dcc4e9ad815f348254c38119db8fb
|
||||
SIZE (rust/crates/fs-set-times-0.20.1.crate) = 14607
|
||||
SHA256 (rust/crates/fslock-0.1.8.crate) = 57eafdd0c16f57161105ae1b98a1238f97645f2f588438b2949c99a2af9616bf
|
||||
SIZE (rust/crates/fslock-0.1.8.crate) = 12015
|
||||
SHA256 (rust/crates/fslock-0.2.1.crate) = 04412b8935272e3a9bae6f48c7bfff74c2911f60525404edfdd28e49884c3bfb
|
||||
SIZE (rust/crates/fslock-0.2.1.crate) = 13463
|
||||
SHA256 (rust/crates/futures-0.3.27.crate) = 531ac96c6ff5fd7c62263c5e3c67a603af4fcaee2e1a0ae5565ba3a11e69e549
|
||||
SIZE (rust/crates/futures-0.3.27.crate) = 52816
|
||||
SHA256 (rust/crates/futures-channel-0.3.27.crate) = 164713a5a0dcc3e7b4b1ed7d3b433cabc18025386f9339346e8daf15963cf7ac
|
||||
|
|
@ -203,8 +211,6 @@ SHA256 (rust/crates/getrandom-0.2.9.crate) = c85e1d9ab2eadba7e5040d4e09cbd6d072b
|
|||
SIZE (rust/crates/getrandom-0.2.9.crate) = 34457
|
||||
SHA256 (rust/crates/gimli-0.28.0.crate) = 6fb8d784f27acf97159b40fc4db5ecd8aa23b9ad5ef69cdd136d3bc80665f0c0
|
||||
SIZE (rust/crates/gimli-0.28.0.crate) = 269277
|
||||
SHA256 (rust/crates/glob-0.3.0.crate) = 9b919933a397b79c37e33b77bb2aa3dc8eb6e165ad809e58ff75bc7db2e34574
|
||||
SIZE (rust/crates/glob-0.3.0.crate) = 18724
|
||||
SHA256 (rust/crates/h2-0.4.2.crate) = 31d030e59af851932b72ceebadf4a2b5986dba4c3b99dd2493f8273a0f151943
|
||||
SIZE (rust/crates/h2-0.4.2.crate) = 168108
|
||||
SHA256 (rust/crates/half-1.8.2.crate) = eabb4a44450da02c90444cf74558da904edde8fb4e9035a9a6a4e15445af0bd7
|
||||
|
|
@ -219,6 +225,8 @@ SHA256 (rust/crates/heck-0.4.0.crate) = 2540771e65fc8cb83cd6e8a237f70c319bd5c29f
|
|||
SIZE (rust/crates/heck-0.4.0.crate) = 11161
|
||||
SHA256 (rust/crates/hermit-abi-0.3.0.crate) = 856b5cb0902c2b6d65d5fd97dfa30f9b70c7538e770b98eab5ed52d8db923e01
|
||||
SIZE (rust/crates/hermit-abi-0.3.0.crate) = 15200
|
||||
SHA256 (rust/crates/home-0.5.9.crate) = e3d1354bf6b7235cb4a0576c2619fd4ed18183f689b12b006a0ee7329eeff9a5
|
||||
SIZE (rust/crates/home-0.5.9.crate) = 8760
|
||||
SHA256 (rust/crates/http-1.0.0.crate) = b32afd38673a8016f7c9ae69e5af41a58f81b1d31689040f2f1959594ce194ea
|
||||
SIZE (rust/crates/http-1.0.0.crate) = 100981
|
||||
SHA256 (rust/crates/http-body-1.0.0.crate) = 1cac85db508abc24a2e48553ba12a996e87244a0395ce011e62b37158745d643
|
||||
|
|
@ -285,6 +293,8 @@ SHA256 (rust/crates/libloading-0.8.1.crate) = c571b676ddfc9a8c12f1f3d3085a7b1639
|
|||
SIZE (rust/crates/libloading-0.8.1.crate) = 27893
|
||||
SHA256 (rust/crates/libm-0.2.7.crate) = f7012b1bbb0719e1097c47611d3898568c546d597c2e74d66f6087edd5233ff4
|
||||
SIZE (rust/crates/libm-0.2.7.crate) = 115688
|
||||
SHA256 (rust/crates/libtest-mimic-0.7.0.crate) = 7f0f4c6f44ecfd52e8b443f2ad18f2b996540135771561283c2352ce56a1c70b
|
||||
SIZE (rust/crates/libtest-mimic-0.7.0.crate) = 26695
|
||||
SHA256 (rust/crates/linux-raw-sys-0.4.12.crate) = c4cd1a83af159aa67994778be9070f0ae1bd732942279cabb14f86f986a21456
|
||||
SIZE (rust/crates/linux-raw-sys-0.4.12.crate) = 1465800
|
||||
SHA256 (rust/crates/listenfd-1.0.0.crate) = 14e4fcc00ff6731d94b70e16e71f43bda62883461f31230742e3bc6dddf12988
|
||||
|
|
@ -293,6 +303,8 @@ SHA256 (rust/crates/log-0.4.17.crate) = abb12e687cfb44aa40f41fc3978ef76448f9b603
|
|||
SIZE (rust/crates/log-0.4.17.crate) = 38028
|
||||
SHA256 (rust/crates/mach-0.3.2.crate) = b823e83b2affd8f40a9ee8c29dbc56404c1e34cd2710921f2801e2cf29527afa
|
||||
SIZE (rust/crates/mach-0.3.2.crate) = 19611
|
||||
SHA256 (rust/crates/mach2-0.4.2.crate) = 19b955cdeb2a02b9117f121ce63aa52d08ade45de53e48fe6a38b39c10f6f709
|
||||
SIZE (rust/crates/mach2-0.4.2.crate) = 21889
|
||||
SHA256 (rust/crates/matchers-0.1.0.crate) = 8263075bb86c5a1b1427b5ae862e8889656f126e9f77c484496e8b47cf5c5558
|
||||
SIZE (rust/crates/matchers-0.1.0.crate) = 6948
|
||||
SHA256 (rust/crates/maybe-owned-0.3.4.crate) = 4facc753ae494aeb6e3c22f839b158aebd4f9270f55cd3c79906c45476c47ab4
|
||||
|
|
@ -319,14 +331,16 @@ SHA256 (rust/crates/number_prefix-0.3.0.crate) = 17b02fc0ff9a9e4b35b3342880f48e8
|
|||
SIZE (rust/crates/number_prefix-0.3.0.crate) = 6291
|
||||
SHA256 (rust/crates/object-0.32.0.crate) = 77ac5bbd07aea88c60a577a1ce218075ffd59208b2d7ca97adf9bfc5aeb21ebe
|
||||
SIZE (rust/crates/object-0.32.0.crate) = 275335
|
||||
SHA256 (rust/crates/object-0.33.0.crate) = d8dd6c0cdf9429bce006e1362bfce61fa1bfd8c898a643ed8d2b471934701d3d
|
||||
SIZE (rust/crates/object-0.33.0.crate) = 310775
|
||||
SHA256 (rust/crates/ocaml-boxroot-sys-0.2.0.crate) = 5186393bfbee4ce2bc5bbb82beafb77e85c1d0a557e3cfc8c8a0d63d7845fed5
|
||||
SIZE (rust/crates/ocaml-boxroot-sys-0.2.0.crate) = 12152
|
||||
SHA256 (rust/crates/ocaml-interop-0.8.8.crate) = 2e01e08412a7e072a90a225d2ae49a2860aeea853ce673bc63891dbf86aed063
|
||||
SIZE (rust/crates/ocaml-interop-0.8.8.crate) = 29915
|
||||
SHA256 (rust/crates/ocaml-sys-0.22.3.crate) = 73ec6ca7d41458442627435afb8f4671e83fd642e8a560171d671a1f679aa3cf
|
||||
SIZE (rust/crates/ocaml-sys-0.22.3.crate) = 8550
|
||||
SHA256 (rust/crates/once_cell-1.18.0.crate) = dd8b5dd2ae5ed71462c540258bedcb51965123ad7e7ccf4b9a8cafaa4a63576d
|
||||
SIZE (rust/crates/once_cell-1.18.0.crate) = 32969
|
||||
SHA256 (rust/crates/once_cell-1.19.0.crate) = 3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92
|
||||
SIZE (rust/crates/once_cell-1.19.0.crate) = 33046
|
||||
SHA256 (rust/crates/oorandom-11.1.3.crate) = 0ab1bc2a289d34bd04a330323ac98a1b4bc82c9d9fcb1e66b63caa84da26b575
|
||||
SIZE (rust/crates/oorandom-11.1.3.crate) = 10068
|
||||
SHA256 (rust/crates/openvino-0.6.0.crate) = 24bd3a7ef39968e6a4f1b1206c1c876f9bd50cf739ccbcd69f8539bbac5dcc7a
|
||||
|
|
@ -335,6 +349,10 @@ SHA256 (rust/crates/openvino-finder-0.6.0.crate) = 05d234d1394a413ea8adaf0c40806
|
|||
SIZE (rust/crates/openvino-finder-0.6.0.crate) = 5361
|
||||
SHA256 (rust/crates/openvino-sys-0.6.0.crate) = 44c98acf37fc84ad9d7da4dc6c18f0f60ad209b43a6f555be01f9003d0a2a43d
|
||||
SIZE (rust/crates/openvino-sys-0.6.0.crate) = 22546
|
||||
SHA256 (rust/crates/ort-2.0.0-rc.0.crate) = f8e5caf4eb2ead4bc137c3ff4e347940e3e556ceb11a4180627f04b63d7342dd
|
||||
SIZE (rust/crates/ort-2.0.0-rc.0.crate) = 56350
|
||||
SHA256 (rust/crates/ort-sys-2.0.0-rc.0.crate) = f48b5623df2187e0db543ecb2032a6a999081086b7ffddd318000c00b23ace46
|
||||
SIZE (rust/crates/ort-sys-2.0.0-rc.0.crate) = 29602
|
||||
SHA256 (rust/crates/overload-0.1.1.crate) = b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39
|
||||
SIZE (rust/crates/overload-0.1.1.crate) = 24439
|
||||
SHA256 (rust/crates/paste-1.0.7.crate) = 0c520e05135d6e763148b6426a837e239041653ba7becd2e538c076c738025fc
|
||||
|
|
@ -401,18 +419,22 @@ SHA256 (rust/crates/regex-syntax-0.7.4.crate) = e5ea92a5b6195c6ef2a0295ea818b312
|
|||
SIZE (rust/crates/regex-syntax-0.7.4.crate) = 343365
|
||||
SHA256 (rust/crates/region-2.2.0.crate) = 877e54ea2adcd70d80e9179344c97f93ef0dffd6b03e1f4529e6e83ab2fa9ae0
|
||||
SIZE (rust/crates/region-2.2.0.crate) = 13395
|
||||
SHA256 (rust/crates/ring-0.16.20.crate) = 3053cf52e236a3ed746dfc745aa9cacf1b791d846bdaf412f60a8d7d6e17c8fc
|
||||
SIZE (rust/crates/ring-0.16.20.crate) = 5082615
|
||||
SHA256 (rust/crates/ring-0.17.3.crate) = 9babe80d5c16becf6594aa32ad2be8fe08498e7ae60b77de8df700e67f191d7e
|
||||
SIZE (rust/crates/ring-0.17.3.crate) = 4146357
|
||||
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/rustix-0.38.31.crate) = 6ea3e1a662af26cd7a3ba09c0297a31af215563ecf42817c98df621387f4e949
|
||||
SIZE (rust/crates/rustix-0.38.31.crate) = 375443
|
||||
SHA256 (rust/crates/rustls-0.21.6.crate) = 1d1feddffcfcc0b33f5c6ce9a29e341e4cd59c3f78e7ee45f4a40c038b1d6cbb
|
||||
SIZE (rust/crates/rustls-0.21.6.crate) = 282907
|
||||
SHA256 (rust/crates/rustls-webpki-0.101.4.crate) = 7d93931baf2d282fff8d3a532bbfd7653f734643161b87e3e01e59a04439bf0d
|
||||
SIZE (rust/crates/rustls-webpki-0.101.4.crate) = 164324
|
||||
SHA256 (rust/crates/rustls-0.22.2.crate) = e87c9956bd9807afa1f77e0f7594af32566e830e088a5576d27c5b6f30f49d41
|
||||
SIZE (rust/crates/rustls-0.22.2.crate) = 332080
|
||||
SHA256 (rust/crates/rustls-pki-types-1.3.1.crate) = 5ede67b28608b4c60685c7d54122d4400d90f62b40caee7700e700380a390fa8
|
||||
SIZE (rust/crates/rustls-pki-types-1.3.1.crate) = 21637
|
||||
SHA256 (rust/crates/rustls-webpki-0.102.2.crate) = faaa0a62740bedb9b2ef5afa303da42764c012f743917351dc9a237ea1663610
|
||||
SIZE (rust/crates/rustls-webpki-0.102.2.crate) = 196881
|
||||
SHA256 (rust/crates/rustversion-1.0.14.crate) = 7ffc183a10b4478d04cbbbfc96d0873219d962dd5accaff2ffbd4ceb7df837f4
|
||||
SIZE (rust/crates/rustversion-1.0.14.crate) = 17261
|
||||
SHA256 (rust/crates/rusty-fork-0.3.0.crate) = cb3dcc6e454c328bb824492db107ab7c0ae8fcffe4ad210136ef014458c1bc4f
|
||||
SIZE (rust/crates/rusty-fork-0.3.0.crate) = 19881
|
||||
SHA256 (rust/crates/ryu-1.0.9.crate) = 73b4b750c782965c211b42f022f59af1fbceabdd026623714f104152f1ec149f
|
||||
|
|
@ -421,8 +443,6 @@ SHA256 (rust/crates/same-file-1.0.6.crate) = 93fc1dc3aaa9bfed95e02e6eadabb4baf7e
|
|||
SIZE (rust/crates/same-file-1.0.6.crate) = 10183
|
||||
SHA256 (rust/crates/scopeguard-1.1.0.crate) = d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd
|
||||
SIZE (rust/crates/scopeguard-1.1.0.crate) = 11470
|
||||
SHA256 (rust/crates/sct-0.7.0.crate) = d53dcdb7c9f8158937a7981b48accfd39a43af418591a5d008c7b22b5e1b7ca4
|
||||
SIZE (rust/crates/sct-0.7.0.crate) = 27502
|
||||
SHA256 (rust/crates/semver-1.0.17.crate) = bebd363326d05ec3e2f532ab7660680f3b02130d780c299bca73469d521bc0ed
|
||||
SIZE (rust/crates/semver-1.0.17.crate) = 29685
|
||||
SHA256 (rust/crates/serde-1.0.188.crate) = cf9e0fcba69a370eed61bcf2b728575f726b50b55cba78064753d708ddc7549e
|
||||
|
|
@ -457,8 +477,6 @@ SHA256 (rust/crates/souper-ir-2.1.0.crate) = a50c18ce33988e1973003afbaa66e6a465a
|
|||
SIZE (rust/crates/souper-ir-2.1.0.crate) = 17732
|
||||
SHA256 (rust/crates/spdx-0.10.1.crate) = 2971cb691ca629f46174f73b1f95356c5617f89b4167f04107167c3dccb8dd89
|
||||
SIZE (rust/crates/spdx-0.10.1.crate) = 936816
|
||||
SHA256 (rust/crates/spin-0.5.2.crate) = 6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d
|
||||
SIZE (rust/crates/spin-0.5.2.crate) = 12004
|
||||
SHA256 (rust/crates/spin-0.9.4.crate) = 7f6002a767bff9e83f8eeecf883ecb8011875a21ae8da43bffb817a57e78cc09
|
||||
SIZE (rust/crates/spin-0.9.4.crate) = 30180
|
||||
SHA256 (rust/crates/sptr-0.3.2.crate) = 3b9b39299b249ad65f3b7e96443bad61c02ca5cd3589f46cb6d610a0fd6c0d6a
|
||||
|
|
@ -469,6 +487,8 @@ SHA256 (rust/crates/static_assertions-1.1.0.crate) = a2eb9349b6444b326872e140eb1
|
|||
SIZE (rust/crates/static_assertions-1.1.0.crate) = 18480
|
||||
SHA256 (rust/crates/strsim-0.10.0.crate) = 73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623
|
||||
SIZE (rust/crates/strsim-0.10.0.crate) = 11355
|
||||
SHA256 (rust/crates/subtle-2.5.0.crate) = 81cdd64d312baedb58e21336b31bc043b77e01cc99033ce76ef539f78e965ebc
|
||||
SIZE (rust/crates/subtle-2.5.0.crate) = 13909
|
||||
SHA256 (rust/crates/symbolic_expressions-5.0.3.crate) = 7c68d531d83ec6c531150584c42a4290911964d5f0d79132b193b67252a23b71
|
||||
SIZE (rust/crates/symbolic_expressions-5.0.3.crate) = 14864
|
||||
SHA256 (rust/crates/syn-1.0.92.crate) = 7ff7c592601f11445996a06f8ad0c27f094a58857c2f89e97974ab9235b92c52
|
||||
|
|
@ -477,6 +497,8 @@ SHA256 (rust/crates/syn-2.0.32.crate) = 239814284fd6f1a4ffe4ca893952cdd93c224b6a
|
|||
SIZE (rust/crates/syn-2.0.32.crate) = 242504
|
||||
SHA256 (rust/crates/system-interface-0.27.1.crate) = 9aef1f9d4c1dbdd1cb3a63be9efd2f04d8ddbc919d46112982c76818ffc2f1a7
|
||||
SIZE (rust/crates/system-interface-0.27.1.crate) = 31787
|
||||
SHA256 (rust/crates/tar-0.4.40.crate) = b16afcea1f22891c49a00c751c7b63b2233284064f11a200fc624137c51e2ddb
|
||||
SIZE (rust/crates/tar-0.4.40.crate) = 51844
|
||||
SHA256 (rust/crates/target-lexicon-0.12.13.crate) = 69758bda2e78f098e4ccb393021a0963bb3442eac05f135c30f61b7370bbafae
|
||||
SIZE (rust/crates/target-lexicon-0.12.13.crate) = 25424
|
||||
SHA256 (rust/crates/tempfile-3.8.0.crate) = cb94d2f3cc536af71caac6b6fcebf65860b347e7ce0cc9ebe8f70d3e521054ef
|
||||
|
|
@ -493,6 +515,8 @@ SHA256 (rust/crates/thiserror-impl-1.0.43.crate) = 463fe12d7993d3b327787537ce8dd
|
|||
SIZE (rust/crates/thiserror-impl-1.0.43.crate) = 15062
|
||||
SHA256 (rust/crates/thread_local-1.1.4.crate) = 5516c27b78311c50bf42c071425c560ac799b11c30b31f87e3081965fe5e0180
|
||||
SIZE (rust/crates/thread_local-1.1.4.crate) = 13106
|
||||
SHA256 (rust/crates/threadpool-1.8.1.crate) = d050e60b33d41c19108b32cea32164033a9013fe3b46cbd4457559bfbf77afaa
|
||||
SIZE (rust/crates/threadpool-1.8.1.crate) = 14408
|
||||
SHA256 (rust/crates/tinytemplate-1.2.1.crate) = be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc
|
||||
SIZE (rust/crates/tinytemplate-1.2.1.crate) = 26490
|
||||
SHA256 (rust/crates/tinyvec-1.6.0.crate) = 87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50
|
||||
|
|
@ -503,8 +527,8 @@ SHA256 (rust/crates/tokio-1.29.1.crate) = 532826ff75199d5833b9d2c5fe410f29235e25
|
|||
SIZE (rust/crates/tokio-1.29.1.crate) = 693627
|
||||
SHA256 (rust/crates/tokio-macros-2.1.0.crate) = 630bdcf245f78637c13ec01ffae6187cca34625e8c63150d424b59e55af2675e
|
||||
SIZE (rust/crates/tokio-macros-2.1.0.crate) = 11472
|
||||
SHA256 (rust/crates/tokio-rustls-0.24.0.crate) = e0d409377ff5b1e3ca6437aa86c1eb7d40c134bfec254e44c830defa92669db5
|
||||
SIZE (rust/crates/tokio-rustls-0.24.0.crate) = 25460
|
||||
SHA256 (rust/crates/tokio-rustls-0.25.0.crate) = 775e0c0f0adb3a2f22a00c4745d728b479985fc15ee7ca6a2608388c5569860f
|
||||
SIZE (rust/crates/tokio-rustls-0.25.0.crate) = 30541
|
||||
SHA256 (rust/crates/tokio-util-0.7.4.crate) = 0bb2e075f03b3d66d8d8785356224ba688d2906a371015e225beeb65ca92c740
|
||||
SIZE (rust/crates/tokio-util-0.7.4.crate) = 93424
|
||||
SHA256 (rust/crates/toml-0.8.10.crate) = 9a9aad4a3066010876e8dcf5a8a06e70a558751117a145c6ce2b82c2e2054290
|
||||
|
|
@ -539,16 +563,18 @@ SHA256 (rust/crates/unicode-width-0.1.9.crate) = 3ed742d4ea2bd1176e236172c8429aa
|
|||
SIZE (rust/crates/unicode-width-0.1.9.crate) = 16745
|
||||
SHA256 (rust/crates/unicode-xid-0.2.3.crate) = 957e51f3646910546462e67d5f7599b9e4fb8acdd304b087a6494730f9eebf04
|
||||
SIZE (rust/crates/unicode-xid-0.2.3.crate) = 15174
|
||||
SHA256 (rust/crates/untrusted-0.7.1.crate) = a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a
|
||||
SIZE (rust/crates/untrusted-0.7.1.crate) = 7924
|
||||
SHA256 (rust/crates/untrusted-0.9.0.crate) = 8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1
|
||||
SIZE (rust/crates/untrusted-0.9.0.crate) = 14447
|
||||
SHA256 (rust/crates/ureq-2.9.6.crate) = 11f214ce18d8b2cbe84ed3aa6486ed3f5b285cf8d8fbdbce9f3f767a724adc35
|
||||
SIZE (rust/crates/ureq-2.9.6.crate) = 113677
|
||||
SHA256 (rust/crates/url-2.3.1.crate) = 0d68c799ae75762b8c3fe375feb6600ef5602c883c5d21eb51c09f22b83c4643
|
||||
SIZE (rust/crates/url-2.3.1.crate) = 72777
|
||||
SHA256 (rust/crates/utf8parse-0.2.1.crate) = 711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a
|
||||
SIZE (rust/crates/utf8parse-0.2.1.crate) = 13435
|
||||
SHA256 (rust/crates/uuid-1.0.0.crate) = 8cfcd319456c4d6ea10087ed423473267e1a071f3bc0aa89f80d60997843c6f0
|
||||
SIZE (rust/crates/uuid-1.0.0.crate) = 48627
|
||||
SHA256 (rust/crates/v8-0.74.1.crate) = 1202e0bd078112bf8d521491560645e1fd6955c4afd975c75b05596a7e7e4eea
|
||||
SIZE (rust/crates/v8-0.74.1.crate) = 20387395
|
||||
SHA256 (rust/crates/v8-0.86.0.crate) = 0d30d72faeef07020ec4428dbfa2909801e5e36becf650c1b49c92b70f6771d8
|
||||
SIZE (rust/crates/v8-0.86.0.crate) = 23502432
|
||||
SHA256 (rust/crates/valuable-0.1.0.crate) = 830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d
|
||||
SIZE (rust/crates/valuable-0.1.0.crate) = 27718
|
||||
SHA256 (rust/crates/version_check-0.9.4.crate) = 49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f
|
||||
|
|
@ -575,12 +601,16 @@ SHA256 (rust/crates/wasm-bindgen-shared-0.2.87.crate) = ca6ad05a4870b2bf5fe99511
|
|||
SIZE (rust/crates/wasm-bindgen-shared-0.2.87.crate) = 7248
|
||||
SHA256 (rust/crates/wasm-encoder-0.201.0.crate) = b9c7d2731df60006819b013f64ccc2019691deccf6e11a1804bc850cd6748f1a
|
||||
SIZE (rust/crates/wasm-encoder-0.201.0.crate) = 50174
|
||||
SHA256 (rust/crates/wasm-encoder-0.202.0.crate) = bfd106365a7f5f7aa3c1916a98cbb3ad477f5ff96ddb130285a91c6e7429e67a
|
||||
SIZE (rust/crates/wasm-encoder-0.202.0.crate) = 50182
|
||||
SHA256 (rust/crates/wasm-metadata-0.201.0.crate) = 0fd83062c17b9f4985d438603cde0a5e8c5c8198201a6937f778b607924c7da2
|
||||
SIZE (rust/crates/wasm-metadata-0.201.0.crate) = 9851
|
||||
SHA256 (rust/crates/wasm-mutate-0.201.0.crate) = e4998a6d2c774d9ead7fd7e4d4c932b78c665ac893fd067ae7e18a62c3c4af71
|
||||
SIZE (rust/crates/wasm-mutate-0.201.0.crate) = 87011
|
||||
SHA256 (rust/crates/wasm-smith-0.201.0.crate) = 61ff53a54a853f174b0df74cdb1553f1451e7bcdc23b26b1379f664ee1913d1a
|
||||
SIZE (rust/crates/wasm-smith-0.201.0.crate) = 87289
|
||||
SHA256 (rust/crates/wasm-metadata-0.202.0.crate) = 094aea3cb90e09f16ee25a4c0e324b3e8c934e7fd838bfa039aef5352f44a917
|
||||
SIZE (rust/crates/wasm-metadata-0.202.0.crate) = 9851
|
||||
SHA256 (rust/crates/wasm-mutate-0.202.0.crate) = 8d82e837ffc4f88364b43e9aa2c415b27fd6526b7809bcfe83c5a974db7578b7
|
||||
SIZE (rust/crates/wasm-mutate-0.202.0.crate) = 86988
|
||||
SHA256 (rust/crates/wasm-smith-0.202.0.crate) = 4cf58fe4c46def4c0cdab0818cf0e663db7a018473795349996c48335d5d1163
|
||||
SIZE (rust/crates/wasm-smith-0.202.0.crate) = 88661
|
||||
SHA256 (rust/crates/wasmi-0.31.1.crate) = acfc1e384a36ca532d070a315925887247f3c7e23567e23e0ac9b1c5d6b8bf76
|
||||
SIZE (rust/crates/wasmi-0.31.1.crate) = 136538
|
||||
SHA256 (rust/crates/wasmi_arena-0.4.1.crate) = 104a7f73be44570cac297b3035d76b169d6599637631cf37a1703326a0727073
|
||||
|
|
@ -589,22 +619,24 @@ SHA256 (rust/crates/wasmi_core-0.13.0.crate) = dcf1a7db34bff95b85c261002720c00c3
|
|||
SIZE (rust/crates/wasmi_core-0.13.0.crate) = 20814
|
||||
SHA256 (rust/crates/wasmparser-0.201.0.crate) = 84e5df6dba6c0d7fafc63a450f1738451ed7a0b52295d83e868218fa286bf708
|
||||
SIZE (rust/crates/wasmparser-0.201.0.crate) = 193177
|
||||
SHA256 (rust/crates/wasmparser-0.202.0.crate) = d6998515d3cf3f8b980ef7c11b29a9b1017d4cf86b99ae93b546992df9931413
|
||||
SIZE (rust/crates/wasmparser-0.202.0.crate) = 193217
|
||||
SHA256 (rust/crates/wasmparser-nostd-0.100.1.crate) = 9157cab83003221bfd385833ab587a039f5d6fa7304854042ba358a3b09e0724
|
||||
SIZE (rust/crates/wasmparser-nostd-0.100.1.crate) = 118245
|
||||
SHA256 (rust/crates/wasmprinter-0.201.0.crate) = a67e66da702706ba08729a78e3c0079085f6bfcb1a62e4799e97bbf728c2c265
|
||||
SIZE (rust/crates/wasmprinter-0.201.0.crate) = 35772
|
||||
SHA256 (rust/crates/wasmprinter-0.202.0.crate) = ab1cc9508685eef9502e787f4d4123745f5651a1e29aec047645d3cac1e2da7a
|
||||
SIZE (rust/crates/wasmprinter-0.202.0.crate) = 36575
|
||||
SHA256 (rust/crates/wast-35.0.2.crate) = 2ef140f1b49946586078353a453a1d28ba90adfc54dde75710bc1931de204d68
|
||||
SIZE (rust/crates/wast-35.0.2.crate) = 90940
|
||||
SHA256 (rust/crates/wast-201.0.0.crate) = 1ef6e1ef34d7da3e2b374fd2b1a9c0227aff6cad596e1b24df9b58d0f6222faa
|
||||
SIZE (rust/crates/wast-201.0.0.crate) = 134183
|
||||
SHA256 (rust/crates/wat-1.201.0.crate) = 453d5b37a45b98dee4f4cb68015fc73634d7883bbef1c65e6e9c78d454cf3f32
|
||||
SIZE (rust/crates/wat-1.201.0.crate) = 9811
|
||||
SHA256 (rust/crates/wast-202.0.0.crate) = 1fbcb11204515c953c9b42ede0a46a1c5e17f82af05c4fae201a8efff1b0f4fe
|
||||
SIZE (rust/crates/wast-202.0.0.crate) = 134129
|
||||
SHA256 (rust/crates/wat-1.202.0.crate) = 4de4b15a47135c56a3573406e9977b9518787a6154459b4842a9b9d3d1684848
|
||||
SIZE (rust/crates/wat-1.202.0.crate) = 9814
|
||||
SHA256 (rust/crates/web-sys-0.3.57.crate) = 7b17e741662c70c8bd24ac5c5b18de314a2c26c32bf8346ee1e6f53de919c283
|
||||
SIZE (rust/crates/web-sys-0.3.57.crate) = 686563
|
||||
SHA256 (rust/crates/webpki-roots-0.25.2.crate) = 14247bb57be4f377dfb94c72830b8ce8fc6beac03cf4bf7b9732eadd414123fc
|
||||
SIZE (rust/crates/webpki-roots-0.25.2.crate) = 250405
|
||||
SHA256 (rust/crates/which-4.2.5.crate) = 5c4fb54e6113b6a8772ee41c3404fb0301ac79604489467e0a9ce1f3e97c24ae
|
||||
SIZE (rust/crates/which-4.2.5.crate) = 9326
|
||||
SHA256 (rust/crates/webpki-roots-0.26.1.crate) = b3de34ae270483955a94f4b21bdaaeb83d508bb84a01435f393818edb0012009
|
||||
SIZE (rust/crates/webpki-roots-0.26.1.crate) = 249748
|
||||
SHA256 (rust/crates/which-5.0.0.crate) = 9bf3ea8596f3a0dd5980b46430f2058dfe2c36a27ccfbb1845d6fbfcd9ba6e14
|
||||
SIZE (rust/crates/which-5.0.0.crate) = 16635
|
||||
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
|
||||
|
|
@ -615,8 +647,6 @@ SHA256 (rust/crates/winapi-x86_64-pc-windows-gnu-0.4.0.crate) = 712e227841d057c1
|
|||
SIZE (rust/crates/winapi-x86_64-pc-windows-gnu-0.4.0.crate) = 2947998
|
||||
SHA256 (rust/crates/windows-0.52.0.crate) = e48a53791691ab099e5e2ad123536d0fff50652600abaf43bbf952894110d0be
|
||||
SIZE (rust/crates/windows-0.52.0.crate) = 11843715
|
||||
SHA256 (rust/crates/windows-core-0.51.1.crate) = f1f8cf84f35d2db49a46868f947758c7a1138116f7fac3bc844f43ade1292e64
|
||||
SIZE (rust/crates/windows-core-0.51.1.crate) = 42364
|
||||
SHA256 (rust/crates/windows-core-0.52.0.crate) = 33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9
|
||||
SIZE (rust/crates/windows-core-0.52.0.crate) = 42154
|
||||
SHA256 (rust/crates/windows-sys-0.48.0.crate) = 677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9
|
||||
|
|
@ -659,38 +689,46 @@ SHA256 (rust/crates/winnow-0.5.39.crate) = 5389a154b01683d28c77f8f68f49dea75f0a4
|
|||
SIZE (rust/crates/winnow-0.5.39.crate) = 159300
|
||||
SHA256 (rust/crates/winx-0.36.3.crate) = f9643b83820c0cd246ecabe5fa454dd04ba4fa67996369466d0747472d337346
|
||||
SIZE (rust/crates/winx-0.36.3.crate) = 13696
|
||||
SHA256 (rust/crates/wit-bindgen-0.20.0.crate) = 39e6058f3ef320faece2d48ab105a278e94bac47df03b04af69c205173e0afcc
|
||||
SIZE (rust/crates/wit-bindgen-0.20.0.crate) = 20358
|
||||
SHA256 (rust/crates/wit-bindgen-core-0.20.0.crate) = 11a8abb3fed5dee9be41aef6609fe2bc4a9d10f82af24fe9b843e885d51ef638
|
||||
SIZE (rust/crates/wit-bindgen-core-0.20.0.crate) = 19410
|
||||
SHA256 (rust/crates/wit-bindgen-rust-0.20.0.crate) = e7c63da73f9dc6b68c6aea864b3e277ddb056ec49bd3e41b2b76bc2165d769a9
|
||||
SIZE (rust/crates/wit-bindgen-rust-0.20.0.crate) = 38644
|
||||
SHA256 (rust/crates/wit-bindgen-rust-macro-0.20.0.crate) = 2adddfe43ab23342715b15225a32b29010f8af91ad9cab7a51a46c5006aea08e
|
||||
SIZE (rust/crates/wit-bindgen-rust-macro-0.20.0.crate) = 5097
|
||||
SHA256 (rust/crates/wit-bindgen-0.22.0.crate) = 288f992ea30e6b5c531b52cdd5f3be81c148554b09ea416f058d16556ba92c27
|
||||
SIZE (rust/crates/wit-bindgen-0.22.0.crate) = 18348
|
||||
SHA256 (rust/crates/wit-bindgen-core-0.22.0.crate) = e85e72719ffbccf279359ad071497e47eb0675fe22106dea4ed2d8a7fcb60ba4
|
||||
SIZE (rust/crates/wit-bindgen-core-0.22.0.crate) = 19503
|
||||
SHA256 (rust/crates/wit-bindgen-rt-0.22.0.crate) = fcb8738270f32a2d6739973cbbb7c1b6dd8959ce515578a6e19165853272ee64
|
||||
SIZE (rust/crates/wit-bindgen-rt-0.22.0.crate) = 2615
|
||||
SHA256 (rust/crates/wit-bindgen-rust-0.22.0.crate) = d8a39a15d1ae2077688213611209849cad40e9e5cccf6e61951a425850677ff3
|
||||
SIZE (rust/crates/wit-bindgen-rust-0.22.0.crate) = 38841
|
||||
SHA256 (rust/crates/wit-bindgen-rust-macro-0.22.0.crate) = d376d3ae5850526dfd00d937faea0d81a06fa18f7ac1e26f386d760f241a8f4b
|
||||
SIZE (rust/crates/wit-bindgen-rust-macro-0.22.0.crate) = 5104
|
||||
SHA256 (rust/crates/wit-component-0.201.0.crate) = 421c0c848a0660a8c22e2fd217929a0191f14476b68962afd2af89fd22e39825
|
||||
SIZE (rust/crates/wit-component-0.201.0.crate) = 173541
|
||||
SHA256 (rust/crates/wit-component-0.202.0.crate) = 0c836b1fd9932de0431c1758d8be08212071b6bba0151f7bac826dbc4312a2a9
|
||||
SIZE (rust/crates/wit-component-0.202.0.crate) = 183707
|
||||
SHA256 (rust/crates/wit-parser-0.201.0.crate) = 196d3ecfc4b759a8573bf86a9b3f8996b304b3732e4c7de81655f875f6efdca6
|
||||
SIZE (rust/crates/wit-parser-0.201.0.crate) = 101526
|
||||
SHA256 (rust/crates/wit-parser-0.202.0.crate) = 744237b488352f4f27bca05a10acb79474415951c450e52ebd0da784c1df2bcc
|
||||
SIZE (rust/crates/wit-parser-0.202.0.crate) = 102081
|
||||
SHA256 (rust/crates/witx-0.9.1.crate) = e366f27a5cabcddb2706a78296a40b8fcc451e1a6aba2fc1d94b4a01bdaaef4b
|
||||
SIZE (rust/crates/witx-0.9.1.crate) = 45928
|
||||
SHA256 (rust/crates/xattr-1.2.0.crate) = 914566e6413e7fa959cc394fb30e563ba80f3541fbd40816d4c05a0fc3f2a0f1
|
||||
SIZE (rust/crates/xattr-1.2.0.crate) = 12777
|
||||
SHA256 (rust/crates/zerocopy-0.7.32.crate) = 74d4d3961e53fa4c9a25a8637fc2bfaf2595b3d3ae34875568a5cf64787716be
|
||||
SIZE (rust/crates/zerocopy-0.7.32.crate) = 151096
|
||||
SHA256 (rust/crates/zerocopy-derive-0.7.32.crate) = 9ce1b18ccd8e73a9321186f97e46f9f04b778851177567b1975109d26a08d2a6
|
||||
SIZE (rust/crates/zerocopy-derive-0.7.32.crate) = 37623
|
||||
SHA256 (rust/crates/zeroize-1.7.0.crate) = 525b4ec142c6b68a2d10f01f7bbf6755599ca3f81ea53b8431b7dd348f5fdb2d
|
||||
SIZE (rust/crates/zeroize-1.7.0.crate) = 19039
|
||||
SHA256 (rust/crates/zstd-0.13.0.crate) = bffb3309596d527cfcba7dfc6ed6052f1d39dfbd7c867aa2e865e4a449c10110
|
||||
SIZE (rust/crates/zstd-0.13.0.crate) = 28911
|
||||
SHA256 (rust/crates/zstd-safe-7.0.0.crate) = 43747c7422e2924c11144d5229878b98180ef8b06cca4ab5af37afc8a8d8ea3e
|
||||
SIZE (rust/crates/zstd-safe-7.0.0.crate) = 20463
|
||||
SHA256 (rust/crates/zstd-sys-2.0.9+zstd.1.5.5.crate) = 9e16efa8a874a0481a574084d34cc26fdb3b99627480f785888deb6386506656
|
||||
SIZE (rust/crates/zstd-sys-2.0.9+zstd.1.5.5.crate) = 728791
|
||||
SHA256 (bytecodealliance-wasmtime-v19.0.2_GH0.tar.gz) = 2c790f045631feb2278ad0c8c8cf774966b46dff1fa541b8004cf5d27feee790
|
||||
SIZE (bytecodealliance-wasmtime-v19.0.2_GH0.tar.gz) = 5041888
|
||||
SHA256 (WebAssembly-wasm-c-api-c9d3128_GH0.tar.gz) = 8387f9baaf5ba5675290c5c1f153eef48bec5098cfd10999fc681c3ed7b90abc
|
||||
SIZE (WebAssembly-wasm-c-api-c9d3128_GH0.tar.gz) = 57016
|
||||
SHA256 (bytecodealliance-wasmtime-v20.0.0_GH0.tar.gz) = 9146c41340ba087b7b7257e53ccaba7ce6fed95b0f410ce7ba6e1b83547c29d5
|
||||
SIZE (bytecodealliance-wasmtime-v20.0.0_GH0.tar.gz) = 9826856
|
||||
SHA256 (WebAssembly-wasi-nn-e2310b8_GH0.tar.gz) = 759251f1c3a4fd25670558d7c384f2aaf19ebbb61a366dc8dd902074314450db
|
||||
SIZE (WebAssembly-wasi-nn-e2310b8_GH0.tar.gz) = 8541
|
||||
SHA256 (WebAssembly-testsuite-5a1a590_GH0.tar.gz) = 1ba353b97fa75379db939b84fba8c4ce19de9f970f3ee84e549cbf368ae2574b
|
||||
SIZE (WebAssembly-testsuite-5a1a590_GH0.tar.gz) = 629534
|
||||
SHA256 (WebAssembly-testsuite-16a839d_GH0.tar.gz) = b76f27c0d18574899aec52f5c3cf2fb6e72b5281f39dc68cfc39e035b28b786e
|
||||
SIZE (WebAssembly-testsuite-16a839d_GH0.tar.gz) = 629814
|
||||
SHA256 (WebAssembly-wasi-testsuite-09517e5_GH0.tar.gz) = db97389d7e04a10f38827d41fce8cfd8451643133ee7423debfafec593e16600
|
||||
SIZE (WebAssembly-wasi-testsuite-09517e5_GH0.tar.gz) = 7679709
|
||||
SHA256 (WebAssembly-wasi-threads-e1893c0_GH0.tar.gz) = 451677e69ee3958fcd8798eeba6975afc3fb13c6dbd5c94b68e9bb2b8c10dfd5
|
||||
|
|
|
|||
|
|
@ -1,6 +1,5 @@
|
|||
PORTNAME= oci-cli
|
||||
DISTVERSION= 3.37.12
|
||||
PORTREVISION= 1
|
||||
DISTVERSION= 3.40.0
|
||||
CATEGORIES= devel
|
||||
MASTER_SITES= PYPI
|
||||
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
||||
|
|
@ -17,21 +16,23 @@ LICENSE_FILE_APACHE20= ${WRKSRC}/LICENSE.txt
|
|||
LICENSE_FILE_UPL= ${WRKSRC}/LICENSE.txt
|
||||
LICENSE_PERMS_UPL= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept
|
||||
|
||||
BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}setuptools>0:devel/py-setuptools@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}wheel>0:devel/py-wheel@${PY_FLAVOR}
|
||||
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}arrow>=1.0.0:devel/py-arrow@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}certifi>0:security/py-certifi@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}click>=8.0.4:devel/py-click@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}python-dateutil>=2.5.3:devel/py-python-dateutil@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}jmespath>=0.10.0:devel/py-jmespath@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}oci>=2.124.0:devel/py-oci@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}oci>=2.126.0:devel/py-oci@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}openssl>=22.1.0:security/py-openssl@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}prompt-toolkit>=3.0.29:devel/py-prompt-toolkit@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}python-dateutil>=2.5.3:devel/py-python-dateutil@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}pytz>=2016.10:devel/py-pytz@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}yaml>=5.4:devel/py-yaml@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}six>=1.15.0:devel/py-six@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}terminaltables>=3.1.0:textproc/py-terminaltables@${PY_FLAVOR}
|
||||
${PYTHON_PKGNAMEPREFIX}terminaltables>=3.1.0:textproc/py-terminaltables@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}yaml>=5.4:devel/py-yaml@${PY_FLAVOR}
|
||||
|
||||
USES= python:3.8-3.11
|
||||
USE_PYTHON= autoplist concurrent cryptography distutils
|
||||
USE_PYTHON= autoplist concurrent cryptography pep517
|
||||
|
||||
NO_ARCH= yes
|
||||
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1709646780
|
||||
SHA256 (oci-cli-3.37.12.tar.gz) = b57f1add04ce914e0b04e7180f3c7093df4123bf7d9b6ee9dee65a994e3b3ce1
|
||||
SIZE (oci-cli-3.37.12.tar.gz) = 16282330
|
||||
TIMESTAMP = 1713865512
|
||||
SHA256 (oci-cli-3.40.0.tar.gz) = 4af46934528a852078f6a57119492b360fea33a5fa761465660aca301ab040d9
|
||||
SIZE (oci-cli-3.40.0.tar.gz) = 16532991
|
||||
|
|
|
|||
12
devel/phasar/files/patch-lib_Pointer_PointsToInfo.cpp
Normal file
12
devel/phasar/files/patch-lib_Pointer_PointsToInfo.cpp
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
- workaround for https://github.com/secure-software-engineering/phasar/issues/718
|
||||
|
||||
--- lib/Pointer/PointsToInfo.cpp.orig 2024-04-26 06:58:43 UTC
|
||||
+++ lib/Pointer/PointsToInfo.cpp
|
||||
@@ -19,6 +19,7 @@
|
||||
|
||||
#include <array>
|
||||
#include <utility>
|
||||
+#include <vector>
|
||||
|
||||
namespace llvm {
|
||||
class Value;
|
||||
|
|
@ -1,5 +1,5 @@
|
|||
PORTNAME= composer
|
||||
DISTVERSION= 2.7.3
|
||||
DISTVERSION= 2.7.4
|
||||
CATEGORIES= devel
|
||||
MASTER_SITES= https://getcomposer.org/download/${DISTVERSION}/
|
||||
PKGNAMEPREFIX= ${PHP_PKGNAMEPREFIX}
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1713696949
|
||||
SHA256 (composer-2.7.3/composer.phar) = fcc02ff044b5a04fbecff0158cb6041c25e8f78ac494098736fecd2bb4f381e4
|
||||
SIZE (composer-2.7.3/composer.phar) = 2985921
|
||||
TIMESTAMP = 1713815234
|
||||
SHA256 (composer-2.7.4/composer.phar) = ee01080d632d2bbfa9c618009cca13718f36e751dda679a6009cee751c13b2d9
|
||||
SIZE (composer-2.7.4/composer.phar) = 2985953
|
||||
|
|
|
|||
37
devel/py-nanobind/Makefile
Normal file
37
devel/py-nanobind/Makefile
Normal file
|
|
@ -0,0 +1,37 @@
|
|||
PORTNAME= nanobind
|
||||
DISTVERSIONPREFIX= v
|
||||
DISTVERSION= 1.9.2
|
||||
CATEGORIES= devel python
|
||||
MASTER_SITES= PYPI
|
||||
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
||||
|
||||
MAINTAINER= yuri@FreeBSD.org
|
||||
COMMENT= Tiny and efficient C++/Python bindings
|
||||
WWW= https://github.com/wjakob/nanobind
|
||||
|
||||
LICENSE= BSD3CLAUSE
|
||||
LICENSE_FILE= ${WRKSRC}/LICENSE
|
||||
|
||||
BUILD_DEPENDS= ${PY_SETUPTOOLS} \
|
||||
${PYTHON_PKGNAMEPREFIX}scikit-build>0:devel/py-scikit-build@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}typing-extensions>0:devel/py-typing-extensions@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}wheel>0:devel/py-wheel@${PY_FLAVOR}
|
||||
TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytest>0:devel/py-pytest@${PY_FLAVOR}
|
||||
|
||||
USES= cmake:insource,testing python
|
||||
USE_PYTHON= pep517 autoplist
|
||||
|
||||
USE_GITHUB= yes
|
||||
GH_ACCOUNT= wjakob
|
||||
GH_TUPLE= Tessil:robin-map:188c455:robin_map/ext/robin_map
|
||||
|
||||
CMAKE_OFF= NB_TEST
|
||||
CMAKE_TESTING_ON= NB_TEST
|
||||
CMAKE_TESTING_TARGET=
|
||||
|
||||
NO_ARCH= yes
|
||||
|
||||
post-test: # run-tests
|
||||
@cd ${WRKSRC} && ${SETENV} ${TEST_ENV} pytest .
|
||||
|
||||
.include <bsd.port.mk>
|
||||
5
devel/py-nanobind/distinfo
Normal file
5
devel/py-nanobind/distinfo
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
TIMESTAMP = 1714059630
|
||||
SHA256 (wjakob-nanobind-v1.9.2_GH0.tar.gz) = 149a3da40b0a988513d8cf5e71db3037373823505a3c92f87b988c92d7e0ab34
|
||||
SIZE (wjakob-nanobind-v1.9.2_GH0.tar.gz) = 785164
|
||||
SHA256 (Tessil-robin-map-188c455_GH0.tar.gz) = c3f05ed8933a1f9aa57295c8ad17bd44756cf5cf030a95325c61aa862fa19680
|
||||
SIZE (Tessil-robin-map-188c455_GH0.tar.gz) = 70577
|
||||
9
devel/py-nanobind/files/patch-pyproject.toml
Normal file
9
devel/py-nanobind/files/patch-pyproject.toml
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
--- pyproject.toml.orig 2024-04-25 15:40:44 UTC
|
||||
+++ pyproject.toml
|
||||
@@ -1,5 +1,5 @@
|
||||
[build-system]
|
||||
-requires = ["setuptools>=42", "wheel", "scikit-build", "cmake>=3.17", "ninja"]
|
||||
+requires = ["setuptools>=42", "wheel", "scikit-build"]
|
||||
build-backend = "setuptools.build_meta"
|
||||
|
||||
|
||||
5
devel/py-nanobind/pkg-descr
Normal file
5
devel/py-nanobind/pkg-descr
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
nanobind is a small binding library that exposes C++ types in Python and vice
|
||||
versa. It is reminiscent of Boost.Python and pybind11 and uses near-identical
|
||||
syntax. In contrast to these existing tools, nanobind is more efficient:
|
||||
bindings compile in a shorter amount of time, produce smaller binaries, and have
|
||||
better runtime performance.
|
||||
|
|
@ -1,6 +1,5 @@
|
|||
PORTNAME= oci
|
||||
DISTVERSION= 2.124.0
|
||||
PORTREVISION= 1
|
||||
DISTVERSION= 2.126.0
|
||||
CATEGORIES= devel python
|
||||
MASTER_SITES= PYPI
|
||||
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
||||
|
|
@ -17,14 +16,16 @@ LICENSE_FILE_APACHE20= ${WRKSRC}/LICENSE.txt
|
|||
LICENSE_FILE_UPL= ${WRKSRC}/LICENSE.txt
|
||||
LICENSE_PERMS_UPL= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept
|
||||
|
||||
BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}setuptools>0:devel/py-setuptools@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}wheel>0:devel/py-wheel@${PY_FLAVOR}
|
||||
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}certifi>0:security/py-certifi@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}circuitbreaker>=1.3.1:devel/py-circuitbreaker@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}python-dateutil>=2.5.3<3.0.0:devel/py-python-dateutil@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}openssl>=17.5.0:security/py-openssl@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}python-dateutil>=2.5.3<3.0.0:devel/py-python-dateutil@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}pytz>=2016.10:devel/py-pytz@${PY_FLAVOR}
|
||||
|
||||
USES= python:3.8-3.11
|
||||
USE_PYTHON= autoplist cryptography distutils
|
||||
USE_PYTHON= autoplist cryptography pep517
|
||||
|
||||
NO_ARCH= yes
|
||||
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1709646512
|
||||
SHA256 (oci-2.124.0.tar.gz) = 4af009929976235003b86fa2ec8f66e9d3aabc2084722278bd22c9900a79ec29
|
||||
SIZE (oci-2.124.0.tar.gz) = 12440491
|
||||
TIMESTAMP = 1713865323
|
||||
SHA256 (oci-2.126.0.tar.gz) = e561cfe45f942aafee12c0a6f92e549604821e3bee75aebc6c337633cfb7776a
|
||||
SIZE (oci-2.126.0.tar.gz) = 12694185
|
||||
|
|
|
|||
19
devel/py-pcpp/Makefile
Normal file
19
devel/py-pcpp/Makefile
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
PORTNAME= pcpp
|
||||
DISTVERSION= 1.30
|
||||
CATEGORIES= devel python
|
||||
MASTER_SITES= PYPI
|
||||
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
||||
|
||||
MAINTAINER= yuri@FreeBSD.org
|
||||
COMMENT= C99 preprocessor written in pure Python
|
||||
WWW= https://github.com/ned14/pcpp
|
||||
|
||||
LICENSE= BSD3CLAUSE
|
||||
LICENSE_FILE= ${WRKSRC}/LICENSE.txt
|
||||
|
||||
USES= python
|
||||
USE_PYTHON= distutils concurrent autoplist
|
||||
|
||||
NO_ARCH= yes
|
||||
|
||||
.include <bsd.port.mk>
|
||||
3
devel/py-pcpp/distinfo
Normal file
3
devel/py-pcpp/distinfo
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
TIMESTAMP = 1714099807
|
||||
SHA256 (pcpp-1.30.tar.gz) = 5af9fbce55f136d7931ae915fae03c34030a3b36c496e72d9636cedc8e2543a1
|
||||
SIZE (pcpp-1.30.tar.gz) = 94283
|
||||
3
devel/py-pcpp/pkg-descr
Normal file
3
devel/py-pcpp/pkg-descr
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
pcpp is a pure universal Python C (pre-)preprocessor implementation very useful
|
||||
for pre-preprocessing header only C++ libraries into single file includes and
|
||||
other such build or packaging stage malarky.
|
||||
|
|
@ -1,5 +1,5 @@
|
|||
PORTNAME= poetry-plugin-export
|
||||
DISTVERSION= 1.7.0
|
||||
DISTVERSION= 1.7.1
|
||||
CATEGORIES= devel python
|
||||
MASTER_SITES= PYPI
|
||||
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1710570873
|
||||
SHA256 (poetry_plugin_export-1.7.0.tar.gz) = e73f207fc0e08c2f59ead82cbe39ef259b351a318d5c0bddcec13990bcd324a7
|
||||
SIZE (poetry_plugin_export-1.7.0.tar.gz) = 29196
|
||||
TIMESTAMP = 1714112405
|
||||
SHA256 (poetry_plugin_export-1.7.1.tar.gz) = cf62cfb6218a904290ba6db3bc1a24aa076d10f81c48c6e48b2ded430131e22e
|
||||
SIZE (poetry_plugin_export-1.7.1.tar.gz) = 29656
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
PORTNAME= pydantic
|
||||
DISTVERSION= 1.10.14
|
||||
DISTVERSION= 1.10.15
|
||||
PORTEPOCH= 1
|
||||
CATEGORIES= devel python
|
||||
MASTER_SITES= PYPI
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1705724914
|
||||
SHA256 (pydantic-1.10.14.tar.gz) = 46f17b832fe27de7850896f3afee50ea682220dd218f7e9c88d436788419dca6
|
||||
SIZE (pydantic-1.10.14.tar.gz) = 349141
|
||||
TIMESTAMP = 1714112769
|
||||
SHA256 (pydantic-1.10.15.tar.gz) = ca832e124eda231a60a041da4f013e3ff24949d94a01154b137fc2f2a43c3ffb
|
||||
SIZE (pydantic-1.10.15.tar.gz) = 350343
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
PORTNAME= pytest4-flakes
|
||||
PORTVERSION= 4.0.1
|
||||
PORTVERSION= 4.0.5
|
||||
CATEGORIES= devel python
|
||||
MASTER_SITES= PYPI
|
||||
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
||||
|
|
|
|||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Reference in a new issue