*/*: sync with upstream

Taken from: FreeBSD
This commit is contained in:
Franco Fichtner 2023-11-27 09:31:55 +01:00
parent e052a87df4
commit 9e1a2d8725
363 changed files with 7146 additions and 11269 deletions

View File

@ -36,6 +36,7 @@
SUBDIR += asterisk-espeak
SUBDIR += asterisk-flite
SUBDIR += asunder
SUBDIR += atracdenc
SUBDIR += atunes
SUBDIR += aubio
SUBDIR += audacity

29
audio/atracdenc/Makefile Normal file
View File

@ -0,0 +1,29 @@
PORTNAME= atracdenc
DISTVERSION= 0.1.1
CATEGORIES= audio
MASTER_SITES= https://github.com/dcherednik/${PORTNAME}/releases/download/${DISTVERSION}/ \
https://code.mastervirt.ru/st/${PORTNAME}/
MAINTAINER= pkgsup@mastervirt.ru
COMMENT= ATRAC1 decoder/encoder, ATRAC3 encoder
WWW= https://github.com/dcherednik/atracdenc/
LICENSE= LGPL21+
LICENSE_FILE= ${WRKSRC}/LICENSE
LIB_DEPENDS= libsndfile.so:audio/libsndfile
TEST_DEPENDS= googletest>0:devel/googletest
USES= cmake:testing
PLIST_FILES= bin/atracdenc \
share/man/man1/atracdenc.1.gz
CMAKE_TESTING_OFF= CMAKE_DISABLE_FIND_PACKAGE_GTest
CMAKE_ON= CMAKE_DISABLE_FIND_PACKAGE_GTest
post-install:
${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/atracdenc
.include <bsd.port.mk>

3
audio/atracdenc/distinfo Normal file
View File

@ -0,0 +1,3 @@
TIMESTAMP = 1700518590
SHA256 (atracdenc-0.1.1.tar.gz) = 60e5677afac4a20776516f7a5e63bac4dcb4bfde9f8e642ebf82ad3b9a8d8ef2
SIZE (atracdenc-0.1.1.tar.gz) = 89277

View File

@ -0,0 +1,2 @@
Audio encoder that supports ATRAC1 and ATRAC3 formats, can decode ATRAC1 and
following containers: AEA, OMA, RIFF, RealMedia.

View File

@ -8,9 +8,6 @@ MAINTAINER= xxjack12xx@gmail.com
COMMENT= GUI editor for digital audio waveforms
WWW= https://www.audacityteam.org/
BROKEN_FreeBSD_13= compiler bug
BROKEN_FreeBSD_12= compiler bug
LICENSE= GPLv2+
LICENSE_FILE= ${WRKSRC}/LICENSE.txt
@ -153,6 +150,13 @@ CMAKE_ARGS+= -DHAVE_MMX:BOOL=OFF \
-DHAVE_SSE2:BOOL=OFF
.endif
.if ${OPSYS} == FreeBSD && ${OSVERSION} < 1302508
# Workarounds for buggy libc++ std::conjunction
EXTRA_PATCHES= ${PATCHDIR}/extra-libraries_lib-utility_TypeList.cpp \
${PATCHDIR}/extra-libraries_lib-utility_TypeList.h \
${PATCHDIR}/extra-libraries_lib-utility_TypeSwitch.h
.endif
post-install:
@${RM} ${STAGEDIR}${DOCSDIR}/LICENSE.txt
#delete empty directories: https://github.com/audacity/audacity/issues/808

View File

@ -0,0 +1,23 @@
--- libraries/lib-utility/TypeList.cpp.orig 2023-11-16 11:58:21 UTC
+++ libraries/lib-utility/TypeList.cpp
@@ -118,16 +118,16 @@ static_assert(Is_v<NullOrStartsWithInt, Nil>);
static_assert(Is_v<NullOrStartsWithInt, Example>);
static_assert(Every_v<Fn<is_arithmetic>, Example>);
-static_assert(is_base_of_v<true_type, Every<Fn<is_arithmetic>, Example>>);
+static_assert(TypeList::is_base_of_v<true_type, Every<Fn<is_arithmetic>, Example>>);
static_assert(!Every_v<Fn<is_integral>, Example>);
-static_assert(is_base_of_v<is_integral<double>,
+static_assert(TypeList::is_base_of_v<is_integral<double>,
Every<Fn<is_integral>, Example>>);
static_assert(Some_v<Fn<is_integral>, Example>);
-static_assert(is_base_of_v<is_integral<int>,
+static_assert(TypeList::is_base_of_v<is_integral<int>,
Some<Fn<is_integral>, Example>>);
static_assert(!Some_v<Fn<is_void>, Example>);
-static_assert(is_base_of_v<false_type, Some<Fn<is_void>, Example>>);
+static_assert(TypeList::is_base_of_v<false_type, Some<Fn<is_void>, Example>>);
static_assert(NotEvery_v<Fn<is_floating_point>, Example>);
static_assert(NotAny_v<Fn<is_void>, Example>);

View File

@ -0,0 +1,39 @@
--- libraries/lib-utility/TypeList.h.orig 2023-11-16 11:58:21 UTC
+++ libraries/lib-utility/TypeList.h
@@ -54,6 +54,18 @@ namespace TypeList {
can make compound predicates out of simpler ones.
*/
+template <class...>
+struct conjunction : std::true_type {};
+
+template <class _Arg>
+struct conjunction<_Arg> : _Arg {};
+
+template <class _Arg, class... _Args>
+struct conjunction<_Arg, _Args...> : std::conditional_t<!bool(_Arg::value), _Arg, conjunction<_Args...>> {};
+
+template <class _Bp, class _Dp>
+inline constexpr bool is_base_of_v = __is_base_of(_Bp, _Dp);
+
//! standard in C++20; add a level of indirection to a type
template<typename T> struct type_identity { using type = T; };
@@ -429,7 +441,7 @@ struct And<Predicate, Predicates...> { (private)
static constexpr bool value = Is_v<And<Predicates...>, T>;
};
public:
- template<typename T> using typemap = typename std::conjunction<
+ template<typename T> using typemap = typename TypeList::conjunction<
typename Predicate::template typemap<T>, Rest<T>
>;
};
@@ -437,7 +449,7 @@ struct And<Predicate, Predicates...> { (private)
//! Derived from the Predicate, applied to the first of the types (often boolean
//! constant types), for which the value is false; or std::true_type
template<typename Predicate, typename TypeList> struct Every
- : Apply_t<std::conjunction, Map_t<Predicate, TypeList>> {};
+ : Apply_t<conjunction, Map_t<Predicate, TypeList>> {};
//! The constant value in the corresponding type
template<typename Predicate, typename TypeList> constexpr auto Every_v =
Every<Predicate, TypeList>::value;

View File

@ -0,0 +1,20 @@
--- libraries/lib-utility/TypeSwitch.h.orig 2023-11-16 11:58:21 UTC
+++ libraries/lib-utility/TypeSwitch.h
@@ -127,7 +127,7 @@ struct Executor {
// Case 1: Compatible, and invocable on the next function, giving
// another function, that accepts BaseClass:
struct Case1_;
- using Case1 = std::conjunction<Compatible, curried, Case1_>;
+ using Case1 = TypeList::conjunction<Compatible, curried, Case1_>;
struct Case1_ {
static constexpr bool value = std::is_invocable_v<
std::invoke_result_t<F, Dummy &&>, BaseClass&, Args&&...>;
@@ -135,7 +135,7 @@ struct Executor {
};
// Case 2: Invocable directly on the object
- struct Case2 : std::conjunction<
+ struct Case2 : TypeList::conjunction<
Compatible, std::negation<curried>,
std::is_invocable<F, BaseClass&, Args&&...>
> {

View File

@ -1,6 +1,6 @@
PORTNAME= owntone
DISTVERSION= 28.5
PORTREVISION= 5
DISTVERSION= 28.8
PORTREVISION= 0
CATEGORIES= audio
MASTER_SITES= https://github.com/owntone/owntone-server/releases/download/${DISTVERSION}/

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1674999426
SHA256 (owntone-28.5.tar.xz) = c9ee0152dc488f782a25a68e72d24c109882bef3dd2914315fe499c8415fd898
SIZE (owntone-28.5.tar.xz) = 1057644
TIMESTAMP = 1700938947
SHA256 (owntone-28.8.tar.xz) = ebaee52ae617f08c41859522ba0a839d1865dcac7d6c0eb9e3fee81caf8fd47c
SIZE (owntone-28.8.tar.xz) = 1058048

View File

@ -1,6 +1,6 @@
PORTNAME= vsearch
DISTVERSIONPREFIX= v
DISTVERSION= 2.25.0
DISTVERSION= 2.26.1
CATEGORIES= biology
MAINTAINER= jwb@FreeBSD.org

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1699797850
SHA256 (torognes-vsearch-v2.25.0_GH0.tar.gz) = b7e25638924e56591d7c6ac3a959795000439937f5b566be7f06457bb31f91a9
SIZE (torognes-vsearch-v2.25.0_GH0.tar.gz) = 267819
TIMESTAMP = 1700966009
SHA256 (torognes-vsearch-v2.26.1_GH0.tar.gz) = dc8513376405fc01ca3742624177113752870b05bb682fe1bf62d190d0a696bd
SIZE (torognes-vsearch-v2.26.1_GH0.tar.gz) = 268305

View File

@ -1,7 +1,9 @@
PORTNAME= gtkwave
DISTVERSION= 3.3.117
PORTREVISION= 1
CATEGORIES= cad
MASTER_SITES= http://gtkwave.sourceforge.net/
DISTNAME= ${PORTNAME}-gtk3-${DISTVERSION}
MAINTAINER= eduardo@FreeBSD.org
COMMENT= Electronic Waveform Viewer
@ -10,16 +12,15 @@ WWW= https://gtkwave.sourceforge.net/
LICENSE= GPLv2
LICENSE_FILE= ${WRKSRC}/COPYING
LIB_DEPENDS= libfontconfig.so:x11-fonts/fontconfig \
libfreetype.so:print/freetype2 \
libharfbuzz.so:print/harfbuzz
LIB_DEPENDS= libharfbuzz.so:print/harfbuzz
USES= compiler:c++11-lang desktop-file-utils gettext gmake gnome \
gperf pkgconfig shared-mime-info
USE_GNOME= cairo gdkpixbuf2 gtk20
USE_GNOME= cairo gdkpixbuf2 gtk30
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --disable-mime-update \
--enable-gtk3 \
--without-gconf
PORTDOCS= gtkwave.odt

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1692191386
SHA256 (gtkwave-3.3.117.tar.gz) = 55520fc308244c5dc99d5a3f42f5e782eb8e6a9e81cece5c84ea3f11875bff13
SIZE (gtkwave-3.3.117.tar.gz) = 3506108
TIMESTAMP = 1700906356
SHA256 (gtkwave-gtk3-3.3.117.tar.gz) = 3cf1537586a911cbb0601af8fa18cf6da708c8a14a71f69ce3cb9118e8571db9
SIZE (gtkwave-gtk3-3.3.117.tar.gz) = 3332677

View File

@ -1,11 +1,11 @@
--- Makefile.in.orig 2017-10-08 05:44:27 UTC
--- Makefile.in.orig 2023-08-13 22:32:40 UTC
+++ Makefile.in
@@ -340,7 +340,7 @@ target_alias = @target_alias@
@@ -345,7 +345,7 @@ top_srcdir = @top_srcdir@
top_build_prefix = @top_build_prefix@
top_builddir = @top_builddir@
top_srcdir = @top_srcdir@
-SUBDIRS = doc examples man src contrib share
+SUBDIRS = examples man src contrib share
EXTRA_DIST = ChangeLog COPYING INSTALL LICENSE.TXT README NEWS AUTHORS \
autogen.sh wave_locale.h tcl.m4
autogen.sh wave_locale.h tcl.m4 changes_from_gtk2.txt

View File

@ -1,6 +1,6 @@
--- configure.orig 2017-10-08 05:44:27 UTC
--- configure.orig 2023-08-13 22:32:40 UTC
+++ configure
@@ -10293,6 +10293,7 @@ OLD_LDFLAGS="${LDFLAGS}"
@@ -10820,6 +10820,7 @@ LDFLAGS="${LDFLAGS} ${TCLSPEC_LHS} ${TKLSPEC_LHS}"
TCLSPEC_LHS="${TCL_LIB_SPEC% *}"
TKLSPEC_LHS="${TK_LIB_SPEC% *}"
LDFLAGS="${LDFLAGS} ${TCLSPEC_LHS} ${TKLSPEC_LHS}"

View File

@ -1,6 +1,6 @@
--- examples/Makefile.in.orig 2018-03-05 23:07:23 UTC
--- examples/Makefile.in.orig 2023-08-13 22:32:41 UTC
+++ examples/Makefile.in
@@ -60,7 +60,7 @@ am__make_running_with_option = \
@@ -60,7 +60,7 @@ am__make_keepgoing = (target_option=k; $(am__make_runn
test $$has_opt = yes
am__make_dryrun = (target_option=n; $(am__make_running_with_option))
am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
@ -9,12 +9,12 @@
pkgincludedir = $(includedir)/@PACKAGE@
pkglibdir = $(libdir)/@PACKAGE@
pkglibexecdir = $(libexecdir)/@PACKAGE@
@@ -292,7 +292,7 @@ top_build_prefix = @top_build_prefix@
@@ -293,7 +293,7 @@ dist_examples_DATA = des.gtkw des.tcl des.v des.fst tr
top_builddir = @top_builddir@
top_srcdir = @top_srcdir@
dist_examples_DATA = des.gtkw des.tcl des.v des.fst transaction.fst transaction.gtkw transaction.c gtkwaverc sst_exclusion_example.rc
-examplesdir = $(pkgdatadir)/examples
+examplesdir = $(pkgdatadir)/examples/@PACKAGE@
+examplesdir = $(pkgdatadir)/examples/gtkwave
all: all-am
.SUFFIXES:

View File

@ -193,7 +193,6 @@
SUBDIR += svxlink
SUBDIR += syncterm
SUBDIR += tcpser
SUBDIR += telldus-core
SUBDIR += thebridge
SUBDIR += tilp2
SUBDIR += tio

View File

@ -1,56 +0,0 @@
PORTNAME= telldus-core
PORTVERSION= 2.1.2
PORTREVISION= 8
CATEGORIES= comms
MASTER_SITES= http://download.telldus.com/TellStick/Software/telldus-core/
MAINTAINER= ports@FreeBSD.org
COMMENT= Tellstick Telldus daemon + library
WWW= https://developer.telldus.com/wiki/TellStickInstallationSource
LICENSE= LGPL21
LICENSE_FILE= ${WRKSRC}/LICENSE
DEPRECATED= BROKEN for more than a year
EXPIRATION_DATE= 2023-11-30
BROKEN= does not build: 'tr1/memory' file not found
BUILD_DEPENDS= help2man:misc/help2man
LIB_DEPENDS= libftdi.so:devel/libftdi \
libconfuse.so:devel/libconfuse \
libargp.so:devel/argp-standalone
USES= cmake compiler:c++11-lang iconv:wchar_t
USE_LDCONFIG= yes
CMAKE_ARGS+= -DGENERATE_MAN=TRUE
# Note: these are internal defines and shall NOT contain ${STAGEDIR}
CMAKE_ARGS+= -DSYSCONF_INSTALL_DIR="${PREFIX}/etc"
# Using global /var, otherwise testport complains "Warning: port uses /usr/local/var instead of /var"
CMAKE_ARGS+= -DSTATE_INSTALL_DIR="/var/telldus"
CXXFLAGS+= ${CXXFLAGS_${CHOSEN_COMPILER_TYPE}}
CXXFLAGS_clang= -Wno-c++11-narrowing
MAKE_JOBS_UNSAFE= yes
USE_RC_SUBR= telldusd
SUB_FILES= pkg-message
.include <bsd.port.pre.mk>
post-patch:
# remove tr1 if using libc++
.if ${COMPILER_FEATURES:Mlibc++}
@${REINPLACE_CMD} -e 's|tr1::||' ${WRKSRC}/common/Event.h
.endif
post-install:
cd ${STAGEDIR}${PREFIX}/etc && \
${MV} tellstick.conf tellstick.conf.sample
# This file is actually empty but allows us to simply use @sample to
# make sure it stays between upgrades if modified
cd ${STAGEDIR}/var/telldus && \
${MV} telldus-core.conf telldus-core.conf.sample
.include <bsd.port.post.mk>

View File

@ -1,2 +0,0 @@
SHA256 (telldus-core-2.1.2.tar.gz) = a20f6c74814afc23312d2c93ebbb37fdea9deaaee05ae7b6a6275e11e4662014
SIZE (telldus-core-2.1.2.tar.gz) = 169850

View File

@ -1,60 +0,0 @@
--- CMakeLists.txt
+++ CMakeLists.txt
@@ -37,8 +37,18 @@ ENDIF (CMAKE_SYSTEM_NAME MATCHES "FreeBS
SET(BUILD_TDTOOL TRUE CACHE BOOL "Build tdtool")
SET(BUILD_TDADMIN ${TDADMIN_DEFAULT} CACHE BOOL "Build tdadmin")
+SET(GENERATE_DOXYGEN FALSE CACHE BOOL "Enable generation of doxygen")
SET(GENERATE_MAN FALSE CACHE BOOL "Enable generation of man-files")
+
+IF (CMAKE_SYSTEM_NAME MATCHES "FreeBSD")
+ SET(MAN_DIR_DEFAULT "man")
+ELSE()
+ SET(MAN_DIR_DEFAULT "share/man")
+ENDIF()
+SET(MAN_DIR ${MAN_DIR_DEFAULT} CACHE PATH "The directory where man pages are located (related to ${CMAKE_INSTALL_PREFIX})")
+
+
ADD_SUBDIRECTORY(common)
ADD_SUBDIRECTORY(service)
ADD_SUBDIRECTORY(client)
@@ -56,20 +66,23 @@ ENDIF(BUILD_TDADMIN)
ENABLE_TESTING()
ADD_SUBDIRECTORY(tests)
-FIND_PACKAGE(Doxygen)
-
-IF(DOXYGEN_FOUND)
- SET(DOXY_CONFIG ${CMAKE_CURRENT_BINARY_DIR}/Doxyfile)
+IF (GENERATE_DOXYGEN)
+ FIND_PACKAGE(Doxygen)
+ IF(DOXYGEN_FOUND)
+ SET(DOXY_CONFIG ${CMAKE_CURRENT_BINARY_DIR}/Doxyfile)
- CONFIGURE_FILE(
- "${CMAKE_CURRENT_SOURCE_DIR}/Doxyfile.in"
- ${DOXY_CONFIG} @ONLY
- )
+ CONFIGURE_FILE(
+ "${CMAKE_CURRENT_SOURCE_DIR}/Doxyfile.in"
+ ${DOXY_CONFIG} @ONLY
+ )
- ADD_CUSTOM_TARGET(docs
- ${DOXYGEN_EXECUTABLE} ${DOXY_CONFIG}
- DEPENDS ${DOXY_CONFIG}
- WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}
- COMMENT "Generating doxygen documentation" VERBATIM
- )
-ENDIF()
+ ADD_CUSTOM_TARGET(docs
+ ${DOXYGEN_EXECUTABLE} ${DOXY_CONFIG}
+ DEPENDS ${DOXY_CONFIG}
+ WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}
+ COMMENT "Generating doxygen documentation" VERBATIM
+ )
+ ELSE()
+ MESSAGE("Warn: doxygen not found, wont build")
+ ENDIF()
+ENDIF(GENERATE_DOXYGEN)

View File

@ -1,31 +0,0 @@
--- common/Socket_unix.cpp.orig 2014-03-31 10:30:09 UTC
+++ common/Socket_unix.cpp
@@ -12,13 +12,14 @@
#include <fcntl.h>
#include <math.h>
#include <string>
+#include <cstring>
#include "common/Socket.h"
#include "common/Mutex.h"
#include "common/Strings.h"
#define BUFSIZE 512
-#if defined(_MACOSX) && !defined(SOCK_CLOEXEC)
+#if (defined(_MACOSX) || defined (__FreeBSD__)) && !defined(SOCK_CLOEXEC)
#define SOCK_CLOEXEC 0
#endif
@@ -128,8 +129,10 @@ std::wstring Socket::read(int timeout) {
void Socket::stopReadWait() {
TelldusCore::MutexLocker locker(&d->mutex);
- d->connected = false;
- // TODO(stefan): somehow signal the socket here?
+ if(d->connected && d->socket != -1) {
+ d->connected = false;
+ shutdown(d->socket, SHUT_RDWR);
+ }
}
void Socket::write(const std::wstring &msg) {

View File

@ -1,26 +0,0 @@
--- common/Strings.cpp.orig 2014-03-31 10:30:09 UTC
+++ common/Strings.cpp
@@ -61,11 +61,7 @@ std::wstring TelldusCore::charToWstring(
char *outString = reinterpret_cast<char*>(new wchar_t[utf8Length+1]);
memset(outString, 0, sizeof(wchar_t)*(utf8Length+1));
-#ifdef _FREEBSD
- const char *inPointer = inString;
-#else
char *inPointer = inString;
-#endif
char *outPointer = outString;
iconv_t convDesc = iconv_open(WCHAR_T_ENCODING, "UTF-8");
@@ -206,11 +202,7 @@ std::string TelldusCore::wideToString(co
char *outString = new char[outbytesLeft];
memset(outString, 0, sizeof(*outString)*(outbytesLeft));
-#ifdef _FREEBSD
- const char *inPointer = inString;
-#else
char *inPointer = inString;
-#endif
char *outPointer = outString;
iconv_t convDesc = iconv_open("UTF-8", WCHAR_T_ENCODING);

View File

@ -1,12 +0,0 @@
--- common/Thread.h
+++ common/Thread.h
@@ -13,6 +13,9 @@
#define TELLDUS_CORE_COMMON_THREAD_H_
#include <string>
+#ifdef __FreeBSD__
+#include <pthread.h>
+#endif
#include "common/Mutex.h"
namespace TelldusCore {

View File

@ -1,11 +0,0 @@
--- service/CMakeLists.txt
+++ service/CMakeLists.txt
@@ -249,7 +249,7 @@ IF (UNIX)
WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}
COMMENT "Generating man file telldusd.1"
)
- INSTALL(FILES ${CMAKE_CURRENT_BINARY_DIR}/telldusd.1 DESTINATION share/man/man1)
+ INSTALL(FILES ${CMAKE_CURRENT_BINARY_DIR}/telldusd.1 DESTINATION ${MAN_DIR}/man1)
ENDIF (GENERATE_MAN)
ENDIF (UNIX)

View File

@ -1,16 +0,0 @@
--- service/ConnectionListener_unix.cpp.orig 2014-03-31 10:30:09 UTC
+++ service/ConnectionListener_unix.cpp
@@ -13,11 +13,12 @@
#include <fcntl.h>
#include <errno.h>
#include <string>
+#include <cstring>
#include "service/ConnectionListener.h"
#include "common/Socket.h"
-#if defined(_MACOSX) && !defined(SOCK_CLOEXEC)
+#if (defined(_MACOSX) || defined (__FreeBSD__)) && !defined(SOCK_CLOEXEC)
#define SOCK_CLOEXEC 0
#endif

View File

@ -1,13 +0,0 @@
--- service/EventUpdateManager.cpp
+++ service/EventUpdateManager.cpp
@@ -33,6 +33,10 @@
#include "service/ConnectionListener.h"
#include "service/Log.h"
+#ifdef __FreeBSD__
+extern char **environ;
+#endif
+
typedef std::list<TelldusCore::Socket *> SocketList;
typedef std::list<std::string> StringList;

View File

@ -1,11 +0,0 @@
--- service/ProtocolNexa.cpp.orig 2014-03-31 12:30:09.000000000 +0200
+++ service/ProtocolNexa.cpp 2016-04-04 13:32:35.124699000 +0200
@@ -56,7 +56,7 @@ std::string ProtocolNexa::getStringForMe
// We also return the last packet so Device::doAction() doesn't
// report TELLSTICK_ERROR_METHOD_NOT_SUPPORTED
- str.insert(0, 1, 2); // Repeat two times
+ str.insert(0, 1, '\x2'); // Repeat two times
str.insert(0, 1, 'R');
for (int i = 0; i < 5; ++i) {
controller->send(str);

View File

@ -1,12 +0,0 @@
--- service/Sensor.h
+++ service/Sensor.h
@@ -8,6 +8,9 @@
#define TELLDUS_CORE_SERVICE_SENSOR_H_
#include <string>
+#ifdef __FreeBSD__
+#include <ctime>
+#endif
#include "common/Mutex.h"
class Sensor : public TelldusCore::Mutex {

View File

@ -1,42 +0,0 @@
--- service/SettingsConfuse.cpp
+++ service/SettingsConfuse.cpp
@@ -17,6 +17,8 @@
class Settings::PrivateData {
public:
+ PrivateData()
+ : cfg(NULL), var_cfg(NULL) {}
cfg_t *cfg;
cfg_t *var_cfg;
};
@@ -42,10 +44,10 @@ Settings::Settings(void) {
*/
Settings::~Settings(void) {
TelldusCore::MutexLocker locker(&mutex);
- if (d->cfg > 0) {
+ if (d->cfg != 0) {
cfg_free(d->cfg);
}
- if (d->var_cfg > 0) {
+ if (d->var_cfg != 0) {
cfg_free(d->var_cfg);
}
delete d;
@@ -56,7 +58,7 @@ Settings::~Settings(void) {
*/
std::wstring Settings::getSetting(const std::wstring &strName) const {
TelldusCore::MutexLocker locker(&mutex);
- if (d->cfg > 0) {
+ if (d->cfg != 0) {
std::string setting(cfg_getstr(d->cfg, TelldusCore::wideToString(strName).c_str()));
return TelldusCore::charToWstring(setting.c_str());
}
@@ -68,7 +70,7 @@ std::wstring Settings::getSetting(const
*/
int Settings::getNumberOfNodes(Node node) const {
TelldusCore::MutexLocker locker(&mutex);
- if (d->cfg > 0) {
+ if (d->cfg != 0) {
if (node == Device) {
return cfg_size(d->cfg, "device");
} else if (node == Controller) {

View File

@ -1,9 +0,0 @@
--- service/tellstick.conf 2014-04-08 20:53:25.374751487 +0200
+++ service/tellstick.conf 2014-04-08 20:53:36.055838124 +0200
@@ -1,5 +1,5 @@
user = "nobody"
-group = "plugdev"
+group = "dialer"
ignoreControllerConfirmation = "false"
device {
id = 1

View File

@ -1,34 +0,0 @@
--- tdadmin/CMakeLists.txt
+++ tdadmin/CMakeLists.txt
@@ -52,13 +52,13 @@ IF (UNIX)
WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}
COMMENT "Generating man file tdadmin.1"
)
- INSTALL(FILES ${CMAKE_CURRENT_BINARY_DIR}/tdadmin.1 DESTINATION share/man/man1)
+ INSTALL(FILES ${CMAKE_CURRENT_BINARY_DIR}/tdadmin.1 DESTINATION ${MAN_DIR}/man1)
ENDIF (GENERATE_MAN)
ENDIF (UNIX)
INSTALL(TARGETS tdadmin RUNTIME DESTINATION sbin)
-IF (UNIX AND NOT APPLE)
+IF (UNIX AND NOT APPLE AND NOT CMAKE_SYSTEM_NAME MATCHES "FreeBSD")
SET(UDEV_RULES_DIR "/etc/udev/rules.d" CACHE PATH "The directory where udev store its rules" )
CONFIGURE_FILE(
${CMAKE_CURRENT_SOURCE_DIR}/05-tellstick.rules
@@ -76,4 +76,14 @@ IF (UNIX AND NOT APPLE)
INSTALL(PROGRAMS ${CMAKE_BINARY_DIR}/parsed/udev.sh
DESTINATION share/telldus-core/helpers/
)
-ENDIF (UNIX AND NOT APPLE)
+ELSEIF (CMAKE_SYSTEM_NAME MATCHES "FreeBSD")
+ SET(UDEV_RULES_DIR "/usr/local/etc/devd/" CACHE PATH "The directory where devd store its rules" )
+ CONFIGURE_FILE(
+ ${CMAKE_CURRENT_SOURCE_DIR}/freebsd-devd-tellstick.conf
+ ${CMAKE_BINARY_DIR}/parsed/tellstick.conf
+ @ONLY
+ )
+ INSTALL(FILES ${CMAKE_BINARY_DIR}/parsed/tellstick.conf
+ DESTINATION ${UDEV_RULES_DIR}
+ )
+ENDIF ()

View File

@ -1,39 +0,0 @@
--- tdadmin/freebsd-devd-tellstick.conf 2014-04-06 22:40:11.000000000 +0200
+++ tdadmin/freebsd-devd-tellstick.conf 2014-04-06 20:37:50.501751596 +0200
@@ -0,0 +1,36 @@
+# Original Tellstick
+notify 10 {
+ match "system" "USB";
+ match "subsystem" "DEVICE";
+ match "type" "ATTACH";
+ match "vendor" "0x1781";
+ match "product" "0x0c30";
+ action "chgrp dialer /dev/$cdev; chmod 660 /dev/$cdev; @CMAKE_INSTALL_PREFIX@/sbin/tdadmin --pid $product --vid $vendor --serial $sernum controller connect";
+};
+
+notify 10 {
+ match "system" "USB";
+ match "subsystem" "DEVICE";
+ match "type" "DETACH";
+ match "vendor" "0x1781";
+ match "product" "0x0c30";
+ action "@CMAKE_INSTALL_PREFIX@/sbin/tdadmin --pid $product --vid $vendor --serial $sernum controller disconnect";
+};
+# Tellstick Duo
+notify 10 {
+ match "system" "USB";
+ match "subsystem" "DEVICE";
+ match "type" "ATTACH";
+ match "vendor" "0x1781";
+ match "product" "0x0c31";
+ action "chgrp dialer /dev/$cdev; chmod 660 /dev/$cdev; @CMAKE_INSTALL_PREFIX@/sbin/tdadmin --pid $product --vid $vendor --serial $sernum controller connect";
+};
+
+notify 10 {
+ match "system" "USB";
+ match "subsystem" "DEVICE";
+ match "type" "DETACH";
+ match "vendor" "0x1781";
+ match "product" "0x0c31";
+ action "@CMAKE_INSTALL_PREFIX@/sbin/tdadmin --pid $product --vid $vendor --serial $sernum controller disconnect";
+};

View File

@ -1,11 +0,0 @@
--- tdtool/CMakeLists.txt
+++ tdtool/CMakeLists.txt
@@ -49,7 +49,7 @@ IF (UNIX)
WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}
COMMENT "Generating man file tdtool.1"
)
- INSTALL(FILES ${CMAKE_CURRENT_BINARY_DIR}/tdtool.1 DESTINATION share/man/man1)
+ INSTALL(FILES ${CMAKE_CURRENT_BINARY_DIR}/tdtool.1 DESTINATION ${MAN_DIR}/man1)
ENDIF (GENERATE_MAN)
ENDIF (UNIX)

View File

@ -1,24 +0,0 @@
[
{ type: install
message: <<EOM
======
NOTICE
======
A devd rule has been installed to automatically notify telldusd
when a new device has been detected.
Please restart devd to activate this:
/etc/rc.d/devd restart
Edit %%PREFIX%%/etc/tellstick.conf to configure some devices,
and enable telldusd in rc.conf.
Then start telldusd.
When starting for the first time, you might need to unplug/plugin the device
to allow devd to fix the permissions on the /dev/ugenX.X device.
EOM
}
]

View File

@ -1,28 +0,0 @@
#!/bin/sh
#
# PROVIDE: telldusd
# Add the following lines to /etc/rc.conf to enable telldusd:
# telldusd_enable (bool): Set to "NO" by default.
# Set it to "YES" to enable telldusd.
# telldusd_flags (str): Set to "" by default.
# telldusd_configfile (str): Set to "/usr/local/etc/tellstick.conf" by defult
#
. /etc/rc.subr
name="telldusd"
rcvar=telldusd_enable
command="/usr/local/sbin/telldusd"
pidfile="/var/run/telldusd.pid"
telldusd_enable=${telldusd_enable:-"NO"}
telldusd_flags=${telldusd_flags:-""}
telldusd_configfile=${telldusd_configfile:-"/usr/local/etc/tellstick.conf"}
load_rc_config "${name}"
required_files="${telldusd_configfile}"
run_rc_command "$1"

View File

@ -1,7 +0,0 @@
Allows access to Telldus Tellstick USB dongles for communicating with
433MHz devices in your home.
Provides "telldusd", the daemon which keeps track of your tellstick
devices. Through a UNIX socket, the sensors and devices can be used/
controlled from the command line tool "tdtool", or via the libtelldus-core
C client library.

View File

@ -1,20 +0,0 @@
@owner nobody
@group dialer
@mode 664
@dir /var/telldus
@sample /var/telldus/telldus-core.conf.sample
@owner
@sample etc/tellstick.conf.sample
@group
@mode
bin/tdtool
etc/devd/tellstick.conf
include/telldus-core.h
lib/libtelldus-core.so
lib/libtelldus-core.so.2
lib/libtelldus-core.so.2.1.2
man/man1/tdadmin.1.gz
man/man1/tdtool.1.gz
man/man1/telldusd.1.gz
sbin/tdadmin
sbin/telldusd

View File

@ -1,6 +1,6 @@
PORTNAME= babel
PORTVERSION= 2010.01.16
PORTREVISION= 80
PORTREVISION= 81
CATEGORIES= converters lisp
PKGNAMEPREFIX= cl-
DISTFILES= # none

View File

@ -1,5 +1,5 @@
PORTNAME= freetds
PORTVERSION= 1.4.132
PORTVERSION= 1.4.133
PORTEPOCH= 1
CATEGORIES= databases
MASTER_SITES= https://www.freetds.org/files/current/ \
@ -14,7 +14,7 @@ WWW= http://www.freetds.org/
LICENSE= LGPL20
USES= autoreconf compiler:c11 cpe gettext-tools gmake iconv \
libtool:keepla pkgconfig tar:bzip2
libtool:keepla localbase:ldflags pkgconfig tar:bzip2
USE_LDCONFIG= yes
GNU_CONFIGURE= yes
@ -26,9 +26,6 @@ CONFIGURE_ARGS= --docdir=${DOCSDIR} \
INSTALL_TARGET= install-strip
CPPFLAGS+= "-I${LOCALBASE}/include"
LDFLAGS+= -L${LOCALBASE}/lib
CONFLICTS_INSTALL= freetds # etc/freetds/freetds.conf.sample
PORTSCOUT= limit:^\d+\.\d+\.\d{3}$

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1700129103
SHA256 (freetds-dev.1.4.132.tar.bz2) = 30f1ddf24e1bcecb74302920566ba66df89eb716ccae124815fed1c7a107922d
SIZE (freetds-dev.1.4.132.tar.bz2) = 2406884
TIMESTAMP = 1701017214
SHA256 (freetds-dev.1.4.133.tar.bz2) = 3394bee3eb86698e7e14d4c51dbffb492e43102b0af2e988b27b44cd6f160136
SIZE (freetds-dev.1.4.133.tar.bz2) = 2407733

View File

@ -1,5 +1,5 @@
PORTNAME?= mariadb
PORTVERSION= 10.11.5
PORTVERSION= 10.11.6
PORTREVISION?= 0
CATEGORIES= databases
MASTER_SITES= https://mirror.nodesdirect.com/${SITESDIR}/ \
@ -215,6 +215,11 @@ SUB_LIST+= LEGACY_LIMITS="" MODERN_LIMITS="@comment "
GSSAPI_BASE_IGNORE= GSSAPI_BASE is not compatible with OpenSSL from ports. Use other GSSAPI options or OpenSSL from base system
.endif
.if ${SSL_DEFAULT:Mlibressl*}
CFLAGS+= -Wno-incompatible-function-pointer-types
.warning HELLO FROM MAKE LIBRESSL
.endif
.if ${ARCH} != amd64 && ${ARCH} != aarch64
PLIST_SUB+= WSREP="@comment "
.endif

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1692265656
SHA256 (mariadb-10.11.5.tar.gz) = 4c9484048d4d0c71dd076ab33fc2a9ce8510bdf762886de0d63fe52496f3dbbb
SIZE (mariadb-10.11.5.tar.gz) = 99709948
TIMESTAMP = 1701004661
SHA256 (mariadb-10.11.6.tar.gz) = 1c0163463e98d71f4780741611a40981eee2bc44d392601ca49bbf948d04dd67
SIZE (mariadb-10.11.6.tar.gz) = 99586625

View File

@ -1,5 +1,5 @@
PORTNAME?= mariadb
PORTVERSION= 10.6.15
PORTVERSION= 10.6.16
PORTREVISION?= 0
CATEGORIES= databases
MASTER_SITES= https://mirror.nodesdirect.com/${SITESDIR}/ \
@ -212,6 +212,10 @@ SUB_LIST+= LEGACY_LIMITS="" MODERN_LIMITS="@comment "
GSSAPI_BASE_IGNORE= GSSAPI_BASE is not compatible with OpenSSL from ports. Use other GSSAPI options or OpenSSL from base system
.endif
.if ${SSL_DEFAULT:Mlibressl*}
CFLAGS+= -Wno-incompatible-function-pointer-types
.endif
.if ${ARCH} != amd64 && ${ARCH} != aarch64
PLIST_SUB+= WSREP="@comment "
.endif

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1696593467
SHA256 (mariadb-10.6.15.tar.gz) = b2f6bdba17ead4d91c4d254fafc34a728ac6b027dd1d7178bc26758dce694335
SIZE (mariadb-10.6.15.tar.gz) = 98204031
TIMESTAMP = 1701019842
SHA256 (mariadb-10.6.16.tar.gz) = 5ef83843e796dcda9aea47b24690ddf6d848f43f43e11f9d9a0cc21c78fbb9cf
SIZE (mariadb-10.6.16.tar.gz) = 98224346

View File

@ -1,5 +1,5 @@
PORTNAME= pgmodeler
PORTVERSION= 1.0.5
PORTVERSION= 1.0.6
DISTVERSIONPREFIX= v
CATEGORIES= databases

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1690489520
SHA256 (pgmodeler-pgmodeler-v1.0.5_GH0.tar.gz) = 461b8493e112e894b40522cd01f02b2b4898f86c4410a9f37259e0d949eb9659
SIZE (pgmodeler-pgmodeler-v1.0.5_GH0.tar.gz) = 3482805
TIMESTAMP = 1700893621
SHA256 (pgmodeler-pgmodeler-v1.0.6_GH0.tar.gz) = cfc80f9311e6c3863b80fdf9891793f00da3362f5c016331831e7b35b4681ab9
SIZE (pgmodeler-pgmodeler-v1.0.6_GH0.tar.gz) = 3482968

View File

@ -1,7 +1,6 @@
PORTNAME= pgrouting
DISTVERSIONPREFIX= v
DISTVERSION= 3.5.0
PORTREVISION= 2
DISTVERSION= 3.6.0
CATEGORIES= databases geography
MAINTAINER= lbartoletti@FreeBSD.org

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1678362245
SHA256 (pgRouting-pgrouting-v3.5.0_GH0.tar.gz) = ce3a591d57466d64420923b6ac4df10ad27cac9f5e21f18eed66afe4543dfb48
SIZE (pgRouting-pgrouting-v3.5.0_GH0.tar.gz) = 3853104
TIMESTAMP = 1700893661
SHA256 (pgRouting-pgrouting-v3.6.0_GH0.tar.gz) = 16b838685b9384e84da03b4ac391b50b930d934c5b2c4b7406f3472183ad0c79
SIZE (pgRouting-pgrouting-v3.6.0_GH0.tar.gz) = 3871079

View File

@ -1,4 +1,4 @@
lib/postgresql/libpgrouting-3.5.so
lib/postgresql/libpgrouting-3.6.so
share/postgresql/extension/pgrouting--2.6.0--%%DISTVERSION%%.sql
share/postgresql/extension/pgrouting--2.6.1--%%DISTVERSION%%.sql
share/postgresql/extension/pgrouting--2.6.2--%%DISTVERSION%%.sql
@ -27,5 +27,7 @@ share/postgresql/extension/pgrouting--3.3.5--%%DISTVERSION%%.sql
share/postgresql/extension/pgrouting--3.4.0--%%DISTVERSION%%.sql
share/postgresql/extension/pgrouting--3.4.1--%%DISTVERSION%%.sql
share/postgresql/extension/pgrouting--3.4.2--%%DISTVERSION%%.sql
share/postgresql/extension/pgrouting--3.5.0--%%DISTVERSION%%.sql
share/postgresql/extension/pgrouting--3.5.1--%%DISTVERSION%%.sql
share/postgresql/extension/pgrouting--%%DISTVERSION%%.sql
share/postgresql/extension/pgrouting.control

View File

@ -1,6 +1,6 @@
PORTNAME= pointcloud
DISTVERSIONPREFIX= v
DISTVERSION= 1.2.4
DISTVERSION= 1.2.5
CATEGORIES= databases geography
MAINTAINER= lbartoletti@FreeBSD.org

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1664426259
SHA256 (pgpointcloud-pointcloud-v1.2.4_GH0.tar.gz) = 0f8f13d04f2a8ed4197231e0892dc5f0480cf3d26effb4692054062e1f1c96a8
SIZE (pgpointcloud-pointcloud-v1.2.4_GH0.tar.gz) = 348003
TIMESTAMP = 1700893680
SHA256 (pgpointcloud-pointcloud-v1.2.5_GH0.tar.gz) = f3924f283345f2da46a971e65f0c6ce602640ecf88a2057293443ec2a7a56774
SIZE (pgpointcloud-pointcloud-v1.2.5_GH0.tar.gz) = 348678

View File

@ -1,21 +1,23 @@
lib/postgresql/pointcloud-1.2.so
share/postgresql/extension/pointcloud--1.1.0--1.2.4.sql
share/postgresql/extension/pointcloud--1.1.1--1.2.4.sql
share/postgresql/extension/pointcloud--1.2.0--1.2.4.sql
share/postgresql/extension/pointcloud--1.2.1--1.2.4.sql
share/postgresql/extension/pointcloud--1.2.2--1.2.4.sql
share/postgresql/extension/pointcloud--1.2.3--1.2.4.sql
share/postgresql/extension/pointcloud--1.2.4--1.2.4next.sql
share/postgresql/extension/pointcloud--1.2.4.sql
share/postgresql/extension/pointcloud--1.2.4next--1.2.4.sql
share/postgresql/extension/pointcloud--1.1.0--1.2.5.sql
share/postgresql/extension/pointcloud--1.1.1--1.2.5.sql
share/postgresql/extension/pointcloud--1.2.0--1.2.5.sql
share/postgresql/extension/pointcloud--1.2.1--1.2.5.sql
share/postgresql/extension/pointcloud--1.2.2--1.2.5.sql
share/postgresql/extension/pointcloud--1.2.3--1.2.5.sql
share/postgresql/extension/pointcloud--1.2.4--1.2.5.sql
share/postgresql/extension/pointcloud--1.2.5--1.2.5next.sql
share/postgresql/extension/pointcloud--1.2.5.sql
share/postgresql/extension/pointcloud--1.2.5next--1.2.5.sql
share/postgresql/extension/pointcloud.control
share/postgresql/extension/pointcloud_postgis--1.1.0--1.2.4.sql
share/postgresql/extension/pointcloud_postgis--1.1.1--1.2.4.sql
share/postgresql/extension/pointcloud_postgis--1.2.0--1.2.4.sql
share/postgresql/extension/pointcloud_postgis--1.2.1--1.2.4.sql
share/postgresql/extension/pointcloud_postgis--1.2.2--1.2.4.sql
share/postgresql/extension/pointcloud_postgis--1.2.3--1.2.4.sql
share/postgresql/extension/pointcloud_postgis--1.2.4--1.2.4next.sql
share/postgresql/extension/pointcloud_postgis--1.2.4.sql
share/postgresql/extension/pointcloud_postgis--1.2.4next--1.2.4.sql
share/postgresql/extension/pointcloud_postgis--1.1.0--1.2.5.sql
share/postgresql/extension/pointcloud_postgis--1.1.1--1.2.5.sql
share/postgresql/extension/pointcloud_postgis--1.2.0--1.2.5.sql
share/postgresql/extension/pointcloud_postgis--1.2.1--1.2.5.sql
share/postgresql/extension/pointcloud_postgis--1.2.2--1.2.5.sql
share/postgresql/extension/pointcloud_postgis--1.2.3--1.2.5.sql
share/postgresql/extension/pointcloud_postgis--1.2.4--1.2.5.sql
share/postgresql/extension/pointcloud_postgis--1.2.5--1.2.5next.sql
share/postgresql/extension/pointcloud_postgis--1.2.5.sql
share/postgresql/extension/pointcloud_postgis--1.2.5next--1.2.5.sql
share/postgresql/extension/pointcloud_postgis.control

View File

@ -1,6 +1,6 @@
PORTNAME= carbon
PORTVERSION= 1.1.10
PORTREVISION= 2
PORTREVISION= 3
CATEGORIES= databases python
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
@ -12,7 +12,7 @@ LICENSE= APACHE20
LICENSE_FILE= ${WRKSRC}/LICENSE
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}cachetools>=1.1.0:devel/py-cachetools@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}service_identity>=0:security/py-service_identity@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}service-identity>=0:security/py-service-identity@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}twisted>=13.2.0:devel/py-twisted@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}txamqp>=0.3:net/py-txamqp@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}urllib3>=0:net/py-urllib3@${PY_FLAVOR} \

View File

@ -1,6 +1,6 @@
PORTNAME= spatialite-tools
PORTVERSION= 5.0.1
PORTREVISION= 7
PORTREVISION= 8
CATEGORIES= databases geography
MASTER_SITES= http://www.gaia-gis.it/gaia-sins/

View File

@ -1,6 +1,5 @@
PORTNAME= spatialite
PORTVERSION= 5.0.1
PORTREVISION= 7
PORTVERSION= 5.1.0
CATEGORIES= databases geography
MASTER_SITES= http://www.gaia-gis.it/gaia-sins/libspatialite-sources/
DISTNAME= lib${PORTNAME}-${PORTVERSION}
@ -29,9 +28,7 @@ CONFIGURE_ARGS+= --enable-gcp=yes --enable-libxml2=yes --enable-rttopo=yes \
USE_LDCONFIG= yes
INSTALL_TARGET=install-strip
post-patch:
@${REINPLACE_CMD} -e 's|-ldl| |' ${WRKSRC}/src/Makefile.am
@${REINPLACE_CMD} -e 's|-ldl| |' ${WRKSRC}/src/Makefile.in
@${REINPLACE_CMD} -e 's|-ldl| |' ${WRKSRC}/configure
#post-patch:
# @${REINPLACE_CMD} -e 's|-ldl| |' ${WRKSRC}/configure
.include <bsd.port.mk>

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1618814239
SHA256 (libspatialite-5.0.1.tar.gz) = eecbc94311c78012d059ebc0fae86ea5ef6eecb13303e6e82b3753c1b3409e98
SIZE (libspatialite-5.0.1.tar.gz) = 6372753
TIMESTAMP = 1700734773
SHA256 (libspatialite-5.1.0.tar.gz) = 43be2dd349daffe016dd1400c5d11285828c22fea35ca5109f21f3ed50605080
SIZE (libspatialite-5.1.0.tar.gz) = 6517377

View File

@ -1,13 +0,0 @@
--- src/Makefile.in.orig 2020-10-23 14:15:44 UTC
+++ src/Makefile.in
@@ -467,8 +467,8 @@ mod_spatialite_la_LIBADD = ./gaiaaux/gaiaaux.la ./gaia
mod_spatialite_la_CPPFLAGS = @CFLAGS@ @CPPFLAGS@ \
-I$(top_srcdir)/src/headers -I. -DLOADABLE_EXTENSION
mod_spatialite_la_LIBTOOLFLAGS = --tag=disable-static
-@ANDROID_FALSE@@MINGW_FALSE@mod_spatialite_la_LDFLAGS = -module -version-info 8:0:1
-@ANDROID_TRUE@@MINGW_FALSE@mod_spatialite_la_LDFLAGS = -module -version-info 8:0:1
+@ANDROID_FALSE@@MINGW_FALSE@mod_spatialite_la_LDFLAGS = -module -version-info 8:1:1
+@ANDROID_TRUE@@MINGW_FALSE@mod_spatialite_la_LDFLAGS = -module -version-info 8:1:1
@MINGW_TRUE@mod_spatialite_la_LDFLAGS = -module -avoid-version -no-undefined
MOSTLYCLEANFILES = *.gcna *.gcno *.gcda
all: all-recursive

View File

@ -29,9 +29,9 @@ include/spatialite/sqlite.h
include/spatialite/stored_procedures.h
lib/libspatialite.a
lib/libspatialite.so
lib/libspatialite.so.7
lib/libspatialite.so.7.1.2
lib/libspatialite.so.8
lib/libspatialite.so.8.1.0
lib/mod_spatialite.so
lib/mod_spatialite.so.7
lib/mod_spatialite.so.7.1.1
lib/mod_spatialite.so.8
lib/mod_spatialite.so.8.1.0
libdata/pkgconfig/spatialite.pc

View File

@ -1,6 +1,6 @@
PORTNAME= spatialite_gui
DISTVERSION= 2.1.0
PORTREVISION= 9
PORTREVISION= 10
DISTVERSIONSUFFIX= -beta1
CATEGORIES= databases geography
MASTER_SITES= http://www.gaia-gis.it/gaia-sins/spatialite-gui-sources/

View File

@ -1,5 +1,5 @@
PORTNAME= calibre
PORTVERSION= 7.0.0
PORTVERSION= 7.1.0
CATEGORIES= deskutils python
MASTER_SITES= http://download.calibre-ebook.com/${PORTVERSION}/
DISTFILES= ${DISTNAME}${EXTRACT_SUFX}
@ -76,8 +76,8 @@ USE_RC_SUBR= calibre
USE_XORG= x11 xext xrender
USE_GITHUB= nodefault
GH_TUPLE= kovidgoyal:calibre-translations:79f0906:translations \
LibreOffice:dictionaries:3b7e1d2:hypenation
GH_TUPLE= kovidgoyal:calibre-translations:9c92ec3:translations \
LibreOffice:dictionaries:d154315:hypenation
SHEBANG_GLOB= *.py *.recipe *.sh
python_OLD_CMD= "/usr/bin/env python" ${LOCALBASE}/bin/python3

View File

@ -1,7 +1,7 @@
TIMESTAMP = 1700209282
SHA256 (calibre/calibre-7.0.0.tar.xz) = 5409f369ccfff0b60254c0a31d7a9de01f8d5059a232a77142aa726a9f9430d7
SIZE (calibre/calibre-7.0.0.tar.xz) = 41889020
SHA256 (calibre/kovidgoyal-calibre-translations-79f0906_GH0.tar.gz) = d0a58195d0b73dc6c9c38539cd82551cadc6c40ee63b6ef1ebdcf73593f8af23
SIZE (calibre/kovidgoyal-calibre-translations-79f0906_GH0.tar.gz) = 72143348
SHA256 (calibre/LibreOffice-dictionaries-3b7e1d2_GH0.tar.gz) = 9e67c8e5ee00e30b140bc8ec93a5624e02444b9488b676097e79d88cb2077576
SIZE (calibre/LibreOffice-dictionaries-3b7e1d2_GH0.tar.gz) = 94631835
TIMESTAMP = 1700811066
SHA256 (calibre/calibre-7.1.0.tar.xz) = 70a515fad059e597579282dd24f75444a9d63f90798330944107a1550211824a
SIZE (calibre/calibre-7.1.0.tar.xz) = 41819036
SHA256 (calibre/kovidgoyal-calibre-translations-9c92ec3_GH0.tar.gz) = 7b750a616757a3c0697de4d1f0459d7266339bb8d9f50e7b063559fd8fd6c8a4
SIZE (calibre/kovidgoyal-calibre-translations-9c92ec3_GH0.tar.gz) = 72276478
SHA256 (calibre/LibreOffice-dictionaries-d154315_GH0.tar.gz) = b03eacd742f90a323978ae30879dadc3199d8ed573ab929db60824046ab9aebc
SIZE (calibre/LibreOffice-dictionaries-d154315_GH0.tar.gz) = 97610217

View File

@ -45,68 +45,68 @@
"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.2 Safari/605.1.15",
"Mozilla/5.0 (Linux; Android) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.131 Safari/537.36",
"Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko",
"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36",
"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:82.0) Gecko/20100101 Firefox/82.0",
"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36",
"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.1 Safari/605.1.15",
"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36"
],
"desktop_platforms": [
"Windows NT 10.0",
"Windows NT 6.1; WOW64",
"Windows NT 10.0; WOW64",
"Linux; Android",
"Windows NT 6.1; WOW64",
"Windows NT 10.0; Win64; x64"
],
"timestamp": "2023-11-17T08:22:05.900742+00:00",
"timestamp": "2023-11-24T07:33:00.770567+00:00",
"user_agents_popularity": {
"Mozilla/5.0 (Linux; Android) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.131 Safari/537.36": 18986,
"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.2 Safari/605.1.15": 42032,
"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.1 Safari/605.1.15": 14937,
"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.2 Safari/605.1.15": 65746,
"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.3 Safari/605.1.15": 142520,
"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.2 Safari/605.1.15": 19559,
"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36": 16761,
"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36": 108115,
"Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko": 3691290,
"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36": 257127,
"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36": 122050,
"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36 Edg/108.0.1462.54": 97831,
"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36": 196606,
"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36": 24179,
"Mozilla/5.0 (Linux; Android) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.131 Safari/537.36": 19277,
"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.2 Safari/605.1.15": 42110,
"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.1 Safari/605.1.15": 14953,
"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.2 Safari/605.1.15": 65754,
"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.3 Safari/605.1.15": 142552,
"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.2 Safari/605.1.15": 19560,
"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36": 16775,
"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36": 108373,
"Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko": 3703153,
"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36": 257235,
"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36": 122110,
"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36 Edg/108.0.1462.54": 97849,
"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36": 198325,
"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36": 24496,
"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.119 Safari/537.36": 78649,
"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.87 Safari/537.36": 4927593,
"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36": 14571,
"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.87 Safari/537.36": 4952345,
"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36": 14578,
"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36": 248945,
"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36 Edg/87.0.664.75": 73772,
"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36": 218953,
"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36 Edg/87.0.664.66": 74758,
"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36": 218957,
"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36 Edg/87.0.664.66": 74759,
"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36": 104106,
"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.146 Safari/537.36": 38465,
"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.146 Safari/537.36": 38466,
"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.150 Safari/537.36": 123156,
"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.150 Safari/537.36 Edg/88.0.705.68": 24600,
"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.182 Safari/537.36": 71915,
"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.190 Safari/537.36": 153638,
"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.190 Safari/537.36": 153639,
"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36 Edg/88.0.705.50": 26554,
"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.96 Safari/537.36 Edg/88.0.705.56": 25709,
"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36": 102575,
"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.128 Safari/537.36": 78787,
"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.82 Safari/537.36": 46979,
"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.90 Safari/537.36": 154551,
"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36": 162969,
"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36": 154882,
"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36": 136700,
"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.77 Safari/537.36": 108806,
"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36": 76135,
"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.90 Safari/537.36": 154606,
"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36": 162977,
"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36": 154889,
"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36": 136701,
"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.77 Safari/537.36": 108808,
"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36": 76382,
"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36 Edg/95.0.1020.30": 48696,
"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:102.0) Gecko/20100101 Firefox/102.0": 75605,
"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:78.0) Gecko/20100101 Firefox/78.0": 23307,
"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:82.0) Gecko/20100101 Firefox/82.0": 16701,
"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:84.0) Gecko/20100101 Firefox/84.0": 224756,
"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:85.0) Gecko/20100101 Firefox/85.0": 156912,
"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:86.0) Gecko/20100101 Firefox/86.0": 165936,
"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:102.0) Gecko/20100101 Firefox/102.0": 75661,
"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:78.0) Gecko/20100101 Firefox/78.0": 23312,
"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:82.0) Gecko/20100101 Firefox/82.0": 16804,
"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:84.0) Gecko/20100101 Firefox/84.0": 224761,
"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:85.0) Gecko/20100101 Firefox/85.0": 156914,
"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:86.0) Gecko/20100101 Firefox/86.0": 165939,
"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:87.0) Gecko/20100101 Firefox/87.0": 55757,
"Mozilla/5.0 (Windows NT 10.0; rv:78.0) Gecko/20100101 Firefox/78.0": 39373,
"Mozilla/5.0 (Windows NT 10.0; rv:78.0) Gecko/20100101 Firefox/78.0": 39385,
"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.87 Safari/537.36": 67119,
"Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko": 17452
"Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko": 17489
}
}

View File

@ -1,5 +1,5 @@
PORTNAME= syncthingtray
PORTVERSION= 1.4.8
PORTVERSION= 1.4.9
DISTVERSIONPREFIX= v
CATEGORIES= deskutils
@ -21,9 +21,9 @@ USES= cmake:insource compiler:c++11-lang desktop-file-utils iconv \
USE_GITHUB= nodefault
GH_TUPLE= Martchus:${PORTNAME}:${DISTVERSIONPREFIX}${DISTVERSION}:syncthingtray/../syncthingtray \
Martchus:cpp-utilities:v5.24.1:cpputilities/../c++utilities \
Martchus:qtutilities:v6.13.2:qtutilities/../qtutilities \
Martchus:qtforkawesome:v0.1.0:qtforkawesome/../qtforkawesome \
Martchus:cpp-utilities:v5.24.2:cpputilities/../c++utilities \
Martchus:qtutilities:v6.13.3:qtutilities/../qtutilities \
Martchus:qtforkawesome:6c5b63e:qtforkawesome/../qtforkawesome \
ForkAwesome:Fork-Awesome:094e751:ForkAwesome/../forkawesome \
Martchus:subdirs:c2b6d74:subdirs/../subdirs

View File

@ -1,12 +1,12 @@
TIMESTAMP = 1699380622
SHA256 (Martchus-syncthingtray-v1.4.8_GH0.tar.gz) = 3d6eb1cce6d3daf1507997ed8b144791191a59db848d1fdab50c590b45e14582
SIZE (Martchus-syncthingtray-v1.4.8_GH0.tar.gz) = 1884965
SHA256 (Martchus-cpp-utilities-v5.24.1_GH0.tar.gz) = 86cceb6983789144e2fe0101642836be7bce45a22879248ad8d8938e4adccfc6
SIZE (Martchus-cpp-utilities-v5.24.1_GH0.tar.gz) = 191675
SHA256 (Martchus-qtutilities-v6.13.2_GH0.tar.gz) = 5677fe0a76065d7adb01e39d75598834a517fcff4b4c655c555f12da5e121bae
SIZE (Martchus-qtutilities-v6.13.2_GH0.tar.gz) = 102922
SHA256 (Martchus-qtforkawesome-v0.1.0_GH0.tar.gz) = 2d71cc6824148194263fda763a78d3ae7ed5a4d0e673181fc5afeabc47e2445e
SIZE (Martchus-qtforkawesome-v0.1.0_GH0.tar.gz) = 18476
TIMESTAMP = 1700648392
SHA256 (Martchus-syncthingtray-v1.4.9_GH0.tar.gz) = f9003bbe185d355f9cac18862077fa2cc4e809f7f416d9b1dd5ef6474c926742
SIZE (Martchus-syncthingtray-v1.4.9_GH0.tar.gz) = 1885204
SHA256 (Martchus-cpp-utilities-v5.24.2_GH0.tar.gz) = 46e79313900a8cbb7a3c0211fcc0cd07c2c8a6c2bcaeb11aec7fc706dc5914b1
SIZE (Martchus-cpp-utilities-v5.24.2_GH0.tar.gz) = 192378
SHA256 (Martchus-qtutilities-v6.13.3_GH0.tar.gz) = bb94491b973df3a07e9bf49e092da42dcd846e24e44109809255e8cfdc4e16bd
SIZE (Martchus-qtutilities-v6.13.3_GH0.tar.gz) = 103306
SHA256 (Martchus-qtforkawesome-6c5b63e_GH0.tar.gz) = ce7909464a03901ab41c0c6c65647782c9c04d468c1b01db52583908df30db57
SIZE (Martchus-qtforkawesome-6c5b63e_GH0.tar.gz) = 18671
SHA256 (ForkAwesome-Fork-Awesome-094e751_GH0.tar.gz) = 55bd0705b85f98ce9309aba62d5b845cecdfd41d0ddf57f5c825ccf1e829b9f0
SIZE (ForkAwesome-Fork-Awesome-094e751_GH0.tar.gz) = 1808665
SHA256 (Martchus-subdirs-c2b6d74_GH0.tar.gz) = 2af2ac1a81076b7032e8ef2834ce8300f8148e446a8acb61664bb91f3dd4bb39

View File

@ -1,6 +1,5 @@
PORTNAME= treesheets
DISTVERSION= 1.0.20230915
PORTREVISION= 1
DISTVERSION= 1.0.20231124
CATEGORIES= deskutils
MAINTAINER= eduardo@FreeBSD.org
@ -14,7 +13,7 @@ USES= cmake compiler:c++17-lang desktop-file-utils gnome \
shared-mime-info
USE_GITHUB= yes
GH_ACCOUNT= aardappel
GH_TAGNAME= 6201240047
GH_TAGNAME= 6985406227
USE_WX= 3.2
PORTSCOUT= ignore:1 # upstream uses CI run ids as releases

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1694813133
SHA256 (aardappel-treesheets-1.0.20230915-6201240047_GH0.tar.gz) = 5969990bd93ec5ec57e52479a4284a86b2d5e2def4f6feb2842f54dac77e6fcc
SIZE (aardappel-treesheets-1.0.20230915-6201240047_GH0.tar.gz) = 3067450
TIMESTAMP = 1700902962
SHA256 (aardappel-treesheets-1.0.20231124-6985406227_GH0.tar.gz) = 76967d558cf1be86ff865b2583dde631b86d1765e871bb21d4cf9662814da3db
SIZE (aardappel-treesheets-1.0.20231124-6985406227_GH0.tar.gz) = 3064545

View File

@ -1,9 +1,9 @@
bin/treesheets
share/applications/treesheets.desktop
share/icons/hicolor/scalable/apps/treesheets.svg
share/applications/com.strlen.TreeSheets.desktop
share/icons/hicolor/scalable/apps/com.strlen.TreeSheets.svg
%%NLS%%share/locale/de/LC_MESSAGES/ts.mo
%%NLS%%share/locale/fr_FR/LC_MESSAGES/ts.mo
%%NLS%%share/locale/it/LC_MESSAGES/ts.mo
%%NLS%%share/locale/pt_BR/LC_MESSAGES/ts.mo
%%NLS%%share/locale/zh_CN/LC_MESSAGES/ts.mo
share/mime/packages/treesheets.xml
share/mime/packages/com.strlen.TreeSheets.xml

View File

@ -1,6 +1,5 @@
PORTNAME= msm
PORTVERSION= 1.7
PORTREVISION= 1
PORTVERSION= 1.7.1
CATEGORIES= devel
DISTNAME= ${PORTNAME}_${DISTVERSION}

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1669754039
SHA256 (msm_1.7.tar.gz) = 7f89f8e47966919e49ef8dfe1f9c82ac6553b2f404bb03840da5f42e73dd0db0
SIZE (msm_1.7.tar.gz) = 849388
TIMESTAMP = 1700851031
SHA256 (msm_1.7.1.tar.gz) = d134782b966eed33742819595119ab1a61bec4416cc3fa7630a0f34c4e7f785b
SIZE (msm_1.7.1.tar.gz) = 939804

View File

@ -1,6 +1,6 @@
PORTNAME= aws-c-common
DISTVERSIONPREFIX= v
DISTVERSION= 0.9.9
DISTVERSION= 0.9.10
PORTEPOCH= 1
CATEGORIES= devel

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1700079292
SHA256 (awslabs-aws-c-common-v0.9.9_GH0.tar.gz) = 7b1b09b6bd67874ee8c94ef9b3f040c6cfde308d33ce3bdf6684228d963a0c4b
SIZE (awslabs-aws-c-common-v0.9.9_GH0.tar.gz) = 552163
TIMESTAMP = 1700918090
SHA256 (awslabs-aws-c-common-v0.9.10_GH0.tar.gz) = 92ac6d7183cf820f78a73f74773c674f743a947c564c1ea4930e18bd20461108
SIZE (awslabs-aws-c-common-v0.9.10_GH0.tar.gz) = 552391

View File

@ -1,6 +1,6 @@
PORTNAME= aws-c-io
DISTVERSIONPREFIX= v
DISTVERSION= 0.13.35
DISTVERSION= 0.13.36
CATEGORIES= devel
MAINTAINER= eduardo@FreeBSD.org

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1697628826
SHA256 (awslabs-aws-c-io-v0.13.35_GH0.tar.gz) = a9232dbbb3324de36a280859a4ea84dd2b75e47961805f1cffe0f3a7e1831711
SIZE (awslabs-aws-c-io-v0.13.35_GH0.tar.gz) = 677117
TIMESTAMP = 1700919381
SHA256 (awslabs-aws-c-io-v0.13.36_GH0.tar.gz) = df58a600958a7dce34a871ae145c829a721e2272a342964164c261257e766453
SIZE (awslabs-aws-c-io-v0.13.36_GH0.tar.gz) = 677103

View File

@ -1,6 +1,6 @@
PORTNAME= aws-c-mqtt
DISTVERSIONPREFIX= v
DISTVERSION= 0.9.9
DISTVERSION= 0.9.10
CATEGORIES= devel
MAINTAINER= eduardo@FreeBSD.org

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1699626804
SHA256 (awslabs-aws-c-mqtt-v0.9.9_GH0.tar.gz) = e7658a427c4f40abba914ad3610f0e82349facf7eef8a88df75967a9856740e8
SIZE (awslabs-aws-c-mqtt-v0.9.9_GH0.tar.gz) = 361725
TIMESTAMP = 1700920342
SHA256 (awslabs-aws-c-mqtt-v0.9.10_GH0.tar.gz) = a8f92cb045e2c1e0b7e87e5c43ca373eb020014b5d3ebd75ed67ffff430d9ab6
SIZE (awslabs-aws-c-mqtt-v0.9.10_GH0.tar.gz) = 361736

View File

@ -1,6 +1,6 @@
PORTNAME= aws-c-s3
DISTVERSIONPREFIX= v
DISTVERSION= 0.3.24
DISTVERSION= 0.4.1
CATEGORIES= devel
MAINTAINER= eduardo@FreeBSD.org

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1700082081
SHA256 (awslabs-aws-c-s3-v0.3.24_GH0.tar.gz) = 09803db4af98bba0af263434e2de432cdccdb3ab709411abba8e05d34840f815
SIZE (awslabs-aws-c-s3-v0.3.24_GH0.tar.gz) = 277473
TIMESTAMP = 1700919238
SHA256 (awslabs-aws-c-s3-v0.4.1_GH0.tar.gz) = 139cf462db2bcf5eb6b6317051b9419b7dde027759f07c3f4f52f8af944c6e92
SIZE (awslabs-aws-c-s3-v0.4.1_GH0.tar.gz) = 289833

View File

@ -1,6 +1,6 @@
PORTNAME= alexandria
PORTVERSION= 1.2
PORTREVISION= 29
PORTREVISION= 30
PORTEPOCH= 1
CATEGORIES= devel lisp
PKGNAMEPREFIX= cl-

View File

@ -1,6 +1,6 @@
PORTNAME= infix
PORTVERSION= 19960628
PORTREVISION= 84
PORTREVISION= 85
CATEGORIES= devel lisp
PKGNAMEPREFIX= cl-
DISTFILES= # none

View File

@ -1,6 +1,6 @@
PORTNAME= port
PORTVERSION= 2002.10.02.1
PORTREVISION= 82
PORTREVISION= 83
CATEGORIES= devel lisp
PKGNAMEPREFIX= cl-
DISTFILES= # none

View File

@ -1,6 +1,6 @@
PORTNAME= split-sequence
PORTVERSION= 20011114.1
PORTREVISION= 81
PORTREVISION= 82
CATEGORIES= devel lisp
PKGNAMEPREFIX= cl-
DISTFILES= # none

View File

@ -1,6 +1,6 @@
PORTNAME= trivial-features
PORTVERSION= 2010.01.16
PORTREVISION= 81
PORTREVISION= 82
CATEGORIES= devel lisp
PKGNAMEPREFIX= cl-
DISTFILES= # none

View File

@ -1,6 +1,6 @@
PORTNAME= trivial-gray-streams
PORTVERSION= 2008.11.02
PORTREVISION= 81
PORTREVISION= 82
CATEGORIES= devel lisp
PKGNAMEPREFIX= cl-
DISTFILES= # none

View File

@ -1,5 +1,5 @@
PORTNAME= clojure-cider
PORTVERSION= 1.11.1
PORTVERSION= 1.12.0
DISTVERSIONPREFIX= v
CATEGORIES= devel elisp
PKGNAMESUFFIX= ${EMACS_PKGNAMESUFFIX}

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1699851675
SHA256 (clojure-emacs-cider-v1.11.1_GH0.tar.gz) = 627c08137c699de9bc5b8e7e27ebfa2d2ab4760937ba6212e217ecd20c3407ae
SIZE (clojure-emacs-cider-v1.11.1_GH0.tar.gz) = 7290496
TIMESTAMP = 1701017332
SHA256 (clojure-emacs-cider-v1.12.0_GH0.tar.gz) = ad5fc576486c888e71b5f1b5161eb2477f5665eb7c5ce06721770b6b9fb2f34f
SIZE (clojure-emacs-cider-v1.12.0_GH0.tar.gz) = 7291772

View File

@ -1,5 +1,5 @@
PORTNAME= exomizer
DISTVERSION= 3.1.1
DISTVERSION= 3.1.2
CATEGORIES= devel
MASTER_SITES= https://bitbucket.org/magli143/exomizer/wiki/downloads/
@ -7,14 +7,7 @@ MAINTAINER= zirias@FreeBSD.org
COMMENT= Cruncher for 6502-based systems
WWW= https://bitbucket.org/magli143/exomizer/wiki/Home
LICENSE= ZLIB EXO
LICENSE_COMB= multi
LICENSE_NAME_EXO= exomizer
LICENSE_TEXT_EXO= The names of this software and/or it's copyright\
holders may not be used to endorse or promote products\
derived from this software without specific prior\
written permission.
LICENSE_PERMS_EXO= dist-mirror pkg-mirror auto-accept
LICENSE= ZLIB
USES= gmake zip

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1673014159
SHA256 (exomizer-3.1.1.zip) = 2dfc821220d90185e31b5fe0958682e498e1bd8aaca7fe1b122febb863e9fe2d
SIZE (exomizer-3.1.1.zip) = 713134
TIMESTAMP = 1701068278
SHA256 (exomizer-3.1.2.zip) = 8896285e48e89e29ba962bc37d8f4dcd506a95753ed9b8ebf60e43893c36ce3a
SIZE (exomizer-3.1.2.zip) = 723221

View File

@ -23,6 +23,12 @@ bin/exomizer
%%DATADIR%%/exodecrs/exodecrunch.s
%%DATADIR%%/exodecrs/exostreamdecr1.s
%%DATADIR%%/exodecrs/exostreamdecr2.s
%%DATADIR%%/exodecrs/kick/Makefile
%%DATADIR%%/exodecrs/kick/exodecrunch.asm
%%DATADIR%%/exodecrs/kick/main.asm
%%DATADIR%%/exodecrs/kick/split/Makefile
%%DATADIR%%/exodecrs/kick/split/data.asm.template
%%DATADIR%%/exodecrs/kick/split/main.asm
%%DATADIR%%/exodecrs/main.s
%%DATADIR%%/exodecrs/main1.s
%%DATADIR%%/exodecrs/main2.s

View File

@ -1,5 +1,5 @@
PORTNAME= genie
DISTVERSION= g20230921
DISTVERSION= g2023092101
CATEGORIES= devel
MAINTAINER= bofh@FreeBSD.org

View File

@ -21,6 +21,7 @@ include/hwloc/cudart.h
include/hwloc/deprecated.h
include/hwloc/diff.h
include/hwloc/gl.h
include/hwloc/glibc-sched.h
include/hwloc/helper.h
include/hwloc/inlines.h
include/hwloc/intel-mic.h

View File

@ -1,5 +1,6 @@
PORTNAME= libnotify
DISTVERSION= 0.8.2
PORTREVISION= 1
CATEGORIES= devel gnome
MASTER_SITES= GNOME

View File

@ -0,0 +1,18 @@
--- libnotify/meson.build.orig 2023-02-17 21:20:15 UTC
+++ libnotify/meson.build
@@ -46,7 +46,6 @@ notify_dep = declare_dependency(
dependencies: libnotify_deps,
compile_args: libnotify_cflags,
sources: headers + [enum_types[1]] + [marshal[1]],
- link_args: libnotify_ldflags,
)
libnotify_lib = shared_library(LIBNAME,
@@ -55,6 +54,7 @@ libnotify_lib = shared_library(LIBNAME,
version: '@0@.@1@.@2@'.format(LT_CURRENT, LT_REVISION, LT_AGE),
soversion: LT_CURRENT,
install: true,
+ link_args: libnotify_ldflags,
)
libnotify_dep = declare_dependency(

View File

@ -1,5 +1,6 @@
PORTNAME= buildbot-www
PORTVERSION= 3.9.2
PORTREVISION= 1
CATEGORIES= devel python
MASTER_SITES= PYPI
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
@ -16,7 +17,7 @@ BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}buildbot-pkg==${PORTVERSION}:devel/py-buil
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}buildbot-console-view==${PORTVERSION}:devel/py-buildbot-console-view@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}buildbot-grid-view==${PORTVERSION}:devel/py-buildbot-grid-view@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}buildbot-waterfall-view==${PORTVERSION}:devel/py-buildbot-waterfall-view@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}service_identity>=16.0.0:security/py-service_identity@${PY_FLAVOR}
${PYTHON_PKGNAMEPREFIX}service-identity>=16.0.0:security/py-service-identity@${PY_FLAVOR}
USES= python
USE_PYTHON= autoplist distutils

View File

@ -1,5 +1,5 @@
PORTNAME= jsbeautifier
PORTVERSION= 1.14.7
PORTVERSION= 1.14.11
CATEGORIES= devel python
MASTER_SITES= PYPI
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1670246592
SHA256 (jsbeautifier-1.14.7.tar.gz) = 77993254db1ff6f84eb6e1d75e3b6b72cba2ef20813a585b2d81e8e5e3c713c6
SIZE (jsbeautifier-1.14.7.tar.gz) = 74564
TIMESTAMP = 1701043942
SHA256 (jsbeautifier-1.14.11.tar.gz) = 6b632581ea60dd1c133cd25a48ad187b4b91f526623c4b0fb5443ef805250505
SIZE (jsbeautifier-1.14.11.tar.gz) = 75586

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1694686642
SHA256 (KDE/Qt/5.15.15/kde-qtscript-5.15.15p0.tar.xz) = 7d121deeedd5463aa732a572dc9d0da7640e4c81ebc837122bc3c6d356819f31
SIZE (KDE/Qt/5.15.15/kde-qtscript-5.15.15p0.tar.xz) = 2624008
TIMESTAMP = 1700946055
SHA256 (KDE/Qt/5.15.16/kde-qtscript-5.15.16p0.tar.xz) = bb0920fa98757e2f7e58cec95427149ef4795b50d4f8f22ef5ae7b5abecaef0c
SIZE (KDE/Qt/5.15.16/kde-qtscript-5.15.16p0.tar.xz) = 2625416

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1694686642
SHA256 (KDE/Qt/5.15.15/kde-qtscript-5.15.15p0.tar.xz) = 7d121deeedd5463aa732a572dc9d0da7640e4c81ebc837122bc3c6d356819f31
SIZE (KDE/Qt/5.15.15/kde-qtscript-5.15.15p0.tar.xz) = 2624008
TIMESTAMP = 1700946069
SHA256 (KDE/Qt/5.15.16/kde-qtscript-5.15.16p0.tar.xz) = bb0920fa98757e2f7e58cec95427149ef4795b50d4f8f22ef5ae7b5abecaef0c
SIZE (KDE/Qt/5.15.16/kde-qtscript-5.15.16p0.tar.xz) = 2625416

View File

@ -1,5 +1,5 @@
PORTNAME= qtcreator
DISTVERSION= 11.0.3
DISTVERSION= 12.0.0
CATEGORIES= devel
MASTER_SITES= QT/official_releases/qtcreator/${DISTVERSION:R}/${DISTVERSION}
DISTNAME= qt-creator-opensource-src-${DISTVERSION}
@ -25,7 +25,6 @@ USES= cmake compiler:c++17-lang desktop-file-utils gl llvm:build,run,min=15 \
pkgconfig python qt:6 shebangfix tar:xz
USE_GL= gl
USE_LDCONFIG= ${LOCALBASE}/lib/${PORTNAME}
USE_LOCALE= C.UTF-8
USE_QT= 5compat base declarative positioning quick3d quicktimeline \
serialport shadertools sqldriver-sqlite svg tools translations webchannel

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1695967211
SHA256 (KDE/Qt/qtcreator/qt-creator-opensource-src-11.0.3.tar.xz) = 5f501e64e836b7e3e50b98b3ebc345b201396a5fd92e49738dabb5e268d5cf1c
SIZE (KDE/Qt/qtcreator/qt-creator-opensource-src-11.0.3.tar.xz) = 49863336
TIMESTAMP = 1700741061
SHA256 (KDE/Qt/qtcreator/qt-creator-opensource-src-12.0.0.tar.xz) = 399ae0dcefa3bd9e01a3f068b93dabe8b39f9b56466c389d1446e5c84c8f7b9f
SIZE (KDE/Qt/qtcreator/qt-creator-opensource-src-12.0.0.tar.xz) = 50995944

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