diff --git a/audio/ncmpcpp/Makefile b/audio/ncmpcpp/Makefile index c5d56355c5f..b6c7e3105a0 100644 --- a/audio/ncmpcpp/Makefile +++ b/audio/ncmpcpp/Makefile @@ -4,7 +4,7 @@ PORTNAME= ncmpcpp DISTVERSION= 0.8.2 PORTREVISION= 9 CATEGORIES= audio -MASTER_SITES= http://ncmpcpp.rybczak.net/stable/ +MASTER_SITES= https://ncmpcpp.rybczak.net/stable/ MAINTAINER= yamagi@yamagi.org COMMENT= Ncurses mpd client, clone of ncmpc with some new features diff --git a/cad/Makefile b/cad/Makefile index 20f54c10fbe..9fca7ffd98b 100644 --- a/cad/Makefile +++ b/cad/Makefile @@ -18,6 +18,7 @@ SUBDIR += cascade SUBDIR += chipvault SUBDIR += cura-engine + SUBDIR += digital SUBDIR += dinotrace SUBDIR += dxf2fig SUBDIR += electric diff --git a/cad/digital/Makefile b/cad/digital/Makefile new file mode 100644 index 00000000000..1ef6cc5a215 --- /dev/null +++ b/cad/digital/Makefile @@ -0,0 +1,64 @@ +# $FreeBSD$ + +PORTNAME= digital +DISTVERSIONPREFIX= v +DISTVERSION= 0.22-250 +DISTVERSIONSUFFIX= -gebc913a3 +CATEGORIES= cad java + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Digital logic designer and circuit simulator + +LICENSE= GPLv3 +LICENSE_FILE= ${WRKSRC}/LICENSE + +BUILD_DEPENDS= mvn:devel/maven + +USE_JAVA= yes +USE_GITHUB= yes +GH_ACCOUNT= hneemann +GH_PROJECT= Digital + +NO_ARCH= yes + +# to rebuild the deps archive: +# 1. set DEV_UPDATE_MODE=yes +# 2. make makesum build +# 3. upload the *-deps archive +# 4. set DEV_UPDATE_MODE=no +# 5. make clean makesum + +DEV_UPDATE_MODE= no + +.if (${DEV_UPDATE_MODE} == "yes") +post-build: + @cd ${WRKDIR} && ${TAR} czf ${DISTDIR}/${PORTNAME}-${DISTVERSION}-deps${EXTRACT_SUFX} .m2 + @${ECHO} "(!!!) Please upload the maven deps archive: ${DISTDIR}/${PORTNAME}-${DISTVERSION}-deps${EXTRACT_SUFX}" +.else +MASTER_SITES+= LOCAL/yuri/:maven +DISTFILES+= ${PORTNAME}-${DISTVERSION}-deps${EXTRACT_SUFX}:maven +MVN_ARGS= --offline +.endif + +DESKTOP_ENTRIES= "Digital logic designer" "Digital logic designer and circuit simulator" "" "${PORTNAME}" "Electronics;" "" + +PLIST_FILES= bin/${PORTNAME} \ + ${JAVAJARDIR}/Digital.jar + +do-build: + @cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} \ + ${LOCALBASE}/bin/mvn ${MVN_ARGS} \ + -fae install \ + -Dmaven.test.skip=true \ + -Duser.home=${WRKDIR} \ + -P no-git-rev -Dgit.commit.id.describe=${DISTVERSIONFULL} \ + package +do-install: + ${INSTALL_DATA} ${WRKSRC}/target/Digital.jar ${STAGEDIR}${JAVAJARDIR} + @(echo "#!/bin/sh"; \ + echo ""; \ + echo "${JAVA} -jar ${JAVAJARDIR}/Digital.jar \""$$"@\"" \ + ) > ${STAGEDIR}${PREFIX}/bin/${PORTNAME} + @${CHMOD} +x ${STAGEDIR}${PREFIX}/bin/${PORTNAME} + +.include diff --git a/cad/digital/distinfo b/cad/digital/distinfo new file mode 100644 index 00000000000..5617d166029 --- /dev/null +++ b/cad/digital/distinfo @@ -0,0 +1,5 @@ +TIMESTAMP = 1563814257 +SHA256 (digital-0.22-250-deps.tar.gz) = d11bc092d516dc30095a2b007a943c375929859638f0fa104f1fb51628438896 +SIZE (digital-0.22-250-deps.tar.gz) = 53749701 +SHA256 (hneemann-Digital-v0.22-250-gebc913a3_GH0.tar.gz) = 10a03eae5e4c6175d2aec5b759eb2cb8a1fecd26e683c6c9e04766c25456e22c +SIZE (hneemann-Digital-v0.22-250-gebc913a3_GH0.tar.gz) = 4676883 diff --git a/cad/digital/pkg-descr b/cad/digital/pkg-descr new file mode 100644 index 00000000000..66c64112c8c --- /dev/null +++ b/cad/digital/pkg-descr @@ -0,0 +1,24 @@ +Features: +* Visualization of signal states with measurement graphs. +* Single gate mode to analyze oscillations. +* Analysis and synthesis of combinatorial and sequential circuits. +* Simple testing of circuits: You can create test cases and execute them to + verify your design. +* Includes a simple editor for finite state machines (FSM). A FSM can then be + converted to a state transition table and a circuit implementing the FSM. +* Contains a library with the most commonly used 74xx series integrated circuits +* Supports generic circuits. This allows the creation of circuits that can be + parameterized when used. In this way, it is possible, for e.g., to create a + barrel shifter with a selectable bit width. +* Supports large circuits: The "Conway's Game of Life" example consists of about + 2400 active components and works just fine. +* It is possible to use custom components which are implemented in Java and + packed in a jar file. See this example for details. +* Simple remote TCP interface which e.g. allows an assembler IDE to control the + simulator. +* Components can be described using VHDL or Verilog. The open source VHDL + simulator ghdl needs to be installed to simulate a VHDL defined component, and + the open source Verilog simulator Icarus Verilog is required to simulate a + Verilog defined component. + +WWW: https://github.com/hneemann/Digital diff --git a/cad/kicad-devel/Makefile b/cad/kicad-devel/Makefile index f8a1c1923c8..893c2fc3448 100644 --- a/cad/kicad-devel/Makefile +++ b/cad/kicad-devel/Makefile @@ -62,7 +62,7 @@ CMAKE_ARGS= -DLOCALBASE="${LOCALBASE}" \ -DKICAD_SCRIPTING=ON \ -DKICAD_SCRIPTING_MODULES=ON \ -DKICAD_SCRIPTING_WXPYTHON=ON \ - -DKICAD_SCRIPTING_WXPYTHON_PHOENIX=ON \ + -DKICAD_SCRIPTING_WXPYTHON_PHOENIX=OFF \ -DKICAD_SKIP_BOOST=YES \ -DKICAD_SPICE=ON \ -DKICAD_USE_OCE=OFF \ diff --git a/cad/kicad-devel/Makefile.git_rev b/cad/kicad-devel/Makefile.git_rev index 296dbca7c20..d32ecbf4ed3 100644 --- a/cad/kicad-devel/Makefile.git_rev +++ b/cad/kicad-devel/Makefile.git_rev @@ -1,2 +1,2 @@ -GIT_SRC_HASH= b5c80fe689786ad53a25b7d1f992d894bf75f200 -GIT_SRC_DATE= 20190526091203 +GIT_SRC_HASH= 1808d8bd400876bdb39ed038f4fafa17cabcf30c +GIT_SRC_DATE= 20190722052111 diff --git a/cad/kicad-devel/distinfo b/cad/kicad-devel/distinfo index 3c4904ef8fa..635860213d0 100644 --- a/cad/kicad-devel/distinfo +++ b/cad/kicad-devel/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1558872235 -SHA256 (kicad/KiCad-kicad-source-mirror-r20190526091203-b5c80fe689786ad53a25b7d1f992d894bf75f200_GH0.tar.gz) = bbb1379827d4c1d172703f9886b0782f30259830878f45c7e8f9df3aefa54a4f -SIZE (kicad/KiCad-kicad-source-mirror-r20190526091203-b5c80fe689786ad53a25b7d1f992d894bf75f200_GH0.tar.gz) = 23813867 +TIMESTAMP = 1563796016 +SHA256 (kicad/KiCad-kicad-source-mirror-r20190722052111-1808d8bd400876bdb39ed038f4fafa17cabcf30c_GH0.tar.gz) = 1f7f56fdaf77a63662e66412f1f261ae0d466ce0cb15cf743d53659c22eaafd4 +SIZE (kicad/KiCad-kicad-source-mirror-r20190722052111-1808d8bd400876bdb39ed038f4fafa17cabcf30c_GH0.tar.gz) = 23618822 diff --git a/comms/direwolf/Makefile b/comms/direwolf/Makefile index cffba986829..1ce00300520 100644 --- a/comms/direwolf/Makefile +++ b/comms/direwolf/Makefile @@ -1,33 +1,36 @@ # $FreeBSD$ PORTNAME= direwolf -PORTVERSION= 1.4 -PORTREVISION= 1 +DISTVERSION= 1.5 CATEGORIES= comms hamradio -MAINTAINER= kevans@FreeBSD.org +MAINTAINER= hamradio@FreeBSD.org COMMENT= Software "soundcard" modem/TNC and APRS encoder/decoder LICENSE= GPLv2 -LIB_DEPENDS= libhamlib.so:comms/hamlib \ +LIB_DEPENDS= libasound.so:audio/alsa-lib\ + libhamlib.so:comms/hamlib \ libgps.so:astro/gpsd +USES= gmake python shebangfix + USE_GITHUB= yes GH_ACCOUNT= wb2osz -GH_TAGNAME= 6207e2e -USES= dos2unix gmake python shebangfix +GH_TAGNAME= 1.5 SHEBANG_FILES= telemetry-toolkit/telem-bits.pl telemetry-toolkit/telem-parm.pl\ telemetry-toolkit/telem-eqns.pl dwespeak.sh \ telemetry-toolkit/telem-volts.py telemetry-toolkit/telem-data.pl \ telemetry-toolkit/telem-data91.pl \ - telemetry-toolkit/telem-unit.pl telemetry-toolkit/telem-balloon.pl + telemetry-toolkit/telem-unit.pl telemetry-toolkit/telem-balloon.pl\ + dw-start.sh -OPTIONS_DEFINE= DOCS +OPTIONS_DEFINE= DOCS EXAMPLES +MAKEFILE= Makefile.linux post-patch: - ${CP} ${FILESDIR}/Makefile.FreeBSD ${WRKSRC} - ${REINPLACE_CMD} -e 's|%%PREFIX%%|${PREFIX}|' ${WRKSRC}/dw-start.sh + @${REINPLACE_CMD} -e 's|%%PREFIX%%|${PREFIX}|'\ + -e 's|/var/tmp|/var/log|' ${WRKSRC}/dw-start.sh .include diff --git a/comms/direwolf/distinfo b/comms/direwolf/distinfo index 787514ff9a5..089e74f2b6f 100644 --- a/comms/direwolf/distinfo +++ b/comms/direwolf/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1494361181 -SHA256 (wb2osz-direwolf-1.4-6207e2e_GH0.tar.gz) = d3a42b5207935e38bfa4902a76daf684269f9cb71bcc271d80508293e40ac6a9 -SIZE (wb2osz-direwolf-1.4-6207e2e_GH0.tar.gz) = 13849018 +TIMESTAMP = 1549716498 +SHA256 (wb2osz-direwolf-1.5_GH0.tar.gz) = 2e263ea4fa75c342b620dee048436ac95486ea3f93599ad818e74dfd4aec8b48 +SIZE (wb2osz-direwolf-1.5_GH0.tar.gz) = 17996557 diff --git a/comms/direwolf/files/Makefile.FreeBSD b/comms/direwolf/files/Makefile.FreeBSD deleted file mode 100644 index 98625bd81c4..00000000000 --- a/comms/direwolf/files/Makefile.FreeBSD +++ /dev/null @@ -1,549 +0,0 @@ -# -# Makefile for FreeBSD version of Dire Wolf. -# - -APPS := direwolf decode_aprs text2tt tt2text ll2utm utm2ll aclients atest log2gpx gen_packets ttcalc - -all : $(APPS) direwolf.desktop direwolf.conf - @echo " " - @echo "Next step - install with:" - @echo " " - @echo " sudo make install" - @echo " " - -CFLAGS += -I${LOCALBASE}/include -CFLAGS += -pthread -Igeotranz - -LDFLAGS := -lm -lpthread -L${LOCALBASE}/lib - -#CFLAGS += -mfpu=neon - -#CFLAGS += -DUSE_ALSA -#LDFLAGS += -lasound - -enable_gpsd := $(wildcard /usr/local/include/gps.h) -ifneq ($(enable_gpsd),) -CFLAGS += -DENABLE_GPSD -LDFLAGS += -lgps -endif - - -# Uncomment following lines to enable hamlib support. -CFLAGS += -DUSE_HAMLIB -LDFLAGS += -lhamlib - - -# Name of current directory. -# Used to generate zip file name for distribution. - -z := $(notdir ${CURDIR}) - - - -# -------------------------------- Main application ----------------------------------------- - - - -direwolf : direwolf.o config.o recv.o demod.o dsp.o demod_afsk.o demod_9600.o hdlc_rec.o \ - hdlc_rec2.o multi_modem.o redecode.o rdq.o rrbb.o dlq.o \ - fcs_calc.o ax25_pad.o \ - decode_aprs.o symbols.o server.o kiss.o kissnet.o kiss_frame.o hdlc_send.o fcs_calc.o \ - gen_tone.o audio.o audio_stats.o digipeater.o pfilter.o dedupe.o tq.o xmit.o morse.o \ - ptt.o beacon.o encode_aprs.o latlong.o encode_aprs.o latlong.o textcolor.o \ - dtmf.o aprs_tt.o tt_user.o tt_text.o igate.o nmea.o serial_port.o log.o telemetry.o \ - dwgps.o dwgpsnmea.o dwgpsd.o dtime_now.o \ - geotranz.a - $(CC) -o $@ $^ $(LDFLAGS) -ifneq ($(enable_gpsd),) - @echo " " - @echo "This includes support for gpsd." -else - @echo " " - @echo "This does NOT include support for gpsd." -endif - -# Optimization for slow processors. - -demod.o : fsk_fast_filter.h - -demod_afsk.o : fsk_fast_filter.h - - -fsk_fast_filter.h : demod_afsk.c - $(CC) $(CFLAGS) -o gen_fff -DGEN_FFF demod_afsk.c dsp.c textcolor.c $(LDFLAGS) - ./gen_fff > fsk_fast_filter.h - - - -# Separate application to decode raw data. - -decode_aprs : decode_aprs.c dwgpsnmea.o dwgps.o dwgpsd.o serial_port.o symbols.o ax25_pad.o textcolor.o fcs_calc.o latlong.o log.o telemetry.o tt_text.o - $(CC) $(CFLAGS) -DDECAMAIN -o $@ $^ $(LDFLAGS) - -# Convert between text and touch tone representation. - -text2tt : tt_text.c - $(CC) $(CFLAGS) -DENC_MAIN -o $@ $^ $(LDFLAGS) - -tt2text : tt_text.c - $(CC) $(CFLAGS) -DDEC_MAIN -o $@ $^ $(LDFLAGS) - - -# Convert between Latitude/Longitude and UTM coordinates. - -ll2utm : ll2utm.c geotranz.a textcolor.o - $(CC) $(CFLAGS) -o $@ $^ $(LDFLAGS) - -utm2ll : utm2ll.c geotranz.a textcolor.o - $(CC) $(CFLAGS) -o $@ $^ $(LDFLAGS) - - -# Convert from log file to GPX. - -log2gpx : log2gpx.c textcolor.o - $(CC) $(CFLAGS) -o $@ $^ $(LDFLAGS) - - -# Test application to generate sound. - -gen_packets : gen_packets.c ax25_pad.c hdlc_send.c fcs_calc.c gen_tone.c morse.c textcolor.c dsp.c - $(CC) $(CFLAGS) -o $@ $^ $(LDFLAGS) - -# Unit test for AFSK demodulator - -atest : atest.c demod.o demod_afsk.o demod_9600.o \ - dsp.o hdlc_rec.o hdlc_rec2.o multi_modem.o rrbb.o \ - fcs_calc.o ax25_pad.o decode_aprs.o dwgpsnmea.o \ - dwgps.o dwgpsd.o serial_port.o telemetry.o latlong.o symbols.o tt_text.o textcolor.o - - $(CC) $(CFLAGS) -o $@ $^ $(LDFLAGS) - - -# Multiple AGWPE network or serial port clients to test TNCs side by side. - -aclients : aclients.c ax25_pad.c fcs_calc.c textcolor.o - $(CC) $(CFLAGS) -g -o $@ $^ - - -# Touch Tone to Speech sample application. - -ttcalc : ttcalc.o ax25_pad.o fcs_calc.o textcolor.o - $(CC) $(CFLAGS) -g -o $@ $^ - - -# ----------------------------------------- Libraries -------------------------------------------- - -# UTM, USNG, MGRS conversions. - -geotranz.a : error_string.o mgrs.o polarst.o tranmerc.o ups.o usng.o utm.o - ar -cr $@ $^ - -error_string.o : geotranz/error_string.c - $(CC) $(CFLAGS) -c -o $@ $^ - -mgrs.o : geotranz/mgrs.c - $(CC) $(CFLAGS) -c -o $@ $^ - -polarst.o : geotranz/polarst.c - $(CC) $(CFLAGS) -c -o $@ $^ - -tranmerc.o : geotranz/tranmerc.c - $(CC) $(CFLAGS) -c -o $@ $^ - -ups.o : geotranz/ups.c - $(CC) $(CFLAGS) -c -o $@ $^ - -usng.o : geotranz/usng.c - $(CC) $(CFLAGS) -c -o $@ $^ - -utm.o : geotranz/utm.c - $(CC) $(CFLAGS) -c -o $@ $^ - - - -# ------------------------------------- Installation ---------------------------------- - - - -# Generate apprpriate sample configuration file for this platform. -# Originally, there was one sample for all platforms. It got too cluttered -# and confusing saying, this is for windows, and this is for Linux, and this ... -# Trying to maintain 3 different versions in parallel is error prone. -# We now have a single generic version which can be used to generate -# the various platform specific versions. - -# generic.conf should be checked into source control. -# direwolf.conf should NOT. It is generated when compiling on the target platform. - -direwolf.conf : generic.conf - egrep '^C|^L' generic.conf | cut -c2-999 > direwolf.conf - - -# Where should we install it? - -# My understanding, of the convention, is that something you compile -# from source, that is not a standard part of the operating system, -# should go in /usr/local/bin. - -# However, if you are preparing a "binary" DEB or RPM package, the -# installation location should be /usr/bin. - -# This is a step in the right direction but not sufficient to use /usr instead. -# Eventually I'd like to have targets here to build the .DEB and .RPM packages. - -INSTALLDIR := ${DESTDIR}${PREFIX} -SHAREDIR := ${INSTALLDIR}/share - -# Command to "install" to system directories. Use "ginstall" for Mac. - -INSTALL=install - -# direwolf.desktop was previously handcrafted for the Raspberry Pi. -# It was hardcoded with lxterminal, /home/pi, and so on. -# In version 1.2, try to customize this to match other situations better. - -# TODO: Test this better. - - -direwolf.desktop : - @echo "Generating customized direwolf.desktop ..." - @echo '[Desktop Entry]' > $@ - @echo 'Type=Application' >> $@ -ifneq ($(wildcard /usr/bin/lxterminal),) - @echo "Exec=lxterminal -t \"Dire Wolf\" -e \"$(PREFIX)/bin/direwolf\"" >> $@ -else ifneq ($(wildcard /usr/local/bin/lxterm),) - @echo "Exec=lxterm -hold -title \"Dire Wolf\" -bg white -e \"$(PREFIX)/bin/direwolf\"" >> $@ -else - @echo "Exec=xterm -hold -title \"Dire Wolf\" -bg white -e \"$(PREFIX)/bin/direwolf\"" >> $@ -endif - @echo 'Name=Dire Wolf' >> $@ - @echo 'Comment=APRS Soundcard TNC' >> $@ - @echo 'Icon=${PREFIX}/share/direwolf/dw-icon.png' >> $@ - @echo "Path=$(HOME)" >> $@ - @echo '#Terminal=true' >> $@ - @echo 'Categories=HamRadio' >> $@ - @echo 'Keywords=Ham Radio;APRS;Soundcard TNC;KISS;AGWPE;AX.25' >> $@ - - -# Installation into /usr/local/... -# Needs to be run as root or with sudo. - - -.PHONY: install -install : $(APPS) direwolf.conf tocalls.txt symbols-new.txt symbolsX.txt dw-icon.png direwolf.desktop -# -# Applications, not installed with package manager, normally go in /usr/local/bin. -# /usr/bin is used instead when installing from .DEB or .RPM package. -# - $(BSD_INSTALL_PROGRAM) direwolf $(INSTALLDIR)/bin - $(BSD_INSTALL_PROGRAM) decode_aprs $(INSTALLDIR)/bin - $(BSD_INSTALL_PROGRAM) text2tt $(INSTALLDIR)/bin - $(BSD_INSTALL_PROGRAM) tt2text $(INSTALLDIR)/bin - $(BSD_INSTALL_PROGRAM) ll2utm $(INSTALLDIR)/bin - $(BSD_INSTALL_PROGRAM) utm2ll $(INSTALLDIR)/bin - $(BSD_INSTALL_PROGRAM) aclients $(INSTALLDIR)/bin - $(BSD_INSTALL_PROGRAM) log2gpx $(INSTALLDIR)/bin - $(BSD_INSTALL_PROGRAM) gen_packets $(INSTALLDIR)/bin - $(BSD_INSTALL_PROGRAM) atest $(INSTALLDIR)/bin - $(BSD_INSTALL_PROGRAM) ttcalc $(INSTALLDIR)/bin - $(BSD_INSTALL_SCRIPT) dwespeak.sh $(INSTALLDIR)/bin -# -# Telemetry Toolkit executables. Other .conf and .txt files will go into doc directory. -# - $(BSD_INSTALL_SCRIPT) telemetry-toolkit/telem-balloon.pl $(INSTALLDIR)/bin - $(BSD_INSTALL_SCRIPT) telemetry-toolkit/telem-bits.pl $(INSTALLDIR)/bin - $(BSD_INSTALL_SCRIPT) telemetry-toolkit/telem-data.pl $(INSTALLDIR)/bin - $(BSD_INSTALL_SCRIPT) telemetry-toolkit/telem-data91.pl $(INSTALLDIR)/bin - $(BSD_INSTALL_SCRIPT) telemetry-toolkit/telem-eqns.pl $(INSTALLDIR)/bin - $(BSD_INSTALL_SCRIPT) telemetry-toolkit/telem-parm.pl $(INSTALLDIR)/bin - $(BSD_INSTALL_SCRIPT) telemetry-toolkit/telem-seq.sh $(INSTALLDIR)/bin - $(BSD_INSTALL_SCRIPT) telemetry-toolkit/telem-unit.pl $(INSTALLDIR)/bin - $(BSD_INSTALL_SCRIPT) telemetry-toolkit/telem-volts.py $(INSTALLDIR)/bin -# -# Misc. data such as "tocall" to system mapping. -# - mkdir -p ${SHAREDIR}/direwolf - $(BSD_INSTALL_DATA) tocalls.txt ${SHAREDIR}/direwolf/tocalls.txt - $(BSD_INSTALL_DATA) symbols-new.txt ${SHAREDIR}/direwolf/symbols-new.txt - $(BSD_INSTALL_DATA) symbolsX.txt ${SHAREDIR}/direwolf/symbolsX.txt - $(BSD_INSTALL_DATA) dw-icon.png ${SHAREDIR}/direwolf/dw-icon.png - mkdir -p ${SHAREDIR}/applications - $(BSD_INSTALL_DATA) direwolf.desktop ${SHAREDIR}/applications/direwolf.desktop -# -# Documentation. Various plain text files and PDF. -# $(INSTALL) CHANGES.md $(INSTALLDIR)/share/doc/direwolf/CHANGES.md - mkdir -p ${INSTALLDIR}/share/doc/direwolf - mkdir -p ${INSTALLDIR}/share/direwolf - $(BSD_INSTALL_DATA) LICENSE-dire-wolf.txt $(INSTALLDIR)/share/doc/direwolf/LICENSE-dire-wolf.txt - $(BSD_INSTALL_DATA) LICENSE-other.txt $(INSTALLDIR)/share/doc/direwolf/LICENSE-other.txt -# -# ./README.md is an overview for the project main page. -# doc/README.md contains an overview of the PDF file contents and is more useful here. -# - $(BSD_INSTALL_DATA) doc/README.md $(INSTALLDIR)/share/doc/direwolf/README.md - $(BSD_INSTALL_DATA) doc/User-Guide.pdf $(INSTALLDIR)/share/doc/direwolf/User-Guide.pdf - $(BSD_INSTALL_DATA) doc/Raspberry-Pi-APRS.pdf $(INSTALLDIR)/share/doc/direwolf/Raspberry-Pi-APRS.pdf - $(BSD_INSTALL_DATA) doc/Raspberry-Pi-APRS-Tracker.pdf $(INSTALLDIR)/share/doc/direwolf/Raspberry-Pi-APRS-Tracker.pdf - $(BSD_INSTALL_DATA) doc/Raspberry-Pi-SDR-IGate.pdf $(INSTALLDIR)/share/doc/direwolf/Raspberry-Pi-SDR-IGate.pdf - $(BSD_INSTALL_DATA) doc/APRStt-Implementation-Notes.pdf $(INSTALLDIR)/share/doc/direwolf/APRStt-Implementation-Notes.pdf - $(BSD_INSTALL_DATA) doc/APRStt-interface-for-SARTrack.pdf $(INSTALLDIR)/share/doc/direwolf/APRStt-interface-for-SARTrack.pdf - $(BSD_INSTALL_DATA) doc/APRS-Telemetry-Toolkit.pdf $(INSTALLDIR)/share/doc/direwolf/APRS-Telemetry-Toolkit.pdf - $(BSD_INSTALL_DATA) doc/A-Better-APRS-Packet-Demodulator-Part-1-1200-baud.pdf $(INSTALLDIR)/share/doc/direwolf/A-Better-APRS-Packet-Demodulator-Part-1-1200-baud.pdf - $(BSD_INSTALL_DATA) doc/A-Better-APRS-Packet-Demodulator-Part-2-9600-baud.pdf $(INSTALLDIR)/share/doc/direwolf/A-Better-APRS-Packet-Demodulator-Part-2-9600-baud.pdf -# -# Various sample config and other files go into examples under the doc directory. -# When building from source, these can be put in home directory with "make install-conf". -# When installed from .DEB or .RPM package, the user will need to copy these to -# the home directory or other desired location. -# - mkdir -p ${INSTALLDIR}/share/doc/direwolf/examples - $(BSD_INSTALL_DATA) direwolf.conf $(INSTALLDIR)/share/doc/direwolf/examples/direwolf.conf - $(BSD_INSTALL_DATA) dw-start.sh $(INSTALLDIR)/share/doc/direwolf/examples/dw-start.sh - $(BSD_INSTALL_DATA) sdr.conf $(INSTALLDIR)/share/doc/direwolf/examples/sdr.conf - $(BSD_INSTALL_DATA) telemetry-toolkit/telem-m0xer-3.txt $(INSTALLDIR)/share/doc/direwolf/examples/telem-m0xer-3.txt - $(BSD_INSTALL_DATA) telemetry-toolkit/telem-balloon.conf $(INSTALLDIR)/share/doc/direwolf/examples/telem-balloon.conf - $(BSD_INSTALL_DATA) telemetry-toolkit/telem-volts.conf $(INSTALLDIR)/share/doc/direwolf/examples/telem-volts.conf -# -# "man" pages -# - $(BSD_INSTALL_MAN) man1/aclients.1 $(INSTALLDIR)/man/man1/aclients.1 - $(BSD_INSTALL_MAN) man1/atest.1 $(INSTALLDIR)/man/man1/atest.1 - $(BSD_INSTALL_MAN) man1/decode_aprs.1 $(INSTALLDIR)/man/man1/decode_aprs.1 - $(BSD_INSTALL_MAN) man1/direwolf.1 $(INSTALLDIR)/man/man1/direwolf.1 - $(BSD_INSTALL_MAN) man1/gen_packets.1 $(INSTALLDIR)/man/man1/gen_packets.1 - $(BSD_INSTALL_MAN) man1/ll2utm.1 $(INSTALLDIR)/man/man1/ll2utm.1 - $(BSD_INSTALL_MAN) man1/log2gpx.1 $(INSTALLDIR)/man/man1/log2gpx.1 - $(BSD_INSTALL_MAN) man1/text2tt.1 $(INSTALLDIR)/man/man1/text2tt.1 - $(BSD_INSTALL_MAN) man1/tt2text.1 $(INSTALLDIR)/man/man1/tt2text.1 - $(BSD_INSTALL_MAN) man1/utm2ll.1 $(INSTALLDIR)/man/man1/utm2ll.1 -# - @echo " " - @echo "If this is your first install, not an upgrade, type this to put a copy" - @echo "of the sample configuration file (direwolf.conf) in your home directory:" - @echo " " - @echo " make install-conf" - @echo " " - - -# These would be done as ordinary user. - -# The Raspberry Pi has ~/Desktop but Ubuntu does not. - -# TODO: Handle Linux variations correctly. - - -.PHONY: install-conf -install-conf : direwolf.conf - cp direwolf.conf ~ - cp sdr.conf ~ - cp telemetry-toolkit/telem-m0xer-3.txt ~ - cp telemetry-toolkit/telem-*.conf ~ -ifneq ($(wildcard $(HOME)/Desktop),) - @echo " " - @echo "This will add a desktop icon on some systems:" - @echo " " - @echo " make install-rpi" - @echo " " -endif - - -.PHONY: install-rpi -install-rpi : dw-start.sh - cp dw-start.sh ~ - ln -f -s /usr/share/applications/direwolf.desktop ~/Desktop/direwolf.desktop - - - -# ---------------------------------- Automated Smoke Test -------------------------------- - - - -# Combine some unit tests into a single regression sanity check. - - -check : dtest ttest tttexttest pftest tlmtest lltest enctest kisstest check-modem1200 check-modem300 check-modem9600 - -# Can we encode and decode at popular data rates? - -check-modem1200 : gen_packets atest - ./gen_packets -n 100 -o /tmp/test1.wav - ./atest -F0 -PE -L70 -G71 /tmp/test1.wav - ./atest -F1 -PE -L73 -G75 /tmp/test1.wav - #rm /tmp/test1.wav - -check-modem300 : gen_packets atest - ./gen_packets -B300 -n 100 -o /tmp/test3.wav - ./atest -B300 -F0 -L68 -G69 /tmp/test3.wav - ./atest -B300 -F1 -L73 -G75 /tmp/test3.wav - rm /tmp/test3.wav - -check-modem9600 : gen_packets atest - ./gen_packets -B9600 -n 100 -o /tmp/test9.wav - ./atest -B9600 -F0 -L57 -G59 /tmp/test9.wav - ./atest -B9600 -F1 -L66 -G67 /tmp/test9.wav - rm /tmp/test9.wav - - - -# Unit test for inner digipeater algorithm - -.PHONY : dtest -dtest : digipeater.c dedupe.c \ - pfilter.o ax25_pad.o fcs_calc.o tq.o textcolor.o \ - decode_aprs.o dwgpsnmea.o dwgps.o dwgpsd.o serial_port.o latlong.o telemetry.o symbols.o tt_text.o - $(CC) $(CFLAGS) -DDIGITEST -o $@ $^ $(LDFLAGS) - ./dtest - rm dtest - - -# Unit test for APRStt tone sequence parsing. - -.PHONY : ttest -ttest : aprs_tt.c tt_text.c latlong.o textcolor.o geotranz.a - $(CC) $(CFLAGS) -DTT_MAIN -o $@ $^ $(LDFLAGS) - ./ttest - rm ttest - - -# Unit test for APRStt tone sequence / text conversions. - -.PHONY: tttexttest -tttexttest : tt_text.c textcolor.o - $(CC) $(CFLAGS) -DTTT_TEST -o $@ $^ $(LDFLAGS) - ./tttexttest - rm tttexttest - - -# Unit test for Packet Filtering. - -.PHONY: pftest -pftest : pfilter.c ax25_pad.o textcolor.o fcs_calc.o decode_aprs.o dwgpsnmea.o dwgps.o dwgpsd.o serial_port.o latlong.o symbols.o telemetry.o tt_text.o - $(CC) $(CFLAGS) -DPFTEST -o $@ $^ $(LDFLAGS) - ./pftest - rm pftest - -# Unit test for telemetry decoding. - -.PHONY: tlmtest -tlmtest : telemetry.c ax25_pad.o fcs_calc.o textcolor.o - $(CC) $(CFLAGS) -DTEST -o $@ $^ $(LDFLAGS) - ./tlmtest - rm tlmtest - -# Unit test for location coordinate conversion. - -.PHONY: lltest -lltest : latlong.c textcolor.o - $(CC) $(CFLAGS) -DLLTEST -o $@ $^ $(LDFLAGS) - ./lltest - rm lltest - -# Unit test for encoding position & object report. - -.PHONY: enctest -enctest : encode_aprs.c latlong.c textcolor.c - $(CC) $(CFLAGS) -DEN_MAIN -o $@ $^ $(LDFLAGS) - ./enctest - rm enctest - - -# Unit test for KISS encapsulation. - -.PHONY: kisstest -kisstest : kiss_frame.c - $(CC) $(CFLAGS) -DKISSTEST -o $@ $^ $(LDFLAGS) - ./kisstest - rm kisstest - - - -# ----------------------------- Manual tests and experiments --------------------------- - -# These are not included in a normal build. Might be broken. - -# Unit test for IGate - -itest : igate.c textcolor.c ax25_pad.c fcs_calc.c textcolor.o - $(CC) $(CFLAGS) -DITEST -o $@ $^ - ./itest - -# Unit test for UDP reception with AFSK demodulator. -# Temporary during development. Might not be useful anymore. - -udptest : udp_test.c demod.o dsp.o demod_afsk.o demod_9600.o hdlc_rec.o hdlc_rec2.o multi_modem.o rrbb.o \ - fcs_calc.o ax25_pad.o decode_aprs.o symbols.o textcolor.o - $(CC) $(CFLAGS) -o $@ $^ $(LDFLAGS) - ./udptest - -# For demodulator tweaking experiments. -# Dependencies of demod*.c, rather than .o, are intentional. - -demod.o : tune.h -demod_afsk.o : tune.h -demod_9600.o : tune.h - -testagc : atest.c demod.c dsp.c demod_afsk.c demod_9600.c hdlc_rec.o hdlc_rec2.o multi_modem.o rrbb.o \ - fcs_calc.o ax25_pad.o decode_aprs.o telemetry.o latlong.o symbols.o tune.h textcolor.o - $(CC) $(CFLAGS) -o atest $^ $(LDFLAGS) - ./atest 02_Track_2.wav | grep "packets decoded in" > atest.out - - - - - - -# ------------------------------- Source distribution --------------------------------- - -# probably obsolete and can be removed after move to github. - - - -.PHONY: dist-src -dist-src : README.md CHANGES.md - doc/User-Guide.pdf doc/Raspberry-Pi-APRS.pdf \ - doc/Raspberry-Pi-APRS-Tracker.pdf doc/APRStt-Implementation-Notes.pdf \ - dw-start.sh dwespeak.bat dwespeak.sh \ - tocalls.txt symbols-new.txt symbolsX.txt direwolf.spec - rm -f fsk_fast_filter.h - echo " " > tune.h - rm -f ../$z-src.zip - (cd .. ; zip $z-src.zip \ - $z/README.md \ - $z/CHANGES.md \ - $z/LICENSE* \ - $z/doc/User-Guide.pdf \ - $z/doc/Raspberry-Pi-APRS.pdf \ - $z/doc/Raspberry-Pi-APRS-Tracker.pdf \ - $z/doc/APRStt-Implementation-Notes.pdf \ - $z/doc/APRS-Telemetry-Toolkit.pdf \ - $z/Makefile* \ - $z/*.c $z/*.h \ - $z/regex/* $z/misc/* $z/geotranz/* \ - $z/man1/* \ - $z/generic.conf \ - $z/tocalls.txt $z/symbols-new.txt $z/symbolsX.txt \ - $z/dw-icon.png $z/dw-icon.rc $z/dw-icon.ico \ - $z/dw-start.sh $z/direwolf.spec \ - $z/dwespeak.bat $z/dwespeak.sh \ - $z/telemetry-toolkit/* ) - - -# ----------------------------------------------------------------------------------------- - - -.PHONY: clean -clean : - rm -f $(APPS) fsk_fast_filter.h *.o *.a direwolf.desktop - echo " " > tune.h - - -depend : $(wildcard *.c) - makedepend -f $(lastword $(MAKEFILE_LIST)) -- $(CFLAGS) -- $^ - - -# -# The following is updated by "make depend" -# -# DO NOT DELETE - - diff --git a/comms/direwolf/files/patch-Makefile b/comms/direwolf/files/patch-Makefile deleted file mode 100644 index da7d7d8f1cb..00000000000 --- a/comms/direwolf/files/patch-Makefile +++ /dev/null @@ -1,17 +0,0 @@ ---- Makefile.orig 2017-01-20 00:11:49 UTC -+++ Makefile -@@ -6,11 +6,14 @@ - - win := $(shell uname | grep CYGWIN) - dar := $(shell uname | grep Darwin) -+free := $(shell uname | grep FreeBSD) - - ifneq ($(win),) - include Makefile.win - else ifeq ($(dar),Darwin) - include Makefile.macosx -+else ifeq ($(free),FreeBSD) -+ include Makefile.FreeBSD - else - include Makefile.linux - endif diff --git a/comms/direwolf/files/patch-Makefile.linux b/comms/direwolf/files/patch-Makefile.linux new file mode 100644 index 00000000000..cff60440c53 --- /dev/null +++ b/comms/direwolf/files/patch-Makefile.linux @@ -0,0 +1,409 @@ +--- Makefile.linux.orig 2018-10-08 14:15:21 UTC ++++ Makefile.linux +@@ -1,5 +1,5 @@ + # +-# Makefile for Linux version of Dire Wolf. ++# Makefile for FreeBSD version of Dire Wolf. + # + + +@@ -13,7 +13,7 @@ all : $(APPS) direwolf.desktop direwolf + @echo " sudo make install" + @echo " " + +-CC := gcc ++#CC := clang + + # Just for fun, let's see how clang compares to gcc. First install like this: + # sudo apt-get update +@@ -32,14 +32,14 @@ CC := gcc + # we will inherit options already set in build environment. + # Explanation - https://github.com/wb2osz/direwolf/pull/38 + +-CFLAGS += -O3 -pthread -Igeotranz -D_XOPEN_SOURCE=600 -D_DEFAULT_SOURCE=1 -Wall ++CFLAGS += -O3 -I${LOCALBASE}/include -pthread -Igeotranz -D_DEFAULT_SOURCE=1 -Wall + + # That was fine for a recent Ubuntu and Raspbian Jessie. + # However, Raspbian wheezy was then missing declaration for strsep and definition of fd_set. + + CFLAGS += -D_BSD_SOURCE + +-LDFLAGS += -lm -lpthread -lrt ++LDFLAGS += -lm -lpthread -lrt -L${LOCALBASE}/lib + + + +@@ -95,7 +95,7 @@ LDFLAGS += -lm -lpthread -lrt + # If the compiler is generating code for the i386 target, we can + # get much better results by telling it we have at least a Pentium 3. + +-arch := $(shell echo | gcc -E -dM - | grep __i386__) ++arch := $(shell echo | ${CC} -E -dM - | grep __i386__) + ifneq ($(arch),) + CFLAGS += -march=pentium3 + endif +@@ -152,7 +152,7 @@ endif + # + + +-useffast := $(shell gcc --help -v 2>/dev/null | grep ffast-math) ++useffast := $(shell ${CC} --help -v 2>/dev/null | grep ffast-math) + ifneq ($(useffast),) + CFLAGS += -ffast-math + endif +@@ -215,7 +215,7 @@ endif + # and the compiler target defaults. + # + +-neon := $(shell cat /proc/cpuinfo | grep neon) ++#neon := $(shell cat /proc/cpuinfo | grep neon) + ifneq ($(neon),) + CFLAGS += -mfpu=neon + endif +@@ -257,7 +257,7 @@ endif + # ALSA (for Linux), comment out (or remove) the line below. + # TODO: Can we automate this somehow? + +-alsa = 1 ++#alsa = 1 + + ifeq ($(wildcard /usr/include/pthread.h),) + $(error /usr/include/pthread.h does not exist. Install it with "sudo apt-get install libc6-dev" or "sudo yum install glibc-headers" ) +@@ -266,8 +266,8 @@ endif + ifneq ($(alsa),) + CFLAGS += -DUSE_ALSA + LDFLAGS += -lasound +-ifeq ($(wildcard /usr/include/alsa/asoundlib.h),) +-$(error /usr/include/alsa/asoundlib.h does not exist. Install it with "sudo apt-get install libasound2-dev" or "sudo yum install alsa-lib-devel" ) ++ifeq ($(wildcard ${LOCALBASE}/include/alsa/asoundlib.h),) ++$(error ${LOCALBASE}/include/alsa/asoundlib.h does not exist. Install it with "sudo apt-get install libasound2-dev" or "sudo yum install alsa-lib-devel" ) + endif + endif + +@@ -276,20 +276,20 @@ endif + # Finding libgps.so* is more difficult because it + # is in different places on different operating systems. + +-enable_gpsd := $(wildcard /usr/include/gps.h) +-ifneq ($(enable_gpsd),) ++#enable_gpsd := $(wildcard ${LOCALBASE}/include/gps.h) ++#ifneq ($(enable_gpsd),) + CFLAGS += -DENABLE_GPSD + LDFLAGS += -lgps +-endif ++#endif + + + # Enable hamlib support if header file is present. + +-enable_hamlib := $(wildcard /usr/include/hamlib/rig.h /usr/local/include/hamlib/rig.h) +-ifneq ($(enable_hamlib),) ++#enable_hamlib := $(wildcard ${LOCALBASE}/include/hamlib/rig.h /usr/local/include/hamlib/rig.h) ++#ifneq ($(enable_hamlib),) + CFLAGS += -DUSE_HAMLIB + LDFLAGS += -lhamlib +-endif ++#endif + + + # Should enabling of this feature be strongly encouraged or +@@ -297,18 +297,18 @@ endif + # If, for some reason, can obtain the libudev-dev package, or + # don't want to install it, comment out the next 3 lines. + +-#ifeq ($(wildcard /usr/include/libudev.h),) +-#$(error /usr/include/libudev.h does not exist. Install it with "sudo apt-get install libudev-dev" or "sudo yum install libudev-devel" ) ++#ifeq ($(wildcard ${LOCALBASE}/include/libudev.h),) ++#$(error ${LOCALBASE}/include/libudev.h does not exist. Install it with "sudo apt-get install libudev-dev" or "sudo yum install libudev-devel" ) + #endif + + + # Enable cm108 PTT support if libudev header file is present. + +-enable_cm108 := $(wildcard /usr/include/libudev.h) +-ifneq ($(enable_cm108),) +-CFLAGS += -DUSE_CM108 +-LDFLAGS += -ludev +-endif ++#enable_cm108 := $(wildcard ${LOCALBASE}/include/libudev.h) ++#ifneq ($(enable_cm108),) ++#CFLAGS += -DUSE_CM108 ++#LDFLAGS += -ludev ++#endif + + + # Name of current directory. +@@ -333,20 +333,20 @@ direwolf : direwolf.o config.o recv.o de + misc.a geotranz.a + $(CC) -o $@ $^ $(LDFLAGS) + @echo " " +-ifneq ($(enable_gpsd),) +- @echo "\t>\tThis includes support for gpsd." +-else +- @echo "\t>\tThis does NOT include support for gpsd." +-endif +-ifneq ($(enable_hamlib),) +- @echo "\t>\tThis includes support for hamlib." +-else +- @echo "\t>\tThis does NOT include support for hamlib." +-endif ++#ifneq ($(enable_gpsd),) ++ @echo " > This includes support for gpsd." ++#else ++# @echo "\t>\tThis does NOT include support for gpsd." ++#endif ++#ifneq ($(enable_hamlib),) ++ @echo " > This includes support for hamlib." ++#else ++# @echo "\t>\tThis does NOT include support for hamlib." ++#endif + ifneq ($(enable_cm108),) +- @echo "\t>\tThis includes support for CM108/CM119 PTT." ++ @echo " > This includes support for CM108/CM119 PTT." + else +- @echo "\t>\tThis does NOT include support for CM108/CM119 PTT." ++ @echo " > This does NOT include support for CM108/CM119 PTT." + endif + @echo " " + +@@ -535,12 +535,17 @@ direwolf.conf : generic.conf + # Something built from source and installed locally would normally go in /usr/local/... + # If not specified on the make command line, this is our default. + +-DESTDIR ?= /usr/local ++INSTALLDIR ?= ${PREFIX} ++SHAREDIR ?= ${INSTALLDIR}/share ++DATADIR ?= ${SHAREDIR}/direwolf ++DOCSDIR ?= ${SHAREDIR}/doc/direwolf ++EXAMPLESDIR ?= ${SHAREDIR}/examples/direwolf ++MANDIR ?= ${INSTALLDIR}/man + + # However, if you are preparing a "binary" DEB or RPM package, the installation location + # would normally be /usr/... instead. In this case, use a command line like this: + # +-# make DESTDIR=/usr install ++# make INSTALLDIR=/usr install + + + +@@ -560,22 +565,22 @@ direwolf.desktop : + @echo '[Desktop Entry]' > $@ + @echo 'Type=Application' >> $@ + ifneq ($(wildcard /usr/bin/lxterminal),) +- @echo "Exec=lxterminal -t \"Dire Wolf\" -e \"$(DESTDIR)/bin/direwolf\"" >> $@ ++ @echo "Exec=lxterminal -t \"Dire Wolf\" -e \"$(INSTALLDIR)/bin/direwolf\"" >> $@ + else ifneq ($(wildcard /usr/bin/lxterm),) +- @echo "Exec=lxterm -hold -title \"Dire Wolf\" -bg white -e \"$(DESTDIR)/bin/direwolf\"" >> $@ ++ @echo "Exec=lxterm -hold -title \"Dire Wolf\" -bg white -e \"$(INSTALLDIR)/bin/direwolf\"" >> $@ + else +- @echo "Exec=xterm -hold -title \"Dire Wolf\" -bg white -e \"$(DESTDIR)/bin/direwolf\"" >> $@ ++ @echo "Exec=xterm -hold -title \"Dire Wolf\" -bg white -e \"$(INSTALLDIR)/bin/direwolf\"" >> $@ + endif + @echo 'Name=Dire Wolf' >> $@ + @echo 'Comment=APRS Soundcard TNC' >> $@ +- @echo 'Icon=$(DESTDIR)/share/direwolf/pixmaps/dw-icon.png' >> $@ +- @echo "Path=$(HOME)" >> $@ ++ @echo 'Icon=$(DATADIR)/pixmaps/dw-icon.png' >> $@ ++# @echo "Path=$(HOME)" >> $@ + @echo '#Terminal=true' >> $@ + @echo 'Categories=HamRadio' >> $@ + @echo 'Keywords=Ham Radio;APRS;Soundcard TNC;KISS;AGWPE;AX.25' >> $@ + + +-# Installation into $(DESTDIR), usually /usr/local/... or /usr/... ++# Installation into $(DESTDIR)$(INSTALLDIR), usually /usr/local/... or /usr/... + # Needs to be run as root or with sudo. + + +@@ -585,102 +590,107 @@ install : $(APPS) direwolf.conf tocalls. + # Applications, not installed with package manager, normally go in /usr/local/bin. + # /usr/bin is used instead when installing from .DEB or .RPM package. + # +- $(INSTALL) -D --mode=755 direwolf $(DESTDIR)/bin/direwolf +- $(INSTALL) -D --mode=755 decode_aprs $(DESTDIR)/bin/decode_aprs +- $(INSTALL) -D --mode=755 text2tt $(DESTDIR)/bin/text2tt +- $(INSTALL) -D --mode=755 tt2text $(DESTDIR)/bin/tt2text +- $(INSTALL) -D --mode=755 ll2utm $(DESTDIR)/bin/ll2utm +- $(INSTALL) -D --mode=755 utm2ll $(DESTDIR)/bin/utm2ll +- $(INSTALL) -D --mode=755 aclients $(DESTDIR)/bin/aclients +- $(INSTALL) -D --mode=755 log2gpx $(DESTDIR)/bin/log2gpx +- $(INSTALL) -D --mode=755 gen_packets $(DESTDIR)/bin/gen_packets +- $(INSTALL) -D --mode=755 atest $(DESTDIR)/bin/atest +- $(INSTALL) -D --mode=755 ttcalc $(DESTDIR)/bin/ttcalc +- $(INSTALL) -D --mode=755 kissutil $(DESTDIR)/bin/kissutil +- $(INSTALL) -D --mode=755 cm108 $(DESTDIR)/bin/cm108 +- $(INSTALL) -D --mode=755 dwespeak.sh $(DESTDIR)/bin/dwspeak.sh ++ $(BSD_INSTALL_PROGRAM) direwolf $(DESTDIR)$(INSTALLDIR)/bin/direwolf ++ $(BSD_INSTALL_PROGRAM) decode_aprs $(DESTDIR)$(INSTALLDIR)/bin/decode_aprs ++ $(BSD_INSTALL_PROGRAM) text2tt $(DESTDIR)$(INSTALLDIR)/bin/text2tt ++ $(BSD_INSTALL_PROGRAM) tt2text $(DESTDIR)$(INSTALLDIR)/bin/tt2text ++ $(BSD_INSTALL_PROGRAM) ll2utm $(DESTDIR)$(INSTALLDIR)/bin/ll2utm ++ $(BSD_INSTALL_PROGRAM) utm2ll $(DESTDIR)$(INSTALLDIR)/bin/utm2ll ++ $(BSD_INSTALL_PROGRAM) aclients $(DESTDIR)$(INSTALLDIR)/bin/aclients ++ $(BSD_INSTALL_PROGRAM) log2gpx $(DESTDIR)$(INSTALLDIR)/bin/log2gpx ++ $(BSD_INSTALL_PROGRAM) gen_packets $(DESTDIR)$(INSTALLDIR)/bin/gen_packets ++ $(BSD_INSTALL_PROGRAM) atest $(DESTDIR)$(INSTALLDIR)/bin/atest ++ $(BSD_INSTALL_PROGRAM) ttcalc $(DESTDIR)$(INSTALLDIR)/bin/ttcalc ++ $(BSD_INSTALL_PROGRAM) kissutil $(DESTDIR)$(INSTALLDIR)/bin/kissutil ++ $(BSD_INSTALL_PROGRAM) cm108 $(DESTDIR)$(INSTALLDIR)/bin/cm108 ++ $(BSD_INSTALL_SCRIPT) dwespeak.sh $(DESTDIR)$(INSTALLDIR)/bin/dwspeak.sh + # + # Telemetry Toolkit executables. Other .conf and .txt files will go into doc directory. + # +- $(INSTALL) -D --mode=755 telemetry-toolkit/telem-balloon.pl $(DESTDIR)/bin/telem-balloon.pl +- $(INSTALL) -D --mode=755 telemetry-toolkit/telem-bits.pl $(DESTDIR)/bin/telem-bits.pl +- $(INSTALL) -D --mode=755 telemetry-toolkit/telem-data.pl $(DESTDIR)/bin/telem-data.pl +- $(INSTALL) -D --mode=755 telemetry-toolkit/telem-data91.pl $(DESTDIR)/bin/telem-data91.pl +- $(INSTALL) -D --mode=755 telemetry-toolkit/telem-eqns.pl $(DESTDIR)/bin/telem-eqns.pl +- $(INSTALL) -D --mode=755 telemetry-toolkit/telem-parm.pl $(DESTDIR)/bin/telem-parm.pl +- $(INSTALL) -D --mode=755 telemetry-toolkit/telem-seq.sh $(DESTDIR)/bin/telem-seq.sh +- $(INSTALL) -D --mode=755 telemetry-toolkit/telem-unit.pl $(DESTDIR)/bin/telem-unit.pl +- $(INSTALL) -D --mode=755 telemetry-toolkit/telem-volts.py $(DESTDIR)/bin/telem-volts.py ++ $(BSD_INSTALL_SCRIPT) telemetry-toolkit/telem-balloon.pl $(DESTDIR)$(INSTALLDIR)/bin/telem-balloon.pl ++ $(BSD_INSTALL_SCRIPT) telemetry-toolkit/telem-bits.pl $(DESTDIR)$(INSTALLDIR)/bin/telem-bits.pl ++ $(BSD_INSTALL_SCRIPT) telemetry-toolkit/telem-data.pl $(DESTDIR)$(INSTALLDIR)/bin/telem-data.pl ++ $(BSD_INSTALL_SCRIPT) telemetry-toolkit/telem-data91.pl $(DESTDIR)$(INSTALLDIR)/bin/telem-data91.pl ++ $(BSD_INSTALL_SCRIPT) telemetry-toolkit/telem-eqns.pl $(DESTDIR)$(INSTALLDIR)/bin/telem-eqns.pl ++ $(BSD_INSTALL_SCRIPT) telemetry-toolkit/telem-parm.pl $(DESTDIR)$(INSTALLDIR)/bin/telem-parm.pl ++ $(BSD_INSTALL_SCRIPT) telemetry-toolkit/telem-seq.sh $(DESTDIR)$(INSTALLDIR)/bin/telem-seq.sh ++ $(BSD_INSTALL_SCRIPT) telemetry-toolkit/telem-unit.pl $(DESTDIR)$(INSTALLDIR)/bin/telem-unit.pl ++ $(BSD_INSTALL_SCRIPT) telemetry-toolkit/telem-volts.py $(DESTDIR)$(INSTALLDIR)/bin/telem-volts.py + # + # Misc. data such as "tocall" to system mapping. + # +- $(INSTALL) -D --mode=644 tocalls.txt $(DESTDIR)/share/direwolf/tocalls.txt +- $(INSTALL) -D --mode=644 symbols-new.txt $(DESTDIR)/share/direwolf/symbols-new.txt +- $(INSTALL) -D --mode=644 symbolsX.txt $(DESTDIR)/share/direwolf/symbolsX.txt ++ mkdir -p $(DESTDIR)${DATADIR} ++ $(BSD_INSTALL_DATA) tocalls.txt $(DESTDIR)$(DATADIR)/tocalls.txt ++ $(BSD_INSTALL_DATA) symbols-new.txt $(DESTDIR)$(DATADIR)/symbols-new.txt ++ $(BSD_INSTALL_DATA) symbolsX.txt $(DESTDIR)$(DATADIR)/symbolsX.txt + # + # For desktop icon. + # +- $(INSTALL) -D --mode=644 dw-icon.png $(DESTDIR)/share/direwolf/pixmaps/dw-icon.png +- $(INSTALL) -D --mode=644 direwolf.desktop $(DESTDIR)/share/applications/direwolf.desktop ++ mkdir -p $(DESTDIR)${DATADIR}/pixmaps ++ mkdir -p $(DESTDIR)${SHAREDIR}/applications ++ $(BSD_INSTALL_DATA) dw-icon.png $(DESTDIR)$(DATADIR)/pixmaps/dw-icon.png ++ $(BSD_INSTALL_DATA) direwolf.desktop $(DESTDIR)$(SHAREDIR)/applications/direwolf.desktop + # + # Documentation. Various plain text files and PDF. + # +- $(INSTALL) -D --mode=644 CHANGES.md $(DESTDIR)/share/doc/direwolf/CHANGES.md +- $(INSTALL) -D --mode=644 LICENSE-dire-wolf.txt $(DESTDIR)/share/doc/direwolf/LICENSE-dire-wolf.txt +- $(INSTALL) -D --mode=644 LICENSE-other.txt $(DESTDIR)/share/doc/direwolf/LICENSE-other.txt ++ $(BSD_INSTALL_DATA) CHANGES.md $(DESTDIR)$(DATADIR)/CHANGES.md ++ $(BSD_INSTALL_DATA) LICENSE-dire-wolf.txt $(DESTDIR)$(DATADIR)/LICENSE-dire-wolf.txt ++ $(BSD_INSTALL_DATA) LICENSE-other.txt $(DESTDIR)$(DATADIR)/LICENSE-other.txt + # + # ./README.md is an overview for the project main page. + # Maybe we could stick it in some other place. + # doc/README.md contains an overview of the PDF file contents and is more useful here. + # +- $(INSTALL) -D --mode=644 doc/README.md $(DESTDIR)/share/doc/direwolf/README.md +- $(INSTALL) -D --mode=644 doc/2400-4800-PSK-for-APRS-Packet-Radio.pdf $(DESTDIR)/share/doc/direwolf/2400-4800-PSK-for-APRS-Packet-Radio.pdf +- $(INSTALL) -D --mode=644 doc/A-Better-APRS-Packet-Demodulator-Part-1-1200-baud.pdf $(DESTDIR)/share/doc/direwolf/A-Better-APRS-Packet-Demodulator-Part-1-1200-baud.pdf +- $(INSTALL) -D --mode=644 doc/A-Better-APRS-Packet-Demodulator-Part-2-9600-baud.pdf $(DESTDIR)/share/doc/direwolf/A-Better-APRS-Packet-Demodulator-Part-2-9600-baud.pdf +- $(INSTALL) -D --mode=644 doc/A-Closer-Look-at-the-WA8LMF-TNC-Test-CD.pdf $(DESTDIR)/share/doc/direwolf/A-Closer-Look-at-the-WA8LMF-TNC-Test-CD.pdf +- $(INSTALL) -D --mode=644 doc/APRS-Telemetry-Toolkit.pdf $(DESTDIR)/share/doc/direwolf/APRS-Telemetry-Toolkit.pdf +- $(INSTALL) -D --mode=644 doc/APRStt-Implementation-Notes.pdf $(DESTDIR)/share/doc/direwolf/APRStt-Implementation-Notes.pdf +- $(INSTALL) -D --mode=644 doc/APRStt-interface-for-SARTrack.pdf $(DESTDIR)/share/doc/direwolf/APRStt-interface-for-SARTrack.pdf +- $(INSTALL) -D --mode=644 doc/APRStt-Listening-Example.pdf $(DESTDIR)/share/doc/direwolf/APRStt-Listening-Example.pdf +- $(INSTALL) -D --mode=644 doc/Bluetooth-KISS-TNC.pdf $(DESTDIR)/share/doc/direwolf/Bluetooth-KISS-TNC.pdf +- $(INSTALL) -D --mode=644 doc/Going-beyond-9600-baud.pdf $(DESTDIR)/share/doc/direwolf/Going-beyond-9600-baud.pdf +- $(INSTALL) -D --mode=644 doc/Raspberry-Pi-APRS.pdf $(DESTDIR)/share/doc/direwolf/Raspberry-Pi-APRS.pdf +- $(INSTALL) -D --mode=644 doc/Raspberry-Pi-APRS-Tracker.pdf $(DESTDIR)/share/doc/direwolf/Raspberry-Pi-APRS-Tracker.pdf +- $(INSTALL) -D --mode=644 doc/Raspberry-Pi-SDR-IGate.pdf $(DESTDIR)/share/doc/direwolf/Raspberry-Pi-SDR-IGate.pdf +- $(INSTALL) -D --mode=644 doc/Successful-APRS-IGate-Operation.pdf $(DESTDIR)/share/doc/direwolf/Successful-APRS-IGate-Operation.pdf +- $(INSTALL) -D --mode=644 doc/User-Guide.pdf $(DESTDIR)/share/doc/direwolf/User-Guide.pdf +- $(INSTALL) -D --mode=644 doc/WA8LMF-TNC-Test-CD-Results.pdf $(DESTDIR)/share/doc/direwolf/WA8LMF-TNC-Test-CD-Results.pdf ++ mkdir -p $(DESTDIR)${DOCSDIR} ++ $(BSD_INSTALL_DATA) doc/README.md $(DESTDIR)$(DOCSDIR)/README.md ++ $(BSD_INSTALL_DATA) doc/2400-4800-PSK-for-APRS-Packet-Radio.pdf $(DESTDIR)$(DOCSDIR)/2400-4800-PSK-for-APRS-Packet-Radio.pdf ++ $(BSD_INSTALL_DATA) doc/A-Better-APRS-Packet-Demodulator-Part-1-1200-baud.pdf $(DESTDIR)$(DOCSDIR)/A-Better-APRS-Packet-Demodulator-Part-1-1200-baud.pdf ++ $(BSD_INSTALL_DATA) doc/A-Better-APRS-Packet-Demodulator-Part-2-9600-baud.pdf $(DESTDIR)$(DOCSDIR)/A-Better-APRS-Packet-Demodulator-Part-2-9600-baud.pdf ++ $(BSD_INSTALL_DATA) doc/A-Closer-Look-at-the-WA8LMF-TNC-Test-CD.pdf $(DESTDIR)$(DOCSDIR)/A-Closer-Look-at-the-WA8LMF-TNC-Test-CD.pdf ++ $(BSD_INSTALL_DATA) doc/APRS-Telemetry-Toolkit.pdf $(DESTDIR)$(DOCSDIR)/APRS-Telemetry-Toolkit.pdf ++ $(BSD_INSTALL_DATA) doc/APRStt-Implementation-Notes.pdf $(DESTDIR)$(DOCSDIR)/APRStt-Implementation-Notes.pdf ++ $(BSD_INSTALL_DATA) doc/APRStt-interface-for-SARTrack.pdf $(DESTDIR)$(DOCSDIR)/APRStt-interface-for-SARTrack.pdf ++ $(BSD_INSTALL_DATA) doc/APRStt-Listening-Example.pdf $(DESTDIR)$(DOCSDIR)/APRStt-Listening-Example.pdf ++ $(BSD_INSTALL_DATA) doc/Bluetooth-KISS-TNC.pdf $(DESTDIR)$(DOCSDIR)/Bluetooth-KISS-TNC.pdf ++ $(BSD_INSTALL_DATA) doc/Going-beyond-9600-baud.pdf $(DESTDIR)$(DOCSDIR)/Going-beyond-9600-baud.pdf ++ $(BSD_INSTALL_DATA) doc/Raspberry-Pi-APRS.pdf $(DESTDIR)$(DOCSDIR)/Raspberry-Pi-APRS.pdf ++ $(BSD_INSTALL_DATA) doc/Raspberry-Pi-APRS-Tracker.pdf $(DESTDIR)$(DOCSDIR)/Raspberry-Pi-APRS-Tracker.pdf ++ $(BSD_INSTALL_DATA) doc/Raspberry-Pi-SDR-IGate.pdf $(DESTDIR)$(DOCSDIR)/Raspberry-Pi-SDR-IGate.pdf ++ $(BSD_INSTALL_DATA) doc/Successful-APRS-IGate-Operation.pdf $(DESTDIR)$(DOCSDIR)/Successful-APRS-IGate-Operation.pdf ++ $(BSD_INSTALL_DATA) doc/User-Guide.pdf $(DESTDIR)$(DOCSDIR)/User-Guide.pdf ++ $(BSD_INSTALL_DATA) doc/WA8LMF-TNC-Test-CD-Results.pdf $(DESTDIR)$(DOCSDIR)/WA8LMF-TNC-Test-CD-Results.pdf + # + # Various sample config and other files go into examples under the doc directory. + # When building from source, these can be put in home directory with "make install-conf". + # When installed from .DEB or .RPM package, the user will need to copy these to + # the home directory or other desired location. + # +- $(INSTALL) -D --mode=644 direwolf.conf $(DESTDIR)/share/doc/direwolf/examples/direwolf.conf +- $(INSTALL) -D --mode=755 dw-start.sh $(DESTDIR)/share/doc/direwolf/examples/dw-start.sh +- $(INSTALL) -D --mode=644 sdr.conf $(DESTDIR)/share/doc/direwolf/examples/sdr.conf +- $(INSTALL) -D --mode=644 telemetry-toolkit/telem-m0xer-3.txt $(DESTDIR)/share/doc/direwolf/examples/telem-m0xer-3.txt +- $(INSTALL) -D --mode=644 telemetry-toolkit/telem-balloon.conf $(DESTDIR)/share/doc/direwolf/examples/telem-balloon.conf +- $(INSTALL) -D --mode=644 telemetry-toolkit/telem-volts.conf $(DESTDIR)/share/doc/direwolf/examples/telem-volts.conf ++ mkdir -p $(DESTDIR)${EXAMPLESDIR} ++ $(BSD_INSTALL_DATA) direwolf.conf $(DESTDIR)$(EXAMPLESDIR)/direwolf.conf ++ $(BSD_INSTALL_SCRIPT) dw-start.sh $(DESTDIR)$(EXAMPLESDIR)/dw-start.sh ++ $(BSD_INSTALL_DATA) sdr.conf $(DESTDIR)$(EXAMPLESDIR)/sdr.conf ++ $(BSD_INSTALL_DATA) telemetry-toolkit/telem-m0xer-3.txt $(DESTDIR)$(EXAMPLESDIR)/telem-m0xer-3.txt ++ $(BSD_INSTALL_DATA) telemetry-toolkit/telem-balloon.conf $(DESTDIR)$(EXAMPLESDIR)/telem-balloon.conf ++ $(BSD_INSTALL_DATA) telemetry-toolkit/telem-volts.conf $(DESTDIR)$(EXAMPLESDIR)/telem-volts.conf + # + # "man" pages + # +- $(INSTALL) -D --mode=644 man1/aclients.1 $(DESTDIR)/share/man/man1/aclients.1 +- $(INSTALL) -D --mode=644 man1/atest.1 $(DESTDIR)/share/man/man1/atest.1 +- $(INSTALL) -D --mode=644 man1/decode_aprs.1 $(DESTDIR)/share/man/man1/decode_aprs.1 +- $(INSTALL) -D --mode=644 man1/direwolf.1 $(DESTDIR)/share/man/man1/direwolf.1 +- $(INSTALL) -D --mode=644 man1/gen_packets.1 $(DESTDIR)/share/man/man1/gen_packets.1 +- $(INSTALL) -D --mode=644 man1/kissutil.1 $(DESTDIR)/share/man/man1/kissutil.1 +- $(INSTALL) -D --mode=644 man1/ll2utm.1 $(DESTDIR)/share/man/man1/ll2utm.1 +- $(INSTALL) -D --mode=644 man1/log2gpx.1 $(DESTDIR)/share/man/man1/log2gpx.1 +- $(INSTALL) -D --mode=644 man1/text2tt.1 $(DESTDIR)/share/man/man1/text2tt.1 +- $(INSTALL) -D --mode=644 man1/tt2text.1 $(DESTDIR)/share/man/man1/tt2text.1 +- $(INSTALL) -D --mode=644 man1/utm2ll.1 $(DESTDIR)/share/man/man1/utm2ll.1 ++ $(BSD_INSTALL_MAN) man1/aclients.1 $(DESTDIR)$(MANDIR)/man1/aclients.1 ++ $(BSD_INSTALL_MAN) man1/atest.1 $(DESTDIR)$(MANDIR)/man1/atest.1 ++ $(BSD_INSTALL_MAN) man1/decode_aprs.1 $(DESTDIR)$(MANDIR)/man1/decode_aprs.1 ++ $(BSD_INSTALL_MAN) man1/direwolf.1 $(DESTDIR)$(MANDIR)/man1/direwolf.1 ++ $(BSD_INSTALL_MAN) man1/gen_packets.1 $(DESTDIR)$(MANDIR)/man1/gen_packets.1 ++ $(BSD_INSTALL_MAN) man1/kissutil.1 $(DESTDIR)$(MANDIR)/man1/kissutil.1 ++ $(BSD_INSTALL_MAN) man1/ll2utm.1 $(DESTDIR)$(MANDIR)/man1/ll2utm.1 ++ $(BSD_INSTALL_MAN) man1/log2gpx.1 $(DESTDIR)$(MANDIR)//man1/log2gpx.1 ++ $(BSD_INSTALL_MAN) man1/text2tt.1 $(DESTDIR)$(MANDIR)/man1/text2tt.1 ++ $(BSD_INSTALL_MAN) man1/tt2text.1 $(DESTDIR)$(MANDIR)/man1/tt2text.1 ++ $(BSD_INSTALL_MAN) man1/utm2ll.1 $(DESTDIR)$(MANDIR)/man1/utm2ll.1 + # + # Set group and mode of HID devices corresponding to C-Media USB Audio adapters. + # This will allow us to use the CM108/CM119 GPIO pins for PTT. + # +- $(INSTALL) -D --mode=644 99-direwolf-cmedia.rules /etc/udev/rules.d/99-direwolf-cmedia.rules ++# $(BSD_INSTALL_DATA) 99-direwolf-cmedia.rules /etc/udev/rules.d/99-direwolf-cmedia.rules + # + @echo " " + @echo "If this is your first install, not an upgrade, type this to put a copy" +@@ -693,7 +703,7 @@ install : $(APPS) direwolf.conf tocalls. + # Put sample configuration & startup files in home directory. + # This step would be done as ordinary user. + # Some people like to put the direwolf config file in /etc/ax25. +-# Note that all of these are also in $(DESTDIR)/share/doc/direwolf/examples/. ++# Note that all of these are also in $(DESTDIR)$(INSTALLDIR)/share/doc/direwolf/examples/. + + # The Raspberry Pi has ~/Desktop but Ubuntu does not. + +@@ -724,7 +734,7 @@ endif + + .PHONY: install-rpi + install-rpi : +- ln -f -s $(DESTDIR)/share/applications/direwolf.desktop ~/Desktop/direwolf.desktop ++ ln -f -s $(DESTDIR)$(SHAREDIR)/applications/direwolf.desktop ~/Desktop/direwolf.desktop + + + diff --git a/comms/direwolf/files/patch-dw-start.sh b/comms/direwolf/files/patch-dw-start.sh index 26d8a390a3d..01939bab8a9 100644 --- a/comms/direwolf/files/patch-dw-start.sh +++ b/comms/direwolf/files/patch-dw-start.sh @@ -1,24 +1,35 @@ ---- dw-start.sh.orig 2017-01-20 00:11:50 UTC +--- dw-start.sh.orig 2018-10-08 14:15:21 UTC +++ dw-start.sh -@@ -83,15 +83,15 @@ DWCMD="direwolf -a 100" +@@ -120,14 +120,14 @@ function GUI { + # Auto adjust the startup for your particular environment: gnome-terminal, xterm, etc. + # + +- if [ -x /usr/bin/lxterminal ]; then +- /usr/bin/lxterminal -t "Dire Wolf" -e "$DWCMD" & ++ if [ -x %%PREFIX%%/bin/lxterminal ]; then ++ %%PREFIX%%/bin/lxterminal -t "Dire Wolf" -e "$DWCMD" & + SUCCESS=1 +- elif [ -x /usr/bin/xterm ]; then +- /usr/bin/xterm -bg white -fg black -e "$DWCMD" & ++ elif [ -x %%PREFIX%%/bin/xterm ]; then ++ %%PREFIX%%/bin/xterm -bg white -fg black -e "$DWCMD" & + SUCCESS=1 +- elif [ -x /usr/bin/x-terminal-emulator ]; then +- /usr/bin/x-terminal-emulator -e "$DWCMD" & ++ elif [ -x %%PREFIX%%/bin/x-terminal-emulator ]; then ++ %%PREFIX%%/bin/x-terminal-emulator -e "$DWCMD" & + SUCCESS=1 + else + echo "Did not find an X terminal emulator. Reverting to CLI mode" +@@ -142,9 +142,9 @@ function GUI { + # ----------------------------------------------------------- + + # When running from cron, we have a very minimal environment +-# including PATH=/usr/bin:/bin. ++# including PATH=%%PREFIX%%/bin:/bin. # +-export PATH=/usr/local/bin:$PATH ++export PATH=%%PREFIX%%/bin:$PATH - --if [ -x /usr/bin/lxterminal ] -+if [ -x %%PREFIX%%/bin/lxterminal ] - then -- /usr/bin/lxterminal -t "Dire Wolf" -e "$DWCMD" & --elif [ -x /usr/bin/xterm ] -+ %%PREFIX%%/bin/lxterminal -t "Dire Wolf" -e "$DWCMD" & -+elif [ -x %%PREFIX%%/bin/xterm ] - then -- /usr/bin/xterm -bg white -fg black -e "$DWCMD" & --elif [ -x /usr/bin/x-terminal-emulator ] -+ %%PREFIX%%/bin/xterm -bg white -fg black -e "$DWCMD" & -+elif [ -x %%PREFIX%%/bin/x-terminal-emulator ] - then -- /usr/bin/x-terminal-emulator -e "$DWCMD" & -+ %%PREFIX%%/bin/x-terminal-emulator -e "$DWCMD" & - else - echo "Did not find an X terminal emulator." - fi + #Log the start of the script run and re-run + date >> $LOGFILE diff --git a/comms/direwolf/files/patch-dwgpsd.c b/comms/direwolf/files/patch-dwgpsd.c deleted file mode 100644 index 7ae8c67b461..00000000000 --- a/comms/direwolf/files/patch-dwgpsd.c +++ /dev/null @@ -1,13 +0,0 @@ ---- dwgpsd.c.orig 2017-01-20 00:11:50 UTC -+++ dwgpsd.c -@@ -77,8 +77,9 @@ static void * read_gpsd_thread (void *ar - * Information for interface to gpsd daemon. - */ - -+#if ENABLE_GPSD - static struct gps_data_t gpsdata; -- -+#endif - - /*------------------------------------------------------------------- - * diff --git a/comms/direwolf/files/patch-ptt.c b/comms/direwolf/files/patch-ptt.c new file mode 100644 index 00000000000..a636932ca03 --- /dev/null +++ b/comms/direwolf/files/patch-ptt.c @@ -0,0 +1,11 @@ +--- ptt.c.orig 2018-10-08 14:15:21 UTC ++++ ptt.c +@@ -139,7 +139,7 @@ + + #if __WIN32__ + #else +-#include ++#include + #include + #include + #include diff --git a/comms/direwolf/pkg-plist b/comms/direwolf/pkg-plist index 89e325b6501..357fd157a91 100644 --- a/comms/direwolf/pkg-plist +++ b/comms/direwolf/pkg-plist @@ -1,9 +1,11 @@ bin/aclients bin/atest +bin/cm108 bin/decode_aprs bin/direwolf -bin/dwespeak.sh +bin/dwspeak.sh bin/gen_packets +bin/kissutil bin/ll2utm bin/log2gpx bin/telem-balloon.pl @@ -24,31 +26,40 @@ man/man1/atest.1.gz man/man1/decode_aprs.1.gz man/man1/direwolf.1.gz man/man1/gen_packets.1.gz +man/man1/kissutil.1.gz man/man1/ll2utm.1.gz man/man1/log2gpx.1.gz man/man1/text2tt.1.gz man/man1/tt2text.1.gz man/man1/utm2ll.1.gz share/applications/direwolf.desktop -%%DATADIR%%/dw-icon.png +%%DATADIR%%/CHANGES.md +%%DATADIR%%/LICENSE-dire-wolf.txt +%%DATADIR%%/LICENSE-other.txt %%DATADIR%%/symbols-new.txt %%DATADIR%%/symbolsX.txt %%DATADIR%%/tocalls.txt +%%DATADIR%%/pixmaps/dw-icon.png +%%PORTDOCS%%%%DOCSDIR%%/2400-4800-PSK-for-APRS-Packet-Radio.pdf %%PORTDOCS%%%%DOCSDIR%%/A-Better-APRS-Packet-Demodulator-Part-1-1200-baud.pdf %%PORTDOCS%%%%DOCSDIR%%/A-Better-APRS-Packet-Demodulator-Part-2-9600-baud.pdf +%%PORTDOCS%%%%DOCSDIR%%/A-Closer-Look-at-the-WA8LMF-TNC-Test-CD.pdf %%PORTDOCS%%%%DOCSDIR%%/APRS-Telemetry-Toolkit.pdf %%PORTDOCS%%%%DOCSDIR%%/APRStt-Implementation-Notes.pdf +%%PORTDOCS%%%%DOCSDIR%%/APRStt-Listening-Example.pdf %%PORTDOCS%%%%DOCSDIR%%/APRStt-interface-for-SARTrack.pdf -%%PORTDOCS%%%%DOCSDIR%%/LICENSE-dire-wolf.txt -%%PORTDOCS%%%%DOCSDIR%%/LICENSE-other.txt +%%PORTDOCS%%%%DOCSDIR%%/Bluetooth-KISS-TNC.pdf +%%PORTDOCS%%%%DOCSDIR%%/Going-beyond-9600-baud.pdf %%PORTDOCS%%%%DOCSDIR%%/README.md %%PORTDOCS%%%%DOCSDIR%%/Raspberry-Pi-APRS-Tracker.pdf %%PORTDOCS%%%%DOCSDIR%%/Raspberry-Pi-APRS.pdf %%PORTDOCS%%%%DOCSDIR%%/Raspberry-Pi-SDR-IGate.pdf +%%PORTDOCS%%%%DOCSDIR%%/Successful-APRS-IGate-Operation.pdf %%PORTDOCS%%%%DOCSDIR%%/User-Guide.pdf -%%PORTDOCS%%%%DOCSDIR%%/examples/direwolf.conf -%%PORTDOCS%%%%DOCSDIR%%/examples/dw-start.sh -%%PORTDOCS%%%%DOCSDIR%%/examples/sdr.conf -%%PORTDOCS%%%%DOCSDIR%%/examples/telem-balloon.conf -%%PORTDOCS%%%%DOCSDIR%%/examples/telem-m0xer-3.txt -%%PORTDOCS%%%%DOCSDIR%%/examples/telem-volts.conf +%%PORTDOCS%%%%DOCSDIR%%/WA8LMF-TNC-Test-CD-Results.pdf +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/direwolf.conf +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/dw-start.sh +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sdr.conf +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/telem-balloon.conf +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/telem-m0xer-3.txt +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/telem-volts.conf diff --git a/databases/galera/Makefile b/databases/galera/Makefile index 8053db560af..1b4149e2b44 100644 --- a/databases/galera/Makefile +++ b/databases/galera/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= galera -PORTVERSION?= 25.3.26 +PORTVERSION?= 25.3.27 DISTVERSIONPREFIX?= release_ CATEGORIES= databases diff --git a/databases/galera/distinfo b/databases/galera/distinfo index aaf6d625d3d..017e619d3ba 100644 --- a/databases/galera/distinfo +++ b/databases/galera/distinfo @@ -1,5 +1,5 @@ -TIMESTAMP = 1555422252 -SHA256 (codership-galera-release_25.3.26_GH0.tar.gz) = 62c27634198a447ab8c060a33775cb4accaa3c25b730461e5b7c5a0af6507411 -SIZE (codership-galera-release_25.3.26_GH0.tar.gz) = 3286931 +TIMESTAMP = 1563790559 +SHA256 (codership-galera-release_25.3.27_GH0.tar.gz) = df943a9f282a58df4b02fe05df5cbf387fd251d82c29f4021954602cc67a8f7b +SIZE (codership-galera-release_25.3.27_GH0.tar.gz) = 3292352 SHA256 (codership-wsrep-API-eab2d5d5a31672c0b7d116ef1629ff18392fd7d0_GH0.tar.gz) = 3c235868ed330d8d702e7b7541c24c1926b1fd9e6b8aa673b032a2318896e8a0 SIZE (codership-wsrep-API-eab2d5d5a31672c0b7d116ef1629ff18392fd7d0_GH0.tar.gz) = 47032 diff --git a/databases/mysqlwsrep56-server/Makefile b/databases/mysqlwsrep56-server/Makefile index 121341db3f2..2a3a752c781 100644 --- a/databases/mysqlwsrep56-server/Makefile +++ b/databases/mysqlwsrep56-server/Makefile @@ -2,9 +2,9 @@ # $FreeBSD$ PORTNAME= mysqlwsrep -PORTVERSION?= 5.6.43 +PORTVERSION?= 5.6.44 DISTVERSIONPREFIX?= wsrep_ -DISTVERSIONSUFFIX?= -25.25 +DISTVERSIONSUFFIX?= -25.26 CATEGORIES= databases ipv6 PKGNAMESUFFIX= 56-server @@ -23,8 +23,8 @@ RUN_DEPENDS= bash:shells/bash \ socat:net/socat LIB_DEPENDS= libevent.so:devel/libevent liblz4.so:archivers/liblz4 -BROKEN_SSL= openssl111 -BROKEN_SSL_REASON_openssl111= incomplete definition of type 'struct dh_st' +#BROKEN_SSL= openssl111 +#BROKEN_SSL_REASON_openssl111= incomplete definition of type 'struct dh_st' DATADIR= ${PREFIX}/share/mysql ETCDIR= ${PREFIX}/etc/mysql diff --git a/databases/mysqlwsrep56-server/distinfo b/databases/mysqlwsrep56-server/distinfo index e4963a6f424..52ef4cab58b 100644 --- a/databases/mysqlwsrep56-server/distinfo +++ b/databases/mysqlwsrep56-server/distinfo @@ -1,5 +1,5 @@ -TIMESTAMP = 1555423195 -SHA256 (codership-mysql-wsrep-wsrep_5.6.43-25.25_GH0.tar.gz) = 12260d27032be278f139ed910d0e0ea8146161fdb59fbfc8e0c825294f567911 -SIZE (codership-mysql-wsrep-wsrep_5.6.43-25.25_GH0.tar.gz) = 32446195 +TIMESTAMP = 1563525011 +SHA256 (codership-mysql-wsrep-wsrep_5.6.44-25.26_GH0.tar.gz) = 4a3671ad6eb2a71585e16f9f9acbec14cbf27eead41cf0dc9c2c8bac448120fe +SIZE (codership-mysql-wsrep-wsrep_5.6.44-25.26_GH0.tar.gz) = 32778456 SHA256 (codership-wsrep-API-eab2d5d5a31672c0b7d116ef1629ff18392fd7d0_GH0.tar.gz) = 3c235868ed330d8d702e7b7541c24c1926b1fd9e6b8aa673b032a2318896e8a0 SIZE (codership-wsrep-API-eab2d5d5a31672c0b7d116ef1629ff18392fd7d0_GH0.tar.gz) = 47032 diff --git a/databases/mysqlwsrep56-server/files/patch-CMakeLists.txt b/databases/mysqlwsrep56-server/files/patch-CMakeLists.txt index b788ad12a41..d2bb0ab9bde 100644 --- a/databases/mysqlwsrep56-server/files/patch-CMakeLists.txt +++ b/databases/mysqlwsrep56-server/files/patch-CMakeLists.txt @@ -1,6 +1,6 @@ ---- CMakeLists.txt.orig 2017-01-25 07:58:07 UTC +--- CMakeLists.txt.orig 2019-07-16 14:08:43 UTC +++ CMakeLists.txt -@@ -499,12 +499,10 @@ IF(UNIX) +@@ -532,12 +532,10 @@ IF(UNIX) ENDIF() IF(NOT WITHOUT_SERVER) @@ -13,7 +13,7 @@ ENDIF(WITH_EMBEDDED_SERVER) ENDIF() -@@ -513,10 +511,7 @@ ENDIF() +@@ -546,10 +544,7 @@ ENDIF() ADD_SUBDIRECTORY(scripts) IF(NOT WITHOUT_SERVER) @@ -24,7 +24,7 @@ IF(EXISTS ${CMAKE_SOURCE_DIR}/internal/CMakeLists.txt) ADD_SUBDIRECTORY(internal) ENDIF() -@@ -574,6 +569,7 @@ ENDIF() +@@ -608,6 +603,7 @@ ENDIF() # # RPM installs documentation directly from the source tree # @@ -32,11 +32,11 @@ IF(NOT INSTALL_LAYOUT MATCHES "RPM") INSTALL(FILES COPYING LICENSE.mysql DESTINATION ${INSTALL_DOCREADMEDIR} -@@ -597,6 +593,7 @@ IF(NOT INSTALL_LAYOUT MATCHES "RPM") +@@ -630,6 +626,7 @@ IF(NOT INSTALL_LAYOUT MATCHES "RPM") + PATTERN "mysql.info" EXCLUDE PATTERN "sp-imp-spec.txt" EXCLUDE ) - ENDIF() +ENDIF() + ENDIF() INCLUDE(CPack) - diff --git a/databases/mysqlwsrep56-server/files/patch-PR225888.diff b/databases/mysqlwsrep56-server/files/patch-PR225888.diff index 0a5670c1ff1..6e64ed3ebbe 100644 --- a/databases/mysqlwsrep56-server/files/patch-PR225888.diff +++ b/databases/mysqlwsrep56-server/files/patch-PR225888.diff @@ -1,6 +1,4 @@ -diff --git extra/yassl/include/openssl/ssl.h extra/yassl/include/openssl/ssl.h -index 10fa4913b7e..ff6cb696661 100644 ---- extra/yassl/include/openssl/ssl.h.orig +--- extra/yassl/include/openssl/ssl.h.orig 2019-07-16 14:08:43 UTC +++ extra/yassl/include/openssl/ssl.h @@ -1,5 +1,5 @@ /* @@ -18,9 +16,7 @@ index 10fa4913b7e..ff6cb696661 100644 unsigned long ERR_get_error(void); unsigned long ERR_peek_error(void); int ERR_GET_REASON(int); -diff --git extra/yassl/src/ssl.cpp extra/yassl/src/ssl.cpp -index 39244a01b92..c992d446487 100644 ---- extra/yassl/src/ssl.cpp.orig +--- extra/yassl/src/ssl.cpp.orig 2019-07-16 14:08:43 UTC +++ extra/yassl/src/ssl.cpp @@ -1,5 +1,5 @@ /* @@ -29,7 +25,7 @@ index 39244a01b92..c992d446487 100644 This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by -@@ -1615,7 +1615,7 @@ int SSLeay_add_ssl_algorithms() // compatibility only +@@ -1516,7 +1516,7 @@ int SSLeay_add_ssl_algorithms() // compatibility only } @@ -38,17 +34,15 @@ index 39244a01b92..c992d446487 100644 { GetErrors().Remove(); } -diff --git mysys_ssl/my_aes_openssl.cc mysys_ssl/my_aes_openssl.cc -index 261ba8ab732..a0f8c147c7a 100644 ---- mysys_ssl/my_aes_openssl.cc.orig +--- mysys_ssl/my_aes_openssl.cc.orig 2019-07-16 14:08:43 UTC +++ mysys_ssl/my_aes_openssl.cc @@ -1,4 +1,4 @@ --/* Copyright (c) 2015, 2014 Oracle and/or its affiliates. All rights reserved. +-/* Copyright (c) 2014, Oracle and/or its affiliates. All rights reserved. +/* Copyright (c) 2015, 2018 Oracle and/or its affiliates. All rights reserved. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by -@@ -122,33 +122,46 @@ int my_aes_encrypt(const unsigned char *source, uint32 source_length, +@@ -108,33 +108,46 @@ int my_aes_encrypt(const unsigned char *source, uint32 const unsigned char *key, uint32 key_length, enum my_aes_opmode mode, const unsigned char *iv) { @@ -103,7 +97,7 @@ index 261ba8ab732..a0f8c147c7a 100644 return MY_AES_BAD_DATA; } -@@ -159,7 +172,12 @@ int my_aes_decrypt(const unsigned char *source, uint32 source_length, +@@ -145,7 +158,12 @@ int my_aes_decrypt(const unsigned char *source, uint32 enum my_aes_opmode mode, const unsigned char *iv) { @@ -117,7 +111,7 @@ index 261ba8ab732..a0f8c147c7a 100644 const EVP_CIPHER *cipher= aes_evp_type(mode); int u_len, f_len; -@@ -167,27 +185,34 @@ int my_aes_decrypt(const unsigned char *source, uint32 source_length, +@@ -153,27 +171,34 @@ int my_aes_decrypt(const unsigned char *source, uint32 unsigned char rkey[MAX_AES_KEY_LENGTH / 8]; my_aes_create_key(key, key_length, rkey, mode); @@ -161,11 +155,9 @@ index 261ba8ab732..a0f8c147c7a 100644 return MY_AES_BAD_DATA; } -diff --git sql-common/client.c sql-common/client.c -index 19faefe8323..f1192306ccb 100644 ---- sql-common/client.c.orig +--- sql-common/client.c.orig 2019-07-16 14:08:43 UTC +++ sql-common/client.c -@@ -2744,7 +2744,11 @@ static int ssl_verify_server_cert(Vio *vio, const char* server_hostname, const c +@@ -1968,7 +1968,11 @@ static int ssl_verify_server_cert(Vio *vio, const char goto error; } @@ -177,11 +169,9 @@ index 19faefe8323..f1192306ccb 100644 // There should not be any NULL embedded in the CN if ((size_t)ASN1_STRING_length(cn_asn1) != strlen(cn)) -diff --git sql/mysqld.cc sql/mysqld.cc -index 4acff4e4d9b..307778771be 100644 ---- sql/mysqld.cc.orig +--- sql/mysqld.cc.orig 2019-07-16 14:08:43 UTC +++ sql/mysqld.cc -@@ -3408,7 +3408,11 @@ static int init_ssl() +@@ -4511,7 +4511,11 @@ static int init_ssl() { #ifdef HAVE_OPENSSL #ifndef HAVE_YASSL @@ -193,9 +183,9 @@ index 4acff4e4d9b..307778771be 100644 #endif ssl_start(); #ifndef EMBEDDED_LIBRARY -@@ -3434,7 +3438,9 @@ static int init_ssl() +@@ -4525,7 +4529,9 @@ static int init_ssl() opt_ssl_cipher, &error, - opt_ssl_crl, opt_ssl_crlpath, ssl_ctx_flags); + opt_ssl_crl, opt_ssl_crlpath); DBUG_PRINT("info",("ssl_acceptor_fd: 0x%lx", (long) ssl_acceptor_fd)); - ERR_remove_state(0); +#if OPENSSL_VERSION_NUMBER < 0x10100000L @@ -203,12 +193,10 @@ index 4acff4e4d9b..307778771be 100644 +#endif /* OPENSSL_VERSION_NUMBER < 0x10100000L */ if (!ssl_acceptor_fd) { - /* -diff --git sql/rpl_slave.cc sql/rpl_slave.cc -index aee13e12cb2..37a20870bd4 100644 ---- sql/rpl_slave.cc.orig + sql_print_warning("Failed to setup SSL"); +--- sql/rpl_slave.cc.orig 2019-07-16 14:08:43 UTC +++ sql/rpl_slave.cc -@@ -6026,7 +6026,9 @@ ignore_log_space_limit=%d", +@@ -5258,7 +5258,9 @@ err: mysql_mutex_unlock(&mi->run_lock); DBUG_LEAVE; // Must match DBUG_ENTER() my_thread_end(); @@ -219,7 +207,7 @@ index aee13e12cb2..37a20870bd4 100644 pthread_exit(0); return(0); // Avoid compiler warnings } -@@ -6256,7 +6258,9 @@ extern "C" void *handle_slave_worker(void *arg) +@@ -5449,7 +5451,9 @@ err: } my_thread_end(); @@ -230,7 +218,7 @@ index aee13e12cb2..37a20870bd4 100644 pthread_exit(0); DBUG_RETURN(0); } -@@ -7597,7 +7601,9 @@ llstr(rli->get_group_master_log_pos(), llbuff)); +@@ -6663,7 +6667,9 @@ log '%s' at position %s, relay log '%s' position: %s", DBUG_LEAVE; // Must match DBUG_ENTER() my_thread_end(); @@ -241,17 +229,15 @@ index aee13e12cb2..37a20870bd4 100644 pthread_exit(0); return 0; // Avoid compiler warnings } -diff --git vio/viossl.c vio/viossl.c -index 5622cb7ee92..f738570f832 100644 ---- vio/viossl.c.orig +--- vio/viossl.c.orig 2019-07-16 14:08:43 UTC +++ vio/viossl.c @@ -1,4 +1,4 @@ --/* Copyright (c) 2000, 2015, Oracle and/or its affiliates. All rights reserved. +-/* Copyright (c) 2000, 2019, Oracle and/or its affiliates. All rights reserved. +/* Copyright (c) 2000, 2018, Oracle and/or its affiliates. All rights reserved. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by -@@ -419,7 +421,11 @@ static int ssl_do(struct st_VioSSLFd *ptr, Vio *vio, long timeout, +@@ -415,7 +415,11 @@ static int ssl_do(struct st_VioSSLFd *ptr, Vio *vio, for (j = 0; j < n; j++) { SSL_COMP *c = sk_SSL_COMP_value(ssl_comp_methods, j); @@ -263,17 +249,15 @@ index 5622cb7ee92..f738570f832 100644 } } #endif -diff --git vio/viosslfactories.c vio/viosslfactories.c -index f50678a37b3..d3891fd8b12 100644 ---- vio/viosslfactories.c.orig +--- vio/viosslfactories.c.orig 2019-07-16 14:08:43 UTC +++ vio/viosslfactories.c @@ -1,4 +1,4 @@ --/* Copyright (c) 2000, 2017, Oracle and/or its affiliates. All rights reserved. +-/* Copyright (c) 2000, 2016, Oracle and/or its affiliates. All rights reserved. +/* Copyright (c) 2000, 2018, Oracle and/or its affiliates. All rights reserved. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by -@@ -121,13 +121,21 @@ static DH *get_dh2048(void) +@@ -68,13 +68,21 @@ static DH *get_dh2048(void) DH *dh; if ((dh=DH_new())) { diff --git a/databases/mysqlwsrep56-server/files/patch-client_CMakeLists.txt b/databases/mysqlwsrep56-server/files/patch-client_CMakeLists.txt index b7a5e8683ec..0ddfcd3d660 100644 --- a/databases/mysqlwsrep56-server/files/patch-client_CMakeLists.txt +++ b/databases/mysqlwsrep56-server/files/patch-client_CMakeLists.txt @@ -1,6 +1,6 @@ ---- client/CMakeLists.txt.orig 2018-01-31 14:03:53.000000000 +0100 -+++ client/CMakeLists.txt 2018-02-07 11:27:46.846686000 +0100 -@@ -31,17 +31,20 @@ +--- client/CMakeLists.txt.orig 2019-07-16 14:08:43 UTC ++++ client/CMakeLists.txt +@@ -30,17 +30,20 @@ INCLUDE_DIRECTORIES( COPY_OPENSSL_DLLS(copy_openssl_client) ADD_DEFINITIONS(${SSL_DEFINES}) @@ -21,7 +21,7 @@ MYSQL_ADD_EXECUTABLE(mysqlcheck mysqlcheck.c) TARGET_LINK_LIBRARIES(mysqlcheck mysqlclient) -@@ -51,17 +54,21 @@ +@@ -50,17 +53,21 @@ TARGET_LINK_LIBRARIES(mysqldump mysqlclient) MYSQL_ADD_EXECUTABLE(mysqlimport mysqlimport.c) SET_SOURCE_FILES_PROPERTIES(mysqlimport.c PROPERTIES COMPILE_FLAGS "-DTHREADS") TARGET_LINK_LIBRARIES(mysqlimport mysqlclient) @@ -43,7 +43,7 @@ MYSQL_ADD_EXECUTABLE(mysqlbinlog mysqlbinlog.cc) TARGET_LINK_LIBRARIES(mysqlbinlog mysqlclient) -@@ -74,6 +81,7 @@ +@@ -73,6 +80,7 @@ TARGET_LINK_LIBRARIES(mysqlslap mysqlclient) MYSQL_ADD_EXECUTABLE(mysql_config_editor mysql_config_editor.cc) TARGET_LINK_LIBRARIES(mysql_config_editor mysqlclient) @@ -51,7 +51,7 @@ # "WIN32" also covers 64 bit. "echo" is used in some files below "mysql-test/". IF(WIN32) -@@ -83,11 +91,6 @@ +@@ -82,11 +90,6 @@ ENDIF(WIN32) SET_TARGET_PROPERTIES ( mysql_plugin mysql_upgrade diff --git a/databases/mysqlwsrep56-server/files/patch-cmake_plugin.cmake b/databases/mysqlwsrep56-server/files/patch-cmake_plugin.cmake index b808e1dde2c..06a6aa5262c 100644 --- a/databases/mysqlwsrep56-server/files/patch-cmake_plugin.cmake +++ b/databases/mysqlwsrep56-server/files/patch-cmake_plugin.cmake @@ -1,10 +1,12 @@ ---- cmake/plugin.cmake.orig 2017-01-25 07:58:07 UTC +--- cmake/plugin.cmake.orig 2019-07-16 14:08:43 UTC +++ cmake/plugin.cmake -@@ -205,7 +205,6 @@ MACRO(MYSQL_ADD_PLUGIN) - OUTPUT_NAME "${ARG_MODULE_OUTPUT_NAME}") - # Install dynamic library - MYSQL_INSTALL_TARGETS(${target} DESTINATION ${INSTALL_PLUGINDIR} COMPONENT Server) -- INSTALL_DEBUG_TARGET(${target} DESTINATION ${INSTALL_PLUGINDIR}/debug) - # Add installed files to list for RPMs - FILE(APPEND ${CMAKE_BINARY_DIR}/support-files/plugins.files - "%attr(755, root, root) %{_prefix}/${INSTALL_PLUGINDIR}/${ARG_MODULE_OUTPUT_NAME}.so\n" +@@ -216,9 +216,6 @@ MACRO(MYSQL_ADD_PLUGIN) + MYSQL_INSTALL_TARGETS(${target} + DESTINATION ${INSTALL_PLUGINDIR} + COMPONENT ${INSTALL_COMPONENT}) +- INSTALL_DEBUG_TARGET(${target} +- DESTINATION ${INSTALL_PLUGINDIR}/debug +- COMPONENT ${INSTALL_COMPONENT}) + # Add installed files to list for RPMs + FILE(APPEND ${CMAKE_BINARY_DIR}/support-files/plugins.files + "%attr(755, root, root) %{_prefix}/${INSTALL_PLUGINDIR}/${ARG_MODULE_OUTPUT_NAME}.so\n" diff --git a/databases/mysqlwsrep56-server/files/patch-extra_CMakeLists.txt b/databases/mysqlwsrep56-server/files/patch-extra_CMakeLists.txt index 15e6c6b2b4e..e6ed5647fc4 100644 --- a/databases/mysqlwsrep56-server/files/patch-extra_CMakeLists.txt +++ b/databases/mysqlwsrep56-server/files/patch-extra_CMakeLists.txt @@ -1,4 +1,4 @@ ---- extra/CMakeLists.txt.orig 2017-01-25 07:58:07 UTC +--- extra/CMakeLists.txt.orig 2019-07-16 14:08:43 UTC +++ extra/CMakeLists.txt @@ -101,8 +101,10 @@ IF(UNIX) MYSQL_ADD_EXECUTABLE(resolve_stack_dump resolve_stack_dump.cc) @@ -8,6 +8,6 @@ MYSQL_ADD_EXECUTABLE(mysql_waitpid mysql_waitpid.c) TARGET_LINK_LIBRARIES(mysql_waitpid mysys mysys_ssl) SET_TARGET_PROPERTIES(mysql_waitpid PROPERTIES LINKER_LANGUAGE CXX) - ENDIF() +ENDIF() + ENDIF() diff --git a/databases/mysqlwsrep56-server/files/patch-include_my__compare.h b/databases/mysqlwsrep56-server/files/patch-include_my__compare.h index 093c8ae3778..73046833a69 100644 --- a/databases/mysqlwsrep56-server/files/patch-include_my__compare.h +++ b/databases/mysqlwsrep56-server/files/patch-include_my__compare.h @@ -1,6 +1,6 @@ ---- include/my_compare.h.orig 2011-05-10 09:46:46.000000000 +0200 -+++ include/my_compare.h 2011-05-10 09:47:01.000000000 +0200 -@@ -39,7 +39,7 @@ +--- include/my_compare.h.orig 2019-07-16 14:08:43 UTC ++++ include/my_compare.h +@@ -39,7 +39,7 @@ extern "C" { But beware the dependency of MI_MAX_POSSIBLE_KEY_BUFF and HA_MAX_KEY_LENGTH. */ diff --git a/databases/mysqlwsrep56-server/files/patch-mysys__ssl_my__default.cc b/databases/mysqlwsrep56-server/files/patch-mysys__ssl_my__default.cc index fa06468ce95..8ca16f122d8 100644 --- a/databases/mysqlwsrep56-server/files/patch-mysys__ssl_my__default.cc +++ b/databases/mysqlwsrep56-server/files/patch-mysys__ssl_my__default.cc @@ -1,7 +1,7 @@ ---- mysys_ssl/my_default.cc.orig 2016-11-28 13:36:22 UTC +--- mysys_ssl/my_default.cc.orig 2019-07-16 14:08:43 UTC +++ mysys_ssl/my_default.cc -@@ -110,7 +110,7 @@ static my_bool defaults_already_read= FA - +@@ -116,7 +116,7 @@ char wsrep_defaults_group_suffix[FN_EXTLEN]={0,}; + #endif /* WITH_WREP */ /* Which directories are searched for options (and in which order) */ -#define MAX_DEFAULT_DIRS 6 @@ -9,9 +9,9 @@ #define DEFAULT_DIRS_SIZE (MAX_DEFAULT_DIRS + 1) /* Terminate with NULL */ static const char **default_directories = NULL; -@@ -903,6 +903,14 @@ static int search_default_file_with_ext( - return 1; /* Ignore wrong files */ - } +@@ -921,6 +921,14 @@ static int search_default_file_with_ext(Process_option + strncpy(wsrep_defaults_file, name, sizeof(wsrep_defaults_file) - 1); + #endif /* WITH_WSREP */ + if (strstr(name, "/etc") == name) + { @@ -24,7 +24,7 @@ while (mysql_file_getline(buff, sizeof(buff) - 1, fp, is_login_file)) { line++; -@@ -1241,7 +1249,8 @@ void my_print_default_files(const char * +@@ -1259,7 +1267,8 @@ void my_print_default_files(const char *conf_file) end[(strlen(end)-1)] = ' '; else strxmov(end, conf_file, *ext , " ", NullS); @@ -34,23 +34,24 @@ } } } -@@ -1400,13 +1409,8 @@ static const char **init_default_directo +@@ -1418,14 +1427,9 @@ static const char **init_default_directories(MEM_ROOT #else - errors += add_directory(alloc, "/etc/", dirs); - errors += add_directory(alloc, "/etc/mysql/", dirs); -- ++ errors += add_directory(alloc, "/usr/local/etc/", dirs); ++ errors += add_directory(alloc, "/usr/local/etc/mysql/", dirs); + -#if defined(DEFAULT_SYSCONFDIR) - if (DEFAULT_SYSCONFDIR[0]) - errors += add_directory(alloc, DEFAULT_SYSCONFDIR, dirs); -#endif /* DEFAULT_SYSCONFDIR */ -+ errors += add_directory(alloc, "/usr/local/etc/", dirs); -+ errors += add_directory(alloc, "/usr/local/etc/mysql/", dirs); - +- #endif -@@ -1477,7 +1481,7 @@ int check_file_permissions(const char *f + if ((env= getenv("MYSQL_HOME"))) +@@ -1495,7 +1499,7 @@ int check_file_permissions(const char *file_name, my_b MY_STAT stat_info; if (!my_stat(file_name,&stat_info,MYF(0))) diff --git a/databases/mysqlwsrep56-server/files/patch-plugin_password__validation_validate__password.cc b/databases/mysqlwsrep56-server/files/patch-plugin_password__validation_validate__password.cc index 653f0309503..670f7c94057 100644 --- a/databases/mysqlwsrep56-server/files/patch-plugin_password__validation_validate__password.cc +++ b/databases/mysqlwsrep56-server/files/patch-plugin_password__validation_validate__password.cc @@ -1,5 +1,5 @@ ---- plugin/password_validation/validate_password.cc.orig 2013-09-10 07:38:25.000000000 +0000 -+++ plugin/password_validation/validate_password.cc 2013-10-05 15:40:20.790380179 +0000 +--- plugin/password_validation/validate_password.cc.orig 2019-07-16 14:08:43 UTC ++++ plugin/password_validation/validate_password.cc @@ -16,6 +16,8 @@ #include #include @@ -7,5 +7,5 @@ +/* solve clash between libc++ bitset::test() and test macro from my_global.h */ +#undef test #include + #include // std::streamoff #include - #include diff --git a/databases/mysqlwsrep56-server/files/patch-scripts_CMakeLists.txt b/databases/mysqlwsrep56-server/files/patch-scripts_CMakeLists.txt index df5d05a15eb..f8e6010a704 100644 --- a/databases/mysqlwsrep56-server/files/patch-scripts_CMakeLists.txt +++ b/databases/mysqlwsrep56-server/files/patch-scripts_CMakeLists.txt @@ -1,6 +1,6 @@ ---- scripts/CMakeLists.txt.orig 2017-01-25 07:58:07 UTC +--- scripts/CMakeLists.txt.orig 2019-07-16 14:08:43 UTC +++ scripts/CMakeLists.txt -@@ -298,6 +298,8 @@ MACRO(EXTRACT_LINK_LIBRARIES target var) +@@ -304,6 +304,8 @@ MACRO(EXTRACT_LINK_LIBRARIES target var) GET_FILENAME_COMPONENT(lib "${lib}" NAME_WE) STRING(REGEX REPLACE "^lib" "" lib "${lib}") SET(${var} "${${var}}-l${lib} " ) @@ -9,7 +9,7 @@ ELSE() SET(${var} "${${var}}-l${lib} " ) ENDIF() -@@ -360,15 +362,10 @@ ELSE() +@@ -366,15 +368,10 @@ ELSE() # On Unix, most of the files end up in the bin directory SET(mysql_config_COMPONENT COMPONENT Development) SET(BIN_SCRIPTS @@ -25,7 +25,7 @@ mysqlhotcopy mysqldumpslow mysqld_multi -@@ -378,7 +375,7 @@ ELSE() +@@ -384,7 +381,7 @@ ELSE() FOREACH(file ${BIN_SCRIPTS}) IF(EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/${file}.sh) CONFIGURE_FILE(${CMAKE_CURRENT_SOURCE_DIR}/${file}.sh diff --git a/databases/mysqlwsrep56-server/files/patch-scripts_mysqld__safe.sh b/databases/mysqlwsrep56-server/files/patch-scripts_mysqld__safe.sh index 2a30469922f..e0aa5e3fa84 100644 --- a/databases/mysqlwsrep56-server/files/patch-scripts_mysqld__safe.sh +++ b/databases/mysqlwsrep56-server/files/patch-scripts_mysqld__safe.sh @@ -1,6 +1,6 @@ ---- scripts/mysqld_safe.sh.orig 2007-10-08 10:39:23.000000000 +0200 -+++ scripts/mysqld_safe.sh 2007-10-08 10:40:52.000000000 +0200 -@@ -242,10 +242,10 @@ +--- scripts/mysqld_safe.sh.orig 2019-07-19 08:39:37 UTC ++++ scripts/mysqld_safe.sh +@@ -568,10 +568,10 @@ fi if test -z "$MYSQL_HOME" then @@ -13,7 +13,7 @@ $DATADIR/my.cnf IGNORING $DATADIR/my.cnf" -@@ -254,7 +254,7 @@ +@@ -580,7 +580,7 @@ IGNORING $DATADIR/my.cnf" then log_error "WARNING: Found $DATADIR/my.cnf The data directory is a deprecated location for my.cnf, please move it to diff --git a/databases/mysqlwsrep56-server/files/patch-sql_CMakeLists.txt b/databases/mysqlwsrep56-server/files/patch-sql_CMakeLists.txt index 2c279dcbf9b..74602c53d0f 100644 --- a/databases/mysqlwsrep56-server/files/patch-sql_CMakeLists.txt +++ b/databases/mysqlwsrep56-server/files/patch-sql_CMakeLists.txt @@ -1,6 +1,23 @@ ---- sql/CMakeLists.txt.orig 2017-01-25 07:58:07 UTC +--- sql/CMakeLists.txt.orig 2019-07-16 14:08:43 UTC +++ sql/CMakeLists.txt -@@ -472,6 +472,7 @@ ADD_CUSTOM_TARGET(distclean +@@ -435,7 +435,7 @@ ADD_CUSTOM_TARGET( + DEPENDS ${GEN_DIGEST_SOURCES} + ) + +- ++IF(FALSE) + MYSQL_ADD_PLUGIN(udf_example udf_example.cc + MODULE_ONLY TEST_ONLY MODULE_OUTPUT_NAME "udf_example") + IF(NOT DISABLE_SHARED) +@@ -445,6 +445,7 @@ IF(NOT DISABLE_SHARED) + "/DEF:${CMAKE_CURRENT_SOURCE_DIR}/udf_example.def") + ENDIF() + ENDIF() ++ENDIF() + + FOREACH(tool gtar tar git) + STRING(TOUPPER ${tool} TOOL) +@@ -470,6 +471,7 @@ ADD_CUSTOM_TARGET(distclean IF(INSTALL_LAYOUT STREQUAL "STANDALONE") @@ -8,11 +25,11 @@ # Copy db.opt into data/test/ SET(DBOPT_FILE ${CMAKE_CURRENT_SOURCE_DIR}/db.opt ) INSTALL(FILES ${DBOPT_FILE} DESTINATION data/test COMPONENT DataFiles) -@@ -516,6 +517,7 @@ ELSE() +@@ -512,6 +514,7 @@ IF(WIN32 AND MYSQLD_EXECUTABLE) + ELSE() + # Not windows or cross compiling, just install an empty directory INSTALL(FILES ${DUMMY_FILE} DESTINATION data/mysql COMPONENT DataFiles) - ENDIF() - ENDIF() +ENDIF() + ENDIF() + ENDIF() - ADD_CUSTOM_TARGET(show-dist-name - COMMAND ${CMAKE_COMMAND} -E echo "${CPACK_PACKAGE_FILE_NAME}" diff --git a/databases/mysqlwsrep56-server/files/patch-sql_sys__vars.cc b/databases/mysqlwsrep56-server/files/patch-sql_sys__vars.cc index e8f0caff4af..75da7d5f0d4 100644 --- a/databases/mysqlwsrep56-server/files/patch-sql_sys__vars.cc +++ b/databases/mysqlwsrep56-server/files/patch-sql_sys__vars.cc @@ -1,6 +1,6 @@ ---- sql/sys_vars.cc.orig 2012-06-15 17:03:32.000000000 +0200 -+++ sql/sys_vars.cc 2012-06-15 17:16:23.000000000 +0200 -@@ -900,7 +900,7 @@ +--- sql/sys_vars.cc.orig 2019-07-16 14:08:43 UTC ++++ sql/sys_vars.cc +@@ -1415,7 +1415,7 @@ static Sys_var_ulong Sys_interactive_timeout( "connection before closing it", SESSION_VAR(net_interactive_timeout), CMD_LINE(REQUIRED_ARG), @@ -9,7 +9,7 @@ static Sys_var_ulong Sys_join_buffer_size( "join_buffer_size", -@@ -1401,7 +1401,7 @@ +@@ -2034,7 +2034,7 @@ static Sys_var_ulong Sys_net_read_timeout( "Number of seconds to wait for more data from a connection before " "aborting the read", SESSION_VAR(net_read_timeout), CMD_LINE(REQUIRED_ARG), @@ -18,7 +18,7 @@ NO_MUTEX_GUARD, NOT_IN_BINLOG, ON_CHECK(0), ON_UPDATE(fix_net_read_timeout)); -@@ -1416,7 +1416,7 @@ +@@ -2049,7 +2049,7 @@ static Sys_var_ulong Sys_net_write_timeout( "Number of seconds to wait for a block to be written to a connection " "before aborting the write", SESSION_VAR(net_write_timeout), CMD_LINE(REQUIRED_ARG), @@ -27,7 +27,7 @@ NO_MUTEX_GUARD, NOT_IN_BINLOG, ON_CHECK(0), ON_UPDATE(fix_net_write_timeout)); -@@ -2257,7 +2257,7 @@ +@@ -3182,7 +3182,7 @@ static Sys_var_ulong Sys_net_wait_timeout( "The number of seconds the server waits for activity on a " "connection before closing it", SESSION_VAR(net_wait_timeout), CMD_LINE(REQUIRED_ARG), @@ -35,4 +35,4 @@ + VALID_RANGE(1, INT_MAX32/1000), DEFAULT(NET_WAIT_TIMEOUT), BLOCK_SIZE(1)); - /** propagates changes to the relevant flag of @@optimizer_switch */ + static Sys_var_plugin Sys_default_storage_engine( diff --git a/databases/mysqlwsrep56-server/files/patch-support-files_CMakeLists.txt b/databases/mysqlwsrep56-server/files/patch-support-files_CMakeLists.txt index 3b760115195..ccaa433f9ef 100644 --- a/databases/mysqlwsrep56-server/files/patch-support-files_CMakeLists.txt +++ b/databases/mysqlwsrep56-server/files/patch-support-files_CMakeLists.txt @@ -1,6 +1,6 @@ ---- support-files/CMakeLists.txt.orig 2017-01-25 07:58:07 UTC +--- support-files/CMakeLists.txt.orig 2019-07-16 14:08:43 UTC +++ support-files/CMakeLists.txt -@@ -69,7 +69,9 @@ IF(UNIX) +@@ -74,7 +74,9 @@ IF(UNIX) INSTALL(FILES magic DESTINATION ${inst_location} COMPONENT SupportFiles) ENDIF() diff --git a/databases/p5-BerkeleyDB/Makefile b/databases/p5-BerkeleyDB/Makefile index 6eb20146d9e..e562ce4df21 100644 --- a/databases/p5-BerkeleyDB/Makefile +++ b/databases/p5-BerkeleyDB/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= BerkeleyDB -PORTVERSION= 0.62 +PORTVERSION= 0.63 CATEGORIES= databases perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- diff --git a/databases/p5-BerkeleyDB/distinfo b/databases/p5-BerkeleyDB/distinfo index 93b3d83c2e1..68588531df8 100644 --- a/databases/p5-BerkeleyDB/distinfo +++ b/databases/p5-BerkeleyDB/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1563735469 -SHA256 (BerkeleyDB-0.62.tar.gz) = c975b46f4696e864ce06abb4896efd3029196306d17e9230b322ec79648040dd -SIZE (BerkeleyDB-0.62.tar.gz) = 208013 +TIMESTAMP = 1563805971 +SHA256 (BerkeleyDB-0.63.tar.gz) = 7e09938d22ebb9c5e0117e9303853937c3cfad3068b69869c7b020cfca5102d2 +SIZE (BerkeleyDB-0.63.tar.gz) = 208324 diff --git a/databases/p5-Redis/Makefile b/databases/p5-Redis/Makefile index 55bc579a828..396418e0f7a 100644 --- a/databases/p5-Redis/Makefile +++ b/databases/p5-Redis/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= Redis -PORTVERSION= 1.9920 +PORTVERSION= 1.9950 CATEGORIES= databases perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- diff --git a/databases/p5-Redis/distinfo b/databases/p5-Redis/distinfo index fe7455591ae..8b68c16f291 100644 --- a/databases/p5-Redis/distinfo +++ b/databases/p5-Redis/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1563736548 -SHA256 (Redis-1.992.tar.gz) = 8d267ec381411be33b5a6f296e2b4bcf1595c4c6ebb0ae3bae5e9ac0e4be141e -SIZE (Redis-1.992.tar.gz) = 47634 +TIMESTAMP = 1563805973 +SHA256 (Redis-1.995.tar.gz) = a0b07b284ff12bb852a3120723f1e63ab279df575d6c52a78f914565a9f0b906 +SIZE (Redis-1.995.tar.gz) = 59271 diff --git a/databases/py-sqlalchemy13/Makefile b/databases/py-sqlalchemy13/Makefile index 064373b621a..c0f09a44195 100644 --- a/databases/py-sqlalchemy13/Makefile +++ b/databases/py-sqlalchemy13/Makefile @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= sqlalchemy -PORTVERSION= 1.3.5 +PORTVERSION= 1.3.6 CATEGORIES= databases python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/databases/py-sqlalchemy13/distinfo b/databases/py-sqlalchemy13/distinfo index 0b1fdf297b4..65e0e8f1e27 100644 --- a/databases/py-sqlalchemy13/distinfo +++ b/databases/py-sqlalchemy13/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1560957704 -SHA256 (SQLAlchemy-1.3.5.tar.gz) = c30925d60af95443458ebd7525daf791f55762b106049ae71e18f8dd58084c2f -SIZE (SQLAlchemy-1.3.5.tar.gz) = 5887356 +TIMESTAMP = 1563805953 +SHA256 (SQLAlchemy-1.3.6.tar.gz) = 217e7fc52199a05851eee9b6a0883190743c4fb9c8ac4313ccfceaffd852b0ff +SIZE (SQLAlchemy-1.3.6.tar.gz) = 5907328 diff --git a/devel/Makefile b/devel/Makefile index fa4c8a0b05b..34ddd5a512e 100644 --- a/devel/Makefile +++ b/devel/Makefile @@ -5553,6 +5553,7 @@ SUBDIR += rubygem-formatador SUBDIR += rubygem-forwardable-extended SUBDIR += rubygem-fugit + SUBDIR += rubygem-fugit12 SUBDIR += rubygem-gdata SUBDIR += rubygem-gem-compare SUBDIR += rubygem-gem_plugin diff --git a/devel/awscli/Makefile b/devel/awscli/Makefile index 35a1794aee9..7cf3f3bf08f 100644 --- a/devel/awscli/Makefile +++ b/devel/awscli/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= awscli -PORTVERSION= 1.16.185 +PORTVERSION= 1.16.202 CATEGORIES= devel MASTER_SITES= CHEESESHOP @@ -12,7 +12,7 @@ COMMENT= Universal Command Line Interface for Amazon Web Services LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}botocore>=1.12.175:devel/py-botocore@${PY_FLAVOR} \ +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}botocore>=1.12.192:devel/py-botocore@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}colorama>=0.2.5:devel/py-colorama@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}s3transfer>=0.2.0:net/py-s3transfer@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}docutils>=0.10:textproc/py-docutils@${PY_FLAVOR} \ diff --git a/devel/awscli/distinfo b/devel/awscli/distinfo index 8e90797b4ec..f4b1f6cc856 100644 --- a/devel/awscli/distinfo +++ b/devel/awscli/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1561495698 -SHA256 (awscli-1.16.185.tar.gz) = 9e415f7370db8dd38129f1b8eea5b7eaada5e4e1ae159ffbbc52ab9ee28694a7 -SIZE (awscli-1.16.185.tar.gz) = 756768 +TIMESTAMP = 1563748801 +SHA256 (awscli-1.16.202.tar.gz) = 3e5c141257d154e3cc02825ab6442f0d7bd47b2be621d2304824e201eba17e45 +SIZE (awscli-1.16.202.tar.gz) = 787854 diff --git a/devel/libee/Makefile b/devel/libee/Makefile index 5081d9dfb68..bef65eba06a 100644 --- a/devel/libee/Makefile +++ b/devel/libee/Makefile @@ -10,6 +10,9 @@ MASTER_SITES= http://download.rsyslog.com/ MAINTAINER= matthew@FreeBSD.org COMMENT= Event expression library inspired by CEE +DEPRECATED= No longer required by rsyslog, which was its only consumer. No longer maintained upstream +EXPIRATION_DATE= 2019-09-23 + LICENSE= LGPL21+ LICENSE_FILE= ${WRKSRC}/COPYING diff --git a/devel/llvm80/Makefile b/devel/llvm80/Makefile index 237685aadc2..83267cec721 100644 --- a/devel/llvm80/Makefile +++ b/devel/llvm80/Makefile @@ -1,14 +1,9 @@ # $FreeBSD$ PORTNAME= llvm -DISTVERSION= 8.0.0 -PORTREVISION= 2 +DISTVERSION= 8.0.1 CATEGORIES= devel lang -.if ${DISTVERSION:M*rc*} -MASTER_SITES= https://github.com/llvm/llvm-project/releases/download/llvmorg-${LLVM_RELEASE}-${DISTVERSION:S/${LLVM_RELEASE}//}/ -.else -MASTER_SITES= http://releases.llvm.org/${LLVM_RELEASE}/ -.endif +MASTER_SITES= https://github.com/llvm/llvm-project/releases/download/llvmorg-${DISTVERSION}/ PKGNAMESUFFIX= ${LLVM_SUFFIX} DISTNAME= ${PORTNAME}-${DISTVERSION}.src DISTFILES= ${PORTNAME}-${DISTVERSION}.src${EXTRACT_SUFX} diff --git a/devel/llvm80/distinfo b/devel/llvm80/distinfo index d3df1842b1b..83ae18c74bb 100644 --- a/devel/llvm80/distinfo +++ b/devel/llvm80/distinfo @@ -1,15 +1,15 @@ -TIMESTAMP = 1560807021 -SHA256 (llvm-8.0.0.src.tar.xz) = 8872be1b12c61450cacc82b3d153eab02be2546ef34fa3580ed14137bb26224c -SIZE (llvm-8.0.0.src.tar.xz) = 30503732 -SHA256 (cfe-8.0.0.src.tar.xz) = 084c115aab0084e63b23eee8c233abb6739c399e29966eaeccfc6e088e0b736b -SIZE (cfe-8.0.0.src.tar.xz) = 12868468 -SHA256 (compiler-rt-8.0.0.src.tar.xz) = b435c7474f459e71b2831f1a4e3f1d21203cb9c0172e94e9d9b69f50354f21b1 -SIZE (compiler-rt-8.0.0.src.tar.xz) = 1903020 -SHA256 (clang-tools-extra-8.0.0.src.tar.xz) = 4f00122be408a7482f2004bcf215720d2b88cf8dc78b824abb225da8ad359d4b -SIZE (clang-tools-extra-8.0.0.src.tar.xz) = 1996156 -SHA256 (lld-8.0.0.src.tar.xz) = 9caec8ec922e32ffa130f0fb08e4c5a242d7e68ce757631e425e9eba2e1a6e37 -SIZE (lld-8.0.0.src.tar.xz) = 999864 -SHA256 (lldb-8.0.0.src.tar.xz) = 49918b9f09816554a20ac44c5f85a32dc0a7a00759b3259e78064d674eac0373 -SIZE (lldb-8.0.0.src.tar.xz) = 19602332 -SHA256 (openmp-8.0.0.src.tar.xz) = f7b1705d2f16c4fc23d6531f67d2dd6fb78a077dd346b02fed64f4b8df65c9d5 -SIZE (openmp-8.0.0.src.tar.xz) = 934384 +TIMESTAMP = 1563822147 +SHA256 (llvm-8.0.1.src.tar.xz) = 44787a6d02f7140f145e2250d56c9f849334e11f9ae379827510ed72f12b75e7 +SIZE (llvm-8.0.1.src.tar.xz) = 30477608 +SHA256 (cfe-8.0.1.src.tar.xz) = 70effd69f7a8ab249f66b0a68aba8b08af52aa2ab710dfb8a0fba102685b1646 +SIZE (cfe-8.0.1.src.tar.xz) = 12810056 +SHA256 (compiler-rt-8.0.1.src.tar.xz) = 11828fb4823387d820c6715b25f6b2405e60837d12a7469e7a8882911c721837 +SIZE (compiler-rt-8.0.1.src.tar.xz) = 1954204 +SHA256 (clang-tools-extra-8.0.1.src.tar.xz) = 187179b617e4f07bb605cc215da0527e64990b4a7dd5cbcc452a16b64e02c3e1 +SIZE (clang-tools-extra-8.0.1.src.tar.xz) = 1994068 +SHA256 (lld-8.0.1.src.tar.xz) = 9fba1e94249bd7913e8a6c3aadcb308b76c8c3d83c5ce36c99c3f34d73873d88 +SIZE (lld-8.0.1.src.tar.xz) = 996440 +SHA256 (lldb-8.0.1.src.tar.xz) = e8a79baa6d11dd0650ab4a1b479f699dfad82af627cbbcd49fa6f2dc14e131d7 +SIZE (lldb-8.0.1.src.tar.xz) = 19586288 +SHA256 (openmp-8.0.1.src.tar.xz) = 3e85dd3cad41117b7c89a41de72f2e6aa756ea7b4ef63bb10dcddf8561a7722c +SIZE (openmp-8.0.1.src.tar.xz) = 933320 diff --git a/devel/llvm80/files/clang/patch-freebsd-r349351.diff b/devel/llvm80/files/clang/patch-freebsd-r349351.diff new file mode 100644 index 00000000000..47755991030 --- /dev/null +++ b/devel/llvm80/files/clang/patch-freebsd-r349351.diff @@ -0,0 +1,12 @@ +--- tools/clang/lib/Driver/ToolChains/Arch/PPC.cpp.orig ++++ tools/clang/lib/Driver/ToolChains/Arch/PPC.cpp +@@ -116,7 +116,8 @@ + const ArgList &Args) { + if (Args.getLastArg(options::OPT_msecure_plt)) + return ppc::ReadGOTPtrMode::SecurePlt; +- if (Triple.isOSNetBSD() || Triple.isOSOpenBSD()) ++ if ((Triple.isOSFreeBSD() && Triple.getOSMajorVersion() >= 13) || ++ Triple.isOSNetBSD() || Triple.isOSOpenBSD()) + return ppc::ReadGOTPtrMode::SecurePlt; + else + return ppc::ReadGOTPtrMode::Bss; diff --git a/devel/llvm80/files/patch-freebsd-r349351.diff b/devel/llvm80/files/patch-freebsd-r349351.diff new file mode 100644 index 00000000000..699ff984ede --- /dev/null +++ b/devel/llvm80/files/patch-freebsd-r349351.diff @@ -0,0 +1,12 @@ +--- lib/Target/PowerPC/PPCSubtarget.cpp.orig 2019-06-25 23:46:37.175257000 +0100 ++++ lib/Target/PowerPC/PPCSubtarget.cpp 2019-06-25 23:48:13.189675000 +0100 +@@ -138,7 +138,8 @@ + if (isDarwin()) + HasLazyResolverStubs = true; + +- if (TargetTriple.isOSNetBSD() || TargetTriple.isOSOpenBSD()) ++ if ((TargetTriple.isOSFreeBSD() && TargetTriple.getOSMajorVersion() >= 13) || ++ TargetTriple.isOSNetBSD() || TargetTriple.isOSOpenBSD()) + SecurePlt = true; + + if (HasSPE && IsPPC64) diff --git a/devel/osc/Makefile b/devel/osc/Makefile index 97e357000b1..711029e2e61 100644 --- a/devel/osc/Makefile +++ b/devel/osc/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= osc -PORTVERSION= 0.165.1 +PORTVERSION= 0.165.2 CATEGORIES= devel MAINTAINER= amdmi3@FreeBSD.org diff --git a/devel/osc/distinfo b/devel/osc/distinfo index d3d7fbfe774..5d5e6ddccfd 100644 --- a/devel/osc/distinfo +++ b/devel/osc/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1559475512 -SHA256 (openSUSE-osc-0.165.1_GH0.tar.gz) = 538e7afd6deac6b67d21ae9989d55991f0633fe9b464dace5c01024a0eca6095 -SIZE (openSUSE-osc-0.165.1_GH0.tar.gz) = 350146 +TIMESTAMP = 1563805026 +SHA256 (openSUSE-osc-0.165.2_GH0.tar.gz) = 56c0819cd49d18c99561bd5af6f8fcfbf71ae1f56b3efbf34c81d0dfcd70606c +SIZE (openSUSE-osc-0.165.2_GH0.tar.gz) = 350702 diff --git a/devel/p5-MCE-Shared/Makefile b/devel/p5-MCE-Shared/Makefile index 11b37330844..f278bf9140e 100644 --- a/devel/p5-MCE-Shared/Makefile +++ b/devel/p5-MCE-Shared/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= MCE-Shared -PORTVERSION= 1.841 +PORTVERSION= 1.842 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.839:devel/p5-MCE + p5-MCE>=1.842:devel/p5-MCE USES= perl5 USE_PERL5= configure diff --git a/devel/p5-MCE-Shared/distinfo b/devel/p5-MCE-Shared/distinfo index 91897c190ea..30125d59c78 100644 --- a/devel/p5-MCE-Shared/distinfo +++ b/devel/p5-MCE-Shared/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1562497701 -SHA256 (MCE-Shared-1.841.tar.gz) = 63a2dbd1a25a18ba0aee04ff4437458a27ba36d07a0be272c4e3715a0bea1d70 -SIZE (MCE-Shared-1.841.tar.gz) = 142785 +TIMESTAMP = 1563805949 +SHA256 (MCE-Shared-1.842.tar.gz) = b93ea89eae7f282446baa7ed931c7dcf6dcb0f0432049b545736bbf0332489b1 +SIZE (MCE-Shared-1.842.tar.gz) = 143825 diff --git a/devel/p5-MCE/Makefile b/devel/p5-MCE/Makefile index eefeb43c882..31be1f8d6ae 100644 --- a/devel/p5-MCE/Makefile +++ b/devel/p5-MCE/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= MCE -PORTVERSION= 1.841 +PORTVERSION= 1.842 CATEGORIES= devel perl5 MASTER_SITES= CPAN MASTER_SITE_SUBDIR= CPAN:MARIOROY diff --git a/devel/p5-MCE/distinfo b/devel/p5-MCE/distinfo index 29eb75fe32d..ccadff0eaf9 100644 --- a/devel/p5-MCE/distinfo +++ b/devel/p5-MCE/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1562689552 -SHA256 (MCE-1.841.tar.gz) = 5a29414134fb887eb0838ba68a2ec8527d3a38bf7ea0afce6212e7e4113cf049 -SIZE (MCE-1.841.tar.gz) = 208096 +TIMESTAMP = 1563805947 +SHA256 (MCE-1.842.tar.gz) = a7384b59537530293323c55e010d8a1d30f4009e8d1140161e9c35389a8c30ae +SIZE (MCE-1.842.tar.gz) = 208765 diff --git a/devel/p5-Regexp-Compare/Makefile b/devel/p5-Regexp-Compare/Makefile index 0e7950b4cd7..66f311b11c2 100644 --- a/devel/p5-Regexp-Compare/Makefile +++ b/devel/p5-Regexp-Compare/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= Regexp-Compare -PORTVERSION= 0.30 +PORTVERSION= 0.31 CATEGORIES= devel perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- diff --git a/devel/p5-Regexp-Compare/distinfo b/devel/p5-Regexp-Compare/distinfo index b2b415f6559..8f31b78e257 100644 --- a/devel/p5-Regexp-Compare/distinfo +++ b/devel/p5-Regexp-Compare/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1563642018 -SHA256 (Regexp-Compare-0.30.tar.gz) = d713252c30034b44c9ad806045f485b4ced4b3226041604cde68df76a619c1f5 -SIZE (Regexp-Compare-0.30.tar.gz) = 87126 +TIMESTAMP = 1563805951 +SHA256 (Regexp-Compare-0.31.tar.gz) = 29909dafa288fcc7f1c584250d41ac06946daf92fd177c7fb9e8e6f248a2fedf +SIZE (Regexp-Compare-0.31.tar.gz) = 87169 diff --git a/devel/p5-Test-Mock-Redis/Makefile b/devel/p5-Test-Mock-Redis/Makefile index c708e35139e..8cbf72a2546 100644 --- a/devel/p5-Test-Mock-Redis/Makefile +++ b/devel/p5-Test-Mock-Redis/Makefile @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= Test-Mock-Redis -PORTVERSION= 0.21 +PORTVERSION= 0.22 CATEGORIES= devel perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- diff --git a/devel/p5-Test-Mock-Redis/distinfo b/devel/p5-Test-Mock-Redis/distinfo index 3b6e73b63b2..1fa8851479f 100644 --- a/devel/p5-Test-Mock-Redis/distinfo +++ b/devel/p5-Test-Mock-Redis/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1547536491 -SHA256 (Test-Mock-Redis-0.21.tar.gz) = a624f1439c2256fdbaf5b0887dae31669d4aa9c8f73eb603801688d1495e89cb -SIZE (Test-Mock-Redis-0.21.tar.gz) = 32449 +TIMESTAMP = 1563683034 +SHA256 (Test-Mock-Redis-0.22.tar.gz) = 32394de0252c2c351b04f6c4957f3044242d789fa6b6f713d23ff03459ca8650 +SIZE (Test-Mock-Redis-0.22.tar.gz) = 33749 diff --git a/devel/py-flake8/Makefile b/devel/py-flake8/Makefile index dab36e81836..08fab9f54e0 100644 --- a/devel/py-flake8/Makefile +++ b/devel/py-flake8/Makefile @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= flake8 -PORTVERSION= 3.7.7 -PORTREVISION= 2 +PORTVERSION= 3.7.8 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/devel/py-flake8/distinfo b/devel/py-flake8/distinfo index 3a07c9bc976..fc1b9c56ad9 100644 --- a/devel/py-flake8/distinfo +++ b/devel/py-flake8/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1551187354 -SHA256 (flake8-3.7.7.tar.gz) = 859996073f341f2670741b51ec1e67a01da142831aa1fdc6242dbf88dffbe661 -SIZE (flake8-3.7.7.tar.gz) = 148457 +TIMESTAMP = 1563805035 +SHA256 (flake8-3.7.8.tar.gz) = 19241c1cbc971b9962473e4438a2ca19749a7dd002dd1a946eaba171b4114548 +SIZE (flake8-3.7.8.tar.gz) = 150113 diff --git a/devel/py-graphql-core/Makefile b/devel/py-graphql-core/Makefile index cbb87f0e90f..683874cadd9 100644 --- a/devel/py-graphql-core/Makefile +++ b/devel/py-graphql-core/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= graphql-core -PORTVERSION= 2.2 +PORTVERSION= 2.2.1 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -14,7 +14,7 @@ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}promise>=2.1:devel/py-promise@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}rx>=1.6.0:devel/py-rx@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}rx>=1.6<3:devel/py-rx@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}six>=1.10.0:devel/py-six@${PY_FLAVOR} USES= python diff --git a/devel/py-graphql-core/distinfo b/devel/py-graphql-core/distinfo index 6c5b8a065b9..ff9ce7bcf8b 100644 --- a/devel/py-graphql-core/distinfo +++ b/devel/py-graphql-core/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1559944333 -SHA256 (graphql-core-2.2.tar.gz) = 60ef8277b82aaad49e87154a0288a9542a82a63909568375712f826b1c280ef5 -SIZE (graphql-core-2.2.tar.gz) = 99204 +TIMESTAMP = 1563805955 +SHA256 (graphql-core-2.2.1.tar.gz) = da64c472d720da4537a2e8de8ba859210b62841bd47a9be65ca35177f62fe0e4 +SIZE (graphql-core-2.2.1.tar.gz) = 99207 diff --git a/devel/py-molecule/Makefile b/devel/py-molecule/Makefile index 9b19a151f3c..599ee39a48b 100644 --- a/devel/py-molecule/Makefile +++ b/devel/py-molecule/Makefile @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= molecule -PORTVERSION= 2.20.1 +PORTVERSION= 2.20.2 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/devel/py-molecule/distinfo b/devel/py-molecule/distinfo index 0530e1736fd..2e93e7d63eb 100644 --- a/devel/py-molecule/distinfo +++ b/devel/py-molecule/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1555145209 -SHA256 (molecule-2.20.1.tar.gz) = 621797c54299775f284bbb010d5bb9be485500eecaaa14a476cbc0df285d0da7 -SIZE (molecule-2.20.1.tar.gz) = 251517 +TIMESTAMP = 1563826185 +SHA256 (molecule-2.20.2.tar.gz) = 9dc29b9ef172b26532752784687faca2e868c84e2d90f0b4f018d81d76a8b30a +SIZE (molecule-2.20.2.tar.gz) = 251623 diff --git a/devel/rubygem-aws-sdk-core/Makefile b/devel/rubygem-aws-sdk-core/Makefile index 5561f89cb4c..3c213da7156 100644 --- a/devel/rubygem-aws-sdk-core/Makefile +++ b/devel/rubygem-aws-sdk-core/Makefile @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= aws-sdk-core -DISTVERSION= 2.11.302 +DISTVERSION= 2.11.317 CATEGORIES= devel rubygems MASTER_SITES= RG diff --git a/devel/rubygem-aws-sdk-core/distinfo b/devel/rubygem-aws-sdk-core/distinfo index 49731127d81..9bf3b72c1e0 100644 --- a/devel/rubygem-aws-sdk-core/distinfo +++ b/devel/rubygem-aws-sdk-core/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1561568214 -SHA256 (rubygem/aws-sdk-core-2.11.302.gem) = d4ea1759c8a1046024555457bc54b5a47fd9b81b7623d3c9886bd2aa1df0a872 -SIZE (rubygem/aws-sdk-core-2.11.302.gem) = 1613824 +TIMESTAMP = 1563805961 +SHA256 (rubygem/aws-sdk-core-2.11.317.gem) = 71a54d6b224ef4eb5108bda8fc597be9b8706a46ff616c5235f247076b11be8c +SIZE (rubygem/aws-sdk-core-2.11.317.gem) = 1626112 diff --git a/devel/rubygem-aws-sdk-resources/Makefile b/devel/rubygem-aws-sdk-resources/Makefile index 91a7cbe0ddd..5352813f695 100644 --- a/devel/rubygem-aws-sdk-resources/Makefile +++ b/devel/rubygem-aws-sdk-resources/Makefile @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= aws-sdk-resources -DISTVERSION= 2.11.302 +DISTVERSION= 2.11.317 CATEGORIES= devel rubygems MASTER_SITES= RG diff --git a/devel/rubygem-aws-sdk-resources/distinfo b/devel/rubygem-aws-sdk-resources/distinfo index f220afa5535..5c4e27bb51e 100644 --- a/devel/rubygem-aws-sdk-resources/distinfo +++ b/devel/rubygem-aws-sdk-resources/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1561568215 -SHA256 (rubygem/aws-sdk-resources-2.11.302.gem) = c226b46976142aefdb578bbdd05e2a3c1d914562617441f5d55877f7c86a10f6 -SIZE (rubygem/aws-sdk-resources-2.11.302.gem) = 48640 +TIMESTAMP = 1563805963 +SHA256 (rubygem/aws-sdk-resources-2.11.317.gem) = 930aa155e12b2aa7ef6e57762f29d332f2e0f5668e3c1ed5016bc9483dc129b2 +SIZE (rubygem/aws-sdk-resources-2.11.317.gem) = 48640 diff --git a/devel/rubygem-aws-sdk/Makefile b/devel/rubygem-aws-sdk/Makefile index 7e1f8e98db6..a354eb9bbab 100644 --- a/devel/rubygem-aws-sdk/Makefile +++ b/devel/rubygem-aws-sdk/Makefile @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= aws-sdk -DISTVERSION= 2.11.302 +DISTVERSION= 2.11.317 CATEGORIES= devel rubygems MASTER_SITES= RG diff --git a/devel/rubygem-aws-sdk/distinfo b/devel/rubygem-aws-sdk/distinfo index fa66a94dfbf..88de1e311ff 100644 --- a/devel/rubygem-aws-sdk/distinfo +++ b/devel/rubygem-aws-sdk/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1561568190 -SHA256 (rubygem/aws-sdk-2.11.302.gem) = f6fe3e66a4bb3a40e1e216073a0d4a9064d0e27706c73cbee09a83077ac8b358 -SIZE (rubygem/aws-sdk-2.11.302.gem) = 4608 +TIMESTAMP = 1563805959 +SHA256 (rubygem/aws-sdk-2.11.317.gem) = 6c6bb96c1a33f1bfd371ed903162147fd7314475b7b0ef4cf718f69be298835c +SIZE (rubygem/aws-sdk-2.11.317.gem) = 4608 diff --git a/devel/rubygem-fugit/Makefile b/devel/rubygem-fugit/Makefile index 9400e4932a3..8075fb575a8 100644 --- a/devel/rubygem-fugit/Makefile +++ b/devel/rubygem-fugit/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= fugit -PORTVERSION= 1.2.3 +PORTVERSION= 1.3.0 CATEGORIES= devel rubygems MASTER_SITES= RG diff --git a/devel/rubygem-fugit/distinfo b/devel/rubygem-fugit/distinfo index 548079b1dc4..dce7e13a06c 100644 --- a/devel/rubygem-fugit/distinfo +++ b/devel/rubygem-fugit/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1563472163 -SHA256 (rubygem/fugit-1.2.3.gem) = a0ba58211f4e69103531cc26d6d5c18f03a2d3989e7b8aa03d2d83f2181cb745 -SIZE (rubygem/fugit-1.2.3.gem) = 20992 +TIMESTAMP = 1563805969 +SHA256 (rubygem/fugit-1.3.0.gem) = 09e5fcd8f3fca51544b36f51f7a5506f7d5b4f41d854b804dbfacea5dc1eee61 +SIZE (rubygem/fugit-1.3.0.gem) = 21504 diff --git a/devel/rubygem-fugit12/Makefile b/devel/rubygem-fugit12/Makefile new file mode 100644 index 00000000000..56a962800a9 --- /dev/null +++ b/devel/rubygem-fugit12/Makefile @@ -0,0 +1,29 @@ +# Created by: Po-Chuan Hsieh +# $FreeBSD$ + +PORTNAME= fugit +PORTVERSION= 1.2.3 +CATEGORIES= devel rubygems +MASTER_SITES= RG +PKGNAMESUFFIX= 12 + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Time tools for flor and the floraison project + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE.txt + +RUN_DEPENDS= rubygem-et-orbi>=1.1.8:devel/rubygem-et-orbi \ + rubygem-raabro>=1.1:textproc/rubygem-raabro + +USES= gem +USE_RUBY= yes + +NO_ARCH= yes + +# Disable rdoc +OPTIONS_EXCLUDE=DOCS + +PORTSCOUT= limit:^1\.2\. + +.include diff --git a/devel/rubygem-fugit12/distinfo b/devel/rubygem-fugit12/distinfo new file mode 100644 index 00000000000..548079b1dc4 --- /dev/null +++ b/devel/rubygem-fugit12/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1563472163 +SHA256 (rubygem/fugit-1.2.3.gem) = a0ba58211f4e69103531cc26d6d5c18f03a2d3989e7b8aa03d2d83f2181cb745 +SIZE (rubygem/fugit-1.2.3.gem) = 20992 diff --git a/devel/rubygem-fugit12/pkg-descr b/devel/rubygem-fugit12/pkg-descr new file mode 100644 index 00000000000..9b66fa15d6c --- /dev/null +++ b/devel/rubygem-fugit12/pkg-descr @@ -0,0 +1,5 @@ +Fugit is a time tools for flor and the floraison group. It uses et-orbi to represent +time instances and raabro as a basis for its parsers. Fugit will probably become +the foundation for rufus-scheduler 4.x + +WWW: https://github.com/floraison/fugit diff --git a/devel/rubygem-google-api-client/Makefile b/devel/rubygem-google-api-client/Makefile index 349d2499796..21b9f8820b2 100644 --- a/devel/rubygem-google-api-client/Makefile +++ b/devel/rubygem-google-api-client/Makefile @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= google-api-client -PORTVERSION= 0.30.6 +PORTVERSION= 0.30.7 CATEGORIES= devel rubygems MASTER_SITES= RG diff --git a/devel/rubygem-google-api-client/distinfo b/devel/rubygem-google-api-client/distinfo index 060b7a09eda..9ab6d3d2f44 100644 --- a/devel/rubygem-google-api-client/distinfo +++ b/devel/rubygem-google-api-client/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1563472167 -SHA256 (rubygem/google-api-client-0.30.6.gem) = 5ec924010375a724a7d2660000f3cc60987d3b20037ef1acc404473a4e63e4b3 -SIZE (rubygem/google-api-client-0.30.6.gem) = 5566464 +TIMESTAMP = 1563805965 +SHA256 (rubygem/google-api-client-0.30.7.gem) = f3621b52cd98961152931f6b51affe01540df859f8279b395b24f4de9bacc37e +SIZE (rubygem/google-api-client-0.30.7.gem) = 5583872 diff --git a/dns/bind9-devel/Makefile b/dns/bind9-devel/Makefile index 24ce40ae879..2e4d835cb09 100644 --- a/dns/bind9-devel/Makefile +++ b/dns/bind9-devel/Makefile @@ -41,13 +41,13 @@ RUN_DEPENDS= bind-tools>0:dns/bind-tools # XXX: remove tar:bz2 USES= compiler:c11 cpe libedit pkgconfig ssl tar:bz2 # ISC releases things like 9.8.0-P1, which our versioning doesn't like -ISCVERSION= 9.15.0a0.2019.07.12 +ISCVERSION= 9.15.0a0.2019.07.21 # XXX: Remove gitlab USE_GITLAB= yes GL_SITE= https://gitlab.isc.org GL_ACCOUNT= isc-projects GL_PROJECT= bind9 -GL_COMMIT= 4084ba108599f9fa0ab6f7019b63552c338b4020 +GL_COMMIT= 03b8e7ccb7c702aff4e2d10f54deb2ef5a7946c2 CPE_VENDOR= isc CPE_VERSION= ${ISCVERSION:C/-.*//} diff --git a/dns/bind9-devel/distinfo b/dns/bind9-devel/distinfo index 9769f28e67e..39cccbd1124 100644 --- a/dns/bind9-devel/distinfo +++ b/dns/bind9-devel/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1563193902 -SHA256 (isc-projects-bind9-4084ba108599f9fa0ab6f7019b63552c338b4020_GL0.tar.gz) = 15640d6227063d3e04f2bde586f9ff802e6f3eefc7d40c7ccf81ea0757ccf72d -SIZE (isc-projects-bind9-4084ba108599f9fa0ab6f7019b63552c338b4020_GL0.tar.gz) = 6341064 +TIMESTAMP = 1563803945 +SHA256 (isc-projects-bind9-03b8e7ccb7c702aff4e2d10f54deb2ef5a7946c2_GL0.tar.gz) = 7c42b6a1af0547e0c9546c4b53da67b8d98580cd9fd408a2bc1344192f4138a9 +SIZE (isc-projects-bind9-03b8e7ccb7c702aff4e2d10f54deb2ef5a7946c2_GL0.tar.gz) = 6340946 diff --git a/dns/bind9-devel/files/extrapatch-bind-min-override-ttl b/dns/bind9-devel/files/extrapatch-bind-min-override-ttl index 4c420ccf707..e0ff637c2db 100644 --- a/dns/bind9-devel/files/extrapatch-bind-min-override-ttl +++ b/dns/bind9-devel/files/extrapatch-bind-min-override-ttl @@ -1,4 +1,4 @@ ---- bin/named/config.c.orig 2019-07-04 16:38:26 UTC +--- bin/named/config.c.orig 2019-07-22 02:18:48 UTC +++ bin/named/config.c @@ -177,6 +177,7 @@ options {\n\ notify-source *;\n\ @@ -8,9 +8,9 @@ provide-ixfr true;\n\ qname-minimization relaxed;\n\ query-source address *;\n\ ---- bin/named/server.c.orig 2019-07-04 16:38:26 UTC +--- bin/named/server.c.orig 2019-07-22 02:18:48 UTC +++ bin/named/server.c -@@ -4225,6 +4225,11 @@ configure_view(dns_view_t *view, dns_viewlist_t *viewl +@@ -4226,6 +4226,11 @@ configure_view(dns_view_t *view, dns_viewlist_t *viewl } obj = NULL; @@ -22,7 +22,7 @@ result = named_config_get(maps, "max-cache-ttl", &obj); INSIST(result == ISC_R_SUCCESS); view->maxcachettl = cfg_obj_asuint32(obj); ---- lib/dns/include/dns/view.h.orig 2019-07-04 16:38:26 UTC +--- lib/dns/include/dns/view.h.orig 2019-07-22 02:18:48 UTC +++ lib/dns/include/dns/view.h @@ -152,6 +152,7 @@ struct dns_view { bool requestnsid; @@ -32,7 +32,7 @@ dns_ttl_t maxncachettl; dns_ttl_t mincachettl; dns_ttl_t minncachettl; ---- lib/dns/resolver.c.orig 2019-07-04 16:38:26 UTC +--- lib/dns/resolver.c.orig 2019-07-22 02:18:48 UTC +++ lib/dns/resolver.c @@ -6048,6 +6048,12 @@ cache_name(fetchctx_t *fctx, dns_name_t *name, dns_adb } @@ -47,7 +47,7 @@ * Enforce the configure maximum cache TTL. */ if (rdataset->ttl > res->view->maxcachettl) { ---- lib/isccfg/namedconf.c.orig 2019-07-04 16:38:26 UTC +--- lib/isccfg/namedconf.c.orig 2019-07-22 02:18:48 UTC +++ lib/isccfg/namedconf.c @@ -1911,6 +1911,7 @@ view_clauses[] = { #endif diff --git a/dns/bind9-devel/files/patch-configure b/dns/bind9-devel/files/patch-configure index d17a68a407d..f0ee0d46117 100644 --- a/dns/bind9-devel/files/patch-configure +++ b/dns/bind9-devel/files/patch-configure @@ -1,6 +1,6 @@ ---- configure.orig 2019-07-12 14:07:20 UTC +--- configure.orig 2019-07-22 02:18:48 UTC +++ configure -@@ -17287,27 +17287,9 @@ done +@@ -17246,27 +17246,9 @@ done # problems start to show up. saved_libs="$LIBS" for TRY_LIBS in \ @@ -30,7 +30,7 @@ { $as_echo "$as_me:${as_lineno-$LINENO}: checking linking as $TRY_LIBS" >&5 $as_echo_n "checking linking as $TRY_LIBS... " >&6; } cat confdefs.h - <<_ACEOF >conftest.$ac_ext -@@ -17350,47 +17332,7 @@ $as_echo "no" >&6; } ;; +@@ -17309,47 +17291,7 @@ $as_echo "no" >&6; } ;; no) as_fn_error $? "could not determine proper GSSAPI linkage" "$LINENO" 5 ;; esac @@ -79,7 +79,7 @@ DNS_GSSAPI_LIBS="$LIBS" { $as_echo "$as_me:${as_lineno-$LINENO}: result: using GSSAPI from $use_gssapi/lib and $use_gssapi/include" >&5 -@@ -22613,7 +22555,7 @@ $as_echo "" >&6; } +@@ -22572,7 +22514,7 @@ $as_echo "" >&6; } # Check other locations for includes. # Order is important (sigh). diff --git a/emulators/citra/Makefile b/emulators/citra/Makefile index 419586a34c9..3715ea23cc6 100644 --- a/emulators/citra/Makefile +++ b/emulators/citra/Makefile @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= citra -PORTVERSION= s20190715 +PORTVERSION= s20190722 PORTREVISION?= 0 CATEGORIES= emulators @@ -23,7 +23,7 @@ BUILD_DEPENDS= boost-libs>=1.66:devel/boost-libs USE_GITHUB= yes GH_ACCOUNT= citra-emu -GH_TAGNAME= 643a39638 +GH_TAGNAME= 077eacd41 GH_TUPLE= citra-emu:ext-libressl-portable:7d01cb0:libressl/externals/libressl \ citra-emu:ext-soundtouch:060181e:soundtouch/externals/soundtouch \ MerryMage:dynarmic:r1-992-g4e6848d1:dynarmic/externals/dynarmic \ diff --git a/emulators/citra/distinfo b/emulators/citra/distinfo index fcd5195a673..157c795215b 100644 --- a/emulators/citra/distinfo +++ b/emulators/citra/distinfo @@ -1,6 +1,6 @@ -TIMESTAMP = 1563163465 -SHA256 (citra-emu-citra-s20190715-643a39638_GH0.tar.gz) = bc8fefd7d4dec3403724a8cec177160cd5a9e1ef83c5965f04a6f54a6622f55b -SIZE (citra-emu-citra-s20190715-643a39638_GH0.tar.gz) = 5049237 +TIMESTAMP = 1563838906 +SHA256 (citra-emu-citra-s20190722-077eacd41_GH0.tar.gz) = 0b5f5bbd810b1c76410577d9abdf5c71f7412904ac02992f4a75400db4c791ee +SIZE (citra-emu-citra-s20190722-077eacd41_GH0.tar.gz) = 5049067 SHA256 (citra-emu-ext-libressl-portable-7d01cb0_GH0.tar.gz) = f3fc8c9d4991b05ca1e1c8f5907ecd3ffd9724a8dccf328087b4784cda5c7db3 SIZE (citra-emu-ext-libressl-portable-7d01cb0_GH0.tar.gz) = 1762942 SHA256 (citra-emu-ext-soundtouch-060181e_GH0.tar.gz) = a593ab188e4feaeef8376c27b554cc413986efc777c195e44c6d3d223de9a63c diff --git a/emulators/rpcs3/Makefile b/emulators/rpcs3/Makefile index edd7f3cb6df..9e7fc47ef5d 100644 --- a/emulators/rpcs3/Makefile +++ b/emulators/rpcs3/Makefile @@ -2,8 +2,8 @@ PORTNAME= rpcs3 DISTVERSIONPREFIX= v -DISTVERSION= 0.0.6-8398 # git rev-list --count HEAD -DISTVERSIONSUFFIX= -ge2574ff10 +DISTVERSION= 0.0.6-8411 # git rev-list --count HEAD +DISTVERSIONSUFFIX= -g85b1152e2 CATEGORIES= emulators MAINTAINER= jbeich@FreeBSD.org diff --git a/emulators/rpcs3/distinfo b/emulators/rpcs3/distinfo index 58c51ade6f8..6c6f83fb19c 100644 --- a/emulators/rpcs3/distinfo +++ b/emulators/rpcs3/distinfo @@ -1,6 +1,6 @@ -TIMESTAMP = 1563540548 -SHA256 (RPCS3-rpcs3-v0.0.6-8398-ge2574ff10_GH0.tar.gz) = efe90a12b46e9a700067812e5456c4167c078c0895303b7f087d19e5a684ebb0 -SIZE (RPCS3-rpcs3-v0.0.6-8398-ge2574ff10_GH0.tar.gz) = 5518494 +TIMESTAMP = 1563836941 +SHA256 (RPCS3-rpcs3-v0.0.6-8411-g85b1152e2_GH0.tar.gz) = e646a07203c00eb964ddcfad939a82d2c51a64af51a3728f0f9f7397f70f538d +SIZE (RPCS3-rpcs3-v0.0.6-8411-g85b1152e2_GH0.tar.gz) = 5526341 SHA256 (RPCS3-hidapi-hidapi-0.8.0-rc1-27-g9220f5e_GH0.tar.gz) = 3120e0b701943f452760e45f9fc1ac50bab356ad4c807b4cac4598041c5ca1a5 SIZE (RPCS3-hidapi-hidapi-0.8.0-rc1-27-g9220f5e_GH0.tar.gz) = 105400 SHA256 (RPCS3-llvm-b860b5e8f4ee_GH0.tar.gz) = c151972a0c8ceac568c24b61e63d2ecbdac0f125185e23fc2238e0a14048256e diff --git a/emulators/yuzu/Makefile b/emulators/yuzu/Makefile index f4214a9e7b8..d1ebbf12289 100644 --- a/emulators/yuzu/Makefile +++ b/emulators/yuzu/Makefile @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= yuzu -PORTVERSION= s20190718 +PORTVERSION= s20190722 PORTREVISION?= 0 CATEGORIES= emulators @@ -28,7 +28,7 @@ BUILD_DEPENDS= boost-libs>=1.66:devel/boost-libs \ USE_GITHUB= yes GH_ACCOUNT= yuzu-emu -GH_TAGNAME= 5d369112d +GH_TAGNAME= f601f25bc GH_TUPLE= yuzu-emu:unicorn:1.0.1-153-g73f45735:unicorn/externals/unicorn \ DarkLordZach:mbedtls:a280e60:mbedtls/externals/mbedtls \ KhronosGroup:SPIRV-Headers:2c51218:SPIRV_Headers/externals/sirit/externals/SPIRV-Headers \ diff --git a/emulators/yuzu/distinfo b/emulators/yuzu/distinfo index 3d47978abc7..04056940b28 100644 --- a/emulators/yuzu/distinfo +++ b/emulators/yuzu/distinfo @@ -1,6 +1,6 @@ -TIMESTAMP = 1563472384 -SHA256 (yuzu-emu-yuzu-s20190718-5d369112d_GH0.tar.gz) = c5c9576abedb1e1d85e7e173d3cd9eb79286a026308a2947063d6fd4c0435049 -SIZE (yuzu-emu-yuzu-s20190718-5d369112d_GH0.tar.gz) = 2700821 +TIMESTAMP = 1563808375 +SHA256 (yuzu-emu-yuzu-s20190722-f601f25bc_GH0.tar.gz) = 2ab6824991a4ea86ea1100e2bbeb5f1b8943d0d5620ef6ce89ab9f9fbc94298c +SIZE (yuzu-emu-yuzu-s20190722-f601f25bc_GH0.tar.gz) = 2704865 SHA256 (yuzu-emu-unicorn-1.0.1-153-g73f45735_GH0.tar.gz) = 8f7b4d8eb998c2a4c146268d83b44fc22ca8d4d276f26d6af1071e51f4b5bd4f SIZE (yuzu-emu-unicorn-1.0.1-153-g73f45735_GH0.tar.gz) = 3296254 SHA256 (DarkLordZach-mbedtls-a280e60_GH0.tar.gz) = 4fc6ddc256bc75b975fd5ad8bb7d31ff79c62d49daafb0108585c9ef80c6c5a7 diff --git a/emulators/yuzu/files/patch-libc++6 b/emulators/yuzu/files/patch-libc++6 index b784e6b0868..b86962a6f3d 100644 --- a/emulators/yuzu/files/patch-libc++6 +++ b/emulators/yuzu/files/patch-libc++6 @@ -141,6 +141,25 @@ template struct _LIBCPP_TEMPLATE_VIS array; namespace Vulkan { namespace Alternatives { +--- src/video_core/renderer_vulkan/vk_shader_decompiler.cpp.orig 2019-07-22 15:12:55 UTC ++++ src/video_core/renderer_vulkan/vk_shader_decompiler.cpp +@@ -21,6 +21,16 @@ + #include "video_core/renderer_vulkan/vk_shader_decompiler.h" + #include "video_core/shader/shader_ir.h" + ++#if defined(_LIBCPP_VERSION) && _LIBCPP_VERSION < 7000 ++_LIBCPP_BEGIN_NAMESPACE_STD ++template && ...), void>::type ++ > ++array(_Tp, _Args...) ++ -> array<_Tp, 1 + sizeof...(_Args)>; ++_LIBCPP_END_NAMESPACE_STD ++#endif ++ + namespace Vulkan::VKShader { + + using Sirit::Id; --- src/yuzu/configuration/configure_gamelist.cpp.orig 2019-06-28 18:03:38 UTC +++ src/yuzu/configuration/configure_gamelist.cpp @@ -11,6 +11,16 @@ diff --git a/games/Makefile b/games/Makefile index 7e442a4c361..90935382480 100644 --- a/games/Makefile +++ b/games/Makefile @@ -52,6 +52,7 @@ SUBDIR += apricots SUBDIR += aquaria SUBDIR += arkanoidsb + SUBDIR += armagetronad SUBDIR += arx-libertatis SUBDIR += asc SUBDIR += ascii-invaders @@ -1005,6 +1006,7 @@ SUBDIR += vitetris SUBDIR += vkquake SUBDIR += vms-empire + SUBDIR += voadi SUBDIR += vodovod SUBDIR += volleyball SUBDIR += vor diff --git a/games/armagetronad/Makefile b/games/armagetronad/Makefile new file mode 100644 index 00000000000..cd5195abaa6 --- /dev/null +++ b/games/armagetronad/Makefile @@ -0,0 +1,34 @@ +# $FreeBSD$ + +PORTNAME= armagetronad +DISTVERSION= 0.2.8.3.4 +DISTVERSIONSUFFIX= .src +CATEGORIES= games +MASTER_SITES= SF/${PORTNAME}/stable/${DISTVERSION}/ + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Tron clone in 3D + +LICENSE= GPLv2 +LICENSE_FILE= ${WRKSRC}/COPYING + +BUILD_DEPENDS= bash:shells/bash +LIB_DEPENDS= libpng16.so:graphics/png + +USES= autoreconf gl gmake gnome jpeg sdl +GNU_CONFIGURE= yes +USE_SDL= image mixer sdl +USE_GL= gl glu +USE_GNOME= libxml2 + +WRKSRC= ${WRKDIR}/${PORTNAME}-${DISTVERSION} + +CONFIGURE_ARGS= --disable-etc --disable-games --enable-music + +BINARY_ALIAS= sdl11-config=sdl-config + +OPTIONS_DEFINE= DOCS + +PORTDOCS= * + +.include diff --git a/games/armagetronad/distinfo b/games/armagetronad/distinfo new file mode 100644 index 00000000000..b3171724253 --- /dev/null +++ b/games/armagetronad/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1563837617 +SHA256 (armagetronad-0.2.8.3.4.src.tar.gz) = 446af57c614ed28b4aa1d5a0d818c9d67a621bf7832b9276c3029c0f5006fedd +SIZE (armagetronad-0.2.8.3.4.src.tar.gz) = 2217387 diff --git a/games/armagetronad/files/patch-batch_sysinstall.in b/games/armagetronad/files/patch-batch_sysinstall.in new file mode 100644 index 00000000000..adbca77707a --- /dev/null +++ b/games/armagetronad/files/patch-batch_sysinstall.in @@ -0,0 +1,11 @@ +--- batch/sysinstall.in.orig 2011-09-11 10:41:39 UTC ++++ batch/sysinstall.in +@@ -205,7 +205,7 @@ if test $MODE = install; then + for script in $DESTDIR$SCRIPTDIR/* $DESTDIR$CONFIGDIR/rc.config; do + if test $script != $DESTDIR$SCRIPTDIR/sysinstall; then + sed -e ${sedcommands} < $script > $script.trans || exit 1 +- mv $script.trans $script ++ mv -f $script.trans $script + chmod 755 $script + fi + done diff --git a/games/armagetronad/files/patch-src_tron_gCycle.cpp b/games/armagetronad/files/patch-src_tron_gCycle.cpp new file mode 100644 index 00000000000..58705446a30 --- /dev/null +++ b/games/armagetronad/files/patch-src_tron_gCycle.cpp @@ -0,0 +1,16 @@ +This is a fix for a bug in how std::autoptr is handled. +clang complains: +gCycle.cpp:*:*: warning: reference cannot be bound to dereferenced null pointer in well-defined C++ code; pointer may be assumed to always convert to true + [-Wundefined-bool-conversion] + +--- src/tron/gCycle.cpp.orig 2011-09-11 10:41:47 UTC ++++ src/tron/gCycle.cpp +@@ -2712,7 +2712,7 @@ bool gCycle::Timestep(REAL currentTime){ + gCycleChatBot & bot = gCycleChatBot::Get( this ); + bot.Activate( currentTime ); + } +- else if ( &(*chatBot_) ) ++ else if ( chatBot_.get() ) + { + chatBot_->nextChatAI_ = 0; + } diff --git a/games/armagetronad/pkg-descr b/games/armagetronad/pkg-descr new file mode 100644 index 00000000000..7414f153cf8 --- /dev/null +++ b/games/armagetronad/pkg-descr @@ -0,0 +1,7 @@ +Armagetron is a multiplayer game in 3d that attempts to emulate and expand on +the lightcycle sequence from the movie Tron. It's an old school arcade game +slung into the 21st century. Highlights include a customizable playing arena, +HUD, unique graphics, and AI bots. For the more advanced player there are new +game modes and a wide variety of physics settings to tweak as well. + +WWW: http://www.armagetronad.org/ diff --git a/games/armagetronad/pkg-plist b/games/armagetronad/pkg-plist new file mode 100644 index 00000000000..7a77ec6519b --- /dev/null +++ b/games/armagetronad/pkg-plist @@ -0,0 +1,76 @@ +bin/armagetronad +%%ETCDIR%%/aiplayers.cfg +%%ETCDIR%%/default.cfg +%%ETCDIR%%/examples/breakfast_in_hell.cfg +%%ETCDIR%%/examples/cvs_test/fortress_complete.cfg +%%ETCDIR%%/examples/cvs_test/fortress_physics.cfg +%%ETCDIR%%/examples/cvs_test/fortress_politics.cfg +%%ETCDIR%%/examples/cvs_test/fortress_scoring.cfg +%%ETCDIR%%/examples/cvs_test/sumo_complete.cfg +%%ETCDIR%%/examples/death_zone.cfg +%%ETCDIR%%/examples/fortress_soccer.cfg +%%ETCDIR%%/examples/single_use_turbo.cfg +%%ETCDIR%%/examples/teamsumo.cfg +%%ETCDIR%%/master.srv +%%ETCDIR%%/rc.config +%%ETCDIR%%/settings.cfg +%%ETCDIR%%/settings_authentication.cfg +%%ETCDIR%%/settings_dedicated.cfg +%%ETCDIR%%/settings_visual.cfg +%%ETCDIR%%/subcultures.srv +%%DATADIR%%/desktop/armagetronad.desktop +%%DATADIR%%/desktop/icons/large/armagetronad.png +%%DATADIR%%/desktop/icons/medium/armagetronad.png +%%DATADIR%%/desktop/icons/small/armagetronad.png +%%DATADIR%%/language/american.txt +%%DATADIR%%/language/british.txt +%%DATADIR%%/language/deutsch.txt +%%DATADIR%%/language/english_base.txt +%%DATADIR%%/language/english_base_notranslate.txt +%%DATADIR%%/language/french.txt +%%DATADIR%%/language/languages.txt +%%DATADIR%%/language/languages.txt.in +%%DATADIR%%/language/polish.txt +%%DATADIR%%/language/polish_transliterated.txt +%%DATADIR%%/language/spanish.txt +%%DATADIR%%/language/update.py +%%DATADIR%%/models/cycle_body.mod +%%DATADIR%%/models/cycle_front.mod +%%DATADIR%%/models/cycle_rear.mod +%%DATADIR%%/resource/included/AATeam/map-0.2.8.0.dtd +%%DATADIR%%/resource/included/AATeam/map-0.2.8.0_rc4.dtd +%%DATADIR%%/resource/included/Anonymous/README +%%DATADIR%%/resource/included/Anonymous/polygon/README +%%DATADIR%%/resource/included/Anonymous/polygon/regular/40-gon-0.2.aamap.xml +%%DATADIR%%/resource/included/Anonymous/polygon/regular/README +%%DATADIR%%/resource/included/Anonymous/polygon/regular/diamond-1.0.2.aamap.xml +%%DATADIR%%/resource/included/Anonymous/polygon/regular/square-1.0.1.aamap.xml +%%DATADIR%%/resource/included/Your_mom/clever/inaktek-0.7.2.aamap.xml +%%DATADIR%%/resource/included/Your_mom/clever/repeat-0.3.2.aamap.xml +%%DATADIR%%/resource/included/Z-Man/fortress/for_old_clients-0.1.0.aamap.xml +%%DATADIR%%/resource/included/Z-Man/fortress/fourfold_for_old_clients-0.1.0.aamap.xml +%%DATADIR%%/resource/included/Z-Man/fortress/sumo_4x4-0.1.1.aamap.xml +%%DATADIR%%/resource/included/Z-Man/fortress/sumo_8x2-0.1.0.aamap.xml +%%DATADIR%%/resource/included/Z-Man/fortress/zonetest-0.1.0.aamap.xml +%%DATADIR%%/resource/included/map-0.1-exp.dtd +%%DATADIR%%/resource/included/map-0.1.dtd +%%DATADIR%%/resource/included/map-0.2.8_beta3.dtd +%%DATADIR%%/scripts/relocate +%%DATADIR%%/scripts/sysinstall +%%DATADIR%%/sound/cyclrun.wav +%%DATADIR%%/sound/expl.wav +%%DATADIR%%/textures/KGN_logo.png +%%DATADIR%%/textures/cycle_body.png +%%DATADIR%%/textures/cycle_wheel.png +%%DATADIR%%/textures/dir_wall.png +%%DATADIR%%/textures/floor.png +%%DATADIR%%/textures/floor_a.png +%%DATADIR%%/textures/floor_b.png +%%DATADIR%%/textures/font.png +%%DATADIR%%/textures/font_extra.png +%%DATADIR%%/textures/font_s.png +%%DATADIR%%/textures/icon.png +%%DATADIR%%/textures/rim_wall.png +%%DATADIR%%/textures/shadow.png +%%DATADIR%%/textures/sky.png +%%DATADIR%%/textures/title.jpg diff --git a/games/rubygem-lolcat/Makefile b/games/rubygem-lolcat/Makefile index 6ceee8dcb3a..5146832dd35 100644 --- a/games/rubygem-lolcat/Makefile +++ b/games/rubygem-lolcat/Makefile @@ -1,8 +1,7 @@ # $FreeBSD$ PORTNAME= lolcat -PORTVERSION= 99.9.69 -PORTREVISION= 1 +PORTVERSION= 99.9.99 CATEGORIES= games MASTER_SITES= RG diff --git a/games/rubygem-lolcat/distinfo b/games/rubygem-lolcat/distinfo index d31a1d00afa..bef15aa8eb5 100644 --- a/games/rubygem-lolcat/distinfo +++ b/games/rubygem-lolcat/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1554553297 -SHA256 (rubygem/lolcat-99.9.69.gem) = 4929d3d37798fdeed7d259dbdc059adb5fb1bf33cd7e4caa3ad0433fa3803e34 -SIZE (rubygem/lolcat-99.9.69.gem) = 57856 +TIMESTAMP = 1563805967 +SHA256 (rubygem/lolcat-99.9.99.gem) = c4e6663d282db5dd0720e3f1dea191b8654b2777287e976d70111aa793414210 +SIZE (rubygem/lolcat-99.9.99.gem) = 121344 diff --git a/games/voadi/Makefile b/games/voadi/Makefile new file mode 100644 index 00000000000..53764e435cc --- /dev/null +++ b/games/voadi/Makefile @@ -0,0 +1,47 @@ +# Created by: Dmitry Marakasov +# $FreeBSD$ + +PORTNAME= voadi +PORTVERSION= 0.3 +CATEGORIES= games +MASTER_SITES= https://gitlab.com/${PORTNAME}/${PORTNAME}/-/archive/v${PORTVERSION}/ +DISTNAME= ${PORTNAME}-v${PORTVERSION} + +MAINTAINER= amdmi3@FreeBSD.org +COMMENT= Vegan on a Desert Island, 2D top-down adventure game + +LICENSE= GPLv3 CC-BY-SA-4.0 +LICENSE_COMB= multi +LICENSE_FILE_GPLv3= ${WRKSRC}/LICENSE + +RUN_DEPENDS= solarus-run:games/solarus + +NO_ARCH= yes +NO_BUILD= yes + +SUB_FILES= ${PORTNAME}.sh + +PORTDOCS= README.md +PORTDATA= * +PLIST_FILES= bin/${PORTNAME} + +OPTIONS_DEFINE= DOCS + +DESKTOP_ENTRIES="Vegan on a Desert Island" \ + "" \ + "${DATADIR}/data/logos/icon_64.png" \ + "${PORTNAME}" \ + "Game;AdventureGame;" \ + "" + +do-install: + @cd ${WRKSRC} && ${COPYTREE_SHARE} . ${STAGEDIR}${DATADIR} + ${INSTALL_SCRIPT} ${WRKDIR}/${PORTNAME}.sh ${STAGEDIR}${PREFIX}/bin/${PORTNAME} + +do-install-DOCS-on: + @${MKDIR} ${STAGEDIR}${DOCSDIR} +.for f in ${PORTDOCS} + ${INSTALL_DATA} ${WRKSRC}/${f} ${STAGEDIR}${DOCSDIR}/ +.endfor + +.include diff --git a/games/voadi/distinfo b/games/voadi/distinfo new file mode 100644 index 00000000000..695052eb785 --- /dev/null +++ b/games/voadi/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1561669319 +SHA256 (voadi-v0.3.tar.gz) = 87fe17bba2a7692bb7e88741e41f906f17267b0cf14100b7197bc3da5574455e +SIZE (voadi-v0.3.tar.gz) = 4810405 diff --git a/games/voadi/files/voadi.sh.in b/games/voadi/files/voadi.sh.in new file mode 100644 index 00000000000..0b6eac51865 --- /dev/null +++ b/games/voadi/files/voadi.sh.in @@ -0,0 +1,3 @@ +#!/bin/sh + +exec %%LOCALBASE%%/bin/solarus-run %%DATADIR%% diff --git a/games/voadi/pkg-descr b/games/voadi/pkg-descr new file mode 100644 index 00000000000..7c2d2a69d51 --- /dev/null +++ b/games/voadi/pkg-descr @@ -0,0 +1,10 @@ +Humorous 2D adventure game for PC, Mac, and Linux, a hypothetical +question is taken to the extreme. Our heroine Rachel is challenged +by the brutality of nature, the politics of species, and the struggle +to persevere. Rachel's vegan ethos is useful, as the island is +brimming with animals that can help her, but winning their support +is no easy task. Rachel must use her communication skills and +problem-solving abilities-rather than coercion-to get what she +wants. + +WWW: https://www.voadi.com/ diff --git a/games/voadi/pkg-message b/games/voadi/pkg-message new file mode 100644 index 00000000000..43ae0d6ed0c --- /dev/null +++ b/games/voadi/pkg-message @@ -0,0 +1,3 @@ +Please keep in mind that Vegan on a Desert Island is a work in +progress, so the store is not yet complete, and also savegames +may be incompatible with future game releases. diff --git a/graphics/drm-current-kmod/Makefile b/graphics/drm-current-kmod/Makefile index d2a9d4cd2f4..ca7d6b47677 100644 --- a/graphics/drm-current-kmod/Makefile +++ b/graphics/drm-current-kmod/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= drm-current-kmod -PORTVERSION= 4.16.g20190710 +PORTVERSION= 4.16.g20190722 CATEGORIES= graphics kld MAINTAINER= x11@FreeBSD.org @@ -28,7 +28,7 @@ USES= kmod uidfix compiler:c++11-lang USE_GITHUB= yes GH_ACCOUNT= FreeBSDDesktop GH_PROJECT= kms-drm -GH_TAGNAME= 083d2f3 +GH_TAGNAME= 9dc2a2b .include diff --git a/graphics/drm-current-kmod/distinfo b/graphics/drm-current-kmod/distinfo index c05ba8d6c4b..5911cf6313e 100644 --- a/graphics/drm-current-kmod/distinfo +++ b/graphics/drm-current-kmod/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1562757916 -SHA256 (FreeBSDDesktop-kms-drm-4.16.g20190710-083d2f3_GH0.tar.gz) = 5993300983cf9c532416abf9f6687b34b079c35e72312c6bf94f0aa04c5f9ecb -SIZE (FreeBSDDesktop-kms-drm-4.16.g20190710-083d2f3_GH0.tar.gz) = 13089216 +TIMESTAMP = 1563814268 +SHA256 (FreeBSDDesktop-kms-drm-4.16.g20190722-9dc2a2b_GH0.tar.gz) = bee86f3c1d505bf52359025782898e8802f3fb75927ed1a018bee00ec8269565 +SIZE (FreeBSDDesktop-kms-drm-4.16.g20190722-9dc2a2b_GH0.tar.gz) = 13089177 diff --git a/graphics/drm-devel-kmod/Makefile b/graphics/drm-devel-kmod/Makefile index 43e388a148b..ba57b15e1d6 100644 --- a/graphics/drm-devel-kmod/Makefile +++ b/graphics/drm-devel-kmod/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= drm-devel-kmod -PORTVERSION= 5.0.g20190710 +PORTVERSION= 5.0.g20190722 CATEGORIES= graphics kld MAINTAINER= x11@FreeBSD.org @@ -28,7 +28,7 @@ USES= kmod uidfix compiler:c++11-lang USE_GITHUB= yes GH_ACCOUNT= FreeBSDDesktop GH_PROJECT= kms-drm -GH_TAGNAME= 284fe88 +GH_TAGNAME= 938547c .include diff --git a/graphics/drm-devel-kmod/distinfo b/graphics/drm-devel-kmod/distinfo index 9382a071abb..4618f2450f5 100644 --- a/graphics/drm-devel-kmod/distinfo +++ b/graphics/drm-devel-kmod/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1562758098 -SHA256 (FreeBSDDesktop-kms-drm-5.0.g20190710-284fe88_GH0.tar.gz) = ab42a4270323b854ab30ff0f1d86f6f3120afbf738d7644218ee52c19c7103df -SIZE (FreeBSDDesktop-kms-drm-5.0.g20190710-284fe88_GH0.tar.gz) = 14631363 +TIMESTAMP = 1563813834 +SHA256 (FreeBSDDesktop-kms-drm-5.0.g20190722-938547c_GH0.tar.gz) = 6a92c766dd87632d6a3ad30fb26f309a18478e673310f0fb04e798ccc74ff3b6 +SIZE (FreeBSDDesktop-kms-drm-5.0.g20190722-938547c_GH0.tar.gz) = 14631376 diff --git a/graphics/drm-fbsd12.0-kmod/Makefile b/graphics/drm-fbsd12.0-kmod/Makefile index 1aeeb392716..09e565e7b4b 100644 --- a/graphics/drm-fbsd12.0-kmod/Makefile +++ b/graphics/drm-fbsd12.0-kmod/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= drm-fbsd12.0-kmod -PORTVERSION= 4.16.g20190710 +PORTVERSION= 4.16.g20190722 CATEGORIES= graphics MAINTAINER= x11@FreeBSD.org @@ -28,7 +28,7 @@ USES= kmod uidfix compiler:c++11-lang USE_GITHUB= yes GH_ACCOUNT= FreeBSDDesktop GH_PROJECT= kms-drm -GH_TAGNAME= 6365030 +GH_TAGNAME= dd4831c .include diff --git a/graphics/drm-fbsd12.0-kmod/distinfo b/graphics/drm-fbsd12.0-kmod/distinfo index 9fc68deb498..3928cae272b 100644 --- a/graphics/drm-fbsd12.0-kmod/distinfo +++ b/graphics/drm-fbsd12.0-kmod/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1562758038 -SHA256 (FreeBSDDesktop-kms-drm-4.16.g20190710-6365030_GH0.tar.gz) = 8a5ba7454837a3d6ddb66e2d2273e5bdc6705b49668ade6896e643c672fc6d19 -SIZE (FreeBSDDesktop-kms-drm-4.16.g20190710-6365030_GH0.tar.gz) = 13089567 +TIMESTAMP = 1563814232 +SHA256 (FreeBSDDesktop-kms-drm-4.16.g20190722-dd4831c_GH0.tar.gz) = 26de808e01303c2db361c789b3d149bc062bd2d009911cfe732d2830ee459760 +SIZE (FreeBSDDesktop-kms-drm-4.16.g20190722-dd4831c_GH0.tar.gz) = 13090528 diff --git a/graphics/xournalpp/Makefile b/graphics/xournalpp/Makefile index e8247c4ed09..b7b0d63bfa9 100644 --- a/graphics/xournalpp/Makefile +++ b/graphics/xournalpp/Makefile @@ -1,8 +1,7 @@ # $FreeBSD$ PORTNAME= xournalpp -DISTVERSION= 1.0.12 -PORTREVISION= 2 +DISTVERSION= 1.0.13-nightly.20190722 CATEGORIES= graphics MAINTAINER= yuri@FreeBSD.org diff --git a/graphics/xournalpp/distinfo b/graphics/xournalpp/distinfo index b98014f6667..5ab4a65e82b 100644 --- a/graphics/xournalpp/distinfo +++ b/graphics/xournalpp/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1558975058 -SHA256 (xournalpp-xournalpp-1.0.12_GH0.tar.gz) = 625cff6a951de355c3cc5b5285fa4e8f69e25b2800f3386008a5c14177233492 -SIZE (xournalpp-xournalpp-1.0.12_GH0.tar.gz) = 14694286 +TIMESTAMP = 1563833837 +SHA256 (xournalpp-xournalpp-1.0.13-nightly.20190722_GH0.tar.gz) = 97f6130cba0612632d9b5b352b718410097703700c9a6cdd951d455cf16e3cc5 +SIZE (xournalpp-xournalpp-1.0.13-nightly.20190722_GH0.tar.gz) = 14819220 diff --git a/graphics/xournalpp/pkg-plist b/graphics/xournalpp/pkg-plist index 9e788d31b6f..b847b6f1ca6 100644 --- a/graphics/xournalpp/pkg-plist +++ b/graphics/xournalpp/pkg-plist @@ -2,8 +2,11 @@ bin/xournal-thumbnailer bin/xournalpp share/locale/cs/LC_MESSAGES/xournalpp.mo share/locale/de/LC_MESSAGES/xournalpp.mo +share/locale/hr_HR/LC_MESSAGES/xournalpp.mo share/locale/it/LC_MESSAGES/xournalpp.mo +share/locale/nl_NL/LC_MESSAGES/xournalpp.mo share/locale/pl/LC_MESSAGES/xournalpp.mo +share/locale/tlh_AA/LC_MESSAGES/xournalpp.mo share/locale/zh/LC_MESSAGES/xournalpp.mo share/locale/zh_HK/LC_MESSAGES/xournalpp.mo share/locale/zh_TW/LC_MESSAGES/xournalpp.mo @@ -27,9 +30,11 @@ share/locale/zh_TW/LC_MESSAGES/xournalpp.mo %%DATADIR%%/ui/icons/hicolor/scalable/actions/centerPage.svg %%DATADIR%%/ui/icons/hicolor/scalable/actions/circle-draw.svg %%DATADIR%%/ui/icons/hicolor/scalable/actions/coordinate-system-draw.svg +%%DATADIR%%/ui/icons/hicolor/scalable/actions/customize_toolbars.svg %%DATADIR%%/ui/icons/hicolor/scalable/actions/default.svg %%DATADIR%%/ui/icons/hicolor/scalable/actions/delPage.svg %%DATADIR%%/ui/icons/hicolor/scalable/actions/fill.svg +%%DATADIR%%/ui/icons/hicolor/scalable/actions/floating_toolbox.svg %%DATADIR%%/ui/icons/hicolor/scalable/actions/fullscreen.svg %%DATADIR%%/ui/icons/hicolor/scalable/actions/goto.svg %%DATADIR%%/ui/icons/hicolor/scalable/actions/grid_snapping.svg @@ -40,6 +45,7 @@ share/locale/zh_TW/LC_MESSAGES/xournalpp.mo %%DATADIR%%/ui/icons/hicolor/scalable/actions/line-style-dash.svg %%DATADIR%%/ui/icons/hicolor/scalable/actions/line-style-dot.svg %%DATADIR%%/ui/icons/hicolor/scalable/actions/line-style-plain.svg +%%DATADIR%%/ui/icons/hicolor/scalable/actions/manage_toolbars.svg %%DATADIR%%/ui/icons/hicolor/scalable/actions/nextAnnotatedPage.svg %%DATADIR%%/ui/icons/hicolor/scalable/actions/object-play.svg %%DATADIR%%/ui/icons/hicolor/scalable/actions/object-select.svg @@ -103,7 +109,9 @@ share/locale/zh_TW/LC_MESSAGES/xournalpp.mo %%DATADIR%%/ui/pluginEntry.glade %%DATADIR%%/ui/settings.glade %%DATADIR%%/ui/settingsButtonConfig.glade +%%DATADIR%%/ui/settingsDeviceClassConfig.glade %%DATADIR%%/ui/texdialog.glade %%DATADIR%%/ui/toolbar.ini %%DATADIR%%/ui/toolbarCustomizeDialog.glade %%DATADIR%%/ui/toolbarManageDialog.glade +%%DATADIR%%/ui/xournalpp.css diff --git a/java/intellij-rubymine/Makefile b/java/intellij-rubymine/Makefile index 525a615091f..f579112a2fe 100644 --- a/java/intellij-rubymine/Makefile +++ b/java/intellij-rubymine/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= rubymine -PORTVERSION= 2018.1.1 +PORTVERSION= 2019.1.2 CATEGORIES= java devel MASTER_SITES= https://download.jetbrains.com/ruby/ \ http://download.jetbrains.com/ruby/ @@ -29,7 +29,7 @@ SHEBANG_FILES= bin/printenv.py bin/restart.py NO_ARCH= yes NO_BUILD= yes -WRKDIST= ${WRKDIR}/RubyMine-2018.1.1 +WRKDIST= ${WRKDIR}/RubyMine-${PORTVERSION} .include "${.CURDIR}/../intellij/common.mk" @@ -43,36 +43,22 @@ do-install: @${RM} ${STAGEDIR}${DATADIR}/bin/fsnotifier \ ${STAGEDIR}${DATADIR}/bin/fsnotifier-arm \ ${STAGEDIR}${DATADIR}/bin/fsnotifier64 \ - ${STAGEDIR}${DATADIR}/bin/libbreakgen.so \ - ${STAGEDIR}${DATADIR}/bin/libbreakgen64.so \ - ${STAGEDIR}${DATADIR}/plugins/gradle/lib/native-platform-linux-amd64-0.10.jar \ - ${STAGEDIR}${DATADIR}/plugins/gradle/lib/native-platform-linux-i386-0.10.jar \ - ${STAGEDIR}${DATADIR}/plugins/gradle/lib/native-platform-osx-amd64-0.10.jar \ - ${STAGEDIR}${DATADIR}/plugins/gradle/lib/native-platform-osx-i386-0.10.jar \ - ${STAGEDIR}${DATADIR}/plugins/gradle/lib/native-platform-windows-amd64-0.10.jar \ - ${STAGEDIR}${DATADIR}/plugins/gradle/lib/native-platform-windows-i386-0.10.jar \ + ${STAGEDIR}${DATADIR}/bin/lib*.so \ ${STAGEDIR}${DATADIR}/bin/libyjpagent-linux.so \ ${STAGEDIR}${DATADIR}/bin/libyjpagent-linux64.so - @${RM} -r ${STAGEDIR}${DATADIR}/plugins/tfsIntegration/lib/native/hpux/ \ - ${STAGEDIR}${DATADIR}/plugins/tfsIntegration/lib/native/linux/ \ - ${STAGEDIR}${DATADIR}/plugins/tfsIntegration/lib/native/macosx/ \ - ${STAGEDIR}${DATADIR}/plugins/tfsIntegration/lib/native/solaris/ \ - ${STAGEDIR}${DATADIR}/plugins/tfsIntegration/lib/native/win32/ \ - ${STAGEDIR}${DATADIR}/plugins/tfsIntegration/lib/native/aix/ + @${RM} ${STAGEDIR}${DATADIR}/plugins/performanceTesting/lib/lib*.so # Remove the bundled native Pty4J support libraries, they are replaced # by java/intellij-pty4j - @${RM} -r ${STAGEDIR}${DATADIR}/lib/libpty - @${RM} -r ${STAGEDIR}${DATADIR}/jre/jre - @${RM} ${STAGEDIR}${DATADIR}/lib/pty4j-0.7.1.jar + @${RM} -r ${STAGEDIR}${DATADIR}/lib/pty4j-native + @${RM} ${STAGEDIR}${DATADIR}/lib/pty4j-0.7.10.jar +# Remove bundled linux OpenJDK and DroidSerif fonts + @${RM} -r ${STAGEDIR}${DATADIR}/jre/jre64 ${INSTALL_SCRIPT} ${WRKDIR}/rubymine ${STAGEDIR}${PREFIX}/bin/rubymine ${INSTALL_MAN} ${FILESDIR}/rubymine.1 ${STAGEDIR}${PREFIX}/man/man1 ${INSTALL_DATA} ${WRKDIR}/rubymine.desktop ${STAGEDIR}${PREFIX}/share/applications/ cd ${WRKDIST}/lib && ${JAVA_HOME}/bin/jar xf icons.jar ${INSTALL_DATA} ${WRKDIST}/lib/icon.png ${STAGEDIR}${DATADIR}/rubymine.png -# TODO: Remove and enable fsnotifier when devel/libinotify is fixed -# Disable filewatcher warning message on IDEA startup - ${ECHO} "idea.filewatcher.disabled=true" >> ${STAGEDIR}${DATADIR}/bin/idea.properties # Use fsnotifier replacement provided by java/intellij-fsnotifier -# ${ECHO} "idea.filewatcher.executable.path=${DATADIR}/bin/fsnotifier" >> ${STAGEDIR}${DATADIR}/bin/idea.properties + ${ECHO} "idea.filewatcher.executable.path=${DATADIR}/bin/fsnotifier" >> ${STAGEDIR}${DATADIR}/bin/idea.properties .include diff --git a/java/intellij-rubymine/distinfo b/java/intellij-rubymine/distinfo index be5074b5f05..01f6a45751c 100644 --- a/java/intellij-rubymine/distinfo +++ b/java/intellij-rubymine/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1525346946 -SHA256 (RubyMine-2018.1.1.tar.gz) = aef2606fb1dc49adb4a05dc847615528cd55fbabf36a658c2d88f21941a802da -SIZE (RubyMine-2018.1.1.tar.gz) = 280506249 +TIMESTAMP = 1563041071 +SHA256 (RubyMine-2019.1.2.tar.gz) = db60a07098d3fec4e72bcbd5e5c48638983e20817e41c3f83266733f2d8a0cfe +SIZE (RubyMine-2019.1.2.tar.gz) = 312037719 diff --git a/java/intellij-rubymine/files/pkg-message.in b/java/intellij-rubymine/files/pkg-message.in index d726c1300c3..210572bb37d 100644 --- a/java/intellij-rubymine/files/pkg-message.in +++ b/java/intellij-rubymine/files/pkg-message.in @@ -1,8 +1,6 @@ -There is experimental native (faster) file watching support which is -disabled by default. Currently there are problems with watching large -trees. To enable edit %%DATADIR%%/bin/idea.properties and append +There is native (faster) file watching support backed by kqueue which is +enabled by default. If you encounter problems problems with watching large +trees, you disable it by appending the following property into +%%DATADIR%%/bin/idea.properties: - idea.filewatcher.disabled=false - idea.filewatcher.executable.path=%%DATADIR%%/bin/fsnotifier - -Only enable fsnotifier if your projects have < 600 files. + idea.filewatcher.disabled=true diff --git a/java/intellij-rubymine/pkg-plist b/java/intellij-rubymine/pkg-plist index 10ecee51d1c..61477208a55 100644 --- a/java/intellij-rubymine/pkg-plist +++ b/java/intellij-rubymine/pkg-plist @@ -11,6 +11,7 @@ share/applications/rubymine.desktop %%DATADIR%%/bin/rinspect.sh %%DATADIR%%/bin/rubymine.png %%DATADIR%%/bin/rubymine.sh +%%DATADIR%%/bin/rubymine.svg %%DATADIR%%/bin/rubymine.vmoptions %%DATADIR%%/bin/rubymine64.vmoptions %%DATADIR%%/build.txt @@ -19,6 +20,8 @@ share/applications/rubymine.desktop %%DATADIR%%/jre64/ASSEMBLY_EXCEPTION %%DATADIR%%/jre64/LICENSE %%DATADIR%%/jre64/THIRD_PARTY_README +%%DATADIR%%/jre64/bin/clhsdb +%%DATADIR%%/jre64/bin/hsdb %%DATADIR%%/jre64/bin/java %%DATADIR%%/jre64/bin/jjs %%DATADIR%%/jre64/bin/keytool @@ -32,6 +35,7 @@ share/applications/rubymine.desktop %%DATADIR%%/jre64/bin/unpack200 %%DATADIR%%/jre64/lib/amd64/jli/libjli.so %%DATADIR%%/jre64/lib/amd64/jvm.cfg +%%DATADIR%%/jre64/lib/amd64/libattach.so %%DATADIR%%/jre64/lib/amd64/libavplugin.so %%DATADIR%%/jre64/lib/amd64/libawt.so %%DATADIR%%/jre64/lib/amd64/libawt_headless.so @@ -72,6 +76,7 @@ share/applications/rubymine.desktop %%DATADIR%%/jre64/lib/amd64/libprism_common.so %%DATADIR%%/jre64/lib/amd64/libprism_es2.so %%DATADIR%%/jre64/lib/amd64/libprism_sw.so +%%DATADIR%%/jre64/lib/amd64/libsaproc.so %%DATADIR%%/jre64/lib/amd64/libsctp.so %%DATADIR%%/jre64/lib/amd64/libsplashscreen.so %%DATADIR%%/jre64/lib/amd64/libsunec.so @@ -144,6 +149,7 @@ share/applications/rubymine.desktop %%DATADIR%%/jre64/lib/psfontj2d.properties %%DATADIR%%/jre64/lib/resources.jar %%DATADIR%%/jre64/lib/rt.jar +%%DATADIR%%/jre64/lib/sa-jdi.jar %%DATADIR%%/jre64/lib/security/blacklisted.certs %%DATADIR%%/jre64/lib/security/cacerts %%DATADIR%%/jre64/lib/security/java.policy @@ -155,65 +161,77 @@ share/applications/rubymine.desktop %%DATADIR%%/jre64/lib/sound.properties %%DATADIR%%/jre64/lib/tzdb.dat %%DATADIR%%/jre64/release -%%DATADIR%%/lib/annotations.jar -%%DATADIR%%/lib/asm-all.jar -%%DATADIR%%/lib/automaton.jar -%%DATADIR%%/lib/batik-all.jar -%%DATADIR%%/lib/bcprov-jdk15on-1.55.jar +%%DATADIR%%/lib/FastInfoset-1.2.15.jar +%%DATADIR%%/lib/annotations-17.0.0.jar +%%DATADIR%%/lib/annotations-java5.jar +%%DATADIR%%/lib/asm-all-7.0.1.jar +%%DATADIR%%/lib/automaton-1.12-1.jar +%%DATADIR%%/lib/batik-all-1.10.jar +%%DATADIR%%/lib/bcprov-jdk15on-1.60.jar %%DATADIR%%/lib/bootstrap.jar -%%DATADIR%%/lib/bytelist-1.0.2.jar +%%DATADIR%%/lib/bytelist-1.0.15.jar %%DATADIR%%/lib/cglib-nodep-3.2.4.jar -%%DATADIR%%/lib/cli-parser-1.1.jar +%%DATADIR%%/lib/cli-parser-1.1.2.jar %%DATADIR%%/lib/cloud-config-client.jar -%%DATADIR%%/lib/common-image-3.2.1.jar -%%DATADIR%%/lib/common-io-3.2.1.jar -%%DATADIR%%/lib/common-lang-3.2.1.jar -%%DATADIR%%/lib/commons-codec-1.9.jar -%%DATADIR%%/lib/commons-compress-1.10.jar +%%DATADIR%%/lib/common-image-3.4.1.jar +%%DATADIR%%/lib/common-io-3.4.1.jar +%%DATADIR%%/lib/common-lang-3.4.1.jar +%%DATADIR%%/lib/commons-codec-1.10.jar +%%DATADIR%%/lib/commons-collections-3.2.2.jar +%%DATADIR%%/lib/commons-compress-1.18.jar %%DATADIR%%/lib/commons-httpclient-3.1-patched.jar -%%DATADIR%%/lib/commons-imaging-1.0-RC.jar +%%DATADIR%%/lib/commons-imaging-1.0-RC-1.jar +%%DATADIR%%/lib/commons-lang-2.4.jar %%DATADIR%%/lib/commons-logging-1.2.jar -%%DATADIR%%/lib/commons-net-3.3.jar -%%DATADIR%%/lib/coverage-agent.jar -%%DATADIR%%/lib/coverage-instrumenter.jar -%%DATADIR%%/lib/coverage-util.jar +%%DATADIR%%/lib/commons-net-%%PYTHON_VER%%.jar +%%DATADIR%%/lib/delight-rhino-sandbox-0.0.9.jar %%DATADIR%%/lib/eddsa-0.2.0.jar +%%DATADIR%%/lib/error_prone_annotations-2.3.1.jar %%DATADIR%%/lib/extensions.jar -%%DATADIR%%/lib/fluent-hc-4.5.2.jar +%%DATADIR%%/lib/fluent-hc-4.5.6.jar +%%DATADIR%%/lib/forms-1.1-preview.jar %%DATADIR%%/lib/forms_rt.jar -%%DATADIR%%/lib/fst-2.56.jar -%%DATADIR%%/lib/groovy-all-2.4.12.jar -%%DATADIR%%/lib/gson-2.8.2.jar -%%DATADIR%%/lib/guava-21.0.jar +%%DATADIR%%/lib/fst-2.57.jar +%%DATADIR%%/lib/groovy-all-2.4.15.jar +%%DATADIR%%/lib/gson-2.8.5.jar +%%DATADIR%%/lib/guava-25.1-jre.jar %%DATADIR%%/lib/hamcrest-core-1.3.jar -%%DATADIR%%/lib/httpclient-4.5.2.jar -%%DATADIR%%/lib/httpcore-4.4.5.jar -%%DATADIR%%/lib/httpmime-4.5.2.jar +%%DATADIR%%/lib/httpclient-4.5.6.jar +%%DATADIR%%/lib/httpcore-4.4.10.jar +%%DATADIR%%/lib/httpmime-4.5.6.jar %%DATADIR%%/lib/icons.jar -%%DATADIR%%/lib/imageio-core-3.2.1.jar -%%DATADIR%%/lib/imageio-metadata-3.2.1.jar -%%DATADIR%%/lib/imageio-tiff-3.2.1.jar +%%DATADIR%%/lib/imageio-core-3.4.1.jar +%%DATADIR%%/lib/imageio-metadata-3.4.1.jar +%%DATADIR%%/lib/imageio-tiff-3.4.1.jar %%DATADIR%%/lib/imgscalr-lib-4.2.jar %%DATADIR%%/lib/ini4j-0.5.5-2.jar -%%DATADIR%%/lib/isorelax.jar -%%DATADIR%%/lib/jackson-core-2.8.8.jar -%%DATADIR%%/lib/javassist-3.21.0-GA.jar -%%DATADIR%%/lib/jaxen-1.1.3.jar -%%DATADIR%%/lib/jayatana-1.2.4.jar +%%DATADIR%%/lib/intellij-coverage-agent-1.0.495.jar +%%DATADIR%%/lib/intellij-test-discovery-agent-1.0.495.jar +%%DATADIR%%/lib/isorelax-20030108.jar +%%DATADIR%%/lib/istack-commons-runtime-3.0.7.jar +%%DATADIR%%/lib/jackson-annotations-2.9.0.jar +%%DATADIR%%/lib/jackson-core-2.9.7.jar +%%DATADIR%%/lib/jackson-databind-2.9.7.jar +%%DATADIR%%/lib/java-compatibility-1.0.1.jar +%%DATADIR%%/lib/javahelp-2.0.02.jar +%%DATADIR%%/lib/javassist-3.22.0-GA.jar +%%DATADIR%%/lib/javax.activation-1.2.0.jar +%%DATADIR%%/lib/javax.annotation-api-1.3.2.jar +%%DATADIR%%/lib/jaxb-api-2.3.1.jar +%%DATADIR%%/lib/jaxb-runtime-2.3.1.jar +%%DATADIR%%/lib/jaxen-1.1.6.jar %%DATADIR%%/lib/jbcrypt-1.0.0.jar -%%DATADIR%%/lib/jcodings-1.0.10.jar +%%DATADIR%%/lib/jcodings-1.0.30.jar %%DATADIR%%/lib/jdom.jar -%%DATADIR%%/lib/jediterm-pty-2.7.jar -%%DATADIR%%/lib/jettison-1.3.2.jar -%%DATADIR%%/lib/jgoodies-forms.jar -%%DATADIR%%/lib/jh.jar -%%DATADIR%%/lib/jing.jar +%%DATADIR%%/lib/jediterm-pty-2.14.jar +%%DATADIR%%/lib/jettison-1.4.0.jar +%%DATADIR%%/lib/jing-20030619.jar %%DATADIR%%/lib/jna-platform.jar %%DATADIR%%/lib/jna.jar -%%DATADIR%%/lib/joda-time-2.3.jar -%%DATADIR%%/lib/joni-2.0.0.jar +%%DATADIR%%/lib/joda-time-2.10.jar +%%DATADIR%%/lib/joni-2.1.18.jar %%DATADIR%%/lib/jps-model.jar -%%DATADIR%%/lib/jsch-0.1.54.jar +%%DATADIR%%/lib/jsch-0.1.55.jar %%DATADIR%%/lib/jsch.agentproxy.connector-factory.jar %%DATADIR%%/lib/jsch.agentproxy.core.jar %%DATADIR%%/lib/jsch.agentproxy.jsch.jar @@ -221,58 +239,73 @@ share/applications/rubymine.desktop %%DATADIR%%/lib/jsch.agentproxy.sshagent.jar %%DATADIR%%/lib/jsch.agentproxy.usocket-jna.jar %%DATADIR%%/lib/jsch.agentproxy.usocket-nc.jar -%%DATADIR%%/lib/jsr173_1.0_api.jar %%DATADIR%%/lib/junit-4.12.jar -%%DATADIR%%/lib/jzlib-1.1.1.jar -%%DATADIR%%/lib/kotlin-reflect.jar -%%DATADIR%%/lib/kotlin-runtime.jar -%%DATADIR%%/lib/kotlinx-coroutines-core-0.20.jar -%%DATADIR%%/lib/kotlinx-coroutines-jdk8-0.20.jar +%%DATADIR%%/lib/jzlib-1.1.3.jar +%%DATADIR%%/lib/kotlin-reflect-1.3.11.jar +%%DATADIR%%/lib/kotlin-stdlib-1.3.11.jar +%%DATADIR%%/lib/kotlin-stdlib-common-1.3.11.jar +%%DATADIR%%/lib/kotlin-stdlib-jdk7-1.3.11.jar +%%DATADIR%%/lib/kotlin-stdlib-jdk8-1.3.11.jar +%%DATADIR%%/lib/kotlinx-coroutines-core-1.0.1.jar +%%DATADIR%%/lib/kotlinx-coroutines-core-common-1.0.1.jar +%%DATADIR%%/lib/kotlinx-coroutines-jdk8-1.0.1.jar %%DATADIR%%/lib/kxml2-2.3.0.jar %%DATADIR%%/lib/log4j.jar -%%DATADIR%%/lib/lz4-java-1.3.jar -%%DATADIR%%/lib/markdown4j-2.2.jar +%%DATADIR%%/lib/lz4-1.3.0.jar +%%DATADIR%%/lib/markdown4j-2.2-cj-1.1.jar %%DATADIR%%/lib/markdownj-core-0.4.2-SNAPSHOT.jar %%DATADIR%%/lib/microba.jar -%%DATADIR%%/lib/miglayout-core-5.0.jar -%%DATADIR%%/lib/miglayout-swing-5.0.jar +%%DATADIR%%/lib/miglayout-core-5.2.jar +%%DATADIR%%/lib/miglayout-swing-5.2.jar %%DATADIR%%/lib/nanoxml-2.2.3.jar -%%DATADIR%%/lib/netty-all-4.1.13.Final.jar -%%DATADIR%%/lib/objenesis-2.5.1.jar +%%DATADIR%%/lib/netty-buffer-4.1.32.Final.jar +%%DATADIR%%/lib/netty-codec-4.1.32.Final.jar +%%DATADIR%%/lib/netty-codec-http-4.1.32.Final.jar +%%DATADIR%%/lib/netty-common-4.1.32.Final.jar +%%DATADIR%%/lib/netty-handler-4.1.32.Final.jar +%%DATADIR%%/lib/netty-resolver-4.1.32.Final.jar +%%DATADIR%%/lib/netty-transport-4.1.32.Final.jar +%%DATADIR%%/lib/objenesis-2.6.jar %%DATADIR%%/lib/openapi.jar +%%DATADIR%%/lib/org.eclipse.lsp4j-0.3.1.jar +%%DATADIR%%/lib/org.eclipse.lsp4j.jsonrpc-0.3.0.jar %%DATADIR%%/lib/oro-2.0.8.jar -%%DATADIR%%/lib/picocontainer.jar -%%DATADIR%%/lib/proxy-vole-1.0.3.jar -%%DATADIR%%/lib/purejavacomm.jar -%%DATADIR%%/lib/resolver.jar +%%DATADIR%%/lib/picocontainer-1.2.jar +%%DATADIR%%/lib/platform-api.jar +%%DATADIR%%/lib/platform-impl.jar +%%DATADIR%%/lib/proxy-vole-1.0.6.jar +%%DATADIR%%/lib/pty4j-0.9.3.jar +%%DATADIR%%/lib/purejavacomm-0.0.11.1.jar %%DATADIR%%/lib/resources.jar %%DATADIR%%/lib/resources_en.jar -%%DATADIR%%/lib/rhino-js-1_7R4.jar +%%DATADIR%%/lib/rhino-1.7.10.jar %%DATADIR%%/lib/rngom-20051226-patched.jar %%DATADIR%%/lib/rubymine.jar %%DATADIR%%/lib/serviceMessages.jar -%%DATADIR%%/lib/slf4j-api-1.7.10.jar -%%DATADIR%%/lib/slf4j-log4j12-1.7.10.jar -%%DATADIR%%/lib/snakeyaml-1.17.jar -%%DATADIR%%/lib/snappy-in-java-0.5.1.jar -%%DATADIR%%/lib/streamex-0.6.5.jar +%%DATADIR%%/lib/slf4j-api-1.7.25.jar +%%DATADIR%%/lib/slf4j-log4j12-1.7.25.jar +%%DATADIR%%/lib/snakeyaml-1.23.jar +%%DATADIR%%/lib/stax-api-1.0.1.jar +%%DATADIR%%/lib/stax-ex-1.8.jar +%%DATADIR%%/lib/streamex-0.6.7.jar %%DATADIR%%/lib/swingx-core-1.6.2-2.jar -%%DATADIR%%/lib/test-discovery-agent.jar -%%DATADIR%%/lib/test-discovery-instrumenter.jar %%DATADIR%%/lib/trang-core.jar %%DATADIR%%/lib/trilead-ssh2-build-217-jenkins-11.jar %%DATADIR%%/lib/trove4j.jar +%%DATADIR%%/lib/txw2-2.3.1.jar %%DATADIR%%/lib/util.jar -%%DATADIR%%/lib/velocity.jar -%%DATADIR%%/lib/winp-1.25.jar -%%DATADIR%%/lib/xbean.jar -%%DATADIR%%/lib/xercesImpl.jar +%%DATADIR%%/lib/velocity-1.7.jar +%%DATADIR%%/lib/winp-1.28.jar +%%DATADIR%%/lib/xercesImpl-2.12.0.jar %%DATADIR%%/lib/xml-apis-ext-1.3.04.jar -%%DATADIR%%/lib/xmlgraphics-commons-1.5.jar +%%DATADIR%%/lib/xml-resolver-1.2.jar +%%DATADIR%%/lib/xmlbeans-2.6.0.jar +%%DATADIR%%/lib/xmlgraphics-commons-2.3.jar +%%DATADIR%%/lib/xmlpull-1.1.3.1.jar %%DATADIR%%/lib/xmlrpc-2.0.1.jar -%%DATADIR%%/lib/xpp3-1.1.4-min.jar -%%DATADIR%%/lib/xstream-1.4.8.jar -%%DATADIR%%/lib/xz-1.5.jar +%%DATADIR%%/lib/xpp3_min-1.1.4c.jar +%%DATADIR%%/lib/xstream-1.4.10.jar +%%DATADIR%%/lib/xz-1.8.jar %%DATADIR%%/lib/yjp-controller-api-redist.jar %%DATADIR%%/license/XStream_license.txt %%DATADIR%%/license/ant_license.txt @@ -283,11 +316,10 @@ share/applications/rubymine.desktop %%DATADIR%%/license/growl.license %%DATADIR%%/license/gson_license.txt %%DATADIR%%/license/imgscalr_license.txt -%%DATADIR%%/license/javahelp_license.html +%%DATADIR%%/license/javahelp_license.txt %%DATADIR%%/license/javolution_license.txt %%DATADIR%%/license/jaxb_license.txt %%DATADIR%%/license/jaxen_license.txt -%%DATADIR%%/license/jayatana_license.txt %%DATADIR%%/license/jdom_license.txt %%DATADIR%%/license/jgoodies_forms_license.txt %%DATADIR%%/license/junit_license.txt @@ -300,17 +332,19 @@ share/applications/rubymine.desktop %%DATADIR%%/license/picoContainer_license.txt %%DATADIR%%/license/saxon-conditions.html %%DATADIR%%/license/swingx_license.txt +%%DATADIR%%/license/third-party-libraries.html %%DATADIR%%/license/trove4j_license.txt %%DATADIR%%/license/winp_license.txt %%DATADIR%%/license/xerces_license.txt %%DATADIR%%/license/xmlrpc_license.txt %%DATADIR%%/license/yourkit-license-redist.txt +%%DATADIR%%/oldScheme/Darcula_2018.2.icls %%DATADIR%%/plugins/CSS/lib/css-openapi.jar %%DATADIR%%/plugins/CSS/lib/css.jar %%DATADIR%%/plugins/CSS/lib/resources_en.jar %%DATADIR%%/plugins/DatabaseTools/lib/database-impl.jar %%DATADIR%%/plugins/DatabaseTools/lib/database-openapi.jar -%%DATADIR%%/plugins/DatabaseTools/lib/dekaf-single-2.0.0.347.jar +%%DATADIR%%/plugins/DatabaseTools/lib/dekaf-single-2.0.0.390.jar %%DATADIR%%/plugins/DatabaseTools/lib/jdbc-console.jar %%DATADIR%%/plugins/DatabaseTools/lib/resources_en.jar %%DATADIR%%/plugins/DatabaseTools/lib/unidecode-0.0.7.jar @@ -323,64 +357,71 @@ share/applications/rubymine.desktop %%DATADIR%%/plugins/Docker/lib/Docker.jar %%DATADIR%%/plugins/Docker/lib/commons-cli-1.2.jar %%DATADIR%%/plugins/Docker/lib/commons-io-2.3.jar -%%DATADIR%%/plugins/Docker/lib/jackson-annotations-2.6.4.jar -%%DATADIR%%/plugins/Docker/lib/jackson-core-2.6.4.jar -%%DATADIR%%/plugins/Docker/lib/jackson-databind-2.6.4.jar %%DATADIR%%/plugins/Docker/lib/jackson-dataformat-yaml-2.7.3.jar -%%DATADIR%%/plugins/Docker/lib/rt/aopalliance-repackaged-2.4.0-b34.jar -%%DATADIR%%/plugins/Docker/lib/rt/bcpkix-jdk15on-1.54.jar -%%DATADIR%%/plugins/Docker/lib/rt/bcprov-jdk15on-1.54.jar +%%DATADIR%%/plugins/Docker/lib/rt/FastInfoset-1.2.15.jar +%%DATADIR%%/plugins/Docker/lib/rt/annotations-3.0.1u2.jar +%%DATADIR%%/plugins/Docker/lib/rt/aopalliance-repackaged-2.5.0-b42.jar +%%DATADIR%%/plugins/Docker/lib/rt/bcpkix-jdk15on-1.60.jar +%%DATADIR%%/plugins/Docker/lib/rt/bcprov-jdk15on-1.60.jar %%DATADIR%%/plugins/Docker/lib/rt/commons-cli-1.2.jar -%%DATADIR%%/plugins/Docker/lib/rt/commons-codec-1.10.jar -%%DATADIR%%/plugins/Docker/lib/rt/commons-compress-1.12.jar -%%DATADIR%%/plugins/Docker/lib/rt/commons-io-2.5.jar +%%DATADIR%%/plugins/Docker/lib/rt/commons-codec-1.11.jar +%%DATADIR%%/plugins/Docker/lib/rt/commons-compress-1.17.jar +%%DATADIR%%/plugins/Docker/lib/rt/commons-io-2.6.jar %%DATADIR%%/plugins/Docker/lib/rt/commons-lang-2.6.jar -%%DATADIR%%/plugins/Docker/lib/rt/docker-java-3.0.10.jar +%%DATADIR%%/plugins/Docker/lib/rt/docker-java-3.1.0-rc-4.jar %%DATADIR%%/plugins/Docker/lib/rt/guava-19.0.jar -%%DATADIR%%/plugins/Docker/lib/rt/hk2-api-2.4.0-b34.jar -%%DATADIR%%/plugins/Docker/lib/rt/hk2-locator-2.4.0-b34.jar -%%DATADIR%%/plugins/Docker/lib/rt/hk2-utils-2.4.0-b34.jar -%%DATADIR%%/plugins/Docker/lib/rt/httpclient-4.5.jar -%%DATADIR%%/plugins/Docker/lib/rt/httpcore-4.4.5.jar -%%DATADIR%%/plugins/Docker/lib/rt/jackson-annotations-2.6.0.jar -%%DATADIR%%/plugins/Docker/lib/rt/jackson-core-2.6.4.jar -%%DATADIR%%/plugins/Docker/lib/rt/jackson-databind-2.6.4.jar -%%DATADIR%%/plugins/Docker/lib/rt/jackson-jaxrs-base-2.6.4.jar -%%DATADIR%%/plugins/Docker/lib/rt/jackson-jaxrs-json-provider-2.6.4.jar -%%DATADIR%%/plugins/Docker/lib/rt/jackson-module-jaxb-annotations-2.6.4.jar -%%DATADIR%%/plugins/Docker/lib/rt/javassist-3.18.1-GA.jar +%%DATADIR%%/plugins/Docker/lib/rt/hk2-api-2.5.0-b42.jar +%%DATADIR%%/plugins/Docker/lib/rt/hk2-locator-2.5.0-b42.jar +%%DATADIR%%/plugins/Docker/lib/rt/hk2-utils-2.5.0-b42.jar +%%DATADIR%%/plugins/Docker/lib/rt/httpclient-4.5.6.jar +%%DATADIR%%/plugins/Docker/lib/rt/httpcore-4.4.10.jar +%%DATADIR%%/plugins/Docker/lib/rt/istack-commons-runtime-3.0.7.jar +%%DATADIR%%/plugins/Docker/lib/rt/jackson-annotations-2.9.0.jar +%%DATADIR%%/plugins/Docker/lib/rt/jackson-core-2.9.5.jar +%%DATADIR%%/plugins/Docker/lib/rt/jackson-databind-2.9.5.jar +%%DATADIR%%/plugins/Docker/lib/rt/jackson-jaxrs-base-2.9.5.jar +%%DATADIR%%/plugins/Docker/lib/rt/jackson-jaxrs-json-provider-2.9.5.jar +%%DATADIR%%/plugins/Docker/lib/rt/jackson-module-jaxb-annotations-2.9.5.jar +%%DATADIR%%/plugins/Docker/lib/rt/javassist-3.22.0-CR2.jar %%DATADIR%%/plugins/Docker/lib/rt/javax.annotation-api-1.2.jar -%%DATADIR%%/plugins/Docker/lib/rt/javax.inject-2.4.0-b34.jar +%%DATADIR%%/plugins/Docker/lib/rt/javax.inject-1.jar +%%DATADIR%%/plugins/Docker/lib/rt/javax.inject-2.5.0-b42.jar %%DATADIR%%/plugins/Docker/lib/rt/javax.websocket-client-api-1.1.jar -%%DATADIR%%/plugins/Docker/lib/rt/javax.ws.rs-api-2.0.1.jar +%%DATADIR%%/plugins/Docker/lib/rt/javax.ws.rs-api-2.1.jar +%%DATADIR%%/plugins/Docker/lib/rt/jaxb-api-2.3.1.jar +%%DATADIR%%/plugins/Docker/lib/rt/jaxb-runtime-2.3.1.jar +%%DATADIR%%/plugins/Docker/lib/rt/jcip-annotations-1.0.jar %%DATADIR%%/plugins/Docker/lib/rt/jcl-over-slf4j-1.7.21.jar -%%DATADIR%%/plugins/Docker/lib/rt/jersey-apache-connector-2.23.1.jar -%%DATADIR%%/plugins/Docker/lib/rt/jersey-client-2.23.1.jar -%%DATADIR%%/plugins/Docker/lib/rt/jersey-common-2.23.1.jar -%%DATADIR%%/plugins/Docker/lib/rt/jersey-guava-2.23.1.jar +%%DATADIR%%/plugins/Docker/lib/rt/jersey-apache-connector-2.27.jar +%%DATADIR%%/plugins/Docker/lib/rt/jersey-client-2.27.jar +%%DATADIR%%/plugins/Docker/lib/rt/jersey-common-2.27.jar +%%DATADIR%%/plugins/Docker/lib/rt/jersey-hk2-2.27.jar +%%DATADIR%%/plugins/Docker/lib/rt/jsr305-3.0.1.jar %%DATADIR%%/plugins/Docker/lib/rt/junixsocket-common-2.0.4.jar %%DATADIR%%/plugins/Docker/lib/rt/junixsocket-native-common-2.0.4.jar %%DATADIR%%/plugins/Docker/lib/rt/log4j-1.2.17.jar %%DATADIR%%/plugins/Docker/lib/rt/native-lib-loader-2.0.2.jar -%%DATADIR%%/plugins/Docker/lib/rt/netty-all-4.1.12.Final.jar -%%DATADIR%%/plugins/Docker/lib/rt/netty-transport-native-epoll-4.1.12.Final-linux-x86_64.jar +%%DATADIR%%/plugins/Docker/lib/rt/netty-all-4.1.27.Final.jar +%%DATADIR%%/plugins/Docker/lib/rt/netty-transport-native-epoll-4.1.27.Final-linux-x86_64.jar %%DATADIR%%/plugins/Docker/lib/rt/osgi-resource-locator-1.0.1.jar -%%DATADIR%%/plugins/Docker/lib/rt/slf4j-api-1.7.21.jar -%%DATADIR%%/plugins/Docker/lib/rt/slf4j-log4j12-1.7.21.jar +%%DATADIR%%/plugins/Docker/lib/rt/slf4j-api-1.7.25.jar +%%DATADIR%%/plugins/Docker/lib/rt/slf4j-log4j12-1.7.25.jar %%DATADIR%%/plugins/Docker/lib/rt/snakeyaml-1.15.jar +%%DATADIR%%/plugins/Docker/lib/rt/stax-ex-1.8.jar %%DATADIR%%/plugins/Docker/lib/rt/tomcat-juli-8.0.22.jar %%DATADIR%%/plugins/Docker/lib/rt/tomcat-servlet-api-8.0.22.jar %%DATADIR%%/plugins/Docker/lib/rt/tomcat-util-8.0.22.jar %%DATADIR%%/plugins/Docker/lib/rt/tomcat-websocket-8.0.22.jar %%DATADIR%%/plugins/Docker/lib/rt/tomcat-websocket-api-8.0.22.jar +%%DATADIR%%/plugins/Docker/lib/rt/txw2-2.3.1.jar %%DATADIR%%/plugins/Docker/lib/specifics/dockerSpecifics.jar %%DATADIR%%/plugins/IntelliLang/lib/IntelliLang.jar %%DATADIR%%/plugins/JSIntentionPowerPack/lib/JSIntentionPowerPack.jar %%DATADIR%%/plugins/JSIntentionPowerPack/lib/resources_en.jar -%%DATADIR%%/plugins/JavaScriptDebugger/extensions/jb.xpi %%DATADIR%%/plugins/JavaScriptDebugger/lib/ChromeConnector.jar %%DATADIR%%/plugins/JavaScriptDebugger/lib/FirefoxConnector.jar %%DATADIR%%/plugins/JavaScriptDebugger/lib/JavaScriptDebugger.jar +%%DATADIR%%/plugins/JavaScriptDebugger/lib/debugConnector.js %%DATADIR%%/plugins/JavaScriptDebugger/lib/resources_en.jar %%DATADIR%%/plugins/JavaScriptLanguage/grunt_js/lib/grunt-intellij-util.js %%DATADIR%%/plugins/JavaScriptLanguage/grunt_js/tasks/grunt-tasks-fetcher.js @@ -392,6 +433,7 @@ share/applications/rubymine.desktop %%DATADIR%%/plugins/JavaScriptLanguage/helpers/jest-intellij/lib/jest-intellij-stdin-fix.js %%DATADIR%%/plugins/JavaScriptLanguage/helpers/jest-intellij/lib/jest-intellij-test-results-processor.js %%DATADIR%%/plugins/JavaScriptLanguage/helpers/jest-intellij/lib/jest-intellij-util.js +%%DATADIR%%/plugins/JavaScriptLanguage/helpers/node-core-modules/node-core-modules-loader.js %%DATADIR%%/plugins/JavaScriptLanguage/helpers/node_modules/semver/LICENSE %%DATADIR%%/plugins/JavaScriptLanguage/helpers/node_modules/semver/README.md %%DATADIR%%/plugins/JavaScriptLanguage/helpers/node_modules/semver/bin/semver @@ -427,6 +469,7 @@ share/applications/rubymine.desktop %%DATADIR%%/plugins/JavaScriptLanguage/index/sdk-stubs.version %%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/browser.d.ts %%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/cancellationToken.js +%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/flow.utilities.d.ts %%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.d.ts %%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.dom.d.ts %%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.dom.iterable.d.ts @@ -450,25 +493,50 @@ share/applications/rubymine.desktop %%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2017.sharedmemory.d.ts %%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2017.string.d.ts %%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2017.typedarrays.d.ts +%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2018.asynciterable.d.ts %%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2018.d.ts %%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2018.full.d.ts +%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2018.intl.d.ts %%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2018.promise.d.ts %%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2018.regexp.d.ts +%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2019.array.d.ts +%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2019.d.ts +%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2019.full.d.ts +%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2019.string.d.ts +%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2019.symbol.d.ts %%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es5.d.ts %%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es6.d.ts %%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es7.d.ts %%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.esnext.array.d.ts %%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.esnext.asynciterable.d.ts +%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.esnext.bigint.d.ts %%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.esnext.d.ts %%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.esnext.full.d.ts +%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.esnext.intl.d.ts %%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.esnext.promise.d.ts +%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.esnext.symbol.d.ts %%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.scripthost.d.ts %%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.webworker.d.ts +%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.webworker.importscripts.d.ts %%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/react.d.ts %%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/tsserverlibrary.js +%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/typesMap.json +%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/typingsInstaller.js %%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/watchGuard.js %%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/websql.d.ts %%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/xpath.d.ts +%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/flow/bom.js +%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/flow/core.js +%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/flow/cssom.js +%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/flow/dom.js +%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/flow/indexeddb.js +%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/flow/intl.js +%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/flow/node.js +%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/flow/react-dom.js +%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/flow/react.js +%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/flow/serviceworkers.js +%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/flow/streams.js +%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/flow/webassembly.js %%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/js-language-service.js %%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/typescript/ide-watcher.js %%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/typescript/logger-impl.js @@ -488,37 +556,28 @@ share/applications/rubymine.desktop %%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/typescript/util.js %%DATADIR%%/plugins/JavaScriptLanguage/languageService/eslint/bin/eslint-plugin-provider.js %%DATADIR%%/plugins/JavaScriptLanguage/languageService/eslint/bin/eslint-plugin.js -%%DATADIR%%/plugins/JavaScriptLanguage/languageService/eslint/bin/test/mock.js -%%DATADIR%%/plugins/JavaScriptLanguage/languageService/eslint/bin/test/synchTest.js +%%DATADIR%%/plugins/JavaScriptLanguage/languageService/eslint/package-lock.json +%%DATADIR%%/plugins/JavaScriptLanguage/languageService/eslint/package.json %%DATADIR%%/plugins/JavaScriptLanguage/languageService/eslint/src/eslint-plugin-provider.ts %%DATADIR%%/plugins/JavaScriptLanguage/languageService/eslint/src/eslint-plugin.ts -%%DATADIR%%/plugins/JavaScriptLanguage/languageService/eslint/src/test/mock.ts -%%DATADIR%%/plugins/JavaScriptLanguage/languageService/eslint/src/test/synchTest.ts -%%DATADIR%%/plugins/JavaScriptLanguage/languageService/eslint/src/testData/.eslintrc.bad.json -%%DATADIR%%/plugins/JavaScriptLanguage/languageService/eslint/src/testData/.eslintrc.json -%%DATADIR%%/plugins/JavaScriptLanguage/languageService/eslint/src/testData/longLine.js -%%DATADIR%%/plugins/JavaScriptLanguage/languageService/eslint/src/testData/result.json -%%DATADIR%%/plugins/JavaScriptLanguage/languageService/eslint/src/typings/js-language-api-extends.d.ts %%DATADIR%%/plugins/JavaScriptLanguage/languageService/eslint/src/typings/js-lanuage-api.d.ts +%%DATADIR%%/plugins/JavaScriptLanguage/languageService/eslint/tsconfig.json %%DATADIR%%/plugins/JavaScriptLanguage/lib/JavaScriptLanguage.jar %%DATADIR%%/plugins/JavaScriptLanguage/lib/javascript-openapi.jar %%DATADIR%%/plugins/JavaScriptLanguage/lib/js-test-common.jar %%DATADIR%%/plugins/JavaScriptLanguage/lib/resources_en.jar +%%DATADIR%%/plugins/JavaScriptLanguage/lib/semver4j-2.2.0.jar %%DATADIR%%/plugins/PerforceIntegration/lib/PerforceIntegration.jar %%DATADIR%%/plugins/PerforceIntegration/lib/perforce_util.jar -%%DATADIR%%/plugins/WSL/lib/WSL.jar +%%DATADIR%%/plugins/PerforceIntegration/lib/resources_en.jar %%DATADIR%%/plugins/cloud-config/lib/cloud-config.jar %%DATADIR%%/plugins/cloud-config/lib/resources_en.jar %%DATADIR%%/plugins/coffeescript-core/lib/coffeescript-core.jar %%DATADIR%%/plugins/coffeescript-core/lib/resources_en.jar -%%DATADIR%%/plugins/cvsIntegration/lib/cvsIntegration.jar -%%DATADIR%%/plugins/cvsIntegration/lib/cvs_util.jar -%%DATADIR%%/plugins/cvsIntegration/lib/javacvs-src.jar -%%DATADIR%%/plugins/cvsIntegration/lib/resources_en.jar -%%DATADIR%%/plugins/cvsIntegration/lib/smartcvs-src.jar -%%DATADIR%%/plugins/cvsIntegration/lib/trilead-ssh2-build213.jar +%%DATADIR%%/plugins/configurationScript/lib/configurationScript.jar %%DATADIR%%/plugins/editorconfig/lib/editorconfig-core-java.jar %%DATADIR%%/plugins/editorconfig/lib/editorconfig.jar +%%DATADIR%%/plugins/editorconfig/lib/resources_en.jar %%DATADIR%%/plugins/gherkin/lib/gherkin.jar %%DATADIR%%/plugins/gherkin/lib/resources_en.jar %%DATADIR%%/plugins/git4idea/lib/git4idea-rt.jar @@ -526,6 +585,7 @@ share/applications/rubymine.desktop %%DATADIR%%/plugins/git4idea/lib/remote-servers-git.jar %%DATADIR%%/plugins/git4idea/lib/resources_en.jar %%DATADIR%%/plugins/github/lib/github.jar +%%DATADIR%%/plugins/github/lib/resources_en.jar %%DATADIR%%/plugins/haml/lib/haml.jar %%DATADIR%%/plugins/haml/lib/resources_en.jar %%DATADIR%%/plugins/hg4idea/lib/hg4idea.jar @@ -534,19 +594,21 @@ share/applications/rubymine.desktop %%DATADIR%%/plugins/htmltools/lib/resources_en.jar %%DATADIR%%/plugins/less/lib/less.jar %%DATADIR%%/plugins/less/lib/resources_en.jar -%%DATADIR%%/plugins/markdown/lib/intellij-markdown.jar +%%DATADIR%%/plugins/markdown/lib/markdown-0.1.31.jar %%DATADIR%%/plugins/markdown/lib/markdown.jar %%DATADIR%%/plugins/markdown/lib/owasp-java-html-sanitizer.jar -%%DATADIR%%/plugins/markdown/lib/plantuml.jar %%DATADIR%%/plugins/markdown/lib/resources_en.jar +%%DATADIR%%/plugins/performanceTesting/lib/async-profiler-1.5-ea.jar %%DATADIR%%/plugins/performanceTesting/lib/performanceTesting.jar %%DATADIR%%/plugins/performanceTesting/lib/resources_en.jar +%%DATADIR%%/plugins/performanceTesting/lib/yjp-controller-api-redist.jar %%DATADIR%%/plugins/puppet/lib/puppet.jar %%DATADIR%%/plugins/puppet/lib/resources_en.jar %%DATADIR%%/plugins/puppet/lib/stubs/builtin.pp %%DATADIR%%/plugins/puppet/lib/stubs/builtin_variables.pp %%DATADIR%%/plugins/puppet/lib/stubs/stub_functions.rb %%DATADIR%%/plugins/remote-run/lib/remote-run.jar +%%DATADIR%%/plugins/remote-run/lib/resources_en.jar %%DATADIR%%/plugins/restClient/lib/resources_en.jar %%DATADIR%%/plugins/restClient/lib/restClient.jar %%DATADIR%%/plugins/ruby-css/lib/ruby-css.jar @@ -558,19 +620,17 @@ share/applications/rubymine.desktop %%DATADIR%%/plugins/ruby-haml/lib/ruby-haml.jar %%DATADIR%%/plugins/ruby-javascript-debugger/lib/resources_en.jar %%DATADIR%%/plugins/ruby-javascript-debugger/lib/ruby-javascript-debugger.jar +%%DATADIR%%/plugins/ruby-performanceTesting/lib/ruby-performanceTesting.jar +%%DATADIR%%/plugins/ruby-puppet/lib/resources_en.jar %%DATADIR%%/plugins/ruby-puppet/lib/ruby-puppet.jar %%DATADIR%%/plugins/ruby-remote-interpreter/lib/ruby-remote-interpreter.jar %%DATADIR%%/plugins/ruby-slim/lib/ruby-slim.jar %%DATADIR%%/plugins/ruby-uml/lib/ruby-uml.jar -%%DATADIR%%/plugins/ruby-wsl/lib/ruby-wsl.jar %%DATADIR%%/plugins/ruby-yaml/lib/ruby-yaml.jar %%DATADIR%%/plugins/rubymine-coverage/lib/rubymine-coverage.jar %%DATADIR%%/plugins/sass/lib/jrubyparser-0.5.4.jar %%DATADIR%%/plugins/sass/lib/resources_en.jar %%DATADIR%%/plugins/sass/lib/sass.jar -%%DATADIR%%/plugins/settings-repository/lib/jackson-annotations-2.8.1.jar -%%DATADIR%%/plugins/settings-repository/lib/jackson-core-2.8.1.jar -%%DATADIR%%/plugins/settings-repository/lib/jackson-databind-2.8.1.jar %%DATADIR%%/plugins/settings-repository/lib/jgit.jar %%DATADIR%%/plugins/settings-repository/lib/resources_en.jar %%DATADIR%%/plugins/settings-repository/lib/settings-repository.jar @@ -590,6 +650,7 @@ share/applications/rubymine.desktop %%DATADIR%%/plugins/tasks/lib/json-path-0.8.0.jar %%DATADIR%%/plugins/tasks/lib/json-smart-1.1.1.jar %%DATADIR%%/plugins/tasks/lib/tasks-api.jar +%%DATADIR%%/plugins/tasks/lib/tasks-compatibility.jar %%DATADIR%%/plugins/tasks/lib/tasks-core.jar %%DATADIR%%/plugins/tasks/lib/wsdl4j-1.4.jar %%DATADIR%%/plugins/terminal/.zshrc @@ -597,8 +658,9 @@ share/applications/rubymine.desktop %%DATADIR%%/plugins/terminal/jediterm-bash.in %%DATADIR%%/plugins/terminal/lib/resources_en.jar %%DATADIR%%/plugins/terminal/lib/terminal.jar -%%DATADIR%%/plugins/textmate/lib/jcodings.jar -%%DATADIR%%/plugins/textmate/lib/joni.jar +%%DATADIR%%/plugins/textmate/lib/jcodings-1.0.30.jar +%%DATADIR%%/plugins/textmate/lib/joni-2.1.18.jar +%%DATADIR%%/plugins/textmate/lib/resources_en.jar %%DATADIR%%/plugins/textmate/lib/textmate.jar %%DATADIR%%/plugins/textmate/lib/themes/All Hallow's Eve.tmTheme %%DATADIR%%/plugins/textmate/lib/themes/Blackboard.tmTheme @@ -611,26 +673,25 @@ share/applications/rubymine.desktop %%DATADIR%%/plugins/textmate/lib/themes/Twilight.tmTheme %%DATADIR%%/plugins/textmate/lib/themes/VibrantInk.tmTheme %%DATADIR%%/plugins/textmate/lib/themes/default.tmTheme +%%DATADIR%%/plugins/tslint/js/convert-tslint-config.js +%%DATADIR%%/plugins/tslint/js/languageService/tslint-plugin-provider.js +%%DATADIR%%/plugins/tslint/js/languageService/tslint-plugin.js +%%DATADIR%%/plugins/tslint/js/utils.js %%DATADIR%%/plugins/tslint/lib/resources_en.jar %%DATADIR%%/plugins/tslint/lib/tslint.jar -%%DATADIR%%/plugins/tslint/tslintLanguageService/tslint-plugin-provider.js -%%DATADIR%%/plugins/tslint/tslintLanguageService/tslint-plugin.js %%DATADIR%%/plugins/uml/lib/diagram-api.jar %%DATADIR%%/plugins/uml/lib/uml-support.jar -%%DATADIR%%/plugins/vagrant/lib/jackson-annotations-2.8.1.jar -%%DATADIR%%/plugins/vagrant/lib/jackson-core-2.8.1.jar -%%DATADIR%%/plugins/vagrant/lib/jackson-databind-2.8.1.jar %%DATADIR%%/plugins/vagrant/lib/jrubyparser-0.5.3.jar %%DATADIR%%/plugins/vagrant/lib/resources_en.jar %%DATADIR%%/plugins/vagrant/lib/vagrant.jar -%%DATADIR%%/plugins/webDeployment/lib/commons-lang-2.6.jar -%%DATADIR%%/plugins/webDeployment/lib/commons-vfs2-2.1-SNAPSHOT.jar +%%DATADIR%%/plugins/webDeployment/lib/commons-vfs2-2.2.1.5.jar %%DATADIR%%/plugins/webDeployment/lib/resources_en.jar %%DATADIR%%/plugins/webDeployment/lib/webDeployment.jar %%DATADIR%%/plugins/yaml/lib/resources_en.jar %%DATADIR%%/plugins/yaml/lib/yaml.jar +%%DATADIR%%/product-info.json %%DATADIR%%/rb/cov_starter.rb -%%DATADIR%%/rb/gems/debase-0.2.2.gem +%%DATADIR%%/rb/gems/debase-0.2.3.beta5.gem %%DATADIR%%/rb/gems/debug_preloader.rb %%DATADIR%%/rb/gems/rcov-0.9.9.jb-java.gem %%DATADIR%%/rb/gems/ruby-debug-base-0.10.5.jb2-x86-mswin32.gem @@ -638,16 +699,16 @@ share/applications/rubymine.desktop %%DATADIR%%/rb/gems/ruby-debug-base-0.10.6-java.gem %%DATADIR%%/rb/gems/ruby-debug-base19x-0.11.32.gem %%DATADIR%%/rb/gems/ruby-debug-ide-0.6.1.gem -%%DATADIR%%/rb/gems/ruby-debug-ide-0.7.0.beta4.gem +%%DATADIR%%/rb/gems/ruby-debug-ide-0.7.0.beta7.gem %%DATADIR%%/rb/gems/rubymine_debug_anything.rb %%DATADIR%%/rb/gems/rubymine_jruby_debug.rb %%DATADIR%%/rb/gems/rubymine_passenger_debug.rb +%%DATADIR%%/rb/gems/rubymine_profiler_pid_logger.rb %%DATADIR%%/rb/gems/rubymine_torquebox_debug.rb %%DATADIR%%/rb/icon-robots.txt %%DATADIR%%/rb/report/rcov_generator.rb %%DATADIR%%/rb/report/rcov_options.rb %%DATADIR%%/rb/report/simplecov_generator.rb -%%DATADIR%%/rb/scripts/factory_girl_code_insight.yaml %%DATADIR%%/rb/scripts/motion_code_insight.yaml %%DATADIR%%/rb/scripts/rails_code_insight.yaml %%DATADIR%%/rb/scripts/rspec_code_insight.yaml @@ -964,6 +1025,7 @@ share/applications/rubymine.desktop %%DATADIR%%/rb/stubsgen/gems/gems/rdoc-6.0.2/lib/rdoc/top_level.rb %%DATADIR%%/rb/stubsgen/gems/gems/rdoc-6.0.2/rdoc.gemspec %%DATADIR%%/rb/stubsgen/gems/specifications/rdoc-3.9.4.gemspec +%%DATADIR%%/rb/stubsgen/gen_all.rb %%DATADIR%%/rb/stubsgen/gen_main_file.rb %%DATADIR%%/rb/stubsgen/gen_stubs.rb %%DATADIR%%/rb/stubsgen/manually_fixed_definitions.rb @@ -1284,6 +1346,7 @@ share/applications/rubymine.desktop %%DATADIR%%/rubystubs193/ip_socket.rb %%DATADIR%%/rubystubs193/jruby_builtin.rb %%DATADIR%%/rubystubs193/jruby_extensions.rb +%%DATADIR%%/rubystubs193/json.rb %%DATADIR%%/rubystubs193/kernel.rb %%DATADIR%%/rubystubs193/key_error.rb %%DATADIR%%/rubystubs193/load_error.rb @@ -1309,6 +1372,7 @@ share/applications/rubymine.desktop %%DATADIR%%/rubystubs193/process.rb %%DATADIR%%/rubystubs193/psych.rb %%DATADIR%%/rubystubs193/pty.rb +%%DATADIR%%/rubystubs193/racc.rb %%DATADIR%%/rubystubs193/random.rb %%DATADIR%%/rubystubs193/range.rb %%DATADIR%%/rubystubs193/range_error.rb @@ -1316,7 +1380,6 @@ share/applications/rubymine.desktop %%DATADIR%%/rubystubs193/readline.rb %%DATADIR%%/rubystubs193/regexp.rb %%DATADIR%%/rubystubs193/regexp_error.rb -%%DATADIR%%/rubystubs193/ripper.rb %%DATADIR%%/rubystubs193/ruby_vm.rb %%DATADIR%%/rubystubs193/runtime_error.rb %%DATADIR%%/rubystubs193/script_error.rb @@ -1340,12 +1403,25 @@ share/applications/rubymine.desktop %%DATADIR%%/rubystubs193/system_call_error.rb %%DATADIR%%/rubystubs193/system_exit.rb %%DATADIR%%/rubystubs193/system_stack_error.rb +%%DATADIR%%/rubystubs193/tcl_tk_ip.rb +%%DATADIR%%/rubystubs193/tcl_tk_lib.rb %%DATADIR%%/rubystubs193/tcp_server.rb %%DATADIR%%/rubystubs193/tcp_socket.rb %%DATADIR%%/rubystubs193/thread.rb %%DATADIR%%/rubystubs193/thread_error.rb %%DATADIR%%/rubystubs193/thread_group.rb %%DATADIR%%/rubystubs193/time.rb +%%DATADIR%%/rubystubs193/tk_callback_break.rb +%%DATADIR%%/rubystubs193/tk_callback_continue.rb +%%DATADIR%%/rubystubs193/tk_callback_entry.rb +%%DATADIR%%/rubystubs193/tk_callback_redo.rb +%%DATADIR%%/rubystubs193/tk_callback_retry.rb +%%DATADIR%%/rubystubs193/tk_callback_return.rb +%%DATADIR%%/rubystubs193/tk_callback_throw.rb +%%DATADIR%%/rubystubs193/tk_kernel.rb +%%DATADIR%%/rubystubs193/tk_local_jump_error.rb +%%DATADIR%%/rubystubs193/tk_object.rb +%%DATADIR%%/rubystubs193/tk_util.rb %%DATADIR%%/rubystubs193/true_class.rb %%DATADIR%%/rubystubs193/type_error.rb %%DATADIR%%/rubystubs193/udp_socket.rb @@ -1373,6 +1449,7 @@ share/applications/rubymine.desktop %%DATADIR%%/rubystubs20/big_math.rb %%DATADIR%%/rubystubs20/bignum.rb %%DATADIR%%/rubystubs20/binding.rb +%%DATADIR%%/rubystubs20/bug.rb %%DATADIR%%/rubystubs20/builtin.rb %%DATADIR%%/rubystubs20/class.rb %%DATADIR%%/rubystubs20/comparable.rb @@ -1421,6 +1498,7 @@ share/applications/rubymine.desktop %%DATADIR%%/rubystubs20/ip_socket.rb %%DATADIR%%/rubystubs20/jruby_builtin.rb %%DATADIR%%/rubystubs20/jruby_extensions.rb +%%DATADIR%%/rubystubs20/json.rb %%DATADIR%%/rubystubs20/kernel.rb %%DATADIR%%/rubystubs20/key_error.rb %%DATADIR%%/rubystubs20/load_error.rb @@ -1454,7 +1532,6 @@ share/applications/rubymine.desktop %%DATADIR%%/rubystubs20/readline.rb %%DATADIR%%/rubystubs20/regexp.rb %%DATADIR%%/rubystubs20/regexp_error.rb -%%DATADIR%%/rubystubs20/ripper.rb %%DATADIR%%/rubystubs20/ruby_vm.rb %%DATADIR%%/rubystubs20/runtime_error.rb %%DATADIR%%/rubystubs20/script_error.rb @@ -1478,12 +1555,25 @@ share/applications/rubymine.desktop %%DATADIR%%/rubystubs20/system_call_error.rb %%DATADIR%%/rubystubs20/system_exit.rb %%DATADIR%%/rubystubs20/system_stack_error.rb +%%DATADIR%%/rubystubs20/tcl_tk_ip.rb +%%DATADIR%%/rubystubs20/tcl_tk_lib.rb %%DATADIR%%/rubystubs20/tcp_server.rb %%DATADIR%%/rubystubs20/tcp_socket.rb %%DATADIR%%/rubystubs20/thread.rb %%DATADIR%%/rubystubs20/thread_error.rb %%DATADIR%%/rubystubs20/thread_group.rb %%DATADIR%%/rubystubs20/time.rb +%%DATADIR%%/rubystubs20/tk_callback_break.rb +%%DATADIR%%/rubystubs20/tk_callback_continue.rb +%%DATADIR%%/rubystubs20/tk_callback_entry.rb +%%DATADIR%%/rubystubs20/tk_callback_redo.rb +%%DATADIR%%/rubystubs20/tk_callback_retry.rb +%%DATADIR%%/rubystubs20/tk_callback_return.rb +%%DATADIR%%/rubystubs20/tk_callback_throw.rb +%%DATADIR%%/rubystubs20/tk_kernel.rb +%%DATADIR%%/rubystubs20/tk_local_jump_error.rb +%%DATADIR%%/rubystubs20/tk_object.rb +%%DATADIR%%/rubystubs20/tk_util.rb %%DATADIR%%/rubystubs20/trace_point.rb %%DATADIR%%/rubystubs20/true_class.rb %%DATADIR%%/rubystubs20/type_error.rb @@ -1491,6 +1581,7 @@ share/applications/rubymine.desktop %%DATADIR%%/rubystubs20/unbound_method.rb %%DATADIR%%/rubystubs20/unix_server.rb %%DATADIR%%/rubystubs20/unix_socket.rb +%%DATADIR%%/rubystubs20/unknown.rb %%DATADIR%%/rubystubs20/win32_ole.rb %%DATADIR%%/rubystubs20/win32_ole_event.rb %%DATADIR%%/rubystubs20/win32_ole_method.rb @@ -1512,6 +1603,7 @@ share/applications/rubymine.desktop %%DATADIR%%/rubystubs21/big_math.rb %%DATADIR%%/rubystubs21/bignum.rb %%DATADIR%%/rubystubs21/binding.rb +%%DATADIR%%/rubystubs21/bug.rb %%DATADIR%%/rubystubs21/builtin.rb %%DATADIR%%/rubystubs21/class.rb %%DATADIR%%/rubystubs21/comparable.rb @@ -1560,6 +1652,7 @@ share/applications/rubymine.desktop %%DATADIR%%/rubystubs21/ip_socket.rb %%DATADIR%%/rubystubs21/jruby_builtin.rb %%DATADIR%%/rubystubs21/jruby_extensions.rb +%%DATADIR%%/rubystubs21/json.rb %%DATADIR%%/rubystubs21/kernel.rb %%DATADIR%%/rubystubs21/key_error.rb %%DATADIR%%/rubystubs21/load_error.rb @@ -1576,6 +1669,7 @@ share/applications/rubymine.desktop %%DATADIR%%/rubystubs21/no_memory_error.rb %%DATADIR%%/rubystubs21/no_method_error.rb %%DATADIR%%/rubystubs21/not_implemented_error.rb +%%DATADIR%%/rubystubs21/num2int.rb %%DATADIR%%/rubystubs21/numeric.rb %%DATADIR%%/rubystubs21/object.rb %%DATADIR%%/rubystubs21/object_space.rb @@ -1594,7 +1688,6 @@ share/applications/rubymine.desktop %%DATADIR%%/rubystubs21/readline.rb %%DATADIR%%/rubystubs21/regexp.rb %%DATADIR%%/rubystubs21/regexp_error.rb -%%DATADIR%%/rubystubs21/ripper.rb %%DATADIR%%/rubystubs21/ruby_vm.rb %%DATADIR%%/rubystubs21/runtime_error.rb %%DATADIR%%/rubystubs21/script_error.rb @@ -1619,12 +1712,25 @@ share/applications/rubymine.desktop %%DATADIR%%/rubystubs21/system_call_error.rb %%DATADIR%%/rubystubs21/system_exit.rb %%DATADIR%%/rubystubs21/system_stack_error.rb +%%DATADIR%%/rubystubs21/tcl_tk_ip.rb +%%DATADIR%%/rubystubs21/tcl_tk_lib.rb %%DATADIR%%/rubystubs21/tcp_server.rb %%DATADIR%%/rubystubs21/tcp_socket.rb %%DATADIR%%/rubystubs21/thread.rb %%DATADIR%%/rubystubs21/thread_error.rb %%DATADIR%%/rubystubs21/thread_group.rb %%DATADIR%%/rubystubs21/time.rb +%%DATADIR%%/rubystubs21/tk_callback_break.rb +%%DATADIR%%/rubystubs21/tk_callback_continue.rb +%%DATADIR%%/rubystubs21/tk_callback_entry.rb +%%DATADIR%%/rubystubs21/tk_callback_redo.rb +%%DATADIR%%/rubystubs21/tk_callback_retry.rb +%%DATADIR%%/rubystubs21/tk_callback_return.rb +%%DATADIR%%/rubystubs21/tk_callback_throw.rb +%%DATADIR%%/rubystubs21/tk_kernel.rb +%%DATADIR%%/rubystubs21/tk_local_jump_error.rb +%%DATADIR%%/rubystubs21/tk_object.rb +%%DATADIR%%/rubystubs21/tk_util.rb %%DATADIR%%/rubystubs21/trace_point.rb %%DATADIR%%/rubystubs21/true_class.rb %%DATADIR%%/rubystubs21/type_error.rb @@ -1632,6 +1738,7 @@ share/applications/rubymine.desktop %%DATADIR%%/rubystubs21/unbound_method.rb %%DATADIR%%/rubystubs21/unix_server.rb %%DATADIR%%/rubystubs21/unix_socket.rb +%%DATADIR%%/rubystubs21/unknown.rb %%DATADIR%%/rubystubs21/win32_ole.rb %%DATADIR%%/rubystubs21/win32_ole_event.rb %%DATADIR%%/rubystubs21/win32_ole_method.rb @@ -1644,7 +1751,6 @@ share/applications/rubymine.desktop %%DATADIR%%/rubystubs21/zero_division_error.rb %%DATADIR%%/rubystubs21/zlib.rb %%DATADIR%%/rubystubs22/addrinfo.rb -%%DATADIR%%/rubystubs22/argf.rb %%DATADIR%%/rubystubs22/argument_error.rb %%DATADIR%%/rubystubs22/array.rb %%DATADIR%%/rubystubs22/basic_object.rb @@ -1653,6 +1759,7 @@ share/applications/rubymine.desktop %%DATADIR%%/rubystubs22/big_math.rb %%DATADIR%%/rubystubs22/bignum.rb %%DATADIR%%/rubystubs22/binding.rb +%%DATADIR%%/rubystubs22/bug.rb %%DATADIR%%/rubystubs22/builtin.rb %%DATADIR%%/rubystubs22/class.rb %%DATADIR%%/rubystubs22/comparable.rb @@ -1700,6 +1807,7 @@ share/applications/rubymine.desktop %%DATADIR%%/rubystubs22/ip_socket.rb %%DATADIR%%/rubystubs22/jruby_builtin.rb %%DATADIR%%/rubystubs22/jruby_extensions.rb +%%DATADIR%%/rubystubs22/json.rb %%DATADIR%%/rubystubs22/kernel.rb %%DATADIR%%/rubystubs22/key_error.rb %%DATADIR%%/rubystubs22/load_error.rb @@ -1716,6 +1824,7 @@ share/applications/rubymine.desktop %%DATADIR%%/rubystubs22/no_memory_error.rb %%DATADIR%%/rubystubs22/no_method_error.rb %%DATADIR%%/rubystubs22/not_implemented_error.rb +%%DATADIR%%/rubystubs22/num2int.rb %%DATADIR%%/rubystubs22/numeric.rb %%DATADIR%%/rubystubs22/object.rb %%DATADIR%%/rubystubs22/object_space.rb @@ -1734,7 +1843,6 @@ share/applications/rubymine.desktop %%DATADIR%%/rubystubs22/readline.rb %%DATADIR%%/rubystubs22/regexp.rb %%DATADIR%%/rubystubs22/regexp_error.rb -%%DATADIR%%/rubystubs22/ripper.rb %%DATADIR%%/rubystubs22/ruby_vm.rb %%DATADIR%%/rubystubs22/runtime_error.rb %%DATADIR%%/rubystubs22/script_error.rb @@ -1759,12 +1867,25 @@ share/applications/rubymine.desktop %%DATADIR%%/rubystubs22/system_call_error.rb %%DATADIR%%/rubystubs22/system_exit.rb %%DATADIR%%/rubystubs22/system_stack_error.rb +%%DATADIR%%/rubystubs22/tcl_tk_ip.rb +%%DATADIR%%/rubystubs22/tcl_tk_lib.rb %%DATADIR%%/rubystubs22/tcp_server.rb %%DATADIR%%/rubystubs22/tcp_socket.rb %%DATADIR%%/rubystubs22/thread.rb %%DATADIR%%/rubystubs22/thread_error.rb %%DATADIR%%/rubystubs22/thread_group.rb %%DATADIR%%/rubystubs22/time.rb +%%DATADIR%%/rubystubs22/tk_callback_break.rb +%%DATADIR%%/rubystubs22/tk_callback_continue.rb +%%DATADIR%%/rubystubs22/tk_callback_entry.rb +%%DATADIR%%/rubystubs22/tk_callback_redo.rb +%%DATADIR%%/rubystubs22/tk_callback_retry.rb +%%DATADIR%%/rubystubs22/tk_callback_return.rb +%%DATADIR%%/rubystubs22/tk_callback_throw.rb +%%DATADIR%%/rubystubs22/tk_kernel.rb +%%DATADIR%%/rubystubs22/tk_local_jump_error.rb +%%DATADIR%%/rubystubs22/tk_object.rb +%%DATADIR%%/rubystubs22/tk_util.rb %%DATADIR%%/rubystubs22/trace_point.rb %%DATADIR%%/rubystubs22/true_class.rb %%DATADIR%%/rubystubs22/type_error.rb @@ -1773,6 +1894,7 @@ share/applications/rubymine.desktop %%DATADIR%%/rubystubs22/uncaught_throw_error.rb %%DATADIR%%/rubystubs22/unix_server.rb %%DATADIR%%/rubystubs22/unix_socket.rb +%%DATADIR%%/rubystubs22/unknown.rb %%DATADIR%%/rubystubs22/win32_ole.rb %%DATADIR%%/rubystubs22/win32_ole_event.rb %%DATADIR%%/rubystubs22/win32_ole_method.rb @@ -1794,7 +1916,9 @@ share/applications/rubymine.desktop %%DATADIR%%/rubystubs23/big_math.rb %%DATADIR%%/rubystubs23/bignum.rb %%DATADIR%%/rubystubs23/binding.rb +%%DATADIR%%/rubystubs23/bug.rb %%DATADIR%%/rubystubs23/builtin.rb +%%DATADIR%%/rubystubs23/cgi.rb %%DATADIR%%/rubystubs23/class.rb %%DATADIR%%/rubystubs23/closed_queue_error.rb %%DATADIR%%/rubystubs23/comparable.rb @@ -1842,6 +1966,7 @@ share/applications/rubymine.desktop %%DATADIR%%/rubystubs23/ip_socket.rb %%DATADIR%%/rubystubs23/jruby_builtin.rb %%DATADIR%%/rubystubs23/jruby_extensions.rb +%%DATADIR%%/rubystubs23/json.rb %%DATADIR%%/rubystubs23/kernel.rb %%DATADIR%%/rubystubs23/key_error.rb %%DATADIR%%/rubystubs23/load_error.rb @@ -1857,6 +1982,7 @@ share/applications/rubymine.desktop %%DATADIR%%/rubystubs23/no_memory_error.rb %%DATADIR%%/rubystubs23/no_method_error.rb %%DATADIR%%/rubystubs23/not_implemented_error.rb +%%DATADIR%%/rubystubs23/num2int.rb %%DATADIR%%/rubystubs23/numeric.rb %%DATADIR%%/rubystubs23/object.rb %%DATADIR%%/rubystubs23/object_space.rb @@ -1875,7 +2001,6 @@ share/applications/rubymine.desktop %%DATADIR%%/rubystubs23/readline.rb %%DATADIR%%/rubystubs23/regexp.rb %%DATADIR%%/rubystubs23/regexp_error.rb -%%DATADIR%%/rubystubs23/ripper.rb %%DATADIR%%/rubystubs23/ruby_vm.rb %%DATADIR%%/rubystubs23/runtime_error.rb %%DATADIR%%/rubystubs23/script_error.rb @@ -1900,12 +2025,25 @@ share/applications/rubymine.desktop %%DATADIR%%/rubystubs23/system_call_error.rb %%DATADIR%%/rubystubs23/system_exit.rb %%DATADIR%%/rubystubs23/system_stack_error.rb +%%DATADIR%%/rubystubs23/tcl_tk_ip.rb +%%DATADIR%%/rubystubs23/tcl_tk_lib.rb %%DATADIR%%/rubystubs23/tcp_server.rb %%DATADIR%%/rubystubs23/tcp_socket.rb %%DATADIR%%/rubystubs23/thread.rb %%DATADIR%%/rubystubs23/thread_error.rb %%DATADIR%%/rubystubs23/thread_group.rb %%DATADIR%%/rubystubs23/time.rb +%%DATADIR%%/rubystubs23/tk_callback_break.rb +%%DATADIR%%/rubystubs23/tk_callback_continue.rb +%%DATADIR%%/rubystubs23/tk_callback_entry.rb +%%DATADIR%%/rubystubs23/tk_callback_redo.rb +%%DATADIR%%/rubystubs23/tk_callback_retry.rb +%%DATADIR%%/rubystubs23/tk_callback_return.rb +%%DATADIR%%/rubystubs23/tk_callback_throw.rb +%%DATADIR%%/rubystubs23/tk_kernel.rb +%%DATADIR%%/rubystubs23/tk_local_jump_error.rb +%%DATADIR%%/rubystubs23/tk_object.rb +%%DATADIR%%/rubystubs23/tk_util.rb %%DATADIR%%/rubystubs23/trace_point.rb %%DATADIR%%/rubystubs23/true_class.rb %%DATADIR%%/rubystubs23/type_error.rb @@ -1914,6 +2052,7 @@ share/applications/rubymine.desktop %%DATADIR%%/rubystubs23/uncaught_throw_error.rb %%DATADIR%%/rubystubs23/unix_server.rb %%DATADIR%%/rubystubs23/unix_socket.rb +%%DATADIR%%/rubystubs23/unknown.rb %%DATADIR%%/rubystubs23/win32_ole.rb %%DATADIR%%/rubystubs23/win32_ole_event.rb %%DATADIR%%/rubystubs23/win32_ole_method.rb @@ -1935,7 +2074,9 @@ share/applications/rubymine.desktop %%DATADIR%%/rubystubs24/big_decimal.rb %%DATADIR%%/rubystubs24/big_math.rb %%DATADIR%%/rubystubs24/binding.rb +%%DATADIR%%/rubystubs24/bug.rb %%DATADIR%%/rubystubs24/builtin.rb +%%DATADIR%%/rubystubs24/cgi.rb %%DATADIR%%/rubystubs24/class.rb %%DATADIR%%/rubystubs24/closed_queue_error.rb %%DATADIR%%/rubystubs24/comparable.rb @@ -1982,6 +2123,7 @@ share/applications/rubymine.desktop %%DATADIR%%/rubystubs24/ip_socket.rb %%DATADIR%%/rubystubs24/jruby_builtin.rb %%DATADIR%%/rubystubs24/jruby_extensions.rb +%%DATADIR%%/rubystubs24/json.rb %%DATADIR%%/rubystubs24/kernel.rb %%DATADIR%%/rubystubs24/key_error.rb %%DATADIR%%/rubystubs24/load_error.rb @@ -1989,6 +2131,7 @@ share/applications/rubymine.desktop %%DATADIR%%/rubystubs24/marshal.rb %%DATADIR%%/rubystubs24/match_data.rb %%DATADIR%%/rubystubs24/math.rb +%%DATADIR%%/rubystubs24/memory.rb %%DATADIR%%/rubystubs24/method.rb %%DATADIR%%/rubystubs24/module.rb %%DATADIR%%/rubystubs24/name_error.rb @@ -1997,6 +2140,7 @@ share/applications/rubymine.desktop %%DATADIR%%/rubystubs24/no_memory_error.rb %%DATADIR%%/rubystubs24/no_method_error.rb %%DATADIR%%/rubystubs24/not_implemented_error.rb +%%DATADIR%%/rubystubs24/num2int.rb %%DATADIR%%/rubystubs24/numeric.rb %%DATADIR%%/rubystubs24/object.rb %%DATADIR%%/rubystubs24/object_space.rb @@ -2055,6 +2199,8 @@ share/applications/rubymine.desktop %%DATADIR%%/rubystubs24/unix_server.rb %%DATADIR%%/rubystubs24/unix_socket.rb %%DATADIR%%/rubystubs24/unknown.rb +%%DATADIR%%/rubystubs24/warning.rb +%%DATADIR%%/rubystubs24/win32.rb %%DATADIR%%/rubystubs24/win32_ole.rb %%DATADIR%%/rubystubs24/win32_ole_event.rb %%DATADIR%%/rubystubs24/win32_ole_method.rb @@ -2076,7 +2222,9 @@ share/applications/rubymine.desktop %%DATADIR%%/rubystubs25/big_decimal.rb %%DATADIR%%/rubystubs25/big_math.rb %%DATADIR%%/rubystubs25/binding.rb +%%DATADIR%%/rubystubs25/bug.rb %%DATADIR%%/rubystubs25/builtin.rb +%%DATADIR%%/rubystubs25/cgi.rb %%DATADIR%%/rubystubs25/class.rb %%DATADIR%%/rubystubs25/closed_queue_error.rb %%DATADIR%%/rubystubs25/comparable.rb @@ -2132,6 +2280,7 @@ share/applications/rubymine.desktop %%DATADIR%%/rubystubs25/marshal.rb %%DATADIR%%/rubystubs25/match_data.rb %%DATADIR%%/rubystubs25/math.rb +%%DATADIR%%/rubystubs25/memory.rb %%DATADIR%%/rubystubs25/method.rb %%DATADIR%%/rubystubs25/module.rb %%DATADIR%%/rubystubs25/mutex.rb @@ -2141,6 +2290,7 @@ share/applications/rubymine.desktop %%DATADIR%%/rubystubs25/no_memory_error.rb %%DATADIR%%/rubystubs25/no_method_error.rb %%DATADIR%%/rubystubs25/not_implemented_error.rb +%%DATADIR%%/rubystubs25/num2int.rb %%DATADIR%%/rubystubs25/numeric.rb %%DATADIR%%/rubystubs25/object.rb %%DATADIR%%/rubystubs25/object_space.rb @@ -2159,7 +2309,6 @@ share/applications/rubymine.desktop %%DATADIR%%/rubystubs25/readline.rb %%DATADIR%%/rubystubs25/regexp.rb %%DATADIR%%/rubystubs25/regexp_error.rb -%%DATADIR%%/rubystubs25/ripper.rb %%DATADIR%%/rubystubs25/ruby_vm.rb %%DATADIR%%/rubystubs25/runtime_error.rb %%DATADIR%%/rubystubs25/script_error.rb @@ -2201,6 +2350,7 @@ share/applications/rubymine.desktop %%DATADIR%%/rubystubs25/unix_socket.rb %%DATADIR%%/rubystubs25/unknown.rb %%DATADIR%%/rubystubs25/warning.rb +%%DATADIR%%/rubystubs25/win32.rb %%DATADIR%%/rubystubs25/win32_ole.rb %%DATADIR%%/rubystubs25/win32_ole_event.rb %%DATADIR%%/rubystubs25/win32_ole_method.rb @@ -2214,3 +2364,155 @@ share/applications/rubymine.desktop %%DATADIR%%/rubystubs25/win32_ole_variant.rb %%DATADIR%%/rubystubs25/zero_division_error.rb %%DATADIR%%/rubystubs25/zlib.rb +%%DATADIR%%/rubystubs26/addrinfo.rb +%%DATADIR%%/rubystubs26/argf.rb +%%DATADIR%%/rubystubs26/argument_error.rb +%%DATADIR%%/rubystubs26/array.rb +%%DATADIR%%/rubystubs26/basic_object.rb +%%DATADIR%%/rubystubs26/basic_socket.rb +%%DATADIR%%/rubystubs26/big_decimal.rb +%%DATADIR%%/rubystubs26/big_math.rb +%%DATADIR%%/rubystubs26/binding.rb +%%DATADIR%%/rubystubs26/bug.rb +%%DATADIR%%/rubystubs26/builtin.rb +%%DATADIR%%/rubystubs26/cgi.rb +%%DATADIR%%/rubystubs26/class.rb +%%DATADIR%%/rubystubs26/closed_queue_error.rb +%%DATADIR%%/rubystubs26/comparable.rb +%%DATADIR%%/rubystubs26/complex.rb +%%DATADIR%%/rubystubs26/condition_variable.rb +%%DATADIR%%/rubystubs26/continuation.rb +%%DATADIR%%/rubystubs26/coverage.rb +%%DATADIR%%/rubystubs26/data.rb +%%DATADIR%%/rubystubs26/date.rb +%%DATADIR%%/rubystubs26/date_time.rb +%%DATADIR%%/rubystubs26/dbm.rb +%%DATADIR%%/rubystubs26/dbm_error.rb +%%DATADIR%%/rubystubs26/digest.rb +%%DATADIR%%/rubystubs26/dir.rb +%%DATADIR%%/rubystubs26/encoding.rb +%%DATADIR%%/rubystubs26/encoding_error.rb +%%DATADIR%%/rubystubs26/enumerable.rb +%%DATADIR%%/rubystubs26/enumerator.rb +%%DATADIR%%/rubystubs26/env.rb +%%DATADIR%%/rubystubs26/eof_error.rb +%%DATADIR%%/rubystubs26/errno.rb +%%DATADIR%%/rubystubs26/etc.rb +%%DATADIR%%/rubystubs26/exception.rb +%%DATADIR%%/rubystubs26/false_class.rb +%%DATADIR%%/rubystubs26/fatal.rb +%%DATADIR%%/rubystubs26/fcntl.rb +%%DATADIR%%/rubystubs26/fiber.rb +%%DATADIR%%/rubystubs26/fiber_error.rb +%%DATADIR%%/rubystubs26/fiddle.rb +%%DATADIR%%/rubystubs26/file.rb +%%DATADIR%%/rubystubs26/file_test.rb +%%DATADIR%%/rubystubs26/float.rb +%%DATADIR%%/rubystubs26/float_domain_error.rb +%%DATADIR%%/rubystubs26/frozen_error.rb +%%DATADIR%%/rubystubs26/gc.rb +%%DATADIR%%/rubystubs26/gdbm.rb +%%DATADIR%%/rubystubs26/gdbm_error.rb +%%DATADIR%%/rubystubs26/gdbm_fatal_error.rb +%%DATADIR%%/rubystubs26/hash.rb +%%DATADIR%%/rubystubs26/index_error.rb +%%DATADIR%%/rubystubs26/integer.rb +%%DATADIR%%/rubystubs26/interrupt.rb +%%DATADIR%%/rubystubs26/io.rb +%%DATADIR%%/rubystubs26/io_error.rb +%%DATADIR%%/rubystubs26/ip_socket.rb +%%DATADIR%%/rubystubs26/jruby_builtin.rb +%%DATADIR%%/rubystubs26/jruby_extensions.rb +%%DATADIR%%/rubystubs26/json.rb +%%DATADIR%%/rubystubs26/kernel.rb +%%DATADIR%%/rubystubs26/key_error.rb +%%DATADIR%%/rubystubs26/load_error.rb +%%DATADIR%%/rubystubs26/local_jump_error.rb +%%DATADIR%%/rubystubs26/marshal.rb +%%DATADIR%%/rubystubs26/match_data.rb +%%DATADIR%%/rubystubs26/math.rb +%%DATADIR%%/rubystubs26/memory.rb +%%DATADIR%%/rubystubs26/method.rb +%%DATADIR%%/rubystubs26/module.rb +%%DATADIR%%/rubystubs26/mutex.rb +%%DATADIR%%/rubystubs26/name_error.rb +%%DATADIR%%/rubystubs26/nil_class.rb +%%DATADIR%%/rubystubs26/nkf.rb +%%DATADIR%%/rubystubs26/no_memory_error.rb +%%DATADIR%%/rubystubs26/no_method_error.rb +%%DATADIR%%/rubystubs26/not_implemented_error.rb +%%DATADIR%%/rubystubs26/num2int.rb +%%DATADIR%%/rubystubs26/numeric.rb +%%DATADIR%%/rubystubs26/object.rb +%%DATADIR%%/rubystubs26/object_space.rb +%%DATADIR%%/rubystubs26/open_ssl.rb +%%DATADIR%%/rubystubs26/pathname.rb +%%DATADIR%%/rubystubs26/proc.rb +%%DATADIR%%/rubystubs26/process.rb +%%DATADIR%%/rubystubs26/psych.rb +%%DATADIR%%/rubystubs26/pty.rb +%%DATADIR%%/rubystubs26/queue.rb +%%DATADIR%%/rubystubs26/racc.rb +%%DATADIR%%/rubystubs26/random.rb +%%DATADIR%%/rubystubs26/range.rb +%%DATADIR%%/rubystubs26/range_error.rb +%%DATADIR%%/rubystubs26/rational.rb +%%DATADIR%%/rubystubs26/readline.rb +%%DATADIR%%/rubystubs26/regexp.rb +%%DATADIR%%/rubystubs26/regexp_error.rb +%%DATADIR%%/rubystubs26/ripper.rb +%%DATADIR%%/rubystubs26/ruby_vm.rb +%%DATADIR%%/rubystubs26/runtime_error.rb +%%DATADIR%%/rubystubs26/script_error.rb +%%DATADIR%%/rubystubs26/sdbm.rb +%%DATADIR%%/rubystubs26/sdbm_error.rb +%%DATADIR%%/rubystubs26/security_error.rb +%%DATADIR%%/rubystubs26/signal.rb +%%DATADIR%%/rubystubs26/signal_exception.rb +%%DATADIR%%/rubystubs26/sized_queue.rb +%%DATADIR%%/rubystubs26/socket.rb +%%DATADIR%%/rubystubs26/socket_error.rb +%%DATADIR%%/rubystubs26/socks_socket.rb +%%DATADIR%%/rubystubs26/standard_error.rb +%%DATADIR%%/rubystubs26/stop_iteration.rb +%%DATADIR%%/rubystubs26/string.rb +%%DATADIR%%/rubystubs26/stringio.rb +%%DATADIR%%/rubystubs26/strscan.rb +%%DATADIR%%/rubystubs26/struct.rb +%%DATADIR%%/rubystubs26/symbol.rb +%%DATADIR%%/rubystubs26/syntax_error.rb +%%DATADIR%%/rubystubs26/syslog.rb +%%DATADIR%%/rubystubs26/system_call_error.rb +%%DATADIR%%/rubystubs26/system_exit.rb +%%DATADIR%%/rubystubs26/system_stack_error.rb +%%DATADIR%%/rubystubs26/tcp_server.rb +%%DATADIR%%/rubystubs26/tcp_socket.rb +%%DATADIR%%/rubystubs26/thread.rb +%%DATADIR%%/rubystubs26/thread_error.rb +%%DATADIR%%/rubystubs26/thread_group.rb +%%DATADIR%%/rubystubs26/time.rb +%%DATADIR%%/rubystubs26/trace_point.rb +%%DATADIR%%/rubystubs26/true_class.rb +%%DATADIR%%/rubystubs26/type_error.rb +%%DATADIR%%/rubystubs26/udp_socket.rb +%%DATADIR%%/rubystubs26/unbound_method.rb +%%DATADIR%%/rubystubs26/uncaught_throw_error.rb +%%DATADIR%%/rubystubs26/unicode_normalize.rb +%%DATADIR%%/rubystubs26/unix_server.rb +%%DATADIR%%/rubystubs26/unix_socket.rb +%%DATADIR%%/rubystubs26/unknown.rb +%%DATADIR%%/rubystubs26/warning.rb +%%DATADIR%%/rubystubs26/win32.rb +%%DATADIR%%/rubystubs26/win32_ole.rb +%%DATADIR%%/rubystubs26/win32_ole_event.rb +%%DATADIR%%/rubystubs26/win32_ole_method.rb +%%DATADIR%%/rubystubs26/win32_ole_param.rb +%%DATADIR%%/rubystubs26/win32_ole_query_interface_error.rb +%%DATADIR%%/rubystubs26/win32_ole_record.rb +%%DATADIR%%/rubystubs26/win32_ole_runtime_error.rb +%%DATADIR%%/rubystubs26/win32_ole_type.rb +%%DATADIR%%/rubystubs26/win32_ole_typelib.rb +%%DATADIR%%/rubystubs26/win32_ole_variable.rb +%%DATADIR%%/rubystubs26/win32_ole_variant.rb +%%DATADIR%%/rubystubs26/zero_division_error.rb +%%DATADIR%%/rubystubs26/zlib.rb diff --git a/lang/gcc8-devel/Makefile b/lang/gcc8-devel/Makefile index 5a753f26afc..7c6b96df19b 100644 --- a/lang/gcc8-devel/Makefile +++ b/lang/gcc8-devel/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= gcc -PORTVERSION= 8.3.1.s20190712 +PORTVERSION= 8.3.1.s20190719 CATEGORIES= lang MASTER_SITES= GCC/snapshots/${DIST_VERSION} PKGNAMESUFFIX= ${SUFFIX}-devel diff --git a/lang/gcc8-devel/distinfo b/lang/gcc8-devel/distinfo index 711a1fbfc5b..c5f23cc8c86 100644 --- a/lang/gcc8-devel/distinfo +++ b/lang/gcc8-devel/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1562993004 -SHA256 (gcc-8-20190712.tar.xz) = d29cf265dad85bfc73753b66b1fd6ab1c231fa5629954a8fa01b5dfdc1a5fab3 -SIZE (gcc-8-20190712.tar.xz) = 61895496 +TIMESTAMP = 1563603598 +SHA256 (gcc-8-20190719.tar.xz) = a8118dcc3e85f9bf83f83d5f5203bf8ddad29bfd419fd34cdc2bea7c0c29ad7c +SIZE (gcc-8-20190719.tar.xz) = 61893124 diff --git a/lang/gcc9-devel/Makefile b/lang/gcc9-devel/Makefile index d201bbfceaf..8efa147d33f 100644 --- a/lang/gcc9-devel/Makefile +++ b/lang/gcc9-devel/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= gcc -PORTVERSION= 9.1.1.s20190713 +PORTVERSION= 9.1.1.s20190720 CATEGORIES= lang MASTER_SITES= GCC/snapshots/${DIST_VERSION} PKGNAMESUFFIX= ${SUFFIX}-devel diff --git a/lang/gcc9-devel/distinfo b/lang/gcc9-devel/distinfo index e927abb012b..2e6a007e2fb 100644 --- a/lang/gcc9-devel/distinfo +++ b/lang/gcc9-devel/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1563122332 -SHA256 (gcc-9-20190713.tar.xz) = 5990e841ffd54a46a3e9600138ee878759e0709ce5cd465b35f242a3816072d1 -SIZE (gcc-9-20190713.tar.xz) = 68778924 +TIMESTAMP = 1563684917 +SHA256 (gcc-9-20190720.tar.xz) = 3528734f2ed4c747dbbb424ea502ca00ae68ddacb394030234e15a651d2ac54b +SIZE (gcc-9-20190720.tar.xz) = 68783080 diff --git a/lang/perl5-devel/Makefile b/lang/perl5-devel/Makefile index dabf9eb905d..5c54417f3ac 100644 --- a/lang/perl5-devel/Makefile +++ b/lang/perl5-devel/Makefile @@ -35,7 +35,7 @@ USE_LDCONFIG= ${PREFIX}/${_ARCH_LIB}/CORE USE_GITHUB= yes GH_ACCOUNT= Perl GH_PROJECT= perl5 -GH_TAGNAME= v5.31.1-148-gdc9ac3ee56 +GH_TAGNAME= v5.31.2-21-g996b0cb8b8 TEST_TARGET= test_harness TEST_ENV= ${MAKE_ENV} TEST_JOBS=${MAKE_JOBS_NUMBER} \ diff --git a/lang/perl5-devel/distinfo b/lang/perl5-devel/distinfo index 47f6803325a..faa4178409d 100644 --- a/lang/perl5-devel/distinfo +++ b/lang/perl5-devel/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1563193501 -SHA256 (perl/Perl-perl5-v5.31.1-148-gdc9ac3ee56_GH0.tar.gz) = 441a323c078285227311b716626b8f8cc89e424c2c6a9bd40dffe4819392187a -SIZE (perl/Perl-perl5-v5.31.1-148-gdc9ac3ee56_GH0.tar.gz) = 19247272 +TIMESTAMP = 1563796091 +SHA256 (perl/Perl-perl5-v5.31.2-21-g996b0cb8b8_GH0.tar.gz) = 144f82ec821564c2f999b91c13ea1582cb333c55211fc059b25896199d7dc0cf +SIZE (perl/Perl-perl5-v5.31.2-21-g996b0cb8b8_GH0.tar.gz) = 19249624 diff --git a/lang/perl5-devel/files/patch-t_porting_customized.dat b/lang/perl5-devel/files/patch-t_porting_customized.dat index e97aee3d7bb..d2be2cbc0e9 100644 --- a/lang/perl5-devel/files/patch-t_porting_customized.dat +++ b/lang/perl5-devel/files/patch-t_porting_customized.dat @@ -1,16 +1,16 @@ Fix tests for modified files. ---- t/porting/customized.dat.orig 2019-03-31 21:08:28 UTC +--- t/porting/customized.dat.orig 2019-07-22 10:18:26 UTC +++ t/porting/customized.dat -@@ -2,6 +2,7 @@ - # cd t +@@ -3,6 +3,7 @@ # ./perl -I../lib porting/customized.t --regen + Config::Perl::V cpan/Config-Perl-V/V.pm 0a0f7207e6505b78ee345a933acb0246a13579f5 Digest cpan/Digest/Digest.pm 43f7f544cb11842b2f55c73e28930da50774e081 +ExtUtils::MakeMaker cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM_Any.pm ac29a8dc1c7d6f0aca4abff0730c05bde1dab3ad Locale::Maketext::Simple cpan/Locale-Maketext-Simple/lib/Locale/Maketext/Simple.pm 57ed38905791a17c150210cd6f42ead22a7707b6 Math::Complex cpan/Math-Complex/lib/Math/Complex.pm 198ea6c6c584f5ea79a0fd7e9d411d0878f3b2af Math::Complex cpan/Math-Complex/t/Complex.t 4f307ed6fc59f1e5fb0e6b11103fc631b6bdb335 -@@ -17,7 +18,7 @@ Pod::Checker cpan/Pod-Checker/t/pod/contains_bad_pod.x +@@ -14,7 +15,7 @@ Pod::Checker cpan/Pod-Checker/t/pod/contains_bad_pod.x Pod::Checker cpan/Pod-Checker/t/pod/selfcheck.t 8ce3cfd38e4b9bcf5bc7fe7f2a14195e49aed7d8 Pod::Checker cpan/Pod-Checker/t/pod/testcmp.pl a0cd5c8eca775c7753f4464eee96fa916e3d8a16 Pod::Checker cpan/Pod-Checker/t/pod/testpchk.pl b2072c7f4379fd050e15424175d7cac5facf5b3b diff --git a/lang/perl5-devel/pkg-plist b/lang/perl5-devel/pkg-plist index 31f01677766..bfe70846287 100644 --- a/lang/perl5-devel/pkg-plist +++ b/lang/perl5-devel/pkg-plist @@ -958,6 +958,7 @@ etc/man.d/perl%%PKGNAMESUFFIX%%.conf %%MAN1%%/perl5310delta.1.gz %%MAN1%%/perl5311delta.1.gz %%MAN1%%/perl5312delta.1.gz +%%MAN1%%/perl5313delta.1.gz %%MAN1%%/perl561delta.1.gz %%MAN1%%/perl56delta.1.gz %%MAN1%%/perl581delta.1.gz @@ -1743,6 +1744,7 @@ etc/man.d/perl%%PKGNAMESUFFIX%%.conf %%PRIV_LIB%%/pod/perl5310delta.pod %%PRIV_LIB%%/pod/perl5311delta.pod %%PRIV_LIB%%/pod/perl5312delta.pod +%%PRIV_LIB%%/pod/perl5313delta.pod %%PRIV_LIB%%/pod/perl561delta.pod %%PRIV_LIB%%/pod/perl56delta.pod %%PRIV_LIB%%/pod/perl581delta.pod diff --git a/lang/perl5-devel/version.mk b/lang/perl5-devel/version.mk index 8b58c135d65..d4eca3551e2 100644 --- a/lang/perl5-devel/version.mk +++ b/lang/perl5-devel/version.mk @@ -1,2 +1,2 @@ -PERL_VERSION= 5.31.2 +PERL_VERSION= 5.31.3 PERL5_DEPEND= perl5>=5.31<5.32 diff --git a/lang/rust-nightly/Makefile b/lang/rust-nightly/Makefile index e05036c513d..399c0dcca86 100644 --- a/lang/rust-nightly/Makefile +++ b/lang/rust-nightly/Makefile @@ -14,7 +14,7 @@ CONFLICTS_INSTALL= rust # Which source to pull: # https://static.rust-lang.org/dist/${NIGHTLY_DATE}/rustc-nightly-src.tar.gz # https://static.rust-lang.org/dist/channel-rust-nightly.toml -NIGHTLY_DATE= 2019-07-20 +NIGHTLY_DATE= 2019-07-23 NIGHTLY_SUBDIR= ${NIGHTLY_DATE}/ # See WRKSRC/src/stage0.txt for this date diff --git a/lang/rust-nightly/distinfo b/lang/rust-nightly/distinfo index 823624b3671..69d6637d056 100644 --- a/lang/rust-nightly/distinfo +++ b/lang/rust-nightly/distinfo @@ -1,6 +1,6 @@ -TIMESTAMP = 1563558431 -SHA256 (rust/2019-07-20/rustc-nightly-src.tar.xz) = 2ec90c7c4ae2a4ce67e9e6fa812d2d56f0d104d547369f448ff283563109d0b0 -SIZE (rust/2019-07-20/rustc-nightly-src.tar.xz) = 93507116 +TIMESTAMP = 1563822063 +SHA256 (rust/2019-07-23/rustc-nightly-src.tar.xz) = d36085bb0f9a63036854dc69a8996850bd8a37228d18e956fe5bf03b2e3d4568 +SIZE (rust/2019-07-23/rustc-nightly-src.tar.xz) = 93527440 SHA256 (rust/2019-07-04/rustc-beta-x86_64-unknown-freebsd.tar.gz) = 2e3f9fd2ba916facd3239df2bab16420161c6aa62d03317caa3b038ce56e5738 SIZE (rust/2019-07-04/rustc-beta-x86_64-unknown-freebsd.tar.gz) = 70343111 SHA256 (rust/2019-07-04/rust-std-beta-x86_64-unknown-freebsd.tar.gz) = 735c8a380bd369ca4b1c05cb3f93d3fad41e073a94146230f4e851be66f23b0f diff --git a/mail/dovecot/Makefile b/mail/dovecot/Makefile index 251fb29d122..4a4f73b9790 100644 --- a/mail/dovecot/Makefile +++ b/mail/dovecot/Makefile @@ -8,7 +8,7 @@ PORTNAME= dovecot PORTVERSION= 2.3.7 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= mail ipv6 MASTER_SITES= https://dovecot.org/releases/2.3/ diff --git a/mail/dovecot/files/patch-src_lib-storage_mail-storage.c b/mail/dovecot/files/patch-src_lib-storage_mail-storage.c new file mode 100644 index 00000000000..71204c480d8 --- /dev/null +++ b/mail/dovecot/files/patch-src_lib-storage_mail-storage.c @@ -0,0 +1,35 @@ +--- src/lib-storage/mail-storage.c.orig 2019-07-12 10:46:25 UTC ++++ src/lib-storage/mail-storage.c +@@ -1040,10 +1040,10 @@ mailbox_name_verify_extra_separators(const char *vname + } + + static bool +-mailbox_verify_name_prefix(struct mailbox *box, const char **error_r) ++mailbox_verify_name_prefix(struct mail_namespace *ns, const char **vnamep, ++ const char **error_r) + { +- const char *vname = box->vname; +- struct mail_namespace *ns = box->list->ns; ++ const char *vname = *vnamep; + + if (ns->prefix_len == 0) + return TRUE; +@@ -1071,6 +1071,7 @@ mailbox_verify_name_prefix(struct mailbox *box, const + return FALSE; + } + } ++ *vnamep = vname; + return TRUE; + } + +@@ -1085,7 +1086,9 @@ int mailbox_verify_name(struct mailbox *box) + return 0; + } + +- if (!mailbox_verify_name_prefix(box, &error)) { ++ /* Verify the namespace prefix here. Change vname to skip the prefix ++ for the following checks. */ ++ if (!mailbox_verify_name_prefix(box->list->ns, &vname, &error)) { + mail_storage_set_error(box->storage, MAIL_ERROR_PARAMS, + t_strdup_printf("Invalid mailbox name '%s': %s", + str_sanitize(vname, 80), error)); diff --git a/math/bitwise/Makefile b/math/bitwise/Makefile index d48166eec6c..a4b8fb29764 100644 --- a/math/bitwise/Makefile +++ b/math/bitwise/Makefile @@ -2,8 +2,7 @@ PORTNAME= bitwise DISTVERSIONPREFIX= v -DISTVERSION= 0.32 -PORTREVISION= 1 +DISTVERSION= 0.33 CATEGORIES= math MAINTAINER= yuri@FreeBSD.org diff --git a/math/bitwise/distinfo b/math/bitwise/distinfo index 18a561ed150..ba34991d404 100644 --- a/math/bitwise/distinfo +++ b/math/bitwise/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1563650478 -SHA256 (mellowcandle-bitwise-v0.32_GH0.tar.gz) = b3c38c9253d61c4df2f7ccb62692575c7ce5730ff24a89d29126d3a6f5bd6d96 -SIZE (mellowcandle-bitwise-v0.32_GH0.tar.gz) = 263587 +TIMESTAMP = 1563855253 +SHA256 (mellowcandle-bitwise-v0.33_GH0.tar.gz) = 514a0db0d6372732eef96a2ebc040eb61eca43216339a5f6bacdcdd8dc8638e1 +SIZE (mellowcandle-bitwise-v0.33_GH0.tar.gz) = 264832 diff --git a/multimedia/aom/Makefile b/multimedia/aom/Makefile index 86408120d69..2eba9a88503 100644 --- a/multimedia/aom/Makefile +++ b/multimedia/aom/Makefile @@ -2,8 +2,8 @@ PORTNAME= aom DISTVERSIONPREFIX= v -DISTVERSION= 1.0.0-2106 -DISTVERSIONSUFFIX= -gcf6d325e7 +DISTVERSION= 1.0.0-2119 +DISTVERSIONSUFFIX= -gbcbbd8c7a CATEGORIES= multimedia MAINTAINER= jbeich@FreeBSD.org diff --git a/multimedia/aom/distinfo b/multimedia/aom/distinfo index 971318d2dfe..d1f9f6cf058 100644 --- a/multimedia/aom/distinfo +++ b/multimedia/aom/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1563568852 -SHA256 (jbeich-aom-v1.0.0-2106-gcf6d325e7_GH0.tar.gz) = 7686c83ce08566fd1edecadc7c0b5184c21f9b998e845fa252ff77a7ae49466b -SIZE (jbeich-aom-v1.0.0-2106-gcf6d325e7_GH0.tar.gz) = 3408250 +TIMESTAMP = 1563829525 +SHA256 (jbeich-aom-v1.0.0-2119-gbcbbd8c7a_GH0.tar.gz) = 0ca0f11b5bfd13d1eb34be4635524935d883c9b631237b6d865fb882936e1996 +SIZE (jbeich-aom-v1.0.0-2119-gbcbbd8c7a_GH0.tar.gz) = 3412491 diff --git a/multimedia/rav1e/Makefile b/multimedia/rav1e/Makefile index 57f252402bf..9e4b7dae53a 100644 --- a/multimedia/rav1e/Makefile +++ b/multimedia/rav1e/Makefile @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= rav1e -PORTVERSION= s20190719 +PORTVERSION= s20190722 CATEGORIES= multimedia MAINTAINER= jbeich@FreeBSD.org @@ -16,7 +16,7 @@ BUILD_DEPENDS_amd64= nasm:devel/nasm USES= cargo USE_GITHUB= yes GH_ACCOUNT= xiph -GH_TAGNAME= 28ef0c07 +GH_TAGNAME= 4bc23e4b PLIST_FILES= bin/${PORTNAME} CARGO_CRATES= aho-corasick-0.7.4 \ diff --git a/multimedia/rav1e/distinfo b/multimedia/rav1e/distinfo index 9d60c84c824..f45d43e4334 100644 --- a/multimedia/rav1e/distinfo +++ b/multimedia/rav1e/distinfo @@ -1,4 +1,4 @@ -TIMESTAMP = 1563530467 +TIMESTAMP = 1563826475 SHA256 (rust/crates/aho-corasick-0.7.4.tar.gz) = 36b7aa1ccb7d7ea3f437cf025a2ab1c47cc6c1bc9fc84918ff449def12f5e282 SIZE (rust/crates/aho-corasick-0.7.4.tar.gz) = 55480 SHA256 (rust/crates/ansi_term-0.11.0.tar.gz) = ee49baf6cb617b853aa8d93bf420db2383fab46d314482ca2803b40d5fde979b @@ -249,5 +249,5 @@ SHA256 (rust/crates/wincolor-1.0.1.tar.gz) = 561ed901ae465d6185fa7864d63fbd5720d SIZE (rust/crates/wincolor-1.0.1.tar.gz) = 4737 SHA256 (rust/crates/y4m-0.3.3.tar.gz) = b14191e41f540837886792294aa9269c2d63eb8733ed0499590935fef7bbb94f SIZE (rust/crates/y4m-0.3.3.tar.gz) = 11108 -SHA256 (xiph-rav1e-s20190719-28ef0c07_GH0.tar.gz) = f7f16d44d181f1f54a14e4ee2280f30e4f84a9592e7f8cffe5ea18234805a4c4 -SIZE (xiph-rav1e-s20190719-28ef0c07_GH0.tar.gz) = 432507 +SHA256 (xiph-rav1e-s20190722-4bc23e4b_GH0.tar.gz) = 7e4379e6225469ab36631eb32d47b8aad33be39aa5cdd9eb6699642baf249658 +SIZE (xiph-rav1e-s20190722-4bc23e4b_GH0.tar.gz) = 431851 diff --git a/multimedia/svt-av1/Makefile b/multimedia/svt-av1/Makefile index 649fa0858bf..5737b385adc 100644 --- a/multimedia/svt-av1/Makefile +++ b/multimedia/svt-av1/Makefile @@ -2,8 +2,8 @@ PORTNAME= svt-av1 DISTVERSIONPREFIX= v -DISTVERSION= 0.6.0-101 -DISTVERSIONSUFFIX= -g22e16718 +DISTVERSION= 0.6.0-106 +DISTVERSIONSUFFIX= -ge35a8669 CATEGORIES= multimedia MAINTAINER= jbeich@FreeBSD.org diff --git a/multimedia/svt-av1/distinfo b/multimedia/svt-av1/distinfo index f002b599bee..15d88ea8877 100644 --- a/multimedia/svt-av1/distinfo +++ b/multimedia/svt-av1/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1563493809 -SHA256 (OpenVisualCloud-SVT-AV1-v0.6.0-101-g22e16718_GH0.tar.gz) = 74e9d0509840689fe7d085759b417f2eea8f4780383ada0beed70900c25938be -SIZE (OpenVisualCloud-SVT-AV1-v0.6.0-101-g22e16718_GH0.tar.gz) = 2704869 +TIMESTAMP = 1563828209 +SHA256 (OpenVisualCloud-SVT-AV1-v0.6.0-106-ge35a8669_GH0.tar.gz) = 7a5ff8609ccf7a5b88d947f4174fb0491bb8baae95c26f2d990e8a3744e9df99 +SIZE (OpenVisualCloud-SVT-AV1-v0.6.0-106-ge35a8669_GH0.tar.gz) = 2707488 diff --git a/net-im/mikutter/Makefile b/net-im/mikutter/Makefile index 689934b5d12..083af00d3c2 100644 --- a/net-im/mikutter/Makefile +++ b/net-im/mikutter/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= mikutter -PORTVERSION= 3.8.9 +PORTVERSION= 3.9.0 CATEGORIES= net-im ruby MASTER_SITES= http://mikutter.hachune.net/bin/ \ LOCAL/meta/${PORTNAME} @@ -16,23 +16,21 @@ LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-gtk2>=3.3.1:x11-toolkits/rubygem-gtk2 \ rubygem-cairo>=1.16.2:graphics/rubygem-cairo \ - rubygem-addressable>=2.5.2:www/rubygem-addressable \ - rubygem-delayer>=0.0.2:devel/rubygem-delayer \ - rubygem-delayer-deferred>=2.0.0:devel/rubygem-delayer-deferred \ - rubygem-diva>=0.3.2:devel/rubygem-diva \ + rubygem-addressable>=2.6.0:www/rubygem-addressable \ + rubygem-delayer>=1.0.0:devel/rubygem-delayer \ + rubygem-delayer-deferred>=2.1.0:devel/rubygem-delayer-deferred \ + rubygem-diva>=1.0.0:devel/rubygem-diva \ rubygem-gettext>=3.2.6:devel/rubygem-gettext \ rubygem-gio2>=3.3.1:devel/rubygem-gio2 \ rubygem-httpclient>=2.8.3:www/rubygem-httpclient \ rubygem-instance_storage>=1.0.0:devel/rubygem-instance_storage \ - rubygem-json_pure1>=1.8.6:devel/rubygem-json_pure1 \ rubygem-locale>=2.1.2:devel/rubygem-locale \ rubygem-memoist>=0.16.0:devel/rubygem-memoist \ rubygem-moneta>=0.7:devel/rubygem-moneta \ rubygem-nokogiri>=1.8.5:textproc/rubygem-nokogiri \ rubygem-oauth>=0.5.4:net/rubygem-oauth \ - rubygem-pluggaloid>=1.1.2:devel/rubygem-pluggaloid \ + rubygem-pluggaloid>=1.2.0:devel/rubygem-pluggaloid \ rubygem-public_suffix>=3.0.3:dns/rubygem-public_suffix \ - rubygem-ruby-hmac>=0.4.0:security/rubygem-ruby-hmac \ rubygem-text>=1.3.1:textproc/rubygem-text \ rubygem-totoridipjp>=0.1.0:www/rubygem-totoridipjp \ rubygem-twitter-text>=2.1.0:textproc/rubygem-twitter-text \ diff --git a/net-im/mikutter/distinfo b/net-im/mikutter/distinfo index a617d0ac424..8c4c99d3e97 100644 --- a/net-im/mikutter/distinfo +++ b/net-im/mikutter/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1561532213 -SHA256 (mikutter.3.8.9.tar.gz) = bbfe8b7c9fed48cb4a7e0a8830fadbe44f670cc2a5fac8b9f1093b832f6b364b -SIZE (mikutter.3.8.9.tar.gz) = 2939739 +TIMESTAMP = 1563242077 +SHA256 (mikutter.3.9.0.tar.gz) = c31314724854a707d22d9b60936a4588d6595a6ab38399eea31feb73fceb1809 +SIZE (mikutter.3.9.0.tar.gz) = 2751807 diff --git a/net-im/mikutter/pkg-plist b/net-im/mikutter/pkg-plist index a9787bad3d3..04d2adcb744 100644 --- a/net-im/mikutter/pkg-plist +++ b/net-im/mikutter/pkg-plist @@ -29,7 +29,6 @@ bin/mikutter %%RUBY_SITELIBDIR%%/mikutter/core/lib/lazy.rb %%RUBY_SITELIBDIR%%/mikutter/core/lib/piapro.rb %%RUBY_SITELIBDIR%%/mikutter/core/lib/reserver.rb -%%RUBY_SITELIBDIR%%/mikutter/core/lib/retriever/uri.rb %%RUBY_SITELIBDIR%%/mikutter/core/lib/test_unit_extensions.rb %%RUBY_SITELIBDIR%%/mikutter/core/lib/timelimitedqueue.rb %%RUBY_SITELIBDIR%%/mikutter/core/lib/timelimitedqueue/test/test_timelimitedqueue.rb @@ -68,7 +67,7 @@ bin/mikutter %%RUBY_SITELIBDIR%%/mikutter/core/mui/cairo_sub_parts_helper.rb %%RUBY_SITELIBDIR%%/mikutter/core/mui/cairo_sub_parts_message_base.rb %%RUBY_SITELIBDIR%%/mikutter/core/mui/cairo_sub_parts_quote.rb -%%RUBY_SITELIBDIR%%/mikutter/core/mui/cairo_sub_parts_retweet.rb +%%RUBY_SITELIBDIR%%/mikutter/core/mui/cairo_sub_parts_share.rb %%RUBY_SITELIBDIR%%/mikutter/core/mui/cairo_sub_parts_voter.rb %%RUBY_SITELIBDIR%%/mikutter/core/mui/cairo_textselector.rb %%RUBY_SITELIBDIR%%/mikutter/core/mui/cairo_timeline.rb @@ -255,24 +254,6 @@ bin/mikutter %%RUBY_SITELIBDIR%%/mikutter/core/plugin/direct_message/po/zh_TW/direct_message.po %%RUBY_SITELIBDIR%%/mikutter/core/plugin/direct_message/sender.rb %%RUBY_SITELIBDIR%%/mikutter/core/plugin/direct_message/userlist.rb -%%RUBY_SITELIBDIR%%/mikutter/core/plugin/display_requirements/.mikutter.yml -%%RUBY_SITELIBDIR%%/mikutter/core/plugin/display_requirements/display_requirements.rb -%%RUBY_SITELIBDIR%%/mikutter/core/plugin/display_requirements/po/ar/display_requirements.po -%%RUBY_SITELIBDIR%%/mikutter/core/plugin/display_requirements/po/de/display_requirements.po -%%RUBY_SITELIBDIR%%/mikutter/core/plugin/display_requirements/po/el/display_requirements.po -%%RUBY_SITELIBDIR%%/mikutter/core/plugin/display_requirements/po/en/display_requirements.po -%%RUBY_SITELIBDIR%%/mikutter/core/plugin/display_requirements/po/eo/display_requirements.po -%%RUBY_SITELIBDIR%%/mikutter/core/plugin/display_requirements/po/es/display_requirements.po -%%RUBY_SITELIBDIR%%/mikutter/core/plugin/display_requirements/po/fr/display_requirements.po -%%RUBY_SITELIBDIR%%/mikutter/core/plugin/display_requirements/po/nl_NL/display_requirements.po -%%RUBY_SITELIBDIR%%/mikutter/core/plugin/display_requirements/po/pt_PT/display_requirements.po -%%RUBY_SITELIBDIR%%/mikutter/core/plugin/display_requirements/po/ro_RO/display_requirements.po -%%RUBY_SITELIBDIR%%/mikutter/core/plugin/display_requirements/po/ru/display_requirements.po -%%RUBY_SITELIBDIR%%/mikutter/core/plugin/display_requirements/po/sr/display_requirements.po -%%RUBY_SITELIBDIR%%/mikutter/core/plugin/display_requirements/po/vi/display_requirements.po -%%RUBY_SITELIBDIR%%/mikutter/core/plugin/display_requirements/po/zh/display_requirements.po -%%RUBY_SITELIBDIR%%/mikutter/core/plugin/display_requirements/po/zh_CN/display_requirements.po -%%RUBY_SITELIBDIR%%/mikutter/core/plugin/display_requirements/po/zh_TW/display_requirements.po %%RUBY_SITELIBDIR%%/mikutter/core/plugin/extract/.mikutter.yml %%RUBY_SITELIBDIR%%/mikutter/core/plugin/extract/edit_window.rb %%RUBY_SITELIBDIR%%/mikutter/core/plugin/extract/extract.rb @@ -336,6 +317,7 @@ bin/mikutter %%RUBY_SITELIBDIR%%/mikutter/core/plugin/gui/command.rb %%RUBY_SITELIBDIR%%/mikutter/core/plugin/gui/cuscadable.rb %%RUBY_SITELIBDIR%%/mikutter/core/plugin/gui/dsl.rb +%%RUBY_SITELIBDIR%%/mikutter/core/plugin/gui/event.rb %%RUBY_SITELIBDIR%%/mikutter/core/plugin/gui/fragment.rb %%RUBY_SITELIBDIR%%/mikutter/core/plugin/gui/gui.rb %%RUBY_SITELIBDIR%%/mikutter/core/plugin/gui/hierarchy_child.rb @@ -404,8 +386,6 @@ bin/mikutter %%RUBY_SITELIBDIR%%/mikutter/core/plugin/intent_selector/listview.rb %%RUBY_SITELIBDIR%%/mikutter/core/plugin/libnotify/.mikutter.yml %%RUBY_SITELIBDIR%%/mikutter/core/plugin/libnotify/libnotify.rb -%%RUBY_SITELIBDIR%%/mikutter/core/plugin/libnotify/notify-send.rb -%%RUBY_SITELIBDIR%%/mikutter/core/plugin/libnotify/rnotify.rb %%RUBY_SITELIBDIR%%/mikutter/core/plugin/list/.mikutter.yml %%RUBY_SITELIBDIR%%/mikutter/core/plugin/list/list.rb %%RUBY_SITELIBDIR%%/mikutter/core/plugin/list_for_profile/.mikutter.yml @@ -416,6 +396,44 @@ bin/mikutter %%RUBY_SITELIBDIR%%/mikutter/core/plugin/list_settings/list_settings.rb %%RUBY_SITELIBDIR%%/mikutter/core/plugin/list_settings/po/ja_KS/list_settings.po %%RUBY_SITELIBDIR%%/mikutter/core/plugin/list_settings/tab.rb +%%RUBY_SITELIBDIR%%/mikutter/core/plugin/mastodon/.mikutter.yml +%%RUBY_SITELIBDIR%%/mikutter/core/plugin/mastodon/api.rb +%%RUBY_SITELIBDIR%%/mikutter/core/plugin/mastodon/extractcondition.rb +%%RUBY_SITELIBDIR%%/mikutter/core/plugin/mastodon/icon/bot.png +%%RUBY_SITELIBDIR%%/mikutter/core/plugin/mastodon/icon/direct.png +%%RUBY_SITELIBDIR%%/mikutter/core/plugin/mastodon/icon/libre-gui-email.svg +%%RUBY_SITELIBDIR%%/mikutter/core/plugin/mastodon/icon/libre-gui-lock.svg +%%RUBY_SITELIBDIR%%/mikutter/core/plugin/mastodon/icon/libre-gui-unlock.svg +%%RUBY_SITELIBDIR%%/mikutter/core/plugin/mastodon/icon/pin.png +%%RUBY_SITELIBDIR%%/mikutter/core/plugin/mastodon/icon/private.png +%%RUBY_SITELIBDIR%%/mikutter/core/plugin/mastodon/icon/unlisted.png +%%RUBY_SITELIBDIR%%/mikutter/core/plugin/mastodon/instance_setting_list.rb +%%RUBY_SITELIBDIR%%/mikutter/core/plugin/mastodon/mastodon.rb +%%RUBY_SITELIBDIR%%/mikutter/core/plugin/mastodon/model/account.rb +%%RUBY_SITELIBDIR%%/mikutter/core/plugin/mastodon/model/account_profile.rb +%%RUBY_SITELIBDIR%%/mikutter/core/plugin/mastodon/model/application.rb +%%RUBY_SITELIBDIR%%/mikutter/core/plugin/mastodon/model/attachment.rb +%%RUBY_SITELIBDIR%%/mikutter/core/plugin/mastodon/model/card.rb +%%RUBY_SITELIBDIR%%/mikutter/core/plugin/mastodon/model/emoji.rb +%%RUBY_SITELIBDIR%%/mikutter/core/plugin/mastodon/model/entity_class.rb +%%RUBY_SITELIBDIR%%/mikutter/core/plugin/mastodon/model/instance.rb +%%RUBY_SITELIBDIR%%/mikutter/core/plugin/mastodon/model/mention.rb +%%RUBY_SITELIBDIR%%/mikutter/core/plugin/mastodon/model/model.rb +%%RUBY_SITELIBDIR%%/mikutter/core/plugin/mastodon/model/poll.rb +%%RUBY_SITELIBDIR%%/mikutter/core/plugin/mastodon/model/status.rb +%%RUBY_SITELIBDIR%%/mikutter/core/plugin/mastodon/model/tag.rb +%%RUBY_SITELIBDIR%%/mikutter/core/plugin/mastodon/model/world.rb +%%RUBY_SITELIBDIR%%/mikutter/core/plugin/mastodon/parser.rb +%%RUBY_SITELIBDIR%%/mikutter/core/plugin/mastodon/patch.rb +%%RUBY_SITELIBDIR%%/mikutter/core/plugin/mastodon/rest.rb +%%RUBY_SITELIBDIR%%/mikutter/core/plugin/mastodon/score.rb +%%RUBY_SITELIBDIR%%/mikutter/core/plugin/mastodon/setting.rb +%%RUBY_SITELIBDIR%%/mikutter/core/plugin/mastodon/spell.rb +%%RUBY_SITELIBDIR%%/mikutter/core/plugin/mastodon/subparts_status_info.rb +%%RUBY_SITELIBDIR%%/mikutter/core/plugin/mastodon/util.rb +%%RUBY_SITELIBDIR%%/mikutter/core/plugin/mastodon_sse_streaming/.mikutter.yml +%%RUBY_SITELIBDIR%%/mikutter/core/plugin/mastodon_sse_streaming/client.rb +%%RUBY_SITELIBDIR%%/mikutter/core/plugin/mastodon_sse_streaming/mastodon_sse_streaming.rb %%RUBY_SITELIBDIR%%/mikutter/core/plugin/mentions/.mikutter.yml %%RUBY_SITELIBDIR%%/mikutter/core/plugin/mentions/mentions.rb %%RUBY_SITELIBDIR%%/mikutter/core/plugin/mentions/po/ar/mentions.po @@ -441,6 +459,8 @@ bin/mikutter %%RUBY_SITELIBDIR%%/mikutter/core/plugin/message_favorite/message_favorite.rb %%RUBY_SITELIBDIR%%/mikutter/core/plugin/message_retweet/.mikutter.yml %%RUBY_SITELIBDIR%%/mikutter/core/plugin/message_retweet/message_retweet.rb +%%RUBY_SITELIBDIR%%/mikutter/core/plugin/modelviewer/.mikutter.yml +%%RUBY_SITELIBDIR%%/mikutter/core/plugin/modelviewer/modelviewer.rb %%RUBY_SITELIBDIR%%/mikutter/core/plugin/notification/.mikutter.yml %%RUBY_SITELIBDIR%%/mikutter/core/plugin/notification/notification.rb %%RUBY_SITELIBDIR%%/mikutter/core/plugin/notify/.mikutter.yml @@ -511,6 +531,10 @@ bin/mikutter %%RUBY_SITELIBDIR%%/mikutter/core/plugin/proxy/po/zh_CN/proxy.po %%RUBY_SITELIBDIR%%/mikutter/core/plugin/proxy/po/zh_TW/proxy.po %%RUBY_SITELIBDIR%%/mikutter/core/plugin/proxy/proxy.rb +%%RUBY_SITELIBDIR%%/mikutter/core/plugin/quickstep/.mikutter.yml +%%RUBY_SITELIBDIR%%/mikutter/core/plugin/quickstep/complete.rb +%%RUBY_SITELIBDIR%%/mikutter/core/plugin/quickstep/model/command.rb +%%RUBY_SITELIBDIR%%/mikutter/core/plugin/quickstep/quickstep.rb %%RUBY_SITELIBDIR%%/mikutter/core/plugin/quoted_message/.mikutter.yml %%RUBY_SITELIBDIR%%/mikutter/core/plugin/quoted_message/quoted_message.rb %%RUBY_SITELIBDIR%%/mikutter/core/plugin/ratelimit/.mikutter.yml @@ -730,6 +754,7 @@ bin/mikutter %%RUBY_SITELIBDIR%%/mikutter/core/plugin/tco/tco.rb %%RUBY_SITELIBDIR%%/mikutter/core/plugin/template %%RUBY_SITELIBDIR%%/mikutter/core/plugin/twitter/.mikutter.yml +%%RUBY_SITELIBDIR%%/mikutter/core/plugin/twitter/Gemfile %%RUBY_SITELIBDIR%%/mikutter/core/plugin/twitter/builder.rb %%RUBY_SITELIBDIR%%/mikutter/core/plugin/twitter/configuration.json %%RUBY_SITELIBDIR%%/mikutter/core/plugin/twitter/mikutwitter.rb @@ -780,6 +805,8 @@ bin/mikutter %%RUBY_SITELIBDIR%%/mikutter/core/plugin/twitter/twitter.rb %%RUBY_SITELIBDIR%%/mikutter/core/plugin/twitter_api_keys/.mikutter.yml %%RUBY_SITELIBDIR%%/mikutter/core/plugin/twitter_api_keys/twitter_api_keys.rb +%%RUBY_SITELIBDIR%%/mikutter/core/plugin/twitter_search/.mikutter.yml +%%RUBY_SITELIBDIR%%/mikutter/core/plugin/twitter_search/twitter_search.rb %%RUBY_SITELIBDIR%%/mikutter/core/plugin/uitranslator/.mikutter.yml %%RUBY_SITELIBDIR%%/mikutter/core/plugin/uitranslator/Gemfile %%RUBY_SITELIBDIR%%/mikutter/core/plugin/uitranslator/uitranslator.rb diff --git a/net-p2p/go-ethereum/Makefile b/net-p2p/go-ethereum/Makefile index 2f744ee76a1..5d03f7a24c5 100644 --- a/net-p2p/go-ethereum/Makefile +++ b/net-p2p/go-ethereum/Makefile @@ -2,7 +2,7 @@ PORTNAME= go-ethereum DISTVERSIONPREFIX= v -DISTVERSION= 1.8.27 +DISTVERSION= 1.9.0 CATEGORIES= net-p2p MAINTAINER= me@enriquefynn.com @@ -30,7 +30,7 @@ do-install-DEVTOOLS-on: ${INSTALL_PROGRAM} ${WRKSRC}/build/bin/bootnode ${STAGEDIR}${PREFIX}/bin ${INSTALL_PROGRAM} ${WRKSRC}/build/bin/evm ${STAGEDIR}${PREFIX}/bin ${INSTALL_PROGRAM} ${WRKSRC}/build/bin/rlpdump ${STAGEDIR}${PREFIX}/bin - ${INSTALL_PROGRAM} ${WRKSRC}/build/bin/swarm ${STAGEDIR}${PREFIX}/bin + ${INSTALL_PROGRAM} ${WRKSRC}/build/bin/clef ${STAGEDIR}${PREFIX}/bin ${INSTALL_PROGRAM} ${WRKSRC}/build/bin/puppeth ${STAGEDIR}${PREFIX}/bin .include diff --git a/net-p2p/go-ethereum/distinfo b/net-p2p/go-ethereum/distinfo index ea7e995e927..2d86402a8ef 100644 --- a/net-p2p/go-ethereum/distinfo +++ b/net-p2p/go-ethereum/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1558944912 -SHA256 (ethereum-go-ethereum-v1.8.27_GH0.tar.gz) = 45d264106991d0e2a4c34ac5d6539fc9460c768fc70588ea38a25f467039ece8 -SIZE (ethereum-go-ethereum-v1.8.27_GH0.tar.gz) = 10545102 +TIMESTAMP = 1563666425 +SHA256 (ethereum-go-ethereum-v1.9.0_GH0.tar.gz) = 94843ce7715ff2ce2ee4f463b09dbd9209303ad9aa8e5fad3381376b0f1a075d +SIZE (ethereum-go-ethereum-v1.9.0_GH0.tar.gz) = 16399034 diff --git a/net-p2p/go-ethereum/files/patch-common_fdlimit_fdlimit__freebsd.go b/net-p2p/go-ethereum/files/patch-common_fdlimit_fdlimit__freebsd.go deleted file mode 100644 index 69ec59df47b..00000000000 --- a/net-p2p/go-ethereum/files/patch-common_fdlimit_fdlimit__freebsd.go +++ /dev/null @@ -1,11 +0,0 @@ ---- common/fdlimit/fdlimit_freebsd.go.orig 2019-04-08 13:16:05 UTC -+++ common/fdlimit/fdlimit_freebsd.go -@@ -43,7 +43,7 @@ func Raise(max uint64) (uint64, error) { - if err := syscall.Getrlimit(syscall.RLIMIT_NOFILE, &limit); err != nil { - return 0, err - } -- return limit.Cur, nil -+ return uint64(limit.Cur), nil - } - - // Current retrieves the number of file descriptors allowed to be opened by this diff --git a/net-p2p/go-ethereum/pkg-message b/net-p2p/go-ethereum/pkg-message new file mode 100644 index 00000000000..71ea2c39971 --- /dev/null +++ b/net-p2p/go-ethereum/pkg-message @@ -0,0 +1,13 @@ +[ +{ + message: < diff --git a/sysutils/openzfs/distinfo b/sysutils/openzfs/distinfo index d9d4271e8f3..f36be29dd75 100644 --- a/sysutils/openzfs/distinfo +++ b/sysutils/openzfs/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1563641797 -SHA256 (zfsonfreebsd-ZoF-v2019072000-9b19313_GH0.tar.gz) = 4abfe6e1f325202c8cb8dab49537b4e24494433008f3ec259a0598160d189951 -SIZE (zfsonfreebsd-ZoF-v2019072000-9b19313_GH0.tar.gz) = 6830048 +TIMESTAMP = 1563835777 +SHA256 (zfsonfreebsd-ZoF-v2019072200-05f627f_GH0.tar.gz) = 5d0e3c9db9eb84185834c603c5ba59ae8b71946d4ef0aa70cb824a2a60b58682 +SIZE (zfsonfreebsd-ZoF-v2019072200-05f627f_GH0.tar.gz) = 6826618 diff --git a/sysutils/rsyslog8/Makefile b/sysutils/rsyslog8/Makefile index 75e5040fbee..afca542e92c 100644 --- a/sysutils/rsyslog8/Makefile +++ b/sysutils/rsyslog8/Makefile @@ -2,6 +2,7 @@ PORTNAME= rsyslog PORTVERSION= 8.1907.0 +PORTREVISION= 1 CATEGORIES= sysutils MASTER_SITES= http://www.rsyslog.com/files/download/rsyslog/ @@ -11,8 +12,7 @@ COMMENT= Syslogd supporting SQL, TCP, and TLS LICENSE= GPLv3 LGPL3 APACHE20 LICENSE_COMB= multi -LIB_DEPENDS= libee.so:devel/libee \ - libestr.so:devel/libestr \ +LIB_DEPENDS= libestr.so:devel/libestr \ libfastjson.so:devel/libfastjson \ liblogging-rfc3195.so:devel/liblogging \ libuuid.so:misc/e2fsprogs-libuuid \ diff --git a/www/gitlab-ce/Makefile b/www/gitlab-ce/Makefile index 613eff63bac..79d224e4359 100644 --- a/www/gitlab-ce/Makefile +++ b/www/gitlab-ce/Makefile @@ -3,7 +3,7 @@ PORTNAME= gitlab-ce PORTVERSION= 12.0.3 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= www devel MAINTAINER= mfechner@FreeBSD.org @@ -120,7 +120,7 @@ MY_DEPENDS= git>=2.21.0:devel/git \ rubygem-sidekiq-cron>=1.0.0:devel/rubygem-sidekiq-cron \ rubygem-redis-namespace>=1.6.0:databases/rubygem-redis-namespace \ rubygem-gitlab-sidekiq-fetcher>=0.4.0:devel/rubygem-gitlab-sidekiq-fetcher \ - rubygem-fugit>=1.2.1:devel/rubygem-fugit \ + rubygem-fugit12>=1.2.1:devel/rubygem-fugit12 \ rubygem-httparty>=0.16.4:www/rubygem-httparty \ rubygem-rainbow>=3.0:devel/rubygem-rainbow \ rubygem-ruby-progressbar>=0:devel/rubygem-ruby-progressbar \ diff --git a/www/nextcloud-notes/Makefile b/www/nextcloud-notes/Makefile index 8f712935368..d749ac6abc3 100644 --- a/www/nextcloud-notes/Makefile +++ b/www/nextcloud-notes/Makefile @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= notes -PORTVERSION= 3.0.0 -DISTVERSIONPREFIX= v +PORTVERSION= 3.0.1 CATEGORIES= www MASTER_SITES= https://github.com/${PKGNAMEPREFIX:S/-//}/${PORTNAME}/releases/download/${DISTVERSIONPREFIX}${PORTVERSION}/ PKGNAMEPREFIX= nextcloud- diff --git a/www/nextcloud-notes/distinfo b/www/nextcloud-notes/distinfo index 5a8c6ded805..75834864aa3 100644 --- a/www/nextcloud-notes/distinfo +++ b/www/nextcloud-notes/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1562411047 -SHA256 (nextcloud/notes-v3.0.0/notes.tar.gz) = 8dd54d7f812c8fbd5996484296e93b2b1deeeec35a89d5cdb697c322654da444 -SIZE (nextcloud/notes-v3.0.0/notes.tar.gz) = 389732 +TIMESTAMP = 1563791219 +SHA256 (nextcloud/notes-3.0.1/notes.tar.gz) = 15b922efad142664d94b17ceab6488940d2a4c19692a4b4c1de1caa9e7c71105 +SIZE (nextcloud/notes-3.0.1/notes.tar.gz) = 413654 diff --git a/www/nextcloud-notes/pkg-plist b/www/nextcloud-notes/pkg-plist index 8b8a50b1876..196747730e8 100644 --- a/www/nextcloud-notes/pkg-plist +++ b/www/nextcloud-notes/pkg-plist @@ -8,6 +8,7 @@ %%WWWDIR%%/appinfo/signature.json %%WWWDIR%%/css/app-navigation.scss %%WWWDIR%%/css/notes.scss +%%WWWDIR%%/css/print.scss %%WWWDIR%%/img/favicon-mask.svg %%WWWDIR%%/img/favicon-touch.png %%WWWDIR%%/img/favicon-touch.svg @@ -22,56 +23,142 @@ %%WWWDIR%%/l10n/.gitkeep %%WWWDIR%%/l10n/af.js %%WWWDIR%%/l10n/af.json +%%WWWDIR%%/l10n/ar.js +%%WWWDIR%%/l10n/ar.json +%%WWWDIR%%/l10n/ast.js +%%WWWDIR%%/l10n/ast.json %%WWWDIR%%/l10n/bg.js %%WWWDIR%%/l10n/bg.json %%WWWDIR%%/l10n/ca.js %%WWWDIR%%/l10n/ca.json %%WWWDIR%%/l10n/cs.js %%WWWDIR%%/l10n/cs.json +%%WWWDIR%%/l10n/da.js +%%WWWDIR%%/l10n/da.json %%WWWDIR%%/l10n/de.js %%WWWDIR%%/l10n/de.json %%WWWDIR%%/l10n/de_DE.js %%WWWDIR%%/l10n/de_DE.json %%WWWDIR%%/l10n/el.js %%WWWDIR%%/l10n/el.json +%%WWWDIR%%/l10n/en_GB.js +%%WWWDIR%%/l10n/en_GB.json %%WWWDIR%%/l10n/eo.js %%WWWDIR%%/l10n/eo.json %%WWWDIR%%/l10n/es.js %%WWWDIR%%/l10n/es.json +%%WWWDIR%%/l10n/es_419.js +%%WWWDIR%%/l10n/es_419.json +%%WWWDIR%%/l10n/es_AR.js +%%WWWDIR%%/l10n/es_AR.json +%%WWWDIR%%/l10n/es_CL.js +%%WWWDIR%%/l10n/es_CL.json +%%WWWDIR%%/l10n/es_CO.js +%%WWWDIR%%/l10n/es_CO.json +%%WWWDIR%%/l10n/es_CR.js +%%WWWDIR%%/l10n/es_CR.json +%%WWWDIR%%/l10n/es_DO.js +%%WWWDIR%%/l10n/es_DO.json +%%WWWDIR%%/l10n/es_EC.js +%%WWWDIR%%/l10n/es_EC.json +%%WWWDIR%%/l10n/es_GT.js +%%WWWDIR%%/l10n/es_GT.json +%%WWWDIR%%/l10n/es_HN.js +%%WWWDIR%%/l10n/es_HN.json +%%WWWDIR%%/l10n/es_MX.js +%%WWWDIR%%/l10n/es_MX.json +%%WWWDIR%%/l10n/es_NI.js +%%WWWDIR%%/l10n/es_NI.json +%%WWWDIR%%/l10n/es_PA.js +%%WWWDIR%%/l10n/es_PA.json +%%WWWDIR%%/l10n/es_PE.js +%%WWWDIR%%/l10n/es_PE.json +%%WWWDIR%%/l10n/es_PR.js +%%WWWDIR%%/l10n/es_PR.json +%%WWWDIR%%/l10n/es_PY.js +%%WWWDIR%%/l10n/es_PY.json +%%WWWDIR%%/l10n/es_SV.js +%%WWWDIR%%/l10n/es_SV.json +%%WWWDIR%%/l10n/es_UY.js +%%WWWDIR%%/l10n/es_UY.json +%%WWWDIR%%/l10n/et_EE.js +%%WWWDIR%%/l10n/et_EE.json +%%WWWDIR%%/l10n/eu.js +%%WWWDIR%%/l10n/eu.json +%%WWWDIR%%/l10n/fa.js +%%WWWDIR%%/l10n/fa.json +%%WWWDIR%%/l10n/fi.js +%%WWWDIR%%/l10n/fi.json %%WWWDIR%%/l10n/fr.js %%WWWDIR%%/l10n/fr.json %%WWWDIR%%/l10n/gl.js %%WWWDIR%%/l10n/gl.json %%WWWDIR%%/l10n/he.js %%WWWDIR%%/l10n/he.json +%%WWWDIR%%/l10n/hr.js +%%WWWDIR%%/l10n/hr.json %%WWWDIR%%/l10n/hu.js %%WWWDIR%%/l10n/hu.json +%%WWWDIR%%/l10n/hy.js +%%WWWDIR%%/l10n/hy.json +%%WWWDIR%%/l10n/ia.js +%%WWWDIR%%/l10n/ia.json +%%WWWDIR%%/l10n/id.js +%%WWWDIR%%/l10n/id.json %%WWWDIR%%/l10n/is.js %%WWWDIR%%/l10n/is.json %%WWWDIR%%/l10n/it.js %%WWWDIR%%/l10n/it.json %%WWWDIR%%/l10n/ja.js %%WWWDIR%%/l10n/ja.json +%%WWWDIR%%/l10n/ka_GE.js +%%WWWDIR%%/l10n/ka_GE.json +%%WWWDIR%%/l10n/ko.js +%%WWWDIR%%/l10n/ko.json +%%WWWDIR%%/l10n/lt_LT.js +%%WWWDIR%%/l10n/lt_LT.json +%%WWWDIR%%/l10n/lv.js +%%WWWDIR%%/l10n/lv.json +%%WWWDIR%%/l10n/mk.js +%%WWWDIR%%/l10n/mk.json +%%WWWDIR%%/l10n/nb.js +%%WWWDIR%%/l10n/nb.json %%WWWDIR%%/l10n/nl.js %%WWWDIR%%/l10n/nl.json +%%WWWDIR%%/l10n/oc.js +%%WWWDIR%%/l10n/oc.json %%WWWDIR%%/l10n/pl.js %%WWWDIR%%/l10n/pl.json %%WWWDIR%%/l10n/pt_BR.js %%WWWDIR%%/l10n/pt_BR.json +%%WWWDIR%%/l10n/pt_PT.js +%%WWWDIR%%/l10n/pt_PT.json +%%WWWDIR%%/l10n/ro.js +%%WWWDIR%%/l10n/ro.json %%WWWDIR%%/l10n/ru.js %%WWWDIR%%/l10n/ru.json %%WWWDIR%%/l10n/sk.js %%WWWDIR%%/l10n/sk.json %%WWWDIR%%/l10n/sl.js %%WWWDIR%%/l10n/sl.json +%%WWWDIR%%/l10n/sq.js +%%WWWDIR%%/l10n/sq.json %%WWWDIR%%/l10n/sr.js %%WWWDIR%%/l10n/sr.json %%WWWDIR%%/l10n/sv.js %%WWWDIR%%/l10n/sv.json +%%WWWDIR%%/l10n/th.js +%%WWWDIR%%/l10n/th.json %%WWWDIR%%/l10n/tr.js %%WWWDIR%%/l10n/tr.json +%%WWWDIR%%/l10n/uk.js +%%WWWDIR%%/l10n/uk.json %%WWWDIR%%/l10n/zh_CN.js %%WWWDIR%%/l10n/zh_CN.json +%%WWWDIR%%/l10n/zh_HK.js +%%WWWDIR%%/l10n/zh_HK.json +%%WWWDIR%%/l10n/zh_TW.js +%%WWWDIR%%/l10n/zh_TW.json %%WWWDIR%%/lib/Controller/Errors.php %%WWWDIR%%/lib/Controller/NotesApiController.php %%WWWDIR%%/lib/Controller/NotesController.php diff --git a/www/py-django-debug-toolbar/Makefile b/www/py-django-debug-toolbar/Makefile index 4e250a6af72..8d2724de98f 100644 --- a/www/py-django-debug-toolbar/Makefile +++ b/www/py-django-debug-toolbar/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= django-debug-toolbar -PORTVERSION= 1.11 +PORTVERSION= 2.0 CATEGORIES= www python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -16,10 +16,11 @@ LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}django111>=1.11:www/py-django111@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}sqlparse>=0.2.0:databases/py-sqlparse@${PY_FLAVOR} -USES= python -USE_PYTHON= autoplist concurrent distutils +USES= python:3.5+ +USE_PYTHON= autoplist distutils + +NO_ARCH= yes -NO_ARCH= yes CONFLICTS_INSTALL= ${PYTHON_PKGNAMEPREFIX}dj21-django-debug-toolbar \ ${PYTHON_PKGNAMEPREFIX}dj22-django-debug-toolbar diff --git a/www/py-django-debug-toolbar/distinfo b/www/py-django-debug-toolbar/distinfo index ee7bfbf45fc..93a59b85ab7 100644 --- a/www/py-django-debug-toolbar/distinfo +++ b/www/py-django-debug-toolbar/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1546724075 -SHA256 (django-debug-toolbar-1.11.tar.gz) = 89d75b60c65db363fb24688d977e5fbf0e73386c67acf562d278402a10fc3736 -SIZE (django-debug-toolbar-1.11.tar.gz) = 108708 +TIMESTAMP = 1563805957 +SHA256 (django-debug-toolbar-2.0.tar.gz) = 17c53cd6bf4e7d69902aedf9a1d26c5d3b7369b54c5718744704f27b5a72f35d +SIZE (django-debug-toolbar-2.0.tar.gz) = 108622