*/*: sync with upstream

Taken from: HardenedBSD
This commit is contained in:
Franco Fichtner 2019-09-04 06:20:32 +02:00
parent 2b41bd4e00
commit 2800bb8601
355 changed files with 2387 additions and 1203 deletions

View File

@ -2,6 +2,7 @@
PORTNAME= peazip
PORTVERSION= 6.8.1
PORTREVISION= 1
CATEGORIES= archivers
PKGNAMESUFFIX= ${LAZARUS_PKGNAMESUFFIX}
MASTER_SITES= https://github.com/giorgiotani/PeaZip/releases/download/${PORTVERSION}/

View File

@ -44,6 +44,7 @@ share/icons/hicolor/256x256/apps/peazip.png
%%DATADIR%%/res/lang/ru.txt
%%DATADIR%%/res/lang/si.txt
%%DATADIR%%/res/lang/sk.txt
%%DATADIR%%/res/lang/sl.txt
%%DATADIR%%/res/lang/sv.txt
%%DATADIR%%/res/lang/tj.txt
%%DATADIR%%/res/lang/tr.txt

View File

@ -11,8 +11,8 @@ COMMENT= Library and command-line utility for tar archives
LICENSE= BSD2CLAUSE RUBY
LICENSE_COMB= dual
RUN_DEPENDS= rubygem-minitar>=${PORTVERSION}:archivers/rubygem-minitar \
rubygem-minitar-cli>=${PORTVERSION}:archivers/rubygem-minitar-cli
RUN_DEPENDS= rubygem-minitar>=${PORTVERSION}<1:archivers/rubygem-minitar \
rubygem-minitar-cli>=${PORTVERSION}<1:archivers/rubygem-minitar-cli
USES= gem
USE_RUBY= yes

View File

@ -12,7 +12,7 @@ COMMENT= Provides interface to working with ZIP archives
LICENSE= MIT
LICENSE_FILE= ${WRKSRC}/LICENSE
RUN_DEPENDS= rubygem-io-like>=0.3.0:devel/rubygem-io-like
RUN_DEPENDS= rubygem-io-like>=0.3.0<0.4:devel/rubygem-io-like
USES= gem
USE_RUBY= yes

View File

@ -14,8 +14,8 @@ LICENSE_COMB= dual
LICENSE_FILE_BSD2CLAUSE=${WRKSRC}/docs/bsdl.txt
LICENSE_FILE_RUBY= ${WRKSRC}/docs/ruby.txt
RUN_DEPENDS= rubygem-minitar>=0.8.0:archivers/rubygem-minitar \
rubygem-powerbar>=1.0:devel/rubygem-powerbar
RUN_DEPENDS= rubygem-minitar>=0.8.0<0.9:archivers/rubygem-minitar \
rubygem-powerbar>=1.0<2:devel/rubygem-powerbar
USES= gem
USE_RUBY= yes

View File

@ -3,7 +3,7 @@
PORTNAME= libshout
PORTVERSION= 2.4.3
PORTREVISION= 1
PORTREVISION= 2
CATEGORIES= audio net
MASTER_SITES= https://downloads.xiph.org/releases/libshout/ \
https://svn.xiph.org/releases/libshout/ \

View File

@ -0,0 +1,26 @@
Obtained from: https://gitlab.xiph.org/xiph/icecast-libshout/commit/0ac7ed9e84c3871d4427acc1ce59dca5e4af21ef
--- include/shout/shout.h.in.orig 2019-05-22 09:05:32 UTC
+++ include/shout/shout.h.in
@@ -85,6 +85,11 @@ extern "C" {
#define SHOUT_TLS_RFC2818 ( 11) /* Use TLS for transport layer like HTTPS [RFC2818] does. */
#define SHOUT_TLS_RFC2817 ( 12) /* Use TLS via HTTP Upgrade:-header [RFC2817]. */
+/* Possible values for blocking */
+#define SHOUT_BLOCKING_DEFAULT (255) /* Use the default blocking setting. */
+#define SHOUT_BLOCKING_FULL ( 0) /* Block in all I/O related functions */
+#define SHOUT_BLOCKING_NONE ( 1) /* Do not block in I/O related functions */
+
#define SHOUT_AI_BITRATE "bitrate"
#define SHOUT_AI_SAMPLERATE "samplerate"
#define SHOUT_AI_CHANNELS "channels"
@@ -244,7 +249,8 @@ int shout_set_protocol(shout_t *self, un
unsigned int shout_get_protocol(shout_t *self);
/* Instructs libshout to use nonblocking I/O. Must be called before
- * shout_open (no switching back and forth midstream at the moment). */
+ * shout_open (no switching back and forth midstream at the moment).
+ * nonblocking is one of SHOUT_BLOCKING_xxx. */
int shout_set_nonblocking(shout_t* self, unsigned int nonblocking);
unsigned int shout_get_nonblocking(shout_t *self);

View File

@ -0,0 +1,59 @@
Obtained from: https://gitlab.xiph.org/xiph/icecast-libshout/commit/0ac7ed9e84c3871d4427acc1ce59dca5e4af21ef
https://gitlab.xiph.org/xiph/icecast-libshout/commit/b807c1e2550718bdc73d65ac1b05255d18f45c54
--- src/connection.c.orig 2019-05-20 19:32:59 UTC
+++ src/connection.c
@@ -118,7 +118,7 @@ static struct timeval shout_connection_i
.tv_usec = (timeout % 1000) * 1000
};
return tv;
- } else if (con->nonblocking) {
+ } else if (con->nonblocking == SHOUT_BLOCKING_NONE) {
return tv_nonblocking;
} else {
return tv_blocking;
@@ -167,7 +167,7 @@ static shout_connection_return_state_t s
}
break;
case SHOUT_SOCKSTATE_CONNECTING:
- if (con->nonblocking) {
+ if (con->nonblocking == SHOUT_BLOCKING_NONE) {
ret = shout_connection_iter__wait_for_io(con, shout, 1, 1, 0);
if (ret != SHOUT_RS_DONE) {
return ret;
@@ -460,7 +460,7 @@ int shout_connection_ite
break; \
case SHOUT_RS_TIMEOUT: \
case SHOUT_RS_NOTNOW: \
- if (con->nonblocking) \
+ if (con->nonblocking == SHOUT_BLOCKING_NONE) \
return SHOUTERR_RETRY; \
retry = 1; \
break; \
@@ -518,7 +518,7 @@ int shout_connection_sel
}
int shout_connection_set_nonblocking(shout_connection_t *con, unsigned int nonblocking)
{
- if (!con)
+ if (!con || (nonblocking != SHOUT_BLOCKING_DEFAULT && nonblocking != SHOUT_BLOCKING_FULL && nonblocking != SHOUT_BLOCKING_NONE))
return SHOUTERR_INSANE;
if (con->socket != SOCK_ERROR)
@@ -563,13 +563,14 @@ int shout_connection_con
if (con->socket != SOCK_ERROR || con->current_socket_state != SHOUT_SOCKSTATE_UNCONNECTED)
return SHOUTERR_BUSY;
- shout_connection_set_nonblocking(con, shout_get_nonblocking(shout));
+ if (con->nonblocking == SHOUT_BLOCKING_DEFAULT)
+ shout_connection_set_nonblocking(con, shout_get_nonblocking(shout));
port = shout->port;
- if (shout_get_protocol(shout) == SHOUT_PROTOCOL_ICY)
+ if (con->impl == shout_icy_impl)
port++;
- if (con->nonblocking) {
+ if (con->nonblocking == SHOUT_BLOCKING_NONE) {
con->socket = sock_connect_non_blocking(shout->host, port);
} else {
con->socket = sock_connect(shout->host, port);

View File

@ -0,0 +1,25 @@
Obtained from: https://gitlab.xiph.org/xiph/icecast-libshout/commit/0ac7ed9e84c3871d4427acc1ce59dca5e4af21ef
--- src/shout.c.orig 2019-05-22 09:05:32 UTC
+++ src/shout.c
@@ -417,7 +417,7 @@ int shout_set_metadata(shout_t *self, sh
#ifdef HAVE_OPENSSL
shout_connection_select_tlsmode(connection, self->tls_mode);
#endif
- shout_connection_set_nonblocking(connection, 0);
+ shout_connection_set_nonblocking(connection, SHOUT_BLOCKING_FULL);
connection->target_message_state = SHOUT_MSGSTATE_PARSED_FINAL;
@@ -989,7 +989,10 @@ unsigned int shout_get_protocol(shout_t
int shout_set_nonblocking(shout_t *self, unsigned int nonblocking)
{
- if (!self || (nonblocking != 0 && nonblocking != 1))
+ if (nonblocking == SHOUT_BLOCKING_DEFAULT)
+ nonblocking = SHOUT_BLOCKING_FULL;
+
+ if (!self || (nonblocking != SHOUT_BLOCKING_FULL && nonblocking != SHOUT_BLOCKING_NONE))
return SHOUTERR_INSANE;
if (self->connection)

View File

@ -4,15 +4,14 @@
PORTNAME= openal-soft
PORTVERSION= 1.16.0
DISTVERSIONSUFFIX= -3.el7
PORTREVISION= 2
PORTREVISION= 3
CATEGORIES= audio linux
MASTER_SITES= EPEL7/o
MASTER_SITES= EPEL7/o \
https://harbottle.gitlab.io/wine32/7/i386/:i386
MAINTAINER= emulation@FreeBSD.org
COMMENT= 3D positional spatialized sound library (Linux CentOS ${LINUX_DIST_VER})
ONLY_FOR_ARCHS= amd64
USES= linux:c7
USE_LDCONFIG= yes
USE_LINUX= alsalib

View File

@ -1,4 +1,6 @@
TIMESTAMP = 1482094313
TIMESTAMP = 1567501651
SHA256 (centos/openal-soft-1.16.0-3.el7.i686.rpm) = 114e20b9feeb46dcdee2f52f7a4ba746085502dab51624506abc428bc2153408
SIZE (centos/openal-soft-1.16.0-3.el7.i686.rpm) = 286432
SHA256 (centos/openal-soft-1.16.0-3.el7.x86_64.rpm) = 775242cb1d603b85a53eb325c9d85a6aed9639968430c5d45893c90252b07429
SIZE (centos/openal-soft-1.16.0-3.el7.x86_64.rpm) = 288688
SHA256 (centos/openal-soft-1.16.0-3.el7.src.rpm) = 906734a0d59518d4ccd106ae5a96e01196f1214dab7a96e2c8cabd8f9f930d64

View File

@ -1,5 +1,7 @@
etc/openal/alsoft.conf
usr/bin/openal-info
usr/lib/libopenal.so.1
usr/lib/libopenal.so.1.16.0
usr/lib64/libopenal.so.1
usr/lib64/libopenal.so.1.16.0
%%PORTDOCS%%%%DOCSDIR%%/COPYING

View File

@ -0,0 +1,8 @@
etc/openal/alsoft.conf
usr/bin/openal-info
usr/lib/libopenal.so.1
usr/lib/libopenal.so.1.16.0
%%PORTDOCS%%%%DOCSDIR%%/COPYING
usr/share/openal/alsoftrc.sample
usr/share/openal/hrtf/default-44100.mhr
usr/share/openal/hrtf/default-48000.mhr

View File

@ -4,7 +4,7 @@
PORTNAME= mixxx
DISTVERSIONPREFIX= release-
DISTVERSION= 2.2.2
PORTREVISION= 1
PORTREVISION= 2
CATEGORIES= audio
MAINTAINER= acm@FreeBSD.org
@ -47,7 +47,7 @@ USE_QT= buildtools concurrent core dbus gui network opengl script scripttools \
CONFLICTS= mixxx20* mixxx21*
MAKE_ARGS= qtdir="${PREFIX}" install_root="${PREFIX}" \
build=release optimize=off ${GUI} battery=0 vamp=1 modplug=1
build=release optimize=off ${GUI} battery=0 vamp=1 modplug=1 mad=1
LATE_INSTALL_ARGS= --install-sandbox=${STAGEDIR}
GUI= qt5=1
@ -55,14 +55,17 @@ GUI= qt5=1
PORTDATA= *
PORTDOCS= *
OPTIONS_DEFINE= DOCS FAAD GPERFTOOLS HID LAME OPUS SHOUTCAST WAVPACK
OPTIONS_DEFAULT= FAAD HID SHOUTCAST OPUS WAVPACK
OPTIONS_DEFINE= DOCS FAAD FFMPEG GPERFTOOLS HID LAME OPUS SHOUTCAST WAVPACK
OPTIONS_DEFAULT= FAAD FFMPEG HID SHOUTCAST OPUS WAVPACK
OPTIONS_SUB= yes
FAAD_LIB_DEPENDS= libfaad.so:audio/faad \
libmp4v2.so:multimedia/mp4v2
FAAD_MAKE_ARGS= faad=1
FAAD_MAKE_ARGS_OFF= faad=0
FFMPEG_LIB_DEPENDS= libavcodec.so:multimedia/ffmpeg
FFMPEG_MAKE_ARGS= ffmpeg=1
FFMPEG_MAKE_ARGS_OFF= ffmpeg=0
GPERFTOOLS_LIB_DEPENDS= libtcmalloc.so:devel/google-perftools
GPERFTOOLS_MAKE_ARGS= perftools=1
GPERFTOOLS_MAKE_ARGS_OFF= perftools=0

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1564587441
SHA256 (KDE/plasma/5.16.4/plasma-pa-5.16.4.tar.xz) = 9b166e11f7115576181c17f0ced51b9a7ec689334d4b15ebb55d4e6e7ff6cbd4
SIZE (KDE/plasma/5.16.4/plasma-pa-5.16.4.tar.xz) = 100748
TIMESTAMP = 1567529834
SHA256 (KDE/plasma/5.16.5/plasma-pa-5.16.5.tar.xz) = e029563d50cc6266a4a3e22574c33fef4670e1aaab18630eb30769e2167acc96
SIZE (KDE/plasma/5.16.5/plasma-pa-5.16.5.tar.xz) = 101100

View File

@ -87,6 +87,8 @@ share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.volume.mo
share/locale/lt/LC_MESSAGES/kcm_pulseaudio.mo
share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.volume.mo
share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.plasma.volume.mo
share/locale/ml/LC_MESSAGES/kcm_pulseaudio.mo
share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.volume.mo
share/locale/nb/LC_MESSAGES/kcm_pulseaudio.mo
share/locale/nl/LC_MESSAGES/kcm_pulseaudio.mo
share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.volume.mo

View File

@ -11,8 +11,9 @@ COMMENT= Iterations per second enhancement to Benchmark
LICENSE= MIT
NO_ARCH= yes
USE_RUBY= yes
USES= gem
USE_RUBY= yes
NO_ARCH= yes
.include <bsd.port.mk>

View File

@ -3,7 +3,7 @@
PORTNAME= zcad
PORTVERSION= 0.9.8.4
PORTREVISION= 1
PORTREVISION= 2
CATEGORIES= cad
PKGNAMESUFFIX= ${LAZARUS_PKGNAMESUFFIX}

View File

@ -4,7 +4,7 @@
PORTNAME= cqrlog
PORTVERSION= 2.3.0
DISTVERSIONPREFIX= v
PORTREVISION= 1
PORTREVISION= 3
CATEGORIES= comms hamradio
PKGNAMESUFFIX= ${LAZARUS_PKGNAMESUFFIX}
@ -15,7 +15,11 @@ LICENSE= GPLv2
LIB_DEPENDS= libhamlib.so:comms/hamlib
USES= fpc lazarus:flavors shebangfix ssl:run dos2unix mysql
USES= fpc gnome lazarus:flavors shebangfix ssl:run dos2unix \
mysql:server xorg
USE_GNOME+= cairo
USE_XORG= x11
USE_GITHUB= yes
GH_ACCOUNT= ok2cqr
@ -32,7 +36,6 @@ MAKE_ENV+= LAZBUILD_CMD="${LAZBUILD_CMD}" \
LCL_PLATFORM="${LCL_PLATFORM}" \
LAZARUS_DIR="${LAZARUS_DIR}"
USE_XORG+= x11
NO_LAZBUILD= yes
LAZBUILD_ARGS= -d --pcp=.
LAZARUS_NO_FLAVORS=qt5

View File

@ -1,7 +1,7 @@
# $FreeBSD$
PORTNAME= text-unidecode
DISTVERSION= 1.2
DISTVERSION= 1.3
CATEGORIES= converters python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
@ -9,12 +9,19 @@ PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= kai@FreeBSD.org
COMMENT= Most basic port of Perl's Text::Unidecode module
LICENSE= ART10
LICENSE_FILE= ${WRKSRC}/LICENSE
LICENSE= ART10 GPLv1+
LICENSE_COMB= dual
LICENSE_FILE_ART10= ${WRKSRC}/LICENSE
LICENSE_FILE_GPLv1= ${WRKSRC}/LICENSE
TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytest>0:devel/py-pytest@${PY_FLAVOR}
USES= python
USE_PYTHON= distutils autoplist
NO_ARCH= yes
do-test:
@cd ${WRKSRC} && ${PYTHON_CMD} -m pytest -rs -v
.include <bsd.port.mk>

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1530183792
SHA256 (text-unidecode-1.2.tar.gz) = 5a1375bb2ba7968740508ae38d92e1f889a0832913cb1c447d5e2046061a396d
SIZE (text-unidecode-1.2.tar.gz) = 76872
TIMESTAMP = 1567451164
SHA256 (text-unidecode-1.3.tar.gz) = bad6603bb14d279193107714b288be206cac565dfa49aa5b105294dd5c4aab93
SIZE (text-unidecode-1.3.tar.gz) = 76885

View File

@ -1,7 +1,7 @@
# $FreeBSD$
PORTNAME= json-ld-preloaded
PORTVERSION= 3.0.3
PORTVERSION= 3.0.4
CATEGORIES= converters rubygems
MASTER_SITES= RG

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1564157951
SHA256 (rubygem/json-ld-preloaded-3.0.3.gem) = d3af9499870fbbeb4e17c2f69531bed12cfaa04ea1caf646bdb6795c1cadb853
SIZE (rubygem/json-ld-preloaded-3.0.3.gem) = 107008
TIMESTAMP = 1567510044
SHA256 (rubygem/json-ld-preloaded-3.0.4.gem) = 316980ac5faf4c863946012b3d40ed96680a5da8c8204c72ed7169e4bdfb6442
SIZE (rubygem/json-ld-preloaded-3.0.4.gem) = 116224

View File

@ -14,8 +14,9 @@ LICENSE_FILE= ${WRKSRC}/LICENSE
RUN_DEPENDS= rubygem-json>=1.6.0:devel/rubygem-json
NO_ARCH= yes
USE_RUBY= yes
USES= gem
USE_RUBY= yes
NO_ARCH= yes
.include <bsd.port.mk>

View File

@ -1,6 +1,6 @@
# $FreeBSD$
PORTREVISION= 3
PORTREVISION= 4
CATEGORIES= databases lang
PKGNAMESUFFIX= -fpindexer

View File

@ -1,6 +1,6 @@
# $FreeBSD$
PORTREVISION= 2
PORTREVISION= 3
CATEGORIES= databases lang
PKGNAMESUFFIX= -gdbm

View File

@ -1,7 +1,7 @@
# Created by: John Merryweather Cooper
# $FreeBSD$
PORTREVISION= 2
PORTREVISION= 3
CATEGORIES= databases lang
PKGNAMESUFFIX= -ibase

View File

@ -1,7 +1,7 @@
# Created by: John Merryweather Cooper et al
# $FreeBSD$
PORTREVISION= 3
PORTREVISION= 4
CATEGORIES= databases lang
PKGNAMESUFFIX= -postgres

View File

@ -14,7 +14,7 @@ COMMENT= Perl Interface to the Google LevelDB NoSQL database
LICENSE= ART10 GPLv1+
LICENSE_COMB= dual
NOT_FOR_ARCHS= aarch64 powerpc powerpc64 powerpcspe
NOT_FOR_ARCHS= aarch64 powerpc powerpcspe
NOT_FOR_ARCHS_REASON= does not build: Please implement AtomicPointer for this platform
BROKEN_sparc64= does not build: unrecognized command line options
@ -29,6 +29,8 @@ MAKE_ARGS= CC="${CXX}"
.if ${CHOSEN_COMPILER_TYPE} == clang
CFLAGS+= -Wno-reserved-user-defined-literal
.else
CFLAGS+= -DLEVELDB_CSTDATOMIC_PRESENT
.endif
post-patch:

View File

@ -0,0 +1,11 @@
--- port/atomic_pointer.h.orig 2019-08-25 00:44:43 UTC
+++ port/atomic_pointer.h
@@ -21,7 +21,7 @@
#include <stdint.h>
#ifdef LEVELDB_CSTDATOMIC_PRESENT
-#include <cstdatomic>
+#include <atomic>
#endif
#ifdef OS_WIN
#include <windows.h>

View File

@ -14,15 +14,15 @@ LICENSE_FILE= ${WRKSRC}/LICENSE
BUILD_DEPENDS= libmemcached>=1.0.18:databases/libmemcached
LIB_DEPENDS= libmemcached.so:databases/libmemcached
OPTIONS_DEFINE= IGBINARY SASL
OPTIONS_DEFAULT=SASL
IGBINARY_DESC= Binary serializer support
USES= php:pecl pkgconfig
USE_PHP= json:build session:build
CONFIGURE_ARGS= --with-libmemcached-dir=${LOCALBASE}
OPTIONS_DEFINE= IGBINARY SASL
OPTIONS_DEFAULT=SASL
IGBINARY_DESC= Binary serializer support
IGBINARY_CONFIGURE_ENABLE= memcached-igbinary
IGBINARY_USE= PHP=igbinary:build
SASL_CONFIGURE_ENABLE= memcached-sasl

View File

@ -2,7 +2,7 @@
# $FreeBSD$
PORTNAME= pgspecial
PORTVERSION= 1.11.6
PORTVERSION= 1.11.7
CATEGORIES= databases python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
@ -21,7 +21,4 @@ USE_PYTHON= autoplist concurrent distutils
NO_ARCH= yes
post-patch:
@${REINPLACE_CMD} -e '/psycopg2/ s|,*<2.8,*||' ${WRKSRC}/setup.py ${WRKSRC}/pgspecial.egg-info/requires.txt
.include <bsd.port.mk>

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1567239990
SHA256 (pgspecial-1.11.6.tar.gz) = a6887c6ac49f8e8f122312212fb7784f03acd5b1f7a5c3ef79d841ae9c3eb99d
SIZE (pgspecial-1.11.6.tar.gz) = 62830
TIMESTAMP = 1567510030
SHA256 (pgspecial-1.11.7.tar.gz) = f7501681e276b07cb260e665ce578ff5c64bcd1bc58bde27a01b78425afdc173
SIZE (pgspecial-1.11.7.tar.gz) = 62884

View File

@ -14,10 +14,11 @@ LICENSE_FILE= ${WRKSRC}/MIT-LICENSE
RUN_DEPENDS= rubygem-activemodel5>=5.0:databases/rubygem-activemodel5 \
rubygem-activesupport5>=5.0:devel/rubygem-activesupport5 \
rubygem-builder>=3.1:devel/rubygem-builder
rubygem-builder>=3.1<4:devel/rubygem-builder
USES= gem
USE_RUBY= yes
NO_ARCH= yes
USE_RUBY= yes
USES= gem
.include <bsd.port.mk>

View File

@ -12,11 +12,11 @@ COMMENT= Action Dispatch session store backed by an Active Record class
LICENSE= MIT
LICENSE_FILE= ${WRKSRC}/MIT-LICENSE
RUN_DEPENDS= rubygem-actionpack4>=4.0.0:www/rubygem-actionpack4 \
rubygem-activerecord4>=4.0.0:databases/rubygem-activerecord4 \
rubygem-multi_json>=1.11.2:devel/rubygem-multi_json \
rubygem-rack>=1.5.2:www/rubygem-rack \
rubygem-railties4>=4.0.0:www/rubygem-railties4
RUN_DEPENDS= rubygem-actionpack4>=4.0:www/rubygem-actionpack4 \
rubygem-activerecord4>=4.0:databases/rubygem-activerecord4 \
rubygem-multi_json>=1.11.2<2:devel/rubygem-multi_json \
rubygem-rack>=1.5.2,3<3,3:www/rubygem-rack \
rubygem-railties4>=4.0:www/rubygem-railties4
USES= gem
USE_RUBY= yes

View File

@ -6,7 +6,7 @@ PORTEPOCH= 1
CATEGORIES= databases rubygems
MASTER_SITES= RG
MAINTAINER= ruby@FreeBSD.org
MAINTAINER= sunpoet@FreeBSD.org
COMMENT= Relational Algebra for Ruby
LICENSE= MIT

View File

@ -12,8 +12,9 @@ LICENSE= MIT
RUN_DEPENDS= rubygem-eventmachine>=0.12.10:devel/rubygem-eventmachine
USE_RUBY= yes
USES= gem
USE_RUBY= yes
NO_ARCH= yes
.include <bsd.port.mk>

View File

@ -18,8 +18,9 @@ RUN_DEPENDS= rubygem-gibbler>=0.8.6:devel/rubygem-gibbler \
rubygem-storable>=0.8.6:devel/rubygem-storable \
rubygem-uri-redis>=0.4.2:net/rubygem-uri-redis
NO_ARCH= yes
USE_RUBY= yes
USES= gem
USE_RUBY= yes
NO_ARCH= yes
.include <bsd.port.mk>

View File

@ -11,8 +11,8 @@ COMMENT= ActiveRecord adapter for Flipper
LICENSE= MIT
RUN_DEPENDS= rubygem-activerecord50>=3.2:databases/rubygem-activerecord50 \
rubygem-flipper>=${PORTVERSION}:devel/rubygem-flipper
RUN_DEPENDS= rubygem-activerecord50>=3.2<6:databases/rubygem-activerecord50 \
rubygem-flipper>=${PORTVERSION}<0.17:devel/rubygem-flipper
USES= gem
USE_RUBY= yes

View File

@ -13,8 +13,8 @@ COMMENT= ActiveRecord adapter for Flipper
LICENSE= MIT
RUN_DEPENDS= rubygem-activerecord50>=3.2:databases/rubygem-activerecord50 \
rubygem-flipper013>=${PORTVERSION}:devel/rubygem-flipper013
RUN_DEPENDS= rubygem-activerecord50>=3.2<6:databases/rubygem-activerecord50 \
rubygem-flipper013>=${PORTVERSION}<0.14:devel/rubygem-flipper013
USES= gem
USE_RUBY= yes

View File

@ -12,8 +12,8 @@ LICENSE= MIT
LICENSE_FILE= ${WRKSRC}/LICENSE
RUN_DEPENDS= rubygem-activemodel4>=4.2.1:databases/rubygem-activemodel4 \
rubygem-faraday>=0.8:www/rubygem-faraday \
rubygem-multi_json>=1.7:devel/rubygem-multi_json
rubygem-faraday>=0.8<1.0:www/rubygem-faraday \
rubygem-multi_json>=1.7<2:devel/rubygem-multi_json
USES= gem
USE_RUBY= yes

View File

@ -13,15 +13,16 @@ COMMENT= Ruby interface to PostgreSQL library
LICENSE= BSD2CLAUSE RUBY
LICENSE_COMB= dual
LICENSE_FILE_BSD2CLAUSE =${WRKSRC}/BSDL
LICENSE_FILE_RUBY =${WRKSRC}/LICENSE
LICENSE_FILE_BSD2CLAUSE=${WRKSRC}/BSDL
LICENSE_FILE_RUBY= ${WRKSRC}/LICENSE
PORTSCOUT= limit:^0\.
USES= gem pgsql
USE_RUBY= yes
CONFIGURE_ARGS= --with-pgsql-include-dir=`${PG_CONFIG} --includedir` \
--with-pgsql-lib-dir=`${PG_CONFIG} --libdir`
PG_CONFIG= ${LOCALBASE}/bin/pg_config
USE_RUBY= yes
USES= gem pgsql
PORTSCOUT= limit:^0\.
.include <bsd.port.mk>

View File

@ -13,10 +13,11 @@ COMMENT= Ruby client library for Redis, the key value storage server
LICENSE= MIT
LICENSE_FILE= ${WRKSRC}/LICENSE
PORTSCOUT= limit:^3\.
USES= gem
USE_RUBY= yes
NO_ARCH= yes
USE_RUBY= yes
USES= gem
PORTSCOUT= limit:^3\.
.include <bsd.port.mk>

View File

@ -12,12 +12,12 @@ COMMENT= Tarantool KV-storage client
LICENSE= BSD2CLAUSE
LICENSE_FILE= ${WRKSRC}/LICENSE
RUN_DEPENDS= rubygem-bin_utils>=0.0.3:devel/rubygem-bin_utils \
RUN_DEPENDS= rubygem-bin_utils>=0.0.3<0.1:devel/rubygem-bin_utils \
rubygem-iproto>=0.3.17:net/rubygem-iproto \
rubygem-murmurhash3>=0.1.1:devel/rubygem-murmurhash3 \
rubygem-sumbur>=0.0.2:devel/rubygem-sumbur
USE_RUBY= yes
USES= gem
USE_RUBY= yes
.include <bsd.port.mk>

View File

@ -2,8 +2,7 @@
# $FreeBSD$
PORTNAME= calibre
PORTVERSION= 3.47.0
PORTREVISION= 1
PORTVERSION= 3.47.1
CATEGORIES= deskutils python
MASTER_SITES= http://download.calibre-ebook.com/${PORTVERSION}/

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1567201668
SHA256 (calibre-3.47.0.tar.xz) = c473457ba4e455b1c68f9933de593b204c2cb0cb3252159987f1a89bf8215256
SIZE (calibre-3.47.0.tar.xz) = 38720656
TIMESTAMP = 1567407078
SHA256 (calibre-3.47.1.tar.xz) = b309933f295cddf05553c60012d8c0376aae732a729688f646466cca55369f9e
SIZE (calibre-3.47.1.tar.xz) = 38710008

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1564587442
SHA256 (KDE/plasma/5.16.4/milou-5.16.4.tar.xz) = de9addbc504135839b1735742938d340cb191827606aa390f4b6ce1625c1ed89
SIZE (KDE/plasma/5.16.4/milou-5.16.4.tar.xz) = 57452
TIMESTAMP = 1567529835
SHA256 (KDE/plasma/5.16.5/milou-5.16.5.tar.xz) = bfcdba29262dda9f386ee99132053ad5751194b2df8219899fcbb0b3699afcd5
SIZE (KDE/plasma/5.16.5/milou-5.16.5.tar.xz) = 57700

View File

@ -57,6 +57,8 @@ share/locale/ko/LC_MESSAGES/milou.mo
share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.milou.mo
share/locale/lt/LC_MESSAGES/milou.mo
share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.milou.mo
share/locale/ml/LC_MESSAGES/milou.mo
share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.milou.mo
share/locale/nb/LC_MESSAGES/milou.mo
share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.milou.mo
share/locale/nds/LC_MESSAGES/milou.mo

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1564587443
SHA256 (KDE/plasma/5.16.4/sddm-kcm-5.16.4.tar.xz) = 340034c5475d751c19c96a75445fa50877fad1c4de3422bc02f4b95e8f14bd68
SIZE (KDE/plasma/5.16.4/sddm-kcm-5.16.4.tar.xz) = 62176
TIMESTAMP = 1567529846
SHA256 (KDE/plasma/5.16.5/sddm-kcm-5.16.5.tar.xz) = 4220d18f1a04c767649bffee1aed6c2b2c12c60cd7d6ca6fabc3dbec1ec3f127
SIZE (KDE/plasma/5.16.5/sddm-kcm-5.16.5.tar.xz) = 62164

View File

@ -28,6 +28,7 @@ share/locale/it/LC_MESSAGES/kcm_sddm.mo
share/locale/ja/LC_MESSAGES/kcm_sddm.mo
share/locale/ko/LC_MESSAGES/kcm_sddm.mo
share/locale/lt/LC_MESSAGES/kcm_sddm.mo
share/locale/ml/LC_MESSAGES/kcm_sddm.mo
share/locale/nb/LC_MESSAGES/kcm_sddm.mo
share/locale/nl/LC_MESSAGES/kcm_sddm.mo
share/locale/nn/LC_MESSAGES/kcm_sddm.mo

View File

@ -15,9 +15,10 @@ LICENSE_FILE= ${WRKSRC}/COPYING
RUN_DEPENDS= rubygem-mail>=2.4.3:mail/rubygem-mail \
rubygem-term-ansicolor>=1.0.7:devel/rubygem-term-ansicolor
NO_ARCH= yes
USE_RUBY= yes
USES= gem
USE_RUBY= yes
NO_ARCH= yes
PLIST_FILES= bin/tj3 \
bin/tj3client \

View File

@ -4316,6 +4316,7 @@
SUBDIR += py-constantly
SUBDIR += py-construct
SUBDIR += py-contextlib2
SUBDIR += py-convertdate
SUBDIR += py-cookiecutter
SUBDIR += py-coreapi
SUBDIR += py-coreschema
@ -4405,6 +4406,7 @@
SUBDIR += py-fastentrypoints
SUBDIR += py-fastimport
SUBDIR += py-fastnumbers
SUBDIR += py-fbprophet
SUBDIR += py-filemagic
SUBDIR += py-fileutils
SUBDIR += py-first
@ -4493,6 +4495,7 @@
SUBDIR += py-hghooks
SUBDIR += py-hgsubversion
SUBDIR += py-hgtools
SUBDIR += py-holidays
SUBDIR += py-http-prompt
SUBDIR += py-humanize
SUBDIR += py-hypothesis
@ -4619,6 +4622,7 @@
SUBDIR += py-logilab-common
SUBDIR += py-logutils
SUBDIR += py-louie
SUBDIR += py-lunardate
SUBDIR += py-lxml
SUBDIR += py-macholib
SUBDIR += py-magic

View File

@ -1,8 +1,7 @@
# $FreeBSD$
PORTNAME?= arcanist
PORTVERSION?= 20181231
PORTREVISION?= 2
PORTVERSION?= 20190622
CATEGORIES?= devel
PKGNAMESUFFIX= ${SLAVE_PKGNAMESUFFIX}${PHP_PKGNAMESUFFIX}
@ -14,7 +13,7 @@ SLAVEPORT?= lib
LICENSE= APACHE20
LICENSE_FILE= ${WRKSRC}/LICENSE
RUN_DEPENDS= ${PHP_PKGNAMEPREFIX}libphutil>0:devel/libphutil@${PHP_FLAVOR}
RUN_DEPENDS= ${PHP_PKGNAMEPREFIX}libphutil>=20190831:devel/libphutil@${PHP_FLAVOR}
PHP_DESTDIR= lib/php/arcanist
USES= php:flavors python:2.7,env shebangfix
@ -24,7 +23,7 @@ USE_GITHUB= yes
NO_BUILD= yes
NO_ARCH= yes
GH_ACCOUNT= phacility
GH_TAGNAME= 25c2381
GH_TAGNAME= feb5f4d
PLIST= ${.CURDIR}/pkg-plist
.if ${SLAVEPORT} == lib

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1546205605
SHA256 (phacility-arcanist-20181231-25c2381_GH0.tar.gz) = f65055a61798f1b761a53244c1fb59feb575142fe0055cee2a3224b3b3df061c
SIZE (phacility-arcanist-20181231-25c2381_GH0.tar.gz) = 644722
TIMESTAMP = 1567518400
SHA256 (phacility-arcanist-20190622-feb5f4d_GH0.tar.gz) = 11cf1bd1ed42fb23ce7d37931b13177f2faa196eb57c4a6f2d21f00f1b887a22
SIZE (phacility-arcanist-20190622-feb5f4d_GH0.tar.gz) = 649451

View File

@ -823,6 +823,7 @@ lib/php/arcanist/src/parser/__tests__/patches/fb28468d25a5fdd063aca4ca559454c998
lib/php/arcanist/src/parser/diff/ArcanistDiffChange.php
lib/php/arcanist/src/parser/diff/ArcanistDiffChangeType.php
lib/php/arcanist/src/parser/diff/ArcanistDiffHunk.php
lib/php/arcanist/src/ref/ArcanistBuildPlanRef.php
lib/php/arcanist/src/ref/ArcanistBuildRef.php
lib/php/arcanist/src/repository/api/ArcanistGitAPI.php
lib/php/arcanist/src/repository/api/ArcanistGitUpstreamPath.php

View File

@ -2,8 +2,7 @@
# $FreeBSD$
PORTNAME= avro
PORTVERSION= 1.9.0
PORTREVISION= 1
PORTVERSION= 1.9.1
DISTVERSIONPREFIX= release-
CATEGORIES= devel
PKGNAMESUFFIX= -c

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1558166522
SHA256 (apache-avro-release-1.9.0_GH0.tar.gz) = 832558e90c97c9305bff37de1146a1fa8acbb83dfa022e8f174b348fd27f8510
SIZE (apache-avro-release-1.9.0_GH0.tar.gz) = 1823945
TIMESTAMP = 1567510022
SHA256 (apache-avro-release-1.9.1_GH0.tar.gz) = e382ac6685544ae9539084793ac0a4ffd377ba476ea756439625552e14d212b0
SIZE (apache-avro-release-1.9.1_GH0.tar.gz) = 1845142

View File

@ -2,9 +2,8 @@
# $FreeBSD$
PORTNAME= avro
PORTVERSION= 1.9.0
PORTVERSION= 1.9.1
DISTVERSIONPREFIX= release-
PORTREVISION= 2
CATEGORIES= devel
PKGNAMESUFFIX= -cpp

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1558166524
SHA256 (apache-avro-release-1.9.0_GH0.tar.gz) = 832558e90c97c9305bff37de1146a1fa8acbb83dfa022e8f174b348fd27f8510
SIZE (apache-avro-release-1.9.0_GH0.tar.gz) = 1823945
TIMESTAMP = 1567510022
SHA256 (apache-avro-release-1.9.1_GH0.tar.gz) = e382ac6685544ae9539084793ac0a4ffd377ba476ea756439625552e14d212b0
SIZE (apache-avro-release-1.9.1_GH0.tar.gz) = 1845142

View File

@ -1,7 +1,7 @@
# $FreeBSD$
PORTNAME= ccls
DISTVERSION= 0.20190823
DISTVERSION= 0.20190823.1
CATEGORIES= devel
MASTER_SITES= LOCAL/tobik
@ -28,9 +28,8 @@ PORTDOCS= *
OPTIONS_DEFINE= DOCS
DOCS_MASTER_SITES= LOCAL/tobik:docs \
https://pkg.tobik.me/distfiles/:docs
DOCS_DISTFILES= MaskRay-ccls.wiki-20190226.tar.gz:docs
DOCS_MASTER_SITES= LOCAL/tobik:docs
DOCS_DISTFILES= MaskRay-ccls.wiki-20190903.tar.gz:docs
post-install-DOCS-on:
@${MKDIR} ${STAGEDIR}${DOCSDIR}

View File

@ -1,5 +1,5 @@
TIMESTAMP = 1566589885
SHA256 (MaskRay-ccls.wiki-20190226.tar.gz) = 29f9c5d75e7134d21b77987d4b30baeb9b84a6b70bde53add119be00875c31dd
SIZE (MaskRay-ccls.wiki-20190226.tar.gz) = 29128
SHA256 (MaskRay-ccls-0.20190823_GH0.tar.gz) = 0176a10b2fa567862e5a93ac16a5bb92940f7bab7c3759b35be1a256cd2f1a66
SIZE (MaskRay-ccls-0.20190823_GH0.tar.gz) = 160023
TIMESTAMP = 1567510618
SHA256 (MaskRay-ccls.wiki-20190903.tar.gz) = da8d2ed4464ca445001eb2b22439ab265314ad8cf86b4b9509ac8a6a19c481e8
SIZE (MaskRay-ccls.wiki-20190903.tar.gz) = 32080
SHA256 (MaskRay-ccls-0.20190823.1_GH0.tar.gz) = 247e9fd99520fe2cf010c558eb2d76350e761ac3070f3bd34ab632eedba9b655
SIZE (MaskRay-ccls-0.20190823.1_GH0.tar.gz) = 160148

View File

@ -1,8 +1,7 @@
# $FreeBSD$
PORTNAME= clixon
PORTVERSION= 3.9.0
PORTREVISION= 1
PORTVERSION= 4.0.0
CATEGORIES= devel
MAINTAINER= dcornejo@netgate.com
@ -21,12 +20,16 @@ USE_LDCONFIG= yes
USE_GITHUB= yes
GH_ACCOUNT= clicon
MAKE_ARGS= wwwdir=${PREFIX}/sbin wwwuser=${WWWOWN}
MAKE_ARGS= wwwdir=${PREFIX}/sbin \
wwwuser=${WWWOWN}
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --with-cligen=${LOCALBASE} --sysconfdir=${ETCDIR}
CONFIGURE_ARGS= --sysconfdir=${ETCDIR} \
--with-cligen=${LOCALBASE}
CONFIGURE_ENV= YACC="bison -y"
MAKE_JOBS_UNSAFE=yes
SUB_FILES= pkg-message
MAKE_JOBS_UNSAFE= yes
.include <bsd.port.mk>

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1550886761
SHA256 (clicon-clixon-3.9.0_GH0.tar.gz) = 3be8eb904a505cc740568e06f75123c6e9b4e0e8173faccdd4a091b1dccfca60
SIZE (clicon-clixon-3.9.0_GH0.tar.gz) = 781568
TIMESTAMP = 1563660130
SHA256 (clicon-clixon-4.0.0_GH0.tar.gz) = b4f8ffd0e781b2e0097a2ed7bcba65e8fe8e50ae08a35f6867459a3a84a35f39
SIZE (clicon-clixon-4.0.0_GH0.tar.gz) = 952149

View File

@ -1,11 +0,0 @@
--- apps/netconf/netconf_main.c.orig 2019-02-21 19:04:04 UTC
+++ apps/netconf/netconf_main.c
@@ -312,7 +312,7 @@ static int
timeout_fn(int s,
void *arg)
{
- clicon_err(OE_EVENTS, ETIME, "User request timeout");
+ clicon_err(OE_EVENTS, ETIMEDOUT, "User request timeout");
return -1;
}

View File

@ -0,0 +1,12 @@
--- configure.ac.orig 2019-07-13 14:33:23 UTC
+++ configure.ac
@@ -123,9 +123,6 @@ AC_PROG_LEX
if test "$LEX" = ":"; then
AC_MSG_ERROR(CLIXON does not find lex or flex.)
fi
-if test "$YACC" != "bison -y"; then
- AC_MSG_ERROR(CLIXON does not find bison. There are several problems with yacc and byacc. Please install bison.)
-fi
if test "$prefix" = "NONE"; then
prefix=${ac_default_prefix}

View File

@ -1,11 +0,0 @@
--- lib/clixon/clixon_plugin.h.orig 2019-02-21 19:04:04 UTC
+++ lib/clixon/clixon_plugin.h
@@ -49,8 +49,6 @@
/*
* Types
*/
-/* Dynamicically loadable plugin object handle. @see return value of dlopen(3) */
-typedef void *plghndl_t;
/*! Registered RPC callback function
* @param[in] h Clicon handle

View File

@ -0,0 +1,7 @@
Version 4.0.0 is much stricter and more standards compliant
It is very likely that you will need to change your code.
See https://github.com/clicon/clixon/blob/master/CHANGELOG.md
for details on the changes, especially the API changes.

View File

@ -2,26 +2,26 @@ bin/clixon_cli
bin/clixon_netconf
%%ETCDIR%%/clixonrc
lib/libclixon.so
lib/libclixon.so.3
lib/libclixon.so.3.9
lib/libclixon.so.4
lib/libclixon.so.4.0
lib/libclixon_backend.so
lib/libclixon_backend.so.3
lib/libclixon_backend.so.3.9
lib/libclixon_backend.so.4
lib/libclixon_backend.so.4.0
lib/libclixon_cli.so
lib/libclixon_cli.so.3
lib/libclixon_cli.so.3.9
lib/libclixon_cli.so.4
lib/libclixon_cli.so.4.0
lib/libclixon_netconf.so
lib/libclixon_netconf.so.3
lib/libclixon_netconf.so.3.9
lib/libclixon_netconf.so.4
lib/libclixon_netconf.so.4.0
lib/libclixon_restconf.so
lib/libclixon_restconf.so.3
lib/libclixon_restconf.so.3.9
lib/xmldb/text.so
lib/libclixon_restconf.so.4
lib/libclixon_restconf.so.4.0
sbin/clixon_backend
sbin/clixon_restconf
%%DATADIR%%/clixon-config@2019-02-06.yang
%%DATADIR%%/clixon-lib@2019-01-02.yang
%%DATADIR%%/clixon-config@2019-06-05.yang
%%DATADIR%%/clixon-lib@2019-06-05.yang
%%DATADIR%%/clixon-rfc5277@2008-07-01.yang
%%DATADIR%%/clixon-xml-changelog@2019-03-21.yang
%%DATADIR%%/iana-if-type@2014-05-08.yang
%%DATADIR%%/ietf-inet-types@2013-07-15.yang
%%DATADIR%%/ietf-interfaces@2018-02-20.yang

View File

@ -1,6 +1,6 @@
# $FreeBSD$
PORTREVISION= 3
PORTREVISION= 4
CATEGORIES= devel lang
PKGNAMESUFFIX= -fcl-db

View File

@ -2,7 +2,7 @@
CATEGORIES= devel lang
PKGNAMESUFFIX= -fcl-js
PORTREVISION= 2
PORTREVISION= 3
COMMENT= Free Pascal Javascript scanner/parser/syntax tree (FCL)

View File

@ -2,7 +2,7 @@
CATEGORIES= devel lang
PKGNAMESUFFIX= -fcl-json
PORTREVISION= 2
PORTREVISION= 3
COMMENT= Free Pascal JavaScript Object Notation implemenation (FCL)

View File

@ -2,7 +2,7 @@
CATEGORIES= devel lang
PKGNAMESUFFIX= -fcl-passrc
PORTREVISION= 2
PORTREVISION= 3
COMMENT= Free Pascal language parsing library (FPC)

View File

@ -2,7 +2,7 @@
CATEGORIES= devel lang
PKGNAMESUFFIX= -fcl-pdf
PORTREVISION= 2
PORTREVISION= 3
COMMENT= Free Pascal pdf (FCL)

View File

@ -1,6 +1,6 @@
# $FreeBSD$
PORTREVISION= 3
PORTREVISION= 4
CATEGORIES= devel lang
PKGNAMESUFFIX= -fcl-sdo

View File

@ -2,7 +2,7 @@
CATEGORIES= devel lang
PKGNAMESUFFIX= -fcl-stl
PORTREVISION= 2
PORTREVISION= 3
COMMENT= Free Pascal generic container library (FCL)

View File

@ -2,7 +2,7 @@
CATEGORIES= devel lang
PKGNAMESUFFIX= -fcl-web
PORTREVISION= 4
PORTREVISION= 5
COMMENT= Free Pascal web application libary (FCL)

View File

@ -1,6 +1,6 @@
# $FreeBSD$
PORTREVISION= 3
PORTREVISION= 4
CATEGORIES= devel lang
PKGNAMESUFFIX= -fppkg

View File

@ -1,6 +1,6 @@
# $FreeBSD$
PORTREVISION= 2
PORTREVISION= 3
CATEGORIES= devel lang
PKGNAMESUFFIX= -sdl

View File

@ -2,7 +2,7 @@
# $FreeBSD$
PORTNAME= liblouis
PORTVERSION= 3.10.0
PORTVERSION= 3.11.0
DISTVERSIONPREFIX= v
CATEGORIES= devel

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1559636224
SHA256 (liblouis-liblouis-v3.10.0_GH0.tar.gz) = 6dad932844cbfd38cfde7d73681ca79ac9cfbd1d1ac5e6dfc05d71696334da3b
SIZE (liblouis-liblouis-v3.10.0_GH0.tar.gz) = 13335626
TIMESTAMP = 1567490188
SHA256 (liblouis-liblouis-v3.11.0_GH0.tar.gz) = 1ed141b69cc90f8f1f98556e3b837b217deb7fabe17da94557b5a26a784dd536
SIZE (liblouis-liblouis-v3.11.0_GH0.tar.gz) = 13466199

View File

@ -5,6 +5,7 @@
%%DATADIR%%/tables/Pl-Pl-g1.utb
%%DATADIR%%/tables/Se-Se-g1.utb
%%DATADIR%%/tables/afr-za-g1.ctb
%%DATADIR%%/tables/afr-za-g2.ctb
%%DATADIR%%/tables/ar-ar-comp8.utb
%%DATADIR%%/tables/ar-ar-g1.utb
%%DATADIR%%/tables/ar-ar-g2.ctb
@ -85,7 +86,6 @@
%%DATADIR%%/tables/dra.ctb
%%DATADIR%%/tables/dra.tbl
%%DATADIR%%/tables/el.ctb
%%DATADIR%%/tables/el.tbl
%%DATADIR%%/tables/en_CA.ctb
%%DATADIR%%/tables/en_CA.tbl
%%DATADIR%%/tables/en-GB-g2.ctb
@ -97,6 +97,7 @@
%%DATADIR%%/tables/en-gb-comp8.ctb
%%DATADIR%%/tables/en-gb-g1.utb
%%DATADIR%%/tables/en-in-g1.ctb
%%DATADIR%%/tables/en-nabcc.utb
%%DATADIR%%/tables/en-ueb-chardefs.uti
%%DATADIR%%/tables/en-ueb-g1.ctb
%%DATADIR%%/tables/en-ueb-g2.ctb
@ -129,8 +130,6 @@
%%DATADIR%%/tables/fi1.ctb
%%DATADIR%%/tables/fi2.ctb
%%DATADIR%%/tables/fi-fi-8dot.ctb
%%DATADIR%%/tables/fi-fi.ctb
%%DATADIR%%/tables/fi.tbl
%%DATADIR%%/tables/fi.utb
%%DATADIR%%/tables/fr-bfu-comp68.cti
%%DATADIR%%/tables/fr-bfu-comp6.utb
@ -138,14 +137,16 @@
%%DATADIR%%/tables/fr-bfu-g2.ctb
%%DATADIR%%/tables/ga-g1.utb
%%DATADIR%%/tables/ga-g2.ctb
%%DATADIR%%/tables/ga.tbl
%%DATADIR%%/tables/gd.ctb
%%DATADIR%%/tables/gd.tbl
%%DATADIR%%/tables/gez.tbl
%%DATADIR%%/tables/gon.ctb
%%DATADIR%%/tables/gon.tbl
%%DATADIR%%/tables/gr-bb.ctb
%%DATADIR%%/tables/gr-pl-comp8.uti
%%DATADIR%%/tables/grc-international-common.uti
%%DATADIR%%/tables/grc-international-composed.uti
%%DATADIR%%/tables/grc-international-decomposed.uti
%%DATADIR%%/tables/grc-international-en.utb
%%DATADIR%%/tables/gu-in-g1.utb
%%DATADIR%%/tables/gujarati.cti
%%DATADIR%%/tables/gurumuki.cti
@ -341,7 +342,6 @@
%%DATADIR%%/tables/ukmaths_unicode_defs.cti
%%DATADIR%%/tables/uk.utb
%%DATADIR%%/tables/unicode-braille.utb
%%DATADIR%%/tables/unicodedefs.cti
%%DATADIR%%/tables/unicode.dis
%%DATADIR%%/tables/unicode-without-blank.dis
%%DATADIR%%/tables/uni-text.dis
@ -380,13 +380,12 @@ bin/lou_maketable.d/wrap_patgen.sh
bin/lou_tableinfo
bin/lou_trace
bin/lou_translate
include/liblouis/internal.h
include/liblouis/liblouis.h
libdata/pkgconfig/liblouis.pc
lib/liblouis.a
lib/liblouis.so
lib/liblouis.so.17
lib/liblouis.so.17.0.2
lib/liblouis.so.19
lib/liblouis.so.19.0.0
man/man1/lou_allround.1.gz
man/man1/lou_checkhyphens.1.gz
man/man1/lou_checktable.1.gz

View File

@ -1,7 +1,7 @@
# $FreeBSD$
PORTNAME= libphutil
PORTVERSION= 20181231
PORTVERSION= 20190831
CATEGORIES= devel
PKGNAMEPREFIX= ${PHP_PKGNAMEPREFIX}
@ -18,7 +18,7 @@ USE_GITHUB= yes
NO_BUILD= yes
NO_ARCH= yes
GH_ACCOUNT= phacility
GH_TAGNAME= cad1985
GH_TAGNAME= 794ded9
do-install:
@${MKDIR} ${STAGEDIR}${PREFIX}/${PHP_DESTDIR}

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1546204179
SHA256 (phacility-libphutil-20181231-cad1985_GH0.tar.gz) = d438d1224c0201c2732d84dbcf7bec1872cd1ac972bbea4f0fe4f58a753abcd7
SIZE (phacility-libphutil-20181231-cad1985_GH0.tar.gz) = 1699467
TIMESTAMP = 1567519582
SHA256 (phacility-libphutil-20190831-794ded9_GH0.tar.gz) = c7bb31d45847829f7486db8b5229a51f5b0b7a91436ed6a1fcb1e64f84daf334
SIZE (phacility-libphutil-20190831-794ded9_GH0.tar.gz) = 1718237

View File

@ -206,11 +206,14 @@ lib/php/libphutil/src/filesystem/PhutilFileLock.php
lib/php/libphutil/src/filesystem/PhutilFileTree.php
lib/php/libphutil/src/filesystem/PhutilLock.php
lib/php/libphutil/src/filesystem/PhutilLockException.php
lib/php/libphutil/src/filesystem/PhutilProcessQuery.php
lib/php/libphutil/src/filesystem/PhutilProcessRef.php
lib/php/libphutil/src/filesystem/TempFile.php
lib/php/libphutil/src/filesystem/__tests__/FileFinderTestCase.php
lib/php/libphutil/src/filesystem/__tests__/FilesystemTestCase.php
lib/php/libphutil/src/filesystem/__tests__/PhutilDeferredLogTestCase.php
lib/php/libphutil/src/filesystem/__tests__/PhutilFileLockTestCase.php
lib/php/libphutil/src/filesystem/__tests__/PhutilProcessRefTestCase.php
lib/php/libphutil/src/filesystem/__tests__/data/.hidden.txt
lib/php/libphutil/src/filesystem/__tests__/data/exclude/file.txt
lib/php/libphutil/src/filesystem/__tests__/data/exclude/test
@ -425,6 +428,9 @@ lib/php/libphutil/src/markup/engine/__tests__/remarkup/percent-block-oneline.txt
lib/php/libphutil/src/markup/engine/__tests__/remarkup/percent-block-solo.txt
lib/php/libphutil/src/markup/engine/__tests__/remarkup/quoted-angry.txt
lib/php/libphutil/src/markup/engine/__tests__/remarkup/quoted-code-block.txt
lib/php/libphutil/src/markup/engine/__tests__/remarkup/quoted-indent-block.txt
lib/php/libphutil/src/markup/engine/__tests__/remarkup/quoted-lists.txt
lib/php/libphutil/src/markup/engine/__tests__/remarkup/quoted-quote.txt
lib/php/libphutil/src/markup/engine/__tests__/remarkup/quotes.txt
lib/php/libphutil/src/markup/engine/__tests__/remarkup/raw-escape.txt
lib/php/libphutil/src/markup/engine/__tests__/remarkup/reply-basic.txt
@ -434,6 +440,7 @@ lib/php/libphutil/src/markup/engine/__tests__/remarkup/simple-table-with-leading
lib/php/libphutil/src/markup/engine/__tests__/remarkup/simple-table-with-link.txt
lib/php/libphutil/src/markup/engine/__tests__/remarkup/simple-table.txt
lib/php/libphutil/src/markup/engine/__tests__/remarkup/simple.txt
lib/php/libphutil/src/markup/engine/__tests__/remarkup/table-with-direct-content.txt
lib/php/libphutil/src/markup/engine/__tests__/remarkup/table-with-leading-space.txt
lib/php/libphutil/src/markup/engine/__tests__/remarkup/table-with-long-header.txt
lib/php/libphutil/src/markup/engine/__tests__/remarkup/table.txt
@ -455,6 +462,7 @@ lib/php/libphutil/src/markup/engine/remarkup/blockrule/PhutilRemarkupInterpreter
lib/php/libphutil/src/markup/engine/remarkup/blockrule/PhutilRemarkupListBlockRule.php
lib/php/libphutil/src/markup/engine/remarkup/blockrule/PhutilRemarkupLiteralBlockRule.php
lib/php/libphutil/src/markup/engine/remarkup/blockrule/PhutilRemarkupNoteBlockRule.php
lib/php/libphutil/src/markup/engine/remarkup/blockrule/PhutilRemarkupQuotedBlockRule.php
lib/php/libphutil/src/markup/engine/remarkup/blockrule/PhutilRemarkupQuotesBlockRule.php
lib/php/libphutil/src/markup/engine/remarkup/blockrule/PhutilRemarkupReplyBlockRule.php
lib/php/libphutil/src/markup/engine/remarkup/blockrule/PhutilRemarkupSimpleTableBlockRule.php
@ -465,6 +473,8 @@ lib/php/libphutil/src/markup/engine/remarkup/markuprule/PhutilRemarkupDelRule.ph
lib/php/libphutil/src/markup/engine/remarkup/markuprule/PhutilRemarkupDocumentLinkRule.php
lib/php/libphutil/src/markup/engine/remarkup/markuprule/PhutilRemarkupEscapeRemarkupRule.php
lib/php/libphutil/src/markup/engine/remarkup/markuprule/PhutilRemarkupHighlightRule.php
lib/php/libphutil/src/markup/engine/remarkup/markuprule/PhutilRemarkupHyperlinkEngineExtension.php
lib/php/libphutil/src/markup/engine/remarkup/markuprule/PhutilRemarkupHyperlinkRef.php
lib/php/libphutil/src/markup/engine/remarkup/markuprule/PhutilRemarkupHyperlinkRule.php
lib/php/libphutil/src/markup/engine/remarkup/markuprule/PhutilRemarkupItalicRule.php
lib/php/libphutil/src/markup/engine/remarkup/markuprule/PhutilRemarkupLinebreaksRule.php
@ -659,6 +669,16 @@ lib/php/libphutil/src/parser/generator/exception/PhutilParserGeneratorException.
lib/php/libphutil/src/parser/generator/exception/PhutilUnknownSymbolParserGeneratorException.php
lib/php/libphutil/src/parser/generator/exception/PhutilUnreachableRuleParserGeneratorException.php
lib/php/libphutil/src/parser/generator/exception/PhutilUnreachableTerminalParserGeneratorException.php
lib/php/libphutil/src/parser/html/PhutilDOMNode.php
lib/php/libphutil/src/parser/html/PhutilHTMLParser.php
lib/php/libphutil/src/parser/html/__tests__/PhutilHTMLParserTestCase.php
lib/php/libphutil/src/parser/html/__tests__/data/attributes-basic.txt
lib/php/libphutil/src/parser/html/__tests__/data/content-angle.txt
lib/php/libphutil/src/parser/html/__tests__/data/content-simple.txt
lib/php/libphutil/src/parser/html/__tests__/data/tag-angle.txt
lib/php/libphutil/src/parser/html/__tests__/data/tag-mismatch.txt
lib/php/libphutil/src/parser/html/__tests__/data/tag-simple.txt
lib/php/libphutil/src/parser/html/__tests__/data/tag-table.txt
lib/php/libphutil/src/parser/http/PhutilHTTPResponse.php
lib/php/libphutil/src/parser/http/PhutilHTTPResponseParser.php
lib/php/libphutil/src/parser/http/__tests__/PhutilHTTPResponseParserTestCase.php
@ -726,6 +746,8 @@ lib/php/libphutil/src/phage/agent/PhagePHPAgent.php
lib/php/libphutil/src/phage/bootloader/PhageAgentBootloader.php
lib/php/libphutil/src/phage/bootloader/PhagePHPAgentBootloader.php
lib/php/libphutil/src/phage/util/PhutilBallOfPHP.php
lib/php/libphutil/src/progress/PhutilConsoleProgressSink.php
lib/php/libphutil/src/progress/PhutilProgressSink.php
lib/php/libphutil/src/readableserializer/PhutilReadableSerializer.php
lib/php/libphutil/src/readableserializer/__tests__/PhutilReadableSerializerTestCase.php
lib/php/libphutil/src/search/PhutilSearchQueryCompiler.php

View File

@ -2,7 +2,7 @@
# $FreeBSD$
PORTNAME= Date-Manip
PORTVERSION= 6.77
PORTVERSION= 6.78
CATEGORIES= devel perl5
MASTER_SITES= CPAN
MASTER_SITE_SUBDIR= CPAN:SBECK

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1562439355
SHA256 (Date-Manip-6.77.tar.gz) = 51c32b8207ced610d61fadbb876cdb8a116ae27dddcf6fa5017512215833836b
SIZE (Date-Manip-6.77.tar.gz) = 2019878
TIMESTAMP = 1567526497
SHA256 (Date-Manip-6.78.tar.gz) = cb36084401f9e89999c7046811c83ac58ea44fc12827bf61ca1167a79e915db9
SIZE (Date-Manip-6.78.tar.gz) = 2012388

View File

@ -2,9 +2,10 @@
# $FreeBSD$
PORTNAME= Glib
PORTVERSION= 1.329
PORTVERSION= 1.3291
CATEGORIES= devel perl5
MASTER_SITES= CPAN SF/gtk2-perl/${PORTNAME}/${PORTVERSION}
MASTER_SITES= CPAN \
SF/gtk2-perl/${PORTNAME}/${PORTVERSION}
MASTER_SITE_SUBDIR= CPAN:XAOC
PKGNAMEPREFIX= p5-
PKGNAMESUFFIX= 2
@ -19,9 +20,10 @@ BUILD_DEPENDS= ${RUN_DEPENDS}
RUN_DEPENDS= p5-ExtUtils-Depends>=0.300:devel/p5-ExtUtils-Depends \
p5-ExtUtils-PkgConfig>=1:devel/p5-ExtUtils-PkgConfig
USE_GNOME= glib20
USES= perl5
USE_GNOME= glib20
USE_PERL5= configure
MAKE_JOBS_UNSAFE= yes
.include <bsd.port.mk>

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1556053503
SHA256 (Glib-1.329.tar.gz) = 7b4ce1c8cf884849189efaa0b5722ecfb0d87a15f94fccc6a6017d3b3f982a35
SIZE (Glib-1.329.tar.gz) = 301794
TIMESTAMP = 1567526986
SHA256 (Glib-1.3291.tar.gz) = b983cdd87b9d3b5537edb110842313356237ab01b020b5f547f86f7e902b1f72
SIZE (Glib-1.3291.tar.gz) = 301944

View File

@ -2,7 +2,7 @@
# $FreeBSD$
PORTNAME= MCE-Shared
PORTVERSION= 1.846
PORTVERSION= 1.847
CATEGORIES= devel perl5
MASTER_SITES= CPAN
MASTER_SITE_SUBDIR= CPAN:MARIOROY
@ -18,7 +18,7 @@ LICENSE_FILE_GPLv1+ = ${WRKSRC}/Copying
BUILD_DEPENDS= ${RUN_DEPENDS}
RUN_DEPENDS= p5-IO-FDPass>=1.1:devel/p5-IO-FDPass \
p5-MCE>=1.846:devel/p5-MCE
p5-MCE>=1.847:devel/p5-MCE
USES= perl5
USE_PERL5= configure

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1567016135
SHA256 (MCE-Shared-1.846.tar.gz) = 421cbbed590c987e60b6e1588f4636b5f25805e690829de5de126c334210b25f
SIZE (MCE-Shared-1.846.tar.gz) = 144732
TIMESTAMP = 1567510026
SHA256 (MCE-Shared-1.847.tar.gz) = ba513e789679c4c631221ce3bd8d6b9516255e10911c571ad73c4effdf58c7da
SIZE (MCE-Shared-1.847.tar.gz) = 145565

View File

@ -2,7 +2,7 @@
# $FreeBSD$
PORTNAME= MCE
PORTVERSION= 1.846
PORTVERSION= 1.847
CATEGORIES= devel perl5
MASTER_SITES= CPAN
MASTER_SITE_SUBDIR= CPAN:MARIOROY

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1567016133
SHA256 (MCE-1.846.tar.gz) = b54d91ecdf3f25c4b395bb3e13a7a2d2019b52f2cb79d1b38c0f598833aebd66
SIZE (MCE-1.846.tar.gz) = 213541
TIMESTAMP = 1567510024
SHA256 (MCE-1.847.tar.gz) = 9d6d3ceec81857cf6bcf023a8ce294cf27d38c621ba40dd9b25c1a18915e71d8
SIZE (MCE-1.847.tar.gz) = 213724

View File

@ -1,7 +1,7 @@
# $FreeBSD$
PORTNAME= phabricator
PORTVERSION= 20181231
PORTVERSION= 20190831
CATEGORIES= devel
PKGNAMESUFFIX= ${PHP_PKGNAMESUFFIX}
@ -11,8 +11,8 @@ COMMENT= Open source, software engineering platform
LICENSE= APACHE20
LICENSE_FILE= ${WRKSRC}/LICENSE
RUN_DEPENDS= ${PHP_PKGNAMEPREFIX}libphutil>0:devel/libphutil@${PHP_FLAVOR} \
arcanist-lib${PHP_PKGNAMESUFFIX}>0:devel/arcanist-lib@${PHP_FLAVOR} \
RUN_DEPENDS= ${PHP_PKGNAMEPREFIX}libphutil>=20190831:devel/libphutil@${PHP_FLAVOR} \
arcanist-lib${PHP_PKGNAMESUFFIX}>=20190622:devel/arcanist-lib@${PHP_FLAVOR} \
git:devel/git
OPTIONS_DEFINE= GD OPCACHE
@ -21,8 +21,7 @@ OPCACHE_DESC?= Use OPcache to improve performance
USES= php:flavors shebangfix
REINPLACE_ARGS= -i ""
SHEBANG_FILES= externals/httpful/build \
externals/restful/build-phar \
SHEBANG_FILES= scripts/*.php \
scripts/almanac/*.php \
scripts/cache/*.php \
scripts/celerity/*.php \
@ -35,19 +34,17 @@ SHEBANG_FILES= externals/httpful/build \
scripts/install/install_ubuntu.sh \
scripts/lipsum/*.php \
scripts/mail/*.php \
scripts/people/*.php \
scripts/repository/*.php \
scripts/search/*.php \
scripts/setup/*.php \
scripts/sms/*.php \
scripts/ssh/*.php \
scripts/sql/*.php \
scripts/ssh/*.php \
scripts/symbols/*.php \
scripts/user/*.php \
scripts/util/*.php \
support/aphlict/server/*.php
USE_PHP= ctype curl fileinfo filter hash iconv mbstring mysqli openssl \
pcntl posix
pcntl posix zip
GD_USE= PHP=gd
@ -59,7 +56,7 @@ NO_BUILD= yes
USE_RC_SUBR= phd
SUB_FILES= pkg-message
GH_ACCOUNT= phacility
GH_TAGNAME= 106e90d
GH_TAGNAME= 24dbff2
PHP_DESTDIR= lib/php/phabricator

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1546206101
SHA256 (phacility-phabricator-20181231-106e90d_GH0.tar.gz) = 9593a22b14972c128075df836f415965e41959ed7ff335dacf20b5641ea364c7
SIZE (phacility-phabricator-20181231-106e90d_GH0.tar.gz) = 9160568
TIMESTAMP = 1567518563
SHA256 (phacility-phabricator-20190831-24dbff2_GH0.tar.gz) = 590ea767f8de5fcc7a3da10e53b68e6ce89c0a4f1e1757dcac8268c102ec4ae3
SIZE (phacility-phabricator-20190831-24dbff2_GH0.tar.gz) = 9129280

File diff suppressed because it is too large Load Diff

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1564587444
SHA256 (KDE/plasma/5.16.4/khotkeys-5.16.4.tar.xz) = a8646ab20cd067a515d4a9318c814760be0030f27856f155edf11920caeddd0d
SIZE (KDE/plasma/5.16.4/khotkeys-5.16.4.tar.xz) = 1866004
TIMESTAMP = 1567529857
SHA256 (KDE/plasma/5.16.5/khotkeys-5.16.5.tar.xz) = e7b866b5249ff7c5860a5a222dca79691ca1f09af176f786021fbbadbd718c8c
SIZE (KDE/plasma/5.16.5/khotkeys-5.16.5.tar.xz) = 1846184

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1564587444
SHA256 (KDE/plasma/5.16.4/kwrited-5.16.4.tar.xz) = c3011ee1c7a431b25797e12fa0b16e6d92277c8fe5dc1e656121a135ad156c0f
SIZE (KDE/plasma/5.16.4/kwrited-5.16.4.tar.xz) = 20016
TIMESTAMP = 1567529857
SHA256 (KDE/plasma/5.16.5/kwrited-5.16.5.tar.xz) = 4b122099b0a362fc409b50b7523689ba8a112508dad26f58753c6b648e7c5313
SIZE (KDE/plasma/5.16.5/kwrited-5.16.5.tar.xz) = 20032

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1564587445
SHA256 (KDE/plasma/5.16.4/plasma-sdk-5.16.4.tar.xz) = ce8152ad6044e2cf430834bf97bb4542e69e168a4b7350e313d148a9bd3b9403
SIZE (KDE/plasma/5.16.4/plasma-sdk-5.16.4.tar.xz) = 250456
TIMESTAMP = 1567529858
SHA256 (KDE/plasma/5.16.5/plasma-sdk-5.16.5.tar.xz) = 1b05f0501309099f241ebae857c24b31bc4e61fde8bfc33e854d3a1dd3d37385
SIZE (KDE/plasma/5.16.5/plasma-sdk-5.16.5.tar.xz) = 250148

View File

@ -280,7 +280,13 @@ share/locale/mai/LC_MESSAGES/plasmaengineexplorer.mo
share/locale/mai/LC_MESSAGES/plasmawallpaperviewer.mo
share/locale/mai/LC_MESSAGES/plasmoidviewer.mo
share/locale/mk/LC_MESSAGES/plasmaengineexplorer.mo
share/locale/ml/LC_MESSAGES/cuttlefish.mo
share/locale/ml/LC_MESSAGES/cuttlefish_editorplugin.mo
share/locale/ml/LC_MESSAGES/org.kde.plasma.lookandfeelexplorer.mo
share/locale/ml/LC_MESSAGES/org.kde.plasma.themeexplorer.mo
share/locale/ml/LC_MESSAGES/plasma_shell_org.kde.plasmoidviewershell.mo
share/locale/ml/LC_MESSAGES/plasmaengineexplorer.mo
share/locale/ml/LC_MESSAGES/plasmawallpaperviewer.mo
share/locale/ml/LC_MESSAGES/plasmoidviewer.mo
share/locale/mr/LC_MESSAGES/plasmaengineexplorer.mo
share/locale/mr/LC_MESSAGES/plasmawallpaperviewer.mo

View File

@ -1,7 +1,7 @@
# $FreeBSD$
PORTNAME= aioice
PORTVERSION= 0.6.14
PORTVERSION= 0.6.15
CATEGORIES= devel python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}

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