*/*: sync with upstream
Taken from: FreeBSD
This commit is contained in:
parent
1a86cac49d
commit
45b521e46e
220 changed files with 8490 additions and 8724 deletions
|
|
@ -63,13 +63,6 @@ PLIST_SUB= PORTVERSION=${PORTVERSION}
|
|||
GH_ACCOUNT= Blosc
|
||||
USE_GITHUB= yes
|
||||
|
||||
.include <bsd.port.options.mk>
|
||||
|
||||
.if ${ARCH:Mpowerpc64*}
|
||||
USES+= compiler:gcc-c++11-lib
|
||||
USE_CSTD= c11
|
||||
.endif
|
||||
|
||||
post-patch:
|
||||
# Clean up bundled libraries
|
||||
@${RM} -r ${WRKSRC}/internal-complibs/
|
||||
|
|
|
|||
221
archivers/c-blosc2/files/patch-blosc_bitshuffle-altivec.c
Normal file
221
archivers/c-blosc2/files/patch-blosc_bitshuffle-altivec.c
Normal file
|
|
@ -0,0 +1,221 @@
|
|||
--- blosc/bitshuffle-altivec.c.orig 2024-08-12 12:46:55 UTC
|
||||
+++ blosc/bitshuffle-altivec.c
|
||||
@@ -40,15 +40,15 @@
|
||||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
|
||||
-static void helper_print(__vector uint8_t v, char* txt){
|
||||
+static void helper_print(__vector unsigned char v, char* txt){
|
||||
printf("%s %02x %02x %02x %02x %02x %02x %02x %02x %02x %02x %02x %02x %02x %02x %02x %02x\n",txt,
|
||||
v[0], v[1], v[2], v[3], v[4], v[5], v[6], v[7], v[8], v[9], v[10], v[11], v[12], v[13], v[14], v[15]);
|
||||
}
|
||||
#endif
|
||||
|
||||
|
||||
-static inline __vector uint8_t gen_save_mask(size_t offset){
|
||||
- __vector uint8_t mask;
|
||||
+static inline __vector unsigned char gen_save_mask(size_t offset){
|
||||
+ __vector unsigned char mask;
|
||||
size_t k;
|
||||
for (k = 0; k < 16; k++)
|
||||
mask[k] = (k<offset)?0:0xFF;
|
||||
@@ -57,8 +57,8 @@ static inline __vector uint8_t gen_save_mask(size_t of
|
||||
|
||||
|
||||
// Build and return a bit-permutation mask
|
||||
-static __vector uint8_t make_bitperm_mask(int type_size, int bit) {
|
||||
- __vector uint8_t result;
|
||||
+static __vector unsigned char make_bitperm_mask(int type_size, int bit) {
|
||||
+ __vector unsigned char result;
|
||||
if (type_size == 1) {
|
||||
// data_type is 8 bits long
|
||||
for (int i = 0; i < 16; i++)
|
||||
@@ -93,29 +93,29 @@ bitunshuffle1_altivec(void* _src, void* dest, const si
|
||||
size_t nbyte_row = size / 8;
|
||||
|
||||
// working vectors
|
||||
- __vector uint8_t xmm0[8], xmm1[8], masks[8];
|
||||
+ __vector unsigned char xmm0[8], xmm1[8], masks[8];
|
||||
// Vector masks
|
||||
- static const __vector uint8_t lo01 = (const __vector uint8_t) {
|
||||
+ static const __vector unsigned char lo01 = (const __vector unsigned char) {
|
||||
0x00, 0x01, 0x04, 0x05, 0x08, 0x09, 0x0c, 0x0d,
|
||||
0x10, 0x11, 0x14, 0x15, 0x18, 0x19, 0x1c, 0x1d};
|
||||
- static const __vector uint8_t hi01 = (const __vector uint8_t) {
|
||||
+ static const __vector unsigned char hi01 = (const __vector unsigned char) {
|
||||
0x02, 0x03, 0x06, 0x07, 0x0a, 0x0b, 0x0e, 0x0f,
|
||||
0x12, 0x13, 0x16, 0x17, 0x1a, 0x1b, 0x1e, 0x1f};
|
||||
- static const __vector uint8_t lo02 = (const __vector uint8_t) {
|
||||
+ static const __vector unsigned char lo02 = (const __vector unsigned char) {
|
||||
0x00, 0x01, 0x08, 0x09, 0x10, 0x11, 0x18, 0x19,
|
||||
0x02, 0x03, 0x0a, 0x0b, 0x12, 0x13, 0x1a, 0x1b};
|
||||
- static const __vector uint8_t hi02 = (const __vector uint8_t) {
|
||||
+ static const __vector unsigned char hi02 = (const __vector unsigned char) {
|
||||
0x04, 0x05, 0x0c, 0x0d, 0x14, 0x15, 0x1c, 0x1d,
|
||||
0x06, 0x07, 0x0e, 0x0f, 0x16, 0x17, 0x1e, 0x1f};
|
||||
- static const __vector uint8_t epi64_low = (const __vector uint8_t) {
|
||||
+ static const __vector unsigned char epi64_low = (const __vector unsigned char) {
|
||||
0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,
|
||||
0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17};
|
||||
- static const __vector uint8_t epi64_hi = (const __vector uint8_t) {
|
||||
+ static const __vector unsigned char epi64_hi = (const __vector unsigned char) {
|
||||
0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f,
|
||||
0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1d, 0x1e, 0x1f};
|
||||
|
||||
for (kk = 0; kk < 8; kk++){
|
||||
- __vector uint8_t msk;
|
||||
+ __vector unsigned char msk;
|
||||
for (ii = 0; ii < 8; ii++){
|
||||
msk[ii] = 127-(16*ii+2*kk);
|
||||
msk[ii+8] = 127-(16*ii+2*kk+1);
|
||||
@@ -164,13 +164,13 @@ bitunshuffle1_altivec(void* _src, void* dest, const si
|
||||
|
||||
// At this stage each vector xmm1 contains the data from 16 adjacent bytes
|
||||
for (int ll = 0; ll < 8; ll++){
|
||||
- __vector uint8_t xmm = xmm1[ll];
|
||||
+ __vector unsigned char xmm = xmm1[ll];
|
||||
//helper_print(xmm, "vector transposed");
|
||||
for (kk = 0; kk < 8; kk++) {
|
||||
- __vector uint16_t tmp;
|
||||
- tmp = (__vector uint16_t) vec_bperm(xmm, masks[kk]);
|
||||
+ __vector unsigned short tmp;
|
||||
+ tmp = (__vector unsigned short) vec_bperm(xmm, masks[kk]);
|
||||
//printf("%d %d\n", vp, tmp[4]);
|
||||
- //helper_print((__vector uint8_t)tmp, "tmp");
|
||||
+ //helper_print((__vector unsigned char)tmp, "tmp");
|
||||
out_s[vp++] = tmp[4];
|
||||
}
|
||||
}
|
||||
@@ -182,7 +182,7 @@ int64_t bshuf_trans_byte_elem_16(const void* in, void*
|
||||
/* Transpose bytes within elements for 16 bit elements. */
|
||||
int64_t bshuf_trans_byte_elem_16(const void* in, void* out, const size_t size) {
|
||||
static const uint8_t bytesoftype = 2;
|
||||
- __vector uint8_t xmm0[2];
|
||||
+ __vector unsigned char xmm0[2];
|
||||
|
||||
for (size_t i = 0; i + 15 < size; i += 16) {
|
||||
for (int j = 0; j < bytesoftype; j++)
|
||||
@@ -202,7 +202,7 @@ int64_t bshuf_trans_byte_elem_32(const void* in, void*
|
||||
/* Transpose bytes within elements for 32 bit elements. */
|
||||
int64_t bshuf_trans_byte_elem_32(const void* in, void* out, const size_t size) {
|
||||
static const uint8_t bytesoftype = 4;
|
||||
- __vector uint8_t xmm0[4];
|
||||
+ __vector unsigned char xmm0[4];
|
||||
|
||||
for (size_t i = 0; i + 15 < size; i += 16) {
|
||||
for (int j = 0; j < bytesoftype; j++)
|
||||
@@ -222,7 +222,7 @@ int64_t bshuf_trans_byte_elem_64(const void* in, void*
|
||||
/* Transpose bytes within elements for 64 bit elements. */
|
||||
int64_t bshuf_trans_byte_elem_64(const void* in, void* out, const size_t size) {
|
||||
static const uint8_t bytesoftype = 8;
|
||||
- __vector uint8_t xmm0[8];
|
||||
+ __vector unsigned char xmm0[8];
|
||||
|
||||
for (size_t i = 0; i + 15 < size; i += 16) {
|
||||
for (int j = 0; j < bytesoftype; j++)
|
||||
@@ -242,7 +242,7 @@ int64_t bshuf_trans_byte_elem_128(const void* in, void
|
||||
/* Transpose bytes within elements for 128 bit elements. */
|
||||
int64_t bshuf_trans_byte_elem_128(const void* in, void* out, const size_t size) {
|
||||
static const uint8_t bytesoftype = 16;
|
||||
- __vector uint8_t xmm0[16];
|
||||
+ __vector unsigned char xmm0[16];
|
||||
|
||||
for (size_t i = 0; i + 15 < size; i += 16) {
|
||||
for (int j = 0; j < bytesoftype; j++)
|
||||
@@ -297,7 +297,7 @@ int64_t bshuf_trans_byte_elem_altivec(const void* in,
|
||||
|
||||
if ((elem_size % 16) == 0) {
|
||||
nchunk_elem = elem_size / 16;
|
||||
- TRANS_ELEM_TYPE(in, out, size, nchunk_elem, __vector uint8_t);
|
||||
+ TRANS_ELEM_TYPE(in, out, size, nchunk_elem, __vector unsigned char);
|
||||
count = bshuf_trans_byte_elem_128(out, tmp_buf,
|
||||
size * nchunk_elem);
|
||||
bshuf_trans_elem(tmp_buf, out, 16, nchunk_elem, size);
|
||||
@@ -334,7 +334,7 @@ int64_t bshuf_trans_bit_byte_altivec(const void* in, v
|
||||
uint8_t* out_b = (uint8_t*)out;
|
||||
int64_t count;
|
||||
size_t nbyte = elem_size * size;
|
||||
- __vector uint8_t data, masks[8];
|
||||
+ __vector unsigned char data, masks[8];
|
||||
size_t ii, kk;
|
||||
|
||||
CHECK_MULT_EIGHT(nbyte);
|
||||
@@ -347,9 +347,9 @@ int64_t bshuf_trans_bit_byte_altivec(const void* in, v
|
||||
for (ii = 0; ii + 15 < nbyte; ii += 16) {
|
||||
data = vec_xl(ii, in_b);
|
||||
for (kk = 0; kk < 8; kk++) {
|
||||
- __vector uint16_t tmp;
|
||||
+ __vector unsigned short tmp;
|
||||
uint16_t* oui16;
|
||||
- tmp = (__vector uint16_t) vec_bperm(data, masks[kk]);
|
||||
+ tmp = (__vector unsigned short) vec_bperm(data, masks[kk]);
|
||||
oui16 = (uint16_t*)&out_b[(ii + kk*nbyte) >> 3];
|
||||
*oui16 = tmp[4];
|
||||
}
|
||||
@@ -387,28 +387,28 @@ int64_t bshuf_trans_byte_bitrow_altivec(const void* in
|
||||
* the bytes. */
|
||||
int64_t bshuf_trans_byte_bitrow_altivec(const void* in, void* out, const size_t size,
|
||||
const size_t elem_size) {
|
||||
- static const __vector uint8_t epi8_low = (const __vector uint8_t) {
|
||||
+ static const __vector unsigned char epi8_low = (const __vector unsigned char) {
|
||||
0x00, 0x10, 0x01, 0x11, 0x02, 0x12, 0x03, 0x13,
|
||||
0x04, 0x14, 0x05, 0x15, 0x06, 0x16, 0x07, 0x17};
|
||||
- static const __vector uint8_t epi8_hi = (const __vector uint8_t) {
|
||||
+ static const __vector unsigned char epi8_hi = (const __vector unsigned char) {
|
||||
0x08, 0x18, 0x09, 0x19, 0x0a, 0x1a, 0x0b, 0x1b,
|
||||
0x0c, 0x1c, 0x0d, 0x1d, 0x0e, 0x1e, 0x0f, 0x1f};
|
||||
- static const __vector uint8_t epi16_low = (const __vector uint8_t) {
|
||||
+ static const __vector unsigned char epi16_low = (const __vector unsigned char) {
|
||||
0x00, 0x01, 0x10, 0x11, 0x02, 0x03, 0x12, 0x13,
|
||||
0x04, 0x05, 0x14, 0x15, 0x06, 0x07, 0x16, 0x17};
|
||||
- static const __vector uint8_t epi16_hi = (const __vector uint8_t) {
|
||||
+ static const __vector unsigned char epi16_hi = (const __vector unsigned char) {
|
||||
0x08, 0x09, 0x18, 0x19, 0x0a, 0x0b, 0x1a, 0x1b,
|
||||
0x0c, 0x0d, 0x1c, 0x1d, 0x0e, 0x0f, 0x1e, 0x1f};
|
||||
- static const __vector uint8_t epi32_low = (const __vector uint8_t) {
|
||||
+ static const __vector unsigned char epi32_low = (const __vector unsigned char) {
|
||||
0x00, 0x01, 0x02, 0x03, 0x10, 0x11, 0x12, 0x13,
|
||||
0x04, 0x05, 0x06, 0x07, 0x14, 0x15, 0x16, 0x17};
|
||||
- static const __vector uint8_t epi32_hi = (const __vector uint8_t) {
|
||||
+ static const __vector unsigned char epi32_hi = (const __vector unsigned char) {
|
||||
0x08, 0x09, 0x0a, 0x0b, 0x18, 0x19, 0x1a, 0x1b,
|
||||
0x0c, 0x0d, 0x0e, 0x0f, 0x1c, 0x1d, 0x1e, 0x1f};
|
||||
- static const __vector uint8_t epi64_low = (const __vector uint8_t) {
|
||||
+ static const __vector unsigned char epi64_low = (const __vector unsigned char) {
|
||||
0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07,
|
||||
0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17};
|
||||
- static const __vector uint8_t epi64_hi = (const __vector uint8_t) {
|
||||
+ static const __vector unsigned char epi64_hi = (const __vector unsigned char) {
|
||||
0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f,
|
||||
0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1d, 0x1e, 0x1f};
|
||||
|
||||
@@ -416,7 +416,7 @@ int64_t bshuf_trans_byte_bitrow_altivec(const void* in
|
||||
uint8_t* out_b = (uint8_t*)out;
|
||||
size_t nrows = 8 * elem_size;
|
||||
size_t nbyte_row = size / 8;
|
||||
- __vector uint8_t xmm0[16], xmm1[16];
|
||||
+ __vector unsigned char xmm0[16], xmm1[16];
|
||||
|
||||
CHECK_MULT_EIGHT(size);
|
||||
|
||||
@@ -543,7 +543,7 @@ int64_t bshuf_shuffle_bit_eightelem_altivec(const void
|
||||
const uint8_t* in_b = (const uint8_t*)in;
|
||||
uint8_t* out_b = (uint8_t*)out;
|
||||
size_t nbyte = elem_size * size;
|
||||
- __vector uint8_t masks[8], data;
|
||||
+ __vector unsigned char masks[8], data;
|
||||
|
||||
CHECK_MULT_EIGHT(size);
|
||||
|
||||
@@ -560,9 +560,9 @@ int64_t bshuf_shuffle_bit_eightelem_altivec(const void
|
||||
for (size_t jj = 0; jj + 15 < 8 * elem_size; jj += 16) {
|
||||
data = vec_xl(ii + jj, in_b);
|
||||
for (size_t kk = 0; kk < 8; kk++) {
|
||||
- __vector uint16_t tmp;
|
||||
+ __vector unsigned short tmp;
|
||||
uint16_t* oui16;
|
||||
- tmp = (__vector uint16_t) vec_bperm(data, masks[kk]);
|
||||
+ tmp = (__vector unsigned short) vec_bperm(data, masks[kk]);
|
||||
oui16 = (uint16_t*)&out_b[ii + (jj>>3) + kk * elem_size];
|
||||
*oui16 = tmp[4];
|
||||
}
|
||||
134
archivers/c-blosc2/files/patch-blosc_shuffle-altivec.c
Normal file
134
archivers/c-blosc2/files/patch-blosc_shuffle-altivec.c
Normal file
|
|
@ -0,0 +1,134 @@
|
|||
--- blosc/shuffle-altivec.c.orig 2024-08-12 12:43:11 UTC
|
||||
+++ blosc/shuffle-altivec.c
|
||||
@@ -27,7 +27,7 @@ shuffle2_altivec(uint8_t* const dest, const uint8_t* c
|
||||
const int32_t vectorizable_elements, const int32_t total_elements){
|
||||
static const int32_t bytesoftype = 2;
|
||||
uint32_t i, j;
|
||||
- __vector uint8_t xmm0[2];
|
||||
+ __vector unsigned char xmm0[2];
|
||||
|
||||
for (j = 0; j < vectorizable_elements; j += 16){
|
||||
/* Fetch 16 elements (32 bytes) */
|
||||
@@ -49,7 +49,7 @@ shuffle4_altivec(uint8_t* const dest, const uint8_t* c
|
||||
const int32_t vectorizable_elements, const int32_t total_elements){
|
||||
static const int32_t bytesoftype = 4;
|
||||
int32_t i, j;
|
||||
- __vector uint8_t xmm0[4];
|
||||
+ __vector unsigned char xmm0[4];
|
||||
|
||||
for (j = 0; j < vectorizable_elements; j += 16)
|
||||
{
|
||||
@@ -75,7 +75,7 @@ shuffle8_altivec(uint8_t* const dest, const uint8_t* c
|
||||
const int32_t vectorizable_elements, const int32_t total_elements) {
|
||||
static const uint8_t bytesoftype = 8;
|
||||
int32_t i, j;
|
||||
- __vector uint8_t xmm0[8];
|
||||
+ __vector unsigned char xmm0[8];
|
||||
|
||||
for (j = 0; j < vectorizable_elements; j += 16)
|
||||
{
|
||||
@@ -98,7 +98,7 @@ shuffle16_altivec(uint8_t* const dest, const uint8_t*
|
||||
const int32_t vectorizable_elements, const int32_t total_elements) {
|
||||
static const int32_t bytesoftype = 16;
|
||||
int32_t i, j;
|
||||
- __vector uint8_t xmm0[16];
|
||||
+ __vector unsigned char xmm0[16];
|
||||
|
||||
for (j = 0; j < vectorizable_elements; j += 16)
|
||||
{
|
||||
@@ -123,7 +123,7 @@ shuffle16_tiled_altivec(uint8_t* const dest, const uin
|
||||
const int32_t bytesoftype) {
|
||||
int32_t j, k;
|
||||
const int32_t vecs_per_el_rem = bytesoftype & 0xF;
|
||||
- __vector uint8_t xmm[16];
|
||||
+ __vector unsigned char xmm[16];
|
||||
|
||||
for (j = 0; j < vectorizable_elements; j += 16) {
|
||||
/* Advance the offset into the type by the vector size (in bytes), unless this is
|
||||
@@ -154,7 +154,7 @@ unshuffle2_altivec(uint8_t* const dest, const uint8_t*
|
||||
const int32_t vectorizable_elements, const int32_t total_elements) {
|
||||
static const int32_t bytesoftype = 2;
|
||||
uint32_t i, j;
|
||||
- __vector uint8_t xmm0[2], xmm1[2];
|
||||
+ __vector unsigned char xmm0[2], xmm1[2];
|
||||
|
||||
for (j = 0; j < vectorizable_elements; j += 16) {
|
||||
/* Load 16 elements (32 bytes) into 2 vectors registers. */
|
||||
@@ -178,7 +178,7 @@ unshuffle4_altivec(uint8_t* const dest, const uint8_t*
|
||||
const int32_t vectorizable_elements, const int32_t total_elements) {
|
||||
static const int32_t bytesoftype = 4;
|
||||
uint32_t i, j;
|
||||
- __vector uint8_t xmm0[4], xmm1[4];
|
||||
+ __vector unsigned char xmm0[4], xmm1[4];
|
||||
|
||||
for (j = 0; j < vectorizable_elements; j += 16) {
|
||||
/* Load 16 elements (64 bytes) into 4 vectors registers. */
|
||||
@@ -193,11 +193,11 @@ unshuffle4_altivec(uint8_t* const dest, const uint8_t*
|
||||
/* Shuffle 2-byte words */
|
||||
for (i = 0; i < 2; i++) {
|
||||
/* Compute the low 32 bytes */
|
||||
- xmm0[i] = (__vector uint8_t) vec_vmrghh((__vector uint16_t)xmm1[i * 2],
|
||||
- (__vector uint16_t) xmm1[i * 2 + 1]);
|
||||
+ xmm0[i] = (__vector unsigned char) vec_vmrghh((__vector unsigned short)xmm1[i * 2],
|
||||
+ (__vector unsigned short) xmm1[i * 2 + 1]);
|
||||
/* Compute the hi 32 bytes */
|
||||
- xmm0[i+2] = (__vector uint8_t) vec_vmrglh((__vector uint16_t)xmm1[i * 2],
|
||||
- (__vector uint16_t)xmm1[i * 2 + 1]);
|
||||
+ xmm0[i+2] = (__vector unsigned char) vec_vmrglh((__vector unsigned short)xmm1[i * 2],
|
||||
+ (__vector unsigned short)xmm1[i * 2 + 1]);
|
||||
}
|
||||
/* Store the result vectors in proper order */
|
||||
vec_xst(xmm0[0], bytesoftype * j, dest);
|
||||
@@ -213,7 +213,7 @@ unshuffle8_altivec(uint8_t* const dest, const uint8_t*
|
||||
const int32_t vectorizable_elements, const int32_t total_elements) {
|
||||
static const uint8_t bytesoftype = 8;
|
||||
uint32_t i, j;
|
||||
- __vector uint8_t xmm0[8], xmm1[8];
|
||||
+ __vector unsigned char xmm0[8], xmm1[8];
|
||||
|
||||
// Initialize permutations for writing
|
||||
for (j = 0; j < vectorizable_elements; j += 16) {
|
||||
@@ -227,17 +227,17 @@ unshuffle8_altivec(uint8_t* const dest, const uint8_t*
|
||||
}
|
||||
/* Shuffle 2-byte words */
|
||||
for (i = 0; i < 4; i++) {
|
||||
- xmm0[i] = (__vector uint8_t)vec_vmrghh((__vector uint16_t)xmm1[i * 2],
|
||||
- (__vector uint16_t)xmm1[i * 2 + 1]);
|
||||
- xmm0[4 + i] = (__vector uint8_t)vec_vmrglh((__vector uint16_t)xmm1[i * 2],
|
||||
- (__vector uint16_t)xmm1[i * 2 + 1]);
|
||||
+ xmm0[i] = (__vector unsigned char)vec_vmrghh((__vector unsigned short)xmm1[i * 2],
|
||||
+ (__vector unsigned short)xmm1[i * 2 + 1]);
|
||||
+ xmm0[4 + i] = (__vector unsigned char)vec_vmrglh((__vector unsigned short)xmm1[i * 2],
|
||||
+ (__vector unsigned short)xmm1[i * 2 + 1]);
|
||||
}
|
||||
/* Shuffle 4-byte dwords */
|
||||
for (i = 0; i < 4; i++) {
|
||||
- xmm1[i] = (__vector uint8_t)vec_vmrghw((__vector uint32_t)xmm0[i * 2],
|
||||
- (__vector uint32_t)xmm0[i * 2 + 1]);
|
||||
- xmm1[4 + i] = (__vector uint8_t)vec_vmrglw((__vector uint32_t)xmm0[i * 2],
|
||||
- (__vector uint32_t)xmm0[i * 2 + 1]);
|
||||
+ xmm1[i] = (__vector unsigned char)vec_vmrghw((__vector unsigned int)xmm0[i * 2],
|
||||
+ (__vector unsigned int)xmm0[i * 2 + 1]);
|
||||
+ xmm1[4 + i] = (__vector unsigned char)vec_vmrglw((__vector unsigned int)xmm0[i * 2],
|
||||
+ (__vector unsigned int)xmm0[i * 2 + 1]);
|
||||
}
|
||||
/* Store the result vectors in proper order */
|
||||
vec_xst(xmm1[0], bytesoftype * j, dest);
|
||||
@@ -258,7 +258,7 @@ unshuffle16_altivec(uint8_t* const dest, const uint8_t
|
||||
const int32_t vectorizable_elements, const int32_t total_elements) {
|
||||
static const int32_t bytesoftype = 16;
|
||||
uint32_t i, j;
|
||||
- __vector uint8_t xmm0[16];
|
||||
+ __vector unsigned char xmm0[16];
|
||||
|
||||
for (j = 0; j < vectorizable_elements; j += 16) {
|
||||
/* Load 16 elements (64 bytes) into 4 vectors registers. */
|
||||
@@ -282,7 +282,7 @@ unshuffle16_tiled_altivec(uint8_t* const dest, const u
|
||||
const int32_t bytesoftype) {
|
||||
int32_t i, j, offset_into_type;
|
||||
const int32_t vecs_per_el_rem = bytesoftype & 0xF;
|
||||
- __vector uint8_t xmm[16];
|
||||
+ __vector unsigned char xmm[16];
|
||||
|
||||
|
||||
/* Advance the offset into the type by the vector size (in bytes), unless this is
|
||||
58
archivers/c-blosc2/files/patch-blosc_transpose-altivec.h
Normal file
58
archivers/c-blosc2/files/patch-blosc_transpose-altivec.h
Normal file
|
|
@ -0,0 +1,58 @@
|
|||
--- blosc/transpose-altivec.h.orig 2024-08-12 12:42:34 UTC
|
||||
+++ blosc/transpose-altivec.h
|
||||
@@ -15,18 +15,18 @@
|
||||
|
||||
#include <stdint.h>
|
||||
|
||||
-static const __vector uint8_t even = (const __vector uint8_t) {
|
||||
+static const __vector unsigned char even = (const __vector unsigned char) {
|
||||
0x00, 0x02, 0x04, 0x06, 0x08, 0x0a, 0x0c, 0x0e,
|
||||
0x10, 0x12, 0x14, 0x16, 0x18, 0x1a, 0x1c, 0x1e};
|
||||
|
||||
-static const __vector uint8_t odd = (const __vector uint8_t) {
|
||||
+static const __vector unsigned char odd = (const __vector unsigned char) {
|
||||
0x01, 0x03, 0x05, 0x07, 0x09, 0x0b, 0x0d, 0x0f,
|
||||
0x11, 0x13, 0x15, 0x17, 0x19, 0x1b, 0x1d, 0x1f};
|
||||
|
||||
|
||||
/* Transpose inplace 2 vectors of 16 bytes in src into dst. */
|
||||
-static void transpose2x16(__vector uint8_t *xmm0) {
|
||||
- __vector uint8_t xmm1[2];
|
||||
+static void transpose2x16(__vector unsigned char *xmm0) {
|
||||
+ __vector unsigned char xmm1[2];
|
||||
xmm1[0] = vec_perm(xmm0[0], xmm0[1], even);
|
||||
xmm1[1] = vec_perm(xmm0[0], xmm0[1], odd);
|
||||
|
||||
@@ -38,8 +38,8 @@ static void transpose2x16(__vector uint8_t *xmm0) {
|
||||
|
||||
/* Transpose inplace 4 vectors of 16 bytes in src into dst.
|
||||
* Total cost: 8 calls to vec_perm. */
|
||||
-static void transpose4x16(__vector uint8_t *xmm0) {
|
||||
- __vector uint8_t xmm1[4];
|
||||
+static void transpose4x16(__vector unsigned char *xmm0) {
|
||||
+ __vector unsigned char xmm1[4];
|
||||
|
||||
/* Transpose vectors 0-1*/
|
||||
xmm1[0] = vec_perm(xmm0[0], xmm0[1], even);
|
||||
@@ -56,8 +56,8 @@ static void transpose4x16(__vector uint8_t *xmm0) {
|
||||
|
||||
/* Transpose inplace 8 vectors of 16 bytes in src into dst.
|
||||
* Total cost: 24 calls to vec_perm. */
|
||||
-static void transpose8x16(__vector uint8_t *xmm0) {
|
||||
- __vector uint8_t xmm1[8];
|
||||
+static void transpose8x16(__vector unsigned char *xmm0) {
|
||||
+ __vector unsigned char xmm1[8];
|
||||
|
||||
/* Transpose vectors 0-1*/
|
||||
for (int i = 0; i < 8; i += 2){
|
||||
@@ -85,8 +85,8 @@ static void transpose8x16(__vector uint8_t *xmm0) {
|
||||
|
||||
/* Transpose inplace 16 vectors of 16 bytes in src into dst.
|
||||
* Total cost: 64 calls to vec_perm. */
|
||||
-static void transpose16x16(__vector uint8_t * xmm0){
|
||||
- __vector uint8_t xmm1[16];
|
||||
+static void transpose16x16(__vector unsigned char * xmm0){
|
||||
+ __vector unsigned char xmm1[16];
|
||||
/* Transpose vectors 0-1*/
|
||||
for (int i = 0; i < 16; i += 2){
|
||||
xmm1[i] = vec_perm(xmm0[i], xmm0[i+1], even);
|
||||
|
|
@ -1,10 +0,0 @@
|
|||
--- plugins/codecs/ndlz/xxhash.h.orig 2024-06-20 08:35:59 UTC
|
||||
+++ plugins/codecs/ndlz/xxhash.h
|
||||
@@ -3838,6 +3838,7 @@ XXH_vmlal_high_u32(uint64x2_t acc, uint32x4_t lhs, uin
|
||||
# if defined(__s390x__)
|
||||
# include <s390intrin.h>
|
||||
# else
|
||||
+# define vector __vector
|
||||
# include <altivec.h>
|
||||
# endif
|
||||
|
||||
|
|
@ -1,5 +1,6 @@
|
|||
PORTNAME= josm
|
||||
PORTVERSION= 19128
|
||||
PORTREVISION= 1
|
||||
CATEGORIES= astro java
|
||||
MASTER_SITES= https://josm.openstreetmap.de/download/
|
||||
DISTNAME= ${PORTNAME}-snapshot-${PORTVERSION}.jar
|
||||
|
|
@ -17,7 +18,7 @@ NO_WRKSUBDIR= yes
|
|||
|
||||
USES= zip:infozip
|
||||
USE_JAVA= yes
|
||||
JAVA_VERSION= 8+
|
||||
JAVA_VERSION= 11+
|
||||
|
||||
NO_BUILD= yes
|
||||
NO_ARCH= yes
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
PORTNAME= cantata
|
||||
DISTVERSIONPREFIX= v
|
||||
DISTVERSION= 3.2.0
|
||||
DISTVERSION= 3.2.1
|
||||
CATEGORIES= audio kde
|
||||
|
||||
MAINTAINER= kde@FreeBSD.org
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1717390697
|
||||
SHA256 (nullobsi-cantata-v3.2.0_GH0.tar.gz) = bdebab0a781e98f058032374bac5d3375f2a9dcaa2906a6b125d63fb5aae5d17
|
||||
SIZE (nullobsi-cantata-v3.2.0_GH0.tar.gz) = 4783573
|
||||
TIMESTAMP = 1723257307
|
||||
SHA256 (nullobsi-cantata-v3.2.1_GH0.tar.gz) = ca38417f355a1eea475efcb73a383b433836caa74f542482d6b9e51a2fb70b0f
|
||||
SIZE (nullobsi-cantata-v3.2.1_GH0.tar.gz) = 4784249
|
||||
|
|
|
|||
|
|
@ -1,14 +1,9 @@
|
|||
PORTNAME= surge-synthesizer-xt
|
||||
DISTVERSIONPREFIX= release_xt_
|
||||
DISTVERSION= 1.3.2
|
||||
DISTVERSION= 1.3.4
|
||||
CATEGORIES= audio
|
||||
PKGNAMESUFFIX= -lv2
|
||||
|
||||
PATCH_SITES= https://github.com/${GH_ACCOUNT}/${GH_PROJECT}/commit/
|
||||
PATCHFILES= 8a2fb0c5522d9872b79aa6053253cf252dcf81fa.patch:-p1 \
|
||||
373971b24477abb1b7f5a18657b0fb48ef5177ca.patch:-p1 \
|
||||
90e36f5be98ba12a513e53401c89732ae7fd11b3.patch:-p1
|
||||
|
||||
MAINTAINER= yuri@FreeBSD.org
|
||||
COMMENT= Surge Synthesizer (XT) LV2 and VST plug-in
|
||||
WWW= https://surge-synthesizer.github.io/
|
||||
|
|
@ -34,7 +29,7 @@ LIB_DEPENDS= libfontconfig.so:x11-fonts/fontconfig \
|
|||
libxcb-util.so:x11/xcb-util
|
||||
LIB_DEPENDS+= libasound.so:audio/alsa-lib # pending https://github.com/surge-synthesizer/surge/issues/5997 resolution
|
||||
|
||||
USES= cmake compiler:c++17-lang gnome localbase:ldflags pkgconfig python:build shebangfix xorg
|
||||
USES= cmake compiler:c++17-lang gnome localbase:ldflags pkgconfig python:build shebangfix xorg # older llvm compiler fails because of -Werror -Wno-nan-infinity-disabled
|
||||
USE_GNOME= cairo
|
||||
USE_XORG= x11 xcb xcursor xinerama xrandr
|
||||
|
||||
|
|
@ -48,7 +43,7 @@ CMAKE_ON= SURGE_BUILD_LV2 \
|
|||
SURGE_SKIP_VST3
|
||||
CMAKE_OFF= JUCE_PLUGINHOST_VST3 JUCE_PLUGINHOST_VST
|
||||
|
||||
CFLAGS+= -Wno-nan-infinity-disabled # workaround for https://github.com/surge-synthesizer/surge/issues/7730
|
||||
CFLAGS+= -Wno-nan-infinity-disabled -Wno-unknown-warning-option # workaround for https://github.com/surge-synthesizer/surge/issues/7730
|
||||
CXXFLAGS+= -DPLUGIN_API="" -Dstricmp=strcasecmp -Dstrnicmp=strncasecmp -Dstrnicmp16=strncasecmp # for Juce
|
||||
|
||||
.if !defined(WITH_DEBUG)
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
TIMESTAMP = 1720645370
|
||||
SHA256 (surge-synthesizer-surge-release_xt_1.3.2_GH0.tar.gz) = fbffb8cfd23af8f11a8c695fa10d722f9bf6c306198ad3c4b1084973b4fcab3f
|
||||
SIZE (surge-synthesizer-surge-release_xt_1.3.2_GH0.tar.gz) = 278603004
|
||||
TIMESTAMP = 1723513443
|
||||
SHA256 (surge-synthesizer-surge-release_xt_1.3.4_GH0.tar.gz) = 38545c4bf290dd96acce587924b9aed62662ffbff33cea1fe907339b5ab15810
|
||||
SIZE (surge-synthesizer-surge-release_xt_1.3.4_GH0.tar.gz) = 278634750
|
||||
SHA256 (surge-synthesizer-eurorack-f7614460cd3e295f6f6132f9052984c7bca9a69d_GH0.tar.gz) = c59a242525c94b648ed614463061cd648a76b7dd36268ba870faefbb0d3c3458
|
||||
SIZE (surge-synthesizer-eurorack-f7614460cd3e295f6f6132f9052984c7bca9a69d_GH0.tar.gz) = 577831
|
||||
SHA256 (fmtlib-fmt-67c0c0c09cf74d407d71a29c194761981614df3e_GH0.tar.gz) = af750af8635751938b87f6b4f40f58410c6bf87bd8d2ec53e2725b773b883e53
|
||||
|
|
@ -49,9 +49,3 @@ SHA256 (gulrak-filesystem-614bbe87b80435d87ab8791564370e0c1d13627d_GH0.tar.gz) =
|
|||
SIZE (gulrak-filesystem-614bbe87b80435d87ab8791564370e0c1d13627d_GH0.tar.gz) = 177009
|
||||
SHA256 (richgel999-miniz-16413c213de38e703d883006193734e8b1178d5d_GH0.tar.gz) = e80e4eab8cfb529e53beefa2021cb47f302a2519d81b4660a6b2cdc5dd791fb9
|
||||
SIZE (richgel999-miniz-16413c213de38e703d883006193734e8b1178d5d_GH0.tar.gz) = 283946
|
||||
SHA256 (8a2fb0c5522d9872b79aa6053253cf252dcf81fa.patch) = 4bc631f9af589264c6114edc9da881df3127bb1ffdfc5662d7ccfebf6b964182
|
||||
SIZE (8a2fb0c5522d9872b79aa6053253cf252dcf81fa.patch) = 1704
|
||||
SHA256 (373971b24477abb1b7f5a18657b0fb48ef5177ca.patch) = 4ac0ce951e3855cdcf2ff6dcbd5fdcb8d1ec68a1c55048d85bd0978ca594affa
|
||||
SIZE (373971b24477abb1b7f5a18657b0fb48ef5177ca.patch) = 794
|
||||
SHA256 (90e36f5be98ba12a513e53401c89732ae7fd11b3.patch) = 8cc97c2bbb49f8ed92ae8ac862ee9736bac0235eda3b09373886230ee0bb4b60
|
||||
SIZE (90e36f5be98ba12a513e53401c89732ae7fd11b3.patch) = 1899
|
||||
|
|
|
|||
|
|
@ -17,6 +17,7 @@ USE_LDCONFIG= yes
|
|||
USE_GITHUB= yes
|
||||
GH_ACCOUNT= lh3
|
||||
|
||||
CFLAGS_powerpc64le= -DNO_WARN_X86_INTRINSICS
|
||||
MAKE_ARGS= CFLAGS="${CFLAGS}"
|
||||
|
||||
BINARY_ALIAS= gcc=${CC}
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
PORTNAME= foldingathome
|
||||
DISTVERSION= 7.6.21
|
||||
CATEGORIES= biology linux
|
||||
MASTER_SITES= https://download.foldingathome.org/releases/public/release/fahclient/centos-6.7-64bit/v${DISTVERSION:R}/
|
||||
MASTER_SITES= https://download.foldingathome.org/releases/v7/public/fahclient/centos-6.7-64bit/release/
|
||||
PKGNAMEPREFIX= linux-
|
||||
DISTNAME= fahclient-${DISTVERSION}-1
|
||||
EXTRACT_SUFX= .x86_64.rpm
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
PORTNAME= nvc
|
||||
DISTVERSIONPREFIX= r
|
||||
DISTVERSION= 1.13.1
|
||||
DISTVERSION= 1.13.2
|
||||
CATEGORIES= cad
|
||||
|
||||
MAINTAINER= yuri@FreeBSD.org
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1721973330
|
||||
SHA256 (nickg-nvc-r1.13.1_GH0.tar.gz) = 4227bc0b9aea1d71ae557c420fdcfaca24f886d21311ef157dd89f4f97a6af47
|
||||
SIZE (nickg-nvc-r1.13.1_GH0.tar.gz) = 1958325
|
||||
TIMESTAMP = 1723441910
|
||||
SHA256 (nickg-nvc-r1.13.2_GH0.tar.gz) = 93977776cfde8bc0b13dfa80c53ee0e1de059fcf0e474acab0dbfc8eae0441c9
|
||||
SIZE (nickg-nvc-r1.13.2_GH0.tar.gz) = 1960586
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
PORTNAME= cego
|
||||
PORTVERSION= 2.49.6
|
||||
PORTVERSION= 2.49.7
|
||||
|
||||
CATEGORIES= databases
|
||||
MASTER_SITES= http://www.lemke-it.com/
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1721458143
|
||||
SHA256 (cego-2.49.6.tar.gz) = dd9e5bb7e075a7e28f6538abcdcecc0168914aba6ee99abae6024099be627fda
|
||||
SIZE (cego-2.49.6.tar.gz) = 3225275
|
||||
TIMESTAMP = 1723459936
|
||||
SHA256 (cego-2.49.7.tar.gz) = 690bfbe6ccc7281b751e76426e9206bc2ab1ab8afcf3e7ae95e2dd464772e2a5
|
||||
SIZE (cego-2.49.7.tar.gz) = 3225366
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@ CATEGORIES= databases
|
|||
MASTER_SITES= SAMBA
|
||||
PKGNAMESUFFIX?= 15
|
||||
|
||||
MAINTAINER= timur@FreeBSD.org
|
||||
MAINTAINER= samba@FreeBSD.org
|
||||
COMMENT= LDAP-like embedded database
|
||||
WWW= https://ldb.samba.org/
|
||||
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@ CATEGORIES= databases
|
|||
MASTER_SITES= SAMBA
|
||||
PKGNAMESUFFIX?= 20
|
||||
|
||||
MAINTAINER= timur@FreeBSD.org
|
||||
MAINTAINER= samba@FreeBSD.org
|
||||
COMMENT= LDAP-like embedded database
|
||||
WWW= https://ldb.samba.org/
|
||||
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@ CATEGORIES= databases
|
|||
MASTER_SITES= SAMBA
|
||||
PKGNAMESUFFIX?= 21
|
||||
|
||||
MAINTAINER= timur@FreeBSD.org
|
||||
MAINTAINER= samba@FreeBSD.org
|
||||
COMMENT= LDAP-like embedded database
|
||||
WWW= https://ldb.samba.org/
|
||||
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@ CATEGORIES= databases
|
|||
MASTER_SITES= SAMBA
|
||||
PKGNAMESUFFIX?= 22
|
||||
|
||||
MAINTAINER= timur@FreeBSD.org
|
||||
MAINTAINER= samba@FreeBSD.org
|
||||
COMMENT= LDAP-like embedded database
|
||||
WWW= https://ldb.samba.org/
|
||||
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@ CATEGORIES= databases
|
|||
MASTER_SITES= SAMBA
|
||||
PKGNAMESUFFIX?= 25
|
||||
|
||||
MAINTAINER= xavier.beaudouin@klarasystems.com
|
||||
MAINTAINER= samba@FreeBSD.org
|
||||
COMMENT= LDAP-like embedded database
|
||||
WWW= https://ldb.samba.org/
|
||||
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@ CATEGORIES= databases
|
|||
MASTER_SITES= SAMBA
|
||||
PKGNAMESUFFIX?= ${PORTVERSION:C/([[:digit:]]+)[.]([[:digit:]]+).*/\1\2/}
|
||||
|
||||
MAINTAINER= 0mp@FreeBSD.org
|
||||
MAINTAINER= samba@FreeBSD.org
|
||||
COMMENT= LDAP-like embedded database
|
||||
WWW= https://ldb.samba.org/
|
||||
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@ PORTEPOCH= 1
|
|||
CATEGORIES= databases
|
||||
MASTER_SITES= SAMBA
|
||||
|
||||
MAINTAINER= timur@FreeBSD.org
|
||||
MAINTAINER= samba@FreeBSD.org
|
||||
COMMENT= Trivial Database
|
||||
WWW= https://tdb.samba.org/
|
||||
|
||||
|
|
|
|||
|
|
@ -107,6 +107,7 @@
|
|||
SUBDIR += R-cran-praise
|
||||
SUBDIR += R-cran-prettycode
|
||||
SUBDIR += R-cran-prettyunits
|
||||
SUBDIR += R-cran-profvis
|
||||
SUBDIR += R-cran-progress
|
||||
SUBDIR += R-cran-progressr
|
||||
SUBDIR += R-cran-promises
|
||||
|
|
@ -143,6 +144,7 @@
|
|||
SUBDIR += R-cran-timechange
|
||||
SUBDIR += R-cran-tinytest
|
||||
SUBDIR += R-cran-tzdb
|
||||
SUBDIR += R-cran-urlchecker
|
||||
SUBDIR += R-cran-usethis
|
||||
SUBDIR += R-cran-uuid
|
||||
SUBDIR += R-cran-vcd
|
||||
|
|
|
|||
23
devel/R-cran-profvis/Makefile
Normal file
23
devel/R-cran-profvis/Makefile
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
PORTNAME= profvis
|
||||
DISTVERSION= 0.3.8
|
||||
CATEGORIES= devel
|
||||
DISTNAME= ${PORTNAME}_${DISTVERSION}
|
||||
|
||||
MAINTAINER= uzsolt@FreeBSD.org
|
||||
COMMENT= Interactive visualizations for profiling R code
|
||||
WWW= https://cran.r-project.org/web/packages/profvis/
|
||||
|
||||
LICENSE= GPLv3
|
||||
LICENSE_FILE= ${WRKSRC}/LICENSE
|
||||
|
||||
CRAN_DEPENDS= R-cran-htmlwidgets>=0.3.2:www/R-cran-htmlwidgets \
|
||||
R-cran-purrr>0:devel/R-cran-purrr \
|
||||
R-cran-rlang>=0.4.9:devel/R-cran-rlang \
|
||||
R-cran-stringr>0:textproc/R-cran-stringr \
|
||||
R-cran-vctrs>0:devel/R-cran-vctrs
|
||||
BUILD_DEPENDS= ${CRAN_DEPENDS}
|
||||
RUN_DEPENDS= ${CRAN_DEPENDS}
|
||||
|
||||
USES= cran:auto-plist,compiles
|
||||
|
||||
.include <bsd.port.mk>
|
||||
3
devel/R-cran-profvis/distinfo
Normal file
3
devel/R-cran-profvis/distinfo
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
TIMESTAMP = 1723549120
|
||||
SHA256 (profvis_0.3.8.tar.gz) = ec02c75bc9907a73564e691adfa8e06651ca0bd73b7915412960231cd265b4b2
|
||||
SIZE (profvis_0.3.8.tar.gz) = 149012
|
||||
2
devel/R-cran-profvis/pkg-descr
Normal file
2
devel/R-cran-profvis/pkg-descr
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
Profvis is a tool for visualizing code profiling data from R. It creates a web
|
||||
page which provides a graphical interface for exploring the data.
|
||||
20
devel/R-cran-urlchecker/Makefile
Normal file
20
devel/R-cran-urlchecker/Makefile
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
PORTNAME= urlchecker
|
||||
DISTVERSION= 1.0.1
|
||||
CATEGORIES= devel
|
||||
DISTNAME= ${PORTNAME}_${DISTVERSION}
|
||||
|
||||
MAINTAINER= uzsolt@FreeBSD.org
|
||||
COMMENT= URL checking tools
|
||||
WWW= https://cran.r-project.org/web/packages/urlchecker/
|
||||
|
||||
LICENSE= GPLv3
|
||||
|
||||
CRAN_DEPENDS= R-cran-cli>=2.4.0:devel/R-cran-cli \
|
||||
R-cran-curl>0:ftp/R-cran-curl \
|
||||
R-cran-xml2>0:textproc/R-cran-xml2
|
||||
BUILD_DEPENDS= ${CRAN_DEPENDS}
|
||||
RUN_DEPENDS= ${CRAN_DEPENDS}
|
||||
|
||||
USES= cran:auto-plist
|
||||
|
||||
.include <bsd.port.mk>
|
||||
3
devel/R-cran-urlchecker/distinfo
Normal file
3
devel/R-cran-urlchecker/distinfo
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
TIMESTAMP = 1723569179
|
||||
SHA256 (urlchecker_1.0.1.tar.gz) = 62165ddbe1b748b58c71a50c8f07fdde6f3d19a7b39787b9fa2b4f9216250318
|
||||
SIZE (urlchecker_1.0.1.tar.gz) = 13340
|
||||
3
devel/R-cran-urlchecker/pkg-descr
Normal file
3
devel/R-cran-urlchecker/pkg-descr
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
Provide the URL checking tools available in R 4.1+ as a package for earlier
|
||||
versions of R. Also uses concurrent requests so can be much faster than the
|
||||
serial versions.
|
||||
|
|
@ -1,6 +1,6 @@
|
|||
PORTNAME= adacurses
|
||||
DISTVERSION= 20211021
|
||||
PORTREVISION= 1
|
||||
PORTREVISION= 2
|
||||
CATEGORIES= devel
|
||||
MASTER_SITES= ftp://ftp.invisible-island.net/AdaCurses/
|
||||
DISTNAME= AdaCurses-${DISTVERSION}
|
||||
|
|
@ -12,8 +12,9 @@ WWW= https://invisible-island.net/ncurses/ncurses-Ada95.html
|
|||
LICENSE= MIT
|
||||
LICENSE_FILE= ${WRKSRC}/README
|
||||
|
||||
#BUILD_DEPENDS= gsed:textproc/gsed
|
||||
#BINARY_ALIAS= sed=${LOCALBASE}/bin/gsed
|
||||
BUILD_DEPENDS= gprbuild>0:devel/gprbuild \
|
||||
gsed:textproc/gsed
|
||||
BINARY_ALIAS= sed=${LOCALBASE}/bin/gsed
|
||||
|
||||
USES= ada autoreconf gmake ncurses pkgconfig tar:tgz
|
||||
|
||||
|
|
|
|||
|
|
@ -72,5 +72,42 @@ include/%%atic%%.ads
|
|||
include/%%atic%%_constants.ads
|
||||
include/adacurses/terminal_interface.ads
|
||||
lib/adacurses/libAdaCurses.a
|
||||
lib/%%atic%%-aux.ali
|
||||
lib/%%atic%%-forms-field_types-alpha.ali
|
||||
lib/%%atic%%-forms-field_types-alphanumeric.ali
|
||||
lib/%%atic%%-forms-field_types-enumeration-ada.ali
|
||||
lib/%%atic%%-forms-field_types-enumeration.ali
|
||||
lib/%%atic%%-forms-field_types-intfield.ali
|
||||
lib/%%atic%%-forms-field_types-ipv4_address.ali
|
||||
lib/%%atic%%-forms-field_types-numeric.ali
|
||||
lib/%%atic%%-forms-field_types-regexp.ali
|
||||
lib/%%atic%%-forms-field_types-user-choice.ali
|
||||
lib/%%atic%%-forms-field_types-user.ali
|
||||
lib/%%atic%%-forms-field_types.ali
|
||||
lib/%%atic%%-forms-field_user_data.ali
|
||||
lib/%%atic%%-forms-form_user_data.ali
|
||||
lib/%%atic%%-forms.ali
|
||||
lib/%%atic%%-menus-item_user_data.ali
|
||||
lib/%%atic%%-menus-menu_user_data.ali
|
||||
lib/%%atic%%-menus.ali
|
||||
lib/%%atic%%-mouse.ali
|
||||
lib/%%atic%%-panels-user_data.ali
|
||||
lib/%%atic%%-panels.ali
|
||||
lib/%%atic%%-putwin.ali
|
||||
lib/%%atic%%-termcap.ali
|
||||
lib/%%atic%%-terminfo.ali
|
||||
lib/%%atic%%-text_io-aux.ali
|
||||
lib/%%atic%%-text_io-complex_io.ali
|
||||
lib/%%atic%%-text_io-decimal_io.ali
|
||||
lib/%%atic%%-text_io-enumeration_io.ali
|
||||
lib/%%atic%%-text_io-fixed_io.ali
|
||||
lib/%%atic%%-text_io-float_io.ali
|
||||
lib/%%atic%%-text_io-integer_io.ali
|
||||
lib/%%atic%%-text_io-modular_io.ali
|
||||
lib/%%atic%%-text_io.ali
|
||||
lib/%%atic%%-trace.ali
|
||||
lib/%%atic%%.ali
|
||||
lib/%%atic%%_constants.ali
|
||||
lib/adacurses/terminal_interface.ali
|
||||
lib/gnat/adacurses.gpr
|
||||
share/man/man1/adacurses-config.1.gz
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
PORTNAME= aws-c-common
|
||||
DISTVERSIONPREFIX= v
|
||||
DISTVERSION= 0.9.25
|
||||
DISTVERSION= 0.9.26
|
||||
PORTEPOCH= 1
|
||||
CATEGORIES= devel
|
||||
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1722636953
|
||||
SHA256 (awslabs-aws-c-common-v0.9.25_GH0.tar.gz) = 443f3268387715e6e2c417a87114a6b42873aeeebc793d3f6f631323e7c48a80
|
||||
SIZE (awslabs-aws-c-common-v0.9.25_GH0.tar.gz) = 604565
|
||||
TIMESTAMP = 1723543787
|
||||
SHA256 (awslabs-aws-c-common-v0.9.26_GH0.tar.gz) = 667bcd9da22d4e9823b6fd73f96ae1391c25a43368528abea41fd5ba044a4c0a
|
||||
SIZE (awslabs-aws-c-common-v0.9.26_GH0.tar.gz) = 605432
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
PORTNAME= aws-sdk-cpp
|
||||
DISTVERSION= 1.11.376
|
||||
DISTVERSION= 1.11.381
|
||||
CATEGORIES= devel
|
||||
|
||||
MAINTAINER= eduardo@FreeBSD.org
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1722639508
|
||||
SHA256 (aws-aws-sdk-cpp-1.11.376_GH0.tar.gz) = 97dea476f13dedde2a91a3aa33ba9c05085c428c22189e54847e41d9c428ae04
|
||||
SIZE (aws-aws-sdk-cpp-1.11.376_GH0.tar.gz) = 56272822
|
||||
TIMESTAMP = 1723422866
|
||||
SHA256 (aws-aws-sdk-cpp-1.11.381_GH0.tar.gz) = 4f523a26a4b225f08fee2b3883e0fbbfcf012df60236097ecddd858b618bd6ea
|
||||
SIZE (aws-aws-sdk-cpp-1.11.381_GH0.tar.gz) = 56336380
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
PORTNAME= bacon
|
||||
DISTVERSIONPREFIX= v
|
||||
DISTVERSION= 2.19.0
|
||||
DISTVERSION= 2.20.0
|
||||
CATEGORIES= devel
|
||||
|
||||
MAINTAINER= yuri@FreeBSD.org
|
||||
|
|
@ -32,46 +32,44 @@ CARGO_CRATES= adler-1.0.2 \
|
|||
autocfg-1.3.0 \
|
||||
bitflags-1.3.2 \
|
||||
bitflags-2.6.0 \
|
||||
bstr-1.9.1 \
|
||||
bstr-1.10.0 \
|
||||
btoi-0.4.3 \
|
||||
bumpalo-3.16.0 \
|
||||
bytes-1.6.1 \
|
||||
bytes-1.7.1 \
|
||||
bytesize-1.3.0 \
|
||||
camino-1.1.7 \
|
||||
cargo-platform-0.1.8 \
|
||||
cargo_metadata-0.18.1 \
|
||||
cc-1.1.6 \
|
||||
cc-1.1.10 \
|
||||
cfg-if-1.0.0 \
|
||||
cfg_aliases-0.2.1 \
|
||||
chrono-0.4.38 \
|
||||
clap-4.5.11 \
|
||||
clap-help-1.2.0 \
|
||||
clap_builder-4.5.11 \
|
||||
clap_derive-4.5.11 \
|
||||
clap-4.5.15 \
|
||||
clap-help-1.3.0 \
|
||||
clap_builder-4.5.15 \
|
||||
clap_derive-4.5.13 \
|
||||
clap_lex-0.7.2 \
|
||||
cli-log-2.0.0 \
|
||||
clru-0.6.2 \
|
||||
colorchoice-1.0.2 \
|
||||
coolor-0.9.0 \
|
||||
core-foundation-sys-0.8.6 \
|
||||
coolor-1.0.0 \
|
||||
core-foundation-sys-0.8.7 \
|
||||
crc32fast-1.4.2 \
|
||||
crokey-0.6.4 \
|
||||
crokey-1.0.1 \
|
||||
crokey-proc_macros-0.6.4 \
|
||||
crokey-proc_macros-1.0.1 \
|
||||
crokey-1.1.0 \
|
||||
crokey-proc_macros-1.1.0 \
|
||||
crossbeam-0.8.4 \
|
||||
crossbeam-channel-0.5.13 \
|
||||
crossbeam-deque-0.8.5 \
|
||||
crossbeam-epoch-0.9.18 \
|
||||
crossbeam-queue-0.3.11 \
|
||||
crossbeam-utils-0.8.20 \
|
||||
crossterm-0.27.0 \
|
||||
crossterm-0.28.1 \
|
||||
crossterm_winapi-0.9.1 \
|
||||
dashmap-5.5.3 \
|
||||
deranged-0.3.11 \
|
||||
directories-next-2.0.0 \
|
||||
dirs-sys-next-0.1.2 \
|
||||
dunce-1.0.4 \
|
||||
dunce-1.0.5 \
|
||||
either-1.13.0 \
|
||||
encoding_rs-0.8.34 \
|
||||
equivalent-1.0.1 \
|
||||
|
|
@ -79,8 +77,8 @@ CARGO_CRATES= adler-1.0.2 \
|
|||
faster-hex-0.9.0 \
|
||||
fastrand-2.1.0 \
|
||||
file-size-1.0.3 \
|
||||
filetime-0.2.23 \
|
||||
flate2-1.0.30 \
|
||||
filetime-0.2.24 \
|
||||
flate2-1.0.31 \
|
||||
form_urlencoded-1.2.1 \
|
||||
fsevent-sys-4.1.0 \
|
||||
getrandom-0.2.15 \
|
||||
|
|
@ -94,7 +92,7 @@ CARGO_CRATES= adler-1.0.2 \
|
|||
gix-commitgraph-0.24.3 \
|
||||
gix-config-0.34.0 \
|
||||
gix-config-value-0.14.7 \
|
||||
gix-credentials-0.24.3 \
|
||||
gix-credentials-0.24.4 \
|
||||
gix-date-0.8.7 \
|
||||
gix-diff-0.40.0 \
|
||||
gix-discover-0.29.0 \
|
||||
|
|
@ -136,13 +134,14 @@ CARGO_CRATES= adler-1.0.2 \
|
|||
gix-worktree-stream-0.9.0 \
|
||||
hashbrown-0.14.5 \
|
||||
heck-0.5.0 \
|
||||
hermit-abi-0.3.9 \
|
||||
home-0.5.9 \
|
||||
human_format-1.1.0 \
|
||||
iana-time-zone-0.1.60 \
|
||||
iana-time-zone-haiku-0.1.2 \
|
||||
idna-0.5.0 \
|
||||
imara-diff-0.1.6 \
|
||||
indexmap-2.2.6 \
|
||||
imara-diff-0.1.7 \
|
||||
indexmap-2.3.0 \
|
||||
inotify-0.9.6 \
|
||||
inotify-sys-0.1.5 \
|
||||
io-close-0.3.7 \
|
||||
|
|
@ -165,6 +164,7 @@ CARGO_CRATES= adler-1.0.2 \
|
|||
minimad-0.13.1 \
|
||||
miniz_oxide-0.7.4 \
|
||||
mio-0.8.11 \
|
||||
mio-1.0.2 \
|
||||
nix-0.29.0 \
|
||||
notify-6.1.1 \
|
||||
num-conv-0.1.0 \
|
||||
|
|
@ -181,10 +181,9 @@ CARGO_CRATES= adler-1.0.2 \
|
|||
quote-1.0.36 \
|
||||
rayon-1.10.0 \
|
||||
rayon-core-1.12.1 \
|
||||
redox_syscall-0.4.1 \
|
||||
redox_syscall-0.5.3 \
|
||||
redox_users-0.4.5 \
|
||||
regex-1.10.5 \
|
||||
regex-1.10.6 \
|
||||
regex-automata-0.4.7 \
|
||||
regex-syntax-0.8.4 \
|
||||
rustix-0.38.34 \
|
||||
|
|
@ -192,24 +191,24 @@ CARGO_CRATES= adler-1.0.2 \
|
|||
same-file-1.0.6 \
|
||||
scopeguard-1.2.0 \
|
||||
semver-1.0.23 \
|
||||
serde-1.0.204 \
|
||||
serde_derive-1.0.204 \
|
||||
serde_json-1.0.120 \
|
||||
serde-1.0.206 \
|
||||
serde_derive-1.0.206 \
|
||||
serde_json-1.0.124 \
|
||||
serde_spanned-0.6.7 \
|
||||
sha1_smol-1.0.1 \
|
||||
shell-words-1.1.0 \
|
||||
signal-hook-0.3.17 \
|
||||
signal-hook-mio-0.2.3 \
|
||||
signal-hook-mio-0.2.4 \
|
||||
signal-hook-registry-1.4.2 \
|
||||
smallvec-1.13.2 \
|
||||
static_assertions-1.1.0 \
|
||||
strict-0.2.0 \
|
||||
strsim-0.11.1 \
|
||||
syn-1.0.109 \
|
||||
syn-2.0.72 \
|
||||
tempfile-3.10.1 \
|
||||
termimad-0.29.4 \
|
||||
terminal-light-1.4.0 \
|
||||
syn-2.0.74 \
|
||||
tempfile-3.12.0 \
|
||||
termimad-0.30.0 \
|
||||
terminal-light-1.5.0 \
|
||||
thiserror-1.0.63 \
|
||||
thiserror-impl-1.0.63 \
|
||||
time-0.3.36 \
|
||||
|
|
@ -217,9 +216,9 @@ CARGO_CRATES= adler-1.0.2 \
|
|||
time-macros-0.2.18 \
|
||||
tinyvec-1.8.0 \
|
||||
tinyvec_macros-0.1.1 \
|
||||
toml-0.8.16 \
|
||||
toml_datetime-0.6.7 \
|
||||
toml_edit-0.22.17 \
|
||||
toml-0.8.19 \
|
||||
toml_datetime-0.6.8 \
|
||||
toml_edit-0.22.20 \
|
||||
uluru-3.1.0 \
|
||||
unicode-bidi-0.3.15 \
|
||||
unicode-bom-2.0.3 \
|
||||
|
|
@ -228,7 +227,7 @@ CARGO_CRATES= adler-1.0.2 \
|
|||
unicode-width-0.1.13 \
|
||||
url-2.5.2 \
|
||||
utf8parse-0.2.2 \
|
||||
version_check-0.9.4 \
|
||||
version_check-0.9.5 \
|
||||
vte-0.8.0 \
|
||||
vte_generate_state_changes-0.1.2 \
|
||||
walkdir-2.5.0 \
|
||||
|
|
@ -240,11 +239,12 @@ CARGO_CRATES= adler-1.0.2 \
|
|||
wasm-bindgen-shared-0.2.92 \
|
||||
winapi-0.3.9 \
|
||||
winapi-i686-pc-windows-gnu-0.4.0 \
|
||||
winapi-util-0.1.8 \
|
||||
winapi-util-0.1.9 \
|
||||
winapi-x86_64-pc-windows-gnu-0.4.0 \
|
||||
windows-core-0.52.0 \
|
||||
windows-sys-0.48.0 \
|
||||
windows-sys-0.52.0 \
|
||||
windows-sys-0.59.0 \
|
||||
windows-targets-0.48.5 \
|
||||
windows-targets-0.52.6 \
|
||||
windows_aarch64_gnullvm-0.48.5 \
|
||||
|
|
@ -263,7 +263,7 @@ CARGO_CRATES= adler-1.0.2 \
|
|||
windows_x86_64_msvc-0.48.5 \
|
||||
windows_x86_64_msvc-0.52.6 \
|
||||
winnow-0.5.40 \
|
||||
winnow-0.6.16 \
|
||||
winnow-0.6.18 \
|
||||
xterm-query-0.4.1 \
|
||||
zerocopy-0.7.35 \
|
||||
zerocopy-derive-0.7.35
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
TIMESTAMP = 1723105661
|
||||
TIMESTAMP = 1723623994
|
||||
SHA256 (rust/crates/adler-1.0.2.crate) = f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe
|
||||
SIZE (rust/crates/adler-1.0.2.crate) = 12778
|
||||
SHA256 (rust/crates/ahash-0.8.11.crate) = e89da841a80418a9b391ebaea17f5c112ffaaa96f621d2c285b5174da76b9011
|
||||
|
|
@ -33,14 +33,14 @@ SHA256 (rust/crates/bitflags-1.3.2.crate) = bef38d45163c2f1dde094a7dfd33ccf595c9
|
|||
SIZE (rust/crates/bitflags-1.3.2.crate) = 23021
|
||||
SHA256 (rust/crates/bitflags-2.6.0.crate) = b048fb63fd8b5923fc5aa7b340d8e156aec7ec02f0c78fa8a6ddc2613f6f71de
|
||||
SIZE (rust/crates/bitflags-2.6.0.crate) = 45357
|
||||
SHA256 (rust/crates/bstr-1.9.1.crate) = 05efc5cfd9110c8416e471df0e96702d58690178e206e61b7173706673c93706
|
||||
SIZE (rust/crates/bstr-1.9.1.crate) = 380305
|
||||
SHA256 (rust/crates/bstr-1.10.0.crate) = 40723b8fb387abc38f4f4a37c09073622e41dd12327033091ef8950659e6dc0c
|
||||
SIZE (rust/crates/bstr-1.10.0.crate) = 380426
|
||||
SHA256 (rust/crates/btoi-0.4.3.crate) = 9dd6407f73a9b8b6162d8a2ef999fe6afd7cc15902ebf42c5cd296addf17e0ad
|
||||
SIZE (rust/crates/btoi-0.4.3.crate) = 10007
|
||||
SHA256 (rust/crates/bumpalo-3.16.0.crate) = 79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c
|
||||
SIZE (rust/crates/bumpalo-3.16.0.crate) = 85677
|
||||
SHA256 (rust/crates/bytes-1.6.1.crate) = a12916984aab3fa6e39d655a33e09c0071eb36d6ab3aea5c2d78551f1df6d952
|
||||
SIZE (rust/crates/bytes-1.6.1.crate) = 60723
|
||||
SHA256 (rust/crates/bytes-1.7.1.crate) = 8318a53db07bb3f8dca91a600466bdb3f2eaadeedfdbcf02e1accbad9271ba50
|
||||
SIZE (rust/crates/bytes-1.7.1.crate) = 63623
|
||||
SHA256 (rust/crates/bytesize-1.3.0.crate) = a3e368af43e418a04d52505cf3dbc23dda4e3407ae2fa99fd0e4f308ce546acc
|
||||
SIZE (rust/crates/bytesize-1.3.0.crate) = 10164
|
||||
SHA256 (rust/crates/camino-1.1.7.crate) = e0ec6b951b160caa93cc0c7b209e5a3bff7aae9062213451ac99493cd844c239
|
||||
|
|
@ -49,22 +49,22 @@ SHA256 (rust/crates/cargo-platform-0.1.8.crate) = 24b1f0365a6c6bb4020cd05806fd0d
|
|||
SIZE (rust/crates/cargo-platform-0.1.8.crate) = 11813
|
||||
SHA256 (rust/crates/cargo_metadata-0.18.1.crate) = 2d886547e41f740c616ae73108f6eb70afe6d940c7bc697cb30f13daec073037
|
||||
SIZE (rust/crates/cargo_metadata-0.18.1.crate) = 24535
|
||||
SHA256 (rust/crates/cc-1.1.6.crate) = 2aba8f4e9906c7ce3c73463f62a7f0c65183ada1a2d47e397cc8810827f9694f
|
||||
SIZE (rust/crates/cc-1.1.6.crate) = 81585
|
||||
SHA256 (rust/crates/cc-1.1.10.crate) = e9e8aabfac534be767c909e0690571677d49f41bd8465ae876fe043d52ba5292
|
||||
SIZE (rust/crates/cc-1.1.10.crate) = 82159
|
||||
SHA256 (rust/crates/cfg-if-1.0.0.crate) = baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd
|
||||
SIZE (rust/crates/cfg-if-1.0.0.crate) = 7934
|
||||
SHA256 (rust/crates/cfg_aliases-0.2.1.crate) = 613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724
|
||||
SIZE (rust/crates/cfg_aliases-0.2.1.crate) = 6355
|
||||
SHA256 (rust/crates/chrono-0.4.38.crate) = a21f936df1771bf62b77f047b726c4625ff2e8aa607c01ec06e5a05bd8463401
|
||||
SIZE (rust/crates/chrono-0.4.38.crate) = 220559
|
||||
SHA256 (rust/crates/clap-4.5.11.crate) = 35723e6a11662c2afb578bcf0b88bf6ea8e21282a953428f240574fcc3a2b5b3
|
||||
SIZE (rust/crates/clap-4.5.11.crate) = 56252
|
||||
SHA256 (rust/crates/clap-help-1.2.0.crate) = 5a1308e06fc42c05344a8584aafa56a1fdba002923dedcc66708c746bb4c233d
|
||||
SIZE (rust/crates/clap-help-1.2.0.crate) = 614844
|
||||
SHA256 (rust/crates/clap_builder-4.5.11.crate) = 49eb96cbfa7cfa35017b7cd548c75b14c3118c98b423041d70562665e07fb0fa
|
||||
SIZE (rust/crates/clap_builder-4.5.11.crate) = 164100
|
||||
SHA256 (rust/crates/clap_derive-4.5.11.crate) = 5d029b67f89d30bbb547c89fd5161293c0aec155fc691d7924b64550662db93e
|
||||
SIZE (rust/crates/clap_derive-4.5.11.crate) = 30061
|
||||
SHA256 (rust/crates/clap-4.5.15.crate) = 11d8838454fda655dafd3accb2b6e2bea645b9e4078abe84a22ceb947235c5cc
|
||||
SIZE (rust/crates/clap-4.5.15.crate) = 56612
|
||||
SHA256 (rust/crates/clap-help-1.3.0.crate) = 2873923833694e839cce5b846311ba5316e24b6e3726f8106368ebeaf3beb0d5
|
||||
SIZE (rust/crates/clap-help-1.3.0.crate) = 621107
|
||||
SHA256 (rust/crates/clap_builder-4.5.15.crate) = 216aec2b177652e3846684cbfe25c9964d18ec45234f0f5da5157b207ed1aab6
|
||||
SIZE (rust/crates/clap_builder-4.5.15.crate) = 163717
|
||||
SHA256 (rust/crates/clap_derive-4.5.13.crate) = 501d359d5f3dcaf6ecdeee48833ae73ec6e42723a1e52419c79abf9507eec0a0
|
||||
SIZE (rust/crates/clap_derive-4.5.13.crate) = 30132
|
||||
SHA256 (rust/crates/clap_lex-0.7.2.crate) = 1462739cb27611015575c0c11df5df7601141071f07518d56fcc1be504cbec97
|
||||
SIZE (rust/crates/clap_lex-0.7.2.crate) = 12805
|
||||
SHA256 (rust/crates/cli-log-2.0.0.crate) = 3d2ab00dc4c82ec28af25ac085aecc11ffeabf353755715a3113a7aa044ca5cc
|
||||
|
|
@ -73,20 +73,16 @@ SHA256 (rust/crates/clru-0.6.2.crate) = cbd0f76e066e64fdc5631e3bb46381254deab9ef
|
|||
SIZE (rust/crates/clru-0.6.2.crate) = 16497
|
||||
SHA256 (rust/crates/colorchoice-1.0.2.crate) = d3fd119d74b830634cea2a0f58bbd0d54540518a14397557951e79340abc28c0
|
||||
SIZE (rust/crates/colorchoice-1.0.2.crate) = 7924
|
||||
SHA256 (rust/crates/coolor-0.9.0.crate) = 37e93977247fb916abeee1ff8c6594c9b421fd9c26c9b720a3944acb2a7de27b
|
||||
SIZE (rust/crates/coolor-0.9.0.crate) = 135277
|
||||
SHA256 (rust/crates/core-foundation-sys-0.8.6.crate) = 06ea2b9bc92be3c2baa9334a323ebca2d6f074ff852cd1d7b11064035cd3868f
|
||||
SIZE (rust/crates/core-foundation-sys-0.8.6.crate) = 37629
|
||||
SHA256 (rust/crates/coolor-1.0.0.crate) = 691defa50318376447a73ced869862baecfab35f6aabaa91a4cd726b315bfe1a
|
||||
SIZE (rust/crates/coolor-1.0.0.crate) = 136158
|
||||
SHA256 (rust/crates/core-foundation-sys-0.8.7.crate) = 773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b
|
||||
SIZE (rust/crates/core-foundation-sys-0.8.7.crate) = 37712
|
||||
SHA256 (rust/crates/crc32fast-1.4.2.crate) = a97769d94ddab943e4510d138150169a2758b5ef3eb191a9ee688de3e23ef7b3
|
||||
SIZE (rust/crates/crc32fast-1.4.2.crate) = 38491
|
||||
SHA256 (rust/crates/crokey-0.6.4.crate) = a2975c131b96cb7cee37732dc5f0ededaedd053ce8a20b7999ba239ec2d1536e
|
||||
SIZE (rust/crates/crokey-0.6.4.crate) = 38343
|
||||
SHA256 (rust/crates/crokey-1.0.1.crate) = b015414137feca6f4137550d60d233b580a09307e2de329412b8e8c661b6dfab
|
||||
SIZE (rust/crates/crokey-1.0.1.crate) = 38306
|
||||
SHA256 (rust/crates/crokey-proc_macros-0.6.4.crate) = 397d3c009d8df93c4b063ddaa44a81ee7098feb056f99b00896c36e2cee9a9f7
|
||||
SIZE (rust/crates/crokey-proc_macros-0.6.4.crate) = 3124
|
||||
SHA256 (rust/crates/crokey-proc_macros-1.0.1.crate) = 6085c6385034f0847d2b3120547a88da1e5e35727970a70f32b555eb3c47051c
|
||||
SIZE (rust/crates/crokey-proc_macros-1.0.1.crate) = 3121
|
||||
SHA256 (rust/crates/crokey-1.1.0.crate) = 520e83558f4c008ac06fa6a86e5c1d4357be6f994cce7434463ebcdaadf47bb1
|
||||
SIZE (rust/crates/crokey-1.1.0.crate) = 39117
|
||||
SHA256 (rust/crates/crokey-proc_macros-1.1.0.crate) = 370956e708a1ce65fe4ac5bb7185791e0ece7485087f17736d54a23a0895049f
|
||||
SIZE (rust/crates/crokey-proc_macros-1.1.0.crate) = 3174
|
||||
SHA256 (rust/crates/crossbeam-0.8.4.crate) = 1137cd7e7fc0fb5d3c5a8678be38ec56e819125d8d7907411fe24ccb943faca8
|
||||
SIZE (rust/crates/crossbeam-0.8.4.crate) = 10500
|
||||
SHA256 (rust/crates/crossbeam-channel-0.5.13.crate) = 33480d6946193aa8033910124896ca395333cae7e2d1113d1fef6c3272217df2
|
||||
|
|
@ -99,8 +95,8 @@ SHA256 (rust/crates/crossbeam-queue-0.3.11.crate) = df0346b5d5e76ac2fe4e327c5fd1
|
|||
SIZE (rust/crates/crossbeam-queue-0.3.11.crate) = 15581
|
||||
SHA256 (rust/crates/crossbeam-utils-0.8.20.crate) = 22ec99545bb0ed0ea7bb9b8e1e9122ea386ff8a48c0922e43f36d45ab09e0e80
|
||||
SIZE (rust/crates/crossbeam-utils-0.8.20.crate) = 42487
|
||||
SHA256 (rust/crates/crossterm-0.27.0.crate) = f476fe445d41c9e991fd07515a6f463074b782242ccf4a5b7b1d1012e70824df
|
||||
SIZE (rust/crates/crossterm-0.27.0.crate) = 125311
|
||||
SHA256 (rust/crates/crossterm-0.28.1.crate) = 829d955a0bb380ef178a640b91779e3987da38c9aea133b20614cfed8cdea9c6
|
||||
SIZE (rust/crates/crossterm-0.28.1.crate) = 132275
|
||||
SHA256 (rust/crates/crossterm_winapi-0.9.1.crate) = acdd7c62a3665c7f6830a51635d9ac9b23ed385797f70a83bb8bafe9c572ab2b
|
||||
SIZE (rust/crates/crossterm_winapi-0.9.1.crate) = 16027
|
||||
SHA256 (rust/crates/dashmap-5.5.3.crate) = 978747c1d849a7d2ee5e8adc0159961c48fb7e5db2f06af6723b80123bb53856
|
||||
|
|
@ -111,8 +107,8 @@ SHA256 (rust/crates/directories-next-2.0.0.crate) = 339ee130d97a610ea5a5872d2bbb
|
|||
SIZE (rust/crates/directories-next-2.0.0.crate) = 15153
|
||||
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/dunce-1.0.4.crate) = 56ce8c6da7551ec6c462cbaf3bfbc75131ebbfa1c944aeaa9dab51ca1c5f0c3b
|
||||
SIZE (rust/crates/dunce-1.0.4.crate) = 8034
|
||||
SHA256 (rust/crates/dunce-1.0.5.crate) = 92773504d58c093f6de2459af4af33faa518c13451eb8f2b5698ed3d36e7c813
|
||||
SIZE (rust/crates/dunce-1.0.5.crate) = 8244
|
||||
SHA256 (rust/crates/either-1.13.0.crate) = 60b1af1c220855b6ceac025d3f6ecdd2b7c4894bfe9cd9bda4fbb4bc7c0d4cf0
|
||||
SIZE (rust/crates/either-1.13.0.crate) = 19169
|
||||
SHA256 (rust/crates/encoding_rs-0.8.34.crate) = b45de904aa0b010bce2ab45264d0631681847fa7b6f2eaa7dab7619943bc4f59
|
||||
|
|
@ -127,10 +123,10 @@ SHA256 (rust/crates/fastrand-2.1.0.crate) = 9fc0510504f03c51ada170672ac806f1f105
|
|||
SIZE (rust/crates/fastrand-2.1.0.crate) = 14907
|
||||
SHA256 (rust/crates/file-size-1.0.3.crate) = 9544f10105d33957765016b8a9baea7e689bf1f0f2f32c2fa2f568770c38d2b3
|
||||
SIZE (rust/crates/file-size-1.0.3.crate) = 1819
|
||||
SHA256 (rust/crates/filetime-0.2.23.crate) = 1ee447700ac8aa0b2f2bd7bc4462ad686ba06baa6727ac149a2d6277f0d240fd
|
||||
SIZE (rust/crates/filetime-0.2.23.crate) = 14942
|
||||
SHA256 (rust/crates/flate2-1.0.30.crate) = 5f54427cfd1c7829e2a139fcefea601bf088ebca651d2bf53ebc600eac295dae
|
||||
SIZE (rust/crates/flate2-1.0.30.crate) = 75511
|
||||
SHA256 (rust/crates/filetime-0.2.24.crate) = bf401df4a4e3872c4fe8151134cf483738e74b67fc934d6532c882b3d24a4550
|
||||
SIZE (rust/crates/filetime-0.2.24.crate) = 14938
|
||||
SHA256 (rust/crates/flate2-1.0.31.crate) = 7f211bbe8e69bbd0cfdea405084f128ae8b4aaa6b0b522fc8f2b009084797920
|
||||
SIZE (rust/crates/flate2-1.0.31.crate) = 108176
|
||||
SHA256 (rust/crates/form_urlencoded-1.2.1.crate) = e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456
|
||||
SIZE (rust/crates/form_urlencoded-1.2.1.crate) = 8969
|
||||
SHA256 (rust/crates/fsevent-sys-4.1.0.crate) = 76ee7a02da4d231650c7cea31349b889be2f45ddb3ef3032d2ec8185f6313fd2
|
||||
|
|
@ -157,8 +153,8 @@ SHA256 (rust/crates/gix-config-0.34.0.crate) = e62bf2073b6ce3921ffa6d8326f645f30
|
|||
SIZE (rust/crates/gix-config-0.34.0.crate) = 61671
|
||||
SHA256 (rust/crates/gix-config-value-0.14.7.crate) = b328997d74dd15dc71b2773b162cb4af9a25c424105e4876e6d0686ab41c383e
|
||||
SIZE (rust/crates/gix-config-value-0.14.7.crate) = 12835
|
||||
SHA256 (rust/crates/gix-credentials-0.24.3.crate) = 91b446df0841c9d74b3f98f21657b892581a4af78904a22e0cbc6144da972eea
|
||||
SIZE (rust/crates/gix-credentials-0.24.3.crate) = 20581
|
||||
SHA256 (rust/crates/gix-credentials-0.24.4.crate) = 198588f532e4d1202e04e6c3f50e4d7c060dffc66801c6f53cc246f1d234739e
|
||||
SIZE (rust/crates/gix-credentials-0.24.4.crate) = 20585
|
||||
SHA256 (rust/crates/gix-date-0.8.7.crate) = 9eed6931f21491ee0aeb922751bd7ec97b4b2fe8fbfedcb678e2a2dce5f3b8c0
|
||||
SIZE (rust/crates/gix-date-0.8.7.crate) = 10349
|
||||
SHA256 (rust/crates/gix-diff-0.40.0.crate) = cbdcb5e49c4b9729dd1c361040ae5c3cd7c497b2260b18c954f62db3a63e98cf
|
||||
|
|
@ -241,6 +237,8 @@ SHA256 (rust/crates/hashbrown-0.14.5.crate) = e5274423e17b7c9fc20b6e7e208532f9b1
|
|||
SIZE (rust/crates/hashbrown-0.14.5.crate) = 141498
|
||||
SHA256 (rust/crates/heck-0.5.0.crate) = 2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea
|
||||
SIZE (rust/crates/heck-0.5.0.crate) = 11517
|
||||
SHA256 (rust/crates/hermit-abi-0.3.9.crate) = d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024
|
||||
SIZE (rust/crates/hermit-abi-0.3.9.crate) = 16165
|
||||
SHA256 (rust/crates/home-0.5.9.crate) = e3d1354bf6b7235cb4a0576c2619fd4ed18183f689b12b006a0ee7329eeff9a5
|
||||
SIZE (rust/crates/home-0.5.9.crate) = 8760
|
||||
SHA256 (rust/crates/human_format-1.1.0.crate) = 5c3b1f728c459d27b12448862017b96ad4767b1ec2ec5e6434e99f1577f085b8
|
||||
|
|
@ -251,10 +249,10 @@ SHA256 (rust/crates/iana-time-zone-haiku-0.1.2.crate) = f31827a206f56af32e590ba5
|
|||
SIZE (rust/crates/iana-time-zone-haiku-0.1.2.crate) = 7185
|
||||
SHA256 (rust/crates/idna-0.5.0.crate) = 634d9b1461af396cad843f47fdba5597a4f9e6ddd4bfb6ff5d85028c25cb12f6
|
||||
SIZE (rust/crates/idna-0.5.0.crate) = 271940
|
||||
SHA256 (rust/crates/imara-diff-0.1.6.crate) = af13c8ceb376860ff0c6a66d83a8cdd4ecd9e464da24621bbffcd02b49619434
|
||||
SIZE (rust/crates/imara-diff-0.1.6.crate) = 155605
|
||||
SHA256 (rust/crates/indexmap-2.2.6.crate) = 168fb715dda47215e360912c096649d23d58bf392ac62f73919e831745e40f26
|
||||
SIZE (rust/crates/indexmap-2.2.6.crate) = 82420
|
||||
SHA256 (rust/crates/imara-diff-0.1.7.crate) = fc9da1a252bd44cd341657203722352efc9bc0c847d06ea6d2dc1cd1135e0a01
|
||||
SIZE (rust/crates/imara-diff-0.1.7.crate) = 155688
|
||||
SHA256 (rust/crates/indexmap-2.3.0.crate) = de3fc2e30ba82dd1b3911c8de1ffc143c74a914a14e99514d7637e3099df5ea0
|
||||
SIZE (rust/crates/indexmap-2.3.0.crate) = 83027
|
||||
SHA256 (rust/crates/inotify-0.9.6.crate) = f8069d3ec154eb856955c1c0fbffefbf5f3c40a104ec912d4797314c1801abff
|
||||
SIZE (rust/crates/inotify-0.9.6.crate) = 22971
|
||||
SHA256 (rust/crates/inotify-sys-0.1.5.crate) = e05c02b5e89bff3b946cedeca278abc628fe811e604f027c45a8aa3cf793d0eb
|
||||
|
|
@ -299,6 +297,8 @@ SHA256 (rust/crates/miniz_oxide-0.7.4.crate) = b8a240ddb74feaf34a79a7add65a741f3
|
|||
SIZE (rust/crates/miniz_oxide-0.7.4.crate) = 56119
|
||||
SHA256 (rust/crates/mio-0.8.11.crate) = a4a650543ca06a924e8b371db273b2756685faae30f8487da1b56505a8f78b0c
|
||||
SIZE (rust/crates/mio-0.8.11.crate) = 102983
|
||||
SHA256 (rust/crates/mio-1.0.2.crate) = 80e04d1dcff3aae0704555fe5fee3bcfaf3d1fdf8a7e521d5b9d2b42acb52cec
|
||||
SIZE (rust/crates/mio-1.0.2.crate) = 102777
|
||||
SHA256 (rust/crates/nix-0.29.0.crate) = 71e2746dc3a24dd78b3cfcb7be93368c6de9963d30f43a6a73998a9cf4b17b46
|
||||
SIZE (rust/crates/nix-0.29.0.crate) = 318248
|
||||
SHA256 (rust/crates/notify-6.1.1.crate) = 6205bd8bb1e454ad2e27422015fb5e4f2bcc7e08fa8f27058670d208324a4d2d
|
||||
|
|
@ -331,14 +331,12 @@ SHA256 (rust/crates/rayon-1.10.0.crate) = b418a60154510ca1a002a752ca9714984e21e4
|
|||
SIZE (rust/crates/rayon-1.10.0.crate) = 180155
|
||||
SHA256 (rust/crates/rayon-core-1.12.1.crate) = 1465873a3dfdaa8ae7cb14b4383657caab0b3e8a0aa9ae8e04b044854c8dfce2
|
||||
SIZE (rust/crates/rayon-core-1.12.1.crate) = 70701
|
||||
SHA256 (rust/crates/redox_syscall-0.4.1.crate) = 4722d768eff46b75989dd134e5c353f0d6296e5aaa3132e776cbdb56be7731aa
|
||||
SIZE (rust/crates/redox_syscall-0.4.1.crate) = 24858
|
||||
SHA256 (rust/crates/redox_syscall-0.5.3.crate) = 2a908a6e00f1fdd0dfd9c0eb08ce85126f6d8bbda50017e74bc4a4b7d4a926a4
|
||||
SIZE (rust/crates/redox_syscall-0.5.3.crate) = 23830
|
||||
SHA256 (rust/crates/redox_users-0.4.5.crate) = bd283d9651eeda4b2a83a43c1c91b266c40fd76ecd39a50a8c630ae69dc72891
|
||||
SIZE (rust/crates/redox_users-0.4.5.crate) = 15514
|
||||
SHA256 (rust/crates/regex-1.10.5.crate) = b91213439dad192326a0d7c6ee3955910425f441d7038e0d6933b0aec5c4517f
|
||||
SIZE (rust/crates/regex-1.10.5.crate) = 253805
|
||||
SHA256 (rust/crates/regex-1.10.6.crate) = 4219d74c6b67a3654a9fbebc4b419e22126d13d2f3c4a07ee0cb61ff79a79619
|
||||
SIZE (rust/crates/regex-1.10.6.crate) = 253894
|
||||
SHA256 (rust/crates/regex-automata-0.4.7.crate) = 38caf58cc5ef2fed281f89292ef23f6365465ed9a41b7a7754eb4e26496c92df
|
||||
SIZE (rust/crates/regex-automata-0.4.7.crate) = 617582
|
||||
SHA256 (rust/crates/regex-syntax-0.8.4.crate) = 7a66a03ae7c801facd77a29370b4faec201768915ac14a721ba36f20bc9c209b
|
||||
|
|
@ -353,12 +351,12 @@ SHA256 (rust/crates/scopeguard-1.2.0.crate) = 94143f37725109f92c262ed2cf5e59bce7
|
|||
SIZE (rust/crates/scopeguard-1.2.0.crate) = 11619
|
||||
SHA256 (rust/crates/semver-1.0.23.crate) = 61697e0a1c7e512e84a621326239844a24d8207b4669b41bc18b32ea5cbf988b
|
||||
SIZE (rust/crates/semver-1.0.23.crate) = 30622
|
||||
SHA256 (rust/crates/serde-1.0.204.crate) = bc76f558e0cbb2a839d37354c575f1dc3fdc6546b5be373ba43d95f231bf7c12
|
||||
SIZE (rust/crates/serde-1.0.204.crate) = 78253
|
||||
SHA256 (rust/crates/serde_derive-1.0.204.crate) = e0cd7e117be63d3c3678776753929474f3b04a43a080c744d6b0ae2a8c28e222
|
||||
SIZE (rust/crates/serde_derive-1.0.204.crate) = 55871
|
||||
SHA256 (rust/crates/serde_json-1.0.120.crate) = 4e0d21c9a8cae1235ad58a00c11cb40d4b1e5c784f1ef2c537876ed6ffd8b7c5
|
||||
SIZE (rust/crates/serde_json-1.0.120.crate) = 147062
|
||||
SHA256 (rust/crates/serde-1.0.206.crate) = 5b3e4cd94123dd520a128bcd11e34d9e9e423e7e3e50425cb1b4b1e3549d0284
|
||||
SIZE (rust/crates/serde-1.0.206.crate) = 78250
|
||||
SHA256 (rust/crates/serde_derive-1.0.206.crate) = fabfb6138d2383ea8208cf98ccf69cdfb1aff4088460681d84189aa259762f97
|
||||
SIZE (rust/crates/serde_derive-1.0.206.crate) = 56193
|
||||
SHA256 (rust/crates/serde_json-1.0.124.crate) = 66ad62847a56b3dba58cc891acd13884b9c61138d330c0d7b6181713d4fce38d
|
||||
SIZE (rust/crates/serde_json-1.0.124.crate) = 148160
|
||||
SHA256 (rust/crates/serde_spanned-0.6.7.crate) = eb5b1b31579f3811bf615c144393417496f152e12ac8b7663bf664f4a815306d
|
||||
SIZE (rust/crates/serde_spanned-0.6.7.crate) = 9164
|
||||
SHA256 (rust/crates/sha1_smol-1.0.1.crate) = bbfa15b3dddfee50a0fff136974b3e1bde555604ba463834a7eb7deb6417705d
|
||||
|
|
@ -367,8 +365,8 @@ SHA256 (rust/crates/shell-words-1.1.0.crate) = 24188a676b6ae68c3b2cb3a01be17fbf7
|
|||
SIZE (rust/crates/shell-words-1.1.0.crate) = 9871
|
||||
SHA256 (rust/crates/signal-hook-0.3.17.crate) = 8621587d4798caf8eb44879d42e56b9a93ea5dcd315a6487c357130095b62801
|
||||
SIZE (rust/crates/signal-hook-0.3.17.crate) = 50296
|
||||
SHA256 (rust/crates/signal-hook-mio-0.2.3.crate) = 29ad2e15f37ec9a6cc544097b78a1ec90001e9f71b81338ca39f430adaca99af
|
||||
SIZE (rust/crates/signal-hook-mio-0.2.3.crate) = 9064
|
||||
SHA256 (rust/crates/signal-hook-mio-0.2.4.crate) = 34db1a06d485c9142248b7a054f034b349b212551f3dfd19c94d45a754a217cd
|
||||
SIZE (rust/crates/signal-hook-mio-0.2.4.crate) = 9314
|
||||
SHA256 (rust/crates/signal-hook-registry-1.4.2.crate) = a9e9e0b4211b72e7b8b6e85c807d36c212bdb33ea8587f7569562a84df5465b1
|
||||
SIZE (rust/crates/signal-hook-registry-1.4.2.crate) = 18064
|
||||
SHA256 (rust/crates/smallvec-1.13.2.crate) = 3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67
|
||||
|
|
@ -381,14 +379,14 @@ SHA256 (rust/crates/strsim-0.11.1.crate) = 7da8b5736845d9f2fcb837ea5d9e2628564b3
|
|||
SIZE (rust/crates/strsim-0.11.1.crate) = 14266
|
||||
SHA256 (rust/crates/syn-1.0.109.crate) = 72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237
|
||||
SIZE (rust/crates/syn-1.0.109.crate) = 237611
|
||||
SHA256 (rust/crates/syn-2.0.72.crate) = dc4b9b9bf2add8093d3f2c0204471e951b2285580335de42f9d2534f3ae7a8af
|
||||
SIZE (rust/crates/syn-2.0.72.crate) = 267069
|
||||
SHA256 (rust/crates/tempfile-3.10.1.crate) = 85b77fafb263dd9d05cbeac119526425676db3784113aa9295c88498cbf8bff1
|
||||
SIZE (rust/crates/tempfile-3.10.1.crate) = 33653
|
||||
SHA256 (rust/crates/termimad-0.29.4.crate) = eff854b510d076163c3b8628ebfe6bfbe6f01c3254b8b8e77cac7ad2d8c72b06
|
||||
SIZE (rust/crates/termimad-0.29.4.crate) = 441288
|
||||
SHA256 (rust/crates/terminal-light-1.4.0.crate) = a2ecb7b6ab8a3eeff2b61770d313d1e971f184e29321785c62ef523b132437b7
|
||||
SIZE (rust/crates/terminal-light-1.4.0.crate) = 39161
|
||||
SHA256 (rust/crates/syn-2.0.74.crate) = 1fceb41e3d546d0bd83421d3409b1460cc7444cd389341a4c880fe7a042cb3d7
|
||||
SIZE (rust/crates/syn-2.0.74.crate) = 267998
|
||||
SHA256 (rust/crates/tempfile-3.12.0.crate) = 04cbcdd0c794ebb0d4cf35e88edd2f7d2c4c3e9a5a6dab322839b321c6a87a64
|
||||
SIZE (rust/crates/tempfile-3.12.0.crate) = 34423
|
||||
SHA256 (rust/crates/termimad-0.30.0.crate) = 920e7c4671e79f3d9df269da9c8edf0dbc580044fd727d3594f7bfba5eb6107a
|
||||
SIZE (rust/crates/termimad-0.30.0.crate) = 442191
|
||||
SHA256 (rust/crates/terminal-light-1.5.0.crate) = 107b76de0f9296a417d77a85fee9e0d57084392d281b0858116b14e6620f255c
|
||||
SIZE (rust/crates/terminal-light-1.5.0.crate) = 39651
|
||||
SHA256 (rust/crates/thiserror-1.0.63.crate) = c0342370b38b6a11b6cc11d6a805569958d54cfa061a29969c3b5ce2ea405724
|
||||
SIZE (rust/crates/thiserror-1.0.63.crate) = 21537
|
||||
SHA256 (rust/crates/thiserror-impl-1.0.63.crate) = a4558b58466b9ad7ca0f102865eccc95938dca1a74a856f2b57b6629050da261
|
||||
|
|
@ -403,12 +401,12 @@ SHA256 (rust/crates/tinyvec-1.8.0.crate) = 445e881f4f6d382d5f27c034e25eb92edd7c7
|
|||
SIZE (rust/crates/tinyvec-1.8.0.crate) = 46796
|
||||
SHA256 (rust/crates/tinyvec_macros-0.1.1.crate) = 1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20
|
||||
SIZE (rust/crates/tinyvec_macros-0.1.1.crate) = 5865
|
||||
SHA256 (rust/crates/toml-0.8.16.crate) = 81967dd0dd2c1ab0bc3468bd7caecc32b8a4aa47d0c8c695d8c2b2108168d62c
|
||||
SIZE (rust/crates/toml-0.8.16.crate) = 50742
|
||||
SHA256 (rust/crates/toml_datetime-0.6.7.crate) = f8fb9f64314842840f1d940ac544da178732128f1c78c21772e876579e0da1db
|
||||
SIZE (rust/crates/toml_datetime-0.6.7.crate) = 11750
|
||||
SHA256 (rust/crates/toml_edit-0.22.17.crate) = 8d9f8729f5aea9562aac1cc0441f5d6de3cff1ee0c5d67293eeca5eb36ee7c16
|
||||
SIZE (rust/crates/toml_edit-0.22.17.crate) = 106686
|
||||
SHA256 (rust/crates/toml-0.8.19.crate) = a1ed1f98e3fdc28d6d910e6737ae6ab1a93bf1985935a1193e68f93eeb68d24e
|
||||
SIZE (rust/crates/toml-0.8.19.crate) = 50974
|
||||
SHA256 (rust/crates/toml_datetime-0.6.8.crate) = 0dd7358ecb8fc2f8d014bf86f6f638ce72ba252a2c3a2572f2a795f1d23efb41
|
||||
SIZE (rust/crates/toml_datetime-0.6.8.crate) = 12028
|
||||
SHA256 (rust/crates/toml_edit-0.22.20.crate) = 583c44c02ad26b0c3f3066fe629275e50627026c51ac2e595cca4c230ce1ce1d
|
||||
SIZE (rust/crates/toml_edit-0.22.20.crate) = 106726
|
||||
SHA256 (rust/crates/uluru-3.1.0.crate) = 7c8a2469e56e6e5095c82ccd3afb98dad95f7af7929aab6d8ba8d6e0f73657da
|
||||
SIZE (rust/crates/uluru-3.1.0.crate) = 9664
|
||||
SHA256 (rust/crates/unicode-bidi-0.3.15.crate) = 08f95100a766bf4f8f28f90d77e0a5461bbdb219042e7679bebe79004fed8d75
|
||||
|
|
@ -425,8 +423,8 @@ SHA256 (rust/crates/url-2.5.2.crate) = 22784dbdf76fdde8af1aeda5622b546b422b6fc58
|
|||
SIZE (rust/crates/url-2.5.2.crate) = 79704
|
||||
SHA256 (rust/crates/utf8parse-0.2.2.crate) = 06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821
|
||||
SIZE (rust/crates/utf8parse-0.2.2.crate) = 13499
|
||||
SHA256 (rust/crates/version_check-0.9.4.crate) = 49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f
|
||||
SIZE (rust/crates/version_check-0.9.4.crate) = 14895
|
||||
SHA256 (rust/crates/version_check-0.9.5.crate) = 0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a
|
||||
SIZE (rust/crates/version_check-0.9.5.crate) = 15554
|
||||
SHA256 (rust/crates/vte-0.8.0.crate) = 96cc8a191608603611e78c6ec11dafef37e3cca0775aeef1931824753e81711d
|
||||
SIZE (rust/crates/vte-0.8.0.crate) = 23854
|
||||
SHA256 (rust/crates/vte_generate_state_changes-0.1.2.crate) = 2e369bee1b05d510a7b4ed645f5faa90619e05437111783ea5848f28d97d3c2e
|
||||
|
|
@ -449,8 +447,8 @@ SHA256 (rust/crates/winapi-0.3.9.crate) = 5c839a674fcd7a98952e593242ea400abe9399
|
|||
SIZE (rust/crates/winapi-0.3.9.crate) = 1200382
|
||||
SHA256 (rust/crates/winapi-i686-pc-windows-gnu-0.4.0.crate) = ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6
|
||||
SIZE (rust/crates/winapi-i686-pc-windows-gnu-0.4.0.crate) = 2918815
|
||||
SHA256 (rust/crates/winapi-util-0.1.8.crate) = 4d4cc384e1e73b93bafa6fb4f1df8c41695c8a91cf9c4c64358067d15a7b6c6b
|
||||
SIZE (rust/crates/winapi-util-0.1.8.crate) = 12416
|
||||
SHA256 (rust/crates/winapi-util-0.1.9.crate) = cf221c93e13a30d793f7645a0e7762c55d169dbb0a49671918a2319d289b10bb
|
||||
SIZE (rust/crates/winapi-util-0.1.9.crate) = 12464
|
||||
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-core-0.52.0.crate) = 33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9
|
||||
|
|
@ -459,6 +457,8 @@ SHA256 (rust/crates/windows-sys-0.48.0.crate) = 677d2418bec65e3338edb076e806bc1e
|
|||
SIZE (rust/crates/windows-sys-0.48.0.crate) = 2628884
|
||||
SHA256 (rust/crates/windows-sys-0.52.0.crate) = 282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d
|
||||
SIZE (rust/crates/windows-sys-0.52.0.crate) = 2576877
|
||||
SHA256 (rust/crates/windows-sys-0.59.0.crate) = 1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b
|
||||
SIZE (rust/crates/windows-sys-0.59.0.crate) = 2387323
|
||||
SHA256 (rust/crates/windows-targets-0.48.5.crate) = 9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c
|
||||
SIZE (rust/crates/windows-targets-0.48.5.crate) = 6904
|
||||
SHA256 (rust/crates/windows-targets-0.52.6.crate) = 9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973
|
||||
|
|
@ -495,13 +495,13 @@ SHA256 (rust/crates/windows_x86_64_msvc-0.52.6.crate) = 589f6da84c646204747d1270
|
|||
SIZE (rust/crates/windows_x86_64_msvc-0.52.6.crate) = 832564
|
||||
SHA256 (rust/crates/winnow-0.5.40.crate) = f593a95398737aeed53e489c785df13f3618e41dbcd6718c6addbf1395aa6876
|
||||
SIZE (rust/crates/winnow-0.5.40.crate) = 159316
|
||||
SHA256 (rust/crates/winnow-0.6.16.crate) = b480ae9340fc261e6be3e95a1ba86d54ae3f9171132a73ce8d4bbaf68339507c
|
||||
SIZE (rust/crates/winnow-0.6.16.crate) = 163159
|
||||
SHA256 (rust/crates/winnow-0.6.18.crate) = 68a9bda4691f099d435ad181000724da8e5899daa10713c2d432552b9ccd3a6f
|
||||
SIZE (rust/crates/winnow-0.6.18.crate) = 163357
|
||||
SHA256 (rust/crates/xterm-query-0.4.1.crate) = 0ad8964f04823efe0096d7829f6d93f9cb4f88713d07d514486296dd8b9d2194
|
||||
SIZE (rust/crates/xterm-query-0.4.1.crate) = 6153
|
||||
SHA256 (rust/crates/zerocopy-0.7.35.crate) = 1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0
|
||||
SIZE (rust/crates/zerocopy-0.7.35.crate) = 152645
|
||||
SHA256 (rust/crates/zerocopy-derive-0.7.35.crate) = fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e
|
||||
SIZE (rust/crates/zerocopy-derive-0.7.35.crate) = 37829
|
||||
SHA256 (Canop-bacon-v2.19.0_GH0.tar.gz) = a5c9af533fc9b1097b2c60aa86b086367b8799ee10b1b33e0e04fffdb9723b8b
|
||||
SIZE (Canop-bacon-v2.19.0_GH0.tar.gz) = 688360
|
||||
SHA256 (Canop-bacon-v2.20.0_GH0.tar.gz) = a7913eeab25f47aff651b7e09c46669e6d4b4a56af07ab6cac686fe867c72ddc
|
||||
SIZE (Canop-bacon-v2.20.0_GH0.tar.gz) = 689225
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
PORTNAME= fatal
|
||||
DISTVERSIONPREFIX= v
|
||||
DISTVERSION= 2024.08.05.00
|
||||
DISTVERSION= 2024.08.12.00
|
||||
CATEGORIES= devel
|
||||
|
||||
MAINTAINER= yuri@FreeBSD.org
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1722999137
|
||||
SHA256 (facebook-fatal-v2024.08.05.00_GH0.tar.gz) = 403e3687cc0eb352693890b83062ebb71c336481774d4932c5ed54a56c3740d6
|
||||
SIZE (facebook-fatal-v2024.08.05.00_GH0.tar.gz) = 658742
|
||||
TIMESTAMP = 1723509321
|
||||
SHA256 (facebook-fatal-v2024.08.12.00_GH0.tar.gz) = a57c8cf0b05a899207b57a79dbe565b6a46130745e578801e11b3af3191a8d65
|
||||
SIZE (facebook-fatal-v2024.08.12.00_GH0.tar.gz) = 658744
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
PORTNAME= fbthrift
|
||||
DISTVERSIONPREFIX= v
|
||||
DISTVERSION= 2024.08.05.00
|
||||
DISTVERSION= 2024.08.12.00
|
||||
CATEGORIES= devel
|
||||
|
||||
MAINTAINER= yuri@FreeBSD.org
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1722999135
|
||||
SHA256 (facebook-fbthrift-v2024.08.05.00_GH0.tar.gz) = 11aeddb451ff0dcdb79b65392291120711c3dafb431bb26c2af3bab7481b6a4d
|
||||
SIZE (facebook-fbthrift-v2024.08.05.00_GH0.tar.gz) = 14628924
|
||||
TIMESTAMP = 1723509318
|
||||
SHA256 (facebook-fbthrift-v2024.08.12.00_GH0.tar.gz) = d6ff9d28ad25f3769ff7a02ead4a5d2f74d47f138165fcb51624a6c3585a831a
|
||||
SIZE (facebook-fbthrift-v2024.08.12.00_GH0.tar.gz) = 14772747
|
||||
|
|
|
|||
|
|
@ -114,7 +114,6 @@ include/thrift/lib/cpp/TLogging.h
|
|||
include/thrift/lib/cpp/TProcessor.h
|
||||
include/thrift/lib/cpp/TProcessorEventHandler.h
|
||||
include/thrift/lib/cpp/Thrift.h
|
||||
include/thrift/lib/cpp/async/TAsyncSSLSocket.h
|
||||
include/thrift/lib/cpp/concurrency/Exception.h
|
||||
include/thrift/lib/cpp/concurrency/FunctionRunner.h
|
||||
include/thrift/lib/cpp/concurrency/InitThreadFactory.h
|
||||
|
|
@ -145,7 +144,6 @@ include/thrift/lib/cpp/server/TConnectionContext.h
|
|||
include/thrift/lib/cpp/server/TServerEventHandler.h
|
||||
include/thrift/lib/cpp/server/TServerObserver.h
|
||||
include/thrift/lib/cpp/server/test/TrackingTServerEventHandler.h
|
||||
include/thrift/lib/cpp/test/MockTAsyncSSLSocket.h
|
||||
include/thrift/lib/cpp/test/loadgen/Controller.h
|
||||
include/thrift/lib/cpp/test/loadgen/GaussianMixtureModel.h
|
||||
include/thrift/lib/cpp/test/loadgen/IntervalTimer.h
|
||||
|
|
@ -329,6 +327,7 @@ include/thrift/lib/cpp2/op/StdSerializer.h
|
|||
include/thrift/lib/cpp2/op/Testing.h
|
||||
include/thrift/lib/cpp2/op/Xxh64Hasher.h
|
||||
include/thrift/lib/cpp2/op/detail/AnyOp.h
|
||||
include/thrift/lib/cpp2/op/detail/AnyPatch.h
|
||||
include/thrift/lib/cpp2/op/detail/BaseOp.h
|
||||
include/thrift/lib/cpp2/op/detail/BasePatch.h
|
||||
include/thrift/lib/cpp2/op/detail/Clear.h
|
||||
|
|
@ -562,6 +561,7 @@ include/thrift/lib/cpp2/transport/rocket/server/RocketSinkClientCallback.h
|
|||
include/thrift/lib/cpp2/transport/rocket/server/RocketStreamClientCallback.h
|
||||
include/thrift/lib/cpp2/transport/rocket/server/RocketThriftRequests.h
|
||||
include/thrift/lib/cpp2/transport/rocket/server/SetupFrameHandler.h
|
||||
include/thrift/lib/cpp2/transport/rocket/server/SetupFrameInterceptor.h
|
||||
include/thrift/lib/cpp2/transport/rocket/server/ThriftRocketServerHandler.h
|
||||
include/thrift/lib/cpp2/transport/rocket/test/fuzz/FuzzUtil.h
|
||||
include/thrift/lib/cpp2/transport/rocket/test/network/ClientServerTestUtil.h
|
||||
|
|
@ -640,6 +640,7 @@ include/thrift/lib/py3/test/is_overload/func.h
|
|||
include/thrift/lib/py3/types.h
|
||||
include/thrift/lib/thrift/RpcMetadata_extra.h
|
||||
include/thrift/lib/thrift/SerializableDynamic.h
|
||||
include/thrift/lib/thrift/TypeToMaskAdapter.h
|
||||
include/thrift/lib/thrift/detail/id.h
|
||||
include/thrift/lib/thrift/detail/protocol.h
|
||||
include/thrift/lib/thrift/gen-cpp2/RocketUpgrade.h
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
PORTNAME= folly
|
||||
DISTVERSIONPREFIX= v
|
||||
DISTVERSION= 2024.08.05.00
|
||||
DISTVERSION= 2024.08.12.00
|
||||
CATEGORIES= devel
|
||||
|
||||
MAINTAINER= yuri@FreeBSD.org
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1722999129
|
||||
SHA256 (facebook-folly-v2024.08.05.00_GH0.tar.gz) = 02a9d566a60156d51bfbee7a44e4f352737459547d9008b0b13a8c029e36f5a4
|
||||
SIZE (facebook-folly-v2024.08.05.00_GH0.tar.gz) = 4168284
|
||||
TIMESTAMP = 1723509311
|
||||
SHA256 (facebook-folly-v2024.08.12.00_GH0.tar.gz) = f6229c8b564aab912ebb8b9d7329c22865d20b37800408efa4e0166f630fe733
|
||||
SIZE (facebook-folly-v2024.08.12.00_GH0.tar.gz) = 4170825
|
||||
|
|
|
|||
|
|
@ -113,6 +113,8 @@ include/folly/VirtualExecutor.h
|
|||
include/folly/algorithm/simd/FindFixed.h
|
||||
include/folly/algorithm/simd/Movemask.h
|
||||
include/folly/algorithm/simd/SimdForEach.h
|
||||
include/folly/algorithm/simd/detail/SimdAnyOf.h
|
||||
include/folly/algorithm/simd/detail/SimdCharPlatform.h
|
||||
include/folly/algorithm/simd/detail/UnrollUtils.h
|
||||
include/folly/base64.h
|
||||
include/folly/channels/Channel-fwd.h
|
||||
|
|
@ -334,8 +336,6 @@ include/folly/detail/PerfScoped.h
|
|||
include/folly/detail/PolyDetail.h
|
||||
include/folly/detail/RangeCommon.h
|
||||
include/folly/detail/RangeSse42.h
|
||||
include/folly/detail/SimdAnyOf.h
|
||||
include/folly/detail/SimdCharPlatform.h
|
||||
include/folly/detail/SimpleSimdStringUtils.h
|
||||
include/folly/detail/SimpleSimdStringUtilsImpl.h
|
||||
include/folly/detail/Singleton.h
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
PORTNAME= glaze
|
||||
DISTVERSIONPREFIX= v
|
||||
DISTVERSION= 3.2.1
|
||||
DISTVERSION= 3.2.5
|
||||
CATEGORIES= devel textproc
|
||||
|
||||
MAINTAINER= yuri@FreeBSD.org
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1723003028
|
||||
SHA256 (stephenberry-glaze-v3.2.1_GH0.tar.gz) = 31d2225e78b9b6155caf533ede367a11dd7abab4a7f07ac79ab114c4aa317b0a
|
||||
SIZE (stephenberry-glaze-v3.2.1_GH0.tar.gz) = 474310
|
||||
TIMESTAMP = 1723521971
|
||||
SHA256 (stephenberry-glaze-v3.2.5_GH0.tar.gz) = 78f2fbab9286158046da7b2493fc76951e8c10e364d23981dd26da2cfad914bc
|
||||
SIZE (stephenberry-glaze-v3.2.5_GH0.tar.gz) = 482209
|
||||
|
|
|
|||
|
|
@ -107,12 +107,14 @@ include/glaze/util/dump.hpp
|
|||
include/glaze/util/expected.hpp
|
||||
include/glaze/util/fast_float.hpp
|
||||
include/glaze/util/for_each.hpp
|
||||
include/glaze/util/glaze_fast_float.hpp
|
||||
include/glaze/util/hash_map.hpp
|
||||
include/glaze/util/help.hpp
|
||||
include/glaze/util/inline.hpp
|
||||
include/glaze/util/itoa.hpp
|
||||
include/glaze/util/murmur.hpp
|
||||
include/glaze/util/parse.hpp
|
||||
include/glaze/util/primes_64.hpp
|
||||
include/glaze/util/progress_bar.hpp
|
||||
include/glaze/util/stoui64.hpp
|
||||
include/glaze/util/string_literal.hpp
|
||||
|
|
|
|||
|
|
@ -3,6 +3,9 @@ PORTVERSION= 2.31.0
|
|||
DISTVERSIONPREFIX= v
|
||||
CATEGORIES= devel
|
||||
|
||||
PATCH_SITES= https://github.com/intel/isa-l/commit/
|
||||
PATCHFILES= 1b1ee1e18f5bb4d91e3839405a8557a64a3b2581.patch:-p1
|
||||
|
||||
MAINTAINER= ports@FreeBSD.org
|
||||
COMMENT= Intel(R) Intelligent Storage Acceleration Libray
|
||||
WWW= https://github.com/intel/isa-l
|
||||
|
|
|
|||
|
|
@ -1,3 +1,5 @@
|
|||
TIMESTAMP = 1722790153
|
||||
TIMESTAMP = 1723463617
|
||||
SHA256 (intel-isa-l-v2.31.0_GH0.tar.gz) = e218b7b2e241cfb8e8b68f54a6e5eed80968cc387c4b1af03708b54e9fb236f1
|
||||
SIZE (intel-isa-l-v2.31.0_GH0.tar.gz) = 705375
|
||||
SHA256 (1b1ee1e18f5bb4d91e3839405a8557a64a3b2581.patch) = 2ee0c38621012f038cbc1f246f2a008d8a2f22cf2a9df843e630dc56ab076ae7
|
||||
SIZE (1b1ee1e18f5bb4d91e3839405a8557a64a3b2581.patch) = 1296
|
||||
|
|
|
|||
|
|
@ -19,6 +19,7 @@ USES= cmake gnome localbase:ldflags pkgconfig vala:build
|
|||
USE_GNOME= atk cairo gdkpixbuf2 glib20 gtk30 introspection pango
|
||||
|
||||
USE_LDCONFIG= yes
|
||||
LDFLAGS+= -pthread
|
||||
|
||||
USE_GITHUB= yes
|
||||
GH_ACCOUNT= AyatanaIndicators
|
||||
|
|
|
|||
|
|
@ -1,7 +1,5 @@
|
|||
PORTNAME= libdispatch
|
||||
DISTVERSIONPREFIX= swift-
|
||||
DISTVERSION= 5.5
|
||||
DISTVERSIONSUFFIX= -RELEASE
|
||||
DISTVERSION= 5.10.1
|
||||
PORTEPOCH= 1
|
||||
CATEGORIES= devel
|
||||
|
||||
|
|
@ -10,21 +8,28 @@ COMMENT= Grand Central Dispatch API support library
|
|||
|
||||
LICENSE= APACHE20
|
||||
|
||||
USES= cmake
|
||||
USES= cmake:testing compiler:c++17-lang
|
||||
USE_LDCONFIG= yes
|
||||
USE_CXXSTD= c++17
|
||||
|
||||
USE_GITHUB= yes
|
||||
GH_ACCOUNT= apple
|
||||
GH_PROJECT= swift-corelibs-libdispatch
|
||||
GH_TAGNAME= swift-${DISTVERSION}-RELEASE
|
||||
|
||||
.include <bsd.port.options.mk>
|
||||
|
||||
.if ${OSVERSION} > 1400000
|
||||
USES+= llvm:build
|
||||
#.if ${OPSYS} == FreeBSD && ${OSVERSION} >= 1400000 && ${OSVERSION} < 1400079
|
||||
#USES+= llvm:max=17,build
|
||||
#USES:= ${USES:Ncompiler\:*} # XXX avoid warnings
|
||||
#CC= ${_LLVM_MK_PREFIX}/bin/clang
|
||||
#CPP= ${_LLVM_MK_PREFIX}/bin/clang-cpp
|
||||
#CXX= ${_LLVM_MK_PREFIX}/bin/clang++
|
||||
#LD?= ${_LLVM_MK_PREFIX}/bin/ld
|
||||
.else
|
||||
USES+= compiler:c++17-lang
|
||||
#.endif
|
||||
|
||||
.if ${OPSYS} == FreeBSD && ${ARCH} == i386
|
||||
CFLAGS+= -Wno-incompatible-function-pointer-types
|
||||
.endif
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1667817651
|
||||
SHA256 (apple-swift-corelibs-libdispatch-swift-5.5-RELEASE_GH0.tar.gz) = 5efdfa1d2897c598acea42fc00776477bb3713645686774f5ff0818b26649e62
|
||||
SIZE (apple-swift-corelibs-libdispatch-swift-5.5-RELEASE_GH0.tar.gz) = 592054
|
||||
TIMESTAMP = 1723281605
|
||||
SHA256 (apple-swift-corelibs-libdispatch-5.10.1-swift-5.10.1-RELEASE_GH0.tar.gz) = affa3544b0fdb60f8f175bc0d2846177436d5848ef8ca73e3e560d23986f38b3
|
||||
SIZE (apple-swift-corelibs-libdispatch-5.10.1-swift-5.10.1-RELEASE_GH0.tar.gz) = 594770
|
||||
|
|
|
|||
|
|
@ -1,17 +1,5 @@
|
|||
--- src/event/event.c.orig 2021-09-17 04:54:52 UTC
|
||||
--- src/event/event.c.orig 2023-06-15 00:55:45 UTC
|
||||
+++ src/event/event.c
|
||||
@@ -766,9 +766,9 @@ _dispatch_timer_heap_update(dispatch_timer_heap_t dth,
|
||||
#pragma mark timer unote
|
||||
|
||||
#define _dispatch_timer_du_debug(what, du) \
|
||||
- _dispatch_debug("kevent-source[%p]: %s kevent[%p] { ident = 0x%x }", \
|
||||
+ _dispatch_debug("kevent-source[%p]: %s kevent[%p] { ident = 0x%llx }", \
|
||||
_dispatch_wref2ptr((du)->du_owner_wref), what, \
|
||||
- (du), (du)->du_ident)
|
||||
+ (du), (unsigned long long)(du)->du_ident)
|
||||
|
||||
DISPATCH_ALWAYS_INLINE
|
||||
static inline unsigned int
|
||||
@@ -792,7 +792,7 @@ _dispatch_timer_unote_disarm(dispatch_timer_source_ref
|
||||
_dispatch_timer_unote_disarm(dispatch_timer_source_refs_t dt,
|
||||
dispatch_timer_heap_t dth)
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
--- src/shims/lock.c.orig 2021-09-17 04:54:52 UTC
|
||||
--- src/shims/lock.c.orig 2023-06-15 00:55:45 UTC
|
||||
+++ src/shims/lock.c
|
||||
@@ -56,6 +56,18 @@ _dispatch_thread_switch(dispatch_lock value, dispatch_
|
||||
#endif
|
||||
|
|
@ -19,7 +19,7 @@
|
|||
#pragma mark - semaphores
|
||||
|
||||
#if USE_MACH_SEM
|
||||
@@ -394,8 +406,10 @@ _dispatch_unfair_lock_wake(uint32_t *uaddr, uint32_t f
|
||||
@@ -395,8 +407,10 @@ _dispatch_unfair_lock_wake(uint32_t *uaddr, uint32_t f
|
||||
#include <sys/time.h>
|
||||
#ifdef __ANDROID__
|
||||
#include <sys/syscall.h>
|
||||
|
|
@ -31,7 +31,7 @@
|
|||
#endif /* __ANDROID__ */
|
||||
|
||||
DISPATCH_ALWAYS_INLINE
|
||||
@@ -404,7 +418,12 @@ _dispatch_futex(uint32_t *uaddr, int op, uint32_t val,
|
||||
@@ -405,7 +419,12 @@ _dispatch_futex(uint32_t *uaddr, int op, uint32_t val,
|
||||
const struct timespec *timeout, uint32_t *uaddr2, uint32_t val3,
|
||||
int opflags)
|
||||
{
|
||||
|
|
@ -44,7 +44,7 @@
|
|||
}
|
||||
|
||||
// returns 0, ETIMEDOUT, EFAULT, EINTR, EWOULDBLOCK
|
||||
@@ -414,11 +433,15 @@ _futex_blocking_op(uint32_t *uaddr, int futex_op, uint
|
||||
@@ -415,11 +434,15 @@ _futex_blocking_op(uint32_t *uaddr, int futex_op, uint
|
||||
const struct timespec *timeout, int flags)
|
||||
{
|
||||
for (;;) {
|
||||
|
|
@ -63,7 +63,7 @@
|
|||
case EINTR:
|
||||
/*
|
||||
* if we have a timeout, we need to return for the caller to
|
||||
@@ -454,6 +477,7 @@ _dispatch_futex_wake(uint32_t *uaddr, int wake, int op
|
||||
@@ -455,6 +478,7 @@ _dispatch_futex_wake(uint32_t *uaddr, int wake, int op
|
||||
DISPATCH_INTERNAL_CRASH(errno, "_dlock_wake() failed");
|
||||
}
|
||||
|
||||
|
|
@ -71,7 +71,7 @@
|
|||
static void
|
||||
_dispatch_futex_lock_pi(uint32_t *uaddr, struct timespec *timeout, int detect,
|
||||
int opflags)
|
||||
@@ -471,6 +495,7 @@ _dispatch_futex_unlock_pi(uint32_t *uaddr, int opflags
|
||||
@@ -472,6 +496,7 @@ _dispatch_futex_unlock_pi(uint32_t *uaddr, int opflags
|
||||
if (rc == 0) return;
|
||||
DISPATCH_CLIENT_CRASH(errno, "futex_unlock_pi() failed");
|
||||
}
|
||||
|
|
@ -79,10 +79,10 @@
|
|||
|
||||
#endif
|
||||
#pragma mark - wait for address
|
||||
@@ -509,6 +534,19 @@ _dispatch_wait_on_address(uint32_t volatile *_address,
|
||||
return _dispatch_futex_wait(address, value, NULL, FUTEX_PRIVATE_FLAG);
|
||||
#elif defined(_WIN32)
|
||||
return WaitOnAddress(address, &value, sizeof(value), INFINITE) == TRUE;
|
||||
@@ -516,6 +541,19 @@ _dispatch_wait_on_address(uint32_t volatile *_address,
|
||||
? INFINITE : ((nsecs + 1000000) / 1000000);
|
||||
if (dwMilliseconds == 0) return ETIMEDOUT;
|
||||
return WaitOnAddress(address, &value, sizeof(value), dwMilliseconds) == TRUE;
|
||||
+#elif defined(__FreeBSD__)
|
||||
+ uint64_t usecs = 0;
|
||||
+ int rc;
|
||||
|
|
@ -99,7 +99,7 @@
|
|||
#else
|
||||
#error _dispatch_wait_on_address unimplemented for this platform
|
||||
#endif
|
||||
@@ -599,7 +637,7 @@ _dispatch_unfair_lock_lock_slow(dispatch_unfair_lock_t
|
||||
@@ -606,7 +644,7 @@ _dispatch_unfair_lock_lock_slow(dispatch_unfair_lock_t
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -108,7 +108,7 @@
|
|||
void
|
||||
_dispatch_unfair_lock_lock_slow(dispatch_unfair_lock_t dul,
|
||||
dispatch_lock_options_t flags)
|
||||
@@ -636,7 +674,7 @@ _dispatch_unfair_lock_unlock_slow(dispatch_unfair_lock
|
||||
@@ -643,7 +681,7 @@ _dispatch_unfair_lock_unlock_slow(dispatch_unfair_lock
|
||||
if (_dispatch_lock_has_waiters(cur)) {
|
||||
_dispatch_unfair_lock_wake(&dul->dul_lock, 0);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,16 +0,0 @@
|
|||
--- src/source.c.orig 2021-09-17 04:54:52 UTC
|
||||
+++ src/source.c
|
||||
@@ -1398,11 +1398,11 @@ _dispatch_source_debug_attr(dispatch_source_t ds, char
|
||||
dispatch_source_refs_t dr = ds->ds_refs;
|
||||
dispatch_queue_flags_t dqf = _dispatch_queue_atomic_flags(ds);
|
||||
dispatch_unote_state_t du_state = _dispatch_unote_state(dr);
|
||||
- return dsnprintf(buf, bufsiz, "target = %s[%p], ident = 0x%x, "
|
||||
+ return dsnprintf(buf, bufsiz, "target = %s[%p], ident = 0x%llx, "
|
||||
"mask = 0x%x, pending_data = 0x%llx, registered = %d, "
|
||||
"armed = %d, %s%s%s",
|
||||
target && target->dq_label ? target->dq_label : "", target,
|
||||
- dr->du_ident, dr->du_fflags, (unsigned long long)dr->ds_pending_data,
|
||||
+ (unsigned long long)dr->du_ident, dr->du_fflags, (unsigned long long)dr->ds_pending_data,
|
||||
_du_state_registered(du_state), _du_state_armed(du_state),
|
||||
(dqf & DSF_CANCELED) ? "cancelled, " : "",
|
||||
(dqf & DSF_NEEDS_EVENT) ? "needs-event, " : "",
|
||||
|
|
@ -12,6 +12,7 @@ include/dispatch/queue.h
|
|||
include/dispatch/semaphore.h
|
||||
include/dispatch/source.h
|
||||
include/dispatch/time.h
|
||||
include/os/generic_base.h
|
||||
include/os/generic_unix_base.h
|
||||
include/os/generic_win_base.h
|
||||
include/os/object.h
|
||||
|
|
|
|||
|
|
@ -18,7 +18,7 @@ GH_ACCOUNT= antirez
|
|||
|
||||
PLIST_FILES= include/linenoise.h \
|
||||
lib/liblinenoise.so \
|
||||
libdata/pkgconfig/linenoise.pc
|
||||
libdata/pkgconfig/liblinenoise.pc
|
||||
|
||||
do-build:
|
||||
@cd ${WRKSRC} && \
|
||||
|
|
@ -35,8 +35,8 @@ do-install:
|
|||
${INSTALL_LIB} ${WRKSRC}/liblinenoise.so ${STAGEDIR}${PREFIX}/lib
|
||||
${SED} \
|
||||
-e 's|@prefix@|${PREFIX}|; s|@version@|${PORTVERSION}|' \
|
||||
< ${FILESDIR}/linenoise.pc.in \
|
||||
> ${STAGEDIR}${PREFIX}/libdata/pkgconfig/linenoise.pc
|
||||
< ${FILESDIR}/liblinenoise.pc.in \
|
||||
> ${STAGEDIR}${PREFIX}/libdata/pkgconfig/liblinenoise.pc
|
||||
|
||||
do-test:
|
||||
@cd ${WRKSRC} && \
|
||||
|
|
|
|||
|
|
@ -118,18 +118,9 @@ LIBCLANG_RT_LIBS_powerpc64le= \
|
|||
asan_cxx.a.syms \
|
||||
asan_static.a \
|
||||
builtins.a \
|
||||
msan.a \
|
||||
msan.a.syms \
|
||||
msan_cxx.a \
|
||||
msan_cxx.a.syms \
|
||||
profile.a \
|
||||
stats.a \
|
||||
stats_client.a \
|
||||
tsan.a \
|
||||
tsan.a.syms \
|
||||
tsan.so \
|
||||
tsan_cxx.a \
|
||||
tsan_cxx.a.syms \
|
||||
ubsan_minimal.a \
|
||||
ubsan_minimal.a.syms \
|
||||
ubsan_minimal.so \
|
||||
|
|
|
|||
|
|
@ -1,6 +1,5 @@
|
|||
PORTNAME= oci-cli
|
||||
DISTVERSION= 3.44.3
|
||||
PORTREVISION= 1
|
||||
DISTVERSION= 3.45.2
|
||||
CATEGORIES= devel
|
||||
MASTER_SITES= PYPI
|
||||
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
||||
|
|
@ -23,7 +22,7 @@ RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}arrow>=1.0.0:devel/py-arrow@${PY_FLAVOR} \
|
|||
${PYTHON_PKGNAMEPREFIX}certifi>0:security/py-certifi@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}click>=8.0.4:devel/py-click@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}jmespath>=0.10.0:devel/py-jmespath@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}oci>=2.129.3:devel/py-oci@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}oci>=2.131.1:devel/py-oci@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}openssl>=22.1.0:security/py-openssl@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}prompt-toolkit>=3.0.29:devel/py-prompt-toolkit@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}python-dateutil>=2.5.3:devel/py-python-dateutil@${PY_FLAVOR} \
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1721117401
|
||||
SHA256 (oci-cli-3.44.3.tar.gz) = c69446cbc8e81e8420b1bfcfa22b06a08ab787d7cf77abb9f65dd9341efbe598
|
||||
SIZE (oci-cli-3.44.3.tar.gz) = 16856524
|
||||
TIMESTAMP = 1723529154
|
||||
SHA256 (oci-cli-3.45.2.tar.gz) = 9a28aec747a21f7a5666d1b53f96ce6f8f743fc6270f729e38fdb68b44cba82b
|
||||
SIZE (oci-cli-3.45.2.tar.gz) = 17163845
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
PORTNAME= oci
|
||||
DISTVERSION= 2.129.3
|
||||
DISTVERSION= 2.131.1
|
||||
CATEGORIES= devel python
|
||||
MASTER_SITES= PYPI
|
||||
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1721113406
|
||||
SHA256 (oci-2.129.3.tar.gz) = 6add29673925f32a98fba6105e4c6ad6769fc6dc2f7787086b4fd5ab2dee9ee1
|
||||
SIZE (oci-2.129.3.tar.gz) = 13059393
|
||||
TIMESTAMP = 1723529087
|
||||
SHA256 (oci-2.131.1.tar.gz) = 7b0a7514473a5f8714ce56b5c006090d28c4516066bd3ce2b56a0cb30f940138
|
||||
SIZE (oci-2.131.1.tar.gz) = 13304863
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
PORTNAME= proxmoxer
|
||||
PORTVERSION= 2.0.1
|
||||
PORTVERSION= 2.1.0
|
||||
CATEGORIES= devel python
|
||||
MASTER_SITES= PYPI
|
||||
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1671525268
|
||||
SHA256 (proxmoxer-2.0.1.tar.gz) = 088923f1a81ee27631e88314c609bfe22b33d8a41271b5f02e86f996f837fe31
|
||||
SIZE (proxmoxer-2.0.1.tar.gz) = 17551
|
||||
TIMESTAMP = 1723462101
|
||||
SHA256 (proxmoxer-2.1.0.tar.gz) = d92993782e74ed8a76ff355dc050f58aa039fa697f9349a68e643552bd0fa62e
|
||||
SIZE (proxmoxer-2.1.0.tar.gz) = 28799
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
PORTNAME= types-PyYAML
|
||||
PORTVERSION= 6.0.12.20240724
|
||||
PORTVERSION= 6.0.12.20240808
|
||||
CATEGORIES= devel python
|
||||
MASTER_SITES= PYPI
|
||||
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1722951074
|
||||
SHA256 (types-PyYAML-6.0.12.20240724.tar.gz) = cf7b31ae67e0c5b2919c703d2affc415485099d3fe6666a6912f040fd05cb67f
|
||||
SIZE (types-PyYAML-6.0.12.20240724.tar.gz) = 12355
|
||||
TIMESTAMP = 1723465187
|
||||
SHA256 (types-PyYAML-6.0.12.20240808.tar.gz) = b8f76ddbd7f65440a8bda5526a9607e4c7a322dc2f8e1a8c405644f9a6f4b9af
|
||||
SIZE (types-PyYAML-6.0.12.20240808.tar.gz) = 12359
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
PORTNAME= yattag
|
||||
PORTVERSION= 1.15.2
|
||||
PORTVERSION= 1.16.0
|
||||
CATEGORIES= devel
|
||||
MASTER_SITES= PYPI
|
||||
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1699371864
|
||||
SHA256 (yattag-1.15.2.tar.gz) = aad9f540bd22dc503e5b5506cc47856facf081aa71fd35f727371b63e1e402bf
|
||||
SIZE (yattag-1.15.2.tar.gz) = 28653
|
||||
TIMESTAMP = 1723465141
|
||||
SHA256 (yattag-1.16.0.tar.gz) = 0978247b9754d9f44e3703c64374ab9fa872d18de95ac5772fdfdd3c3f0d0706
|
||||
SIZE (yattag-1.16.0.tar.gz) = 29052
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
PORTNAME= pybind11
|
||||
DISTVERSIONPREFIX= v
|
||||
DISTVERSION= 2.13.1
|
||||
DISTVERSION= 2.13.3
|
||||
CATEGORIES= devel python
|
||||
|
||||
MAINTAINER= yuri@FreeBSD.org
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1720817743
|
||||
SHA256 (pybind-pybind11-v2.13.1_GH0.tar.gz) = 51631e88960a8856f9c497027f55c9f2f9115cafb08c0005439838a05ba17bfc
|
||||
SIZE (pybind-pybind11-v2.13.1_GH0.tar.gz) = 789821
|
||||
TIMESTAMP = 1723624024
|
||||
SHA256 (pybind-pybind11-v2.13.3_GH0.tar.gz) = 6e7a84ec241544f2f5e30c7a82c09c81f0541dd14e9d9ef61051e07105f9c445
|
||||
SIZE (pybind-pybind11-v2.13.3_GH0.tar.gz) = 793263
|
||||
|
|
|
|||
|
|
@ -11,6 +11,7 @@ include/pybind11/detail/init.h
|
|||
include/pybind11/detail/internals.h
|
||||
include/pybind11/detail/type_caster_base.h
|
||||
include/pybind11/detail/typeid.h
|
||||
include/pybind11/detail/value_and_holder.h
|
||||
include/pybind11/eigen.h
|
||||
include/pybind11/eigen/common.h
|
||||
include/pybind11/eigen/matrix.h
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
PORTNAME= pycharm-pro
|
||||
DISTVERSION= 2024.1.5
|
||||
DISTVERSION= 2024.2
|
||||
CATEGORIES= devel java python
|
||||
MASTER_SITES= https://download.jetbrains.com/python/
|
||||
DISTNAME= pycharm-professional-${PORTVERSION}
|
||||
|
|
@ -19,14 +19,11 @@ RUN_DEPENDS= intellij-fsnotifier>0:java/intellij-fsnotifier \
|
|||
jetbrains-restarter>=233.11799.241:devel/jetbrains-restarter \
|
||||
jetbrains-sqlite>=232.8660.185:devel/jetbrains-sqlite
|
||||
|
||||
USES= cpe desktop-file-utils python:run shebangfix
|
||||
USES= cpe desktop-file-utils python:run
|
||||
|
||||
CPE_VENDOR= jetbrains
|
||||
USE_JAVA= yes
|
||||
JAVA_VERSION= 17+
|
||||
SHEBANG_FILES= plugins/python/helpers/pycodestyle-2.10.0.py \
|
||||
plugins/python/helpers/pycodestyle.py \
|
||||
plugins/python/helpers/typeshed/scripts/sync_tensorflow_protobuf_stubs.sh
|
||||
|
||||
# Remove the bundled native Pty4J support libraries, they are replaced
|
||||
# by devel/jetbrains-pty4j
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1723113541
|
||||
SHA256 (pycharm-professional-2024.1.5.tar.gz) = d69292da8f9edc8be8afa58f852258df11a59040f83a47bcb799101f8236f35b
|
||||
SIZE (pycharm-professional-2024.1.5.tar.gz) = 1006539578
|
||||
TIMESTAMP = 1723558717
|
||||
SHA256 (pycharm-professional-2024.2.tar.gz) = 433614ddf391fa208f65684ff511ade2d79a87de995699b6a3c6837c27b03b27
|
||||
SIZE (pycharm-professional-2024.2.tar.gz) = 1167776746
|
||||
|
|
|
|||
File diff suppressed because it is too large
Load diff
|
|
@ -1,6 +1,6 @@
|
|||
PORTNAME= quill
|
||||
DISTVERSIONPREFIX= v
|
||||
DISTVERSION= 6.1.0
|
||||
DISTVERSION= 6.1.2
|
||||
CATEGORIES= devel
|
||||
PKGNAMESUFFIX= -logging-library
|
||||
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1723262998
|
||||
SHA256 (odygrd-quill-v6.1.0_GH0.tar.gz) = 3893ab422c746d93ff47bbcd61dd5e60bee37974b0d81cdab9cf9a4b10c58477
|
||||
SIZE (odygrd-quill-v6.1.0_GH0.tar.gz) = 1861947
|
||||
TIMESTAMP = 1723522022
|
||||
SHA256 (odygrd-quill-v6.1.2_GH0.tar.gz) = 3eea9ec9634ce0ef28a2cc766d5316c1f068feb9340cf54e40e431a9342a9220
|
||||
SIZE (odygrd-quill-v6.1.2_GH0.tar.gz) = 1862031
|
||||
|
|
|
|||
|
|
@ -54,11 +54,11 @@ TEMP_DIR= ${DBBASE_DIR}/temp
|
|||
|
||||
# If you want to update plugins, simply update the version number below,
|
||||
# and run "make makesum".
|
||||
SONARCSHARP_VER= 9.29.0.95321
|
||||
SONARJAVA_VER= 8.1.0.36477
|
||||
SONARCSHARP_VER= 9.31.0.96804
|
||||
SONARJAVA_VER= 8.2.0.36672
|
||||
SONARJAVASCRIPT_VER= 10.14.0.26080
|
||||
SONARPHP_VER= 3.36.0.11810
|
||||
SONARPYTHON_VER= 4.19.0.15616
|
||||
SONARPYTHON_VER= 4.20.0.16410
|
||||
SONARVBNET_VER= ${SONARCSHARP_VER}
|
||||
|
||||
USERS= sonarqube
|
||||
|
|
|
|||
|
|
@ -1,15 +1,15 @@
|
|||
TIMESTAMP = 1721051699
|
||||
TIMESTAMP = 1723543010
|
||||
SHA256 (sonarqube-10.5.1.90531.zip) = 343470437adc70b8b808ac1c6f77491e321ca40ecef0d07bf739f5cce3bd34a5
|
||||
SIZE (sonarqube-10.5.1.90531.zip) = 458422647
|
||||
SHA256 (sonar-csharp-plugin-9.29.0.95321.jar) = e265c8322219fbd3f81e85be2887f82b320cb73040434a4ce9237b0cf9291a5c
|
||||
SIZE (sonar-csharp-plugin-9.29.0.95321.jar) = 5577669
|
||||
SHA256 (sonar-java-plugin-8.1.0.36477.jar) = f71c5cbf38561d2c3d9985594323284b68357fb6f611a00b82d5984b0b281472
|
||||
SIZE (sonar-java-plugin-8.1.0.36477.jar) = 19201305
|
||||
SHA256 (sonar-csharp-plugin-9.31.0.96804.jar) = 66bf8a77e3a42002fd3ece9b2af411f9dbcedce4887bb2c976032b9d8ebf81cc
|
||||
SIZE (sonar-csharp-plugin-9.31.0.96804.jar) = 5578363
|
||||
SHA256 (sonar-java-plugin-8.2.0.36672.jar) = 5b055c982250ed816a66a0ed52439823c7178c780fd5bc910853cf70d620d875
|
||||
SIZE (sonar-java-plugin-8.2.0.36672.jar) = 19201293
|
||||
SHA256 (sonar-javascript-plugin-10.14.0.26080.jar) = 8256fbf46e5b548afed969bc815f0f84ad2f0fc37c0636daaf6fa50a440b14e4
|
||||
SIZE (sonar-javascript-plugin-10.14.0.26080.jar) = 21647553
|
||||
SHA256 (sonar-php-plugin-3.36.0.11810.jar) = 5333fcfb8d434184cfdd32d59cb4073cc26820923b1ca42742867cf501c07cf8
|
||||
SIZE (sonar-php-plugin-3.36.0.11810.jar) = 4749222
|
||||
SHA256 (sonar-python-plugin-4.19.0.15616.jar) = 6d31703e618c9f8f88726955504fb9588c05d1090dedc227178be65c19d97baf
|
||||
SIZE (sonar-python-plugin-4.19.0.15616.jar) = 14376083
|
||||
SHA256 (sonar-vbnet-plugin-9.29.0.95321.jar) = 586f5afda42084664e81de5051f21aff3c9d93cb90a5a1e15d9bd37441a151d4
|
||||
SIZE (sonar-vbnet-plugin-9.29.0.95321.jar) = 4709962
|
||||
SHA256 (sonar-python-plugin-4.20.0.16410.jar) = 46fa9343f3cd214b228f3692fc7000b8280c07db9d5e4e1662754d05c66cd5e4
|
||||
SIZE (sonar-python-plugin-4.20.0.16410.jar) = 14405595
|
||||
SHA256 (sonar-vbnet-plugin-9.31.0.96804.jar) = 1ce60b857f578355a0ee3e24f320b997dd041bfb33655f4c6aafbbb44ca97f36
|
||||
SIZE (sonar-vbnet-plugin-9.31.0.96804.jar) = 4709686
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@ PORTEPOCH= 0
|
|||
CATEGORIES= devel
|
||||
MASTER_SITES= SAMBA
|
||||
|
||||
MAINTAINER= timur@FreeBSD.org
|
||||
MAINTAINER= samba@FreeBSD.org
|
||||
COMMENT= Talloc based event loop library
|
||||
WWW= https://tevent.samba.org/
|
||||
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
PORTNAME= 86Box
|
||||
DISTVERSIONPREFIX= v
|
||||
DISTVERSION= 4.2
|
||||
PORTREVISION= 1
|
||||
PORTREVISION= 3
|
||||
CATEGORIES= emulators
|
||||
|
||||
MAINTAINER= tiago.gasiba@gmail.com
|
||||
|
|
@ -11,7 +11,7 @@ WWW= https://86box.net/
|
|||
LICENSE= GPLv2
|
||||
LICENSE_FILE= ${WRKSRC}/COPYING
|
||||
|
||||
ONLY_FOR_ARCHS= amd64
|
||||
ONLY_FOR_ARCHS= aarch64 amd64 powerpc64le
|
||||
|
||||
BUILD_DEPENDS= evdev-proto>=5.8:devel/evdev-proto
|
||||
LIB_DEPENDS= libevdev.so:devel/libevdev \
|
||||
|
|
@ -29,7 +29,7 @@ FLAVOR?= ${FLAVORS:[2]}
|
|||
qt5_PKGNAMESUFFIX= -qt5
|
||||
qt6_PKGNAMESUFFIX= -qt6
|
||||
|
||||
USES= cmake compiler gnome pkgconfig qmake sdl xorg
|
||||
USES= cmake compiler:c++11-lang gnome pkgconfig qmake sdl xorg
|
||||
USE_GITHUB= yes
|
||||
USE_GNOME= glib20
|
||||
USE_SDL= sdl2
|
||||
|
|
@ -48,9 +48,14 @@ CMAKE_ON= USE_QT6
|
|||
CXXFLAGS+= -I${LOCALBASE}/include/qt6/QtGui/`pkg-config --modversion Qt6Gui`/QtGui
|
||||
.endif
|
||||
|
||||
SUB_FILES= 86Box-install-roms.sh
|
||||
SUB_LIST= DISTVERSION=${DISTVERSION} \
|
||||
DISTVERSIONPREFIX=${DISTVERSIONPREFIX}
|
||||
CMAKE_ON+= RELEASE ${CMAKE_ON_${ARCH}}
|
||||
CMAKE_ON_aarch64= NEW_DYNAREC
|
||||
CMAKE_OFF= DISCORD ${CMAKE_OFF_${ARCH}}
|
||||
CMAKE_OFF_powerpc64le= DYNAREC
|
||||
|
||||
SUB_FILES= 86Box-install-roms.sh
|
||||
SUB_LIST= DISTVERSION=${DISTVERSION} \
|
||||
DISTVERSIONPREFIX=${DISTVERSIONPREFIX}
|
||||
|
||||
OPTIONS_DEFINE= NLS WAYLAND
|
||||
OPTIONS_DEFAULT= WAYLAND
|
||||
|
|
@ -68,7 +73,7 @@ ICON_RESOLUTIONS= 128x128 192x192 256x256 48x48 512x512 64x64 72x72 96x96
|
|||
do-install:
|
||||
${INSTALL_PROGRAM} ${WRKDIR}/.build/src/86Box ${STAGEDIR}${PREFIX}/bin
|
||||
${INSTALL_SCRIPT} ${WRKDIR}/86Box-install-roms.sh ${STAGEDIR}${PREFIX}/bin
|
||||
${REINPLACE_CMD} -e 's|Exec=86Box|Exec=/bin/sh -c "${PREFIX}/bin/86Box -C $${HOME}/86box.cfg"|' \
|
||||
${REINPLACE_CMD} -e 's|Exec=86Box|Exec=/bin/sh -c "${PREFIX}/bin/86Box -C $${HOME}/.config/86Box.cfg"|' \
|
||||
${WRKSRC}/src/unix/assets/net.86box.86Box.desktop
|
||||
${INSTALL_DATA} ${WRKSRC}/src/unix/assets/net.86box.86Box.desktop \
|
||||
${STAGEDIR}${DESKTOPDIR}
|
||||
|
|
|
|||
|
|
@ -1,9 +1,12 @@
|
|||
[
|
||||
{ type: install
|
||||
message: <<EOM
|
||||
86Box requires you to manually install ROMS to be able to run.
|
||||
To do this, you can type in the following command:
|
||||
86Box-install-roms.sh -i
|
||||
(1) 86Box requires you to manually install ROMS to be able to run.
|
||||
To do this, you can type in the following command:
|
||||
86Box-install-roms.sh -i
|
||||
|
||||
(2) Running 86Box through the desktop shortcut uses the configuration
|
||||
which is placed in the folder ~/.config/86Box.cfg
|
||||
EOM
|
||||
}
|
||||
]
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
PORTNAME= rpcs3
|
||||
DISTVERSIONPREFIX= v
|
||||
DISTVERSION= 0.0.32-16791 # git rev-list --count HEAD
|
||||
DISTVERSIONSUFFIX= -g2806348f73
|
||||
DISTVERSION= 0.0.32-16804 # git rev-list --count HEAD
|
||||
DISTVERSIONSUFFIX= -gff6a4bb72d
|
||||
CATEGORIES= emulators wayland
|
||||
|
||||
MAINTAINER= jbeich@FreeBSD.org
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
TIMESTAMP = 1723226510
|
||||
SHA256 (RPCS3-rpcs3-v0.0.32-16791-g2806348f73_GH0.tar.gz) = cb32d0b5099bbe0163f05705f2e42ce9403708012ca42eda8070710cea068d2a
|
||||
SIZE (RPCS3-rpcs3-v0.0.32-16791-g2806348f73_GH0.tar.gz) = 7764154
|
||||
TIMESTAMP = 1723497563
|
||||
SHA256 (RPCS3-rpcs3-v0.0.32-16804-gff6a4bb72d_GH0.tar.gz) = 3919c5b460f3cb3db0f71299dcc8f3dfdce4d7830065f6db14914f39b93f8ca9
|
||||
SIZE (RPCS3-rpcs3-v0.0.32-16804-gff6a4bb72d_GH0.tar.gz) = 7768633
|
||||
SHA256 (RPCS3-hidapi-hidapi-0.14.0-2-g8b43a97_GH0.tar.gz) = 109ba77362885d60e274930f637735ee75df2850fe99e3f1c3a5b9d1187f8cb6
|
||||
SIZE (RPCS3-hidapi-hidapi-0.14.0-2-g8b43a97_GH0.tar.gz) = 348879
|
||||
SHA256 (RPCS3-soundtouch-2.3.1-68-g394e1f5_GH0.tar.gz) = e24af82c51547341e2dfd43af03c1847abfd8d27334d667e6a51943f7f505cbe
|
||||
|
|
|
|||
|
|
@ -41,16 +41,31 @@ CMAKE_ARGS= -DDESIRED_QT_VERSION=5 \
|
|||
-DMORROWIND_DATA_FILES="${DATADIR}/data" \
|
||||
-DOPENMW_RESOURCE_FILES="${DATADIR}/resources"
|
||||
|
||||
# passed from openal to prevent linker errors
|
||||
LDFLAGS+= -Wl,--as-needed
|
||||
LDFLAGS_i386= -Wl,-z,notext
|
||||
|
||||
OPTIONS_DEFINE= DOCS
|
||||
|
||||
DOCS_CMAKE_BOOL= BUILD_DOCS
|
||||
DOCS_BINARY_ALIAS= sphinx-build=sphinx-build-${PYTHON_VER}
|
||||
DOCS_BUILD_DEPENDS= doxygen>0:devel/doxygen \
|
||||
sphinx-build:textproc/py-sphinx@${PY_FLAVOR}
|
||||
${PYTHON_PKGNAMEPREFIX}sphinx>=0,1:textproc/py-sphinx@${PY_FLAVOR}
|
||||
DOCS_USES= python:build
|
||||
|
||||
PORTDOCS= *
|
||||
|
||||
.include <bsd.port.pre.mk>
|
||||
|
||||
# The following is actually meant for lld 15.0 and later, but the ports
|
||||
# framework does not support LINKER_TYPE and LINKER_VERSION yet.
|
||||
.if ${COMPILER_TYPE} == "clang"
|
||||
# Turn off checking of dynamic relocations, to avoid lld diagnostics about
|
||||
# possibly incorrect addend values.
|
||||
LDFLAGS_i386+= -Wl,--no-check-dynamic-relocations
|
||||
.endif
|
||||
|
||||
post-install:
|
||||
@${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/*
|
||||
|
||||
.include <bsd.port.mk>
|
||||
.include <bsd.port.post.mk>
|
||||
|
|
|
|||
|
|
@ -0,0 +1,11 @@
|
|||
--- apps/openmw/mwstate/charactermanager.hpp.orig 2023-08-08 09:23:20 UTC
|
||||
+++ apps/openmw/mwstate/charactermanager.hpp
|
||||
@@ -1,6 +1,8 @@
|
||||
#ifndef GAME_STATE_CHARACTERMANAGER_H
|
||||
#define GAME_STATE_CHARACTERMANAGER_H
|
||||
|
||||
+#include <list>
|
||||
+
|
||||
#include <boost/filesystem/path.hpp>
|
||||
|
||||
#include "character.hpp"
|
||||
10
games/openmw/files/patch-components_bsa_bsa__file.cpp
Normal file
10
games/openmw/files/patch-components_bsa_bsa__file.cpp
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
--- components/bsa/bsa_file.cpp.orig 2023-08-08 09:23:20 UTC
|
||||
+++ components/bsa/bsa_file.cpp
|
||||
@@ -26,6 +26,7 @@
|
||||
#include <components/files/constrainedfilestream.hpp>
|
||||
|
||||
#include <cassert>
|
||||
+#include <algorithm>
|
||||
|
||||
#include <boost/filesystem/path.hpp>
|
||||
#include <boost/filesystem/fstream.hpp>
|
||||
|
|
@ -1236,6 +1236,7 @@
|
|||
SUBDIR += xfractint
|
||||
SUBDIR += xglurbules
|
||||
SUBDIR += xgrasp
|
||||
SUBDIR += ximaging
|
||||
SUBDIR += xli
|
||||
SUBDIR += xmedcon
|
||||
SUBDIR += xmlgraphics-commons
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
PORTNAME= moderngl
|
||||
DISTVERSION= 5.10.0
|
||||
DISTVERSION= 5.11.1
|
||||
CATEGORIES= graphics
|
||||
#MASTER_SITES= PYPI # no tests
|
||||
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
||||
|
|
@ -13,7 +13,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE
|
|||
|
||||
BUILD_DEPENDS= ${PY_SETUPTOOLS} \
|
||||
${PYTHON_PKGNAMEPREFIX}wheel>0:devel/py-wheel@${PY_FLAVOR}
|
||||
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}glcontext>=2.5.0<3:graphics/py-glcontext@${PY_FLAVOR}
|
||||
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}glcontext>=3.0.0:graphics/py-glcontext@${PY_FLAVOR}
|
||||
TEST_DEPENDS= ${PYNUMPY} \
|
||||
${PYTHON_PKGNAMEPREFIX}scipy>=1.2.1:science/py-scipy@${PY_FLAVOR}
|
||||
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1709948328
|
||||
SHA256 (moderngl-moderngl-5.10.0_GH0.tar.gz) = acb0610487d090b069a2e11fb4874c2a58f252b59e1bcf23d5e6b7ec2727ffc8
|
||||
SIZE (moderngl-moderngl-5.10.0_GH0.tar.gz) = 2310879
|
||||
TIMESTAMP = 1723606572
|
||||
SHA256 (moderngl-moderngl-5.11.1_GH0.tar.gz) = 0738ce38d66889529ced9d83f70a099d4dc0021a961083f90048e5884fe3d3b9
|
||||
SIZE (moderngl-moderngl-5.11.1_GH0.tar.gz) = 1679561
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
PORTNAME= pyglet
|
||||
PORTVERSION= 2.0.16
|
||||
PORTVERSION= 2.0.17
|
||||
CATEGORIES= graphics multimedia x11-toolkits python
|
||||
MASTER_SITES= PYPI
|
||||
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1721655306
|
||||
SHA256 (pyglet-2.0.16.tar.gz) = af007b22ff5f302edeb2a06d749cfef53f52e67f1e52f0b2babd840d37193482
|
||||
SIZE (pyglet-2.0.16.tar.gz) = 6460241
|
||||
TIMESTAMP = 1723464793
|
||||
SHA256 (pyglet-2.0.17.tar.gz) = 50c533c1a7cafdccccf43041338ad921ae26866e9871b4f12bf608500632900a
|
||||
SIZE (pyglet-2.0.17.tar.gz) = 6472212
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
PORTNAME= shotwell
|
||||
PORTVERSION= 0.32.7
|
||||
PORTVERSION= 0.32.8
|
||||
CATEGORIES= graphics gnome
|
||||
MASTER_SITES= GNOME
|
||||
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1719937575
|
||||
SHA256 (shotwell-0.32.7.tar.xz) = 12f325e019c3e638c2b961571bc204776761e8261467ef1bb68755889335d5f7
|
||||
SIZE (shotwell-0.32.7.tar.xz) = 35339216
|
||||
TIMESTAMP = 1723493157
|
||||
SHA256 (shotwell-0.32.8.tar.xz) = 47063c0179e5d80f534373dc560e1ce8077aadd584eeef06c523a460e2f929c3
|
||||
SIZE (shotwell-0.32.8.tar.xz) = 35340092
|
||||
|
|
|
|||
31
graphics/ximaging/Makefile
Normal file
31
graphics/ximaging/Makefile
Normal file
|
|
@ -0,0 +1,31 @@
|
|||
PORTNAME= ximaging
|
||||
DISTVERSIONPREFIX= src-
|
||||
DISTVERSION= 1.8
|
||||
CATEGORIES= graphics
|
||||
MASTER_SITES= https://fastestcode.org/dl/
|
||||
|
||||
MAINTAINER= corlat@ermaion.com
|
||||
COMMENT= Image Viewer and Browser for Unix/X11
|
||||
WWW= https://fastestcode.org/ximaging.html
|
||||
|
||||
LICENSE= MIT
|
||||
|
||||
LIB_DEPENDS= libpng16.so:graphics/png \
|
||||
libtiff.so:graphics/tiff
|
||||
|
||||
USES= jpeg motif tar:xz
|
||||
USE_XORG= x11 xinerama xt
|
||||
|
||||
PLIST_FILES= bin/ximaging \
|
||||
etc/X11/app-defaults/XImaging \
|
||||
share/man/man1/ximaging.1.gz
|
||||
|
||||
do-install:
|
||||
${INSTALL_PROGRAM} ${WRKSRC}/src/${PORTNAME} ${STAGEDIR}${PREFIX}/bin
|
||||
${MKDIR} ${STAGEDIR}${PREFIX}/share/man/man1
|
||||
${INSTALL_MAN} ${WRKSRC}/src/${PORTNAME}.1 ${STAGEDIR}${PREFIX}/share/man/man1
|
||||
${MKDIR} ${STAGEDIR}${PREFIX}/etc/X11/app-defaults
|
||||
${INSTALL_DATA} ${WRKSRC}/src/XImaging.ad \
|
||||
${STAGEDIR}${PREFIX}/etc/X11/app-defaults/XImaging
|
||||
|
||||
.include <bsd.port.mk>
|
||||
3
graphics/ximaging/distinfo
Normal file
3
graphics/ximaging/distinfo
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
TIMESTAMP = 1723053176
|
||||
SHA256 (ximaging-src-1.8.tar.xz) = 2de967c72bd9ff100970fb48bff9bf5200fa36c9a58f17afa9449bbd215bd010
|
||||
SIZE (ximaging-src-1.8.tar.xz) = 111180
|
||||
14
graphics/ximaging/pkg-descr
Normal file
14
graphics/ximaging/pkg-descr
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
XImaging is a lightweight, multithreaded, open source image viewer for FreeBSD,
|
||||
Linux and other Unix like platforms running X11. The application can be run in
|
||||
viewer or browser mode. The viewer displays full size images and provides
|
||||
zooming, panning, rotation and other useful functions. The browser searches a
|
||||
directory for known image file types and displays them as thumbnails.
|
||||
Additionally both modes provide basic file management routines. A custom tool
|
||||
may be specified for opening selected files in another application for editing.
|
||||
|
||||
Most common raster image types are suppported directly, while filters (any
|
||||
program that can write PNM/PAM data to the stdout) may be used to add support
|
||||
for other kinds of image data.
|
||||
|
||||
The program is written in C, and uses the Motif widget toolkit. The source code
|
||||
may be modified and distributed under the terms of the X/MIT license.
|
||||
|
|
@ -1,6 +1,6 @@
|
|||
PORTNAME= eisl
|
||||
DISTVERSIONPREFIX= v
|
||||
DISTVERSION= 5.10
|
||||
DISTVERSION= 5.20
|
||||
CATEGORIES= lang devel
|
||||
|
||||
MAINTAINER= yuri@FreeBSD.org
|
||||
|
|
|
|||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Reference in a new issue