*/*: sync with upstream

Taken from: FreeBSD
This commit is contained in:
Franco Fichtner 2022-08-12 11:47:35 +02:00
parent 76da4e7ea6
commit ce8e4d0604
677 changed files with 13147 additions and 4424 deletions

View file

@ -17,6 +17,7 @@
SUBDIR += c-blosc
SUBDIR += c-blosc2
SUBDIR += cabextract
SUBDIR += ccmix
SUBDIR += cmdpack
SUBDIR += dact
SUBDIR += deb2targz

44
archivers/ccmix/Makefile Normal file
View file

@ -0,0 +1,44 @@
PORTNAME= ccmix
PORTVERSION= g20170612
CATEGORIES= archivers games
MASTER_SITES= SF/xccu/XCC%20Mixer/XCC%20Mixer%201.44:dat
DISTFILES= XCC_Mixer-1.44.zip:dat
MAINTAINER= danfe@FreeBSD.org
COMMENT= Westwood Studios MIX format file manipulator
LICENSE= GPLv2+
LIB_DEPENDS= libcryptopp.so:security/cryptopp
USES= gmake pkgconfig
USE_GITHUB= yes
GH_ACCOUNT= OmniBlade
GH_TAGNAME= 4369c8f
PLIST_FILES= bin/ccmix bin/gmdedit bin/mixkey \
${DATADIR_REL}/global\ mix\ database.dat
PORTDOCS= README.md
OPTIONS_DEFINE= DOCS
post-patch:
@${REINPLACE_CMD} -e '/ccmix program usage/s,/n,\\n, ; \
/gmd_dir/s,/usr/share/ccmix,${DATADIR},' \
${WRKSRC}/src/ccmix.cpp
@${REINPLACE_CMD} -e '/char2num/s,const static,& signed,' \
${WRKSRC}/src/mixkey/mix_dexoder.cpp
do-install:
${INSTALL_PROGRAM} ${INSTALL_WRKSRC}/build/* \
${STAGEDIR}${PREFIX}/bin
@${MKDIR} ${STAGEDIR}${DATADIR}
${INSTALL_DATA} ${WRKDIR}/global\ mix\ database.dat \
${STAGEDIR}${DATADIR}
do-install-DOCS-on:
@${MKDIR} ${STAGEDIR}${DOCSDIR}
${INSTALL_DATA} ${PORTDOCS:S,^,${INSTALL_WRKSRC}/,} \
${STAGEDIR}${DOCSDIR}
.include <bsd.port.mk>

5
archivers/ccmix/distinfo Normal file
View file

@ -0,0 +1,5 @@
TIMESTAMP = 1497276455
SHA256 (OmniBlade-ccmix-g20170612-4369c8f_GH0.tar.gz) = 523d0894aa6b00596813c397c01fd579dee9b2a6145a77e0f2b0c6b655a6fa66
SIZE (OmniBlade-ccmix-g20170612-4369c8f_GH0.tar.gz) = 1695028
SHA256 (XCC_Mixer-1.44.zip) = 7b3654f483b5da40af64d2d232c4c00a3e50be75aed75298bbc56dd9778f78f8
SIZE (XCC_Mixer-1.44.zip) = 691768

View file

@ -0,0 +1,32 @@
--- Makefile.orig 2017-06-12 14:07:35 UTC
+++ Makefile
@@ -1,4 +1,5 @@
-CXXFLAGS=-g -Wall -Wextra -DNDEBUG $(OPTFLAGS)
+CXXFLAGS+=-Wall -Wextra -DNDEBUG $(OPTFLAGS)
+CPPFLAGS+=$(shell pkg-config --cflags libcryptopp)
LIBS=$(OPTLIBS)
PREFIX?=/usr/local
CC=g++
@@ -19,11 +20,11 @@ gmd: $(OBJECTS) src/gmdedit/gmdedit.o
dev: all
gmd: $(OBJECTS) src/gmdedit/gmdedit.o
- $(CC) src/gmdedit/gmdedit.o src/mixid.o src/mix_db_gamedb.o src/mix_db_gmd.o \
+ $(CXX) $(CXXFLAGS) src/gmdedit/gmdedit.o src/mixid.o src/mix_db_gamedb.o src/mix_db_gmd.o \
-o build/gmdedit
mixkey: src/mixkey/mixkey.o src/mixkey/mix_dexoder.o
- $(CC) src/mixkey/mixkey.o src/mixkey/mix_dexoder.o -o build/mixkey -lcryptopp
+ $(CXX) $(CXXFLAGS) src/mixkey/mixkey.o src/mixkey/mix_dexoder.o -o build/mixkey $(shell pkg-config --libs libcryptopp)
win32:
/usr/bin/make -f Makefile.win32 CC=i586-mingw32msvc-g++ \
@@ -31,7 +32,7 @@ $(TARGET): build $(OBJECTS)
$(TARGET): build $(OBJECTS)
- $(CC) $(OBJECTS) -o $(TARGET) -lcryptopp
+ $(CXX) $(CXXFLAGS) $(OBJECTS) -o $(TARGET) $(shell pkg-config --libs libcryptopp)
build:
@mkdir -p build

View file

@ -0,0 +1,24 @@
--- src/gmdedit/gmdedit.cpp.orig 2017-06-12 14:07:35 UTC
+++ src/gmdedit/gmdedit.cpp
@@ -83,10 +83,6 @@ int main(int argc, char** argv) {
std::fstream ofh;
std::vector<t_namepair> names;
- ifh.open(argv[1], std::ios_base::in|std::ios_base::binary);
- gmd.readDB(ifh);
- ifh.close();
-
if(argc < 4){
//menu();
std::cout << "Use: gmdedit gmdpath additionspath newgmdpath\n";
@@ -106,6 +102,10 @@ int main(int argc, char** argv) {
}
}
}
+
+ ifh.open(argv[1], std::ios_base::in|std::ios_base::binary);
+ gmd.readDB(ifh);
+ ifh.close();
for(unsigned int i = 0; i < names.size(); i++) {
gmd.addName(game, names[i].first, names[i].second);

View file

@ -0,0 +1,11 @@
--- src/mix_file.cpp.orig 2017-06-12 14:07:35 UTC
+++ src/mix_file.cpp
@@ -75,7 +75,7 @@ bool MixFile::open(const string path)
if (fh.is_open())
close();
- fh.open(path.c_str(), fstream::in | fstream::out | fstream::binary);
+ fh.open(path.c_str(), fstream::in | fstream::binary);
if (!fh.is_open()) {
cout << "File " << path << " failed to open" << endl;
return false;

View file

@ -0,0 +1,46 @@
From c55a16f2a142c55f344480c3eecc6ecdedcfa735 Mon Sep 17 00:00:00 2001
From: askeladdk <askeladdk@users.noreply.github.com>
Date: Sat, 2 Jan 2016 14:15:35 +0100
Subject: [PATCH] The filenames of unidentified files will be used as the
internal ID without being re-hashed. This lets you repack
unidentified files easily. Unidentified filenames are
detected if their name is exactly 8 characters long and
does not contain a dot ('.').
--- src/mixid.cpp.orig 2017-06-12 14:07:35 UTC
+++ src/mixid.cpp
@@ -8,7 +8,7 @@ namespace MixID
{
namespace
{
- int32_t crc_table[256] = {
+ uint32_t crc_table[256] = {
0x00000000, 0x77073096, 0xee0e612c, 0x990951ba, 0x076dc419, 0x706af48f, 0xe963a535, 0x9e6495a3,
0x0edb8832, 0x79dcb8a4, 0xe0d5e91e, 0x97d2d988, 0x09b64c2b, 0x7eb17cbd, 0xe7b82d07, 0x90bf1d91,
0x1db71064, 0x6ab020f2, 0xf3b97148, 0x84be41de, 0x1adad47d, 0x6ddde4eb, 0xf4d4b551, 0x83d385c7,
@@ -42,8 +42,6 @@ namespace MixID
0xbdbdf21c, 0xcabac28a, 0x53b39330, 0x24b4a3a6, 0xbad03605, 0xcdd70693, 0x54de5729, 0x23d967bf,
0xb3667a2e, 0xc4614ab8, 0x5d681b02, 0x2a6f2b94, 0xb40bbe37, 0xc30c8ea1, 0x5a05df1b, 0x2d02ef8d};
- const char* marker = "[id]";
-
uint32_t do_block(const void* data, int size);
uint32_t do_block(const void* data, int size)
@@ -62,7 +60,7 @@ namespace MixID
{
//if the filename starts [id] treat next 8 chars as an id to convert to int
if(isIdName(fname)){
- return strId(fname.substr(4, 8));
+ return strId(fname);
}
std::transform(fname.begin(), fname.end(), fname.begin(),
(int(*)(int)) toupper); // convert to uppercase
@@ -128,6 +126,6 @@ namespace MixID
bool isIdName(std::string fname)
{
- return !strncmp(fname.c_str(), marker, strlen(marker));
+ return (fname.size() == 8) && (fname.find('.') == std::string::npos);
}
}

View file

@ -0,0 +1,9 @@
ccmix is a command-line tool to create and extract from archive files in
the Westwood Studios MIX format. The tool can create any of the three main
variants used in classic Westwood games. These are Tiberian Dawn versions,
Red Alert versions with both encrypted and unencrypted file headers, and
Tiberian Sun versions with encrypted and unencrypted file headers. It also
optionally adds the XCC extension of including a local filenames database
to allow recovery of filenames from the one way hash they are stored as.
WWW: https://github.com/OmniBlade/ccmix

View file

@ -1,5 +1,5 @@
PORTNAME= libdeflate
PORTVERSION= 1.12
PORTVERSION= 1.13
DISTVERSIONPREFIX= v
CATEGORIES= archivers

View file

@ -1,3 +1,3 @@
TIMESTAMP = 1655063579
SHA256 (ebiggers-libdeflate-v1.12_GH0.tar.gz) = ba89fb167a5ab6bbdfa6ee3b1a71636e8140fa8471cce8a311697584948e4d06
SIZE (ebiggers-libdeflate-v1.12_GH0.tar.gz) = 173456
TIMESTAMP = 1659680511
SHA256 (ebiggers-libdeflate-v1.13_GH0.tar.gz) = 0d81f197dc31dc4ef7b6198fde570f4e8653c77f4698fcb2163d820a9607c838
SIZE (ebiggers-libdeflate-v1.13_GH0.tar.gz) = 173736

View file

@ -1,5 +1,5 @@
PORTNAME= rcssmin
PORTVERSION= 1.1.0
PORTVERSION= 1.1.1
CATEGORIES= archivers python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}

View file

@ -1,3 +1,3 @@
TIMESTAMP = 1641865618
SHA256 (rcssmin-1.1.0.tar.gz) = 27fc400627fd3d328b7fe95af2a01f5d0af6b5af39731af5d071826a1f08e362
SIZE (rcssmin-1.1.0.tar.gz) = 580779
TIMESTAMP = 1660285822
SHA256 (rcssmin-1.1.1.tar.gz) = 4f9400b4366d29f5f5446f58e78549afa8338e6a59740c73115e9f6ac413dc64
SIZE (rcssmin-1.1.1.tar.gz) = 582247

View file

@ -1,5 +1,5 @@
PORTNAME= rjsmin
PORTVERSION= 1.2.0
PORTVERSION= 1.2.1
CATEGORIES= archivers python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}

View file

@ -1,3 +1,3 @@
TIMESTAMP = 1641865643
SHA256 (rjsmin-1.2.0.tar.gz) = 6c529feb6c400984452494c52dd9fdf59185afeacca2afc5174a28ab37751a1b
SIZE (rjsmin-1.2.0.tar.gz) = 419866
TIMESTAMP = 1660285848
SHA256 (rjsmin-1.2.1.tar.gz) = 1f982be8e011438777a94307279b40134a3935fc0f079312ee299725b8af5411
SIZE (rjsmin-1.2.1.tar.gz) = 420696

View file

@ -1,5 +1,5 @@
PORTNAME= Astro-SpaceTrack
PORTVERSION= 0.155
PORTVERSION= 0.156
CATEGORIES= astro perl5
MASTER_SITES= CPAN
PKGNAMEPREFIX= p5-

View file

@ -1,3 +1,3 @@
TIMESTAMP = 1658506707
SHA256 (Astro-SpaceTrack-0.155.tar.gz) = fded9f7ecfc745c7f74dc09d616d0cb8b9d978eacae5abed7befdd1c3036a447
SIZE (Astro-SpaceTrack-0.155.tar.gz) = 197538
TIMESTAMP = 1660009472
SHA256 (Astro-SpaceTrack-0.156.tar.gz) = 8533ce9086ca0d478af570ce068658d2df3dde310a4cbed6a7849f00e075b70f
SIZE (Astro-SpaceTrack-0.156.tar.gz) = 201667

View file

@ -1,5 +1,5 @@
PORTNAME= lv2
PORTVERSION= 1.18.2
PORTVERSION= 1.18.4
CATEGORIES= audio
MASTER_SITES= https://lv2plug.in/spec/

View file

@ -1,3 +1,3 @@
TIMESTAMP = 1610099349
SHA256 (lv2-1.18.2.tar.bz2) = 4e891fbc744c05855beb5dfa82e822b14917dd66e98f82b8230dbd1c7ab2e05e
SIZE (lv2-1.18.2.tar.bz2) = 538345
TIMESTAMP = 1660012418
SHA256 (lv2-1.18.4.tar.bz2) = 4ddc0ed20579aabbaeb4df6fb42b69949c01dc7169ab0b945c709339509e6760
SIZE (lv2-1.18.4.tar.bz2) = 540611

View file

@ -1,6 +1,5 @@
PORTNAME= ncpamixer
DISTVERSION= 1.3.3.1
PORTREVISION= 1
DISTVERSION= 1.3.3.2
CATEGORIES= audio
MAINTAINER= yuri@FreeBSD.org

View file

@ -1,3 +1,3 @@
TIMESTAMP = 1600500031
SHA256 (fulhax-ncpamixer-1.3.3.1_GH0.tar.gz) = b2c797a90c92aa931052c5ac89a79fbc30f76d5e2a5b773ef68edf057c34b060
SIZE (fulhax-ncpamixer-1.3.3.1_GH0.tar.gz) = 21805
TIMESTAMP = 1660236579
SHA256 (fulhax-ncpamixer-1.3.3.2_GH0.tar.gz) = 97f9398773ccfe4dd89284e695f88d337cd02a871d33650018a3d86134d877a6
SIZE (fulhax-ncpamixer-1.3.3.2_GH0.tar.gz) = 22301

View file

@ -10,6 +10,7 @@ COMMENT= Timbre Mill tool for timbre correction
LICENSE= GPLv3
LICENSE_FILE= ${WRKSRC}/COPYING
BROKEN_aarch64= undefined symbol: lsp::aarch64::dsp_init(), see https://github.com/sadko4u/timbre-mill/issues/4
BROKEN_i386= clang crashes, see https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=265680
LIB_DEPENDS= libiconv.so:converters/libiconv \

View file

@ -1,9 +1,8 @@
PORTNAME= xuidesigner
DISTVERSIONPREFIX= v
DISTVERSION= 0.4-37
DISTVERSIONSUFFIX= -g8f5abdb
DISTVERSION= 0.5
CATEGORIES= audio
#MASTER_SITES= https://github.com/brummer10/XUiDesigner/releases/download/v${DISTVERSION}/
MASTER_SITES= https://github.com/brummer10/XUiDesigner/releases/download/v${DISTVERSION}/
DISTNAME= XUIDesigner_${DISTVERSION}
MAINTAINER= yuri@FreeBSD.org
@ -23,11 +22,6 @@ USE_GNOME= cairo
USE_XORG= x11
USE_LDCONFIG= yes
USE_GITHUB= yes
GH_ACCOUNT= brummer10
GH_PROJECT= XUiDesigner
GH_TUPLE= brummer10:libxputty:d073c72:brummer10_libxputty/libxputty
SHEBANG_FILES= tools/dsp2cc
BINARY_ALIAS= make=${GMAKE}

View file

@ -1,5 +1,3 @@
TIMESTAMP = 1659849686
SHA256 (brummer10-XUiDesigner-v0.4-37-g8f5abdb_GH0.tar.gz) = dd912b9c6533d2962419474f63bbe80b2528ae143009333665aeb9f612d84419
SIZE (brummer10-XUiDesigner-v0.4-37-g8f5abdb_GH0.tar.gz) = 131790
SHA256 (brummer10-libxputty-d073c72_GH0.tar.gz) = 7d91b3f9a7187a44b6906f5eb8185e52ba2281ba8df0a6582b4fbf1f06646446
SIZE (brummer10-libxputty-d073c72_GH0.tar.gz) = 549046
TIMESTAMP = 1659980034
SHA256 (XUIDesigner_0.5.tar.gz) = aea0c56172e8d9756533cb8d9055beeea6def57643c50aba76e882990291e510
SIZE (XUIDesigner_0.5.tar.gz) = 679978

View file

@ -10,6 +10,7 @@ COMMENT= Variant discovery in high-throughput sequencing data
LICENSE= BSD3CLAUSE
LICENSE_FILE= ${WRKSRC}/LICENSE.TXT
BROKEN= fails to build: Build failed with an exception
BROKEN_FreeBSD_12_powerpc64= fails to build: String index out of range: -1
BUILD_DEPENDS= gradle:devel/gradle

View file

@ -1,6 +1,5 @@
PORTNAME= FreeCAD
DISTVERSION= 0.20
PORTREVISION= 3
DISTVERSION= 0.20.1
# use these for bugfixes/snapshots
# DISTVERSION= 0.18-16093 # git rev-list --count
# DISTVERSIONSUFFIX= -g690774c0e

View file

@ -1,3 +1,3 @@
TIMESTAMP = 1655206018
SHA256 (FreeCAD-FreeCAD-0.20_GH0.tar.gz) = c4d9ce782d3da0edfa16d6218db4ce8613e346124ee47b3fe6a6dae40c0a61d9
SIZE (FreeCAD-FreeCAD-0.20_GH0.tar.gz) = 75452957
TIMESTAMP = 1660064663
SHA256 (FreeCAD-FreeCAD-0.20.1_GH0.tar.gz) = 1a992d2dc005be6979600c53e1f4cceeb9c4047a00bc5053e64b3b96912f9ebc
SIZE (FreeCAD-FreeCAD-0.20.1_GH0.tar.gz) = 85816653

View file

@ -1,11 +0,0 @@
--- src/App/PropertyExpressionEngine.h.orig 2022-06-14 21:47:38 +0200
+++ src/App/PropertyExpressionEngine.h
@@ -179,7 +179,7 @@
typedef boost::adjacency_list< boost::listS, boost::vecS, boost::directedS > DiGraph;
typedef std::pair<int, int> Edge;
// Note: use std::map instead of unordered_map to keep the binding order stable
- #ifdef FC_OS_MACOSX
+ #if defined(FC_OS_MACOSX) || defined(FC_OS_BSD)
typedef std::map<App::ObjectIdentifier, ExpressionInfo> ExpressionMap;
#else
typedef std::map<const App::ObjectIdentifier, ExpressionInfo> ExpressionMap;

View file

@ -39,6 +39,7 @@ FreeCAD/Mod/AddonManager/AddonManager_rc.py
FreeCAD/Mod/AddonManager/Init.py
FreeCAD/Mod/AddonManager/InitGui.py
FreeCAD/Mod/AddonManager/NetworkManager.py
FreeCAD/Mod/AddonManager/PythonDependencyUpdateDialog.ui
FreeCAD/Mod/AddonManager/TestAddonManagerApp.py
FreeCAD/Mod/AddonManager/TestAddonManagerGui.py
FreeCAD/Mod/AddonManager/add_toolbar_button_dialog.ui
@ -53,6 +54,7 @@ FreeCAD/Mod/AddonManager/expanded_view.py
FreeCAD/Mod/AddonManager/first_run.ui
FreeCAD/Mod/AddonManager/install_to_toolbar.py
FreeCAD/Mod/AddonManager/loading.html
FreeCAD/Mod/AddonManager/manage_python_dependencies.py
FreeCAD/Mod/AddonManager/package_details.py
FreeCAD/Mod/AddonManager/package_list.py
FreeCAD/Mod/AddonManager/select_toolbar_dialog.ui
@ -362,12 +364,6 @@ FreeCAD/Mod/Draft/importDWG.py
FreeCAD/Mod/Draft/importDXF.py
FreeCAD/Mod/Draft/importOCA.py
FreeCAD/Mod/Draft/importSVG.py
FreeCAD/Mod/Drawing/DrawingExample.py
FreeCAD/Mod/Drawing/DrawingPatterns.py
FreeCAD/Mod/Drawing/DrawingTests.py
FreeCAD/Mod/Drawing/Init.py
FreeCAD/Mod/Drawing/InitGui.py
FreeCAD/Mod/Drawing/README.md
FreeCAD/Mod/Fem/Init.py
FreeCAD/Mod/Fem/InitGui.py
FreeCAD/Mod/Fem/ObjectsFem.py
@ -1014,6 +1010,7 @@ FreeCAD/Mod/Path/PathScripts/PathAdaptive.py
FreeCAD/Mod/Path/PathScripts/PathAdaptiveGui.py
FreeCAD/Mod/Path/PathScripts/PathAreaOp.py
FreeCAD/Mod/Path/PathScripts/PathArray.py
FreeCAD/Mod/Path/PathScripts/PathCamoticsGui.py
FreeCAD/Mod/Path/PathScripts/PathCircularHoleBase.py
FreeCAD/Mod/Path/PathScripts/PathCircularHoleBaseGui.py
FreeCAD/Mod/Path/PathScripts/PathComment.py
@ -1124,6 +1121,9 @@ FreeCAD/Mod/Path/PathScripts/PathVcarveGui.py
FreeCAD/Mod/Path/PathScripts/PathWaterline.py
FreeCAD/Mod/Path/PathScripts/PathWaterlineGui.py
FreeCAD/Mod/Path/PathScripts/PostUtils.py
FreeCAD/Mod/Path/PathScripts/PostUtilsArguments.py
FreeCAD/Mod/Path/PathScripts/PostUtilsExport.py
FreeCAD/Mod/Path/PathScripts/PostUtilsParse.py
FreeCAD/Mod/Path/PathScripts/__init__.py
FreeCAD/Mod/Path/PathScripts/drillableLib.py
FreeCAD/Mod/Path/PathScripts/post/KineticNCBeamicon2_post.py
@ -1146,6 +1146,11 @@ FreeCAD/Mod/Path/PathScripts/post/nccad_post.py
FreeCAD/Mod/Path/PathScripts/post/opensbp_post.py
FreeCAD/Mod/Path/PathScripts/post/opensbp_pre.py
FreeCAD/Mod/Path/PathScripts/post/philips_post.py
FreeCAD/Mod/Path/PathScripts/post/refactored_centroid_post.py
FreeCAD/Mod/Path/PathScripts/post/refactored_grbl_post.py
FreeCAD/Mod/Path/PathScripts/post/refactored_linuxcnc_post.py
FreeCAD/Mod/Path/PathScripts/post/refactored_mach3_mach4_post.py
FreeCAD/Mod/Path/PathScripts/post/refactored_test_post.py
FreeCAD/Mod/Path/PathScripts/post/rml_post.py
FreeCAD/Mod/Path/PathScripts/post/rrf_post.py
FreeCAD/Mod/Path/PathScripts/post/slic3r_pre.py
@ -1153,6 +1158,10 @@ FreeCAD/Mod/Path/PathScripts/post/smoothie_post.py
FreeCAD/Mod/Path/PathScripts/post/uccnc_post.py
FreeCAD/Mod/Path/PathTests/Drilling_1.FCStd
FreeCAD/Mod/Path/PathTests/PathTestUtils.py
FreeCAD/Mod/Path/PathTests/TestCentroidPost.py
FreeCAD/Mod/Path/PathTests/TestGrblPost.py
FreeCAD/Mod/Path/PathTests/TestLinuxCNCPost.py
FreeCAD/Mod/Path/PathTests/TestMach3Mach4Post.py
FreeCAD/Mod/Path/PathTests/TestPathAdaptive.py
FreeCAD/Mod/Path/PathTests/TestPathCore.py
FreeCAD/Mod/Path/PathTests/TestPathDeburr.py
@ -1183,19 +1192,26 @@ FreeCAD/Mod/Path/PathTests/TestPathTooltable.py
FreeCAD/Mod/Path/PathTests/TestPathUtil.py
FreeCAD/Mod/Path/PathTests/TestPathVcarve.py
FreeCAD/Mod/Path/PathTests/TestPathVoronoi.py
FreeCAD/Mod/Path/PathTests/TestRefactoredCentroidPost.py
FreeCAD/Mod/Path/PathTests/TestRefactoredGrblPost.py
FreeCAD/Mod/Path/PathTests/TestRefactoredLinuxCNCPost.py
FreeCAD/Mod/Path/PathTests/TestRefactoredMach3Mach4Post.py
FreeCAD/Mod/Path/PathTests/TestRefactoredTestPost.py
FreeCAD/Mod/Path/PathTests/Tools/Bit/test-path-tool-bit-bit-00.fctb
FreeCAD/Mod/Path/PathTests/Tools/Library/test-path-tool-bit-library-00.fctl
FreeCAD/Mod/Path/PathTests/Tools/Shape/test-path-tool-bit-shape-00.fcstd
FreeCAD/Mod/Path/PathTests/__init__.py
FreeCAD/Mod/Path/PathTests/boxtest.fcstd
FreeCAD/Mod/Path/PathTests/boxtest1.fcstd
FreeCAD/Mod/Path/PathTests/drill_test1.FCStd
FreeCAD/Mod/Path/PathTests/test-path-tool-bit-bit-00.fctb
FreeCAD/Mod/Path/PathTests/test-path-tool-bit-library-00.fctl
FreeCAD/Mod/Path/PathTests/test-path-tool-bit-shape-00.fcstd
FreeCAD/Mod/Path/PathTests/test_adaptive.fcstd
FreeCAD/Mod/Path/PathTests/test_centroid_00.ngc
FreeCAD/Mod/Path/PathTests/test_filenaming.fcstd
FreeCAD/Mod/Path/PathTests/test_geomop.fcstd
FreeCAD/Mod/Path/PathTests/test_holes00.fcstd
FreeCAD/Mod/Path/PathTests/test_linuxcnc_00.ngc
FreeCAD/Mod/Path/TestPathApp.py
FreeCAD/Mod/Path/Tools/Bit/45degree_chamfer.fctb
FreeCAD/Mod/Path/Tools/Bit/5mm-thread-cutter.fctb
@ -1220,6 +1236,8 @@ FreeCAD/Mod/Path/Tools/Shape/v-bit.fcstd
FreeCAD/Mod/Plot/Plot.py
FreeCAD/Mod/Points/Init.py
FreeCAD/Mod/Points/InitGui.py
FreeCAD/Mod/Points/pointscommands/__init__.py
FreeCAD/Mod/Points/pointscommands/commands.py
FreeCAD/Mod/Raytracing/Init.py
FreeCAD/Mod/Raytracing/InitGui.py
FreeCAD/Mod/Raytracing/RaytracingExample.py
@ -1275,13 +1293,16 @@ FreeCAD/Mod/Surface/Init.py
FreeCAD/Mod/Surface/InitGui.py
FreeCAD/Mod/TechDraw/Init.py
FreeCAD/Mod/TechDraw/InitGui.py
FreeCAD/Mod/TechDraw/TDTest/DHatchTest.py
FreeCAD/Mod/TechDraw/TDTest/DProjGroupTest.py
FreeCAD/Mod/TechDraw/TDTest/DVAnnoSymImageTest.py
FreeCAD/Mod/TechDraw/TDTest/DVBalloonTest.py
FreeCAD/Mod/TechDraw/TDTest/DVDimensionTest.py
FreeCAD/Mod/TechDraw/TDTest/DVPartTest.py
FreeCAD/Mod/TechDraw/TDTest/DVSectionTest.py
FreeCAD/Mod/TechDraw/TDTest/DrawHatchTest.py
FreeCAD/Mod/TechDraw/TDTest/DrawProjectionGroupTest.py
FreeCAD/Mod/TechDraw/TDTest/DrawViewAnnotationTest.py
FreeCAD/Mod/TechDraw/TDTest/DrawViewBalloonTest.py
FreeCAD/Mod/TechDraw/TDTest/DrawViewDimensionTest.py
FreeCAD/Mod/TechDraw/TDTest/DrawViewImageTest.py
FreeCAD/Mod/TechDraw/TDTest/DrawViewPartTest.py
FreeCAD/Mod/TechDraw/TDTest/DrawViewSectionTest.py
FreeCAD/Mod/TechDraw/TDTest/DrawViewSymbolTest.py
FreeCAD/Mod/TechDraw/TDTest/TechDrawTestUtilities.py
FreeCAD/Mod/TechDraw/TDTest/TestHatch.svg
FreeCAD/Mod/TechDraw/TDTest/TestImage.png
FreeCAD/Mod/TechDraw/TDTest/TestSymbol.svg
@ -1330,8 +1351,6 @@ FreeCAD/bin/FreeCAD
FreeCAD/bin/FreeCADCmd
FreeCAD/include/E57Format/E57Export.h
FreeCAD/lib/DraftUtils.so
FreeCAD/lib/Drawing.so
FreeCAD/lib/DrawingGui.so
FreeCAD/lib/Fem.so
FreeCAD/lib/FemGui.so
FreeCAD/lib/FreeCAD.so
@ -1398,10 +1417,12 @@ FreeCAD/share/Gui/PreferencePackTemplates/Draft_Colors.cfg
FreeCAD/share/Gui/PreferencePackTemplates/Editor_Colors.cfg
FreeCAD/share/Gui/PreferencePackTemplates/Editor_Font.cfg
FreeCAD/share/Gui/PreferencePackTemplates/Main_window_layout.cfg
FreeCAD/share/Gui/PreferencePackTemplates/Part_Colors.cfg
FreeCAD/share/Gui/PreferencePackTemplates/Path_Colors.cfg
FreeCAD/share/Gui/PreferencePackTemplates/Sketcher_Colors.cfg
FreeCAD/share/Gui/PreferencePackTemplates/Start_Colors.cfg
FreeCAD/share/Gui/PreferencePackTemplates/TechDraw_Colors.cfg
FreeCAD/share/Gui/PreferencePackTemplates/View.cfg
FreeCAD/share/Gui/PreferencePackTemplates/Window_Colors.cfg
FreeCAD/share/Gui/PreferencePacks/FreeCAD Classic Colors/FreeCAD Classic Colors.cfg
FreeCAD/share/Gui/PreferencePacks/package.xml
@ -1500,43 +1521,6 @@ FreeCAD/share/Mod/Arch/Presets/profiles.csv
FreeCAD/share/Mod/Arch/Presets/pset_definitions.csv
FreeCAD/share/Mod/Arch/Resources/icons/ArchWorkbench.svg
FreeCAD/share/Mod/Draft/Resources/icons/DraftWorkbench.svg
FreeCAD/share/Mod/Drawing/Resources/icons/DrawingWorkbench.svg
FreeCAD/share/Mod/Drawing/Templates/A0_Landscape_ISO7200.dxf
FreeCAD/share/Mod/Drawing/Templates/A0_Landscape_ISO7200.svg
FreeCAD/share/Mod/Drawing/Templates/A0_Landscape_plain.dxf
FreeCAD/share/Mod/Drawing/Templates/A0_Landscape_plain.svg
FreeCAD/share/Mod/Drawing/Templates/A0_Portrait_plain.dxf
FreeCAD/share/Mod/Drawing/Templates/A0_Portrait_plain.svg
FreeCAD/share/Mod/Drawing/Templates/A1_Landscape_ISO7200.dxf
FreeCAD/share/Mod/Drawing/Templates/A1_Landscape_ISO7200.svg
FreeCAD/share/Mod/Drawing/Templates/A1_Landscape_plain.dxf
FreeCAD/share/Mod/Drawing/Templates/A1_Landscape_plain.svg
FreeCAD/share/Mod/Drawing/Templates/A1_Portrait_plain.dxf
FreeCAD/share/Mod/Drawing/Templates/A1_Portrait_plain.svg
FreeCAD/share/Mod/Drawing/Templates/A2_Landscape_ISO7200.dxf
FreeCAD/share/Mod/Drawing/Templates/A2_Landscape_ISO7200.svg
FreeCAD/share/Mod/Drawing/Templates/A2_Landscape_plain.dxf
FreeCAD/share/Mod/Drawing/Templates/A2_Landscape_plain.svg
FreeCAD/share/Mod/Drawing/Templates/A2_Portrait_plain.dxf
FreeCAD/share/Mod/Drawing/Templates/A2_Portrait_plain.svg
FreeCAD/share/Mod/Drawing/Templates/A3_Landscape.dxf
FreeCAD/share/Mod/Drawing/Templates/A3_Landscape.svg
FreeCAD/share/Mod/Drawing/Templates/A3_Landscape_ISO7200.dxf
FreeCAD/share/Mod/Drawing/Templates/A3_Landscape_ISO7200.svg
FreeCAD/share/Mod/Drawing/Templates/A3_Landscape_plain.dxf
FreeCAD/share/Mod/Drawing/Templates/A3_Landscape_plain.svg
FreeCAD/share/Mod/Drawing/Templates/A3_Portrait_plain.dxf
FreeCAD/share/Mod/Drawing/Templates/A3_Portrait_plain.svg
FreeCAD/share/Mod/Drawing/Templates/A4_Landscape.dxf
FreeCAD/share/Mod/Drawing/Templates/A4_Landscape.svg
FreeCAD/share/Mod/Drawing/Templates/A4_Landscape_ISO7200.dxf
FreeCAD/share/Mod/Drawing/Templates/A4_Landscape_ISO7200.svg
FreeCAD/share/Mod/Drawing/Templates/A4_Landscape_plain.dxf
FreeCAD/share/Mod/Drawing/Templates/A4_Landscape_plain.svg
FreeCAD/share/Mod/Drawing/Templates/A4_Portrait_ISO7200.dxf
FreeCAD/share/Mod/Drawing/Templates/A4_Portrait_ISO7200.svg
FreeCAD/share/Mod/Drawing/Templates/A4_Portrait_plain.dxf
FreeCAD/share/Mod/Drawing/Templates/A4_Portrait_plain.svg
FreeCAD/share/Mod/Fem/Resources/icons/FemWorkbench.svg
FreeCAD/share/Mod/Image/Resources/icons/ImageWorkbench.svg
FreeCAD/share/Mod/Import/DxfPlate/blocks10.rub
@ -1568,6 +1552,7 @@ FreeCAD/share/Mod/Material/StandardMaterial/AlMg3F24.FCMat
FreeCAD/share/Mod/Material/StandardMaterial/AlMgSi1F31.FCMat
FreeCAD/share/Mod/Material/StandardMaterial/AlZn4-5Mg1F35.FCMat
FreeCAD/share/Mod/Material/StandardMaterial/Aluminum-6061-T6.FCMat
FreeCAD/share/Mod/Material/StandardMaterial/Aluminum-Generic.FCMat
FreeCAD/share/Mod/Material/StandardMaterial/CalculiX-Steel.FCMat
FreeCAD/share/Mod/Material/StandardMaterial/Concrete-EN-C35_45.FCMat
FreeCAD/share/Mod/Material/StandardMaterial/Concrete-Generic.FCMat

View file

@ -1,6 +1,7 @@
PORTNAME= nvc
DISTVERSIONPREFIX= r
DISTVERSION= 1.7.0
DISTVERSION= 1.7.0-23
DISTVERSIONSUFFIX= -g265f2800
CATEGORIES= cad
MAINTAINER= yuri@FreeBSD.org
@ -43,6 +44,12 @@ CONFIGURE_WRKSRC= ${BUILD_DIR}
INSTALL_WRKSRC= ${BUILD_DIR}
CONFIGURE_CMD= ${WRKSRC}/configure
.include <bsd.port.options.mk>
.if ${ARCH} == powerpc64
CONFIGURE_ARGS+= --enable-lto=no
.endif
post-install:
@${FIND} ${STAGEDIR}${PREFIX} -name "*.so" | ${XARGS} ${STRIP_CMD}

View file

@ -1,3 +1,3 @@
TIMESTAMP = 1659898552
SHA256 (nickg-nvc-r1.7.0_GH0.tar.gz) = 5b9e75d61ae92e55904bf41910a35176564849be7f54e1cf85137ebe8522f758
SIZE (nickg-nvc-r1.7.0_GH0.tar.gz) = 1284688
TIMESTAMP = 1660206528
SHA256 (nickg-nvc-r1.7.0-23-g265f2800_GH0.tar.gz) = 22225ebe955321a829b6bd0f492a644d09403e282aa5142ac29aaf2baf097524
SIZE (nickg-nvc-r1.7.0-23-g265f2800_GH0.tar.gz) = 1284473

View file

@ -38,6 +38,32 @@ lib/nvc/ieee.08/IEEE.VITAL_TIMING
lib/nvc/ieee.08/IEEE.VITAL_TIMING-body
lib/nvc/ieee.08/_NVC_LIB
lib/nvc/ieee.08/_index
lib/nvc/ieee.19/IEEE.FIXED_FLOAT_TYPES
lib/nvc/ieee.19/IEEE.FIXED_GENERIC_PKG
lib/nvc/ieee.19/IEEE.FIXED_GENERIC_PKG-body
lib/nvc/ieee.19/IEEE.FIXED_PKG
lib/nvc/ieee.19/IEEE.FLOAT_GENERIC_PKG
lib/nvc/ieee.19/IEEE.FLOAT_GENERIC_PKG-body
lib/nvc/ieee.19/IEEE.FLOAT_PKG
lib/nvc/ieee.19/IEEE.IEEE_BIT_CONTEXT
lib/nvc/ieee.19/IEEE.IEEE_STD_CONTEXT
lib/nvc/ieee.19/IEEE.MATH_COMPLEX
lib/nvc/ieee.19/IEEE.MATH_COMPLEX-body
lib/nvc/ieee.19/IEEE.MATH_REAL
lib/nvc/ieee.19/IEEE.MATH_REAL-body
lib/nvc/ieee.19/IEEE.NUMERIC_BIT
lib/nvc/ieee.19/IEEE.NUMERIC_BIT-body
lib/nvc/ieee.19/IEEE.NUMERIC_BIT_UNSIGNED
lib/nvc/ieee.19/IEEE.NUMERIC_BIT_UNSIGNED-body
lib/nvc/ieee.19/IEEE.NUMERIC_STD
lib/nvc/ieee.19/IEEE.NUMERIC_STD-body
lib/nvc/ieee.19/IEEE.NUMERIC_STD_UNSIGNED
lib/nvc/ieee.19/IEEE.NUMERIC_STD_UNSIGNED-body
lib/nvc/ieee.19/IEEE.STD_LOGIC_1164
lib/nvc/ieee.19/IEEE.STD_LOGIC_1164-body
lib/nvc/ieee.19/IEEE.STD_LOGIC_TEXTIO
lib/nvc/ieee.19/_NVC_LIB
lib/nvc/ieee.19/_index
lib/nvc/ieee/IEEE.MATH_COMPLEX
lib/nvc/ieee/IEEE.MATH_COMPLEX-body
lib/nvc/ieee/IEEE.MATH_REAL
@ -72,6 +98,12 @@ lib/nvc/nvc.08/NVC.POLYFILL
lib/nvc/nvc.08/NVC.SIM_PKG
lib/nvc/nvc.08/_NVC_LIB
lib/nvc/nvc.08/_index
lib/nvc/nvc.19/NVC.IEEE_SUPPORT
lib/nvc/nvc.19/NVC.IEEE_SUPPORT-body
lib/nvc/nvc.19/NVC.POLYFILL
lib/nvc/nvc.19/NVC.SIM_PKG
lib/nvc/nvc.19/_NVC_LIB
lib/nvc/nvc.19/_index
lib/nvc/nvc/NVC.POLYFILL
lib/nvc/nvc/NVC.POLYFILL-body
lib/nvc/nvc/NVC.SIM_PKG
@ -84,6 +116,13 @@ lib/nvc/std.08/STD.TEXTIO
lib/nvc/std.08/STD.TEXTIO-body
lib/nvc/std.08/_NVC_LIB
lib/nvc/std.08/_index
lib/nvc/std.19/STD.ENV
lib/nvc/std.19/STD.ENV-body
lib/nvc/std.19/STD.STANDARD
lib/nvc/std.19/STD.TEXTIO
lib/nvc/std.19/STD.TEXTIO-body
lib/nvc/std.19/_NVC_LIB
lib/nvc/std.19/_index
lib/nvc/std/STD.STANDARD
lib/nvc/std/STD.TEXTIO
lib/nvc/std/STD.TEXTIO-body

View file

@ -20,7 +20,7 @@
EOF
capture cat dummy.c
if capture "$CCOMPILER -c -M $MKDEPCOPTS dummy.c | grep '^dummy.o[ ]*:[ ]*dummy.c'"; then
@@ -1629,7 +1631,7 @@ pamconv(int num_msg, const struct pam_me
@@ -1629,7 +1631,7 @@ pamconv(int num_msg, const struct pam_message **msg, s
{
return(0);
}
@ -52,20 +52,20 @@
+ f="memmove"
+ CheckForLibraryWithArgs $f '(char *)0L, "", 0' -lc || {
+ CheckForLibraryWithArgs $f '(char *)0L, "", 0' -lg++ && {
+ Note "Looks like we need -lg++ for $f"
+ MACHDEPLIBS="$MACHDEPLIBS -lg++"
+ break;
+ }
+ }
+ f="strdup"
+ CheckForLibraryWithArgs $f '""' -lc || {
+ CheckForLibraryWithArgs $f '""' -lg++ && {
Note "Looks like we need -lg++ for $f"
MACHDEPLIBS="$MACHDEPLIBS -lg++"
break;
}
}
- done
+ f="strdup"
+ CheckForLibraryWithArgs $f '""' -lc || {
+ CheckForLibraryWithArgs $f '""' -lg++ && {
+ Note "Looks like we need -lg++ for $f"
+ MACHDEPLIBS="$MACHDEPLIBS -lg++"
+ break;
+ }
+ }
fi
- for f in strtoul strerror memmove random; do
+ f="strtoul"
@ -173,7 +173,7 @@
tiff_bytecount_t="uint32"
;;
- 4.[0]) tiff_runlen_t="uint32"
+ 4.[0123]) tiff_runlen_t="uint32"
+ 4.[01234]) tiff_runlen_t="uint32"
tiff_offset_t="uint64"
tiff_bytecount_t="uint64"
echo '#define TIFFHeader TIFFHeaderClassic'

View file

@ -122,8 +122,7 @@ USE_CABAL= Diff-0.4.1 \
x509-validation-1.6.12 \
zlib-0.6.3.0
EXECUTABLES= dhall-to-bash
CABAL_PROJECT= remove
CABAL_EXECUTABLES= dhall-to-bash
CABAL_PROJECT= remove
.include <bsd.port.mk>

View file

@ -117,8 +117,7 @@ USE_CABAL= Diff-0.4.1 \
x509-validation-1.6.12 \
zlib-0.6.3.0
EXECUTABLES= dhall-to-json json-to-dhall
CABAL_PROJECT= remove
CABAL_EXECUTABLES= dhall-to-json json-to-dhall
CABAL_PROJECT= remove
.include <bsd.port.mk>

View file

@ -120,8 +120,7 @@ USE_CABAL= Diff-0.4.1 \
x509-validation-1.6.12 \
zlib-0.6.3.0
EXECUTABLES= dhall-to-yaml-ng yaml-to-dhall
CABAL_PROJECT= remove
CABAL_EXECUTABLES= dhall-to-yaml-ng yaml-to-dhall
CABAL_PROJECT= remove
.include <bsd.port.mk>

View file

@ -1,6 +1,6 @@
PORTNAME= pdf2djvu
DISTVERSION= 0.9.18.2
PORTREVISION= 6
PORTREVISION= 7
CATEGORIES= converters
MASTER_SITES= https://github.com/jwilk/${PORTNAME}/releases/download/${PORTVERSION}/

View file

@ -1,7 +1,7 @@
PORTNAME= svglib
DISTVERSIONPREFIX= v
DISTVERSION= 1.3.0
DISTVERSION= 1.4.1
CATEGORIES= converters python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= kai@FreeBSD.org
@ -17,8 +17,6 @@ RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}cssselect2>=0.2.0:textproc/py-cssselect2@${P
TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytest>0:devel/py-pytest@${PY_FLAVOR}
USES= cpe python:3.7+
USE_GITHUB= yes
GH_ACCOUNT= deeplook
USE_PYTHON= autoplist concurrent distutils
CPE_VENDOR= svglib_project

View file

@ -1,3 +1,3 @@
TIMESTAMP = 1655535116
SHA256 (deeplook-svglib-v1.3.0_GH0.tar.gz) = ec9930a1181593b136f17ab7218ae1b50cba94159422e759f9e136ad00e590ca
SIZE (deeplook-svglib-v1.3.0_GH0.tar.gz) = 1264820
TIMESTAMP = 1659866548
SHA256 (svglib-1.4.1.tar.gz) = 48c24706c23bb4262173b6fa49eabb10afa15b8412f14283120549517ccfa314
SIZE (svglib-1.4.1.tar.gz) = 913042

View file

@ -1,6 +1,6 @@
PORTNAME= kbibtex
DISTVERSION= 0.9.2
PORTREVISION= 32
PORTREVISION= 33
CATEGORIES= databases kde
MASTER_SITES= KDE/stable/KBibTeX/${DISTVERSION}

View file

@ -1,9 +1,9 @@
PORTNAME= mdbx
PORTVERSION= 0.11.2
DISTVERSIONPREFIX= v
PORTVERSION= 0.11.9
CATEGORIES= databases
MASTER_SITES= https://github.com/${GH_ACCOUNT}/${GH_PROJECT}/releases/download/${DISTVERSIONPREFIX}${DISTVERSION}/
DISTNAME= ${GH_PROJECT}-amalgamated-${DISTVERSION}
MASTER_SITES= https://libmdbx.dqdkfa.ru/release/
DISTNAME= libmdbx-amalgamated-${DISTVERSION}
MAINTAINER= mahlon@martini.nu
COMMENT= Lightning Memory-Mapped Database (Extended)
@ -14,9 +14,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE
LICENSE_PERMS= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept
USES= gmake
# No USE_GITHUB, we want the amalgamated build.
GH_ACCOUNT= erthink
GH_PROJECT= libmdbx
USE_LDCONFIG= yes
MAKEFILE= GNUmakefile

View file

@ -1,3 +1,3 @@
TIMESTAMP = 1639163729
SHA256 (libmdbx-amalgamated-0.11.2.tar.gz) = efe64856e934621adf104385fad788e679c41e2df3eae96ab35caf19403c75e2
SIZE (libmdbx-amalgamated-0.11.2.tar.gz) = 664883
TIMESTAMP = 1660003184
SHA256 (libmdbx-amalgamated-0.11.9.tar.gz) = 8feb391155de28b0ec8d6f93817b3f6ed3318a7bd7047d212fd24ba59e287a81
SIZE (libmdbx-amalgamated-0.11.9.tar.gz) = 689520

View file

@ -1,24 +1,24 @@
--- GNUmakefile.orig 2021-10-13 09:17:02.000000000 -0700
+++ GNUmakefile 2021-10-21 14:35:08.340353000 -0700
@@ -13,7 +13,7 @@
# in README and source code (see src/options.h) if you do.
--- GNUmakefile.orig 2022-08-02 10:17:33 UTC
+++ GNUmakefile
@@ -9,7 +9,7 @@
# Basic internal definitios. For a customizable variables and options see below.
#
-SHELL := env bash
+SHELL := env sh
# install sandbox
DESTDIR ?=
@@ -54,7 +54,7 @@
*) echo so;;
$(info // The GNU Make $(MAKE_VERSION))
-SHELL := $(shell env bash -c 'echo $$BASH')
+SHELL := sh
MAKE_VERx3 := $(shell printf "%3s%3s%3s" $(subst ., ,$(MAKE_VERSION)))
make_lt_3_81 := $(shell expr "$(MAKE_VERx3)" "<" " 3 81")
ifneq ($(make_lt_3_81),0)
@@ -117,7 +117,7 @@ define uname2libs
esac
endef
-SO_SUFFIX := $(shell $(uname2sosuffix))
+SO_SUFFIX := so.0.11.2
+SO_SUFFIX := so.0.11.9
HEADERS := mdbx.h mdbx.h++
LIBRARIES := libmdbx.a libmdbx.$(SO_SUFFIX)
TOOLS := mdbx_stat mdbx_copy mdbx_dump mdbx_load mdbx_chk mdbx_drop
@@ -209,16 +209,11 @@
@@ -284,16 +284,11 @@ mdbx_%.static-lto: mdbx_%.c config.h mdbx.c mdbx.h
install: $(LIBRARIES) $(TOOLS) $(HEADERS)
@echo ' INSTALLING...'

View file

@ -0,0 +1,11 @@
--- mdbx.h++.orig 2022-08-02 10:17:33 UTC
+++ mdbx.h++
@@ -23,6 +23,8 @@
#pragma once
+#define _LIBCPP_NO_EXPERIMENTAL_DEPRECATION_WARNING_FILESYSTEM
+
/* Workaround for modern libstdc++ with CLANG < 4.x */
#if defined(__SIZEOF_INT128__) && !defined(__GLIBCXX_TYPE_INT_N_0) && \
defined(__clang__) && __clang_major__ < 4

View file

@ -1,5 +1,5 @@
PORTNAME= mysql-connector-java
PORTVERSION= 8.0.29
PORTVERSION= 8.0.30
CATEGORIES= databases java
MASTER_SITES= MYSQL/Connector-J

View file

@ -1,3 +1,3 @@
TIMESTAMP = 1651867670
SHA256 (mysql-connector-java-8.0.29.tar.gz) = 8ecf96a7254e0aa53e179b2efd549fc51908e7ebe34d0176dc87c9e6eb67aa30
SIZE (mysql-connector-java-8.0.29.tar.gz) = 4273713
TIMESTAMP = 1660023225
SHA256 (mysql-connector-java-8.0.30.tar.gz) = 392f4af8ebdd58c832031d748d482db32b28f82e3913a9ca2d58bd05d45ae526
SIZE (mysql-connector-java-8.0.30.tar.gz) = 4264088

View file

@ -1,6 +1,5 @@
PORTNAME= pgmetrics
PORTVERSION= 1.13.0
PORTREVISION= 3
PORTVERSION= 1.13.1
DISTVERSIONPREFIX=v
CATEGORIES= databases

View file

@ -1,5 +1,5 @@
TIMESTAMP = 1652953578
SHA256 (go/databases_pgmetrics/pgmetrics-v1.13.0/v1.13.0.mod) = 4e80742903b7de07b2600554e508df508bf9f1a1beed3ea7a6fe38e456a09b6a
SIZE (go/databases_pgmetrics/pgmetrics-v1.13.0/v1.13.0.mod) = 1394
SHA256 (go/databases_pgmetrics/pgmetrics-v1.13.0/v1.13.0.zip) = 6df2c701206147b2d04be57947045fdf58f627d92a6935fd4a7aaef9380fb047
SIZE (go/databases_pgmetrics/pgmetrics-v1.13.0/v1.13.0.zip) = 77384
TIMESTAMP = 1659975223
SHA256 (go/databases_pgmetrics/pgmetrics-v1.13.1/v1.13.1.mod) = 4e80742903b7de07b2600554e508df508bf9f1a1beed3ea7a6fe38e456a09b6a
SIZE (go/databases_pgmetrics/pgmetrics-v1.13.1/v1.13.1.mod) = 1394
SHA256 (go/databases_pgmetrics/pgmetrics-v1.13.1/v1.13.1.zip) = 5a251d5f9e98f82d681adcf4dc035f26383433f7f7739968cfe24dda48654fa5
SIZE (go/databases_pgmetrics/pgmetrics-v1.13.1/v1.13.1.zip) = 77386

View file

@ -1,7 +1,7 @@
DISTVERSION?= 10.21
DISTVERSION?= 10.22
# PORTREVISION must be ?= otherwise, all slave ports get this PORTREVISION and
# not their own. Probably best to keep it at ?=0 when reset here too.
PORTREVISION?= 1
PORTREVISION?= 0
MAINTAINER?= pgsql@FreeBSD.org

View file

@ -1,3 +1,3 @@
TIMESTAMP = 1652167487
SHA256 (postgresql/postgresql-10.21.tar.bz2) = d32198856d52a9a6f5d50642ef86687ac058bd6efca5c9ed57be7808496f45d1
SIZE (postgresql/postgresql-10.21.tar.bz2) = 19409454
TIMESTAMP = 1659997986
SHA256 (postgresql/postgresql-10.22.tar.bz2) = 955977555c69df1a64f44b81d4a1987eb74abbd1870579f5ad9d946133dd8e4d
SIZE (postgresql/postgresql-10.22.tar.bz2) = 19455874

View file

@ -1,7 +1,7 @@
DISTVERSION?= 11.16
DISTVERSION?= 11.17
# PORTREVISION must be ?= otherwise, all slave ports get this PORTREVISION and
# not their own. Probably best to keep it at ?=0 when reset here too.
PORTREVISION?= 1
PORTREVISION?= 0
MAINTAINER?= pgsql@FreeBSD.org

View file

@ -1,3 +1,3 @@
TIMESTAMP = 1652167803
SHA256 (postgresql/postgresql-11.16.tar.bz2) = 2dd9e111f0a5949ee7cacc065cea0fb21092929bae310ce05bf01b4ffc5103a5
SIZE (postgresql/postgresql-11.16.tar.bz2) = 20347100
TIMESTAMP = 1659998007
SHA256 (postgresql/postgresql-11.17.tar.bz2) = 6e984963ae0765e61577995103a7e6594db0f0bd01528ac123e0de4a6a4cb4c4
SIZE (postgresql/postgresql-11.17.tar.bz2) = 20385599

View file

@ -819,7 +819,6 @@ lib/libpgcommon.a
%%NLS%%share/locale/pt_BR/LC_MESSAGES/pg_ctl-%%PG_VERSION%%.mo
%%NLS%%share/locale/pt_BR/LC_MESSAGES/pg_rewind-%%PG_VERSION%%.mo
%%NLS%%share/locale/pt_BR/LC_MESSAGES/plpgsql-%%PG_VERSION%%.mo
%%NLS%%share/locale/ro/LC_MESSAGES/plpgsql-%%PG_VERSION%%.mo
%%NLS%%share/locale/ru/LC_MESSAGES/initdb-%%PG_VERSION%%.mo
%%NLS%%share/locale/ru/LC_MESSAGES/pg_archivecleanup-%%PG_VERSION%%.mo
%%NLS%%share/locale/ru/LC_MESSAGES/pg_basebackup-%%PG_VERSION%%.mo

View file

@ -1,7 +1,7 @@
DISTVERSION?= 12.11
DISTVERSION?= 12.12
# PORTREVISION must be ?= otherwise, all slave ports get this PORTREVISION and
# not their own. Probably best to keep it at ?=0 when reset here too.
PORTREVISION?= 1
PORTREVISION?= 0
MAINTAINER?= pgsql@FreeBSD.org

View file

@ -1,3 +1,3 @@
TIMESTAMP = 1652167824
SHA256 (postgresql/postgresql-12.11.tar.bz2) = 1026248a5fd2beeaf43e4c7236ac817e56d58b681a335856465dfbc75b3e8302
SIZE (postgresql/postgresql-12.11.tar.bz2) = 21086745
TIMESTAMP = 1659998029
SHA256 (postgresql/postgresql-12.12.tar.bz2) = 34b3f1c69408e22068c0c71b1827691f1c89153b0ad576c1a44f8920a858039c
SIZE (postgresql/postgresql-12.12.tar.bz2) = 21089064

View file

@ -823,7 +823,6 @@ lib/libpgcommon.a
%%NLS%%share/locale/ko/LC_MESSAGES/plpgsql-%%PG_VERSION%%.mo
%%NLS%%share/locale/ko/LC_MESSAGES/postgres-%%PG_VERSION%%.mo
%%NLS%%share/locale/pl/LC_MESSAGES/pg_controldata-%%PG_VERSION%%.mo
%%NLS%%share/locale/pl/LC_MESSAGES/pg_ctl-%%PG_VERSION%%.mo
%%NLS%%share/locale/pl/LC_MESSAGES/pg_test_fsync-%%PG_VERSION%%.mo
%%NLS%%share/locale/pl/LC_MESSAGES/pg_test_timing-%%PG_VERSION%%.mo
%%NLS%%share/locale/pl/LC_MESSAGES/plpgsql-%%PG_VERSION%%.mo

View file

@ -1,4 +1,4 @@
DISTVERSION?= 14.4
DISTVERSION?= 14.5
# PORTREVISION must be ?= otherwise, all slave ports get this PORTREVISION and
# not their own. Probably best to keep it at ?=0 when reset here too.
PORTREVISION?= 0

View file

@ -1,3 +1,3 @@
TIMESTAMP = 1655233048
SHA256 (postgresql/postgresql-14.4.tar.bz2) = c23b6237c5231c791511bdc79098617d6852e9e3bdf360efd8b5d15a1a3d8f6a
SIZE (postgresql/postgresql-14.4.tar.bz2) = 22094218
TIMESTAMP = 1659998051
SHA256 (postgresql/postgresql-14.5.tar.bz2) = d4f72cb5fb857c9a9f75ec8cf091a1771272802f2178f0b2e65b7b6ff64f4a30
SIZE (postgresql/postgresql-14.5.tar.bz2) = 22132996

View file

@ -737,6 +737,7 @@ lib/postgresql/utf8_and_win.so
%%LLVM%%lib/postgresql/bitcode/postgres/utils/mmgr/slab.bc
%%LLVM%%lib/postgresql/bitcode/postgres/utils/resowner/resowner.bc
%%LLVM%%lib/postgresql/bitcode/postgres/utils/sort/logtape.bc
%%LLVM%%lib/postgresql/bitcode/postgres/utils/sort/qsort_interruptible.bc
%%LLVM%%lib/postgresql/bitcode/postgres/utils/sort/sharedtuplestore.bc
%%LLVM%%lib/postgresql/bitcode/postgres/utils/sort/sortsupport.bc
%%LLVM%%lib/postgresql/bitcode/postgres/utils/sort/tuplesort.bc

View file

@ -1,5 +1,5 @@
PORTNAME?= postgresql
DISTVERSION?= 15beta2
DISTVERSION?= 15beta3
# PORTREVISION must be ?= otherwise, all slave ports get this PORTREVISION and
# not their own. Probably best to keep it at ?=0 when reset here too.
PORTREVISION?= 0

View file

@ -1,3 +1,3 @@
TIMESTAMP = 1656750071
SHA256 (postgresql/postgresql-15beta2.tar.bz2) = 2fedbc58b370f30e5f59fb0dcc8128a2ef9a922b50fa931b442e4fa27ca98830
SIZE (postgresql/postgresql-15beta2.tar.bz2) = 23511057
TIMESTAMP = 1659998072
SHA256 (postgresql/postgresql-15beta3.tar.bz2) = 1a6e2a454b6bcdf76aa4e50573d2fa1ea8db2cdfaa3282a7538830bd285b27bf
SIZE (postgresql/postgresql-15beta3.tar.bz2) = 23585136

View file

@ -1255,6 +1255,13 @@ man/man7/WITH.7.gz
%%NLS%%share/locale/ja/LC_MESSAGES/pg_dump-%%PG_VERSION%%.mo
%%NLS%%share/locale/ja/LC_MESSAGES/pgscripts-%%PG_VERSION%%.mo
%%NLS%%share/locale/ja/LC_MESSAGES/psql-%%PG_VERSION%%.mo
%%NLS%%share/locale/ka/LC_MESSAGES/ecpg-%%PG_VERSION%%.mo
%%NLS%%share/locale/ka/LC_MESSAGES/ecpglib6-%%PG_VERSION%%.mo
%%NLS%%share/locale/ka/LC_MESSAGES/libpq5-%%PG_VERSION%%.mo
%%NLS%%share/locale/ka/LC_MESSAGES/pg_amcheck-%%PG_VERSION%%.mo
%%NLS%%share/locale/ka/LC_MESSAGES/pg_config-%%PG_VERSION%%.mo
%%NLS%%share/locale/ka/LC_MESSAGES/pgscripts-%%PG_VERSION%%.mo
%%NLS%%share/locale/ka/LC_MESSAGES/psql-%%PG_VERSION%%.mo
%%NLS%%share/locale/ko/LC_MESSAGES/ecpg-%%PG_VERSION%%.mo
%%NLS%%share/locale/ko/LC_MESSAGES/ecpglib6-%%PG_VERSION%%.mo
%%NLS%%share/locale/ko/LC_MESSAGES/libpq5-%%PG_VERSION%%.mo

View file

@ -774,6 +774,7 @@ lib/postgresql/utf8_and_win.so
%%LLVM%%lib/postgresql/bitcode/postgres/utils/mmgr/slab.bc
%%LLVM%%lib/postgresql/bitcode/postgres/utils/resowner/resowner.bc
%%LLVM%%lib/postgresql/bitcode/postgres/utils/sort/logtape.bc
%%LLVM%%lib/postgresql/bitcode/postgres/utils/sort/qsort_interruptible.bc
%%LLVM%%lib/postgresql/bitcode/postgres/utils/sort/sharedtuplestore.bc
%%LLVM%%lib/postgresql/bitcode/postgres/utils/sort/sortsupport.bc
%%LLVM%%lib/postgresql/bitcode/postgres/utils/sort/tuplesort.bc
@ -796,6 +797,16 @@ lib/postgresql/utf8_and_win.so
%%DATADIR%%/system_constraints.sql
%%DATADIR%%/system_functions.sql
%%DATADIR%%/system_views.sql
%%NLS%%share/locale/ka/LC_MESSAGES/initdb-%%PG_VERSION%%.mo
%%NLS%%share/locale/ka/LC_MESSAGES/pg_archivecleanup-%%PG_VERSION%%.mo
%%NLS%%share/locale/ka/LC_MESSAGES/pg_checksums-%%PG_VERSION%%.mo
%%NLS%%share/locale/ka/LC_MESSAGES/pg_controldata-%%PG_VERSION%%.mo
%%NLS%%share/locale/ka/LC_MESSAGES/pg_ctl-%%PG_VERSION%%.mo
%%NLS%%share/locale/ka/LC_MESSAGES/pg_resetwal-%%PG_VERSION%%.mo
%%NLS%%share/locale/ka/LC_MESSAGES/pg_rewind-%%PG_VERSION%%.mo
%%NLS%%share/locale/ka/LC_MESSAGES/pg_test_fsync-%%PG_VERSION%%.mo
%%NLS%%share/locale/ka/LC_MESSAGES/pg_test_timing-%%PG_VERSION%%.mo
%%NLS%%share/locale/ka/LC_MESSAGES/pg_waldump-%%PG_VERSION%%.mo
%%NLS%%share/locale/cs/LC_MESSAGES/initdb-%%PG_VERSION%%.mo
%%NLS%%share/locale/cs/LC_MESSAGES/pg_archivecleanup-%%PG_VERSION%%.mo
%%NLS%%share/locale/cs/LC_MESSAGES/pg_basebackup-%%PG_VERSION%%.mo

View file

@ -1,6 +1,6 @@
PORTNAME= bookworm
DISTVERSION= 1.1.2
PORTREVISION= 9
PORTREVISION= 10
CATEGORIES= deskutils
MAINTAINER= miguel@gocobachi.dev

View file

@ -1,6 +1,6 @@
PORTNAME= calibre
PORTVERSION= 5.44.0
PORTREVISION= 1
PORTREVISION= 2
CATEGORIES= deskutils python
MASTER_SITES= http://download.calibre-ebook.com/${PORTVERSION}/

View file

@ -2,7 +2,7 @@ PORTNAME= cfiles
DISTVERSIONPREFIX= v
DISTVERSION= 1.8-6
DISTVERSIONSUFFIX= -g327d47f
PORTREVISION= 20
PORTREVISION= 21
CATEGORIES= deskutils
MAINTAINER= yuri@FreeBSD.org

View file

@ -63,7 +63,7 @@ USE_CABAL= OneTuple-0.3.1_2 \
vector-algorithms-0.8.0.4_1 \
witherable-0.4.2_2
EXECUTABLES= arbtt-capture arbtt-stats arbtt-recover arbtt-import arbtt-dump
CABAL_EXECUTABLES= arbtt-capture arbtt-stats arbtt-recover arbtt-import arbtt-dump
SUB_FILES= pkg-message
SUB_LIST= EXAMPLESDIR=${EXAMPLESDIR}

View file

@ -1,5 +1,5 @@
PORTNAME= libportal
PORTVERSION= 0.5
PORTVERSION= 0.6
CATEGORIES= deskutils
MAINTAINER= arrowd@FreeBSD.org
@ -12,7 +12,7 @@ BUILD_DEPENDS= gtkdoc-scan:textproc/gtk-doc
USES= gnome meson pkgconfig qt:5
USE_GNOME= glib20 gtk30 introspection:build
USE_QT= core gui qmake_build widgets x11extras
USE_QT= buildtools core gui qmake_build testlib widgets x11extras
USE_LDCONFIG= yes
USE_GITHUB= yes

View file

@ -1,3 +1,3 @@
TIMESTAMP = 1640523999
SHA256 (flatpak-libportal-0.5_GH0.tar.gz) = f7238d1bd8d266a3103746de1c06381220a2c6b2c70660bbfc7697699ba6f1d9
SIZE (flatpak-libportal-0.5_GH0.tar.gz) = 75210
TIMESTAMP = 1660123021
SHA256 (flatpak-libportal-0.6_GH0.tar.gz) = 8ad326c4f53b7433645dc86d994fef0292bee8adda0fe67db9288ace19250a9c
SIZE (flatpak-libportal-0.6_GH0.tar.gz) = 83636

View file

@ -0,0 +1,12 @@
--- libportal/portal.c.orig 2022-03-21 19:20:46 UTC
+++ libportal/portal.c
@@ -27,7 +27,9 @@
#include <string.h>
#include <fcntl.h>
#include <errno.h>
+#ifndef __FreeBSD__
#include <sys/vfs.h>
+#endif
#include <stdio.h>
/**

View file

@ -3,6 +3,7 @@ include/libportal-qt5/portal-qt5.h
include/libportal/account.h
include/libportal/background.h
include/libportal/camera.h
include/libportal/dynamic-launcher.h
include/libportal/email.h
include/libportal/filechooser.h
include/libportal/inhibit.h

View file

@ -1,6 +1,6 @@
PORTNAME= lumina-pdf
DISTVERSION= 1.6.2
PORTREVISION= 5
PORTREVISION= 6
CATEGORIES= deskutils
MAINTAINER= lbartoletti@FreeBSD.org

View file

@ -10,35 +10,40 @@ COMMENT= CRM project designed for Computer Servicing and Repairs
LICENSE= GPLv3
DEPRECATED= Abandoned project as last update was on 2012-01-15
EXPIRATION_DATE= 2022-09-30
USES= dos2unix zip
USE_PHP= mysqli session xml
PATCH_STRIP= -p1
NO_ARCH= yes
NO_BUILD= yes
SUB_FILES= pkg-message
WRKSRC= ${WRKDIR}/MyITCRM-${PORTVERSION}
PLIST_SUB= WWWOWN="${WWWOWN}" WWWGRP="${WWWGRP}"
SUB_FILES= pkg-message
PATCH_STRIP= -p1
WRITEABLE= conf.php.sample log/access.log cache
PLIST_SUB= WWWGRP="${WWWGRP}" \
WWWOWN="${WWWOWN}"
PORTDOCS= README.textile changelog.txt
PORTEXAMPLES= htaccess.txt
PORTDOCS= changelog.txt README.textile
OPTIONS_DEFINE= APACHE PHPMOD LIGHTTPD NGINX DOCS EXAMPLES
OPTIONS_DEFINE= APACHE DOCS EXAMPLES LIGHTTPD NGINX PHPMOD
OPTIONS_DEFAULT= APACHE
PHPMOD_DESC= Use PHP module for Apache
NGINX_DESC= Use Nginx
PHPMOD_DESC= Use PHP module for Apache
APACHE_USES= apache:run,2.2+
LIGHTTPD_RUN_DEPENDS= lighttpd:www/lighttpd
NGINX_RUN_DEPENDS= nginx:www/nginx
PHPMOD_USES= php:mod
PHPMOD_USES_OFF= php:cgi
WRITEABLE= conf.php.sample log/access.log cache
.include <bsd.port.options.mk>
.if ${PORT_OPTIONS:MPHPMOD}
USES+= php:mod
.else
USES+= php:cgi
.endif
# Set files to ignore.
.for file in ${PORTEXAMPLES} ${PORTDOCS} LICENSE.txt
WWW_IGNORE+= -not -name ${file}
@ -62,17 +67,20 @@ do-install:
.for ent in ${WRITEABLE}
@${CHMOD} u+w ${STAGEDIR}${WWWDIR}/${ent}
.endfor
@${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
.for ex in ${PORTEXAMPLES}
@${INSTALL_DATA} ${WRKSRC}/${ex} ${STAGEDIR}${EXAMPLESDIR}
.endfor
@${MKDIR} ${STAGEDIR}${DOCSDIR}
.for doc in ${PORTDOCS}
@${INSTALL_DATA} ${WRKSRC}/${doc} ${STAGEDIR}${DOCSDIR}
.endfor
.if defined(MAINTAINER_MODE)
@${MAKE} -C ${.CURDIR} rm-install
.endif
do-install-EXAMPLES-on:
@${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
.for ex in ${PORTEXAMPLES}
${INSTALL_DATA} ${WRKSRC}/${ex} ${STAGEDIR}${EXAMPLESDIR}
.endfor
do-install-DOCS-on:
@${MKDIR} ${STAGEDIR}${DOCSDIR}
.for doc in ${PORTDOCS}
${INSTALL_DATA} ${WRKSRC}/${doc} ${STAGEDIR}${DOCSDIR}
.endfor
.include <bsd.port.mk>

View file

@ -1,6 +1,6 @@
PORTNAME= recoll
PORTVERSION= 1.31.4
PORTREVISION= 5
PORTREVISION= 6
CATEGORIES= deskutils
MASTER_SITES= https://www.lesbonscomptes.com/recoll/

View file

@ -1,6 +1,5 @@
PORTNAME= tumbler
PORTVERSION= 4.16.0
PORTREVISION= 19
PORTVERSION= 4.16.1
CATEGORIES= deskutils xfce
MASTER_SITES= XFCE
PKGNAMEPREFIX= xfce4-

View file

@ -1,3 +1,3 @@
TIMESTAMP = 1608683055
SHA256 (xfce4/tumbler-4.16.0.tar.bz2) = 9b0b7fed0c64041733d490b1b307297984629d0dd85369749617a8766850af66
SIZE (xfce4/tumbler-4.16.0.tar.bz2) = 607640
TIMESTAMP = 1660252887
SHA256 (xfce4/tumbler-4.16.1.tar.bz2) = 852bbffa13f35b48ce92e243a03a118e32037c03e68297335c2bc4578e39273e
SIZE (xfce4/tumbler-4.16.1.tar.bz2) = 593122

View file

@ -1428,6 +1428,7 @@
SUBDIR += llvm12
SUBDIR += llvm13
SUBDIR += llvm14
SUBDIR += llvm15
SUBDIR += llvm70
SUBDIR += llvm80
SUBDIR += llvm90
@ -4111,6 +4112,7 @@
SUBDIR += py-anyconfig
SUBDIR += py-anyio
SUBDIR += py-anyjson
SUBDIR += py-anytree
SUBDIR += py-apache_conf_parser
SUBDIR += py-apipkg
SUBDIR += py-apispec
@ -4128,8 +4130,10 @@
SUBDIR += py-asciimatics
SUBDIR += py-asn1crypto
SUBDIR += py-aspy.yaml
SUBDIR += py-asteval
SUBDIR += py-astor
SUBDIR += py-astroid
SUBDIR += py-astroid253
SUBDIR += py-asttokens
SUBDIR += py-astunparse
SUBDIR += py-async_generator
@ -4716,6 +4720,7 @@
SUBDIR += py-libversion
SUBDIR += py-libvirt
SUBDIR += py-libzfs
SUBDIR += py-line-profiler
SUBDIR += py-linear-tsv
SUBDIR += py-linecache2
SUBDIR += py-lineedit
@ -4734,6 +4739,7 @@
SUBDIR += py-logutils
SUBDIR += py-logzero
SUBDIR += py-louie
SUBDIR += py-lru-dict
SUBDIR += py-lunardate
SUBDIR += py-lxml
SUBDIR += py-lxml-stubs
@ -4805,6 +4811,7 @@
SUBDIR += py-nose-cov
SUBDIR += py-nose-timer
SUBDIR += py-nose2
SUBDIR += py-noseofyeti
SUBDIR += py-nosexcover
SUBDIR += py-notebook-shim
SUBDIR += py-notify2
@ -5390,6 +5397,7 @@
SUBDIR += py-tzlocal
SUBDIR += py-u-msgpack-python
SUBDIR += py-ua_parser
SUBDIR += py-ubelt
SUBDIR += py-uhid-freebsd
SUBDIR += py-ujson
SUBDIR += py-unearth
@ -5426,6 +5434,7 @@
SUBDIR += py-visitor
SUBDIR += py-vistir
SUBDIR += py-voluptuous
SUBDIR += py-voluptuous-serialize
SUBDIR += py-vsts
SUBDIR += py-vsts-cd-manager
SUBDIR += py-vulture
@ -5457,6 +5466,7 @@
SUBDIR += py-xcaplib
SUBDIR += py-xdg
SUBDIR += py-xdis
SUBDIR += py-xdoctest
SUBDIR += py-xerox
SUBDIR += py-xmltodict
SUBDIR += py-xstatic

View file

@ -1,5 +1,5 @@
PORTNAME= caret
DISTVERSION= 6.0-92
DISTVERSION= 6.0-93
CATEGORIES= devel
DISTNAME= ${PORTNAME}_${DISTVERSION}

View file

@ -1,3 +1,3 @@
TIMESTAMP = 1650511239
SHA256 (caret_6.0-92.tar.gz) = 1d814a2a921a23ad8b9a7da6f788e6abc06f5668b3918bd440d4355bc4b81511
SIZE (caret_6.0-92.tar.gz) = 2332731
TIMESTAMP = 1660267284
SHA256 (caret_6.0-93.tar.gz) = 4c156b88879d390436a54779ea19ffbae3f476533d83caaf30400d76130c4a07
SIZE (caret_6.0-93.tar.gz) = 2273775

View file

@ -10,7 +10,8 @@ LICENSE_FILE= ${WRKSRC}/COPYING
USES= autoreconf cmake libtool pathfix pkgconfig
USE_GITLAB= yes
GL_ACCOUNT= 5u623l20
GL_SITE= https://gitlab.linphone.org/BC
GL_ACCOUNT= public
GL_COMMIT= e3557aed8ba22e04047a9e4371a331b863081fc8
USE_LDCONFIG= yes

View file

@ -1,3 +1,3 @@
TIMESTAMP = 1655302979
SHA256 (5u623l20-bcunit-e3557aed8ba22e04047a9e4371a331b863081fc8_GL0.tar.gz) = c78b14f9a3104ce32ef7a7c5fe234ce845ab73e8293dc3139defdad13eeb429c
SIZE (5u623l20-bcunit-e3557aed8ba22e04047a9e4371a331b863081fc8_GL0.tar.gz) = 378890
TIMESTAMP = 1659949027
SHA256 (public-bcunit-e3557aed8ba22e04047a9e4371a331b863081fc8_GL0.tar.gz) = c78b14f9a3104ce32ef7a7c5fe234ce845ab73e8293dc3139defdad13eeb429c
SIZE (public-bcunit-e3557aed8ba22e04047a9e4371a331b863081fc8_GL0.tar.gz) = 378890

View file

@ -9,24 +9,21 @@ COMMENT= Microbenchmark support library
LICENSE= APACHE20
LICENSE_FILE= ${WRKSRC}/LICENSE
USES= cmake compiler:c++11-lang
USES= cmake:testing compiler:c++11-lang
USE_LDCONFIG= yes
USE_GITHUB= yes
GH_ACCOUNT= google
GH_TUPLE= google:googletest:release-1.12.1:googletest # requires googletest sources for some reason, see https://github.com/google/benchmark/issues/979
CMAKE_ON= BUILD_SHARED_LIBS
CMAKE_OFF= BENCHMARK_ENABLE_TESTING
CMAKE_TESTING_ON= BENCHMARK_ENABLE_TESTING # BENCHMARK_DOWNLOAD_DEPENDENCIES
CMAKE_TESTING_ARGS= -DGOOGLETEST_PATH=${WRKSRC_googletest}
CXXFLAGS+= ${CXXFLAGS_${CHOSEN_COMPILER_TYPE}}
CXXFLAGS_gcc= -Wno-stringop-truncation
BINARY_ALIAS= git=false
do-test: # Broken: https://github.com/google/benchmark/issues/979
@cd ${BUILD_WRKSRC} && \
${SETENV} ${CONFIGURE_ENV} ${CMAKE_BIN} ${CMAKE_ARGS} -DBENCHMARK_ENABLE_TESTING=ON -DGOOGLETEST_PATH=${LOCALBASE} ${CMAKE_SOURCE_PATH} && \
${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_ARGS} ${ALL_TARGET} && \
${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_ARGS} test
.include <bsd.port.mk>

View file

@ -1,3 +1,5 @@
TIMESTAMP = 1659545523
TIMESTAMP = 1660073282
SHA256 (google-benchmark-v1.7.0_GH0.tar.gz) = 3aff99169fa8bdee356eaa1f691e835a6e57b1efeadb8a0f9f228531158246ac
SIZE (google-benchmark-v1.7.0_GH0.tar.gz) = 194165
SHA256 (google-googletest-release-1.12.1_GH0.tar.gz) = 81964fe578e9bd7c94dfdb09c8e4d6e6759e19967e397dbea48d1c10e45d0df2
SIZE (google-googletest-release-1.12.1_GH0.tar.gz) = 854944

View file

@ -1,6 +1,6 @@
PORTNAME= efl
DISTVERSION= 1.26.2
PORTREVISION= 6
PORTREVISION= 7
CATEGORIES= devel enlightenment
MASTER_SITES= http://download.enlightenment.org/rel/libs/${PORTNAME}/
DIST_SUBDIR= enlightenment

View file

@ -1,6 +1,6 @@
PORTNAME= fatal
DISTVERSIONPREFIX= v
DISTVERSION= 2022.08.01.00
DISTVERSION= 2022.08.08.00
CATEGORIES= devel
MAINTAINER= yuri@FreeBSD.org

View file

@ -1,3 +1,3 @@
TIMESTAMP = 1659373506
SHA256 (facebook-fatal-v2022.08.01.00_GH0.tar.gz) = fd48c28a3b4db6a881a352b622be3622c702ec79e49e1b043f0ddc868408d9bb
SIZE (facebook-fatal-v2022.08.01.00_GH0.tar.gz) = 659451
TIMESTAMP = 1659992924
SHA256 (facebook-fatal-v2022.08.08.00_GH0.tar.gz) = 6a7ca15ff63bb771ae78126446a8ccafdaa972dc2a2d72bb66d43bfb675c9b61
SIZE (facebook-fatal-v2022.08.08.00_GH0.tar.gz) = 659387

View file

@ -1,6 +1,6 @@
PORTNAME= fbthrift
DISTVERSIONPREFIX= v
DISTVERSION= 2022.08.01.00
DISTVERSION= 2022.08.08.00
CATEGORIES= devel
MAINTAINER= yuri@FreeBSD.org

View file

@ -1,3 +1,3 @@
TIMESTAMP = 1659373497
SHA256 (facebook-fbthrift-v2022.08.01.00_GH0.tar.gz) = cc92038f464f74969f74eeaf6b8144be6a83b5fce2ec3a355f5d28af70bc402a
SIZE (facebook-fbthrift-v2022.08.01.00_GH0.tar.gz) = 8420698
TIMESTAMP = 1659992915
SHA256 (facebook-fbthrift-v2022.08.08.00_GH0.tar.gz) = 6b5165b4f5115f3537b9b5843f2dec21cd4836e6d69d8562dcdfae13ca8ff322
SIZE (facebook-fbthrift-v2022.08.08.00_GH0.tar.gz) = 8500146

View file

@ -301,8 +301,10 @@ include/thrift/lib/cpp2/gen/service_tcc.h
include/thrift/lib/cpp2/hash/DeterministicHash.h
include/thrift/lib/cpp2/op/Clear.h
include/thrift/lib/cpp2/op/Compare.h
include/thrift/lib/cpp2/op/Copy.h
include/thrift/lib/cpp2/op/Create.h
include/thrift/lib/cpp2/op/DeterministicAccumulator.h
include/thrift/lib/cpp2/op/Ensure.h
include/thrift/lib/cpp2/op/Get.h
include/thrift/lib/cpp2/op/Hash.h
include/thrift/lib/cpp2/op/Patch.h
@ -316,8 +318,10 @@ include/thrift/lib/cpp2/op/detail/BaseOp.h
include/thrift/lib/cpp2/op/detail/BasePatch.h
include/thrift/lib/cpp2/op/detail/Clear.h
include/thrift/lib/cpp2/op/detail/Compare.h
include/thrift/lib/cpp2/op/detail/Copy.h
include/thrift/lib/cpp2/op/detail/ContainerPatch.h
include/thrift/lib/cpp2/op/detail/Create.h
include/thrift/lib/cpp2/op/detail/Ensure.h
include/thrift/lib/cpp2/op/detail/Hash.h
include/thrift/lib/cpp2/op/detail/HashProtocol.h
include/thrift/lib/cpp2/op/detail/Patch.h
@ -511,11 +515,12 @@ include/thrift/lib/cpp2/type/Any.h
include/thrift/lib/cpp2/type/AnyRef.h
include/thrift/lib/cpp2/type/AnyValue.h
include/thrift/lib/cpp2/type/BaseType.h
include/thrift/lib/cpp2/type/Field.h
include/thrift/lib/cpp2/type/Id.h
include/thrift/lib/cpp2/type/Name.h
include/thrift/lib/cpp2/type/NativeType.h
include/thrift/lib/cpp2/type/Protocol.h
include/thrift/lib/cpp2/type/Tag.h
include/thrift/lib/cpp2/type/TagUtil.h
include/thrift/lib/cpp2/type/Testing.h
include/thrift/lib/cpp2/type/ThriftType.h
include/thrift/lib/cpp2/type/Traits.h
@ -525,7 +530,6 @@ include/thrift/lib/cpp2/type/UniversalHashAlgorithm.h
include/thrift/lib/cpp2/type/UniversalName.h
include/thrift/lib/cpp2/type/detail/AnyData.h
include/thrift/lib/cpp2/type/detail/AnyType.h
include/thrift/lib/cpp2/type/detail/Field.h
include/thrift/lib/cpp2/type/detail/Name.h
include/thrift/lib/cpp2/type/detail/NativeType.h
include/thrift/lib/cpp2/type/detail/Ptr.h

View file

@ -1,6 +1,6 @@
PORTNAME= folly
DISTVERSIONPREFIX= v
DISTVERSION= 2022.08.01.00
DISTVERSION= 2022.08.08.00
CATEGORIES= devel
MAINTAINER= yuri@FreeBSD.org

View file

@ -1,3 +1,3 @@
TIMESTAMP = 1659373481
SHA256 (facebook-folly-v2022.08.01.00_GH0.tar.gz) = 695cd2cee09579a3180f066e914bf0817892a2a935526db6188378f2c86c423c
SIZE (facebook-folly-v2022.08.01.00_GH0.tar.gz) = 3683481
TIMESTAMP = 1659992898
SHA256 (facebook-folly-v2022.08.08.00_GH0.tar.gz) = ad27468c3c8dddacd592baa688b5d9b0a1de30c8f57e959fb88ba68a231f853d
SIZE (facebook-folly-v2022.08.08.00_GH0.tar.gz) = 3685894

View file

@ -0,0 +1,11 @@
--- src/Makefile.in.orig 2022-07-30 03:38:42 UTC
+++ src/Makefile.in
@@ -352,7 +352,7 @@ EXTRA_DIST = @PACKAGE@.gperf @PACKAGE@-cc.gperf wildex
BUILT_SOURCES = gperf.c gperf-cc.c
AM_CPPFLAGS = -I. -I$(srcdir) -I$(top_srcdir)/intl
MAINTAINERCLEANFILES = Makefile.in libgettext.h
-AM_CFLAGS = -Wall -W -Werror -Wredundant-decls -Wshadow \
+AM_CFLAGS = -Wall -W -Wredundant-decls -Wshadow \
-Wstrict-prototypes -Wmissing-prototypes -Wnested-externs \
-Wmissing-declarations -Wcomment -Wbad-function-cast \
-Wcast-align $(am__append_1)

View file

@ -1,7 +1,6 @@
PORTNAME= git-town
DISTVERSIONPREFIX= v
DISTVERSION= 7.7.0
PORTREVISION= 4
DISTVERSION= 7.8.0
CATEGORIES= devel
MAINTAINER= yuri@FreeBSD.org

View file

@ -1,5 +1,5 @@
TIMESTAMP = 1642900531
SHA256 (go/devel_git-town/git-town-v7.7.0/v7.7.0.mod) = 08e5d683211e3058490fe2bb5c871df9c469ac42b6ba8b306f0909290cee7c41
SIZE (go/devel_git-town/git-town-v7.7.0/v7.7.0.mod) = 680
SHA256 (go/devel_git-town/git-town-v7.7.0/v7.7.0.zip) = dcd9a489a4e8c23011bbefb17393bdc1f2bb34f1b501b82a062ef1a580c237cd
SIZE (go/devel_git-town/git-town-v7.7.0/v7.7.0.zip) = 513048
TIMESTAMP = 1659993877
SHA256 (go/devel_git-town/git-town-v7.8.0/v7.8.0.mod) = b153ec03a52a6ab9b4fde500cdb95d2d976509641fc38c70b3eac2d38f59325f
SIZE (go/devel_git-town/git-town-v7.8.0/v7.8.0.mod) = 716
SHA256 (go/devel_git-town/git-town-v7.8.0/v7.8.0.zip) = 201c7b9eee3dba69e20888f3cba37cedfc79ede953a6c7312193fa78756e1a45
SIZE (go/devel_git-town/git-town-v7.8.0/v7.8.0.zip) = 472522

View file

@ -1,7 +1,6 @@
PORTNAME= gitleaks
DISTVERSIONPREFIX= v
DISTVERSION= 8.9.0
PORTREVISION= 1
DISTVERSION= 8.10.0
CATEGORIES= devel
MAINTAINER= yuri@FreeBSD.org

View file

@ -1,5 +1,5 @@
TIMESTAMP = 1659162268
SHA256 (go/devel_gitleaks/gitleaks-v8.9.0/v8.9.0.mod) = 1b5404745bc6b401322116638ec8b2b9bf6f9fd835613abb9c0769ecda4596b1
SIZE (go/devel_gitleaks/gitleaks-v8.9.0/v8.9.0.mod) = 1398
SHA256 (go/devel_gitleaks/gitleaks-v8.9.0/v8.9.0.zip) = ef6c6ade085c7b7e25691806d0c35bf36b26e9825c0b12826053150da831bf92
SIZE (go/devel_gitleaks/gitleaks-v8.9.0/v8.9.0.zip) = 178826
TIMESTAMP = 1659993971
SHA256 (go/devel_gitleaks/gitleaks-v8.10.0/v8.10.0.mod) = 1b5404745bc6b401322116638ec8b2b9bf6f9fd835613abb9c0769ecda4596b1
SIZE (go/devel_gitleaks/gitleaks-v8.10.0/v8.10.0.mod) = 1398
SHA256 (go/devel_gitleaks/gitleaks-v8.10.0/v8.10.0.zip) = 4b3264e11776cb80956da760f7df0e31d8c38ba647075970e9c2aab69a7cf041
SIZE (go/devel_gitleaks/gitleaks-v8.10.0/v8.10.0.zip) = 196858

View file

@ -1,7 +1,6 @@
PORTNAME= gopls
DISTVERSIONPREFIX= v
DISTVERSION= 0.9.1
PORTREVISION= 1
DISTVERSION= 0.9.2
CATEGORIES= devel
MAINTAINER= fuz@fuz.su

View file

@ -1,5 +1,5 @@
TIMESTAMP = 1657878417
SHA256 (go/devel_gopls/gopls-v0.9.1/v0.9.1.mod) = b66cfb1650d5a45cdc0fab3d3ad5219e9ca111d505247eb9d4ed8141be5f1fb9
SIZE (go/devel_gopls/gopls-v0.9.1/v0.9.1.mod) = 835
SHA256 (go/devel_gopls/gopls-v0.9.1/v0.9.1.zip) = b2ab327c5090c4b11f893b445b9cd2b7c270a1abceea663516d39308181385e7
SIZE (go/devel_gopls/gopls-v0.9.1/v0.9.1.zip) = 190827
TIMESTAMP = 1660180555
SHA256 (go/devel_gopls/gopls-v0.9.2/v0.9.2.mod) = cd005229ce63409a5a0a185e96eebee1b278dae2030ef95411e8847686795d5b
SIZE (go/devel_gopls/gopls-v0.9.2/v0.9.2.mod) = 766
SHA256 (go/devel_gopls/gopls-v0.9.2/v0.9.2.zip) = 3676ea71d30397a41343ef639a282a93ac12736538f81fd5485b0ad1d0830957
SIZE (go/devel_gopls/gopls-v0.9.2/v0.9.2.zip) = 208298

View file

@ -51,7 +51,7 @@ USE_CABAL= Diff-0.4.1 \
vector-0.12.3.1_2 \
witherable-0.4.2_2
EXECUTABLES= shellcheck
CABAL_EXECUTABLES= shellcheck
OPTIONS_DEFINE= MANPAGES
OPTIONS_DEFAULT= MANPAGES

View file

@ -10,7 +10,7 @@ LICENSE= BSD3CLAUSE
USES= cabal
CABAL_WRAPPER_SCRIPTS= ${EXECUTABLES}
CABAL_WRAPPER_SCRIPTS= ${CABAL_EXECUTABLES}
OPTIONS_DEFINE= EXAMPLES

View file

@ -38,7 +38,7 @@ USE_CABAL= async-2.2.4 \
th-compat-0.1.3 \
zlib-0.6.2.3_1
EXECUTABLES= cabal
CABAL_EXECUTABLES= cabal
SKIP_CABAL_EXTRACT= yes
post-extract:

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