*/*: sync with upstream

Taken from: FreeBSD
This commit is contained in:
Franco Fichtner 2023-06-06 09:10:30 +02:00
parent 5411bc79a5
commit 93ad291116
1763 changed files with 7815 additions and 16483 deletions

View File

@ -1,5 +1,5 @@
PORTNAME= atk
PORTVERSION= 4.1.6
PORTVERSION= 4.1.7
CATEGORIES= accessibility rubygems
MASTER_SITES= RG

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1685162414
SHA256 (rubygem/atk-4.1.6.gem) = 2fb7e261ea42d0813e6f1121c4012a255431de497d7e1bb86c53554bf43be120
SIZE (rubygem/atk-4.1.6.gem) = 15872
TIMESTAMP = 1685793116
SHA256 (rubygem/atk-4.1.7.gem) = 4aff31c1b085c3f643232bbf86f27f61a9ececa50a8e3161a214ea6c7e6f6136
SIZE (rubygem/atk-4.1.7.gem) = 15872

View File

@ -68,7 +68,6 @@
SUBDIR += libmspack
SUBDIR += libpar2
SUBDIR += librtfcomp
SUBDIR += libunrar
SUBDIR += libunrar6
SUBDIR += libzip
SUBDIR += libzippp

View File

@ -1,28 +0,0 @@
PORTNAME= libunrar
PORTVERSION= 3.9.10
PORTEPOCH= 1
CATEGORIES= archivers
MASTER_SITES= http://www.rarlab.com/rar/
DISTNAME= unrarsrc-${PORTVERSION}
MAINTAINER= samm@FreeBSD.org
COMMENT= Library to work with RAR archives
WWW= https://www.rarsoft.com/
WRKSRC= ${WRKDIR}/unrar
USES= gmake
CONFLICTS_INSTALL= libunrar6 # lib/libunrar.so
MAKEFILE= makefile.unix
ALL_TARGET= lib
USE_LDCONFIG= yes
do-install:
${INSTALL_LIB} ${WRKSRC}/libunrar.so.3 ${STAGEDIR}${PREFIX}/lib/
cd ${STAGEDIR}${PREFIX}/lib && ${LN} -sf libunrar.so.3 libunrar.so
${MKDIR} ${STAGEDIR}${PREFIX}/include/libunrar3
${INSTALL_DATA} ${WRKSRC}/dll.hpp ${STAGEDIR}${PREFIX}/include/libunrar3/dll.hpp
.include <bsd.port.mk>

View File

@ -1,2 +0,0 @@
SHA256 (unrarsrc-3.9.10.tar.gz) = 3b4627d8f5700588bc594afee6911865f55201625299f414438a654da488207a
SIZE (unrarsrc-3.9.10.tar.gz) = 142718

View File

@ -1,13 +0,0 @@
--- dll.cpp.orig 2010-03-15 06:30:52 UTC
+++ dll.cpp
@@ -281,7 +281,9 @@ int PASCAL ProcessFile(HANDLE hArcData,i
strcpy(Data->Cmd.Command,Operation==RAR_EXTRACT ? "X":"T");
Data->Cmd.Test=Operation!=RAR_EXTRACT;
bool Repeat=false;
- Data->Extract.ExtractCurrentFile(&Data->Cmd,Data->Arc,Data->HeaderSize,Repeat);
+
+ if(Data->Extract.ExtractCurrentFile(&Data->Cmd,Data->Arc,Data->HeaderSize,Repeat) == false)
+ return (ERAR_UNKNOWN);
while (Data->Arc.ReadHeader()!=0 && Data->Arc.GetHeaderType()==NEWSUB_HEAD)
{

View File

@ -1,19 +0,0 @@
--- dll.hpp.orig 2010-03-15 06:30:53 UTC
+++ dll.hpp
@@ -28,14 +28,14 @@
#define RAR_DLL_VERSION 4
-#ifdef _UNIX
+// #ifdef _UNIX
#define CALLBACK
#define PASCAL
#define LONG long
#define HANDLE void *
#define LPARAM long
#define UINT unsigned int
-#endif
+// #endif
struct RARHeaderData
{

View File

@ -1,10 +0,0 @@
--- extract.cpp.orig 2010-03-15 06:30:52 UTC
+++ extract.cpp
@@ -354,6 +354,7 @@ bool CmdExtract::ExtractCurrentFile(Comm
char CurVolName[NM];
strcpy(CurVolName,ArcName);
+ if(strcmp(ArcName,"")==0) return(false);
VolNameToFirstName(ArcName,ArcName,(Arc.NewMhd.Flags & MHD_NEWNUMBERING)!=0);
if (stricomp(ArcName,CurVolName)!=0 && FileExist(ArcName))
{

View File

@ -1,44 +0,0 @@
--- makefile.unix.orig 2009-05-03 05:18:45 UTC
+++ makefile.unix
@@ -7,10 +7,11 @@
# Linux using GCC
#CXX=g++
-#CXXFLAGS=-O2
-DEFINES=-D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE
+CXXFLAGS=$(CFLAGS) -fPIC -DPIC
+DEFINES=-D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -DGUI -DSILENT
STRIP=strip
DESTDIR=/usr
+RANLIB=ranlib
# Linux using LCC
#CXX=lcc
@@ -100,7 +101,7 @@ LINK=$(CXX)
WHAT=UNRAR
UNRAR_OBJ=filestr.o recvol.o rs.o scantree.o
-LIB_OBJ=filestr.o scantree.o dll.o
+LIB_OBJ=dll.o
OBJECTS=rar.o strlist.o strfn.o pathfn.o savepos.o smallfn.o global.o file.o filefn.o filcreat.o \
archive.o arcread.o unicode.o system.o isnt.o crypt.o crc.o rawread.o encname.o \
@@ -131,9 +132,15 @@ sfx: $(OBJECTS)
$(STRIP) default.sfx
lib: WHAT=RARDLL
-lib: $(OBJECTS) $(LIB_OBJ)
- @rm -f libunrar.so
- $(LINK) -shared -o libunrar.so $(LDFLAGS) $(OBJECTS) $(LIB_OBJ)
+lib: $(OBJECTS) $(LIB_OBJ) $(UNRAR_OBJ)
+ @rm -f libunrar.so.3
+ $(LINK) -shared -o libunrar.so.3 $(LDFLAGS) $(OBJECTS) $(LIB_OBJ) $(UNRAR_OBJ)
+
+liba: WHAT=RARDLL
+liba: $(OBJECTS) $(LIB_OBJ) $(UNRAR_OBJ)
+ @rm -f libunrar.a
+ $(AR) rc libunrar.a $(OBJECTS) $(LIB_OBJ) $(UNRAR_OBJ)
+ $(RANLIB) libunrar.a
install-unrar:
install unrar $(DESTDIR)/bin

View File

@ -1,5 +0,0 @@
The UnRAR library is a minor part of the RAR archiver and contains
RAR uncompression algorithm. UnRAR requires very small volume of
memory to operate.
UnRAR library can be used by other programs to extract RAR archives.
This package contains small fixes from the http://mcmcc.bat.ru/clamav/.

View File

@ -1,3 +0,0 @@
lib/libunrar.so
lib/libunrar.so.3
include/libunrar3/dll.hpp

View File

@ -1,5 +1,5 @@
PORTNAME= rar
PORTVERSION= 6.21
PORTVERSION= 6.22
PORTEPOCH= 3
CATEGORIES= archivers
MASTER_SITES= https://www.rarlab.com/rar/

View File

@ -1,5 +1,5 @@
TIMESTAMP = 1684104298
SHA256 (rarbsd-x32-621.tar.gz) = dd970156da918bf795c590f295f9a5f9154be68d6e4f4fed571a299eb2579a05
SIZE (rarbsd-x32-621.tar.gz) = 576573
SHA256 (rarbsd-x64-621.tar.gz) = 40ab10c7e075e83f534aafb85691b5ed2011558c7c09b30c45702f7cd01e4667
SIZE (rarbsd-x64-621.tar.gz) = 617909
TIMESTAMP = 1685792174
SHA256 (rarbsd-x32-622.tar.gz) = 4e39182865141fc2de9c6f0e7da70ba660e5b8116d78952d830442914906cdb9
SIZE (rarbsd-x32-622.tar.gz) = 613536
SHA256 (rarbsd-x64-622.tar.gz) = 88177dab2f3cc3cf4ddd129f83480d67c22eef6d429d9f17151314faac133e3d
SIZE (rarbsd-x64-622.tar.gz) = 621783

View File

@ -1,9 +1,9 @@
PORTNAME= unrar
PORTVERSION= 6.21
PORTVERSION= 6.22
PORTEPOCH= 6
CATEGORIES+= archivers
MASTER_SITES= https://www.rarlab.com/rar/
DISTNAME= unrarsrc-6.2.6
DISTNAME= unrarsrc-6.2.8
MAINTAINER?= sunpoet@FreeBSD.org
COMMENT= Extract, view & test RAR archives

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1684104300
SHA256 (unrarsrc-6.2.6.tar.gz) = 0c2d4cbc8b34d0e3bec7b474e0f52bbcc6c4320ec089b4141223ee355f63c318
SIZE (unrarsrc-6.2.6.tar.gz) = 246212
TIMESTAMP = 1685792176
SHA256 (unrarsrc-6.2.8.tar.gz) = 1777e3d3b073815ff68a411ddb1ab76d0a4e1f58ecc7080035b27b52967ff911
SIZE (unrarsrc-6.2.8.tar.gz) = 246249

View File

@ -5,7 +5,7 @@ CATEGORIES= archivers
MASTER_SITES= http://vesuri.jormas.com/xpk/ \
http://www.energyhq.es.eu.org/files/
MAINTAINER= ports@FreeBSD.org
MAINTAINER= bofh@FreeBSD.org
COMMENT= The eXternal PacKer (XPK) library system
WWW= http://www.jormas.com/~vesuri/xpk/
@ -13,10 +13,17 @@ LICENSE= GPLv2+
LICENSE_FILE= ${WRKSRC}/COPYING
USES= libtool
GNU_CONFIGURE= yes
USE_LDCONFIG= yes
GNU_CONFIGURE= yes
.include <bsd.port.pre.mk>
.if ${OPSYS} == FreeBSD && ( ${OSVERSION} >= 1400079 || ( ${OSVERSION} >= 1302505 && ${OSVERSION} < 1400000 ))
CFLAGS+= -Wno-error=int-conversion
.endif
post-install:
${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libxpk*.so
.include <bsd.port.mk>
.include <bsd.port.post.mk>

View File

@ -36,4 +36,10 @@ CONFIGURE_ENV= DATADIRNAME=share
INFO= foxtrotgps
.include <bsd.port.mk>
.include <bsd.port.pre.mk>
.if ${OPSYS} == FreeBSD && ( ${OSVERSION} >= 1400079 || ( ${OSVERSION} >= 1302505 && ${OSVERSION} < 1400000 ))
CFLAGS+= -Wno-error=int-conversion
.endif
.include <bsd.port.post.mk>

View File

@ -1,5 +1,5 @@
PORTNAME= josm
PORTVERSION= 18721
PORTVERSION= 18746
CATEGORIES= astro java
MASTER_SITES= https://josm.openstreetmap.de/download/
DISTNAME= ${PORTNAME}-snapshot-${PORTVERSION}.jar

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1683139082
SHA256 (josm-snapshot-18721.jar) = 9dcea2b686e50333f4eb8c534c5f2af7dd138915f7fb37f9ba4f9e9d2f82e49a
SIZE (josm-snapshot-18721.jar) = 16460468
TIMESTAMP = 1685977783
SHA256 (josm-snapshot-18746.jar) = 4f346ced83e90b3b2018079a5b4a71d9a66c5098fccaa229a147fb448cc0b198
SIZE (josm-snapshot-18746.jar) = 16627046

View File

@ -1,7 +1,6 @@
PORTNAME= Carla
DISTVERSIONPREFIX= v
DISTVERSION= 2.5.4
PORTREVISION= 2
DISTVERSION= 2.5.5
CATEGORIES= audio
MAINTAINER= yuri@FreeBSD.org

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1678643030
SHA256 (falkTX-Carla-v2.5.4_GH0.tar.gz) = 251b5334bb86c84c85eddb541bfc68767d0fe422266e77df0c000b5b71fabb7e
SIZE (falkTX-Carla-v2.5.4_GH0.tar.gz) = 11530440
TIMESTAMP = 1685989087
SHA256 (falkTX-Carla-v2.5.5_GH0.tar.gz) = e5958982b6f73d946db2334d275377a06e979e607bce7ae91738dd939cd0ee55
SIZE (falkTX-Carla-v2.5.5_GH0.tar.gz) = 11528560

View File

@ -12,8 +12,6 @@ bin/carla-single
include/carla/CarlaBackend.h
include/carla/CarlaEngine.hpp
include/carla/CarlaHost.h
include/carla/CarlaNative.h
include/carla/CarlaNativePlugin.h
include/carla/CarlaPlugin.hpp
include/carla/CarlaPluginPtr.hpp
include/carla/CarlaUtils.h
@ -21,6 +19,23 @@ include/carla/includes/CarlaDefines.h
include/carla/includes/CarlaMIDI.h
include/carla/includes/CarlaNative.h
include/carla/includes/CarlaNativePlugin.h
include/carla/utils/CarlaBackendUtils.hpp
include/carla/utils/CarlaBase64Utils.hpp
include/carla/utils/CarlaBinaryUtils.hpp
include/carla/utils/CarlaBridgeDefines.hpp
include/carla/utils/CarlaBridgeUtils.hpp
include/carla/utils/CarlaMacUtils.hpp
include/carla/utils/CarlaMathUtils.hpp
include/carla/utils/CarlaMutex.hpp
include/carla/utils/CarlaProcessUtils.hpp
include/carla/utils/CarlaRingBuffer.hpp
include/carla/utils/CarlaRunner.hpp
include/carla/utils/CarlaScopeUtils.hpp
include/carla/utils/CarlaSemUtils.hpp
include/carla/utils/CarlaShmUtils.hpp
include/carla/utils/CarlaString.hpp
include/carla/utils/CarlaThread.hpp
include/carla/utils/CarlaUtils.hpp
lib/carla/carla-bridge-lv2-gtk2
lib/carla/carla-bridge-lv2-gtk3
lib/carla/carla-bridge-lv2-modgui
@ -33,6 +48,7 @@ lib/carla/libcarla_host-plugin.so
lib/carla/libcarla_native-plugin.so
lib/carla/libcarla_standalone2.so
lib/carla/libcarla_utils.so
lib/carla/resources
lib/carla/styles/carlastyle.json
lib/carla/styles/carlastyle.so
lib/lv2/carla.lv2/audiofile.ttl

View File

@ -20,8 +20,7 @@ NO_ARCH= yes
do-test: # Tests fail to configure, see https://github.com/drobilla/raul/issues/2
@cd ${WRKSRC} && \
${RM} -rf _build && \
${SETENV} ${CONFIGURE_ENV} ${CONFIGURE_CMD} ${CONFIGURE_ARGS} -Dtests=enabled && \
${SETENV} ${CONFIGURE_ENV} ${CONFIGURE_CMD} --reconfigure ${CONFIGURE_ARGS} -Dtests=enabled && \
${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_ARGS} ${ALL_TARGET} test
.include <bsd.port.mk>

View File

@ -1,6 +1,6 @@
PORTNAME= surelog
DISTVERSIONPREFIX= v
DISTVERSION= 1.60
DISTVERSION= 1.61
CATEGORIES= cad
MAINTAINER= yuri@FreeBSD.org
@ -45,6 +45,8 @@ CONFLICTS_INSTALL= capnproto capnproto080
BINARY_ALIAS= python3=${PYTHON_CMD} tclsh=${TCLSH}
CONFLICTS_BUILD= openjdk8 openjdk11 openjdk18 openjdk19
OPTIONS_DEFINE= PYTHON
OPTIONS_SUB= yes

View File

@ -1,6 +1,6 @@
TIMESTAMP = 1685500202
SHA256 (chipsalliance-Surelog-v1.60_GH0.tar.gz) = e5f68eaf1d257df5161d75d12d1189df5860d03c7a362c72d1a963d31cdbb8c6
SIZE (chipsalliance-Surelog-v1.60_GH0.tar.gz) = 91981961
TIMESTAMP = 1685994661
SHA256 (chipsalliance-Surelog-v1.61_GH0.tar.gz) = 06114ea5e776dbf06705f2e2884665adbf7cf42e2f638882b496c0bdd3aba638
SIZE (chipsalliance-Surelog-v1.61_GH0.tar.gz) = 92071481
SHA256 (alainmarcel-antlr4-cae2b22_GH0.tar.gz) = f4f82c2aa5febfe4f2fd2e3691a34bdea37d4ad57c5f2511b97abad134c61a06
SIZE (alainmarcel-antlr4-cae2b22_GH0.tar.gz) = 4313615
SHA256 (google-googletest-cb455a7_GH0.tar.gz) = d3308c0dc010d10d4d4a13c83d784571bb2084e6c790e758167aed49dbdb18b2

View File

@ -1,6 +1,6 @@
PORTNAME= uhdm
DISTVERSIONPREFIX= v
DISTVERSION= 1.60
DISTVERSION= 1.61
CATEGORIES= cad
MAINTAINER= yuri@FreeBSD.org

View File

@ -1,6 +1,6 @@
TIMESTAMP = 1685499114
SHA256 (chipsalliance-UHDM-v1.60_GH0.tar.gz) = 22d008986bc8ab0423e33003b35ce8b3d4ce94e8689d0744bb495955f4dbd4f0
SIZE (chipsalliance-UHDM-v1.60_GH0.tar.gz) = 1760882
TIMESTAMP = 1685993760
SHA256 (chipsalliance-UHDM-v1.61_GH0.tar.gz) = 909867f24031360041fa63c115ecbb9b18ae9bbbe88223ee811c33dd1e68a7c9
SIZE (chipsalliance-UHDM-v1.61_GH0.tar.gz) = 1761113
SHA256 (capnproto-capnproto-14f24a4_GH0.tar.gz) = 1130e78658e8b1ceb3a69a6b3a964913f22505532ab217299e5600f371922877
SIZE (capnproto-capnproto-14f24a4_GH0.tar.gz) = 2121570
SHA256 (google-googletest-58d77fa_GH0.tar.gz) = a55ceaae12e0ea65fee295b8d807bab5c06a719e98d9ac15af7f7c42a8d5000e

View File

@ -119,6 +119,7 @@ include/uhdm/gen_case.h
include/uhdm/gen_for.h
include/uhdm/gen_if.h
include/uhdm/gen_if_else.h
include/uhdm/gen_region.h
include/uhdm/gen_scope.h
include/uhdm/gen_scope_array.h
include/uhdm/gen_stmt.h

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1669540644
SHA256 (wordpress-6.1.1-zh_CN.tar.gz) = 57360695dd6b5ff1c6debd31cd25c218c6b0c73d4eb523af04b89b9d71ee4cc1
SIZE (wordpress-6.1.1-zh_CN.tar.gz) = 23533157
TIMESTAMP = 1685993647
SHA256 (wordpress-6.2.2-zh_CN.tar.gz) = 1bd803406e91dd4ada27bacb8beb8ccf60ad2f0df71c3aa1d3d200f7b6fced67
SIZE (wordpress-6.2.2-zh_CN.tar.gz) = 23767866

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1669540672
SHA256 (wordpress-6.1.1-zh_TW.tar.gz) = a5bfef6e841373060de5f217a1b23a67a2d697a06e5feb22827c6d5ba5734ffc
SIZE (wordpress-6.1.1-zh_TW.tar.gz) = 23563087
TIMESTAMP = 1685993668
SHA256 (wordpress-6.2.2-zh_TW.tar.gz) = 8e6f4ce721b3986b66a628a2c645556eb2bc4bc9ea471f0b5238422667d74728
SIZE (wordpress-6.2.2-zh_TW.tar.gz) = 23825876

View File

@ -1,6 +1,5 @@
PORTNAME= ebusd
PORTVERSION= 22.3
DISTVERSIONPREFIX= v
PORTVERSION= 23.1
CATEGORIES= comms
MAINTAINER= samm@FreeBSD.org
@ -34,6 +33,7 @@ PLIST_SUB= USER=${USERS} GROUP=${GROUPS} \
OPTIONS_DEFINE= MQTT
OPTIONS_DEFAULT=MQTT
OPTIONS_SUB= yes
MQTT_DESC= MQTT protocol support
MQTT_CONFIGURE_WITH= mqtt

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1657630258
SHA256 (john30-ebusd-v22.3_GH0.tar.gz) = 7b9b8297c76670617bd25d3bb66f4a887188b8d9a4980a27b5e2f172448e0134
SIZE (john30-ebusd-v22.3_GH0.tar.gz) = 532334
TIMESTAMP = 1685978814
SHA256 (john30-ebusd-23.1_GH0.tar.gz) = 179743c967cc5e0fcbe8a884d57edec2dc387d7ff6a35298d4ee0e1781be7f6f
SIZE (john30-ebusd-23.1_GH0.tar.gz) = 563842

View File

@ -2,6 +2,9 @@ bin/ebusd
bin/ebusctl
bin/ebusfeed
bin/ebuspicloader
%%MQTT%%%%ETCDIR%%/mqtt-hassio.cfg
%%MQTT%%%%ETCDIR%%/mqtt-integration.cfg
%%ETCDIR%%/knx.cfg
@dir(%%USER%%,%%GROUP%%,750) %%RUNDIR%%
@dir(%%USER%%,%%GROUP%%,750) %%LOGDIR%%
@dir %%ETCDIR%%

View File

@ -13,8 +13,16 @@ LICENSE_COMB= dual
LICENSE_FILE= ${WRKSRC}/COPYING
USES= libtool
HAS_CONFIGURE= yes
USE_LDCONFIG= yes
HAS_CONFIGURE= yes
INSTALL_TARGET= install-strip
.include <bsd.port.mk>
.include <bsd.port.pre.mk>
.if ${OPSYS} == FreeBSD && ( ${OSVERSION} >= 1400079 || ( ${OSVERSION} >= 1302505 && ${OSVERSION} < 1400000 ))
CFLAGS+= -Wno-error=int-conversion
.endif
.include <bsd.port.post.mk>

View File

@ -13,12 +13,10 @@ LICENSE_FILE= ${WRKSRC}/COPYING.LESSER
SLAVE_PORT?= no
USES+= cpe libtool localbase pathfix pkgconfig ssl tar:bzip2
USES+= cpe libtool localbase:ldflags pathfix pkgconfig ssl tar:bzip2
GNU_CONFIGURE= yes
CONFIGURE_ARGS+=openssl_CFLAGS="-I${OPENSSLINC}" \
openssl_LIBS="-L${OPENSSLLIB} -lssl -lcrypto"
CFLAGS+= -I${LOCALBASE}/include
LDFLAGS+= -L${LOCALBASE}/lib
INSTALL_TARGET= install-strip
.if ${SLAVE_PORT} == no
@ -46,4 +44,10 @@ post-install:
.endif # ${SLAVE_PORT} == no
.include <bsd.port.mk>
.include <bsd.port.pre.mk>
.if ${OPSYS} == FreeBSD && ( ${OSVERSION} >= 1400079 || ( ${OSVERSION} >= 1302505 && ${OSVERSION} < 1400000 ))
CFLAGS+= -Wno-error=int-conversion
.endif
.include <bsd.port.post.mk>

View File

@ -8,13 +8,21 @@ DISTNAME= ${PORTNAME}${PORTVERSION:S/.//}
MAINTAINER= ports@FreeBSD.org
COMMENT= Binary-to-text file-encoder
LICENSE= NONE
MAKEFILE= makefile
MAKE_ARGS= CFLAGS="${CFLAGS}" DEST=${PREFIX}/bin
ALL_TARGET= ish
PLIST_FILES= bin/ish
.include <bsd.port.pre.mk>
.if ${OPSYS} == FreeBSD && ( ${OSVERSION} >= 1400079 || ( ${OSVERSION} >= 1302505 && ${OSVERSION} < 1400000 ))
CFLAGS+= -Wno-error=int-conversion
.endif
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/ish ${STAGEDIR}${PREFIX}/bin
.include <bsd.port.mk>
.include <bsd.port.post.mk>

View File

@ -969,8 +969,6 @@
SUBDIR += rubygem-openid-redis-store
SUBDIR += rubygem-paranoia
SUBDIR += rubygem-pg
SUBDIR += rubygem-pg13
SUBDIR += rubygem-pg14
SUBDIR += rubygem-pg_array_parser
SUBDIR += rubygem-pg_query
SUBDIR += rubygem-pghero
@ -997,7 +995,6 @@
SUBDIR += rubygem-redis-cluster-client
SUBDIR += rubygem-redis-clustering
SUBDIR += rubygem-redis-namespace
SUBDIR += rubygem-redis-namespace18
SUBDIR += rubygem-redis-namespace19
SUBDIR += rubygem-redis4
SUBDIR += rubygem-scenic61

View File

@ -1,5 +1,5 @@
PORTNAME= couchbase
PORTVERSION= 4.1.3
PORTVERSION= 4.1.4
CATEGORIES= databases
MASTER_SITES= https://github.com/couchbase/couchbase-php-client/releases/download/${PORTVERSION}/
@ -14,4 +14,6 @@ BUILD_DEPENDS= cmake:devel/cmake-core
USES= compiler:c++17-lang php:build,pecl
CONFIGURE_ARGS= COUCHBASE_CMAKE_EXTRA="-DCOUCHBASE_CXX_CLIENT_EMBED_MOZILLA_CA_BUNDLE=OFF"
.include <bsd.port.mk>

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1681843844
SHA256 (PECL/couchbase-4.1.3.tgz) = bfca3512e59dffc9f981cba0294387a50a83c1f7e446de92ae44f8d1d421194a
SIZE (PECL/couchbase-4.1.3.tgz) = 2050112
TIMESTAMP = 1685792212
SHA256 (PECL/couchbase-4.1.4.tgz) = 80ba7dbabb7f7a275907507186ecb27b559e64082a22ba1ad39cdd129d383ce5
SIZE (PECL/couchbase-4.1.4.tgz) = 2095556

View File

@ -4,7 +4,8 @@ CATEGORIES= databases
MAINTAINER= sunpoet@FreeBSD.org
COMMENT= PHP extension for interfacing with memcached via libmemcached library
WWW= https://pecl.php.net/package/memcached
WWW= https://pecl.php.net/package/memcached \
https://github.com/php-memcached-dev/php-memcached
LICENSE= PHP30
LICENSE_FILE= ${WRKSRC}/LICENSE

View File

@ -4,5 +4,3 @@ web applications by alleviating database load.
This extension uses libmemcached library to provide API for
communicating with memcached servers.
See also: https://github.com/php-memcached-dev/php-memcached

View File

@ -1,6 +1,5 @@
PORTNAME= pgbouncer
PORTVERSION= 1.18.0
PORTREVISION= 1
PORTVERSION= 1.19.1
CATEGORIES= databases
MASTER_SITES= https://pgbouncer.github.io/downloads/files/${PORTVERSION}/ \
http://pgbouncer.github.io/downloads/files/${PORTVERSION}/
@ -25,8 +24,8 @@ PORTSCOUT= site:https://pgbouncer.github.io/downloads/
SUB_FILES= pkg-message
SUB_LIST+= PGBOUNCER_RUNDIR="${PGBOUNCER_RUNDIR}"
USERS= pgbouncer
GROUPS= pgbouncer
USERS= ${PGBOUNCER_USER}
GROUPS= ${PGBOUNCER_GROUP}
PLIST_SUB+= PGBOUNCER_GROUP="${GROUPS}" \
PGBOUNCER_LOGDIR="${PGBOUNCER_LOGDIR}" \

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1676205521
SHA256 (pgbouncer-1.18.0.tar.gz) = 9349c9e59f6f88156354f4f6af27cdb014a235b00ae184cbaa37688bd0df544c
SIZE (pgbouncer-1.18.0.tar.gz) = 600825
TIMESTAMP = 1685701273
SHA256 (pgbouncer-1.19.1.tar.gz) = 58c3eff9bb72c18133b28e1f034fd59356ea76281c65e127432ca101c208a394
SIZE (pgbouncer-1.19.1.tar.gz) = 623569

View File

@ -1,5 +1,5 @@
PORTNAME= apsw
PORTVERSION= 3.41.2.0
PORTVERSION= 3.42.0.0
CATEGORIES= databases python
MASTER_SITES= PYPI \
https://sqlite.org/2023/:sqlite

View File

@ -1,5 +1,5 @@
TIMESTAMP = 1684104360
SHA256 (apsw-3.41.2.0.tar.gz) = 99905371d0fb423df84691371b3d1fee27efc09032f33a051b36c73b158fc34a
SIZE (apsw-3.41.2.0.tar.gz) = 379762
SHA256 (sqlite-autoconf-3410200.tar.gz) = e98c100dd1da4e30fa460761dab7c0b91a50b785e167f8c57acc46514fae9499
SIZE (sqlite-autoconf-3410200.tar.gz) = 3125545
TIMESTAMP = 1685792216
SHA256 (apsw-3.42.0.0.tar.gz) = 8157920d1c11c072044aa14c7c0477ff6b1a36b5cd597127091a21fa10cf9208
SIZE (apsw-3.42.0.0.tar.gz) = 371979
SHA256 (sqlite-autoconf-3420000.tar.gz) = 7abcfd161c6e2742ca5c6c0895d1f853c940f203304a0b49da4e1eca5d088ca6
SIZE (sqlite-autoconf-3420000.tar.gz) = 3148813

View File

@ -1,6 +1,5 @@
PORTNAME= asyncmy
PORTVERSION= 0.2.7
PORTREVISION= 1
PORTVERSION= 0.2.8
CATEGORIES= databases python
MASTER_SITES= PYPI
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1677771169
SHA256 (asyncmy-0.2.7.tar.gz) = 4a99d5242e5b9d7aee9e743ba13f6ec6465ef60bd79a91cc2ad5f286b6c51b6d
SIZE (asyncmy-0.2.7.tar.gz) = 62651
TIMESTAMP = 1685792218
SHA256 (asyncmy-0.2.8.tar.gz) = ea8ee58090e1c05bb5aeb4cd7742fb53a38b3f2346613bc0f3895f12c6f8b19a
SIZE (asyncmy-0.2.8.tar.gz) = 62793

View File

@ -1,5 +1,6 @@
PORTNAME= flask-sqlalchemy
PORTVERSION= 3.0.3
PORTREVISION= 1
CATEGORIES= databases python
MASTER_SITES= PYPI
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
@ -12,16 +13,14 @@ WWW= https://github.com/pallets-eco/flask-sqlalchemy
LICENSE= BSD3CLAUSE
LICENSE_FILE= ${WRKSRC}/LICENSE.rst
BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pdm-pep517>=1.0.0:devel/py-pdm-pep517@${PY_FLAVOR}
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}Flask>=2.2:www/py-flask@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}sqlalchemy14>=1.4.18:databases/py-sqlalchemy14@${PY_FLAVOR}
USES= python:3.7+
USE_PYTHON= autoplist concurrent distutils
USE_PYTHON= autoplist concurrent pep517
NO_ARCH= yes
TEST_ENV= PYTHONPATH=${STAGEDIR}${PYTHON_SITELIBDIR}
post-patch:
@${SED} -e 's|%%PORTVERSION%%|${PORTVERSION}|' ${FILESDIR}/setup.py > ${WRKSRC}/setup.py
.include <bsd.port.mk>

View File

@ -0,0 +1,9 @@
--- pyproject.toml.orig 2023-01-31 16:07:22 UTC
+++ pyproject.toml
@@ -1,5 +1,5 @@
[project]
-name = "Flask-SQLAlchemy"
+name = "flask-sqlalchemy"
description = "Add SQLAlchemy support to your Flask application."
readme = "README.rst"
authors = [

View File

@ -1,43 +0,0 @@
# -*- coding: utf-8 -*-
from setuptools import setup
import codecs
with codecs.open('README.rst', encoding="utf-8") as fp:
long_description = fp.read()
INSTALL_REQUIRES = [
'Flask>=2.2',
'SQLAlchemy>=1.4.18',
]
setup_kwargs = {
'name': 'Flask-SQLAlchemy',
'version': '%%PORTVERSION%%',
'description': 'Add SQLAlchemy support to your Flask application.',
'long_description': long_description,
'license': 'BSD-3-Clause',
'author': '',
'author_email': 'Armin Ronacher <armin.ronacher@active-4.com>',
'maintainer': '',
'maintainer_email': 'Pallets <contact@palletsprojects.com>',
'url': '',
'packages': [
'flask_sqlalchemy',
],
'package_dir': {'': 'src'},
'package_data': {'': ['*']},
'long_description_content_type': 'text/x-rst',
'classifiers': [
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
],
'install_requires': INSTALL_REQUIRES,
'python_requires': '>=3.7',
}
setup(**setup_kwargs)

View File

@ -1,5 +1,6 @@
PORTNAME= sqlalchemy
PORTVERSION= 2.0.15
PORTREVISION= 1
CATEGORIES= databases python
MASTER_SITES= PYPI
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
@ -14,8 +15,8 @@ WWW= https://www.sqlalchemy.org/ \
LICENSE= MIT
LICENSE_FILE= ${WRKSRC}/LICENSE
#BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}setuptools>=47:devel/py-setuptools@${PY_FLAVOR} \
# ${PYTHON_PKGNAMEPREFIX}wheel>=0:devel/py-wheel@${PY_FLAVOR}
BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}setuptools>=47:devel/py-setuptools@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}wheel>=0:devel/py-wheel@${PY_FLAVOR}
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}greenlet>=0:devel/py-greenlet@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}typing-extensions>=4.2.0:devel/py-typing-extensions@${PY_FLAVOR}
TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}mock>=0:devel/py-mock@${PY_FLAVOR} \
@ -23,8 +24,7 @@ TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}mock>=0:devel/py-mock@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}pytest-xdist>=0,1:devel/py-pytest-xdist@${PY_FLAVOR}
USES= cpe python:3.7+
#USE_PYTHON= autoplist concurrent cython pep517
USE_PYTHON= autoplist concurrent cython distutils
USE_PYTHON= autoplist concurrent cython pep517
CONFLICTS_INSTALL= ${PYTHON_PKGNAMEPREFIX}sqlalchemy[0-9][0-9]

View File

@ -0,0 +1,9 @@
--- setup.cfg.orig 2023-05-20 00:17:24 UTC
+++ setup.cfg
@@ -1,5 +1,5 @@
[metadata]
-name = SQLAlchemy
+name = sqlalchemy
version = attr: sqlalchemy.__version__
description = Database Abstraction Library
long_description = file: README.rst

View File

@ -1,5 +1,5 @@
PORTNAME= sqlglot
PORTVERSION= 14.1.0
PORTVERSION= 15.0.0
CATEGORIES= databases python
MASTER_SITES= PYPI
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1685162104
SHA256 (sqlglot-14.1.0.tar.gz) = c7801a1be6386ea1114d6d6324a2bf706c33e900e17c6983b3da3ce9f4bebde1
SIZE (sqlglot-14.1.0.tar.gz) = 7262515
TIMESTAMP = 1685995454
SHA256 (sqlglot-15.0.0.tar.gz) = 8402811554b6cff4ade34839fa7deb9c54434d74cc4ff52f83c0afaa7a23e3a1
SIZE (sqlglot-15.0.0.tar.gz) = 7290864

View File

@ -1,5 +1,5 @@
PORTNAME= dbf
PORTVERSION= 4.2.3
PORTVERSION= 4.2.4
CATEGORIES= databases rubygems
MASTER_SITES= RG

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1685162262
SHA256 (rubygem/dbf-4.2.3.gem) = cea4cee5990c230a2571574be433b5ad43acd58f33ed3130807f9d8af75c81dc
SIZE (rubygem/dbf-4.2.3.gem) = 129024
TIMESTAMP = 1685792356
SHA256 (rubygem/dbf-4.2.4.gem) = ac64aa6698c9bf2cfe8fb79ac5aa31d67bc60b471e7eef8dd299d055db3dfafa
SIZE (rubygem/dbf-4.2.4.gem) = 128000

View File

@ -1,24 +0,0 @@
PORTNAME= pg
PORTVERSION= 1.3.5
CATEGORIES= databases rubygems
MASTER_SITES= RG
PKGNAMESUFFIX= 13
MAINTAINER= ruby@FreeBSD.org
COMMENT= Ruby interface to PostgreSQL library
WWW= https://github.com/ged/ruby-pg
LICENSE= BSD2CLAUSE RUBY
LICENSE_COMB= dual
LICENSE_FILE_BSD2CLAUSE=${WRKSRC}/BSDL
LICENSE_FILE_RUBY= ${WRKSRC}/LICENSE
USES= gem pgsql
CONFIGURE_ARGS= --with-pgsql-include-dir=`${PG_CONFIG} --includedir` \
--with-pgsql-lib-dir=`${PG_CONFIG} --libdir`
PG_CONFIG= ${LOCALBASE}/bin/pg_config
PORTSCOUT= limit:^1\.3\.
.include <bsd.port.mk>

View File

@ -1,3 +0,0 @@
TIMESTAMP = 1656057842
SHA256 (rubygem/pg-1.3.5.gem) = 26d63ff027a72e50950cc0eda0ba38a878dd59d7cc2705d2334a963c58fd3e83
SIZE (rubygem/pg-1.3.5.gem) = 201216

View File

@ -1,3 +0,0 @@
rubygem-pg provides the module "pg", a Ruby interface to the
PostgreSQL Relational Database Management System, which
supersedes the old "postgres" module.

View File

@ -1,24 +0,0 @@
PORTNAME= pg
PORTVERSION= 1.4.6
CATEGORIES= databases rubygems
MASTER_SITES= RG
PKGNAMESUFFIX= 14
MAINTAINER= sunpoet@FreeBSD.org
COMMENT= Ruby interface to PostgreSQL library
WWW= https://github.com/ged/ruby-pg
LICENSE= BSD2CLAUSE RUBY
LICENSE_COMB= dual
LICENSE_FILE_BSD2CLAUSE=${WRKSRC}/BSDL
LICENSE_FILE_RUBY= ${WRKSRC}/LICENSE
USES= gem pgsql
CONFIGURE_ARGS= --with-pgsql-include-dir=`${PG_CONFIG} --includedir` \
--with-pgsql-lib-dir=`${PG_CONFIG} --libdir`
PG_CONFIG= ${LOCALBASE}/bin/pg_config
PORTSCOUT= limit:^1\.4\.
.include <bsd.port.mk>

View File

@ -1,3 +0,0 @@
TIMESTAMP = 1679499216
SHA256 (rubygem/pg-1.4.6.gem) = d98f3dcb4a6ae29780a2219340cb0e55dbafbb7eb4ccc2b99f892f2569a7a61e
SIZE (rubygem/pg-1.4.6.gem) = 224256

View File

@ -1,3 +0,0 @@
rubygem-pg provides the module "pg", a Ruby interface to the
PostgreSQL Relational Database Management System, which
supersedes the old "postgres" module.

View File

@ -1,22 +0,0 @@
PORTNAME= redis-namespace
PORTVERSION= 1.8.2
CATEGORIES= databases rubygems
MASTER_SITES= RG
PKGNAMESUFFIX= 18
MAINTAINER= sunpoet@FreeBSD.org
COMMENT= Ruby client class for Redis with namespace support
WWW= https://github.com/resque/redis-namespace
LICENSE= MIT
LICENSE_FILE= ${WRKSRC}/LICENSE
RUN_DEPENDS= rubygem-redis>=3.0.4:databases/rubygem-redis
USES= gem
NO_ARCH= yes
PORTSCOUT= limit:^1\.8\.
.include <bsd.port.mk>

View File

@ -1,3 +0,0 @@
TIMESTAMP = 1648249136
SHA256 (rubygem/redis-namespace-1.8.2.gem) = eee7f0642c2b994e775b5163a4dafa234d9d5f2202e48f0e088067541925b259
SIZE (rubygem/redis-namespace-1.8.2.gem) = 18432

View File

@ -1,3 +0,0 @@
Adds a Redis::Namespace class which can be used to namespace calls to Redis.
This is useful when using a single instance of Redis with multiple, different
applications.

View File

@ -1,5 +1,5 @@
PORTNAME= xtrabackup
DISTVERSION= 2.4.21
DISTVERSION= 2.4.28
CATEGORIES= databases
MASTER_SITES= https://www.percona.com/downloads/Percona-XtraBackup-${PORTVERSION:R}/Percona-XtraBackup-${PORTVERSION}/source/tarball/:xtrabackup \
https://ftp.osuosl.org/pub/blfs/conglomeration/boost/:boost SF/boost/boost/1.59.0/:boost
@ -42,20 +42,13 @@ PLIST_FILES= bin/xtrabackup bin/xbstream bin/innobackupex bin/xbcrypt \
bin/xbcloud bin/xbcloud_osenv
.include <bsd.port.pre.mk>
# xtrabackup/mysql57 fails to compile with llvm11, which was imported to current in r364284
# without a version increase (1300109 = r364274).
# Until a proper fix is provided, simply use llvm from ports, which probably could be
# a backport of amongst other tings:
# https://github.com/mysql/mysql-server/commit/08f46b3c00ee70e7ed7825daeb91df2289f80f50
.if ${CHOSEN_COMPILER_TYPE} == clang && ${OPSYS} == FreeBSD && ${OSVERSION} >= 1300109
_LLVM_VERSION= 10
BUILD_DEPENDS+= clang${_LLVM_VERSION}:devel/llvm${_LLVM_VERSION}
CC= ${LOCALBASE}/bin/clang${_LLVM_VERSION}
CXX= ${LOCALBASE}/bin/clang++${_LLVM_VERSION}
.endif
# Not sure why it's trying to install mysql client libraries now
post-install:
${RM} -rf ${STAGEDIR}${LOCALBASE}/lib
post-patch:
@${REINPLACE_CMD} -e 's|__clang__|__undefined__|g' \
${WRKDIR}/boost_1_59_0/boost/atomic/detail/ops_gcc_x86_dcas.hpp
.include <bsd.port.post.mk>

View File

@ -1,5 +1,5 @@
TIMESTAMP = 1610454639
SHA256 (percona-xtrabackup-2.4.21.tar.gz) = 6427b16348c181df8b570bc9e7c16374fef81277dd8677628ae3b9fb608548cc
SIZE (percona-xtrabackup-2.4.21.tar.gz) = 61901220
TIMESTAMP = 1685991049
SHA256 (percona-xtrabackup-2.4.28.tar.gz) = 1d77f920a0cf536e12ddcd3a154583b1b52cd3db35bd2d06db629cc255367cea
SIZE (percona-xtrabackup-2.4.28.tar.gz) = 62525343
SHA256 (boost_1_59_0.tar.bz2) = 727a932322d94287b62abb1bd2d41723eec4356a7728909e38adb65ca25241ca
SIZE (boost_1_59_0.tar.bz2) = 70389425

View File

@ -1,6 +1,6 @@
--- cmake/install_layout.cmake.orig 2020-04-10 19:45:19 UTC
--- cmake/install_layout.cmake.orig 2023-03-14 11:58:56 UTC
+++ cmake/install_layout.cmake
@@ -160,7 +160,7 @@ SET(INSTALL_INFODIR_STANDALONE "docs")
@@ -167,7 +167,7 @@ SET(INSTALL_INFODIR_STANDALONE "docs")
#
SET(INSTALL_SHAREDIR_STANDALONE "share")
SET(INSTALL_MYSQLSHAREDIR_STANDALONE "share")

View File

@ -1,8 +1,8 @@
--- cmake/os/FreeBSD.cmake.orig 2020-05-26 05:35:19 UTC
--- cmake/os/FreeBSD.cmake.orig 2023-03-14 11:58:56 UTC
+++ cmake/os/FreeBSD.cmake
@@ -36,6 +36,20 @@ IF(NOT FORCE_UNSUPPORTED_COMPILER)
IF(GCC_VERSION VERSION_LESS 4.4)
MESSAGE(FATAL_ERROR "GCC 4.4 or newer is required!")
@@ -45,6 +45,20 @@ IF(NOT FORCE_UNSUPPORTED_COMPILER)
IF(NOT HAVE_SUPPORTED_CLANG_VERSION)
MESSAGE(FATAL_ERROR "Clang 3.3 or newer is required!")
ENDIF()
+ CHECK_C_SOURCE_RUNS("
+ int main()
@ -21,7 +21,7 @@
ELSE()
MESSAGE(FATAL_ERROR "Unsupported compiler!")
ENDIF()
@@ -44,4 +58,6 @@ ENDIF()
@@ -53,4 +67,6 @@ ENDIF()
# Should not be needed any more, but kept for easy resurrection if needed
# #Legacy option, maybe not needed anymore , taken as is from autotools build
# ADD_DEFINITIONS(-DNET_RETRY_COUNT=1000000)

View File

@ -0,0 +1,11 @@
--- include/my_compare.h.orig 2019-10-21 05:21:41 UTC
+++ include/my_compare.h
@@ -47,7 +47,7 @@ extern "C" {
But beware the dependency of MI_MAX_POSSIBLE_KEY_BUFF and HA_MAX_KEY_LENGTH.
*/
-#define HA_MAX_KEY_LENGTH 1000 /* Max length in bytes */
+#define HA_MAX_KEY_LENGTH 4000 /* Max length in bytes */
#define HA_MAX_KEY_SEG 16 /* Max segments for key */
#define HA_MAX_POSSIBLE_KEY_BUFF (HA_MAX_KEY_LENGTH + 24+ 6+6)

View File

@ -0,0 +1,11 @@
--- include/myisam.h.orig 2019-10-21 05:21:41 UTC
+++ include/myisam.h
@@ -52,7 +52,7 @@ extern "C" {
The following defines can be increased if necessary.
But beware the dependency of MI_MAX_POSSIBLE_KEY_BUFF and MI_MAX_KEY_LENGTH.
*/
-#define MI_MAX_KEY_LENGTH 1000 /* Max length in bytes */
+#define MI_MAX_KEY_LENGTH 4000 /* Max length in bytes */
#define MI_MAX_KEY_SEG 16 /* Max segments for key */
#define MI_MAX_KEY_BUFF (MI_MAX_KEY_LENGTH+MI_MAX_KEY_SEG*6+8+8)

View File

@ -0,0 +1,32 @@
--- sql/conn_handler/socket_connection.cc.orig 2019-10-21 05:21:41 UTC
+++ sql/conn_handler/socket_connection.cc
@@ -953,22 +953,25 @@ Channel_info* Mysqld_socket_listener::listen_for_conne
signal(SIGCHLD, SIG_DFL);
request_init(&req, RQ_DAEMON, m_libwrap_name, RQ_FILE,
mysql_socket_getfd(connect_sock), NULL);
- fromhost(&req);
+ void (*my_fromhost) (void *) = (void (*)(void *)) fromhost;
+ my_fromhost(&req);
- if (!hosts_access(&req))
+ int (*my_hosts_access) (void *) = (int (*) (void *)) hosts_access;
+ if (!my_hosts_access(&req))
{
/*
This may be stupid but refuse() includes an exit(0)
which we surely don't want...
clean_exit() - same stupid thing ...
*/
+ char *(*my_eval_client) (void *) = (char *(*) (void *)) eval_client;
syslog(LOG_AUTH | m_deny_severity,
- "refused connect from %s", eval_client(&req));
+ "refused connect from %s", my_eval_client(&req));
#ifdef HAVE_LIBWRAP_PROTOTYPES
// Some distros have patched tcpd.h to have proper prototypes
if (req.sink)
- (req.sink)(req.fd);
+ ((void (*)(int)) (req.sink))(req.fd);
#else
// Some distros have not patched tcpd.h
if (req.sink)

View File

@ -0,0 +1,11 @@
--- sql/locks/shared_spin_lock.cc.orig 2023-06-05 20:41:14 UTC
+++ sql/locks/shared_spin_lock.cc
@@ -239,7 +239,7 @@ lock::Shared_spin_lock &lock::Shared_spin_lock::try_or
{
this->spin_exclusive_lock();
}
-#if defined(__APPLE__)
+#if defined(__APPLE__) || defined(__FreeBSD__)
my_atomic_store64(&this->m_exclusive_owner, reinterpret_cast<int64>(self));
#else
my_atomic_store64(&this->m_exclusive_owner, self);

View File

@ -0,0 +1,38 @@
--- sql/sys_vars.cc.orig 2021-06-16 10:56:53 UTC
+++ sql/sys_vars.cc
@@ -1749,7 +1749,7 @@ static Sys_var_ulong Sys_interactive_timeout(
"connection before closing it",
SESSION_VAR(net_interactive_timeout),
CMD_LINE(REQUIRED_ARG),
- VALID_RANGE(1, LONG_TIMEOUT), DEFAULT(NET_WAIT_TIMEOUT), BLOCK_SIZE(1));
+ VALID_RANGE(1, INT_MAX32/1000), DEFAULT(NET_WAIT_TIMEOUT), BLOCK_SIZE(1));
static Sys_var_ulong Sys_join_buffer_size(
"join_buffer_size",
@@ -2629,7 +2629,7 @@ static Sys_var_ulong Sys_net_read_timeout(
"Number of seconds to wait for more data from a connection before "
"aborting the read",
SESSION_VAR(net_read_timeout), CMD_LINE(REQUIRED_ARG),
- VALID_RANGE(1, LONG_TIMEOUT), DEFAULT(NET_READ_TIMEOUT), BLOCK_SIZE(1),
+ VALID_RANGE(1, INT_MAX32/1000), DEFAULT(NET_READ_TIMEOUT), BLOCK_SIZE(1),
NO_MUTEX_GUARD, NOT_IN_BINLOG, ON_CHECK(0),
ON_UPDATE(fix_net_read_timeout));
@@ -2653,7 +2653,7 @@ static Sys_var_ulong Sys_net_write_timeout(
"Number of seconds to wait for a block to be written to a connection "
"before aborting the write",
SESSION_VAR(net_write_timeout), CMD_LINE(REQUIRED_ARG),
- VALID_RANGE(1, LONG_TIMEOUT), DEFAULT(NET_WRITE_TIMEOUT), BLOCK_SIZE(1),
+ VALID_RANGE(1, INT_MAX32/1000), DEFAULT(NET_WRITE_TIMEOUT), BLOCK_SIZE(1),
NO_MUTEX_GUARD, NOT_IN_BINLOG, ON_CHECK(0),
ON_UPDATE(fix_net_write_timeout));
@@ -4389,7 +4389,7 @@ static Sys_var_ulong Sys_net_wait_timeout(
"The number of seconds the server waits for activity on a "
"connection before closing it",
SESSION_VAR(net_wait_timeout), CMD_LINE(REQUIRED_ARG),
- VALID_RANGE(1, IF_WIN(INT_MAX32/1000, LONG_TIMEOUT)),
+ VALID_RANGE(1, INT_MAX32/1000),
DEFAULT(NET_WAIT_TIMEOUT), BLOCK_SIZE(1));
static Sys_var_plugin Sys_default_storage_engine(

View File

@ -1,6 +1,6 @@
--- storage/myisam/mi_dynrec.c.orig 2020-04-10 19:45:19 UTC
--- storage/myisam/mi_dynrec.c.orig 2023-03-14 11:58:56 UTC
+++ storage/myisam/mi_dynrec.c
@@ -65,18 +65,13 @@ my_bool mi_dynmap_file(MI_INFO *info, my_off_t size)
@@ -72,18 +72,13 @@ my_bool mi_dynmap_file(MI_INFO *info, my_off_t size)
DBUG_RETURN(1);
}
/*

View File

@ -1,6 +1,6 @@
--- storage/innobase/fsp/fsp0fsp.cc.orig 2020-04-10 19:45:19 UTC
--- storage/innobase/fsp/fsp0fsp.cc.orig 2023-03-14 11:58:56 UTC
+++ storage/innobase/fsp/fsp0fsp.cc
@@ -1289,7 +1289,7 @@ fsp_header_decode_encryption_info(
@@ -1293,7 +1293,7 @@ fsp_header_decode_encryption_info(
if (elen == MY_AES_BAD_DATA) {
my_free(master_key);

View File

@ -1,11 +0,0 @@
--- storage/innobase/xtrabackup/src/ds_tmpfile.c.orig 2020-04-10 19:45:19 UTC
+++ storage/innobase/xtrabackup/src/ds_tmpfile.c
@@ -55,7 +55,7 @@ datasink_t datasink_tmpfile = {
&tmpfile_deinit
};
-MY_TMPDIR mysql_tmpdir_list;
+extern MY_TMPDIR mysql_tmpdir_list;
static ds_ctxt_t *
tmpfile_init(const char *root)

View File

@ -1,10 +0,0 @@
--- storage/innobase/xtrabackup/src/xbstream.c.orig 2020-04-10 19:45:19 UTC
+++ storage/innobase/xtrabackup/src/xbstream.c
@@ -55,7 +55,6 @@ datasink_t datasink_xbstream;
datasink_t datasink_compress;
datasink_t datasink_tmpfile;
datasink_t datasink_encrypt;
-datasink_t datasink_buffer;
static run_mode_t opt_mode;
static char * opt_directory = NULL;

View File

@ -1,6 +1,6 @@
PORTNAME= gnome-shell-extension-panel-osd
PORTVERSION= 0.0.0.20171023
PORTREVISION= 1
PORTREVISION= 2
CATEGORIES= deskutils gnome
DIST_SUBDIR= gnome

View File

@ -1,5 +1,6 @@
PORTNAME= send2trash
PORTVERSION= 1.8.2
PORTREVISION= 1
CATEGORIES= deskutils python
MASTER_SITES= PYPI
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
@ -11,12 +12,12 @@ WWW= https://github.com/arsenetar/send2trash
LICENSE= BSD3CLAUSE
BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}setuptools>=40.6.0:devel/py-setuptools@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}wheel>=0:devel/py-wheel@${PY_FLAVOR}
USES= dos2unix python:3.6+
USE_PYTHON= autoplist concurrent distutils
USE_PYTHON= autoplist concurrent pep517
NO_ARCH= yes
post-patch:
@${PRINTF} "from setuptools import setup\n\nsetup()\n" > ${WRKSRC}/setup.py
.include <bsd.port.mk>

View File

@ -0,0 +1,9 @@
--- setup.cfg.orig 2023-04-27 05:30:25 UTC
+++ setup.cfg
@@ -1,5 +1,5 @@
[metadata]
-name = Send2Trash
+name = send2trash
version = 1.8.2
url = https://github.com/arsenetar/send2trash
project_urls =

View File

@ -1105,6 +1105,7 @@
SUBDIR += kio-extras
SUBDIR += kirigami-gallery
SUBDIR += kiwix-lib
SUBDIR += klib
SUBDIR += kms-cmake-utils
SUBDIR += kodi-platform
SUBDIR += kokkos
@ -4122,7 +4123,6 @@
SUBDIR += pmd
SUBDIR += pmdk
SUBDIR += poco
SUBDIR += poetry
SUBDIR += popt
SUBDIR += poser
SUBDIR += poxml
@ -4390,6 +4390,7 @@
SUBDIR += py-cached-property
SUBDIR += py-cachetools
SUBDIR += py-cachetools3
SUBDIR += py-cacheyou
SUBDIR += py-cachy
SUBDIR += py-cadquery-pywrap
SUBDIR += py-calver
@ -4562,7 +4563,6 @@
SUBDIR += py-dpcontracts
SUBDIR += py-dtfabric
SUBDIR += py-dulwich
SUBDIR += py-dulwich020
SUBDIR += py-dunamai
SUBDIR += py-durus
SUBDIR += py-dynrules
@ -4794,6 +4794,7 @@
SUBDIR += py-jaraco
SUBDIR += py-jaraco.classes
SUBDIR += py-jaraco.context
SUBDIR += py-jaraco.env
SUBDIR += py-jaraco.functools
SUBDIR += py-jaraco.itertools
SUBDIR += py-jaraco.logging
@ -5492,6 +5493,7 @@
SUBDIR += py-setproctitle
SUBDIR += py-setuptools
SUBDIR += py-setuptools-declarative-requirements
SUBDIR += py-setuptools-gettext
SUBDIR += py-setuptools-git
SUBDIR += py-setuptools-pkg
SUBDIR += py-setuptools-rust
@ -6110,7 +6112,6 @@
SUBDIR += rubygem-aws-sdk-controltower
SUBDIR += rubygem-aws-sdk-core
SUBDIR += rubygem-aws-sdk-core2
SUBDIR += rubygem-aws-sdk-core3171
SUBDIR += rubygem-aws-sdk-core3172
SUBDIR += rubygem-aws-sdk-costandusagereportservice
SUBDIR += rubygem-aws-sdk-costexplorer
@ -6313,6 +6314,7 @@
SUBDIR += rubygem-aws-sdk-route53resolver
SUBDIR += rubygem-aws-sdk-s3
SUBDIR += rubygem-aws-sdk-s31121
SUBDIR += rubygem-aws-sdk-s31122
SUBDIR += rubygem-aws-sdk-s3control
SUBDIR += rubygem-aws-sdk-s3outposts
SUBDIR += rubygem-aws-sdk-sagemaker
@ -6709,7 +6711,6 @@
SUBDIR += rubygem-fast-stemmer
SUBDIR += rubygem-fast_blank
SUBDIR += rubygem-fast_gettext
SUBDIR += rubygem-fast_gettext1
SUBDIR += rubygem-fast_stack
SUBDIR += rubygem-fast_xor
SUBDIR += rubygem-fastercsv
@ -6770,7 +6771,6 @@
SUBDIR += rubygem-getoptlong
SUBDIR += rubygem-gettext
SUBDIR += rubygem-gettext-setup
SUBDIR += rubygem-gettext-setup0
SUBDIR += rubygem-gettext_i18n_rails
SUBDIR += rubygem-gettext_i18n_rails18
SUBDIR += rubygem-gettext_i18n_rails_js-rails5

View File

@ -1,6 +1,6 @@
PORTNAME= argc
DISTVERSIONPREFIX= v
DISTVERSION= 1.2.0
DISTVERSION= 1.3.0
CATEGORIES= devel
MAINTAINER= yuri@FreeBSD.org

View File

@ -1,4 +1,4 @@
TIMESTAMP = 1684916410
TIMESTAMP = 1685993932
SHA256 (rust/crates/ahash-0.7.6.crate) = fcb51a0695d8f838b1ee009b3fbf66bda078cd64590202a864a8f3e8c4315c47
SIZE (rust/crates/ahash-0.7.6.crate) = 38030
SHA256 (rust/crates/aho-corasick-0.7.20.crate) = cc936419f96fa211c1b9166887b38e5e40b19958e5b895be7c1f93adec7071ac
@ -245,5 +245,5 @@ SHA256 (rust/crates/windows_x86_64_msvc-0.48.0.crate) = 1a515f5799fe4961cb532f98
SIZE (rust/crates/windows_x86_64_msvc-0.48.0.crate) = 671422
SHA256 (rust/crates/yaml-rust-0.4.5.crate) = 56c1936c4cc7a1c9ab21a1ebb602eb942ba868cbd44a99cb7cdc5892335e1c85
SIZE (rust/crates/yaml-rust-0.4.5.crate) = 47783
SHA256 (sigoden-argc-v1.2.0_GH0.tar.gz) = a0cf1130823bef218f1edb1737ecf9e9a8763e386313db4d0f84c3b364891e4e
SIZE (sigoden-argc-v1.2.0_GH0.tar.gz) = 54969
SHA256 (sigoden-argc-v1.3.0_GH0.tar.gz) = 3367d131c642b1b1d42cf9b25c782a298befdd4b25ed3f6f1d767dffd19c5b9c
SIZE (sigoden-argc-v1.3.0_GH0.tar.gz) = 55567

View File

@ -1,5 +1,5 @@
PORTNAME= cligen
PORTVERSION= 6.0.0
PORTVERSION= 6.2.0
CATEGORIES= devel
MAINTAINER= dave@dogwood.com

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1673365132
SHA256 (clicon-cligen-6.0.0_GH0.tar.gz) = 2de1814473e734ed5f2028f692ff2afa8c217df72c7bf3ddfeb7cd87c070b270
SIZE (clicon-cligen-6.0.0_GH0.tar.gz) = 796278
TIMESTAMP = 1685985936
SHA256 (clicon-cligen-6.2.0_GH0.tar.gz) = 3ce9a33c0c6777e44c1a29d02969368a4dc3944ab6b0495788472e54c992204c
SIZE (clicon-cligen-6.2.0_GH0.tar.gz) = 800380

View File

@ -1,5 +1,5 @@
PORTNAME= clixon
PORTVERSION= 6.0.0
PORTVERSION= 6.2.0
CATEGORIES= devel
MAINTAINER= dave@dogwood.com

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1673365197
SHA256 (clicon-clixon-6.0.0_GH0.tar.gz) = c18e0776a1a690bf72d6daee775f933a0f21fed9ed1c4a1102f493d638097030
SIZE (clicon-clixon-6.0.0_GH0.tar.gz) = 1598842
TIMESTAMP = 1685985947
SHA256 (clicon-clixon-6.2.0_GH0.tar.gz) = 91b2721c6b09b916cd261a87bfb85cff59ba95c07d13039ad006c681f6dab7c2
SIZE (clicon-clixon-6.2.0_GH0.tar.gz) = 1731809

View File

@ -5,8 +5,8 @@ include/clixon/cli_autocli.h
include/clixon/cli_generate.h
include/clixon/clixon.h
include/clixon/clixon_backend.h
include/clixon/clixon_backend_client.h
include/clixon/clixon_backend_commit.h
include/clixon/clixon_backend_handle.h
include/clixon/clixon_backend_plugin.h
include/clixon/clixon_backend_transaction.h
include/clixon/clixon_cli.h
@ -25,6 +25,7 @@ include/clixon/clixon_json.h
include/clixon/clixon_log.h
include/clixon/clixon_nacm.h
include/clixon/clixon_netconf.h
include/clixon/clixon_netconf_input.h
include/clixon/clixon_netconf_lib.h
include/clixon/clixon_netconf_monitoring.h
include/clixon/clixon_netns.h
@ -47,6 +48,7 @@ include/clixon/clixon_validate_minmax.h
include/clixon/clixon_xml.h
include/clixon/clixon_xml_bind.h
include/clixon/clixon_xml_changelog.h
include/clixon/clixon_xml_default.h
include/clixon/clixon_xml_io.h
include/clixon/clixon_xml_map.h
include/clixon/clixon_xml_nsctx.h
@ -59,6 +61,7 @@ include/clixon/clixon_xpath_yang.h
include/clixon/clixon_yang.h
include/clixon/clixon_yang_module.h
include/clixon/clixon_yang_parse_lib.h
include/clixon/clixon_yang_schema_mount.h
include/clixon/clixon_yang_type.h
lib/libclixon.so
lib/libclixon.so.%%LIBMAJORVERSION%%
@ -75,8 +78,8 @@ lib/libclixon_cli.so.%%LIBVERSION%%
sbin/clixon_backend
%%NO_OFF%%sbin/clixon_restconf
%%DATADIR%%/clixon-autocli@2022-02-11.yang
%%DATADIR%%/clixon-config@2022-11-01.yang
%%DATADIR%%/clixon-lib@2021-12-05.yang
%%DATADIR%%/clixon-config@2023-03-01.yang
%%DATADIR%%/clixon-lib@2023-03-01.yang
%%DATADIR%%/clixon-restconf@2022-08-01.yang
%%DATADIR%%/clixon-rfc5277@2008-07-01.yang
%%DATADIR%%/clixon-xml-changelog@2019-03-21.yang
@ -95,6 +98,7 @@ sbin/clixon_backend
%%DATADIR%%/ietf-yang-library@2019-01-04.yang
%%DATADIR%%/ietf-yang-metadata@2016-08-05.yang
%%DATADIR%%/ietf-yang-patch@2017-02-22.yang
%%DATADIR%%/ietf-yang-schema-mount@2019-01-14.yang
%%DATADIR%%/ietf-yang-types@2013-07-15.yang
@dir lib/clixon/plugins/backend
@dir lib/clixon/plugins/cli

View File

@ -1,7 +1,6 @@
PORTNAME= criterion
DISTVERSIONPREFIX= v
DISTVERSION= 2.4.1-13
DISTVERSIONSUFFIX= -g2f48d0f
DISTVERSION= 2.4.2
CATEGORIES= devel
MAINTAINER= yuri@FreeBSD.org
@ -11,7 +10,8 @@ WWW= https://github.com/Snaipe/Criterion
LICENSE= MIT
LICENSE_FILE= ${WRKSRC}/LICENSE
BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}protobuf>0:devel/py-protobuf@${PY_FLAVOR} \
BUILD_DEPENDS= ${LOCALBASE}/include/klib/khash.h:devel/klib \
${PYTHON_PKGNAMEPREFIX}protobuf>0:devel/py-protobuf@${PY_FLAVOR} \
nanopb>0:devel/nanopb \
cmake:devel/cmake-core \
protoc:devel/protobuf
@ -27,11 +27,14 @@ USE_LDCONFIG= yes
USE_GITHUB= yes
GH_ACCOUNT= Snaipe
GH_PROJECT= Criterion
GH_TUPLE= attractivechaos:klib:cdb7e92:klib/dependencies/klib \
MrAnno:debugbreak:83bf7e9:debugbreak/dependencies/debugbreak
GH_TUPLE= MrAnno:debugbreak:83bf7e9:debugbreak
SHEBANG_FILES= src/protocol/gen-pb.py
CFLAGS+= -fPIC \
-I${LOCALBASE}/include/klib \
-I${WRKSRC_debugbreak}
MESON_ARGS= -Dtests=false -Dsamples=false
quick-test:
@ -43,10 +46,9 @@ quick-test:
./a.out # test succeeds when simple::Test fails with assertion
do-test:
@cd ${WRKSRC} && \
${RM} -rf _build && \
${SETENV} ${CONFIGURE_ENV} ${CONFIGURE_CMD} ${CONFIGURE_ARGS} -Dtests=true -Dsamples=false && \
cd ${WRKSRC} && \
${SETENV} ${CONFIGURE_ENV} ${CONFIGURE_CMD} --reconfigure ${CONFIGURE_ARGS} -Dtests=true && \
cd ${BUILD_WRKSRC} && \
${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_ARGS} ${ALL_TARGET} test
${DO_MAKE_BUILD} ${ALL_TARGET} test
.include <bsd.port.mk>

View File

@ -1,7 +1,5 @@
TIMESTAMP = 1678602173
SHA256 (Snaipe-Criterion-v2.4.1-13-g2f48d0f_GH0.tar.gz) = 62a427b71fd7fce4a8fb82f72c3d2e1f6232821528c4add7aee435331ba4fefa
SIZE (Snaipe-Criterion-v2.4.1-13-g2f48d0f_GH0.tar.gz) = 871145
SHA256 (attractivechaos-klib-cdb7e92_GH0.tar.gz) = 659a9b920bc77a88c30e61053cfaecd673ab2120df31efadaf544c195415f390
SIZE (attractivechaos-klib-cdb7e92_GH0.tar.gz) = 99298
TIMESTAMP = 1685979400
SHA256 (Snaipe-Criterion-v2.4.2_GH0.tar.gz) = 83e1a39c8c519fbef0d64057dc61c8100b3a5741595788c9f094bba2eeeef0df
SIZE (Snaipe-Criterion-v2.4.2_GH0.tar.gz) = 874664
SHA256 (MrAnno-debugbreak-83bf7e9_GH0.tar.gz) = 6ec24bdf3d361ec2bb7d128c56b8e870a1bb2d6b22eab3c2821eb1e15ccb8919
SIZE (MrAnno-debugbreak-83bf7e9_GH0.tar.gz) = 7060

View File

@ -1,22 +1,45 @@
- use the shared library for nanopb
--- meson.build.orig 2022-07-03 16:28:55 UTC
--- meson.build.orig 2023-05-13 16:02:30 UTC
+++ meson.build
@@ -171,7 +171,7 @@ else
config.set('NN_REQREP_H', '<nanomsg/reqrep.h>')
@@ -138,9 +138,9 @@ deps = []
cmake = import('cmake')
-debugbreak = dependency('debugbreak')
+#debugbreak = dependency('debugbreak')
-klib = dependency('klib')
+#klib = dependency('klib')
threads = dependency('threads')
@@ -178,7 +178,7 @@ else
endif
-nanopb = dependency('nanopb', required: false, method: 'cmake', modules: ['nanopb::protobuf-nanopb-static'])
+nanopb = dependency('nanopb', required: false, method: 'cmake', modules: ['nanopb::protobuf-nanopb'])
nanopb = dependency('nanopb', required: get_option('wrap_mode') == 'nofallback', method: 'cmake',
- modules: ['nanopb::protobuf-nanopb-static'])
+ modules: ['nanopb::protobuf-nanopb'])
must_regenerate_pb = nanopb.found()
if not nanopb.found()
nanopb_proj = cmake.subproject('nanopb',
@@ -181,7 +181,7 @@ if not nanopb.found()
'-DCMAKE_C_FLAGS=-DPB_ENABLE_MALLOC=1 -DPB_NO_PACKED_STRUCTS=1',
'-DCMAKE_POSITION_INDEPENDENT_CODE=ON',
])
if (not nanopb.found()
or get_option('wrap_mode') == 'forcefallback'
@@ -192,7 +192,7 @@ if (not nanopb.found()
'CMAKE_POSITION_INDEPENDENT_CODE': true,
})
nanopb_proj = cmake.subproject('nanopb-cmake', options: nanopb_opts)
- nanopb = nanopb_proj.dependency('protobuf-nanopb-static')
+ nanopb = nanopb_proj.dependency('protobuf-nanopb')
endif
libgit2 = dependency('libgit2', required: false)
libgit2 = dependency('libgit2', required: get_option('wrap_mode') == 'nofallback')
@@ -244,8 +244,8 @@ else
endif
deps += [
- debugbreak,
- klib,
+ #debugbreak,
+ #klib,
threads,
boxfort,
libffi,

View File

@ -221,7 +221,7 @@ REACTIVEOBJC_VER= 74ab5baccc6f7202c8ac69a8d1e152c29dc1ea76
# See ${WRKSRC}/electron/DEPS for MANTLE_VER
MANTLE_VER= 78d3966b3c331292ea29ec38661b25df0a245948
YARN_TIMESTAMP= 1685152823
YARN_TIMESTAMP= 1685855429
.include "Makefile.version"
.include <bsd.port.pre.mk>

View File

@ -1,2 +1,2 @@
ELECTRON_VER= 24.4.0
ELECTRON_VER= 24.4.1
ELECTRON_VER_MAJOR= ${ELECTRON_VER:C/\..*//}

View File

@ -1,14 +1,14 @@
TIMESTAMP = 1685156535
TIMESTAMP = 1685856181
SHA256 (electron/chromium-112.0.5615.204.tar.xz) = 4eb23f689df9685fc4ce38fe751023ac98aab2ca21af1ee7ebe47fa5c095a09d
SIZE (electron/chromium-112.0.5615.204.tar.xz) = 1572906744
SHA256 (electron/a98dcca3c46a718770b2cb3430785ea4ed7e3f09) = 386332ab89cbe19c427a3febcf2e93ee89a3007243da3e3e466823f50d00eba5
SIZE (electron/a98dcca3c46a718770b2cb3430785ea4ed7e3f09) = 9822544
SHA256 (electron/336e775eec536b2d785cc80eff6ac39051931286) = a2ca2962daf482a8f943163541e1c73ba4b2694fabcd2510981f2db4eda493c8
SIZE (electron/336e775eec536b2d785cc80eff6ac39051931286) = 32624734
SHA256 (electron/electron-yarn-cache-24.4.0.tar.xz) = 809d7644b63ead4e0ba62a32fd473137e27a70d8227e01b43d74ca9596381728
SIZE (electron/electron-yarn-cache-24.4.0.tar.xz) = 39582416
SHA256 (electron/electron-electron-v24.4.0_GH0.tar.gz) = e471a4a4f3275fdbad0141e6827d815391d8000864a7bff55aeb5456fc0a8472
SIZE (electron/electron-electron-v24.4.0_GH0.tar.gz) = 10457494
SHA256 (electron/electron-yarn-cache-24.4.1.tar.xz) = 145d9125c1aa43ebc40c8a51117b77c33775a71ff8045d22974c6980e8f78bcb
SIZE (electron/electron-yarn-cache-24.4.1.tar.xz) = 41689564
SHA256 (electron/electron-electron-v24.4.1_GH0.tar.gz) = f3bd352131ea8bc63d09b5bec4e82816ca319b7083d779796cee7581adf0af48
SIZE (electron/electron-electron-v24.4.1_GH0.tar.gz) = 10467790
SHA256 (electron/nodejs-node-v18.14.0_GH0.tar.gz) = 31bbccdff73269baebcc9f32c2ffe428f28be79841527c63e95da93e8c630829
SIZE (electron/nodejs-node-v18.14.0_GH0.tar.gz) = 113058999
SHA256 (electron/nodejs-nan-16fa32231e2ccd89d2804b3f765319128b20c4ac_GH0.tar.gz) = 3807ae6a1e451a29f068540472f100f9718d457c60ac62f2f8469d1d57475d39

View File

@ -9,7 +9,7 @@
"@electron/docs-parser": "^1.0.0",
"@electron/fiddle-core": "^1.0.4",
"@electron/github-app-auth": "^1.5.0",
"@electron/lint-roller": "^1.1.0",
"@electron/lint-roller": "^1.2.1",
"@electron/typescript-definitions": "^8.10.0",
"@octokit/rest": "^19.0.7",
"@primer/octicons": "^10.0.0",
@ -45,6 +45,7 @@
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-mocha": "^7.0.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"eslint-plugin-typescript": "^0.14.0",
"events": "^3.2.0",
@ -64,7 +65,6 @@
"remark-preset-lint-markdown-style-guide": "^4.0.0",
"semver": "^5.6.0",
"shx": "^0.3.2",
"standard-markdown": "^6.0.0",
"stream-json": "^1.7.1",
"tap-xunit": "^2.4.1",
"temp": "^0.8.3",
@ -92,7 +92,7 @@
"lint:docs-fiddles": "standard \"docs/fiddles/**/*.js\"",
"lint:docs-relative-links": "electron-lint-markdown-links --root docs \"**/*.md\"",
"lint:markdownlint": "electron-markdownlint \"*.md\" \"docs/**/*.md\"",
"lint:js-in-markdown": "standard-markdown docs",
"lint:js-in-markdown": "electron-lint-markdown-standard --root docs \"**/*.md\"",
"create-api-json": "node script/create-api-json.js",
"create-typescript-definitions": "npm run create-api-json && electron-typescript-definitions --api=electron-api.json && node spec/ts-smoke/runner.js",
"gn-typescript-definitions": "npm run create-typescript-definitions && shx cp electron.d.ts",

View File

@ -1,4 +1,4 @@
--- electron/spec/api-browser-window-spec.ts.orig 2023-05-22 19:19:22 UTC
--- electron/spec/api-browser-window-spec.ts.orig 2023-05-31 15:28:22 UTC
+++ electron/spec/api-browser-window-spec.ts
@@ -59,7 +59,7 @@ describe('BrowserWindow module', () => {
}).not.to.throw();
@ -126,7 +126,7 @@
const w = new BrowserWindow();
const minimize = emittedOnce(w, 'minimize');
w.minimize();
@@ -4499,7 +4499,7 @@ describe('BrowserWindow module', () => {
@@ -4554,7 +4554,7 @@ describe('BrowserWindow module', () => {
});
// On Linux there is no "resizable" property of a window.
@ -135,7 +135,7 @@
const w = new BrowserWindow({ show: false });
expect(w.resizable).to.be.true('resizable');
@@ -4591,7 +4591,7 @@ describe('BrowserWindow module', () => {
@@ -4646,7 +4646,7 @@ describe('BrowserWindow module', () => {
});
});
@ -144,7 +144,7 @@
// Not implemented on Linux.
afterEach(closeAllWindows);
@@ -5655,7 +5655,7 @@ describe('BrowserWindow module', () => {
@@ -5710,7 +5710,7 @@ describe('BrowserWindow module', () => {
describe('"transparent" option', () => {
afterEach(closeAllWindows);

View File

@ -1,4 +1,4 @@
--- third_party/electron_node/deps/uv/BUILD.gn.orig 2022-05-13 07:19:54 UTC
--- third_party/electron_node/deps/uv/BUILD.gn.orig 2023-06-04 05:29:42 UTC
+++ third_party/electron_node/deps/uv/BUILD.gn
@@ -3,7 +3,7 @@ config("libuv_config") {
@ -9,7 +9,7 @@
defines += [ "_POSIX_C_SOURCE=200112" ]
}
if (!is_win) {
@@ -155,7 +155,7 @@ static_library("uv") {
@@ -157,7 +157,7 @@ static_library("uv") {
libs += [ "m" ]
ldflags += [ "-pthread" ]
}
@ -18,7 +18,7 @@
sources += [ "src/unix/proctitle.c" ]
}
if (is_mac) {
@@ -170,7 +170,7 @@ static_library("uv") {
@@ -172,7 +172,7 @@ static_library("uv") {
"_DARWIN_UNLIMITED_SELECT=1",
]
}
@ -27,7 +27,7 @@
defines += [ "_GNU_SOURCE" ]
sources += [
"src/unix/epoll.c",
@@ -191,6 +191,16 @@ static_library("uv") {
@@ -193,6 +193,16 @@ static_library("uv") {
sources += [
"src/unix/bsd-ifaddrs.c",
"src/unix/kqueue.c",

File diff suppressed because it is too large Load Diff

View File

@ -1,5 +1,5 @@
PORTNAME= gocheese
DISTVERSION= 3.7.1
DISTVERSION= 4.1.0
CATEGORIES= devel python
MASTER_SITES= http://www.gocheese.cypherpunks.ru/download/

Some files were not shown because too many files have changed in this diff Show More