*/*: sync with upstream
Taken from: FreeBSD
This commit is contained in:
parent
dc05636fca
commit
f55b2ee450
182 changed files with 1655 additions and 1808 deletions
|
|
@ -1,7 +1,6 @@
|
|||
PORTNAME= libosmium
|
||||
DISTVERSIONPREFIX= v
|
||||
DISTVERSION= 2.18.0
|
||||
PORTREVISION= 1
|
||||
DISTVERSION= 2.19.0
|
||||
CATEGORIES= astro geography devel
|
||||
|
||||
MAINTAINER= amdmi3@FreeBSD.org
|
||||
|
|
@ -38,15 +37,6 @@ OPTIONS_DEFAULT= TEST
|
|||
TEST_TEST_TARGET= test
|
||||
TEST_CMAKE_BOOL= BUILD_TESTING
|
||||
|
||||
post-patch:
|
||||
@${FIND} ${WRKSRC} -type f \( -name "*.cpp" -o -name "*.hpp" \) \
|
||||
-not -name "memory_mapping.hpp" \
|
||||
-not -name "test_memory_mapping.cpp" \
|
||||
-not -name "test_memory.cpp" \
|
||||
-exec ${REINPLACE_CMD} \
|
||||
-e 's,^#ifdef __linux__,#if defined(__linux__) || defined(__FreeBSD__),' \
|
||||
-e 's,^#ifndef __linux__,#if !defined(__linux__) && !defined(__FreeBSD__),' {} \;
|
||||
|
||||
post-install-DOCS-on:
|
||||
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
||||
${INSTALL_DATA} ${WRKSRC}/CHANGELOG.md ${WRKSRC}/README.md ${STAGEDIR}${DOCSDIR}
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1647270667
|
||||
SHA256 (osmcode-libosmium-v2.18.0_GH0.tar.gz) = c05a3e95c9c811521ebad8637e90f43ab8fb053b310875acce741cc4c17d6f59
|
||||
SIZE (osmcode-libosmium-v2.18.0_GH0.tar.gz) = 565862
|
||||
TIMESTAMP = 1674129193
|
||||
SHA256 (osmcode-libosmium-v2.19.0_GH0.tar.gz) = 6911a8ca8e81d49205357177982df908af11376919f93b814cccf02f1d4d63e3
|
||||
SIZE (osmcode-libosmium-v2.19.0_GH0.tar.gz) = 565486
|
||||
|
|
|
|||
|
|
@ -1,29 +0,0 @@
|
|||
--- include/osmium/thread/util.hpp.orig 2022-02-07 12:59:17 UTC
|
||||
+++ include/osmium/thread/util.hpp
|
||||
@@ -38,8 +38,10 @@ DEALINGS IN THE SOFTWARE.
|
||||
#include <thread>
|
||||
#include <utility>
|
||||
|
||||
-#ifdef __linux__
|
||||
+#if defined(__linux__)
|
||||
# include <sys/prctl.h>
|
||||
+#elif defined(__FreeBSD__)
|
||||
+# include <pthread.h>
|
||||
#endif
|
||||
|
||||
namespace osmium {
|
||||
@@ -72,9 +74,13 @@ namespace osmium {
|
||||
/**
|
||||
* Set name of current thread for debugging. This only works on Linux.
|
||||
*/
|
||||
-#ifdef __linux__
|
||||
+#if defined(__linux__)
|
||||
inline void set_thread_name(const char* name) noexcept {
|
||||
prctl(PR_SET_NAME, name, 0, 0, 0);
|
||||
+ }
|
||||
+#elif defined(__FreeBSD__)
|
||||
+ inline void set_thread_name(const char* name) noexcept {
|
||||
+ pthread_setname_np(pthread_self(), name);
|
||||
}
|
||||
#else
|
||||
inline void set_thread_name(const char*) noexcept {
|
||||
|
|
@ -47,7 +47,6 @@ include/osmium/handler/disk_store.hpp
|
|||
include/osmium/handler/dump.hpp
|
||||
include/osmium/handler/node_locations_for_ways.hpp
|
||||
include/osmium/handler/object_relations.hpp
|
||||
include/osmium/index/bool_vector.hpp
|
||||
include/osmium/index/detail/create_map_with_fd.hpp
|
||||
include/osmium/index/detail/mmap_vector_anon.hpp
|
||||
include/osmium/index/detail/mmap_vector_base.hpp
|
||||
|
|
|
|||
|
|
@ -1,9 +1,9 @@
|
|||
PORTNAME= gxplugins
|
||||
DISTVERSION= 0.9
|
||||
DISTVERSION= 1.0
|
||||
CATEGORIES= audio
|
||||
MASTER_SITES= https://github.com/brummer10/GxPlugins.lv2/files/6329721/
|
||||
MASTER_SITES= https://github.com/brummer10/GxPlugins.lv2/releases/download/v${DISTVERSION}/
|
||||
PKGNAMESUFFIX= -lv2
|
||||
DISTNAME= GxPlugins_${DISTVERSION}
|
||||
DISTNAME= gxplugins_${DISTVERSION}_src
|
||||
|
||||
MAINTAINER= yuri@FreeBSD.org
|
||||
COMMENT= Set of LV2 plugins from the guitarix project
|
||||
|
|
@ -17,12 +17,15 @@ BROKEN_riscv64= ld: error: gui/pedal.o: cannot link object files with different
|
|||
BUILD_DEPENDS= lv2>0:audio/lv2
|
||||
|
||||
USES= compiler:c++11-lang gettext-runtime gmake gnome localbase \
|
||||
pkgconfig xorg
|
||||
pkgconfig tar:bz2 xorg
|
||||
USE_GNOME= cairo
|
||||
USE_XORG= x11
|
||||
USE_BINUTILS= yes # linking needs some GNU features, fails on 12 without this, see https://github.com/brummer10/GxPlugins.lv2/issues/9
|
||||
|
||||
WRKSRC= ${WRKDIR}/GxPlugins.lv2
|
||||
|
||||
MAKE_ENV= PATH=${LOCALBASE}/bin:/usr/bin:/bin CXXFLAGS="${CXXFLAGS}" # 'ld' needs to be first in the path on 12, -B{path} isn't sufficient for some reason
|
||||
MAKE_ARGS= LIB_EXT=so
|
||||
LDFLAGS+= -B${LOCALBASE}/bin # Use ld provided by USE_BINUTILS for GNU features, otherwise GNU ld isn't called
|
||||
|
||||
post-patch:
|
||||
|
|
@ -33,5 +36,8 @@ post-patch:
|
|||
s| -O2||; s| -Wl,-z,nodelete||; \
|
||||
s|INSTALL_DIR = .*|INSTALL_DIR = ${PREFIX}/lib/lv2|' \
|
||||
${WRKSRC}/*/Makefile
|
||||
# correct ifdefs in gx_platform.h files
|
||||
@${FIND} ${WRKSRC} -name gx_platform.h | \
|
||||
${XARGS} ${REINPLACE_CMD} -e 's/#ifdef __linux__/#if defined(__linux__) || defined(__FreeBSD__)/ ; s/defined(__linux__)/(& || defined(__FreeBSD__))/'
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1618763524
|
||||
SHA256 (GxPlugins_0.9.tar.gz) = 4251b4143b261305ebbfc87538e2631f6dbcc69180936083924aa0425bb9e422
|
||||
SIZE (GxPlugins_0.9.tar.gz) = 24254218
|
||||
TIMESTAMP = 1674153886
|
||||
SHA256 (gxplugins_1.0_src.tar.bz2) = 45ff765d7e4dbf2786af081ff115d59ebbb9a681a0158c521b9f1b9317512dc6
|
||||
SIZE (gxplugins_1.0_src.tar.bz2) = 66317334
|
||||
|
|
|
|||
|
|
@ -1,6 +1,7 @@
|
|||
PORTNAME= augustus
|
||||
DISTVERSIONPREFIX= v
|
||||
DISTVERSION= 3.5.0
|
||||
PORTREVISION= 1
|
||||
CATEGORIES= biology science
|
||||
PKGNAMESUFFIX= -gene-prediction
|
||||
|
||||
|
|
|
|||
|
|
@ -1,5 +1,6 @@
|
|||
PORTNAME= biosig
|
||||
DISTVERSION= 2.5.0
|
||||
PORTREVISION= 1
|
||||
CATEGORIES= biology
|
||||
MASTER_SITES= SF/${PORTNAME}/BioSig%20for%20C_C%2B%2B/src/
|
||||
DISTNAME= ${PORTNAME}-${PORTVERSION}.src
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
PORTNAME= veryl
|
||||
DISTVERSIONPREFIX= veryl-v
|
||||
DISTVERSION= 0.2.0
|
||||
DISTVERSION= 0.2.1
|
||||
CATEGORIES= cad
|
||||
|
||||
MAINTAINER= yuri@FreeBSD.org
|
||||
|
|
@ -175,6 +175,7 @@ CARGO_CRATES= addr2line-0.19.0 \
|
|||
parol-0.16.0 \
|
||||
parol-macros-0.2.0 \
|
||||
parol_runtime-0.12.1 \
|
||||
paste-1.0.11 \
|
||||
percent-encoding-2.2.0 \
|
||||
pest-2.5.3 \
|
||||
pest_derive-2.5.3 \
|
||||
|
|
@ -211,7 +212,7 @@ CARGO_CRATES= addr2line-0.19.0 \
|
|||
remove_dir_all-0.5.3 \
|
||||
ropey-1.5.1 \
|
||||
rustc-demangle-0.1.21 \
|
||||
rustix-0.36.6 \
|
||||
rustix-0.36.7 \
|
||||
rustls-pemfile-0.2.1 \
|
||||
ryu-1.0.12 \
|
||||
same-file-1.0.6 \
|
||||
|
|
@ -278,7 +279,7 @@ CARGO_CRATES= addr2line-0.19.0 \
|
|||
ucd-trie-0.1.5 \
|
||||
ume-0.1.0 \
|
||||
unicase-2.6.0 \
|
||||
unicode-bidi-0.3.8 \
|
||||
unicode-bidi-0.3.9 \
|
||||
unicode-ident-1.0.6 \
|
||||
unicode-linebreak-0.1.4 \
|
||||
unicode-normalization-0.1.22 \
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
TIMESTAMP = 1673994435
|
||||
TIMESTAMP = 1674149726
|
||||
SHA256 (rust/crates/addr2line-0.19.0.crate) = a76fd60b23679b7d19bd066031410fb7e458ccc5e958eb5c325888ce4baedc97
|
||||
SIZE (rust/crates/addr2line-0.19.0.crate) = 33210
|
||||
SHA256 (rust/crates/adler-1.0.2.crate) = f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe
|
||||
|
|
@ -311,6 +311,8 @@ SHA256 (rust/crates/parol-macros-0.2.0.crate) = bdd646301a99589f85ed580e3807ee2f
|
|||
SIZE (rust/crates/parol-macros-0.2.0.crate) = 1694
|
||||
SHA256 (rust/crates/parol_runtime-0.12.1.crate) = 1ec1d77d5f6701ee9247bb5b820961ed018879179d278c56be56cce5e47a2c05
|
||||
SIZE (rust/crates/parol_runtime-0.12.1.crate) = 24413
|
||||
SHA256 (rust/crates/paste-1.0.11.crate) = d01a5bd0424d00070b0098dd17ebca6f961a959dead1dbcbbbc1d1cd8d3deeba
|
||||
SIZE (rust/crates/paste-1.0.11.crate) = 18349
|
||||
SHA256 (rust/crates/percent-encoding-2.2.0.crate) = 478c572c3d73181ff3c2539045f6eb99e5491218eae919370993b890cdbdd98e
|
||||
SIZE (rust/crates/percent-encoding-2.2.0.crate) = 10075
|
||||
SHA256 (rust/crates/pest-2.5.3.crate) = 4257b4a04d91f7e9e6290be5d3da4804dd5784fafde3a497d73eb2b4a158c30a
|
||||
|
|
@ -383,8 +385,8 @@ SHA256 (rust/crates/ropey-1.5.1.crate) = a4f832915525613e83f275694cb8c184f5df13c
|
|||
SIZE (rust/crates/ropey-1.5.1.crate) = 118096
|
||||
SHA256 (rust/crates/rustc-demangle-0.1.21.crate) = 7ef03e0a2b150c7a90d01faf6254c9c48a41e95fb2a8c2ac1c6f0d2b9aefc342
|
||||
SIZE (rust/crates/rustc-demangle-0.1.21.crate) = 27920
|
||||
SHA256 (rust/crates/rustix-0.36.6.crate) = 4feacf7db682c6c329c4ede12649cd36ecab0f3be5b7d74e6a20304725db4549
|
||||
SIZE (rust/crates/rustix-0.36.6.crate) = 288718
|
||||
SHA256 (rust/crates/rustix-0.36.7.crate) = d4fdebc4b395b7fbb9ab11e462e20ed9051e7b16e42d24042c776eca0ac81b03
|
||||
SIZE (rust/crates/rustix-0.36.7.crate) = 290628
|
||||
SHA256 (rust/crates/rustls-pemfile-0.2.1.crate) = 5eebeaeb360c87bfb72e84abdb3447159c0eaececf1bef2aecd65a8be949d1c9
|
||||
SIZE (rust/crates/rustls-pemfile-0.2.1.crate) = 14278
|
||||
SHA256 (rust/crates/ryu-1.0.12.crate) = 7b4b9743ed687d4b4bcedf9ff5eaa7398495ae14e61cba0a295704edbc7decde
|
||||
|
|
@ -517,8 +519,8 @@ SHA256 (rust/crates/ume-0.1.0.crate) = 11c524dc90cd71769e23e877ffdcb128f867970f1
|
|||
SIZE (rust/crates/ume-0.1.0.crate) = 2502
|
||||
SHA256 (rust/crates/unicase-2.6.0.crate) = 50f37be617794602aabbeee0be4f259dc1778fabe05e2d67ee8f79326d5cb4f6
|
||||
SIZE (rust/crates/unicase-2.6.0.crate) = 23478
|
||||
SHA256 (rust/crates/unicode-bidi-0.3.8.crate) = 099b7128301d285f79ddd55b9a83d5e6b9e97c92e0ea0daebee7263e932de992
|
||||
SIZE (rust/crates/unicode-bidi-0.3.8.crate) = 36575
|
||||
SHA256 (rust/crates/unicode-bidi-0.3.9.crate) = 0046be40136ef78dc325e0edefccf84ccddacd0afcc1ca54103fa3c61bbdab1d
|
||||
SIZE (rust/crates/unicode-bidi-0.3.9.crate) = 43353
|
||||
SHA256 (rust/crates/unicode-ident-1.0.6.crate) = 84a22b9f218b40614adcb3f4ff08b703773ad44fa9423e4e0d346d5db86e4ebc
|
||||
SIZE (rust/crates/unicode-ident-1.0.6.crate) = 42158
|
||||
SHA256 (rust/crates/unicode-linebreak-0.1.4.crate) = c5faade31a542b8b35855fff6e8def199853b2da8da256da52f52f1316ee3137
|
||||
|
|
@ -581,5 +583,5 @@ SHA256 (rust/crates/windows_x86_64_msvc-0.42.1.crate) = 447660ad36a13288b1db4d42
|
|||
SIZE (rust/crates/windows_x86_64_msvc-0.42.1.crate) = 664606
|
||||
SHA256 (rust/crates/xml_writer-0.4.0.crate) = 3a74a847d8392999f89e9668c4dd46283b91fd6fc1f34aa5ecf4ceaf8fa3258e
|
||||
SIZE (rust/crates/xml_writer-0.4.0.crate) = 3872
|
||||
SHA256 (dalance-veryl-veryl-v0.2.0_GH0.tar.gz) = 5254c0545010bb65edcd9f095f2f69e27ec173f4a6f134e85b085a053b7d0746
|
||||
SIZE (dalance-veryl-veryl-v0.2.0_GH0.tar.gz) = 349226
|
||||
SHA256 (dalance-veryl-veryl-v0.2.1_GH0.tar.gz) = 9d04c0472da32c28b12750b386c725b993263df5a154933db4880f2c04bc32dd
|
||||
SIZE (dalance-veryl-veryl-v0.2.1_GH0.tar.gz) = 374146
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
PORTNAME= xyce
|
||||
DISTVERSION= 7.6.0
|
||||
PORTREVISION= 1
|
||||
PORTREVISION= 2
|
||||
CATEGORIES= cad
|
||||
|
||||
MAINTAINER= yuri@FreeBSD.org
|
||||
|
|
|
|||
|
|
@ -137,6 +137,7 @@
|
|||
SUBDIR += py-hidapi
|
||||
SUBDIR += py-libimobiledevice
|
||||
SUBDIR += py-libscrc
|
||||
SUBDIR += py-pymodbus
|
||||
SUBDIR += py-pyserial
|
||||
SUBDIR += py-pyserial-asyncio
|
||||
SUBDIR += py-xmodem
|
||||
|
|
|
|||
38
comms/py-pymodbus/Makefile
Normal file
38
comms/py-pymodbus/Makefile
Normal file
|
|
@ -0,0 +1,38 @@
|
|||
PORTNAME= pymodbus
|
||||
DISTVERSION= 3.1.0
|
||||
CATEGORIES= comms python
|
||||
MASTER_SITES= PYPI
|
||||
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
||||
|
||||
MAINTAINER= chris@chrullrich.net
|
||||
COMMENT= Implementation of the Modbus protocol
|
||||
WWW= https://github.com/pymodbus-dev/pymodbus/
|
||||
|
||||
LICENSE= BSD3CLAUSE
|
||||
LICENSE_FILE= ${WRKSRC}/LICENSE
|
||||
|
||||
USES= python:3.8+
|
||||
USE_PYTHON= autoplist distutils
|
||||
|
||||
OPTIONS_DEFINE= REPL SERIAL DATASTORE_REDIS DATASTORE_SQL
|
||||
OPTIONS_DEFAULT=REPL
|
||||
REPL_DESC= Interactive REPL console
|
||||
SERIAL_DESC= Support serial port
|
||||
DATASTORE_REDIS_DESC= Use Redis for server data
|
||||
DATASTORE_SQL_DESC= Use database for server data (via SQLAlchemy)
|
||||
|
||||
REPL_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}aiohttp>=3.8.1:www/py-aiohttp@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}prompt-toolkit>=3.0.8:devel/py-prompt-toolkit@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}typer>=0.6.1:devel/py-typer@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}pygments>0:textproc/py-pygments@${PY_FLAVOR}
|
||||
REPL_EXTRA_PATCHES_OFF= ${PATCHDIR}/extra-patch-NO_REPL
|
||||
|
||||
SERIAL_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pyserial>=3.5:comms/py-pyserial@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}pyserial-asyncio>=0.6:comms/py-pyserial-asyncio@${PY_FLAVOR}
|
||||
|
||||
DATASTORE_REDIS_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}redis>0:databases/py-redis@${PY_FLAVOR}
|
||||
DATASTORE_SQL_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}sqlalchemy14>0:databases/py-sqlalchemy14@${PY_FLAVOR}
|
||||
|
||||
NO_ARCH= yes
|
||||
|
||||
.include <bsd.port.mk>
|
||||
3
comms/py-pymodbus/distinfo
Normal file
3
comms/py-pymodbus/distinfo
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
TIMESTAMP = 1673787533
|
||||
SHA256 (pymodbus-3.1.0.tar.gz) = eeba02c86b13b1f885c0acc50adf4611df24ab85066ff54daa37c2d883c32525
|
||||
SIZE (pymodbus-3.1.0.tar.gz) = 177256
|
||||
11
comms/py-pymodbus/files/extra-patch-NO_REPL
Normal file
11
comms/py-pymodbus/files/extra-patch-NO_REPL
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
--- setup.cfg.orig 2023-01-14 21:23:03.797249800 +0000
|
||||
+++ setup.cfg 2023-01-15 13:13:52.728391000 +0000
|
||||
@@ -46,8 +46,6 @@
|
||||
|
||||
[options.entry_points]
|
||||
console_scripts =
|
||||
- pymodbus.console = pymodbus.repl.client.main:main
|
||||
- pymodbus.server = pymodbus.repl.server.main:app
|
||||
pymodbus.simulator = pymodbus.server.simulator.main:main
|
||||
|
||||
[options.packages.find]
|
||||
4
comms/py-pymodbus/pkg-descr
Normal file
4
comms/py-pymodbus/pkg-descr
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
Pymodbus is a full Modbus protocol implementation offering
|
||||
asynchronous communications. It can also be used without any
|
||||
third party dependencies (aside from pyserial) if a more
|
||||
lightweight project is needed.
|
||||
11
databases/soci/files/patch-tests_catch.hpp
Normal file
11
databases/soci/files/patch-tests_catch.hpp
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
--- tests/catch.hpp.orig 2022-02-10 19:13:13 UTC
|
||||
+++ tests/catch.hpp
|
||||
@@ -7170,7 +7170,7 @@ namespace Catch {
|
||||
namespace Catch {
|
||||
|
||||
struct RandomNumberGenerator {
|
||||
- typedef std::ptrdiff_t result_type;
|
||||
+ typedef std::size_t result_type;
|
||||
|
||||
result_type operator()( result_type n ) const { return std::rand() % n; }
|
||||
|
||||
|
|
@ -1,5 +1,6 @@
|
|||
PORTNAME= calibre
|
||||
PORTVERSION= 6.11.0
|
||||
PORTREVISION= 1
|
||||
CATEGORIES= deskutils python
|
||||
MASTER_SITES= http://download.calibre-ebook.com/${PORTVERSION}/
|
||||
|
||||
|
|
@ -31,7 +32,7 @@ BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}sqlite3>=0:databases/py-sqlite3@${PY_FLAVO
|
|||
${PYTHON_PKGNAMEPREFIX}regex>=0:textproc/py-regex@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}html5-parser>=0.4.3:www/py-html5-parser@${PY_FLAVOR} \
|
||||
${PY_PILLOW} \
|
||||
${PYTHON_PKGNAMEPREFIX}zeroconf>0:net/py-zeroconf \
|
||||
${PYTHON_PKGNAMEPREFIX}zeroconf>0:net/py-zeroconf@${PY_FLAVOR} \
|
||||
${LOCALBASE}/bin/cmake:devel/cmake-core
|
||||
RUN_DEPENDS= xdg-open:devel/xdg-utils \
|
||||
${PYTHON_PKGNAMEPREFIX}css-parser>=1.0.4:www/py-css-parser@${PY_FLAVOR} \
|
||||
|
|
@ -54,7 +55,8 @@ RUN_DEPENDS= xdg-open:devel/xdg-utils \
|
|||
${PYTHON_PKGNAMEPREFIX}jeepney>=0.6:devel/py-jeepney@${PY_FLAVOR} \
|
||||
${PY_PILLOW} \
|
||||
pdftohtml:graphics/poppler-utils \
|
||||
${PYTHON_PKGNAMEPREFIX}zeroconf>0:net/py-zeroconf
|
||||
${PYTHON_PKGNAMEPREFIX}zeroconf>0:net/py-zeroconf@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}pycryptodome>0:security/py-pycryptodome@${PY_FLAVOR}
|
||||
|
||||
USES= desktop-file-utils gettext-runtime gl gnome localbase:ldflags \
|
||||
pkgconfig pyqt:6 python:3.8+ qt:6 shared-mime-info shebangfix \
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
PORTNAME= copyq
|
||||
DISTVERSIONPREFIX= v
|
||||
DISTVERSION= 6.3.2
|
||||
DISTVERSION= 6.4.0
|
||||
CATEGORIES= deskutils
|
||||
PKGNAMESUFFIX= -${FLAVOR}
|
||||
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1664215077
|
||||
SHA256 (hluk-CopyQ-v6.3.2_GH0.tar.gz) = ce122ed7f8e3e230b1c6dcce8f1ec6d717eef8c59829390cae1750c35b342c4a
|
||||
SIZE (hluk-CopyQ-v6.3.2_GH0.tar.gz) = 3325217
|
||||
TIMESTAMP = 1674124524
|
||||
SHA256 (hluk-CopyQ-v6.4.0_GH0.tar.gz) = ac6757a10ed2d629de9acbb646cdbba5cf51197e9dfe39d3db2ff34069fc4831
|
||||
SIZE (hluk-CopyQ-v6.4.0_GH0.tar.gz) = 3316278
|
||||
|
|
|
|||
|
|
@ -7283,6 +7283,7 @@
|
|||
SUBDIR += sfml1
|
||||
SUBDIR += sfsexp
|
||||
SUBDIR += sgb
|
||||
SUBDIR += shadered
|
||||
SUBDIR += shapelib
|
||||
SUBDIR += shards
|
||||
SUBDIR += shell-toolbox
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
PORTNAME= pak
|
||||
DISTVERSION= 0.3.1
|
||||
DISTVERSION= 0.4.0
|
||||
CATEGORIES= devel
|
||||
DISTNAME= ${PORTNAME}_${DISTVERSION}
|
||||
|
||||
|
|
@ -17,7 +17,7 @@ TEST_DEPENDS= R-cran-jsonlite>=1.8.0:converters/R-cran-jsonlite \
|
|||
R-cran-filelock>=1.0.2:devel/R-cran-filelock \
|
||||
R-cran-glue>=1.6.2:devel/R-cran-glue \
|
||||
R-cran-mockery>0:devel/R-cran-mockery \
|
||||
R-cran-pkgcache>=2.0.1:devel/R-cran-pkgcache \
|
||||
R-cran-pkgcache>=2.0.4:devel/R-cran-pkgcache \
|
||||
R-cran-prettyunits>0:devel/R-cran-prettyunits \
|
||||
R-cran-rprojroot>=2.0.2:devel/R-cran-rprojroot \
|
||||
R-cran-rstudioapi>0:devel/R-cran-rstudioapi \
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1663467067
|
||||
SHA256 (pak_0.3.1.tar.gz) = 2dd05c7e4748071fb87065a8420735ebcb36e72dfb02f72f46ae7327cf197a87
|
||||
SIZE (pak_0.3.1.tar.gz) = 120022
|
||||
TIMESTAMP = 1674153294
|
||||
SHA256 (pak_0.4.0.tar.gz) = 24216cc4a33607fac8bceefb7d3ede250768feb902e21611a37ae307ba758cca
|
||||
SIZE (pak_0.4.0.tar.gz) = 139041
|
||||
|
|
|
|||
|
|
@ -1,7 +1,6 @@
|
|||
PORTNAME= bacon
|
||||
DISTVERSIONPREFIX= v
|
||||
DISTVERSION= 2.3.0
|
||||
PORTREVISION= 1
|
||||
DISTVERSION= 2.5.0
|
||||
CATEGORIES= devel
|
||||
|
||||
MAINTAINER= yuri@FreeBSD.org
|
||||
|
|
@ -21,7 +20,7 @@ CARGO_CRATES= adler-1.0.2 \
|
|||
aho-corasick-0.7.20 \
|
||||
android_system_properties-0.1.5 \
|
||||
anyhow-1.0.68 \
|
||||
arc-swap-1.5.1 \
|
||||
arc-swap-1.6.0 \
|
||||
arrayvec-0.5.2 \
|
||||
arrayvec-0.7.2 \
|
||||
atoi-2.0.0 \
|
||||
|
|
@ -33,7 +32,7 @@ CARGO_CRATES= adler-1.0.2 \
|
|||
bumpalo-3.11.1 \
|
||||
bytes-1.3.0 \
|
||||
bytesize-1.1.0 \
|
||||
camino-1.1.1 \
|
||||
camino-1.1.2 \
|
||||
cargo-platform-0.1.2 \
|
||||
cargo_metadata-0.14.2 \
|
||||
castaway-0.2.2 \
|
||||
|
|
@ -60,10 +59,10 @@ CARGO_CRATES= adler-1.0.2 \
|
|||
crossbeam-utils-0.8.14 \
|
||||
crossterm-0.23.2 \
|
||||
crossterm_winapi-0.9.0 \
|
||||
cxx-1.0.83 \
|
||||
cxx-build-1.0.83 \
|
||||
cxxbridge-flags-1.0.83 \
|
||||
cxxbridge-macro-1.0.83 \
|
||||
cxx-1.0.86 \
|
||||
cxx-build-1.0.86 \
|
||||
cxxbridge-flags-1.0.86 \
|
||||
cxxbridge-macro-1.0.86 \
|
||||
dashmap-5.4.0 \
|
||||
directories-next-2.0.0 \
|
||||
dirs-4.0.0 \
|
||||
|
|
@ -81,7 +80,7 @@ CARGO_CRATES= adler-1.0.2 \
|
|||
git-attributes-0.7.0 \
|
||||
git-bitmap-0.2.0 \
|
||||
git-chunk-0.4.0 \
|
||||
git-command-0.2.0 \
|
||||
git-command-0.2.2 \
|
||||
git-config-0.13.0 \
|
||||
git-config-value-0.10.0 \
|
||||
git-credentials-0.8.0 \
|
||||
|
|
@ -89,7 +88,7 @@ CARGO_CRATES= adler-1.0.2 \
|
|||
git-diff-0.24.0 \
|
||||
git-discover-0.10.0 \
|
||||
git-features-0.25.1 \
|
||||
git-glob-0.5.1 \
|
||||
git-glob-0.5.2 \
|
||||
git-hash-0.10.1 \
|
||||
git-hashtable-0.1.0 \
|
||||
git-index-0.10.0 \
|
||||
|
|
@ -99,20 +98,20 @@ CARGO_CRATES= adler-1.0.2 \
|
|||
git-odb-0.38.1 \
|
||||
git-pack-0.28.0 \
|
||||
git-path-0.7.0 \
|
||||
git-prompt-0.3.0 \
|
||||
git-prompt-0.3.1 \
|
||||
git-quote-0.4.0 \
|
||||
git-ref-0.21.0 \
|
||||
git-refspec-0.5.0 \
|
||||
git-repository-0.30.2 \
|
||||
git-revision-0.8.0 \
|
||||
git-sec-0.6.0 \
|
||||
git-tempfile-3.0.0 \
|
||||
git-sec-0.6.1 \
|
||||
git-tempfile-3.0.1 \
|
||||
git-traverse-0.20.0 \
|
||||
git-url-0.12.2 \
|
||||
git-validate-0.7.1 \
|
||||
git-worktree-0.10.0 \
|
||||
hashbrown-0.12.3 \
|
||||
hashbrown-0.13.1 \
|
||||
hashbrown-0.13.2 \
|
||||
heck-0.4.0 \
|
||||
hermit-abi-0.1.19 \
|
||||
hermit-abi-0.2.6 \
|
||||
|
|
@ -128,15 +127,15 @@ CARGO_CRATES= adler-1.0.2 \
|
|||
inotify-sys-0.1.5 \
|
||||
instant-0.1.12 \
|
||||
io-close-0.3.7 \
|
||||
itoa-1.0.4 \
|
||||
itoa-1.0.5 \
|
||||
js-sys-0.3.60 \
|
||||
jwalk-0.8.1 \
|
||||
kqueue-1.0.7 \
|
||||
kqueue-sys-1.0.3 \
|
||||
lazy-regex-2.3.1 \
|
||||
lazy-regex-proc_macros-2.3.1 \
|
||||
libc-0.2.138 \
|
||||
link-cplusplus-1.0.7 \
|
||||
lazy-regex-2.4.1 \
|
||||
lazy-regex-proc_macros-2.4.1 \
|
||||
libc-0.2.139 \
|
||||
link-cplusplus-1.0.8 \
|
||||
lock_api-0.4.9 \
|
||||
log-0.4.17 \
|
||||
memchr-2.5.0 \
|
||||
|
|
@ -147,44 +146,44 @@ CARGO_CRATES= adler-1.0.2 \
|
|||
miniz_oxide-0.6.2 \
|
||||
mio-0.8.5 \
|
||||
nix-0.26.1 \
|
||||
nom-7.1.1 \
|
||||
nom-7.1.2 \
|
||||
notify-5.0.0 \
|
||||
num-integer-0.1.45 \
|
||||
num-traits-0.2.15 \
|
||||
num_cpus-1.15.0 \
|
||||
num_threads-0.1.6 \
|
||||
once_cell-1.16.0 \
|
||||
once_cell-1.17.0 \
|
||||
os_str_bytes-6.4.1 \
|
||||
parking_lot-0.11.2 \
|
||||
parking_lot-0.12.1 \
|
||||
parking_lot_core-0.8.6 \
|
||||
parking_lot_core-0.9.5 \
|
||||
parking_lot_core-0.9.6 \
|
||||
percent-encoding-2.2.0 \
|
||||
pin-project-lite-0.2.9 \
|
||||
proc-macro-error-1.0.4 \
|
||||
proc-macro-error-attr-1.0.4 \
|
||||
proc-macro2-1.0.47 \
|
||||
proc-macro2-1.0.49 \
|
||||
proc-status-0.1.1 \
|
||||
prodash-22.1.0 \
|
||||
quick-error-2.0.1 \
|
||||
quote-1.0.21 \
|
||||
quote-1.0.23 \
|
||||
rayon-1.6.1 \
|
||||
rayon-core-1.10.1 \
|
||||
redox_syscall-0.2.16 \
|
||||
redox_users-0.4.3 \
|
||||
regex-1.7.0 \
|
||||
regex-1.7.1 \
|
||||
regex-automata-0.1.10 \
|
||||
regex-syntax-0.6.28 \
|
||||
remove_dir_all-0.5.3 \
|
||||
rustversion-1.0.11 \
|
||||
ryu-1.0.11 \
|
||||
ryu-1.0.12 \
|
||||
same-file-1.0.6 \
|
||||
scopeguard-1.1.0 \
|
||||
scratch-1.0.2 \
|
||||
semver-1.0.14 \
|
||||
serde-1.0.150 \
|
||||
serde_derive-1.0.150 \
|
||||
serde_json-1.0.89 \
|
||||
scratch-1.0.3 \
|
||||
semver-1.0.16 \
|
||||
serde-1.0.152 \
|
||||
serde_derive-1.0.152 \
|
||||
serde_json-1.0.91 \
|
||||
sha1_smol-1.0.0 \
|
||||
signal-hook-0.3.14 \
|
||||
signal-hook-mio-0.2.3 \
|
||||
|
|
@ -193,26 +192,26 @@ CARGO_CRATES= adler-1.0.2 \
|
|||
socket2-0.4.7 \
|
||||
static_assertions-1.1.0 \
|
||||
strsim-0.10.0 \
|
||||
syn-1.0.105 \
|
||||
syn-1.0.107 \
|
||||
tempfile-3.3.0 \
|
||||
termcolor-1.1.3 \
|
||||
termimad-0.20.6 \
|
||||
textwrap-0.16.0 \
|
||||
thiserror-1.0.37 \
|
||||
thiserror-impl-1.0.37 \
|
||||
thiserror-1.0.38 \
|
||||
thiserror-impl-1.0.38 \
|
||||
time-0.1.45 \
|
||||
time-0.3.17 \
|
||||
time-core-0.1.0 \
|
||||
time-macros-0.2.6 \
|
||||
tinyvec-1.6.0 \
|
||||
tinyvec_macros-0.1.0 \
|
||||
tokio-1.23.0 \
|
||||
tokio-1.24.1 \
|
||||
tokio-macros-1.8.2 \
|
||||
toml-0.5.10 \
|
||||
uluru-3.0.0 \
|
||||
unicode-bidi-0.3.8 \
|
||||
unicode-bom-1.1.4 \
|
||||
unicode-ident-1.0.5 \
|
||||
unicode-ident-1.0.6 \
|
||||
unicode-normalization-0.1.22 \
|
||||
unicode-width-0.1.10 \
|
||||
url-2.3.1 \
|
||||
|
|
@ -232,21 +231,14 @@ CARGO_CRATES= adler-1.0.2 \
|
|||
winapi-i686-pc-windows-gnu-0.4.0 \
|
||||
winapi-util-0.1.5 \
|
||||
winapi-x86_64-pc-windows-gnu-0.4.0 \
|
||||
windows-0.40.0 \
|
||||
windows-0.43.0 \
|
||||
windows-sys-0.42.0 \
|
||||
windows_aarch64_gnullvm-0.40.0 \
|
||||
windows_aarch64_gnullvm-0.42.0 \
|
||||
windows_aarch64_msvc-0.40.0 \
|
||||
windows_aarch64_msvc-0.42.0 \
|
||||
windows_i686_gnu-0.40.0 \
|
||||
windows_i686_gnu-0.42.0 \
|
||||
windows_i686_msvc-0.40.0 \
|
||||
windows_i686_msvc-0.42.0 \
|
||||
windows_x86_64_gnu-0.40.0 \
|
||||
windows_x86_64_gnu-0.42.0 \
|
||||
windows_x86_64_gnullvm-0.40.0 \
|
||||
windows_x86_64_gnullvm-0.42.0 \
|
||||
windows_x86_64_msvc-0.40.0 \
|
||||
windows_x86_64_msvc-0.42.0
|
||||
|
||||
PLIST_FILES= bin/${PORTNAME}
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
TIMESTAMP = 1672700617
|
||||
TIMESTAMP = 1674149822
|
||||
SHA256 (rust/crates/adler-1.0.2.crate) = f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe
|
||||
SIZE (rust/crates/adler-1.0.2.crate) = 12778
|
||||
SHA256 (rust/crates/ahash-0.8.2.crate) = bf6ccdb167abbf410dcb915cabd428929d7f6a04980b54a11f26a39f1c7f7107
|
||||
|
|
@ -9,8 +9,8 @@ SHA256 (rust/crates/android_system_properties-0.1.5.crate) = 819e7219dbd41043ac2
|
|||
SIZE (rust/crates/android_system_properties-0.1.5.crate) = 5243
|
||||
SHA256 (rust/crates/anyhow-1.0.68.crate) = 2cb2f989d18dd141ab8ae82f64d1a8cdd37e0840f73a406896cf5e99502fab61
|
||||
SIZE (rust/crates/anyhow-1.0.68.crate) = 43882
|
||||
SHA256 (rust/crates/arc-swap-1.5.1.crate) = 983cd8b9d4b02a6dc6ffa557262eb5858a27a0038ffffe21a0f133eaa819a164
|
||||
SIZE (rust/crates/arc-swap-1.5.1.crate) = 66157
|
||||
SHA256 (rust/crates/arc-swap-1.6.0.crate) = bddcadddf5e9015d310179a59bb28c4d4b9920ad0f11e8e14dbadf654890c9a6
|
||||
SIZE (rust/crates/arc-swap-1.6.0.crate) = 67342
|
||||
SHA256 (rust/crates/arrayvec-0.5.2.crate) = 23b62fc65de8e4e7f52534fb52b0f3ed04746ae267519eef2a83941e8085068b
|
||||
SIZE (rust/crates/arrayvec-0.5.2.crate) = 27838
|
||||
SHA256 (rust/crates/arrayvec-0.7.2.crate) = 8da52d66c7071e2e3fa2a1e5c6d088fec47b593032b254f5e980de8ea54454d6
|
||||
|
|
@ -33,8 +33,8 @@ SHA256 (rust/crates/bytes-1.3.0.crate) = dfb24e866b15a1af2a1b663f10c6b6b8f397a84
|
|||
SIZE (rust/crates/bytes-1.3.0.crate) = 57563
|
||||
SHA256 (rust/crates/bytesize-1.1.0.crate) = 6c58ec36aac5066d5ca17df51b3e70279f5670a72102f5752cb7e7c856adfc70
|
||||
SIZE (rust/crates/bytesize-1.1.0.crate) = 9370
|
||||
SHA256 (rust/crates/camino-1.1.1.crate) = 88ad0e1e3e88dd237a156ab9f571021b8a158caa0ae44b1968a241efb5144c1e
|
||||
SIZE (rust/crates/camino-1.1.1.crate) = 30737
|
||||
SHA256 (rust/crates/camino-1.1.2.crate) = c77df041dc383319cc661b428b6961a005db4d6808d5e12536931b1ca9556055
|
||||
SIZE (rust/crates/camino-1.1.2.crate) = 31121
|
||||
SHA256 (rust/crates/cargo-platform-0.1.2.crate) = cbdb825da8a5df079a43676dbe042702f1707b1109f713a01420fbb4cc71fa27
|
||||
SIZE (rust/crates/cargo-platform-0.1.2.crate) = 11645
|
||||
SHA256 (rust/crates/cargo_metadata-0.14.2.crate) = 4acbb09d9ee8e23699b9634375c72795d095bf268439da88562cf9b501f181fa
|
||||
|
|
@ -87,14 +87,14 @@ SHA256 (rust/crates/crossterm-0.23.2.crate) = a2102ea4f781910f8a5b98dd061f4c2023
|
|||
SIZE (rust/crates/crossterm-0.23.2.crate) = 106712
|
||||
SHA256 (rust/crates/crossterm_winapi-0.9.0.crate) = 2ae1b35a484aa10e07fe0638d02301c5ad24de82d310ccbd2f3693da5f09bf1c
|
||||
SIZE (rust/crates/crossterm_winapi-0.9.0.crate) = 15561
|
||||
SHA256 (rust/crates/cxx-1.0.83.crate) = bdf07d07d6531bfcdbe9b8b739b104610c6508dcc4d63b410585faf338241daf
|
||||
SIZE (rust/crates/cxx-1.0.83.crate) = 198262
|
||||
SHA256 (rust/crates/cxx-build-1.0.83.crate) = d2eb5b96ecdc99f72657332953d4d9c50135af1bac34277801cc3937906ebd39
|
||||
SIZE (rust/crates/cxx-build-1.0.83.crate) = 84791
|
||||
SHA256 (rust/crates/cxxbridge-flags-1.0.83.crate) = ac040a39517fd1674e0f32177648334b0f4074625b5588a64519804ba0553b12
|
||||
SIZE (rust/crates/cxxbridge-flags-1.0.83.crate) = 5635
|
||||
SHA256 (rust/crates/cxxbridge-macro-1.0.83.crate) = 1362b0ddcfc4eb0a1f57b68bd77dd99f0e826958a96abd0ae9bd092e114ffed6
|
||||
SIZE (rust/crates/cxxbridge-macro-1.0.83.crate) = 59869
|
||||
SHA256 (rust/crates/cxx-1.0.86.crate) = 51d1075c37807dcf850c379432f0df05ba52cc30f279c5cfc43cc221ce7f8579
|
||||
SIZE (rust/crates/cxx-1.0.86.crate) = 589122
|
||||
SHA256 (rust/crates/cxx-build-1.0.86.crate) = 5044281f61b27bc598f2f6647d480aed48d2bf52d6eb0b627d84c0361b17aa70
|
||||
SIZE (rust/crates/cxx-build-1.0.86.crate) = 84425
|
||||
SHA256 (rust/crates/cxxbridge-flags-1.0.86.crate) = 61b50bc93ba22c27b0d31128d2d130a0a6b3d267ae27ef7e4fae2167dfe8781c
|
||||
SIZE (rust/crates/cxxbridge-flags-1.0.86.crate) = 5251
|
||||
SHA256 (rust/crates/cxxbridge-macro-1.0.86.crate) = 39e61fda7e62115119469c7b3591fd913ecca96fb766cfd3f2e2502ab7bc87a5
|
||||
SIZE (rust/crates/cxxbridge-macro-1.0.86.crate) = 59474
|
||||
SHA256 (rust/crates/dashmap-5.4.0.crate) = 907076dfda823b0b36d2a1bb5f90c96660a5bbcd7729e10727f07858f22c4edc
|
||||
SIZE (rust/crates/dashmap-5.4.0.crate) = 22862
|
||||
SHA256 (rust/crates/directories-next-2.0.0.crate) = 339ee130d97a610ea5a5872d2bbb130fdf68884ff09d3028b81bec8a1ac23bbc
|
||||
|
|
@ -129,8 +129,8 @@ SHA256 (rust/crates/git-bitmap-0.2.0.crate) = 44304093ac66a0ada1b243c15c3a503a16
|
|||
SIZE (rust/crates/git-bitmap-0.2.0.crate) = 6334
|
||||
SHA256 (rust/crates/git-chunk-0.4.0.crate) = 3090baa2f4a3fe488a9b3e31090b83259aaf930bf0634af34c18117274f8f1a8
|
||||
SIZE (rust/crates/git-chunk-0.4.0.crate) = 9558
|
||||
SHA256 (rust/crates/git-command-0.2.0.crate) = a6b98a6312fef79b326c0a6e15d576c2bd30f7f9d0b7964998d166049e0d7b9e
|
||||
SIZE (rust/crates/git-command-0.2.0.crate) = 5125
|
||||
SHA256 (rust/crates/git-command-0.2.2.crate) = 5a19fe1efc0b4969b2b2a14621f6cf6a007cf6cbabcf344e078271b65d1f7cef
|
||||
SIZE (rust/crates/git-command-0.2.2.crate) = 6552
|
||||
SHA256 (rust/crates/git-config-0.13.0.crate) = 5ff189268cfb19d5151529ac30b6b708072ebfa1075643d785232675456ec320
|
||||
SIZE (rust/crates/git-config-0.13.0.crate) = 114618
|
||||
SHA256 (rust/crates/git-config-value-0.10.0.crate) = 989a90c1c630513a153c685b4249b96fdf938afc75bf7ef2ae1ccbd3d799f5db
|
||||
|
|
@ -145,8 +145,8 @@ SHA256 (rust/crates/git-discover-0.10.0.crate) = 93c244b1cf7cf45501116e948506c25
|
|||
SIZE (rust/crates/git-discover-0.10.0.crate) = 23459
|
||||
SHA256 (rust/crates/git-features-0.25.1.crate) = 0f98e6ede7b790dfba16bf3c62861ae75c3719485d675b522cf7d7e748a4011c
|
||||
SIZE (rust/crates/git-features-0.25.1.crate) = 54378
|
||||
SHA256 (rust/crates/git-glob-0.5.1.crate) = 3908404c9b76ac7b3f636a104142378d3eaa78623cbc6eb7c7f0651979d48e8a
|
||||
SIZE (rust/crates/git-glob-0.5.1.crate) = 35766
|
||||
SHA256 (rust/crates/git-glob-0.5.2.crate) = aa73cf9c9c1a66e28de1cf250fc1ebe323e7c7c59768c1a2331e3b3308e783a3
|
||||
SIZE (rust/crates/git-glob-0.5.2.crate) = 36039
|
||||
SHA256 (rust/crates/git-hash-0.10.1.crate) = 1532d82bf830532f8d545c5b7b568e311e3593f16cf7ee9dd0ce03c74b12b99d
|
||||
SIZE (rust/crates/git-hash-0.10.1.crate) = 21081
|
||||
SHA256 (rust/crates/git-hashtable-0.1.0.crate) = c52b625ad8cc360a0b7f426266f21fb07bd49b8f4ccf1b3ca7bc89424db1dec4
|
||||
|
|
@ -165,8 +165,8 @@ SHA256 (rust/crates/git-pack-0.28.0.crate) = 9ed3c9af66949553af9795b9eac9d450a5b
|
|||
SIZE (rust/crates/git-pack-0.28.0.crate) = 121982
|
||||
SHA256 (rust/crates/git-path-0.7.0.crate) = e40e68481a06da243d3f4dfd86a4be39c24eefb535017a862e845140dcdb878a
|
||||
SIZE (rust/crates/git-path-0.7.0.crate) = 17030
|
||||
SHA256 (rust/crates/git-prompt-0.3.0.crate) = 3612a486e507dd431ef0f7108eeaafc8fd1ed7bd0f205a88554f6f91fe5dccbf
|
||||
SIZE (rust/crates/git-prompt-0.3.0.crate) = 12575
|
||||
SHA256 (rust/crates/git-prompt-0.3.1.crate) = ad3f84ec28896f6a4b3f3174a1125117ac91788b1c64d96f25eabcd8d01cc7e3
|
||||
SIZE (rust/crates/git-prompt-0.3.1.crate) = 12820
|
||||
SHA256 (rust/crates/git-quote-0.4.0.crate) = 1dd11f4e7f251ab297545faa4c5a4517f4985a43b9c16bf96fa49107f58e837f
|
||||
SIZE (rust/crates/git-quote-0.4.0.crate) = 5647
|
||||
SHA256 (rust/crates/git-ref-0.21.0.crate) = c97b7d719e4320179fb64d081016e7faca56fed4a8ee4cf84e4697faad9235a3
|
||||
|
|
@ -177,10 +177,10 @@ SHA256 (rust/crates/git-repository-0.30.2.crate) = 1925a65a9fea6587e969a7a85cb23
|
|||
SIZE (rust/crates/git-repository-0.30.2.crate) = 258514
|
||||
SHA256 (rust/crates/git-revision-0.8.0.crate) = f7516b1db551756b4d3176c4b7d18ccc4b79d35dcc5e74f768c90f5bb11bb6c9
|
||||
SIZE (rust/crates/git-revision-0.8.0.crate) = 30389
|
||||
SHA256 (rust/crates/git-sec-0.6.0.crate) = 9e1802e8252fa223b0ad89a393aed461132174ced1e6842a41f56dc92a3fc14f
|
||||
SIZE (rust/crates/git-sec-0.6.0.crate) = 13601
|
||||
SHA256 (rust/crates/git-tempfile-3.0.0.crate) = a6bb4dee86c8cae5a078cfaac3b004ef99c31548ed86218f23a7ff9b4b74f3be
|
||||
SIZE (rust/crates/git-tempfile-3.0.0.crate) = 29443
|
||||
SHA256 (rust/crates/git-sec-0.6.1.crate) = 6696a816445a51f76995d579a3122f98247377cc45cd681764f740f3a2666004
|
||||
SIZE (rust/crates/git-sec-0.6.1.crate) = 13975
|
||||
SHA256 (rust/crates/git-tempfile-3.0.1.crate) = 2d851911a2b043dc1ab6cd5432ce7a3ee3a2fd614ed87428cec1b15f5abb7e0c
|
||||
SIZE (rust/crates/git-tempfile-3.0.1.crate) = 29738
|
||||
SHA256 (rust/crates/git-traverse-0.20.0.crate) = 5e5141dde56d0c4861193c760e01fb61c7e03a32d0840ba93a0ac1c597588d4d
|
||||
SIZE (rust/crates/git-traverse-0.20.0.crate) = 6862
|
||||
SHA256 (rust/crates/git-url-0.12.2.crate) = 8651924c9692a778f09141ca44d1bf2dada229fe9b240f1ff1bdecd9621a1a93
|
||||
|
|
@ -191,8 +191,8 @@ SHA256 (rust/crates/git-worktree-0.10.0.crate) = 17d748c54c3d904c914b987654a1416
|
|||
SIZE (rust/crates/git-worktree-0.10.0.crate) = 32368
|
||||
SHA256 (rust/crates/hashbrown-0.12.3.crate) = 8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888
|
||||
SIZE (rust/crates/hashbrown-0.12.3.crate) = 102968
|
||||
SHA256 (rust/crates/hashbrown-0.13.1.crate) = 33ff8ae62cd3a9102e5637afc8452c55acf3844001bd5374e0b0bd7b6616c038
|
||||
SIZE (rust/crates/hashbrown-0.13.1.crate) = 105004
|
||||
SHA256 (rust/crates/hashbrown-0.13.2.crate) = 43a3c133739dddd0d2990f9a4bdf8eb4b21ef50e4851ca85ab661199821d510e
|
||||
SIZE (rust/crates/hashbrown-0.13.2.crate) = 105265
|
||||
SHA256 (rust/crates/heck-0.4.0.crate) = 2540771e65fc8cb83cd6e8a237f70c319bd5c29f78ed1084ba5d50eeac86f7f9
|
||||
SIZE (rust/crates/heck-0.4.0.crate) = 11161
|
||||
SHA256 (rust/crates/hermit-abi-0.1.19.crate) = 62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33
|
||||
|
|
@ -223,8 +223,8 @@ SHA256 (rust/crates/instant-0.1.12.crate) = 7a5bbe824c507c5da5956355e86a746d82e0
|
|||
SIZE (rust/crates/instant-0.1.12.crate) = 6128
|
||||
SHA256 (rust/crates/io-close-0.3.7.crate) = 9cadcf447f06744f8ce713d2d6239bb5bde2c357a452397a9ed90c625da390bc
|
||||
SIZE (rust/crates/io-close-0.3.7.crate) = 8025
|
||||
SHA256 (rust/crates/itoa-1.0.4.crate) = 4217ad341ebadf8d8e724e264f13e593e0648f5b3e94b3896a5df283be015ecc
|
||||
SIZE (rust/crates/itoa-1.0.4.crate) = 10601
|
||||
SHA256 (rust/crates/itoa-1.0.5.crate) = fad582f4b9e86b6caa621cabeb0963332d92eea04729ab12892c2533951e6440
|
||||
SIZE (rust/crates/itoa-1.0.5.crate) = 10622
|
||||
SHA256 (rust/crates/js-sys-0.3.60.crate) = 49409df3e3bf0856b916e2ceaca09ee28e6871cf7d9ce97a692cacfdb2a25a47
|
||||
SIZE (rust/crates/js-sys-0.3.60.crate) = 79257
|
||||
SHA256 (rust/crates/jwalk-0.8.1.crate) = 2735847566356cd2179a2a38264839308f7079fa96e6bd5a42d740460e003c56
|
||||
|
|
@ -233,14 +233,14 @@ SHA256 (rust/crates/kqueue-1.0.7.crate) = 2c8fc60ba15bf51257aa9807a48a61013db043
|
|||
SIZE (rust/crates/kqueue-1.0.7.crate) = 12554
|
||||
SHA256 (rust/crates/kqueue-sys-1.0.3.crate) = 8367585489f01bc55dd27404dcf56b95e6da061a256a666ab23be9ba96a2e587
|
||||
SIZE (rust/crates/kqueue-sys-1.0.3.crate) = 6673
|
||||
SHA256 (rust/crates/lazy-regex-2.3.1.crate) = ae9656bf98b413727b974a451039bc00ce546c3de9440cb4a7b65222b71e17cc
|
||||
SIZE (rust/crates/lazy-regex-2.3.1.crate) = 4484
|
||||
SHA256 (rust/crates/lazy-regex-proc_macros-2.3.1.crate) = da3c3042a5f73640f091fda4175798f2b51c2107deeab18e3017873a4772dd36
|
||||
SIZE (rust/crates/lazy-regex-proc_macros-2.3.1.crate) = 3969
|
||||
SHA256 (rust/crates/libc-0.2.138.crate) = db6d7e329c562c5dfab7a46a2afabc8b987ab9a4834c9d1ca04dc54c1546cef8
|
||||
SIZE (rust/crates/libc-0.2.138.crate) = 609081
|
||||
SHA256 (rust/crates/link-cplusplus-1.0.7.crate) = 9272ab7b96c9046fbc5bc56c06c117cb639fe2d509df0c421cad82d2915cf369
|
||||
SIZE (rust/crates/link-cplusplus-1.0.7.crate) = 7576
|
||||
SHA256 (rust/crates/lazy-regex-2.4.1.crate) = a505da2f89befd87ab425d252795f0f285e100b43e7d22d29528df3d9a576793
|
||||
SIZE (rust/crates/lazy-regex-2.4.1.crate) = 4645
|
||||
SHA256 (rust/crates/lazy-regex-proc_macros-2.4.1.crate) = 8edfc11b8f56ce85e207e62ea21557cfa09bb24a8f6b04ae181b086ff8611c22
|
||||
SIZE (rust/crates/lazy-regex-proc_macros-2.4.1.crate) = 3967
|
||||
SHA256 (rust/crates/libc-0.2.139.crate) = 201de327520df007757c1f0adce6e827fe8562fbc28bfd9c15571c66ca1f5f79
|
||||
SIZE (rust/crates/libc-0.2.139.crate) = 638983
|
||||
SHA256 (rust/crates/link-cplusplus-1.0.8.crate) = ecd207c9c713c34f95a097a5b029ac2ce6010530c7b49d7fea24d977dede04f5
|
||||
SIZE (rust/crates/link-cplusplus-1.0.8.crate) = 7674
|
||||
SHA256 (rust/crates/lock_api-0.4.9.crate) = 435011366fe56583b16cf956f9df0095b405b82d76425bc8981c0e22e60ec4df
|
||||
SIZE (rust/crates/lock_api-0.4.9.crate) = 25685
|
||||
SHA256 (rust/crates/log-0.4.17.crate) = abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e
|
||||
|
|
@ -261,8 +261,8 @@ SHA256 (rust/crates/mio-0.8.5.crate) = e5d732bc30207a6423068df043e3d02e0735b155a
|
|||
SIZE (rust/crates/mio-0.8.5.crate) = 93993
|
||||
SHA256 (rust/crates/nix-0.26.1.crate) = 46a58d1d356c6597d08cde02c2f09d785b09e28711837b1ed667dc652c08a694
|
||||
SIZE (rust/crates/nix-0.26.1.crate) = 277805
|
||||
SHA256 (rust/crates/nom-7.1.1.crate) = a8903e5a29a317527874d0402f867152a3d21c908bb0b933e416c65e301d4c36
|
||||
SIZE (rust/crates/nom-7.1.1.crate) = 115818
|
||||
SHA256 (rust/crates/nom-7.1.2.crate) = e5507769c4919c998e69e49c839d9dc6e693ede4cc4290d6ad8b41d4f09c548c
|
||||
SIZE (rust/crates/nom-7.1.2.crate) = 117341
|
||||
SHA256 (rust/crates/notify-5.0.0.crate) = ed2c66da08abae1c024c01d635253e402341b4060a12e99b31c7594063bf490a
|
||||
SIZE (rust/crates/notify-5.0.0.crate) = 37091
|
||||
SHA256 (rust/crates/num-integer-0.1.45.crate) = 225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9
|
||||
|
|
@ -273,8 +273,8 @@ SHA256 (rust/crates/num_cpus-1.15.0.crate) = 0fac9e2da13b5eb447a6ce3d392f23a29d8
|
|||
SIZE (rust/crates/num_cpus-1.15.0.crate) = 15680
|
||||
SHA256 (rust/crates/num_threads-0.1.6.crate) = 2819ce041d2ee131036f4fc9d6ae7ae125a3a40e97ba64d04fe799ad9dabbb44
|
||||
SIZE (rust/crates/num_threads-0.1.6.crate) = 7334
|
||||
SHA256 (rust/crates/once_cell-1.16.0.crate) = 86f0b0d4bf799edbc74508c1e8bf170ff5f41238e5f8225603ca7caaae2b7860
|
||||
SIZE (rust/crates/once_cell-1.16.0.crate) = 32120
|
||||
SHA256 (rust/crates/once_cell-1.17.0.crate) = 6f61fba1741ea2b3d6a1e3178721804bb716a68a6aeba1149b5d52e3d464ea66
|
||||
SIZE (rust/crates/once_cell-1.17.0.crate) = 32736
|
||||
SHA256 (rust/crates/os_str_bytes-6.4.1.crate) = 9b7820b9daea5457c9f21c69448905d723fbd21136ccf521748f23fd49e723ee
|
||||
SIZE (rust/crates/os_str_bytes-6.4.1.crate) = 23101
|
||||
SHA256 (rust/crates/parking_lot-0.11.2.crate) = 7d17b78036a60663b797adeaee46f5c9dfebb86948d1255007a1d6be0271ff99
|
||||
|
|
@ -283,8 +283,8 @@ SHA256 (rust/crates/parking_lot-0.12.1.crate) = 3742b2c103b9f06bc9fff0a37ff49129
|
|||
SIZE (rust/crates/parking_lot-0.12.1.crate) = 40967
|
||||
SHA256 (rust/crates/parking_lot_core-0.8.6.crate) = 60a2cfe6f0ad2bfc16aefa463b497d5c7a5ecd44a23efa72aa342d90177356dc
|
||||
SIZE (rust/crates/parking_lot_core-0.8.6.crate) = 32567
|
||||
SHA256 (rust/crates/parking_lot_core-0.9.5.crate) = 7ff9f3fef3968a3ec5945535ed654cb38ff72d7495a25619e2247fb15a2ed9ba
|
||||
SIZE (rust/crates/parking_lot_core-0.9.5.crate) = 32396
|
||||
SHA256 (rust/crates/parking_lot_core-0.9.6.crate) = ba1ef8814b5c993410bb3adfad7a5ed269563e4a2f90c41f5d85be7fb47133bf
|
||||
SIZE (rust/crates/parking_lot_core-0.9.6.crate) = 32414
|
||||
SHA256 (rust/crates/percent-encoding-2.2.0.crate) = 478c572c3d73181ff3c2539045f6eb99e5491218eae919370993b890cdbdd98e
|
||||
SIZE (rust/crates/percent-encoding-2.2.0.crate) = 10075
|
||||
SHA256 (rust/crates/pin-project-lite-0.2.9.crate) = e0a7ae3ac2f1173085d398531c705756c94a4c56843785df85a60c1a0afac116
|
||||
|
|
@ -293,16 +293,16 @@ SHA256 (rust/crates/proc-macro-error-1.0.4.crate) = da25490ff9892aab3fcf7c36f08c
|
|||
SIZE (rust/crates/proc-macro-error-1.0.4.crate) = 25293
|
||||
SHA256 (rust/crates/proc-macro-error-attr-1.0.4.crate) = a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869
|
||||
SIZE (rust/crates/proc-macro-error-attr-1.0.4.crate) = 7971
|
||||
SHA256 (rust/crates/proc-macro2-1.0.47.crate) = 5ea3d908b0e36316caf9e9e2c4625cdde190a7e6f440d794667ed17a1855e725
|
||||
SIZE (rust/crates/proc-macro2-1.0.47.crate) = 41955
|
||||
SHA256 (rust/crates/proc-macro2-1.0.49.crate) = 57a8eca9f9c4ffde41714334dee777596264c7825420f521abc92b5b5deb63a5
|
||||
SIZE (rust/crates/proc-macro2-1.0.49.crate) = 41977
|
||||
SHA256 (rust/crates/proc-status-0.1.1.crate) = f0e0c0ac915e7b76b47850ba4ffc377abde6c6ff9eeace61d0a89623db449712
|
||||
SIZE (rust/crates/proc-status-0.1.1.crate) = 4136
|
||||
SHA256 (rust/crates/prodash-22.1.0.crate) = 38e2b91fcc982d0d8ae5e9d477561c73e09c24c5c19bac4858e202f6f065a13e
|
||||
SIZE (rust/crates/prodash-22.1.0.crate) = 82853
|
||||
SHA256 (rust/crates/quick-error-2.0.1.crate) = a993555f31e5a609f617c12db6250dedcac1b0a85076912c436e6fc9b2c8e6a3
|
||||
SIZE (rust/crates/quick-error-2.0.1.crate) = 14265
|
||||
SHA256 (rust/crates/quote-1.0.21.crate) = bbe448f377a7d6961e30f5955f9b8d106c3f5e449d493ee1b125c1d43c2b5179
|
||||
SIZE (rust/crates/quote-1.0.21.crate) = 28030
|
||||
SHA256 (rust/crates/quote-1.0.23.crate) = 8856d8364d252a14d474036ea1358d63c9e6965c8e5c1885c18f73d70bff9c7b
|
||||
SIZE (rust/crates/quote-1.0.23.crate) = 28058
|
||||
SHA256 (rust/crates/rayon-1.6.1.crate) = 6db3a213adf02b3bcfd2d3846bb41cb22857d131789e01df434fb7e7bc0759b7
|
||||
SIZE (rust/crates/rayon-1.6.1.crate) = 166330
|
||||
SHA256 (rust/crates/rayon-core-1.10.1.crate) = cac410af5d00ab6884528b4ab69d1e8e146e8d471201800fa1b4524126de6ad3
|
||||
|
|
@ -311,8 +311,8 @@ SHA256 (rust/crates/redox_syscall-0.2.16.crate) = fb5a58c1855b4b6819d59012155603
|
|||
SIZE (rust/crates/redox_syscall-0.2.16.crate) = 24012
|
||||
SHA256 (rust/crates/redox_users-0.4.3.crate) = b033d837a7cf162d7993aded9304e30a83213c648b6e389db233191f891e5c2b
|
||||
SIZE (rust/crates/redox_users-0.4.3.crate) = 15353
|
||||
SHA256 (rust/crates/regex-1.7.0.crate) = e076559ef8e241f2ae3479e36f97bd5741c0330689e217ad51ce2c76808b868a
|
||||
SIZE (rust/crates/regex-1.7.0.crate) = 239421
|
||||
SHA256 (rust/crates/regex-1.7.1.crate) = 48aaa5748ba571fb95cd2c85c09f629215d3a6ece942baa100950af03a34f733
|
||||
SIZE (rust/crates/regex-1.7.1.crate) = 239648
|
||||
SHA256 (rust/crates/regex-automata-0.1.10.crate) = 6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132
|
||||
SIZE (rust/crates/regex-automata-0.1.10.crate) = 114533
|
||||
SHA256 (rust/crates/regex-syntax-0.6.28.crate) = 456c603be3e8d448b072f410900c09faf164fbce2d480456f50eea6e25f9c848
|
||||
|
|
@ -321,22 +321,22 @@ SHA256 (rust/crates/remove_dir_all-0.5.3.crate) = 3acd125665422973a33ac9d3dd2df8
|
|||
SIZE (rust/crates/remove_dir_all-0.5.3.crate) = 9184
|
||||
SHA256 (rust/crates/rustversion-1.0.11.crate) = 5583e89e108996506031660fe09baa5011b9dd0341b89029313006d1fb508d70
|
||||
SIZE (rust/crates/rustversion-1.0.11.crate) = 17485
|
||||
SHA256 (rust/crates/ryu-1.0.11.crate) = 4501abdff3ae82a1c1b477a17252eb69cee9e66eb915c1abaa4f44d873df9f09
|
||||
SIZE (rust/crates/ryu-1.0.11.crate) = 47007
|
||||
SHA256 (rust/crates/ryu-1.0.12.crate) = 7b4b9743ed687d4b4bcedf9ff5eaa7398495ae14e61cba0a295704edbc7decde
|
||||
SIZE (rust/crates/ryu-1.0.12.crate) = 47070
|
||||
SHA256 (rust/crates/same-file-1.0.6.crate) = 93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502
|
||||
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/scratch-1.0.2.crate) = 9c8132065adcfd6e02db789d9285a0deb2f3fcb04002865ab67d5fb103533898
|
||||
SIZE (rust/crates/scratch-1.0.2.crate) = 8152
|
||||
SHA256 (rust/crates/semver-1.0.14.crate) = e25dfac463d778e353db5be2449d1cce89bd6fd23c9f1ea21310ce6e5a1b29c4
|
||||
SIZE (rust/crates/semver-1.0.14.crate) = 29813
|
||||
SHA256 (rust/crates/serde-1.0.150.crate) = e326c9ec8042f1b5da33252c8a37e9ffbd2c9bef0155215b6e6c80c790e05f91
|
||||
SIZE (rust/crates/serde-1.0.150.crate) = 76864
|
||||
SHA256 (rust/crates/serde_derive-1.0.150.crate) = 42a3df25b0713732468deadad63ab9da1f1fd75a48a15024b50363f128db627e
|
||||
SIZE (rust/crates/serde_derive-1.0.150.crate) = 55565
|
||||
SHA256 (rust/crates/serde_json-1.0.89.crate) = 020ff22c755c2ed3f8cf162dbb41a7268d934702f3ed3631656ea597e08fc3db
|
||||
SIZE (rust/crates/serde_json-1.0.89.crate) = 144638
|
||||
SHA256 (rust/crates/scratch-1.0.3.crate) = ddccb15bcce173023b3fedd9436f882a0739b8dfb45e4f6b6002bee5929f61b2
|
||||
SIZE (rust/crates/scratch-1.0.3.crate) = 8198
|
||||
SHA256 (rust/crates/semver-1.0.16.crate) = 58bc9567378fc7690d6b2addae4e60ac2eeea07becb2c64b9f218b53865cba2a
|
||||
SIZE (rust/crates/semver-1.0.16.crate) = 29850
|
||||
SHA256 (rust/crates/serde-1.0.152.crate) = bb7d1f0d3021d347a83e556fc4683dea2ea09d87bccdf88ff5c12545d89d5efb
|
||||
SIZE (rust/crates/serde-1.0.152.crate) = 77091
|
||||
SHA256 (rust/crates/serde_derive-1.0.152.crate) = af487d118eecd09402d70a5d72551860e788df87b464af30e5ea6a38c75c541e
|
||||
SIZE (rust/crates/serde_derive-1.0.152.crate) = 55586
|
||||
SHA256 (rust/crates/serde_json-1.0.91.crate) = 877c235533714907a8c2464236f5c4b2a17262ef1bd71f38f35ea592c8da6883
|
||||
SIZE (rust/crates/serde_json-1.0.91.crate) = 144654
|
||||
SHA256 (rust/crates/sha1_smol-1.0.0.crate) = ae1a47186c03a32177042e55dbc5fd5aee900b8e0069a8d70fba96a9375cd012
|
||||
SIZE (rust/crates/sha1_smol-1.0.0.crate) = 9782
|
||||
SHA256 (rust/crates/signal-hook-0.3.14.crate) = a253b5e89e2698464fc26b545c9edceb338e18a89effeeecfea192c3025be29d
|
||||
|
|
@ -353,8 +353,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/syn-1.0.105.crate) = 60b9b43d45702de4c839cb9b51d9f529c5dd26a4aff255b42b1ebc03e88ee908
|
||||
SIZE (rust/crates/syn-1.0.105.crate) = 237549
|
||||
SHA256 (rust/crates/syn-1.0.107.crate) = 1f4064b5b16e03ae50984a5a8ed5d4f8803e6bc1fd170a3cda91a1be4b18e3f5
|
||||
SIZE (rust/crates/syn-1.0.107.crate) = 237539
|
||||
SHA256 (rust/crates/tempfile-3.3.0.crate) = 5cdb1ef4eaeeaddc8fbd371e5017057064af0911902ef36b39801f67cc6d79e4
|
||||
SIZE (rust/crates/tempfile-3.3.0.crate) = 27578
|
||||
SHA256 (rust/crates/termcolor-1.1.3.crate) = bab24d30b911b2376f3a13cc2cd443142f0c81dda04c118693e35b3835757755
|
||||
|
|
@ -363,10 +363,10 @@ SHA256 (rust/crates/termimad-0.20.6.crate) = cfab44b4bc17601cf226cce31c87462a4a5
|
|||
SIZE (rust/crates/termimad-0.20.6.crate) = 354740
|
||||
SHA256 (rust/crates/textwrap-0.16.0.crate) = 222a222a5bfe1bba4a77b45ec488a741b3cb8872e5e499451fd7d0129c9c7c3d
|
||||
SIZE (rust/crates/textwrap-0.16.0.crate) = 53722
|
||||
SHA256 (rust/crates/thiserror-1.0.37.crate) = 10deb33631e3c9018b9baf9dcbbc4f737320d2b576bac10f6aefa048fa407e3e
|
||||
SIZE (rust/crates/thiserror-1.0.37.crate) = 18752
|
||||
SHA256 (rust/crates/thiserror-impl-1.0.37.crate) = 982d17546b47146b28f7c22e3d08465f6b8903d0ea13c1660d9d84a6e7adcdbb
|
||||
SIZE (rust/crates/thiserror-impl-1.0.37.crate) = 15428
|
||||
SHA256 (rust/crates/thiserror-1.0.38.crate) = 6a9cd18aa97d5c45c6603caea1da6628790b37f7a34b6ca89522331c5180fed0
|
||||
SIZE (rust/crates/thiserror-1.0.38.crate) = 18947
|
||||
SHA256 (rust/crates/thiserror-impl-1.0.38.crate) = 1fb327af4685e4d03fa8cbcf1716380da910eeb2bb8be417e7f9fd3fb164f36f
|
||||
SIZE (rust/crates/thiserror-impl-1.0.38.crate) = 15429
|
||||
SHA256 (rust/crates/time-0.1.45.crate) = 1b797afad3f312d1c66a56d11d0316f916356d11bd158fbc6ca6389ff6bf805a
|
||||
SIZE (rust/crates/time-0.1.45.crate) = 28911
|
||||
SHA256 (rust/crates/time-0.3.17.crate) = a561bf4617eebd33bca6434b988f39ed798e527f51a1e797d0ee4f61c0a38376
|
||||
|
|
@ -379,8 +379,8 @@ SHA256 (rust/crates/tinyvec-1.6.0.crate) = 87cc5ceb3875bb20c2890005a4e226a465126
|
|||
SIZE (rust/crates/tinyvec-1.6.0.crate) = 45991
|
||||
SHA256 (rust/crates/tinyvec_macros-0.1.0.crate) = cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c
|
||||
SIZE (rust/crates/tinyvec_macros-0.1.0.crate) = 1817
|
||||
SHA256 (rust/crates/tokio-1.23.0.crate) = eab6d665857cc6ca78d6e80303a02cea7a7851e85dfbd77cbdc09bd129f1ef46
|
||||
SIZE (rust/crates/tokio-1.23.0.crate) = 621207
|
||||
SHA256 (rust/crates/tokio-1.24.1.crate) = 1d9f76183f91ecfb55e1d7d5602bd1d979e38a3a522fe900241cf195624d67ae
|
||||
SIZE (rust/crates/tokio-1.24.1.crate) = 625490
|
||||
SHA256 (rust/crates/tokio-macros-1.8.2.crate) = d266c00fde287f55d3f1c3e96c500c362a2b8c695076ec180f27918820bc6df8
|
||||
SIZE (rust/crates/tokio-macros-1.8.2.crate) = 10071
|
||||
SHA256 (rust/crates/toml-0.5.10.crate) = 1333c76748e868a4d9d1017b5ab53171dfd095f70c712fdb4653a406547f598f
|
||||
|
|
@ -391,8 +391,8 @@ SHA256 (rust/crates/unicode-bidi-0.3.8.crate) = 099b7128301d285f79ddd55b9a83d5e6
|
|||
SIZE (rust/crates/unicode-bidi-0.3.8.crate) = 36575
|
||||
SHA256 (rust/crates/unicode-bom-1.1.4.crate) = 63ec69f541d875b783ca40184d655f2927c95f0bffd486faa83cd3ac3529ec32
|
||||
SIZE (rust/crates/unicode-bom-1.1.4.crate) = 10221
|
||||
SHA256 (rust/crates/unicode-ident-1.0.5.crate) = 6ceab39d59e4c9499d4e5a8ee0e2735b891bb7308ac83dfb4e80cad195c9f6f3
|
||||
SIZE (rust/crates/unicode-ident-1.0.5.crate) = 35455
|
||||
SHA256 (rust/crates/unicode-ident-1.0.6.crate) = 84a22b9f218b40614adcb3f4ff08b703773ad44fa9423e4e0d346d5db86e4ebc
|
||||
SIZE (rust/crates/unicode-ident-1.0.6.crate) = 42158
|
||||
SHA256 (rust/crates/unicode-normalization-0.1.22.crate) = 5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921
|
||||
SIZE (rust/crates/unicode-normalization-0.1.22.crate) = 122604
|
||||
SHA256 (rust/crates/unicode-width-0.1.10.crate) = c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b
|
||||
|
|
@ -431,37 +431,23 @@ SHA256 (rust/crates/winapi-util-0.1.5.crate) = 70ec6ce85bb158151cae5e5c87f95a8e9
|
|||
SIZE (rust/crates/winapi-util-0.1.5.crate) = 10164
|
||||
SHA256 (rust/crates/winapi-x86_64-pc-windows-gnu-0.4.0.crate) = 712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f
|
||||
SIZE (rust/crates/winapi-x86_64-pc-windows-gnu-0.4.0.crate) = 2947998
|
||||
SHA256 (rust/crates/windows-0.40.0.crate) = e30acc718a52fb130fec72b1cb5f55ffeeec9253e1b785e94db222178a6acaa1
|
||||
SIZE (rust/crates/windows-0.40.0.crate) = 11923503
|
||||
SHA256 (rust/crates/windows-0.43.0.crate) = 04662ed0e3e5630dfa9b26e4cb823b817f1a9addda855d973a9458c236556244
|
||||
SIZE (rust/crates/windows-0.43.0.crate) = 11492640
|
||||
SHA256 (rust/crates/windows-sys-0.42.0.crate) = 5a3e1820f08b8513f676f7ab6c1f99ff312fb97b553d30ff4dd86f9f15728aa7
|
||||
SIZE (rust/crates/windows-sys-0.42.0.crate) = 3006791
|
||||
SHA256 (rust/crates/windows_aarch64_gnullvm-0.40.0.crate) = f3caa4a1a16561b714323ca6b0817403738583033a6a92e04c5d10d4ba37ca10
|
||||
SIZE (rust/crates/windows_aarch64_gnullvm-0.40.0.crate) = 357801
|
||||
SHA256 (rust/crates/windows_aarch64_gnullvm-0.42.0.crate) = 41d2aa71f6f0cbe00ae5167d90ef3cfe66527d6f613ca78ac8024c3ccab9a19e
|
||||
SIZE (rust/crates/windows_aarch64_gnullvm-0.42.0.crate) = 357917
|
||||
SHA256 (rust/crates/windows_aarch64_msvc-0.40.0.crate) = 328973c62dfcc50fb1aaa8e7100676e0b642fe56bac6bafff3327902db843ab4
|
||||
SIZE (rust/crates/windows_aarch64_msvc-0.40.0.crate) = 659307
|
||||
SHA256 (rust/crates/windows_aarch64_msvc-0.42.0.crate) = dd0f252f5a35cac83d6311b2e795981f5ee6e67eb1f9a7f64eb4500fbc4dcdb4
|
||||
SIZE (rust/crates/windows_aarch64_msvc-0.42.0.crate) = 659424
|
||||
SHA256 (rust/crates/windows_i686_gnu-0.40.0.crate) = aa5b09fad70f0df85dea2ac2a525537e415e2bf63ee31cf9b8e263645ee9f3c1
|
||||
SIZE (rust/crates/windows_i686_gnu-0.40.0.crate) = 728486
|
||||
SHA256 (rust/crates/windows_i686_gnu-0.42.0.crate) = fbeae19f6716841636c28d695375df17562ca208b2b7d0dc47635a50ae6c5de7
|
||||
SIZE (rust/crates/windows_i686_gnu-0.42.0.crate) = 728570
|
||||
SHA256 (rust/crates/windows_i686_msvc-0.40.0.crate) = 2a1ad4031c1a98491fa195d8d43d7489cb749f135f2e5c4eed58da094bd0d876
|
||||
SIZE (rust/crates/windows_i686_msvc-0.40.0.crate) = 717348
|
||||
SHA256 (rust/crates/windows_i686_msvc-0.42.0.crate) = 84c12f65daa39dd2babe6e442988fc329d6243fdce47d7d2d155b8d874862246
|
||||
SIZE (rust/crates/windows_i686_msvc-0.42.0.crate) = 717477
|
||||
SHA256 (rust/crates/windows_x86_64_gnu-0.40.0.crate) = 520ff37edd72da8064b49d2281182898e17f0688ae9f4070bca27e4b5c162ac7
|
||||
SIZE (rust/crates/windows_x86_64_gnu-0.40.0.crate) = 692354
|
||||
SHA256 (rust/crates/windows_x86_64_gnu-0.42.0.crate) = bf7b1b21b5362cbc318f686150e5bcea75ecedc74dd157d874d754a2ca44b0ed
|
||||
SIZE (rust/crates/windows_x86_64_gnu-0.42.0.crate) = 692493
|
||||
SHA256 (rust/crates/windows_x86_64_gnullvm-0.40.0.crate) = 046e5b82215102c44fd75f488f1b9158973d02aa34d06ed85c23d6f5520a2853
|
||||
SIZE (rust/crates/windows_x86_64_gnullvm-0.40.0.crate) = 357793
|
||||
SHA256 (rust/crates/windows_x86_64_gnullvm-0.42.0.crate) = 09d525d2ba30eeb3297665bd434a54297e4170c7f1a44cad4ef58095b4cd2028
|
||||
SIZE (rust/crates/windows_x86_64_gnullvm-0.42.0.crate) = 357906
|
||||
SHA256 (rust/crates/windows_x86_64_msvc-0.40.0.crate) = 2a0c9c6df55dd1bfa76e131cef44bdd8ec9c819ef3611f04dfe453fd5bfeda28
|
||||
SIZE (rust/crates/windows_x86_64_msvc-0.40.0.crate) = 659258
|
||||
SHA256 (rust/crates/windows_x86_64_msvc-0.42.0.crate) = f40009d85759725a34da6d89a94e63d7bdc50a862acf0dbc7c8e488f1edcb6f5
|
||||
SIZE (rust/crates/windows_x86_64_msvc-0.42.0.crate) = 659377
|
||||
SHA256 (Canop-bacon-v2.3.0_GH0.tar.gz) = 4b9421110fbf51975c8a832e3c5ea0a89d503b99a8a009a02946ad57828b9c0f
|
||||
SIZE (Canop-bacon-v2.3.0_GH0.tar.gz) = 423863
|
||||
SHA256 (Canop-bacon-v2.5.0_GH0.tar.gz) = 7b3a0f4b73a7ca2ffa2b70af14064d34155eae02ce76f0ba6912374d531b9262
|
||||
SIZE (Canop-bacon-v2.5.0_GH0.tar.gz) = 678650
|
||||
|
|
|
|||
|
|
@ -1,7 +1,6 @@
|
|||
PORTNAME= convco
|
||||
DISTVERSIONPREFIX= v
|
||||
DISTVERSION= 0.3.12
|
||||
PORTREVISION= 1
|
||||
DISTVERSION= 0.3.15
|
||||
CATEGORIES= devel
|
||||
|
||||
MAINTAINER= yuri@FreeBSD.org
|
||||
|
|
@ -14,103 +13,104 @@ LICENSE_FILE= ${WRKSRC}/LICENSE
|
|||
USES= cargo
|
||||
USE_GITHUB= yes
|
||||
|
||||
CARGO_CRATES= addr2line-0.17.0 \
|
||||
CARGO_CRATES= addr2line-0.19.0 \
|
||||
adler-1.0.2 \
|
||||
aho-corasick-0.7.18 \
|
||||
anyhow-1.0.62 \
|
||||
atty-0.2.14 \
|
||||
aho-corasick-0.7.20 \
|
||||
anyhow-1.0.68 \
|
||||
autocfg-1.1.0 \
|
||||
backtrace-0.3.66 \
|
||||
backtrace-0.3.67 \
|
||||
bitflags-1.3.2 \
|
||||
block-buffer-0.7.3 \
|
||||
block-padding-0.1.5 \
|
||||
byte-tools-0.3.1 \
|
||||
byteorder-1.4.3 \
|
||||
cc-1.0.73 \
|
||||
block-buffer-0.10.3 \
|
||||
cc-1.0.78 \
|
||||
cfg-if-1.0.0 \
|
||||
clap-3.2.22 \
|
||||
clap_complete-3.2.5 \
|
||||
clap_derive-3.2.18 \
|
||||
clap_lex-0.2.4 \
|
||||
cmake-0.1.48 \
|
||||
console-0.15.0 \
|
||||
ctrlc-3.2.3 \
|
||||
clap-4.0.32 \
|
||||
clap_complete-4.0.7 \
|
||||
clap_derive-4.0.21 \
|
||||
clap_lex-0.3.0 \
|
||||
cmake-0.1.49 \
|
||||
console-0.15.4 \
|
||||
cpufeatures-0.2.5 \
|
||||
crypto-common-0.1.6 \
|
||||
ctrlc-3.2.4 \
|
||||
dialoguer-0.10.2 \
|
||||
digest-0.8.1 \
|
||||
digest-0.10.6 \
|
||||
encode_unicode-0.3.6 \
|
||||
fake-simd-0.1.2 \
|
||||
fastrand-1.7.0 \
|
||||
form_urlencoded-1.0.1 \
|
||||
generic-array-0.12.4 \
|
||||
gimli-0.26.2 \
|
||||
errno-0.2.8 \
|
||||
errno-dragonfly-0.1.2 \
|
||||
fastrand-1.8.0 \
|
||||
form_urlencoded-1.1.0 \
|
||||
generic-array-0.14.6 \
|
||||
gimli-0.27.0 \
|
||||
git2-0.15.0 \
|
||||
handlebars-4.3.4 \
|
||||
hashbrown-0.12.2 \
|
||||
handlebars-4.3.6 \
|
||||
hashbrown-0.12.3 \
|
||||
heck-0.4.0 \
|
||||
hermit-abi-0.1.19 \
|
||||
idna-0.2.3 \
|
||||
indexmap-1.9.1 \
|
||||
hermit-abi-0.2.6 \
|
||||
idna-0.3.0 \
|
||||
indexmap-1.9.2 \
|
||||
instant-0.1.12 \
|
||||
itoa-1.0.2 \
|
||||
jobserver-0.1.24 \
|
||||
libc-0.2.133 \
|
||||
io-lifetimes-1.0.3 \
|
||||
is-terminal-0.4.2 \
|
||||
itoa-1.0.5 \
|
||||
jobserver-0.1.25 \
|
||||
lazy_static-1.4.0 \
|
||||
libc-0.2.139 \
|
||||
libgit2-sys-0.14.0+1.5.0 \
|
||||
libssh2-sys-0.2.23 \
|
||||
libz-sys-1.1.8 \
|
||||
linux-raw-sys-0.1.4 \
|
||||
log-0.4.17 \
|
||||
maplit-1.0.2 \
|
||||
matches-0.1.9 \
|
||||
memchr-2.5.0 \
|
||||
miniz_oxide-0.5.3 \
|
||||
nix-0.25.0 \
|
||||
num_threads-0.1.6 \
|
||||
object-0.29.0 \
|
||||
once_cell-1.13.0 \
|
||||
opaque-debug-0.2.3 \
|
||||
openssl-sys-0.9.75 \
|
||||
os_str_bytes-6.1.0 \
|
||||
percent-encoding-2.1.0 \
|
||||
pest-2.1.3 \
|
||||
pest_derive-2.1.0 \
|
||||
pest_generator-2.1.3 \
|
||||
pest_meta-2.1.3 \
|
||||
pkg-config-0.3.25 \
|
||||
miniz_oxide-0.6.2 \
|
||||
nix-0.26.1 \
|
||||
object-0.30.1 \
|
||||
once_cell-1.17.0 \
|
||||
openssl-sys-0.9.80 \
|
||||
os_str_bytes-6.4.1 \
|
||||
percent-encoding-2.2.0 \
|
||||
pest-2.5.2 \
|
||||
pest_derive-2.5.2 \
|
||||
pest_generator-2.5.2 \
|
||||
pest_meta-2.5.2 \
|
||||
pkg-config-0.3.26 \
|
||||
proc-macro-error-1.0.4 \
|
||||
proc-macro-error-attr-1.0.4 \
|
||||
proc-macro2-1.0.40 \
|
||||
quote-1.0.20 \
|
||||
redox_syscall-0.2.13 \
|
||||
regex-1.6.0 \
|
||||
regex-syntax-0.6.27 \
|
||||
proc-macro2-1.0.49 \
|
||||
quote-1.0.23 \
|
||||
redox_syscall-0.2.16 \
|
||||
regex-1.7.0 \
|
||||
regex-syntax-0.6.28 \
|
||||
remove_dir_all-0.5.3 \
|
||||
rustc-demangle-0.1.21 \
|
||||
ryu-1.0.10 \
|
||||
rustix-0.36.6 \
|
||||
ryu-1.0.12 \
|
||||
same-file-1.0.6 \
|
||||
semver-1.0.14 \
|
||||
serde-1.0.145 \
|
||||
serde_derive-1.0.145 \
|
||||
serde_json-1.0.82 \
|
||||
serde_yaml-0.9.13 \
|
||||
sha-1-0.8.2 \
|
||||
semver-1.0.16 \
|
||||
serde-1.0.152 \
|
||||
serde_derive-1.0.152 \
|
||||
serde_json-1.0.91 \
|
||||
serde_yaml-0.9.16 \
|
||||
sha1-0.10.5 \
|
||||
static_assertions-1.1.0 \
|
||||
strsim-0.10.0 \
|
||||
syn-1.0.98 \
|
||||
syn-1.0.107 \
|
||||
tempfile-3.3.0 \
|
||||
termcolor-1.1.3 \
|
||||
terminal_size-0.1.17 \
|
||||
textwrap-0.15.1 \
|
||||
thiserror-1.0.36 \
|
||||
thiserror-impl-1.0.36 \
|
||||
time-0.3.14 \
|
||||
thiserror-1.0.38 \
|
||||
thiserror-impl-1.0.38 \
|
||||
time-0.3.17 \
|
||||
time-core-0.1.0 \
|
||||
time-macros-0.2.6 \
|
||||
tinyvec-1.6.0 \
|
||||
tinyvec_macros-0.1.0 \
|
||||
typenum-1.15.0 \
|
||||
ucd-trie-0.1.4 \
|
||||
typenum-1.16.0 \
|
||||
ucd-trie-0.1.5 \
|
||||
unicode-bidi-0.3.8 \
|
||||
unicode-ident-1.0.1 \
|
||||
unicode-normalization-0.1.21 \
|
||||
unicode-width-0.1.9 \
|
||||
unsafe-libyaml-0.2.4 \
|
||||
url-2.2.2 \
|
||||
unicode-ident-1.0.6 \
|
||||
unicode-normalization-0.1.22 \
|
||||
unicode-width-0.1.10 \
|
||||
unsafe-libyaml-0.2.5 \
|
||||
url-2.3.1 \
|
||||
vcpkg-0.2.15 \
|
||||
version_check-0.9.4 \
|
||||
walkdir-2.3.2 \
|
||||
|
|
@ -118,7 +118,15 @@ CARGO_CRATES= addr2line-0.17.0 \
|
|||
winapi-i686-pc-windows-gnu-0.4.0 \
|
||||
winapi-util-0.1.5 \
|
||||
winapi-x86_64-pc-windows-gnu-0.4.0 \
|
||||
zeroize-1.5.6
|
||||
windows-sys-0.42.0 \
|
||||
windows_aarch64_gnullvm-0.42.0 \
|
||||
windows_aarch64_msvc-0.42.0 \
|
||||
windows_i686_gnu-0.42.0 \
|
||||
windows_i686_msvc-0.42.0 \
|
||||
windows_x86_64_gnu-0.42.0 \
|
||||
windows_x86_64_gnullvm-0.42.0 \
|
||||
windows_x86_64_msvc-0.42.0 \
|
||||
zeroize-1.5.7
|
||||
|
||||
OPENSSLINC= /usr/include
|
||||
OPENSSLLIB= /usr/lib
|
||||
|
|
|
|||
|
|
@ -1,198 +1,200 @@
|
|||
TIMESTAMP = 1672686227
|
||||
SHA256 (rust/crates/addr2line-0.17.0.crate) = b9ecd88a8c8378ca913a680cd98f0f13ac67383d35993f86c90a70e3f137816b
|
||||
SIZE (rust/crates/addr2line-0.17.0.crate) = 32260
|
||||
TIMESTAMP = 1674152066
|
||||
SHA256 (rust/crates/addr2line-0.19.0.crate) = a76fd60b23679b7d19bd066031410fb7e458ccc5e958eb5c325888ce4baedc97
|
||||
SIZE (rust/crates/addr2line-0.19.0.crate) = 33210
|
||||
SHA256 (rust/crates/adler-1.0.2.crate) = f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe
|
||||
SIZE (rust/crates/adler-1.0.2.crate) = 12778
|
||||
SHA256 (rust/crates/aho-corasick-0.7.18.crate) = 1e37cfd5e7657ada45f742d6e99ca5788580b5c529dc78faf11ece6dc702656f
|
||||
SIZE (rust/crates/aho-corasick-0.7.18.crate) = 112923
|
||||
SHA256 (rust/crates/anyhow-1.0.62.crate) = 1485d4d2cc45e7b201ee3767015c96faa5904387c9d87c6efdd0fb511f12d305
|
||||
SIZE (rust/crates/anyhow-1.0.62.crate) = 43198
|
||||
SHA256 (rust/crates/atty-0.2.14.crate) = d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8
|
||||
SIZE (rust/crates/atty-0.2.14.crate) = 5470
|
||||
SHA256 (rust/crates/aho-corasick-0.7.20.crate) = cc936419f96fa211c1b9166887b38e5e40b19958e5b895be7c1f93adec7071ac
|
||||
SIZE (rust/crates/aho-corasick-0.7.20.crate) = 111440
|
||||
SHA256 (rust/crates/anyhow-1.0.68.crate) = 2cb2f989d18dd141ab8ae82f64d1a8cdd37e0840f73a406896cf5e99502fab61
|
||||
SIZE (rust/crates/anyhow-1.0.68.crate) = 43882
|
||||
SHA256 (rust/crates/autocfg-1.1.0.crate) = d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa
|
||||
SIZE (rust/crates/autocfg-1.1.0.crate) = 13272
|
||||
SHA256 (rust/crates/backtrace-0.3.66.crate) = cab84319d616cfb654d03394f38ab7e6f0919e181b1b57e1fd15e7fb4077d9a7
|
||||
SIZE (rust/crates/backtrace-0.3.66.crate) = 74397
|
||||
SHA256 (rust/crates/backtrace-0.3.67.crate) = 233d376d6d185f2a3093e58f283f60f880315b6c60075b01f36b3b85154564ca
|
||||
SIZE (rust/crates/backtrace-0.3.67.crate) = 78564
|
||||
SHA256 (rust/crates/bitflags-1.3.2.crate) = bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a
|
||||
SIZE (rust/crates/bitflags-1.3.2.crate) = 23021
|
||||
SHA256 (rust/crates/block-buffer-0.7.3.crate) = c0940dc441f31689269e10ac70eb1002a3a1d3ad1390e030043662eb7fe4688b
|
||||
SIZE (rust/crates/block-buffer-0.7.3.crate) = 7179
|
||||
SHA256 (rust/crates/block-padding-0.1.5.crate) = fa79dedbb091f449f1f39e53edf88d5dbe95f895dae6135a8d7b881fb5af73f5
|
||||
SIZE (rust/crates/block-padding-0.1.5.crate) = 7342
|
||||
SHA256 (rust/crates/byte-tools-0.3.1.crate) = e3b5ca7a04898ad4bcd41c90c5285445ff5b791899bb1b0abdd2a2aa791211d7
|
||||
SIZE (rust/crates/byte-tools-0.3.1.crate) = 5526
|
||||
SHA256 (rust/crates/byteorder-1.4.3.crate) = 14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610
|
||||
SIZE (rust/crates/byteorder-1.4.3.crate) = 22512
|
||||
SHA256 (rust/crates/cc-1.0.73.crate) = 2fff2a6927b3bb87f9595d67196a70493f627687a71d87a0d692242c33f58c11
|
||||
SIZE (rust/crates/cc-1.0.73.crate) = 57880
|
||||
SHA256 (rust/crates/block-buffer-0.10.3.crate) = 69cce20737498f97b993470a6e536b8523f0af7892a4f928cceb1ac5e52ebe7e
|
||||
SIZE (rust/crates/block-buffer-0.10.3.crate) = 10465
|
||||
SHA256 (rust/crates/cc-1.0.78.crate) = a20104e2335ce8a659d6dd92a51a767a0c062599c73b343fd152cb401e828c3d
|
||||
SIZE (rust/crates/cc-1.0.78.crate) = 61375
|
||||
SHA256 (rust/crates/cfg-if-1.0.0.crate) = baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd
|
||||
SIZE (rust/crates/cfg-if-1.0.0.crate) = 7934
|
||||
SHA256 (rust/crates/clap-3.2.22.crate) = 86447ad904c7fb335a790c9d7fe3d0d971dc523b8ccd1561a520de9a85302750
|
||||
SIZE (rust/crates/clap-3.2.22.crate) = 219438
|
||||
SHA256 (rust/crates/clap_complete-3.2.5.crate) = 3f7a2e0a962c45ce25afce14220bc24f9dade0a1787f185cecf96bfba7847cd8
|
||||
SIZE (rust/crates/clap_complete-3.2.5.crate) = 31625
|
||||
SHA256 (rust/crates/clap_derive-3.2.18.crate) = ea0c8bce528c4be4da13ea6fead8965e95b6073585a2f05204bd8f4119f82a65
|
||||
SIZE (rust/crates/clap_derive-3.2.18.crate) = 28208
|
||||
SHA256 (rust/crates/clap_lex-0.2.4.crate) = 2850f2f5a82cbf437dd5af4d49848fbdfc27c157c3d010345776f952765261c5
|
||||
SIZE (rust/crates/clap_lex-0.2.4.crate) = 9652
|
||||
SHA256 (rust/crates/cmake-0.1.48.crate) = e8ad8cef104ac57b68b89df3208164d228503abbdce70f6880ffa3d970e7443a
|
||||
SIZE (rust/crates/cmake-0.1.48.crate) = 15142
|
||||
SHA256 (rust/crates/console-0.15.0.crate) = a28b32d32ca44b70c3e4acd7db1babf555fa026e385fb95f18028f88848b3c31
|
||||
SIZE (rust/crates/console-0.15.0.crate) = 23507
|
||||
SHA256 (rust/crates/ctrlc-3.2.3.crate) = 1d91974fbbe88ec1df0c24a4f00f99583667a7e2e6272b2b92d294d81e462173
|
||||
SIZE (rust/crates/ctrlc-3.2.3.crate) = 12853
|
||||
SHA256 (rust/crates/clap-4.0.32.crate) = a7db700bc935f9e43e88d00b0850dae18a63773cfbec6d8e070fccf7fef89a39
|
||||
SIZE (rust/crates/clap-4.0.32.crate) = 207531
|
||||
SHA256 (rust/crates/clap_complete-4.0.7.crate) = 10861370d2ba66b0f5989f83ebf35db6421713fd92351790e7fdd6c36774c56b
|
||||
SIZE (rust/crates/clap_complete-4.0.7.crate) = 32728
|
||||
SHA256 (rust/crates/clap_derive-4.0.21.crate) = 0177313f9f02afc995627906bbd8967e2be069f5261954222dac78290c2b9014
|
||||
SIZE (rust/crates/clap_derive-4.0.21.crate) = 27567
|
||||
SHA256 (rust/crates/clap_lex-0.3.0.crate) = 0d4198f73e42b4936b35b5bb248d81d2b595ecb170da0bac7655c54eedfa8da8
|
||||
SIZE (rust/crates/clap_lex-0.3.0.crate) = 9671
|
||||
SHA256 (rust/crates/cmake-0.1.49.crate) = db34956e100b30725f2eb215f90d4871051239535632f84fea3bc92722c66b7c
|
||||
SIZE (rust/crates/cmake-0.1.49.crate) = 16717
|
||||
SHA256 (rust/crates/console-0.15.4.crate) = c9b6515d269224923b26b5febea2ed42b2d5f2ce37284a4dd670fedd6cb8347a
|
||||
SIZE (rust/crates/console-0.15.4.crate) = 34237
|
||||
SHA256 (rust/crates/cpufeatures-0.2.5.crate) = 28d997bd5e24a5928dd43e46dc529867e207907fe0b239c3477d924f7f2ca320
|
||||
SIZE (rust/crates/cpufeatures-0.2.5.crate) = 11251
|
||||
SHA256 (rust/crates/crypto-common-0.1.6.crate) = 1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3
|
||||
SIZE (rust/crates/crypto-common-0.1.6.crate) = 8760
|
||||
SHA256 (rust/crates/ctrlc-3.2.4.crate) = 1631ca6e3c59112501a9d87fd86f21591ff77acd31331e8a73f8d80a65bbdd71
|
||||
SIZE (rust/crates/ctrlc-3.2.4.crate) = 13207
|
||||
SHA256 (rust/crates/dialoguer-0.10.2.crate) = a92e7e37ecef6857fdc0c0c5d42fd5b0938e46590c2183cc92dd310a6d078eb1
|
||||
SIZE (rust/crates/dialoguer-0.10.2.crate) = 25304
|
||||
SHA256 (rust/crates/digest-0.8.1.crate) = f3d0c8c8752312f9713efd397ff63acb9f85585afbf179282e720e7704954dd5
|
||||
SIZE (rust/crates/digest-0.8.1.crate) = 9449
|
||||
SHA256 (rust/crates/digest-0.10.6.crate) = 8168378f4e5023e7218c89c891c0fd8ecdb5e5e4f18cb78f38cf245dd021e76f
|
||||
SIZE (rust/crates/digest-0.10.6.crate) = 19527
|
||||
SHA256 (rust/crates/encode_unicode-0.3.6.crate) = a357d28ed41a50f9c765dbfe56cbc04a64e53e5fc58ba79fbc34c10ef3df831f
|
||||
SIZE (rust/crates/encode_unicode-0.3.6.crate) = 45741
|
||||
SHA256 (rust/crates/fake-simd-0.1.2.crate) = e88a8acf291dafb59c2d96e8f59828f3838bb1a70398823ade51a84de6a6deed
|
||||
SIZE (rust/crates/fake-simd-0.1.2.crate) = 5398
|
||||
SHA256 (rust/crates/fastrand-1.7.0.crate) = c3fcf0cee53519c866c09b5de1f6c56ff9d647101f81c1964fa632e148896cdf
|
||||
SIZE (rust/crates/fastrand-1.7.0.crate) = 11265
|
||||
SHA256 (rust/crates/form_urlencoded-1.0.1.crate) = 5fc25a87fa4fd2094bffb06925852034d90a17f0d1e05197d4956d3555752191
|
||||
SIZE (rust/crates/form_urlencoded-1.0.1.crate) = 8773
|
||||
SHA256 (rust/crates/generic-array-0.12.4.crate) = ffdf9f34f1447443d37393cc6c2b8313aebddcd96906caf34e54c68d8e57d7bd
|
||||
SIZE (rust/crates/generic-array-0.12.4.crate) = 18212
|
||||
SHA256 (rust/crates/gimli-0.26.2.crate) = 22030e2c5a68ec659fde1e949a745124b48e6fa8b045b7ed5bd1fe4ccc5c4e5d
|
||||
SIZE (rust/crates/gimli-0.26.2.crate) = 717340
|
||||
SHA256 (rust/crates/errno-0.2.8.crate) = f639046355ee4f37944e44f60642c6f3a7efa3cf6b78c78a0d989a8ce6c396a1
|
||||
SIZE (rust/crates/errno-0.2.8.crate) = 9276
|
||||
SHA256 (rust/crates/errno-dragonfly-0.1.2.crate) = aa68f1b12764fab894d2755d2518754e71b4fd80ecfb822714a1206c2aab39bf
|
||||
SIZE (rust/crates/errno-dragonfly-0.1.2.crate) = 1810
|
||||
SHA256 (rust/crates/fastrand-1.8.0.crate) = a7a407cfaa3385c4ae6b23e84623d48c2798d06e3e6a1878f7f59f17b3f86499
|
||||
SIZE (rust/crates/fastrand-1.8.0.crate) = 11369
|
||||
SHA256 (rust/crates/form_urlencoded-1.1.0.crate) = a9c384f161156f5260c24a097c56119f9be8c798586aecc13afbcbe7b7e26bf8
|
||||
SIZE (rust/crates/form_urlencoded-1.1.0.crate) = 8734
|
||||
SHA256 (rust/crates/generic-array-0.14.6.crate) = bff49e947297f3312447abdca79f45f4738097cc82b06e72054d2223f601f1b9
|
||||
SIZE (rust/crates/generic-array-0.14.6.crate) = 15889
|
||||
SHA256 (rust/crates/gimli-0.27.0.crate) = dec7af912d60cdbd3677c1af9352ebae6fb8394d165568a2234df0fa00f87793
|
||||
SIZE (rust/crates/gimli-0.27.0.crate) = 720457
|
||||
SHA256 (rust/crates/git2-0.15.0.crate) = 2994bee4a3a6a51eb90c218523be382fd7ea09b16380b9312e9dbe955ff7c7d1
|
||||
SIZE (rust/crates/git2-0.15.0.crate) = 198983
|
||||
SHA256 (rust/crates/handlebars-4.3.4.crate) = 56b224eaa4987c03c30b251de7ef0c15a6a59f34222905850dbc3026dfb24d5f
|
||||
SIZE (rust/crates/handlebars-4.3.4.crate) = 91861
|
||||
SHA256 (rust/crates/hashbrown-0.12.2.crate) = 607c8a29735385251a339424dd462993c0fed8fa09d378f259377df08c126022
|
||||
SIZE (rust/crates/hashbrown-0.12.2.crate) = 102346
|
||||
SHA256 (rust/crates/handlebars-4.3.6.crate) = 035ef95d03713f2c347a72547b7cd38cbc9af7cd51e6099fb62d586d4a6dee3a
|
||||
SIZE (rust/crates/handlebars-4.3.6.crate) = 92108
|
||||
SHA256 (rust/crates/hashbrown-0.12.3.crate) = 8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888
|
||||
SIZE (rust/crates/hashbrown-0.12.3.crate) = 102968
|
||||
SHA256 (rust/crates/heck-0.4.0.crate) = 2540771e65fc8cb83cd6e8a237f70c319bd5c29f78ed1084ba5d50eeac86f7f9
|
||||
SIZE (rust/crates/heck-0.4.0.crate) = 11161
|
||||
SHA256 (rust/crates/hermit-abi-0.1.19.crate) = 62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33
|
||||
SIZE (rust/crates/hermit-abi-0.1.19.crate) = 9979
|
||||
SHA256 (rust/crates/idna-0.2.3.crate) = 418a0a6fab821475f634efe3ccc45c013f742efe03d853e8d3355d5cb850ecf8
|
||||
SIZE (rust/crates/idna-0.2.3.crate) = 271023
|
||||
SHA256 (rust/crates/indexmap-1.9.1.crate) = 10a35a97730320ffe8e2d410b5d3b69279b98d2c14bdb8b70ea89ecf7888d41e
|
||||
SIZE (rust/crates/indexmap-1.9.1.crate) = 54114
|
||||
SHA256 (rust/crates/hermit-abi-0.2.6.crate) = ee512640fe35acbfb4bb779db6f0d80704c2cacfa2e39b601ef3e3f47d1ae4c7
|
||||
SIZE (rust/crates/hermit-abi-0.2.6.crate) = 13027
|
||||
SHA256 (rust/crates/idna-0.3.0.crate) = e14ddfc70884202db2244c223200c204c2bda1bc6e0998d11b5e024d657209e6
|
||||
SIZE (rust/crates/idna-0.3.0.crate) = 271128
|
||||
SHA256 (rust/crates/indexmap-1.9.2.crate) = 1885e79c1fc4b10f0e172c475f458b7f7b93061064d98c3293e98c5ba0c8b399
|
||||
SIZE (rust/crates/indexmap-1.9.2.crate) = 54627
|
||||
SHA256 (rust/crates/instant-0.1.12.crate) = 7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c
|
||||
SIZE (rust/crates/instant-0.1.12.crate) = 6128
|
||||
SHA256 (rust/crates/itoa-1.0.2.crate) = 112c678d4050afce233f4f2852bb2eb519230b3cf12f33585275537d7e41578d
|
||||
SIZE (rust/crates/itoa-1.0.2.crate) = 11112
|
||||
SHA256 (rust/crates/jobserver-0.1.24.crate) = af25a77299a7f711a01975c35a6a424eb6862092cc2d6c72c4ed6cbc56dfc1fa
|
||||
SIZE (rust/crates/jobserver-0.1.24.crate) = 21303
|
||||
SHA256 (rust/crates/libc-0.2.133.crate) = c0f80d65747a3e43d1596c7c5492d95d5edddaabd45a7fcdb02b95f644164966
|
||||
SIZE (rust/crates/libc-0.2.133.crate) = 603256
|
||||
SHA256 (rust/crates/io-lifetimes-1.0.3.crate) = 46112a93252b123d31a119a8d1a1ac19deac4fac6e0e8b0df58f0d4e5870e63c
|
||||
SIZE (rust/crates/io-lifetimes-1.0.3.crate) = 35650
|
||||
SHA256 (rust/crates/is-terminal-0.4.2.crate) = 28dfb6c8100ccc63462345b67d1bbc3679177c75ee4bf59bf29c8b1d110b8189
|
||||
SIZE (rust/crates/is-terminal-0.4.2.crate) = 7577
|
||||
SHA256 (rust/crates/itoa-1.0.5.crate) = fad582f4b9e86b6caa621cabeb0963332d92eea04729ab12892c2533951e6440
|
||||
SIZE (rust/crates/itoa-1.0.5.crate) = 10622
|
||||
SHA256 (rust/crates/jobserver-0.1.25.crate) = 068b1ee6743e4d11fb9c6a1e6064b3693a1b600e7f5f5988047d98b3dc9fb90b
|
||||
SIZE (rust/crates/jobserver-0.1.25.crate) = 21888
|
||||
SHA256 (rust/crates/lazy_static-1.4.0.crate) = e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646
|
||||
SIZE (rust/crates/lazy_static-1.4.0.crate) = 10443
|
||||
SHA256 (rust/crates/libc-0.2.139.crate) = 201de327520df007757c1f0adce6e827fe8562fbc28bfd9c15571c66ca1f5f79
|
||||
SIZE (rust/crates/libc-0.2.139.crate) = 638983
|
||||
SHA256 (rust/crates/libgit2-sys-0.14.0+1.5.0.crate) = 47a00859c70c8a4f7218e6d1cc32875c4b55f6799445b842b0d8ed5e4c3d959b
|
||||
SIZE (rust/crates/libgit2-sys-0.14.0+1.5.0.crate) = 1740370
|
||||
SHA256 (rust/crates/libssh2-sys-0.2.23.crate) = b094a36eb4b8b8c8a7b4b8ae43b2944502be3e59cd87687595cf6b0a71b3f4ca
|
||||
SIZE (rust/crates/libssh2-sys-0.2.23.crate) = 493516
|
||||
SHA256 (rust/crates/libz-sys-1.1.8.crate) = 9702761c3935f8cc2f101793272e202c72b99da8f4224a19ddcf1279a6450bbf
|
||||
SIZE (rust/crates/libz-sys-1.1.8.crate) = 2481844
|
||||
SHA256 (rust/crates/linux-raw-sys-0.1.4.crate) = f051f77a7c8e6957c0696eac88f26b0117e54f52d3fc682ab19397a8812846a4
|
||||
SIZE (rust/crates/linux-raw-sys-0.1.4.crate) = 878981
|
||||
SHA256 (rust/crates/log-0.4.17.crate) = abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e
|
||||
SIZE (rust/crates/log-0.4.17.crate) = 38028
|
||||
SHA256 (rust/crates/maplit-1.0.2.crate) = 3e2e65a1a2e43cfcb47a895c4c8b10d1f4a61097f9f254f183aee60cad9c651d
|
||||
SIZE (rust/crates/maplit-1.0.2.crate) = 8871
|
||||
SHA256 (rust/crates/matches-0.1.9.crate) = a3e378b66a060d48947b590737b30a1be76706c8dd7b8ba0f2fe3989c68a853f
|
||||
SIZE (rust/crates/matches-0.1.9.crate) = 2246
|
||||
SHA256 (rust/crates/memchr-2.5.0.crate) = 2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d
|
||||
SIZE (rust/crates/memchr-2.5.0.crate) = 65812
|
||||
SHA256 (rust/crates/miniz_oxide-0.5.3.crate) = 6f5c75688da582b8ffc1f1799e9db273f32133c49e048f614d22ec3256773ccc
|
||||
SIZE (rust/crates/miniz_oxide-0.5.3.crate) = 53452
|
||||
SHA256 (rust/crates/nix-0.25.0.crate) = e322c04a9e3440c327fca7b6c8a63e6890a32fa2ad689db972425f07e0d22abb
|
||||
SIZE (rust/crates/nix-0.25.0.crate) = 269825
|
||||
SHA256 (rust/crates/num_threads-0.1.6.crate) = 2819ce041d2ee131036f4fc9d6ae7ae125a3a40e97ba64d04fe799ad9dabbb44
|
||||
SIZE (rust/crates/num_threads-0.1.6.crate) = 7334
|
||||
SHA256 (rust/crates/object-0.29.0.crate) = 21158b2c33aa6d4561f1c0a6ea283ca92bc54802a93b263e910746d679a7eb53
|
||||
SIZE (rust/crates/object-0.29.0.crate) = 237723
|
||||
SHA256 (rust/crates/once_cell-1.13.0.crate) = 18a6dbe30758c9f83eb00cbea4ac95966305f5a7772f3f42ebfc7fc7eddbd8e1
|
||||
SIZE (rust/crates/once_cell-1.13.0.crate) = 31726
|
||||
SHA256 (rust/crates/opaque-debug-0.2.3.crate) = 2839e79665f131bdb5782e51f2c6c9599c133c6098982a54c794358bf432529c
|
||||
SIZE (rust/crates/opaque-debug-0.2.3.crate) = 5643
|
||||
SHA256 (rust/crates/openssl-sys-0.9.75.crate) = e5f9bd0c2710541a3cda73d6f9ac4f1b240de4ae261065d309dbe73d9dceb42f
|
||||
SIZE (rust/crates/openssl-sys-0.9.75.crate) = 60028
|
||||
SHA256 (rust/crates/os_str_bytes-6.1.0.crate) = 21326818e99cfe6ce1e524c2a805c189a99b5ae555a35d19f9a284b427d86afa
|
||||
SIZE (rust/crates/os_str_bytes-6.1.0.crate) = 21150
|
||||
SHA256 (rust/crates/percent-encoding-2.1.0.crate) = d4fd5641d01c8f18a23da7b6fe29298ff4b55afcccdf78973b24cf3175fee32e
|
||||
SIZE (rust/crates/percent-encoding-2.1.0.crate) = 9748
|
||||
SHA256 (rust/crates/pest-2.1.3.crate) = 10f4872ae94d7b90ae48754df22fd42ad52ce740b8f370b03da4835417403e53
|
||||
SIZE (rust/crates/pest-2.1.3.crate) = 77986
|
||||
SHA256 (rust/crates/pest_derive-2.1.0.crate) = 833d1ae558dc601e9a60366421196a8d94bc0ac980476d0b67e1d0988d72b2d0
|
||||
SIZE (rust/crates/pest_derive-2.1.0.crate) = 14049
|
||||
SHA256 (rust/crates/pest_generator-2.1.3.crate) = 99b8db626e31e5b81787b9783425769681b347011cc59471e33ea46d2ea0cf55
|
||||
SIZE (rust/crates/pest_generator-2.1.3.crate) = 14227
|
||||
SHA256 (rust/crates/pest_meta-2.1.3.crate) = 54be6e404f5317079812fc8f9f5279de376d8856929e21c184ecf6bbd692a11d
|
||||
SIZE (rust/crates/pest_meta-2.1.3.crate) = 27818
|
||||
SHA256 (rust/crates/pkg-config-0.3.25.crate) = 1df8c4ec4b0627e53bdf214615ad287367e482558cf84b109250b37464dc03ae
|
||||
SIZE (rust/crates/pkg-config-0.3.25.crate) = 16838
|
||||
SHA256 (rust/crates/miniz_oxide-0.6.2.crate) = b275950c28b37e794e8c55d88aeb5e139d0ce23fdbbeda68f8d7174abdf9e8fa
|
||||
SIZE (rust/crates/miniz_oxide-0.6.2.crate) = 54536
|
||||
SHA256 (rust/crates/nix-0.26.1.crate) = 46a58d1d356c6597d08cde02c2f09d785b09e28711837b1ed667dc652c08a694
|
||||
SIZE (rust/crates/nix-0.26.1.crate) = 277805
|
||||
SHA256 (rust/crates/object-0.30.1.crate) = 8d864c91689fdc196779b98dba0aceac6118594c2df6ee5d943eb6a8df4d107a
|
||||
SIZE (rust/crates/object-0.30.1.crate) = 258223
|
||||
SHA256 (rust/crates/once_cell-1.17.0.crate) = 6f61fba1741ea2b3d6a1e3178721804bb716a68a6aeba1149b5d52e3d464ea66
|
||||
SIZE (rust/crates/once_cell-1.17.0.crate) = 32736
|
||||
SHA256 (rust/crates/openssl-sys-0.9.80.crate) = 23bbbf7854cd45b83958ebe919f0e8e516793727652e27fda10a8384cfc790b7
|
||||
SIZE (rust/crates/openssl-sys-0.9.80.crate) = 61687
|
||||
SHA256 (rust/crates/os_str_bytes-6.4.1.crate) = 9b7820b9daea5457c9f21c69448905d723fbd21136ccf521748f23fd49e723ee
|
||||
SIZE (rust/crates/os_str_bytes-6.4.1.crate) = 23101
|
||||
SHA256 (rust/crates/percent-encoding-2.2.0.crate) = 478c572c3d73181ff3c2539045f6eb99e5491218eae919370993b890cdbdd98e
|
||||
SIZE (rust/crates/percent-encoding-2.2.0.crate) = 10075
|
||||
SHA256 (rust/crates/pest-2.5.2.crate) = 0f6e86fb9e7026527a0d46bc308b841d73170ef8f443e1807f6ef88526a816d4
|
||||
SIZE (rust/crates/pest-2.5.2.crate) = 106500
|
||||
SHA256 (rust/crates/pest_derive-2.5.2.crate) = 96504449aa860c8dcde14f9fba5c58dc6658688ca1fe363589d6327b8662c603
|
||||
SIZE (rust/crates/pest_derive-2.5.2.crate) = 17728
|
||||
SHA256 (rust/crates/pest_generator-2.5.2.crate) = 798e0220d1111ae63d66cb66a5dcb3fc2d986d520b98e49e1852bfdb11d7c5e7
|
||||
SIZE (rust/crates/pest_generator-2.5.2.crate) = 14960
|
||||
SHA256 (rust/crates/pest_meta-2.5.2.crate) = 984298b75898e30a843e278a9f2452c31e349a073a0ce6fd950a12a74464e065
|
||||
SIZE (rust/crates/pest_meta-2.5.2.crate) = 31245
|
||||
SHA256 (rust/crates/pkg-config-0.3.26.crate) = 6ac9a59f73473f1b8d852421e59e64809f025994837ef743615c6d0c5b305160
|
||||
SIZE (rust/crates/pkg-config-0.3.26.crate) = 18662
|
||||
SHA256 (rust/crates/proc-macro-error-1.0.4.crate) = da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c
|
||||
SIZE (rust/crates/proc-macro-error-1.0.4.crate) = 25293
|
||||
SHA256 (rust/crates/proc-macro-error-attr-1.0.4.crate) = a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869
|
||||
SIZE (rust/crates/proc-macro-error-attr-1.0.4.crate) = 7971
|
||||
SHA256 (rust/crates/proc-macro2-1.0.40.crate) = dd96a1e8ed2596c337f8eae5f24924ec83f5ad5ab21ea8e455d3566c69fbcaf7
|
||||
SIZE (rust/crates/proc-macro2-1.0.40.crate) = 40559
|
||||
SHA256 (rust/crates/quote-1.0.20.crate) = 3bcdf212e9776fbcb2d23ab029360416bb1706b1aea2d1a5ba002727cbcab804
|
||||
SIZE (rust/crates/quote-1.0.20.crate) = 28160
|
||||
SHA256 (rust/crates/redox_syscall-0.2.13.crate) = 62f25bc4c7e55e0b0b7a1d43fb893f4fa1361d0abe38b9ce4f323c2adfe6ef42
|
||||
SIZE (rust/crates/redox_syscall-0.2.13.crate) = 23759
|
||||
SHA256 (rust/crates/regex-1.6.0.crate) = 4c4eb3267174b8c6c2f654116623910a0fef09c4753f8dd83db29c48a0df988b
|
||||
SIZE (rust/crates/regex-1.6.0.crate) = 239329
|
||||
SHA256 (rust/crates/regex-syntax-0.6.27.crate) = a3f87b73ce11b1619a3c6332f45341e0047173771e8b8b73f87bfeefb7b56244
|
||||
SIZE (rust/crates/regex-syntax-0.6.27.crate) = 297300
|
||||
SHA256 (rust/crates/proc-macro2-1.0.49.crate) = 57a8eca9f9c4ffde41714334dee777596264c7825420f521abc92b5b5deb63a5
|
||||
SIZE (rust/crates/proc-macro2-1.0.49.crate) = 41977
|
||||
SHA256 (rust/crates/quote-1.0.23.crate) = 8856d8364d252a14d474036ea1358d63c9e6965c8e5c1885c18f73d70bff9c7b
|
||||
SIZE (rust/crates/quote-1.0.23.crate) = 28058
|
||||
SHA256 (rust/crates/redox_syscall-0.2.16.crate) = fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a
|
||||
SIZE (rust/crates/redox_syscall-0.2.16.crate) = 24012
|
||||
SHA256 (rust/crates/regex-1.7.0.crate) = e076559ef8e241f2ae3479e36f97bd5741c0330689e217ad51ce2c76808b868a
|
||||
SIZE (rust/crates/regex-1.7.0.crate) = 239421
|
||||
SHA256 (rust/crates/regex-syntax-0.6.28.crate) = 456c603be3e8d448b072f410900c09faf164fbce2d480456f50eea6e25f9c848
|
||||
SIZE (rust/crates/regex-syntax-0.6.28.crate) = 299288
|
||||
SHA256 (rust/crates/remove_dir_all-0.5.3.crate) = 3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7
|
||||
SIZE (rust/crates/remove_dir_all-0.5.3.crate) = 9184
|
||||
SHA256 (rust/crates/rustc-demangle-0.1.21.crate) = 7ef03e0a2b150c7a90d01faf6254c9c48a41e95fb2a8c2ac1c6f0d2b9aefc342
|
||||
SIZE (rust/crates/rustc-demangle-0.1.21.crate) = 27920
|
||||
SHA256 (rust/crates/ryu-1.0.10.crate) = f3f6f92acf49d1b98f7a81226834412ada05458b7364277387724a237f062695
|
||||
SIZE (rust/crates/ryu-1.0.10.crate) = 48485
|
||||
SHA256 (rust/crates/rustix-0.36.6.crate) = 4feacf7db682c6c329c4ede12649cd36ecab0f3be5b7d74e6a20304725db4549
|
||||
SIZE (rust/crates/rustix-0.36.6.crate) = 288718
|
||||
SHA256 (rust/crates/ryu-1.0.12.crate) = 7b4b9743ed687d4b4bcedf9ff5eaa7398495ae14e61cba0a295704edbc7decde
|
||||
SIZE (rust/crates/ryu-1.0.12.crate) = 47070
|
||||
SHA256 (rust/crates/same-file-1.0.6.crate) = 93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502
|
||||
SIZE (rust/crates/same-file-1.0.6.crate) = 10183
|
||||
SHA256 (rust/crates/semver-1.0.14.crate) = e25dfac463d778e353db5be2449d1cce89bd6fd23c9f1ea21310ce6e5a1b29c4
|
||||
SIZE (rust/crates/semver-1.0.14.crate) = 29813
|
||||
SHA256 (rust/crates/serde-1.0.145.crate) = 728eb6351430bccb993660dfffc5a72f91ccc1295abaa8ce19b27ebe4f75568b
|
||||
SIZE (rust/crates/serde-1.0.145.crate) = 76568
|
||||
SHA256 (rust/crates/serde_derive-1.0.145.crate) = 81fa1584d3d1bcacd84c277a0dfe21f5b0f6accf4a23d04d4c6d61f1af522b4c
|
||||
SIZE (rust/crates/serde_derive-1.0.145.crate) = 54860
|
||||
SHA256 (rust/crates/serde_json-1.0.82.crate) = 82c2c1fdcd807d1098552c5b9a36e425e42e9fbd7c6a37a8425f390f781f7fa7
|
||||
SIZE (rust/crates/serde_json-1.0.82.crate) = 144514
|
||||
SHA256 (rust/crates/serde_yaml-0.9.13.crate) = 8613d593412a0deb7bbd8de9d908efff5a0cb9ccd8f62c641e7b2ed2f57291d1
|
||||
SIZE (rust/crates/serde_yaml-0.9.13.crate) = 63648
|
||||
SHA256 (rust/crates/sha-1-0.8.2.crate) = f7d94d0bede923b3cea61f3f1ff57ff8cdfd77b400fb8f9998949e0cf04163df
|
||||
SIZE (rust/crates/sha-1-0.8.2.crate) = 12338
|
||||
SHA256 (rust/crates/semver-1.0.16.crate) = 58bc9567378fc7690d6b2addae4e60ac2eeea07becb2c64b9f218b53865cba2a
|
||||
SIZE (rust/crates/semver-1.0.16.crate) = 29850
|
||||
SHA256 (rust/crates/serde-1.0.152.crate) = bb7d1f0d3021d347a83e556fc4683dea2ea09d87bccdf88ff5c12545d89d5efb
|
||||
SIZE (rust/crates/serde-1.0.152.crate) = 77091
|
||||
SHA256 (rust/crates/serde_derive-1.0.152.crate) = af487d118eecd09402d70a5d72551860e788df87b464af30e5ea6a38c75c541e
|
||||
SIZE (rust/crates/serde_derive-1.0.152.crate) = 55586
|
||||
SHA256 (rust/crates/serde_json-1.0.91.crate) = 877c235533714907a8c2464236f5c4b2a17262ef1bd71f38f35ea592c8da6883
|
||||
SIZE (rust/crates/serde_json-1.0.91.crate) = 144654
|
||||
SHA256 (rust/crates/serde_yaml-0.9.16.crate) = 92b5b431e8907b50339b51223b97d102db8d987ced36f6e4d03621db9316c834
|
||||
SIZE (rust/crates/serde_yaml-0.9.16.crate) = 63845
|
||||
SHA256 (rust/crates/sha1-0.10.5.crate) = f04293dc80c3993519f2d7f6f511707ee7094fe0c6d3406feb330cdb3540eba3
|
||||
SIZE (rust/crates/sha1-0.10.5.crate) = 12146
|
||||
SHA256 (rust/crates/static_assertions-1.1.0.crate) = a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f
|
||||
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/syn-1.0.98.crate) = c50aef8a904de4c23c788f104b7dddc7d6f79c647c7c8ce4cc8f73eb0ca773dd
|
||||
SIZE (rust/crates/syn-1.0.98.crate) = 235451
|
||||
SHA256 (rust/crates/syn-1.0.107.crate) = 1f4064b5b16e03ae50984a5a8ed5d4f8803e6bc1fd170a3cda91a1be4b18e3f5
|
||||
SIZE (rust/crates/syn-1.0.107.crate) = 237539
|
||||
SHA256 (rust/crates/tempfile-3.3.0.crate) = 5cdb1ef4eaeeaddc8fbd371e5017057064af0911902ef36b39801f67cc6d79e4
|
||||
SIZE (rust/crates/tempfile-3.3.0.crate) = 27578
|
||||
SHA256 (rust/crates/termcolor-1.1.3.crate) = bab24d30b911b2376f3a13cc2cd443142f0c81dda04c118693e35b3835757755
|
||||
SIZE (rust/crates/termcolor-1.1.3.crate) = 17242
|
||||
SHA256 (rust/crates/terminal_size-0.1.17.crate) = 633c1a546cee861a1a6d0dc69ebeca693bf4296661ba7852b9d21d159e0506df
|
||||
SIZE (rust/crates/terminal_size-0.1.17.crate) = 9141
|
||||
SHA256 (rust/crates/textwrap-0.15.1.crate) = 949517c0cf1bf4ee812e2e07e08ab448e3ae0d23472aee8a06c985f0c8815b16
|
||||
SIZE (rust/crates/textwrap-0.15.1.crate) = 55940
|
||||
SHA256 (rust/crates/thiserror-1.0.36.crate) = 0a99cb8c4b9a8ef0e7907cd3b617cc8dc04d571c4e73c8ae403d80ac160bb122
|
||||
SIZE (rust/crates/thiserror-1.0.36.crate) = 18712
|
||||
SHA256 (rust/crates/thiserror-impl-1.0.36.crate) = 3a891860d3c8d66fec8e73ddb3765f90082374dbaaa833407b904a94f1a7eb43
|
||||
SIZE (rust/crates/thiserror-impl-1.0.36.crate) = 15433
|
||||
SHA256 (rust/crates/time-0.3.14.crate) = 3c3f9a28b618c3a6b9251b6908e9c99e04b9e5c02e6581ccbb67d59c34ef7f9b
|
||||
SIZE (rust/crates/time-0.3.14.crate) = 93111
|
||||
SHA256 (rust/crates/thiserror-1.0.38.crate) = 6a9cd18aa97d5c45c6603caea1da6628790b37f7a34b6ca89522331c5180fed0
|
||||
SIZE (rust/crates/thiserror-1.0.38.crate) = 18947
|
||||
SHA256 (rust/crates/thiserror-impl-1.0.38.crate) = 1fb327af4685e4d03fa8cbcf1716380da910eeb2bb8be417e7f9fd3fb164f36f
|
||||
SIZE (rust/crates/thiserror-impl-1.0.38.crate) = 15429
|
||||
SHA256 (rust/crates/time-0.3.17.crate) = a561bf4617eebd33bca6434b988f39ed798e527f51a1e797d0ee4f61c0a38376
|
||||
SIZE (rust/crates/time-0.3.17.crate) = 99048
|
||||
SHA256 (rust/crates/time-core-0.1.0.crate) = 2e153e1f1acaef8acc537e68b44906d2db6436e2b35ac2c6b42640fff91f00fd
|
||||
SIZE (rust/crates/time-core-0.1.0.crate) = 6597
|
||||
SHA256 (rust/crates/time-macros-0.2.6.crate) = d967f99f534ca7e495c575c62638eebc2898a8c84c119b89e250477bc4ba16b2
|
||||
SIZE (rust/crates/time-macros-0.2.6.crate) = 19163
|
||||
SHA256 (rust/crates/tinyvec-1.6.0.crate) = 87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50
|
||||
SIZE (rust/crates/tinyvec-1.6.0.crate) = 45991
|
||||
SHA256 (rust/crates/tinyvec_macros-0.1.0.crate) = cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c
|
||||
SIZE (rust/crates/tinyvec_macros-0.1.0.crate) = 1817
|
||||
SHA256 (rust/crates/typenum-1.15.0.crate) = dcf81ac59edc17cc8697ff311e8f5ef2d99fcbd9817b34cec66f90b6c3dfd987
|
||||
SIZE (rust/crates/typenum-1.15.0.crate) = 40741
|
||||
SHA256 (rust/crates/ucd-trie-0.1.4.crate) = 89570599c4fe5585de2b388aab47e99f7fa4e9238a1399f707a02e356058141c
|
||||
SIZE (rust/crates/ucd-trie-0.1.4.crate) = 45365
|
||||
SHA256 (rust/crates/typenum-1.16.0.crate) = 497961ef93d974e23eb6f433eb5fe1b7930b659f06d12dec6fc44a8f554c0bba
|
||||
SIZE (rust/crates/typenum-1.16.0.crate) = 42477
|
||||
SHA256 (rust/crates/ucd-trie-0.1.5.crate) = 9e79c4d996edb816c91e4308506774452e55e95c3c9de07b6729e17e15a5ef81
|
||||
SIZE (rust/crates/ucd-trie-0.1.5.crate) = 45391
|
||||
SHA256 (rust/crates/unicode-bidi-0.3.8.crate) = 099b7128301d285f79ddd55b9a83d5e6b9e97c92e0ea0daebee7263e932de992
|
||||
SIZE (rust/crates/unicode-bidi-0.3.8.crate) = 36575
|
||||
SHA256 (rust/crates/unicode-ident-1.0.1.crate) = 5bd2fe26506023ed7b5e1e315add59d6f584c621d037f9368fea9cfb988f368c
|
||||
SIZE (rust/crates/unicode-ident-1.0.1.crate) = 33770
|
||||
SHA256 (rust/crates/unicode-normalization-0.1.21.crate) = 854cbdc4f7bc6ae19c820d44abdc3277ac3e1b2b93db20a636825d9322fb60e6
|
||||
SIZE (rust/crates/unicode-normalization-0.1.21.crate) = 121745
|
||||
SHA256 (rust/crates/unicode-width-0.1.9.crate) = 3ed742d4ea2bd1176e236172c8429aaf54486e7ac098db29ffe6529e0ce50973
|
||||
SIZE (rust/crates/unicode-width-0.1.9.crate) = 16745
|
||||
SHA256 (rust/crates/unsafe-libyaml-0.2.4.crate) = c1e5fa573d8ac5f1a856f8d7be41d390ee973daf97c806b2c1a465e4e1406e68
|
||||
SIZE (rust/crates/unsafe-libyaml-0.2.4.crate) = 61183
|
||||
SHA256 (rust/crates/url-2.2.2.crate) = a507c383b2d33b5fc35d1861e77e6b383d158b2da5e14fe51b83dfedf6fd578c
|
||||
SIZE (rust/crates/url-2.2.2.crate) = 68555
|
||||
SHA256 (rust/crates/unicode-ident-1.0.6.crate) = 84a22b9f218b40614adcb3f4ff08b703773ad44fa9423e4e0d346d5db86e4ebc
|
||||
SIZE (rust/crates/unicode-ident-1.0.6.crate) = 42158
|
||||
SHA256 (rust/crates/unicode-normalization-0.1.22.crate) = 5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921
|
||||
SIZE (rust/crates/unicode-normalization-0.1.22.crate) = 122604
|
||||
SHA256 (rust/crates/unicode-width-0.1.10.crate) = c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b
|
||||
SIZE (rust/crates/unicode-width-0.1.10.crate) = 18968
|
||||
SHA256 (rust/crates/unsafe-libyaml-0.2.5.crate) = bc7ed8ba44ca06be78ea1ad2c3682a43349126c8818054231ee6f4748012aed2
|
||||
SIZE (rust/crates/unsafe-libyaml-0.2.5.crate) = 61185
|
||||
SHA256 (rust/crates/url-2.3.1.crate) = 0d68c799ae75762b8c3fe375feb6600ef5602c883c5d21eb51c09f22b83c4643
|
||||
SIZE (rust/crates/url-2.3.1.crate) = 72777
|
||||
SHA256 (rust/crates/vcpkg-0.2.15.crate) = accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426
|
||||
SIZE (rust/crates/vcpkg-0.2.15.crate) = 228735
|
||||
SHA256 (rust/crates/version_check-0.9.4.crate) = 49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f
|
||||
|
|
@ -207,7 +209,23 @@ SHA256 (rust/crates/winapi-util-0.1.5.crate) = 70ec6ce85bb158151cae5e5c87f95a8e9
|
|||
SIZE (rust/crates/winapi-util-0.1.5.crate) = 10164
|
||||
SHA256 (rust/crates/winapi-x86_64-pc-windows-gnu-0.4.0.crate) = 712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f
|
||||
SIZE (rust/crates/winapi-x86_64-pc-windows-gnu-0.4.0.crate) = 2947998
|
||||
SHA256 (rust/crates/zeroize-1.5.6.crate) = 20b578acffd8516a6c3f2a1bdefc1ec37e547bb4e0fb8b6b01a4cafc886b4442
|
||||
SIZE (rust/crates/zeroize-1.5.6.crate) = 18655
|
||||
SHA256 (convco-convco-v0.3.12_GH0.tar.gz) = c77146eb5e59073a635ba55e906b63e434ea61e2505b3e0b172a526061c1c532
|
||||
SIZE (convco-convco-v0.3.12_GH0.tar.gz) = 35248
|
||||
SHA256 (rust/crates/windows-sys-0.42.0.crate) = 5a3e1820f08b8513f676f7ab6c1f99ff312fb97b553d30ff4dd86f9f15728aa7
|
||||
SIZE (rust/crates/windows-sys-0.42.0.crate) = 3006791
|
||||
SHA256 (rust/crates/windows_aarch64_gnullvm-0.42.0.crate) = 41d2aa71f6f0cbe00ae5167d90ef3cfe66527d6f613ca78ac8024c3ccab9a19e
|
||||
SIZE (rust/crates/windows_aarch64_gnullvm-0.42.0.crate) = 357917
|
||||
SHA256 (rust/crates/windows_aarch64_msvc-0.42.0.crate) = dd0f252f5a35cac83d6311b2e795981f5ee6e67eb1f9a7f64eb4500fbc4dcdb4
|
||||
SIZE (rust/crates/windows_aarch64_msvc-0.42.0.crate) = 659424
|
||||
SHA256 (rust/crates/windows_i686_gnu-0.42.0.crate) = fbeae19f6716841636c28d695375df17562ca208b2b7d0dc47635a50ae6c5de7
|
||||
SIZE (rust/crates/windows_i686_gnu-0.42.0.crate) = 728570
|
||||
SHA256 (rust/crates/windows_i686_msvc-0.42.0.crate) = 84c12f65daa39dd2babe6e442988fc329d6243fdce47d7d2d155b8d874862246
|
||||
SIZE (rust/crates/windows_i686_msvc-0.42.0.crate) = 717477
|
||||
SHA256 (rust/crates/windows_x86_64_gnu-0.42.0.crate) = bf7b1b21b5362cbc318f686150e5bcea75ecedc74dd157d874d754a2ca44b0ed
|
||||
SIZE (rust/crates/windows_x86_64_gnu-0.42.0.crate) = 692493
|
||||
SHA256 (rust/crates/windows_x86_64_gnullvm-0.42.0.crate) = 09d525d2ba30eeb3297665bd434a54297e4170c7f1a44cad4ef58095b4cd2028
|
||||
SIZE (rust/crates/windows_x86_64_gnullvm-0.42.0.crate) = 357906
|
||||
SHA256 (rust/crates/windows_x86_64_msvc-0.42.0.crate) = f40009d85759725a34da6d89a94e63d7bdc50a862acf0dbc7c8e488f1edcb6f5
|
||||
SIZE (rust/crates/windows_x86_64_msvc-0.42.0.crate) = 659377
|
||||
SHA256 (rust/crates/zeroize-1.5.7.crate) = c394b5bd0c6f669e7275d9c20aa90ae064cb22e75a1cad54e1b34088034b149f
|
||||
SIZE (rust/crates/zeroize-1.5.7.crate) = 18861
|
||||
SHA256 (convco-convco-v0.3.15_GH0.tar.gz) = 4fcb317279723038bd2e6a6a1cec6b44aeefe17180283068c44edd6f634546d0
|
||||
SIZE (convco-convco-v0.3.15_GH0.tar.gz) = 40334
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
PORTNAME= highway
|
||||
DISTVERSION= 1.0.2
|
||||
DISTVERSION= 1.0.3
|
||||
CATEGORIES= devel
|
||||
|
||||
MAINTAINER= jbeich@FreeBSD.org
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1666944518
|
||||
SHA256 (google-highway-1.0.2_GH0.tar.gz) = e8ef71236ac0d97f12d553ec1ffc5b6375d57b5f0b860c7447dd69b6ed1072db
|
||||
SIZE (google-highway-1.0.2_GH0.tar.gz) = 1751373
|
||||
TIMESTAMP = 1674130439
|
||||
SHA256 (google-highway-1.0.3_GH0.tar.gz) = 566fc77315878473d9a6bd815f7de78c73734acdcb745c3dde8579560ac5440e
|
||||
SIZE (google-highway-1.0.3_GH0.tar.gz) = 1770704
|
||||
|
|
|
|||
|
|
@ -40,13 +40,13 @@ include/hwy/tests/test_util-inl.h
|
|||
include/hwy/tests/test_util.h
|
||||
lib/libhwy.so
|
||||
lib/libhwy.so.1
|
||||
lib/libhwy.so.1.0.2
|
||||
lib/libhwy.so.1.0.3
|
||||
lib/libhwy_contrib.so
|
||||
lib/libhwy_contrib.so.1
|
||||
lib/libhwy_contrib.so.1.0.2
|
||||
lib/libhwy_contrib.so.1.0.3
|
||||
lib/libhwy_test.so
|
||||
lib/libhwy_test.so.1
|
||||
lib/libhwy_test.so.1.0.2
|
||||
lib/libhwy_test.so.1.0.3
|
||||
libdata/pkgconfig/libhwy-contrib.pc
|
||||
libdata/pkgconfig/libhwy-test.pc
|
||||
libdata/pkgconfig/libhwy.pc
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
PORTNAME= level-zero
|
||||
DISTVERSIONPREFIX= v
|
||||
DISTVERSION= 1.8.12
|
||||
DISTVERSION= 1.9.4
|
||||
CATEGORIES= devel
|
||||
|
||||
MAINTAINER= jbeich@FreeBSD.org
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1670867417
|
||||
SHA256 (oneapi-src-level-zero-v1.8.12_GH0.tar.gz) = 9c5d3dd912882abe8e2e3ba72f8c27e2a2d86759ac48f6318a0df091204985eb
|
||||
SIZE (oneapi-src-level-zero-v1.8.12_GH0.tar.gz) = 696435
|
||||
TIMESTAMP = 1674155677
|
||||
SHA256 (oneapi-src-level-zero-v1.9.4_GH0.tar.gz) = 7f91ed993be1e643c752cf95a319a0fc64113d91ec481fbb8a2f478f433d3380
|
||||
SIZE (oneapi-src-level-zero-v1.9.4_GH0.tar.gz) = 742767
|
||||
|
|
|
|||
|
|
@ -10,12 +10,12 @@ include/level_zero/zet_api.h
|
|||
include/level_zero/zet_ddi.h
|
||||
lib/libze_loader.so
|
||||
lib/libze_loader.so.1
|
||||
lib/libze_loader.so.1.8.12
|
||||
lib/libze_loader.so.1.9.4
|
||||
lib/libze_tracing_layer.so
|
||||
lib/libze_tracing_layer.so.1
|
||||
lib/libze_tracing_layer.so.1.8.12
|
||||
lib/libze_tracing_layer.so.1.9.4
|
||||
lib/libze_validation_layer.so
|
||||
lib/libze_validation_layer.so.1
|
||||
lib/libze_validation_layer.so.1.8.12
|
||||
lib/libze_validation_layer.so.1.9.4
|
||||
libdata/pkgconfig/level-zero.pc
|
||||
libdata/pkgconfig/libze_loader.pc
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
PORTNAME= spyder-kernels
|
||||
PORTVERSION= 2.4.0
|
||||
PORTVERSION= 2.4.2
|
||||
PORTREVISION= 1
|
||||
CATEGORIES= devel python
|
||||
MASTER_SITES= PYPI
|
||||
|
|
@ -12,7 +12,6 @@ WWW= https://github.com/spyder-ide/spyder-kernels
|
|||
LICENSE= MIT
|
||||
LICENSE_FILE= ${WRKSRC}/LICENSE.txt
|
||||
|
||||
# devel/py-ipykernel should be >=6.16.1,<7
|
||||
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}cloudpickle>0:devel/py-cloudpickle@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}ipykernel>0:devel/py-ipykernel@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}ipyparallel>0:devel/py-ipyparallel@${PY_FLAVOR} \
|
||||
|
|
@ -21,7 +20,8 @@ RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}cloudpickle>0:devel/py-cloudpickle@${PY_FLAV
|
|||
${PYTHON_PKGNAMEPREFIX}pyzmq>=22.1.0:net/py-pyzmq@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}traitlets>0:devel/py-traitlets@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}wurlitzer>=1.0.3:misc/py-wurlitzer@${PY_FLAVOR}
|
||||
# test target currently not functional :(
|
||||
# 1 failed, 71 passed, 4 skipped, 15 warnings
|
||||
# test_django_settings fail if www/djangoXX not installed
|
||||
TEST_DEPENDS= ${PYNUMPY} \
|
||||
${PYTHON_PKGNAMEPREFIX}codecov>0:devel/py-codecov@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}cython>0:lang/cython@${PY_FLAVOR} \
|
||||
|
|
@ -33,7 +33,6 @@ TEST_DEPENDS= ${PYNUMPY} \
|
|||
${PYTHON_PKGNAMEPREFIX}mock>0:devel/py-mock@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}pandas>0:math/py-pandas@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}pillow>0:graphics/py-pillow@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}pytest>0:devel/py-pytest@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}pytest-cov>0:devel/py-pytest-cov@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}pytest-forked>0:devel/py-pytest-forked@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}pytest-mock>0:devel/py-pytest-mock@${PY_FLAVOR} \
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1667493262
|
||||
SHA256 (spyder-kernels-2.4.0.tar.gz) = 3bd32fbe30a150ab9ccedbd5beb6ddd38bde1d9a8778da52f7edf420bbfb8e51
|
||||
SIZE (spyder-kernels-2.4.0.tar.gz) = 73402
|
||||
TIMESTAMP = 1674154103
|
||||
SHA256 (spyder-kernels-2.4.2.tar.gz) = 97586eabda1f714c26035b5b01ed7c2e3f539b0de76bd479af5003f5f19b3eb7
|
||||
SIZE (spyder-kernels-2.4.2.tar.gz) = 97290
|
||||
|
|
|
|||
10
devel/py-spyder-kernels/files/patch-requirements_posix.txt
Normal file
10
devel/py-spyder-kernels/files/patch-requirements_posix.txt
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
--- requirements/posix.txt.orig 2023-01-17 23:10:03 UTC
|
||||
+++ requirements/posix.txt
|
||||
@@ -1,6 +1,6 @@ ipython>=7.31.1,<9
|
||||
cloudpickle
|
||||
ipykernel>=6.16.1,<7
|
||||
ipython>=7.31.1,<9
|
||||
-jupyter_client>=7.4.9,<8
|
||||
+jupyter_client>=7.4.7
|
||||
pyzmq>=22.1.0
|
||||
wurlitzer>=1.0.3
|
||||
|
|
@ -0,0 +1,9 @@
|
|||
--- requirements/windows.txt.orig 2023-01-17 17:43:46 UTC
|
||||
+++ requirements/windows.txt
|
||||
@@ -1,5 +1,5 @@ ipython>=7.31.1,<9
|
||||
cloudpickle
|
||||
ipykernel>=6.16.1,<7
|
||||
ipython>=7.31.1,<9
|
||||
-jupyter_client>=7.4.9,<8
|
||||
+jupyter_client>=7.4.7
|
||||
pyzmq>=22.1.0
|
||||
|
|
@ -1,11 +1,11 @@
|
|||
--- setup.py.orig 2022-11-02 23:49:28 UTC
|
||||
--- setup.py.orig 2023-01-17 23:10:03 UTC
|
||||
+++ setup.py
|
||||
@@ -40,7 +40,7 @@ REQUIREMENTS = [
|
||||
'backports.functools-lru-cache; python_version<"3"',
|
||||
'cloudpickle',
|
||||
'ipykernel<5; python_version<"3"',
|
||||
- 'ipykernel>=6.16.1,<7; python_version>="3"',
|
||||
+ 'ipykernel>=6.16.0,<7; python_version>="3"',
|
||||
@@ -44,7 +44,7 @@ REQUIREMENTS = [
|
||||
'ipython<6; python_version<"3"',
|
||||
'ipython>=7.31.1,<8; python_version>="3"',
|
||||
'ipython>=7.31.1,<9; python_version>="3"',
|
||||
'jupyter-client>=5.3.4,<6; python_version<"3"',
|
||||
- 'jupyter-client>=7.4.9,<8; python_version>="3"',
|
||||
+ 'jupyter-client>=7.4.7; python_version>="3"',
|
||||
'pyzmq>=17,<20; python_version<"3"',
|
||||
'pyzmq>=22.1.0; python_version>="3"',
|
||||
'wurlitzer>=1.0.3;platform_system!="Windows"',
|
||||
|
|
|
|||
|
|
@ -0,0 +1,11 @@
|
|||
--- spyder_kernels/customize/tests/test_utils.py.orig 2020-03-04 22:59:51 UTC
|
||||
+++ spyder_kernels/customize/tests/test_utils.py
|
||||
@@ -16,7 +16,7 @@ def test_user_sitepackages_in_pathlist():
|
||||
"""Test that we include user site-packages in pathlist."""
|
||||
if sys.platform.startswith('linux'):
|
||||
user_path = 'local'
|
||||
- elif sys.platform == 'darwin':
|
||||
+ elif (sys.platform.startswith('darwin') | sys.platform.startswith('freebsd')):
|
||||
user_path = os.path.expanduser('~/.local')
|
||||
else:
|
||||
user_path = 'Roaming'
|
||||
|
|
@ -1,5 +1,5 @@
|
|||
PORTNAME= types-Pillow
|
||||
PORTVERSION= 9.4.0.2
|
||||
PORTVERSION= 9.4.0.4
|
||||
CATEGORIES= devel python
|
||||
MASTER_SITES= PYPI
|
||||
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1673736359
|
||||
SHA256 (types-Pillow-9.4.0.2.tar.gz) = e30304da1247949e666adf3e976d823c9a09266813b8b88cd01ba7b2a273aee2
|
||||
SIZE (types-Pillow-9.4.0.2.tar.gz) = 24679
|
||||
TIMESTAMP = 1674141073
|
||||
SHA256 (types-Pillow-9.4.0.4.tar.gz) = 10777665863957ec7160ee38cdf1b3167d3cea983d94944c221d384d28621328
|
||||
SIZE (types-Pillow-9.4.0.4.tar.gz) = 25057
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
PORTNAME= types-psycopg2
|
||||
PORTVERSION= 2.9.21.3
|
||||
PORTVERSION= 2.9.21.4
|
||||
CATEGORIES= devel python
|
||||
MASTER_SITES= PYPI
|
||||
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1674047385
|
||||
SHA256 (types-psycopg2-2.9.21.3.tar.gz) = 4579db25821fa3cfb68a4a7388916d2b3b8ea735d88a684a546306dd0a4eca47
|
||||
SIZE (types-psycopg2-2.9.21.3.tar.gz) = 17868
|
||||
TIMESTAMP = 1674141085
|
||||
SHA256 (types-psycopg2-2.9.21.4.tar.gz) = d43dda166a70d073ddac40718e06539836b5844c99b58ef8d4489a8df2edf5c0
|
||||
SIZE (types-psycopg2-2.9.21.4.tar.gz) = 18374
|
||||
|
|
|
|||
41
devel/shadered/Makefile
Normal file
41
devel/shadered/Makefile
Normal file
|
|
@ -0,0 +1,41 @@
|
|||
PORTNAME= shadered
|
||||
DISTVERSIONPREFIX= v
|
||||
DISTVERSION= 1.5.6
|
||||
CATEGORIES= devel
|
||||
|
||||
MAINTAINER= yuri@FreeBSD.org
|
||||
COMMENT= Lightweight, cross-platform & full-featured shader IDE
|
||||
WWW= https://shadered.org/
|
||||
|
||||
LICENSE= MIT
|
||||
LICENSE_FILE= ${WRKSRC}/LICENSE
|
||||
|
||||
BUILD_DEPENDS= glm>0:math/glm
|
||||
LIB_DEPENDS= \
|
||||
libinotify.so:devel/libinotify
|
||||
|
||||
USES= cmake:insource compiler:c++17-lang gl localbase:ldflags pkgconfig python:build sdl # outsource build fails, see https://github.com/dfranx/SHADERed/issues/303
|
||||
USE_GL= glew glu opengl
|
||||
USE_SDL= sdl2
|
||||
|
||||
USE_GITHUB= yes
|
||||
GH_ACCOUNT= dfranx
|
||||
GH_PROJECT= SHADERed
|
||||
GH_TUPLE= dfranx:assimp:2012451:assimp/libs/assimp \
|
||||
dfranx:imgui:b29c8de:imgui/libs/imgui \
|
||||
dfranx:ImGuiColorTextEdit:fb08648:ImGuiColorTextEdit/libs/ImGuiColorTextEdit \
|
||||
dfranx:SpvGenTwo:5fba6bd:SpvGenTwo/libs/SpvGenTwo \
|
||||
dfranx:ShaderExpressionParser:2f9cb35:ShaderExpressionParser/libs/ShaderExpressionParser \
|
||||
dfranx:SPIRV-VM:439434f:spirv_vm/libs/SPIRV-VM \
|
||||
KhronosGroup:glslang:c594de2:glslang/libs/glslang \
|
||||
zeux:pugixml:40be014:pugixml/libs/pugixml
|
||||
|
||||
LDFLAGS+= -linotify
|
||||
|
||||
post-install: # workaround for https://github.com/dfranx/SHADERed/issues/304
|
||||
${RM} -r \
|
||||
${STAGEDIR}${PREFIX}/include \
|
||||
${STAGEDIR}${PREFIX}/lib \
|
||||
${STAGEDIR}${PREFIX}/libdata
|
||||
|
||||
.include <bsd.port.mk>
|
||||
19
devel/shadered/distinfo
Normal file
19
devel/shadered/distinfo
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
TIMESTAMP = 1674162667
|
||||
SHA256 (dfranx-SHADERed-v1.5.6_GH0.tar.gz) = 8d28fbb1676bd5edcf7c614dc7d1d0f862ff5bcdea90fe272b795e14ab90a13b
|
||||
SIZE (dfranx-SHADERed-v1.5.6_GH0.tar.gz) = 14739835
|
||||
SHA256 (dfranx-assimp-2012451_GH0.tar.gz) = 475e18ba956867090015575e318af0f9c99e6708d149bbe0a1a003605466dc23
|
||||
SIZE (dfranx-assimp-2012451_GH0.tar.gz) = 46980655
|
||||
SHA256 (dfranx-imgui-b29c8de_GH0.tar.gz) = 8f4677a884be21436a149b2e8339293aa0410aa94d0d6908bd291eef438331fb
|
||||
SIZE (dfranx-imgui-b29c8de_GH0.tar.gz) = 1451355
|
||||
SHA256 (dfranx-ImGuiColorTextEdit-fb08648_GH0.tar.gz) = 4e37e088f1b00b19ec1a9f72e69b287e142cfb6ccba66f50c4ff0825ba6774d3
|
||||
SIZE (dfranx-ImGuiColorTextEdit-fb08648_GH0.tar.gz) = 56224
|
||||
SHA256 (dfranx-SpvGenTwo-5fba6bd_GH0.tar.gz) = 399483e4cbc0aeffc334236b6de5116cc2740b455b513adb9e47249ff8169477
|
||||
SIZE (dfranx-SpvGenTwo-5fba6bd_GH0.tar.gz) = 548238
|
||||
SHA256 (dfranx-ShaderExpressionParser-2f9cb35_GH0.tar.gz) = 29f6652b66bc48f4d6f3e6ddcb0aba3558a48dcbf1daccdb8f08be12ced23c13
|
||||
SIZE (dfranx-ShaderExpressionParser-2f9cb35_GH0.tar.gz) = 10602
|
||||
SHA256 (dfranx-SPIRV-VM-439434f_GH0.tar.gz) = 59db95f0cb4e88e790136eaf3c501a64af6ece2e9a11ebb7bd4b34310841c77b
|
||||
SIZE (dfranx-SPIRV-VM-439434f_GH0.tar.gz) = 49985
|
||||
SHA256 (KhronosGroup-glslang-c594de2_GH0.tar.gz) = efb7973e3e9c606be69a96ac863d62f6b0132e8c575eeb34d8ed4df669e4026a
|
||||
SIZE (KhronosGroup-glslang-c594de2_GH0.tar.gz) = 3284571
|
||||
SHA256 (zeux-pugixml-40be014_GH0.tar.gz) = e36312bbf6bb2ed7d5a6a29d073e66a23d5d5fe79a1d0eb4c45ae1e1130813b0
|
||||
SIZE (zeux-pugixml-40be014_GH0.tar.gz) = 564438
|
||||
11
devel/shadered/files/patch-CMakeLists.txt
Normal file
11
devel/shadered/files/patch-CMakeLists.txt
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
--- CMakeLists.txt.orig 2023-01-19 21:30:11 UTC
|
||||
+++ CMakeLists.txt
|
||||
@@ -222,7 +222,7 @@ elseif(UNIX AND NOT APPLE)
|
||||
target_link_libraries(SHADERed ${GLEW_LIBRARIES} ${SDL2_LIBRARIES} ${GTK_LIBRARIES} ${CMAKE_DL_LIBS})
|
||||
|
||||
if (NOT DONT_LINK_FILESYSTEM)
|
||||
- target_link_libraries(SHADERed stdc++fs pthread m dl)
|
||||
+ target_link_libraries(SHADERed pthread m dl)
|
||||
endif()
|
||||
elseif(APPLE)
|
||||
target_link_libraries(SHADERed GLEW::GLEW ${SDL2_LIBRARIES} ${GTK_LIBRARIES} ${CMAKE_DL_LIBS})
|
||||
9
devel/shadered/pkg-descr
Normal file
9
devel/shadered/pkg-descr
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
Shader debugger lets you easily find bugs in your shader code. It is simple to
|
||||
use - you just need to pause the preview and select the pixel that you want to
|
||||
debug. After starting the debugger, you will be able to:
|
||||
* step through your shader code line by line
|
||||
* run immediate expressions
|
||||
* add watches
|
||||
* place (conditional) breakpoints
|
||||
* see list of all variables and their values
|
||||
* hover over expressions and see their value
|
||||
46
devel/shadered/pkg-plist
Normal file
46
devel/shadered/pkg-plist
Normal file
|
|
@ -0,0 +1,46 @@
|
|||
bin/shadered
|
||||
share/applications/shadered.desktop
|
||||
share/icons/hicolor/128x128/apps/shadered.png
|
||||
share/icons/hicolor/256x256/apps/shadered.png
|
||||
share/icons/hicolor/32x32/apps/shadered.png
|
||||
share/icons/hicolor/64x64/apps/shadered.png
|
||||
share/pixmaps/shadered.svg
|
||||
%%DATADIR%%/data/NotoSans.ttf
|
||||
%%DATADIR%%/data/export/cpp/CMakeLists.txt
|
||||
%%DATADIR%%/data/export/cpp/FindGLM.cmake
|
||||
%%DATADIR%%/data/export/cpp/stb_image.h
|
||||
%%DATADIR%%/data/export/cpp/template.cpp
|
||||
%%DATADIR%%/data/gizmo.obj
|
||||
%%DATADIR%%/data/gui.dat
|
||||
%%DATADIR%%/data/icofont.ttf
|
||||
%%DATADIR%%/data/inconsolata.ttf
|
||||
%%DATADIR%%/data/preload.dat
|
||||
%%DATADIR%%/data/shortcuts.kb
|
||||
%%DATADIR%%/data/splash_screen_logo.png
|
||||
%%DATADIR%%/data/splash_screen_text_black.png
|
||||
%%DATADIR%%/data/splash_screen_text_white.png
|
||||
%%DATADIR%%/data/sponsors/DigitalOcean-black.png
|
||||
%%DATADIR%%/data/sponsors/DigitalOcean-white.png
|
||||
%%DATADIR%%/data/sponsors/Embark-black.png
|
||||
%%DATADIR%%/data/sponsors/Embark-white.png
|
||||
%%DATADIR%%/data/vector_handle.obj
|
||||
%%DATADIR%%/data/vector_point.obj
|
||||
%%DATADIR%%/data/workspace.dat
|
||||
%%DATADIR%%/plugins/README.txt
|
||||
%%DATADIR%%/templates/GLSL/shaders/SimplePS.glsl
|
||||
%%DATADIR%%/templates/GLSL/shaders/SimpleVS.glsl
|
||||
%%DATADIR%%/templates/GLSL/template.sprj
|
||||
%%DATADIR%%/templates/HLSL/shaders/SimplePS.hlsl
|
||||
%%DATADIR%%/templates/HLSL/shaders/SimpleVS.hlsl
|
||||
%%DATADIR%%/templates/HLSL/template.sprj
|
||||
%%DATADIR%%/templates/QuadGLSL/shaders/SimplePS.glsl
|
||||
%%DATADIR%%/templates/QuadGLSL/shaders/SimpleVS.glsl
|
||||
%%DATADIR%%/templates/QuadGLSL/template.sprj
|
||||
%%DATADIR%%/templates/QuadHLSL/shaders/SimplePS.hlsl
|
||||
%%DATADIR%%/templates/QuadHLSL/shaders/SimpleVS.hlsl
|
||||
%%DATADIR%%/templates/QuadHLSL/template.sprj
|
||||
%%DATADIR%%/themes/cherry.ini
|
||||
%%DATADIR%%/themes/corporategray.ini
|
||||
%%DATADIR%%/themes/dracula.ini
|
||||
%%DATADIR%%/themes/gray.ini
|
||||
%%DATADIR%%/themes/lightgreen.ini
|
||||
|
|
@ -1,7 +1,6 @@
|
|||
PORTNAME= the-way
|
||||
DISTVERSIONPREFIX= v
|
||||
DISTVERSION= 0.18.0
|
||||
PORTREVISION= 1
|
||||
DISTVERSION= 0.19.1
|
||||
CATEGORIES= devel
|
||||
|
||||
MAINTAINER= yuri@FreeBSD.org
|
||||
|
|
@ -19,41 +18,38 @@ CARGO_CRATES= addr2line-0.17.0 \
|
|||
adler-1.0.2 \
|
||||
aho-corasick-0.7.18 \
|
||||
android_system_properties-0.1.4 \
|
||||
ansi_term-0.12.1 \
|
||||
arrayvec-0.5.2 \
|
||||
assert_cmd-2.0.4 \
|
||||
arrayvec-0.7.2 \
|
||||
assert_cmd-2.0.8 \
|
||||
atty-0.2.14 \
|
||||
autocfg-1.1.0 \
|
||||
backtrace-0.3.66 \
|
||||
base-x-0.2.11 \
|
||||
base64-0.13.0 \
|
||||
beef-0.5.2 \
|
||||
bincode-1.3.3 \
|
||||
bit-set-0.5.3 \
|
||||
bit-vec-0.6.3 \
|
||||
bitflags-1.2.1 \
|
||||
bitflags-1.3.2 \
|
||||
block-0.1.6 \
|
||||
bstr-0.2.17 \
|
||||
bstr-1.1.0 \
|
||||
bumpalo-3.11.0 \
|
||||
byteorder-1.4.3 \
|
||||
cc-1.0.73 \
|
||||
cfg-if-0.1.10 \
|
||||
cfg-if-1.0.0 \
|
||||
chrono-0.4.22 \
|
||||
chrono-0.4.23 \
|
||||
chrono-english-0.1.7 \
|
||||
chunked_transfer-1.4.0 \
|
||||
clap-2.34.0 \
|
||||
clap-3.2.17 \
|
||||
clap_complete-3.2.4 \
|
||||
clap_derive-3.2.17 \
|
||||
clap-3.2.23 \
|
||||
clap-4.1.1 \
|
||||
clap_complete-4.1.0 \
|
||||
clap_derive-4.1.0 \
|
||||
clap_lex-0.2.4 \
|
||||
clap_lex-0.3.0 \
|
||||
clipboard-0.5.0 \
|
||||
clipboard-win-2.2.0 \
|
||||
color-eyre-0.6.2 \
|
||||
confy-0.4.0 \
|
||||
confy-0.5.1 \
|
||||
conpty-0.3.0 \
|
||||
console-0.15.1 \
|
||||
const_fn-0.4.9 \
|
||||
core-foundation-sys-0.8.3 \
|
||||
crc32fast-1.3.2 \
|
||||
crossbeam-0.8.2 \
|
||||
|
|
@ -64,25 +60,27 @@ CARGO_CRATES= addr2line-0.17.0 \
|
|||
crossbeam-queue-0.3.6 \
|
||||
crossbeam-utils-0.7.2 \
|
||||
crossbeam-utils-0.8.11 \
|
||||
darling-0.10.2 \
|
||||
darling_core-0.10.2 \
|
||||
darling_macro-0.10.2 \
|
||||
darling-0.14.2 \
|
||||
darling_core-0.14.2 \
|
||||
darling_macro-0.14.2 \
|
||||
defer-drop-1.2.0 \
|
||||
derive_builder-0.9.0 \
|
||||
derive_builder_core-0.9.0 \
|
||||
dialoguer-0.10.2 \
|
||||
derive_builder-0.11.2 \
|
||||
derive_builder_core-0.11.2 \
|
||||
derive_builder_macro-0.11.2 \
|
||||
dialoguer-0.10.3 \
|
||||
difflib-0.4.0 \
|
||||
directories-2.0.2 \
|
||||
directories-4.0.1 \
|
||||
directories-next-1.0.3 \
|
||||
dirs-next-2.0.0 \
|
||||
dirs-sys-0.3.7 \
|
||||
dirs-sys-next-0.1.2 \
|
||||
discard-1.0.4 \
|
||||
doc-comment-0.3.3 \
|
||||
either-1.8.0 \
|
||||
encode_unicode-0.3.6 \
|
||||
env_logger-0.8.4 \
|
||||
expectrl-0.5.2 \
|
||||
env_logger-0.9.3 \
|
||||
errno-0.2.8 \
|
||||
errno-dragonfly-0.1.2 \
|
||||
expectrl-0.6.0 \
|
||||
eyre-0.6.8 \
|
||||
fancy-regex-0.7.1 \
|
||||
fastrand-1.8.0 \
|
||||
|
|
@ -95,11 +93,12 @@ CARGO_CRATES= addr2line-0.17.0 \
|
|||
fxhash-0.2.1 \
|
||||
getrandom-0.2.7 \
|
||||
gimli-0.26.2 \
|
||||
globset-0.4.9 \
|
||||
grep-cli-0.1.6 \
|
||||
globset-0.4.10 \
|
||||
grep-cli-0.1.7 \
|
||||
hashbrown-0.12.3 \
|
||||
heck-0.4.0 \
|
||||
hermit-abi-0.1.19 \
|
||||
hermit-abi-0.2.6 \
|
||||
hex-0.4.3 \
|
||||
humantime-2.1.0 \
|
||||
iana-time-zone-0.1.46 \
|
||||
|
|
@ -107,15 +106,18 @@ CARGO_CRATES= addr2line-0.17.0 \
|
|||
idna-0.2.3 \
|
||||
indenter-0.3.3 \
|
||||
indexmap-1.9.1 \
|
||||
indicatif-0.17.0 \
|
||||
indicatif-0.17.3 \
|
||||
instant-0.1.12 \
|
||||
io-lifetimes-1.0.3 \
|
||||
is-terminal-0.4.1 \
|
||||
itertools-0.10.3 \
|
||||
itoa-1.0.3 \
|
||||
js-sys-0.3.59 \
|
||||
lazy_static-1.4.0 \
|
||||
libc-0.2.132 \
|
||||
libc-0.2.138 \
|
||||
line-wrap-0.1.1 \
|
||||
linked-hash-map-0.5.6 \
|
||||
linux-raw-sys-0.1.4 \
|
||||
lock_api-0.4.7 \
|
||||
log-0.4.17 \
|
||||
malloc_buf-0.0.6 \
|
||||
|
|
@ -124,10 +126,9 @@ CARGO_CRATES= addr2line-0.17.0 \
|
|||
memchr-2.5.0 \
|
||||
memoffset-0.6.5 \
|
||||
miniz_oxide-0.5.3 \
|
||||
nix-0.19.1 \
|
||||
nix-0.21.2 \
|
||||
nix-0.23.1 \
|
||||
nix-0.21.0 \
|
||||
nix-0.24.2 \
|
||||
nix-0.25.1 \
|
||||
normalize-line-endings-0.3.0 \
|
||||
num-integer-0.1.45 \
|
||||
num-traits-0.2.15 \
|
||||
|
|
@ -138,33 +139,34 @@ CARGO_CRATES= addr2line-0.17.0 \
|
|||
objc-foundation-0.1.1 \
|
||||
objc_id-0.1.1 \
|
||||
object-0.29.0 \
|
||||
once_cell-1.13.1 \
|
||||
once_cell-1.16.0 \
|
||||
os_str_bytes-6.3.0 \
|
||||
owo-colors-3.5.0 \
|
||||
parking_lot-0.11.2 \
|
||||
parking_lot_core-0.8.5 \
|
||||
percent-encoding-2.1.0 \
|
||||
pin-utils-0.1.0 \
|
||||
plist-1.3.1 \
|
||||
predicates-2.1.1 \
|
||||
portable-atomic-0.3.18 \
|
||||
predicates-2.1.5 \
|
||||
predicates-core-1.0.3 \
|
||||
predicates-tree-1.0.5 \
|
||||
proc-macro-error-1.0.4 \
|
||||
proc-macro-error-attr-1.0.4 \
|
||||
proc-macro-hack-0.5.19 \
|
||||
proc-macro2-1.0.43 \
|
||||
proc-macro2-1.0.47 \
|
||||
ptyprocess-0.3.0 \
|
||||
quote-1.0.21 \
|
||||
rayon-1.5.3 \
|
||||
rayon-core-1.9.3 \
|
||||
redox_syscall-0.2.16 \
|
||||
redox_users-0.4.3 \
|
||||
regex-1.6.0 \
|
||||
regex-1.7.1 \
|
||||
regex-automata-0.1.10 \
|
||||
regex-syntax-0.6.27 \
|
||||
remove_dir_all-0.5.3 \
|
||||
ring-0.16.20 \
|
||||
rustc-demangle-0.1.21 \
|
||||
rustc_version-0.2.3 \
|
||||
rustix-0.36.5 \
|
||||
rustls-0.20.6 \
|
||||
rustversion-1.0.9 \
|
||||
ryu-1.0.11 \
|
||||
|
|
@ -173,63 +175,48 @@ CARGO_CRATES= addr2line-0.17.0 \
|
|||
scanlex-0.1.4 \
|
||||
scopeguard-1.1.0 \
|
||||
sct-0.7.0 \
|
||||
semver-0.9.0 \
|
||||
semver-parser-0.7.0 \
|
||||
serde-1.0.144 \
|
||||
serde_derive-1.0.144 \
|
||||
serde_json-1.0.85 \
|
||||
serde_yaml-0.9.10 \
|
||||
sha1-0.6.1 \
|
||||
sha1_smol-1.0.0 \
|
||||
shlex-0.1.1 \
|
||||
skim-0.9.4 \
|
||||
serde-1.0.152 \
|
||||
serde_derive-1.0.152 \
|
||||
serde_json-1.0.91 \
|
||||
serde_yaml-0.9.16 \
|
||||
shell-words-1.1.0 \
|
||||
shlex-1.1.0 \
|
||||
skim-0.10.2 \
|
||||
sled-0.34.7 \
|
||||
smallvec-1.9.0 \
|
||||
spin-0.5.2 \
|
||||
standback-0.2.17 \
|
||||
stdweb-0.4.20 \
|
||||
stdweb-derive-0.5.3 \
|
||||
stdweb-internal-macros-0.2.9 \
|
||||
stdweb-internal-runtime-0.1.5 \
|
||||
strsim-0.8.0 \
|
||||
strsim-0.9.3 \
|
||||
strsim-0.10.0 \
|
||||
strum-0.24.1 \
|
||||
strum_macros-0.24.3 \
|
||||
syn-1.0.99 \
|
||||
syn-1.0.105 \
|
||||
syntect-5.0.0 \
|
||||
tempfile-3.3.0 \
|
||||
term-0.7.0 \
|
||||
termcolor-1.1.3 \
|
||||
termcolor-1.2.0 \
|
||||
terminal_size-0.1.17 \
|
||||
termtree-0.2.4 \
|
||||
textwrap-0.11.0 \
|
||||
textwrap-0.15.0 \
|
||||
thiserror-1.0.32 \
|
||||
thiserror-impl-1.0.32 \
|
||||
textwrap-0.16.0 \
|
||||
thiserror-1.0.38 \
|
||||
thiserror-impl-1.0.38 \
|
||||
thread_local-1.1.4 \
|
||||
time-0.1.44 \
|
||||
time-0.2.27 \
|
||||
time-0.3.13 \
|
||||
time-macros-0.1.1 \
|
||||
time-macros-impl-0.1.2 \
|
||||
timer-0.2.0 \
|
||||
tinyvec-1.6.0 \
|
||||
tinyvec_macros-0.1.0 \
|
||||
toml-0.5.9 \
|
||||
tuikit-0.4.6 \
|
||||
tuikit-0.5.0 \
|
||||
unicode-bidi-0.3.8 \
|
||||
unicode-ident-1.0.3 \
|
||||
unicode-normalization-0.1.21 \
|
||||
unicode-width-0.1.9 \
|
||||
unsafe-libyaml-0.2.2 \
|
||||
unsafe-libyaml-0.2.4 \
|
||||
untrusted-0.7.1 \
|
||||
ureq-2.5.0 \
|
||||
ureq-2.6.2 \
|
||||
url-2.2.2 \
|
||||
utf8parse-0.2.0 \
|
||||
vec_map-0.8.2 \
|
||||
version_check-0.9.4 \
|
||||
vte-0.9.0 \
|
||||
vte-0.11.0 \
|
||||
vte_generate_state_changes-0.1.1 \
|
||||
wait-timeout-0.2.0 \
|
||||
walkdir-2.3.2 \
|
||||
|
|
@ -248,11 +235,19 @@ CARGO_CRATES= addr2line-0.17.0 \
|
|||
winapi-util-0.1.5 \
|
||||
winapi-x86_64-pc-windows-gnu-0.4.0 \
|
||||
windows-0.29.0 \
|
||||
windows-sys-0.42.0 \
|
||||
windows_aarch64_gnullvm-0.42.0 \
|
||||
windows_aarch64_msvc-0.29.0 \
|
||||
windows_aarch64_msvc-0.42.0 \
|
||||
windows_i686_gnu-0.29.0 \
|
||||
windows_i686_gnu-0.42.0 \
|
||||
windows_i686_msvc-0.29.0 \
|
||||
windows_i686_msvc-0.42.0 \
|
||||
windows_x86_64_gnu-0.29.0 \
|
||||
windows_x86_64_gnu-0.42.0 \
|
||||
windows_x86_64_gnullvm-0.42.0 \
|
||||
windows_x86_64_msvc-0.29.0 \
|
||||
windows_x86_64_msvc-0.42.0 \
|
||||
x11-clipboard-0.3.3 \
|
||||
xcb-0.8.2 \
|
||||
xml-rs-0.8.4 \
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
TIMESTAMP = 1672604717
|
||||
TIMESTAMP = 1674155379
|
||||
SHA256 (rust/crates/addr2line-0.17.0.crate) = b9ecd88a8c8378ca913a680cd98f0f13ac67383d35993f86c90a70e3f137816b
|
||||
SIZE (rust/crates/addr2line-0.17.0.crate) = 32260
|
||||
SHA256 (rust/crates/adler-1.0.2.crate) = f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe
|
||||
|
|
@ -7,20 +7,16 @@ SHA256 (rust/crates/aho-corasick-0.7.18.crate) = 1e37cfd5e7657ada45f742d6e99ca57
|
|||
SIZE (rust/crates/aho-corasick-0.7.18.crate) = 112923
|
||||
SHA256 (rust/crates/android_system_properties-0.1.4.crate) = d7ed72e1635e121ca3e79420540282af22da58be50de153d36f81ddc6b83aa9e
|
||||
SIZE (rust/crates/android_system_properties-0.1.4.crate) = 4637
|
||||
SHA256 (rust/crates/ansi_term-0.12.1.crate) = d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2
|
||||
SIZE (rust/crates/ansi_term-0.12.1.crate) = 24838
|
||||
SHA256 (rust/crates/arrayvec-0.5.2.crate) = 23b62fc65de8e4e7f52534fb52b0f3ed04746ae267519eef2a83941e8085068b
|
||||
SIZE (rust/crates/arrayvec-0.5.2.crate) = 27838
|
||||
SHA256 (rust/crates/assert_cmd-2.0.4.crate) = 93ae1ddd39efd67689deb1979d80bad3bf7f2b09c6e6117c8d1f2443b5e2f83e
|
||||
SIZE (rust/crates/assert_cmd-2.0.4.crate) = 22581
|
||||
SHA256 (rust/crates/arrayvec-0.7.2.crate) = 8da52d66c7071e2e3fa2a1e5c6d088fec47b593032b254f5e980de8ea54454d6
|
||||
SIZE (rust/crates/arrayvec-0.7.2.crate) = 29341
|
||||
SHA256 (rust/crates/assert_cmd-2.0.8.crate) = 9834fcc22e0874394a010230586367d4a3e9f11b560f469262678547e1d2575e
|
||||
SIZE (rust/crates/assert_cmd-2.0.8.crate) = 24347
|
||||
SHA256 (rust/crates/atty-0.2.14.crate) = d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8
|
||||
SIZE (rust/crates/atty-0.2.14.crate) = 5470
|
||||
SHA256 (rust/crates/autocfg-1.1.0.crate) = d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa
|
||||
SIZE (rust/crates/autocfg-1.1.0.crate) = 13272
|
||||
SHA256 (rust/crates/backtrace-0.3.66.crate) = cab84319d616cfb654d03394f38ab7e6f0919e181b1b57e1fd15e7fb4077d9a7
|
||||
SIZE (rust/crates/backtrace-0.3.66.crate) = 74397
|
||||
SHA256 (rust/crates/base-x-0.2.11.crate) = 4cbbc9d0964165b47557570cce6c952866c2678457aca742aafc9fb771d30270
|
||||
SIZE (rust/crates/base-x-0.2.11.crate) = 10755
|
||||
SHA256 (rust/crates/base64-0.13.0.crate) = 904dfeac50f3cdaba28fc6f57fdcddb75f49ed61346676a78c4ffe55877802fd
|
||||
SIZE (rust/crates/base64-0.13.0.crate) = 62070
|
||||
SHA256 (rust/crates/beef-0.5.2.crate) = 3a8241f3ebb85c056b509d4327ad0358fbbba6ffb340bf388f26350aeda225b1
|
||||
|
|
@ -31,12 +27,12 @@ SHA256 (rust/crates/bit-set-0.5.3.crate) = 0700ddab506f33b20a03b13996eccd309a48e
|
|||
SIZE (rust/crates/bit-set-0.5.3.crate) = 14470
|
||||
SHA256 (rust/crates/bit-vec-0.6.3.crate) = 349f9b6a179ed607305526ca489b34ad0a41aed5f7980fa90eb03160b69598fb
|
||||
SIZE (rust/crates/bit-vec-0.6.3.crate) = 19927
|
||||
SHA256 (rust/crates/bitflags-1.2.1.crate) = cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693
|
||||
SIZE (rust/crates/bitflags-1.2.1.crate) = 16745
|
||||
SHA256 (rust/crates/bitflags-1.3.2.crate) = bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a
|
||||
SIZE (rust/crates/bitflags-1.3.2.crate) = 23021
|
||||
SHA256 (rust/crates/block-0.1.6.crate) = 0d8c1fef690941d3e7788d328517591fecc684c084084702d6ff1641e993699a
|
||||
SIZE (rust/crates/block-0.1.6.crate) = 4077
|
||||
SHA256 (rust/crates/bstr-0.2.17.crate) = ba3569f383e8f1598449f1a423e72e99569137b47740b1da11ef19af3d5c3223
|
||||
SIZE (rust/crates/bstr-0.2.17.crate) = 330350
|
||||
SHA256 (rust/crates/bstr-1.1.0.crate) = b45ea9b00a7b3f2988e9a65ad3917e62123c38dba709b666506207be96d1790b
|
||||
SIZE (rust/crates/bstr-1.1.0.crate) = 340878
|
||||
SHA256 (rust/crates/bumpalo-3.11.0.crate) = c1ad822118d20d2c234f427000d5acc36eabe1e29a348c89b63dd60b13f28e5d
|
||||
SIZE (rust/crates/bumpalo-3.11.0.crate) = 80945
|
||||
SHA256 (rust/crates/byteorder-1.4.3.crate) = 14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610
|
||||
|
|
@ -47,36 +43,34 @@ SHA256 (rust/crates/cfg-if-0.1.10.crate) = 4785bdd1c96b2a846b2bd7cc02e86b6b3dbf1
|
|||
SIZE (rust/crates/cfg-if-0.1.10.crate) = 7933
|
||||
SHA256 (rust/crates/cfg-if-1.0.0.crate) = baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd
|
||||
SIZE (rust/crates/cfg-if-1.0.0.crate) = 7934
|
||||
SHA256 (rust/crates/chrono-0.4.22.crate) = bfd4d1b31faaa3a89d7934dbded3111da0d2ef28e3ebccdb4f0179f5929d1ef1
|
||||
SIZE (rust/crates/chrono-0.4.22.crate) = 185570
|
||||
SHA256 (rust/crates/chrono-0.4.23.crate) = 16b0a3d9ed01224b22057780a37bb8c5dbfe1be8ba48678e7bf57ec4b385411f
|
||||
SIZE (rust/crates/chrono-0.4.23.crate) = 187259
|
||||
SHA256 (rust/crates/chrono-english-0.1.7.crate) = f73d909da7eb4a7d88c679c3f5a1bc09d965754e0adb2e7627426cef96a00d6f
|
||||
SIZE (rust/crates/chrono-english-0.1.7.crate) = 12825
|
||||
SHA256 (rust/crates/chunked_transfer-1.4.0.crate) = fff857943da45f546682664a79488be82e69e43c1a7a2307679ab9afb3a66d2e
|
||||
SIZE (rust/crates/chunked_transfer-1.4.0.crate) = 9238
|
||||
SHA256 (rust/crates/clap-2.34.0.crate) = a0610544180c38b88101fecf2dd634b174a62eef6946f84dfc6a7127512b381c
|
||||
SIZE (rust/crates/clap-2.34.0.crate) = 202210
|
||||
SHA256 (rust/crates/clap-3.2.17.crate) = 29e724a68d9319343bb3328c9cc2dfde263f4b3142ee1059a9980580171c954b
|
||||
SIZE (rust/crates/clap-3.2.17.crate) = 213699
|
||||
SHA256 (rust/crates/clap_complete-3.2.4.crate) = e4179da71abd56c26b54dd0c248cc081c1f43b0a1a7e8448e28e57a29baa993d
|
||||
SIZE (rust/crates/clap_complete-3.2.4.crate) = 31618
|
||||
SHA256 (rust/crates/clap_derive-3.2.17.crate) = 13547f7012c01ab4a0e8f8967730ada8f9fdf419e8b6c792788f39cf4e46eefa
|
||||
SIZE (rust/crates/clap_derive-3.2.17.crate) = 28217
|
||||
SHA256 (rust/crates/clap-3.2.23.crate) = 71655c45cb9845d3270c9d6df84ebe72b4dad3c2ba3f7023ad47c144e4e473a5
|
||||
SIZE (rust/crates/clap-3.2.23.crate) = 219435
|
||||
SHA256 (rust/crates/clap-4.1.1.crate) = 4ec7a4128863c188deefe750ac1d1dfe66c236909f845af04beed823638dc1b2
|
||||
SIZE (rust/crates/clap-4.1.1.crate) = 206977
|
||||
SHA256 (rust/crates/clap_complete-4.1.0.crate) = ce8955d4e8cd4f28f9a01c93a050194c4d131e73ca02f6636bcddbed867014d7
|
||||
SIZE (rust/crates/clap_complete-4.1.0.crate) = 32703
|
||||
SHA256 (rust/crates/clap_derive-4.1.0.crate) = 684a277d672e91966334af371f1a7b5833f9aa00b07c84e92fbce95e00208ce8
|
||||
SIZE (rust/crates/clap_derive-4.1.0.crate) = 27897
|
||||
SHA256 (rust/crates/clap_lex-0.2.4.crate) = 2850f2f5a82cbf437dd5af4d49848fbdfc27c157c3d010345776f952765261c5
|
||||
SIZE (rust/crates/clap_lex-0.2.4.crate) = 9652
|
||||
SHA256 (rust/crates/clap_lex-0.3.0.crate) = 0d4198f73e42b4936b35b5bb248d81d2b595ecb170da0bac7655c54eedfa8da8
|
||||
SIZE (rust/crates/clap_lex-0.3.0.crate) = 9671
|
||||
SHA256 (rust/crates/clipboard-0.5.0.crate) = 25a904646c0340239dcf7c51677b33928bf24fdf424b79a57909c0109075b2e7
|
||||
SIZE (rust/crates/clipboard-0.5.0.crate) = 10009
|
||||
SHA256 (rust/crates/clipboard-win-2.2.0.crate) = e3a093d6fed558e5fe24c3dfc85a68bb68f1c824f440d3ba5aca189e2998786b
|
||||
SIZE (rust/crates/clipboard-win-2.2.0.crate) = 11079
|
||||
SHA256 (rust/crates/color-eyre-0.6.2.crate) = 5a667583cca8c4f8436db8de46ea8233c42a7d9ae424a82d338f2e4675229204
|
||||
SIZE (rust/crates/color-eyre-0.6.2.crate) = 635042
|
||||
SHA256 (rust/crates/confy-0.4.0.crate) = 2913470204e9e8498a0f31f17f90a0de801ae92c8c5ac18c49af4819e6786697
|
||||
SIZE (rust/crates/confy-0.4.0.crate) = 9136
|
||||
SHA256 (rust/crates/confy-0.5.1.crate) = e37668cb35145dcfaa1931a5f37fde375eeae8068b4c0d2f289da28a270b2d2c
|
||||
SIZE (rust/crates/confy-0.5.1.crate) = 10276
|
||||
SHA256 (rust/crates/conpty-0.3.0.crate) = 977baae4026273d7f9bb69a0a8eb4aed7ab9dac98799f742dce09173a9734754
|
||||
SIZE (rust/crates/conpty-0.3.0.crate) = 13168
|
||||
SHA256 (rust/crates/console-0.15.1.crate) = 89eab4d20ce20cea182308bca13088fecea9c05f6776cf287205d41a0ed3c847
|
||||
SIZE (rust/crates/console-0.15.1.crate) = 31674
|
||||
SHA256 (rust/crates/const_fn-0.4.9.crate) = fbdcdcb6d86f71c5e97409ad45898af11cbc995b4ee8112d59095a28d376c935
|
||||
SIZE (rust/crates/const_fn-0.4.9.crate) = 12624
|
||||
SHA256 (rust/crates/core-foundation-sys-0.8.3.crate) = 5827cebf4670468b8772dd191856768aedcb1b0278a04f989f7766351917b9dc
|
||||
SIZE (rust/crates/core-foundation-sys-0.8.3.crate) = 17519
|
||||
SHA256 (rust/crates/crc32fast-1.3.2.crate) = b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d
|
||||
|
|
@ -97,24 +91,26 @@ SHA256 (rust/crates/crossbeam-utils-0.7.2.crate) = c3c7c73a2d1e9fc0886a08b93e98e
|
|||
SIZE (rust/crates/crossbeam-utils-0.7.2.crate) = 34338
|
||||
SHA256 (rust/crates/crossbeam-utils-0.8.11.crate) = 51887d4adc7b564537b15adcfb307936f8075dfcd5f00dde9a9f1d29383682bc
|
||||
SIZE (rust/crates/crossbeam-utils-0.8.11.crate) = 40887
|
||||
SHA256 (rust/crates/darling-0.10.2.crate) = 0d706e75d87e35569db781a9b5e2416cff1236a47ed380831f959382ccd5f858
|
||||
SIZE (rust/crates/darling-0.10.2.crate) = 17620
|
||||
SHA256 (rust/crates/darling_core-0.10.2.crate) = f0c960ae2da4de88a91b2d920c2a7233b400bc33cb28453a2987822d8392519b
|
||||
SIZE (rust/crates/darling_core-0.10.2.crate) = 44339
|
||||
SHA256 (rust/crates/darling_macro-0.10.2.crate) = d9b5a2f4ac4969822c62224815d069952656cadc7084fdca9751e6d959189b72
|
||||
SIZE (rust/crates/darling_macro-0.10.2.crate) = 1919
|
||||
SHA256 (rust/crates/darling-0.14.2.crate) = b0dd3cd20dc6b5a876612a6e5accfe7f3dd883db6d07acfbf14c128f61550dfa
|
||||
SIZE (rust/crates/darling-0.14.2.crate) = 22141
|
||||
SHA256 (rust/crates/darling_core-0.14.2.crate) = a784d2ccaf7c98501746bf0be29b2022ba41fd62a2e622af997a03e9f972859f
|
||||
SIZE (rust/crates/darling_core-0.14.2.crate) = 53924
|
||||
SHA256 (rust/crates/darling_macro-0.14.2.crate) = 7618812407e9402654622dd402b0a89dff9ba93badd6540781526117b92aab7e
|
||||
SIZE (rust/crates/darling_macro-0.14.2.crate) = 1896
|
||||
SHA256 (rust/crates/defer-drop-1.2.0.crate) = 828aca0e5e4341b0320a319209cbc6255b8b06254849ce8a5f33d33f7f2fa0f0
|
||||
SIZE (rust/crates/defer-drop-1.2.0.crate) = 11350
|
||||
SHA256 (rust/crates/derive_builder-0.9.0.crate) = a2658621297f2cf68762a6f7dc0bb7e1ff2cfd6583daef8ee0fed6f7ec468ec0
|
||||
SIZE (rust/crates/derive_builder-0.9.0.crate) = 38161
|
||||
SHA256 (rust/crates/derive_builder_core-0.9.0.crate) = 2791ea3e372c8495c0bc2033991d76b512cd799d07491fbd6890124db9458bef
|
||||
SIZE (rust/crates/derive_builder_core-0.9.0.crate) = 18328
|
||||
SHA256 (rust/crates/dialoguer-0.10.2.crate) = a92e7e37ecef6857fdc0c0c5d42fd5b0938e46590c2183cc92dd310a6d078eb1
|
||||
SIZE (rust/crates/dialoguer-0.10.2.crate) = 25304
|
||||
SHA256 (rust/crates/derive_builder-0.11.2.crate) = d07adf7be193b71cc36b193d0f5fe60b918a3a9db4dad0449f57bcfd519704a3
|
||||
SIZE (rust/crates/derive_builder-0.11.2.crate) = 34316
|
||||
SHA256 (rust/crates/derive_builder_core-0.11.2.crate) = 1f91d4cfa921f1c05904dc3c57b4a32c38aed3340cce209f3a6fd1478babafc4
|
||||
SIZE (rust/crates/derive_builder_core-0.11.2.crate) = 29831
|
||||
SHA256 (rust/crates/derive_builder_macro-0.11.2.crate) = 8f0314b72bed045f3a68671b3c86328386762c93f82d98c65c3cb5e5f573dd68
|
||||
SIZE (rust/crates/derive_builder_macro-0.11.2.crate) = 6222
|
||||
SHA256 (rust/crates/dialoguer-0.10.3.crate) = af3c796f3b0b408d9fd581611b47fa850821fcb84aa640b83a3c1a5be2d691f2
|
||||
SIZE (rust/crates/dialoguer-0.10.3.crate) = 28627
|
||||
SHA256 (rust/crates/difflib-0.4.0.crate) = 6184e33543162437515c2e2b48714794e37845ec9851711914eec9d308f6ebe8
|
||||
SIZE (rust/crates/difflib-0.4.0.crate) = 7638
|
||||
SHA256 (rust/crates/directories-2.0.2.crate) = 551a778172a450d7fc12e629ca3b0428d00f6afa9a43da1b630d54604e97371c
|
||||
SIZE (rust/crates/directories-2.0.2.crate) = 15214
|
||||
SHA256 (rust/crates/directories-4.0.1.crate) = f51c5d4ddabd36886dd3e1438cb358cdcb0d7c499cb99cb4ac2e38e18b5cb210
|
||||
SIZE (rust/crates/directories-4.0.1.crate) = 16040
|
||||
SHA256 (rust/crates/directories-next-1.0.3.crate) = 8a28ccebc1239c5c57f0c55986e2ac03f49af0d0ca3dff29bfcad39d60a8be56
|
||||
SIZE (rust/crates/directories-next-1.0.3.crate) = 14986
|
||||
SHA256 (rust/crates/dirs-next-2.0.0.crate) = b98cf8ebf19c3d1b223e151f99a4f9f0690dca41414773390fc824184ac833e1
|
||||
|
|
@ -123,18 +119,20 @@ SHA256 (rust/crates/dirs-sys-0.3.7.crate) = 1b1d1d91c932ef41c0f2663aa8b0ca0342d4
|
|||
SIZE (rust/crates/dirs-sys-0.3.7.crate) = 10597
|
||||
SHA256 (rust/crates/dirs-sys-next-0.1.2.crate) = 4ebda144c4fe02d1f7ea1a7d9641b6fc6b580adcfa024ae48797ecdeb6825b4d
|
||||
SIZE (rust/crates/dirs-sys-next-0.1.2.crate) = 10681
|
||||
SHA256 (rust/crates/discard-1.0.4.crate) = 212d0f5754cb6769937f4501cc0e67f4f4483c8d2c3e1e922ee9edbe4ab4c7c0
|
||||
SIZE (rust/crates/discard-1.0.4.crate) = 4700
|
||||
SHA256 (rust/crates/doc-comment-0.3.3.crate) = fea41bba32d969b513997752735605054bc0dfa92b4c56bf1189f2e174be7a10
|
||||
SIZE (rust/crates/doc-comment-0.3.3.crate) = 4123
|
||||
SHA256 (rust/crates/either-1.8.0.crate) = 90e5c1c8368803113bf0c9584fc495a58b86dc8a29edbf8fe877d21d9507e797
|
||||
SIZE (rust/crates/either-1.8.0.crate) = 15992
|
||||
SHA256 (rust/crates/encode_unicode-0.3.6.crate) = a357d28ed41a50f9c765dbfe56cbc04a64e53e5fc58ba79fbc34c10ef3df831f
|
||||
SIZE (rust/crates/encode_unicode-0.3.6.crate) = 45741
|
||||
SHA256 (rust/crates/env_logger-0.8.4.crate) = a19187fea3ac7e84da7dacf48de0c45d63c6a76f9490dae389aead16c243fce3
|
||||
SIZE (rust/crates/env_logger-0.8.4.crate) = 33342
|
||||
SHA256 (rust/crates/expectrl-0.5.2.crate) = 2795e11f4ee3124984d454f25ac899515a5fa6d956562ef2b147fef6050b02f8
|
||||
SIZE (rust/crates/expectrl-0.5.2.crate) = 49478
|
||||
SHA256 (rust/crates/env_logger-0.9.3.crate) = a12e6657c4c97ebab115a42dcee77225f7f482cdd841cf7088c657a42e9e00e7
|
||||
SIZE (rust/crates/env_logger-0.9.3.crate) = 33291
|
||||
SHA256 (rust/crates/errno-0.2.8.crate) = f639046355ee4f37944e44f60642c6f3a7efa3cf6b78c78a0d989a8ce6c396a1
|
||||
SIZE (rust/crates/errno-0.2.8.crate) = 9276
|
||||
SHA256 (rust/crates/errno-dragonfly-0.1.2.crate) = aa68f1b12764fab894d2755d2518754e71b4fd80ecfb822714a1206c2aab39bf
|
||||
SIZE (rust/crates/errno-dragonfly-0.1.2.crate) = 1810
|
||||
SHA256 (rust/crates/expectrl-0.6.0.crate) = 1ae3a1de9c4a0cfc3badf6f98bf0736fe3f05e3b6da5b8f5288a4726fcc6f746
|
||||
SIZE (rust/crates/expectrl-0.6.0.crate) = 54670
|
||||
SHA256 (rust/crates/eyre-0.6.8.crate) = 4c2b6b5a29c02cdc822728b7d7b8ae1bab3e3b05d44522770ddd49722eeac7eb
|
||||
SIZE (rust/crates/eyre-0.6.8.crate) = 41587
|
||||
SHA256 (rust/crates/fancy-regex-0.7.1.crate) = 9d6b8560a05112eb52f04b00e5d3790c0dd75d9d980eb8a122fb23b92a623ccf
|
||||
|
|
@ -159,16 +157,18 @@ SHA256 (rust/crates/getrandom-0.2.7.crate) = 4eb1a864a501629691edf6c15a593b7a51e
|
|||
SIZE (rust/crates/getrandom-0.2.7.crate) = 28854
|
||||
SHA256 (rust/crates/gimli-0.26.2.crate) = 22030e2c5a68ec659fde1e949a745124b48e6fa8b045b7ed5bd1fe4ccc5c4e5d
|
||||
SIZE (rust/crates/gimli-0.26.2.crate) = 717340
|
||||
SHA256 (rust/crates/globset-0.4.9.crate) = 0a1e17342619edbc21a964c2afbeb6c820c6a2560032872f397bb97ea127bd0a
|
||||
SIZE (rust/crates/globset-0.4.9.crate) = 22929
|
||||
SHA256 (rust/crates/grep-cli-0.1.6.crate) = 2dd110c34bb4460d0de5062413b773e385cbf8a85a63fc535590110a09e79e8a
|
||||
SIZE (rust/crates/grep-cli-0.1.6.crate) = 18949
|
||||
SHA256 (rust/crates/globset-0.4.10.crate) = 029d74589adefde59de1a0c4f4732695c32805624aec7b68d91503d4dba79afc
|
||||
SIZE (rust/crates/globset-0.4.10.crate) = 22923
|
||||
SHA256 (rust/crates/grep-cli-0.1.7.crate) = d19fc6687bc64b6719a839cd24f2c700bcb05ffeb684d19da6a637c2455a7ba1
|
||||
SIZE (rust/crates/grep-cli-0.1.7.crate) = 18936
|
||||
SHA256 (rust/crates/hashbrown-0.12.3.crate) = 8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888
|
||||
SIZE (rust/crates/hashbrown-0.12.3.crate) = 102968
|
||||
SHA256 (rust/crates/heck-0.4.0.crate) = 2540771e65fc8cb83cd6e8a237f70c319bd5c29f78ed1084ba5d50eeac86f7f9
|
||||
SIZE (rust/crates/heck-0.4.0.crate) = 11161
|
||||
SHA256 (rust/crates/hermit-abi-0.1.19.crate) = 62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33
|
||||
SIZE (rust/crates/hermit-abi-0.1.19.crate) = 9979
|
||||
SHA256 (rust/crates/hermit-abi-0.2.6.crate) = ee512640fe35acbfb4bb779db6f0d80704c2cacfa2e39b601ef3e3f47d1ae4c7
|
||||
SIZE (rust/crates/hermit-abi-0.2.6.crate) = 13027
|
||||
SHA256 (rust/crates/hex-0.4.3.crate) = 7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70
|
||||
SIZE (rust/crates/hex-0.4.3.crate) = 13299
|
||||
SHA256 (rust/crates/humantime-2.1.0.crate) = 9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4
|
||||
|
|
@ -183,10 +183,14 @@ SHA256 (rust/crates/indenter-0.3.3.crate) = ce23b50ad8242c51a442f3ff322d56b02f08
|
|||
SIZE (rust/crates/indenter-0.3.3.crate) = 6587
|
||||
SHA256 (rust/crates/indexmap-1.9.1.crate) = 10a35a97730320ffe8e2d410b5d3b69279b98d2c14bdb8b70ea89ecf7888d41e
|
||||
SIZE (rust/crates/indexmap-1.9.1.crate) = 54114
|
||||
SHA256 (rust/crates/indicatif-0.17.0.crate) = fcc42b206e70d86ec03285b123e65a5458c92027d1fb2ae3555878b8113b3ddf
|
||||
SIZE (rust/crates/indicatif-0.17.0.crate) = 52707
|
||||
SHA256 (rust/crates/indicatif-0.17.3.crate) = cef509aa9bc73864d6756f0d34d35504af3cf0844373afe9b8669a5b8005a729
|
||||
SIZE (rust/crates/indicatif-0.17.3.crate) = 53584
|
||||
SHA256 (rust/crates/instant-0.1.12.crate) = 7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c
|
||||
SIZE (rust/crates/instant-0.1.12.crate) = 6128
|
||||
SHA256 (rust/crates/io-lifetimes-1.0.3.crate) = 46112a93252b123d31a119a8d1a1ac19deac4fac6e0e8b0df58f0d4e5870e63c
|
||||
SIZE (rust/crates/io-lifetimes-1.0.3.crate) = 35650
|
||||
SHA256 (rust/crates/is-terminal-0.4.1.crate) = 927609f78c2913a6f6ac3c27a4fe87f43e2a35367c0c4b0f8265e8f49a104330
|
||||
SIZE (rust/crates/is-terminal-0.4.1.crate) = 6892
|
||||
SHA256 (rust/crates/itertools-0.10.3.crate) = a9a9d19fa1e79b6215ff29b9d6880b706147f16e9b1dbb1e4e5947b5b02bc5e3
|
||||
SIZE (rust/crates/itertools-0.10.3.crate) = 118661
|
||||
SHA256 (rust/crates/itoa-1.0.3.crate) = 6c8af84674fe1f223a982c933a0ee1086ac4d4052aa0fb8060c12c6ad838e754
|
||||
|
|
@ -195,12 +199,14 @@ SHA256 (rust/crates/js-sys-0.3.59.crate) = 258451ab10b34f8af53416d1fdab72c22e805
|
|||
SIZE (rust/crates/js-sys-0.3.59.crate) = 78849
|
||||
SHA256 (rust/crates/lazy_static-1.4.0.crate) = e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646
|
||||
SIZE (rust/crates/lazy_static-1.4.0.crate) = 10443
|
||||
SHA256 (rust/crates/libc-0.2.132.crate) = 8371e4e5341c3a96db127eb2465ac681ced4c433e01dd0e938adbef26ba93ba5
|
||||
SIZE (rust/crates/libc-0.2.132.crate) = 595317
|
||||
SHA256 (rust/crates/libc-0.2.138.crate) = db6d7e329c562c5dfab7a46a2afabc8b987ab9a4834c9d1ca04dc54c1546cef8
|
||||
SIZE (rust/crates/libc-0.2.138.crate) = 609081
|
||||
SHA256 (rust/crates/line-wrap-0.1.1.crate) = f30344350a2a51da54c1d53be93fade8a237e545dbcc4bdbe635413f2117cab9
|
||||
SIZE (rust/crates/line-wrap-0.1.1.crate) = 10010
|
||||
SHA256 (rust/crates/linked-hash-map-0.5.6.crate) = 0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f
|
||||
SIZE (rust/crates/linked-hash-map-0.5.6.crate) = 15049
|
||||
SHA256 (rust/crates/linux-raw-sys-0.1.4.crate) = f051f77a7c8e6957c0696eac88f26b0117e54f52d3fc682ab19397a8812846a4
|
||||
SIZE (rust/crates/linux-raw-sys-0.1.4.crate) = 878981
|
||||
SHA256 (rust/crates/lock_api-0.4.7.crate) = 327fa5b6a6940e4699ec49a9beae1ea4845c6bab9314e4f84ac68742139d8c53
|
||||
SIZE (rust/crates/lock_api-0.4.7.crate) = 25371
|
||||
SHA256 (rust/crates/log-0.4.17.crate) = abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e
|
||||
|
|
@ -217,14 +223,12 @@ SHA256 (rust/crates/memoffset-0.6.5.crate) = 5aa361d4faea93603064a027415f07bd8e1
|
|||
SIZE (rust/crates/memoffset-0.6.5.crate) = 7686
|
||||
SHA256 (rust/crates/miniz_oxide-0.5.3.crate) = 6f5c75688da582b8ffc1f1799e9db273f32133c49e048f614d22ec3256773ccc
|
||||
SIZE (rust/crates/miniz_oxide-0.5.3.crate) = 53452
|
||||
SHA256 (rust/crates/nix-0.19.1.crate) = b2ccba0cfe4fdf15982d1674c69b1fd80bad427d293849982668dfe454bd61f2
|
||||
SIZE (rust/crates/nix-0.19.1.crate) = 213462
|
||||
SHA256 (rust/crates/nix-0.21.2.crate) = 77d9f3521ea8e0641a153b3cddaf008dcbf26acd4ed739a2517295e0760d12c7
|
||||
SIZE (rust/crates/nix-0.21.2.crate) = 220799
|
||||
SHA256 (rust/crates/nix-0.23.1.crate) = 9f866317acbd3a240710c63f065ffb1e4fd466259045ccb504130b7f668f35c6
|
||||
SIZE (rust/crates/nix-0.23.1.crate) = 240531
|
||||
SHA256 (rust/crates/nix-0.21.0.crate) = 5c3728fec49d363a50a8828a190b379a446cc5cf085c06259bbbeb34447e4ec7
|
||||
SIZE (rust/crates/nix-0.21.0.crate) = 220596
|
||||
SHA256 (rust/crates/nix-0.24.2.crate) = 195cdbc1741b8134346d515b3a56a1c94b0912758009cfd53f99ea0f57b065fc
|
||||
SIZE (rust/crates/nix-0.24.2.crate) = 264176
|
||||
SHA256 (rust/crates/nix-0.25.1.crate) = f346ff70e7dbfd675fe90590b92d59ef2de15a8779ae305ebcbfd3f0caf59be4
|
||||
SIZE (rust/crates/nix-0.25.1.crate) = 272312
|
||||
SHA256 (rust/crates/normalize-line-endings-0.3.0.crate) = 61807f77802ff30975e01f4f071c8ba10c022052f98b3294119f3e615d13e5be
|
||||
SIZE (rust/crates/normalize-line-endings-0.3.0.crate) = 5737
|
||||
SHA256 (rust/crates/num-integer-0.1.45.crate) = 225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9
|
||||
|
|
@ -245,8 +249,8 @@ SHA256 (rust/crates/objc_id-0.1.1.crate) = c92d4ddb4bd7b50d730c215ff871754d0da6b
|
|||
SIZE (rust/crates/objc_id-0.1.1.crate) = 3258
|
||||
SHA256 (rust/crates/object-0.29.0.crate) = 21158b2c33aa6d4561f1c0a6ea283ca92bc54802a93b263e910746d679a7eb53
|
||||
SIZE (rust/crates/object-0.29.0.crate) = 237723
|
||||
SHA256 (rust/crates/once_cell-1.13.1.crate) = 074864da206b4973b84eb91683020dbefd6a8c3f0f38e054d93954e891935e4e
|
||||
SIZE (rust/crates/once_cell-1.13.1.crate) = 31335
|
||||
SHA256 (rust/crates/once_cell-1.16.0.crate) = 86f0b0d4bf799edbc74508c1e8bf170ff5f41238e5f8225603ca7caaae2b7860
|
||||
SIZE (rust/crates/once_cell-1.16.0.crate) = 32120
|
||||
SHA256 (rust/crates/os_str_bytes-6.3.0.crate) = 9ff7415e9ae3fff1225851df9e0d9e4e5479f947619774677a63572e55e80eff
|
||||
SIZE (rust/crates/os_str_bytes-6.3.0.crate) = 22928
|
||||
SHA256 (rust/crates/owo-colors-3.5.0.crate) = c1b04fb49957986fdce4d6ee7a65027d55d4b6d2265e5848bbb507b58ccfdb6f
|
||||
|
|
@ -257,10 +261,14 @@ SHA256 (rust/crates/parking_lot_core-0.8.5.crate) = d76e8e1493bcac0d2766c42737f3
|
|||
SIZE (rust/crates/parking_lot_core-0.8.5.crate) = 32466
|
||||
SHA256 (rust/crates/percent-encoding-2.1.0.crate) = d4fd5641d01c8f18a23da7b6fe29298ff4b55afcccdf78973b24cf3175fee32e
|
||||
SIZE (rust/crates/percent-encoding-2.1.0.crate) = 9748
|
||||
SHA256 (rust/crates/pin-utils-0.1.0.crate) = 8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184
|
||||
SIZE (rust/crates/pin-utils-0.1.0.crate) = 7580
|
||||
SHA256 (rust/crates/plist-1.3.1.crate) = bd39bc6cdc9355ad1dc5eeedefee696bb35c34caf21768741e81826c0bbd7225
|
||||
SIZE (rust/crates/plist-1.3.1.crate) = 44772
|
||||
SHA256 (rust/crates/predicates-2.1.1.crate) = a5aab5be6e4732b473071984b3164dbbfb7a3674d30ea5ff44410b6bcd960c3c
|
||||
SIZE (rust/crates/predicates-2.1.1.crate) = 23150
|
||||
SHA256 (rust/crates/portable-atomic-0.3.18.crate) = 81bdd679d533107e090c2704a35982fc06302e30898e63ffa26a81155c012e92
|
||||
SIZE (rust/crates/portable-atomic-0.3.18.crate) = 83594
|
||||
SHA256 (rust/crates/predicates-2.1.5.crate) = 59230a63c37f3e18569bdb90e4a89cbf5bf8b06fea0b84e65ea10cc4df47addd
|
||||
SIZE (rust/crates/predicates-2.1.5.crate) = 24165
|
||||
SHA256 (rust/crates/predicates-core-1.0.3.crate) = da1c2388b1513e1b605fcec39a95e0a9e8ef088f71443ef37099fa9ae6673fcb
|
||||
SIZE (rust/crates/predicates-core-1.0.3.crate) = 7757
|
||||
SHA256 (rust/crates/predicates-tree-1.0.5.crate) = 4d86de6de25020a36c6d3643a86d9a6a9f552107c0559c60ea03551b5e16c032
|
||||
|
|
@ -269,10 +277,8 @@ SHA256 (rust/crates/proc-macro-error-1.0.4.crate) = da25490ff9892aab3fcf7c36f08c
|
|||
SIZE (rust/crates/proc-macro-error-1.0.4.crate) = 25293
|
||||
SHA256 (rust/crates/proc-macro-error-attr-1.0.4.crate) = a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869
|
||||
SIZE (rust/crates/proc-macro-error-attr-1.0.4.crate) = 7971
|
||||
SHA256 (rust/crates/proc-macro-hack-0.5.19.crate) = dbf0c48bc1d91375ae5c3cd81e3722dff1abcf81a30960240640d223f59fe0e5
|
||||
SIZE (rust/crates/proc-macro-hack-0.5.19.crate) = 15556
|
||||
SHA256 (rust/crates/proc-macro2-1.0.43.crate) = 0a2ca2c61bc9f3d74d2886294ab7b9853abd9c1ad903a3ac7815c58989bb7bab
|
||||
SIZE (rust/crates/proc-macro2-1.0.43.crate) = 41512
|
||||
SHA256 (rust/crates/proc-macro2-1.0.47.crate) = 5ea3d908b0e36316caf9e9e2c4625cdde190a7e6f440d794667ed17a1855e725
|
||||
SIZE (rust/crates/proc-macro2-1.0.47.crate) = 41955
|
||||
SHA256 (rust/crates/ptyprocess-0.3.0.crate) = 69c28fcebfd842bfe19d69409fc321230ea8c1bebe31f274906485c761ce1917
|
||||
SIZE (rust/crates/ptyprocess-0.3.0.crate) = 12807
|
||||
SHA256 (rust/crates/quote-1.0.21.crate) = bbe448f377a7d6961e30f5955f9b8d106c3f5e449d493ee1b125c1d43c2b5179
|
||||
|
|
@ -285,8 +291,8 @@ SHA256 (rust/crates/redox_syscall-0.2.16.crate) = fb5a58c1855b4b6819d59012155603
|
|||
SIZE (rust/crates/redox_syscall-0.2.16.crate) = 24012
|
||||
SHA256 (rust/crates/redox_users-0.4.3.crate) = b033d837a7cf162d7993aded9304e30a83213c648b6e389db233191f891e5c2b
|
||||
SIZE (rust/crates/redox_users-0.4.3.crate) = 15353
|
||||
SHA256 (rust/crates/regex-1.6.0.crate) = 4c4eb3267174b8c6c2f654116623910a0fef09c4753f8dd83db29c48a0df988b
|
||||
SIZE (rust/crates/regex-1.6.0.crate) = 239329
|
||||
SHA256 (rust/crates/regex-1.7.1.crate) = 48aaa5748ba571fb95cd2c85c09f629215d3a6ece942baa100950af03a34f733
|
||||
SIZE (rust/crates/regex-1.7.1.crate) = 239648
|
||||
SHA256 (rust/crates/regex-automata-0.1.10.crate) = 6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132
|
||||
SIZE (rust/crates/regex-automata-0.1.10.crate) = 114533
|
||||
SHA256 (rust/crates/regex-syntax-0.6.27.crate) = a3f87b73ce11b1619a3c6332f45341e0047173771e8b8b73f87bfeefb7b56244
|
||||
|
|
@ -297,8 +303,8 @@ SHA256 (rust/crates/ring-0.16.20.crate) = 3053cf52e236a3ed746dfc745aa9cacf1b791d
|
|||
SIZE (rust/crates/ring-0.16.20.crate) = 5082615
|
||||
SHA256 (rust/crates/rustc-demangle-0.1.21.crate) = 7ef03e0a2b150c7a90d01faf6254c9c48a41e95fb2a8c2ac1c6f0d2b9aefc342
|
||||
SIZE (rust/crates/rustc-demangle-0.1.21.crate) = 27920
|
||||
SHA256 (rust/crates/rustc_version-0.2.3.crate) = 138e3e0acb6c9fb258b19b67cb8abd63c00679d2851805ea151465464fe9030a
|
||||
SIZE (rust/crates/rustc_version-0.2.3.crate) = 10210
|
||||
SHA256 (rust/crates/rustix-0.36.5.crate) = a3807b5d10909833d3e9acd1eb5fb988f79376ff10fce42937de71a449c4c588
|
||||
SIZE (rust/crates/rustix-0.36.5.crate) = 287459
|
||||
SHA256 (rust/crates/rustls-0.20.6.crate) = 5aab8ee6c7097ed6057f43c187a62418d0c05a4bd5f18b3571db50ee0f9ce033
|
||||
SIZE (rust/crates/rustls-0.20.6.crate) = 259289
|
||||
SHA256 (rust/crates/rustversion-1.0.9.crate) = 97477e48b4cf8603ad5f7aaf897467cf42ab4218a38ef76fb14c2d6773a6d6a8
|
||||
|
|
@ -315,86 +321,58 @@ SHA256 (rust/crates/scopeguard-1.1.0.crate) = d29ab0c6d3fc0ee92fe66e2d99f700eab1
|
|||
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-0.9.0.crate) = 1d7eb9ef2c18661902cc47e535f9bc51b78acd254da71d375c2f6720d9a40403
|
||||
SIZE (rust/crates/semver-0.9.0.crate) = 17344
|
||||
SHA256 (rust/crates/semver-parser-0.7.0.crate) = 388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3
|
||||
SIZE (rust/crates/semver-parser-0.7.0.crate) = 10268
|
||||
SHA256 (rust/crates/serde-1.0.144.crate) = 0f747710de3dcd43b88c9168773254e809d8ddbdf9653b84e2554ab219f17860
|
||||
SIZE (rust/crates/serde-1.0.144.crate) = 76387
|
||||
SHA256 (rust/crates/serde_derive-1.0.144.crate) = 94ed3a816fb1d101812f83e789f888322c34e291f894f19590dc310963e87a00
|
||||
SIZE (rust/crates/serde_derive-1.0.144.crate) = 54867
|
||||
SHA256 (rust/crates/serde_json-1.0.85.crate) = e55a28e3aaef9d5ce0506d0a14dbba8054ddc7e499ef522dd8b26859ec9d4a44
|
||||
SIZE (rust/crates/serde_json-1.0.85.crate) = 144635
|
||||
SHA256 (rust/crates/serde_yaml-0.9.10.crate) = 7a09f551ccc8210268ef848f0bab37b306e87b85b2e017b899e7fb815f5aed62
|
||||
SIZE (rust/crates/serde_yaml-0.9.10.crate) = 62991
|
||||
SHA256 (rust/crates/sha1-0.6.1.crate) = c1da05c97445caa12d05e848c4a4fcbbea29e748ac28f7e80e9b010392063770
|
||||
SIZE (rust/crates/sha1-0.6.1.crate) = 2931
|
||||
SHA256 (rust/crates/sha1_smol-1.0.0.crate) = ae1a47186c03a32177042e55dbc5fd5aee900b8e0069a8d70fba96a9375cd012
|
||||
SIZE (rust/crates/sha1_smol-1.0.0.crate) = 9782
|
||||
SHA256 (rust/crates/shlex-0.1.1.crate) = 7fdf1b9db47230893d76faad238fd6097fd6d6a9245cd7a4d90dbd639536bbd2
|
||||
SIZE (rust/crates/shlex-0.1.1.crate) = 5687
|
||||
SHA256 (rust/crates/skim-0.9.4.crate) = 4b9d19f904221fab15163486d2ce116cb86e60296470bb4e956d6687f04ebbb4
|
||||
SIZE (rust/crates/skim-0.9.4.crate) = 121558
|
||||
SHA256 (rust/crates/serde-1.0.152.crate) = bb7d1f0d3021d347a83e556fc4683dea2ea09d87bccdf88ff5c12545d89d5efb
|
||||
SIZE (rust/crates/serde-1.0.152.crate) = 77091
|
||||
SHA256 (rust/crates/serde_derive-1.0.152.crate) = af487d118eecd09402d70a5d72551860e788df87b464af30e5ea6a38c75c541e
|
||||
SIZE (rust/crates/serde_derive-1.0.152.crate) = 55586
|
||||
SHA256 (rust/crates/serde_json-1.0.91.crate) = 877c235533714907a8c2464236f5c4b2a17262ef1bd71f38f35ea592c8da6883
|
||||
SIZE (rust/crates/serde_json-1.0.91.crate) = 144654
|
||||
SHA256 (rust/crates/serde_yaml-0.9.16.crate) = 92b5b431e8907b50339b51223b97d102db8d987ced36f6e4d03621db9316c834
|
||||
SIZE (rust/crates/serde_yaml-0.9.16.crate) = 63845
|
||||
SHA256 (rust/crates/shell-words-1.1.0.crate) = 24188a676b6ae68c3b2cb3a01be17fbf7240ce009799bb56d5b1409051e78fde
|
||||
SIZE (rust/crates/shell-words-1.1.0.crate) = 9871
|
||||
SHA256 (rust/crates/shlex-1.1.0.crate) = 43b2853a4d09f215c24cc5489c992ce46052d359b5109343cbafbf26bc62f8a3
|
||||
SIZE (rust/crates/shlex-1.1.0.crate) = 5199
|
||||
SHA256 (rust/crates/skim-0.10.2.crate) = cebed5f897cd6c0d80fbe30adb36c0abf7400e93043a63ae56458495642b3485
|
||||
SIZE (rust/crates/skim-0.10.2.crate) = 121929
|
||||
SHA256 (rust/crates/sled-0.34.7.crate) = 7f96b4737c2ce5987354855aed3797279def4ebf734436c6aa4552cf8e169935
|
||||
SIZE (rust/crates/sled-0.34.7.crate) = 485296
|
||||
SHA256 (rust/crates/smallvec-1.9.0.crate) = 2fd0db749597d91ff862fd1d55ea87f7855a744a8425a64695b6fca237d1dad1
|
||||
SIZE (rust/crates/smallvec-1.9.0.crate) = 28396
|
||||
SHA256 (rust/crates/spin-0.5.2.crate) = 6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d
|
||||
SIZE (rust/crates/spin-0.5.2.crate) = 12004
|
||||
SHA256 (rust/crates/standback-0.2.17.crate) = e113fb6f3de07a243d434a56ec6f186dfd51cb08448239fe7bcae73f87ff28ff
|
||||
SIZE (rust/crates/standback-0.2.17.crate) = 29011
|
||||
SHA256 (rust/crates/stdweb-0.4.20.crate) = d022496b16281348b52d0e30ae99e01a73d737b2f45d38fed4edf79f9325a1d5
|
||||
SIZE (rust/crates/stdweb-0.4.20.crate) = 194102
|
||||
SHA256 (rust/crates/stdweb-derive-0.5.3.crate) = c87a60a40fccc84bef0652345bbbbbe20a605bf5d0ce81719fc476f5c03b50ef
|
||||
SIZE (rust/crates/stdweb-derive-0.5.3.crate) = 3894
|
||||
SHA256 (rust/crates/stdweb-internal-macros-0.2.9.crate) = 58fa5ff6ad0d98d1ffa8cb115892b6e69d67799f6763e162a1c9db421dc22e11
|
||||
SIZE (rust/crates/stdweb-internal-macros-0.2.9.crate) = 11828
|
||||
SHA256 (rust/crates/stdweb-internal-runtime-0.1.5.crate) = 213701ba3370744dcd1a12960caa4843b3d68b4d1c0a5d575e0d65b2ee9d16c0
|
||||
SIZE (rust/crates/stdweb-internal-runtime-0.1.5.crate) = 5445
|
||||
SHA256 (rust/crates/strsim-0.8.0.crate) = 8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a
|
||||
SIZE (rust/crates/strsim-0.8.0.crate) = 9309
|
||||
SHA256 (rust/crates/strsim-0.9.3.crate) = 6446ced80d6c486436db5c078dde11a9f73d42b57fb273121e160b84f63d894c
|
||||
SIZE (rust/crates/strsim-0.9.3.crate) = 10266
|
||||
SHA256 (rust/crates/strsim-0.10.0.crate) = 73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623
|
||||
SIZE (rust/crates/strsim-0.10.0.crate) = 11355
|
||||
SHA256 (rust/crates/strum-0.24.1.crate) = 063e6045c0e62079840579a7e47a355ae92f60eb74daaf156fb1e84ba164e63f
|
||||
SIZE (rust/crates/strum-0.24.1.crate) = 5636
|
||||
SHA256 (rust/crates/strum_macros-0.24.3.crate) = 1e385be0d24f186b4ce2f9982191e7101bb737312ad61c1f2f984f34bcf85d59
|
||||
SIZE (rust/crates/strum_macros-0.24.3.crate) = 20696
|
||||
SHA256 (rust/crates/syn-1.0.99.crate) = 58dbef6ec655055e20b86b15a8cc6d439cca19b667537ac6a1369572d151ab13
|
||||
SIZE (rust/crates/syn-1.0.99.crate) = 236084
|
||||
SHA256 (rust/crates/syn-1.0.105.crate) = 60b9b43d45702de4c839cb9b51d9f529c5dd26a4aff255b42b1ebc03e88ee908
|
||||
SIZE (rust/crates/syn-1.0.105.crate) = 237549
|
||||
SHA256 (rust/crates/syntect-5.0.0.crate) = c6c454c27d9d7d9a84c7803aaa3c50cd088d2906fe3c6e42da3209aa623576a8
|
||||
SIZE (rust/crates/syntect-5.0.0.crate) = 809452
|
||||
SHA256 (rust/crates/tempfile-3.3.0.crate) = 5cdb1ef4eaeeaddc8fbd371e5017057064af0911902ef36b39801f67cc6d79e4
|
||||
SIZE (rust/crates/tempfile-3.3.0.crate) = 27578
|
||||
SHA256 (rust/crates/term-0.7.0.crate) = c59df8ac95d96ff9bede18eb7300b0fda5e5d8d90960e76f8e14ae765eedbf1f
|
||||
SIZE (rust/crates/term-0.7.0.crate) = 37082
|
||||
SHA256 (rust/crates/termcolor-1.1.3.crate) = bab24d30b911b2376f3a13cc2cd443142f0c81dda04c118693e35b3835757755
|
||||
SIZE (rust/crates/termcolor-1.1.3.crate) = 17242
|
||||
SHA256 (rust/crates/termcolor-1.2.0.crate) = be55cf8942feac5c765c2c993422806843c9a9a45d4d5c407ad6dd2ea95eb9b6
|
||||
SIZE (rust/crates/termcolor-1.2.0.crate) = 17917
|
||||
SHA256 (rust/crates/terminal_size-0.1.17.crate) = 633c1a546cee861a1a6d0dc69ebeca693bf4296661ba7852b9d21d159e0506df
|
||||
SIZE (rust/crates/terminal_size-0.1.17.crate) = 9141
|
||||
SHA256 (rust/crates/termtree-0.2.4.crate) = 507e9898683b6c43a9aa55b64259b721b52ba226e0f3779137e50ad114a4c90b
|
||||
SIZE (rust/crates/termtree-0.2.4.crate) = 4416
|
||||
SHA256 (rust/crates/textwrap-0.11.0.crate) = d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060
|
||||
SIZE (rust/crates/textwrap-0.11.0.crate) = 17322
|
||||
SHA256 (rust/crates/textwrap-0.15.0.crate) = b1141d4d61095b28419e22cb0bbf02755f5e54e0526f97f1e3d1d160e60885fb
|
||||
SIZE (rust/crates/textwrap-0.15.0.crate) = 52998
|
||||
SHA256 (rust/crates/thiserror-1.0.32.crate) = f5f6586b7f764adc0231f4c79be7b920e766bb2f3e51b3661cdb263828f19994
|
||||
SIZE (rust/crates/thiserror-1.0.32.crate) = 17241
|
||||
SHA256 (rust/crates/thiserror-impl-1.0.32.crate) = 12bafc5b54507e0149cdf1b145a5d80ab80a90bcd9275df43d4fff68460f6c21
|
||||
SIZE (rust/crates/thiserror-impl-1.0.32.crate) = 15347
|
||||
SHA256 (rust/crates/textwrap-0.16.0.crate) = 222a222a5bfe1bba4a77b45ec488a741b3cb8872e5e499451fd7d0129c9c7c3d
|
||||
SIZE (rust/crates/textwrap-0.16.0.crate) = 53722
|
||||
SHA256 (rust/crates/thiserror-1.0.38.crate) = 6a9cd18aa97d5c45c6603caea1da6628790b37f7a34b6ca89522331c5180fed0
|
||||
SIZE (rust/crates/thiserror-1.0.38.crate) = 18947
|
||||
SHA256 (rust/crates/thiserror-impl-1.0.38.crate) = 1fb327af4685e4d03fa8cbcf1716380da910eeb2bb8be417e7f9fd3fb164f36f
|
||||
SIZE (rust/crates/thiserror-impl-1.0.38.crate) = 15429
|
||||
SHA256 (rust/crates/thread_local-1.1.4.crate) = 5516c27b78311c50bf42c071425c560ac799b11c30b31f87e3081965fe5e0180
|
||||
SIZE (rust/crates/thread_local-1.1.4.crate) = 13106
|
||||
SHA256 (rust/crates/time-0.1.44.crate) = 6db9e6914ab8b1ae1c260a4ae7a49b6c5611b40328a735b21862567685e73255
|
||||
SIZE (rust/crates/time-0.1.44.crate) = 28885
|
||||
SHA256 (rust/crates/time-0.2.27.crate) = 4752a97f8eebd6854ff91f1c1824cd6160626ac4bd44287f7f4ea2035a02a242
|
||||
SIZE (rust/crates/time-0.2.27.crate) = 65167
|
||||
SHA256 (rust/crates/time-0.3.13.crate) = db76ff9fa4b1458b3c7f077f3ff9887394058460d21e634355b273aaf11eea45
|
||||
SIZE (rust/crates/time-0.3.13.crate) = 92610
|
||||
SHA256 (rust/crates/time-macros-0.1.1.crate) = 957e9c6e26f12cb6d0dd7fc776bb67a706312e7299aed74c8dd5b17ebb27e2f1
|
||||
SIZE (rust/crates/time-macros-0.1.1.crate) = 5447
|
||||
SHA256 (rust/crates/time-macros-impl-0.1.2.crate) = fd3c141a1b43194f3f56a1411225df8646c55781d5f26db825b3d98507eb482f
|
||||
SIZE (rust/crates/time-macros-impl-0.1.2.crate) = 10096
|
||||
SHA256 (rust/crates/timer-0.2.0.crate) = 31d42176308937165701f50638db1c31586f183f1aab416268216577aec7306b
|
||||
SIZE (rust/crates/timer-0.2.0.crate) = 12190
|
||||
SHA256 (rust/crates/tinyvec-1.6.0.crate) = 87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50
|
||||
|
|
@ -403,8 +381,8 @@ SHA256 (rust/crates/tinyvec_macros-0.1.0.crate) = cda74da7e1a664f795bb1f8a87ec40
|
|||
SIZE (rust/crates/tinyvec_macros-0.1.0.crate) = 1817
|
||||
SHA256 (rust/crates/toml-0.5.9.crate) = 8d82e1a7758622a465f8cee077614c73484dac5b836c02ff6a40d5d1010324d7
|
||||
SIZE (rust/crates/toml-0.5.9.crate) = 55667
|
||||
SHA256 (rust/crates/tuikit-0.4.6.crate) = 667c8e002675e76d98358d8869021793a472d28e3a50fbd750284a1d211abd09
|
||||
SIZE (rust/crates/tuikit-0.4.6.crate) = 44576
|
||||
SHA256 (rust/crates/tuikit-0.5.0.crate) = 5e19c6ab038babee3d50c8c12ff8b910bdb2196f62278776422f50390d8e53d8
|
||||
SIZE (rust/crates/tuikit-0.5.0.crate) = 46855
|
||||
SHA256 (rust/crates/unicode-bidi-0.3.8.crate) = 099b7128301d285f79ddd55b9a83d5e6b9e97c92e0ea0daebee7263e932de992
|
||||
SIZE (rust/crates/unicode-bidi-0.3.8.crate) = 36575
|
||||
SHA256 (rust/crates/unicode-ident-1.0.3.crate) = c4f5b37a154999a8f3f98cc23a628d850e154479cd94decf3414696e12e31aaf
|
||||
|
|
@ -413,22 +391,20 @@ SHA256 (rust/crates/unicode-normalization-0.1.21.crate) = 854cbdc4f7bc6ae19c820d
|
|||
SIZE (rust/crates/unicode-normalization-0.1.21.crate) = 121745
|
||||
SHA256 (rust/crates/unicode-width-0.1.9.crate) = 3ed742d4ea2bd1176e236172c8429aaf54486e7ac098db29ffe6529e0ce50973
|
||||
SIZE (rust/crates/unicode-width-0.1.9.crate) = 16745
|
||||
SHA256 (rust/crates/unsafe-libyaml-0.2.2.crate) = 931179334a56395bcf64ba5e0ff56781381c1a5832178280c7d7f91d1679aeb0
|
||||
SIZE (rust/crates/unsafe-libyaml-0.2.2.crate) = 61118
|
||||
SHA256 (rust/crates/unsafe-libyaml-0.2.4.crate) = c1e5fa573d8ac5f1a856f8d7be41d390ee973daf97c806b2c1a465e4e1406e68
|
||||
SIZE (rust/crates/unsafe-libyaml-0.2.4.crate) = 61183
|
||||
SHA256 (rust/crates/untrusted-0.7.1.crate) = a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a
|
||||
SIZE (rust/crates/untrusted-0.7.1.crate) = 7924
|
||||
SHA256 (rust/crates/ureq-2.5.0.crate) = b97acb4c28a254fd7a4aeec976c46a7fa404eac4d7c134b30c75144846d7cb8f
|
||||
SIZE (rust/crates/ureq-2.5.0.crate) = 98026
|
||||
SHA256 (rust/crates/ureq-2.6.2.crate) = 338b31dd1314f68f3aabf3ed57ab922df95ffcd902476ca7ba3c4ce7b908c46d
|
||||
SIZE (rust/crates/ureq-2.6.2.crate) = 105924
|
||||
SHA256 (rust/crates/url-2.2.2.crate) = a507c383b2d33b5fc35d1861e77e6b383d158b2da5e14fe51b83dfedf6fd578c
|
||||
SIZE (rust/crates/url-2.2.2.crate) = 68555
|
||||
SHA256 (rust/crates/utf8parse-0.2.0.crate) = 936e4b492acfd135421d8dca4b1aa80a7bfc26e702ef3af710e0752684df5372
|
||||
SIZE (rust/crates/utf8parse-0.2.0.crate) = 13392
|
||||
SHA256 (rust/crates/vec_map-0.8.2.crate) = f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191
|
||||
SIZE (rust/crates/vec_map-0.8.2.crate) = 14466
|
||||
SHA256 (rust/crates/version_check-0.9.4.crate) = 49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f
|
||||
SIZE (rust/crates/version_check-0.9.4.crate) = 14895
|
||||
SHA256 (rust/crates/vte-0.9.0.crate) = 6e7745610024d50ab1ebfa41f8f8ee361c567f7ab51032f93cc1cc4cbf0c547a
|
||||
SIZE (rust/crates/vte-0.9.0.crate) = 24930
|
||||
SHA256 (rust/crates/vte-0.11.0.crate) = 1aae21c12ad2ec2d168c236f369c38ff332bc1134f7246350dca641437365045
|
||||
SIZE (rust/crates/vte-0.11.0.crate) = 25060
|
||||
SHA256 (rust/crates/vte_generate_state_changes-0.1.1.crate) = d257817081c7dffcdbab24b9e62d2def62e2ff7d00b1c20062551e6cccc145ff
|
||||
SIZE (rust/crates/vte_generate_state_changes-0.1.1.crate) = 2422
|
||||
SHA256 (rust/crates/wait-timeout-0.2.0.crate) = 9f200f5b12eb75f8c1ed65abd4b2db8a6e1b138a20de009dacee265a2498f3f6
|
||||
|
|
@ -465,16 +441,32 @@ 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.29.0.crate) = aac7fef12f4b59cd0a29339406cc9203ab44e440ddff6b3f5a41455349fa9cf3
|
||||
SIZE (rust/crates/windows-0.29.0.crate) = 10223369
|
||||
SHA256 (rust/crates/windows-sys-0.42.0.crate) = 5a3e1820f08b8513f676f7ab6c1f99ff312fb97b553d30ff4dd86f9f15728aa7
|
||||
SIZE (rust/crates/windows-sys-0.42.0.crate) = 3006791
|
||||
SHA256 (rust/crates/windows_aarch64_gnullvm-0.42.0.crate) = 41d2aa71f6f0cbe00ae5167d90ef3cfe66527d6f613ca78ac8024c3ccab9a19e
|
||||
SIZE (rust/crates/windows_aarch64_gnullvm-0.42.0.crate) = 357917
|
||||
SHA256 (rust/crates/windows_aarch64_msvc-0.29.0.crate) = c3d027175d00b01e0cbeb97d6ab6ebe03b12330a35786cbaca5252b1c4bf5d9b
|
||||
SIZE (rust/crates/windows_aarch64_msvc-0.29.0.crate) = 669639
|
||||
SHA256 (rust/crates/windows_aarch64_msvc-0.42.0.crate) = dd0f252f5a35cac83d6311b2e795981f5ee6e67eb1f9a7f64eb4500fbc4dcdb4
|
||||
SIZE (rust/crates/windows_aarch64_msvc-0.42.0.crate) = 659424
|
||||
SHA256 (rust/crates/windows_i686_gnu-0.29.0.crate) = 8793f59f7b8e8b01eda1a652b2697d87b93097198ae85f823b969ca5b89bba58
|
||||
SIZE (rust/crates/windows_i686_gnu-0.29.0.crate) = 774446
|
||||
SHA256 (rust/crates/windows_i686_gnu-0.42.0.crate) = fbeae19f6716841636c28d695375df17562ca208b2b7d0dc47635a50ae6c5de7
|
||||
SIZE (rust/crates/windows_i686_gnu-0.42.0.crate) = 728570
|
||||
SHA256 (rust/crates/windows_i686_msvc-0.29.0.crate) = 8602f6c418b67024be2996c512f5f995de3ba417f4c75af68401ab8756796ae4
|
||||
SIZE (rust/crates/windows_i686_msvc-0.29.0.crate) = 732279
|
||||
SHA256 (rust/crates/windows_i686_msvc-0.42.0.crate) = 84c12f65daa39dd2babe6e442988fc329d6243fdce47d7d2d155b8d874862246
|
||||
SIZE (rust/crates/windows_i686_msvc-0.42.0.crate) = 717477
|
||||
SHA256 (rust/crates/windows_x86_64_gnu-0.29.0.crate) = f3d615f419543e0bd7d2b3323af0d86ff19cbc4f816e6453f36a2c2ce889c354
|
||||
SIZE (rust/crates/windows_x86_64_gnu-0.29.0.crate) = 743224
|
||||
SHA256 (rust/crates/windows_x86_64_gnu-0.42.0.crate) = bf7b1b21b5362cbc318f686150e5bcea75ecedc74dd157d874d754a2ca44b0ed
|
||||
SIZE (rust/crates/windows_x86_64_gnu-0.42.0.crate) = 692493
|
||||
SHA256 (rust/crates/windows_x86_64_gnullvm-0.42.0.crate) = 09d525d2ba30eeb3297665bd434a54297e4170c7f1a44cad4ef58095b4cd2028
|
||||
SIZE (rust/crates/windows_x86_64_gnullvm-0.42.0.crate) = 357906
|
||||
SHA256 (rust/crates/windows_x86_64_msvc-0.29.0.crate) = 11d95421d9ed3672c280884da53201a5c46b7b2765ca6faf34b0d71cf34a3561
|
||||
SIZE (rust/crates/windows_x86_64_msvc-0.29.0.crate) = 668947
|
||||
SHA256 (rust/crates/windows_x86_64_msvc-0.42.0.crate) = f40009d85759725a34da6d89a94e63d7bdc50a862acf0dbc7c8e488f1edcb6f5
|
||||
SIZE (rust/crates/windows_x86_64_msvc-0.42.0.crate) = 659377
|
||||
SHA256 (rust/crates/x11-clipboard-0.3.3.crate) = 89bd49c06c9eb5d98e6ba6536cf64ac9f7ee3a009b2f53996d405b3944f6bcea
|
||||
SIZE (rust/crates/x11-clipboard-0.3.3.crate) = 7357
|
||||
SHA256 (rust/crates/xcb-0.8.2.crate) = 5e917a3f24142e9ff8be2414e36c649d47d6cc2ba81f16201cdef96e533e02de
|
||||
|
|
@ -485,5 +477,5 @@ SHA256 (rust/crates/yaml-rust-0.4.5.crate) = 56c1936c4cc7a1c9ab21a1ebb602eb942ba
|
|||
SIZE (rust/crates/yaml-rust-0.4.5.crate) = 47783
|
||||
SHA256 (rust/crates/zeroize-1.5.7.crate) = c394b5bd0c6f669e7275d9c20aa90ae064cb22e75a1cad54e1b34088034b149f
|
||||
SIZE (rust/crates/zeroize-1.5.7.crate) = 18861
|
||||
SHA256 (out-of-cheese-error-the-way-v0.18.0_GH0.tar.gz) = 3a03d23f1368896f82b5b7d0746f8cc5215e33261a4ce574224fbefebc39a92e
|
||||
SIZE (out-of-cheese-error-the-way-v0.18.0_GH0.tar.gz) = 1572033
|
||||
SHA256 (out-of-cheese-error-the-way-v0.19.1_GH0.tar.gz) = 6621c58e58e23ae42d7c1c9ad4e418315d70618682d01a2f7d57b34757b72334
|
||||
SIZE (out-of-cheese-error-the-way-v0.19.1_GH0.tar.gz) = 1572340
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
PORTNAME= stockfish
|
||||
DISTVERSIONPREFIX= sf_
|
||||
DISTVERSION= 14
|
||||
DISTVERSION= 15.1
|
||||
CATEGORIES= games
|
||||
MASTER_SITES= https://tests.stockfishchess.org/api/nn/:nnue
|
||||
DISTFILES= nn-${_NNUE_VER}.nnue:nnue
|
||||
|
|
@ -25,7 +25,9 @@ MAKE_ARGS= ARCH=${MYARCH} \
|
|||
PREFIX=${PREFIX}
|
||||
ALL_TARGET= build
|
||||
|
||||
_NNUE_VER= 3475407dc199
|
||||
_NNUE_VER= ad9b42354671
|
||||
|
||||
BINARY_ALIAS= wget=true
|
||||
|
||||
WRKSRC_SUBDIR= src
|
||||
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
TIMESTAMP = 1629298350
|
||||
SHA256 (nn-3475407dc199.nnue) = 3475407dc19973ea44467678634cce023d620e419770c111cc8937fe6689ec87
|
||||
SIZE (nn-3475407dc199.nnue) = 47721371
|
||||
SHA256 (official-stockfish-Stockfish-sf_14_GH0.tar.gz) = 6f35e3e684da87d27d3f29ec7281ac81468a5a86b4d99ac5c599addc984a766c
|
||||
SIZE (official-stockfish-Stockfish-sf_14_GH0.tar.gz) = 183879
|
||||
TIMESTAMP = 1674203101
|
||||
SHA256 (nn-ad9b42354671.nnue) = ad9b423546714137916bd38978af6fd68d7b8951bef25ff76bf43da72d6cb786
|
||||
SIZE (nn-ad9b42354671.nnue) = 47001499
|
||||
SHA256 (official-stockfish-Stockfish-sf_15.1_GH0.tar.gz) = d4272657905319328294355973faee40a8c28e3eecb0e7b266ed34ff33383b76
|
||||
SIZE (official-stockfish-Stockfish-sf_15.1_GH0.tar.gz) = 193408
|
||||
|
|
|
|||
|
|
@ -1,8 +1,7 @@
|
|||
PORTNAME= suyimazu
|
||||
DISTVERSION= 2023
|
||||
CATEGORIES= games
|
||||
MASTER_SITES= https://codeberg.org/Alexander88207/Suyimazu/archive/
|
||||
DISTNAME= ${DISTVERSION}
|
||||
MASTER_SITES= https://codeberg.org/Alexander88207/Suyimazu/archive/${PORTVERSION}${EXTRACT_SUFX}?dummy=/
|
||||
|
||||
MAINTAINER= Alexander88207@protonmail.com
|
||||
COMMENT= Wine-based Game Launcher for FreeBSD
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1672833533
|
||||
SHA256 (2023.tar.gz) = 1a7a9e0e0b520f0ca912af4677abd33fa70dd70ba021ca48b10383bc8c653da8
|
||||
SIZE (2023.tar.gz) = 294736
|
||||
TIMESTAMP = 1674078221
|
||||
SHA256 (suyimazu-2023.tar.gz) = 1a7a9e0e0b520f0ca912af4677abd33fa70dd70ba021ca48b10383bc8c653da8
|
||||
SIZE (suyimazu-2023.tar.gz) = 294736
|
||||
|
|
|
|||
|
|
@ -1,8 +1,8 @@
|
|||
PORTNAME= drawing
|
||||
DISTVERSION= 0.8.5
|
||||
DISTVERSION= 1.0.1
|
||||
CATEGORIES= graphics
|
||||
|
||||
MAINTAINER= ports@FreeBSD.org
|
||||
MAINTAINER= eduardo@FreeBSD.org
|
||||
COMMENT= Drawing application for the GNOME desktop
|
||||
WWW= https://maoschanz.github.io/drawing/
|
||||
|
||||
|
|
@ -13,13 +13,17 @@ BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}cairo>=0:graphics/py-cairo@${PY_FLAVOR} \
|
|||
itstool:textproc/itstool
|
||||
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}cairo>=0:graphics/py-cairo@${PY_FLAVOR}
|
||||
|
||||
USES= desktop-file-utils gettext gnome meson pkgconfig python:3.6+ \
|
||||
USES= desktop-file-utils gettext gnome meson pkgconfig python \
|
||||
shebangfix
|
||||
USE_GITHUB= yes
|
||||
GH_ACCOUNT= maoschanz
|
||||
USE_GNOME= gtk30 pygobject3
|
||||
USE_GNOME= glib20 gtk30 pygobject3
|
||||
|
||||
GLIB_SCHEMAS= com.github.maoschanz.drawing.gschema.xml
|
||||
SHEBANG_FILES= build-aux/meson/postinstall.py
|
||||
|
||||
OPTIONS_DEFINE= NLS
|
||||
OPTIONS_SUB= yes
|
||||
NLS_MESON_TRUE= enable-translations-and-appdata
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1641231114
|
||||
SHA256 (maoschanz-drawing-0.8.5_GH0.tar.gz) = d9c3ab7005097f22e4940045ff047419e765a3ed3e5e8fa0da50418b82f98fbc
|
||||
SIZE (maoschanz-drawing-0.8.5_GH0.tar.gz) = 11465320
|
||||
TIMESTAMP = 1674126705
|
||||
SHA256 (maoschanz-drawing-1.0.1_GH0.tar.gz) = 62c43c00befe3db2873967370dffd030de8041d6ba6281f8c46d556f9756867f
|
||||
SIZE (maoschanz-drawing-1.0.1_GH0.tar.gz) = 14388196
|
||||
|
|
|
|||
|
|
@ -21,7 +21,6 @@ share/applications/com.github.maoschanz.drawing.desktop
|
|||
%%DATADIR%%/drawing/filter_saturation.py
|
||||
%%DATADIR%%/drawing/filter_transparency.py
|
||||
%%DATADIR%%/drawing/filter_veil.py
|
||||
%%DATADIR%%/drawing/gi_composites.py
|
||||
%%DATADIR%%/drawing/history_manager.py
|
||||
%%DATADIR%%/drawing/image.py
|
||||
%%DATADIR%%/drawing/main.py
|
||||
|
|
@ -36,6 +35,7 @@ share/applications/com.github.maoschanz.drawing.desktop
|
|||
%%DATADIR%%/drawing/optionsbar_rotate.py
|
||||
%%DATADIR%%/drawing/optionsbar_scale.py
|
||||
%%DATADIR%%/drawing/optionsbar_selection.py
|
||||
%%DATADIR%%/drawing/optionsbar_skew.py
|
||||
%%DATADIR%%/drawing/preferences.py
|
||||
%%DATADIR%%/drawing/printing_manager.py
|
||||
%%DATADIR%%/drawing/properties.py
|
||||
|
|
@ -59,11 +59,15 @@ share/applications/com.github.maoschanz.drawing.desktop
|
|||
%%DATADIR%%/drawing/tool_rotate.py
|
||||
%%DATADIR%%/drawing/tool_scale.py
|
||||
%%DATADIR%%/drawing/tool_shape.py
|
||||
%%DATADIR%%/drawing/tool_skew.py
|
||||
%%DATADIR%%/drawing/tool_text.py
|
||||
%%DATADIR%%/drawing/utilities.py
|
||||
%%DATADIR%%/drawing/tools_initializer.py
|
||||
%%DATADIR%%/drawing/utilities_blur.py
|
||||
%%DATADIR%%/drawing/utilities_colors.py
|
||||
%%DATADIR%%/drawing/utilities_files.py
|
||||
%%DATADIR%%/drawing/utilities_overlay.py
|
||||
%%DATADIR%%/drawing/utilities_paths.py
|
||||
%%DATADIR%%/drawing/utilities_units.py
|
||||
%%DATADIR%%/drawing/window.py
|
||||
share/help/C/drawing/figures/icon.png
|
||||
share/help/C/drawing/figures/screenshot_arrow.png
|
||||
|
|
@ -90,34 +94,109 @@ share/help/C/drawing/tools_selection.page
|
|||
share/help/C/drawing/tools_transform.page
|
||||
share/help/C/drawing/whats_new.page
|
||||
share/help/C/drawing/zoom_preview.page
|
||||
share/help/es/drawing/figures/icon.png
|
||||
share/help/es/drawing/figures/screenshot_arrow.png
|
||||
share/help/es/drawing/figures/screenshot_color_editor.png
|
||||
share/help/es/drawing/figures/screenshot_color_palette.png
|
||||
share/help/es/drawing/figures/screenshot_filters.png
|
||||
share/help/es/drawing/figures/screenshot_fullscreen.png
|
||||
share/help/es/drawing/figures/screenshot_hsl.png
|
||||
share/help/es/drawing/figures/screenshot_menu.png
|
||||
share/help/es/drawing/figures/screenshot_prefs_images.png
|
||||
share/help/es/drawing/figures/screenshot_prefs_tools.png
|
||||
share/help/es/drawing/figures/screenshot_scale.png
|
||||
share/help/es/drawing/figures/screenshot_selection.png
|
||||
share/help/es/drawing/figures/screenshot_text.png
|
||||
share/help/es/drawing/figures/screenshot_zoom.png
|
||||
share/help/es/drawing/fullscreen.page
|
||||
share/help/es/drawing/index.page
|
||||
share/help/es/drawing/legal.xml
|
||||
share/help/es/drawing/main_features.page
|
||||
share/help/es/drawing/preferences.page
|
||||
share/help/es/drawing/tools_classic.page
|
||||
share/help/es/drawing/tools_classic_colors.page
|
||||
share/help/es/drawing/tools_selection.page
|
||||
share/help/es/drawing/tools_transform.page
|
||||
share/help/es/drawing/whats_new.page
|
||||
share/help/es/drawing/zoom_preview.page
|
||||
share/help/ru/drawing/figures/icon.png
|
||||
share/help/ru/drawing/figures/screenshot_arrow.png
|
||||
share/help/ru/drawing/figures/screenshot_color_editor.png
|
||||
share/help/ru/drawing/figures/screenshot_color_palette.png
|
||||
share/help/ru/drawing/figures/screenshot_filters.png
|
||||
share/help/ru/drawing/figures/screenshot_fullscreen.png
|
||||
share/help/ru/drawing/figures/screenshot_hsl.png
|
||||
share/help/ru/drawing/figures/screenshot_menu.png
|
||||
share/help/ru/drawing/figures/screenshot_prefs_images.png
|
||||
share/help/ru/drawing/figures/screenshot_prefs_tools.png
|
||||
share/help/ru/drawing/figures/screenshot_scale.png
|
||||
share/help/ru/drawing/figures/screenshot_selection.png
|
||||
share/help/ru/drawing/figures/screenshot_text.png
|
||||
share/help/ru/drawing/figures/screenshot_zoom.png
|
||||
share/help/ru/drawing/fullscreen.page
|
||||
share/help/ru/drawing/index.page
|
||||
share/help/ru/drawing/legal.xml
|
||||
share/help/ru/drawing/main_features.page
|
||||
share/help/ru/drawing/preferences.page
|
||||
share/help/ru/drawing/tools_classic.page
|
||||
share/help/ru/drawing/tools_classic_colors.page
|
||||
share/help/ru/drawing/tools_selection.page
|
||||
share/help/ru/drawing/tools_transform.page
|
||||
share/help/ru/drawing/whats_new.page
|
||||
share/help/ru/drawing/zoom_preview.page
|
||||
share/help/tr/drawing/figures/icon.png
|
||||
share/help/tr/drawing/figures/screenshot_arrow.png
|
||||
share/help/tr/drawing/figures/screenshot_color_editor.png
|
||||
share/help/tr/drawing/figures/screenshot_color_palette.png
|
||||
share/help/tr/drawing/figures/screenshot_filters.png
|
||||
share/help/tr/drawing/figures/screenshot_fullscreen.png
|
||||
share/help/tr/drawing/figures/screenshot_hsl.png
|
||||
share/help/tr/drawing/figures/screenshot_menu.png
|
||||
share/help/tr/drawing/figures/screenshot_prefs_images.png
|
||||
share/help/tr/drawing/figures/screenshot_prefs_tools.png
|
||||
share/help/tr/drawing/figures/screenshot_scale.png
|
||||
share/help/tr/drawing/figures/screenshot_selection.png
|
||||
share/help/tr/drawing/figures/screenshot_text.png
|
||||
share/help/tr/drawing/figures/screenshot_zoom.png
|
||||
share/help/tr/drawing/fullscreen.page
|
||||
share/help/tr/drawing/index.page
|
||||
share/help/tr/drawing/legal.xml
|
||||
share/help/tr/drawing/main_features.page
|
||||
share/help/tr/drawing/preferences.page
|
||||
share/help/tr/drawing/tools_classic.page
|
||||
share/help/tr/drawing/tools_classic_colors.page
|
||||
share/help/tr/drawing/tools_selection.page
|
||||
share/help/tr/drawing/tools_transform.page
|
||||
share/help/tr/drawing/whats_new.page
|
||||
share/help/tr/drawing/zoom_preview.page
|
||||
share/icons/hicolor/128x128/apps/com.github.maoschanz.drawing.png
|
||||
share/icons/hicolor/256x256/apps/com.github.maoschanz.drawing.png
|
||||
share/icons/hicolor/48x48/apps/com.github.maoschanz.drawing.png
|
||||
share/icons/hicolor/512x512/apps/com.github.maoschanz.drawing.png
|
||||
share/icons/hicolor/scalable/apps/com.github.maoschanz.drawing-symbolic.svg
|
||||
share/icons/hicolor/scalable/apps/com.github.maoschanz.drawing.svg
|
||||
share/locale/ca/LC_MESSAGES/drawing.mo
|
||||
share/locale/cs/LC_MESSAGES/drawing.mo
|
||||
share/locale/da/LC_MESSAGES/drawing.mo
|
||||
share/locale/de/LC_MESSAGES/drawing.mo
|
||||
share/locale/es/LC_MESSAGES/drawing.mo
|
||||
share/locale/eu/LC_MESSAGES/drawing.mo
|
||||
share/locale/fi/LC_MESSAGES/drawing.mo
|
||||
share/locale/fr/LC_MESSAGES/drawing.mo
|
||||
share/locale/he/LC_MESSAGES/drawing.mo
|
||||
share/locale/hr/LC_MESSAGES/drawing.mo
|
||||
share/locale/hu/LC_MESSAGES/drawing.mo
|
||||
share/locale/id/LC_MESSAGES/drawing.mo
|
||||
share/locale/it/LC_MESSAGES/drawing.mo
|
||||
share/locale/ja/LC_MESSAGES/drawing.mo
|
||||
share/locale/ko/LC_MESSAGES/drawing.mo
|
||||
share/locale/nl/LC_MESSAGES/drawing.mo
|
||||
share/locale/oc/LC_MESSAGES/drawing.mo
|
||||
share/locale/pl/LC_MESSAGES/drawing.mo
|
||||
share/locale/pt_BR/LC_MESSAGES/drawing.mo
|
||||
share/locale/ru/LC_MESSAGES/drawing.mo
|
||||
share/locale/sv/LC_MESSAGES/drawing.mo
|
||||
share/locale/tr/LC_MESSAGES/drawing.mo
|
||||
share/locale/zh_CN/LC_MESSAGES/drawing.mo
|
||||
share/locale/zh_TW/LC_MESSAGES/drawing.mo
|
||||
share/metainfo/com.github.maoschanz.drawing.appdata.xml
|
||||
%%NLS%%share/locale/ca/LC_MESSAGES/drawing.mo
|
||||
%%NLS%%share/locale/cs/LC_MESSAGES/drawing.mo
|
||||
%%NLS%%share/locale/da/LC_MESSAGES/drawing.mo
|
||||
%%NLS%%share/locale/de/LC_MESSAGES/drawing.mo
|
||||
%%NLS%%share/locale/es/LC_MESSAGES/drawing.mo
|
||||
%%NLS%%share/locale/eu/LC_MESSAGES/drawing.mo
|
||||
%%NLS%%share/locale/fi/LC_MESSAGES/drawing.mo
|
||||
%%NLS%%share/locale/fr/LC_MESSAGES/drawing.mo
|
||||
%%NLS%%share/locale/he/LC_MESSAGES/drawing.mo
|
||||
%%NLS%%share/locale/hr/LC_MESSAGES/drawing.mo
|
||||
%%NLS%%share/locale/hu/LC_MESSAGES/drawing.mo
|
||||
%%NLS%%share/locale/id/LC_MESSAGES/drawing.mo
|
||||
%%NLS%%share/locale/it/LC_MESSAGES/drawing.mo
|
||||
%%NLS%%share/locale/ja/LC_MESSAGES/drawing.mo
|
||||
%%NLS%%share/locale/ko/LC_MESSAGES/drawing.mo
|
||||
%%NLS%%share/locale/nl/LC_MESSAGES/drawing.mo
|
||||
%%NLS%%share/locale/oc/LC_MESSAGES/drawing.mo
|
||||
%%NLS%%share/locale/pl/LC_MESSAGES/drawing.mo
|
||||
%%NLS%%share/locale/pt_BR/LC_MESSAGES/drawing.mo
|
||||
%%NLS%%share/locale/ru/LC_MESSAGES/drawing.mo
|
||||
%%NLS%%share/locale/sv/LC_MESSAGES/drawing.mo
|
||||
%%NLS%%share/locale/tr/LC_MESSAGES/drawing.mo
|
||||
%%NLS%%share/locale/zh_CN/LC_MESSAGES/drawing.mo
|
||||
%%NLS%%share/locale/zh_TW/LC_MESSAGES/drawing.mo
|
||||
%%NLS%%share/metainfo/com.github.maoschanz.drawing.appdata.xml
|
||||
|
|
|
|||
|
|
@ -1,15 +1,14 @@
|
|||
PORTNAME= evolvotron
|
||||
DISTVERSION= 0.7.1
|
||||
PORTREVISION= 14
|
||||
DISTVERSION= 0.8.0
|
||||
CATEGORIES= graphics
|
||||
MASTER_SITES= SF \
|
||||
SF/nemysisfreebsdp/${CATEGORIES}/:icons
|
||||
DISTFILES= ${PORTNAME}-${DISTVERSION}${EXTRACT_SUFX} \
|
||||
${PORTNAME}_icons${EXTRACT_SUFX}:icons
|
||||
|
||||
MAINTAINER= ports@FreeBSD.org
|
||||
MAINTAINER= eduardo@FreeBSD.org
|
||||
COMMENT= Generative software that evolves images/textures/patterns
|
||||
WWW= http://www.bottlenose.demon.co.uk/share/evolvotron/
|
||||
WWW= http://www.bottlenose.net/share/evolvotron/
|
||||
|
||||
LICENSE= GPLv2
|
||||
LICENSE_FILE= ${WRKSRC}/LICENSE
|
||||
|
|
@ -17,34 +16,28 @@ LICENSE_FILE= ${WRKSRC}/LICENSE
|
|||
LIB_DEPENDS= libboost_thread.so:devel/boost-libs
|
||||
|
||||
USES= compiler:c++11-lib gl gnome python qmake qt:5
|
||||
USE_QT= core gui widgets xml buildtools:build
|
||||
USE_GL= gl
|
||||
QMAKE_ARGS= VERSION_NUMBER="${PORTVERSION}"
|
||||
QMAKE_SOURCE_PATH= ${WRKSRC}/main.pro
|
||||
USE_CXXSTD= c++11
|
||||
USE_GL= gl
|
||||
USE_QT= core gui widgets xml buildtools:build
|
||||
|
||||
WRKSRC= ${WRKDIR}/${PORTNAME}
|
||||
QMAKE_ARGS= VERSION_NUMBER="${PORTVERSION}"
|
||||
QMAKE_SOURCE_PATH= ${WRKSRC}/main.pro
|
||||
|
||||
ICON_SIZES= 32x32 48x48 64x64 72x72 96x96 128x128
|
||||
|
||||
DESKTOP_ENTRIES="Evolvotron" "Interactive image generator" "${PORTNAME}" \
|
||||
"${PORTNAME}" "Graphics;2DGraphics;" ""
|
||||
|
||||
DESKTOP_ENTRIES= "Evolvotron" \
|
||||
"Interactive image generator" \
|
||||
"${PORTNAME}" \
|
||||
"${PORTNAME}" \
|
||||
"Graphics;2DGraphics;" \
|
||||
""
|
||||
WRKSRC= ${WRKDIR}/${PORTNAME}
|
||||
PORTDOCS= NEWS README.md TODO USAGE evolvotron.html
|
||||
OPTIONS_DEFINE= DOCS
|
||||
|
||||
PORTDOCS= NEWS README TODO USAGE evolvotron.html
|
||||
|
||||
post-patch:
|
||||
@${REINPLACE_CMD} -e \
|
||||
'/^CONFIG/s|precompile_header|| ; \
|
||||
/DEFINES/s|_LINUX|_BSD|' ${WRKSRC}/common.pro
|
||||
|
||||
do-install:
|
||||
.for i in evolvotron evolvotron_mutate evolvotron_render
|
||||
${INSTALL_PROGRAM} ${WRKSRC}/${i}/${i} ${STAGEDIR}${PREFIX}/bin/
|
||||
.endfor
|
||||
.for lib in libevolvotron libfunction
|
||||
${INSTALL_DATA} ${WRKSRC}/${lib}/${lib}.a ${STAGEDIR}${PREFIX}/lib/
|
||||
${INSTALL_PROGRAM} ${WRKSRC}/obj/${i}/${i} ${STAGEDIR}${PREFIX}/bin/
|
||||
${INSTALL_MAN} ${WRKSRC}/man/man1/${i}.1 ${STAGEDIR}${MAN1PREFIX}/man/man1/
|
||||
.endfor
|
||||
.for s in ${ICON_SIZES}
|
||||
@${MKDIR} ${STAGEDIR}${PREFIX}/share/icons/hicolor/${s}/apps/
|
||||
|
|
@ -53,13 +46,6 @@ do-install:
|
|||
.endfor
|
||||
${LN} -sf ${PREFIX}/share/icons/hicolor/48x48/apps/${PORTNAME}.png \
|
||||
${STAGEDIR}${PREFIX}/share/pixmaps/
|
||||
.for m in evolvotron.1 evolvotron_mutate.1 evolvotron_render.1
|
||||
cd ${WRKSRC}/man/man1 && ${INSTALL_MAN} ${m} \
|
||||
${STAGEDIR}${MAN1PREFIX}/man/man1/
|
||||
.endfor
|
||||
|
||||
post-install: # delete static libs installed by mistake
|
||||
@${RM} -r ${STAGEDIR}${PREFIX}/lib
|
||||
|
||||
do-install-DOCS-on:
|
||||
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
TIMESTAMP = 1531631740
|
||||
SHA256 (evolvotron-0.7.1.tar.gz) = 9a5bd7680aa3617de7b822ef1114f04548909be35facbf78c676bd0c4d42f9a9
|
||||
SIZE (evolvotron-0.7.1.tar.gz) = 179516
|
||||
TIMESTAMP = 1674202443
|
||||
SHA256 (evolvotron-0.8.0.tar.gz) = df78f62a62f5c8bb79d60a6efb8587c67f4fcf85d74ad7938f54be21c8947a10
|
||||
SIZE (evolvotron-0.8.0.tar.gz) = 178316
|
||||
SHA256 (evolvotron_icons.tar.gz) = f7d98eab15bf39d6de66a548457223daaffab4e5fe4aa444c926343786400d85
|
||||
SIZE (evolvotron_icons.tar.gz) = 93696
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
PORTNAME= filament
|
||||
DISTVERSIONPREFIX= v
|
||||
DISTVERSION= 1.31.0
|
||||
DISTVERSION= 1.31.1
|
||||
CATEGORIES= graphics
|
||||
|
||||
MAINTAINER= yuri@FreeBSD.org
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1673478130
|
||||
SHA256 (google-filament-v1.31.0_GH0.tar.gz) = 564021c018bbb855e9e202eac72065feee3cd6eed82ef33ad9005f50100fd302
|
||||
SIZE (google-filament-v1.31.0_GH0.tar.gz) = 496240193
|
||||
TIMESTAMP = 1674153432
|
||||
SHA256 (google-filament-v1.31.1_GH0.tar.gz) = f800ef014fdc123b082d18aea79050f56b6e4d6aef53b98a5d7b3bfeeff11e73
|
||||
SIZE (google-filament-v1.31.1_GH0.tar.gz) = 496334380
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
PORTNAME= gimp-jxl-plugin
|
||||
DISTVERSIONPREFIX= v
|
||||
DISTVERSION= 0.8.0rc1
|
||||
DISTVERSION= 0.8.0
|
||||
CATEGORIES= graphics
|
||||
|
||||
MAINTAINER= jbeich@FreeBSD.org
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1673608669
|
||||
SHA256 (libjxl-libjxl-v0.8.0rc1_GH0.tar.gz) = a94f3a011b0238d20c9dab3f7c5e6cfcc7bd669f2d9fd9aec89b8a43c51ba7f5
|
||||
SIZE (libjxl-libjxl-v0.8.0rc1_GH0.tar.gz) = 1611950
|
||||
TIMESTAMP = 1674052175
|
||||
SHA256 (libjxl-libjxl-v0.8.0_GH0.tar.gz) = 6b4c140c1738acbed6b7d22858e0526373f0e9938e3f6c0a6b8943189195aad1
|
||||
SIZE (libjxl-libjxl-v0.8.0_GH0.tar.gz) = 1611824
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
PORTNAME= glslang
|
||||
DISTVERSION= 11.13.0
|
||||
DISTVERSION= 12.0.0
|
||||
CATEGORIES= graphics
|
||||
|
||||
MAINTAINER= jbeich@FreeBSD.org
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1670366073
|
||||
SHA256 (KhronosGroup-glslang-11.13.0_GH0.tar.gz) = 592c98aeb03b3e81597ddaf83633c4e63068d14b18a766fd11033bad73127162
|
||||
SIZE (KhronosGroup-glslang-11.13.0_GH0.tar.gz) = 3658039
|
||||
TIMESTAMP = 1674147471
|
||||
SHA256 (KhronosGroup-glslang-12.0.0_GH0.tar.gz) = 7cb45842ec1d4b6ea775d624c3d2d8ba9450aa416b0482b0cc7e4fdd399c3d75
|
||||
SIZE (KhronosGroup-glslang-12.0.0_GH0.tar.gz) = 3682791
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
PORTNAME= libpano13
|
||||
DISTVERSION= 2.9.21
|
||||
PORTREVISION= 1
|
||||
PORTREVISION= 2
|
||||
CATEGORIES= graphics java
|
||||
MASTER_SITES= SF/panotools/${PORTNAME}/${PORTNAME}-${DISTVERSION}
|
||||
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
PORTNAME= shaderc
|
||||
DISTVERSIONPREFIX= v
|
||||
DISTVERSION= 2023.1
|
||||
DISTVERSION= 2023.2
|
||||
CATEGORIES= graphics devel
|
||||
|
||||
MAINTAINER= jbeich@FreeBSD.org
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
TIMESTAMP = 1673905499
|
||||
SHA256 (google-shaderc-v2023.1_GH0.tar.gz) = 8041c6874a085a0f357d7918855f9e39bbeff9313cbeacab28505aa233fc0da2
|
||||
SIZE (google-shaderc-v2023.1_GH0.tar.gz) = 222448
|
||||
TIMESTAMP = 1674075489
|
||||
SHA256 (google-shaderc-v2023.2_GH0.tar.gz) = 06c4e2fdd63d62b73450d7011b72e7720b416182fb883fb0aac0afe6db2df3f6
|
||||
SIZE (google-shaderc-v2023.2_GH0.tar.gz) = 222452
|
||||
SHA256 (KhronosGroup-SPIRV-Headers-1.5.4.raytracing.fixed-214-gd13b522_GH0.tar.gz) = f4f0663a7fc0c17beaecb824c58ece4169edec1b3bb6eb1f6857b7b56bad3194
|
||||
SIZE (KhronosGroup-SPIRV-Headers-1.5.4.raytracing.fixed-214-gd13b522_GH0.tar.gz) = 446635
|
||||
|
|
|
|||
|
|
@ -15,7 +15,6 @@
|
|||
SUBDIR += catgirl
|
||||
SUBDIR += cgiirc
|
||||
SUBDIR += ctrlproxy
|
||||
SUBDIR += cwirc
|
||||
SUBDIR += dancer
|
||||
SUBDIR += darkbot
|
||||
SUBDIR += dircproxy
|
||||
|
|
|
|||
|
|
@ -1,41 +0,0 @@
|
|||
PORTNAME= cwirc
|
||||
PORTVERSION= 2.0.0
|
||||
PORTREVISION= 7
|
||||
CATEGORIES= irc comms hamradio
|
||||
MASTER_SITES= LOCAL/db
|
||||
|
||||
MAINTAINER= hamradio@FreeBSD.org
|
||||
COMMENT= X-Chat Morse plugin
|
||||
WWW= http://myspace.voo.be/pcoupard/cwirc
|
||||
|
||||
LICENSE= GPLv2
|
||||
|
||||
DEPRECATED= No upstream, no apparent use seen online
|
||||
EXPIRATION_DATE= 2023-01-19
|
||||
|
||||
BUILD_DEPENDS= hexchat:irc/hexchat
|
||||
LIB_DEPENDS= libfontconfig.so:x11-fonts/fontconfig \
|
||||
libfreetype.so:print/freetype2
|
||||
|
||||
USES= gettext-runtime gnome pkgconfig
|
||||
USE_GNOME= atk cairo gdkpixbuf2 glib20 gtk20 pango
|
||||
|
||||
post-patch:
|
||||
@${CP} ${FILESDIR}/Makefile ${WRKSRC}
|
||||
@${REINPLACE_CMD} -e 's|%%PREFIX%%|${PREFIX}|' \
|
||||
-e 's|%%STAGEDIR%%|${STAGEDIR}|' ${WRKSRC}/Makefile
|
||||
@${REINPLACE_CMD} -e 's|xchat|hexchat|g' \
|
||||
-e 's|XCHAT|HEXCHAT|g' ${WRKSRC}/plugin.c
|
||||
@${RM} -r ${WRKSRC}/xchat
|
||||
|
||||
post-install:
|
||||
${MKDIR} ${STAGEDIR}${DOCSDIR}
|
||||
.for f in COPYING LISEZMOI README RELEASE_NOTES
|
||||
${INSTALL_DATA} ${WRKSRC}/$f ${STAGEDIR}${DOCSDIR}
|
||||
.endfor
|
||||
${MKDIR} ${STAGEDIR}${DOCSDIR}/schematics
|
||||
.for f in cw_oscillator.jpg rs232_key_connection.jpg
|
||||
${INSTALL_DATA} ${WRKSRC}/schematics/$f ${STAGEDIR}${DOCSDIR}/schematics
|
||||
.endfor
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
|
@ -1,2 +0,0 @@
|
|||
SHA256 (cwirc-2.0.0.tar.gz) = 90e3bfa916fb8e5478739dc4d14b111bb2ffd1d1fd8ea81ab43486dc1e7e35c0
|
||||
SIZE (cwirc-2.0.0.tar.gz) = 180759
|
||||
|
|
@ -1,342 +0,0 @@
|
|||
##### PLEASE SET THE FOLLOWING VARIABLES FIRST ################################
|
||||
# - Set TARGET_OS to LINUX, FREEBSD or NETBSD.
|
||||
#
|
||||
# - PLUGIN_INSTALL_DIRECTORY is where the CWirc plugin stub (cwirc.so) is
|
||||
# installed. It should be the X-Chat plugins directory, so the CWirc
|
||||
# plugin is loaded automatically when X-Chat starts.
|
||||
#
|
||||
# - FRONTEND_INSTALL_DIRECTORY is where the CWirc frontend executable is
|
||||
# installed. It should be a bin directory in the PATH, so the plugin
|
||||
# portion can execute it.
|
||||
#
|
||||
# - CWIRC_EXTENSIONS_DIRECTORY is where CWirc will look for extension programs.
|
||||
#
|
||||
# - Define any additional linker flags your system might need in EXTRA_LDFLAGS
|
||||
# (for example, "-lossaudio" with NetBSD 1.6.1)
|
||||
################################################################################
|
||||
#
|
||||
TARGET_OS=FREEBSD
|
||||
STAGEDIR=%%STAGEDIR%%
|
||||
PREFIX=%%PREFIX%%
|
||||
PLUGIN_INSTALL_DIRECTORY=${PREFIX}/lib/hexchat/plugins
|
||||
FRONTEND_INSTALL_DIRECTORY=${PREFIX}/bin
|
||||
CWIRC_EXTENSIONS_DIRECTORY=${PREFIX}/share/cwirc/extensions
|
||||
#EXTRA_LDFLAGS=
|
||||
|
||||
# Use these with Debian GNU/Linux for example
|
||||
#TARGET_OS=LINUX
|
||||
#PLUGIN_INSTALL_DIRECTORY=/usr/lib/xchat/plugins
|
||||
#FRONTEND_INSTALL_DIRECTORY=/usr/bin
|
||||
#CWIRC_EXTENSIONS_DIRECTORY=/usr/lib/cwirc/extensions
|
||||
#EXTRA_LDFLAGS=
|
||||
|
||||
# Use these with FreeBSD 5.1 for example
|
||||
#TARGET_OS=FREEBSD
|
||||
#PLUGIN_INSTALL_DIRECTORY=/usr/X11R6/lib/xchat/plugins
|
||||
#FRONTEND_INSTALL_DIRECTORY=/usr/X11R6/bin
|
||||
#CWIRC_EXTENSIONS_DIRECTORY=/usr/X11R6/lib/cwirc/extensions
|
||||
#EXTRA_LDFLAGS=
|
||||
|
||||
# Use these with NetBSD 1.6.1 for example
|
||||
#TARGET_OS=NETBSD
|
||||
#PLUGIN_INSTALL_DIRECTORY=/usr/pkg/lib/xchat/plugins
|
||||
#FRONTEND_INSTALL_DIRECTORY=/usr/pkg/bin
|
||||
#CWIRC_EXTENSIONS_DIRECTORY=/usr/pkg/lib/cwirc/extensions
|
||||
#EXTRA_LDFLAGS=-lossaudio
|
||||
|
||||
################################################################################
|
||||
|
||||
VERSION=2.0.0
|
||||
|
||||
PLUGIN=cwirc.so
|
||||
FRONTEND=cwirc_frontend
|
||||
|
||||
RM?=/bin/rm
|
||||
CP?=/bin/cp
|
||||
MKDIR?=/bin/mkdir
|
||||
TAR?=tar
|
||||
PWD?=pwd
|
||||
CC?=gcc
|
||||
STRIP?=strip
|
||||
|
||||
XCHAT_PLUGIN_INCLUDE_PATH=${PREFIX}/include
|
||||
|
||||
XCHAT_INC=-I$(XCHAT_PLUGIN_INCLUDE_PATH)
|
||||
#CFLAGS=-Wall -Wstrict-prototypes -O2 -D$(TARGET_OS)
|
||||
CFLAGS+= -D$(TARGET_OS)
|
||||
GTK_CFLAGS=`pkg-config --cflags gtk+-2.0`
|
||||
LDFLAGS=-lm ${EXTRA_LDFLAGS}
|
||||
GTK_LDFLAGS=`pkg-config --libs gtk+-2.0`
|
||||
|
||||
all: missing_settings \
|
||||
$(PLUGIN) \
|
||||
$(FRONTEND)
|
||||
|
||||
install: missing_settings \
|
||||
$(PLUGIN) \
|
||||
$(FRONTEND)
|
||||
$(MKDIR) -p $(STAGEDIR)$(PLUGIN_INSTALL_DIRECTORY)
|
||||
$(MKDIR) -p $(STAGEDIR)$(CWIRC_EXTENSIONS_DIRECTORY)
|
||||
$(CP) $(PLUGIN) $(STAGEDIR)$(PLUGIN_INSTALL_DIRECTORY)
|
||||
$(MKDIR) -p $(STAGEDIR)$(FRONTEND_INSTALL_DIRECTORY)
|
||||
$(CP) $(FRONTEND) $(STAGEDIR)$(FRONTEND_INSTALL_DIRECTORY)
|
||||
|
||||
uninstall: missing_settings
|
||||
$(RM) -f $(PLUGIN_INSTALL_DIRECTORY)/$(PLUGIN)
|
||||
$(RM) -f $(FRONTEND_INSTALL_DIRECTORY)/$(FRONTEND)
|
||||
|
||||
PLUGIN_OBJS= plugin.shared.o \
|
||||
ipc.shared.o \
|
||||
grid.shared.o \
|
||||
propagation.shared.o \
|
||||
cwframe.shared.o
|
||||
|
||||
FRONTEND_OBJS= frontend.o \
|
||||
io.o \
|
||||
gui.o \
|
||||
ipc.o \
|
||||
keyer.o \
|
||||
grid.o \
|
||||
propagation.o \
|
||||
cwsound.o \
|
||||
cwdecoder.o \
|
||||
cwframe.o \
|
||||
rcfile.o \
|
||||
extension.o
|
||||
|
||||
$(PLUGIN): $(PLUGIN_OBJS)
|
||||
$(CC) -shared $(LDFLAGS) -o $@ $(PLUGIN_OBJS)
|
||||
$(STRIP) $@
|
||||
|
||||
$(FRONTEND): $(FRONTEND_OBJS)
|
||||
$(CC) $(LDFLAGS) $(GTK_LDFLAGS) -o $@ $(FRONTEND_OBJS)
|
||||
$(STRIP) $@
|
||||
|
||||
plugin.shared.o: plugin.c \
|
||||
$(XCHAT_PLUGIN_INCLUDE_PATH)/hexchat-plugin.h \
|
||||
types.h \
|
||||
common.h \
|
||||
cwirc.h \
|
||||
cwframe.h \
|
||||
ipc.h
|
||||
$(CC) $(CFLAGS) $(XCHAT_INC) -fPIC -c -o $@ plugin.c
|
||||
|
||||
frontend.o: frontend.c \
|
||||
types.h \
|
||||
cwirc.h \
|
||||
common.h \
|
||||
rcfile.h \
|
||||
io.h \
|
||||
gui.h \
|
||||
extension.h \
|
||||
ipc.h
|
||||
$(CC) $(CFLAGS) $(XCHAT_INC) -c -o $@ frontend.c
|
||||
|
||||
io.o: io.c \
|
||||
types.h \
|
||||
io.h \
|
||||
cwirc.h \
|
||||
keyer.h \
|
||||
cwsound.h \
|
||||
cwdecoder.h \
|
||||
propagation.h \
|
||||
extension.h \
|
||||
ipc.h
|
||||
$(CC) $(CFLAGS) -c -o $@ io.c
|
||||
|
||||
gui.o: gui.c \
|
||||
types.h \
|
||||
gui.h \
|
||||
common.h \
|
||||
cwirc.h \
|
||||
rcfile.h \
|
||||
grid.h \
|
||||
io.h \
|
||||
cwdecoder.h \
|
||||
extension.h \
|
||||
keyer.h \
|
||||
ipc.h \
|
||||
smeter.xpm \
|
||||
sidetone.xpm \
|
||||
straightkey.xpm \
|
||||
iambickey.xpm
|
||||
$(CC) $(CFLAGS) $(GTK_CFLAGS) -c -o $@ gui.c
|
||||
|
||||
keyer.o: keyer.c \
|
||||
types.h \
|
||||
keyer.h
|
||||
$(CC) $(CFLAGS) -c -o $@ keyer.c
|
||||
|
||||
grid.o: grid.c \
|
||||
grid.h
|
||||
$(CC) $(CFLAGS) -c -o $@ grid.c
|
||||
|
||||
grid.shared.o: grid.c \
|
||||
grid.h
|
||||
$(CC) $(CFLAGS) -fPIC -c -o $@ grid.c
|
||||
|
||||
propagation.o: propagation.c \
|
||||
propagation.h
|
||||
$(CC) $(CFLAGS) -c -o $@ propagation.c
|
||||
|
||||
propagation.shared.o: propagation.c \
|
||||
propagation.h
|
||||
$(CC) $(CFLAGS) -fPIC -c -o $@ propagation.c
|
||||
|
||||
cwsound.o: cwsound.c \
|
||||
types.h \
|
||||
cwsound.h \
|
||||
sounder_down.h \
|
||||
sounder_up.h
|
||||
$(CC) $(CFLAGS) -c -o $@ cwsound.c
|
||||
|
||||
cwframe.o: cwframe.c \
|
||||
types.h \
|
||||
cwframe.h \
|
||||
cwirc.h \
|
||||
grid.h \
|
||||
propagation.h \
|
||||
io.h \
|
||||
ipc.h
|
||||
$(CC) $(CFLAGS) -c -o $@ cwframe.c
|
||||
|
||||
cwframe.shared.o: cwframe.c \
|
||||
types.h \
|
||||
cwframe.h \
|
||||
cwirc.h \
|
||||
grid.h \
|
||||
propagation.h \
|
||||
io.h \
|
||||
ipc.h
|
||||
$(CC) $(CFLAGS) -fPIC -c -o $@ cwframe.c
|
||||
|
||||
cwdecoder.o: cwdecoder.c \
|
||||
types.h \
|
||||
cwdecoder.h \
|
||||
morsecodes.h \
|
||||
cwirc.h
|
||||
$(CC) $(CFLAGS) -c -o $@ cwdecoder.c
|
||||
|
||||
ipc.o: ipc.c \
|
||||
ipc.h
|
||||
$(CC) $(CFLAGS) -c -o $@ ipc.c
|
||||
|
||||
ipc.shared.o: ipc.c \
|
||||
ipc.h
|
||||
$(CC) $(CFLAGS) -fPIC -c -o $@ ipc.c
|
||||
|
||||
rcfile.o: rcfile.c \
|
||||
types.h \
|
||||
rcfile.h \
|
||||
cwirc.h \
|
||||
grid.h \
|
||||
io.h \
|
||||
cwdecoder.h
|
||||
$(CC) $(CFLAGS) -c -o $@ rcfile.c
|
||||
|
||||
extension.o: extension.c \
|
||||
types.h \
|
||||
cwirc.h \
|
||||
extension.h \
|
||||
ipc.h \
|
||||
common.h
|
||||
$(CC) $(CFLAGS) -c -o $@ extension.c
|
||||
|
||||
sounder_down.h: sounder_down.wav \
|
||||
mksndinclude
|
||||
./mksndinclude sounder_down > $@ < sounder_down.wav
|
||||
|
||||
sounder_up.h: sounder_up.wav \
|
||||
mksndinclude
|
||||
./mksndinclude sounder_up > $@ < sounder_up.wav
|
||||
|
||||
mksndinclude: mksndinclude.c \
|
||||
types.h
|
||||
$(CC) $(CFLAGS) -o $@ mksndinclude.c
|
||||
|
||||
common.h:
|
||||
echo "#define FRONTEND \"$(FRONTEND)\"" > $@
|
||||
echo "#define VERSION \"$(VERSION)\"" >> $@
|
||||
echo "#define EXTENSIONS_DIR \
|
||||
\"$(CWIRC_EXTENSIONS_DIRECTORY)\"" >> $@
|
||||
|
||||
clean:
|
||||
$(RM) -f $(FRONTEND)
|
||||
$(RM) -f *.so
|
||||
$(RM) -f *.o
|
||||
$(RM) -f common.h
|
||||
$(RM) -f sounder_down.h
|
||||
$(RM) -f sounder_up.h
|
||||
$(RM) -f mksndinclude
|
||||
$(RM) -rf release
|
||||
|
||||
missing_settings:
|
||||
@(if [ ! "$(TARGET_OS)" ] || \
|
||||
[ ! "$(PLUGIN_INSTALL_DIRECTORY)" ] || \
|
||||
[ ! "$(FRONTEND_INSTALL_DIRECTORY)" ] || \
|
||||
[ ! "$(CWIRC_EXTENSIONS_DIRECTORY)" ];then \
|
||||
echo; \
|
||||
echo "*** Please edit the Makefile to ***"; \
|
||||
echo "**** set the target OS and the ****"; \
|
||||
echo "**** CWirc installation paths. ****"; \
|
||||
echo; \
|
||||
exit 1; \
|
||||
fi)
|
||||
|
||||
########## RELEASE ONLY SECTION ################################################
|
||||
SRCFILES= COPYING Changelog Makefile README LISEZMOI RELEASE_NOTES\
|
||||
schematics/rs232_key_connection.jpg \
|
||||
schematics/cw_oscillator.jpg cwdecoder.c cwframe.c \
|
||||
cwsound.c frontend.c extension.c grid.c gui.c keyer.c \
|
||||
io.c ipc.c mksndinclude.c plugin.c propagation.c \
|
||||
rcfile.c \
|
||||
cwdecoder.h cwframe.h cwirc.h cwsound.h extension.h \
|
||||
grid.h gui.h keyer.h io.h ipc.h morsecodes.h \
|
||||
propagation.h rcfile.h types.h xchat/xchat-plugin.h \
|
||||
xchat/README.xchat_include_file \
|
||||
straightkey.xpm iambickey.xpm smeter.xpm sidetone.xpm \
|
||||
sounder_down.wav sounder_up.wav \
|
||||
debian/changelog debian/compat debian/control \
|
||||
debian/copyright debian/rules debian/watch \
|
||||
rpm/cwirc.spec rpm/rpmmacros
|
||||
|
||||
release: source_release debian_release rpm_release
|
||||
|
||||
source_release: release/cwirc-$(VERSION).tar.gz
|
||||
|
||||
release/cwirc-$(VERSION).tar.gz:
|
||||
$(MKDIR) -p release/cwirc-$(VERSION)
|
||||
$(CP) --parents -a $(SRCFILES) release/cwirc-$(VERSION)
|
||||
$(TAR) -C release -cvzf $@ cwirc-$(VERSION)
|
||||
$(RM) -r release/cwirc-$(VERSION)
|
||||
|
||||
debian_release: release/cwirc-$(VERSION).tar.gz
|
||||
$(MKDIR) -p release/debian
|
||||
$(TAR) -C release/debian -zxf $<
|
||||
(cd release/debian/cwirc-$(VERSION) && \
|
||||
dpkg-buildpackage -rfakeroot)
|
||||
$(RM) -rf release/debian/cwirc-$(VERSION)
|
||||
|
||||
rpm_release: release/cwirc-$(VERSION).tar.gz
|
||||
$(MKDIR) -p release/rpm/RPM/BUILD
|
||||
$(MKDIR) -p release/rpm/RPM/RPMS
|
||||
$(MKDIR) -p release/rpm/RPM/SOURCES
|
||||
$(MKDIR) -p release/rpm/RPM/SPECS
|
||||
$(MKDIR) -p release/rpm/RPM/SRPMS
|
||||
(if [ -f ~/.rpmmacros ];then \
|
||||
$(CP) -a ~/.rpmmacros release/rpm/RPM; \
|
||||
fi)
|
||||
$(CP) rpm/rpmmacros ~/.rpmmacros
|
||||
(RPMTOPDIR=`cd release/rpm/RPM && $(PWD)`; \
|
||||
echo "%_topdir $$RPMTOPDIR" >> ~/.rpmmacros)
|
||||
$(CP) release/cwirc-$(VERSION).tar.gz release/rpm/RPM/SOURCES
|
||||
$(CP) rpm/cwirc.spec release/rpm/RPM/SPECS
|
||||
rpm -ba release/rpm/RPM/SPECS/cwirc.spec
|
||||
$(CP) release/rpm/RPM/RPMS/*/*.rpm release/rpm
|
||||
$(CP) release/rpm/RPM/SRPMS/*.src.rpm release/rpm
|
||||
$(RM) ~/.rpmmacros
|
||||
(if [ -f release/rpm/RPM/.rpmmacros ];then \
|
||||
$(CP) -a release/rpm/RPM/.rpmmacros ~; \
|
||||
fi)
|
||||
$(RM) -rf release/rpm/RPM
|
||||
################################################################################
|
||||
|
|
@ -1,8 +0,0 @@
|
|||
CWirc is a plugin for the X-Chat IRC client to transmit raw morse code
|
||||
over the internet using IRC servers as reflectors. The transmitted morse
|
||||
code can be received in near real-time by other X-Chat clients with the CWirc
|
||||
plugin. CWirc tries to emulate a standard amateur radio rig : it sends and
|
||||
receives morse over virtual channels, and it can listen to multiple senders
|
||||
transmitting on the same channel. Morse code is keyed locally using a
|
||||
straight or iambic key connected to a serial port, or using the mouse buttons,
|
||||
and the sound is played through the soundcard, or through an external sounder.
|
||||
|
|
@ -1,9 +0,0 @@
|
|||
bin/cwirc_frontend
|
||||
lib/hexchat/plugins/cwirc.so
|
||||
%%DOCSDIR%%/COPYING
|
||||
%%DOCSDIR%%/LISEZMOI
|
||||
%%DOCSDIR%%/README
|
||||
%%DOCSDIR%%/RELEASE_NOTES
|
||||
%%DOCSDIR%%/schematics/cw_oscillator.jpg
|
||||
%%DOCSDIR%%/schematics/rs232_key_connection.jpg
|
||||
@dir %%DATADIR%%/extensions
|
||||
|
|
@ -1,5 +1,5 @@
|
|||
PORTNAME= snappymail
|
||||
DISTVERSION= 2.24.5
|
||||
DISTVERSION= 2.24.6
|
||||
CATEGORIES= mail www
|
||||
MASTER_SITES= https://github.com/the-djmaze/snappymail/releases/download/v${DISTVERSION}/
|
||||
PKGNAMESUFFIX= ${PHP_PKGNAMESUFFIX}
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1673548306
|
||||
SHA256 (snappymail-2.24.5.tar.gz) = 2ea8a9725a507b678358d81aa5d12982acc08758f3e2ec891c441e9b467d838c
|
||||
SIZE (snappymail-2.24.5.tar.gz) = 4648221
|
||||
TIMESTAMP = 1674148966
|
||||
SHA256 (snappymail-2.24.6.tar.gz) = 086a4f99aad8f7dd34f38fd6864937623ceea4fa94e05a807e94d73455c8007e
|
||||
SIZE (snappymail-2.24.6.tar.gz) = 4648579
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
PORTNAME= arpack++
|
||||
PORTVERSION= 2.3.0
|
||||
PORTREVISION= 2
|
||||
PORTREVISION= 3
|
||||
CATEGORIES= math
|
||||
|
||||
MAINTAINER= ports@FreeBSD.org
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
PORTNAME= ceres-solver
|
||||
DISTVERSION= 2.1.0
|
||||
PORTREVISION= 1
|
||||
PORTREVISION= 2
|
||||
CATEGORIES= math
|
||||
|
||||
MAINTAINER= yuri@FreeBSD.org
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
PORTNAME= dune-fem
|
||||
DISTVERSION= 2.8.0.5
|
||||
PORTREVISION= 3
|
||||
PORTREVISION= 4
|
||||
CATEGORIES= math
|
||||
|
||||
MAINTAINER= yuri@FreeBSD.org
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
PORTNAME= dune-istl
|
||||
DISTVERSION= 2.8.0
|
||||
PORTREVISION= 1
|
||||
PORTREVISION= 2
|
||||
CATEGORIES= math
|
||||
|
||||
MAINTAINER= yuri@FreeBSD.org
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
PORTNAME= dune-pdelab
|
||||
DISTVERSIONPREFIX= v
|
||||
DISTVERSION= 2.7.0.20210824
|
||||
PORTREVISION= 5
|
||||
PORTREVISION= 6
|
||||
CATEGORIES= math
|
||||
|
||||
MAINTAINER= yuri@FreeBSD.org
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
PORTNAME= dune-vtk
|
||||
DISTVERSION= 2.8.0
|
||||
PORTREVISION= 3
|
||||
PORTREVISION= 4
|
||||
CATEGORIES= math
|
||||
|
||||
MAINTAINER= yuri@FreeBSD.org
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
PORTNAME= freefem++
|
||||
DISTVERSIONPREFIX= v
|
||||
DISTVERSION= 4.11
|
||||
PORTREVISION= 3
|
||||
PORTREVISION= 4
|
||||
CATEGORIES= math science
|
||||
|
||||
MAINTAINER= yuri@FreeBSD.org
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
PORTNAME= g2o
|
||||
DISTVERSION= 20201223
|
||||
DISTVERSIONSUFFIX= _git
|
||||
PORTREVISION= 2
|
||||
PORTREVISION= 3
|
||||
CATEGORIES= math
|
||||
|
||||
MAINTAINER= yuri@FreeBSD.org
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
PORTNAME= igraph
|
||||
DISTVERSION= 0.9.8
|
||||
PORTREVISION= 1
|
||||
PORTREVISION= 2
|
||||
CATEGORIES= math
|
||||
MASTER_SITES= https://github.com/${PORTNAME}/${PORTNAME}/releases/download/${DISTVERSION}/
|
||||
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
PORTNAME= octave
|
||||
PORTVERSION= ${OCTAVE_VERSION}
|
||||
PORTREVISION= 1
|
||||
PORTREVISION= 2
|
||||
CATEGORIES= math
|
||||
MASTER_SITES= GNU
|
||||
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
PORTNAME= openturns
|
||||
DISTVERSIONPREFIX= v
|
||||
DISTVERSION= 1.20
|
||||
PORTREVISION= 1
|
||||
PORTREVISION= 2
|
||||
CATEGORIES= math
|
||||
|
||||
MAINTAINER= yuri@FreeBSD.org
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
PORTNAME= cvxopt
|
||||
DISTVERSION= 1.3.0
|
||||
PORTREVISION= 1
|
||||
PORTREVISION= 2
|
||||
CATEGORIES= math python
|
||||
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
||||
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
PORTNAME= scilab
|
||||
PORTVERSION= 6.1.1
|
||||
PORTREVISION= 4
|
||||
PORTREVISION= 5
|
||||
CATEGORIES= math cad java
|
||||
MASTER_SITES= https://cgit.scilab.org/scilab/snapshot/
|
||||
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
PORTNAME= ${MPORTNAME:tl}
|
||||
PORTVERSION= 3.0.2
|
||||
PORTVERSION= 3.0.3
|
||||
CATEGORIES= math
|
||||
|
||||
COMMENT= Symmetric approximate minimum degree
|
||||
|
|
|
|||
|
|
@ -3,6 +3,6 @@ lib/cmake/SuiteSparse/FindAMD.cmake
|
|||
lib/libamd.a
|
||||
lib/libamd.so
|
||||
lib/libamd.so.3
|
||||
lib/libamd.so.3.0.2
|
||||
lib/libamd.so.3.0.3
|
||||
%%PORTDOCS%%%%DOCSDIR%%/AMD_README.txt
|
||||
%%PORTDOCS%%%%DOCSDIR%%/AMD_UserGuide.pdf
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
PORTNAME= ${MPORTNAME:tl}
|
||||
PORTVERSION= 2.0.2
|
||||
PORTVERSION= 2.0.3
|
||||
CATEGORIES= math
|
||||
|
||||
COMMENT= Permutation to block triangular form
|
||||
|
|
|
|||
|
|
@ -3,5 +3,5 @@ lib/cmake/SuiteSparse/FindBTF.cmake
|
|||
lib/libbtf.a
|
||||
lib/libbtf.so
|
||||
lib/libbtf.so.2
|
||||
lib/libbtf.so.2.0.2
|
||||
lib/libbtf.so.2.0.3
|
||||
%%PORTDOCS%%%%DOCSDIR%%/BTF_README.txt
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
PORTNAME= ${MPORTNAME:tl}
|
||||
PORTVERSION= 3.0.2
|
||||
PORTVERSION= 3.0.3
|
||||
CATEGORIES= math
|
||||
|
||||
COMMENT= Symmetric approximate minimum degree
|
||||
|
|
|
|||
|
|
@ -3,6 +3,6 @@ lib/cmake/SuiteSparse/FindCAMD.cmake
|
|||
lib/libcamd.a
|
||||
lib/libcamd.so
|
||||
lib/libcamd.so.3
|
||||
lib/libcamd.so.3.0.2
|
||||
lib/libcamd.so.3.0.3
|
||||
%%PORTDOCS%%%%DOCSDIR%%/CAMD_README.txt
|
||||
%%PORTDOCS%%%%DOCSDIR%%/CAMD_UserGuide.pdf
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
PORTNAME= ${MPORTNAME:tl}
|
||||
PORTVERSION= 3.0.2
|
||||
PORTVERSION= 3.0.3
|
||||
CATEGORIES= math
|
||||
|
||||
COMMENT= Constrained column approximate minimum degree ordering
|
||||
|
|
|
|||
|
|
@ -3,5 +3,5 @@ lib/cmake/SuiteSparse/FindCCOLAMD.cmake
|
|||
lib/libccolamd.a
|
||||
lib/libccolamd.so
|
||||
lib/libccolamd.so.3
|
||||
lib/libccolamd.so.3.0.2
|
||||
lib/libccolamd.so.3.0.3
|
||||
%%PORTDOCS%%%%DOCSDIR%%/CCOLAMD_README.txt
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
PORTNAME= ${MPORTNAME:tl}
|
||||
PORTVERSION= 4.0.2
|
||||
PORTVERSION= 4.0.3
|
||||
CATEGORIES= math
|
||||
|
||||
COMMENT= Sparse CHOLesky MODification package
|
||||
|
|
|
|||
|
|
@ -1,13 +1,13 @@
|
|||
include/suitesparse/cholmod.h
|
||||
lib/cmake/SuiteSparse/FindCHOLMOD.cmake
|
||||
lib/cmake/SuiteSparse/FindCHOLMOD_CUDA.cmake
|
||||
lib/libcholmod_cuda_static.a
|
||||
lib/libcholmod_cuda.a
|
||||
lib/libcholmod_cuda.so
|
||||
lib/libcholmod_cuda.so.4
|
||||
lib/libcholmod_cuda.so.4.0.2
|
||||
lib/libcholmod_cuda.so.4.0.3
|
||||
lib/libcholmod.a
|
||||
lib/libcholmod.so
|
||||
lib/libcholmod.so.4
|
||||
lib/libcholmod.so.4.0.2
|
||||
lib/libcholmod.so.4.0.3
|
||||
%%PORTDOCS%%%%DOCSDIR%%/CHOLMOD_README.txt
|
||||
%%PORTDOCS%%%%DOCSDIR%%/CHOLMOD_UserGuide.pdf
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
PORTNAME= ${MPORTNAME:tl}
|
||||
PORTVERSION= 3.0.2
|
||||
PORTVERSION= 3.0.3
|
||||
CATEGORIES= math
|
||||
|
||||
COMMENT= Column approximate minimum degree ordering algorithm
|
||||
|
|
|
|||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Reference in a new issue