*/*: sync with upstream

Taken from: HardenedBSD
This commit is contained in:
Franco Fichtner 2020-09-22 15:46:14 +02:00
parent 808adbeda6
commit 70c0df2429
337 changed files with 3829 additions and 1157 deletions

View File

@ -14,7 +14,7 @@ LICENSE_FILE= ${WRKSRC}/../LICENSE
BUILD_DEPENDS= lv2>0:audio/lv2
USES= gmake localbase
USES= compiler:c++11-lang gmake localbase
USE_GITHUB= yes
GH_ACCOUNT= devcurmudgeon

View File

@ -3,7 +3,7 @@
PORTNAME= beatslash
DISTVERSIONPREFIX= v
DISTVERSION= 1.0.6
PORTREVISION= 1
PORTREVISION= 2
CATEGORIES= audio
PKGNAMESUFFIX= -lv2
@ -29,4 +29,7 @@ USE_GNOME= atkmm gdkpixbuf2 gtkmm24
post-patch:
@${REINPLACE_CMD} -e 's|#include <lvtk-1/lvtk|#include <lvtk-2/lvtk|' ${WRKSRC}/src/*.?pp
post-install:
${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/lv2/beatslash.lv2/*.so
.include <bsd.port.mk>

View File

@ -1,4 +1,4 @@
--- wscript.orig 2016-11-06 20:24:40 UTC
--- wscript.orig 2019-02-23 21:03:41 UTC
+++ wscript
@@ -31,9 +31,9 @@ def configure(conf):
autowaf.check_pkg(conf, 'gtk+-2.0', uselib_store='GTK2', atleast_version='2.24.0')
@ -13,3 +13,12 @@
check = 'Extended Initializer Lists'
conf.check_cxx(msg = check,
@@ -78,7 +78,7 @@ def build_plugin(bld, bundle, name, source, cxxflags=[
# Install data file
data_file = '%s.ttl' % name
- bld.install_files('${LV2DIR}/' + bundle, os.path.join(bundle, data_file))
+ #bld.install_files('${LV2DIR}/' + bundle, os.path.join(bundle, data_file)) # see https://github.com/blablack/beatslash-lv2/issues/9
def build_plugin_gui(bld, bundle, name, source, cxxflags=[], libs=[], add_source=[]):

View File

@ -4,4 +4,4 @@ Features:
* the beat repeater will repeat the current beat
* the beat slicer will randomly repeat parts of a live sample
WWW: https://objectivewave.wordpress.com/beatslash-lv2/
WWW: https://github.com/blablack/beatslash-lv2

View File

@ -161,6 +161,12 @@ WIIMOTE_DESC= Build the Wiimote opcodes
WIIMOTE_CMAKE_BOOL= BUILD_WIIMOTE_OPCODES
WIIMOTE_BROKEN= Need to port wiiuse: https://github.com/rpavlik/wiiuse
.include <bsd.port.pre.mk>
.if ${ARCH} == "i386"
BROKEN_FreeBSD_11= libcsound64.so.6.0: undefined reference to `__atomic_store_8' / undefined reference to `__atomic_load_8'
.endif
post-patch:
@${REINPLACE_CMD} -e \
's|/usr/local|${LOCALBASE}|' \
@ -190,4 +196,4 @@ post-install:
post-install-FLTK-on:
@${LN} -sf libCsoundAC.so.6.0 ${STAGEDIR}${PREFIX}/lib/libCsoundAC.so.6
.include <bsd.port.mk>
.include <bsd.port.post.mk>

View File

@ -1,7 +1,7 @@
# $FreeBSD$
PORTNAME= gsequencer
DISTVERSION= 3.5.9
DISTVERSION= 3.5.12
CATEGORIES= audio
MASTER_SITES= SAVANNAH/gsequencer/${DISTVERSION:R}.x

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1600015280
SHA256 (gsequencer-3.5.9.tar.gz) = b368f9ff0a8fa922f93c7bdd5f530c037d3be0ed9ebd20f5df08a61e71db1841
SIZE (gsequencer-3.5.9.tar.gz) = 7140397
TIMESTAMP = 1600708832
SHA256 (gsequencer-3.5.12.tar.gz) = b08ebf1a8037cfb65fcfd3d56a349e28e8c474d1432d09650ba7021e13b5986e
SIZE (gsequencer-3.5.12.tar.gz) = 7146788

View File

@ -1,7 +1,7 @@
# $FreeBSD$
PORTNAME= jamulus
DISTVERSION= 3.5.10
DISTVERSION= 3.5.11
CATEGORIES= audio
MASTER_SITES= SF/llcon/${NAME}/${DISTVERSION}/
DISTNAME= ${NAME}-${PORTVERSION}
@ -15,7 +15,7 @@ LICENSE_FILE= ${WRKSRC}/COPYING
LIB_DEPENDS= libjack.so:audio/jack
USES= compiler:c++11-lang pkgconfig qmake qt:5
USE_QT= core gui network widgets xml buildtools_build linguisttools_build
USE_QT= concurrent core gui network widgets xml buildtools_build linguisttools_build
NAME= Jamulus

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1597688416
SHA256 (Jamulus-3.5.10.tar.gz) = 339b496c16ed938b9625de97466335c143ad26dc7911fe6d5eb98c4c1262a073
SIZE (Jamulus-3.5.10.tar.gz) = 1799085
TIMESTAMP = 1600709878
SHA256 (Jamulus-3.5.11.tar.gz) = 381fb063348140d8fb513c252fe46688321acd0cdab205c4852599f98fa7a039
SIZE (Jamulus-3.5.11.tar.gz) = 1807340

View File

@ -16,6 +16,7 @@
SUBDIR += dhrystone
SUBDIR += dkftpbench
SUBDIR += fhourstones
SUBDIR += filebench
SUBDIR += fio
SUBDIR += flamegraph
SUBDIR += flops

View File

@ -0,0 +1,24 @@
# Created by: Tom Judge <tom@tomjudge.com>
# $FreeBSD$
PORTNAME= filebench
DISTVERSION= 1.5-alpha3-27
DISTVERSIONSUFFIX= -g22620e6
CATEGORIES= benchmarks
MAINTAINER= 0mp@FreeBSD.org
COMMENT= File system and storage benchmark
LICENSE= CDDL
LICENSE_FILE= ${WRKSRC}/LICENSE
USES= autoreconf libtool
USE_GITHUB= yes
USE_LDCONFIG= ${PREFIX}/lib/${PORTNAME}
GNU_CONFIGURE= yes
post-install:
${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/${PORTNAME}/*.so.0.0.0
.include <bsd.port.mk>

View File

@ -0,0 +1,3 @@
TIMESTAMP = 1600686405
SHA256 (filebench-filebench-1.5-alpha3-27-g22620e6_GH0.tar.gz) = d220dacdb460fc77b4a756098cf9716c9d2a8464b8231476040d9551570f0bbf
SIZE (filebench-filebench-1.5-alpha3-27-g22620e6_GH0.tar.gz) = 255863

View File

@ -0,0 +1,10 @@
Filebench is a file system and storage benchmark that can generate a large
variety of workloads. Unlike typical benchmarks it is extremely flexible and
allows to specify application's I/O behavior using its extensive Workload Model
Language (WML). Users can either describe desired workloads from scratch or use
(with or without modifications) workload personalities shipped with Filebench
(e.g., mail-, web-, file-, and database-server workloads). Filebench is equally
good for micro- and macro-benchmarking, quick to setup, and relatively easy to
use.
WWW: https://github.com/filebench/filebench/wiki

View File

@ -0,0 +1,79 @@
bin/filebench
lib/filebench/libcvar-erlang.a
lib/filebench/libcvar-erlang.so
lib/filebench/libcvar-erlang.so.0
lib/filebench/libcvar-erlang.so.0.0.0
lib/filebench/libcvar-exponential.a
lib/filebench/libcvar-exponential.so
lib/filebench/libcvar-exponential.so.0
lib/filebench/libcvar-exponential.so.0.0.0
lib/filebench/libcvar-gamma.a
lib/filebench/libcvar-gamma.so
lib/filebench/libcvar-gamma.so.0
lib/filebench/libcvar-gamma.so.0.0.0
lib/filebench/libcvar-lognormal.a
lib/filebench/libcvar-lognormal.so
lib/filebench/libcvar-lognormal.so.0
lib/filebench/libcvar-lognormal.so.0.0.0
lib/filebench/libcvar-normal.a
lib/filebench/libcvar-normal.so
lib/filebench/libcvar-normal.so.0
lib/filebench/libcvar-normal.so.0.0.0
lib/filebench/libcvar-triangular.a
lib/filebench/libcvar-triangular.so
lib/filebench/libcvar-triangular.so.0
lib/filebench/libcvar-triangular.so.0.0.0
lib/filebench/libcvar-uniform.a
lib/filebench/libcvar-uniform.so
lib/filebench/libcvar-uniform.so.0
lib/filebench/libcvar-uniform.so.0.0.0
lib/filebench/libcvar-weibull.a
lib/filebench/libcvar-weibull.so
lib/filebench/libcvar-weibull.so.0
lib/filebench/libcvar-weibull.so.0.0.0
%%DATADIR%%/workloads/compflow_demo.f
%%DATADIR%%/workloads/copyfiles.f
%%DATADIR%%/workloads/createfiles.f
%%DATADIR%%/workloads/cvar_example.f
%%DATADIR%%/workloads/filemicro_create.f
%%DATADIR%%/workloads/filemicro_createfiles.f
%%DATADIR%%/workloads/filemicro_createrand.f
%%DATADIR%%/workloads/filemicro_delete.f
%%DATADIR%%/workloads/filemicro_rread.f
%%DATADIR%%/workloads/filemicro_rwrite.f
%%DATADIR%%/workloads/filemicro_rwritedsync.f
%%DATADIR%%/workloads/filemicro_rwritefsync.f
%%DATADIR%%/workloads/filemicro_seqread.f
%%DATADIR%%/workloads/filemicro_seqwrite.f
%%DATADIR%%/workloads/filemicro_seqwriterand.f
%%DATADIR%%/workloads/filemicro_seqwriterandvargam.f
%%DATADIR%%/workloads/filemicro_seqwriterandvartab.f
%%DATADIR%%/workloads/filemicro_statfile.f
%%DATADIR%%/workloads/filemicro_writefsync.f
%%DATADIR%%/workloads/fileserver.f
%%DATADIR%%/workloads/fivestreamread.f
%%DATADIR%%/workloads/fivestreamreaddirect.f
%%DATADIR%%/workloads/fivestreamwrite.f
%%DATADIR%%/workloads/fivestreamwritedirect.f
%%DATADIR%%/workloads/listdirs.f
%%DATADIR%%/workloads/makedirs.f
%%DATADIR%%/workloads/mongo.f
%%DATADIR%%/workloads/netsfs.f
%%DATADIR%%/workloads/networkfs.f
%%DATADIR%%/workloads/oltp.f
%%DATADIR%%/workloads/openfiles.f
%%DATADIR%%/workloads/randomfileaccess.f
%%DATADIR%%/workloads/randomread.f
%%DATADIR%%/workloads/randomrw.f
%%DATADIR%%/workloads/randomwrite.f
%%DATADIR%%/workloads/ratelimcopyfiles.f
%%DATADIR%%/workloads/removedirs.f
%%DATADIR%%/workloads/singlestreamread.f
%%DATADIR%%/workloads/singlestreamreaddirect.f
%%DATADIR%%/workloads/singlestreamwrite.f
%%DATADIR%%/workloads/singlestreamwritedirect.f
%%DATADIR%%/workloads/tpcso.f
%%DATADIR%%/workloads/varmail.f
%%DATADIR%%/workloads/videoserver.f
%%DATADIR%%/workloads/webproxy.f
%%DATADIR%%/workloads/webserver.f

View File

@ -3,6 +3,7 @@
PORTNAME= forkbomb
PORTVERSION= 1.4
PORTREVISION= 1
CATEGORIES= benchmarks
MASTER_SITES= SUNSITE/system/benchmark \
http://home.tiscali.cz:8080/~cz210552/distfiles/
@ -10,6 +11,8 @@ MASTER_SITES= SUNSITE/system/benchmark \
MAINTAINER= ports@FreeBSD.org
COMMENT= System stress testing tool
LICENSE= PD
PLIST_FILES= sbin/forkbomb \
man/man8/forkbomb.8.gz

View File

@ -3,7 +3,7 @@
PORTNAME= freebayes
DISTVERSIONPREFIX= v
DISTVERSION= 1.2.0
PORTREVISION= 2
PORTREVISION= 3
CATEGORIES= biology
MAINTAINER= jwb@FreeBSD.org

View File

@ -0,0 +1,11 @@
--- SeqLib/bwa/rle.h.orig 2016-10-13 18:10:17 UTC
+++ SeqLib/bwa/rle.h
@@ -30,7 +30,7 @@ extern "C" {
*** 43+3 codec ***
******************/
-const uint8_t rle_auxtab[8];
+extern const uint8_t rle_auxtab[8];
#define RLE_MIN_SPACE 18
#define rle_nptr(block) ((uint16_t*)(block))

View File

@ -0,0 +1,11 @@
--- SeqLib/fermi-lite/rle.h.orig 2016-09-01 20:47:53 UTC
+++ SeqLib/fermi-lite/rle.h
@@ -30,7 +30,7 @@ extern "C" {
*** 43+3 codec ***
******************/
-const uint8_t rle_auxtab[8];
+extern const uint8_t rle_auxtab[8];
#define RLE_MIN_SPACE 18
#define rle_nptr(block) ((uint16_t*)(block))

View File

@ -2,7 +2,7 @@
# $FreeBSD$
PORTNAME= gmap
PORTVERSION= 2015.09.21
PORTVERSION= 2020.09.12
CATEGORIES= biology
MASTER_SITES= http://research-pub.gene.com/gmap/src/
DISTNAME= ${PORTNAME}-gsnap-${PORTVERSION:C|\.|-|g}
@ -15,32 +15,17 @@ LICENSE_NAME= GMAP License
LICENSE_FILE= ${WRKSRC}/COPYING
LICENSE_PERMS= dist-mirror pkg-mirror auto-accept
BROKEN_aarch64= invokes x86 assembler
BROKEN_armv6= invokes x86 assembler
BROKEN_armv7= invokes x86 assembler
BROKEN_mips64= invokes x86 assembler
BROKEN_sparc64= invokes x86 assembler
ONLY_FOR_ARCHS= amd64 i386
ONLY_FOR_ARCHS_REASON= Upstream supports only x86 and possibly POWER8
USES= gmake perl5
GNU_CONFIGURE= yes
WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION:C|\.|-|g}
CFLAGS+= -fcommon
OPTIONS_DEFINE= SIMD
SIMD_CONFIGURE_OFF= --disable-builtin-popcount --disable-simd
.include <bsd.port.pre.mk>
# shebang_fix operates during patch.
# These scripts are created during configure.
post-configure:
${REINPLACE_CMD} -e 's|/usr/bin/perl|${PERL}|g' \
${WRKSRC}/Makefile ${WRKSRC}/util/*.pl
.if ${ARCH:Mpowerpc*}
# XXX MCL unknown why this shows up as true. knowledge of autoconf needed.
${REINPLACE_CMD} -e 's|#define HAVE_ASM_BSR 1||' \
${WRKSRC}/src/config.h
.endif
.include <bsd.port.post.mk>
.include <bsd.port.mk>

View File

@ -1,2 +1,3 @@
SHA256 (gmap-gsnap-2015-09-21.tar.gz) = af78237ee9b90ba4416872b3509536060749c3622bbcaadec10e2dcc01301d9c
SIZE (gmap-gsnap-2015-09-21.tar.gz) = 4168019
TIMESTAMP = 1600434673
SHA256 (gmap-gsnap-2020-09-12.tar.gz) = 9f267d8d165a99b8cb41a22217ed9f8a987ba8b8f8303b0ae867d3e8bf96cef3
SIZE (gmap-gsnap-2020-09-12.tar.gz) = 4470731

View File

@ -1,5 +1,6 @@
bin/atoiindex
bin/cmetindex
bin/cpuid
bin/dbsnp_iit
bin/ensembl_genes
bin/fa_coords
@ -8,28 +9,31 @@ bin/gff3_genes
bin/gff3_introns
bin/gff3_splicesites
bin/gmap
bin/gmap.nosimd
bin/gmap_build
bin/gmap_compress
bin/gmap_cat
bin/gmap_process
bin/gmap_reassemble
bin/gmap_uncompress
bin/gmapindex
bin/gmapl
bin/gmapl.nosimd
bin/gsnap
bin/gsnap.nosimd
bin/gsnapl
bin/gsnapl.nosimd
bin/gtf_genes
bin/gtf_introns
bin/gtf_splicesites
bin/gtf_transcript_splicesites
bin/gvf_iit
bin/iit_dump
bin/iit_get
bin/iit_store
bin/indexdb_cat
bin/md_coords
bin/psl_genes
bin/psl_introns
bin/psl_splicesites
bin/sam_sort
bin/snpindex
bin/uniqscan
bin/uniqscanl
bin/trindex
bin/vcf_iit

View File

@ -3,7 +3,7 @@
PORTNAME= lirc
PORTVERSION= 0.9.0
PORTREVISION= 10
PORTREVISION= 11
PORTEPOCH= 1
CATEGORIES= comms
MASTER_SITES= SF/${PORTNAME}/LIRC/${PORTVERSION}
@ -11,6 +11,9 @@ MASTER_SITES= SF/${PORTNAME}/LIRC/${PORTVERSION}
MAINTAINER= ports@FreeBSD.org
COMMENT= Linux Infrared Remote Control
LICENSE= GPLv2
LICENSE_FILE= ${WRKSRC}/COPYING
BUILD_DEPENDS= ${LOCALBASE}/include/linux/input.h:devel/evdev-proto
USES= alias autoreconf gmake libtool localbase python tar:bzip2 xorg
@ -28,9 +31,10 @@ PORTDOCS= html images irxevent.keys lirc.css lirc.hwdb
PORTEXAMPLES= remotes
SUB_FILES= pkg-message lircd.conf
# SMODE2 requires svgalib which is only available on x86
OPTIONS_DEFINE= MINIMAL DEBUG UARTLIRC DOCS EXAMPLES
OPTIONS_DEFINE_i386= SMODE2 # requires svgalib which is...
OPTIONS_DEFINE_amd64= SMODE2 # ...only available on x86
OPTIONS_DEFINE_i386= SMODE2
OPTIONS_DEFINE_amd64= SMODE2
OPTIONS_SUB= yes
MINIMAL_DESC= Build with minimal dependencies

View File

@ -1,4 +1,4 @@
--- configure.ac.orig
--- configure.ac.orig 2011-03-25 22:28:18 UTC
+++ configure.ac
@@ -97,6 +97,14 @@ case "${host_os}" in
devdir_default="/usr/lirc/dev/"
@ -15,7 +15,7 @@
*)
dnl Unix OSS configuration
@@ -318,70 +326,22 @@ AH_TEMPLATE([SYSCONFDIR],
@@ -310,70 +318,22 @@ AH_TEMPLATE([SYSCONFDIR],
AH_TEMPLATE([USE_SYSLOG],
[define if you want to log to syslog instead of logfile])
@ -90,7 +90,7 @@
dnl dev_input driver requires linux input device api
AC_CHECK_HEADERS(linux/input.h,[
AC_DEFINE(HAVE_LINUX_DEVINPUT)
@@ -411,17 +371,18 @@ AC_CHECK_HEADERS([linux/hiddev.h],[
@@ -403,17 +363,18 @@ AC_CHECK_HEADERS([linux/hiddev.h],[
#endif
]
)
@ -114,3 +114,112 @@
dnl here we see what driver the user wants.
@@ -498,8 +459,8 @@ if test "$driver" = "userspace" -o "$driver" = "all";
;;
atilibusb)
hw_module="${hw_module} hw_atilibusb.o receive.o"
- atilibusb_lib=`${LIBUSB_CONFIG} --libs`
- CFLAGS="$CFLAGS `${LIBUSB_CONFIG} --cflags`"
+ atilibusb_lib=-lusb
+ CFLAGS="$CFLAGS "
;;
atwf83)
hw_module="${hw_module} hw_atwf83.o"
@@ -515,8 +476,8 @@ if test "$driver" = "userspace" -o "$driver" = "all";
;;
awlibusb)
hw_module="${hw_module} hw_awlibusb.o receive.o"
- awlibusb_lib=`${LIBUSB_CONFIG} --libs`
- CFLAGS="$CFLAGS `${LIBUSB_CONFIG} --cflags`"
+ awlibusb_lib=-lusb
+ CFLAGS="$CFLAGS "
;;
bte)
hw_module="${hw_module} hw_bte.o serial.o"
@@ -536,16 +497,16 @@ if test "$driver" = "userspace" -o "$driver" = "all";
;;
commandir)
hw_module="${hw_module} hw_commandir.o receive.o"
- commandir_lib=`${LIBUSB_CONFIG} --libs`
- CFLAGS="$CFLAGS `${LIBUSB_CONFIG} --cflags`"
+ commandir_lib=-lusb
+ CFLAGS="$CFLAGS "
;;
devinput)
hw_module="${hw_module} hw_devinput.o"
;;
dfclibusb)
hw_module="${hw_module} hw_dfclibusb.o receive.o"
- dfclibusb_lib=`${LIBUSB_CONFIG} --libs`
- CFLAGS="$CFLAGS `${LIBUSB_CONFIG} --cflags`"
+ dfclibusb_lib=-lusb
+ CFLAGS="$CFLAGS "
;;
dsp)
hw_module="${hw_module} hw_dsp.o receive.o"
@@ -665,8 +626,8 @@ if test "$driver" = "userspace" -o "$driver" = "all";
#;;
srm7500libusb)
hw_module="${hw_module} hw_srm7500libusb.o receive.o"
- srm7500libusb_lib=`${LIBUSB_CONFIG} --libs`
- CFLAGS="$CFLAGS `${LIBUSB_CONFIG} --cflags`"
+ srm7500libusb_lib=-lusb
+ CFLAGS="$CFLAGS "
;;
tira|tira_raw)
hw_module="${hw_module} hw_tira.o receive.o transmit.o"
@@ -758,8 +719,8 @@ if test "$driver" = "atilibusb"; then
HW_DEFAULT="hw_atilibusb"
lircd_conf="atiusb/lircd.conf.atilibusb"
if test -n "${LIBUSB_CONFIG}"; then
- atilibusb_lib=`${LIBUSB_CONFIG} --libs`
- CFLAGS="$CFLAGS `${LIBUSB_CONFIG} --cflags`"
+ atilibusb_lib=-lusb
+ CFLAGS="$CFLAGS "
fi
fi
@@ -777,8 +738,8 @@ if test "$driver" = "awlibusb"; then
HW_DEFAULT="hw_awlibusb"
lircd_conf="awlibusb/lircd.conf.awlibusb"
if test -n "${LIBUSB_CONFIG}"; then
- awlibusb_lib=`${LIBUSB_CONFIG} --libs`
- CFLAGS="$CFLAGS `${LIBUSB_CONFIG} --cflags`"
+ awlibusb_lib=-lusb
+ CFLAGS="$CFLAGS "
fi
fi
@@ -893,8 +854,8 @@ if test "$driver" = "commandir"; then
lircd_conf="hauppauge/lircd.conf.hauppauge"
lircmd_conf="hauppauge/lircmd.conf.hauppauge"
if test -n "${LIBUSB_CONFIG}"; then
- commandir_lib=`${LIBUSB_CONFIG} --libs`
- CFLAGS="$CFLAGS `${LIBUSB_CONFIG} --cflags`"
+ commandir_lib=-lusb
+ CFLAGS="$CFLAGS "
fi
fi
@@ -931,8 +892,8 @@ if test "$driver" = "dfclibusb"; then
hw_module="hw_dfclibusb.o receive.o"
HW_DEFAULT="hw_dfclibusb"
if test -n "${LIBUSB_CONFIG}"; then
- dfclibusb_lib=`${LIBUSB_CONFIG} --libs`
- CFLAGS="$CFLAGS `${LIBUSB_CONFIG} --cflags`"
+ dfclibusb_lib=-lusb
+ CFLAGS="$CFLAGS "
fi
fi
@@ -1332,8 +1293,8 @@ if test "$driver" = "srm7500libusb"; then
HW_DEFAULT="hw_srm7500libusb"
lircd_conf="philips/lircd.conf.srm7500libusb"
if test -n "${LIBUSB_CONFIG}"; then
- srm7500libusb_lib=`${LIBUSB_CONFIG} --libs`
- CFLAGS="$CFLAGS `${LIBUSB_CONFIG} --cflags`"
+ srm7500libusb_lib=-lusb
+ CFLAGS="$CFLAGS "
fi
fi

View File

@ -1,4 +1,4 @@
--- daemons/Makefile.am.orig
--- daemons/Makefile.am.orig 2011-03-25 22:28:18 UTC
+++ daemons/Makefile.am
@@ -83,7 +83,7 @@ irrecord_SOURCES = irrecord.c \
transmit.c transmit.h

File diff suppressed because it is too large Load Diff

View File

@ -1,11 +0,0 @@
--- daemons/Makefile.in.orig
+++ daemons/Makefile.in
@@ -1108,8 +1108,6 @@ uninstall-am: uninstall-binPROGRAMS unin
@SANDBOXED_FALSE@@USE_FIFOS_FALSE@uninstall-local: rmdev
install-data-local:
- test "$(lircd_conf)" = "" || test -e $(DESTDIR)$(sysconfdir)/$(PACKAGE)/lircd.conf || ($(mkinstalldirs) $(DESTDIR)$(sysconfdir)/lirc && $(INSTALL_DATA) $(top_srcdir)/remotes/$(lircd_conf) $(DESTDIR)$(sysconfdir)/$(PACKAGE)/lircd.conf)
- test "$(lircmd_conf)" = "" || test -e $(DESTDIR)$(sysconfdir)/$(PACKAGE)/lircmd.conf || ($(mkinstalldirs) $(DESTDIR)$(sysconfdir)/lirc && $(INSTALL_DATA) $(top_srcdir)/remotes/$(lircmd_conf) $(DESTDIR)$(sysconfdir)/$(PACKAGE)/lircmd.conf)
mkdev:
test -e $(DESTDIR)$(varrundir)/$(PACKAGE)/lircd || ($(mkinstalldirs) $(DESTDIR)$(varrundir)/lirc && @mknod@ $(DESTDIR)$(varrundir)/$(PACKAGE)/lircd p)

View File

@ -1,6 +1,6 @@
--- daemons/dump_config.c.orig
--- daemons/dump_config.c.orig 2011-03-25 22:28:18 UTC
+++ daemons/dump_config.c
@@ -120,11 +120,11 @@ void fprint_remote_head(FILE * f, struct
@@ -120,11 +120,11 @@ void fprint_remote_head(FILE * f, struct ir_remote *re
if (!is_raw(rem)) {
if (rem->pre_data_bits > 0) {
fprintf(f, " pre_data_bits %d\n", rem->pre_data_bits);
@ -14,7 +14,7 @@
}
if (rem->pre_p != 0 && rem->pre_s != 0) {
fprintf(f, " pre %5u %5u\n", (__u32) rem->pre_p, (__u32) rem->pre_s);
@@ -151,15 +151,15 @@ void fprint_remote_head(FILE * f, struct
@@ -151,15 +151,15 @@ void fprint_remote_head(FILE * f, struct ir_remote *re
if (rem->min_code_repeat > 0) {
fprintf(f, " min_code_repeat %d\n", rem->min_code_repeat);
}

View File

@ -1,4 +1,4 @@
--- daemons/hw-types.c.orig
--- daemons/hw-types.c.orig 2011-03-25 22:28:18 UTC
+++ daemons/hw-types.c
@@ -105,7 +105,7 @@ struct hardware *hw_list[] = {
&hw_awlibusb,

View File

@ -0,0 +1,13 @@
--- daemons/hw_bte.c.orig 2011-03-25 22:28:18 UTC
+++ daemons/hw_bte.c
@@ -56,8 +56,8 @@
#include "lircd.h"
#include "hw_bte.h"
-struct timeval start, end, last;
-lirc_t gap, signal_length;
+extern struct timeval start, end, last;
+extern lirc_t gap, signal_length;
ir_code pre, code;
#define BTE_CAN_SEND 0

View File

@ -0,0 +1,17 @@
--- daemons/hw_creative.c.orig 2011-03-25 22:28:18 UTC
+++ daemons/hw_creative.c
@@ -39,10 +39,11 @@
extern struct ir_remote *repeat_remote, *last_remote;
-unsigned char b[NUMBYTES];
+extern unsigned char b[NUMBYTES];
struct timeval start, end, last;
-lirc_t gap, signal_length;
-ir_code pre, code;
+extern lirc_t gap;
+lirc_t signal_length;
+extern ir_code pre, code;
struct hardware hw_creative = {
LIRC_IRTTY, /* default device */

View File

@ -1,4 +1,4 @@
--- daemons/hw_default.c.orig
--- daemons/hw_default.c.orig 2011-03-25 22:28:18 UTC
+++ daemons/hw_default.c
@@ -38,6 +38,20 @@
#include "transmit.h"

View File

@ -1,6 +1,6 @@
--- daemons/hw_devinput.c.orig
--- daemons/hw_devinput.c.orig 2011-03-25 22:28:18 UTC
+++ daemons/hw_devinput.c
@@ -376,9 +376,15 @@ int devinput_decode(struct ir_remote *re
@@ -376,9 +376,15 @@ int devinput_decode(struct ir_remote *remote, ir_code
return 1;
}
@ -16,7 +16,7 @@
int rd;
ir_code value;
@@ -399,6 +405,56 @@ char *devinput_rec(struct ir_remote *rem
@@ -399,6 +405,56 @@ char *devinput_rec(struct ir_remote *remotes)
LOGPRINTF(1, "time %ld.%06ld type %d code %d value %d", event.time.tv_sec, event.time.tv_usec, event.type,
event.code, event.value);
@ -73,7 +73,7 @@
value = (unsigned)event.value;
#ifdef EV_SW
if (value == 2 && (event.type == EV_KEY || event.type == EV_SW)) {
@@ -418,6 +474,9 @@ char *devinput_rec(struct ir_remote *rem
@@ -418,6 +474,9 @@ char *devinput_rec(struct ir_remote *remotes)
if (event.value == 2) {
repeat_state = RPT_YES;
} else {

View File

@ -0,0 +1,13 @@
--- daemons/hw_ea65.c.orig 2011-03-25 22:28:18 UTC
+++ daemons/hw_ea65.c
@@ -50,8 +50,8 @@
#define TIMEOUT 60000
#define CODE_LENGTH 24
-struct timeval start, end, last;
-ir_code code;
+extern struct timeval start, end, last;
+extern ir_code code;
struct hardware hw_ea65 = {
LIRC_IRTTY, /* default device */

View File

@ -1,4 +1,4 @@
--- daemons/hw_hiddev.c.orig
--- daemons/hw_hiddev.c.orig 2011-03-25 22:28:18 UTC
+++ daemons/hw_hiddev.c
@@ -22,9 +22,17 @@
#include <stdio.h>
@ -47,7 +47,7 @@
return 0;
}
@@ -235,8 +249,40 @@ int hiddev_decode(struct ir_remote *remo
@@ -235,8 +249,40 @@ int hiddev_decode(struct ir_remote *remote, ir_code *
return 1;
}
@ -88,7 +88,7 @@
struct hiddev_event event;
struct hiddev_event asus_events[8];
int rd;
@@ -253,9 +299,41 @@ char *hiddev_rec(struct ir_remote *remot
@@ -253,9 +299,41 @@ char *hiddev_rec(struct ir_remote *remotes)
last = end;
gettimeofday(&start, NULL);
@ -131,7 +131,7 @@
logperror(LOG_ERR, NULL);
hiddev_deinit();
return 0;
@@ -515,6 +593,7 @@ char *sb0540_rec(struct ir_remote *remot
@@ -515,6 +593,7 @@ char *sb0540_rec(struct ir_remote *remotes)
}
#endif
@ -139,7 +139,7 @@
/*
* Apple Mac mini USB IR Receiver specific code.
*
@@ -566,6 +645,7 @@ char *macmini_rec(struct ir_remote *remo
@@ -566,6 +645,7 @@ char *macmini_rec(struct ir_remote *remotes)
return decode_all(remotes);
}

View File

@ -0,0 +1,15 @@
--- daemons/hw_irman.c.orig 2011-03-25 22:28:18 UTC
+++ daemons/hw_irman.c
@@ -40,9 +40,9 @@
extern struct ir_remote *repeat_remote, *last_remote;
unsigned char *codestring;
-struct timeval start, end, last;
-lirc_t gap;
-ir_code code;
+extern struct timeval start, end, last;
+extern lirc_t gap;
+extern ir_code code;
#define CODE_LENGTH 64

View File

@ -0,0 +1,13 @@
--- daemons/hw_livedrive_common.c.orig 2011-03-25 22:28:18 UTC
+++ daemons/hw_livedrive_common.c
@@ -38,8 +38,8 @@
#include "lircd.h"
#include "hw_livedrive_common.h"
-struct timeval start, end, last;
-ir_code pre, code;
+extern struct timeval start, end, last;
+extern ir_code pre, code;
int livedrive_init(void)
{

View File

@ -0,0 +1,14 @@
--- daemons/hw_silitek.c.orig 2011-03-25 22:28:18 UTC
+++ daemons/hw_silitek.c
@@ -41,8 +41,9 @@
extern struct ir_remote *repeat_remote, *last_remote;
unsigned char b[NUMBYTES];
-ir_code code;
-struct timeval current, last;
+extern ir_code code;
+struct timeval current;
+extern struct timeval last;
int do_repeat;
struct hardware hw_silitek = {

View File

@ -1,4 +1,4 @@
--- daemons/hw_srm7500libusb.c.orig
--- daemons/hw_srm7500libusb.c.orig 2011-03-25 22:28:18 UTC
+++ daemons/hw_srm7500libusb.c
@@ -54,6 +54,23 @@
#define USB_TIMEOUT (1000*10)

View File

@ -1,6 +1,6 @@
--- daemons/ir_remote.c.orig
--- daemons/ir_remote.c.orig 2011-03-25 22:28:18 UTC
+++ daemons/ir_remote.c
@@ -490,7 +490,7 @@ int write_message(char *buffer, size_t s
@@ -490,7 +490,7 @@ int write_message(char *buffer, size_t size, const cha
{
int len;

View File

@ -1,6 +1,6 @@
--- daemons/lircd.c.orig
--- daemons/lircd.c.orig 2011-03-25 22:28:18 UTC
+++ daemons/lircd.c
@@ -1318,7 +1318,7 @@ int send_remote(int fd, char *message, s
@@ -1318,7 +1318,7 @@ int send_remote(int fd, char *message, struct ir_remot
codes = remote->codes;
while (codes->name != NULL) {
@ -9,7 +9,7 @@
if (len >= PACKET_SIZE + 1) {
len = sprintf(buffer, "code_too_long\n");
}
@@ -1338,7 +1338,7 @@ int send_name(int fd, char *message, str
@@ -1338,7 +1338,7 @@ int send_name(int fd, char *message, struct ir_ncode *
(write_socket_len(fd, protocol_string[P_BEGIN]) && write_socket_len(fd, message)
&& write_socket_len(fd, protocol_string[P_SUCCESS]) && write_socket_len(fd, protocol_string[P_DATA])))
return (0);

View File

@ -1,4 +1,4 @@
--- daemons/lircmd.c.orig
--- daemons/lircmd.c.orig 2011-03-25 22:28:18 UTC
+++ daemons/lircmd.c
@@ -277,9 +277,9 @@ setup_error:
return -1;
@ -11,7 +11,7 @@
struct input_event event;
memset(&event, 0, sizeof(event));
@@ -299,8 +299,8 @@ void write_uinput(__u16 type, __u16 code
@@ -299,8 +299,8 @@ void write_uinput(__u16 type, __u16 code, __s32 value)
syslog(LOG_ERR, "%m");
}
}

View File

@ -1,6 +1,6 @@
--- drivers/lirc.h.orig
--- drivers/lirc.h.orig 2011-03-25 22:28:18 UTC
+++ drivers/lirc.h
@@ -9,12 +9,17 @@
@@ -9,11 +9,16 @@
#if defined(__linux__)
#include <linux/types.h>
#include <linux/ioctl.h>
@ -10,12 +10,11 @@
#elif defined(_CYGWIN_)
#define __USE_LINUX_IOCTL_DEFS
#include <sys/ioctl.h>
#endif
+#endif
+#ifndef __linux__
+#include <stdint.h>
+#define __u32 uint32_t
+#define __u64 uint64_t
+#endif
#endif
#define PULSE_BIT 0x01000000
#define PULSE_MASK 0x00FFFFFF

View File

@ -1,6 +1,6 @@
--- tools/irsend.c.orig
--- tools/irsend.c.orig 2011-03-25 22:28:18 UTC
+++ tools/irsend.c
@@ -40,6 +40,9 @@
@@ -41,6 +41,9 @@
#include <errno.h>
#include <signal.h>
#include <limits.h>
@ -8,5 +8,5 @@
+#include <netinet/in.h>
+#endif
#define PACKET_SIZE 256
/* three seconds */
#include <stdint.h>

View File

@ -3,8 +3,7 @@
PORTNAME= xastir
DISTVERSIONPREFIX= Release-
DISTVERSION= 2.1.4
PORTREVISION= 3
DISTVERSION= 2.1.6
CATEGORIES= comms hamradio
MAINTAINER= carl@stagecraft.cx
@ -24,7 +23,8 @@ LIB_DEPENDS= libfreetype.so:print/freetype2 \
libtiff.so:graphics/tiff \
libwebp.so:graphics/webp \
libwebpmux.so:graphics/webp \
libwmflite.so:graphics/libwmf
libwmflite.so:graphics/libwmf \
libpcre.so:devel/pcre
USES= gettext gmake gnome jpeg motif python:run shebangfix xorg
@ -38,11 +38,11 @@ SHEBANG_REGEX= ./scripts/.*\.(sh|pl|py)
USE_GITHUB= yes
GH_ACCOUNT= Xastir
GH_PROJECT= Xastir
CFLAGS+= -fcommon
#CFLAGS+= -fcommon
SUB_FILES= pkg-message
OPTIONS_DEFINE= BDB CURL DAVIS DBFAWK ERRORPOP FESTIVAL GEOTIFF GPSMAN
OPTIONS_DEFINE= BDB CURL DAVIS ERRORPOP FESTIVAL GEOTIFF GPSMAN
OPTIONS_RADIO= MGG
OPTIONS_RADIO_MGG= GMAGICK IMAGICK
@ -69,9 +69,6 @@ GMAGICK_LIB_DEPENDS= libGraphicsMagickWand.so:graphics/GraphicsMagick
GMAGICK_CONFIGURE_WITH= graphicsmagick
GMAGICK_USES= compiler:gcc-c++11-lib
DBFAWK_LIB_DEPENDS= libpcre.so:devel/pcre
DBFAWK_CONFIGURE_WITH= dbfawk
CURL_LIB_DEPENDS= libcurl.so:ftp/curl
GEOTIFF_LIB_DEPENDS= libgeotiff.so:graphics/libgeotiff

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1563174412
SHA256 (Xastir-Xastir-Release-2.1.4_GH0.tar.gz) = 0bd3768440422a666e1c4c532df0184374244b77ae6650e6690715a0ca1fe7bc
SIZE (Xastir-Xastir-Release-2.1.4_GH0.tar.gz) = 2694124
TIMESTAMP = 1600663254
SHA256 (Xastir-Xastir-Release-2.1.6_GH0.tar.gz) = 5a71af2936d4d237c779b1c3a519211f8e3cd03b9873a260c849ddc8950e1a3e
SIZE (Xastir-Xastir-Release-2.1.6_GH0.tar.gz) = 2687180

View File

@ -63,6 +63,7 @@ man/man1/xastir_udp_client.1.gz
%%DATADIR%%/config/nwsc_ddmmyy_10a.dbfawk
%%DATADIR%%/config/nwsc_ddmmyy_13.dbfawk
%%DATADIR%%/config/nwsc_ddmmyy_15.dbfawk
%%DATADIR%%/config/nwsfz_ddmmyy_19.dbfawk
%%DATADIR%%/config/nwshzddmmyy.dbfawk
%%DATADIR%%/config/nwshzddmmyy_old14.dbfawk
%%DATADIR%%/config/nwsmzddmmyy.dbfawk
@ -84,6 +85,7 @@ man/man1/xastir_udp_client.1.gz
%%DATADIR%%/config/nwsw_ddmmyy_14.dbfawk
%%DATADIR%%/config/nwsw_ddmmyy_14a.dbfawk
%%DATADIR%%/config/nwsw_ddmmyy_17.dbfawk
%%DATADIR%%/config/nwsw_ddmmyy_20.dbfawk
%%DATADIR%%/config/nwsz1ddmmyy.dbfawk
%%DATADIR%%/config/nwsz_ddmmyy.dbfawk
%%DATADIR%%/config/nwsz_ddmmyy_09.dbfawk
@ -92,6 +94,7 @@ man/man1/xastir_udp_client.1.gz
%%DATADIR%%/config/nwsz_ddmmyy_10c.dbfawk
%%DATADIR%%/config/nwsz_ddmmyy_11.dbfawk
%%DATADIR%%/config/nwsz_ddmmyy_13.dbfawk
%%DATADIR%%/config/nwsz_ddmmyy_19.dbfawk
%%DATADIR%%/config/nwszoddmmyy.dbfawk
%%DATADIR%%/config/pointlm.dbfawk
%%DATADIR%%/config/predefined_EVENT.sys
@ -166,7 +169,6 @@ man/man1/xastir_udp_client.1.gz
%%DATADIR%%/maps/Online/nationalmap.gov/WMS_USGS_Topo.geo
%%DATADIR%%/maps/worldhi.map
%%DATADIR%%/scripts/Coordinate.pm
%%DATADIR%%/scripts/Xastir_tigerpoly.py
%%DATADIR%%/scripts/ads-b.pl
%%DATADIR%%/scripts/ais.pl
%%DATADIR%%/scripts/ais_pp.pl

View File

@ -21,7 +21,7 @@ LIB_DEPENDS= libfontconfig.so:x11-fonts/fontconfig \
libfreetype.so:print/freetype2 \
libpng.so:graphics/png
USES= compiler:c++11-lang gmake iconv jpeg perl5 pkgconfig ssl xorg
USES= gmake iconv jpeg perl5 pkgconfig ssl xorg
USE_GCC= 8
USE_XORG= x11 xext xrender
USE_PERL5= build
@ -66,7 +66,6 @@ post-patch:
-e 's|/usr/X11R6/lib|${LOCALBASE}/lib|g' \
${PATCH_WRKSRC}/mkspecs/freebsd-g++/qmake.conf
${REINPLACE_CMD} -e 's|%%LOCALBASE%%|${LOCALBASE}|g' \
-e 's|%%GCC_DEFAULT%%|${GCC_DEFAULT}|g' \
${PATCH_WRKSRC}/mkspecs/common/gcc-base.conf
${REINPLACE_CMD} -e "s|gcc|${CC}|g" -e "s|g++|${CXX}|g" \
${PATCH_WRKSRC}/mkspecs/common/g++-base.conf

View File

@ -0,0 +1,11 @@
--- mkspecs/common/gcc-base.conf.orig 2020-09-02 16:07:46 UTC
+++ mkspecs/common/gcc-base.conf
@@ -53,7 +53,7 @@ QMAKE_CXXFLAGS_STATIC_LIB += $$QMAKE_CFLAGS_STATIC_LIB
QMAKE_CXXFLAGS_YACC += $$QMAKE_CFLAGS_YACC
QMAKE_CXXFLAGS_HIDESYMS += $$QMAKE_CFLAGS_HIDESYMS -fvisibility-inlines-hidden
-QMAKE_LFLAGS +=
+QMAKE_LFLAGS += -Wl,-rpath=%%LOCALBASE%%/lib/gcc8
QMAKE_LFLAGS_DEBUG +=
QMAKE_LFLAGS_APP +=
QMAKE_LFLAGS_RELEASE +=

View File

@ -2,7 +2,7 @@
# $FreeBSD$
PORTNAME= libpqxx
PORTVERSION= 7.1.2
PORTVERSION= 7.2.0
CATEGORIES= databases
PKGNAMEPREFIX= postgresql-
DIST_SUBDIR= postgresql

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1597645659
SHA256 (postgresql/jtv-libpqxx-7.1.2_GH0.tar.gz) = 3af7b4cfd572c67275ad24fea31bcf9d9f365ec16a1b7e90d4bde930936707f3
SIZE (postgresql/jtv-libpqxx-7.1.2_GH0.tar.gz) = 693152
TIMESTAMP = 1600331537
SHA256 (postgresql/jtv-libpqxx-7.2.0_GH0.tar.gz) = c482a31c5d08402bc9e8df8291bed3555640ea80b3cb354fca958b1b469870dd
SIZE (postgresql/jtv-libpqxx-7.2.0_GH0.tar.gz) = 707225

View File

@ -3,6 +3,8 @@ include/pqxx/array.hxx
include/pqxx/binarystring
include/pqxx/binarystring.hxx
include/pqxx/compiler-public.hxx
include/pqxx/composite
include/pqxx/composite.hxx
include/pqxx/config-public-compiler.h
include/pqxx/connection
include/pqxx/connection.hxx
@ -16,6 +18,7 @@ include/pqxx/except
include/pqxx/except.hxx
include/pqxx/field
include/pqxx/field.hxx
include/pqxx/internal/array-composite.hxx
include/pqxx/internal/callgate.hxx
include/pqxx/internal/compiler-internal-post.hxx
include/pqxx/internal/compiler-internal-pre.hxx

View File

@ -11,15 +11,14 @@ MAINTAINER= jjachuf@gmail.com
COMMENT= Firebird RDBMS bindings for Python
LICENSE= ISCL
LICENSE_FILE= ${WRKSRC}/LICENSE.TXT
py27_BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}future>0:devel/py-future@${PY_FLAVOR}
NO_ARCH= yes
USES= firebird python
NO_ARCH= yes
USE_PYTHON= autoplist distutils
.include <bsd.port.pre.mk>
post-patch:
@${ECHO_MSG}
@${ECHO_MSG} "Please make sure that your firebird-client installation"
@ -27,4 +26,4 @@ post-patch:
@${ECHO_MSG} "The build of py-fdb will fail otherwise."
@${ECHO_MSG}
.include <bsd.port.post.mk>
.include <bsd.port.mk>

View File

@ -2,4 +2,4 @@ Firebird RDBMS bindings for Python.
fdb package is a set of Firebird RDBMS bindings for python.
It works on Python 2.6+ and Python 3.x
WWW: http://pythonhosted.org/fdb/
WWW: https://pythonhosted.org/fdb/

View File

@ -39,6 +39,7 @@
SUBDIR += dfshow
SUBDIR += docear
SUBDIR += dosage
SUBDIR += dstask
SUBDIR += easystroke
SUBDIR += egroupware
SUBDIR += fasd

39
deskutils/dstask/Makefile Normal file
View File

@ -0,0 +1,39 @@
# $FreeBSD$
PORTNAME= dstask
DISTVERSIONPREFIX= v
DISTVERSION= 0.20
CATEGORIES= deskutils
MAINTAINER= ashish@FreeBSD.org
COMMENT= Single binary terminal-based TODO manager with git-based sync
LICENSE= MIT
LICENSE_FILE= ${WRKSRC}/LICENSE
RUN_DEPENDS= git:devel/git
USES= go:modules
GO_TARGET= ./cmd/dstask.go
USE_GITHUB= yes
GH_ACCOUNT= naggie
PLIST_FILES= bin/${PORTNAME} \
${DOCSDIR_REL}/README.md \
etc/bash_completion.d/${PORTNAME}.sh \
share/zsh/site-functions/_${PORTNAME}
post-install:
@${MV} ${STAGEDIR}${PREFIX}/bin/${PORTNAME}.go \
${STAGEDIR}${PREFIX}/bin/${PORTNAME}
@${MKDIR} ${STAGEDIR}${DOCSDIR}
${INSTALL_DATA} ${WRKSRC}/README.md ${STAGEDIR}${DOCSDIR}
@${MKDIR} ${STAGEDIR}${PREFIX}/share/zsh/site-functions
${INSTALL_DATA} ${WRKSRC}/.${PORTNAME}-zsh-completions.sh \
${STAGEDIR}${PREFIX}/share/zsh/site-functions/_${PORTNAME}
@${MKDIR} ${STAGEDIR}${PREFIX}/etc/bash_completion.d
${INSTALL_DATA} ${WRKSRC}/.${PORTNAME}-bash-completions.sh \
${STAGEDIR}${PREFIX}/etc/bash_completion.d/${PORTNAME}.sh
.include <bsd.port.mk>

View File

@ -0,0 +1,3 @@
TIMESTAMP = 1600714118
SHA256 (naggie-dstask-v0.20_GH0.tar.gz) = a2a79e534896f16094df1e16033f63f7399326f15d689c1b22d8ceb6d9547b40
SIZE (naggie-dstask-v0.20_GH0.tar.gz) = 2631936

View File

@ -0,0 +1,21 @@
Dstask is a personal task tracker designed to help you focus. It is
similar to taskwarrior but uses git to synchronise instead of a
proprietary protocol.
Dstask is mature enough for daily use.
Features:
o Powerful context system (automatically applies filter/tags to
queries and new tasks)
o Git powered sync/undo/resolve (passwordstore.org style) which means
no need to set up a sync server, and sync between devices is easy!
o Task listing won't break with long task text (unlike taskwarrior,
currently)
o note command -- edit a full markdown note for each task. Checklists
are useful here.
o open command -- open URLs found in specified task (including notes)
in the browser
o zsh/bash completion for speed
o A single statically-linked binary
WWW: https://github.com/naggie/dstask

View File

@ -2,8 +2,8 @@
# $FreeBSD$
PORTNAME= flameshot
PORTVERSION= 0.6.0
PORTREVISION= 3
PORTVERSION= 0.8.0
#PORTREVISION= 0
DISTVERSIONPREFIX= v
CATEGORIES= deskutils
@ -13,7 +13,9 @@ COMMENT= Powerful yet simple to use screenshot software
LICENSE= GPLv3
LICENSE_FILE= ${WRKSRC}/LICENSE
USES= compiler:c++11-lang gl qmake qt:5
USES= cmake compiler:c++11-lang gl qmake qt:5
CMAKE_INSTALL_PREFIX= ${STAGEDIR}/${PREFIX}
GH_ACCOUNT= lupoDharkael

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1535060289
SHA256 (lupoDharkael-flameshot-v0.6.0_GH0.tar.gz) = 61b3a1969d6e17d80d5d90a3fce53ca5ae78fa21f9a45e5a19b0b32ea815a589
SIZE (lupoDharkael-flameshot-v0.6.0_GH0.tar.gz) = 641561
TIMESTAMP = 1600631007
SHA256 (lupoDharkael-flameshot-v0.8.0_GH0.tar.gz) = 41d04c1ccb5c492768d6b66252b554ff1e5fec11fccb7bb0bdb8ae878dd01909
SIZE (lupoDharkael-flameshot-v0.8.0_GH0.tar.gz) = 2204212

View File

@ -0,0 +1,7 @@
--- data/dbus/org.flameshot.Flameshot.service.in.orig 2020-09-19 18:49:02 UTC
+++ data/dbus/org.flameshot.Flameshot.service.in
@@ -1,3 +1,3 @@
[D-BUS Service]
Name=org.flameshot.Flameshot
-Exec=${CMAKE_INSTALL_FULL_BINDIR}/flameshot
+Exec=${PREFIX}/flameshot

View File

@ -1,10 +0,0 @@
--- src/third-party/Qt-Color-Widgets/src/color_wheel.cpp.orig 2020-05-20 03:49:16 UTC
+++ src/third-party/Qt-Color-Widgets/src/color_wheel.cpp
@@ -24,6 +24,7 @@
#include <cmath>
#include <QMouseEvent>
#include <QPainter>
+#include <QPainterPath>
#include <QLineF>
#include <QDragEnterEvent>
#include <QMimeData>

View File

@ -1,10 +0,0 @@
--- src/tools/arrow/arrowtool.h.orig 2020-05-20 03:53:57 UTC
+++ src/tools/arrow/arrowtool.h
@@ -19,6 +19,7 @@
#include "src/tools/abstracttwopointtool.h"
#include <QPainter>
+#include <QPainterPath>
class ArrowTool : public AbstractTwoPointTool {
Q_OBJECT

View File

@ -1,18 +1,33 @@
bin/flameshot
share/applications/flameshot.desktop
share/bash-completion/completions/flameshot
share/dbus-1/interfaces/org.dharkael.Flameshot.xml
share/dbus-1/services/org.dharkael.Flameshot.service
share/dbus-1/interfaces/org.flameshot.Flameshot.xml
share/dbus-1/services/org.flameshot.Flameshot.service
%%DATADIR%%/translations/Internationalization_ca.qm
%%DATADIR%%/translations/Internationalization_cs.qm
%%DATADIR%%/translations/Internationalization_de_DE.qm
%%DATADIR%%/translations/Internationalization_es.qm
%%DATADIR%%/translations/Internationalization_eu_ES.qm
%%DATADIR%%/translations/Internationalization_fr.qm
%%DATADIR%%/translations/Internationalization_hu.qm
%%DATADIR%%/translations/Internationalization_it_IT.qm
%%DATADIR%%/translations/Internationalization_ja.qm
%%DATADIR%%/translations/Internationalization_ka.qm
%%DATADIR%%/translations/Internationalization_ko.qm
%%DATADIR%%/translations/Internationalization_nl.qm
%%DATADIR%%/translations/Internationalization_nl_NL.qm
%%DATADIR%%/translations/Internationalization_pl.qm
%%DATADIR%%/translations/Internationalization_pt_BR.qm
%%DATADIR%%/translations/Internationalization_ru.qm
%%DATADIR%%/translations/Internationalization_sk.qm
%%DATADIR%%/translations/Internationalization_sr_SP.qm
%%DATADIR%%/translations/Internationalization_sv_SE.qm
%%DATADIR%%/translations/Internationalization_tr.qm
%%DATADIR%%/translations/Internationalization_uk.qm
%%DATADIR%%/translations/Internationalization_zh_CN.qm
%%DATADIR%%/translations/Internationalization_zh_TW.qm
share/icons/hicolor/128x128/apps/flameshot.png
share/icons/hicolor/48x48/apps/flameshot.png
share/icons/hicolor/scalable/apps/flameshot.svg
share/metainfo/flameshot.appdata.xml
share/metainfo/flameshot.metainfo.xml
share/zsh/site-functions/_flameshot

View File

@ -3,6 +3,7 @@
PORTNAME= bpython
PORTVERSION= 0.19
PORTREVISION= 1
CATEGORIES= devel python
MASTER_SITES= CHEESESHOP \
https://bpython-interpreter.org/releases/
@ -17,7 +18,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE
BUILD_DEPENDS= ${PY_SPHINX}
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}curtsies>=0.1.18:devel/py-curtsies@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}greenlet>=0:devel/py-greenlet@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}pygments>=0:textproc/py-pygments@${PY_FLAVOR} \
${PY_PYGMENTS} \
${PYTHON_PKGNAMEPREFIX}requests>=0:www/py-requests@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}six>=1.5:devel/py-six@${PY_FLAVOR}

View File

@ -1,9 +1,12 @@
# $FreeBSD$
PORTNAME= cpp2py
DISTVERSION= 1.5.20200812
DISTVERSION= 2.0.0
CATEGORIES= devel
PATCH_SITES= https://github.com/${GH_ACCOUNT}/${GH_PROJECT}/commit/
PATCHFILES= 44d5238ab4f05ed4064736ffd2f2b63438d3f64c.patch:-p1 # fix build on i386
MAINTAINER= yuri@FreeBSD.org
COMMENT= Reflection tools based on clang
@ -19,19 +22,22 @@ BUILD_DEPENDS= ${PY_DEPENDS} \
RUN_DEPENDS= ${PY_DEPENDS} \
llvm${LLVM_VER}>0:devel/llvm${LLVM_VER}
USES= cmake compiler:c++14-lang python shebangfix
USES= cmake compiler:c++14-lang gettext-runtime python shebangfix
USE_LDCONFIG= yes
USE_GITHUB= yes
GH_ACCOUNT= TRIQS
GH_TAGNAME= 10ab97d2e5e56656227a74118943de02e2265292
SHEBANG_FILES= bin/c*
CMAKE_ARGS= -DPYTHON_INTERPRETER:STRING=${PYTHON_CMD} \
-DFREEBSD_LLVM_VER:STRING=${LLVM_VER}
LLVM_VER= 60
LLVM_VER= 10
PORTSCOUT= limit:^[0-9\.]*$$
post-install: # remove unnecessary files
@cd ${STAGEDIR}${PREFIX} && ${RM} share/cpp2py.modulefile share/cpp2pyvars.sh
post-install: # remove the unnecessary file: https://github.com/TRIQS/cpp2py/issues/41
@${RM} ${STAGEDIR}${PREFIX}/share/cpp2pyvars.sh
.include <bsd.port.mk>

View File

@ -1,3 +1,5 @@
TIMESTAMP = 1597389977
SHA256 (TRIQS-cpp2py-1.5.20200812-10ab97d2e5e56656227a74118943de02e2265292_GH0.tar.gz) = 009d0114688a763c98cf4a63eee3396426cde170306cb117fa61613b604d5223
SIZE (TRIQS-cpp2py-1.5.20200812-10ab97d2e5e56656227a74118943de02e2265292_GH0.tar.gz) = 87916
TIMESTAMP = 1600704743
SHA256 (TRIQS-cpp2py-2.0.0_GH0.tar.gz) = df67dc69ef3a57c615f39ea14b63bb00309adfaf6130e64cf84b2df1553696f6
SIZE (TRIQS-cpp2py-2.0.0_GH0.tar.gz) = 87867
SHA256 (44d5238ab4f05ed4064736ffd2f2b63438d3f64c.patch) = a48322e9173c978e622ec363316275e66838fca9bc35de7ffec968fd7bb6c8d0
SIZE (44d5238ab4f05ed4064736ffd2f2b63438d3f64c.patch) = 1684

View File

@ -0,0 +1,8 @@
--- c++/cpp2py/CMakeLists.txt.orig 2020-08-17 21:09:23 UTC
+++ c++/cpp2py/CMakeLists.txt
@@ -1,4 +1,4 @@
-add_library(cpp2py signal_handler.cpp exceptions.cpp numpy_proxy.cpp)
+add_library(cpp2py SHARED signal_handler.cpp exceptions.cpp numpy_proxy.cpp)
add_library(cpp2py::cpp2py ALIAS cpp2py)
target_compile_options(cpp2py PRIVATE -std=c++17 -fPIC)

View File

@ -1,7 +1,6 @@
bin/c++2cxx
bin/c++2py
bin/c++2rst
bin/cp_rs
include/cpp2py/converters/basic_types.hpp
include/cpp2py/converters/complex.hpp
include/cpp2py/converters/function.hpp
@ -29,7 +28,7 @@ lib/cmake/Cpp2Py/Cpp2PyConfig.cmake
lib/cmake/Cpp2Py/Cpp2PyConfigVersion.cmake
lib/cmake/Cpp2Py/Cpp2PyTargets-%%CMAKE_BUILD_TYPE%%.cmake
lib/cmake/Cpp2Py/Cpp2PyTargets.cmake
lib/libcpp2py.a
lib/libcpp2py.so
%%PYTHON_SITELIBDIR%%/cpp2cxx/__init__.py
%%PYTHON_SITELIBDIR%%/cpp2cxx/cpp2cxx.py
%%PYTHON_SITELIBDIR%%/cpp2py/__init__.py

View File

@ -12,7 +12,7 @@ COMMENT= Tools and library to manipulate EFI variables
LICENSE= LGPL21
BROKEN_aarch64= fails to build: gmake: no rule to make target 'efivar-guids.h', needed by 'efivar.h'
NOT_FOR_ARCHS= powerpc powerpc64 sparc64
NOT_FOR_ARCHS= powerpc powerpc64 powerpspe sparc64
NOT_FOR_ARCHS_REASON= specification only supports little-endian processors
LIB_DEPENDS= libpopt.so:devel/popt

View File

@ -11,6 +11,7 @@ COMMENT= C++ library developed and used at Facebook
LICENSE= APACHE20
LICENSE_FILE= ${WRKSRC}/LICENSE
BROKEN_FreeBSD_11= bug in folly, confusion with Jemalloc: https://github.com/facebook/folly/issues/1458
BROKEN_i386= error: use of undeclared identifier 'DCHECK': https://github.com/facebook/folly/issues/1168
LIB_DEPENDS= libboost_atomic.so:devel/boost-libs \

View File

@ -3,6 +3,7 @@
PORTNAME= gn
DISTVERSIONPREFIX= v
DISTVERSION= 1823
PORTREVISION= 1
CATEGORIES= devel
MAINTAINER= o.hushchenkov@gmail.com

View File

@ -1,8 +1,8 @@
- .git/ is missing in archive, so use version from environment
--- build/gen.py.orig 2020-02-22 10:07:32 UTC
--- build/gen.py.orig 2020-09-21 09:20:32 UTC
+++ build/gen.py
@@ -124,25 +124,16 @@ def main(argv):
@@ -149,25 +149,16 @@ def main(argv):
def GenerateLastCommitPosition(host, header):

View File

@ -0,0 +1,18 @@
--- src/gn/version.h.orig 2020-09-21 09:21:46 UTC
+++ src/gn/version.h
@@ -8,6 +8,15 @@
#include <optional>
#include <string>
+// Undefine major/minor from sys/types.h
+#ifdef major
+#undef major
+#endif
+
+#ifdef minor
+#undef minor
+#endif
+
// Represents a semantic version.
class Version {
public:

View File

@ -1,8 +1,7 @@
# $FreeBSD$
PORTNAME= got
PORTVERSION= 0.39
PORTREVISION= 2
PORTVERSION= 0.40
CATEGORIES= devel
MASTER_SITES= https://gameoftrees.org/releases/

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1600100495
SHA256 (got-0.39.tar.gz) = 0169e18c71e9005935e8c6b77ea95f18c49762b98767b7d312a3d24121e39df4
SIZE (got-0.39.tar.gz) = 440979
TIMESTAMP = 1600702149
SHA256 (got-0.40.tar.gz) = 7c587749bb990c9d933808e860fc18a4259861bb82cffac3ead7a4640c77d23b
SIZE (got-0.40.tar.gz) = 440924

View File

@ -1,4 +1,4 @@
--- got/got.c.orig 2020-09-14 13:58:27 UTC
--- got/got.c.orig 2020-09-21 12:09:15 UTC
+++ got/got.c
@@ -213,7 +213,8 @@ main(int argc, char *argv[])
@ -10,7 +10,7 @@
if (Vflag) {
got_version_print_str();
@@ -3884,7 +3885,7 @@ print_diff(void *arg, unsigned char status, unsigned c
@@ -3883,7 +3884,7 @@ print_diff(void *arg, unsigned char status, unsigned c
if (dirfd != -1) {
fd = openat(dirfd, de_name, O_RDONLY | O_NOFOLLOW);
if (fd == -1) {
@ -19,7 +19,7 @@
err = got_error_from_errno2("openat",
abspath);
goto done;
@@ -3897,7 +3898,7 @@ print_diff(void *arg, unsigned char status, unsigned c
@@ -3896,7 +3897,7 @@ print_diff(void *arg, unsigned char status, unsigned c
} else {
fd = open(abspath, O_RDONLY | O_NOFOLLOW);
if (fd == -1) {
@ -28,7 +28,7 @@
err = got_error_from_errno2("open",
abspath);
goto done;
@@ -9283,11 +9284,11 @@ cat_commit(struct got_object_id *id, struct got_reposi
@@ -9282,11 +9283,11 @@ cat_commit(struct got_object_id *id, struct got_reposi
}
fprintf(outfile, "%s%s %lld +0000\n", GOT_COMMIT_LABEL_AUTHOR,
got_object_commit_get_author(commit),
@ -42,7 +42,7 @@
logmsg = got_object_commit_get_logmsg_raw(commit);
fprintf(outfile, "messagelen %zd\n", strlen(logmsg));
@@ -9342,7 +9343,7 @@ cat_tag(struct got_object_id *id, struct got_repositor
@@ -9341,7 +9342,7 @@ cat_tag(struct got_object_id *id, struct got_repositor
fprintf(outfile, "%s%s %lld +0000\n", GOT_TAG_LABEL_TAGGER,
got_object_tag_get_tagger(tag),

View File

@ -1,12 +0,0 @@
XXX remove after 0.39
--- lib/utf8.c.orig 2020-09-10 16:01:39 UTC
+++ lib/utf8.c
@@ -15,6 +15,8 @@
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
+#include <sys/types.h>
+
#include <err.h>
#include <stdlib.h>
#include <string.h>

View File

@ -1,11 +0,0 @@
XXX remove after 0.39
--- libexec/got-read-gotconfig/got-read-gotconfig.c.orig 2020-09-14 16:29:32 UTC
+++ libexec/got-read-gotconfig/got-read-gotconfig.c
@@ -27,6 +27,7 @@
#include <stdlib.h>
#include <string.h>
#include <sha1.h>
+#include <unistd.h>
#include <zlib.h>
#include "got_error.h"

View File

@ -1,36 +1,6 @@
XXX remove first hunk after 0.39
--- libexec/got-read-gotconfig/parse.y.orig 2020-09-14 16:35:22 UTC
--- libexec/got-read-gotconfig/parse.y.orig 2020-09-21 12:09:15 UTC
+++ libexec/got-read-gotconfig/parse.y
@@ -24,27 +24,17 @@
%{
#include <sys/types.h>
#include <sys/queue.h>
-#include <sys/socket.h>
-#include <sys/stat.h>
-#include <netinet/in.h>
-
-#include <arpa/inet.h>
-
#include <netdb.h>
#include <ctype.h>
#include <err.h>
#include <errno.h>
-#include <event.h>
-#include <ifaddrs.h>
-#include <imsg.h>
#include <limits.h>
#include <stdarg.h>
#include <stdio.h>
+#include <stdlib.h>
#include <string.h>
-#include <syslog.h>
-#include <unistd.h>
#include "got_error.h"
#include "gotconfig.h"
@@ -71,7 +61,7 @@ int igetc(void);
@@ -61,7 +61,7 @@ int igetc(void);
int lgetc(int);
void lungetc(int);
int findeol(void);
@ -39,7 +9,7 @@ XXX remove first hunk after 0.39
TAILQ_HEAD(symhead, sym) symhead = TAILQ_HEAD_INITIALIZER(symhead);
struct sym {
@@ -133,7 +123,7 @@ boolean : STRING {
@@ -123,7 +123,7 @@ boolean : STRING {
;
numberstring : NUMBER {
char *s;
@ -48,7 +18,7 @@ XXX remove first hunk after 0.39
yyerror("string: asprintf");
YYERROR;
}
@@ -395,7 +385,7 @@ getservice(char *n)
@@ -385,7 +385,7 @@ getservice(char *n)
}
static int

View File

@ -1,13 +0,0 @@
XXX remove after 0.39
--- regress/cmdline/commit.sh.orig 2020-09-13 18:20:00 UTC
+++ regress/cmdline/commit.sh
@@ -248,7 +248,8 @@ test_commit_deleted_subdirs() {
return 1
fi
- (cd $testroot/wt && got rm -R $testroot/wt/{epsilon,gamma} >/dev/null)
+ (cd $testroot/wt && \
+ got rm -R $testroot/wt/epsilon $testroot/wt/gamma >/dev/null)
(cd $testroot/wt && got commit -m 'test commit_deleted_subdirs' \
> $testroot/stdout 2> $testroot/stderr)

View File

@ -1,4 +1,3 @@
XXX remove second hunk after 0.39
--- regress/cmdline/common.sh.orig 2020-09-13 18:20:00 UTC
+++ regress/cmdline/common.sh
@@ -24,6 +24,20 @@ export GOT_LOG_DEFAULT_LIMIT=0
@ -22,25 +21,6 @@ XXX remove second hunk after 0.39
git_init()
{
git init -q "$1"
@@ -96,13 +110,13 @@ git_show_tree()
trim_obj_id()
{
- let trimcount=$1
- id=$2
+ local trimcount=$1
+ local id=$2
- pat=""
- while [ trimcount -gt 0 ]; do
+ local pat=""
+ while [ "$trimcount" -gt 0 ]; do
pat="[0-9a-f]$pat"
- let trimcount--
+ trimcount=$((trimcount - 1))
done
echo ${id%$pat}
@@ -168,7 +182,7 @@ test_init()
echo "No test name provided" >&2
return 1

View File

@ -2,11 +2,11 @@
PORTNAME= intel-graphics-compiler
DISTVERSIONPREFIX= igc-
DISTVERSION= 1.0.4944
DISTVERSION= 1.0.5064
CATEGORIES= devel
PATCH_SITES= https://github.com/${GH_ACCOUNT}/${GH_PROJECT}/commit/
PATCHFILES+= b4e40a433077.patch:-p1 # https://github.com/intel/intel-graphics-compiler/pull/129
PATCHFILES+= d878880cbb3b.patch:-p1 # https://github.com/intel/intel-graphics-compiler/pull/129
MAINTAINER= jbeich@FreeBSD.org
COMMENT= Intel Graphics Compiler for OpenCL

View File

@ -1,7 +1,7 @@
TIMESTAMP = 1599469325
SHA256 (intel-intel-graphics-compiler-igc-1.0.4944_GH0.tar.gz) = 4fd677f9206e390f842748a0d749be815d3c93f2ee5cc376af206d8e91ad244b
SIZE (intel-intel-graphics-compiler-igc-1.0.4944_GH0.tar.gz) = 6632351
TIMESTAMP = 1600252048
SHA256 (intel-intel-graphics-compiler-igc-1.0.5064_GH0.tar.gz) = 3636829234796e74bf8a94b6cf1e1e0fb709d0d8a56841f8334a6bea788e6857
SIZE (intel-intel-graphics-compiler-igc-1.0.5064_GH0.tar.gz) = 6675927
SHA256 (intel-vc-intrinsics-8300678_GH0.tar.gz) = 0058323fb922f3ab0f82233821b13fd882e59f7b7741cc3d63c29f432289c90f
SIZE (intel-vc-intrinsics-8300678_GH0.tar.gz) = 97070
SHA256 (b4e40a433077.patch) = 56950deb485a4c1dc844f4864f42b80907919b61132b0e797f7955989fed0597
SIZE (b4e40a433077.patch) = 9585
SHA256 (d878880cbb3b.patch) = f430b2da0d212594ce73f23b279a1435f08dea60f30ec35494411ab0dc0fcf70
SIZE (d878880cbb3b.patch) = 9088

View File

@ -233,24 +233,17 @@ CMake Error at IGC/CMakeLists.txt:1974 (message):
+#if defined(__GNUC__)
# pragma GCC diagnostic pop
#endif
--- IGC/common/LLVMWarningsPush.hpp.orig 2019-11-27 01:05:20 UTC
--- IGC/common/LLVMWarningsPush.hpp.orig 2020-09-16 10:27:28 UTC
+++ IGC/common/LLVMWarningsPush.hpp
@@ -55,13 +55,13 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -55,7 +55,7 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
# pragma warning( push )
#endif
-#if defined(__linux__)
+#if defined(__GNUC__)
# pragma GCC diagnostic push
#endif
#include <llvm/Config/llvm-config.h>
-#if defined(__linux__)
+#if defined(__GNUC__)
# if __GNUC__ > 8
# pragma GCC diagnostic ignored "-Winit-list-lifetime"
# endif
# if __GNUC__ > 8
# pragma GCC diagnostic ignored "-Winit-list-lifetime"
--- IGC/common/igc_regkeys.hpp.orig 2019-11-27 01:05:20 UTC
+++ IGC/common/igc_regkeys.hpp
@@ -39,7 +39,7 @@ typedef char debugString[256];
@ -271,9 +264,9 @@ CMake Error at IGC/CMakeLists.txt:1974 (message):
#define LINUX_RELEASE_MODE
#endif
--- visa/BuildCISAIRImpl.cpp.orig 2020-08-18 09:36:43 UTC
--- visa/BuildCISAIRImpl.cpp.orig 2020-09-16 10:27:28 UTC
+++ visa/BuildCISAIRImpl.cpp
@@ -568,7 +568,6 @@ extern void CISA_delete_buffer(YY_BUFFER_STATE buf);
@@ -576,7 +576,6 @@ extern void CISA_delete_buffer(YY_BUFFER_STATE buf);
int CISA_IR_Builder::ParseVISAText(const std::string& visaHeader, const std::string& visaText, const std::string& visaTextFile)
{
@ -281,10 +274,10 @@ CMake Error at IGC/CMakeLists.txt:1974 (message):
// Direct output of parser to null
#if defined(_WIN64) || defined(_WIN32)
CISAout = fopen("nul", "w");
@@ -612,16 +611,11 @@ int CISA_IR_Builder::ParseVISAText(const std::string&
@@ -627,16 +626,11 @@ int CISA_IR_Builder::ParseVISAText(const std::string&
}
return VISA_SUCCESS;
return status;
-#else
- assert(0 && "vISA asm parsing not supported on this platform");
- return VISA_FAILURE;
@ -298,7 +291,7 @@ CMake Error at IGC/CMakeLists.txt:1974 (message):
// Direct output of parser to null
#if defined(_WIN64) || defined(_WIN32)
CISAout = fopen("nul", "w");
@@ -647,10 +641,6 @@ int CISA_IR_Builder::ParseVISAText(const std::string&
@@ -662,10 +656,6 @@ int CISA_IR_Builder::ParseVISAText(const std::string&
fclose(CISAout);
}
return VISA_SUCCESS;

View File

@ -2,7 +2,7 @@
# $FreeBSD$
PORTNAME= libcbor
PORTVERSION= 0.7.0
PORTVERSION= 0.8.0
DISTVERSIONPREFIX= v
CATEGORIES= devel
@ -17,7 +17,7 @@ LIB_DEPENDS= libcjson.so:devel/libcjson
USES= cmake
CMAKE_OFF= CBOR_CUSTOM_ALLOC COVERAGE HUGE_FUZZ PRINT_FUZZ SANE_MALLOC SANITIZE WITH_EXAMPLES WITH_TESTS
CMAKE_ON= CBOR_PRETTY_PRINTER
CMAKE_ON= BUILD_SHARED_LIBS CBOR_PRETTY_PRINTER
PLIST_SUB= PORTVERSION=${PORTVERSION}

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1588013482
SHA256 (PJK-libcbor-v0.7.0_GH0.tar.gz) = fb731afe0a9980581d85e4b8d4ef128b175f782d92e0cd898935f3d26dd3dde7
SIZE (PJK-libcbor-v0.7.0_GH0.tar.gz) = 266323
TIMESTAMP = 1600709920
SHA256 (PJK-libcbor-v0.8.0_GH0.tar.gz) = 618097166ea4a54499646998ccaa949a5816e6a665cf1d6df383690895217c8b
SIZE (PJK-libcbor-v0.8.0_GH0.tar.gz) = 267044

View File

@ -1,7 +1,7 @@
--- src/CMakeLists.txt.orig 2020-03-26 21:12:22 UTC
--- src/CMakeLists.txt.orig 2020-09-20 17:15:03 UTC
+++ src/CMakeLists.txt
@@ -23,12 +23,12 @@ set_target_properties(cbor_shared PROPERTIES
OUTPUT_NAME cbor
@@ -26,7 +26,7 @@ endif()
set_target_properties(cbor PROPERTIES
VERSION ${CBOR_VERSION}
MACHO_COMPATIBILITY_VERSION ${CBOR_VERSION_MAJOR}.${CBOR_VERSION_MINOR}.0
- SOVERSION ${CBOR_VERSION_MAJOR}.${CBOR_VERSION_MINOR})
@ -9,9 +9,3 @@
configure_file(libcbor.pc.in libcbor.pc @ONLY)
# http://www.cmake.org/Wiki/CMake:Install_Commands
-install(TARGETS cbor_shared
+install(TARGETS cbor cbor_shared
ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR}
LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR}
RUNTIME DESTINATION bin)

View File

@ -2,6 +2,7 @@ include/cbor.h
include/cbor/arrays.h
include/cbor/bytestrings.h
include/cbor/callbacks.h
include/cbor/cbor_export.h
include/cbor/common.h
include/cbor/configuration.h
include/cbor/data.h
@ -19,7 +20,6 @@ include/cbor/serialization.h
include/cbor/streaming.h
include/cbor/strings.h
include/cbor/tags.h
lib/libcbor.a
lib/libcbor.so
lib/libcbor.so.0
lib/libcbor.so.%%PORTVERSION%%

View File

@ -3,7 +3,7 @@
PORTNAME= libruin
PORTVERSION= 0.2.0
PORTREVISION= 2
PORTREVISION= 3
CATEGORIES= devel scheme
MASTER_SITES= SAVANNAH

View File

@ -0,0 +1,28 @@
--- src/scheme.h.orig 2011-09-16 14:29:42 UTC
+++ src/scheme.h
@@ -23,7 +23,7 @@
#include "layout.h"
#include "window.h"
-SCM ruin_scheme_scss_document_interface_sdom;
+extern SCM ruin_scheme_scss_document_interface_sdom;
SCM ruin_scheme_scss_color_to_hex (ruin_window_t *, char *);
void ruin_scheme_scss_set_cascade_author (ruin_window_t *, SCM, SCM);
@@ -71,11 +71,11 @@ int ruin_scheme_sdom_text_node_p (ruin_window_t *, SCM
char *ruin_scheme_sdom_value (ruin_window_t *, SCM);
SCM ruin_scheme_sdom_xml_to_sdom (ruin_window_t *, SCM, SCM);
-SCM ruin_scheme_sdom_node_type_attr;
-SCM ruin_scheme_sdom_node_type_element;
-SCM ruin_scheme_sdom_node_type_document;
-SCM ruin_scheme_sdom_node_type_processing_instruction;
-SCM ruin_scheme_sdom_node_type_text;
+extern SCM ruin_scheme_sdom_node_type_attr;
+extern SCM ruin_scheme_sdom_node_type_element;
+extern SCM ruin_scheme_sdom_node_type_document;
+extern SCM ruin_scheme_sdom_node_type_processing_instruction;
+extern SCM ruin_scheme_sdom_node_type_text;
void ruin_scheme_init();

View File

@ -3,6 +3,7 @@
PORTNAME= libsml
PORTVERSION= 0.1.1
PORTREVISION= 1
CATEGORIES= devel
MAINTAINER= mail+freebsd@gerritbeine.de

View File

@ -0,0 +1,11 @@
--- test/src/sml_boolean_test.c.orig 2018-01-25 17:04:21 UTC
+++ test/src/sml_boolean_test.c
@@ -22,7 +22,7 @@
TEST_GROUP(sml_boolean);
-sml_buffer *buf;
+extern sml_buffer *buf;
TEST_SETUP(sml_boolean) {
buf = sml_buffer_init(512);

View File

@ -0,0 +1,11 @@
--- test/src/sml_buffer_test.c.orig 2018-01-25 17:04:21 UTC
+++ test/src/sml_buffer_test.c
@@ -22,7 +22,7 @@
TEST_GROUP(sml_buffer);
int buffer_len = 512;
-sml_buffer *buf;
+extern sml_buffer *buf;
TEST_SETUP(sml_buffer) {
buf = sml_buffer_init(buffer_len);

View File

@ -0,0 +1,11 @@
--- test/src/sml_file_test.c.orig 2018-01-25 17:04:21 UTC
+++ test/src/sml_file_test.c
@@ -22,7 +22,7 @@
TEST_GROUP(sml_file);
-sml_buffer *buf;
+extern sml_buffer *buf;
TEST_SETUP(sml_file) {
buf = sml_buffer_init(512);

View File

@ -0,0 +1,11 @@
--- test/src/sml_get_profile_pack_request_test.c.orig 2018-01-25 17:04:21 UTC
+++ test/src/sml_get_profile_pack_request_test.c
@@ -22,7 +22,7 @@
TEST_GROUP(sml_get_profile_pack_request);
-sml_buffer *buf;
+extern sml_buffer *buf;
TEST_SETUP(sml_get_profile_pack_request) {
buf = sml_buffer_init(512);

View File

@ -0,0 +1,11 @@
--- test/src/sml_list_test.c.orig 2018-01-25 17:04:21 UTC
+++ test/src/sml_list_test.c
@@ -22,7 +22,7 @@
TEST_GROUP(sml_list);
-sml_buffer *buf;
+extern sml_buffer *buf;
TEST_SETUP(sml_list) {
buf = sml_buffer_init(512);

View File

@ -0,0 +1,11 @@
--- test/src/sml_message_test.c.orig 2018-01-25 17:04:21 UTC
+++ test/src/sml_message_test.c
@@ -22,7 +22,7 @@
TEST_GROUP(sml_message);
-sml_buffer *buf;
+extern sml_buffer *buf;
TEST_SETUP(sml_message) {
buf = sml_buffer_init(512);

View File

@ -0,0 +1,11 @@
--- test/src/sml_number_test.c.orig 2018-01-25 17:04:21 UTC
+++ test/src/sml_number_test.c
@@ -23,7 +23,7 @@
TEST_GROUP(sml_number);
-sml_buffer *buf;
+extern sml_buffer *buf;
TEST_SETUP(sml_number) {
buf = sml_buffer_init(512);

View File

@ -0,0 +1,11 @@
--- test/src/sml_octet_string_test.c.orig 2018-01-25 17:04:21 UTC
+++ test/src/sml_octet_string_test.c
@@ -22,7 +22,7 @@
TEST_GROUP(sml_octet_string);
-sml_buffer *buf;
+extern sml_buffer *buf;
TEST_SETUP(sml_octet_string) {
buf = sml_buffer_init(512);

View File

@ -0,0 +1,11 @@
--- test/src/sml_open_request_test.c.orig 2018-01-25 17:04:21 UTC
+++ test/src/sml_open_request_test.c
@@ -22,7 +22,7 @@
TEST_GROUP(sml_open_request);
-sml_buffer *buf;
+extern sml_buffer *buf;
TEST_SETUP(sml_open_request) {
buf = sml_buffer_init(512);

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